diff --git a/ChangeLog b/ChangeLog index 0189e96ea..2a60fbea0 100755 --- a/ChangeLog +++ b/ChangeLog @@ -97,6 +97,8 @@ $Id$ "Would you like to delete..." option - bug [privileges] List of tables not shown when the db name has a wildcard - bug #3011126 [display] Edit link missing after long query +- patch #3013264 [doc] FAQ 1.40 uses a comma instead of a period, + thanks to Isaac Bennetch - ibennetch 3.3.3.0 (2010-05-10) - patch #2982480 [navi] Do not group if there would be one table in group, diff --git a/Documentation.html b/Documentation.html index 659cd68c7..8839845e3 100755 --- a/Documentation.html +++ b/Documentation.html @@ -3141,7 +3141,7 @@ RewriteRule .* - [E=REMOTE_USER:%{HTTP:Authorization},L] in your Apache configuration. See http://httpd.apache.org/docs/2.0/mod/mod_ssl.html#ssloptions.
To be able to use cookie auth Apache must know that it has to rewrite the set-cookie headers.
Example from the Apache 2.2 documentation:
Always use latest Git version of po file to translate. You can optionally +
Always use latest Git version of the po file to translate. You can optionally
translate online at our translation
- server where you can also get latest po files and merge them
- with your translations. For creating new translation simply use
+ server where you can also get the latest po files and merge them
+ with your translations. For creating a new translation simply use
po/phpmyadmin.pot
and generate
po/LANG_CODE.po
for your language (you can use
msginit -i po/phpmyadmin.pot -l LANG_CODE --no-translator -o po/LANG_CODE.po
- to do this) or ask on mailing list to add the translation to the web
+ to do this) or ask on the mailing list to add the translation to the web
interface. More details are available on our wiki.
@@ -4366,18 +4367,30 @@ chmod o+rwx tmp the translations, since we define the right character set in the file. With HTML entities, the text on JavaScript messages would not display correctly. - However there are some entities that need to be there, for quotes - ,non-breakable spaces, ampersands, less than, greater than. + However there are some entities that need to be there: quotes, + non-breakable spaces, ampersands, less than, greater than.
You can then put your translations, as a zip file to avoid losing special - characters, on the sourceforge.net translation tracker. + characters, on the sourceforge.net translation tracker.
- It would be a good idea to subscribe to the phpmyadmin-translators mailing + It would be a good idea to subscribe to the phpmyadmin-translators mailing list, because this is where we ask for translations of new messages.
+
+ Documentation is being translated using po4a and gettext (see
+ documentation
+ for existing translations). To start, checkout
+ localized_docs/po
+ from Git, or just go to the translation server
+ and translate it online. If your language is missing, just contact
+ Michal Čihař; he will add it. If
+ you prefer to directly translate the po files, please put updated ones into our
+ translation tracker.
+
If you use Apache web server, phpMyAdmin exports information about - authentication to Apache environment and it can be used in Apache logs. + authentication to the Apache environment and it can be used in Apache logs. Currently there are two variables available:
You can now synchronize databases/tables in phpMyAdmin using the Synchronize feature. -It allows you to connect to local as well as remote servers.This requires you to enter +It allows you to connect to local as well as remote servers. This requires you to enter server host name, username, password, port and the name of the database. Therefore you can now synchronize your databases placed on the same server or some remote server.
This feature is helpful for developers who need to replicate their -databases’ structure as well as data. Moreover, this feature not only +database’s structure as well as data. Moreover, this feature not only helps replication but also facilitates the user to keep his/her database in sync with another database. Other than the full database, certain tables of the databases can also be synchronized. @@ -4476,29 +4489,29 @@ representation.
-On the left, are listed the source database table names. Some of the
-names have a ‘+’ plus sign preceding them. This shows that these tables
+On the left, are listed the source database table names. Some of the
+names have a +
plus sign preceding them. This shows that these tables
are only present in source database and they need to be added to the
target database in order to synchronize the target database. The tables
-whose names are not preceded by a ‘+’ sign are already present in the
+whose names are not preceded by a +
sign are already present in the
target database.
On the right, are listed the target database table names. There are few
-table names that have “(not present)” appended after their names. This
+table names that have (not present)
appended after their names. This
means that these tables are to be created in target database in order to
-synchronize target database with source database. Some tables’ names
-have a ‘-’ minus sign preceding them. This shows that these tables are
+synchronize target database with source database. Some table names
+have a -
minus sign preceding them. This shows that these tables are
only present in target database and they will remain unchanged in the
target database. The column in the middle shows the difference between
the source and target corresponding tables.
-The difference is depicted by the red and green buttons with S and D +The difference is depicted by the red and green buttons with S and D letters, indicating that either Structure or Data are not up to date. By -clicking on them, they will turn grey, what means that they will be synchronised. +clicking on them, they will turn grey, what means that they will be synchronized.
diff --git a/libraries/messages.inc.php b/libraries/messages.inc.php deleted file mode 100755 index 7ea17e19b..000000000 --- a/libraries/messages.inc.php +++ /dev/null @@ -1,169 +0,0 @@ - diff --git a/libraries/select_lang.lib.php b/libraries/select_lang.lib.php index 7a8927d7f..0f7cab77c 100755 --- a/libraries/select_lang.lib.php +++ b/libraries/select_lang.lib.php @@ -220,6 +220,8 @@ function PMA_langDetails($lang) { return array('ca|catalan', 'ca', 'Català'); case 'cs': return array('cs|czech', 'cs', 'Česky'); + case 'cy': + return array('cy|welsh', 'cy', 'Cymraeg'); case 'da': return array('da|danish', 'da', 'Dansk'); case 'de': @@ -470,9 +472,27 @@ _bindtextdomain('phpmyadmin', $GLOBALS['lang_path']); _bind_textdomain_codeset('phpmyadmin', 'UTF-8'); _textdomain('phpmyadmin'); +/** + * Messages for phpMyAdmin. + * + * These messages are here for easy transition to Gettext. + * You should not add any messages here, use instead gettext directly + * in your template/PHP file. + */ -// Load messages -require_once './libraries/messages.inc.php'; +if (! function_exists('__')) { + die('Bad invocation!'); +} + +/* We use only utf-8 */ +$charset = 'utf-8'; + +/* l10n: Text direction, use either ltr or rtl */ +$text_dir = __('ltr'); + +$strLatexContent = __('Content of table __TABLE__'); +$strLatexContinued = __('(continued)'); +$strLatexStructure = __('Structure of table __TABLE__'); // now, that we have loaded the language strings we can send the errors if ($GLOBALS['lang_failed_cfg']) { diff --git a/po/af.po b/po/af.po index ce4a5bc48..b81fb9929 100755 --- a/po/af.po +++ b/po/af.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-06-04 16:07-0400\n" +"POT-Creation-Date: 2010-06-08 12:32-0400\n" "PO-Revision-Date: 2010-03-30 23:04+0200\n" "Last-Translator: Michalscript/create_tables.sql
."
+msgstr ""
+
+#: libraries/relation.lib.php:162
+msgid "Create a pma user and give access to these tables."
+msgstr ""
+
+#: libraries/relation.lib.php:163
+msgid ""
+"Enable advanced features in configuration file (config.inc.php"
+"code>), for example by starting from config.sample.inc.php
."
+msgstr ""
+
+#: libraries/relation.lib.php:164
+msgid "Re-login to phpMyAdmin to load the updated configuration file."
+msgstr ""
+
+#: libraries/relation.lib.php:1173
+msgid "no description"
+msgstr ""
+
+#: libraries/replication_gui.lib.php:51
+msgid "Slave configuration"
+msgstr ""
+
+#: libraries/replication_gui.lib.php:51 server_replication.php:347
+msgid "Change or reconfigure master server"
+msgstr ""
+
+#: libraries/replication_gui.lib.php:52
+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:55 libraries/replication_gui.lib.php:56
+#: libraries/replication_gui.lib.php:249 libraries/replication_gui.lib.php:252
+#: libraries/replication_gui.lib.php:259 server_privileges.php:711
+#: server_privileges.php:714 server_privileges.php:721
+#: server_synchronize.php:1171
+msgid "User name"
+msgstr ""
+
+#: libraries/replication_gui.lib.php:67 server_synchronize.php:1163
+msgid "Port"
+msgstr ""
+
+#: libraries/replication_gui.lib.php:103
+msgid "Master status"
+msgstr "Statws y meistr"
+
+#: libraries/replication_gui.lib.php:105
+msgid "Slave status"
+msgstr "Statws y caeth"
+
+#: libraries/replication_gui.lib.php:114 libraries/sql_query_form.lib.php:445
+#: server_status.php:737 server_variables.php:52
+msgid "Variable"
+msgstr "Newidyn"
+
+#: libraries/replication_gui.lib.php:115 server_status.php:738
+#: tbl_change.php:324 tbl_printview.php:370 tbl_select.php:139
+#: tbl_structure.php:729
+msgid "Value"
+msgstr "Gwerth"
+
+#: libraries/replication_gui.lib.php:173 server_binlog.php:218
+msgid "Server ID"
+msgstr "ID y Gweinydd"
+
+#: libraries/replication_gui.lib.php:192
+msgid ""
+"Only slaves started with the --report-host=host_name option are visible in "
+"this list."
+msgstr ""
+
+#: libraries/replication_gui.lib.php:240 server_replication.php:194
+msgid "Add slave replication user"
+msgstr ""
+
+#: libraries/replication_gui.lib.php:254 server_privileges.php:716
+msgid "Any user"
+msgstr "Unrhyw ddefnyddiwr"
+
+#: libraries/replication_gui.lib.php:255 libraries/replication_gui.lib.php:323
+#: libraries/replication_gui.lib.php:346 server_privileges.php:717
+#: server_privileges.php:784 server_privileges.php:808
+#: server_privileges.php:1928 server_privileges.php:1958
+msgid "Use text field"
+msgstr "Defnyddiwch faes testun"
+
+#: libraries/replication_gui.lib.php:302 server_privileges.php:764
+msgid "Any host"
+msgstr "Unrhyw westeiwr"
+
+#: libraries/replication_gui.lib.php:306 server_privileges.php:768
+msgid "Local"
+msgstr "Lleol"
+
+#: libraries/replication_gui.lib.php:312 server_privileges.php:773
+msgid "This Host"
+msgstr "Y Gwesteiwr Hwn"
+
+#: libraries/replication_gui.lib.php:318 server_privileges.php:779
+msgid "Use Host Table"
+msgstr "Defnyddiwch Dabl Gwesteiwyr"
+
+#: libraries/replication_gui.lib.php:331 server_privileges.php:792
+msgid ""
+"When Host table is used, this field is ignored and values stored in Host "
+"table are used instead."
+msgstr ""
+
+#. l10n: Text direction, use either ltr or rtl
+#: libraries/select_lang.lib.php:491
+msgid "ltr"
+msgstr ""
+
+#: libraries/select_lang.lib.php:493
+msgid "Content of table __TABLE__"
+msgstr ""
+
+#: libraries/select_lang.lib.php:494
+msgid "(continued)"
+msgstr ""
+
+#: libraries/select_lang.lib.php:495
+msgid "Structure of table __TABLE__"
+msgstr ""
+
+#: libraries/select_lang.lib.php:500 libraries/select_lang.lib.php:506
+#: libraries/select_lang.lib.php:512
+#, php-format
+msgid "Unknown language: %1$s."
+msgstr "Iaith anhysbys: %1$s."
+
+#: libraries/select_server.lib.php:45 setup/frames/index.inc.php:97
+#: setup/lib/messages.inc.php:115
+msgid "Servers"
+msgstr "Gweinyddion"
+
+#: libraries/server_links.inc.php:53 server_engines.php:112
+#: server_engines.php:116 server_status.php:415 test/theme.php:105
+msgid "Variables"
+msgstr "Newidynnau"
+
+#: libraries/server_links.inc.php:57 test/theme.php:109
+msgid "Charsets"
+msgstr "Setiau nod"
+
+#: libraries/server_links.inc.php:61 test/theme.php:113
+msgid "Engines"
+msgstr "Peiriannau"
+
+#: libraries/server_links.inc.php:76 server_binlog.php:110
+#: server_status.php:364 test/theme.php:121
+msgid "Binary log"
+msgstr "Log deuaidd"
+
+#: libraries/server_links.inc.php:80
+msgid "Processes"
+msgstr "Prosesau"
+
+#: libraries/server_links.inc.php:92 server_synchronize.php:1092
+#: server_synchronize.php:1100
+msgid "Synchronize"
+msgstr "Cydamseru"
+
+#: libraries/server_synchronize.lib.php:1341 server_synchronize.php:1110
+msgid "Source database"
+msgstr "Cronfa ddata ffynhonnell"
+
+#: libraries/server_synchronize.lib.php:1343
+#: libraries/server_synchronize.lib.php:1369
+msgid "Current server"
+msgstr "Gweinydd cyfredol"
+
+#: libraries/server_synchronize.lib.php:1345
+#: libraries/server_synchronize.lib.php:1371
+msgid "Remote server"
+msgstr "Gweinydd pell"
+
+#: libraries/server_synchronize.lib.php:1348
+msgid "Difference"
+msgstr "Gwahaniaeth"
+
+#: libraries/server_synchronize.lib.php:1367 server_synchronize.php:1112
+msgid "Target database"
+msgstr "Cronfa ddata targed"
+
+#: libraries/sql_query_form.lib.php:223
+#, php-format
+msgid "Run SQL query/queries on server %s"
+msgstr ""
+
+#: libraries/sql_query_form.lib.php:240 libraries/sql_query_form.lib.php:265
+#, php-format
+msgid "Run SQL query/queries on database %s"
+msgstr ""
+
+#: libraries/sql_query_form.lib.php:317
+msgid "Columns"
+msgstr "Colofnau"
+
+#: libraries/sql_query_form.lib.php:352 sql.php:665 sql.php:666 sql.php:683
+msgid "Bookmark this SQL query"
+msgstr "Clustnodwch yr ymholiad SQL hwn"
+
+#: libraries/sql_query_form.lib.php:359 sql.php:677
+msgid "Let every user access this bookmark"
+msgstr ""
+
+#: libraries/sql_query_form.lib.php:365
+msgid "Replace existing bookmark of same name"
+msgstr ""
+
+#: libraries/sql_query_form.lib.php:381
+msgid "Do not overwrite this query from outside the window"
+msgstr ""
+
+#: libraries/sql_query_form.lib.php:388
+msgid "Delimiter"
+msgstr "Cyfyngydd"
+
+#: libraries/sql_query_form.lib.php:396
+msgid " Show this query here again "
+msgstr " Dangoswch yr ymholiad hwn yma eto"
+
+#: libraries/sql_query_form.lib.php:462
+msgid "Submit"
+msgstr "Gyrru"
+
+#: libraries/sql_query_form.lib.php:466
+msgid "View only"
+msgstr "Dangos yn unig"
+
+#: libraries/sqlparser.lib.php:137
+msgid ""
+"There seems to be an error in your SQL query. The MySQL server error output "
+"below, if there is any, may also help you in diagnosing the problem"
+msgstr ""
+
+#: libraries/sqlparser.lib.php:173
+msgid ""
+"There is a chance that you may have found a bug in the SQL parser. Please "
+"examine your query closely, and check that the quotes are correct and not "
+"mis-matched. Other possible failure causes may be that you are uploading a "
+"file with binary outside of a quoted text area. You can also try your query "
+"on the MySQL command line interface. The MySQL server error output below, if "
+"there is any, may also help you in diagnosing the problem. If you still have "
+"problems or if the parser fails where the command line interface succeeds, "
+"please reduce your SQL query input to the single query that causes problems, "
+"and submit a bug report with the data chunk in the CUT section below:"
+msgstr ""
+
+#: libraries/sqlparser.lib.php:175
+msgid "BEGIN CUT"
+msgstr "BEGIN CUT"
+
+#: libraries/sqlparser.lib.php:177
+msgid "END CUT"
+msgstr "END CUT"
+
+#: libraries/sqlparser.lib.php:179
+msgid "BEGIN RAW"
+msgstr "BEGIN RAW"
+
+#: libraries/sqlparser.lib.php:183
+msgid "END RAW"
+msgstr "END RAW"
+
+#: libraries/sqlparser.lib.php:344
+msgid "Unclosed quote"
+msgstr ""
+
+#: libraries/sqlparser.lib.php:495
+msgid "Invalid Identifer"
+msgstr ""
+
+#: libraries/sqlparser.lib.php:612
+msgid "Unknown Punctuation String"
+msgstr ""
+
+#: libraries/sqlvalidator.lib.php:68
+#, php-format
+msgid ""
+"The SQL validator could not be initialized. Please check if you have "
+"installed the necessary PHP extensions as described in the %sdocumentation%s."
+msgstr ""
+
+#: libraries/tbl_links.inc.php:107 libraries/tbl_links.inc.php:140
+#: libraries/tbl_links.inc.php:141
+msgid "Table seems to be empty!"
+msgstr ""
+
+#: libraries/tbl_links.inc.php:149
+#, php-format
+msgid "Tracking of %s.%s is activated."
+msgstr ""
+
+#: libraries/tbl_properties.inc.php:105
+msgid "Length/Values"
+msgstr ""
+
+#: libraries/tbl_properties.inc.php:105
+msgid ""
+"If column type is \"enum\" or \"set\", please enter the values using this "
+"format: 'a','b','c'...
If you ever need to put a backslash (\"\\\") or "
+"a single quote (\"'\") amongst those values, precede it with a backslash "
+"(for example '\\\\xyz' or 'a\\'b')."
+msgstr ""
+
+#: libraries/tbl_properties.inc.php:106
+msgid ""
+"For default values, please enter just a single value, without backslash "
+"escaping or quotes, using this format: a"
+msgstr ""
+
+#: libraries/tbl_properties.inc.php:108 pdf_schema.php:1264
+#: pdf_schema.php:1285 tbl_printview.php:144 tbl_structure.php:180
+msgid "Attributes"
+msgstr ""
+
+#: libraries/tbl_properties.inc.php:137
+#, php-format
+msgid ""
+"For a list of available transformation options and their MIME type "
+"transformations, click on %stransformation descriptions%s"
+msgstr ""
+
+#: libraries/tbl_properties.inc.php:145
+msgid "Transformation options"
+msgstr ""
+
+#: libraries/tbl_properties.inc.php:146
+msgid ""
+"Please enter the values for transformation options using this format: 'a', "
+"100, b,'c'...
If you ever need to put a backslash (\"\\\") or a single "
+"quote (\"'\") amongst those values, precede it with a backslash (for example "
+"'\\\\xyz' or 'a\\'b')."
+msgstr ""
+
+#: libraries/tbl_properties.inc.php:393
+msgctxt "for default"
+msgid "None"
+msgstr "Dim"
+
+#: libraries/tbl_properties.inc.php:394
+msgid "As defined:"
+msgstr "Fel a ddiffiniwyd:"
+
+#: libraries/tbl_properties.inc.php:580 transformation_overview.php:58
+#, php-format
+msgid ""
+"No description is available for this transformation.
Please ask the "
+"author what %s does."
+msgstr ""
+
+#: libraries/tbl_properties.inc.php:726 server_engines.php:58
+#: tbl_operations.php:355
+msgid "Storage Engine"
+msgstr "Peiriant Storio"
+
+#: libraries/tbl_properties.inc.php:755
+msgid "PARTITION definition"
+msgstr "Diffiniad PARTITION"
+
+#: libraries/tbl_properties.inc.php:776 pdf_pages.php:503
+#: setup/frames/config.inc.php:39 setup/frames/index.inc.php:214
+#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1126 tbl_indexes.php:248
+#: tbl_relation.php:566
+msgid "Save"
+msgstr "Cadw"
+
+#: libraries/tbl_properties.inc.php:780 tbl_structure.php:542
+#, php-format
+msgid "Add %s column(s)"
+msgstr "Ychwanegwch %s colofn"
+
+#: libraries/tbl_properties.inc.php:784 tbl_structure.php:536
+msgid "You have to add at least one column."
+msgstr "Rydych chi wedi ychwanegu o leiaf un golofn."
+
+#: libraries/tbl_triggers.lib.php:29
+msgid "Event"
+msgstr "Digwyddiad"
+
+#: libraries/transformations/application_octetstream__download.inc.php:10
+msgid ""
+"Displays a link to download the binary data of the column. You can use the "
+"first option to specify the filename, or use the second option as the name "
+"of a column which contains the filename. If you use the second option, you "
+"need to set the first option to the empty string."
+msgstr ""
+
+#: libraries/transformations/application_octetstream__hex.inc.php:10
+msgid ""
+"Displays hexadecimal representation of data. Optional first parameter "
+"specifies how often space will be added (defaults to 2 nibbles)."
+msgstr ""
+
+#: libraries/transformations/image_jpeg__inline.inc.php:10
+#: libraries/transformations/image_png__inline.inc.php:10
+msgid ""
+"Displays a clickable thumbnail. The options are the maximum width and height "
+"in pixels. The original aspect ratio is preserved."
+msgstr ""
+
+#: libraries/transformations/image_jpeg__link.inc.php:10
+msgid "Displays a link to download this image."
+msgstr "Mae'n dangos dolen er mwyn lawrlwytho'r ddelwedd hon."
+
+#: libraries/transformations/text_plain__dateformat.inc.php:10
+msgid ""
+"Displays a TIME, TIMESTAMP, DATETIME or numeric unix timestamp column as "
+"formatted date. The first option is the offset (in hours) which will be "
+"added to the timestamp (Default: 0). Use second option to specify a "
+"different date/time format string. Third option determines whether you want "
+"to see local date or UTC one (use \"local\" or \"utc\" strings) for that. "
+"According to that, date format has different value - for \"local\" see the "
+"documentation for PHP's strftime() function and for \"utc\" it is done using "
+"gmdate() function."
+msgstr ""
+
+#: libraries/transformations/text_plain__external.inc.php:10
+msgid ""
+"LINUX ONLY: Launches an external application and feeds it the column data "
+"via standard input. Returns the standard output of the application. The "
+"default is Tidy, to pretty-print HTML code. For security reasons, you have "
+"to manually edit the file libraries/transformations/text_plain__external.inc."
+"php and list the tools you want to make available. The first option is then "
+"the number of the program you want to use and the second option is the "
+"parameters for the program. The third option, if set to 1, will convert the "
+"output using htmlspecialchars() (Default 1). The fourth option, if set to 1, "
+"will prevent wrapping and ensure that the output appears all on one line "
+"(Default 1)."
+msgstr ""
+
+#: libraries/transformations/text_plain__formatted.inc.php:10
+msgid ""
+"Displays the contents of the column as-is, without running it through "
+"htmlspecialchars(). That is, the column is assumed to contain valid HTML."
+msgstr ""
+
+#: libraries/transformations/text_plain__imagelink.inc.php:10
+msgid ""
+"Displays an image and a link; the column contains the filename. The first "
+"option is a URL prefix like \"http://www.example.com/\". The second and "
+"third options are the width and the height in pixels."
+msgstr ""
+
+#: libraries/transformations/text_plain__link.inc.php:10
+msgid ""
+"Displays a link; the column contains the filename. The first option is a URL "
+"prefix like \"http://www.example.com/\". The second option is a title for "
+"the link."
+msgstr ""
+
+#: libraries/transformations/text_plain__longToIpv4.inc.php:10
+msgid ""
+"Converts an (IPv4) Internet network address into a string in Internet "
+"standard dotted format."
+msgstr ""
+
+#: libraries/transformations/text_plain__sql.inc.php:10
+msgid "Formats text as SQL query with syntax highlighting."
+msgstr ""
+
+#: libraries/transformations/text_plain__substr.inc.php:10
+msgid ""
+"Displays a part of a string. The first option is the number of characters to "
+"skip from the beginning of the string (Default 0). The second option is the "
+"number of characters to return (Default: until end of string). The third "
+"option is the string to append and/or prepend when truncation occurs "
+"(Default: \"...\")."
+msgstr ""
+
+#: libraries/zip_extension.lib.php:26
+msgid "No files found inside ZIP archive!"
+msgstr ""
+
+#: libraries/zip_extension.lib.php:49 libraries/zip_extension.lib.php:51
+#: libraries/zip_extension.lib.php:66
+msgid "Error in ZIP archive:"
+msgstr ""
+
+#: main.php:68
+msgid "Actions"
+msgstr "Gweithredoedd"
+
+#: main.php:125
+msgid "MySQL connection collation"
+msgstr "Coladiad cysylltiad MySQL"
+
+#: main.php:139
+msgid "Interface"
+msgstr "Rhyngwyneb"
+
+#: main.php:159
+msgid "Custom color"
+msgstr "Lliw cwstwm"
+
+#: main.php:163 pdf_pages.php:363 setup/lib/FormDisplay.tpl.php:216
+#: tbl_change.php:1175
+msgid "Reset"
+msgstr "Ailosod"
+
+#: main.php:187
+msgid "Protocol version"
+msgstr "Fersiwn protocol"
+
+#: main.php:189 server_privileges.php:1389 server_privileges.php:1536
+#: server_privileges.php:1650 server_privileges.php:2068
+#: server_processlist.php:54
+msgid "User"
+msgstr "Defnyddiwr"
+
+#: main.php:193
+msgid "MySQL charset"
+msgstr "Set nodau MySQL"
+
+#: main.php:205
+msgid "Web server"
+msgstr "Gweinydd gwe"
+
+#: main.php:211
+msgid "MySQL client version"
+msgstr "Fersiwn cleient MySQL"
+
+#: main.php:213
+msgid "PHP extension"
+msgstr "Estyniad PHP"
+
+#: main.php:219
+msgid "Show PHP information"
+msgstr "Dangos gwybodaeth PHP"
+
+#: main.php:230
+msgid "Wiki"
+msgstr "Wici"
+
+#: main.php:233
+msgid "Official Homepage"
+msgstr "Hafan Swyddogol"
+
+#: main.php:266
+msgid ""
+"Your configuration file contains settings (root with no password) that "
+"correspond to the default MySQL privileged account. Your MySQL server is "
+"running with this default, is open to intrusion, and you really should fix "
+"this security hole by setting a password for user 'root'."
+msgstr ""
+
+#: main.php:274
+msgid ""
+"You have enabled mbstring.func_overload in your PHP configuration. This "
+"option is incompatible with phpMyAdmin and might cause some data to be "
+"corrupted!"
+msgstr ""
+
+#: main.php:282
+msgid ""
+"The mbstring PHP extension was not found and you seem to be using a "
+"multibyte charset. Without the mbstring extension phpMyAdmin is unable to "
+"split strings correctly and it may result in unexpected results."
+msgstr ""
+
+#: main.php:290
+msgid ""
+"Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini."
+"session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie "
+"validity configured in phpMyAdmin, because of this, your login will expire "
+"sooner than configured in phpMyAdmin."
+msgstr ""
+
+#: main.php:298
+msgid "The configuration file now needs a secret passphrase (blowfish_secret)."
+msgstr ""
+
+#: main.php:306
+msgid ""
+"Directory [code]config[/code], which is used by the setup script, still "
+"exists in your phpMyAdmin directory. You should remove it once phpMyAdmin "
+"has been configured."
+msgstr ""
+
+#: main.php:331
+msgid ""
+"Javascript support is missing or disabled in your browser, some phpMyAdmin "
+"functionality will be missing. For example navigation frame will not refresh "
+"automatically."
+msgstr ""
+
+#: main.php:346
+#, php-format
+msgid ""
+"Your PHP MySQL library version %s differs from your MySQL server version %s. "
+"This may cause unpredictable behavior."
+msgstr ""
+
+#: main.php:358
+#, php-format
+msgid ""
+"Server running with Suhosin. Please refer to %sdocumentation%s for possible "
+"issues."
+msgstr ""
+
+#: navigation.php:66 navigation.php:67 navigation.php:70
+msgid "Reload navigation frame"
+msgstr ""
+
+#: navigation.php:210 server_databases.php:371 server_synchronize.php:1191
+msgid "No databases"
+msgstr "Dim cronfeydd data"
+
+#: navigation.php:304
+msgid "Filter"
+msgstr "Hidlydd"
+
+#: navigation.php:305 setup/frames/index.inc.php:218
+#: setup/lib/messages.inc.php:42
+msgid "Clear"
+msgstr "Clirio"
+
+#: navigation.php:336 navigation.php:337
+msgctxt "short form"
+msgid "Create table"
+msgstr "Crëwch dabl"
+
+#: navigation.php:339 navigation.php:502
+msgid "Please select a database"
+msgstr "Dewiswch gronfa ddata"
+
+#: pdf_pages.php:41 pdf_pages.php:47 pdf_pages.php:53 pdf_pages.php:58
+#, php-format
+msgid "%s table not found or not set in %s"
+msgstr "Tabl %s heb ei ddarganfod neu heb ei osod mewn %s"
+
+#: pdf_pages.php:266
+msgid "Please choose a page to edit"
+msgstr ""
+
+#: pdf_pages.php:304 pmd_pdf.php:114
+msgid "Create a page"
+msgstr "Crëwch dudalen"
+
+#: pdf_pages.php:310
+msgid "Page name"
+msgstr "Enw'r dudalen"
+
+#: pdf_pages.php:314
+msgid "Automatic layout based on"
+msgstr ""
+
+#: pdf_pages.php:316
+msgid "Internal relations"
+msgstr "Perthnasau mewnol"
+
+#: pdf_pages.php:339
+msgid "Select Tables"
+msgstr "Dewis Tablau"
+
+#: pdf_pages.php:362
+msgid "Toggle scratchboard"
+msgstr ""
+
+#: pdf_pages.php:525
+msgid ""
+"The current page has references to tables that no longer exist. Would you "
+"like to delete those references?"
+msgstr ""
+
+#: pdf_schema.php:636
+#, php-format
+msgid "The %s table doesn't exist!"
+msgstr ""
+
+#: pdf_schema.php:672
+#, php-format
+msgid "Please configure the coordinates for table %s"
+msgstr ""
+
+#: pdf_schema.php:995
+#, php-format
+msgid "Schema of the %s database - Page %s"
+msgstr ""
+
+#: pdf_schema.php:1013
+msgid "No tables"
+msgstr "Dim tablau"
+
+#: pdf_schema.php:1032 pdf_schema.php:1141
+msgid "Relational schema"
+msgstr "Sgema perthynol"
+
+#: pdf_schema.php:1116
+msgid "Table of contents"
+msgstr "Tabl cynnwys"
+
+#: pdf_schema.php:1267 pdf_schema.php:1288 tbl_printview.php:147
+#: tbl_structure.php:183 tbl_tracking.php:278
+msgid "Extra"
+msgstr "Ychwanegol"
+
+#: pmd_general.php:64
+msgid "Show/Hide left menu"
+msgstr ""
+
+#: pmd_general.php:68
+msgid "Save position"
+msgstr "Cadw safle"
+
+#: pmd_general.php:71 server_synchronize.php:429 server_synchronize.php:872
+msgid "Create table"
+msgstr "Crëwch dabl"
+
+#: pmd_general.php:74 pmd_general.php:306
+msgid "Create relation"
+msgstr "Crëwch berthynas"
+
+#: pmd_general.php:80
+msgid "Reload"
+msgstr "Ail-lwytho"
+
+#: pmd_general.php:83
+msgid "Help"
+msgstr "Cymorth"
+
+#: pmd_general.php:87
+msgid "Angular links"
+msgstr "Cysylltiadau onglog"
+
+#: pmd_general.php:87
+msgid "Direct links"
+msgstr "Cysylltiadau uniongyrchol"
+
+#: pmd_general.php:91
+msgid "Snap to grid"
+msgstr "Snap i'r grid"
+
+#: pmd_general.php:95
+msgid "Small/Big All"
+msgstr ""
+
+#: pmd_general.php:99
+msgid "Toggle small/big"
+msgstr ""
+
+#: pmd_general.php:104
+msgid "Import/Export coordinates for PDF schema"
+msgstr ""
+
+#: pmd_general.php:108
+msgid "Move Menu"
+msgstr ""
+
+#: pmd_general.php:120
+msgid "Hide/Show all"
+msgstr "Cuddio/Dangos pob"
+
+#: pmd_general.php:124
+msgid "Hide/Show Tables with no relation"
+msgstr "Cuddio/Dangos Tablau heb berthynas"
+
+#: pmd_general.php:164
+msgid "Number of tables"
+msgstr "Nifer y tablau"
+
+#: pmd_general.php:372
+msgid "Delete relation"
+msgstr "Dilëwch berthynas"
+
+#: pmd_help.php:27
+msgid "To select relation, click :"
+msgstr ""
+
+#: pmd_help.php:29
+msgid ""
+"The display column is shown in pink. To set/unset a column as the display "
+"column, click the \"Choose column to display\" icon, then click on the "
+"appropriate column name."
+msgstr ""
+
+#: pmd_pdf.php:63
+msgid "Page has been created"
+msgstr ""
+
+#: pmd_pdf.php:65
+msgid "Page creation failed"
+msgstr ""
+
+#: pmd_pdf.php:85
+msgid "Export/Import to scale"
+msgstr ""
+
+#: pmd_pdf.php:89
+msgid "recommended"
+msgstr ""
+
+#: pmd_pdf.php:94
+msgid "to/from page"
+msgstr ""
+
+#: querywindow.php:104
+msgid "Import files"
+msgstr "Mewnforiwch ffeiliau"
+
+#: querywindow.php:115
+msgid "All"
+msgstr "Pob"
+
+#: server_binlog.php:120
+msgid "Select binary log to view"
+msgstr ""
+
+#: server_binlog.php:136
+msgid "Files"
+msgstr "Ffeiliau"
+
+#: server_binlog.php:183 server_binlog.php:186 server_processlist.php:49
+#: server_processlist.php:51
+msgid "Truncate Shown Queries"
+msgstr ""
+
+#: server_binlog.php:192 server_binlog.php:195 server_processlist.php:49
+#: server_processlist.php:51
+msgid "Show Full Queries"
+msgstr ""
+
+#: server_binlog.php:215
+msgid "Log name"
+msgstr "Enw'r log"
+
+#: server_binlog.php:216
+msgid "Position"
+msgstr "Safle"
+
+#: server_binlog.php:217
+msgid "Event type"
+msgstr "Math y digwyddiad"
+
+#: server_binlog.php:219
+msgid "Original position"
+msgstr "Safle gwreiddiol"
+
+#: server_binlog.php:220
+msgid "Information"
+msgstr "Gwybodaeth"
+
+#: server_collations.php:40
+msgid "Character Sets and Collations"
+msgstr "Setiau nod a Choladiadau"
+
+#: server_databases.php:52
+msgid "No databases selected."
+msgstr "Dim cronfeydd data wedi'u dewis."
+
+#: server_databases.php:63
+#, php-format
+msgid "%s databases have been dropped successfully."
+msgstr ""
+
+#: server_databases.php:88
+msgid "Databases statistics"
+msgstr "Ystadegau cronfeydd data"
+
+#: server_databases.php:117 server_status.php:371
+#: setup/lib/messages.inc.php:117
+msgid "Tables"
+msgstr "Tablau"
+
+#: server_databases.php:195 server_replication.php:181
+#: server_replication.php:209
+msgid "Master replication"
+msgstr ""
+
+#: server_databases.php:197 server_replication.php:248
+msgid "Slave replication"
+msgstr ""
+
+#: server_databases.php:230
+msgid "Jump to database"
+msgstr "Neidiwch i'r gronfa ddata"
+
+#: server_databases.php:267
+msgid "Not replicated"
+msgstr ""
+
+#: server_databases.php:273
+#, fuzzy
+#| msgid "Replication"
+msgid "Replicated"
+msgstr "Dyblygiad"
+
+#: server_databases.php:289
+#, php-format
+msgid "Check privileges for database "%s"."
+msgstr ""
+
+#: server_databases.php:293 server_databases.php:294
+msgid "Check Privileges"
+msgstr "Gwirio Breintiau"
+
+#: server_databases.php:358 server_databases.php:359
+msgid "Enable Statistics"
+msgstr "Galluogi Ystadegau"
+
+#: server_databases.php:362 server_databases.php:363
+msgid "Disable Statistics"
+msgstr "Analluogi Ystadegau"
+
+#: server_databases.php:366
+msgid ""
+"Note: Enabling the database statistics here might cause heavy traffic "
+"between the web server and the MySQL server."
+msgstr ""
+
+#: server_engines.php:49
+msgid "Storage Engines"
+msgstr "Peiriannau Storio"
+
+#: server_export.php:21
+msgid "View dump (schema) of databases"
+msgstr "Gwylio dadlwythiad (sgema) cronfeydd data"
+
+#: server_privileges.php:24 server_privileges.php:266
+msgid "Includes all privileges except GRANT."
+msgstr ""
+
+#: server_privileges.php:25 server_privileges.php:192
+#: server_privileges.php:515
+msgid "Allows altering the structure of existing tables."
+msgstr ""
+
+#: server_privileges.php:26 server_privileges.php:208
+#: server_privileges.php:521
+msgid "Allows altering and dropping stored routines."
+msgstr ""
+
+#: server_privileges.php:27 server_privileges.php:184
+#: server_privileges.php:514
+msgid "Allows creating new databases and tables."
+msgstr ""
+
+#: server_privileges.php:28 server_privileges.php:207
+#: server_privileges.php:520
+msgid "Allows creating stored routines."
+msgstr ""
+
+#: server_privileges.php:29 server_privileges.php:514
+msgid "Allows creating new tables."
+msgstr ""
+
+#: server_privileges.php:30 server_privileges.php:195
+#: server_privileges.php:518
+msgid "Allows creating temporary tables."
+msgstr ""
+
+#: server_privileges.php:31 server_privileges.php:209
+#: server_privileges.php:554
+msgid "Allows creating, dropping and renaming user accounts."
+msgstr ""
+
+#: server_privileges.php:32 server_privileges.php:199
+#: server_privileges.php:203 server_privileges.php:526
+#: server_privileges.php:530
+msgid "Allows creating new views."
+msgstr ""
+
+#: server_privileges.php:33 server_privileges.php:183
+#: server_privileges.php:506
+msgid "Allows deleting data."
+msgstr ""
+
+#: server_privileges.php:34 server_privileges.php:185
+#: server_privileges.php:517
+msgid "Allows dropping databases and tables."
+msgstr ""
+
+#: server_privileges.php:35 server_privileges.php:517
+msgid "Allows dropping tables."
+msgstr ""
+
+#: server_privileges.php:36 server_privileges.php:200
+#: server_privileges.php:534
+msgid "Allows to set up events for the event scheduler"
+msgstr ""
+
+#: server_privileges.php:37 server_privileges.php:210
+#: server_privileges.php:522
+msgid "Allows executing stored routines."
+msgstr ""
+
+#: server_privileges.php:38 server_privileges.php:189
+#: server_privileges.php:509
+msgid "Allows importing data from and exporting data into files."
+msgstr ""
+
+#: server_privileges.php:39 server_privileges.php:540
+msgid ""
+"Allows adding users and privileges without reloading the privilege tables."
+msgstr ""
+
+#: server_privileges.php:40 server_privileges.php:191
+#: server_privileges.php:516
+msgid "Allows creating and dropping indexes."
+msgstr ""
+
+#: server_privileges.php:41 server_privileges.php:181
+#: server_privileges.php:442 server_privileges.php:504
+msgid "Allows inserting and replacing data."
+msgstr ""
+
+#: server_privileges.php:42 server_privileges.php:196
+#: server_privileges.php:549
+msgid "Allows locking tables for the current thread."
+msgstr ""
+
+#: server_privileges.php:43 server_privileges.php:646
+#: server_privileges.php:648
+msgid "Limits the number of new connections the user may open per hour."
+msgstr ""
+
+#: server_privileges.php:44 server_privileges.php:634
+#: server_privileges.php:636
+msgid "Limits the number of queries the user may send to the server per hour."
+msgstr ""
+
+#: server_privileges.php:45 server_privileges.php:640
+#: server_privileges.php:642
+msgid ""
+"Limits the number of commands that change any table or database the user may "
+"execute per hour."
+msgstr ""
+
+#: server_privileges.php:46 server_privileges.php:652
+#: server_privileges.php:654
+msgid "Limits the number of simultaneous connections the user may have."
+msgstr ""
+
+#: server_privileges.php:47 server_privileges.php:188
+#: server_privileges.php:544
+msgid "Allows viewing processes of all users"
+msgstr ""
+
+#: server_privileges.php:48 server_privileges.php:190
+#: server_privileges.php:448 server_privileges.php:550
+msgid "Has no effect in this MySQL version."
+msgstr ""
+
+#: server_privileges.php:49 server_privileges.php:186
+#: server_privileges.php:545
+msgid "Allows reloading server settings and flushing the server's caches."
+msgstr ""
+
+#: server_privileges.php:50 server_privileges.php:198
+#: server_privileges.php:552
+msgid "Allows the user to ask where the slaves / masters are."
+msgstr ""
+
+#: server_privileges.php:51 server_privileges.php:197
+#: server_privileges.php:553
+msgid "Needed for the replication slaves."
+msgstr ""
+
+#: server_privileges.php:52 server_privileges.php:180
+#: server_privileges.php:439 server_privileges.php:503
+msgid "Allows reading data."
+msgstr ""
+
+#: server_privileges.php:53 server_privileges.php:193
+#: server_privileges.php:547
+msgid "Gives access to the complete list of databases."
+msgstr ""
+
+#: server_privileges.php:54 server_privileges.php:204
+#: server_privileges.php:206 server_privileges.php:519
+msgid "Allows performing SHOW CREATE VIEW queries."
+msgstr ""
+
+#: server_privileges.php:55 server_privileges.php:187
+#: server_privileges.php:546
+msgid "Allows shutting down the server."
+msgstr ""
+
+#: server_privileges.php:56 server_privileges.php:194
+#: server_privileges.php:543
+msgid ""
+"Allows connecting, even if maximum number of connections is reached; "
+"required for most administrative operations like setting global variables or "
+"killing threads of other users."
+msgstr ""
+
+#: server_privileges.php:57 server_privileges.php:201
+#: server_privileges.php:535
+msgid "Allows creating and dropping triggers"
+msgstr ""
+
+#: server_privileges.php:58 server_privileges.php:182
+#: server_privileges.php:445 server_privileges.php:505
+msgid "Allows changing data."
+msgstr ""
+
+#: server_privileges.php:59 server_privileges.php:260
+msgid "No privileges."
+msgstr ""
+
+#: server_privileges.php:302 server_privileges.php:303
+msgctxt "None privileges"
+msgid "None"
+msgstr "Dim"
+
+#: server_privileges.php:431 server_privileges.php:566
+#: server_privileges.php:1718 server_privileges.php:1724
+msgid "Table-specific privileges"
+msgstr ""
+
+#: server_privileges.php:432 server_privileges.php:574
+#: server_privileges.php:1540
+msgid " Note: MySQL privilege names are expressed in English "
+msgstr ""
+
+#: server_privileges.php:563 server_privileges.php:1539
+msgid "Global privileges"
+msgstr ""
+
+#: server_privileges.php:565 server_privileges.php:1718
+msgid "Database-specific privileges"
+msgstr ""
+
+#: server_privileges.php:610
+msgid "Administration"
+msgstr ""
+
+#: server_privileges.php:630
+msgid "Resource limits"
+msgstr ""
+
+#: server_privileges.php:631
+msgid "Note: Setting these options to 0 (zero) removes the limit."
+msgstr ""
+
+#: server_privileges.php:708
+msgid "Login Information"
+msgstr ""
+
+#: server_privileges.php:802
+msgid "Do not change the password"
+msgstr ""
+
+#: server_privileges.php:843 server_privileges.php:2205
+msgid "No user found."
+msgstr ""
+
+#: server_privileges.php:887
+#, php-format
+msgid "The user %s already exists!"
+msgstr ""
+
+#: server_privileges.php:970
+msgid "You have added a new user."
+msgstr ""
+
+#: server_privileges.php:1191
+#, php-format
+msgid "You have updated the privileges for %s."
+msgstr ""
+
+#: server_privileges.php:1215
+#, php-format
+msgid "You have revoked the privileges for %s"
+msgstr ""
+
+#: server_privileges.php:1251
+#, php-format
+msgid "The password for %s was changed successfully."
+msgstr ""
+
+#: server_privileges.php:1271
+#, php-format
+msgid "Deleting %s"
+msgstr ""
+
+#: server_privileges.php:1282
+msgid "No users selected for deleting!"
+msgstr ""
+
+#: server_privileges.php:1285
+msgid "Reloading the privileges"
+msgstr ""
+
+#: server_privileges.php:1300
+msgid "The selected users have been deleted successfully."
+msgstr ""
+
+#: server_privileges.php:1335
+msgid "The privileges were reloaded successfully."
+msgstr ""
+
+#: server_privileges.php:1363 server_privileges.php:1649
+msgid "Edit Privileges"
+msgstr ""
+
+#: server_privileges.php:1372
+msgid "Revoke"
+msgstr ""
+
+#: server_privileges.php:1404
+msgid "User overview"
+msgstr ""
+
+#: server_privileges.php:1541 server_privileges.php:1723
+#: server_privileges.php:2072
+msgid "Grant"
+msgstr ""
+
+#: server_privileges.php:1560 server_privileges.php:2162
+msgid "Any"
+msgstr ""
+
+#: server_privileges.php:1609 server_privileges.php:1633
+#: server_privileges.php:2027 server_privileges.php:2216
+msgid "Add a new User"
+msgstr ""
+
+#: server_privileges.php:1614
+msgid "Remove selected users"
+msgstr ""
+
+#: server_privileges.php:1617
+msgid "Revoke all active privileges from the users and delete them afterwards."
+msgstr ""
+
+#: server_privileges.php:1618 server_privileges.php:1619
+#: server_privileges.php:1620
+msgid "Drop the databases that have the same names as the users."
+msgstr ""
+
+#: server_privileges.php:1636
+#, php-format
+msgid ""
+"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
+"tables. The content of these tables may differ from the privileges the "
+"server uses, if they have been changed manually. In this case, you should %"
+"sreload the privileges%s before you continue."
+msgstr ""
+
+#: server_privileges.php:1684
+msgid "The selected user was not found in the privilege table."
+msgstr ""
+
+#: server_privileges.php:1724
+msgid "Column-specific privileges"
+msgstr ""
+
+#: server_privileges.php:1925
+msgid "Add privileges on the following database"
+msgstr ""
+
+#: server_privileges.php:1943
+msgid "Wildcards % and _ should be escaped with a \\ to use them literally"
+msgstr ""
+
+#: server_privileges.php:1946
+msgid "Add privileges on the following table"
+msgstr ""
+
+#: server_privileges.php:2003
+msgid "Change Login Information / Copy User"
+msgstr ""
+
+#: server_privileges.php:2006
+msgid "Create a new user with the same privileges and ..."
+msgstr ""
+
+#: server_privileges.php:2008
+msgid "... keep the old one."
+msgstr ""
+
+#: server_privileges.php:2009
+msgid " ... delete the old one from the user tables."
+msgstr ""
+
+#: server_privileges.php:2010
+msgid ""
+" ... revoke all active privileges from the old one and delete it afterwards."
+msgstr ""
+
+#: server_privileges.php:2011
+msgid ""
+" ... delete the old one from the user tables and reload the privileges "
+"afterwards."
+msgstr ""
+
+#: server_privileges.php:2033
+msgid "Database for user"
+msgstr ""
+
+#: server_privileges.php:2037
+msgctxt "Create none database for user"
+msgid "None"
+msgstr ""
+
+#: server_privileges.php:2038
+msgid "Create database with same name and grant all privileges"
+msgstr ""
+
+#: server_privileges.php:2039
+msgid "Grant all privileges on wildcard name (username\\_%)"
+msgstr ""
+
+#: server_privileges.php:2042
+#, php-format
+msgid "Grant all privileges on database "%s""
+msgstr ""
+
+#: server_privileges.php:2065
+#, php-format
+msgid "Users having access to "%s""
+msgstr ""
+
+#: server_privileges.php:2173
+msgid "global"
+msgstr ""
+
+#: server_privileges.php:2175
+msgid "database-specific"
+msgstr ""
+
+#: server_privileges.php:2177
+msgid "wildcard"
+msgstr ""
+
+#: server_processlist.php:22
+#, php-format
+msgid "Thread %s was successfully killed."
+msgstr ""
+
+#: server_processlist.php:24
+#, php-format
+msgid ""
+"phpMyAdmin was unable to kill thread %s. It probably has already been closed."
+msgstr ""
+
+#: server_processlist.php:53
+msgid "ID"
+msgstr ""
+
+#: server_replication.php:51
+msgid "Unknown error"
+msgstr ""
+
+#: server_replication.php:58
+#, php-format
+msgid "Unable to connect to master %s."
+msgstr ""
+
+#: server_replication.php:65
+msgid ""
+"Unable to read master log position. Possible privilege problem on master."
+msgstr ""
+
+#: server_replication.php:71
+msgid "Unable to change master"
+msgstr ""
+
+#: server_replication.php:74
+#, php-format
+msgid "Master server changed succesfully to %s"
+msgstr ""
+
+#: server_replication.php:182
+msgid "This server is configured as master in a replication process."
+msgstr ""
+
+#: server_replication.php:184 server_status.php:392
+msgid "Show master status"
+msgstr ""
+
+#: server_replication.php:187
+msgid "Show connected slaves"
+msgstr ""
+
+#: server_replication.php:210
+#, php-format
+msgid ""
+"This server is not configured as master in a replication process. Would you "
+"like to configure it?"
+msgstr ""
+
+#: server_replication.php:217
+msgid "Master configuration"
+msgstr ""
+
+#: server_replication.php:218
+msgid ""
+"This server is not configured as master server in a replication process. You "
+"can choose from either replicating all databases and ignoring certain "
+"(useful if you want to replicate majority of databases) or you can choose to "
+"ignore all databases by default and allow only certain databases to be "
+"replicated. Please select the mode:"
+msgstr ""
+
+#: server_replication.php:221
+msgid "Replicate all databases; Ignore:"
+msgstr ""
+
+#: server_replication.php:222
+msgid "Ignore all databases; Replicate:"
+msgstr ""
+
+#: server_replication.php:225
+msgid "Please select databases:"
+msgstr ""
+
+#: server_replication.php:228
+msgid ""
+"Now, add the following lines at the end of [mysqld] section in your my.cnf "
+"and please restart the MySQL server afterwards."
+msgstr ""
+
+#: server_replication.php:230
+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 ""
+
+#: server_replication.php:293
+msgid "Slave SQL Thread not running!"
+msgstr ""
+
+#: server_replication.php:296
+msgid "Slave IO Thread not running!"
+msgstr ""
+
+#: server_replication.php:305
+msgid ""
+"Server is configured as slave in a replication process. Would you like to:"
+msgstr ""
+
+#: server_replication.php:308
+msgid "See slave status table"
+msgstr ""
+
+#: server_replication.php:311
+msgid "Synchronize databases with master"
+msgstr ""
+
+#: server_replication.php:322
+msgid "Control slave:"
+msgstr ""
+
+#: server_replication.php:325
+msgid "Full start"
+msgstr ""
+
+#: server_replication.php:325
+msgid "Full stop"
+msgstr ""
+
+#: server_replication.php:326
+msgid "Reset slave"
+msgstr ""
+
+#: server_replication.php:327
+#, php-format
+msgid "SQL Thread %s only"
+msgstr ""
+
+#: server_replication.php:327 server_replication.php:328
+msgid "Start"
+msgstr ""
+
+#: server_replication.php:327 server_replication.php:328
+msgid "Stop"
+msgstr ""
+
+#: server_replication.php:328
+#, php-format
+msgid "IO Thread %s only"
+msgstr ""
+
+#: server_replication.php:332
+msgid "Error management:"
+msgstr ""
+
+#: server_replication.php:334
+msgid "Skipping errors might lead into unsynchronized master and slave!"
+msgstr ""
+
+#: server_replication.php:336
+msgid "Skip current error"
+msgstr ""
+
+#: server_replication.php:337
+msgid "Skip next"
+msgstr ""
+
+#: server_replication.php:340
+msgid "errors."
+msgstr ""
+
+#: server_replication.php:355
+#, php-format
+msgid ""
+"This server is not configured as slave in a replication process. Would you "
+"like to configure it?"
+msgstr ""
+
+#: server_status.php:40
+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 ""
+
+#: server_status.php:41
+msgid "The number of transactions that used the temporary binary log cache."
+msgstr ""
+
+#: server_status.php:42
+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 "
+"to increase the tmp_table_size value to cause temporary tables to be memory-"
+"based instead of disk-based."
+msgstr ""
+
+#: server_status.php:43
+msgid "How many temporary files mysqld has created."
+msgstr ""
+
+#: server_status.php:44
+msgid ""
+"The number of in-memory temporary tables created automatically by the server "
+"while executing statements."
+msgstr ""
+
+#: server_status.php:45
+msgid ""
+"The number of rows written with INSERT DELAYED for which some error occurred "
+"(probably duplicate key)."
+msgstr ""
+
+#: server_status.php:46
+msgid ""
+"The number of INSERT DELAYED handler threads in use. Every different table "
+"on which one uses INSERT DELAYED gets its own thread."
+msgstr ""
+
+#: server_status.php:47
+msgid "The number of INSERT DELAYED rows written."
+msgstr ""
+
+#: server_status.php:48
+msgid "The number of executed FLUSH statements."
+msgstr ""
+
+#: server_status.php:49
+msgid "The number of internal COMMIT statements."
+msgstr ""
+
+#: server_status.php:50
+msgid "The number of times a row was deleted from a table."
+msgstr ""
+
+#: server_status.php:51
+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 ""
+
+#: server_status.php:52
+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 ""
+
+#: server_status.php:53
+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 ""
+
+#: server_status.php:54
+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 ""
+
+#: server_status.php:55
+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 ""
+
+#: server_status.php:56
+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 "
+"probably have a lot of queries that require MySQL to scan whole tables or "
+"you have joins that don't use keys properly."
+msgstr ""
+
+#: server_status.php:57
+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 "
+"tables are not properly indexed or that your queries are not written to take "
+"advantage of the indexes you have."
+msgstr ""
+
+#: server_status.php:58
+msgid "The number of internal ROLLBACK statements."
+msgstr ""
+
+#: server_status.php:59
+msgid "The number of requests to update a row in a table."
+msgstr ""
+
+#: server_status.php:60
+msgid "The number of requests to insert a row in a table."
+msgstr ""
+
+#: server_status.php:61
+msgid "The number of pages containing data (dirty or clean)."
+msgstr ""
+
+#: server_status.php:62
+msgid "The number of pages currently dirty."
+msgstr ""
+
+#: server_status.php:63
+msgid "The number of buffer pool pages that have been requested to be flushed."
+msgstr ""
+
+#: server_status.php:64
+msgid "The number of free pages."
+msgstr ""
+
+#: server_status.php:65
+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 ""
+
+#: server_status.php:66
+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 "
+"be calculated as Innodb_buffer_pool_pages_total - "
+"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data."
+msgstr ""
+
+#: server_status.php:67
+msgid "Total size of buffer pool, in pages."
+msgstr ""
+
+#: server_status.php:68
+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 ""
+
+#: server_status.php:69
+msgid ""
+"The number of sequential read-aheads InnoDB initiated. This happens when "
+"InnoDB does a sequential full table scan."
+msgstr ""
+
+#: server_status.php:70
+msgid "The number of logical read requests InnoDB has done."
+msgstr ""
+
+#: server_status.php:71
+msgid ""
+"The number of logical reads that InnoDB could not satisfy from buffer pool "
+"and had to do a single-page read."
+msgstr ""
+
+#: server_status.php:72
+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 "
+"available, it's necessary to wait for pages to be flushed first. This "
+"counter counts instances of these waits. If the buffer pool size was set "
+"properly, this value should be small."
+msgstr ""
+
+#: server_status.php:73
+msgid "The number writes done to the InnoDB buffer pool."
+msgstr ""
+
+#: server_status.php:74
+msgid "The number of fsync() operations so far."
+msgstr ""
+
+#: server_status.php:75
+msgid "The current number of pending fsync() operations."
+msgstr ""
+
+#: server_status.php:76
+msgid "The current number of pending reads."
+msgstr ""
+
+#: server_status.php:77
+msgid "The current number of pending writes."
+msgstr ""
+
+#: server_status.php:78
+msgid "The amount of data read so far, in bytes."
+msgstr ""
+
+#: server_status.php:79
+msgid "The total number of data reads."
+msgstr ""
+
+#: server_status.php:80
+msgid "The total number of data writes."
+msgstr ""
+
+#: server_status.php:81
+msgid "The amount of data written so far, in bytes."
+msgstr ""
+
+#: server_status.php:82
+msgid "The number of pages that have been written for doublewrite operations."
+msgstr ""
+
+#: server_status.php:83
+msgid "The number of doublewrite operations that have been performed."
+msgstr ""
+
+#: server_status.php:84
+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 ""
+
+#: server_status.php:85
+msgid "The number of log write requests."
+msgstr ""
+
+#: server_status.php:86
+msgid "The number of physical writes to the log file."
+msgstr ""
+
+#: server_status.php:87
+msgid "The number of fsync() writes done to the log file."
+msgstr ""
+
+#: server_status.php:88
+msgid "The number of pending log file fsyncs."
+msgstr ""
+
+#: server_status.php:89
+msgid "Pending log file writes."
+msgstr ""
+
+#: server_status.php:90
+msgid "The number of bytes written to the log file."
+msgstr ""
+
+#: server_status.php:91
+msgid "The number of pages created."
+msgstr ""
+
+#: server_status.php:92
+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 ""
+
+#: server_status.php:93
+msgid "The number of pages read."
+msgstr ""
+
+#: server_status.php:94
+msgid "The number of pages written."
+msgstr ""
+
+#: server_status.php:95
+msgid "The number of row locks currently being waited for."
+msgstr ""
+
+#: server_status.php:96
+msgid "The average time to acquire a row lock, in milliseconds."
+msgstr ""
+
+#: server_status.php:97
+msgid "The total time spent in acquiring row locks, in milliseconds."
+msgstr ""
+
+#: server_status.php:98
+msgid "The maximum time to acquire a row lock, in milliseconds."
+msgstr ""
+
+#: server_status.php:99
+msgid "The number of times a row lock had to be waited for."
+msgstr ""
+
+#: server_status.php:100
+msgid "The number of rows deleted from InnoDB tables."
+msgstr ""
+
+#: server_status.php:101
+msgid "The number of rows inserted in InnoDB tables."
+msgstr ""
+
+#: server_status.php:102
+msgid "The number of rows read from InnoDB tables."
+msgstr ""
+
+#: server_status.php:103
+msgid "The number of rows updated in InnoDB tables."
+msgstr ""
+
+#: server_status.php:104
+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 ""
+
+#: server_status.php:105
+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 ""
+
+#: server_status.php:106
+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 ""
+
+#: server_status.php:107
+msgid "The number of requests to read a key block from the cache."
+msgstr ""
+
+#: server_status.php:108
+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 ""
+
+#: server_status.php:109
+msgid "The number of requests to write a key block to the cache."
+msgstr ""
+
+#: server_status.php:110
+msgid "The number of physical writes of a key block to disk."
+msgstr ""
+
+#: server_status.php:111
+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 ""
+
+#: server_status.php:112
+msgid "The number of rows waiting to be written in INSERT DELAYED queues."
+msgstr ""
+
+#: server_status.php:113
+msgid ""
+"The number of tables that have been opened. If opened tables is big, your "
+"table cache value is probably too small."
+msgstr ""
+
+#: server_status.php:114
+msgid "The number of files that are open."
+msgstr ""
+
+#: server_status.php:115
+msgid "The number of streams that are open (used mainly for logging)."
+msgstr ""
+
+#: server_status.php:116
+msgid "The number of tables that are open."
+msgstr ""
+
+#: server_status.php:117
+msgid "The number of free memory blocks in query cache."
+msgstr ""
+
+#: server_status.php:118
+msgid "The amount of free memory for query cache."
+msgstr ""
+
+#: server_status.php:119
+msgid "The number of cache hits."
+msgstr ""
+
+#: server_status.php:120
+msgid "The number of queries added to the cache."
+msgstr ""
+
+#: server_status.php:121
+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 "
+"cache size. The query cache uses a least recently used (LRU) strategy to "
+"decide which queries to remove from the cache."
+msgstr ""
+
+#: server_status.php:122
+msgid ""
+"The number of non-cached queries (not cachable, or not cached due to the "
+"query_cache_type setting)."
+msgstr ""
+
+#: server_status.php:123
+msgid "The number of queries registered in the cache."
+msgstr ""
+
+#: server_status.php:124
+msgid "The total number of blocks in the query cache."
+msgstr ""
+
+#: server_status.php:125
+msgctxt "$strShowStatusReset"
+msgid "Reset"
+msgstr ""
+
+#: server_status.php:126
+msgid "The status of failsafe replication (not yet implemented)."
+msgstr ""
+
+#: server_status.php:127
+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 ""
+
+#: server_status.php:128
+msgid "The number of joins that used a range search on a reference table."
+msgstr ""
+
+#: server_status.php:129
+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 ""
+
+#: server_status.php:130
+msgid ""
+"The number of joins that used ranges on the first table. (It's normally not "
+"critical even if this is big.)"
+msgstr ""
+
+#: server_status.php:131
+msgid "The number of joins that did a full scan of the first table."
+msgstr ""
+
+#: server_status.php:132
+msgid "The number of temporary tables currently open by the slave SQL thread."
+msgstr ""
+
+#: server_status.php:133
+msgid ""
+"Total (since startup) number of times the replication slave SQL thread has "
+"retried transactions."
+msgstr ""
+
+#: server_status.php:134
+msgid "This is ON if this server is a slave that is connected to a master."
+msgstr ""
+
+#: server_status.php:135
+msgid ""
+"The number of threads that have taken more than slow_launch_time seconds to "
+"create."
+msgstr ""
+
+#: server_status.php:136
+msgid ""
+"The number of queries that have taken more than long_query_time seconds."
+msgstr ""
+
+#: server_status.php:137
+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 ""
+
+#: server_status.php:138
+msgid "The number of sorts that were done with ranges."
+msgstr ""
+
+#: server_status.php:139
+msgid "The number of sorted rows."
+msgstr ""
+
+#: server_status.php:140
+msgid "The number of sorts that were done by scanning the table."
+msgstr ""
+
+#: server_status.php:141
+msgid "The number of times that a table lock was acquired immediately."
+msgstr ""
+
+#: server_status.php:142
+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 "
+"should first optimize your queries, and then either split your table or "
+"tables or use replication."
+msgstr ""
+
+#: server_status.php:143
+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 ""
+
+#: server_status.php:144
+msgid "The number of currently open connections."
+msgstr ""
+
+#: server_status.php:145
+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 "
+"doesn't give a notable performance improvement if you have a good thread "
+"implementation.)"
+msgstr ""
+
+#: server_status.php:146
+msgid "The number of threads that are not sleeping."
+msgstr ""
+
+#: server_status.php:157
+msgid "Runtime Information"
+msgstr ""
+
+#: server_status.php:361
+msgid "Handler"
+msgstr ""
+
+#: server_status.php:362
+msgid "Query cache"
+msgstr ""
+
+#: server_status.php:363
+msgid "Threads"
+msgstr ""
+
+#: server_status.php:365
+msgid "Temporary data"
+msgstr ""
+
+#: server_status.php:366
+msgid "Delayed inserts"
+msgstr ""
+
+#: server_status.php:367
+msgid "Key cache"
+msgstr ""
+
+#: server_status.php:368
+msgid "Joins"
+msgstr ""
+
+#: server_status.php:370
+msgid "Sorting"
+msgstr ""
+
+#: server_status.php:372
+msgid "Transaction coordinator"
+msgstr ""
+
+#: server_status.php:382
+msgid "Flush (close) all tables"
+msgstr ""
+
+#: server_status.php:384
+msgid "Show open tables"
+msgstr ""
+
+#: server_status.php:389
+msgid "Show slave hosts"
+msgstr ""
+
+#: server_status.php:395
+msgid "Show slave status"
+msgstr ""
+
+#: server_status.php:400
+msgid "Flush query cache"
+msgstr ""
+
+#: server_status.php:405
+msgid "Show processes"
+msgstr ""
+
+#: server_status.php:455
+msgctxt "for Show status"
+msgid "Reset"
+msgstr ""
+
+#: server_status.php:461
+#, php-format
+msgid "This MySQL server has been running for %s. It started up on %s."
+msgstr ""
+
+#: server_status.php:471
+msgid ""
+"This MySQL server works as master and slave in replication"
+"b> process."
+msgstr ""
+
+#: server_status.php:473
+msgid "This MySQL server works as master in replication process."
+msgstr ""
+
+#: server_status.php:475
+msgid "This MySQL server works as slave in replication process."
+msgstr ""
+
+#: server_status.php:477
+msgid ""
+"For further information about replication status on the server, please visit "
+"the replication section."
+msgstr ""
+
+#: server_status.php:494
+msgid ""
+"Server traffic: These tables show the network traffic statistics of "
+"this MySQL server since its startup."
+msgstr ""
+
+#: server_status.php:499
+msgid "Traffic"
+msgstr ""
+
+#: server_status.php:499
+msgid ""
+"On a busy server, the byte counters may overrun, so those statistics as "
+"reported by the MySQL server may be incorrect."
+msgstr ""
+
+#: server_status.php:500 server_status.php:545 server_status.php:608
+#: server_status.php:666
+msgid "per hour"
+msgstr ""
+
+#: server_status.php:505
+msgid "Received"
+msgstr ""
+
+#: server_status.php:515
+msgid "Sent"
+msgstr ""
+
+#: server_status.php:544
+msgid "Connections"
+msgstr ""
+
+#: server_status.php:551
+msgid "max. concurrent connections"
+msgstr ""
+
+#: server_status.php:558
+msgid "Failed attempts"
+msgstr ""
+
+#: server_status.php:572
+msgid "Aborted"
+msgstr ""
+
+#: server_status.php:601
+#, php-format
+msgid ""
+"Query statistics: Since its startup, %s queries have been sent to the "
+"server."
+msgstr ""
+
+#: server_status.php:609
+msgid "per minute"
+msgstr ""
+
+#: server_status.php:610
+msgid "per second"
+msgstr ""
+
+#: server_status.php:665
+msgid "Query type"
+msgstr ""
+
+#: server_status.php:832
+msgid "Replication status"
+msgstr ""
+
+#: server_synchronize.php:94
+msgid "Could not connect to the source"
+msgstr ""
+
+#: server_synchronize.php:97
+msgid "Could not connect to the target"
+msgstr ""
+
+#: server_synchronize.php:122 server_synchronize.php:125 tbl_create.php:82
+#: tbl_get_field.php:20
+#, php-format
+msgid "'%s' database does not exist."
+msgstr ""
+
+#: server_synchronize.php:265
+msgid "Structure Synchronization"
+msgstr ""
+
+#: server_synchronize.php:272
+msgid "Data Synchronization"
+msgstr ""
+
+#: server_synchronize.php:400 server_synchronize.php:839
+msgid "not present"
+msgstr ""
+
+#: server_synchronize.php:424 server_synchronize.php:867
+msgid "Structure Difference"
+msgstr ""
+
+#: server_synchronize.php:425 server_synchronize.php:868
+msgid "Data Difference"
+msgstr ""
+
+#: server_synchronize.php:430 server_synchronize.php:873
+msgid "Add column(s)"
+msgstr ""
+
+#: server_synchronize.php:431 server_synchronize.php:874
+msgid "Remove column(s)"
+msgstr ""
+
+#: server_synchronize.php:432 server_synchronize.php:875
+msgid "Alter column(s)"
+msgstr ""
+
+#: server_synchronize.php:433 server_synchronize.php:876
+msgid "Remove index(s)"
+msgstr ""
+
+#: server_synchronize.php:434 server_synchronize.php:877
+msgid "Apply index(s)"
+msgstr ""
+
+#: server_synchronize.php:435 server_synchronize.php:878
+msgid "Update row(s)"
+msgstr ""
+
+#: server_synchronize.php:436 server_synchronize.php:879
+msgid "Insert row(s)"
+msgstr ""
+
+#: server_synchronize.php:446 server_synchronize.php:890
+msgid "Would you like to delete all the previous rows from target tables?"
+msgstr ""
+
+#: server_synchronize.php:449 server_synchronize.php:894
+msgid "Apply Selected Changes"
+msgstr ""
+
+#: server_synchronize.php:451 server_synchronize.php:896
+msgid "Synchronize Databases"
+msgstr ""
+
+#: server_synchronize.php:464
+msgid "Selected target tables have been synchronized with source tables."
+msgstr ""
+
+#: server_synchronize.php:942
+msgid "Target database has been synchronized with source database"
+msgstr ""
+
+#: server_synchronize.php:1003
+msgid "The following queries have been executed:"
+msgstr ""
+
+#: server_synchronize.php:1122
+msgid "Enter manually"
+msgstr ""
+
+#: server_synchronize.php:1123
+msgid "Current connection"
+msgstr ""
+
+#: server_synchronize.php:1152
+#, php-format
+msgid "Configuration: %s"
+msgstr ""
+
+#: server_synchronize.php:1167
+msgid "Socket"
+msgstr ""
+
+#: server_synchronize.php:1213
+msgid ""
+"Target database will be completely synchronized with source database. Source "
+"database will remain unchanged."
+msgstr ""
+
+#: server_variables.php:35
+msgid "Server variables and settings"
+msgstr ""
+
+#: server_variables.php:55
+msgid "Session value"
+msgstr ""
+
+#: server_variables.php:55 server_variables.php:89
+msgid "Global value"
+msgstr ""
+
+#: setup/frames/config.inc.php:25 setup/frames/index.inc.php:152
+#: setup/lib/messages.inc.php:45
+msgid "Configuration file"
+msgstr ""
+
+#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:212
+#: setup/lib/messages.inc.php:65
+msgid "Download"
+msgstr ""
+
+#: setup/frames/index.inc.php:58 setup/lib/messages.inc.php:164
+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:87 setup/frames/menu.inc.php:17
+#: setup/lib/messages.inc.php:219
+msgid "Overview"
+msgstr ""
+
+#: setup/frames/index.inc.php:95 setup/lib/messages.inc.php:337
+msgid "Show hidden messages (#MSG_COUNT)"
+msgstr ""
+
+#: setup/frames/index.inc.php:135 setup/lib/messages.inc.php:213
+msgid "There are no configured servers"
+msgstr ""
+
+#: setup/frames/index.inc.php:143 setup/lib/messages.inc.php:212
+msgid "New server"
+msgstr ""
+
+#: setup/frames/index.inc.php:172 setup/lib/messages.inc.php:50
+msgid "Default language"
+msgstr ""
+
+#: setup/frames/index.inc.php:182 setup/lib/messages.inc.php:187
+msgid "let the user choose"
+msgstr ""
+
+#: setup/frames/index.inc.php:193 setup/lib/messages.inc.php:216
+msgid "- none -"
+msgstr ""
+
+#: setup/frames/index.inc.php:196 setup/lib/messages.inc.php:51
+msgid "Default server"
+msgstr ""
+
+#: setup/frames/index.inc.php:206 setup/lib/messages.inc.php:66
+msgid "End of line"
+msgstr ""
+
+#: setup/frames/index.inc.php:211 setup/lib/messages.inc.php:61
+msgid "Display"
+msgstr ""
+
+#: setup/frames/index.inc.php:215 setup/lib/messages.inc.php:190
+msgid "Load"
+msgstr ""
+
+#: setup/frames/index.inc.php:226 setup/lib/messages.inc.php:152
+msgid "phpMyAdmin homepage"
+msgstr ""
+
+#: setup/frames/index.inc.php:227 setup/lib/messages.inc.php:64
+msgid "Donate"
+msgstr ""
+
+#: setup/frames/index.inc.php:228 setup/lib/messages.inc.php:370
+msgid "Check for latest version"
+msgstr ""
+
+#: setup/frames/menu.inc.php:18 setup/lib/messages.inc.php:137
+msgid "Features"
+msgstr ""
+
+#: setup/frames/menu.inc.php:19 setup/lib/messages.inc.php:113
+msgid "Navigation frame"
+msgstr ""
+
+#: setup/frames/menu.inc.php:20 setup/lib/messages.inc.php:118
+msgid "Main frame"
+msgstr ""
+
+#: setup/frames/servers.inc.php:28 setup/lib/messages.inc.php:272
+msgid "Edit server"
+msgstr ""
+
+#: setup/frames/servers.inc.php:37 setup/lib/messages.inc.php:241
+msgid "Add a new server"
+msgstr ""
+
+#: setup/lib/FormDisplay.class.php:458 setup/lib/messages.inc.php:76
+msgid "Incorrect value"
+msgstr ""
+
+#: setup/lib/FormDisplay.tpl.php:182 setup/lib/messages.inc.php:328
+#, php-format
+msgid "Set value: %s"
+msgstr ""
+
+#: setup/lib/FormDisplay.tpl.php:187 setup/lib/messages.inc.php:234
+msgid "Restore default value"
+msgstr ""
+
+#: setup/lib/form_processing.lib.php:43 setup/lib/messages.inc.php:377
+msgid "Warning"
+msgstr ""
+
+#: setup/lib/messages.inc.php:16
+msgid "Allow character set conversion"
+msgstr ""
+
+#: setup/lib/messages.inc.php:17
+msgid ""
+"If enabled user can enter any MySQL server in login form for cookie auth"
+msgstr ""
+
+#: setup/lib/messages.inc.php:18
+msgid ""
+"This [a@?page=form&formset=features#tab_Security]option[/a] should be "
+"disabled as it allows attackers to bruteforce login to any MySQL server. If "
+"you feel this is necessary, use [a@?page=form&"
+"formset=features#tab_Security]trusted proxies list[/a]. However, IP-based "
+"protection may not be reliable if your IP belongs to an ISP where thousands "
+"of users, including you, are connected to."
+msgstr ""
+
+#: setup/lib/messages.inc.php:19
+msgid "Allow login to any MySQL server"
+msgstr ""
+
+#: setup/lib/messages.inc.php:20
+msgid "Show "Drop database" link to normal users"
+msgstr ""
+
+#: setup/lib/messages.inc.php:21
+msgid "Key should contain letters, numbers [em]and[/em] special characters"
+msgstr ""
+
+#: setup/lib/messages.inc.php:22
+msgid ""
+"Secret passphrase used for encrypting cookies in [kbd]cookie[/kbd] "
+"authentication"
+msgstr ""
+
+#: setup/lib/messages.inc.php:23
+msgid "Key is too short, it should have at least 8 characters"
+msgstr ""
+
+#: setup/lib/messages.inc.php:24
+msgid ""
+"You didn't have blowfish secret set and have enabled cookie authentication, "
+"so a key was automatically generated for you. It is used to encrypt cookies; "
+"you don't need to remember it."
+msgstr ""
+
+#: setup/lib/messages.inc.php:25
+msgid "Blowfish secret"
+msgstr ""
+
+#: setup/lib/messages.inc.php:26
+msgid "Highlight selected rows"
+msgstr ""
+
+#: setup/lib/messages.inc.php:27
+msgid "Row marker"
+msgstr ""
+
+#: setup/lib/messages.inc.php:28
+msgid "Highlight row pointed by the mouse cursor"
+msgstr ""
+
+#: setup/lib/messages.inc.php:29
+msgid "Highlight pointer"
+msgstr ""
+
+#: setup/lib/messages.inc.php:30
+msgid ""
+"Enable [a@http://en.wikipedia.org/wiki/Bzip2]bzip2[/a] compression for "
+"import and export operations"
+msgstr ""
+
+#: setup/lib/messages.inc.php:31
+msgid "Bzip2"
+msgstr ""
+
+#: setup/lib/messages.inc.php:32
+#, php-format
+msgid ""
+"[a@?page=form&formset=features#tab_Import_export]Bzip2 compression and "
+"decompression[/a] requires functions (%s) which are unavailable on this "
+"system."
+msgstr ""
+
+#: setup/lib/messages.inc.php:33
+msgid "Cannot load or save configuration"
+msgstr ""
+
+#: setup/lib/messages.inc.php:34
+msgid ""
+"Please create web server writable folder [em]config[/em] in phpMyAdmin top "
+"level directory as described in [a@../Documentation.html#setup_script]"
+"documentation[/a]. Otherwise you will be only able to download or display it."
+msgstr ""
+
+#: setup/lib/messages.inc.php:35
+msgid ""
+"Defines which type of editing controls should be used for CHAR and VARCHAR "
+"columns; [kbd]input[/kbd] - allows limiting of input length, [kbd]textarea[/"
+"kbd] - allows newlines in columns"
+msgstr ""
+
+#: setup/lib/messages.inc.php:36
+msgid "CHAR columns editing"
+msgstr ""
+
+#: setup/lib/messages.inc.php:37
+msgid "Number of columns for CHAR/VARCHAR textareas"
+msgstr ""
+
+#: setup/lib/messages.inc.php:38
+msgid "CHAR textarea columns"
+msgstr ""
+
+#: setup/lib/messages.inc.php:39
+msgid "Number of rows for CHAR/VARCHAR textareas"
+msgstr ""
+
+#: setup/lib/messages.inc.php:40
+msgid "CHAR textarea rows"
+msgstr ""
+
+#: setup/lib/messages.inc.php:41
+msgid "Check config file permissions"
+msgstr ""
+
+#: setup/lib/messages.inc.php:43
+msgid ""
+"Compress gzip/bzip2 exports on the fly without the need for much memory; if "
+"you encounter problems with created gzip/bzip2 files disable this feature"
+msgstr ""
+
+#: setup/lib/messages.inc.php:44
+msgid "Compress on the fly"
+msgstr ""
+
+#: setup/lib/messages.inc.php:46
+msgid ""
+"Whether a warning ("Are your really sure...") should be displayed "
+"when you're about to lose data"
+msgstr ""
+
+#: setup/lib/messages.inc.php:47
+msgid "Confirm DROP queries"
+msgstr ""
+
+#: setup/lib/messages.inc.php:48
+msgid "Default character set used for conversions"
+msgstr ""
+
+#: setup/lib/messages.inc.php:49
+msgid "Default character set"
+msgstr ""
+
+#: setup/lib/messages.inc.php:52
+msgid "Tab that is displayed when entering a database"
+msgstr ""
+
+#: setup/lib/messages.inc.php:53
+msgid "Default database tab"
+msgstr ""
+
+#: setup/lib/messages.inc.php:54
+msgid "Tab that is displayed when entering a server"
+msgstr ""
+
+#: setup/lib/messages.inc.php:55
+msgid "Default server tab"
+msgstr ""
+
+#: setup/lib/messages.inc.php:56
+msgid "Tab that is displayed when entering a table"
+msgstr ""
+
+#: setup/lib/messages.inc.php:57
+msgid "Default table tab"
+msgstr ""
+
+#: setup/lib/messages.inc.php:58
+msgid ""
+"This value should be double checked to ensure that this directory is neither "
+"world accessible nor readable or writable by other users on your server."
+msgstr ""
+
+#: setup/lib/messages.inc.php:59
+msgid "Show database listing as a list instead of a drop down"
+msgstr ""
+
+#: setup/lib/messages.inc.php:60
+msgid "Display databases as a list"
+msgstr ""
+
+#: setup/lib/messages.inc.php:62
+msgid "Show server listing as a list instead of a drop down"
+msgstr ""
+
+#: setup/lib/messages.inc.php:63
+msgid "Display servers as a list"
+msgstr ""
+
+#: setup/lib/messages.inc.php:67
+msgid "Could not connect to MySQL server"
+msgstr ""
+
+#: setup/lib/messages.inc.php:68
+msgid "Empty phpMyAdmin control user password while using pmadb"
+msgstr ""
+
+#: setup/lib/messages.inc.php:69
+msgid "Empty phpMyAdmin control user while using pmadb"
+msgstr ""
+
+#: setup/lib/messages.inc.php:70
+msgid "Empty signon session name while using signon authentication method"
+msgstr ""
+
+#: setup/lib/messages.inc.php:71
+msgid "Empty signon URL while using signon authentication method"
+msgstr ""
+
+#: setup/lib/messages.inc.php:72
+msgid "Empty username while using config authentication method"
+msgstr ""
+
+#: setup/lib/messages.inc.php:73
+msgid "Submitted form contains errors"
+msgstr ""
+
+#: setup/lib/messages.inc.php:74
+#, php-format
+msgid "Incorrect IP address: %s"
+msgstr ""
+
+#: setup/lib/messages.inc.php:75
+msgid "Not a valid port number"
+msgstr ""
+
+#: setup/lib/messages.inc.php:77
+#, php-format
+msgid "Missing data for %s"
+msgstr ""
+
+#: setup/lib/messages.inc.php:78
+msgid "Not a non-negative number"
+msgstr ""
+
+#: setup/lib/messages.inc.php:79
+msgid "Not a positive number"
+msgstr ""
+
+#: setup/lib/messages.inc.php:80
+msgid ""
+"Set the number of seconds a script is allowed to run ([kbd]0[/kbd] for no "
+"limit)"
+msgstr ""
+
+#: setup/lib/messages.inc.php:81
+msgid "Maximum execution time"
+msgstr ""
+
+#: setup/lib/messages.inc.php:83
+msgid "Character set of the file"
+msgstr ""
+
+#: setup/lib/messages.inc.php:85
+msgid "Database name template"
+msgstr ""
+
+#: setup/lib/messages.inc.php:86
+msgid "Server name template"
+msgstr ""
+
+#: setup/lib/messages.inc.php:87
+msgid "Table name template"
+msgstr ""
+
+#: setup/lib/messages.inc.php:89
+msgid "Save on server"
+msgstr ""
+
+#: setup/lib/messages.inc.php:91
+msgid "Remember file name template"
+msgstr ""
+
+#: setup/lib/messages.inc.php:92
+msgid "no"
+msgstr ""
+
+#: setup/lib/messages.inc.php:93
+msgid "Force secured connection while using phpMyAdmin"
+msgstr ""
+
+#: setup/lib/messages.inc.php:94
+msgid ""
+"This [a@?page=form&formset=features#tab_Security]option[/a] should be "
+"enabled if your web server supports it"
+msgstr ""
+
+#: setup/lib/messages.inc.php:95
+msgid "Force SSL connection"
+msgstr ""
+
+#: setup/lib/messages.inc.php:96
+msgid ""
+"Sort order for items in a foreign-key dropdown box; [kbd]content[/kbd] is "
+"the referenced data, [kbd]id[/kbd] is the key value"
+msgstr ""
+
+#: setup/lib/messages.inc.php:97
+msgid "Foreign key dropdown order"
+msgstr ""
+
+#: setup/lib/messages.inc.php:98
+msgid "A dropdown will be used if fewer items are present"
+msgstr ""
+
+#: setup/lib/messages.inc.php:99
+msgid "Foreign key limit"
+msgstr ""
+
+#: setup/lib/messages.inc.php:100
+msgid "Browse mode"
+msgstr ""
+
+#: setup/lib/messages.inc.php:101
+msgid "Customize browse mode"
+msgstr ""
+
+#: setup/lib/messages.inc.php:102
+msgid "Customize edit mode"
+msgstr ""
+
+#: setup/lib/messages.inc.php:103
+msgid "Edit mode"
+msgstr ""
+
+#: setup/lib/messages.inc.php:104
+msgid "Customize default export options"
+msgstr ""
+
+#: setup/lib/messages.inc.php:105
+msgid "Export defaults"
+msgstr ""
+
+#: setup/lib/messages.inc.php:106
+msgid "Customize default common import options"
+msgstr ""
+
+#: setup/lib/messages.inc.php:107
+msgid "Import defaults"
+msgstr ""
+
+#: setup/lib/messages.inc.php:108
+msgid "Set import and export directories and compression options"
+msgstr ""
+
+#: setup/lib/messages.inc.php:109
+msgid "Import / export"
+msgstr ""
+
+#: setup/lib/messages.inc.php:111
+msgid "Databases display options"
+msgstr ""
+
+#: setup/lib/messages.inc.php:112
+msgid "Customize appearance of the navigation frame"
+msgstr ""
+
+#: setup/lib/messages.inc.php:114
+msgid "Servers display options"
+msgstr ""
+
+#: setup/lib/messages.inc.php:116
+msgid "Tables display options"
+msgstr ""
+
+#: setup/lib/messages.inc.php:119
+msgid "Settings that didn't fit enywhere else"
+msgstr ""
+
+#: setup/lib/messages.inc.php:120
+msgid "Other core settings"
+msgstr ""
+
+#: setup/lib/messages.inc.php:121
+msgid "Customize query window options"
+msgstr ""
+
+#: setup/lib/messages.inc.php:123
+msgid ""
+"Please note that phpMyAdmin is just a user interface and its features do not "
+"limit MySQL"
+msgstr ""
+
+#: setup/lib/messages.inc.php:124
+msgid "Security"
+msgstr ""
+
+#: setup/lib/messages.inc.php:125
+msgid "Basic settings"
+msgstr ""
+
+#: setup/lib/messages.inc.php:126
+msgid ""
+"Advanced server configuration, do not change these options unless you know "
+"what they are for"
+msgstr ""
+
+#: setup/lib/messages.inc.php:127
+msgid "Server configuration"
+msgstr ""
+
+#: setup/lib/messages.inc.php:128
+msgid "Enter server connection parameters"
+msgstr ""
+
+#: setup/lib/messages.inc.php:129
+msgid "Enter login options for signon authentication"
+msgstr ""
+
+#: setup/lib/messages.inc.php:130
+msgid "Signon login options"
+msgstr ""
+
+#: setup/lib/messages.inc.php:131
+msgid ""
+"Configure phpMyAdmin database to gain access to additional features, see "
+"[a@../Documentation.html#linked-tables]linked-tables infrastructure[/a] in "
+"documentation"
+msgstr ""
+
+#: setup/lib/messages.inc.php:132 setup/lib/messages.inc.php:293
+msgid "PMA database"
+msgstr ""
+
+#: setup/lib/messages.inc.php:133
+msgid "Tracking of changes made in database. Requires configured PMA database."
+msgstr ""
+
+#: setup/lib/messages.inc.php:134
+msgid "Changes tracking"
+msgstr ""
+
+#: setup/lib/messages.inc.php:135
+msgid "Customization"
+msgstr ""
+
+#: setup/lib/messages.inc.php:136
+msgid "Customize export options"
+msgstr ""
+
+#: setup/lib/messages.inc.php:138
+msgid "Customize import defaults"
+msgstr ""
+
+#: setup/lib/messages.inc.php:139
+msgid "Customize navigation frame"
+msgstr ""
+
+#: setup/lib/messages.inc.php:140
+msgid "Customize main frame"
+msgstr ""
+
+#: setup/lib/messages.inc.php:141
+msgid "Customize links shown in SQL Query boxes"
+msgstr ""
+
+#: setup/lib/messages.inc.php:142
+msgid "SQL Query box"
+msgstr ""
+
+#: setup/lib/messages.inc.php:143
+msgid ""
+"SQL queries settings, for SQL Query box options see [a@?page=form&"
+"formset=main_frame#tab_Sql_box]Navigation frame[/a] settings"
+msgstr ""
+
+#: setup/lib/messages.inc.php:144
+msgid "SQL queries"
+msgstr ""
+
+#: setup/lib/messages.inc.php:145
+msgid "Customize startup page"
+msgstr ""
+
+#: setup/lib/messages.inc.php:146
+msgid "Startup"
+msgstr ""
+
+#: setup/lib/messages.inc.php:147
+msgid "Choose how you want tabs to work"
+msgstr ""
+
+#: setup/lib/messages.inc.php:148
+msgid "Tabs"
+msgstr ""
+
+#: setup/lib/messages.inc.php:149
+msgid ""
+"Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import "
+"and export operations"
+msgstr ""
+
+#: setup/lib/messages.inc.php:150
+msgid "GZip"
+msgstr ""
+
+#: setup/lib/messages.inc.php:151
+#, php-format
+msgid ""
+"[a@?page=form&formset=features#tab_Import_export]GZip compression and "
+"decompression[/a] requires functions (%s) which are unavailable on this "
+"system."
+msgstr ""
+
+#: setup/lib/messages.inc.php:153
+msgid "Extra parameters for iconv"
+msgstr ""
+
+#: setup/lib/messages.inc.php:154
+msgid "Ignore errors"
+msgstr ""
+
+#: setup/lib/messages.inc.php:155
+msgid ""
+"If enabled, phpMyAdmin continues computing multiple-statement queries even "
+"if one of the queries failed"
+msgstr ""
+
+#: setup/lib/messages.inc.php:156
+msgid "Ignore multiple statement errors"
+msgstr ""
+
+#: setup/lib/messages.inc.php:157
+msgid ""
+"Allow interrupt of import in case script detects it is close to time limit. "
+"This might be good way to import large files, however it can break "
+"transactions."
+msgstr ""
+
+#: setup/lib/messages.inc.php:158
+msgid "Partial import: allow interrupt"
+msgstr ""
+
+#: setup/lib/messages.inc.php:159
+msgid ""
+"Default format; be aware that this list depends on location (database, "
+"table) and only SQL is always available"
+msgstr ""
+
+#: setup/lib/messages.inc.php:162
+msgid "Partial import: skip queries"
+msgstr ""
+
+#: setup/lib/messages.inc.php:163
+msgid "Insecure connection"
+msgstr ""
+
+#: setup/lib/messages.inc.php:165
+#, php-format
+msgid ""
+"If your server is also configured to accept HTTPS requests follow [a@%s]this "
+"link[/a] to use a secure connection."
+msgstr ""
+
+#: setup/lib/messages.inc.php:166
+msgid "How many rows can be inserted at one time"
+msgstr ""
+
+#: setup/lib/messages.inc.php:167
+msgid "Number of inserted rows"
+msgstr ""
+
+#: setup/lib/messages.inc.php:168
+msgid "Target for quick access icon"
+msgstr ""
+
+#: setup/lib/messages.inc.php:169
+msgid "Show logo in left frame"
+msgstr ""
+
+#: setup/lib/messages.inc.php:170
+msgid "Display logo"
+msgstr ""
+
+#: setup/lib/messages.inc.php:171
+msgid "Display server choice at the top of the left frame"
+msgstr ""
+
+#: setup/lib/messages.inc.php:172
+msgid "Display servers selection"
+msgstr ""
+
+#: setup/lib/messages.inc.php:173
+msgid "String that separates databases into different tree levels"
+msgstr ""
+
+#: setup/lib/messages.inc.php:174
+msgid "Database tree separator"
+msgstr ""
+
+#: setup/lib/messages.inc.php:175
+msgid ""
+"Only light version; display databases in a tree (determined by the separator "
+"defined below)"
+msgstr ""
+
+#: setup/lib/messages.inc.php:176
+msgid "Display databases in a tree"
+msgstr ""
+
+#: setup/lib/messages.inc.php:177
+msgid "Disable this if you want to see all databases at once"
+msgstr ""
+
+#: setup/lib/messages.inc.php:178
+msgid "Use light version"
+msgstr ""
+
+#: setup/lib/messages.inc.php:179
+msgid "Maximum table tree depth"
+msgstr ""
+
+#: setup/lib/messages.inc.php:180
+msgid "String that separates tables into different tree levels"
+msgstr ""
+
+#: setup/lib/messages.inc.php:181
+msgid "Table tree separator"
+msgstr ""
+
+#: setup/lib/messages.inc.php:182
+msgid "Logo link URL"
+msgstr ""
+
+#: setup/lib/messages.inc.php:183
+msgid ""
+"Open the linked page in the main window ([kbd]main[/kbd]) or in a new one "
+"([kbd]new[/kbd])"
+msgstr ""
+
+#: setup/lib/messages.inc.php:184
+msgid "Logo link target"
+msgstr ""
+
+#: setup/lib/messages.inc.php:185
+msgid "Highlight server under the mouse cursor"
+msgstr ""
+
+#: setup/lib/messages.inc.php:186
+msgid "Enable highlighting"
+msgstr ""
+
+#: setup/lib/messages.inc.php:188
+msgid "Use less graphically intense tabs"
+msgstr ""
+
+#: setup/lib/messages.inc.php:189
+msgid "Light tabs"
+msgstr ""
+
+#: setup/lib/messages.inc.php:191
+msgid ""
+"If TRUE, logout deletes cookies for all servers; when set to FALSE, logout "
+"only occurs for the current server. Setting this to FALSE makes it easy to "
+"forget to log out from other servers when connected to multiple servers."
+msgstr ""
+
+#: setup/lib/messages.inc.php:192
+msgid "Delete all cookies on logout"
+msgstr ""
+
+#: setup/lib/messages.inc.php:193
+msgid ""
+"Define whether the previous login should be recalled or not in cookie "
+"authentication mode"
+msgstr ""
+
+#: setup/lib/messages.inc.php:194
+msgid "Recall user name"
+msgstr ""
+
+#: setup/lib/messages.inc.php:195
+msgid ""
+"Defines how long (in seconds) a login cookie should be stored in browser. "
+"The default of 0 means that it will be kept for the existing session only, "
+"and will be deleted as soon as you close the browser window. This is "
+"recommended for non-trusted environments."
+msgstr ""
+
+#: setup/lib/messages.inc.php:196
+msgid "Login cookie store"
+msgstr ""
+
+#: setup/lib/messages.inc.php:197
+msgid "Define how long (in seconds) a login cookie is valid"
+msgstr ""
+
+#: setup/lib/messages.inc.php:198
+msgid ""
+"[a@?page=form&formset=features#tab_Security]Login cookie validity[/a] should "
+"be set to 1800 seconds (30 minutes) at most. Values larger than 1800 may "
+"pose a security risk such as impersonation."
+msgstr ""
+
+#: setup/lib/messages.inc.php:199
+msgid "Login cookie validity"
+msgstr ""
+
+#: setup/lib/messages.inc.php:200
+msgid "Maximum number of characters used when a SQL query is displayed"
+msgstr ""
+
+#: setup/lib/messages.inc.php:201
+msgid "Maximum displayed SQL length"
+msgstr ""
+
+#: setup/lib/messages.inc.php:202
+msgid "Maximum number of databases displayed in left frame and database list"
+msgstr ""
+
+#: setup/lib/messages.inc.php:203
+msgid "Maximum databases"
+msgstr ""
+
+#: setup/lib/messages.inc.php:204
+msgid ""
+"Number of rows displayed when browsing a result set. If the result set "
+"contains more rows, "Previous" and "Next" links will be "
+"shown."
+msgstr ""
+
+#: setup/lib/messages.inc.php:205
+msgid "Maximum number of rows to display"
+msgstr ""
+
+#: setup/lib/messages.inc.php:206
+msgid "Maximum number of tables displayed in table list"
+msgstr ""
+
+#: setup/lib/messages.inc.php:207
+msgid "Maximum tables"
+msgstr ""
+
+#: setup/lib/messages.inc.php:208
+msgid ""
+"The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] "
+"([kbd]0[/kbd] for no limit)"
+msgstr ""
+
+#: setup/lib/messages.inc.php:209
+msgid "Memory limit"
+msgstr ""
+
+#: setup/lib/messages.inc.php:210 setup/lib/messages.inc.php:222
+msgid "Use only icons, only text or both"
+msgstr ""
+
+#: setup/lib/messages.inc.php:211
+msgid "Iconic navigation bar"
+msgstr ""
+
+#: setup/lib/messages.inc.php:214
+msgid "use GZip output buffering for increased speed in HTTP transfers"
+msgstr ""
+
+#: setup/lib/messages.inc.php:215
+msgid "GZip output buffering"
+msgstr ""
+
+#: setup/lib/messages.inc.php:217
+msgid ""
+"[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, "
+"DATETIME and TIMESTAMP, ascending order otherwise"
+msgstr ""
+
+#: setup/lib/messages.inc.php:218
+msgid "Default sorting order"
+msgstr ""
+
+#: setup/lib/messages.inc.php:220
+msgid "Use persistent connections to MySQL databases"
+msgstr ""
+
+#: setup/lib/messages.inc.php:221
+msgid "Persistent connections"
+msgstr ""
+
+#: setup/lib/messages.inc.php:223
+msgid "Iconic table operations"
+msgstr ""
+
+#: setup/lib/messages.inc.php:224
+msgid "Disallow BLOB and BINARY columns from editing"
+msgstr ""
+
+#: setup/lib/messages.inc.php:225
+msgid "Protect binary columns"
+msgstr ""
+
+#: setup/lib/messages.inc.php:226
+msgid ""
+"Enable if you want DB-based query history (requires pmadb). If disabled, "
+"this utilizes JS-routines to display query history (lost by window close)."
+msgstr ""
+
+#: setup/lib/messages.inc.php:227
+msgid "Permanent query history"
+msgstr ""
+
+#: setup/lib/messages.inc.php:228
+msgid "How many queries are kept in history"
+msgstr ""
+
+#: setup/lib/messages.inc.php:229
+msgid "Query history length"
+msgstr ""
+
+#: setup/lib/messages.inc.php:230
+msgid "Tab displayed when opening a new query window"
+msgstr ""
+
+#: setup/lib/messages.inc.php:231
+msgid "Default query window tab"
+msgstr ""
+
+#: setup/lib/messages.inc.php:232
+msgid "Select which functions will be used for character set conversion"
+msgstr ""
+
+#: setup/lib/messages.inc.php:233
+msgid "Recoding engine"
+msgstr ""
+
+#: setup/lib/messages.inc.php:235
+msgid "Try to revert erroneous fields to their default values"
+msgstr ""
+
+#: setup/lib/messages.inc.php:236
+msgid "Directory where exports can be saved on server"
+msgstr ""
+
+#: setup/lib/messages.inc.php:237
+msgid "Save directory"
+msgstr ""
+
+#: setup/lib/messages.inc.php:238
+#, php-format
+msgid ""
+"You set the [kbd]config[/kbd] authentication type and included username and "
+"password for auto-login, which is not a desirable option for live hosts. "
+"Anyone who knows or guesses your phpMyAdmin URL can directly access your "
+"phpMyAdmin panel. Set [a@?page=servers&mode=edit&id=%1$d#tab_Server]"
+"authentication type[/a] to [kbd]cookie[/kbd] or [kbd]http[/kbd]."
+msgstr ""
+
+#: setup/lib/messages.inc.php:239
+msgid "You should use mysqli for performance reasons"
+msgstr ""
+
+#: setup/lib/messages.inc.php:240
+msgid "You allow for connecting to the server without a password."
+msgstr ""
+
+#: setup/lib/messages.inc.php:242
+msgid "Leave blank if not used"
+msgstr ""
+
+#: setup/lib/messages.inc.php:243
+msgid "Host authentication order"
+msgstr ""
+
+#: setup/lib/messages.inc.php:244
+msgid "Leave blank for defaults"
+msgstr ""
+
+#: setup/lib/messages.inc.php:245
+msgid "Host authentication rules"
+msgstr ""
+
+#: setup/lib/messages.inc.php:246
+msgid "Allow logins without a password"
+msgstr ""
+
+#: setup/lib/messages.inc.php:247
+msgid "Allow root login"
+msgstr ""
+
+#: setup/lib/messages.inc.php:248
+msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth"
+msgstr ""
+
+#: setup/lib/messages.inc.php:249
+msgid "HTTP Realm"
+msgstr ""
+
+#: setup/lib/messages.inc.php:250
+msgid ""
+"The path for the config file for [a@http://swekey.com]SweKey hardware "
+"authentication[/a] (not located in your document root; suggested: /etc/"
+"swekey.conf)"
+msgstr ""
+
+#: setup/lib/messages.inc.php:251
+msgid "SweKey config file"
+msgstr ""
+
+#: setup/lib/messages.inc.php:252
+msgid "Authentication method to use"
+msgstr ""
+
+#: setup/lib/messages.inc.php:253
+msgid "Authentication type"
+msgstr ""
+
+#: setup/lib/messages.inc.php:254
+msgid ""
+"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] "
+"support, suggested: [kbd]pma_bookmark[/kbd]"
+msgstr ""
+
+#: setup/lib/messages.inc.php:255
+msgid "Bookmark table"
+msgstr ""
+
+#: setup/lib/messages.inc.php:256
+msgid ""
+"Leave blank for no column comments/mime types, suggested: [kbd]"
+"pma_column_info[/kbd]"
+msgstr ""
+
+#: setup/lib/messages.inc.php:257
+msgid "Column information table"
+msgstr ""
+
+#: setup/lib/messages.inc.php:258
+msgid "Compress connection to MySQL server"
+msgstr ""
+
+#: setup/lib/messages.inc.php:259
+msgid "Compress connection"
+msgstr ""
+
+#: setup/lib/messages.inc.php:260
+msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure"
+msgstr ""
+
+#: setup/lib/messages.inc.php:261
+msgid "Connection type"
+msgstr ""
+
+#: setup/lib/messages.inc.php:262
+msgid "Control user password"
+msgstr ""
+
+#: setup/lib/messages.inc.php:263
+msgid ""
+"A special MySQL user configured with limited permissions, more information "
+"available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]"
+msgstr ""
+
+#: setup/lib/messages.inc.php:264
+msgid "Control user"
+msgstr ""
+
+#: setup/lib/messages.inc.php:265
+msgid "Count tables when showing database list"
+msgstr ""
+
+#: setup/lib/messages.inc.php:266
+msgid "Count tables"
+msgstr ""
+
+#: setup/lib/messages.inc.php:267
+msgid ""
+"Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/"
+"kbd]"
+msgstr ""
+
+#: setup/lib/messages.inc.php:268
+msgid "Designer table"
+msgstr ""
+
+#: setup/lib/messages.inc.php:269
+msgid ""
+"More information on [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug "
+"tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]"
+msgstr ""
+
+#: setup/lib/messages.inc.php:270
+msgid "Disable use of INFORMATION_SCHEMA"
+msgstr ""
+
+#: setup/lib/messages.inc.php:271
+#, php-format
+msgid ""
+"If you feel this is necessary, use additional protection settings - [a@?"
+"page=servers&mode=edit&id=%1$d#tab_Server_config]host authentication"
+"[/a] settings and [a@?page=form&formset=features#tab_Security]trusted "
+"proxies list[/a]. However, IP-based protection may not be reliable if your "
+"IP belongs to an ISP where thousands of users, including you, are connected "
+"to."
+msgstr ""
+
+#: setup/lib/messages.inc.php:273
+msgid "What PHP extension to use; you should use mysqli if supported"
+msgstr ""
+
+#: setup/lib/messages.inc.php:274
+msgid "PHP extension to use"
+msgstr ""
+
+#: setup/lib/messages.inc.php:275
+msgid "Hide databases matching regular expression (PCRE)"
+msgstr ""
+
+#: setup/lib/messages.inc.php:276
+msgid "Hide databases"
+msgstr ""
+
+#: setup/lib/messages.inc.php:277
+msgid ""
+"Leave blank for no SQL query history support, suggested: [kbd]pma_history[/"
+"kbd]"
+msgstr ""
+
+#: setup/lib/messages.inc.php:278
+msgid "SQL query history table"
+msgstr ""
+
+#: setup/lib/messages.inc.php:279
+msgid ""
+"Leave blank for no SQL query tracking support, suggested: [kbd]pma_tracking[/"
+"kbd]"
+msgstr ""
+
+#: setup/lib/messages.inc.php:280
+msgid "SQL query tracking table"
+msgstr ""
+
+#: setup/lib/messages.inc.php:281
+msgid "Hostname where MySQL server is running"
+msgstr ""
+
+#: setup/lib/messages.inc.php:282
+msgid "Server hostname"
+msgstr ""
+
+#: setup/lib/messages.inc.php:283
+msgid "Logout URL"
+msgstr ""
+
+#: setup/lib/messages.inc.php:284
+msgid "Try to connect without password"
+msgstr ""
+
+#: setup/lib/messages.inc.php:285
+msgid "Connect without password"
+msgstr ""
+
+#: setup/lib/messages.inc.php:286
+msgid ""
+"You can use MySQL wildcard characters (% and _), escape them if you want to "
+"use their literal instances, i.e. use 'my\\_db' and not 'my_db'"
+msgstr ""
+
+#: setup/lib/messages.inc.php:287
+msgid "Show only listed databases"
+msgstr ""
+
+#: setup/lib/messages.inc.php:288 setup/lib/messages.inc.php:322
+msgid "Leave empty if not using config auth"
+msgstr ""
+
+#: setup/lib/messages.inc.php:289
+msgid "Password for config auth"
+msgstr ""
+
+#: setup/lib/messages.inc.php:290
+msgid ""
+"Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]"
+msgstr ""
+
+#: setup/lib/messages.inc.php:291
+msgid "PDF schema: pages table"
+msgstr ""
+
+#: setup/lib/messages.inc.php:292
+msgid ""
+"Database used for relations, bookmarks, and PDF features. See [a@http://wiki."
+"phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave blank for "
+"no support. Suggested: [kbd]phpmyadmin[/kbd]"
+msgstr ""
+
+#: setup/lib/messages.inc.php:294
+msgid "Port on which MySQL server is listening, leave empty for default"
+msgstr ""
+
+#: setup/lib/messages.inc.php:295
+msgid "Server port"
+msgstr ""
+
+#: setup/lib/messages.inc.php:296
+msgid ""
+"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links"
+"[/a] support, suggested: [kbd]pma_relation[/kbd]"
+msgstr ""
+
+#: setup/lib/messages.inc.php:297
+msgid "Relation table"
+msgstr ""
+
+#: setup/lib/messages.inc.php:298
+msgid "SQL command to fetch available databases"
+msgstr ""
+
+#: setup/lib/messages.inc.php:299
+msgid "SHOW DATABASES command"
+msgstr ""
+
+#: setup/lib/messages.inc.php:300
+msgid ""
+"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types"
+"[/a] for an example"
+msgstr ""
+
+#: setup/lib/messages.inc.php:301
+msgid "Signon session name"
+msgstr ""
+
+#: setup/lib/messages.inc.php:302
+msgid "Signon URL"
+msgstr ""
+
+#: setup/lib/messages.inc.php:303
+msgid ""
+"Whether the tracking mechanism creates versions for tables and views "
+"automatically."
+msgstr ""
+
+#: setup/lib/messages.inc.php:304
+msgid "Automatically create versions"
+msgstr ""
+
+#: setup/lib/messages.inc.php:305
+msgid "Defines the list of statements the auto-creation uses for new versions."
+msgstr ""
+
+#: setup/lib/messages.inc.php:306
+msgid "Statements to track"
+msgstr ""
+
+#: setup/lib/messages.inc.php:307
+msgid ""
+"Whether a DROP VIEW IF EXISTS statement will be added as first line to the "
+"log when creating a view."
+msgstr ""
+
+#: setup/lib/messages.inc.php:308
+msgid "Add DROP VIEW"
+msgstr ""
+
+#: setup/lib/messages.inc.php:309
+msgid ""
+"Whether a DROP TABLE IF EXISTS statement will be added as first line to the "
+"log when creating a table."
+msgstr ""
+
+#: setup/lib/messages.inc.php:310
+msgid "Add DROP TABLE"
+msgstr ""
+
+#: setup/lib/messages.inc.php:311
+msgid ""
+"Whether a DROP DATABASE IF EXISTS statement will be added as first line to "
+"the log when creating a database."
+msgstr ""
+
+#: setup/lib/messages.inc.php:312
+msgid "Add DROP DATABASE"
+msgstr ""
+
+#: setup/lib/messages.inc.php:313
+msgid "You should use SSL connections if your web server supports it"
+msgstr ""
+
+#: setup/lib/messages.inc.php:314
+msgid "Socket on which MySQL server is listening, leave empty for default"
+msgstr ""
+
+#: setup/lib/messages.inc.php:315
+msgid "Server socket"
+msgstr ""
+
+#: setup/lib/messages.inc.php:316
+msgid "Enable SSL for connection to MySQL server"
+msgstr ""
+
+#: setup/lib/messages.inc.php:317
+msgid "Use SSL"
+msgstr ""
+
+#: setup/lib/messages.inc.php:318
+msgid ""
+"Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]"
+msgstr ""
+
+#: setup/lib/messages.inc.php:319
+msgid "PDF schema: table coordinates"
+msgstr ""
+
+#: setup/lib/messages.inc.php:320
+msgid ""
+"Table to describe the display columns, leave blank for no support; "
+"suggested: [kbd]pma_table_info[/kbd]"
+msgstr ""
+
+#: setup/lib/messages.inc.php:321
+msgid "Display columns table"
+msgstr ""
+
+#: setup/lib/messages.inc.php:323
+msgid "User for config auth"
+msgstr ""
+
+#: setup/lib/messages.inc.php:324
+msgid ""
+"Disable if you know that your pma_* tables are up to date. This prevents "
+"compatibility checks and thereby increases performance"
+msgstr ""
+
+#: setup/lib/messages.inc.php:325
+msgid "Verbose check"
+msgstr ""
+
+#: setup/lib/messages.inc.php:326
+msgid ""
+"A user-friendly description of this server. Leave blank to display the "
+"hostname instead."
+msgstr ""
+
+#: setup/lib/messages.inc.php:327
+msgid "Verbose name of this server"
+msgstr ""
+
+#: setup/lib/messages.inc.php:329
+msgid "Whether a user should be displayed a "show all (rows)" button"
+msgstr ""
+
+#: setup/lib/messages.inc.php:330
+msgid "Allow to display all the rows"
+msgstr ""
+
+#: setup/lib/messages.inc.php:331
+msgid ""
+"Please note that enabling this has no effect with [kbd]config[/kbd] "
+"authentication mode because the password is hard coded in the configuration "
+"file; this does not limit the ability to execute the same command directly"
+msgstr ""
+
+#: setup/lib/messages.inc.php:332
+msgid "Show password change form"
+msgstr ""
+
+#: setup/lib/messages.inc.php:333
+msgid "Show create database form"
+msgstr ""
+
+#: setup/lib/messages.inc.php:334
+msgid "Show form"
+msgstr ""
+
+#: setup/lib/messages.inc.php:335
+msgid "Display the function fields in edit/insert mode"
+msgstr ""
+
+#: setup/lib/messages.inc.php:336
+msgid "Show function fields"
+msgstr ""
+
+#: setup/lib/messages.inc.php:338
+msgid ""
+"Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] "
+"output"
+msgstr ""
+
+#: setup/lib/messages.inc.php:339
+msgid "Show phpinfo() link"
+msgstr ""
+
+#: setup/lib/messages.inc.php:340
+msgid "Show detailed MySQL server information"
+msgstr ""
+
+#: setup/lib/messages.inc.php:341
+msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed"
+msgstr ""
+
+#: setup/lib/messages.inc.php:342
+msgid "Show SQL queries"
+msgstr ""
+
+#: setup/lib/messages.inc.php:343
+msgid "Allow to display database and table statistics (eg. space usage)"
+msgstr ""
+
+#: setup/lib/messages.inc.php:344
+msgid "Show statistics"
+msgstr ""
+
+#: setup/lib/messages.inc.php:345
+msgid ""
+"If tooltips are enabled and a database comment is set, this will flip the "
+"comment and the real name"
+msgstr ""
+
+#: setup/lib/messages.inc.php:346
+msgid "Display database comment instead of its name"
+msgstr ""
+
+#: setup/lib/messages.inc.php:347
+msgid ""
+"When setting this to [kbd]nested[/kbd], the alias of the table name is only "
+"used to split/nest the tables according to the $cfg"
+"['LeftFrameTableSeparator'] directive, so only the folder is called like the "
+"alias, the table name itself stays unchanged"
+msgstr ""
+
+#: setup/lib/messages.inc.php:348
+msgid "Display table comment instead of its name"
+msgstr ""
+
+#: setup/lib/messages.inc.php:349
+msgid "Display table comments in tooltips"
+msgstr ""
+
+#: setup/lib/messages.inc.php:350
+msgid ""
+"Mark used tables and make it possible to show databases with locked tables"
+msgstr ""
+
+#: setup/lib/messages.inc.php:351
+msgid "Skip locked tables"
+msgstr ""
+
+#: setup/lib/messages.inc.php:357
+msgid ""
+"Suggest a database name on the "Create Database" form (if "
+"possible) or keep the text field empty"
+msgstr ""
+
+#: setup/lib/messages.inc.php:358
+msgid "Suggest new database name"
+msgstr ""
+
+#: setup/lib/messages.inc.php:359
+msgid "yes"
+msgstr ""
+
+#: setup/lib/messages.inc.php:360
+msgid ""
+"Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following example "
+"specifies that phpMyAdmin should trust a HTTP_X_FORWARDED_FOR (X-Forwarded-"
+"For) header coming from the proxy 1.2.3.4:[br][kbd]1.2.3.4: "
+"HTTP_X_FORWARDED_FOR[/kbd]"
+msgstr ""
+
+#: setup/lib/messages.inc.php:361
+msgid "List of trusted proxies for IP allow/deny"
+msgstr ""
+
+#: setup/lib/messages.inc.php:362
+msgid "Directory on server where you can upload files for import"
+msgstr ""
+
+#: setup/lib/messages.inc.php:363
+msgid "Upload directory"
+msgstr ""
+
+#: setup/lib/messages.inc.php:364
+msgid "Allow for searching inside the entire database"
+msgstr ""
+
+#: setup/lib/messages.inc.php:365
+msgid "Use database search"
+msgstr ""
+
+#: setup/lib/messages.inc.php:366
+msgid ""
+"Show affected rows of each statement on multiple-statement queries. See "
+"libraries/import.lib.php for defaults on how many queries a statement may "
+"contain."
+msgstr ""
+
+#: setup/lib/messages.inc.php:367
+msgid "Verbose multiple statements"
+msgstr ""
+
+#: setup/lib/messages.inc.php:368
+msgid ""
+"Reading of version failed. Maybe you're offline or the upgrade server does "
+"not respond."
+msgstr ""
+
+#: setup/lib/messages.inc.php:369
+msgid "Got invalid version string from server"
+msgstr ""
+
+#: setup/lib/messages.inc.php:371
+#, php-format
+msgid ""
+"A newer version of phpMyAdmin is available and you should consider "
+"upgrading. The newest version is %s, released on %s."
+msgstr ""
+
+#: setup/lib/messages.inc.php:372
+#, 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/messages.inc.php:373
+msgid "No newer stable version is available"
+msgstr ""
+
+#: setup/lib/messages.inc.php:374
+msgid "Unparsable version string"
+msgstr ""
+
+#: setup/lib/messages.inc.php:375
+msgid "Version check"
+msgstr ""
+
+#: setup/lib/messages.inc.php:376
+msgid ""
+"Neither URL wrapper nor CURL is available. Version check is not possible."
+msgstr ""
+
+#: setup/lib/messages.inc.php:378
+msgid ""
+"Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression "
+"for import and export operations"
+msgstr ""
+
+#: setup/lib/messages.inc.php:379
+#, php-format
+msgid ""
+"[a@?page=form&formset=features#tab_Import_export]Zip compression[/a] "
+"requires functions (%s) which are unavailable on this system."
+msgstr ""
+
+#: setup/lib/messages.inc.php:380
+#, php-format
+msgid ""
+"[a@?page=form&formset=features#tab_Import_export]Zip decompression[/a] "
+"requires functions (%s) which are unavailable on this system."
+msgstr ""
+
+#: setup/lib/messages.inc.php:381
+msgid "ZIP"
+msgstr ""
+
+#: sql.php:496 tbl_replace.php:386
+#, php-format
+msgid "Inserted row id: %1$d"
+msgstr ""
+
+#: sql.php:513
+msgid "Showing as PHP code"
+msgstr ""
+
+#: sql.php:516 tbl_replace.php:360
+msgid "Showing SQL query"
+msgstr ""
+
+#: sql.php:639
+#, php-format
+msgid "Problems with indexes of table `%s`"
+msgstr ""
+
+#: sql.php:671
+msgid "Label"
+msgstr ""
+
+#: tbl_addfield.php:189 tbl_alter.php:103 tbl_indexes.php:98
+#, php-format
+msgid "Table %1$s has been altered successfully"
+msgstr ""
+
+#: tbl_change.php:252 tbl_select.php:27 tbl_select.php:28 tbl_select.php:31
+#: tbl_select.php:34
+msgid "Browse foreign values"
+msgstr ""
+
+#: tbl_change.php:282 tbl_change.php:320
+msgid "Function"
+msgstr ""
+
+#: tbl_change.php:302 tbl_indexes.php:200 tbl_indexes.php:225
+msgid "Ignore"
+msgstr ""
+
+#: tbl_change.php:728
+msgid " Because of its length,
this column might not be editable "
+msgstr ""
+
+#: tbl_change.php:888
+msgid "Remove BLOB Repository Reference"
+msgstr ""
+
+#: tbl_change.php:894
+msgid "Binary - do not edit"
+msgstr ""
+
+#: tbl_change.php:987
+msgid "Upload to BLOB repository"
+msgstr ""
+
+#: tbl_change.php:1130
+msgid "Insert as new row"
+msgstr ""
+
+#: tbl_change.php:1131
+msgid "Insert as new row and ignore errors"
+msgstr ""
+
+#: tbl_change.php:1132
+msgid "Show insert query"
+msgstr ""
+
+#: tbl_change.php:1147
+msgid "Go back to previous page"
+msgstr ""
+
+#: tbl_change.php:1148
+msgid "Insert another new row"
+msgstr ""
+
+#: tbl_change.php:1152
+msgid "Go back to this page"
+msgstr ""
+
+#: tbl_change.php:1160
+msgid "Edit next row"
+msgstr ""
+
+#: tbl_change.php:1171
+msgid ""
+"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
+msgstr ""
+
+#: tbl_change.php:1209
+#, php-format
+msgid "Restart insertion with %s rows"
+msgstr ""
+
+#: tbl_create.php:62
+#, php-format
+msgid "Table %s already exists!"
+msgstr ""
+
+#: tbl_create.php:249
+#, php-format
+msgid "Table %1$s has been created."
+msgstr ""
+
+#: tbl_export.php:23
+msgid "View dump (schema) of table"
+msgstr ""
+
+#: tbl_indexes.php:67
+msgid "The name of the primary key must be \"PRIMARY\"!"
+msgstr ""
+
+#: tbl_indexes.php:75
+msgid "Can't rename index to PRIMARY!"
+msgstr ""
+
+#: tbl_indexes.php:91
+msgid "No index parts defined!"
+msgstr ""
+
+#: tbl_indexes.php:160
+msgid "Create a new index"
+msgstr ""
+
+#: tbl_indexes.php:162
+msgid "Modify an index"
+msgstr ""
+
+#: tbl_indexes.php:168
+msgid "Index name:"
+msgstr ""
+
+#: tbl_indexes.php:174
+msgid "Index type:"
+msgstr ""
+
+#: tbl_indexes.php:184
+msgid ""
+"(\"PRIMARY\" must be the name of and only of a primary key!)"
+msgstr ""
+
+#: tbl_indexes.php:251
+#, php-format
+msgid "Add to index %s column(s)"
+msgstr ""
+
+#: tbl_indexes.php:256 tbl_structure.php:589 tbl_structure.php:600
+msgid "Column count has to be larger than zero."
+msgstr ""
+
+#: tbl_move_copy.php:46
+msgid "Can't move table to same one!"
+msgstr ""
+
+#: tbl_move_copy.php:48
+msgid "Can't copy table to same one!"
+msgstr ""
+
+#: tbl_move_copy.php:56
+#, php-format
+msgid "Table %s has been moved to %s."
+msgstr ""
+
+#: tbl_move_copy.php:58
+#, php-format
+msgid "Table %s has been copied to %s."
+msgstr ""
+
+#: tbl_move_copy.php:82
+msgid "The table name is empty!"
+msgstr ""
+
+#: tbl_operations.php:249
+msgid "Alter table order by"
+msgstr ""
+
+#: tbl_operations.php:258
+msgid "(singly)"
+msgstr ""
+
+#: tbl_operations.php:278
+msgid "Move table to (database.table):"
+msgstr ""
+
+#: tbl_operations.php:336
+msgid "Table options"
+msgstr ""
+
+#: tbl_operations.php:340
+msgid "Rename table to"
+msgstr ""
+
+#: tbl_operations.php:511
+msgid "Copy table to (database.table):"
+msgstr ""
+
+#: tbl_operations.php:558
+msgid "Switch to copied table"
+msgstr ""
+
+#: tbl_operations.php:570
+msgid "Table maintenance"
+msgstr ""
+
+#: tbl_operations.php:591
+msgid "Defragment table"
+msgstr ""
+
+#: tbl_operations.php:630
+#, php-format
+msgid "Table %s has been flushed"
+msgstr ""
+
+#: tbl_operations.php:636
+msgid "Flush the table (FLUSH)"
+msgstr ""
+
+#: tbl_operations.php:651
+msgid "Partition maintenance"
+msgstr ""
+
+#: tbl_operations.php:659
+#, php-format
+msgid "Partition %s"
+msgstr ""
+
+#: tbl_operations.php:662
+msgid "Analyze"
+msgstr ""
+
+#: tbl_operations.php:663
+msgid "Check"
+msgstr ""
+
+#: tbl_operations.php:664
+msgid "Optimize"
+msgstr ""
+
+#: tbl_operations.php:665
+msgid "Rebuild"
+msgstr ""
+
+#: tbl_operations.php:666
+msgid "Repair"
+msgstr ""
+
+#: tbl_operations.php:678
+msgid "Remove partitioning"
+msgstr ""
+
+#: tbl_operations.php:704
+msgid "Check referential integrity:"
+msgstr ""
+
+#: tbl_printview.php:75
+msgid "Show tables"
+msgstr ""
+
+#: tbl_printview.php:310 tbl_structure.php:656
+msgid "Space usage"
+msgstr ""
+
+#: tbl_printview.php:314 tbl_structure.php:660
+msgid "Usage"
+msgstr ""
+
+#: tbl_printview.php:341 tbl_structure.php:687
+msgid "Effective"
+msgstr ""
+
+#: tbl_printview.php:366 tbl_structure.php:725
+msgid "Row Statistics"
+msgstr ""
+
+#: tbl_printview.php:369 tbl_structure.php:728
+msgid "Statements"
+msgstr ""
+
+#: tbl_printview.php:380 tbl_structure.php:740
+msgid "static"
+msgstr ""
+
+#: tbl_printview.php:382 tbl_structure.php:742
+msgid "dynamic"
+msgstr ""
+
+#: tbl_printview.php:404 tbl_structure.php:785
+msgid "Row length"
+msgstr ""
+
+#: tbl_printview.php:414 tbl_structure.php:793
+msgid " Row size "
+msgstr ""
+
+#: tbl_relation.php:279
+#, php-format
+msgid "Error creating foreign key on %1$s (check data types)"
+msgstr ""
+
+#: tbl_relation.php:405
+msgid "Internal relation"
+msgstr ""
+
+#: tbl_relation.php:407
+msgid ""
+"An internal relation is not necessary when a corresponding FOREIGN KEY "
+"relation exists."
+msgstr ""
+
+#: tbl_relation.php:413
+msgid "Foreign key constraint"
+msgstr ""
+
+#: tbl_row_action.php:29
+msgid "No rows selected"
+msgstr ""
+
+#: tbl_select.php:132
+msgid "Do a \"query by example\" (wildcard: \"%\")"
+msgstr ""
+
+#: tbl_select.php:138
+msgid "Operator"
+msgstr ""
+
+#: tbl_select.php:270
+msgid "Select columns (at least one):"
+msgstr ""
+
+#: tbl_select.php:288
+msgid "Add search conditions (body of the \"where\" clause):"
+msgstr ""
+
+#: tbl_select.php:295
+msgid "Number of rows per page"
+msgstr ""
+
+#: tbl_select.php:301
+msgid "Display order:"
+msgstr ""
+
+#: tbl_structure.php:161
+msgid "Browse distinct values"
+msgstr ""
+
+#: tbl_structure.php:361
+msgctxt "None for default"
+msgid "None"
+msgstr ""
+
+#: tbl_structure.php:374
+#, php-format
+msgid "Column %s has been dropped"
+msgstr ""
+
+#: tbl_structure.php:385
+#, php-format
+msgid "A primary key has been added on %s"
+msgstr ""
+
+#: tbl_structure.php:400 tbl_structure.php:414 tbl_structure.php:428
+#, php-format
+msgid "An index has been added on %s"
+msgstr ""
+
+#: tbl_structure.php:506 tbl_structure.php:508
+msgid "Relation view"
+msgstr ""
+
+#: tbl_structure.php:515 tbl_structure.php:517
+msgid "Propose table structure"
+msgstr ""
+
+#: tbl_structure.php:540
+msgid "Add column"
+msgstr ""
+
+#: tbl_structure.php:554
+msgid "At End of Table"
+msgstr ""
+
+#: tbl_structure.php:555
+msgid "At Beginning of Table"
+msgstr ""
+
+#: tbl_structure.php:556
+#, php-format
+msgid "After %s"
+msgstr ""
+
+#: tbl_structure.php:594
+#, php-format
+msgid "Create an index on %s columns"
+msgstr ""
+
+#: tbl_structure.php:756
+msgid "partitioned"
+msgstr ""
+
+#: tbl_tracking.php:114
+#, php-format
+msgid "Tracking report for table `%s`"
+msgstr ""
+
+#: tbl_tracking.php:187
+#, php-format
+msgid "Version %s is created, tracking for %s.%s is activated."
+msgstr ""
+
+#: tbl_tracking.php:195
+#, php-format
+msgid "Tracking for %s.%s , version %s is deactivated."
+msgstr ""
+
+#: tbl_tracking.php:203
+#, php-format
+msgid "Tracking for %s.%s , version %s is activated."
+msgstr ""
+
+#: tbl_tracking.php:213
+msgid "SQL statements executed."
+msgstr ""
+
+#: tbl_tracking.php:220
+msgid ""
+"You can execute the dump by creating and using a temporary database. Please "
+"ensure that you have the privileges to do so."
+msgstr ""
+
+#: tbl_tracking.php:221
+msgid "Comment out these two lines if you do not need them."
+msgstr ""
+
+#: tbl_tracking.php:230
+msgid "SQL statements exported. Please copy the dump or execute it."
+msgstr ""
+
+#: tbl_tracking.php:251 tbl_tracking.php:379
+msgid "Close"
+msgstr ""
+
+#: tbl_tracking.php:262
+#, php-format
+msgid "Version %s snapshot (SQL code)"
+msgstr ""
+
+#: tbl_tracking.php:381
+msgid "Tracking statements"
+msgstr ""
+
+#: tbl_tracking.php:397 tbl_tracking.php:504
+#, php-format
+msgid "Show %s with dates from %s to %s by user %s %s"
+msgstr ""
+
+#: tbl_tracking.php:410 tbl_tracking.php:461
+msgid "Date"
+msgstr ""
+
+#: tbl_tracking.php:411 tbl_tracking.php:462
+msgid "Username"
+msgstr ""
+
+#: tbl_tracking.php:412
+msgid "Data definition statement"
+msgstr ""
+
+#: tbl_tracking.php:463
+msgid "Data manipulation statement"
+msgstr ""
+
+#: tbl_tracking.php:507
+msgid "SQL dump (file download)"
+msgstr ""
+
+#: tbl_tracking.php:508
+msgid "SQL dump"
+msgstr ""
+
+#: tbl_tracking.php:509
+msgid "This option will replace your table and contained data."
+msgstr ""
+
+#: tbl_tracking.php:509
+msgid "SQL execution"
+msgstr ""
+
+#: tbl_tracking.php:521
+#, php-format
+msgid "Export as %s"
+msgstr ""
+
+#: tbl_tracking.php:561
+msgid "Show versions"
+msgstr ""
+
+#: tbl_tracking.php:593
+msgid "Version"
+msgstr ""
+
+#: tbl_tracking.php:640
+#, php-format
+msgid "Deactivate tracking for %s.%s"
+msgstr ""
+
+#: tbl_tracking.php:642
+msgid "Deactivate now"
+msgstr ""
+
+#: tbl_tracking.php:653
+#, php-format
+msgid "Activate tracking for %s.%s"
+msgstr ""
+
+#: tbl_tracking.php:655
+msgid "Activate now"
+msgstr ""
+
+#: tbl_tracking.php:668
+#, php-format
+msgid "Create version %s of %s.%s"
+msgstr ""
+
+#: tbl_tracking.php:672
+msgid "Track these data definition statements:"
+msgstr ""
+
+#: tbl_tracking.php:680
+msgid "Track these data manipulation statements:"
+msgstr ""
+
+#: tbl_tracking.php:688
+msgid "Create version"
+msgstr ""
+
+#: themes.php:32
+#, php-format
+msgid ""
+"No themes support; please check your configuration and/or your themes in "
+"directory %s."
+msgstr ""
+
+#: themes.php:42
+msgid "Get more themes!"
+msgstr ""
+
+#: transformation_overview.php:25
+msgid "Available MIME types"
+msgstr ""
+
+#: transformation_overview.php:38
+msgid ""
+"MIME types printed in italics do not have a separate transformation function"
+msgstr ""
+
+#: transformation_overview.php:43
+msgid "Available transformations"
+msgstr ""
+
+#: transformation_overview.php:48
+msgctxt "for MIME transformation"
+msgid "Description"
+msgstr ""
+
+#: user_password.php:54
+msgid "You don't have sufficient privileges to be here right now!"
+msgstr ""
+
+#: user_password.php:112
+msgid "The profile has been updated."
+msgstr ""
+
+#: view_create.php:142
+msgid "VIEW name"
+msgstr "Enw VIEW"
+
+#: view_operations.php:93
+msgid "Rename view to"
+msgstr "Ailenwch golwg i"
diff --git a/po/da.po b/po/da.po
index e34745f0c..2caea69bc 100755
--- a/po/da.po
+++ b/po/da.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-06-04 16:07-0400\n"
+"POT-Creation-Date: 2010-06-08 12:32-0400\n"
"PO-Revision-Date: 2010-03-12 09:13+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: danish \n"
@@ -14,11 +14,11 @@ msgstr ""
"X-Generator: Translate Toolkit 1.5.3\n"
#: browse_foreigners.php:38 browse_foreigners.php:59
-#: libraries/display_tbl.lib.php:417 server_privileges.php:1475
+#: libraries/display_tbl.lib.php:417 server_privileges.php:1514
msgid "Show all"
msgstr "Vis alle"
-#: browse_foreigners.php:82 libraries/common.lib.php:2304
+#: browse_foreigners.php:82 libraries/common.lib.php:2313
#: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:394
#: libraries/export/pdf.php:147 pdf_schema.php:283 pdf_schema.php:1123
#: pdf_schema.php:1139
@@ -37,8 +37,8 @@ msgstr ""
#: browse_foreigners.php:150 db_structure.php:79 db_structure.php:80
#: db_structure.php:91 db_structure.php:93 db_structure.php:104
-#: db_structure.php:106 libraries/common.lib.php:2822
-#: libraries/common.lib.php:2829 libraries/db_links.inc.php:75
+#: db_structure.php:106 libraries/common.lib.php:2831
+#: libraries/common.lib.php:2838 libraries/db_links.inc.php:75
#: libraries/tbl_links.inc.php:63
msgid "Search"
msgstr "Søg"
@@ -48,7 +48,7 @@ msgstr "Søg"
#: db_structure.php:567 js/messages.php:48 libraries/Config.class.php:1046
#: libraries/Theme_Manager.class.php:311
#: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719
-#: libraries/common.lib.php:1333 libraries/common.lib.php:2279
+#: libraries/common.lib.php:1335 libraries/common.lib.php:2288
#: libraries/display_change_password.lib.php:82
#: libraries/display_create_table.lib.php:63
#: libraries/display_export.lib.php:275 libraries/display_import.lib.php:276
@@ -59,9 +59,9 @@ msgstr "Søg"
#: libraries/sql_query_form.lib.php:552 libraries/tbl_properties.inc.php:782
#: main.php:128 navigation.php:237 pdf_pages.php:292 pdf_pages.php:328
#: pdf_pages.php:530 pmd_pdf.php:116 server_binlog.php:142
-#: server_privileges.php:625 server_privileges.php:1585
-#: server_privileges.php:1932 server_privileges.php:1979
-#: server_privileges.php:2018 server_replication.php:235
+#: server_privileges.php:664 server_privileges.php:1624
+#: server_privileges.php:1971 server_privileges.php:2018
+#: server_privileges.php:2057 server_replication.php:235
#: server_replication.php:318 server_replication.php:341
#: server_synchronize.php:1209 tbl_change.php:330 tbl_change.php:1174
#: tbl_change.php:1211 tbl_indexes.php:254 tbl_operations.php:265
@@ -79,7 +79,7 @@ msgstr "Nøglenavn"
#: browse_foreigners.php:169 browse_foreigners.php:171
#: server_collations.php:55 server_collations.php:67 server_engines.php:59
-#: server_status.php:628
+#: server_status.php:739
msgid "Description"
msgstr "Beskrivelse"
@@ -120,7 +120,7 @@ msgstr "Kolonnenavne"
#: libraries/db_structure.lib.php:60 libraries/export/htmlword.php:245
#: libraries/export/latex.php:360 libraries/export/odt.php:297
#: libraries/export/texytext.php:234 libraries/tbl_properties.inc.php:100
-#: pdf_schema.php:1263 pdf_schema.php:1284 server_privileges.php:2031
+#: pdf_schema.php:1263 pdf_schema.php:1284 server_privileges.php:2070
#: tbl_change.php:287 tbl_change.php:314 tbl_printview.php:143
#: tbl_printview.php:313 tbl_select.php:136 tbl_structure.php:178
#: tbl_structure.php:659 tbl_tracking.php:274 tbl_tracking.php:321
@@ -164,9 +164,9 @@ msgstr "Kommentarer"
#: libraries/Index.class.php:386 libraries/export/htmlword.php:322
#: libraries/export/latex.php:430 libraries/export/odt.php:368
#: libraries/export/texytext.php:311 libraries/mult_submits.inc.php:263
-#: pdf_schema.php:1344 server_privileges.php:1529 server_privileges.php:1540
-#: server_privileges.php:1850 server_privileges.php:1855
-#: server_privileges.php:2148 sql.php:132 sql.php:194 tbl_printview.php:229
+#: pdf_schema.php:1344 server_privileges.php:1568 server_privileges.php:1579
+#: server_privileges.php:1889 server_privileges.php:1894
+#: server_privileges.php:2187 sql.php:132 sql.php:194 tbl_printview.php:229
#: tbl_structure.php:350 tbl_tracking.php:337 tbl_tracking.php:342
msgid "No"
msgstr "Nej"
@@ -180,9 +180,9 @@ msgstr "Nej"
#: libraries/mult_submits.inc.php:101 libraries/mult_submits.inc.php:106
#: libraries/mult_submits.inc.php:111 libraries/mult_submits.inc.php:262
#: libraries/mult_submits.inc.php:273 pdf_schema.php:1344
-#: server_databases.php:64 server_privileges.php:1526
-#: server_privileges.php:1540 server_privileges.php:1850
-#: server_privileges.php:1853 server_privileges.php:2148 sql.php:193
+#: server_databases.php:64 server_privileges.php:1565
+#: server_privileges.php:1579 server_privileges.php:1889
+#: server_privileges.php:1892 server_privileges.php:2187 sql.php:193
#: tbl_printview.php:229 tbl_structure.php:40 tbl_structure.php:350
#: tbl_tracking.php:335 tbl_tracking.php:340
msgid "Yes"
@@ -279,7 +279,7 @@ msgstr "Skift til den kopierede database"
msgid "BLOB Repository"
msgstr ""
-#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1350
+#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1352
#: libraries/server_links.inc.php:49 server_processlist.php:59
#: tbl_tracking.php:596 test/theme.php:101
msgid "Status"
@@ -342,8 +342,8 @@ msgstr "Redigér PDF-sider"
#: db_printview.php:104 db_tracking.php:72 db_tracking.php:157
#: libraries/db_structure.lib.php:46 libraries/export/xml.php:328
-#: libraries/header.inc.php:126 pdf_pages.php:424 server_privileges.php:1626
-#: server_privileges.php:1682 server_privileges.php:1946
+#: libraries/header.inc.php:126 pdf_pages.php:424 server_privileges.php:1665
+#: server_privileges.php:1721 server_privileges.php:1985
#: server_synchronize.php:423 server_synchronize.php:866 tbl_tracking.php:592
#: test/theme.php:75
msgid "Table"
@@ -444,7 +444,7 @@ msgstr "Del (Slet)"
#: db_qbe.php:370 db_qbe.php:451 db_qbe.php:522 db_qbe.php:553
#: libraries/display_import.lib.php:166 libraries/tbl_properties.inc.php:779
-#: server_privileges.php:258 tbl_change.php:1031 tbl_indexes.php:250
+#: server_privileges.php:297 tbl_change.php:1031 tbl_indexes.php:250
#: tbl_select.php:288
msgid "Or"
msgstr "Eller"
@@ -478,7 +478,7 @@ msgstr "Benyt tabeller"
msgid "SQL query on database %s:"
msgstr "SQL-forespørgsel til database %s:"
-#: db_qbe.php:934 libraries/common.lib.php:1223
+#: db_qbe.php:934 libraries/common.lib.php:1225
msgid "Submit Query"
msgstr "Send forespørgsel"
@@ -517,7 +517,7 @@ msgstr "%s hit(s) i tabel %s"
#: db_search.php:267 db_structure.php:77 db_structure.php:78
#: db_structure.php:90 db_structure.php:92 db_structure.php:103
-#: db_structure.php:105 libraries/common.lib.php:2824
+#: db_structure.php:105 libraries/common.lib.php:2833
#: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50
#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:467
msgid "Browse"
@@ -564,26 +564,26 @@ msgstr "Indeni tabel(ler):"
#: db_structure.php:81 db_structure.php:82 db_structure.php:94
#: db_structure.php:95 db_structure.php:107 db_structure.php:108
-#: libraries/common.lib.php:2823 libraries/sql_query_form.lib.php:334
+#: libraries/common.lib.php:2832 libraries/sql_query_form.lib.php:334
#: libraries/sql_query_form.lib.php:337 libraries/tbl_links.inc.php:76
msgid "Insert"
msgstr "Indsæt"
#: db_structure.php:83 db_structure.php:96 db_structure.php:109
-#: libraries/common.lib.php:2820 libraries/common.lib.php:2827
+#: libraries/common.lib.php:2829 libraries/common.lib.php:2836
#: libraries/db_links.inc.php:63 libraries/export/htmlword.php:23
#: libraries/export/latex.php:33 libraries/export/latex.php:337
#: libraries/export/odt.php:32 libraries/export/sql.php:60
#: libraries/export/texytext.php:23 libraries/import.lib.php:1104
#: libraries/tbl_links.inc.php:56 pmd_general.php:134
-#: server_privileges.php:554 server_replication.php:315 tbl_tracking.php:269
+#: server_privileges.php:593 server_replication.php:315 tbl_tracking.php:269
msgid "Structure"
msgstr "Struktur"
#: db_structure.php:84 db_structure.php:85 db_structure.php:97
#: db_structure.php:98 db_structure.php:110 db_structure.php:111
#: db_structure.php:545 db_structure.php:546 db_tracking.php:91
-#: libraries/Index.class.php:483 libraries/common.lib.php:1654
+#: libraries/Index.class.php:483 libraries/common.lib.php:1656
#: libraries/db_links.inc.php:100 libraries/mult_submits.inc.php:36
#: libraries/mult_submits.inc.php:73 libraries/tbl_links.inc.php:127
#: server_databases.php:352 tbl_structure.php:27 tbl_structure.php:151
@@ -593,7 +593,7 @@ msgstr "Slet"
#: db_structure.php:86 db_structure.php:87 db_structure.php:99
#: db_structure.php:100 db_structure.php:112 db_structure.php:113
-#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1653
+#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1655
#: libraries/mult_submits.inc.php:39 libraries/tbl_links.inc.php:105
msgid "Empty"
msgstr "Tøm"
@@ -635,7 +635,7 @@ msgstr "Visning"
#: db_structure.php:485 libraries/db_structure.lib.php:49
#: libraries/server_links.inc.php:70 server_replication.php:33
-#: server_replication.php:164 server_status.php:258
+#: server_replication.php:164 server_status.php:369
msgid "Replication"
msgstr "Replikering"
@@ -651,20 +651,20 @@ msgstr "%s er standard datalageret på denne MySQL-server."
#: db_structure.php:524 db_structure.php:541 db_structure.php:542
#: libraries/display_tbl.lib.php:2081 libraries/display_tbl.lib.php:2086
#: libraries/mult_submits.inc.php:16 server_databases.php:346
-#: server_databases.php:351 server_privileges.php:1557 tbl_structure.php:455
+#: server_databases.php:351 server_privileges.php:1596 tbl_structure.php:455
#: tbl_structure.php:464
msgid "With selected:"
msgstr "Med det markerede:"
#: db_structure.php:527 libraries/display_tbl.lib.php:2076
-#: server_databases.php:348 server_privileges.php:530
-#: server_privileges.php:1560 tbl_structure.php:458
+#: server_databases.php:348 server_privileges.php:569
+#: server_privileges.php:1599 tbl_structure.php:458
msgid "Check All"
msgstr "Afmærk alt"
#: db_structure.php:531 libraries/display_tbl.lib.php:2077
#: libraries/replication_gui.lib.php:33 server_databases.php:350
-#: server_privileges.php:533 server_privileges.php:1564 tbl_structure.php:462
+#: server_privileges.php:572 server_privileges.php:1603 tbl_structure.php:462
msgid "Uncheck All"
msgstr "Fjern alle mærker"
@@ -702,7 +702,7 @@ msgstr "Analysér tabel"
#: libraries/display_export.lib.php:83 libraries/display_tbl.lib.php:2094
#: libraries/display_tbl.lib.php:2225 libraries/mult_submits.inc.php:62
#: libraries/server_links.inc.php:84 libraries/tbl_links.inc.php:82
-#: pmd_pdf.php:84 pmd_pdf.php:109 server_privileges.php:1341
+#: pmd_pdf.php:84 pmd_pdf.php:109 server_privileges.php:1380
#: setup/frames/menu.inc.php:22 tbl_row_action.php:59
msgid "Export"
msgstr "Eksport"
@@ -720,8 +720,8 @@ msgstr ""
#: libraries/export/sql.php:342 libraries/export/texytext.php:84
#: libraries/export/xml.php:255 libraries/header.inc.php:106
#: libraries/header_printview.inc.php:58 server_databases.php:169
-#: server_privileges.php:1621 server_privileges.php:1682
-#: server_privileges.php:1940 server_processlist.php:56
+#: server_privileges.php:1660 server_privileges.php:1721
+#: server_privileges.php:1979 server_processlist.php:56
#: server_synchronize.php:1179 server_synchronize.php:1183
#: tbl_tracking.php:591 test/theme.php:65
msgid "Database"
@@ -741,8 +741,8 @@ msgstr ""
#: db_tracking.php:77 libraries/Index.class.php:440
#: libraries/db_structure.lib.php:53 server_databases.php:203
-#: server_privileges.php:1503 server_privileges.php:1686
-#: server_privileges.php:2034 tbl_structure.php:187
+#: server_privileges.php:1542 server_privileges.php:1725
+#: server_privileges.php:2073 tbl_structure.php:187
msgid "Action"
msgstr "Handling"
@@ -946,11 +946,11 @@ msgstr "Der er intet værtsnavn!"
msgid "The user name is empty!"
msgstr "Intet brugernavn!"
-#: js/messages.php:44 server_privileges.php:1197 user_password.php:70
+#: js/messages.php:44 server_privileges.php:1236 user_password.php:70
msgid "The password is empty!"
msgstr "Der er ikke angivet noget kodeord!"
-#: js/messages.php:45 server_privileges.php:1195 user_password.php:73
+#: js/messages.php:45 server_privileges.php:1234 user_password.php:73
msgid "The passwords aren't the same!"
msgstr "De to kodeord er ikke ens!"
@@ -1029,8 +1029,8 @@ msgid "Prev"
msgstr "Forrige"
#. l10n: Display text for next month link in calendar
-#: js/messages.php:77 libraries/common.lib.php:2344
-#: libraries/common.lib.php:2347 libraries/display_tbl.lib.php:338
+#: js/messages.php:77 libraries/common.lib.php:2353
+#: libraries/common.lib.php:2356 libraries/display_tbl.lib.php:338
#: server_binlog.php:205 server_binlog.php:207 tbl_printview.php:424
#: tbl_structure.php:801
msgid "Next"
@@ -1106,27 +1106,27 @@ msgid "December"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:97 libraries/common.lib.php:1555
+#: js/messages.php:97 libraries/common.lib.php:1557
msgid "Jan"
msgstr "jan"
#. l10n: Short month name
-#: js/messages.php:99 libraries/common.lib.php:1557
+#: js/messages.php:99 libraries/common.lib.php:1559
msgid "Feb"
msgstr "feb"
#. l10n: Short month name
-#: js/messages.php:101 libraries/common.lib.php:1559
+#: js/messages.php:101 libraries/common.lib.php:1561
msgid "Mar"
msgstr "mar"
#. l10n: Short month name
-#: js/messages.php:103 libraries/common.lib.php:1561
+#: js/messages.php:103 libraries/common.lib.php:1563
msgid "Apr"
msgstr "apr"
#. l10n: Short month name
-#: js/messages.php:105 libraries/common.lib.php:1563
+#: js/messages.php:105 libraries/common.lib.php:1565
#, fuzzy
#| msgid "May"
msgctxt "Short month name"
@@ -1134,37 +1134,37 @@ msgid "May"
msgstr "maj"
#. l10n: Short month name
-#: js/messages.php:107 libraries/common.lib.php:1565
+#: js/messages.php:107 libraries/common.lib.php:1567
msgid "Jun"
msgstr "jun"
#. l10n: Short month name
-#: js/messages.php:109 libraries/common.lib.php:1567
+#: js/messages.php:109 libraries/common.lib.php:1569
msgid "Jul"
msgstr "jul"
#. l10n: Short month name
-#: js/messages.php:111 libraries/common.lib.php:1569
+#: js/messages.php:111 libraries/common.lib.php:1571
msgid "Aug"
msgstr "aug"
#. l10n: Short month name
-#: js/messages.php:113 libraries/common.lib.php:1571
+#: js/messages.php:113 libraries/common.lib.php:1573
msgid "Sep"
msgstr "sep"
#. l10n: Short month name
-#: js/messages.php:115 libraries/common.lib.php:1573
+#: js/messages.php:115 libraries/common.lib.php:1575
msgid "Oct"
msgstr "okt"
#. l10n: Short month name
-#: js/messages.php:117 libraries/common.lib.php:1575
+#: js/messages.php:117 libraries/common.lib.php:1577
msgid "Nov"
msgstr "nov"
#. l10n: Short month name
-#: js/messages.php:119 libraries/common.lib.php:1577
+#: js/messages.php:119 libraries/common.lib.php:1579
msgid "Dec"
msgstr "dec"
@@ -1205,37 +1205,37 @@ msgid "Saturday"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:132 libraries/common.lib.php:1580
+#: js/messages.php:132 libraries/common.lib.php:1582
msgid "Sun"
msgstr "søn"
#. l10n: Short week day name
-#: js/messages.php:134 libraries/common.lib.php:1582
+#: js/messages.php:134 libraries/common.lib.php:1584
msgid "Mon"
msgstr "man"
#. l10n: Short week day name
-#: js/messages.php:136 libraries/common.lib.php:1584
+#: js/messages.php:136 libraries/common.lib.php:1586
msgid "Tue"
msgstr "tir"
#. l10n: Short week day name
-#: js/messages.php:138 libraries/common.lib.php:1586
+#: js/messages.php:138 libraries/common.lib.php:1588
msgid "Wed"
msgstr "ons"
#. l10n: Short week day name
-#: js/messages.php:140 libraries/common.lib.php:1588
+#: js/messages.php:140 libraries/common.lib.php:1590
msgid "Thu"
msgstr "tor"
#. l10n: Short week day name
-#: js/messages.php:142 libraries/common.lib.php:1590
+#: js/messages.php:142 libraries/common.lib.php:1592
msgid "Fri"
msgstr "fre"
#. l10n: Short week day name
-#: js/messages.php:144 libraries/common.lib.php:1592
+#: js/messages.php:144 libraries/common.lib.php:1594
msgid "Sat"
msgstr "lør"
@@ -1380,7 +1380,7 @@ msgid "Comment"
msgstr ""
#: libraries/Index.class.php:466 libraries/common.lib.php:616
-#: libraries/common.lib.php:1199 libraries/display_tbl.lib.php:1117
+#: libraries/common.lib.php:1201 libraries/display_tbl.lib.php:1117
#: libraries/import.lib.php:1087 libraries/import.lib.php:1111
#: pdf_pages.php:285 setup/frames/index.inc.php:124
#: setup/lib/messages.inc.php:352 tbl_row_action.php:69
@@ -1404,7 +1404,7 @@ msgid ""
msgstr ""
#: libraries/List_Database.class.php:431 libraries/server_links.inc.php:41
-#: server_databases.php:88 server_privileges.php:1621
+#: server_databases.php:88 server_privileges.php:1660
#: setup/lib/messages.inc.php:110 test/theme.php:93
msgid "Databases"
msgstr "Databaser"
@@ -1740,7 +1740,7 @@ msgid "Documentation"
msgstr "Dokumentation"
#: libraries/common.lib.php:595 libraries/header_printview.inc.php:61
-#: server_processlist.php:60 server_status.php:247
+#: server_processlist.php:60 server_status.php:358
msgid "SQL query"
msgstr "SQL-forespørgsel"
@@ -1756,130 +1756,130 @@ msgstr "Forklar SQL"
msgid "Skip Explain SQL"
msgstr "Spring over Forklar SQL"
-#: libraries/common.lib.php:1212
+#: libraries/common.lib.php:1214
msgid "Without PHP Code"
msgstr "uden PHP-kode"
-#: libraries/common.lib.php:1215 setup/lib/messages.inc.php:355
+#: libraries/common.lib.php:1217 setup/lib/messages.inc.php:355
msgid "Create PHP Code"
msgstr "Fremstil PHP-kode"
-#: libraries/common.lib.php:1233 server_status.php:341
+#: libraries/common.lib.php:1235 server_status.php:452
#: setup/lib/messages.inc.php:354
msgid "Refresh"
msgstr "Opdatér"
-#: libraries/common.lib.php:1242
+#: libraries/common.lib.php:1244
msgid "Skip Validate SQL"
msgstr "Spring over Validér SQL"
-#: libraries/common.lib.php:1245 setup/lib/messages.inc.php:356 sql.php:518
+#: libraries/common.lib.php:1247 setup/lib/messages.inc.php:356 sql.php:518
msgid "Validate SQL"
msgstr "Validér SQL"
-#: libraries/common.lib.php:1276
+#: libraries/common.lib.php:1278
msgid "Inline edit of this query"
msgstr ""
-#: libraries/common.lib.php:1278
+#: libraries/common.lib.php:1280
#, fuzzy
#| msgid "Engines"
msgid "Inline"
msgstr "Lagre"
-#: libraries/common.lib.php:1332 libraries/common.lib.php:1347
+#: libraries/common.lib.php:1334 libraries/common.lib.php:1349
msgid "Profiling"
msgstr ""
-#: libraries/common.lib.php:1351 libraries/tbl_triggers.lib.php:28
+#: libraries/common.lib.php:1353 libraries/tbl_triggers.lib.php:28
#: server_processlist.php:58
msgid "Time"
msgstr "Tid"
#. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "B"
msgstr "B"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "KiB"
msgstr "KiB"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "MiB"
msgstr "MiB"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "GiB"
msgstr "GiB"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "TiB"
msgstr "TiB"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "PiB"
msgstr "PiB"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "EiB"
msgstr "EiB"
#. l10n: Thousands separator
-#: libraries/common.lib.php:1417
+#: libraries/common.lib.php:1419
msgid ","
msgstr "."
#. l10n: Decimal separator
-#: libraries/common.lib.php:1419
+#: libraries/common.lib.php:1421
msgid "."
msgstr ","
#. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string
-#: libraries/common.lib.php:1596
+#: libraries/common.lib.php:1598
#: libraries/transformations/text_plain__dateformat.inc.php:34
msgid "%B %d, %Y at %I:%M %p"
msgstr "%d. %m %Y kl. %H:%M:%S"
-#: libraries/common.lib.php:1898
+#: libraries/common.lib.php:1907
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "%s dage, %s timer, %s minutter og %s sekunder"
-#: libraries/common.lib.php:2313 libraries/common.lib.php:2316
-#: libraries/display_tbl.lib.php:290 server_status.php:608
+#: libraries/common.lib.php:2322 libraries/common.lib.php:2325
+#: libraries/display_tbl.lib.php:290 server_status.php:719
msgid "Begin"
msgstr "Start"
-#: libraries/common.lib.php:2314 libraries/common.lib.php:2317
+#: libraries/common.lib.php:2323 libraries/common.lib.php:2326
#: libraries/display_tbl.lib.php:291 server_binlog.php:168
#: server_binlog.php:170
msgid "Previous"
msgstr "Forrige"
-#: libraries/common.lib.php:2345 libraries/common.lib.php:2348
+#: libraries/common.lib.php:2354 libraries/common.lib.php:2357
#: libraries/display_tbl.lib.php:353
msgid "End"
msgstr "Slut"
-#: libraries/common.lib.php:2421
+#: libraries/common.lib.php:2430
#, php-format
msgid "Jump to database "%s"."
msgstr "Hop til database "%s"."
-#: libraries/common.lib.php:2441
+#: libraries/common.lib.php:2450
#, 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/common.lib.php:2821 libraries/common.lib.php:2828
+#: libraries/common.lib.php:2830 libraries/common.lib.php:2837
#: libraries/db_links.inc.php:68 libraries/export/sql.php:25
#: libraries/import/sql.php:18 libraries/server_links.inc.php:45
#: libraries/tbl_links.inc.php:60 querywindow.php:99 test/theme.php:97
msgid "SQL"
msgstr "SQL"
-#: libraries/common.lib.php:2830 libraries/db_links.inc.php:104
+#: libraries/common.lib.php:2839 libraries/db_links.inc.php:104
#: libraries/tbl_links.inc.php:95 libraries/tbl_links.inc.php:117
#: view_operations.php:89
msgid "Operations"
@@ -1935,8 +1935,8 @@ msgid "Import"
msgstr "Import"
#: libraries/db_links.inc.php:111 libraries/server_links.inc.php:66
-#: server_privileges.php:72 server_privileges.php:1683
-#: server_privileges.php:2032 test/theme.php:117
+#: server_privileges.php:111 server_privileges.php:1722
+#: server_privileges.php:2071 test/theme.php:117
msgid "Privileges"
msgstr "Privilegier"
@@ -1983,22 +1983,22 @@ msgid "Change password"
msgstr "Ændre kodeord"
#: libraries/display_change_password.lib.php:35
-#: libraries/replication_gui.lib.php:345 server_privileges.php:768
+#: libraries/replication_gui.lib.php:345 server_privileges.php:807
msgid "No Password"
msgstr "Intet kodeord"
#: libraries/display_change_password.lib.php:41
#: libraries/replication_gui.lib.php:59 libraries/replication_gui.lib.php:60
#: libraries/replication_gui.lib.php:335 libraries/replication_gui.lib.php:339
-#: libraries/replication_gui.lib.php:349 server_privileges.php:757
-#: server_privileges.php:761 server_privileges.php:772
-#: server_privileges.php:1499 server_synchronize.php:1175
+#: libraries/replication_gui.lib.php:349 server_privileges.php:796
+#: server_privileges.php:800 server_privileges.php:811
+#: server_privileges.php:1538 server_synchronize.php:1175
msgid "Password"
msgstr "Kodeord"
#: libraries/display_change_password.lib.php:46
#: libraries/replication_gui.lib.php:353 libraries/replication_gui.lib.php:356
-#: server_privileges.php:776 server_privileges.php:779
+#: server_privileges.php:815 server_privileges.php:818
msgid "Re-type"
msgstr "Skriv igen"
@@ -2013,12 +2013,12 @@ msgid "MySQL 4.0 compatible"
msgstr "MySQL 4.0 kompatibel"
#: libraries/display_change_password.lib.php:72
-#: libraries/replication_gui.lib.php:360 server_privileges.php:783
+#: libraries/replication_gui.lib.php:360 server_privileges.php:822
msgid "Generate Password"
msgstr "Generér Kodeord"
#: libraries/display_change_password.lib.php:75
-#: libraries/replication_gui.lib.php:363 server_privileges.php:786
+#: libraries/replication_gui.lib.php:363 server_privileges.php:825
msgid "Generate"
msgstr "Generér"
@@ -2031,8 +2031,8 @@ msgstr "Opret ny database"
msgid "Create"
msgstr "Opret"
-#: libraries/display_create_database.lib.php:40 server_privileges.php:74
-#: server_privileges.php:1388 server_replication.php:35
+#: libraries/display_create_database.lib.php:40 server_privileges.php:113
+#: server_privileges.php:1427 server_replication.php:35
msgid "No Privileges"
msgstr "Ingen privilegier"
@@ -2123,7 +2123,7 @@ msgstr "Komprimering"
#: libraries/display_export.lib.php:240 libraries/display_import.lib.php:197
#: libraries/display_import.lib.php:210 libraries/display_tbl.lib.php:530
#: libraries/export/sql.php:868 libraries/tbl_properties.inc.php:575
-#: server_privileges.php:1836 server_processlist.php:75
+#: server_privileges.php:1875 server_processlist.php:75
msgid "None"
msgstr "Ingen"
@@ -2451,7 +2451,7 @@ msgstr ""
msgid "Buffer Pool"
msgstr "Buffer Pool"
-#: libraries/engines/innodb.lib.php:145 server_status.php:306
+#: libraries/engines/innodb.lib.php:145 server_status.php:417
msgid "InnoDB Status"
msgstr "InnoDB status"
@@ -2460,8 +2460,8 @@ msgid "Buffer Pool Usage"
msgstr "Buffer Pool Forbrug"
#: libraries/engines/innodb.lib.php:194 server_databases.php:137
-#: server_databases.php:305 server_status.php:414 server_status.php:475
-#: server_status.php:496 tbl_printview.php:351 tbl_structure.php:696
+#: server_databases.php:305 server_status.php:525 server_status.php:586
+#: server_status.php:607 tbl_printview.php:351 tbl_structure.php:696
msgid "Total"
msgstr "Total"
@@ -2792,7 +2792,7 @@ msgstr "Microsoft Word 2000"
#: libraries/export/latex.php:201 libraries/export/odt.php:48
#: libraries/export/sql.php:106 libraries/export/sql.php:868
#: libraries/export/texytext.php:27 server_databases.php:127
-#: server_privileges.php:537 server_replication.php:316 tbl_printview.php:317
+#: server_privileges.php:576 server_replication.php:316 tbl_printview.php:317
#: tbl_structure.php:665
msgid "Data"
msgstr "Data"
@@ -2842,9 +2842,9 @@ msgstr "MIME-type"
#: libraries/export/xml.php:102 libraries/header_printview.inc.php:57
#: libraries/replication_gui.lib.php:63 libraries/replication_gui.lib.php:174
#: libraries/replication_gui.lib.php:269 libraries/replication_gui.lib.php:272
-#: libraries/replication_gui.lib.php:329 server_privileges.php:692
-#: server_privileges.php:695 server_privileges.php:751
-#: server_privileges.php:1498 server_privileges.php:2030
+#: libraries/replication_gui.lib.php:329 server_privileges.php:731
+#: server_privileges.php:734 server_privileges.php:790
+#: server_privileges.php:1537 server_privileges.php:2069
#: server_processlist.php:55 server_synchronize.php:1159
msgid "Host"
msgstr "Vært"
@@ -3195,859 +3195,6 @@ msgstr "Ingen"
msgid "Convert to Kana"
msgstr ""
-#. l10n: Text direction, use either ltr or rtl
-#: libraries/messages.inc.php:19
-msgid "ltr"
-msgstr "ltr"
-
-#: libraries/messages.inc.php:21
-msgid "Content of table __TABLE__"
-msgstr "Indhold af tabel __TABLE__"
-
-#: libraries/messages.inc.php:22
-msgid "(continued)"
-msgstr "(fortsættes)"
-
-#: libraries/messages.inc.php:23
-msgid "Structure of table __TABLE__"
-msgstr "Struktur for tabel __TABLE__"
-
-#: libraries/messages.inc.php:25 server_privileges.php:227
-msgid "Includes all privileges except GRANT."
-msgstr "Inkluderer alle privilegier pånær GRANT."
-
-#: libraries/messages.inc.php:26 server_privileges.php:153
-#: server_privileges.php:476
-msgid "Allows altering the structure of existing tables."
-msgstr "Tillader ændring af strukturen på eksisterende tabeller."
-
-#: libraries/messages.inc.php:27 server_privileges.php:169
-#: server_privileges.php:482
-msgid "Allows altering and dropping stored routines."
-msgstr "Tillader ændring og sletning af gemte rutiner."
-
-#: libraries/messages.inc.php:28 server_privileges.php:145
-#: server_privileges.php:475
-msgid "Allows creating new databases and tables."
-msgstr "Tillader oprettelse af nye databaser og tabeller."
-
-#: libraries/messages.inc.php:29 server_privileges.php:168
-#: server_privileges.php:481
-msgid "Allows creating stored routines."
-msgstr "Tillader oprettelse af gemte rutiner."
-
-#: libraries/messages.inc.php:30 server_privileges.php:475
-msgid "Allows creating new tables."
-msgstr "Tillader oprettelse af nye tabeller."
-
-#: libraries/messages.inc.php:31 server_privileges.php:156
-#: server_privileges.php:479
-msgid "Allows creating temporary tables."
-msgstr "Tillader oprettelse af midlertidige tabeller."
-
-#: libraries/messages.inc.php:32 server_privileges.php:170
-#: server_privileges.php:515
-msgid "Allows creating, dropping and renaming user accounts."
-msgstr "Tillader oprettelse, sletning og omdøbning af brugerkonti."
-
-#: libraries/messages.inc.php:33 server_privileges.php:160
-#: server_privileges.php:164 server_privileges.php:487
-#: server_privileges.php:491
-msgid "Allows creating new views."
-msgstr "Tillader oprettelse af nye Allows creating new views."
-
-#: libraries/messages.inc.php:34 server_privileges.php:144
-#: server_privileges.php:467
-msgid "Allows deleting data."
-msgstr "Tillader sletning af data."
-
-#: libraries/messages.inc.php:35 server_privileges.php:146
-#: server_privileges.php:478
-msgid "Allows dropping databases and tables."
-msgstr "Tillader at droppe databaser og tabeller."
-
-#: libraries/messages.inc.php:36 server_privileges.php:478
-msgid "Allows dropping tables."
-msgstr "Tillader at droppe tabeller."
-
-#: libraries/messages.inc.php:37 server_privileges.php:161
-#: server_privileges.php:495
-msgid "Allows to set up events for the event scheduler"
-msgstr ""
-
-#: libraries/messages.inc.php:38 server_privileges.php:171
-#: server_privileges.php:483
-msgid "Allows executing stored routines."
-msgstr "Tillader udførelse af gemte rutiner."
-
-#: libraries/messages.inc.php:39 server_privileges.php:150
-#: server_privileges.php:470
-msgid "Allows importing data from and exporting data into files."
-msgstr "Tillader import af data fra og eksport af data til filer."
-
-#: libraries/messages.inc.php:40 server_privileges.php:501
-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/messages.inc.php:41 server_privileges.php:152
-#: server_privileges.php:477
-msgid "Allows creating and dropping indexes."
-msgstr "Tillader at skabe og droppe indeks."
-
-#: libraries/messages.inc.php:42 server_privileges.php:142
-#: server_privileges.php:403 server_privileges.php:465
-msgid "Allows inserting and replacing data."
-msgstr "Tillader indsættelse og erstatning af data."
-
-#: libraries/messages.inc.php:43 server_privileges.php:157
-#: server_privileges.php:510
-msgid "Allows locking tables for the current thread."
-msgstr "Tillader låsning af tabeller for nuværende tråd."
-
-#: libraries/messages.inc.php:44 server_privileges.php:607
-#: server_privileges.php:609
-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/messages.inc.php:45 server_privileges.php:595
-#: server_privileges.php:597
-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/messages.inc.php:46 server_privileges.php:601
-#: server_privileges.php:603
-msgid ""
-"Limits the number of commands that change any table or database the user may "
-"execute per hour."
-msgstr ""
-"Begrænser antallet af kommandoer som ændrer enhver tabel eller database "
-"brugeren må udføre pr. time."
-
-#: libraries/messages.inc.php:47 server_privileges.php:613
-#: server_privileges.php:615
-msgid "Limits the number of simultaneous connections the user may have."
-msgstr "Begrænser antallet af samtidige forbindelser brugere må have."
-
-#: libraries/messages.inc.php:48 server_privileges.php:149
-#: server_privileges.php:505
-msgid "Allows viewing processes of all users"
-msgstr ""
-
-#: libraries/messages.inc.php:49 server_privileges.php:151
-#: server_privileges.php:409 server_privileges.php:511
-msgid "Has no effect in this MySQL version."
-msgstr "Har ingen effekt i denne MySQL version."
-
-#: libraries/messages.inc.php:50 server_privileges.php:147
-#: server_privileges.php:506
-msgid "Allows reloading server settings and flushing the server's caches."
-msgstr "Tillader genindlæsning af serverindstillinger og tømning af caches."
-
-#: libraries/messages.inc.php:51 server_privileges.php:159
-#: server_privileges.php:513
-msgid "Allows the user to ask where the slaves / masters are."
-msgstr "Giver brugeren rettigheder til at spørge hvor Slaves / Masters er."
-
-#: libraries/messages.inc.php:52 server_privileges.php:158
-#: server_privileges.php:514
-msgid "Needed for the replication slaves."
-msgstr "Nødvendigt for replikationsslaverne."
-
-#: libraries/messages.inc.php:53 server_privileges.php:141
-#: server_privileges.php:400 server_privileges.php:464
-msgid "Allows reading data."
-msgstr "Tillader læsning af data."
-
-#: libraries/messages.inc.php:54 server_privileges.php:154
-#: server_privileges.php:508
-msgid "Gives access to the complete list of databases."
-msgstr "Giver adgang til den fuldstændige liste over databaser."
-
-#: libraries/messages.inc.php:55 server_privileges.php:165
-#: server_privileges.php:167 server_privileges.php:480
-msgid "Allows performing SHOW CREATE VIEW queries."
-msgstr "Tillader udførelse af SHOW CREATE VIEW forespørgsler."
-
-#: libraries/messages.inc.php:56 server_privileges.php:148
-#: server_privileges.php:507
-msgid "Allows shutting down the server."
-msgstr "Tillader nedlukning af serveren."
-
-#: libraries/messages.inc.php:57 server_privileges.php:155
-#: server_privileges.php:504
-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 ""
-"Tillader forbindelse, selv hvis maksimalt antal forbindelser er nået; "
-"Nødvendigt for de fleste administrative operationer som indstilling af "
-"globale variabler eller for at dræbe andre brugeres tråde."
-
-#: libraries/messages.inc.php:58 server_privileges.php:162
-#: server_privileges.php:496
-msgid "Allows creating and dropping triggers"
-msgstr ""
-
-#: libraries/messages.inc.php:59 server_privileges.php:143
-#: server_privileges.php:406 server_privileges.php:466
-msgid "Allows changing data."
-msgstr "Tillader ændring af data."
-
-#: libraries/messages.inc.php:60 server_privileges.php:221
-msgid "No privileges."
-msgstr "Ingen privilegier."
-
-#: libraries/messages.inc.php:62
-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 ""
-"Antal transaktioner der brugte det midlertidige binære log mellemlager, men "
-"overskred værdien for binlog_cache_size og brugte en midlertidig fil til at "
-"gemme statements fra transaktionen."
-
-#: libraries/messages.inc.php:63
-msgid "The number of transactions that used the temporary binary log cache."
-msgstr ""
-"Antal transaktioner der brugte det midlertidige binære log mellemlager."
-
-#: libraries/messages.inc.php:64
-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 "
-"to increase the tmp_table_size value to cause temporary tables to be memory-"
-"based instead of disk-based."
-msgstr ""
-"Antal midlertidige tabeller på disken oprettet automatisk af serveren under "
-"udførelse af statements. Hvis Created_tmp_disk_tables er stor, skal du "
-"overveje at forøge tmp_table_size værdien for at gøre midlertidige tabeller "
-"hukommelses-baserede i stedet for disk-baserede."
-
-#: libraries/messages.inc.php:65
-msgid "How many temporary files mysqld has created."
-msgstr "Hvor mange midlertidige filer mysqld har oprettet."
-
-#: libraries/messages.inc.php:66
-msgid ""
-"The number of in-memory temporary tables created automatically by the server "
-"while executing statements."
-msgstr ""
-"Antal i-hukommelsen midlertidige tabeller oprettet automatisk af serveren "
-"under udførelse af statements."
-
-#: libraries/messages.inc.php:67
-msgid ""
-"The number of rows written with INSERT DELAYED for which some error occurred "
-"(probably duplicate key)."
-msgstr ""
-"Antal rækker skrevet med INSERT DELAYED (forsinket indsættelse) under hvilke "
-"der opstod fejl (sandsynligvis dublerede nøgler)."
-
-#: libraries/messages.inc.php:68
-msgid ""
-"The number of INSERT DELAYED handler threads in use. Every different table "
-"on which one uses INSERT DELAYED gets its own thread."
-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/messages.inc.php:69
-msgid "The number of INSERT DELAYED rows written."
-msgstr "Antallet af INSERT DELAYED rækker skrevet."
-
-#: libraries/messages.inc.php:70
-msgid "The number of executed FLUSH statements."
-msgstr "Antallet af udførte FLUSH statements."
-
-#: libraries/messages.inc.php:71
-msgid "The number of internal COMMIT statements."
-msgstr "Antallet af interne COMMIT statements."
-
-#: libraries/messages.inc.php:72
-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/messages.inc.php:73
-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 ""
-"MySQL serveren kan spørge en NDB Cluster storage engine om den kender til en "
-"tabel med et givent navn. Dette kaldes opdagelse. Handler_discover indikerer "
-"antallet af gange tabeller er blevet opdaget."
-
-#: libraries/messages.inc.php:74
-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 ""
-"Antallet af gange første indlæg blev læst fra et indeks. Hvis denne er høj, "
-"antyder det at serveren laver mange fulde indeks scans; for eksempel, SELECT "
-"col1 FROM foo, antagende at col1 er indekseret."
-
-#: libraries/messages.inc.php:75
-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 ""
-"Antallet af anmodninger om at læse en række baseret på en nøgle. Hvis denne "
-"er høj, er det en god indikation af at dine forespørgsler og tabeller er "
-"ordentligt indekserede."
-
-#: libraries/messages.inc.php:76
-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 ""
-"Antallet af anmodninger om at læse næste række i nøgleorden. Denne forøges "
-"hvis du forespørger på en indekskolonne med en range-begrænsning eller hvis "
-"du udfører et indeks scan."
-
-#: libraries/messages.inc.php:77
-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 ""
-"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/messages.inc.php:78
-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 "
-"probably have a lot of queries that require MySQL to scan whole tables or "
-"you have joins that don't use keys properly."
-msgstr ""
-"Antallet af anmodninger om at læse en række baseret på en fast position. "
-"Denne er høj hvis du laver mange forespørgsler der kræver sortering af "
-"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/messages.inc.php:79
-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 "
-"tables are not properly indexed or that your queries are not written to take "
-"advantage of the indexes you have."
-msgstr ""
-"Antallet af anmodninger om læsning af næste række i datafilen. Denne er høj "
-"hvis du laver mange tabelscanninger. Generelt antyder dette at dine tabeller "
-"enten ikke er ordentligt indekserede eller at dine forespørgsler ikke er "
-"skrevet til at drage fordel af de indeks du har."
-
-#: libraries/messages.inc.php:80
-msgid "The number of internal ROLLBACK statements."
-msgstr "Antallet af interne ROLLBACK statements."
-
-#: libraries/messages.inc.php:81
-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/messages.inc.php:82
-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/messages.inc.php:83
-msgid "The number of pages containing data (dirty or clean)."
-msgstr "Antallet af sider der indeholder data (beskidte eller rene)."
-
-#: libraries/messages.inc.php:84
-msgid "The number of pages currently dirty."
-msgstr "Antallet af såkaldt beskidte sider."
-
-#: libraries/messages.inc.php:85
-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/messages.inc.php:86
-msgid "The number of free pages."
-msgstr "Antallet af frie sider."
-
-#: libraries/messages.inc.php:87
-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 ""
-"Antallet af eksklusivt låste (latched) sider i InnoDB buffer pool. Dette er "
-"sider der i øjeblikket læses eller skrives eller som ikke kan flushes eller "
-"fjernes af andre årsager."
-
-#: libraries/messages.inc.php:88
-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 "
-"be calculated as Innodb_buffer_pool_pages_total - "
-"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data."
-msgstr ""
-"Antallet af travle sider fordi de er blevet allokeret til administrativ "
-"overhead så som rækkelåse eller det adaptive hash indeks. Denne værdi kan "
-"også beregnes som Innodb_buffer_pool_pages_total - "
-"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data."
-
-#: libraries/messages.inc.php:89
-msgid "Total size of buffer pool, in pages."
-msgstr "Total størrelse på buffer pool, i sider."
-
-#: libraries/messages.inc.php:90
-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 ""
-"Antallet af \"tilfældige\" read-aheads InnoDB initierede. Dette sker når en "
-"forespørgsel skal scanne en større del af en tabel men i tilfældig "
-"rækkefølge."
-
-#: libraries/messages.inc.php:91
-msgid ""
-"The number of sequential read-aheads InnoDB initiated. This happens when "
-"InnoDB does a sequential full table scan."
-msgstr ""
-"Antallet af sekventielle read-aheads InnoDB initierede. Dette sker når "
-"InnoDB laver en sekventiel fuld tabelscanning."
-
-#: libraries/messages.inc.php:92
-msgid "The number of logical read requests InnoDB has done."
-msgstr "Antallet af logiske read anmodninger InnoDB har lavet."
-
-#: libraries/messages.inc.php:93
-msgid ""
-"The number of logical reads that InnoDB could not satisfy from buffer pool "
-"and had to do a single-page read."
-msgstr ""
-"Antallet af logiske reads som InnoDB ikke kunne tilfredsstille fra buffer "
-"pool og måtte lave en enkelt-side read."
-
-#: libraries/messages.inc.php:94
-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 "
-"available, it's necessary to wait for pages to be flushed first. This "
-"counter counts instances of these waits. If the buffer pool size was set "
-"properly, this value should be small."
-msgstr ""
-"Normalt sker skrivninger til InnoDB buffer poolen i baggrunden. Men, hvis "
-"der er brug for at læse eller oprette en side og der ikke er nogen rene "
-"sider tilgængelige, er det nødvendigt at vente på at der bliver flushet "
-"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/messages.inc.php:95
-msgid "The number writes done to the InnoDB buffer pool."
-msgstr "Antallet af skrivninger til InnoDB buffer poolen."
-
-#: libraries/messages.inc.php:96
-msgid "The number of fsync() operations so far."
-msgstr "Antallet af fsync() operationer indtil nu."
-
-#: libraries/messages.inc.php:97
-msgid "The current number of pending fsync() operations."
-msgstr "Nuværende antal ventende fsync() operationer."
-
-#: libraries/messages.inc.php:98
-msgid "The current number of pending reads."
-msgstr "Nuværende antal af ventende reads."
-
-#: libraries/messages.inc.php:99
-msgid "The current number of pending writes."
-msgstr "Nuværende antal af ventende writes."
-
-#: libraries/messages.inc.php:100
-msgid "The amount of data read so far, in bytes."
-msgstr "Mængden af data læst indtil nu, i bytes."
-
-#: libraries/messages.inc.php:101
-msgid "The total number of data reads."
-msgstr "Det totale antal af data reads."
-
-#: libraries/messages.inc.php:102
-msgid "The total number of data writes."
-msgstr "Det totale antal af data writes."
-
-#: libraries/messages.inc.php:103
-msgid "The amount of data written so far, in bytes."
-msgstr "Mængden af data skrevet indtil nu, i bytes."
-
-#: libraries/messages.inc.php:104
-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/messages.inc.php:105
-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/messages.inc.php:106
-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 ""
-"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/messages.inc.php:107
-msgid "The number of log write requests."
-msgstr "Antallet af log write anmodninger."
-
-#: libraries/messages.inc.php:108
-msgid "The number of physical writes to the log file."
-msgstr "Antallet af fysiske skrivninger til log filen."
-
-#: libraries/messages.inc.php:109
-msgid "The number of fsync() writes done to the log file."
-msgstr "Antallet af fsyncs skrivninger lavet til log filen."
-
-#: libraries/messages.inc.php:110
-msgid "The number of pending log file fsyncs."
-msgstr "Antallet af ventende log fil fsyncs."
-
-#: libraries/messages.inc.php:111
-msgid "Pending log file writes."
-msgstr "Ventende log fil skrivninger."
-
-#: libraries/messages.inc.php:112
-msgid "The number of bytes written to the log file."
-msgstr "Antallet af bytes skrevet til log filen."
-
-#: libraries/messages.inc.php:113
-msgid "The number of pages created."
-msgstr "Antallet af sider oprettet."
-
-#: libraries/messages.inc.php:114
-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 ""
-"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/messages.inc.php:115
-msgid "The number of pages read."
-msgstr "Antallet af sider læst."
-
-#: libraries/messages.inc.php:116
-msgid "The number of pages written."
-msgstr "Antallet af sider skrevet."
-
-#: libraries/messages.inc.php:117
-msgid "The number of row locks currently being waited for."
-msgstr "Antallet af rækkelåse der ventes på i øjeblikket."
-
-#: libraries/messages.inc.php:118
-msgid "The average time to acquire a row lock, in milliseconds."
-msgstr "Gennemsnitstiden for at få en rækkelås, i millisekunder."
-
-#: libraries/messages.inc.php:119
-msgid "The total time spent in acquiring row locks, in milliseconds."
-msgstr "Total tid brugt på at hente rækkelåse, i millisekunder."
-
-#: libraries/messages.inc.php:120
-msgid "The maximum time to acquire a row lock, in milliseconds."
-msgstr "Maksimale tid for at hente en rækkelås, i millisekunder."
-
-#: libraries/messages.inc.php:121
-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/messages.inc.php:122
-msgid "The number of rows deleted from InnoDB tables."
-msgstr "Antallet af rækker slettet fra InnoDB tabeller."
-
-#: libraries/messages.inc.php:123
-msgid "The number of rows inserted in InnoDB tables."
-msgstr "Antallet af rækker indsat i InnoDB tabeller."
-
-#: libraries/messages.inc.php:124
-msgid "The number of rows read from InnoDB tables."
-msgstr "Antallet af rækker læst fra InnoDB tables."
-
-#: libraries/messages.inc.php:125
-msgid "The number of rows updated in InnoDB tables."
-msgstr "Antallet af rækker opdateret i InnoDB tabeller."
-
-#: libraries/messages.inc.php:126
-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 ""
-"Antallet af nøgleblokeringer i nøglemellemlageret der har ændret sig men "
-"endnu ikke er blevet flushet til disk. Det hed tidligere "
-"Not_flushed_key_blocks."
-
-#: libraries/messages.inc.php:127
-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 ""
-"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/messages.inc.php:128
-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 ""
-"Antallet af brugte blokke i nøglemellemlageret. Denne værdi er et højvande-"
-"mærke der indikerer det maksimale antal blokke der på noget tidspunkt har "
-"været i brug på en gang."
-
-#: libraries/messages.inc.php:129
-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/messages.inc.php:130
-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 ""
-"Antallet af fysiske læsninger af en nøgleblok fra disk. Hvis Key_reads er "
-"stor, er din key_buffer_size værdi sandsynligvis for lille. Mellemlager miss "
-"raten kan beregnes som Key_reads/Key_read_requests."
-
-#: libraries/messages.inc.php:131
-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/messages.inc.php:132
-msgid "The number of physical writes of a key block to disk."
-msgstr "Antallet af fysiske skrivninger af en nøgleblok til disk."
-
-#: libraries/messages.inc.php:133
-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 ""
-"Totale omkostninger for den seneste kompilerede forespørgsel som beregnet af "
-"forespørgsels-optimeringsrutinen. Brugbart til at sammenligne omkostninger "
-"på forskellige forespørgselsplaner for den samme forespørgsel. En "
-"standardværdi på 0 betyder at der ikke er kompileret nogen forespørgsler "
-"endnu."
-
-#: libraries/messages.inc.php:134
-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/messages.inc.php:135
-msgid ""
-"The number of tables that have been opened. If opened tables is big, your "
-"table cache value is probably too small."
-msgstr ""
-"Antallet af tabeller der er blevet åbnet. Hvis åbnede tabeller er stor, er "
-"dit tabelmellemlager sandsynligvis for lille."
-
-#: libraries/messages.inc.php:136
-msgid "The number of files that are open."
-msgstr "Antallet af filer der er åbne."
-
-#: libraries/messages.inc.php:137
-msgid "The number of streams that are open (used mainly for logging)."
-msgstr "Antallet af streams der er åbne (bruges hovedsageligt til logning)."
-
-#: libraries/messages.inc.php:138
-msgid "The number of tables that are open."
-msgstr "Antallet af tabeller der er åbne."
-
-#: libraries/messages.inc.php:139
-msgid "The number of free memory blocks in query cache."
-msgstr "Antallet af frie hukommelsesblokke i forespørgsels-mellemlageret."
-
-#: libraries/messages.inc.php:140
-msgid "The amount of free memory for query cache."
-msgstr "Mængden af fri hukommelse til forespørgselsmellemlageret."
-
-#: libraries/messages.inc.php:141
-msgid "The number of cache hits."
-msgstr "Antallet af mellemlager hits."
-
-#: libraries/messages.inc.php:142
-msgid "The number of queries added to the cache."
-msgstr "Antallet af forespørgsler tilføjet til mellemlageret."
-
-#: libraries/messages.inc.php:143
-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 "
-"cache size. The query cache uses a least recently used (LRU) strategy to "
-"decide which queries to remove from the cache."
-msgstr ""
-"Antallet af forespørgsler der er blevet fjernet fra mellemlageret for at "
-"rydde hukommelse til mellemlagring af nye forespørgsler. Denne information "
-"kan hjælpe dig med at tune forespørgselsmellemlagerets størrelse. "
-"Forespørgselsmellemlageret bruger en mindst nyligt brugt (LRU) strategi til "
-"at afgøre hvilke forespørgsler der skal fjernes fra mellemlageret."
-
-#: libraries/messages.inc.php:144
-msgid ""
-"The number of non-cached queries (not cachable, or not cached due to the "
-"query_cache_type setting)."
-msgstr ""
-"Antallet af ikke-mellemlagrede forespørgsler (ikke mulige at mellemlagre "
-"eller ikke mellemlagret grundet query_cache_type indstillingen)."
-
-#: libraries/messages.inc.php:145
-msgid "The number of queries registered in the cache."
-msgstr "Antallet af forespørgsler registreret i mellemlageret."
-
-#: libraries/messages.inc.php:146
-msgid "The total number of blocks in the query cache."
-msgstr "Totalt antal blokke i forespørgsels-mellemlageret."
-
-#: libraries/messages.inc.php:147
-msgctxt "$strShowStatusReset"
-msgid "Reset"
-msgstr "Nulstil"
-
-#: libraries/messages.inc.php:148
-msgid "The status of failsafe replication (not yet implemented)."
-msgstr "Status på failsafe replikering (endnu ikke implementeret)."
-
-#: libraries/messages.inc.php:149
-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 ""
-"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/messages.inc.php:150
-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/messages.inc.php:151
-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 ""
-"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/messages.inc.php:152
-msgid ""
-"The number of joins that used ranges on the first table. (It's normally not "
-"critical even if this is big.)"
-msgstr ""
-"Antallet af joins der brugte ranges på den første tabel. (Normalt ikke "
-"kritisk selvom tallet er stort.)"
-
-#: libraries/messages.inc.php:153
-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/messages.inc.php:154
-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/messages.inc.php:155
-msgid ""
-"Total (since startup) number of times the replication slave SQL thread has "
-"retried transactions."
-msgstr ""
-"Totalt (siden opstart) antal gange replikeringsslave SQL tråden har gen-"
-"forsøgt transaktioner."
-
-#: libraries/messages.inc.php:156
-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/messages.inc.php:157
-msgid ""
-"The number of threads that have taken more than slow_launch_time seconds to "
-"create."
-msgstr ""
-"Antallet af tråde der har taget mere end slow_launch_time sekunder at "
-"oprette."
-
-#: libraries/messages.inc.php:158
-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/messages.inc.php:159
-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 ""
-"Antallet af sammenlægningskørsler sorteringsalgoritmen skulle lave. Hvis "
-"denne værdi er høj, bør du overveje at forøge værdien af sort_buffer_size "
-"systemvariablen."
-
-#: libraries/messages.inc.php:160
-msgid "The number of sorts that were done with ranges."
-msgstr "Antallet af sorteringer lavet med ranges."
-
-#: libraries/messages.inc.php:161
-msgid "The number of sorted rows."
-msgstr "Antallet af sorterede rækker."
-
-#: libraries/messages.inc.php:162
-msgid "The number of sorts that were done by scanning the table."
-msgstr "Antallet af sorteringer udført ved scanning af tabellen."
-
-#: libraries/messages.inc.php:163
-msgid "The number of times that a table lock was acquired immediately."
-msgstr "Antallet af gange en tabellås blev givet øjeblikkeligt."
-
-#: libraries/messages.inc.php:164
-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 "
-"should first optimize your queries, and then either split your table or "
-"tables or use replication."
-msgstr ""
-"Antallet af gange en tabellås ikke kunne fås øjeblikkeligt og en wait var "
-"nødvendig. Hvis denne er høj, og du har ydelsesproblemer, bør du først "
-"optimere dine forespørgsler, og derefter enten opdele din tabel eller "
-"tabeller, eller bruge replikering."
-
-#: libraries/messages.inc.php:165
-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 ""
-"Antallet af tråde i tråd-mellemlageret. Mellemlager-hitraten kan udregnes "
-"som Threads_created/Forbindelser. Hvis denne værdi er rød bør du forøge din "
-"thread_cache_size."
-
-#: libraries/messages.inc.php:166
-msgid "The number of currently open connections."
-msgstr "Antallet af i øjeblikket åbne forbindelser."
-
-#: libraries/messages.inc.php:167
-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 "
-"doesn't give a notable performance improvement if you have a good thread "
-"implementation.)"
-msgstr ""
-"Antallet af tråde oprettet til at håndtere forbindelser. Hvis "
-"Threads_created er stor, kan du vælge at forøge thread_cache_size værdien. "
-"(Normalt giver dette ingen nævneværdig ydelsesforbedring hvis du har god "
-"tråd-implementering.)"
-
-#: libraries/messages.inc.php:168
-msgid "The number of threads that are not sleeping."
-msgstr "Antallet af tråde der ikke sover."
-
#: libraries/mult_submits.inc.php:76 libraries/tbl_properties.inc.php:513
#: tbl_structure.php:29 tbl_structure.php:153 tbl_structure.php:157
#: tbl_structure.php:473
@@ -4366,8 +3513,8 @@ msgstr ""
#: libraries/replication_gui.lib.php:55 libraries/replication_gui.lib.php:56
#: libraries/replication_gui.lib.php:249 libraries/replication_gui.lib.php:252
-#: libraries/replication_gui.lib.php:259 server_privileges.php:672
-#: server_privileges.php:675 server_privileges.php:682
+#: libraries/replication_gui.lib.php:259 server_privileges.php:711
+#: server_privileges.php:714 server_privileges.php:721
#: server_synchronize.php:1171
msgid "User name"
msgstr "Brugernavn"
@@ -4385,11 +3532,11 @@ msgid "Slave status"
msgstr ""
#: libraries/replication_gui.lib.php:114 libraries/sql_query_form.lib.php:445
-#: server_status.php:626 server_variables.php:52
+#: server_status.php:737 server_variables.php:52
msgid "Variable"
msgstr "Variabel"
-#: libraries/replication_gui.lib.php:115 server_status.php:627
+#: libraries/replication_gui.lib.php:115 server_status.php:738
#: tbl_change.php:324 tbl_printview.php:370 tbl_select.php:139
#: tbl_structure.php:729
msgid "Value"
@@ -4409,41 +3556,58 @@ msgstr ""
msgid "Add slave replication user"
msgstr ""
-#: libraries/replication_gui.lib.php:254 server_privileges.php:677
+#: libraries/replication_gui.lib.php:254 server_privileges.php:716
msgid "Any user"
msgstr "Enhver bruger"
#: libraries/replication_gui.lib.php:255 libraries/replication_gui.lib.php:323
-#: libraries/replication_gui.lib.php:346 server_privileges.php:678
-#: server_privileges.php:745 server_privileges.php:769
-#: server_privileges.php:1889 server_privileges.php:1919
+#: libraries/replication_gui.lib.php:346 server_privileges.php:717
+#: server_privileges.php:784 server_privileges.php:808
+#: server_privileges.php:1928 server_privileges.php:1958
msgid "Use text field"
msgstr "Brug tekstfelt"
-#: libraries/replication_gui.lib.php:302 server_privileges.php:725
+#: libraries/replication_gui.lib.php:302 server_privileges.php:764
msgid "Any host"
msgstr "Enhver vært"
-#: libraries/replication_gui.lib.php:306 server_privileges.php:729
+#: libraries/replication_gui.lib.php:306 server_privileges.php:768
msgid "Local"
msgstr "Lokal"
-#: libraries/replication_gui.lib.php:312 server_privileges.php:734
+#: libraries/replication_gui.lib.php:312 server_privileges.php:773
msgid "This Host"
msgstr "Denne Host"
-#: libraries/replication_gui.lib.php:318 server_privileges.php:740
+#: libraries/replication_gui.lib.php:318 server_privileges.php:779
msgid "Use Host Table"
msgstr "Brug Host Tabel"
-#: libraries/replication_gui.lib.php:331 server_privileges.php:753
+#: libraries/replication_gui.lib.php:331 server_privileges.php:792
msgid ""
"When Host table is used, this field is ignored and values stored in Host "
"table are used instead."
msgstr ""
-#: libraries/select_lang.lib.php:480 libraries/select_lang.lib.php:486
-#: libraries/select_lang.lib.php:492
+#. l10n: Text direction, use either ltr or rtl
+#: libraries/select_lang.lib.php:491
+msgid "ltr"
+msgstr "ltr"
+
+#: libraries/select_lang.lib.php:493
+msgid "Content of table __TABLE__"
+msgstr "Indhold af tabel __TABLE__"
+
+#: libraries/select_lang.lib.php:494
+msgid "(continued)"
+msgstr "(fortsættes)"
+
+#: libraries/select_lang.lib.php:495
+msgid "Structure of table __TABLE__"
+msgstr "Struktur for tabel __TABLE__"
+
+#: libraries/select_lang.lib.php:500 libraries/select_lang.lib.php:506
+#: libraries/select_lang.lib.php:512
#, php-format
msgid "Unknown language: %1$s."
msgstr "Ukendt sprog: %1$s."
@@ -4454,7 +3618,7 @@ msgid "Servers"
msgstr "Servere"
#: libraries/server_links.inc.php:53 server_engines.php:112
-#: server_engines.php:116 server_status.php:304 test/theme.php:105
+#: server_engines.php:116 server_status.php:415 test/theme.php:105
msgid "Variables"
msgstr "Variabler"
@@ -4467,7 +3631,7 @@ msgid "Engines"
msgstr "Lagre"
#: libraries/server_links.inc.php:76 server_binlog.php:110
-#: server_status.php:253 test/theme.php:121
+#: server_status.php:364 test/theme.php:121
msgid "Binary log"
msgstr "Binær log"
@@ -4944,8 +4108,8 @@ msgstr "Nulstil"
msgid "Protocol version"
msgstr "Protokolversion"
-#: main.php:189 server_privileges.php:1350 server_privileges.php:1497
-#: server_privileges.php:1611 server_privileges.php:2029
+#: main.php:189 server_privileges.php:1389 server_privileges.php:1536
+#: server_privileges.php:1650 server_privileges.php:2068
#: server_processlist.php:54
msgid "User"
msgstr "Bruger"
@@ -5330,7 +4494,7 @@ msgstr "%s databaser er blevet droppet korrekt."
msgid "Databases statistics"
msgstr "Databasestatistik"
-#: server_databases.php:117 server_status.php:260
+#: server_databases.php:117 server_status.php:371
#: setup/lib/messages.inc.php:117
msgid "Tables"
msgstr "Tabeller"
@@ -5350,6 +4514,16 @@ msgstr ""
msgid "Jump to database"
msgstr "Ingen databaser"
+#: server_databases.php:267
+msgid "Not replicated"
+msgstr ""
+
+#: server_databases.php:273
+#, fuzzy
+#| msgid "Replication"
+msgid "Replicated"
+msgstr "Replikering"
+
#: server_databases.php:289
#, php-format
msgid "Check privileges for database "%s"."
@@ -5383,144 +4557,334 @@ msgstr "Datalagre"
msgid "View dump (schema) of databases"
msgstr "Vis dump (skema) for databaser"
-#: server_privileges.php:263 server_privileges.php:264
+#: server_privileges.php:24 server_privileges.php:266
+msgid "Includes all privileges except GRANT."
+msgstr "Inkluderer alle privilegier pånær GRANT."
+
+#: server_privileges.php:25 server_privileges.php:192
+#: server_privileges.php:515
+msgid "Allows altering the structure of existing tables."
+msgstr "Tillader ændring af strukturen på eksisterende tabeller."
+
+#: server_privileges.php:26 server_privileges.php:208
+#: server_privileges.php:521
+msgid "Allows altering and dropping stored routines."
+msgstr "Tillader ændring og sletning af gemte rutiner."
+
+#: server_privileges.php:27 server_privileges.php:184
+#: server_privileges.php:514
+msgid "Allows creating new databases and tables."
+msgstr "Tillader oprettelse af nye databaser og tabeller."
+
+#: server_privileges.php:28 server_privileges.php:207
+#: server_privileges.php:520
+msgid "Allows creating stored routines."
+msgstr "Tillader oprettelse af gemte rutiner."
+
+#: server_privileges.php:29 server_privileges.php:514
+msgid "Allows creating new tables."
+msgstr "Tillader oprettelse af nye tabeller."
+
+#: server_privileges.php:30 server_privileges.php:195
+#: server_privileges.php:518
+msgid "Allows creating temporary tables."
+msgstr "Tillader oprettelse af midlertidige tabeller."
+
+#: server_privileges.php:31 server_privileges.php:209
+#: server_privileges.php:554
+msgid "Allows creating, dropping and renaming user accounts."
+msgstr "Tillader oprettelse, sletning og omdøbning af brugerkonti."
+
+#: server_privileges.php:32 server_privileges.php:199
+#: server_privileges.php:203 server_privileges.php:526
+#: server_privileges.php:530
+msgid "Allows creating new views."
+msgstr "Tillader oprettelse af nye Allows creating new views."
+
+#: server_privileges.php:33 server_privileges.php:183
+#: server_privileges.php:506
+msgid "Allows deleting data."
+msgstr "Tillader sletning af data."
+
+#: server_privileges.php:34 server_privileges.php:185
+#: server_privileges.php:517
+msgid "Allows dropping databases and tables."
+msgstr "Tillader at droppe databaser og tabeller."
+
+#: server_privileges.php:35 server_privileges.php:517
+msgid "Allows dropping tables."
+msgstr "Tillader at droppe tabeller."
+
+#: server_privileges.php:36 server_privileges.php:200
+#: server_privileges.php:534
+msgid "Allows to set up events for the event scheduler"
+msgstr ""
+
+#: server_privileges.php:37 server_privileges.php:210
+#: server_privileges.php:522
+msgid "Allows executing stored routines."
+msgstr "Tillader udførelse af gemte rutiner."
+
+#: server_privileges.php:38 server_privileges.php:189
+#: server_privileges.php:509
+msgid "Allows importing data from and exporting data into files."
+msgstr "Tillader import af data fra og eksport af data til filer."
+
+#: server_privileges.php:39 server_privileges.php:540
+msgid ""
+"Allows adding users and privileges without reloading the privilege tables."
+msgstr ""
+"Tillader oprettelse af brugere og privilegier uden at genindlæse privilegie-"
+"tabellerne."
+
+#: server_privileges.php:40 server_privileges.php:191
+#: server_privileges.php:516
+msgid "Allows creating and dropping indexes."
+msgstr "Tillader at skabe og droppe indeks."
+
+#: server_privileges.php:41 server_privileges.php:181
+#: server_privileges.php:442 server_privileges.php:504
+msgid "Allows inserting and replacing data."
+msgstr "Tillader indsættelse og erstatning af data."
+
+#: server_privileges.php:42 server_privileges.php:196
+#: server_privileges.php:549
+msgid "Allows locking tables for the current thread."
+msgstr "Tillader låsning af tabeller for nuværende tråd."
+
+#: server_privileges.php:43 server_privileges.php:646
+#: server_privileges.php:648
+msgid "Limits the number of new connections the user may open per hour."
+msgstr "Begrænser antallet af nye forbindelser brugeren må åbne pr. time."
+
+#: server_privileges.php:44 server_privileges.php:634
+#: server_privileges.php:636
+msgid "Limits the number of queries the user may send to the server per hour."
+msgstr ""
+"Begrænser antallet af forespørgsler brugeren må sende til serveren pr. time."
+
+#: server_privileges.php:45 server_privileges.php:640
+#: server_privileges.php:642
+msgid ""
+"Limits the number of commands that change any table or database the user may "
+"execute per hour."
+msgstr ""
+"Begrænser antallet af kommandoer som ændrer enhver tabel eller database "
+"brugeren må udføre pr. time."
+
+#: server_privileges.php:46 server_privileges.php:652
+#: server_privileges.php:654
+msgid "Limits the number of simultaneous connections the user may have."
+msgstr "Begrænser antallet af samtidige forbindelser brugere må have."
+
+#: server_privileges.php:47 server_privileges.php:188
+#: server_privileges.php:544
+msgid "Allows viewing processes of all users"
+msgstr ""
+
+#: server_privileges.php:48 server_privileges.php:190
+#: server_privileges.php:448 server_privileges.php:550
+msgid "Has no effect in this MySQL version."
+msgstr "Har ingen effekt i denne MySQL version."
+
+#: server_privileges.php:49 server_privileges.php:186
+#: server_privileges.php:545
+msgid "Allows reloading server settings and flushing the server's caches."
+msgstr "Tillader genindlæsning af serverindstillinger og tømning af caches."
+
+#: server_privileges.php:50 server_privileges.php:198
+#: server_privileges.php:552
+msgid "Allows the user to ask where the slaves / masters are."
+msgstr "Giver brugeren rettigheder til at spørge hvor Slaves / Masters er."
+
+#: server_privileges.php:51 server_privileges.php:197
+#: server_privileges.php:553
+msgid "Needed for the replication slaves."
+msgstr "Nødvendigt for replikationsslaverne."
+
+#: server_privileges.php:52 server_privileges.php:180
+#: server_privileges.php:439 server_privileges.php:503
+msgid "Allows reading data."
+msgstr "Tillader læsning af data."
+
+#: server_privileges.php:53 server_privileges.php:193
+#: server_privileges.php:547
+msgid "Gives access to the complete list of databases."
+msgstr "Giver adgang til den fuldstændige liste over databaser."
+
+#: server_privileges.php:54 server_privileges.php:204
+#: server_privileges.php:206 server_privileges.php:519
+msgid "Allows performing SHOW CREATE VIEW queries."
+msgstr "Tillader udførelse af SHOW CREATE VIEW forespørgsler."
+
+#: server_privileges.php:55 server_privileges.php:187
+#: server_privileges.php:546
+msgid "Allows shutting down the server."
+msgstr "Tillader nedlukning af serveren."
+
+#: server_privileges.php:56 server_privileges.php:194
+#: server_privileges.php:543
+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 ""
+"Tillader forbindelse, selv hvis maksimalt antal forbindelser er nået; "
+"Nødvendigt for de fleste administrative operationer som indstilling af "
+"globale variabler eller for at dræbe andre brugeres tråde."
+
+#: server_privileges.php:57 server_privileges.php:201
+#: server_privileges.php:535
+msgid "Allows creating and dropping triggers"
+msgstr ""
+
+#: server_privileges.php:58 server_privileges.php:182
+#: server_privileges.php:445 server_privileges.php:505
+msgid "Allows changing data."
+msgstr "Tillader ændring af data."
+
+#: server_privileges.php:59 server_privileges.php:260
+msgid "No privileges."
+msgstr "Ingen privilegier."
+
+#: server_privileges.php:302 server_privileges.php:303
#, fuzzy
#| msgid "None"
msgctxt "None privileges"
msgid "None"
msgstr "Ingen"
-#: server_privileges.php:392 server_privileges.php:527
-#: server_privileges.php:1679 server_privileges.php:1685
+#: server_privileges.php:431 server_privileges.php:566
+#: server_privileges.php:1718 server_privileges.php:1724
msgid "Table-specific privileges"
msgstr "Tabel-specifikke privilegier"
-#: server_privileges.php:393 server_privileges.php:535
-#: server_privileges.php:1501
+#: server_privileges.php:432 server_privileges.php:574
+#: server_privileges.php:1540
msgid " Note: MySQL privilege names are expressed in English "
msgstr " NB: Navne på MySQL privilegier er på engelsk "
-#: server_privileges.php:524 server_privileges.php:1500
+#: server_privileges.php:563 server_privileges.php:1539
msgid "Global privileges"
msgstr "Globale privilegier"
-#: server_privileges.php:526 server_privileges.php:1679
+#: server_privileges.php:565 server_privileges.php:1718
msgid "Database-specific privileges"
msgstr "Database-specifikke privilegier"
-#: server_privileges.php:571
+#: server_privileges.php:610
msgid "Administration"
msgstr "Administration"
-#: server_privileges.php:591
+#: server_privileges.php:630
msgid "Resource limits"
msgstr "Ressourcebegrænsninger"
-#: server_privileges.php:592
+#: server_privileges.php:631
msgid "Note: Setting these options to 0 (zero) removes the limit."
msgstr ""
"Bemærk: Indstilling af disse værdier til 0 (nul) fjerner begrænsningen."
-#: server_privileges.php:669
+#: server_privileges.php:708
msgid "Login Information"
msgstr "Login-information"
-#: server_privileges.php:763
+#: server_privileges.php:802
msgid "Do not change the password"
msgstr "Kodeord må ikke ændres"
-#: server_privileges.php:804 server_privileges.php:2166
+#: server_privileges.php:843 server_privileges.php:2205
#, fuzzy
#| msgid "No user(s) found."
msgid "No user found."
msgstr "Ingen bruger(e) fundet."
-#: server_privileges.php:848
+#: server_privileges.php:887
#, php-format
msgid "The user %s already exists!"
msgstr "Brugeren %s findes i forvejen!"
-#: server_privileges.php:931
+#: server_privileges.php:970
msgid "You have added a new user."
msgstr "Du har tilføjet en ny bruger."
-#: server_privileges.php:1152
+#: server_privileges.php:1191
#, php-format
msgid "You have updated the privileges for %s."
msgstr "Du har opdateret privilegierne for %s."
-#: server_privileges.php:1176
+#: server_privileges.php:1215
#, php-format
msgid "You have revoked the privileges for %s"
msgstr "Du har tilbagekaldt privilegierne for %s"
-#: server_privileges.php:1212
+#: server_privileges.php:1251
#, php-format
msgid "The password for %s was changed successfully."
msgstr "Kodeordet for %s blev korrekt udskiftet."
-#: server_privileges.php:1232
+#: server_privileges.php:1271
#, php-format
msgid "Deleting %s"
msgstr "Sletter %s"
-#: server_privileges.php:1243
+#: server_privileges.php:1282
msgid "No users selected for deleting!"
msgstr "Ingen brugere valgt til sletning!"
-#: server_privileges.php:1246
+#: server_privileges.php:1285
msgid "Reloading the privileges"
msgstr "Genindlæs privilegierne"
-#: server_privileges.php:1261
+#: server_privileges.php:1300
msgid "The selected users have been deleted successfully."
msgstr "De valgte brugere er blevet korrekt slettet."
-#: server_privileges.php:1296
+#: server_privileges.php:1335
msgid "The privileges were reloaded successfully."
msgstr "Privilegierne blev korrekt genindlæst."
-#: server_privileges.php:1324 server_privileges.php:1610
+#: server_privileges.php:1363 server_privileges.php:1649
msgid "Edit Privileges"
msgstr "Ret privilegier"
-#: server_privileges.php:1333
+#: server_privileges.php:1372
msgid "Revoke"
msgstr "Tilbagekald"
-#: server_privileges.php:1365
+#: server_privileges.php:1404
msgid "User overview"
msgstr "Brugeroversigt"
-#: server_privileges.php:1502 server_privileges.php:1684
-#: server_privileges.php:2033
+#: server_privileges.php:1541 server_privileges.php:1723
+#: server_privileges.php:2072
msgid "Grant"
msgstr "Tildel"
-#: server_privileges.php:1521 server_privileges.php:2123
+#: server_privileges.php:1560 server_privileges.php:2162
msgid "Any"
msgstr "Enhver"
-#: server_privileges.php:1570 server_privileges.php:1594
-#: server_privileges.php:1988 server_privileges.php:2177
+#: server_privileges.php:1609 server_privileges.php:1633
+#: server_privileges.php:2027 server_privileges.php:2216
msgid "Add a new User"
msgstr "Tilføj en ny bruger"
-#: server_privileges.php:1575
+#: server_privileges.php:1614
msgid "Remove selected users"
msgstr "Fjern valgte brugere"
-#: server_privileges.php:1578
+#: server_privileges.php:1617
msgid "Revoke all active privileges from the users and delete them afterwards."
msgstr ""
"Tilbagekald alle aktive privilegier fra brugerne og slet dem efterfølgende."
-#: server_privileges.php:1579 server_privileges.php:1580
-#: server_privileges.php:1581
+#: server_privileges.php:1618 server_privileges.php:1619
+#: server_privileges.php:1620
msgid "Drop the databases that have the same names as the users."
msgstr "Drop databaser der har samme navne som brugernes."
-#: server_privileges.php:1597
+#: server_privileges.php:1636
#, php-format
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
@@ -5534,50 +4898,50 @@ msgstr ""
"ændringer i den. Hvis dette er tilfældet, bør du %sgenindlæse privilegierne%"
"s før du fortsætter."
-#: server_privileges.php:1645
+#: server_privileges.php:1684
msgid "The selected user was not found in the privilege table."
msgstr "Den valgte bruger blev ikke fundet i privilegietabellen."
-#: server_privileges.php:1685
+#: server_privileges.php:1724
msgid "Column-specific privileges"
msgstr "Kolonne-specifikke privilegier"
-#: server_privileges.php:1886
+#: server_privileges.php:1925
msgid "Add privileges on the following database"
msgstr "Tilføj privilegier på følgende database"
-#: server_privileges.php:1904
+#: server_privileges.php:1943
msgid "Wildcards % and _ should be escaped with a \\ to use them literally"
msgstr ""
-#: server_privileges.php:1907
+#: server_privileges.php:1946
msgid "Add privileges on the following table"
msgstr "Tilføj privileges på følgende tabel"
-#: server_privileges.php:1964
+#: server_privileges.php:2003
msgid "Change Login Information / Copy User"
msgstr "Ret Login-information / Kopiér bruger"
-#: server_privileges.php:1967
+#: server_privileges.php:2006
msgid "Create a new user with the same privileges and ..."
msgstr "Opret en bruger med samme privilegier og ..."
-#: server_privileges.php:1969
+#: server_privileges.php:2008
msgid "... keep the old one."
msgstr "... behold den gamle."
-#: server_privileges.php:1970
+#: server_privileges.php:2009
msgid " ... delete the old one from the user tables."
msgstr " ... slet den gamle fra brugertabellerne."
-#: server_privileges.php:1971
+#: server_privileges.php:2010
msgid ""
" ... revoke all active privileges from the old one and delete it afterwards."
msgstr ""
" ... tilbagekald alle aktive privilegier fra den gamle og slet den "
"efterfølgende."
-#: server_privileges.php:1972
+#: server_privileges.php:2011
msgid ""
" ... delete the old one from the user tables and reload the privileges "
"afterwards."
@@ -5585,44 +4949,44 @@ msgstr ""
" ... slet den gamle fra brugertabellerne og genindlæs privilegierne "
"efterfølgende."
-#: server_privileges.php:1994
+#: server_privileges.php:2033
msgid "Database for user"
msgstr "Database for bruger"
-#: server_privileges.php:1998
+#: server_privileges.php:2037
#, fuzzy
#| msgid "None"
msgctxt "Create none database for user"
msgid "None"
msgstr "Ingen"
-#: server_privileges.php:1999
+#: server_privileges.php:2038
msgid "Create database with same name and grant all privileges"
msgstr "Opret database med samme navn og tildel alle privilegier"
-#: server_privileges.php:2000
+#: server_privileges.php:2039
msgid "Grant all privileges on wildcard name (username\\_%)"
msgstr "Tildel alle privilegier til jokertegn-navn (brugernavn_%)"
-#: server_privileges.php:2003
+#: server_privileges.php:2042
#, php-format
msgid "Grant all privileges on database "%s""
msgstr ""
-#: server_privileges.php:2026
+#: server_privileges.php:2065
#, php-format
msgid "Users having access to "%s""
msgstr "Brugere med adgang til "%s""
-#: server_privileges.php:2134
+#: server_privileges.php:2173
msgid "global"
msgstr "global"
-#: server_privileges.php:2136
+#: server_privileges.php:2175
msgid "database-specific"
msgstr "database-specifik"
-#: server_privileges.php:2138
+#: server_privileges.php:2177
msgid "wildcard"
msgstr "jokertegn"
@@ -5669,7 +5033,7 @@ msgstr ""
msgid "This server is configured as master in a replication process."
msgstr ""
-#: server_replication.php:184 server_status.php:281
+#: server_replication.php:184 server_status.php:392
msgid "Show master status"
msgstr ""
@@ -5804,103 +5168,749 @@ msgid ""
"like to configure it?"
msgstr ""
+#: server_status.php:40
+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 ""
+"Antal transaktioner der brugte det midlertidige binære log mellemlager, men "
+"overskred værdien for binlog_cache_size og brugte en midlertidig fil til at "
+"gemme statements fra transaktionen."
+
+#: server_status.php:41
+msgid "The number of transactions that used the temporary binary log cache."
+msgstr ""
+"Antal transaktioner der brugte det midlertidige binære log mellemlager."
+
+#: server_status.php:42
+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 "
+"to increase the tmp_table_size value to cause temporary tables to be memory-"
+"based instead of disk-based."
+msgstr ""
+"Antal midlertidige tabeller på disken oprettet automatisk af serveren under "
+"udførelse af statements. Hvis Created_tmp_disk_tables er stor, skal du "
+"overveje at forøge tmp_table_size værdien for at gøre midlertidige tabeller "
+"hukommelses-baserede i stedet for disk-baserede."
+
+#: server_status.php:43
+msgid "How many temporary files mysqld has created."
+msgstr "Hvor mange midlertidige filer mysqld har oprettet."
+
+#: server_status.php:44
+msgid ""
+"The number of in-memory temporary tables created automatically by the server "
+"while executing statements."
+msgstr ""
+"Antal i-hukommelsen midlertidige tabeller oprettet automatisk af serveren "
+"under udførelse af statements."
+
+#: server_status.php:45
+msgid ""
+"The number of rows written with INSERT DELAYED for which some error occurred "
+"(probably duplicate key)."
+msgstr ""
+"Antal rækker skrevet med INSERT DELAYED (forsinket indsættelse) under hvilke "
+"der opstod fejl (sandsynligvis dublerede nøgler)."
+
#: server_status.php:46
+msgid ""
+"The number of INSERT DELAYED handler threads in use. Every different table "
+"on which one uses INSERT DELAYED gets its own thread."
+msgstr ""
+"Antallet af INSERT DELAYED handler-tråde i brug. Hver forskellig tabel "
+"hvorpå en bruger INSERT DELAYED får sin egen tråd."
+
+#: server_status.php:47
+msgid "The number of INSERT DELAYED rows written."
+msgstr "Antallet af INSERT DELAYED rækker skrevet."
+
+#: server_status.php:48
+msgid "The number of executed FLUSH statements."
+msgstr "Antallet af udførte FLUSH statements."
+
+#: server_status.php:49
+msgid "The number of internal COMMIT statements."
+msgstr "Antallet af interne COMMIT statements."
+
+#: server_status.php:50
+msgid "The number of times a row was deleted from a table."
+msgstr "Antallet af gange en række blev slettet fra en tabel."
+
+#: server_status.php:51
+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 ""
+"MySQL serveren kan spørge en NDB Cluster storage engine om den kender til en "
+"tabel med et givent navn. Dette kaldes opdagelse. Handler_discover indikerer "
+"antallet af gange tabeller er blevet opdaget."
+
+#: server_status.php:52
+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 ""
+"Antallet af gange første indlæg blev læst fra et indeks. Hvis denne er høj, "
+"antyder det at serveren laver mange fulde indeks scans; for eksempel, SELECT "
+"col1 FROM foo, antagende at col1 er indekseret."
+
+#: server_status.php:53
+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 ""
+"Antallet af anmodninger om at læse en række baseret på en nøgle. Hvis denne "
+"er høj, er det en god indikation af at dine forespørgsler og tabeller er "
+"ordentligt indekserede."
+
+#: server_status.php:54
+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 ""
+"Antallet af anmodninger om at læse næste række i nøgleorden. Denne forøges "
+"hvis du forespørger på en indekskolonne med en range-begrænsning eller hvis "
+"du udfører et indeks scan."
+
+#: server_status.php:55
+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 ""
+"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."
+
+#: server_status.php:56
+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 "
+"probably have a lot of queries that require MySQL to scan whole tables or "
+"you have joins that don't use keys properly."
+msgstr ""
+"Antallet af anmodninger om at læse en række baseret på en fast position. "
+"Denne er høj hvis du laver mange forespørgsler der kræver sortering af "
+"resultatet. Du har sandsynligvis mange forespørgsler der forlanger at MySQL "
+"scanner hele tabeller eller du har joins der ikke bruger nøgler ordentligt."
+
+#: server_status.php:57
+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 "
+"tables are not properly indexed or that your queries are not written to take "
+"advantage of the indexes you have."
+msgstr ""
+"Antallet af anmodninger om læsning af næste række i datafilen. Denne er høj "
+"hvis du laver mange tabelscanninger. Generelt antyder dette at dine tabeller "
+"enten ikke er ordentligt indekserede eller at dine forespørgsler ikke er "
+"skrevet til at drage fordel af de indeks du har."
+
+#: server_status.php:58
+msgid "The number of internal ROLLBACK statements."
+msgstr "Antallet af interne ROLLBACK statements."
+
+#: server_status.php:59
+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."
+
+#: server_status.php:60
+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."
+
+#: server_status.php:61
+msgid "The number of pages containing data (dirty or clean)."
+msgstr "Antallet af sider der indeholder data (beskidte eller rene)."
+
+#: server_status.php:62
+msgid "The number of pages currently dirty."
+msgstr "Antallet af såkaldt beskidte sider."
+
+#: server_status.php:63
+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."
+
+#: server_status.php:64
+msgid "The number of free pages."
+msgstr "Antallet af frie sider."
+
+#: server_status.php:65
+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 ""
+"Antallet af eksklusivt låste (latched) sider i InnoDB buffer pool. Dette er "
+"sider der i øjeblikket læses eller skrives eller som ikke kan flushes eller "
+"fjernes af andre årsager."
+
+#: server_status.php:66
+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 "
+"be calculated as Innodb_buffer_pool_pages_total - "
+"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data."
+msgstr ""
+"Antallet af travle sider fordi de er blevet allokeret til administrativ "
+"overhead så som rækkelåse eller det adaptive hash indeks. Denne værdi kan "
+"også beregnes som Innodb_buffer_pool_pages_total - "
+"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data."
+
+#: server_status.php:67
+msgid "Total size of buffer pool, in pages."
+msgstr "Total størrelse på buffer pool, i sider."
+
+#: server_status.php:68
+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 ""
+"Antallet af \"tilfældige\" read-aheads InnoDB initierede. Dette sker når en "
+"forespørgsel skal scanne en større del af en tabel men i tilfældig "
+"rækkefølge."
+
+#: server_status.php:69
+msgid ""
+"The number of sequential read-aheads InnoDB initiated. This happens when "
+"InnoDB does a sequential full table scan."
+msgstr ""
+"Antallet af sekventielle read-aheads InnoDB initierede. Dette sker når "
+"InnoDB laver en sekventiel fuld tabelscanning."
+
+#: server_status.php:70
+msgid "The number of logical read requests InnoDB has done."
+msgstr "Antallet af logiske read anmodninger InnoDB har lavet."
+
+#: server_status.php:71
+msgid ""
+"The number of logical reads that InnoDB could not satisfy from buffer pool "
+"and had to do a single-page read."
+msgstr ""
+"Antallet af logiske reads som InnoDB ikke kunne tilfredsstille fra buffer "
+"pool og måtte lave en enkelt-side read."
+
+#: server_status.php:72
+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 "
+"available, it's necessary to wait for pages to be flushed first. This "
+"counter counts instances of these waits. If the buffer pool size was set "
+"properly, this value should be small."
+msgstr ""
+"Normalt sker skrivninger til InnoDB buffer poolen i baggrunden. Men, hvis "
+"der er brug for at læse eller oprette en side og der ikke er nogen rene "
+"sider tilgængelige, er det nødvendigt at vente på at der bliver flushet "
+"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."
+
+#: server_status.php:73
+msgid "The number writes done to the InnoDB buffer pool."
+msgstr "Antallet af skrivninger til InnoDB buffer poolen."
+
+#: server_status.php:74
+msgid "The number of fsync() operations so far."
+msgstr "Antallet af fsync() operationer indtil nu."
+
+#: server_status.php:75
+msgid "The current number of pending fsync() operations."
+msgstr "Nuværende antal ventende fsync() operationer."
+
+#: server_status.php:76
+msgid "The current number of pending reads."
+msgstr "Nuværende antal af ventende reads."
+
+#: server_status.php:77
+msgid "The current number of pending writes."
+msgstr "Nuværende antal af ventende writes."
+
+#: server_status.php:78
+msgid "The amount of data read so far, in bytes."
+msgstr "Mængden af data læst indtil nu, i bytes."
+
+#: server_status.php:79
+msgid "The total number of data reads."
+msgstr "Det totale antal af data reads."
+
+#: server_status.php:80
+msgid "The total number of data writes."
+msgstr "Det totale antal af data writes."
+
+#: server_status.php:81
+msgid "The amount of data written so far, in bytes."
+msgstr "Mængden af data skrevet indtil nu, i bytes."
+
+#: server_status.php:82
+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."
+
+#: server_status.php:83
+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."
+
+#: server_status.php:84
+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 ""
+"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."
+
+#: server_status.php:85
+msgid "The number of log write requests."
+msgstr "Antallet af log write anmodninger."
+
+#: server_status.php:86
+msgid "The number of physical writes to the log file."
+msgstr "Antallet af fysiske skrivninger til log filen."
+
+#: server_status.php:87
+msgid "The number of fsync() writes done to the log file."
+msgstr "Antallet af fsyncs skrivninger lavet til log filen."
+
+#: server_status.php:88
+msgid "The number of pending log file fsyncs."
+msgstr "Antallet af ventende log fil fsyncs."
+
+#: server_status.php:89
+msgid "Pending log file writes."
+msgstr "Ventende log fil skrivninger."
+
+#: server_status.php:90
+msgid "The number of bytes written to the log file."
+msgstr "Antallet af bytes skrevet til log filen."
+
+#: server_status.php:91
+msgid "The number of pages created."
+msgstr "Antallet af sider oprettet."
+
+#: server_status.php:92
+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 ""
+"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."
+
+#: server_status.php:93
+msgid "The number of pages read."
+msgstr "Antallet af sider læst."
+
+#: server_status.php:94
+msgid "The number of pages written."
+msgstr "Antallet af sider skrevet."
+
+#: server_status.php:95
+msgid "The number of row locks currently being waited for."
+msgstr "Antallet af rækkelåse der ventes på i øjeblikket."
+
+#: server_status.php:96
+msgid "The average time to acquire a row lock, in milliseconds."
+msgstr "Gennemsnitstiden for at få en rækkelås, i millisekunder."
+
+#: server_status.php:97
+msgid "The total time spent in acquiring row locks, in milliseconds."
+msgstr "Total tid brugt på at hente rækkelåse, i millisekunder."
+
+#: server_status.php:98
+msgid "The maximum time to acquire a row lock, in milliseconds."
+msgstr "Maksimale tid for at hente en rækkelås, i millisekunder."
+
+#: server_status.php:99
+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."
+
+#: server_status.php:100
+msgid "The number of rows deleted from InnoDB tables."
+msgstr "Antallet af rækker slettet fra InnoDB tabeller."
+
+#: server_status.php:101
+msgid "The number of rows inserted in InnoDB tables."
+msgstr "Antallet af rækker indsat i InnoDB tabeller."
+
+#: server_status.php:102
+msgid "The number of rows read from InnoDB tables."
+msgstr "Antallet af rækker læst fra InnoDB tables."
+
+#: server_status.php:103
+msgid "The number of rows updated in InnoDB tables."
+msgstr "Antallet af rækker opdateret i InnoDB tabeller."
+
+#: server_status.php:104
+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 ""
+"Antallet af nøgleblokeringer i nøglemellemlageret der har ændret sig men "
+"endnu ikke er blevet flushet til disk. Det hed tidligere "
+"Not_flushed_key_blocks."
+
+#: server_status.php:105
+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 ""
+"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."
+
+#: server_status.php:106
+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 ""
+"Antallet af brugte blokke i nøglemellemlageret. Denne værdi er et højvande-"
+"mærke der indikerer det maksimale antal blokke der på noget tidspunkt har "
+"været i brug på en gang."
+
+#: server_status.php:107
+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."
+
+#: server_status.php:108
+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 ""
+"Antallet af fysiske læsninger af en nøgleblok fra disk. Hvis Key_reads er "
+"stor, er din key_buffer_size værdi sandsynligvis for lille. Mellemlager miss "
+"raten kan beregnes som Key_reads/Key_read_requests."
+
+#: server_status.php:109
+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."
+
+#: server_status.php:110
+msgid "The number of physical writes of a key block to disk."
+msgstr "Antallet af fysiske skrivninger af en nøgleblok til disk."
+
+#: server_status.php:111
+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 ""
+"Totale omkostninger for den seneste kompilerede forespørgsel som beregnet af "
+"forespørgsels-optimeringsrutinen. Brugbart til at sammenligne omkostninger "
+"på forskellige forespørgselsplaner for den samme forespørgsel. En "
+"standardværdi på 0 betyder at der ikke er kompileret nogen forespørgsler "
+"endnu."
+
+#: server_status.php:112
+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."
+
+#: server_status.php:113
+msgid ""
+"The number of tables that have been opened. If opened tables is big, your "
+"table cache value is probably too small."
+msgstr ""
+"Antallet af tabeller der er blevet åbnet. Hvis åbnede tabeller er stor, er "
+"dit tabelmellemlager sandsynligvis for lille."
+
+#: server_status.php:114
+msgid "The number of files that are open."
+msgstr "Antallet af filer der er åbne."
+
+#: server_status.php:115
+msgid "The number of streams that are open (used mainly for logging)."
+msgstr "Antallet af streams der er åbne (bruges hovedsageligt til logning)."
+
+#: server_status.php:116
+msgid "The number of tables that are open."
+msgstr "Antallet af tabeller der er åbne."
+
+#: server_status.php:117
+msgid "The number of free memory blocks in query cache."
+msgstr "Antallet af frie hukommelsesblokke i forespørgsels-mellemlageret."
+
+#: server_status.php:118
+msgid "The amount of free memory for query cache."
+msgstr "Mængden af fri hukommelse til forespørgselsmellemlageret."
+
+#: server_status.php:119
+msgid "The number of cache hits."
+msgstr "Antallet af mellemlager hits."
+
+#: server_status.php:120
+msgid "The number of queries added to the cache."
+msgstr "Antallet af forespørgsler tilføjet til mellemlageret."
+
+#: server_status.php:121
+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 "
+"cache size. The query cache uses a least recently used (LRU) strategy to "
+"decide which queries to remove from the cache."
+msgstr ""
+"Antallet af forespørgsler der er blevet fjernet fra mellemlageret for at "
+"rydde hukommelse til mellemlagring af nye forespørgsler. Denne information "
+"kan hjælpe dig med at tune forespørgselsmellemlagerets størrelse. "
+"Forespørgselsmellemlageret bruger en mindst nyligt brugt (LRU) strategi til "
+"at afgøre hvilke forespørgsler der skal fjernes fra mellemlageret."
+
+#: server_status.php:122
+msgid ""
+"The number of non-cached queries (not cachable, or not cached due to the "
+"query_cache_type setting)."
+msgstr ""
+"Antallet af ikke-mellemlagrede forespørgsler (ikke mulige at mellemlagre "
+"eller ikke mellemlagret grundet query_cache_type indstillingen)."
+
+#: server_status.php:123
+msgid "The number of queries registered in the cache."
+msgstr "Antallet af forespørgsler registreret i mellemlageret."
+
+#: server_status.php:124
+msgid "The total number of blocks in the query cache."
+msgstr "Totalt antal blokke i forespørgsels-mellemlageret."
+
+#: server_status.php:125
+msgctxt "$strShowStatusReset"
+msgid "Reset"
+msgstr "Nulstil"
+
+#: server_status.php:126
+msgid "The status of failsafe replication (not yet implemented)."
+msgstr "Status på failsafe replikering (endnu ikke implementeret)."
+
+#: server_status.php:127
+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 ""
+"Antallet af joins der ikke bruger indeks. Hvis denne værdi ikke er 0, bør du "
+"nøje tjekke indeksene på dine tabeller."
+
+#: server_status.php:128
+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."
+
+#: server_status.php:129
+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 ""
+"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.)"
+
+#: server_status.php:130
+msgid ""
+"The number of joins that used ranges on the first table. (It's normally not "
+"critical even if this is big.)"
+msgstr ""
+"Antallet af joins der brugte ranges på den første tabel. (Normalt ikke "
+"kritisk selvom tallet er stort.)"
+
+#: server_status.php:131
+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."
+
+#: server_status.php:132
+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."
+
+#: server_status.php:133
+msgid ""
+"Total (since startup) number of times the replication slave SQL thread has "
+"retried transactions."
+msgstr ""
+"Totalt (siden opstart) antal gange replikeringsslave SQL tråden har gen-"
+"forsøgt transaktioner."
+
+#: server_status.php:134
+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."
+
+#: server_status.php:135
+msgid ""
+"The number of threads that have taken more than slow_launch_time seconds to "
+"create."
+msgstr ""
+"Antallet af tråde der har taget mere end slow_launch_time sekunder at "
+"oprette."
+
+#: server_status.php:136
+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."
+
+#: server_status.php:137
+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 ""
+"Antallet af sammenlægningskørsler sorteringsalgoritmen skulle lave. Hvis "
+"denne værdi er høj, bør du overveje at forøge værdien af sort_buffer_size "
+"systemvariablen."
+
+#: server_status.php:138
+msgid "The number of sorts that were done with ranges."
+msgstr "Antallet af sorteringer lavet med ranges."
+
+#: server_status.php:139
+msgid "The number of sorted rows."
+msgstr "Antallet af sorterede rækker."
+
+#: server_status.php:140
+msgid "The number of sorts that were done by scanning the table."
+msgstr "Antallet af sorteringer udført ved scanning af tabellen."
+
+#: server_status.php:141
+msgid "The number of times that a table lock was acquired immediately."
+msgstr "Antallet af gange en tabellås blev givet øjeblikkeligt."
+
+#: server_status.php:142
+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 "
+"should first optimize your queries, and then either split your table or "
+"tables or use replication."
+msgstr ""
+"Antallet af gange en tabellås ikke kunne fås øjeblikkeligt og en wait var "
+"nødvendig. Hvis denne er høj, og du har ydelsesproblemer, bør du først "
+"optimere dine forespørgsler, og derefter enten opdele din tabel eller "
+"tabeller, eller bruge replikering."
+
+#: server_status.php:143
+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 ""
+"Antallet af tråde i tråd-mellemlageret. Mellemlager-hitraten kan udregnes "
+"som Threads_created/Forbindelser. Hvis denne værdi er rød bør du forøge din "
+"thread_cache_size."
+
+#: server_status.php:144
+msgid "The number of currently open connections."
+msgstr "Antallet af i øjeblikket åbne forbindelser."
+
+#: server_status.php:145
+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 "
+"doesn't give a notable performance improvement if you have a good thread "
+"implementation.)"
+msgstr ""
+"Antallet af tråde oprettet til at håndtere forbindelser. Hvis "
+"Threads_created er stor, kan du vælge at forøge thread_cache_size værdien. "
+"(Normalt giver dette ingen nævneværdig ydelsesforbedring hvis du har god "
+"tråd-implementering.)"
+
+#: server_status.php:146
+msgid "The number of threads that are not sleeping."
+msgstr "Antallet af tråde der ikke sover."
+
+#: server_status.php:157
msgid "Runtime Information"
msgstr "Runtime-information"
-#: server_status.php:250
+#: server_status.php:361
msgid "Handler"
msgstr "Handler"
-#: server_status.php:251
+#: server_status.php:362
msgid "Query cache"
msgstr "Forespørgsel-mellemlager"
-#: server_status.php:252
+#: server_status.php:363
msgid "Threads"
msgstr "Tråde"
-#: server_status.php:254
+#: server_status.php:365
msgid "Temporary data"
msgstr "Midlertidige data"
-#: server_status.php:255
+#: server_status.php:366
msgid "Delayed inserts"
msgstr "Forsinkede inserts"
-#: server_status.php:256
+#: server_status.php:367
msgid "Key cache"
msgstr "Nøglemellemlager (key cache)"
-#: server_status.php:257
+#: server_status.php:368
msgid "Joins"
msgstr "Joins"
-#: server_status.php:259
+#: server_status.php:370
msgid "Sorting"
msgstr "Sortering"
-#: server_status.php:261
+#: server_status.php:372
msgid "Transaction coordinator"
msgstr "Transaktionskoordinator"
-#: server_status.php:271
+#: server_status.php:382
msgid "Flush (close) all tables"
msgstr "Flush (luk) alle tabeller"
-#: server_status.php:273
+#: server_status.php:384
msgid "Show open tables"
msgstr "Vis åbne tabeller"
-#: server_status.php:278
+#: server_status.php:389
msgid "Show slave hosts"
msgstr "Vis slaveværter"
-#: server_status.php:284
+#: server_status.php:395
msgid "Show slave status"
msgstr "Vis slavestatus"
-#: server_status.php:289
+#: server_status.php:400
msgid "Flush query cache"
msgstr "Flush forespørgsel-mellemlager (query cache)"
-#: server_status.php:294
+#: server_status.php:405
msgid "Show processes"
msgstr "Vis tråde"
-#: server_status.php:344
+#: server_status.php:455
#, fuzzy
#| msgid "Reset"
msgctxt "for Show status"
msgid "Reset"
msgstr "Nulstil"
-#: server_status.php:350
+#: server_status.php:461
#, php-format
msgid "This MySQL server has been running for %s. It started up on %s."
msgstr "Denne MySQL-server har kørt i %s. Den startede op den %s."
-#: server_status.php:360
+#: server_status.php:471
msgid ""
"This MySQL server works as master and slave in replication"
"b> process."
msgstr ""
-#: server_status.php:362
+#: server_status.php:473
msgid "This MySQL server works as master in replication process."
msgstr ""
-#: server_status.php:364
+#: server_status.php:475
msgid "This MySQL server works as slave in replication process."
msgstr ""
-#: server_status.php:366
+#: server_status.php:477
msgid ""
"For further information about replication status on the server, please visit "
"the replication section."
msgstr ""
-#: server_status.php:383
+#: server_status.php:494
msgid ""
"Server traffic: These tables show the network traffic statistics of "
"this MySQL server since its startup."
@@ -5908,11 +5918,11 @@ msgstr ""
"Servertrafik: Disse tabeller viser netværkstrafik-statistikkerne for "
"denne MySQL-server siden dens opstart."
-#: server_status.php:388
+#: server_status.php:499
msgid "Traffic"
msgstr "Trafik"
-#: server_status.php:388
+#: server_status.php:499
msgid ""
"On a busy server, the byte counters may overrun, so those statistics as "
"reported by the MySQL server may be incorrect."
@@ -5920,36 +5930,36 @@ msgstr ""
"På en travl server er der risiko for at bytetællerne løber over, så disse "
"statistikker som rapporteret af MySQL-serveren kan være forkerte."
-#: server_status.php:389 server_status.php:434 server_status.php:497
-#: server_status.php:555
+#: server_status.php:500 server_status.php:545 server_status.php:608
+#: server_status.php:666
msgid "per hour"
msgstr "pr. time"
-#: server_status.php:394
+#: server_status.php:505
msgid "Received"
msgstr "Modtaget"
-#: server_status.php:404
+#: server_status.php:515
msgid "Sent"
msgstr "Sendt"
-#: server_status.php:433
+#: server_status.php:544
msgid "Connections"
msgstr "Forbindelser"
-#: server_status.php:440
+#: server_status.php:551
msgid "max. concurrent connections"
msgstr "maks. samtidige forbindelser"
-#: server_status.php:447
+#: server_status.php:558
msgid "Failed attempts"
msgstr "Mislykkede forsøg"
-#: server_status.php:461
+#: server_status.php:572
msgid "Aborted"
msgstr "Afbrudt"
-#: server_status.php:490
+#: server_status.php:601
#, php-format
msgid ""
"Query statistics: Since its startup, %s queries have been sent to the "
@@ -5958,19 +5968,19 @@ msgstr ""
"Forespørgselsstatistikker: Siden opstarten er der blevet sendt %s "
"forespørgsler til serveren."
-#: server_status.php:498
+#: server_status.php:609
msgid "per minute"
msgstr "pr. minut"
-#: server_status.php:499
+#: server_status.php:610
msgid "per second"
msgstr "pr. sekund"
-#: server_status.php:554
+#: server_status.php:665
msgid "Query type"
msgstr "Forespørgselstype"
-#: server_status.php:721
+#: server_status.php:832
msgid "Replication status"
msgstr ""
diff --git a/po/de.po b/po/de.po
index 9228a7ebd..af68b117c 100755
--- a/po/de.po
+++ b/po/de.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-06-04 16:07-0400\n"
+"POT-Creation-Date: 2010-06-08 12:32-0400\n"
"PO-Revision-Date: 2010-06-03 21:04+0200\n"
"Last-Translator: \n"
"Language-Team: german \n"
@@ -15,11 +15,11 @@ msgstr ""
"X-Generator: Pootle 2.0.1\n"
#: browse_foreigners.php:38 browse_foreigners.php:59
-#: libraries/display_tbl.lib.php:417 server_privileges.php:1475
+#: libraries/display_tbl.lib.php:417 server_privileges.php:1514
msgid "Show all"
msgstr "Alles anzeigen"
-#: browse_foreigners.php:82 libraries/common.lib.php:2304
+#: browse_foreigners.php:82 libraries/common.lib.php:2313
#: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:394
#: libraries/export/pdf.php:147 pdf_schema.php:283 pdf_schema.php:1123
#: pdf_schema.php:1139
@@ -38,8 +38,8 @@ msgstr ""
#: browse_foreigners.php:150 db_structure.php:79 db_structure.php:80
#: db_structure.php:91 db_structure.php:93 db_structure.php:104
-#: db_structure.php:106 libraries/common.lib.php:2822
-#: libraries/common.lib.php:2829 libraries/db_links.inc.php:75
+#: db_structure.php:106 libraries/common.lib.php:2831
+#: libraries/common.lib.php:2838 libraries/db_links.inc.php:75
#: libraries/tbl_links.inc.php:63
msgid "Search"
msgstr "Suche"
@@ -49,7 +49,7 @@ msgstr "Suche"
#: db_structure.php:567 js/messages.php:48 libraries/Config.class.php:1046
#: libraries/Theme_Manager.class.php:311
#: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719
-#: libraries/common.lib.php:1333 libraries/common.lib.php:2279
+#: libraries/common.lib.php:1335 libraries/common.lib.php:2288
#: libraries/display_change_password.lib.php:82
#: libraries/display_create_table.lib.php:63
#: libraries/display_export.lib.php:275 libraries/display_import.lib.php:276
@@ -60,9 +60,9 @@ msgstr "Suche"
#: libraries/sql_query_form.lib.php:552 libraries/tbl_properties.inc.php:782
#: main.php:128 navigation.php:237 pdf_pages.php:292 pdf_pages.php:328
#: pdf_pages.php:530 pmd_pdf.php:116 server_binlog.php:142
-#: server_privileges.php:625 server_privileges.php:1585
-#: server_privileges.php:1932 server_privileges.php:1979
-#: server_privileges.php:2018 server_replication.php:235
+#: server_privileges.php:664 server_privileges.php:1624
+#: server_privileges.php:1971 server_privileges.php:2018
+#: server_privileges.php:2057 server_replication.php:235
#: server_replication.php:318 server_replication.php:341
#: server_synchronize.php:1209 tbl_change.php:330 tbl_change.php:1174
#: tbl_change.php:1211 tbl_indexes.php:254 tbl_operations.php:265
@@ -80,7 +80,7 @@ msgstr "Name"
#: browse_foreigners.php:169 browse_foreigners.php:171
#: server_collations.php:55 server_collations.php:67 server_engines.php:59
-#: server_status.php:628
+#: server_status.php:739
msgid "Description"
msgstr "Beschreibung"
@@ -121,7 +121,7 @@ msgstr "Spaltennamen"
#: libraries/db_structure.lib.php:60 libraries/export/htmlword.php:245
#: libraries/export/latex.php:360 libraries/export/odt.php:297
#: libraries/export/texytext.php:234 libraries/tbl_properties.inc.php:100
-#: pdf_schema.php:1263 pdf_schema.php:1284 server_privileges.php:2031
+#: pdf_schema.php:1263 pdf_schema.php:1284 server_privileges.php:2070
#: tbl_change.php:287 tbl_change.php:314 tbl_printview.php:143
#: tbl_printview.php:313 tbl_select.php:136 tbl_structure.php:178
#: tbl_structure.php:659 tbl_tracking.php:274 tbl_tracking.php:321
@@ -165,9 +165,9 @@ msgstr "Kommentare"
#: libraries/Index.class.php:386 libraries/export/htmlword.php:322
#: libraries/export/latex.php:430 libraries/export/odt.php:368
#: libraries/export/texytext.php:311 libraries/mult_submits.inc.php:263
-#: pdf_schema.php:1344 server_privileges.php:1529 server_privileges.php:1540
-#: server_privileges.php:1850 server_privileges.php:1855
-#: server_privileges.php:2148 sql.php:132 sql.php:194 tbl_printview.php:229
+#: pdf_schema.php:1344 server_privileges.php:1568 server_privileges.php:1579
+#: server_privileges.php:1889 server_privileges.php:1894
+#: server_privileges.php:2187 sql.php:132 sql.php:194 tbl_printview.php:229
#: tbl_structure.php:350 tbl_tracking.php:337 tbl_tracking.php:342
msgid "No"
msgstr "Nein"
@@ -181,9 +181,9 @@ msgstr "Nein"
#: libraries/mult_submits.inc.php:101 libraries/mult_submits.inc.php:106
#: libraries/mult_submits.inc.php:111 libraries/mult_submits.inc.php:262
#: libraries/mult_submits.inc.php:273 pdf_schema.php:1344
-#: server_databases.php:64 server_privileges.php:1526
-#: server_privileges.php:1540 server_privileges.php:1850
-#: server_privileges.php:1853 server_privileges.php:2148 sql.php:193
+#: server_databases.php:64 server_privileges.php:1565
+#: server_privileges.php:1579 server_privileges.php:1889
+#: server_privileges.php:1892 server_privileges.php:2187 sql.php:193
#: tbl_printview.php:229 tbl_structure.php:40 tbl_structure.php:350
#: tbl_tracking.php:335 tbl_tracking.php:340
msgid "Yes"
@@ -280,7 +280,7 @@ msgstr "Zu kopierter Datenbank wechseln"
msgid "BLOB Repository"
msgstr "BLOB-Repository"
-#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1350
+#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1352
#: libraries/server_links.inc.php:49 server_processlist.php:59
#: tbl_tracking.php:596 test/theme.php:101
msgid "Status"
@@ -337,8 +337,8 @@ msgstr "PDF-Seiten bearbeiten"
#: db_printview.php:104 db_tracking.php:72 db_tracking.php:157
#: libraries/db_structure.lib.php:46 libraries/export/xml.php:328
-#: libraries/header.inc.php:126 pdf_pages.php:424 server_privileges.php:1626
-#: server_privileges.php:1682 server_privileges.php:1946
+#: libraries/header.inc.php:126 pdf_pages.php:424 server_privileges.php:1665
+#: server_privileges.php:1721 server_privileges.php:1985
#: server_synchronize.php:423 server_synchronize.php:866 tbl_tracking.php:592
#: test/theme.php:75
msgid "Table"
@@ -438,7 +438,7 @@ msgstr "Entf."
#: db_qbe.php:370 db_qbe.php:451 db_qbe.php:522 db_qbe.php:553
#: libraries/display_import.lib.php:166 libraries/tbl_properties.inc.php:779
-#: server_privileges.php:258 tbl_change.php:1031 tbl_indexes.php:250
+#: server_privileges.php:297 tbl_change.php:1031 tbl_indexes.php:250
#: tbl_select.php:288
msgid "Or"
msgstr "oder"
@@ -470,7 +470,7 @@ msgstr "Verwendete Tabellen"
msgid "SQL query on database %s:"
msgstr "SQL-Befehl in der Datenbank %s:"
-#: db_qbe.php:934 libraries/common.lib.php:1223
+#: db_qbe.php:934 libraries/common.lib.php:1225
msgid "Submit Query"
msgstr "SQL-Befehl ausführen"
@@ -509,7 +509,7 @@ msgstr "%s Treffer in der Tabelle %s"
#: db_search.php:267 db_structure.php:77 db_structure.php:78
#: db_structure.php:90 db_structure.php:92 db_structure.php:103
-#: db_structure.php:105 libraries/common.lib.php:2824
+#: db_structure.php:105 libraries/common.lib.php:2833
#: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50
#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:467
msgid "Browse"
@@ -556,26 +556,26 @@ msgstr "Im Feld:"
#: db_structure.php:81 db_structure.php:82 db_structure.php:94
#: db_structure.php:95 db_structure.php:107 db_structure.php:108
-#: libraries/common.lib.php:2823 libraries/sql_query_form.lib.php:334
+#: libraries/common.lib.php:2832 libraries/sql_query_form.lib.php:334
#: libraries/sql_query_form.lib.php:337 libraries/tbl_links.inc.php:76
msgid "Insert"
msgstr "Einfügen"
#: db_structure.php:83 db_structure.php:96 db_structure.php:109
-#: libraries/common.lib.php:2820 libraries/common.lib.php:2827
+#: libraries/common.lib.php:2829 libraries/common.lib.php:2836
#: libraries/db_links.inc.php:63 libraries/export/htmlword.php:23
#: libraries/export/latex.php:33 libraries/export/latex.php:337
#: libraries/export/odt.php:32 libraries/export/sql.php:60
#: libraries/export/texytext.php:23 libraries/import.lib.php:1104
#: libraries/tbl_links.inc.php:56 pmd_general.php:134
-#: server_privileges.php:554 server_replication.php:315 tbl_tracking.php:269
+#: server_privileges.php:593 server_replication.php:315 tbl_tracking.php:269
msgid "Structure"
msgstr "Struktur"
#: db_structure.php:84 db_structure.php:85 db_structure.php:97
#: db_structure.php:98 db_structure.php:110 db_structure.php:111
#: db_structure.php:545 db_structure.php:546 db_tracking.php:91
-#: libraries/Index.class.php:483 libraries/common.lib.php:1654
+#: libraries/Index.class.php:483 libraries/common.lib.php:1656
#: libraries/db_links.inc.php:100 libraries/mult_submits.inc.php:36
#: libraries/mult_submits.inc.php:73 libraries/tbl_links.inc.php:127
#: server_databases.php:352 tbl_structure.php:27 tbl_structure.php:151
@@ -585,7 +585,7 @@ msgstr "Löschen"
#: db_structure.php:86 db_structure.php:87 db_structure.php:99
#: db_structure.php:100 db_structure.php:112 db_structure.php:113
-#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1653
+#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1655
#: libraries/mult_submits.inc.php:39 libraries/tbl_links.inc.php:105
msgid "Empty"
msgstr "Leeren"
@@ -629,7 +629,7 @@ msgstr "Ansicht"
#: db_structure.php:485 libraries/db_structure.lib.php:49
#: libraries/server_links.inc.php:70 server_replication.php:33
-#: server_replication.php:164 server_status.php:258
+#: server_replication.php:164 server_status.php:369
msgid "Replication"
msgstr "Replikation"
@@ -645,20 +645,20 @@ msgstr "Neue Tabellen werden standardmäßig im Format %s angelegt."
#: db_structure.php:524 db_structure.php:541 db_structure.php:542
#: libraries/display_tbl.lib.php:2081 libraries/display_tbl.lib.php:2086
#: libraries/mult_submits.inc.php:16 server_databases.php:346
-#: server_databases.php:351 server_privileges.php:1557 tbl_structure.php:455
+#: server_databases.php:351 server_privileges.php:1596 tbl_structure.php:455
#: tbl_structure.php:464
msgid "With selected:"
msgstr "markierte:"
#: db_structure.php:527 libraries/display_tbl.lib.php:2076
-#: server_databases.php:348 server_privileges.php:530
-#: server_privileges.php:1560 tbl_structure.php:458
+#: server_databases.php:348 server_privileges.php:569
+#: server_privileges.php:1599 tbl_structure.php:458
msgid "Check All"
msgstr "Alle auswählen"
#: db_structure.php:531 libraries/display_tbl.lib.php:2077
#: libraries/replication_gui.lib.php:33 server_databases.php:350
-#: server_privileges.php:533 server_privileges.php:1564 tbl_structure.php:462
+#: server_privileges.php:572 server_privileges.php:1603 tbl_structure.php:462
msgid "Uncheck All"
msgstr "Auswahl entfernen"
@@ -696,7 +696,7 @@ msgstr "Analysiere Tabelle"
#: libraries/display_export.lib.php:83 libraries/display_tbl.lib.php:2094
#: libraries/display_tbl.lib.php:2225 libraries/mult_submits.inc.php:62
#: libraries/server_links.inc.php:84 libraries/tbl_links.inc.php:82
-#: pmd_pdf.php:84 pmd_pdf.php:109 server_privileges.php:1341
+#: pmd_pdf.php:84 pmd_pdf.php:109 server_privileges.php:1380
#: setup/frames/menu.inc.php:22 tbl_row_action.php:59
msgid "Export"
msgstr "Exportieren"
@@ -714,8 +714,8 @@ msgstr "Verfolgte Tabellen"
#: libraries/export/sql.php:342 libraries/export/texytext.php:84
#: libraries/export/xml.php:255 libraries/header.inc.php:106
#: libraries/header_printview.inc.php:58 server_databases.php:169
-#: server_privileges.php:1621 server_privileges.php:1682
-#: server_privileges.php:1940 server_processlist.php:56
+#: server_privileges.php:1660 server_privileges.php:1721
+#: server_privileges.php:1979 server_processlist.php:56
#: server_synchronize.php:1179 server_synchronize.php:1183
#: tbl_tracking.php:591 test/theme.php:65
msgid "Database"
@@ -735,8 +735,8 @@ msgstr "Aktualisiert"
#: db_tracking.php:77 libraries/Index.class.php:440
#: libraries/db_structure.lib.php:53 server_databases.php:203
-#: server_privileges.php:1503 server_privileges.php:1686
-#: server_privileges.php:2034 tbl_structure.php:187
+#: server_privileges.php:1542 server_privileges.php:1725
+#: server_privileges.php:2073 tbl_structure.php:187
msgid "Action"
msgstr "Aktion"
@@ -941,11 +941,11 @@ msgstr "Es wurde kein Host angegeben!"
msgid "The user name is empty!"
msgstr "Kein Benutzername eingegeben!"
-#: js/messages.php:44 server_privileges.php:1197 user_password.php:70
+#: js/messages.php:44 server_privileges.php:1236 user_password.php:70
msgid "The password is empty!"
msgstr "Es wurde kein Passwort angegeben!"
-#: js/messages.php:45 server_privileges.php:1195 user_password.php:73
+#: js/messages.php:45 server_privileges.php:1234 user_password.php:73
msgid "The passwords aren't the same!"
msgstr "Die eingegebenen Passwörter sind nicht identisch!"
@@ -1018,8 +1018,8 @@ msgid "Prev"
msgstr "Vorherige"
#. l10n: Display text for next month link in calendar
-#: js/messages.php:77 libraries/common.lib.php:2344
-#: libraries/common.lib.php:2347 libraries/display_tbl.lib.php:338
+#: js/messages.php:77 libraries/common.lib.php:2353
+#: libraries/common.lib.php:2356 libraries/display_tbl.lib.php:338
#: server_binlog.php:205 server_binlog.php:207 tbl_printview.php:424
#: tbl_structure.php:801
msgid "Next"
@@ -1079,63 +1079,63 @@ msgid "December"
msgstr "Dezember"
#. l10n: Short month name
-#: js/messages.php:97 libraries/common.lib.php:1555
+#: js/messages.php:97 libraries/common.lib.php:1557
msgid "Jan"
msgstr "Januar"
#. l10n: Short month name
-#: js/messages.php:99 libraries/common.lib.php:1557
+#: js/messages.php:99 libraries/common.lib.php:1559
msgid "Feb"
msgstr "Februar"
#. l10n: Short month name
-#: js/messages.php:101 libraries/common.lib.php:1559
+#: js/messages.php:101 libraries/common.lib.php:1561
msgid "Mar"
msgstr "März"
#. l10n: Short month name
-#: js/messages.php:103 libraries/common.lib.php:1561
+#: js/messages.php:103 libraries/common.lib.php:1563
msgid "Apr"
msgstr "April"
#. l10n: Short month name
-#: js/messages.php:105 libraries/common.lib.php:1563
+#: js/messages.php:105 libraries/common.lib.php:1565
msgctxt "Short month name"
msgid "May"
msgstr "Mai"
#. l10n: Short month name
-#: js/messages.php:107 libraries/common.lib.php:1565
+#: js/messages.php:107 libraries/common.lib.php:1567
msgid "Jun"
msgstr "Juni"
#. l10n: Short month name
-#: js/messages.php:109 libraries/common.lib.php:1567
+#: js/messages.php:109 libraries/common.lib.php:1569
msgid "Jul"
msgstr "Juli"
#. l10n: Short month name
-#: js/messages.php:111 libraries/common.lib.php:1569
+#: js/messages.php:111 libraries/common.lib.php:1571
msgid "Aug"
msgstr "August"
#. l10n: Short month name
-#: js/messages.php:113 libraries/common.lib.php:1571
+#: js/messages.php:113 libraries/common.lib.php:1573
msgid "Sep"
msgstr "September"
#. l10n: Short month name
-#: js/messages.php:115 libraries/common.lib.php:1573
+#: js/messages.php:115 libraries/common.lib.php:1575
msgid "Oct"
msgstr "Oktober"
#. l10n: Short month name
-#: js/messages.php:117 libraries/common.lib.php:1575
+#: js/messages.php:117 libraries/common.lib.php:1577
msgid "Nov"
msgstr "November"
#. l10n: Short month name
-#: js/messages.php:119 libraries/common.lib.php:1577
+#: js/messages.php:119 libraries/common.lib.php:1579
msgid "Dec"
msgstr "Dezember"
@@ -1168,37 +1168,37 @@ msgid "Saturday"
msgstr "Samstag"
#. l10n: Short week day name
-#: js/messages.php:132 libraries/common.lib.php:1580
+#: js/messages.php:132 libraries/common.lib.php:1582
msgid "Sun"
msgstr "So"
#. l10n: Short week day name
-#: js/messages.php:134 libraries/common.lib.php:1582
+#: js/messages.php:134 libraries/common.lib.php:1584
msgid "Mon"
msgstr "Mo"
#. l10n: Short week day name
-#: js/messages.php:136 libraries/common.lib.php:1584
+#: js/messages.php:136 libraries/common.lib.php:1586
msgid "Tue"
msgstr "Di"
#. l10n: Short week day name
-#: js/messages.php:138 libraries/common.lib.php:1586
+#: js/messages.php:138 libraries/common.lib.php:1588
msgid "Wed"
msgstr "Mi"
#. l10n: Short week day name
-#: js/messages.php:140 libraries/common.lib.php:1588
+#: js/messages.php:140 libraries/common.lib.php:1590
msgid "Thu"
msgstr "Do"
#. l10n: Short week day name
-#: js/messages.php:142 libraries/common.lib.php:1590
+#: js/messages.php:142 libraries/common.lib.php:1592
msgid "Fri"
msgstr "Fr"
#. l10n: Short week day name
-#: js/messages.php:144 libraries/common.lib.php:1592
+#: js/messages.php:144 libraries/common.lib.php:1594
msgid "Sat"
msgstr "Sa"
@@ -1327,7 +1327,7 @@ msgid "Comment"
msgstr "Kommentar"
#: libraries/Index.class.php:466 libraries/common.lib.php:616
-#: libraries/common.lib.php:1199 libraries/display_tbl.lib.php:1117
+#: libraries/common.lib.php:1201 libraries/display_tbl.lib.php:1117
#: libraries/import.lib.php:1087 libraries/import.lib.php:1111
#: pdf_pages.php:285 setup/frames/index.inc.php:124
#: setup/lib/messages.inc.php:352 tbl_row_action.php:69
@@ -1353,7 +1353,7 @@ msgstr ""
"möglicherweise entfernt werden."
#: libraries/List_Database.class.php:431 libraries/server_links.inc.php:41
-#: server_databases.php:88 server_privileges.php:1621
+#: server_databases.php:88 server_privileges.php:1660
#: setup/lib/messages.inc.php:110 test/theme.php:93
msgid "Databases"
msgstr "Datenbanken"
@@ -1697,7 +1697,7 @@ msgid "Documentation"
msgstr "Dokumentation"
#: libraries/common.lib.php:595 libraries/header_printview.inc.php:61
-#: server_processlist.php:60 server_status.php:247
+#: server_processlist.php:60 server_status.php:358
msgid "SQL query"
msgstr "SQL-Befehl"
@@ -1713,130 +1713,130 @@ msgstr "SQL erklären"
msgid "Skip Explain SQL"
msgstr "SQL-Erklärung umgehen"
-#: libraries/common.lib.php:1212
+#: libraries/common.lib.php:1214
msgid "Without PHP Code"
msgstr "ohne PHP-Code"
-#: libraries/common.lib.php:1215 setup/lib/messages.inc.php:355
+#: libraries/common.lib.php:1217 setup/lib/messages.inc.php:355
msgid "Create PHP Code"
msgstr "PHP-Code erzeugen"
-#: libraries/common.lib.php:1233 server_status.php:341
+#: libraries/common.lib.php:1235 server_status.php:452
#: setup/lib/messages.inc.php:354
msgid "Refresh"
msgstr "Aktualisieren"
-#: libraries/common.lib.php:1242
+#: libraries/common.lib.php:1244
msgid "Skip Validate SQL"
msgstr "SQL-Validierung umgehen"
-#: libraries/common.lib.php:1245 setup/lib/messages.inc.php:356 sql.php:518
+#: libraries/common.lib.php:1247 setup/lib/messages.inc.php:356 sql.php:518
msgid "Validate SQL"
msgstr "SQL validieren"
-#: libraries/common.lib.php:1276
+#: libraries/common.lib.php:1278
msgid "Inline edit of this query"
msgstr "Inline-Bearbeiten dieses SQL-Befehls"
-#: libraries/common.lib.php:1278
+#: libraries/common.lib.php:1280
msgid "Inline"
msgstr "Inline"
-#: libraries/common.lib.php:1332 libraries/common.lib.php:1347
+#: libraries/common.lib.php:1334 libraries/common.lib.php:1349
msgid "Profiling"
msgstr "Messen"
-#: libraries/common.lib.php:1351 libraries/tbl_triggers.lib.php:28
+#: libraries/common.lib.php:1353 libraries/tbl_triggers.lib.php:28
#: server_processlist.php:58
msgid "Time"
msgstr "Dauer"
#. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "B"
msgstr "Bytes"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "KiB"
msgstr "KiB"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "MiB"
msgstr "MiB"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "GiB"
msgstr "GiB"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "TiB"
msgstr "TiB"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "PiB"
msgstr "PiB"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "EiB"
msgstr "EiB"
#. l10n: Thousands separator
-#: libraries/common.lib.php:1417
+#: libraries/common.lib.php:1419
msgid ","
msgstr "."
#. l10n: Decimal separator
-#: libraries/common.lib.php:1419
+#: libraries/common.lib.php:1421
msgid "."
msgstr ","
#. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string
-#: libraries/common.lib.php:1596
+#: libraries/common.lib.php:1598
#: libraries/transformations/text_plain__dateformat.inc.php:34
msgid "%B %d, %Y at %I:%M %p"
msgstr "%d. %B %Y um %H:%M"
-#: libraries/common.lib.php:1898
+#: libraries/common.lib.php:1907
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "%s Tage, %s Stunden, %s Minuten und %s Sekunden"
-#: libraries/common.lib.php:2313 libraries/common.lib.php:2316
-#: libraries/display_tbl.lib.php:290 server_status.php:608
+#: libraries/common.lib.php:2322 libraries/common.lib.php:2325
+#: libraries/display_tbl.lib.php:290 server_status.php:719
msgid "Begin"
msgstr "Anfang"
-#: libraries/common.lib.php:2314 libraries/common.lib.php:2317
+#: libraries/common.lib.php:2323 libraries/common.lib.php:2326
#: libraries/display_tbl.lib.php:291 server_binlog.php:168
#: server_binlog.php:170
msgid "Previous"
msgstr "Vorherige"
-#: libraries/common.lib.php:2345 libraries/common.lib.php:2348
+#: libraries/common.lib.php:2354 libraries/common.lib.php:2357
#: libraries/display_tbl.lib.php:353
msgid "End"
msgstr "Ende"
-#: libraries/common.lib.php:2421
+#: libraries/common.lib.php:2430
#, php-format
msgid "Jump to database "%s"."
msgstr "Zur Datenbank "%s" springen."
-#: libraries/common.lib.php:2441
+#: libraries/common.lib.php:2450
#, 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/common.lib.php:2821 libraries/common.lib.php:2828
+#: libraries/common.lib.php:2830 libraries/common.lib.php:2837
#: libraries/db_links.inc.php:68 libraries/export/sql.php:25
#: libraries/import/sql.php:18 libraries/server_links.inc.php:45
#: libraries/tbl_links.inc.php:60 querywindow.php:99 test/theme.php:97
msgid "SQL"
msgstr "SQL"
-#: libraries/common.lib.php:2830 libraries/db_links.inc.php:104
+#: libraries/common.lib.php:2839 libraries/db_links.inc.php:104
#: libraries/tbl_links.inc.php:95 libraries/tbl_links.inc.php:117
#: view_operations.php:89
msgid "Operations"
@@ -1892,8 +1892,8 @@ msgid "Import"
msgstr "Importieren"
#: libraries/db_links.inc.php:111 libraries/server_links.inc.php:66
-#: server_privileges.php:72 server_privileges.php:1683
-#: server_privileges.php:2032 test/theme.php:117
+#: server_privileges.php:111 server_privileges.php:1722
+#: server_privileges.php:2071 test/theme.php:117
msgid "Privileges"
msgstr "Rechte"
@@ -1944,22 +1944,22 @@ msgid "Change password"
msgstr "Passwort ändern"
#: libraries/display_change_password.lib.php:35
-#: libraries/replication_gui.lib.php:345 server_privileges.php:768
+#: libraries/replication_gui.lib.php:345 server_privileges.php:807
msgid "No Password"
msgstr "Kein Passwort"
#: libraries/display_change_password.lib.php:41
#: libraries/replication_gui.lib.php:59 libraries/replication_gui.lib.php:60
#: libraries/replication_gui.lib.php:335 libraries/replication_gui.lib.php:339
-#: libraries/replication_gui.lib.php:349 server_privileges.php:757
-#: server_privileges.php:761 server_privileges.php:772
-#: server_privileges.php:1499 server_synchronize.php:1175
+#: libraries/replication_gui.lib.php:349 server_privileges.php:796
+#: server_privileges.php:800 server_privileges.php:811
+#: server_privileges.php:1538 server_synchronize.php:1175
msgid "Password"
msgstr "Passwort"
#: libraries/display_change_password.lib.php:46
#: libraries/replication_gui.lib.php:353 libraries/replication_gui.lib.php:356
-#: server_privileges.php:776 server_privileges.php:779
+#: server_privileges.php:815 server_privileges.php:818
msgid "Re-type"
msgstr "Wiederholen"
@@ -1972,12 +1972,12 @@ msgid "MySQL 4.0 compatible"
msgstr "MySQL 4.0 kompatibel"
#: libraries/display_change_password.lib.php:72
-#: libraries/replication_gui.lib.php:360 server_privileges.php:783
+#: libraries/replication_gui.lib.php:360 server_privileges.php:822
msgid "Generate Password"
msgstr "Passwort generieren"
#: libraries/display_change_password.lib.php:75
-#: libraries/replication_gui.lib.php:363 server_privileges.php:786
+#: libraries/replication_gui.lib.php:363 server_privileges.php:825
msgid "Generate"
msgstr "Generieren"
@@ -1990,8 +1990,8 @@ msgstr "Neue Datenbank anlegen"
msgid "Create"
msgstr "Anlegen"
-#: libraries/display_create_database.lib.php:40 server_privileges.php:74
-#: server_privileges.php:1388 server_replication.php:35
+#: libraries/display_create_database.lib.php:40 server_privileges.php:113
+#: server_privileges.php:1427 server_replication.php:35
msgid "No Privileges"
msgstr "Keine Rechte"
@@ -2083,7 +2083,7 @@ msgstr "Kompression"
#: libraries/display_export.lib.php:240 libraries/display_import.lib.php:197
#: libraries/display_import.lib.php:210 libraries/display_tbl.lib.php:530
#: libraries/export/sql.php:868 libraries/tbl_properties.inc.php:575
-#: server_privileges.php:1836 server_processlist.php:75
+#: server_privileges.php:1875 server_processlist.php:75
msgid "None"
msgstr "keine"
@@ -2418,7 +2418,7 @@ msgstr ""
msgid "Buffer Pool"
msgstr "Puffer-Pool"
-#: libraries/engines/innodb.lib.php:145 server_status.php:306
+#: libraries/engines/innodb.lib.php:145 server_status.php:417
msgid "InnoDB Status"
msgstr "InnoDB-Status"
@@ -2427,8 +2427,8 @@ msgid "Buffer Pool Usage"
msgstr "Auslastung des Puffer-Pools"
#: libraries/engines/innodb.lib.php:194 server_databases.php:137
-#: server_databases.php:305 server_status.php:414 server_status.php:475
-#: server_status.php:496 tbl_printview.php:351 tbl_structure.php:696
+#: server_databases.php:305 server_status.php:525 server_status.php:586
+#: server_status.php:607 tbl_printview.php:351 tbl_structure.php:696
msgid "Total"
msgstr "Insgesamt"
@@ -2784,7 +2784,7 @@ msgstr "Microsoft Word 2000"
#: libraries/export/latex.php:201 libraries/export/odt.php:48
#: libraries/export/sql.php:106 libraries/export/sql.php:868
#: libraries/export/texytext.php:27 server_databases.php:127
-#: server_privileges.php:537 server_replication.php:316 tbl_printview.php:317
+#: server_privileges.php:576 server_replication.php:316 tbl_printview.php:317
#: tbl_structure.php:665
msgid "Data"
msgstr "Daten"
@@ -2834,9 +2834,9 @@ msgstr "MIME-Typ"
#: libraries/export/xml.php:102 libraries/header_printview.inc.php:57
#: libraries/replication_gui.lib.php:63 libraries/replication_gui.lib.php:174
#: libraries/replication_gui.lib.php:269 libraries/replication_gui.lib.php:272
-#: libraries/replication_gui.lib.php:329 server_privileges.php:692
-#: server_privileges.php:695 server_privileges.php:751
-#: server_privileges.php:1498 server_privileges.php:2030
+#: libraries/replication_gui.lib.php:329 server_privileges.php:731
+#: server_privileges.php:734 server_privileges.php:790
+#: server_privileges.php:1537 server_privileges.php:2069
#: server_processlist.php:55 server_synchronize.php:1159
msgid "Host"
msgstr "Host"
@@ -3191,885 +3191,6 @@ msgstr "keine"
msgid "Convert to Kana"
msgstr "Nach Kana konvertieren"
-#. l10n: Text direction, use either ltr or rtl
-#: libraries/messages.inc.php:19
-msgid "ltr"
-msgstr "ltr"
-
-#: libraries/messages.inc.php:21
-msgid "Content of table __TABLE__"
-msgstr "Inhalt der Tabelle __TABLE__"
-
-#: libraries/messages.inc.php:22
-msgid "(continued)"
-msgstr "(Fortsetzung)"
-
-#: libraries/messages.inc.php:23
-msgid "Structure of table __TABLE__"
-msgstr "Struktur der Tabelle __TABLE__"
-
-#: libraries/messages.inc.php:25 server_privileges.php:227
-msgid "Includes all privileges except GRANT."
-msgstr "Enthält alle Rechte bis auf GRANT."
-
-#: libraries/messages.inc.php:26 server_privileges.php:153
-#: server_privileges.php:476
-msgid "Allows altering the structure of existing tables."
-msgstr "Erlaubt das Verändern der Struktur bestehender Tabellen."
-
-#: libraries/messages.inc.php:27 server_privileges.php:169
-#: server_privileges.php:482
-msgid "Allows altering and dropping stored routines."
-msgstr "Erlaubt das Verändern und Löschen von Routinen."
-
-#: libraries/messages.inc.php:28 server_privileges.php:145
-#: server_privileges.php:475
-msgid "Allows creating new databases and tables."
-msgstr "Erlaubt das Erstellen neuer Datenbanken und Tabellen."
-
-#: libraries/messages.inc.php:29 server_privileges.php:168
-#: server_privileges.php:481
-msgid "Allows creating stored routines."
-msgstr "Erlaubt das Erstellen von gespeicherten Routinen."
-
-#: libraries/messages.inc.php:30 server_privileges.php:475
-msgid "Allows creating new tables."
-msgstr "Erlaubt das Erstellen neuer Tabellen."
-
-#: libraries/messages.inc.php:31 server_privileges.php:156
-#: server_privileges.php:479
-msgid "Allows creating temporary tables."
-msgstr "Erlaubt das Erstellen temporärer Tabellen."
-
-#: libraries/messages.inc.php:32 server_privileges.php:170
-#: server_privileges.php:515
-msgid "Allows creating, dropping and renaming user accounts."
-msgstr "Erlaubt das Erstellen, Löschen und Umbenennen von Benutzern."
-
-#: libraries/messages.inc.php:33 server_privileges.php:160
-#: server_privileges.php:164 server_privileges.php:487
-#: server_privileges.php:491
-msgid "Allows creating new views."
-msgstr "Erlaubt das Erstellen von Views."
-
-#: libraries/messages.inc.php:34 server_privileges.php:144
-#: server_privileges.php:467
-msgid "Allows deleting data."
-msgstr "Erlaubt das Löschen von Daten."
-
-#: libraries/messages.inc.php:35 server_privileges.php:146
-#: server_privileges.php:478
-msgid "Allows dropping databases and tables."
-msgstr "Erlaubt das Löschen ganzer Datenbanken und Tabellen."
-
-#: libraries/messages.inc.php:36 server_privileges.php:478
-msgid "Allows dropping tables."
-msgstr "Erlaubt das Löschen ganzer Tabellen."
-
-#: libraries/messages.inc.php:37 server_privileges.php:161
-#: server_privileges.php:495
-msgid "Allows to set up events for the event scheduler"
-msgstr "Erlaubt das Anlegen von Events für den Event-Scheduler"
-
-#: libraries/messages.inc.php:38 server_privileges.php:171
-#: server_privileges.php:483
-msgid "Allows executing stored routines."
-msgstr "Erlaubt das Ausführen von Routinen."
-
-#: libraries/messages.inc.php:39 server_privileges.php:150
-#: server_privileges.php:470
-msgid "Allows importing data from and exporting data into files."
-msgstr ""
-"Erlaubt das Importieren von Daten aus und das Exportieren in externe Dateien."
-
-#: libraries/messages.inc.php:40 server_privileges.php:501
-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/messages.inc.php:41 server_privileges.php:152
-#: server_privileges.php:477
-msgid "Allows creating and dropping indexes."
-msgstr "Erlaubt das Erstellen und Löschen von Indizes."
-
-#: libraries/messages.inc.php:42 server_privileges.php:142
-#: server_privileges.php:403 server_privileges.php:465
-msgid "Allows inserting and replacing data."
-msgstr "Erlaubt das Hinzufügen und Ersetzen von Daten."
-
-#: libraries/messages.inc.php:43 server_privileges.php:157
-#: server_privileges.php:510
-msgid "Allows locking tables for the current thread."
-msgstr "Erlaubt die Sperrung bestimmter Tabellen."
-
-#: libraries/messages.inc.php:44 server_privileges.php:607
-#: server_privileges.php:609
-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/messages.inc.php:45 server_privileges.php:595
-#: server_privileges.php:597
-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/messages.inc.php:46 server_privileges.php:601
-#: server_privileges.php:603
-msgid ""
-"Limits the number of commands that change any table or database the user may "
-"execute per hour."
-msgstr ""
-"Begrenzt die Anzahl der Veränderungen, welche ein Benutzer pro Stunde an "
-"allen Datenbanken und Tabellen vornehmen darf."
-
-#: libraries/messages.inc.php:47 server_privileges.php:613
-#: server_privileges.php:615
-msgid "Limits the number of simultaneous connections the user may have."
-msgstr ""
-"Beschränkt die Anzahl der gleichzeitigen Verbindungen für diesen Benutzer."
-
-#: libraries/messages.inc.php:48 server_privileges.php:149
-#: server_privileges.php:505
-msgid "Allows viewing processes of all users"
-msgstr "Erlaubt die Anzeige der Prozesse aller Benutzer"
-
-#: libraries/messages.inc.php:49 server_privileges.php:151
-#: server_privileges.php:409 server_privileges.php:511
-msgid "Has no effect in this MySQL version."
-msgstr "Hat keinen Effekt in dieser MySQL-Version."
-
-#: libraries/messages.inc.php:50 server_privileges.php:147
-#: server_privileges.php:506
-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/messages.inc.php:51 server_privileges.php:159
-#: server_privileges.php:513
-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/messages.inc.php:52 server_privileges.php:158
-#: server_privileges.php:514
-msgid "Needed for the replication slaves."
-msgstr "Wird für die Replication-Slave-Systeme benötigt."
-
-#: libraries/messages.inc.php:53 server_privileges.php:141
-#: server_privileges.php:400 server_privileges.php:464
-msgid "Allows reading data."
-msgstr "Erlaubt das Auslesen von Daten."
-
-#: libraries/messages.inc.php:54 server_privileges.php:154
-#: server_privileges.php:508
-msgid "Gives access to the complete list of databases."
-msgstr "Gewährt Zugang zur vollständigen Datenbankliste."
-
-#: libraries/messages.inc.php:55 server_privileges.php:165
-#: server_privileges.php:167 server_privileges.php:480
-msgid "Allows performing SHOW CREATE VIEW queries."
-msgstr "Erlaubt das Ausführen von 'SHOW CREATE VIEW'."
-
-#: libraries/messages.inc.php:56 server_privileges.php:148
-#: server_privileges.php:507
-msgid "Allows shutting down the server."
-msgstr "Erlaubt das Beenden des Servers."
-
-#: libraries/messages.inc.php:57 server_privileges.php:155
-#: server_privileges.php:504
-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 ""
-"Erlaubt eine Verbindung, selbst wenn die maximale Anzahl an Verbindungen "
-"bereits erreicht ist; Wird für viele administrative Operationen, wie das "
-"Setzen globaler Variables oder das Beenden fremder Prozesse, vorausgesetzt."
-
-#: libraries/messages.inc.php:58 server_privileges.php:162
-#: server_privileges.php:496
-msgid "Allows creating and dropping triggers"
-msgstr "Erlaubt das Erzeugen und Löschen Triggern"
-
-#: libraries/messages.inc.php:59 server_privileges.php:143
-#: server_privileges.php:406 server_privileges.php:466
-msgid "Allows changing data."
-msgstr "Erlaubt das Verändern von gespeicherten Daten."
-
-#: libraries/messages.inc.php:60 server_privileges.php:221
-msgid "No privileges."
-msgstr "Keine Rechte."
-
-#: libraries/messages.inc.php:62
-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 ""
-"Anzahl der Transaktionen die den Binarylog-Cache verwendet, aber die Größe "
-"des Binarylog-Caches (binlog_cache_size) überschritten und eine temporäre "
-"Datei verwendet haben um die Statements der Transaktion zu speichern."
-
-#: libraries/messages.inc.php:63
-msgid "The number of transactions that used the temporary binary log cache."
-msgstr ""
-"Anzahl der Transaktionen, die den temporären Binarylog-Cache verwendet haben."
-
-#: libraries/messages.inc.php:64
-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 "
-"to increase the tmp_table_size value to cause temporary tables to be memory-"
-"based instead of disk-based."
-msgstr ""
-"Anzahl der (implizit) auf der Platte erzeugten temporären Tabellen bei der "
-"Ausführung von Statements. Wenn Created_tmp_disk_tables hoch ist, sollten "
-"Sie eventuell die Variable tmp_table_size herauf setzen, damit temporäre "
-"Tabellen im Speicher erzeugt werden statt auf der Festplatte."
-
-#: libraries/messages.inc.php:65
-msgid "How many temporary files mysqld has created."
-msgstr "Anzahl der temporären Dateien, die mysqld erzeugt hat."
-
-#: libraries/messages.inc.php:66
-msgid ""
-"The number of in-memory temporary tables created automatically by the server "
-"while executing statements."
-msgstr ""
-"Anzahl der (implizit) im Arbeitsspeicher erzeugten temporären Tabellen bei "
-"der Ausführung von Statements."
-
-#: libraries/messages.inc.php:67
-msgid ""
-"The number of rows written with INSERT DELAYED for which some error occurred "
-"(probably duplicate key)."
-msgstr ""
-"Anzahl der Zeilen, die mit INSERT DELAYED geschrieben wurden, und bei denen "
-"ein Fehler auftrat (z. B. duplicate key)."
-
-#: libraries/messages.inc.php:68
-msgid ""
-"The number of INSERT DELAYED handler threads in use. Every different table "
-"on which one uses INSERT DELAYED gets its own thread."
-msgstr ""
-"Anzahl der verzögerten Insert-Handler-Prozesse in Benutzung. Jede einzelne "
-"Tabelle mit verzögerten Inserts bekommt einen eigenen Prozess."
-
-#: libraries/messages.inc.php:69
-msgid "The number of INSERT DELAYED rows written."
-msgstr "Anzahl der Zeilen, die mit INSERT DELAYED geschrieben wurden."
-
-#: libraries/messages.inc.php:70
-msgid "The number of executed FLUSH statements."
-msgstr "Anzahl der ausgeführten FLUSH-Befehle."
-
-#: libraries/messages.inc.php:71
-msgid "The number of internal COMMIT statements."
-msgstr "Anzahl der Anfragen, ein COMMIT auszuführen."
-
-#: libraries/messages.inc.php:72
-msgid "The number of times a row was deleted from a table."
-msgstr "Anzahl der Zeilen, die aus Tabellen gelöscht wurden."
-
-#: libraries/messages.inc.php:73
-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 ""
-"Anzahl der gesuchten und gefundenen (discovered) Tabellen. Der MySQL-Server "
-"kann die NDB-Cluster-Storage-Engine fragen, ob sie eine bestimmte Tabelle "
-"kennt. Dieser Vorgang wird "discovery" genannt."
-
-#: libraries/messages.inc.php:74
-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 ""
-"Wie oft der erste Eintrag aus einem Index gelesen wurde. Ein hoher Wert hier "
-"deutet darauf hin, dass der Server viele komplette Index-Scans macht (zum "
-"Beispiel SELECT spalte1 FROM foo, unter der Annahme, dass spalte1 indiziert "
-"ist)."
-
-#: libraries/messages.inc.php:75
-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 ""
-"Anzahl der Anfragen, eine Zeile basierend auf einem Schlüssel zu lesen. Wenn "
-"dieser Wert hoch ist, ist das ein gutes Indiz dafür, dass Ihre Anfragen und "
-"Tabellen korrekt indiziert sind."
-
-#: libraries/messages.inc.php:76
-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 ""
-"Anzahl der Anfragen, die nächste Zeile in der Reihenfolge des Schlüssels zu "
-"lesen. Dieser Wert wird herauf gezählt, wenn Sie eine Index-Spalte mit einer "
-"Bereichsbeschränkung (Limit) abfragen. Er wird ebenfalls herauf gezählt, "
-"wenn Sie einen Index-Scan durchführen."
-
-#: libraries/messages.inc.php:77
-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 ""
-"Anzahl der Anfragen, die vorhergehende Zeile in der Reihenfolge des "
-"Schlüssels zu lesen. Diese Lese-Methode ist hauptsächlich zur Optimierung "
-"von ORDER BY ... DESC."
-
-#: libraries/messages.inc.php:78
-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 "
-"probably have a lot of queries that require MySQL to scan whole tables or "
-"you have joins that don't use keys properly."
-msgstr ""
-"Anzahl der Anfragen, eine Zeile basierend auf einer festen Position zu "
-"lesen. Dieser Wert wird hoch sein, wenn Sie viele Anfragen ausführen, die "
-"erfordern, dass das Ergebnis sortiert wird. Wenn Handler_read_rnd hoch ist, "
-"haben Sie wahrscheinlich viele Anfragen, die MySQL zwingen, ganze Tabellen "
-"zu scannen, oder Sie haben Joins, die Schlüssel nicht richtig benutzen."
-
-#: libraries/messages.inc.php:79
-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 "
-"tables are not properly indexed or that your queries are not written to take "
-"advantage of the indexes you have."
-msgstr ""
-"Anzahl der Anfragen, die nächste Zeile in der Daten-Datei zu lesen. Dieser "
-"Wert wird hoch sein, wenn Sie viele Tabellen-Scans durchführen. Im "
-"Allgemeinen weist das darauf hin, dass Ihre Tabellen nicht korrekt indiziert "
-"sind, oder dass Ihre Anfragen nicht so geschrieben sind, dass Sie Vorteile "
-"aus den Indexen ziehen, die Sie haben."
-
-#: libraries/messages.inc.php:80
-msgid "The number of internal ROLLBACK statements."
-msgstr "Anzahl der Anfragen, ein ROLLBACK auszuführen."
-
-#: libraries/messages.inc.php:81
-msgid "The number of requests to update a row in a table."
-msgstr "Anzahl der Anfragen, eine Zeile in einer Tabelle zu aktualisieren."
-
-#: libraries/messages.inc.php:82
-msgid "The number of requests to insert a row in a table."
-msgstr "Anzahl der Anfragen, eine Zeile in eine Tabelle einzufügen."
-
-#: libraries/messages.inc.php:83
-msgid "The number of pages containing data (dirty or clean)."
-msgstr ""
-"Anzahl der Seiten, die Daten enthalten (ob "dirty" oder nicht)."
-
-#: libraries/messages.inc.php:84
-msgid "The number of pages currently dirty."
-msgstr "Anzahl der als "dirty" markierten Seiten."
-
-#: libraries/messages.inc.php:85
-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/messages.inc.php:86
-msgid "The number of free pages."
-msgstr "Anzahl der unbenutzten Seiten."
-
-#: libraries/messages.inc.php:87
-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 ""
-"Anzahl der belegten Seiten. Diese Seiten werden gerade gelesen oder "
-"beschrieben oder können aus einem anderen Grund nicht zurückgeschrieben oder "
-"entfernt werden können."
-
-#: libraries/messages.inc.php:88
-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 "
-"be calculated as Innodb_buffer_pool_pages_total - "
-"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data."
-msgstr ""
-"Anzahl der durch administrativen Overhead, wie z. B. Zeilensperren oder den "
-"adaptiven Hash-Index ausgelasteten Seiten. Dieser Wert errechnet sich auch "
-"aus Innodb_buffer_pool_pages_total - Innodb_buffer_pool_pages_free - "
-"Innodb_buffer_pool_pages_data."
-
-#: libraries/messages.inc.php:89
-msgid "Total size of buffer pool, in pages."
-msgstr "Die Größe des Puffer-Pools in Seiten."
-
-#: libraries/messages.inc.php:90
-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 ""
-"Anzahl \"random\" read-aheads durch InnoDB. Dies geschieht wenn eine Abfrage "
-"einen großen Teil einer Tabelle durchsucht aber in zufälliger Reihenfolge."
-
-#: libraries/messages.inc.php:91
-msgid ""
-"The number of sequential read-aheads InnoDB initiated. This happens when "
-"InnoDB does a sequential full table scan."
-msgstr ""
-"Anzahl sequentieller read-aheads durch InnoDB. Dies geschieht wenn InnoDB "
-"eine Tabelle komplett sequentiell durchsucht."
-
-#: libraries/messages.inc.php:92
-msgid "The number of logical read requests InnoDB has done."
-msgstr "Anzahl angeforderter Lesevorgängen durch InnoDB."
-
-#: libraries/messages.inc.php:93
-msgid ""
-"The number of logical reads that InnoDB could not satisfy from buffer pool "
-"and had to do a single-page read."
-msgstr ""
-"Anzahl an Lesevorgängen die InnoDB nicht aus dem Zwischenspeicher bedienen "
-"konnte und deshalb einen Einzel-Seiten-Lesevorgang starten musste."
-
-#: libraries/messages.inc.php:94
-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 "
-"available, it's necessary to wait for pages to be flushed first. This "
-"counter counts instances of these waits. If the buffer pool size was set "
-"properly, this value should be small."
-msgstr ""
-"Normalerweise geschehen Schreibvorgänge im InnoDB Zwischenspeicher im "
-"Hintergrund. Abber wenn es nötig ist eine Seite zu lesen oder zu erstellen "
-"und es ist keine saubere Seite verfügbar dann ist es notwendig darauf zu "
-"warten das Seiten weggeschrieben werden. Dieser Wert gibt wieder wie oft das "
-"geschehen ist. Wenn die Zwischenspeicher-Größe korrekt eingestellt ist "
-"sollte dieser Wert klein sein."
-
-#: libraries/messages.inc.php:95
-msgid "The number writes done to the InnoDB buffer pool."
-msgstr "Anzahl der Schreibvorgänge im InnoDB Zwischenspeicher."
-
-#: libraries/messages.inc.php:96
-msgid "The number of fsync() operations so far."
-msgstr "Bisher ausgeführte fsync()-Operationen."
-
-#: libraries/messages.inc.php:97
-msgid "The current number of pending fsync() operations."
-msgstr "Momentan anstehende fsync()-Operationen."
-
-#: libraries/messages.inc.php:98
-msgid "The current number of pending reads."
-msgstr "Momentan anstehende Lesezugriffe."
-
-#: libraries/messages.inc.php:99
-msgid "The current number of pending writes."
-msgstr "Momentan anstehende Schreizugriffe."
-
-#: libraries/messages.inc.php:100
-msgid "The amount of data read so far, in bytes."
-msgstr "Wieviel Daten bisher gelesen wurden, in Byte."
-
-#: libraries/messages.inc.php:101
-msgid "The total number of data reads."
-msgstr "Wie oft Daten gelesen wurden."
-
-#: libraries/messages.inc.php:102
-msgid "The total number of data writes."
-msgstr "Wie oft Daten geschrieben wurden."
-
-#: libraries/messages.inc.php:103
-msgid "The amount of data written so far, in bytes."
-msgstr "Wieviel Daten bisher geschrieben wurden, in Byte."
-
-#: libraries/messages.inc.php:104
-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/messages.inc.php:105
-msgid "The number of doublewrite operations that have been performed."
-msgstr ""
-"Anzahl der ausgeführten \"doublewrite\" Schreibzugriffe und die Anzahl der "
-"Seiten die dafür geschrieben wurden."
-
-#: libraries/messages.inc.php:106
-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 ""
-"Wie oft gewartet werden musste weil der Protokoll-Zwischenspeicher zu klein "
-"war und deshalb gewartet wurde das er geleert wird."
-
-#: libraries/messages.inc.php:107
-msgid "The number of log write requests."
-msgstr "Anzahl der Schreibzugriffe für die Protokoll-Datei."
-
-#: libraries/messages.inc.php:108
-msgid "The number of physical writes to the log file."
-msgstr "Anzahl der tatsächlichen Schreibvorgänge der Protokoll-Datei."
-
-#: libraries/messages.inc.php:109
-msgid "The number of fsync() writes done to the log file."
-msgstr "Getätigte fsyncs Schreibzugriffe für die Protokoll-Datei."
-
-#: libraries/messages.inc.php:110
-msgid "The number of pending log file fsyncs."
-msgstr "Anstehende \"fsyncs\" für die Protokoll-Datei."
-
-#: libraries/messages.inc.php:111
-msgid "Pending log file writes."
-msgstr "Anstehende Schreibzugriffe für die Protokoll-Datei."
-
-#: libraries/messages.inc.php:112
-msgid "The number of bytes written to the log file."
-msgstr "Anzahl an Byte die in die Protokoll-Datei geschrieben wurden."
-
-#: libraries/messages.inc.php:113
-msgid "The number of pages created."
-msgstr "Anzahl erstellter Seiten."
-
-#: libraries/messages.inc.php:114
-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 ""
-"Die fest kompilierte InnnoDB Seitengröße (Standard 16 KiB). Viele Werte "
-"werden in Seiten gezählt; die Seitengröße erlaubt es diese einfach in Byte "
-"umzurechnen."
-
-#: libraries/messages.inc.php:115
-msgid "The number of pages read."
-msgstr "Anzahl gelesener Seiten."
-
-#: libraries/messages.inc.php:116
-msgid "The number of pages written."
-msgstr "Anzahl geschriebener Seiten."
-
-#: libraries/messages.inc.php:117
-msgid "The number of row locks currently being waited for."
-msgstr "Momentan anstehende Zeilen-Sperren."
-
-#: libraries/messages.inc.php:118
-msgid "The average time to acquire a row lock, in milliseconds."
-msgstr ""
-"Durchschnittliche Wartezeite um eine Zeilen-Sperre zu bekommen, in "
-"Millisekunden."
-
-#: libraries/messages.inc.php:119
-msgid "The total time spent in acquiring row locks, in milliseconds."
-msgstr ""
-"Summe aller Wartezeiten um Zeilen-Sperren zu bekommen, in Millisekunden."
-
-#: libraries/messages.inc.php:120
-msgid "The maximum time to acquire a row lock, in milliseconds."
-msgstr ""
-"Längste Wartezeite um eine Zeilen-Sperre zu bekommen, in Millisekunden."
-
-#: libraries/messages.inc.php:121
-msgid "The number of times a row lock had to be waited for."
-msgstr "Wie oft auf ein Zeilen-Sperre gewartet werden musste."
-
-#: libraries/messages.inc.php:122
-msgid "The number of rows deleted from InnoDB tables."
-msgstr "Anzahl gelöschter Zeilen aller InnoDB Tabellen."
-
-#: libraries/messages.inc.php:123
-msgid "The number of rows inserted in InnoDB tables."
-msgstr "Anzahl der eingefügten Zeilen in alle InnoDB Tabellen."
-
-#: libraries/messages.inc.php:124
-msgid "The number of rows read from InnoDB tables."
-msgstr "Anzahl der Zeilen, die aus InnoDB-Tabellen gelesen wurden."
-
-#: libraries/messages.inc.php:125
-msgid "The number of rows updated in InnoDB tables."
-msgstr "Anzahl der Zeilen, die in InnoDB-Tabellen aktualisiert wurden."
-
-#: libraries/messages.inc.php:126
-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 ""
-"Schlüssel-Blöcke im Schlüssel-Cache, die verändert wurden, aber noch nicht "
-"auf die Platte zurück geschrieben (flush) wurden; auch bekannt als "
-"Not_flushed_key_blocks."
-
-#: libraries/messages.inc.php:127
-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 ""
-"Die Anzahl der unbenutzten Schlüssel-Blöcke im Schlüssel-Cache. Dieser Wert "
-"kann dazu dienen die Auslastung des Schlüssel-Cache zu bestimmen."
-
-#: libraries/messages.inc.php:128
-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 ""
-"Die Anzahl der maximal gleichzeitig benutzten Blocks im Schlüssel-Cache."
-
-#: libraries/messages.inc.php:129
-msgid "The number of requests to read a key block from the cache."
-msgstr "Die Anzahl der Anfragen, einen Schlüssel-Block aus dem Cache zu lesen."
-
-#: libraries/messages.inc.php:130
-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 ""
-"Die Anzahl physikalischer Lesezugriffe eines Schlüssel-Blocks von der "
-"Platte. Wenn key_reads hoch ist, ist Ihr key_cache wahrscheinlich zu klein. "
-"Die Cache-Zugriffsrate kann mit key_reads / key_read_requests berechnet "
-"werden."
-
-#: libraries/messages.inc.php:131
-msgid "The number of requests to write a key block to the cache."
-msgstr ""
-"Die Anzahl der Anfragen, einen Schlüssel-Block in den Cache zu schreiben."
-
-#: libraries/messages.inc.php:132
-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/messages.inc.php:133
-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 ""
-"Die Kosten für die zuletzt verarbeitete Abfrage wie vom Abfrage-Optimierer "
-"berechnet. Nützlich um verschiedene Formulierungen für eine Abfrage zu "
-"vergleichen. Der Wert 0 besagt das bisher keine Abfrage übersetzt wurde."
-
-#: libraries/messages.inc.php:134
-msgid "The number of rows waiting to be written in INSERT DELAYED queues."
-msgstr ""
-"Anzahl der Zeilen, die in INSERT-DELAYED-Warteschleifen darauf warten, "
-"geschrieben zu werden."
-
-#: libraries/messages.inc.php:135
-msgid ""
-"The number of tables that have been opened. If opened tables is big, your "
-"table cache value is probably too small."
-msgstr ""
-"Anzahl der Tabellen, die geöffnet wurden. Wenn Opened_tables hoch ist, ist "
-"Ihre table_cache-Variable wahrscheinlich zu niedrig."
-
-#: libraries/messages.inc.php:136
-msgid "The number of files that are open."
-msgstr "Anzahl der geöffneten Dateien."
-
-#: libraries/messages.inc.php:137
-msgid "The number of streams that are open (used mainly for logging)."
-msgstr ""
-"Anzahl der geöffneten Streams (hauptsächlich zum Protokolieren benutzt)."
-
-#: libraries/messages.inc.php:138
-msgid "The number of tables that are open."
-msgstr "Anzahl der geöffneten Tabellen."
-
-#: libraries/messages.inc.php:139
-msgid "The number of free memory blocks in query cache."
-msgstr "Freie Speicherblöcke im Abfragen-Cache."
-
-#: libraries/messages.inc.php:140
-msgid "The amount of free memory for query cache."
-msgstr "Freier Speicher im Abfragen-Cache."
-
-#: libraries/messages.inc.php:141
-msgid "The number of cache hits."
-msgstr "Abfrage-Cache-Zugriffsrate."
-
-#: libraries/messages.inc.php:142
-msgid "The number of queries added to the cache."
-msgstr "Die Anzahl der Abfragen die dem Cache hinzugefügt wurden."
-
-#: libraries/messages.inc.php:143
-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 "
-"cache size. The query cache uses a least recently used (LRU) strategy to "
-"decide which queries to remove from the cache."
-msgstr ""
-"Die Anzahl der Abfragen die aus dem Cache entfernt wurden, um Speicher für "
-"neue Abfragen frei zu geben. Dieser Wert kann helfen die Abfrage-Cache-Größe "
-"zu optimieren. Der Abfrage-Cache arbeitet nach der LRU-Strategie (least "
-"recently used), d. h. es wird stets die Abfrage gelöscht, die am "
-"längsten unbenutzt im Cache lag."
-
-#: libraries/messages.inc.php:144
-msgid ""
-"The number of non-cached queries (not cachable, or not cached due to the "
-"query_cache_type setting)."
-msgstr ""
-"Die Anzahl der nicht im Cache eingetragenen Abfragen (nicht möglich, oder "
-"aufgrund der query_cache_type Einstellung)."
-
-#: libraries/messages.inc.php:145
-msgid "The number of queries registered in the cache."
-msgstr "Die Anzahl der Abfragen im Cache."
-
-#: libraries/messages.inc.php:146
-msgid "The total number of blocks in the query cache."
-msgstr "Die Anzahl aller Speicherblöcke im Abfrage-Cache."
-
-#: libraries/messages.inc.php:147
-msgctxt "$strShowStatusReset"
-msgid "Reset"
-msgstr "Zurücksetzen"
-
-#: libraries/messages.inc.php:148
-msgid "The status of failsafe replication (not yet implemented)."
-msgstr "Der Status der ausfallsicheren Replikation."
-
-#: libraries/messages.inc.php:149
-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 ""
-"Anzahl der Joins ohne Schlüssel. Wenn dieser Wert nicht 0 ist sollten die "
-"Indizes der Tabellen sorgfältig überprüft werden."
-
-#: libraries/messages.inc.php:150
-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/messages.inc.php:151
-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 ""
-"Anzahl der Joins ohne Schlüssel, bei denen nach jeder Zeile auf "
-"Schlüsselbenutzung geprüft wurde. Wenn dieser Wert nicht 0 ist sollten die "
-"Indizes der Tabellen sorgfältig überprüft werden."
-
-#: libraries/messages.inc.php:152
-msgid ""
-"The number of joins that used ranges on the first table. (It's normally not "
-"critical even if this is big.)"
-msgstr ""
-"Anzahl der Joins, bei denen Bereiche auf die erste Tabelle benutzt wurden. "
-"(Es ist normalerweise unkritisch, wenn dieser Wert hoch ist.)"
-
-#: libraries/messages.inc.php:153
-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/messages.inc.php:154
-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/messages.inc.php:155
-msgid ""
-"Total (since startup) number of times the replication slave SQL thread has "
-"retried transactions."
-msgstr ""
-"Gesamtzahl (seit Start des Servers) der vom Replikations-Slave-SQL-Thread "
-"wiederversuchten Transaktionen."
-
-#: libraries/messages.inc.php:156
-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/messages.inc.php:157
-msgid ""
-"The number of threads that have taken more than slow_launch_time seconds to "
-"create."
-msgstr ""
-"Anzahl der Prozesse, die länger als slow_launch_time brauchten, um sich zu "
-"verbinden."
-
-#: libraries/messages.inc.php:158
-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/messages.inc.php:159
-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 ""
-"Anzahl der Verschmelzungen (Merge), die von einem Sortiervorgang benötigt "
-"wurden. Wenn dieser Wert hoch ist, sollten Sie in Betracht ziehen, "
-"sort_buffer herauf zu setzen."
-
-#: libraries/messages.inc.php:160
-msgid "The number of sorts that were done with ranges."
-msgstr "Anzahl der Sortiervorgänge, die mit Bereichen durchgeführt wurden."
-
-#: libraries/messages.inc.php:161
-msgid "The number of sorted rows."
-msgstr "Anzahl der sortierten Zeilen."
-
-#: libraries/messages.inc.php:162
-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/messages.inc.php:163
-msgid "The number of times that a table lock was acquired immediately."
-msgstr "Wie oft eine Tabellensperre sofort erlangt wurde."
-
-#: libraries/messages.inc.php:164
-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 "
-"should first optimize your queries, and then either split your table or "
-"tables or use replication."
-msgstr ""
-"Wie oft eine Tabellensperre nicht sofort erlangt werden konnte und gewartet "
-"werden musste. Wenn dieser Wert hoch ist und Sie Performance-Probleme haben, "
-"sollten Sie zunächst Ihre Anfragen optimieren und dann entweder Ihre Tabelle"
-"(n) zerteilen oder Replikation benutzen."
-
-#: libraries/messages.inc.php:165
-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 ""
-"Anzahl der Prozesse im Prozess-Cache. Die Cache-Zugriffsrate kann mit "
-"Threads_created / Connections berechnet werden. Wenn dieser Wert rot ist, "
-"sollte der thread_cache_size erhöht werden."
-
-#: libraries/messages.inc.php:166
-msgid "The number of currently open connections."
-msgstr "Anzahl der momentan offenen Verbindungen."
-
-#: libraries/messages.inc.php:167
-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 "
-"doesn't give a notable performance improvement if you have a good thread "
-"implementation.)"
-msgstr ""
-"Anzahl der Prozesse, die zur Handhabung von Verbindungen erzeugt wurden. "
-"Wenn Threads_created hoch ist, sollten Sie eventuell die Thread_cache_size-"
-"Variable herauf setzen. (Normalerweise ergibt sich daraus keine bemerkbare "
-"Performance-Steigerung wenn eine gute Prozess-Implementierung vorliegt.)"
-
-#: libraries/messages.inc.php:168
-msgid "The number of threads that are not sleeping."
-msgstr "Anzahl der Prozesse, die nicht schlafen."
-
#: libraries/mult_submits.inc.php:76 libraries/tbl_properties.inc.php:513
#: tbl_structure.php:29 tbl_structure.php:153 tbl_structure.php:157
#: tbl_structure.php:473
@@ -4397,8 +3518,8 @@ msgstr ""
#: libraries/replication_gui.lib.php:55 libraries/replication_gui.lib.php:56
#: libraries/replication_gui.lib.php:249 libraries/replication_gui.lib.php:252
-#: libraries/replication_gui.lib.php:259 server_privileges.php:672
-#: server_privileges.php:675 server_privileges.php:682
+#: libraries/replication_gui.lib.php:259 server_privileges.php:711
+#: server_privileges.php:714 server_privileges.php:721
#: server_synchronize.php:1171
msgid "User name"
msgstr "Benutzername"
@@ -4416,11 +3537,11 @@ msgid "Slave status"
msgstr "Slave-Status"
#: libraries/replication_gui.lib.php:114 libraries/sql_query_form.lib.php:445
-#: server_status.php:626 server_variables.php:52
+#: server_status.php:737 server_variables.php:52
msgid "Variable"
msgstr "Variable"
-#: libraries/replication_gui.lib.php:115 server_status.php:627
+#: libraries/replication_gui.lib.php:115 server_status.php:738
#: tbl_change.php:324 tbl_printview.php:370 tbl_select.php:139
#: tbl_structure.php:729
msgid "Value"
@@ -4442,34 +3563,34 @@ msgstr ""
msgid "Add slave replication user"
msgstr "Benutzer für den Replication-Slave hinzufügen"
-#: libraries/replication_gui.lib.php:254 server_privileges.php:677
+#: libraries/replication_gui.lib.php:254 server_privileges.php:716
msgid "Any user"
msgstr "Jeder Benutzer"
#: libraries/replication_gui.lib.php:255 libraries/replication_gui.lib.php:323
-#: libraries/replication_gui.lib.php:346 server_privileges.php:678
-#: server_privileges.php:745 server_privileges.php:769
-#: server_privileges.php:1889 server_privileges.php:1919
+#: libraries/replication_gui.lib.php:346 server_privileges.php:717
+#: server_privileges.php:784 server_privileges.php:808
+#: server_privileges.php:1928 server_privileges.php:1958
msgid "Use text field"
msgstr "Textfeld verwenden"
-#: libraries/replication_gui.lib.php:302 server_privileges.php:725
+#: libraries/replication_gui.lib.php:302 server_privileges.php:764
msgid "Any host"
msgstr "Jeder Host"
-#: libraries/replication_gui.lib.php:306 server_privileges.php:729
+#: libraries/replication_gui.lib.php:306 server_privileges.php:768
msgid "Local"
msgstr "Lokal"
-#: libraries/replication_gui.lib.php:312 server_privileges.php:734
+#: libraries/replication_gui.lib.php:312 server_privileges.php:773
msgid "This Host"
msgstr "Dieser Host"
-#: libraries/replication_gui.lib.php:318 server_privileges.php:740
+#: libraries/replication_gui.lib.php:318 server_privileges.php:779
msgid "Use Host Table"
msgstr "Verwende Hosttabelle"
-#: libraries/replication_gui.lib.php:331 server_privileges.php:753
+#: libraries/replication_gui.lib.php:331 server_privileges.php:792
msgid ""
"When Host table is used, this field is ignored and values stored in Host "
"table are used instead."
@@ -4477,8 +3598,25 @@ msgstr ""
"Wenn die Host-Tabelle aktiv ist, wird dieses Feld ignoriert und stattdessen "
"die Werte aus der Host-Tabelle verwendet."
-#: libraries/select_lang.lib.php:480 libraries/select_lang.lib.php:486
-#: libraries/select_lang.lib.php:492
+#. l10n: Text direction, use either ltr or rtl
+#: libraries/select_lang.lib.php:491
+msgid "ltr"
+msgstr "ltr"
+
+#: libraries/select_lang.lib.php:493
+msgid "Content of table __TABLE__"
+msgstr "Inhalt der Tabelle __TABLE__"
+
+#: libraries/select_lang.lib.php:494
+msgid "(continued)"
+msgstr "(Fortsetzung)"
+
+#: libraries/select_lang.lib.php:495
+msgid "Structure of table __TABLE__"
+msgstr "Struktur der Tabelle __TABLE__"
+
+#: libraries/select_lang.lib.php:500 libraries/select_lang.lib.php:506
+#: libraries/select_lang.lib.php:512
#, php-format
msgid "Unknown language: %1$s."
msgstr "Unbekannte Sprache: \"%1$s\"."
@@ -4489,7 +3627,7 @@ msgid "Servers"
msgstr "Server"
#: libraries/server_links.inc.php:53 server_engines.php:112
-#: server_engines.php:116 server_status.php:304 test/theme.php:105
+#: server_engines.php:116 server_status.php:415 test/theme.php:105
msgid "Variables"
msgstr "Variablen"
@@ -4502,7 +3640,7 @@ msgid "Engines"
msgstr "Formate"
#: libraries/server_links.inc.php:76 server_binlog.php:110
-#: server_status.php:253 test/theme.php:121
+#: server_status.php:364 test/theme.php:121
msgid "Binary log"
msgstr "Binäres Protokoll"
@@ -4992,8 +4130,8 @@ msgstr "Zurücksetzen"
msgid "Protocol version"
msgstr "Protokoll-Version"
-#: main.php:189 server_privileges.php:1350 server_privileges.php:1497
-#: server_privileges.php:1611 server_privileges.php:2029
+#: main.php:189 server_privileges.php:1389 server_privileges.php:1536
+#: server_privileges.php:1650 server_privileges.php:2068
#: server_processlist.php:54
msgid "User"
msgstr "Benutzer"
@@ -5390,7 +4528,7 @@ msgstr "Es wurden %s Datenbanken gelöscht."
msgid "Databases statistics"
msgstr "Statistik über alle Datenbanken"
-#: server_databases.php:117 server_status.php:260
+#: server_databases.php:117 server_status.php:371
#: setup/lib/messages.inc.php:117
msgid "Tables"
msgstr "Tabellen"
@@ -5408,6 +4546,18 @@ msgstr "Slave Replikation"
msgid "Jump to database"
msgstr "Springe zu Datenbank"
+#: server_databases.php:267
+#, fuzzy
+#| msgid "Master replication"
+msgid "Not replicated"
+msgstr "Master Replikation"
+
+#: server_databases.php:273
+#, fuzzy
+#| msgid "Replication"
+msgid "Replicated"
+msgstr "Replikation"
+
#: server_databases.php:289
#, php-format
msgid "Check privileges for database "%s"."
@@ -5441,140 +4591,338 @@ msgstr "Tabellenformate"
msgid "View dump (schema) of databases"
msgstr "Dump (Schema) der Datenbanken anzeigen"
-#: server_privileges.php:263 server_privileges.php:264
+#: server_privileges.php:24 server_privileges.php:266
+msgid "Includes all privileges except GRANT."
+msgstr "Enthält alle Rechte bis auf GRANT."
+
+#: server_privileges.php:25 server_privileges.php:192
+#: server_privileges.php:515
+msgid "Allows altering the structure of existing tables."
+msgstr "Erlaubt das Verändern der Struktur bestehender Tabellen."
+
+#: server_privileges.php:26 server_privileges.php:208
+#: server_privileges.php:521
+msgid "Allows altering and dropping stored routines."
+msgstr "Erlaubt das Verändern und Löschen von Routinen."
+
+#: server_privileges.php:27 server_privileges.php:184
+#: server_privileges.php:514
+msgid "Allows creating new databases and tables."
+msgstr "Erlaubt das Erstellen neuer Datenbanken und Tabellen."
+
+#: server_privileges.php:28 server_privileges.php:207
+#: server_privileges.php:520
+msgid "Allows creating stored routines."
+msgstr "Erlaubt das Erstellen von gespeicherten Routinen."
+
+#: server_privileges.php:29 server_privileges.php:514
+msgid "Allows creating new tables."
+msgstr "Erlaubt das Erstellen neuer Tabellen."
+
+#: server_privileges.php:30 server_privileges.php:195
+#: server_privileges.php:518
+msgid "Allows creating temporary tables."
+msgstr "Erlaubt das Erstellen temporärer Tabellen."
+
+#: server_privileges.php:31 server_privileges.php:209
+#: server_privileges.php:554
+msgid "Allows creating, dropping and renaming user accounts."
+msgstr "Erlaubt das Erstellen, Löschen und Umbenennen von Benutzern."
+
+#: server_privileges.php:32 server_privileges.php:199
+#: server_privileges.php:203 server_privileges.php:526
+#: server_privileges.php:530
+msgid "Allows creating new views."
+msgstr "Erlaubt das Erstellen von Views."
+
+#: server_privileges.php:33 server_privileges.php:183
+#: server_privileges.php:506
+msgid "Allows deleting data."
+msgstr "Erlaubt das Löschen von Daten."
+
+#: server_privileges.php:34 server_privileges.php:185
+#: server_privileges.php:517
+msgid "Allows dropping databases and tables."
+msgstr "Erlaubt das Löschen ganzer Datenbanken und Tabellen."
+
+#: server_privileges.php:35 server_privileges.php:517
+msgid "Allows dropping tables."
+msgstr "Erlaubt das Löschen ganzer Tabellen."
+
+#: server_privileges.php:36 server_privileges.php:200
+#: server_privileges.php:534
+msgid "Allows to set up events for the event scheduler"
+msgstr "Erlaubt das Anlegen von Events für den Event-Scheduler"
+
+#: server_privileges.php:37 server_privileges.php:210
+#: server_privileges.php:522
+msgid "Allows executing stored routines."
+msgstr "Erlaubt das Ausführen von Routinen."
+
+#: server_privileges.php:38 server_privileges.php:189
+#: server_privileges.php:509
+msgid "Allows importing data from and exporting data into files."
+msgstr ""
+"Erlaubt das Importieren von Daten aus und das Exportieren in externe Dateien."
+
+#: server_privileges.php:39 server_privileges.php:540
+msgid ""
+"Allows adding users and privileges without reloading the privilege tables."
+msgstr ""
+"Erlaubt das Hinzufügen von Benutzern und Rechten ohne den die "
+"Benutzerprofile neu laden zu müssen."
+
+#: server_privileges.php:40 server_privileges.php:191
+#: server_privileges.php:516
+msgid "Allows creating and dropping indexes."
+msgstr "Erlaubt das Erstellen und Löschen von Indizes."
+
+#: server_privileges.php:41 server_privileges.php:181
+#: server_privileges.php:442 server_privileges.php:504
+msgid "Allows inserting and replacing data."
+msgstr "Erlaubt das Hinzufügen und Ersetzen von Daten."
+
+#: server_privileges.php:42 server_privileges.php:196
+#: server_privileges.php:549
+msgid "Allows locking tables for the current thread."
+msgstr "Erlaubt die Sperrung bestimmter Tabellen."
+
+#: server_privileges.php:43 server_privileges.php:646
+#: server_privileges.php:648
+msgid "Limits the number of new connections the user may open per hour."
+msgstr ""
+"Begrenzt die Anzahl neuer Verbindungen, welche ein Benutzer pro Stunde "
+"aufbauen darf."
+
+#: server_privileges.php:44 server_privileges.php:634
+#: server_privileges.php:636
+msgid "Limits the number of queries the user may send to the server per hour."
+msgstr ""
+"Begrenzt die Anzahl der Abfragen, welche ein Benutzer pro Stunde senden darf."
+
+#: server_privileges.php:45 server_privileges.php:640
+#: server_privileges.php:642
+msgid ""
+"Limits the number of commands that change any table or database the user may "
+"execute per hour."
+msgstr ""
+"Begrenzt die Anzahl der Veränderungen, welche ein Benutzer pro Stunde an "
+"allen Datenbanken und Tabellen vornehmen darf."
+
+#: server_privileges.php:46 server_privileges.php:652
+#: server_privileges.php:654
+msgid "Limits the number of simultaneous connections the user may have."
+msgstr ""
+"Beschränkt die Anzahl der gleichzeitigen Verbindungen für diesen Benutzer."
+
+#: server_privileges.php:47 server_privileges.php:188
+#: server_privileges.php:544
+msgid "Allows viewing processes of all users"
+msgstr "Erlaubt die Anzeige der Prozesse aller Benutzer"
+
+#: server_privileges.php:48 server_privileges.php:190
+#: server_privileges.php:448 server_privileges.php:550
+msgid "Has no effect in this MySQL version."
+msgstr "Hat keinen Effekt in dieser MySQL-Version."
+
+#: server_privileges.php:49 server_privileges.php:186
+#: server_privileges.php:545
+msgid "Allows reloading server settings and flushing the server's caches."
+msgstr ""
+"Erlaubt das erneute Laden von Servereinstellungen und das Leeren der "
+"Zwischenspeicher zur Laufzeit."
+
+#: server_privileges.php:50 server_privileges.php:198
+#: server_privileges.php:552
+msgid "Allows the user to ask where the slaves / masters are."
+msgstr ""
+"Erlaubt dem Benutzer zu fragen, wo sich die Master- bzw. Slave-Systeme "
+"befinden"
+
+#: server_privileges.php:51 server_privileges.php:197
+#: server_privileges.php:553
+msgid "Needed for the replication slaves."
+msgstr "Wird für die Replication-Slave-Systeme benötigt."
+
+#: server_privileges.php:52 server_privileges.php:180
+#: server_privileges.php:439 server_privileges.php:503
+msgid "Allows reading data."
+msgstr "Erlaubt das Auslesen von Daten."
+
+#: server_privileges.php:53 server_privileges.php:193
+#: server_privileges.php:547
+msgid "Gives access to the complete list of databases."
+msgstr "Gewährt Zugang zur vollständigen Datenbankliste."
+
+#: server_privileges.php:54 server_privileges.php:204
+#: server_privileges.php:206 server_privileges.php:519
+msgid "Allows performing SHOW CREATE VIEW queries."
+msgstr "Erlaubt das Ausführen von 'SHOW CREATE VIEW'."
+
+#: server_privileges.php:55 server_privileges.php:187
+#: server_privileges.php:546
+msgid "Allows shutting down the server."
+msgstr "Erlaubt das Beenden des Servers."
+
+#: server_privileges.php:56 server_privileges.php:194
+#: server_privileges.php:543
+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 ""
+"Erlaubt eine Verbindung, selbst wenn die maximale Anzahl an Verbindungen "
+"bereits erreicht ist; Wird für viele administrative Operationen, wie das "
+"Setzen globaler Variables oder das Beenden fremder Prozesse, vorausgesetzt."
+
+#: server_privileges.php:57 server_privileges.php:201
+#: server_privileges.php:535
+msgid "Allows creating and dropping triggers"
+msgstr "Erlaubt das Erzeugen und Löschen Triggern"
+
+#: server_privileges.php:58 server_privileges.php:182
+#: server_privileges.php:445 server_privileges.php:505
+msgid "Allows changing data."
+msgstr "Erlaubt das Verändern von gespeicherten Daten."
+
+#: server_privileges.php:59 server_privileges.php:260
+msgid "No privileges."
+msgstr "Keine Rechte."
+
+#: server_privileges.php:302 server_privileges.php:303
msgctxt "None privileges"
msgid "None"
msgstr "Kein(e)"
-#: server_privileges.php:392 server_privileges.php:527
-#: server_privileges.php:1679 server_privileges.php:1685
+#: server_privileges.php:431 server_privileges.php:566
+#: server_privileges.php:1718 server_privileges.php:1724
msgid "Table-specific privileges"
msgstr "Tabellenspezifische Rechte"
-#: server_privileges.php:393 server_privileges.php:535
-#: server_privileges.php:1501
+#: server_privileges.php:432 server_privileges.php:574
+#: server_privileges.php:1540
msgid " Note: MySQL privilege names are expressed in English "
msgstr "MySQL-Rechte werden auf Englisch angegeben."
-#: server_privileges.php:524 server_privileges.php:1500
+#: server_privileges.php:563 server_privileges.php:1539
msgid "Global privileges"
msgstr "Globale Rechte"
-#: server_privileges.php:526 server_privileges.php:1679
+#: server_privileges.php:565 server_privileges.php:1718
msgid "Database-specific privileges"
msgstr "Datenbankspezifische Rechte"
-#: server_privileges.php:571
+#: server_privileges.php:610
msgid "Administration"
msgstr "Administration"
-#: server_privileges.php:591
+#: server_privileges.php:630
msgid "Resource limits"
msgstr "Ressourcenbeschränkungen"
-#: server_privileges.php:592
+#: server_privileges.php:631
msgid "Note: Setting these options to 0 (zero) removes the limit."
msgstr "Der Wert 0 (null) entfernt die Beschränkung."
-#: server_privileges.php:669
+#: server_privileges.php:708
msgid "Login Information"
msgstr "Anmelde-Informationen"
-#: server_privileges.php:763
+#: server_privileges.php:802
msgid "Do not change the password"
msgstr "Passwort nicht verändert"
-#: server_privileges.php:804 server_privileges.php:2166
+#: server_privileges.php:843 server_privileges.php:2205
msgid "No user found."
msgstr "Es wurde kein Benutzer gefunden."
-#: server_privileges.php:848
+#: server_privileges.php:887
#, php-format
msgid "The user %s already exists!"
msgstr "Der Benutzer %s existiert bereits!"
-#: server_privileges.php:931
+#: server_privileges.php:970
msgid "You have added a new user."
msgstr "Der Benutzer wurde hinzugefügt."
-#: server_privileges.php:1152
+#: server_privileges.php:1191
#, php-format
msgid "You have updated the privileges for %s."
msgstr "Die Rechte für %s wurden geändert."
-#: server_privileges.php:1176
+#: server_privileges.php:1215
#, php-format
msgid "You have revoked the privileges for %s"
msgstr "Sie haben die Rechte für %s entfernt."
-#: server_privileges.php:1212
+#: server_privileges.php:1251
#, php-format
msgid "The password for %s was changed successfully."
msgstr "Das Passwort für %s wurde geändert."
-#: server_privileges.php:1232
+#: server_privileges.php:1271
#, php-format
msgid "Deleting %s"
msgstr "Lösche %s"
-#: server_privileges.php:1243
+#: server_privileges.php:1282
msgid "No users selected for deleting!"
msgstr "Es wurden keine Benutzer zum Löschen ausgewählt!"
-#: server_privileges.php:1246
+#: server_privileges.php:1285
msgid "Reloading the privileges"
msgstr "Lade die Benutzertabellen neu"
-#: server_privileges.php:1261
+#: server_privileges.php:1300
msgid "The selected users have been deleted successfully."
msgstr "Die gewählten Benutzer wurden gelöscht."
-#: server_privileges.php:1296
+#: server_privileges.php:1335
msgid "The privileges were reloaded successfully."
msgstr "Die Benutzerprofile wurden neu geladen."
-#: server_privileges.php:1324 server_privileges.php:1610
+#: server_privileges.php:1363 server_privileges.php:1649
msgid "Edit Privileges"
msgstr "Rechte ändern"
-#: server_privileges.php:1333
+#: server_privileges.php:1372
msgid "Revoke"
msgstr "Entfernen"
-#: server_privileges.php:1365
+#: server_privileges.php:1404
msgid "User overview"
msgstr "Benutzerübersicht"
-#: server_privileges.php:1502 server_privileges.php:1684
-#: server_privileges.php:2033
+#: server_privileges.php:1541 server_privileges.php:1723
+#: server_privileges.php:2072
msgid "Grant"
msgstr "GRANT"
-#: server_privileges.php:1521 server_privileges.php:2123
+#: server_privileges.php:1560 server_privileges.php:2162
msgid "Any"
msgstr "Jeder"
-#: server_privileges.php:1570 server_privileges.php:1594
-#: server_privileges.php:1988 server_privileges.php:2177
+#: server_privileges.php:1609 server_privileges.php:1633
+#: server_privileges.php:2027 server_privileges.php:2216
msgid "Add a new User"
msgstr "Neuen Benutzer hinzufügen"
-#: server_privileges.php:1575
+#: server_privileges.php:1614
msgid "Remove selected users"
msgstr "Die ausgewählten Benutzer löschen"
-#: server_privileges.php:1578
+#: server_privileges.php:1617
msgid "Revoke all active privileges from the users and delete them afterwards."
msgstr ""
"Den Benutzern alle Rechte entziehen und sie anschließend aus den "
"Benutzertabellen löschen."
-#: server_privileges.php:1579 server_privileges.php:1580
-#: server_privileges.php:1581
+#: server_privileges.php:1618 server_privileges.php:1619
+#: server_privileges.php:1620
msgid "Drop the databases that have the same names as the users."
msgstr "Die gleichnamigen Datenbanken löschen."
-#: server_privileges.php:1597
+#: server_privileges.php:1636
#, php-format
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
@@ -5588,93 +4936,93 @@ msgstr ""
"vorgenommen wurden. In diesem Fall sollten Sie %sdie Benutzerprofile neu "
"laden%s bevor Sie fortfahren."
-#: server_privileges.php:1645
+#: server_privileges.php:1684
msgid "The selected user was not found in the privilege table."
msgstr "Der gewählte Benutzer wurde in der Benutzertabelle nicht gefunden."
-#: server_privileges.php:1685
+#: server_privileges.php:1724
msgid "Column-specific privileges"
msgstr "Spaltenspezifische Rechte"
-#: server_privileges.php:1886
+#: server_privileges.php:1925
msgid "Add privileges on the following database"
msgstr "Rechte zu folgender Datenbank hinzufügen"
-#: server_privileges.php:1904
+#: server_privileges.php:1943
msgid "Wildcards % and _ should be escaped with a \\ to use them literally"
msgstr ""
"Platzhalter _ und % sollten mit einem \\ escaped werden, um das gewünschte "
"Sonderzeichen einzubinden"
-#: server_privileges.php:1907
+#: server_privileges.php:1946
msgid "Add privileges on the following table"
msgstr "Rechte zu folgender Tabelle hinzufügen"
-#: server_privileges.php:1964
+#: server_privileges.php:2003
msgid "Change Login Information / Copy User"
msgstr "Anmelde-Information ändern / Benutzer kopieren"
-#: server_privileges.php:1967
+#: server_privileges.php:2006
msgid "Create a new user with the same privileges and ..."
msgstr "Erstelle einen neuen Benutzer mit identischen Rechten und ..."
-#: server_privileges.php:1969
+#: server_privileges.php:2008
msgid "... keep the old one."
msgstr "... behalte den alten bei."
-#: server_privileges.php:1970
+#: server_privileges.php:2009
msgid " ... delete the old one from the user tables."
msgstr " ... lösche den alten von den Benutzertabellen."
-#: server_privileges.php:1971
+#: server_privileges.php:2010
msgid ""
" ... revoke all active privileges from the old one and delete it afterwards."
msgstr " ... entziehe dem alten alle Rechte und lösche ihn anschließend."
-#: server_privileges.php:1972
+#: server_privileges.php:2011
msgid ""
" ... delete the old one from the user tables and reload the privileges "
"afterwards."
msgstr " ... lösche den alten und lade anschließend die Benutzertabellen neu."
-#: server_privileges.php:1994
+#: server_privileges.php:2033
msgid "Database for user"
msgstr "Datenbank für Benutzer"
-#: server_privileges.php:1998
+#: server_privileges.php:2037
msgctxt "Create none database for user"
msgid "None"
msgstr "Kein(e)"
-#: server_privileges.php:1999
+#: server_privileges.php:2038
msgid "Create database with same name and grant all privileges"
msgstr "Erstelle eine Datenbank mit gleichem Namen und gewähre alle Rechte"
-#: server_privileges.php:2000
+#: server_privileges.php:2039
msgid "Grant all privileges on wildcard name (username\\_%)"
msgstr ""
"Gewähre alle Rechte auf Datenbanken die mit dem Benuterznamen beginnen "
"(username\\_%)"
-#: server_privileges.php:2003
+#: server_privileges.php:2042
#, php-format
msgid "Grant all privileges on database "%s""
msgstr "Gewähre alle Rechte auf die Datenbank "%s""
-#: server_privileges.php:2026
+#: server_privileges.php:2065
#, php-format
msgid "Users having access to "%s""
msgstr "Benutzer mit Zugriff auf "%s""
-#: server_privileges.php:2134
+#: server_privileges.php:2173
msgid "global"
msgstr "global"
-#: server_privileges.php:2136
+#: server_privileges.php:2175
msgid "database-specific"
msgstr "datenbankspezifisch"
-#: server_privileges.php:2138
+#: server_privileges.php:2177
msgid "wildcard"
msgstr "Platzhalter"
@@ -5723,7 +5071,7 @@ msgid "This server is configured as master in a replication process."
msgstr ""
"Dieser Server ist als Master in einem Replikations-Prozess konfiguriert."
-#: server_replication.php:184 server_status.php:281
+#: server_replication.php:184 server_status.php:392
msgid "Show master status"
msgstr "Zeige den Master-Status"
@@ -5876,81 +5224,745 @@ msgstr ""
"Dieser Server ist nicht als Slave in einem Replikationsprozess konfiguriert. "
"Möchten Sie ihn konfigurieren ?"
+#: server_status.php:40
+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 ""
+"Anzahl der Transaktionen die den Binarylog-Cache verwendet, aber die Größe "
+"des Binarylog-Caches (binlog_cache_size) überschritten und eine temporäre "
+"Datei verwendet haben um die Statements der Transaktion zu speichern."
+
+#: server_status.php:41
+msgid "The number of transactions that used the temporary binary log cache."
+msgstr ""
+"Anzahl der Transaktionen, die den temporären Binarylog-Cache verwendet haben."
+
+#: server_status.php:42
+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 "
+"to increase the tmp_table_size value to cause temporary tables to be memory-"
+"based instead of disk-based."
+msgstr ""
+"Anzahl der (implizit) auf der Platte erzeugten temporären Tabellen bei der "
+"Ausführung von Statements. Wenn Created_tmp_disk_tables hoch ist, sollten "
+"Sie eventuell die Variable tmp_table_size herauf setzen, damit temporäre "
+"Tabellen im Speicher erzeugt werden statt auf der Festplatte."
+
+#: server_status.php:43
+msgid "How many temporary files mysqld has created."
+msgstr "Anzahl der temporären Dateien, die mysqld erzeugt hat."
+
+#: server_status.php:44
+msgid ""
+"The number of in-memory temporary tables created automatically by the server "
+"while executing statements."
+msgstr ""
+"Anzahl der (implizit) im Arbeitsspeicher erzeugten temporären Tabellen bei "
+"der Ausführung von Statements."
+
+#: server_status.php:45
+msgid ""
+"The number of rows written with INSERT DELAYED for which some error occurred "
+"(probably duplicate key)."
+msgstr ""
+"Anzahl der Zeilen, die mit INSERT DELAYED geschrieben wurden, und bei denen "
+"ein Fehler auftrat (z. B. duplicate key)."
+
#: server_status.php:46
+msgid ""
+"The number of INSERT DELAYED handler threads in use. Every different table "
+"on which one uses INSERT DELAYED gets its own thread."
+msgstr ""
+"Anzahl der verzögerten Insert-Handler-Prozesse in Benutzung. Jede einzelne "
+"Tabelle mit verzögerten Inserts bekommt einen eigenen Prozess."
+
+#: server_status.php:47
+msgid "The number of INSERT DELAYED rows written."
+msgstr "Anzahl der Zeilen, die mit INSERT DELAYED geschrieben wurden."
+
+#: server_status.php:48
+msgid "The number of executed FLUSH statements."
+msgstr "Anzahl der ausgeführten FLUSH-Befehle."
+
+#: server_status.php:49
+msgid "The number of internal COMMIT statements."
+msgstr "Anzahl der Anfragen, ein COMMIT auszuführen."
+
+#: server_status.php:50
+msgid "The number of times a row was deleted from a table."
+msgstr "Anzahl der Zeilen, die aus Tabellen gelöscht wurden."
+
+#: server_status.php:51
+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 ""
+"Anzahl der gesuchten und gefundenen (discovered) Tabellen. Der MySQL-Server "
+"kann die NDB-Cluster-Storage-Engine fragen, ob sie eine bestimmte Tabelle "
+"kennt. Dieser Vorgang wird "discovery" genannt."
+
+#: server_status.php:52
+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 ""
+"Wie oft der erste Eintrag aus einem Index gelesen wurde. Ein hoher Wert hier "
+"deutet darauf hin, dass der Server viele komplette Index-Scans macht (zum "
+"Beispiel SELECT spalte1 FROM foo, unter der Annahme, dass spalte1 indiziert "
+"ist)."
+
+#: server_status.php:53
+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 ""
+"Anzahl der Anfragen, eine Zeile basierend auf einem Schlüssel zu lesen. Wenn "
+"dieser Wert hoch ist, ist das ein gutes Indiz dafür, dass Ihre Anfragen und "
+"Tabellen korrekt indiziert sind."
+
+#: server_status.php:54
+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 ""
+"Anzahl der Anfragen, die nächste Zeile in der Reihenfolge des Schlüssels zu "
+"lesen. Dieser Wert wird herauf gezählt, wenn Sie eine Index-Spalte mit einer "
+"Bereichsbeschränkung (Limit) abfragen. Er wird ebenfalls herauf gezählt, "
+"wenn Sie einen Index-Scan durchführen."
+
+#: server_status.php:55
+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 ""
+"Anzahl der Anfragen, die vorhergehende Zeile in der Reihenfolge des "
+"Schlüssels zu lesen. Diese Lese-Methode ist hauptsächlich zur Optimierung "
+"von ORDER BY ... DESC."
+
+#: server_status.php:56
+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 "
+"probably have a lot of queries that require MySQL to scan whole tables or "
+"you have joins that don't use keys properly."
+msgstr ""
+"Anzahl der Anfragen, eine Zeile basierend auf einer festen Position zu "
+"lesen. Dieser Wert wird hoch sein, wenn Sie viele Anfragen ausführen, die "
+"erfordern, dass das Ergebnis sortiert wird. Wenn Handler_read_rnd hoch ist, "
+"haben Sie wahrscheinlich viele Anfragen, die MySQL zwingen, ganze Tabellen "
+"zu scannen, oder Sie haben Joins, die Schlüssel nicht richtig benutzen."
+
+#: server_status.php:57
+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 "
+"tables are not properly indexed or that your queries are not written to take "
+"advantage of the indexes you have."
+msgstr ""
+"Anzahl der Anfragen, die nächste Zeile in der Daten-Datei zu lesen. Dieser "
+"Wert wird hoch sein, wenn Sie viele Tabellen-Scans durchführen. Im "
+"Allgemeinen weist das darauf hin, dass Ihre Tabellen nicht korrekt indiziert "
+"sind, oder dass Ihre Anfragen nicht so geschrieben sind, dass Sie Vorteile "
+"aus den Indexen ziehen, die Sie haben."
+
+#: server_status.php:58
+msgid "The number of internal ROLLBACK statements."
+msgstr "Anzahl der Anfragen, ein ROLLBACK auszuführen."
+
+#: server_status.php:59
+msgid "The number of requests to update a row in a table."
+msgstr "Anzahl der Anfragen, eine Zeile in einer Tabelle zu aktualisieren."
+
+#: server_status.php:60
+msgid "The number of requests to insert a row in a table."
+msgstr "Anzahl der Anfragen, eine Zeile in eine Tabelle einzufügen."
+
+#: server_status.php:61
+msgid "The number of pages containing data (dirty or clean)."
+msgstr ""
+"Anzahl der Seiten, die Daten enthalten (ob "dirty" oder nicht)."
+
+#: server_status.php:62
+msgid "The number of pages currently dirty."
+msgstr "Anzahl der als "dirty" markierten Seiten."
+
+#: server_status.php:63
+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."
+
+#: server_status.php:64
+msgid "The number of free pages."
+msgstr "Anzahl der unbenutzten Seiten."
+
+#: server_status.php:65
+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 ""
+"Anzahl der belegten Seiten. Diese Seiten werden gerade gelesen oder "
+"beschrieben oder können aus einem anderen Grund nicht zurückgeschrieben oder "
+"entfernt werden können."
+
+#: server_status.php:66
+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 "
+"be calculated as Innodb_buffer_pool_pages_total - "
+"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data."
+msgstr ""
+"Anzahl der durch administrativen Overhead, wie z. B. Zeilensperren oder den "
+"adaptiven Hash-Index ausgelasteten Seiten. Dieser Wert errechnet sich auch "
+"aus Innodb_buffer_pool_pages_total - Innodb_buffer_pool_pages_free - "
+"Innodb_buffer_pool_pages_data."
+
+#: server_status.php:67
+msgid "Total size of buffer pool, in pages."
+msgstr "Die Größe des Puffer-Pools in Seiten."
+
+#: server_status.php:68
+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 ""
+"Anzahl \"random\" read-aheads durch InnoDB. Dies geschieht wenn eine Abfrage "
+"einen großen Teil einer Tabelle durchsucht aber in zufälliger Reihenfolge."
+
+#: server_status.php:69
+msgid ""
+"The number of sequential read-aheads InnoDB initiated. This happens when "
+"InnoDB does a sequential full table scan."
+msgstr ""
+"Anzahl sequentieller read-aheads durch InnoDB. Dies geschieht wenn InnoDB "
+"eine Tabelle komplett sequentiell durchsucht."
+
+#: server_status.php:70
+msgid "The number of logical read requests InnoDB has done."
+msgstr "Anzahl angeforderter Lesevorgängen durch InnoDB."
+
+#: server_status.php:71
+msgid ""
+"The number of logical reads that InnoDB could not satisfy from buffer pool "
+"and had to do a single-page read."
+msgstr ""
+"Anzahl an Lesevorgängen die InnoDB nicht aus dem Zwischenspeicher bedienen "
+"konnte und deshalb einen Einzel-Seiten-Lesevorgang starten musste."
+
+#: server_status.php:72
+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 "
+"available, it's necessary to wait for pages to be flushed first. This "
+"counter counts instances of these waits. If the buffer pool size was set "
+"properly, this value should be small."
+msgstr ""
+"Normalerweise geschehen Schreibvorgänge im InnoDB Zwischenspeicher im "
+"Hintergrund. Abber wenn es nötig ist eine Seite zu lesen oder zu erstellen "
+"und es ist keine saubere Seite verfügbar dann ist es notwendig darauf zu "
+"warten das Seiten weggeschrieben werden. Dieser Wert gibt wieder wie oft das "
+"geschehen ist. Wenn die Zwischenspeicher-Größe korrekt eingestellt ist "
+"sollte dieser Wert klein sein."
+
+#: server_status.php:73
+msgid "The number writes done to the InnoDB buffer pool."
+msgstr "Anzahl der Schreibvorgänge im InnoDB Zwischenspeicher."
+
+#: server_status.php:74
+msgid "The number of fsync() operations so far."
+msgstr "Bisher ausgeführte fsync()-Operationen."
+
+#: server_status.php:75
+msgid "The current number of pending fsync() operations."
+msgstr "Momentan anstehende fsync()-Operationen."
+
+#: server_status.php:76
+msgid "The current number of pending reads."
+msgstr "Momentan anstehende Lesezugriffe."
+
+#: server_status.php:77
+msgid "The current number of pending writes."
+msgstr "Momentan anstehende Schreizugriffe."
+
+#: server_status.php:78
+msgid "The amount of data read so far, in bytes."
+msgstr "Wieviel Daten bisher gelesen wurden, in Byte."
+
+#: server_status.php:79
+msgid "The total number of data reads."
+msgstr "Wie oft Daten gelesen wurden."
+
+#: server_status.php:80
+msgid "The total number of data writes."
+msgstr "Wie oft Daten geschrieben wurden."
+
+#: server_status.php:81
+msgid "The amount of data written so far, in bytes."
+msgstr "Wieviel Daten bisher geschrieben wurden, in Byte."
+
+#: server_status.php:82
+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."
+
+#: server_status.php:83
+msgid "The number of doublewrite operations that have been performed."
+msgstr ""
+"Anzahl der ausgeführten \"doublewrite\" Schreibzugriffe und die Anzahl der "
+"Seiten die dafür geschrieben wurden."
+
+#: server_status.php:84
+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 ""
+"Wie oft gewartet werden musste weil der Protokoll-Zwischenspeicher zu klein "
+"war und deshalb gewartet wurde das er geleert wird."
+
+#: server_status.php:85
+msgid "The number of log write requests."
+msgstr "Anzahl der Schreibzugriffe für die Protokoll-Datei."
+
+#: server_status.php:86
+msgid "The number of physical writes to the log file."
+msgstr "Anzahl der tatsächlichen Schreibvorgänge der Protokoll-Datei."
+
+#: server_status.php:87
+msgid "The number of fsync() writes done to the log file."
+msgstr "Getätigte fsyncs Schreibzugriffe für die Protokoll-Datei."
+
+#: server_status.php:88
+msgid "The number of pending log file fsyncs."
+msgstr "Anstehende \"fsyncs\" für die Protokoll-Datei."
+
+#: server_status.php:89
+msgid "Pending log file writes."
+msgstr "Anstehende Schreibzugriffe für die Protokoll-Datei."
+
+#: server_status.php:90
+msgid "The number of bytes written to the log file."
+msgstr "Anzahl an Byte die in die Protokoll-Datei geschrieben wurden."
+
+#: server_status.php:91
+msgid "The number of pages created."
+msgstr "Anzahl erstellter Seiten."
+
+#: server_status.php:92
+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 ""
+"Die fest kompilierte InnnoDB Seitengröße (Standard 16 KiB). Viele Werte "
+"werden in Seiten gezählt; die Seitengröße erlaubt es diese einfach in Byte "
+"umzurechnen."
+
+#: server_status.php:93
+msgid "The number of pages read."
+msgstr "Anzahl gelesener Seiten."
+
+#: server_status.php:94
+msgid "The number of pages written."
+msgstr "Anzahl geschriebener Seiten."
+
+#: server_status.php:95
+msgid "The number of row locks currently being waited for."
+msgstr "Momentan anstehende Zeilen-Sperren."
+
+#: server_status.php:96
+msgid "The average time to acquire a row lock, in milliseconds."
+msgstr ""
+"Durchschnittliche Wartezeite um eine Zeilen-Sperre zu bekommen, in "
+"Millisekunden."
+
+#: server_status.php:97
+msgid "The total time spent in acquiring row locks, in milliseconds."
+msgstr ""
+"Summe aller Wartezeiten um Zeilen-Sperren zu bekommen, in Millisekunden."
+
+#: server_status.php:98
+msgid "The maximum time to acquire a row lock, in milliseconds."
+msgstr ""
+"Längste Wartezeite um eine Zeilen-Sperre zu bekommen, in Millisekunden."
+
+#: server_status.php:99
+msgid "The number of times a row lock had to be waited for."
+msgstr "Wie oft auf ein Zeilen-Sperre gewartet werden musste."
+
+#: server_status.php:100
+msgid "The number of rows deleted from InnoDB tables."
+msgstr "Anzahl gelöschter Zeilen aller InnoDB Tabellen."
+
+#: server_status.php:101
+msgid "The number of rows inserted in InnoDB tables."
+msgstr "Anzahl der eingefügten Zeilen in alle InnoDB Tabellen."
+
+#: server_status.php:102
+msgid "The number of rows read from InnoDB tables."
+msgstr "Anzahl der Zeilen, die aus InnoDB-Tabellen gelesen wurden."
+
+#: server_status.php:103
+msgid "The number of rows updated in InnoDB tables."
+msgstr "Anzahl der Zeilen, die in InnoDB-Tabellen aktualisiert wurden."
+
+#: server_status.php:104
+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 ""
+"Schlüssel-Blöcke im Schlüssel-Cache, die verändert wurden, aber noch nicht "
+"auf die Platte zurück geschrieben (flush) wurden; auch bekannt als "
+"Not_flushed_key_blocks."
+
+#: server_status.php:105
+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 ""
+"Die Anzahl der unbenutzten Schlüssel-Blöcke im Schlüssel-Cache. Dieser Wert "
+"kann dazu dienen die Auslastung des Schlüssel-Cache zu bestimmen."
+
+#: server_status.php:106
+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 ""
+"Die Anzahl der maximal gleichzeitig benutzten Blocks im Schlüssel-Cache."
+
+#: server_status.php:107
+msgid "The number of requests to read a key block from the cache."
+msgstr "Die Anzahl der Anfragen, einen Schlüssel-Block aus dem Cache zu lesen."
+
+#: server_status.php:108
+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 ""
+"Die Anzahl physikalischer Lesezugriffe eines Schlüssel-Blocks von der "
+"Platte. Wenn key_reads hoch ist, ist Ihr key_cache wahrscheinlich zu klein. "
+"Die Cache-Zugriffsrate kann mit key_reads / key_read_requests berechnet "
+"werden."
+
+#: server_status.php:109
+msgid "The number of requests to write a key block to the cache."
+msgstr ""
+"Die Anzahl der Anfragen, einen Schlüssel-Block in den Cache zu schreiben."
+
+#: server_status.php:110
+msgid "The number of physical writes of a key block to disk."
+msgstr ""
+"Die Anzahl physikalischer Schreibvorgänge eines Schlüssel-Blocks auf Platte."
+
+#: server_status.php:111
+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 ""
+"Die Kosten für die zuletzt verarbeitete Abfrage wie vom Abfrage-Optimierer "
+"berechnet. Nützlich um verschiedene Formulierungen für eine Abfrage zu "
+"vergleichen. Der Wert 0 besagt das bisher keine Abfrage übersetzt wurde."
+
+#: server_status.php:112
+msgid "The number of rows waiting to be written in INSERT DELAYED queues."
+msgstr ""
+"Anzahl der Zeilen, die in INSERT-DELAYED-Warteschleifen darauf warten, "
+"geschrieben zu werden."
+
+#: server_status.php:113
+msgid ""
+"The number of tables that have been opened. If opened tables is big, your "
+"table cache value is probably too small."
+msgstr ""
+"Anzahl der Tabellen, die geöffnet wurden. Wenn Opened_tables hoch ist, ist "
+"Ihre table_cache-Variable wahrscheinlich zu niedrig."
+
+#: server_status.php:114
+msgid "The number of files that are open."
+msgstr "Anzahl der geöffneten Dateien."
+
+#: server_status.php:115
+msgid "The number of streams that are open (used mainly for logging)."
+msgstr ""
+"Anzahl der geöffneten Streams (hauptsächlich zum Protokolieren benutzt)."
+
+#: server_status.php:116
+msgid "The number of tables that are open."
+msgstr "Anzahl der geöffneten Tabellen."
+
+#: server_status.php:117
+msgid "The number of free memory blocks in query cache."
+msgstr "Freie Speicherblöcke im Abfragen-Cache."
+
+#: server_status.php:118
+msgid "The amount of free memory for query cache."
+msgstr "Freier Speicher im Abfragen-Cache."
+
+#: server_status.php:119
+msgid "The number of cache hits."
+msgstr "Abfrage-Cache-Zugriffsrate."
+
+#: server_status.php:120
+msgid "The number of queries added to the cache."
+msgstr "Die Anzahl der Abfragen die dem Cache hinzugefügt wurden."
+
+#: server_status.php:121
+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 "
+"cache size. The query cache uses a least recently used (LRU) strategy to "
+"decide which queries to remove from the cache."
+msgstr ""
+"Die Anzahl der Abfragen die aus dem Cache entfernt wurden, um Speicher für "
+"neue Abfragen frei zu geben. Dieser Wert kann helfen die Abfrage-Cache-Größe "
+"zu optimieren. Der Abfrage-Cache arbeitet nach der LRU-Strategie (least "
+"recently used), d. h. es wird stets die Abfrage gelöscht, die am "
+"längsten unbenutzt im Cache lag."
+
+#: server_status.php:122
+msgid ""
+"The number of non-cached queries (not cachable, or not cached due to the "
+"query_cache_type setting)."
+msgstr ""
+"Die Anzahl der nicht im Cache eingetragenen Abfragen (nicht möglich, oder "
+"aufgrund der query_cache_type Einstellung)."
+
+#: server_status.php:123
+msgid "The number of queries registered in the cache."
+msgstr "Die Anzahl der Abfragen im Cache."
+
+#: server_status.php:124
+msgid "The total number of blocks in the query cache."
+msgstr "Die Anzahl aller Speicherblöcke im Abfrage-Cache."
+
+#: server_status.php:125
+msgctxt "$strShowStatusReset"
+msgid "Reset"
+msgstr "Zurücksetzen"
+
+#: server_status.php:126
+msgid "The status of failsafe replication (not yet implemented)."
+msgstr "Der Status der ausfallsicheren Replikation."
+
+#: server_status.php:127
+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 ""
+"Anzahl der Joins ohne Schlüssel. Wenn dieser Wert nicht 0 ist sollten die "
+"Indizes der Tabellen sorgfältig überprüft werden."
+
+#: server_status.php:128
+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."
+
+#: server_status.php:129
+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 ""
+"Anzahl der Joins ohne Schlüssel, bei denen nach jeder Zeile auf "
+"Schlüsselbenutzung geprüft wurde. Wenn dieser Wert nicht 0 ist sollten die "
+"Indizes der Tabellen sorgfältig überprüft werden."
+
+#: server_status.php:130
+msgid ""
+"The number of joins that used ranges on the first table. (It's normally not "
+"critical even if this is big.)"
+msgstr ""
+"Anzahl der Joins, bei denen Bereiche auf die erste Tabelle benutzt wurden. "
+"(Es ist normalerweise unkritisch, wenn dieser Wert hoch ist.)"
+
+#: server_status.php:131
+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."
+
+#: server_status.php:132
+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."
+
+#: server_status.php:133
+msgid ""
+"Total (since startup) number of times the replication slave SQL thread has "
+"retried transactions."
+msgstr ""
+"Gesamtzahl (seit Start des Servers) der vom Replikations-Slave-SQL-Thread "
+"wiederversuchten Transaktionen."
+
+#: server_status.php:134
+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."
+
+#: server_status.php:135
+msgid ""
+"The number of threads that have taken more than slow_launch_time seconds to "
+"create."
+msgstr ""
+"Anzahl der Prozesse, die länger als slow_launch_time brauchten, um sich zu "
+"verbinden."
+
+#: server_status.php:136
+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."
+
+#: server_status.php:137
+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 ""
+"Anzahl der Verschmelzungen (Merge), die von einem Sortiervorgang benötigt "
+"wurden. Wenn dieser Wert hoch ist, sollten Sie in Betracht ziehen, "
+"sort_buffer herauf zu setzen."
+
+#: server_status.php:138
+msgid "The number of sorts that were done with ranges."
+msgstr "Anzahl der Sortiervorgänge, die mit Bereichen durchgeführt wurden."
+
+#: server_status.php:139
+msgid "The number of sorted rows."
+msgstr "Anzahl der sortierten Zeilen."
+
+#: server_status.php:140
+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."
+
+#: server_status.php:141
+msgid "The number of times that a table lock was acquired immediately."
+msgstr "Wie oft eine Tabellensperre sofort erlangt wurde."
+
+#: server_status.php:142
+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 "
+"should first optimize your queries, and then either split your table or "
+"tables or use replication."
+msgstr ""
+"Wie oft eine Tabellensperre nicht sofort erlangt werden konnte und gewartet "
+"werden musste. Wenn dieser Wert hoch ist und Sie Performance-Probleme haben, "
+"sollten Sie zunächst Ihre Anfragen optimieren und dann entweder Ihre Tabelle"
+"(n) zerteilen oder Replikation benutzen."
+
+#: server_status.php:143
+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 ""
+"Anzahl der Prozesse im Prozess-Cache. Die Cache-Zugriffsrate kann mit "
+"Threads_created / Connections berechnet werden. Wenn dieser Wert rot ist, "
+"sollte der thread_cache_size erhöht werden."
+
+#: server_status.php:144
+msgid "The number of currently open connections."
+msgstr "Anzahl der momentan offenen Verbindungen."
+
+#: server_status.php:145
+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 "
+"doesn't give a notable performance improvement if you have a good thread "
+"implementation.)"
+msgstr ""
+"Anzahl der Prozesse, die zur Handhabung von Verbindungen erzeugt wurden. "
+"Wenn Threads_created hoch ist, sollten Sie eventuell die Thread_cache_size-"
+"Variable herauf setzen. (Normalerweise ergibt sich daraus keine bemerkbare "
+"Performance-Steigerung wenn eine gute Prozess-Implementierung vorliegt.)"
+
+#: server_status.php:146
+msgid "The number of threads that are not sleeping."
+msgstr "Anzahl der Prozesse, die nicht schlafen."
+
+#: server_status.php:157
msgid "Runtime Information"
msgstr "Laufzeit-Informationen"
-#: server_status.php:250
+#: server_status.php:361
msgid "Handler"
msgstr "Handler"
-#: server_status.php:251
+#: server_status.php:362
msgid "Query cache"
msgstr "Abfragen-Cache"
-#: server_status.php:252
+#: server_status.php:363
msgid "Threads"
msgstr "Prozesse"
-#: server_status.php:254
+#: server_status.php:365
msgid "Temporary data"
msgstr "Temporäre Daten"
-#: server_status.php:255
+#: server_status.php:366
msgid "Delayed inserts"
msgstr "Verzögertes Einfügen (delayed inserts)"
-#: server_status.php:256
+#: server_status.php:367
msgid "Key cache"
msgstr "Schlüssel-Cache"
-#: server_status.php:257
+#: server_status.php:368
msgid "Joins"
msgstr "Tabellenverknüpfungen (joins)"
-#: server_status.php:259
+#: server_status.php:370
msgid "Sorting"
msgstr "Sortierung"
-#: server_status.php:261
+#: server_status.php:372
msgid "Transaction coordinator"
msgstr "Transaktions-Koordinator"
-#: server_status.php:271
+#: server_status.php:382
msgid "Flush (close) all tables"
msgstr "Alle Tabellen aktualisieren und schließen."
-#: server_status.php:273
+#: server_status.php:384
msgid "Show open tables"
msgstr "Zeige alle offenen Tabellen"
-#: server_status.php:278
+#: server_status.php:389
msgid "Show slave hosts"
msgstr "Zeige alle Slave-Hosts"
-#: server_status.php:284
+#: server_status.php:395
msgid "Show slave status"
msgstr "Zeige den Slave-Status"
-#: server_status.php:289
+#: server_status.php:400
msgid "Flush query cache"
msgstr "Den Abfragen-Cache leeren. (FLUSH)"
-#: server_status.php:294
+#: server_status.php:405
msgid "Show processes"
msgstr "Prozesse anzeigen"
-#: server_status.php:344
+#: server_status.php:455
msgctxt "for Show status"
msgid "Reset"
msgstr "Zurücksetzen"
-#: server_status.php:350
+#: server_status.php:461
#, php-format
msgid "This MySQL server has been running for %s. It started up on %s."
msgstr "Dieser MySQL-Server läuft bereits %s. Er wurde am %s gestartet."
-#: server_status.php:360
+#: server_status.php:471
msgid ""
"This MySQL server works as master and slave in replication"
"b> process."
@@ -5958,17 +5970,17 @@ msgstr ""
"Dieser MySQL Server arbeitet als Master und Slave im "
"Replikations-Process."
-#: server_status.php:362
+#: server_status.php:473
msgid "This MySQL server works as master in replication process."
msgstr ""
"Dieser MySQL Server arbeitet als Master im Replikations-Process."
-#: server_status.php:364
+#: server_status.php:475
msgid "This MySQL server works as slave in replication process."
msgstr ""
"Dieser MySQL Server arbeitet als Slave im Replikations-Process."
-#: server_status.php:366
+#: server_status.php:477
msgid ""
"For further information about replication status on the server, please visit "
"the replication section."
@@ -5976,7 +5988,7 @@ msgstr ""
"Für weitere Informationen über den Replikations-Status auf dem Server siehe "
"Abschnitt Replikation."
-#: server_status.php:383
+#: server_status.php:494
msgid ""
"Server traffic: These tables show the network traffic statistics of "
"this MySQL server since its startup."
@@ -5984,11 +5996,11 @@ msgstr ""
"Servertraffic: In diesen Tabellen wird der Netzwerkverkehr dieses "
"MySQL-Servers seit dessen Start aufgeführt."
-#: server_status.php:388
+#: server_status.php:499
msgid "Traffic"
msgstr "Netzwerkverkehr"
-#: server_status.php:388
+#: server_status.php:499
msgid ""
"On a busy server, the byte counters may overrun, so those statistics as "
"reported by the MySQL server may be incorrect."
@@ -5997,36 +6009,36 @@ msgstr ""
"\" (wieder bei 0 beginnen), deshalb können diese Werte, wie sie vom MySQL "
"Server ausgegeben werden, falsch sein."
-#: server_status.php:389 server_status.php:434 server_status.php:497
-#: server_status.php:555
+#: server_status.php:500 server_status.php:545 server_status.php:608
+#: server_status.php:666
msgid "per hour"
msgstr "pro Stunde"
-#: server_status.php:394
+#: server_status.php:505
msgid "Received"
msgstr "Empfangen"
-#: server_status.php:404
+#: server_status.php:515
msgid "Sent"
msgstr "Gesendet"
-#: server_status.php:433
+#: server_status.php:544
msgid "Connections"
msgstr "Verbindungen"
-#: server_status.php:440
+#: server_status.php:551
msgid "max. concurrent connections"
msgstr "max. gleichzeitige Verbindungen"
-#: server_status.php:447
+#: server_status.php:558
msgid "Failed attempts"
msgstr "Fehlversuche"
-#: server_status.php:461
+#: server_status.php:572
msgid "Aborted"
msgstr "Abgebrochen"
-#: server_status.php:490
+#: server_status.php:601
#, php-format
msgid ""
"Query statistics: Since its startup, %s queries have been sent to the "
@@ -6035,19 +6047,19 @@ msgstr ""
"Abfragestatistik: Seit seinem Start wurden %s Abfragen an diesen "
"MySQL-Server gesandt."
-#: server_status.php:498
+#: server_status.php:609
msgid "per minute"
msgstr "pro Minute"
-#: server_status.php:499
+#: server_status.php:610
msgid "per second"
msgstr "pro Sekunde"
-#: server_status.php:554
+#: server_status.php:665
msgid "Query type"
msgstr "Abfrageart"
-#: server_status.php:721
+#: server_status.php:832
msgid "Replication status"
msgstr "Replikations-Status"
diff --git a/po/el.po b/po/el.po
index 2afbccb15..11221ed32 100755
--- a/po/el.po
+++ b/po/el.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-06-04 16:07-0400\n"
+"POT-Creation-Date: 2010-06-08 12:32-0400\n"
"PO-Revision-Date: 2010-03-30 23:16+0200\n"
"Last-Translator: Michal \n"
"Language-Team: greek \n"
@@ -15,11 +15,11 @@ msgstr ""
"X-Generator: Pootle 2.0.1\n"
#: browse_foreigners.php:38 browse_foreigners.php:59
-#: libraries/display_tbl.lib.php:417 server_privileges.php:1475
+#: libraries/display_tbl.lib.php:417 server_privileges.php:1514
msgid "Show all"
msgstr "Εμφάνιση όλων"
-#: browse_foreigners.php:82 libraries/common.lib.php:2304
+#: browse_foreigners.php:82 libraries/common.lib.php:2313
#: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:394
#: libraries/export/pdf.php:147 pdf_schema.php:283 pdf_schema.php:1123
#: pdf_schema.php:1139
@@ -38,8 +38,8 @@ msgstr ""
#: browse_foreigners.php:150 db_structure.php:79 db_structure.php:80
#: db_structure.php:91 db_structure.php:93 db_structure.php:104
-#: db_structure.php:106 libraries/common.lib.php:2822
-#: libraries/common.lib.php:2829 libraries/db_links.inc.php:75
+#: db_structure.php:106 libraries/common.lib.php:2831
+#: libraries/common.lib.php:2838 libraries/db_links.inc.php:75
#: libraries/tbl_links.inc.php:63
msgid "Search"
msgstr "Αναζήτηση"
@@ -49,7 +49,7 @@ msgstr "Αναζήτηση"
#: db_structure.php:567 js/messages.php:48 libraries/Config.class.php:1046
#: libraries/Theme_Manager.class.php:311
#: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719
-#: libraries/common.lib.php:1333 libraries/common.lib.php:2279
+#: libraries/common.lib.php:1335 libraries/common.lib.php:2288
#: libraries/display_change_password.lib.php:82
#: libraries/display_create_table.lib.php:63
#: libraries/display_export.lib.php:275 libraries/display_import.lib.php:276
@@ -60,9 +60,9 @@ msgstr "Αναζήτηση"
#: libraries/sql_query_form.lib.php:552 libraries/tbl_properties.inc.php:782
#: main.php:128 navigation.php:237 pdf_pages.php:292 pdf_pages.php:328
#: pdf_pages.php:530 pmd_pdf.php:116 server_binlog.php:142
-#: server_privileges.php:625 server_privileges.php:1585
-#: server_privileges.php:1932 server_privileges.php:1979
-#: server_privileges.php:2018 server_replication.php:235
+#: server_privileges.php:664 server_privileges.php:1624
+#: server_privileges.php:1971 server_privileges.php:2018
+#: server_privileges.php:2057 server_replication.php:235
#: server_replication.php:318 server_replication.php:341
#: server_synchronize.php:1209 tbl_change.php:330 tbl_change.php:1174
#: tbl_change.php:1211 tbl_indexes.php:254 tbl_operations.php:265
@@ -80,7 +80,7 @@ msgstr "Όνομα κλειδιού"
#: browse_foreigners.php:169 browse_foreigners.php:171
#: server_collations.php:55 server_collations.php:67 server_engines.php:59
-#: server_status.php:628
+#: server_status.php:739
msgid "Description"
msgstr "Περιγραφή"
@@ -121,7 +121,7 @@ msgstr "Ονόματα στηλών"
#: libraries/db_structure.lib.php:60 libraries/export/htmlword.php:245
#: libraries/export/latex.php:360 libraries/export/odt.php:297
#: libraries/export/texytext.php:234 libraries/tbl_properties.inc.php:100
-#: pdf_schema.php:1263 pdf_schema.php:1284 server_privileges.php:2031
+#: pdf_schema.php:1263 pdf_schema.php:1284 server_privileges.php:2070
#: tbl_change.php:287 tbl_change.php:314 tbl_printview.php:143
#: tbl_printview.php:313 tbl_select.php:136 tbl_structure.php:178
#: tbl_structure.php:659 tbl_tracking.php:274 tbl_tracking.php:321
@@ -165,9 +165,9 @@ msgstr "Σχόλια"
#: libraries/Index.class.php:386 libraries/export/htmlword.php:322
#: libraries/export/latex.php:430 libraries/export/odt.php:368
#: libraries/export/texytext.php:311 libraries/mult_submits.inc.php:263
-#: pdf_schema.php:1344 server_privileges.php:1529 server_privileges.php:1540
-#: server_privileges.php:1850 server_privileges.php:1855
-#: server_privileges.php:2148 sql.php:132 sql.php:194 tbl_printview.php:229
+#: pdf_schema.php:1344 server_privileges.php:1568 server_privileges.php:1579
+#: server_privileges.php:1889 server_privileges.php:1894
+#: server_privileges.php:2187 sql.php:132 sql.php:194 tbl_printview.php:229
#: tbl_structure.php:350 tbl_tracking.php:337 tbl_tracking.php:342
msgid "No"
msgstr "Όχι"
@@ -181,9 +181,9 @@ msgstr "Όχι"
#: libraries/mult_submits.inc.php:101 libraries/mult_submits.inc.php:106
#: libraries/mult_submits.inc.php:111 libraries/mult_submits.inc.php:262
#: libraries/mult_submits.inc.php:273 pdf_schema.php:1344
-#: server_databases.php:64 server_privileges.php:1526
-#: server_privileges.php:1540 server_privileges.php:1850
-#: server_privileges.php:1853 server_privileges.php:2148 sql.php:193
+#: server_databases.php:64 server_privileges.php:1565
+#: server_privileges.php:1579 server_privileges.php:1889
+#: server_privileges.php:1892 server_privileges.php:2187 sql.php:193
#: tbl_printview.php:229 tbl_structure.php:40 tbl_structure.php:350
#: tbl_tracking.php:335 tbl_tracking.php:340
msgid "Yes"
@@ -280,7 +280,7 @@ msgstr "Αλλαγή στο αντίγραφο της βάσης δεδομέν
msgid "BLOB Repository"
msgstr "Αποθήκη BLOB"
-#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1350
+#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1352
#: libraries/server_links.inc.php:49 server_processlist.php:59
#: tbl_tracking.php:596 test/theme.php:101
msgid "Status"
@@ -340,8 +340,8 @@ msgstr "Αλλαγή σελίδων PDF"
#: db_printview.php:104 db_tracking.php:72 db_tracking.php:157
#: libraries/db_structure.lib.php:46 libraries/export/xml.php:328
-#: libraries/header.inc.php:126 pdf_pages.php:424 server_privileges.php:1626
-#: server_privileges.php:1682 server_privileges.php:1946
+#: libraries/header.inc.php:126 pdf_pages.php:424 server_privileges.php:1665
+#: server_privileges.php:1721 server_privileges.php:1985
#: server_synchronize.php:423 server_synchronize.php:866 tbl_tracking.php:592
#: test/theme.php:75
msgid "Table"
@@ -442,7 +442,7 @@ msgstr "Διαγραφή"
#: db_qbe.php:370 db_qbe.php:451 db_qbe.php:522 db_qbe.php:553
#: libraries/display_import.lib.php:166 libraries/tbl_properties.inc.php:779
-#: server_privileges.php:258 tbl_change.php:1031 tbl_indexes.php:250
+#: server_privileges.php:297 tbl_change.php:1031 tbl_indexes.php:250
#: tbl_select.php:288
msgid "Or"
msgstr "Ή"
@@ -476,7 +476,7 @@ msgstr "Χρήση Πινάκων"
msgid "SQL query on database %s:"
msgstr "Εντολή SQL στη βάση %s:"
-#: db_qbe.php:934 libraries/common.lib.php:1223
+#: db_qbe.php:934 libraries/common.lib.php:1225
msgid "Submit Query"
msgstr "Υποβολή ερωτήματος"
@@ -515,7 +515,7 @@ msgstr "%s αποτελέσματα στον πίνακα %s"
#: db_search.php:267 db_structure.php:77 db_structure.php:78
#: db_structure.php:90 db_structure.php:92 db_structure.php:103
-#: db_structure.php:105 libraries/common.lib.php:2824
+#: db_structure.php:105 libraries/common.lib.php:2833
#: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50
#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:467
msgid "Browse"
@@ -562,26 +562,26 @@ msgstr "Εσωτερικό πεδίο:"
#: db_structure.php:81 db_structure.php:82 db_structure.php:94
#: db_structure.php:95 db_structure.php:107 db_structure.php:108
-#: libraries/common.lib.php:2823 libraries/sql_query_form.lib.php:334
+#: libraries/common.lib.php:2832 libraries/sql_query_form.lib.php:334
#: libraries/sql_query_form.lib.php:337 libraries/tbl_links.inc.php:76
msgid "Insert"
msgstr "Προσθήκη"
#: db_structure.php:83 db_structure.php:96 db_structure.php:109
-#: libraries/common.lib.php:2820 libraries/common.lib.php:2827
+#: libraries/common.lib.php:2829 libraries/common.lib.php:2836
#: libraries/db_links.inc.php:63 libraries/export/htmlword.php:23
#: libraries/export/latex.php:33 libraries/export/latex.php:337
#: libraries/export/odt.php:32 libraries/export/sql.php:60
#: libraries/export/texytext.php:23 libraries/import.lib.php:1104
#: libraries/tbl_links.inc.php:56 pmd_general.php:134
-#: server_privileges.php:554 server_replication.php:315 tbl_tracking.php:269
+#: server_privileges.php:593 server_replication.php:315 tbl_tracking.php:269
msgid "Structure"
msgstr "Δομή"
#: db_structure.php:84 db_structure.php:85 db_structure.php:97
#: db_structure.php:98 db_structure.php:110 db_structure.php:111
#: db_structure.php:545 db_structure.php:546 db_tracking.php:91
-#: libraries/Index.class.php:483 libraries/common.lib.php:1654
+#: libraries/Index.class.php:483 libraries/common.lib.php:1656
#: libraries/db_links.inc.php:100 libraries/mult_submits.inc.php:36
#: libraries/mult_submits.inc.php:73 libraries/tbl_links.inc.php:127
#: server_databases.php:352 tbl_structure.php:27 tbl_structure.php:151
@@ -591,7 +591,7 @@ msgstr "Διαγραφή"
#: db_structure.php:86 db_structure.php:87 db_structure.php:99
#: db_structure.php:100 db_structure.php:112 db_structure.php:113
-#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1653
+#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1655
#: libraries/mult_submits.inc.php:39 libraries/tbl_links.inc.php:105
msgid "Empty"
msgstr "Άδειασμα"
@@ -635,7 +635,7 @@ msgstr "Προβολή"
#: db_structure.php:485 libraries/db_structure.lib.php:49
#: libraries/server_links.inc.php:70 server_replication.php:33
-#: server_replication.php:164 server_status.php:258
+#: server_replication.php:164 server_status.php:369
msgid "Replication"
msgstr "Αναπαραγωγή"
@@ -652,20 +652,20 @@ msgstr ""
#: db_structure.php:524 db_structure.php:541 db_structure.php:542
#: libraries/display_tbl.lib.php:2081 libraries/display_tbl.lib.php:2086
#: libraries/mult_submits.inc.php:16 server_databases.php:346
-#: server_databases.php:351 server_privileges.php:1557 tbl_structure.php:455
+#: server_databases.php:351 server_privileges.php:1596 tbl_structure.php:455
#: tbl_structure.php:464
msgid "With selected:"
msgstr "Με τους επιλεγμένους:"
#: db_structure.php:527 libraries/display_tbl.lib.php:2076
-#: server_databases.php:348 server_privileges.php:530
-#: server_privileges.php:1560 tbl_structure.php:458
+#: server_databases.php:348 server_privileges.php:569
+#: server_privileges.php:1599 tbl_structure.php:458
msgid "Check All"
msgstr "Επιλογή όλων"
#: db_structure.php:531 libraries/display_tbl.lib.php:2077
#: libraries/replication_gui.lib.php:33 server_databases.php:350
-#: server_privileges.php:533 server_privileges.php:1564 tbl_structure.php:462
+#: server_privileges.php:572 server_privileges.php:1603 tbl_structure.php:462
msgid "Uncheck All"
msgstr "Απεπιλογή όλων"
@@ -703,7 +703,7 @@ msgstr "Ανάλυση Πίνακα"
#: libraries/display_export.lib.php:83 libraries/display_tbl.lib.php:2094
#: libraries/display_tbl.lib.php:2225 libraries/mult_submits.inc.php:62
#: libraries/server_links.inc.php:84 libraries/tbl_links.inc.php:82
-#: pmd_pdf.php:84 pmd_pdf.php:109 server_privileges.php:1341
+#: pmd_pdf.php:84 pmd_pdf.php:109 server_privileges.php:1380
#: setup/frames/menu.inc.php:22 tbl_row_action.php:59
msgid "Export"
msgstr "Εξαγωγή"
@@ -721,8 +721,8 @@ msgstr "Παρακολουθούμενοι πίνακες"
#: libraries/export/sql.php:342 libraries/export/texytext.php:84
#: libraries/export/xml.php:255 libraries/header.inc.php:106
#: libraries/header_printview.inc.php:58 server_databases.php:169
-#: server_privileges.php:1621 server_privileges.php:1682
-#: server_privileges.php:1940 server_processlist.php:56
+#: server_privileges.php:1660 server_privileges.php:1721
+#: server_privileges.php:1979 server_processlist.php:56
#: server_synchronize.php:1179 server_synchronize.php:1183
#: tbl_tracking.php:591 test/theme.php:65
msgid "Database"
@@ -742,8 +742,8 @@ msgstr "Ενημερώθηκε"
#: db_tracking.php:77 libraries/Index.class.php:440
#: libraries/db_structure.lib.php:53 server_databases.php:203
-#: server_privileges.php:1503 server_privileges.php:1686
-#: server_privileges.php:2034 tbl_structure.php:187
+#: server_privileges.php:1542 server_privileges.php:1725
+#: server_privileges.php:2073 tbl_structure.php:187
msgid "Action"
msgstr "Ενέργεια"
@@ -948,11 +948,11 @@ msgstr "Το όνομα του Συστήματος είναι κενό!"
msgid "The user name is empty!"
msgstr "Το όνομα του χρήστη είναι κενό!"
-#: js/messages.php:44 server_privileges.php:1197 user_password.php:70
+#: js/messages.php:44 server_privileges.php:1236 user_password.php:70
msgid "The password is empty!"
msgstr "Ο Κωδικός Πρόσβασης είναι κενός!"
-#: js/messages.php:45 server_privileges.php:1195 user_password.php:73
+#: js/messages.php:45 server_privileges.php:1234 user_password.php:73
msgid "The passwords aren't the same!"
msgstr "Οι κωδικοί πρόσβασης δεν είναι ίδιοι!"
@@ -1029,8 +1029,8 @@ msgid "Prev"
msgstr "Προηγούμενο"
#. l10n: Display text for next month link in calendar
-#: js/messages.php:77 libraries/common.lib.php:2344
-#: libraries/common.lib.php:2347 libraries/display_tbl.lib.php:338
+#: js/messages.php:77 libraries/common.lib.php:2353
+#: libraries/common.lib.php:2356 libraries/display_tbl.lib.php:338
#: server_binlog.php:205 server_binlog.php:207 tbl_printview.php:424
#: tbl_structure.php:801
msgid "Next"
@@ -1098,64 +1098,64 @@ msgid "December"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:97 libraries/common.lib.php:1555
+#: js/messages.php:97 libraries/common.lib.php:1557
msgid "Jan"
msgstr "Ιανουαρίου"
#. l10n: Short month name
-#: js/messages.php:99 libraries/common.lib.php:1557
+#: js/messages.php:99 libraries/common.lib.php:1559
msgid "Feb"
msgstr "Φεβρουαρίου"
#. l10n: Short month name
-#: js/messages.php:101 libraries/common.lib.php:1559
+#: js/messages.php:101 libraries/common.lib.php:1561
msgid "Mar"
msgstr "Μαρτίου"
#. l10n: Short month name
-#: js/messages.php:103 libraries/common.lib.php:1561
+#: js/messages.php:103 libraries/common.lib.php:1563
msgid "Apr"
msgstr "Απριλίου"
#. l10n: Short month name
-#: js/messages.php:105 libraries/common.lib.php:1563
+#: js/messages.php:105 libraries/common.lib.php:1565
#, fuzzy
msgctxt "Short month name"
msgid "May"
msgstr "Μαΐου"
#. l10n: Short month name
-#: js/messages.php:107 libraries/common.lib.php:1565
+#: js/messages.php:107 libraries/common.lib.php:1567
msgid "Jun"
msgstr "Ιουνίου"
#. l10n: Short month name
-#: js/messages.php:109 libraries/common.lib.php:1567
+#: js/messages.php:109 libraries/common.lib.php:1569
msgid "Jul"
msgstr "Ιουλίου"
#. l10n: Short month name
-#: js/messages.php:111 libraries/common.lib.php:1569
+#: js/messages.php:111 libraries/common.lib.php:1571
msgid "Aug"
msgstr "Αυγούστου"
#. l10n: Short month name
-#: js/messages.php:113 libraries/common.lib.php:1571
+#: js/messages.php:113 libraries/common.lib.php:1573
msgid "Sep"
msgstr "Σεπτεμβρίου"
#. l10n: Short month name
-#: js/messages.php:115 libraries/common.lib.php:1573
+#: js/messages.php:115 libraries/common.lib.php:1575
msgid "Oct"
msgstr "Οκτωβρίου"
#. l10n: Short month name
-#: js/messages.php:117 libraries/common.lib.php:1575
+#: js/messages.php:117 libraries/common.lib.php:1577
msgid "Nov"
msgstr "Νοεμβρίου"
#. l10n: Short month name
-#: js/messages.php:119 libraries/common.lib.php:1577
+#: js/messages.php:119 libraries/common.lib.php:1579
msgid "Dec"
msgstr "Δεκεμβρίου"
@@ -1192,37 +1192,37 @@ msgid "Saturday"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:132 libraries/common.lib.php:1580
+#: js/messages.php:132 libraries/common.lib.php:1582
msgid "Sun"
msgstr "Κυριακή"
#. l10n: Short week day name
-#: js/messages.php:134 libraries/common.lib.php:1582
+#: js/messages.php:134 libraries/common.lib.php:1584
msgid "Mon"
msgstr "Δευτέρα"
#. l10n: Short week day name
-#: js/messages.php:136 libraries/common.lib.php:1584
+#: js/messages.php:136 libraries/common.lib.php:1586
msgid "Tue"
msgstr "Τρίτη"
#. l10n: Short week day name
-#: js/messages.php:138 libraries/common.lib.php:1586
+#: js/messages.php:138 libraries/common.lib.php:1588
msgid "Wed"
msgstr "Τετάρτη"
#. l10n: Short week day name
-#: js/messages.php:140 libraries/common.lib.php:1588
+#: js/messages.php:140 libraries/common.lib.php:1590
msgid "Thu"
msgstr "Πέμπτη"
#. l10n: Short week day name
-#: js/messages.php:142 libraries/common.lib.php:1590
+#: js/messages.php:142 libraries/common.lib.php:1592
msgid "Fri"
msgstr "Παρασκευή"
#. l10n: Short week day name
-#: js/messages.php:144 libraries/common.lib.php:1592
+#: js/messages.php:144 libraries/common.lib.php:1594
msgid "Sat"
msgstr "Σάββατο"
@@ -1361,7 +1361,7 @@ msgid "Comment"
msgstr "Σχόλιο"
#: libraries/Index.class.php:466 libraries/common.lib.php:616
-#: libraries/common.lib.php:1199 libraries/display_tbl.lib.php:1117
+#: libraries/common.lib.php:1201 libraries/display_tbl.lib.php:1117
#: libraries/import.lib.php:1087 libraries/import.lib.php:1111
#: pdf_pages.php:285 setup/frames/index.inc.php:124
#: setup/lib/messages.inc.php:352 tbl_row_action.php:69
@@ -1387,7 +1387,7 @@ msgstr ""
"απομακρυνθεί."
#: libraries/List_Database.class.php:431 libraries/server_links.inc.php:41
-#: server_databases.php:88 server_privileges.php:1621
+#: server_databases.php:88 server_privileges.php:1660
#: setup/lib/messages.inc.php:110 test/theme.php:93
msgid "Databases"
msgstr "Βάσεις Δεδομένων"
@@ -1729,7 +1729,7 @@ msgid "Documentation"
msgstr "Τεκμηρίωση"
#: libraries/common.lib.php:595 libraries/header_printview.inc.php:61
-#: server_processlist.php:60 server_status.php:247
+#: server_processlist.php:60 server_status.php:358
msgid "SQL query"
msgstr "Εντολή SQL"
@@ -1745,129 +1745,129 @@ msgstr "Ανάλυση SQL"
msgid "Skip Explain SQL"
msgstr "Χωρίς ανάλυση SQL"
-#: libraries/common.lib.php:1212
+#: libraries/common.lib.php:1214
msgid "Without PHP Code"
msgstr "χωρίς κώδικα PHP"
-#: libraries/common.lib.php:1215 setup/lib/messages.inc.php:355
+#: libraries/common.lib.php:1217 setup/lib/messages.inc.php:355
msgid "Create PHP Code"
msgstr "Δημιουργία κώδικα PHP"
-#: libraries/common.lib.php:1233 server_status.php:341
+#: libraries/common.lib.php:1235 server_status.php:452
#: setup/lib/messages.inc.php:354
msgid "Refresh"
msgstr "Ανανέωση"
-#: libraries/common.lib.php:1242
+#: libraries/common.lib.php:1244
msgid "Skip Validate SQL"
msgstr "Παράβλεψη επικύρωσης SQL"
-#: libraries/common.lib.php:1245 setup/lib/messages.inc.php:356 sql.php:518
+#: libraries/common.lib.php:1247 setup/lib/messages.inc.php:356 sql.php:518
msgid "Validate SQL"
msgstr "Επικύρωση SQL"
-#: libraries/common.lib.php:1276
+#: libraries/common.lib.php:1278
msgid "Inline edit of this query"
msgstr ""
-#: libraries/common.lib.php:1278
+#: libraries/common.lib.php:1280
#, fuzzy
msgid "Inline"
msgstr "Μηχανές"
-#: libraries/common.lib.php:1332 libraries/common.lib.php:1347
+#: libraries/common.lib.php:1334 libraries/common.lib.php:1349
msgid "Profiling"
msgstr "Δημιουργία προφίλ"
-#: libraries/common.lib.php:1351 libraries/tbl_triggers.lib.php:28
+#: libraries/common.lib.php:1353 libraries/tbl_triggers.lib.php:28
#: server_processlist.php:58
msgid "Time"
msgstr "Χρόνος"
#. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "B"
msgstr "Bytes"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "KiB"
msgstr "KB"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "MiB"
msgstr "MB"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "GiB"
msgstr "GB"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "TiB"
msgstr "TB"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "PiB"
msgstr "PB"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "EiB"
msgstr "EB"
#. l10n: Thousands separator
-#: libraries/common.lib.php:1417
+#: libraries/common.lib.php:1419
msgid ","
msgstr "."
#. l10n: Decimal separator
-#: libraries/common.lib.php:1419
+#: libraries/common.lib.php:1421
msgid "."
msgstr ","
#. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string
-#: libraries/common.lib.php:1596
+#: libraries/common.lib.php:1598
#: libraries/transformations/text_plain__dateformat.inc.php:34
msgid "%B %d, %Y at %I:%M %p"
msgstr "%d %B %Y στις %H:%M:%S"
-#: libraries/common.lib.php:1898
+#: libraries/common.lib.php:1907
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "%s μέρες, %s ώρες, %s λεπτά %s δευτερόλεπτα"
-#: libraries/common.lib.php:2313 libraries/common.lib.php:2316
-#: libraries/display_tbl.lib.php:290 server_status.php:608
+#: libraries/common.lib.php:2322 libraries/common.lib.php:2325
+#: libraries/display_tbl.lib.php:290 server_status.php:719
msgid "Begin"
msgstr "Κορυφή"
-#: libraries/common.lib.php:2314 libraries/common.lib.php:2317
+#: libraries/common.lib.php:2323 libraries/common.lib.php:2326
#: libraries/display_tbl.lib.php:291 server_binlog.php:168
#: server_binlog.php:170
msgid "Previous"
msgstr "Προηγούμενο"
-#: libraries/common.lib.php:2345 libraries/common.lib.php:2348
+#: libraries/common.lib.php:2354 libraries/common.lib.php:2357
#: libraries/display_tbl.lib.php:353
msgid "End"
msgstr "Τέλος"
-#: libraries/common.lib.php:2421
+#: libraries/common.lib.php:2430
#, php-format
msgid "Jump to database "%s"."
msgstr "Μεταπήδηση στην βάση «%s»."
-#: libraries/common.lib.php:2441
+#: libraries/common.lib.php:2450
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr "Η λειτουργία %s έχει επηρρεαστεί από ένα γνωστό σφάλμα. Δείτε %s"
-#: libraries/common.lib.php:2821 libraries/common.lib.php:2828
+#: libraries/common.lib.php:2830 libraries/common.lib.php:2837
#: libraries/db_links.inc.php:68 libraries/export/sql.php:25
#: libraries/import/sql.php:18 libraries/server_links.inc.php:45
#: libraries/tbl_links.inc.php:60 querywindow.php:99 test/theme.php:97
msgid "SQL"
msgstr "Κώδικας SQL"
-#: libraries/common.lib.php:2830 libraries/db_links.inc.php:104
+#: libraries/common.lib.php:2839 libraries/db_links.inc.php:104
#: libraries/tbl_links.inc.php:95 libraries/tbl_links.inc.php:117
#: view_operations.php:89
msgid "Operations"
@@ -1923,8 +1923,8 @@ msgid "Import"
msgstr "Εισαγωγή"
#: libraries/db_links.inc.php:111 libraries/server_links.inc.php:66
-#: server_privileges.php:72 server_privileges.php:1683
-#: server_privileges.php:2032 test/theme.php:117
+#: server_privileges.php:111 server_privileges.php:1722
+#: server_privileges.php:2071 test/theme.php:117
msgid "Privileges"
msgstr "Δικαιώματα"
@@ -1970,22 +1970,22 @@ msgid "Change password"
msgstr "Αλλαγή κωδικού πρόσβασης"
#: libraries/display_change_password.lib.php:35
-#: libraries/replication_gui.lib.php:345 server_privileges.php:768
+#: libraries/replication_gui.lib.php:345 server_privileges.php:807
msgid "No Password"
msgstr "Χωρίς Κωδικό Πρόσβασης"
#: libraries/display_change_password.lib.php:41
#: libraries/replication_gui.lib.php:59 libraries/replication_gui.lib.php:60
#: libraries/replication_gui.lib.php:335 libraries/replication_gui.lib.php:339
-#: libraries/replication_gui.lib.php:349 server_privileges.php:757
-#: server_privileges.php:761 server_privileges.php:772
-#: server_privileges.php:1499 server_synchronize.php:1175
+#: libraries/replication_gui.lib.php:349 server_privileges.php:796
+#: server_privileges.php:800 server_privileges.php:811
+#: server_privileges.php:1538 server_synchronize.php:1175
msgid "Password"
msgstr "Κωδικός Πρόσβασης"
#: libraries/display_change_password.lib.php:46
#: libraries/replication_gui.lib.php:353 libraries/replication_gui.lib.php:356
-#: server_privileges.php:776 server_privileges.php:779
+#: server_privileges.php:815 server_privileges.php:818
msgid "Re-type"
msgstr "Επαναεισαγωγή"
@@ -1999,12 +1999,12 @@ msgid "MySQL 4.0 compatible"
msgstr "Συμβατό με MySQL 4.0"
#: libraries/display_change_password.lib.php:72
-#: libraries/replication_gui.lib.php:360 server_privileges.php:783
+#: libraries/replication_gui.lib.php:360 server_privileges.php:822
msgid "Generate Password"
msgstr "Παραγωγή Κωδικού Πρόσβασης"
#: libraries/display_change_password.lib.php:75
-#: libraries/replication_gui.lib.php:363 server_privileges.php:786
+#: libraries/replication_gui.lib.php:363 server_privileges.php:825
msgid "Generate"
msgstr "Παραγωγή"
@@ -2017,8 +2017,8 @@ msgstr "Δημιουργία νέας βάσης"
msgid "Create"
msgstr "Δημιουργία"
-#: libraries/display_create_database.lib.php:40 server_privileges.php:74
-#: server_privileges.php:1388 server_replication.php:35
+#: libraries/display_create_database.lib.php:40 server_privileges.php:113
+#: server_privileges.php:1427 server_replication.php:35
msgid "No Privileges"
msgstr "Χωρίς Δικαιώματα"
@@ -2110,7 +2110,7 @@ msgstr "Συμπίεση"
#: libraries/display_export.lib.php:240 libraries/display_import.lib.php:197
#: libraries/display_import.lib.php:210 libraries/display_tbl.lib.php:530
#: libraries/export/sql.php:868 libraries/tbl_properties.inc.php:575
-#: server_privileges.php:1836 server_processlist.php:75
+#: server_privileges.php:1875 server_processlist.php:75
msgid "None"
msgstr "Καμία"
@@ -2445,7 +2445,7 @@ msgstr ""
msgid "Buffer Pool"
msgstr "Buffer Pool"
-#: libraries/engines/innodb.lib.php:145 server_status.php:306
+#: libraries/engines/innodb.lib.php:145 server_status.php:417
msgid "InnoDB Status"
msgstr "Κατάσταση InnoDB"
@@ -2454,8 +2454,8 @@ msgid "Buffer Pool Usage"
msgstr "Χρήση Buffer Pool"
#: libraries/engines/innodb.lib.php:194 server_databases.php:137
-#: server_databases.php:305 server_status.php:414 server_status.php:475
-#: server_status.php:496 tbl_printview.php:351 tbl_structure.php:696
+#: server_databases.php:305 server_status.php:525 server_status.php:586
+#: server_status.php:607 tbl_printview.php:351 tbl_structure.php:696
msgid "Total"
msgstr "Σύνολο"
@@ -2821,7 +2821,7 @@ msgstr "Έγγραφο Microsoft Word 2000"
#: libraries/export/latex.php:201 libraries/export/odt.php:48
#: libraries/export/sql.php:106 libraries/export/sql.php:868
#: libraries/export/texytext.php:27 server_databases.php:127
-#: server_privileges.php:537 server_replication.php:316 tbl_printview.php:317
+#: server_privileges.php:576 server_replication.php:316 tbl_printview.php:317
#: tbl_structure.php:665
msgid "Data"
msgstr "Δεδομένα"
@@ -2871,9 +2871,9 @@ msgstr "Τύπος MIME"
#: libraries/export/xml.php:102 libraries/header_printview.inc.php:57
#: libraries/replication_gui.lib.php:63 libraries/replication_gui.lib.php:174
#: libraries/replication_gui.lib.php:269 libraries/replication_gui.lib.php:272
-#: libraries/replication_gui.lib.php:329 server_privileges.php:692
-#: server_privileges.php:695 server_privileges.php:751
-#: server_privileges.php:1498 server_privileges.php:2030
+#: libraries/replication_gui.lib.php:329 server_privileges.php:731
+#: server_privileges.php:734 server_privileges.php:790
+#: server_privileges.php:1537 server_privileges.php:2069
#: server_processlist.php:55 server_synchronize.php:1159
msgid "Host"
msgstr "Σύστημα"
@@ -3227,898 +3227,6 @@ msgstr "Καμία"
msgid "Convert to Kana"
msgstr ""
-#. l10n: Text direction, use either ltr or rtl
-#: libraries/messages.inc.php:19
-msgid "ltr"
-msgstr "ltr"
-
-#: libraries/messages.inc.php:21
-msgid "Content of table __TABLE__"
-msgstr "Περιεχόμενο του πίνακα __TABLE__"
-
-#: libraries/messages.inc.php:22
-msgid "(continued)"
-msgstr "(συνεχίζεται)"
-
-#: libraries/messages.inc.php:23
-msgid "Structure of table __TABLE__"
-msgstr "Δομή του πίνακα __TABLE__"
-
-#: libraries/messages.inc.php:25 server_privileges.php:227
-msgid "Includes all privileges except GRANT."
-msgstr "Περιλαμβάνει όλα τα δικαιώματα εκτός από το GRANT."
-
-#: libraries/messages.inc.php:26 server_privileges.php:153
-#: server_privileges.php:476
-msgid "Allows altering the structure of existing tables."
-msgstr "Επιτρέπει την αλλαγή δομής των υπαρχόντων πινάκων."
-
-#: libraries/messages.inc.php:27 server_privileges.php:169
-#: server_privileges.php:482
-msgid "Allows altering and dropping stored routines."
-msgstr "Επιτρέπει την αλλαγή και διαγραφή αποθηκευμένων εργασιών."
-
-#: libraries/messages.inc.php:28 server_privileges.php:145
-#: server_privileges.php:475
-msgid "Allows creating new databases and tables."
-msgstr "Επιτρέπει τη δημιουργία νέων βάσεων και πινάκων."
-
-#: libraries/messages.inc.php:29 server_privileges.php:168
-#: server_privileges.php:481
-msgid "Allows creating stored routines."
-msgstr "Επιτρέπει τη δημιουργία αποθηκευμένων εργασιών."
-
-#: libraries/messages.inc.php:30 server_privileges.php:475
-msgid "Allows creating new tables."
-msgstr "Επιτρέπει τη δημιουργία νέων πινάκων."
-
-#: libraries/messages.inc.php:31 server_privileges.php:156
-#: server_privileges.php:479
-msgid "Allows creating temporary tables."
-msgstr "Επιτρέπει τη δημιουργία προσωρινών πινάκων."
-
-#: libraries/messages.inc.php:32 server_privileges.php:170
-#: server_privileges.php:515
-msgid "Allows creating, dropping and renaming user accounts."
-msgstr "Επιτρέπει τη δημιουργία, διαγραφή και μετονομασία λογαριασμών χρηστών."
-
-#: libraries/messages.inc.php:33 server_privileges.php:160
-#: server_privileges.php:164 server_privileges.php:487
-#: server_privileges.php:491
-msgid "Allows creating new views."
-msgstr "Επιτρέπει τη δημιουργία νέων προβολών."
-
-#: libraries/messages.inc.php:34 server_privileges.php:144
-#: server_privileges.php:467
-msgid "Allows deleting data."
-msgstr "Επιτρέπει τη διαγραφή δεδομένων."
-
-#: libraries/messages.inc.php:35 server_privileges.php:146
-#: server_privileges.php:478
-msgid "Allows dropping databases and tables."
-msgstr "Επιτρέπει τη διαγραφή βάσεων και πινάκων."
-
-#: libraries/messages.inc.php:36 server_privileges.php:478
-msgid "Allows dropping tables."
-msgstr "Επιτρέπει τη διαγραφή πινάκων."
-
-#: libraries/messages.inc.php:37 server_privileges.php:161
-#: server_privileges.php:495
-msgid "Allows to set up events for the event scheduler"
-msgstr "Επιτρέπει τον ορισμό συμβάντων για τον προγραμματιστή συμβάντων"
-
-#: libraries/messages.inc.php:38 server_privileges.php:171
-#: server_privileges.php:483
-msgid "Allows executing stored routines."
-msgstr "Επιτρέπει την εκτέλεση αποθηκευμένων εργασιών."
-
-#: libraries/messages.inc.php:39 server_privileges.php:150
-#: server_privileges.php:470
-msgid "Allows importing data from and exporting data into files."
-msgstr "Επιτρέπει την εισαγωγή και εξαγωγή δεδομένων από και σε αρχεία."
-
-#: libraries/messages.inc.php:40 server_privileges.php:501
-msgid ""
-"Allows adding users and privileges without reloading the privilege tables."
-msgstr ""
-"Επιτρέπει την προσθήκη χρηστών και δικαιωμάτων χωρίς να επαναφορτώσετε τους "
-"πίνακες δικαιωμάτων."
-
-#: libraries/messages.inc.php:41 server_privileges.php:152
-#: server_privileges.php:477
-msgid "Allows creating and dropping indexes."
-msgstr "Επιτρέπει την δημιουργία και την διαγραφή ευρετηρίων."
-
-#: libraries/messages.inc.php:42 server_privileges.php:142
-#: server_privileges.php:403 server_privileges.php:465
-msgid "Allows inserting and replacing data."
-msgstr "Επιτρέπει την εισαγωγή και την αντικατάσταση δεδομένων."
-
-#: libraries/messages.inc.php:43 server_privileges.php:157
-#: server_privileges.php:510
-msgid "Allows locking tables for the current thread."
-msgstr "Επιτρέπει το κλείδωμα πινάκων για την τρέχουσα λειτουργία."
-
-#: libraries/messages.inc.php:44 server_privileges.php:607
-#: server_privileges.php:609
-msgid "Limits the number of new connections the user may open per hour."
-msgstr ""
-"Περιορίζει τον αριθμό των νέων συνδέσεων που ο χρήστης μπορεί να ξεκινήσει "
-"ανά ώρα."
-
-#: libraries/messages.inc.php:45 server_privileges.php:595
-#: server_privileges.php:597
-msgid "Limits the number of queries the user may send to the server per hour."
-msgstr ""
-"Περιορίζει τον αριθμό των ερωτημάτων που ο χρήστης μπορεί να στείλει στον "
-"διακομιστή ανά ώρα."
-
-#: libraries/messages.inc.php:46 server_privileges.php:601
-#: server_privileges.php:603
-msgid ""
-"Limits the number of commands that change any table or database the user may "
-"execute per hour."
-msgstr ""
-"Περιορίζει τον αριθμό των αλλαγής πινάκων ή βάσεων που ο χρήστης μπορεί να "
-"εκετελέσει ανά ώρα."
-
-#: libraries/messages.inc.php:47 server_privileges.php:613
-#: server_privileges.php:615
-msgid "Limits the number of simultaneous connections the user may have."
-msgstr ""
-"Περιορίζει τον αριθμό των ταυτόχρονων συνδέσεων που μπορεί να έχει ο χρήστης."
-
-#: libraries/messages.inc.php:48 server_privileges.php:149
-#: server_privileges.php:505
-msgid "Allows viewing processes of all users"
-msgstr "Επιτρέπει την προβολή διεργασιών όλων των χρηστών"
-
-#: libraries/messages.inc.php:49 server_privileges.php:151
-#: server_privileges.php:409 server_privileges.php:511
-msgid "Has no effect in this MySQL version."
-msgstr "Δεν έχει χρήση σε αυτήν την έκδοση MySQL."
-
-#: libraries/messages.inc.php:50 server_privileges.php:147
-#: server_privileges.php:506
-msgid "Allows reloading server settings and flushing the server's caches."
-msgstr ""
-"Επιτρέπει την επανεκκίνηση του διακομιστή και τον καθαρισμό των προσωρινών "
-"αρχείων του."
-
-#: libraries/messages.inc.php:51 server_privileges.php:159
-#: server_privileges.php:513
-msgid "Allows the user to ask where the slaves / masters are."
-msgstr ""
-"Δίνει το δικαίωμα στον χρήστη να βρει που είναι οι κύριοι και δευτερεύοντες "
-"διακομιστές."
-
-#: libraries/messages.inc.php:52 server_privileges.php:158
-#: server_privileges.php:514
-msgid "Needed for the replication slaves."
-msgstr "Απαιτείται για τους δευτερευόντες διακομιστές αναπαραγωγής."
-
-#: libraries/messages.inc.php:53 server_privileges.php:141
-#: server_privileges.php:400 server_privileges.php:464
-msgid "Allows reading data."
-msgstr "Επιτρέπει την ανάγνωση δεδομένων."
-
-#: libraries/messages.inc.php:54 server_privileges.php:154
-#: server_privileges.php:508
-msgid "Gives access to the complete list of databases."
-msgstr "Δίνει πρόσβαση στην πλήρη λίστα των βάσεων δεδομένων."
-
-#: libraries/messages.inc.php:55 server_privileges.php:165
-#: server_privileges.php:167 server_privileges.php:480
-msgid "Allows performing SHOW CREATE VIEW queries."
-msgstr "Επιτρέπει την εκτέλεση ερωτημάτων της μορφής SHOW CREATE VIEW."
-
-#: libraries/messages.inc.php:56 server_privileges.php:148
-#: server_privileges.php:507
-msgid "Allows shutting down the server."
-msgstr "Επιτρέπει την διακοπή λειτουργίας του διακομιστή."
-
-#: libraries/messages.inc.php:57 server_privileges.php:155
-#: server_privileges.php:504
-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/messages.inc.php:58 server_privileges.php:162
-#: server_privileges.php:496
-msgid "Allows creating and dropping triggers"
-msgstr "Επιτρέπει τη δημιουργία και διαγραφή υποδείξεων"
-
-#: libraries/messages.inc.php:59 server_privileges.php:143
-#: server_privileges.php:406 server_privileges.php:466
-msgid "Allows changing data."
-msgstr "Επιτρέπει την αλλαγή δεδομένων."
-
-#: libraries/messages.inc.php:60 server_privileges.php:221
-msgid "No privileges."
-msgstr "Χωρίς δικαιώματα."
-
-#: libraries/messages.inc.php:62
-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 ""
-"Ο αριθμός των συναλλαγών που χρησιμοποιούν την προσωρινή δυαδική λανθάνουσα "
-"μνήμη καταγραφής που υπερβαίνει την τιμή binlog_cache_size και χρησιμοποιούν "
-"ένα προσωρινό αρχείο για αποθήκευση δηλώσεων από τη συναλλαγή."
-
-#: libraries/messages.inc.php:63
-msgid "The number of transactions that used the temporary binary log cache."
-msgstr ""
-"Ο αριθμός των συναλλαγών που χρησιμοποίησαν την προσωρινή δυαδική λανθάνουσα "
-"μνήμη καταγραφής."
-
-#: libraries/messages.inc.php:64
-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 "
-"to increase the tmp_table_size value to cause temporary tables to be memory-"
-"based instead of disk-based."
-msgstr ""
-"Ο αριθμός των προσωρινών πινάκων στο δίσκο που δημιουργήθηκαν αυτόματα από "
-"τον διακομιστή κατά την εκτέλεση δηλώσεων. Αν το Created_tmp_disk_tables "
-"είναι μεγάλο, ίσως θέλετε να αυξήσετε την τιμή tmp_table_size ώστε οι "
-"προσωρινοί πίνακες να είναι στη μνήμη και όχι στο δίσκο."
-
-#: libraries/messages.inc.php:65
-msgid "How many temporary files mysqld has created."
-msgstr "Πόσα προσωρινά αρχεία δημιούργησε το mysqld."
-
-#: libraries/messages.inc.php:66
-msgid ""
-"The number of in-memory temporary tables created automatically by the server "
-"while executing statements."
-msgstr ""
-"Ο αριθμός των προσωρινών πινάκων στη μνήμη που δημιουργήθηκαν αυτόματα από "
-"τον διακομιστή κατά την εκτέλεσε δηλώσεων."
-
-#: libraries/messages.inc.php:67
-msgid ""
-"The number of rows written with INSERT DELAYED for which some error occurred "
-"(probably duplicate key)."
-msgstr ""
-"Ο αριθμός των εγεγγραμμένων γραμμών με την εντολή INSERT DELAYED για τις "
-"οποίες υπήρξε κάποιο σφάλμα (πιθανόν διπλό κλειδί)."
-
-#: libraries/messages.inc.php:68
-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 σε χρήση. Κάθε "
-"διαφορετικός πίνακας στον οποίο κάποιος χρησιμοποιεί την εντολή INSERT "
-"DELAYED χρησιμοποιεί της δική του διεργασία."
-
-#: libraries/messages.inc.php:69
-msgid "The number of INSERT DELAYED rows written."
-msgstr ""
-"Ο αριθμός των ΚΑΘΥΣΤΕΡΗΜΕΝΑ ΕΙΣΕΡΧΟΜΕΝΩΝ (INSERT DELAYED) γραμμών που "
-"εγγράφτηκαν."
-
-#: libraries/messages.inc.php:70
-msgid "The number of executed FLUSH statements."
-msgstr "Ο αριθμός των εκτελεσθέντων δηλώσεων ΕΚΚΑΘΑΡΙΣΗΣ (FLUSH)."
-
-#: libraries/messages.inc.php:71
-msgid "The number of internal COMMIT statements."
-msgstr "Ο αριθμός των εσωτερικών δηλώσεων ΠΑΡΑΠΟΜΠΗΣ (COMMIT)."
-
-#: libraries/messages.inc.php:72
-msgid "The number of times a row was deleted from a table."
-msgstr "Οι φορές που διαγράφτηκε μια γραμμή από έναν πίνακα."
-
-#: libraries/messages.inc.php:73
-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 ""
-"Ο διακομιστής MySQL μπορεί να ρωτήσει τη μηχανή αποθήκευσης συμπλέγματος "
-"NDB, αν γνωρίζει σχετικά με έναν πίνακα με δοθέν όνομα. Αυτό καλείται "
-"ανακάλυψη. Το Handler_discover δείχνει τον αριθμό των πινάκων χρόνου που "
-"βρέθηκαν."
-
-#: libraries/messages.inc.php:74
-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 ""
-"Οι φορές που αναγνώστηκε η πρώτη εισαγωγή από ένα ευρετήριο. Αν ο αριθμός "
-"είναι υψηλός, αύτο σημαίνει ότι ο διακομιστής κάνει πολλές πλήρεις σαρώσεις "
-"ευρετηρίου. Παράδειγμα: SELECT col1 FROM foo, υποθέτοντας ότι το col1 έχει "
-"ευρετήριο."
-
-#: libraries/messages.inc.php:75
-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/messages.inc.php:76
-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/messages.inc.php:77
-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 ""
-"Ο αριθμός των αιτήσεων που ανέγνωσαν την προηγούμενη γραμμή ανά κλειδί. Αυτή "
-"η μέθοδος ανάγνωσης χρησιμοποιείτε κυρίως για βελτιστοποίηση της εντολής "
-"ORDER BY ... DESC."
-
-#: libraries/messages.inc.php:78
-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 "
-"probably have a lot of queries that require MySQL to scan whole tables or "
-"you have joins that don't use keys properly."
-msgstr ""
-"Ο αριθμός των αιτήσεων ανάγνωσης μιας γραμμής βασισμένων σε μια σταθερή "
-"θέση. Αύτός είναι υψηλός αν κάνετε πολλά ερωτήματα που απαιτούν ταξινόμηση "
-"αποτελέσματος. Ίσως έχετε πολλά ερωτήματα που απαιτούν από τη MySQL να "
-"σαρώνει ολόκληρους πίνακες ή έχετε ενώσεις που δεν χρησιμοποιούν σωστά τα "
-"κλειδιά."
-
-#: libraries/messages.inc.php:79
-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 "
-"tables are not properly indexed or that your queries are not written to take "
-"advantage of the indexes you have."
-msgstr ""
-"Ο αριθμός των αιτήσεων ανάγνωσης της επόμενης γραμμής στο αρχείο δεδομένων. "
-"Αυτός είναι υψηλός, αν κάνετε αρκετές σαρώσεις πινάκων. Γενικά αυτό σημαίνει "
-"ότι οι πίνακες σας δεν έχουν σωστά ευρετήρια ή ότι τα ερωτήματά σας δεν "
-"έχουν γραφτεί ώστε να λαμβάνουν υπόψη τα ευρετήρια που έχετε."
-
-#: libraries/messages.inc.php:80
-msgid "The number of internal ROLLBACK statements."
-msgstr "Ο αριθμός των εσωτερικών δηλώσεων ΕΠΙΣΤΡΟΦΗΣ (ROLLBACK)."
-
-#: libraries/messages.inc.php:81
-msgid "The number of requests to update a row in a table."
-msgstr "Ο αριθμός των αιτήσεων για ενημέρωση μιας γραμμής σε έναν πίνακα."
-
-#: libraries/messages.inc.php:82
-msgid "The number of requests to insert a row in a table."
-msgstr "Ο αριθμός των αιτήσεων για εισαγωγή μιας γραμμής σε έναν πίνακα."
-
-#: libraries/messages.inc.php:83
-msgid "The number of pages containing data (dirty or clean)."
-msgstr "Ο αριθμός των σελίδων που περιέχουν δεδομένα (καθαρά και μη)."
-
-#: libraries/messages.inc.php:84
-msgid "The number of pages currently dirty."
-msgstr "Ο αριθμός των μη καθαρώ σελίδων."
-
-#: libraries/messages.inc.php:85
-msgid "The number of buffer pool pages that have been requested to be flushed."
-msgstr ""
-"Ο αριθμός των σελίδων του buffer pool για τις οποίες υπήρξε αίτηση για "
-"εκκαθάριση."
-
-#: libraries/messages.inc.php:86
-msgid "The number of free pages."
-msgstr "Ο αριθμός των ελεύθερων σελίδων."
-
-#: libraries/messages.inc.php:87
-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 ""
-"Ο αριθμός των κλειδωμένων σελίδων στο buffer pool της InnoDB. Υπάρχουν "
-"σελίδες που έχουν ήδη αναγνωστεί ή εγγραφεί ή που δεν μπορούν να "
-"εκκαθαριστούν ή απομακρυνθούν για κάποιο άλλο λόγο."
-
-#: libraries/messages.inc.php:88
-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 "
-"be calculated as Innodb_buffer_pool_pages_total - "
-"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data."
-msgstr ""
-"Ο αριθμός των απασχολούμενων σελίδων γιατί έχουν δεσμευτεί για διαχειριστική "
-"υπερκεφαλή όπως κλειδώματα γραμμής ή το υιοθετημένο ευρετήριο μνήμης. Αυτή η "
-"τιμή μπορεί να υπολογιστεί ως Innodb_buffer_pool_pages_total - "
-"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data."
-
-#: libraries/messages.inc.php:89
-msgid "Total size of buffer pool, in pages."
-msgstr "Συνολικό μέγεθος του buffer pool, σε σελίδες."
-
-#: libraries/messages.inc.php:90
-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 ""
-"Ο αριθμός των «τυχαίων» αναγνώσεων κεφαλίδων της InnoDB που ξεκίνησαν. Αυτό "
-"συμβαίνει όταν ένα ερώτημα πρόκειται να σαρώσει ένα μεγάλο τμήμα πίνακα αλλά "
-"με τυχαία σειρά."
-
-#: libraries/messages.inc.php:91
-msgid ""
-"The number of sequential read-aheads InnoDB initiated. This happens when "
-"InnoDB does a sequential full table scan."
-msgstr ""
-"Ο αριθμός των διαδοχικών αναγνώσεων κεφαλίδων της InnoDB που ξεκίνησαν. Αυτό "
-"συμβείναι όταν η InnoDB εκτελεί μια διαδοχική πλήρη σάρωση πίνακα."
-
-#: libraries/messages.inc.php:92
-msgid "The number of logical read requests InnoDB has done."
-msgstr "Ο αριθμός των λογικών αιτήσεων ανάγνωσης που έκαν η InnoDB."
-
-#: libraries/messages.inc.php:93
-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/messages.inc.php:94
-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 "
-"available, it's necessary to wait for pages to be flushed first. This "
-"counter counts instances of these waits. If the buffer pool size was set "
-"properly, this value should be small."
-msgstr ""
-"Κανονικά, οι εγγραφές συμβαίνουν στο υπόβαθρο του buffer pool της InnoDB. "
-"Ωστόσο, αν είναι απαραίτητο να διαβάσετε ή να δημιουργήσετε μια σελίδα δεν "
-"υπάρχουν διαθέσιμες σελίδες, είναι απαραίτητό να περιμένετε πρώτα την "
-"εκκαθάριση των σελίδων. Αυτός ο μετρητής μετράει συμβάντα αυτών των "
-"αναμονών. Αν το μέγεθος του buffer pool έχει οριστεί σωστά, αυτή η τιμή "
-"πρέπει να είναι μικρή."
-
-#: libraries/messages.inc.php:95
-msgid "The number writes done to the InnoDB buffer pool."
-msgstr "Ο αριθμός των εγγραφών που έγιναν στο buffer pool της InnoDB."
-
-#: libraries/messages.inc.php:96
-msgid "The number of fsync() operations so far."
-msgstr "Ο αριθμός των λειτουργιών του fsync() μέχρι στιγμής."
-
-#: libraries/messages.inc.php:97
-msgid "The current number of pending fsync() operations."
-msgstr "Ο τρέχων αριθμός των εκκρεμών λειτουργιών του fsync()."
-
-#: libraries/messages.inc.php:98
-msgid "The current number of pending reads."
-msgstr "Ο τρέχων αριθμός των εκκρεμών αναγνώσεων."
-
-#: libraries/messages.inc.php:99
-msgid "The current number of pending writes."
-msgstr "Ο τρέχων αριθμός των εκκρεμών εγγραφών."
-
-#: libraries/messages.inc.php:100
-msgid "The amount of data read so far, in bytes."
-msgstr "Το πλήθος των δεδομένων που αναγνώστηκε μέχρι στιγμής σε bytes."
-
-#: libraries/messages.inc.php:101
-msgid "The total number of data reads."
-msgstr "Ο συνολικός αριθμός των αναγνώσεων δεδομένων."
-
-#: libraries/messages.inc.php:102
-msgid "The total number of data writes."
-msgstr "Ο συνολικός αριθμός των εγγραφών δεδομένων."
-
-#: libraries/messages.inc.php:103
-msgid "The amount of data written so far, in bytes."
-msgstr "Το πλήθος των εγεγγραμμένων δεδομένων μέχρι στιγμής, σε bytes."
-
-#: libraries/messages.inc.php:104
-msgid "The number of pages that have been written for doublewrite operations."
-msgstr ""
-"Ο αριθμός των εγγραφών διπλοεγγραφής που έγιναν και ο αριθμός των σελίδων "
-"που γράφτηκαν για αυτό το σκοπό."
-
-#: libraries/messages.inc.php:105
-msgid "The number of doublewrite operations that have been performed."
-msgstr ""
-"Ο αριθμός των εγγραφών διπλοεγγραφής που έγιναν και ο αριθμός των σελίδων "
-"που γράφτηκαν για αυτό το σκοπό."
-
-#: libraries/messages.inc.php:106
-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 ""
-"Ο αριθμός των αναμονών που έγιναν εξαιτίας του μικρού μεγέθος του buffer "
-"καταγραφής και και έπρεπε να αναμένεται να εκκαθαριστεί πριν συνεχίσει."
-
-#: libraries/messages.inc.php:107
-msgid "The number of log write requests."
-msgstr "Ο αριθμός των αιτήσεων εγγραφής καταγραφής."
-
-#: libraries/messages.inc.php:108
-msgid "The number of physical writes to the log file."
-msgstr "Ο αριθμός των φυσικών εγγραφών στο αρχείο καταγραφής."
-
-#: libraries/messages.inc.php:109
-msgid "The number of fsync() writes done to the log file."
-msgstr "Ο αριθμός των εγγραφών fsyncs που ολοκληρώθηκαν στο αρχείο καταγραφής."
-
-#: libraries/messages.inc.php:110
-msgid "The number of pending log file fsyncs."
-msgstr "Ο αριθμός των εκκρεμών fsyncs στο αρχείο καταγραφής."
-
-#: libraries/messages.inc.php:111
-msgid "Pending log file writes."
-msgstr "Εκκρεμείς εγγραφές αρχείου καταγραφής."
-
-#: libraries/messages.inc.php:112
-msgid "The number of bytes written to the log file."
-msgstr "Ο αριθμός των εγεγγραμμένων bytes στο αρχείο καταγραφής."
-
-#: libraries/messages.inc.php:113
-msgid "The number of pages created."
-msgstr "Ο αριθμός των δημιουργηθέντων σελίδων."
-
-#: libraries/messages.inc.php:114
-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 ""
-"Το μέγεθος μεταφρασμένης σελίδας της InnoDB (προεπιλογή: 16KB). Πολλές τιμές "
-"υπολογίζονται σε σελίδες. Το μέγεθος της σελίδας επιτρέπει την εύκολη "
-"μετατροπή σε bytes."
-
-#: libraries/messages.inc.php:115
-msgid "The number of pages read."
-msgstr "Ο αριθμός των αναγνωσμένων σελίδων."
-
-#: libraries/messages.inc.php:116
-msgid "The number of pages written."
-msgstr "Ο αριθμός των εγεγγραμμένων σελίδων."
-
-#: libraries/messages.inc.php:117
-msgid "The number of row locks currently being waited for."
-msgstr "Ο αριθμός των κλειδωμάτων γραμμής που είναι τώρα σε αναμονή."
-
-#: libraries/messages.inc.php:118
-msgid "The average time to acquire a row lock, in milliseconds."
-msgstr ""
-"Ο μέσος χρόνος απόκτησης ενός κλειδώματος γραμμής σε χιλιοστοδευτερόλεπτα."
-
-#: libraries/messages.inc.php:119
-msgid "The total time spent in acquiring row locks, in milliseconds."
-msgstr ""
-"Ο συνολικός απαιτούμενος χρόνος απόκτησης κλειδώματος γραμμής σε "
-"χιλιοστοδευτερόλεπτα."
-
-#: libraries/messages.inc.php:120
-msgid "The maximum time to acquire a row lock, in milliseconds."
-msgstr ""
-"Ο μέγιστος χρόνος απόκτησης ενός κλειδώματος γραμμής σε "
-"χιλιοστοδευτερόλεπτα.."
-
-#: libraries/messages.inc.php:121
-msgid "The number of times a row lock had to be waited for."
-msgstr "Οι φορές που πρέπει να αναμένεται ένα κλείδωμα γραμμής."
-
-#: libraries/messages.inc.php:122
-msgid "The number of rows deleted from InnoDB tables."
-msgstr "Ο αριθμός των διαγραμμένων γραμμών από πίνακες InnoDB."
-
-#: libraries/messages.inc.php:123
-msgid "The number of rows inserted in InnoDB tables."
-msgstr "Ο αριθμός των εισαχθέντων γραμμών σε πίνακες InnoDB."
-
-#: libraries/messages.inc.php:124
-msgid "The number of rows read from InnoDB tables."
-msgstr "Ο αριθμός των αναγνωσμένων γραμμών από πίνακες InnoDB."
-
-#: libraries/messages.inc.php:125
-msgid "The number of rows updated in InnoDB tables."
-msgstr "Ο αριθμός των ενημερωμένων γραμμών σε πίνακες InnoDB."
-
-#: libraries/messages.inc.php:126
-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/messages.inc.php:127
-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/messages.inc.php:128
-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/messages.inc.php:129
-msgid "The number of requests to read a key block from the cache."
-msgstr ""
-"Ο αριθμός των αιτήσεων ανάγνωσης ενός μπλοκ κλειδιού από τη λανθάνουσα μνήμη."
-
-#: libraries/messages.inc.php:130
-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 ""
-"Ο αριθμός των φυσικών αναγνώσεων ενός μπλοκ κλειδιού από το δίσκο. Αν το "
-"Key_reads είναι μεγάλο, τότε η τιμή key_buffer_size είναι πιθανόν πολύ "
-"μικρή. Ο βαθμό απώλειας λανθάνουσας μνήμης μπορεί να υπολογιστεί ως "
-"Key_reads/Key_read_requests."
-
-#: libraries/messages.inc.php:131
-msgid "The number of requests to write a key block to the cache."
-msgstr ""
-"Ο αριθμός των αιτήσεων εγγραφής ενός μπλοκ κλειδιού στη λανθάνουσα μνήμη."
-
-#: libraries/messages.inc.php:132
-msgid "The number of physical writes of a key block to disk."
-msgstr "Ο αριθμός των φυσικών εγγραφών ενός κλειδιού στο δίσκο."
-
-#: libraries/messages.inc.php:133
-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 ""
-"Το συνολικό κόστος του τελευταίου μεταφρασμένου ερωτήματος όπως υπολογίστηκε "
-"από τον βελτιοποιητή ερωτήματος. Είναι χρήσιμο για σύγκριση κόστους "
-"διαφορετικών σχεδίων ερωτημάτων για το ίδιο ερώτημα. Η προεπιλεγμένη τιμή 0 "
-"σημαίνει ότι κανένα ερώτημα δεν μεταφράστηκε ακόμα."
-
-#: libraries/messages.inc.php:134
-msgid "The number of rows waiting to be written in INSERT DELAYED queues."
-msgstr ""
-"Ο αριθμός των γραμμών σε αναμονή για εγγραφή στις σειρές ΚΑΘΥΣΤΕΡΗΜΕΝΩΝ "
-"ΕΙΣΑΓΩΓΩΝ (INSERT DELAYED)."
-
-#: libraries/messages.inc.php:135
-msgid ""
-"The number of tables that have been opened. If opened tables is big, your "
-"table cache value is probably too small."
-msgstr ""
-"Ο αριθμός των πινάκων που ανοίχτηκαν. Αν οι ανοιγμένοι πίνακες είναι "
-"μεγάλοι, η τιμή λανθάνουσας μνήμης πινάκων είναι πιθανον μικρή."
-
-#: libraries/messages.inc.php:136
-msgid "The number of files that are open."
-msgstr "Ο αριθμός των αρχείων που είναι ανοιχτά."
-
-#: libraries/messages.inc.php:137
-msgid "The number of streams that are open (used mainly for logging)."
-msgstr ""
-"Ο αριθμός των ροών που είναι ανοιχτές (χρησιμοποιούνται κυρίως για "
-"καταγραφή)."
-
-#: libraries/messages.inc.php:138
-msgid "The number of tables that are open."
-msgstr "Ο αριθμός των πινάκων που είναι ανοιχτοί."
-
-#: libraries/messages.inc.php:139
-msgid "The number of free memory blocks in query cache."
-msgstr "Ο αριθμός των ελεύθερων μπλοκ μνήμης στη λανθάνουσα μνήμη ερωτημάτων."
-
-#: libraries/messages.inc.php:140
-msgid "The amount of free memory for query cache."
-msgstr "Το μέγεθος της ελεύθερης μνήμης για λανθάνουσα μνήμη ερωτημάτων."
-
-#: libraries/messages.inc.php:141
-msgid "The number of cache hits."
-msgstr "Ο αριθμός των προσπελάσεων λανθάνουσας μνήμης."
-
-#: libraries/messages.inc.php:142
-msgid "The number of queries added to the cache."
-msgstr "Ο αριθμός των ερωτημάτων που προστέθηκαν στην λανθάνουσα μνήμη."
-
-#: libraries/messages.inc.php:143
-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 "
-"cache size. The query cache uses a least recently used (LRU) strategy to "
-"decide which queries to remove from the cache."
-msgstr ""
-"Ο αριθμός των ερωτημάτων που έχουν απομακρυνθεί από τη λανθάνουσα μνήμη για "
-"την απελευθέρωση της μνήμης για την απομνημόνευση νέων ερωτημάτων. Αυτή η "
-"πληροφορία σας βοηθάει να ρυθμίσετε το μέγεθος της λανθάνουσας μνήμης "
-"ερωτήματος. Η λανθάνουσα μνήμη ερωτημάτων χρησιμοποιεί μια τελευταία "
-"χρησιμοποιούμενη στρατηγική (LRU) για να αποφασίσει ποια ερωτήματα να "
-"απομακρύνει από τη λανθάνουσα μνήμη."
-
-#: libraries/messages.inc.php:144
-msgid ""
-"The number of non-cached queries (not cachable, or not cached due to the "
-"query_cache_type setting)."
-msgstr ""
-"Ο αριθμός των μη λανθανόντων ερωτημάτων (μη απομνημονεύσιμα ή δεν "
-"απομνημονεύονται λόγω της ρύθμισης query_cache_type)."
-
-#: libraries/messages.inc.php:145
-msgid "The number of queries registered in the cache."
-msgstr "Ο αριθμός των καταχωρημένων ερωτημάτων στη λανθάνουσα μνήμη."
-
-#: libraries/messages.inc.php:146
-msgid "The total number of blocks in the query cache."
-msgstr "Ο συνολικός αριθμός των μπλοκς στη λανθάνουσα μνήμη ερωτημάτων."
-
-#: libraries/messages.inc.php:147
-msgctxt "$strShowStatusReset"
-msgid "Reset"
-msgstr "Επαναφορά"
-
-#: libraries/messages.inc.php:148
-msgid "The status of failsafe replication (not yet implemented)."
-msgstr "Η κατάσταση της ασφαλούς αναπαραγωγής (δεν έχει εφαρμοστεί)."
-
-#: libraries/messages.inc.php:149
-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 ""
-"Ο αριθμός των ενώσεων που δεν χρησιμοποιούν ευρετήρια. Αν η τιμή είναι 0, "
-"πρέπει να ελέγχετε προσεκτικά τα ευρετήρια των πινάκων σας."
-
-#: libraries/messages.inc.php:150
-msgid "The number of joins that used a range search on a reference table."
-msgstr ""
-"Ο αριθμός των ενώσεων που χρησιμοποιήσαν μια αναζήτηση εύρους σε έναν πίνακα "
-"παραπομπής."
-
-#: libraries/messages.inc.php:151
-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 ""
-"Ο αριθμός των ενώσεων χωρίς κλειδιά που ελέγχουν τη χρήση κλειδιού μετά από "
-"κάθε γραμμή. (Αν αυτό δεν είναι 0, πρέπει να ελέγχετε προσεκτικά τα "
-"ευρετήρια των πινάκων σας.)"
-
-#: libraries/messages.inc.php:152
-msgid ""
-"The number of joins that used ranges on the first table. (It's normally not "
-"critical even if this is big.)"
-msgstr ""
-"Ο αριθμός των ενώσεων που χρησιμοποιούν εύρη στον πρώτο πίνακα. (Κανονικά "
-"δεν είναι κρίσιμος αν δεν είναι μεγάλος.)"
-
-#: libraries/messages.inc.php:153
-msgid "The number of joins that did a full scan of the first table."
-msgstr "Ο αριθμός των ενώσεων που έκαναν μια πλήρη σάρωση του πρώτου πίνακα."
-
-#: libraries/messages.inc.php:154
-msgid "The number of temporary tables currently open by the slave SQL thread."
-msgstr ""
-"Ο αριθμός των προσωρινών πινάκων που είναι τώρα ανοιχτοί από τη δευτερεύουσα "
-"συνεργασία SQL."
-
-#: libraries/messages.inc.php:155
-msgid ""
-"Total (since startup) number of times the replication slave SQL thread has "
-"retried transactions."
-msgstr ""
-"Συνολικές φορές (από την εκκίνηση) που η διεργασία δευτερεύουσας "
-"αναπαραγωγής SQL έχει ξαναδοκιμάσει συναλλαγές."
-
-#: libraries/messages.inc.php:156
-msgid "This is ON if this server is a slave that is connected to a master."
-msgstr ""
-"Αυτό είναι ΑΝΟΙΧΤΟ, αν αυτός ο διακομιστής είναι δευτερεύων που συνδέεται σε "
-"πρωτεύωντα."
-
-#: libraries/messages.inc.php:157
-msgid ""
-"The number of threads that have taken more than slow_launch_time seconds to "
-"create."
-msgstr ""
-"Ο αριθμός των διεργασιών που έλαβαν περισσότερα από slow_launch_time "
-"δευτερόλεπτα να δημιουργηθούν."
-
-#: libraries/messages.inc.php:158
-msgid ""
-"The number of queries that have taken more than long_query_time seconds."
-msgstr ""
-"Ο αριθμός των ερωτημάτων που έλαβαν περισσότερα από long_query_time "
-"δευτερόλεπτα."
-
-#: libraries/messages.inc.php:159
-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 ""
-"Ο αριθμός των συνόλων περασμάτων που έπρεπε να κάνει ο αλγόριθμός "
-"ταξινόμησης. Αν ο αριθμός είναι μεγάλος, πρέπει να αυξήσετε την τιμή της "
-"μεταβλητής συστήματος sort_buffer_size."
-
-#: libraries/messages.inc.php:160
-msgid "The number of sorts that were done with ranges."
-msgstr "Ο αριθμός των ταξινομήσεων που έγιναν με εύρη."
-
-#: libraries/messages.inc.php:161
-msgid "The number of sorted rows."
-msgstr "Ο αριθμός των ταξινομημένων γραμμών."
-
-#: libraries/messages.inc.php:162
-msgid "The number of sorts that were done by scanning the table."
-msgstr "Ο αριθμός των ταξινομήσεων που έγιναν σαρώνοντας τον πίνακα."
-
-#: libraries/messages.inc.php:163
-msgid "The number of times that a table lock was acquired immediately."
-msgstr "Οι φορές που ένα κλείδωμα πινακα ανακτήθηκε άμεσα.."
-
-#: libraries/messages.inc.php:164
-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 "
-"should first optimize your queries, and then either split your table or "
-"tables or use replication."
-msgstr ""
-"Οι φορές που ένα κλείδωμα πίνακα δεν μπόρεσε να ληφθεί αμέσως και ήταν "
-"απαραίτητη μια αναμονή. Αν ο αριθμός είναι υψηλός, και έχετε προβλήματα "
-"απόδοσης, πρέπει πρώτα να βελτιώσετε τα ερωτήματά σας και μετά χωρίστε τον "
-"πίνακα ή τους πίνακες ή χρησιμοποιείστε αναπαραγωγή."
-
-#: libraries/messages.inc.php:165
-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 ""
-"Ο αριθμός των διεργασιών στη λανθάνουσα μνήμη διεργασιών. Ο βαθμός χρήσης "
-"λανθάνουσας μνήμης μπορεί να υπολογιστεί ως Threads_created/Connections. Αν "
-"η τιμή είναι κόκκινη πρέπει να αυξήσετε την τιμή thread_cache_size."
-
-#: libraries/messages.inc.php:166
-msgid "The number of currently open connections."
-msgstr "Ο αριθμός των τρέχοντων ανοιγμένων συνδέσεων."
-
-#: libraries/messages.inc.php:167
-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 "
-"doesn't give a notable performance improvement if you have a good thread "
-"implementation.)"
-msgstr ""
-"Ο αριθμός των διεργασιών που δημιουργήθηκαν για το χειρισμό συνδέσεων. Αν το "
-"Threads_created είναι μεγάλο, ίσως θέλετε να αυξήσετε την τιμή "
-"thread_cache_size. (Κανονικά αυτό δεν δίνει μια σημαντική βελτίωση απόδοσης "
-"αν έχετε μια καλή εφαρμογή διεργασίας.)"
-
-#: libraries/messages.inc.php:168
-msgid "The number of threads that are not sleeping."
-msgstr "Ο αριθμός των διεργασιών που δεν είναι σε νάρκη."
-
#: libraries/mult_submits.inc.php:76 libraries/tbl_properties.inc.php:513
#: tbl_structure.php:29 tbl_structure.php:153 tbl_structure.php:157
#: tbl_structure.php:473
@@ -4439,8 +3547,8 @@ msgstr ""
#: libraries/replication_gui.lib.php:55 libraries/replication_gui.lib.php:56
#: libraries/replication_gui.lib.php:249 libraries/replication_gui.lib.php:252
-#: libraries/replication_gui.lib.php:259 server_privileges.php:672
-#: server_privileges.php:675 server_privileges.php:682
+#: libraries/replication_gui.lib.php:259 server_privileges.php:711
+#: server_privileges.php:714 server_privileges.php:721
#: server_synchronize.php:1171
msgid "User name"
msgstr "Όνομα χρήστη"
@@ -4458,11 +3566,11 @@ msgid "Slave status"
msgstr "Κατάσταση δευτερεύοντος"
#: libraries/replication_gui.lib.php:114 libraries/sql_query_form.lib.php:445
-#: server_status.php:626 server_variables.php:52
+#: server_status.php:737 server_variables.php:52
msgid "Variable"
msgstr "Μεταβλητή"
-#: libraries/replication_gui.lib.php:115 server_status.php:627
+#: libraries/replication_gui.lib.php:115 server_status.php:738
#: tbl_change.php:324 tbl_printview.php:370 tbl_select.php:139
#: tbl_structure.php:729
msgid "Value"
@@ -4484,34 +3592,34 @@ msgstr ""
msgid "Add slave replication user"
msgstr "Προσθήκη δευτερέοντα χρήστη αναπαραγωγής"
-#: libraries/replication_gui.lib.php:254 server_privileges.php:677
+#: libraries/replication_gui.lib.php:254 server_privileges.php:716
msgid "Any user"
msgstr "Οποιοσδήποτε Χρήστης"
#: libraries/replication_gui.lib.php:255 libraries/replication_gui.lib.php:323
-#: libraries/replication_gui.lib.php:346 server_privileges.php:678
-#: server_privileges.php:745 server_privileges.php:769
-#: server_privileges.php:1889 server_privileges.php:1919
+#: libraries/replication_gui.lib.php:346 server_privileges.php:717
+#: server_privileges.php:784 server_privileges.php:808
+#: server_privileges.php:1928 server_privileges.php:1958
msgid "Use text field"
msgstr "Χρησιμοποιήστε το πεδίο κειμένου"
-#: libraries/replication_gui.lib.php:302 server_privileges.php:725
+#: libraries/replication_gui.lib.php:302 server_privileges.php:764
msgid "Any host"
msgstr "Οποιοδήποτε Σύστημα"
-#: libraries/replication_gui.lib.php:306 server_privileges.php:729
+#: libraries/replication_gui.lib.php:306 server_privileges.php:768
msgid "Local"
msgstr "Τοπικό"
-#: libraries/replication_gui.lib.php:312 server_privileges.php:734
+#: libraries/replication_gui.lib.php:312 server_privileges.php:773
msgid "This Host"
msgstr "Αυτός ο διακομιστής"
-#: libraries/replication_gui.lib.php:318 server_privileges.php:740
+#: libraries/replication_gui.lib.php:318 server_privileges.php:779
msgid "Use Host Table"
msgstr "Χρήση Οικείου Πίνακα"
-#: libraries/replication_gui.lib.php:331 server_privileges.php:753
+#: libraries/replication_gui.lib.php:331 server_privileges.php:792
msgid ""
"When Host table is used, this field is ignored and values stored in Host "
"table are used instead."
@@ -4519,8 +3627,25 @@ msgstr ""
"Όταν χρησιμοποιείται ο Οικείος πίνακας, παραβλέπεται αυτό το πεδίο και "
"χρησιμοποιούνται τιμές που είναι αποθηκευμένες στον Οικείο πίνακα."
-#: libraries/select_lang.lib.php:480 libraries/select_lang.lib.php:486
-#: libraries/select_lang.lib.php:492
+#. l10n: Text direction, use either ltr or rtl
+#: libraries/select_lang.lib.php:491
+msgid "ltr"
+msgstr "ltr"
+
+#: libraries/select_lang.lib.php:493
+msgid "Content of table __TABLE__"
+msgstr "Περιεχόμενο του πίνακα __TABLE__"
+
+#: libraries/select_lang.lib.php:494
+msgid "(continued)"
+msgstr "(συνεχίζεται)"
+
+#: libraries/select_lang.lib.php:495
+msgid "Structure of table __TABLE__"
+msgstr "Δομή του πίνακα __TABLE__"
+
+#: libraries/select_lang.lib.php:500 libraries/select_lang.lib.php:506
+#: libraries/select_lang.lib.php:512
#, php-format
msgid "Unknown language: %1$s."
msgstr "Άγνωστη γλώσσα: %1$s."
@@ -4531,7 +3656,7 @@ msgid "Servers"
msgstr "Διακομιστές"
#: libraries/server_links.inc.php:53 server_engines.php:112
-#: server_engines.php:116 server_status.php:304 test/theme.php:105
+#: server_engines.php:116 server_status.php:415 test/theme.php:105
msgid "Variables"
msgstr "Μεταβλητές"
@@ -4544,7 +3669,7 @@ msgid "Engines"
msgstr "Μηχανές"
#: libraries/server_links.inc.php:76 server_binlog.php:110
-#: server_status.php:253 test/theme.php:121
+#: server_status.php:364 test/theme.php:121
msgid "Binary log"
msgstr "Δυαδικό αρχείο καταγραφής"
@@ -5027,8 +4152,8 @@ msgstr "Επαναφορά"
msgid "Protocol version"
msgstr "Έκδοση πρωτοκόλλου"
-#: main.php:189 server_privileges.php:1350 server_privileges.php:1497
-#: server_privileges.php:1611 server_privileges.php:2029
+#: main.php:189 server_privileges.php:1389 server_privileges.php:1536
+#: server_privileges.php:1650 server_privileges.php:2068
#: server_processlist.php:54
msgid "User"
msgstr "Χρήστης"
@@ -5425,7 +4550,7 @@ msgstr "%s βάσεις δεδομένων διεγράφησαν επιτυχώ
msgid "Databases statistics"
msgstr "Στατιστικά βάσης"
-#: server_databases.php:117 server_status.php:260
+#: server_databases.php:117 server_status.php:371
#: setup/lib/messages.inc.php:117
msgid "Tables"
msgstr "Πίνακες"
@@ -5444,6 +4569,18 @@ msgstr "Δευτερεύουσα αναπαραγωγή"
msgid "Jump to database"
msgstr "Μετάβαση στη βάση δεδομένων"
+#: server_databases.php:267
+#, fuzzy
+#| msgid "Master replication"
+msgid "Not replicated"
+msgstr "Πρωτεύουσα αναπαραγωγή"
+
+#: server_databases.php:273
+#, fuzzy
+#| msgid "Replication"
+msgid "Replicated"
+msgstr "Αναπαραγωγή"
+
#: server_databases.php:289
#, php-format
msgid "Check privileges for database "%s"."
@@ -5477,143 +4614,341 @@ msgstr "Μηχανές αποθήκευσης"
msgid "View dump (schema) of databases"
msgstr "Εμφάνισης σχήματος βάσεων"
-#: server_privileges.php:263 server_privileges.php:264
+#: server_privileges.php:24 server_privileges.php:266
+msgid "Includes all privileges except GRANT."
+msgstr "Περιλαμβάνει όλα τα δικαιώματα εκτός από το GRANT."
+
+#: server_privileges.php:25 server_privileges.php:192
+#: server_privileges.php:515
+msgid "Allows altering the structure of existing tables."
+msgstr "Επιτρέπει την αλλαγή δομής των υπαρχόντων πινάκων."
+
+#: server_privileges.php:26 server_privileges.php:208
+#: server_privileges.php:521
+msgid "Allows altering and dropping stored routines."
+msgstr "Επιτρέπει την αλλαγή και διαγραφή αποθηκευμένων εργασιών."
+
+#: server_privileges.php:27 server_privileges.php:184
+#: server_privileges.php:514
+msgid "Allows creating new databases and tables."
+msgstr "Επιτρέπει τη δημιουργία νέων βάσεων και πινάκων."
+
+#: server_privileges.php:28 server_privileges.php:207
+#: server_privileges.php:520
+msgid "Allows creating stored routines."
+msgstr "Επιτρέπει τη δημιουργία αποθηκευμένων εργασιών."
+
+#: server_privileges.php:29 server_privileges.php:514
+msgid "Allows creating new tables."
+msgstr "Επιτρέπει τη δημιουργία νέων πινάκων."
+
+#: server_privileges.php:30 server_privileges.php:195
+#: server_privileges.php:518
+msgid "Allows creating temporary tables."
+msgstr "Επιτρέπει τη δημιουργία προσωρινών πινάκων."
+
+#: server_privileges.php:31 server_privileges.php:209
+#: server_privileges.php:554
+msgid "Allows creating, dropping and renaming user accounts."
+msgstr "Επιτρέπει τη δημιουργία, διαγραφή και μετονομασία λογαριασμών χρηστών."
+
+#: server_privileges.php:32 server_privileges.php:199
+#: server_privileges.php:203 server_privileges.php:526
+#: server_privileges.php:530
+msgid "Allows creating new views."
+msgstr "Επιτρέπει τη δημιουργία νέων προβολών."
+
+#: server_privileges.php:33 server_privileges.php:183
+#: server_privileges.php:506
+msgid "Allows deleting data."
+msgstr "Επιτρέπει τη διαγραφή δεδομένων."
+
+#: server_privileges.php:34 server_privileges.php:185
+#: server_privileges.php:517
+msgid "Allows dropping databases and tables."
+msgstr "Επιτρέπει τη διαγραφή βάσεων και πινάκων."
+
+#: server_privileges.php:35 server_privileges.php:517
+msgid "Allows dropping tables."
+msgstr "Επιτρέπει τη διαγραφή πινάκων."
+
+#: server_privileges.php:36 server_privileges.php:200
+#: server_privileges.php:534
+msgid "Allows to set up events for the event scheduler"
+msgstr "Επιτρέπει τον ορισμό συμβάντων για τον προγραμματιστή συμβάντων"
+
+#: server_privileges.php:37 server_privileges.php:210
+#: server_privileges.php:522
+msgid "Allows executing stored routines."
+msgstr "Επιτρέπει την εκτέλεση αποθηκευμένων εργασιών."
+
+#: server_privileges.php:38 server_privileges.php:189
+#: server_privileges.php:509
+msgid "Allows importing data from and exporting data into files."
+msgstr "Επιτρέπει την εισαγωγή και εξαγωγή δεδομένων από και σε αρχεία."
+
+#: server_privileges.php:39 server_privileges.php:540
+msgid ""
+"Allows adding users and privileges without reloading the privilege tables."
+msgstr ""
+"Επιτρέπει την προσθήκη χρηστών και δικαιωμάτων χωρίς να επαναφορτώσετε τους "
+"πίνακες δικαιωμάτων."
+
+#: server_privileges.php:40 server_privileges.php:191
+#: server_privileges.php:516
+msgid "Allows creating and dropping indexes."
+msgstr "Επιτρέπει την δημιουργία και την διαγραφή ευρετηρίων."
+
+#: server_privileges.php:41 server_privileges.php:181
+#: server_privileges.php:442 server_privileges.php:504
+msgid "Allows inserting and replacing data."
+msgstr "Επιτρέπει την εισαγωγή και την αντικατάσταση δεδομένων."
+
+#: server_privileges.php:42 server_privileges.php:196
+#: server_privileges.php:549
+msgid "Allows locking tables for the current thread."
+msgstr "Επιτρέπει το κλείδωμα πινάκων για την τρέχουσα λειτουργία."
+
+#: server_privileges.php:43 server_privileges.php:646
+#: server_privileges.php:648
+msgid "Limits the number of new connections the user may open per hour."
+msgstr ""
+"Περιορίζει τον αριθμό των νέων συνδέσεων που ο χρήστης μπορεί να ξεκινήσει "
+"ανά ώρα."
+
+#: server_privileges.php:44 server_privileges.php:634
+#: server_privileges.php:636
+msgid "Limits the number of queries the user may send to the server per hour."
+msgstr ""
+"Περιορίζει τον αριθμό των ερωτημάτων που ο χρήστης μπορεί να στείλει στον "
+"διακομιστή ανά ώρα."
+
+#: server_privileges.php:45 server_privileges.php:640
+#: server_privileges.php:642
+msgid ""
+"Limits the number of commands that change any table or database the user may "
+"execute per hour."
+msgstr ""
+"Περιορίζει τον αριθμό των αλλαγής πινάκων ή βάσεων που ο χρήστης μπορεί να "
+"εκετελέσει ανά ώρα."
+
+#: server_privileges.php:46 server_privileges.php:652
+#: server_privileges.php:654
+msgid "Limits the number of simultaneous connections the user may have."
+msgstr ""
+"Περιορίζει τον αριθμό των ταυτόχρονων συνδέσεων που μπορεί να έχει ο χρήστης."
+
+#: server_privileges.php:47 server_privileges.php:188
+#: server_privileges.php:544
+msgid "Allows viewing processes of all users"
+msgstr "Επιτρέπει την προβολή διεργασιών όλων των χρηστών"
+
+#: server_privileges.php:48 server_privileges.php:190
+#: server_privileges.php:448 server_privileges.php:550
+msgid "Has no effect in this MySQL version."
+msgstr "Δεν έχει χρήση σε αυτήν την έκδοση MySQL."
+
+#: server_privileges.php:49 server_privileges.php:186
+#: server_privileges.php:545
+msgid "Allows reloading server settings and flushing the server's caches."
+msgstr ""
+"Επιτρέπει την επανεκκίνηση του διακομιστή και τον καθαρισμό των προσωρινών "
+"αρχείων του."
+
+#: server_privileges.php:50 server_privileges.php:198
+#: server_privileges.php:552
+msgid "Allows the user to ask where the slaves / masters are."
+msgstr ""
+"Δίνει το δικαίωμα στον χρήστη να βρει που είναι οι κύριοι και δευτερεύοντες "
+"διακομιστές."
+
+#: server_privileges.php:51 server_privileges.php:197
+#: server_privileges.php:553
+msgid "Needed for the replication slaves."
+msgstr "Απαιτείται για τους δευτερευόντες διακομιστές αναπαραγωγής."
+
+#: server_privileges.php:52 server_privileges.php:180
+#: server_privileges.php:439 server_privileges.php:503
+msgid "Allows reading data."
+msgstr "Επιτρέπει την ανάγνωση δεδομένων."
+
+#: server_privileges.php:53 server_privileges.php:193
+#: server_privileges.php:547
+msgid "Gives access to the complete list of databases."
+msgstr "Δίνει πρόσβαση στην πλήρη λίστα των βάσεων δεδομένων."
+
+#: server_privileges.php:54 server_privileges.php:204
+#: server_privileges.php:206 server_privileges.php:519
+msgid "Allows performing SHOW CREATE VIEW queries."
+msgstr "Επιτρέπει την εκτέλεση ερωτημάτων της μορφής SHOW CREATE VIEW."
+
+#: server_privileges.php:55 server_privileges.php:187
+#: server_privileges.php:546
+msgid "Allows shutting down the server."
+msgstr "Επιτρέπει την διακοπή λειτουργίας του διακομιστή."
+
+#: server_privileges.php:56 server_privileges.php:194
+#: server_privileges.php:543
+msgid ""
+"Allows connecting, even if maximum number of connections is reached; "
+"required for most administrative operations like setting global variables or "
+"killing threads of other users."
+msgstr ""
+"Επιτρέπει τη σύνδεση, ακόμα και όταν ο μέγιστος αριθμός συνδέσεων έχει "
+"καλυθφεί; Απαιτείται για τις περισσότερες λειτουργίες διαχείρισης όπως ο "
+"ορισμός γενικών μεταβλητών ή τη διακοπή λειτουργιών άλλων χρηστών."
+
+#: server_privileges.php:57 server_privileges.php:201
+#: server_privileges.php:535
+msgid "Allows creating and dropping triggers"
+msgstr "Επιτρέπει τη δημιουργία και διαγραφή υποδείξεων"
+
+#: server_privileges.php:58 server_privileges.php:182
+#: server_privileges.php:445 server_privileges.php:505
+msgid "Allows changing data."
+msgstr "Επιτρέπει την αλλαγή δεδομένων."
+
+#: server_privileges.php:59 server_privileges.php:260
+msgid "No privileges."
+msgstr "Χωρίς δικαιώματα."
+
+#: server_privileges.php:302 server_privileges.php:303
#, fuzzy
msgctxt "None privileges"
msgid "None"
msgstr "Καμία"
-#: server_privileges.php:392 server_privileges.php:527
-#: server_privileges.php:1679 server_privileges.php:1685
+#: server_privileges.php:431 server_privileges.php:566
+#: server_privileges.php:1718 server_privileges.php:1724
msgid "Table-specific privileges"
msgstr "Δικαιώματα πινάκων"
-#: server_privileges.php:393 server_privileges.php:535
-#: server_privileges.php:1501
+#: server_privileges.php:432 server_privileges.php:574
+#: server_privileges.php:1540
msgid " Note: MySQL privilege names are expressed in English "
msgstr " Σημείωση: Τα ονόματα δικαιωμάτων της MySQL εκφράζονται στα Αγγλικά "
-#: server_privileges.php:524 server_privileges.php:1500
+#: server_privileges.php:563 server_privileges.php:1539
msgid "Global privileges"
msgstr "Γενικά δικαιώματα"
-#: server_privileges.php:526 server_privileges.php:1679
+#: server_privileges.php:565 server_privileges.php:1718
msgid "Database-specific privileges"
msgstr "Δικαιώματα βάσης δεδομένων"
-#: server_privileges.php:571
+#: server_privileges.php:610
msgid "Administration"
msgstr "Διαχείριση"
-#: server_privileges.php:591
+#: server_privileges.php:630
msgid "Resource limits"
msgstr "Όρια πόρων"
-#: server_privileges.php:592
+#: server_privileges.php:631
msgid "Note: Setting these options to 0 (zero) removes the limit."
msgstr ""
"Σημείωση: Αν ορίσετε αυτές τις επιλογές σε 0 (μηδέν) αφαιρείτε ο περιορισμός."
-#: server_privileges.php:669
+#: server_privileges.php:708
msgid "Login Information"
msgstr "Πληροφορίες Σύνδεσης"
-#: server_privileges.php:763
+#: server_privileges.php:802
msgid "Do not change the password"
msgstr "Διατήρηση κωδικού πρόσβασης"
-#: server_privileges.php:804 server_privileges.php:2166
+#: server_privileges.php:843 server_privileges.php:2205
#, fuzzy
#| msgid "No user(s) found."
msgid "No user found."
msgstr "Δεν βρέθηκαν χρήστες."
-#: server_privileges.php:848
+#: server_privileges.php:887
#, php-format
msgid "The user %s already exists!"
msgstr "Ο χρήστης %s υπάρχει ήδη!"
-#: server_privileges.php:931
+#: server_privileges.php:970
msgid "You have added a new user."
msgstr "Προσθέσατε ένα νέο χρήστη."
-#: server_privileges.php:1152
+#: server_privileges.php:1191
#, php-format
msgid "You have updated the privileges for %s."
msgstr "Τα δικαιώματα του χρήστη %s ενημερώθηκαν."
-#: server_privileges.php:1176
+#: server_privileges.php:1215
#, php-format
msgid "You have revoked the privileges for %s"
msgstr "Ανακαλέσατε τα δικαιώματα για %s"
-#: server_privileges.php:1212
+#: server_privileges.php:1251
#, php-format
msgid "The password for %s was changed successfully."
msgstr "Ο Κωδικός Πρόσβασης για τον χρήστη %s άλλαξε επιτυχώς."
-#: server_privileges.php:1232
+#: server_privileges.php:1271
#, php-format
msgid "Deleting %s"
msgstr "Διαγραφή %s"
-#: server_privileges.php:1243
+#: server_privileges.php:1282
msgid "No users selected for deleting!"
msgstr "Δεν επιλέχθηκαν χρήστες για διαγραφή!"
-#: server_privileges.php:1246
+#: server_privileges.php:1285
msgid "Reloading the privileges"
msgstr "Επαναφόρτωση δικαιωμάτων"
-#: server_privileges.php:1261
+#: server_privileges.php:1300
msgid "The selected users have been deleted successfully."
msgstr "Οι επιλεγμένοι χρήστες διεγράφησαν επιτυχώς."
-#: server_privileges.php:1296
+#: server_privileges.php:1335
msgid "The privileges were reloaded successfully."
msgstr "Τα δικαιώματα επαναφορτώθηκαν επιτυχώς."
-#: server_privileges.php:1324 server_privileges.php:1610
+#: server_privileges.php:1363 server_privileges.php:1649
msgid "Edit Privileges"
msgstr "Επεξεργασία Δικαιωμάτων"
-#: server_privileges.php:1333
+#: server_privileges.php:1372
msgid "Revoke"
msgstr "Ανάκληση"
-#: server_privileges.php:1365
+#: server_privileges.php:1404
msgid "User overview"
msgstr "Περίληψη χρηστών"
-#: server_privileges.php:1502 server_privileges.php:1684
-#: server_privileges.php:2033
+#: server_privileges.php:1541 server_privileges.php:1723
+#: server_privileges.php:2072
msgid "Grant"
msgstr "Χορήγηση"
-#: server_privileges.php:1521 server_privileges.php:2123
+#: server_privileges.php:1560 server_privileges.php:2162
msgid "Any"
msgstr "Οποιοδήποτε"
-#: server_privileges.php:1570 server_privileges.php:1594
-#: server_privileges.php:1988 server_privileges.php:2177
+#: server_privileges.php:1609 server_privileges.php:1633
+#: server_privileges.php:2027 server_privileges.php:2216
msgid "Add a new User"
msgstr "Προσθήκη νέου Χρήστη"
-#: server_privileges.php:1575
+#: server_privileges.php:1614
msgid "Remove selected users"
msgstr "Διαγραφή των επιλεγμένων χρηστών"
-#: server_privileges.php:1578
+#: server_privileges.php:1617
msgid "Revoke all active privileges from the users and delete them afterwards."
msgstr ""
"Ανάκληση όλων των ενεργών δικαιώματα από τους χρήστες και διαγραφή τους."
-#: server_privileges.php:1579 server_privileges.php:1580
-#: server_privileges.php:1581
+#: server_privileges.php:1618 server_privileges.php:1619
+#: server_privileges.php:1620
msgid "Drop the databases that have the same names as the users."
msgstr "Διαγραφή βάσεων δεδομένων που έχουν ίδια ονόματα με χρήστες."
-#: server_privileges.php:1597
+#: server_privileges.php:1636
#, php-format
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
@@ -5627,50 +4962,50 @@ msgstr ""
"αλλαγές χειροκίνητα. Σε αυτήν την περίπτωση, θα πρέπει να %sεπαναφορτώσετε "
"τα δικαιώματα%s πριν συνεχίσετε."
-#: server_privileges.php:1645
+#: server_privileges.php:1684
msgid "The selected user was not found in the privilege table."
msgstr "Ο επιλεγμένος χρήστης δεν βρέθηκε στον πίνακα δικαιωμάτων."
-#: server_privileges.php:1685
+#: server_privileges.php:1724
msgid "Column-specific privileges"
msgstr "Δικαιώματα πεδίων"
-#: server_privileges.php:1886
+#: server_privileges.php:1925
msgid "Add privileges on the following database"
msgstr "Προσθήκη δικαιωμάτων στην ακόλουθη βάση δεδομένων"
-#: server_privileges.php:1904
+#: server_privileges.php:1943
msgid "Wildcards % and _ should be escaped with a \\ to use them literally"
msgstr ""
"Οι χαρακτήρες μπαλαντέρ _ και % πρέπει να γραφούν μπροστά με \\ για να "
"χρησιμοποιηθούν"
-#: server_privileges.php:1907
+#: server_privileges.php:1946
msgid "Add privileges on the following table"
msgstr "Προσθήκη δεδομένων στον ακόλουθο πίνακα"
-#: server_privileges.php:1964
+#: server_privileges.php:2003
msgid "Change Login Information / Copy User"
msgstr "Αλλαγή Στοιχείων Πρόσβασης / Αντιγραφή Χρήστη"
-#: server_privileges.php:1967
+#: server_privileges.php:2006
msgid "Create a new user with the same privileges and ..."
msgstr "Δημιουργία νέου χρήστη με τα ίδια δικαιώματα και ..."
-#: server_privileges.php:1969
+#: server_privileges.php:2008
msgid "... keep the old one."
msgstr "... διατήρηση του παλιού χρήστη."
-#: server_privileges.php:1970
+#: server_privileges.php:2009
msgid " ... delete the old one from the user tables."
msgstr " ... διαγραφή του παλιού χρήστη από τους πίνακες χρηστών."
-#: server_privileges.php:1971
+#: server_privileges.php:2010
msgid ""
" ... revoke all active privileges from the old one and delete it afterwards."
msgstr " ... ανάκληση των δικαιωμάτων του παλιού χρήστη και διαγραφή του."
-#: server_privileges.php:1972
+#: server_privileges.php:2011
msgid ""
" ... delete the old one from the user tables and reload the privileges "
"afterwards."
@@ -5678,44 +5013,44 @@ msgstr ""
" ... διαγραφή του παλιού χρήστη από τους πίνακες χρηστών και επαναφόρτωση "
"των δικαιωμάτων."
-#: server_privileges.php:1994
+#: server_privileges.php:2033
msgid "Database for user"
msgstr "Βάση δεδομένων για χρήστη"
-#: server_privileges.php:1998
+#: server_privileges.php:2037
#, fuzzy
msgctxt "Create none database for user"
msgid "None"
msgstr "Καμία"
-#: server_privileges.php:1999
+#: server_privileges.php:2038
msgid "Create database with same name and grant all privileges"
msgstr ""
"Δημιουργία βάσης δεδομένων με το ίδιο όνομα και με πλήρη δικαιώματα χρήσης"
-#: server_privileges.php:2000
+#: server_privileges.php:2039
msgid "Grant all privileges on wildcard name (username\\_%)"
msgstr "Πλήρη δικαιώματα σε όνομα μπαλαντέρ (username\\_%)"
-#: server_privileges.php:2003
+#: server_privileges.php:2042
#, php-format
msgid "Grant all privileges on database "%s""
msgstr "Πλήρη δικαιώματα στη βάση δεδομένων «%s»"
-#: server_privileges.php:2026
+#: server_privileges.php:2065
#, php-format
msgid "Users having access to "%s""
msgstr "Χρήστες με πρόσβαση στη βάση «%s»"
-#: server_privileges.php:2134
+#: server_privileges.php:2173
msgid "global"
msgstr "Γενικός"
-#: server_privileges.php:2136
+#: server_privileges.php:2175
msgid "database-specific"
msgstr "Χρήστης Βάσης"
-#: server_privileges.php:2138
+#: server_privileges.php:2177
msgid "wildcard"
msgstr "μπαλαντέρ"
@@ -5767,7 +5102,7 @@ msgstr ""
"Αυτός ο διακομιστής έχει ρυθμιστεί ως πρωτεύων σε μια αναπαραγωγική "
"διαδικασία."
-#: server_replication.php:184 server_status.php:281
+#: server_replication.php:184 server_status.php:392
msgid "Show master status"
msgstr "Προβολή κατάστασης πρωτεύοντος"
@@ -5923,82 +5258,759 @@ msgstr ""
"Αυτός ο διακομιστής δεν ρυθμίστηκε ως δευτερεύων σε μια διαδικασία "
"αναπαραγωγής. Θέλετε να τον ρυθμίσετε;"
+#: server_status.php:40
+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 ""
+"Ο αριθμός των συναλλαγών που χρησιμοποιούν την προσωρινή δυαδική λανθάνουσα "
+"μνήμη καταγραφής που υπερβαίνει την τιμή binlog_cache_size και χρησιμοποιούν "
+"ένα προσωρινό αρχείο για αποθήκευση δηλώσεων από τη συναλλαγή."
+
+#: server_status.php:41
+msgid "The number of transactions that used the temporary binary log cache."
+msgstr ""
+"Ο αριθμός των συναλλαγών που χρησιμοποίησαν την προσωρινή δυαδική λανθάνουσα "
+"μνήμη καταγραφής."
+
+#: server_status.php:42
+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 "
+"to increase the tmp_table_size value to cause temporary tables to be memory-"
+"based instead of disk-based."
+msgstr ""
+"Ο αριθμός των προσωρινών πινάκων στο δίσκο που δημιουργήθηκαν αυτόματα από "
+"τον διακομιστή κατά την εκτέλεση δηλώσεων. Αν το Created_tmp_disk_tables "
+"είναι μεγάλο, ίσως θέλετε να αυξήσετε την τιμή tmp_table_size ώστε οι "
+"προσωρινοί πίνακες να είναι στη μνήμη και όχι στο δίσκο."
+
+#: server_status.php:43
+msgid "How many temporary files mysqld has created."
+msgstr "Πόσα προσωρινά αρχεία δημιούργησε το mysqld."
+
+#: server_status.php:44
+msgid ""
+"The number of in-memory temporary tables created automatically by the server "
+"while executing statements."
+msgstr ""
+"Ο αριθμός των προσωρινών πινάκων στη μνήμη που δημιουργήθηκαν αυτόματα από "
+"τον διακομιστή κατά την εκτέλεσε δηλώσεων."
+
+#: server_status.php:45
+msgid ""
+"The number of rows written with INSERT DELAYED for which some error occurred "
+"(probably duplicate key)."
+msgstr ""
+"Ο αριθμός των εγεγγραμμένων γραμμών με την εντολή INSERT DELAYED για τις "
+"οποίες υπήρξε κάποιο σφάλμα (πιθανόν διπλό κλειδί)."
+
#: server_status.php:46
+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 σε χρήση. Κάθε "
+"διαφορετικός πίνακας στον οποίο κάποιος χρησιμοποιεί την εντολή INSERT "
+"DELAYED χρησιμοποιεί της δική του διεργασία."
+
+#: server_status.php:47
+msgid "The number of INSERT DELAYED rows written."
+msgstr ""
+"Ο αριθμός των ΚΑΘΥΣΤΕΡΗΜΕΝΑ ΕΙΣΕΡΧΟΜΕΝΩΝ (INSERT DELAYED) γραμμών που "
+"εγγράφτηκαν."
+
+#: server_status.php:48
+msgid "The number of executed FLUSH statements."
+msgstr "Ο αριθμός των εκτελεσθέντων δηλώσεων ΕΚΚΑΘΑΡΙΣΗΣ (FLUSH)."
+
+#: server_status.php:49
+msgid "The number of internal COMMIT statements."
+msgstr "Ο αριθμός των εσωτερικών δηλώσεων ΠΑΡΑΠΟΜΠΗΣ (COMMIT)."
+
+#: server_status.php:50
+msgid "The number of times a row was deleted from a table."
+msgstr "Οι φορές που διαγράφτηκε μια γραμμή από έναν πίνακα."
+
+#: server_status.php:51
+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 ""
+"Ο διακομιστής MySQL μπορεί να ρωτήσει τη μηχανή αποθήκευσης συμπλέγματος "
+"NDB, αν γνωρίζει σχετικά με έναν πίνακα με δοθέν όνομα. Αυτό καλείται "
+"ανακάλυψη. Το Handler_discover δείχνει τον αριθμό των πινάκων χρόνου που "
+"βρέθηκαν."
+
+#: server_status.php:52
+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 ""
+"Οι φορές που αναγνώστηκε η πρώτη εισαγωγή από ένα ευρετήριο. Αν ο αριθμός "
+"είναι υψηλός, αύτο σημαίνει ότι ο διακομιστής κάνει πολλές πλήρεις σαρώσεις "
+"ευρετηρίου. Παράδειγμα: SELECT col1 FROM foo, υποθέτοντας ότι το col1 έχει "
+"ευρετήριο."
+
+#: server_status.php:53
+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 ""
+"Ο αριθμός των αιτήσεων να αναγνωστεί μια γραμμή με βάση ένα κλειδί. Αν αυτός "
+"είναι υψηλός, είναι ένας καλός δείκτης ότι τα ερωτήματά σας και οι πίνακές "
+"σας έχουν κάνει σωστά ευρετήρια."
+
+#: server_status.php:54
+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 ""
+"Ο αριθμός των αιτήσεων ανάγνωσης της επόμενης γραμμής σε ταξινόμηση "
+"κλειδιού. Αυτό αυξάνετε αν κάνετε ερώτημα σε μια στήλη ευρετηρίου με ένα "
+"περιορισμό ευρετηρίου ή αν κάνετε μια σάρωση ευρετηρίου."
+
+#: server_status.php:55
+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 ""
+"Ο αριθμός των αιτήσεων που ανέγνωσαν την προηγούμενη γραμμή ανά κλειδί. Αυτή "
+"η μέθοδος ανάγνωσης χρησιμοποιείτε κυρίως για βελτιστοποίηση της εντολής "
+"ORDER BY ... DESC."
+
+#: server_status.php:56
+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 "
+"probably have a lot of queries that require MySQL to scan whole tables or "
+"you have joins that don't use keys properly."
+msgstr ""
+"Ο αριθμός των αιτήσεων ανάγνωσης μιας γραμμής βασισμένων σε μια σταθερή "
+"θέση. Αύτός είναι υψηλός αν κάνετε πολλά ερωτήματα που απαιτούν ταξινόμηση "
+"αποτελέσματος. Ίσως έχετε πολλά ερωτήματα που απαιτούν από τη MySQL να "
+"σαρώνει ολόκληρους πίνακες ή έχετε ενώσεις που δεν χρησιμοποιούν σωστά τα "
+"κλειδιά."
+
+#: server_status.php:57
+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 "
+"tables are not properly indexed or that your queries are not written to take "
+"advantage of the indexes you have."
+msgstr ""
+"Ο αριθμός των αιτήσεων ανάγνωσης της επόμενης γραμμής στο αρχείο δεδομένων. "
+"Αυτός είναι υψηλός, αν κάνετε αρκετές σαρώσεις πινάκων. Γενικά αυτό σημαίνει "
+"ότι οι πίνακες σας δεν έχουν σωστά ευρετήρια ή ότι τα ερωτήματά σας δεν "
+"έχουν γραφτεί ώστε να λαμβάνουν υπόψη τα ευρετήρια που έχετε."
+
+#: server_status.php:58
+msgid "The number of internal ROLLBACK statements."
+msgstr "Ο αριθμός των εσωτερικών δηλώσεων ΕΠΙΣΤΡΟΦΗΣ (ROLLBACK)."
+
+#: server_status.php:59
+msgid "The number of requests to update a row in a table."
+msgstr "Ο αριθμός των αιτήσεων για ενημέρωση μιας γραμμής σε έναν πίνακα."
+
+#: server_status.php:60
+msgid "The number of requests to insert a row in a table."
+msgstr "Ο αριθμός των αιτήσεων για εισαγωγή μιας γραμμής σε έναν πίνακα."
+
+#: server_status.php:61
+msgid "The number of pages containing data (dirty or clean)."
+msgstr "Ο αριθμός των σελίδων που περιέχουν δεδομένα (καθαρά και μη)."
+
+#: server_status.php:62
+msgid "The number of pages currently dirty."
+msgstr "Ο αριθμός των μη καθαρώ σελίδων."
+
+#: server_status.php:63
+msgid "The number of buffer pool pages that have been requested to be flushed."
+msgstr ""
+"Ο αριθμός των σελίδων του buffer pool για τις οποίες υπήρξε αίτηση για "
+"εκκαθάριση."
+
+#: server_status.php:64
+msgid "The number of free pages."
+msgstr "Ο αριθμός των ελεύθερων σελίδων."
+
+#: server_status.php:65
+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 ""
+"Ο αριθμός των κλειδωμένων σελίδων στο buffer pool της InnoDB. Υπάρχουν "
+"σελίδες που έχουν ήδη αναγνωστεί ή εγγραφεί ή που δεν μπορούν να "
+"εκκαθαριστούν ή απομακρυνθούν για κάποιο άλλο λόγο."
+
+#: server_status.php:66
+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 "
+"be calculated as Innodb_buffer_pool_pages_total - "
+"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data."
+msgstr ""
+"Ο αριθμός των απασχολούμενων σελίδων γιατί έχουν δεσμευτεί για διαχειριστική "
+"υπερκεφαλή όπως κλειδώματα γραμμής ή το υιοθετημένο ευρετήριο μνήμης. Αυτή η "
+"τιμή μπορεί να υπολογιστεί ως Innodb_buffer_pool_pages_total - "
+"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data."
+
+#: server_status.php:67
+msgid "Total size of buffer pool, in pages."
+msgstr "Συνολικό μέγεθος του buffer pool, σε σελίδες."
+
+#: server_status.php:68
+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 ""
+"Ο αριθμός των «τυχαίων» αναγνώσεων κεφαλίδων της InnoDB που ξεκίνησαν. Αυτό "
+"συμβαίνει όταν ένα ερώτημα πρόκειται να σαρώσει ένα μεγάλο τμήμα πίνακα αλλά "
+"με τυχαία σειρά."
+
+#: server_status.php:69
+msgid ""
+"The number of sequential read-aheads InnoDB initiated. This happens when "
+"InnoDB does a sequential full table scan."
+msgstr ""
+"Ο αριθμός των διαδοχικών αναγνώσεων κεφαλίδων της InnoDB που ξεκίνησαν. Αυτό "
+"συμβείναι όταν η InnoDB εκτελεί μια διαδοχική πλήρη σάρωση πίνακα."
+
+#: server_status.php:70
+msgid "The number of logical read requests InnoDB has done."
+msgstr "Ο αριθμός των λογικών αιτήσεων ανάγνωσης που έκαν η InnoDB."
+
+#: server_status.php:71
+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 και έπρεπε να κάνει ανάγνωση μονής σελίδας."
+
+#: server_status.php:72
+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 "
+"available, it's necessary to wait for pages to be flushed first. This "
+"counter counts instances of these waits. If the buffer pool size was set "
+"properly, this value should be small."
+msgstr ""
+"Κανονικά, οι εγγραφές συμβαίνουν στο υπόβαθρο του buffer pool της InnoDB. "
+"Ωστόσο, αν είναι απαραίτητο να διαβάσετε ή να δημιουργήσετε μια σελίδα δεν "
+"υπάρχουν διαθέσιμες σελίδες, είναι απαραίτητό να περιμένετε πρώτα την "
+"εκκαθάριση των σελίδων. Αυτός ο μετρητής μετράει συμβάντα αυτών των "
+"αναμονών. Αν το μέγεθος του buffer pool έχει οριστεί σωστά, αυτή η τιμή "
+"πρέπει να είναι μικρή."
+
+#: server_status.php:73
+msgid "The number writes done to the InnoDB buffer pool."
+msgstr "Ο αριθμός των εγγραφών που έγιναν στο buffer pool της InnoDB."
+
+#: server_status.php:74
+msgid "The number of fsync() operations so far."
+msgstr "Ο αριθμός των λειτουργιών του fsync() μέχρι στιγμής."
+
+#: server_status.php:75
+msgid "The current number of pending fsync() operations."
+msgstr "Ο τρέχων αριθμός των εκκρεμών λειτουργιών του fsync()."
+
+#: server_status.php:76
+msgid "The current number of pending reads."
+msgstr "Ο τρέχων αριθμός των εκκρεμών αναγνώσεων."
+
+#: server_status.php:77
+msgid "The current number of pending writes."
+msgstr "Ο τρέχων αριθμός των εκκρεμών εγγραφών."
+
+#: server_status.php:78
+msgid "The amount of data read so far, in bytes."
+msgstr "Το πλήθος των δεδομένων που αναγνώστηκε μέχρι στιγμής σε bytes."
+
+#: server_status.php:79
+msgid "The total number of data reads."
+msgstr "Ο συνολικός αριθμός των αναγνώσεων δεδομένων."
+
+#: server_status.php:80
+msgid "The total number of data writes."
+msgstr "Ο συνολικός αριθμός των εγγραφών δεδομένων."
+
+#: server_status.php:81
+msgid "The amount of data written so far, in bytes."
+msgstr "Το πλήθος των εγεγγραμμένων δεδομένων μέχρι στιγμής, σε bytes."
+
+#: server_status.php:82
+msgid "The number of pages that have been written for doublewrite operations."
+msgstr ""
+"Ο αριθμός των εγγραφών διπλοεγγραφής που έγιναν και ο αριθμός των σελίδων "
+"που γράφτηκαν για αυτό το σκοπό."
+
+#: server_status.php:83
+msgid "The number of doublewrite operations that have been performed."
+msgstr ""
+"Ο αριθμός των εγγραφών διπλοεγγραφής που έγιναν και ο αριθμός των σελίδων "
+"που γράφτηκαν για αυτό το σκοπό."
+
+#: server_status.php:84
+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 ""
+"Ο αριθμός των αναμονών που έγιναν εξαιτίας του μικρού μεγέθος του buffer "
+"καταγραφής και και έπρεπε να αναμένεται να εκκαθαριστεί πριν συνεχίσει."
+
+#: server_status.php:85
+msgid "The number of log write requests."
+msgstr "Ο αριθμός των αιτήσεων εγγραφής καταγραφής."
+
+#: server_status.php:86
+msgid "The number of physical writes to the log file."
+msgstr "Ο αριθμός των φυσικών εγγραφών στο αρχείο καταγραφής."
+
+#: server_status.php:87
+msgid "The number of fsync() writes done to the log file."
+msgstr "Ο αριθμός των εγγραφών fsyncs που ολοκληρώθηκαν στο αρχείο καταγραφής."
+
+#: server_status.php:88
+msgid "The number of pending log file fsyncs."
+msgstr "Ο αριθμός των εκκρεμών fsyncs στο αρχείο καταγραφής."
+
+#: server_status.php:89
+msgid "Pending log file writes."
+msgstr "Εκκρεμείς εγγραφές αρχείου καταγραφής."
+
+#: server_status.php:90
+msgid "The number of bytes written to the log file."
+msgstr "Ο αριθμός των εγεγγραμμένων bytes στο αρχείο καταγραφής."
+
+#: server_status.php:91
+msgid "The number of pages created."
+msgstr "Ο αριθμός των δημιουργηθέντων σελίδων."
+
+#: server_status.php:92
+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 ""
+"Το μέγεθος μεταφρασμένης σελίδας της InnoDB (προεπιλογή: 16KB). Πολλές τιμές "
+"υπολογίζονται σε σελίδες. Το μέγεθος της σελίδας επιτρέπει την εύκολη "
+"μετατροπή σε bytes."
+
+#: server_status.php:93
+msgid "The number of pages read."
+msgstr "Ο αριθμός των αναγνωσμένων σελίδων."
+
+#: server_status.php:94
+msgid "The number of pages written."
+msgstr "Ο αριθμός των εγεγγραμμένων σελίδων."
+
+#: server_status.php:95
+msgid "The number of row locks currently being waited for."
+msgstr "Ο αριθμός των κλειδωμάτων γραμμής που είναι τώρα σε αναμονή."
+
+#: server_status.php:96
+msgid "The average time to acquire a row lock, in milliseconds."
+msgstr ""
+"Ο μέσος χρόνος απόκτησης ενός κλειδώματος γραμμής σε χιλιοστοδευτερόλεπτα."
+
+#: server_status.php:97
+msgid "The total time spent in acquiring row locks, in milliseconds."
+msgstr ""
+"Ο συνολικός απαιτούμενος χρόνος απόκτησης κλειδώματος γραμμής σε "
+"χιλιοστοδευτερόλεπτα."
+
+#: server_status.php:98
+msgid "The maximum time to acquire a row lock, in milliseconds."
+msgstr ""
+"Ο μέγιστος χρόνος απόκτησης ενός κλειδώματος γραμμής σε "
+"χιλιοστοδευτερόλεπτα.."
+
+#: server_status.php:99
+msgid "The number of times a row lock had to be waited for."
+msgstr "Οι φορές που πρέπει να αναμένεται ένα κλείδωμα γραμμής."
+
+#: server_status.php:100
+msgid "The number of rows deleted from InnoDB tables."
+msgstr "Ο αριθμός των διαγραμμένων γραμμών από πίνακες InnoDB."
+
+#: server_status.php:101
+msgid "The number of rows inserted in InnoDB tables."
+msgstr "Ο αριθμός των εισαχθέντων γραμμών σε πίνακες InnoDB."
+
+#: server_status.php:102
+msgid "The number of rows read from InnoDB tables."
+msgstr "Ο αριθμός των αναγνωσμένων γραμμών από πίνακες InnoDB."
+
+#: server_status.php:103
+msgid "The number of rows updated in InnoDB tables."
+msgstr "Ο αριθμός των ενημερωμένων γραμμών σε πίνακες InnoDB."
+
+#: server_status.php:104
+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."
+
+#: server_status.php:105
+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 ""
+"Ο αριθμός των μη χρησιμοποιημένων μπλοκς στη λανθάνουσα μνήμη κλειδιού. "
+"Μπορείτε να χρησιμοποιήσετε αυτή τη τιμή για να προσδιορίσετε πόση "
+"λανθάνουσα μνήμη κλειδιού χρησιμοποιείται."
+
+#: server_status.php:106
+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 ""
+"Ο αριθμός των χρησιμοποιημένων μπλοκς στη λανθάνουσα μνήμη κλειδιού. Αυτή η "
+"τιμή είναι ένα έντονο σημάδι που δείχνει τον μέγιστο αριθμό μπλοκς που είναι "
+"σε χρήση με μια φορά."
+
+#: server_status.php:107
+msgid "The number of requests to read a key block from the cache."
+msgstr ""
+"Ο αριθμός των αιτήσεων ανάγνωσης ενός μπλοκ κλειδιού από τη λανθάνουσα μνήμη."
+
+#: server_status.php:108
+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 ""
+"Ο αριθμός των φυσικών αναγνώσεων ενός μπλοκ κλειδιού από το δίσκο. Αν το "
+"Key_reads είναι μεγάλο, τότε η τιμή key_buffer_size είναι πιθανόν πολύ "
+"μικρή. Ο βαθμό απώλειας λανθάνουσας μνήμης μπορεί να υπολογιστεί ως "
+"Key_reads/Key_read_requests."
+
+#: server_status.php:109
+msgid "The number of requests to write a key block to the cache."
+msgstr ""
+"Ο αριθμός των αιτήσεων εγγραφής ενός μπλοκ κλειδιού στη λανθάνουσα μνήμη."
+
+#: server_status.php:110
+msgid "The number of physical writes of a key block to disk."
+msgstr "Ο αριθμός των φυσικών εγγραφών ενός κλειδιού στο δίσκο."
+
+#: server_status.php:111
+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 ""
+"Το συνολικό κόστος του τελευταίου μεταφρασμένου ερωτήματος όπως υπολογίστηκε "
+"από τον βελτιοποιητή ερωτήματος. Είναι χρήσιμο για σύγκριση κόστους "
+"διαφορετικών σχεδίων ερωτημάτων για το ίδιο ερώτημα. Η προεπιλεγμένη τιμή 0 "
+"σημαίνει ότι κανένα ερώτημα δεν μεταφράστηκε ακόμα."
+
+#: server_status.php:112
+msgid "The number of rows waiting to be written in INSERT DELAYED queues."
+msgstr ""
+"Ο αριθμός των γραμμών σε αναμονή για εγγραφή στις σειρές ΚΑΘΥΣΤΕΡΗΜΕΝΩΝ "
+"ΕΙΣΑΓΩΓΩΝ (INSERT DELAYED)."
+
+#: server_status.php:113
+msgid ""
+"The number of tables that have been opened. If opened tables is big, your "
+"table cache value is probably too small."
+msgstr ""
+"Ο αριθμός των πινάκων που ανοίχτηκαν. Αν οι ανοιγμένοι πίνακες είναι "
+"μεγάλοι, η τιμή λανθάνουσας μνήμης πινάκων είναι πιθανον μικρή."
+
+#: server_status.php:114
+msgid "The number of files that are open."
+msgstr "Ο αριθμός των αρχείων που είναι ανοιχτά."
+
+#: server_status.php:115
+msgid "The number of streams that are open (used mainly for logging)."
+msgstr ""
+"Ο αριθμός των ροών που είναι ανοιχτές (χρησιμοποιούνται κυρίως για "
+"καταγραφή)."
+
+#: server_status.php:116
+msgid "The number of tables that are open."
+msgstr "Ο αριθμός των πινάκων που είναι ανοιχτοί."
+
+#: server_status.php:117
+msgid "The number of free memory blocks in query cache."
+msgstr "Ο αριθμός των ελεύθερων μπλοκ μνήμης στη λανθάνουσα μνήμη ερωτημάτων."
+
+#: server_status.php:118
+msgid "The amount of free memory for query cache."
+msgstr "Το μέγεθος της ελεύθερης μνήμης για λανθάνουσα μνήμη ερωτημάτων."
+
+#: server_status.php:119
+msgid "The number of cache hits."
+msgstr "Ο αριθμός των προσπελάσεων λανθάνουσας μνήμης."
+
+#: server_status.php:120
+msgid "The number of queries added to the cache."
+msgstr "Ο αριθμός των ερωτημάτων που προστέθηκαν στην λανθάνουσα μνήμη."
+
+#: server_status.php:121
+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 "
+"cache size. The query cache uses a least recently used (LRU) strategy to "
+"decide which queries to remove from the cache."
+msgstr ""
+"Ο αριθμός των ερωτημάτων που έχουν απομακρυνθεί από τη λανθάνουσα μνήμη για "
+"την απελευθέρωση της μνήμης για την απομνημόνευση νέων ερωτημάτων. Αυτή η "
+"πληροφορία σας βοηθάει να ρυθμίσετε το μέγεθος της λανθάνουσας μνήμης "
+"ερωτήματος. Η λανθάνουσα μνήμη ερωτημάτων χρησιμοποιεί μια τελευταία "
+"χρησιμοποιούμενη στρατηγική (LRU) για να αποφασίσει ποια ερωτήματα να "
+"απομακρύνει από τη λανθάνουσα μνήμη."
+
+#: server_status.php:122
+msgid ""
+"The number of non-cached queries (not cachable, or not cached due to the "
+"query_cache_type setting)."
+msgstr ""
+"Ο αριθμός των μη λανθανόντων ερωτημάτων (μη απομνημονεύσιμα ή δεν "
+"απομνημονεύονται λόγω της ρύθμισης query_cache_type)."
+
+#: server_status.php:123
+msgid "The number of queries registered in the cache."
+msgstr "Ο αριθμός των καταχωρημένων ερωτημάτων στη λανθάνουσα μνήμη."
+
+#: server_status.php:124
+msgid "The total number of blocks in the query cache."
+msgstr "Ο συνολικός αριθμός των μπλοκς στη λανθάνουσα μνήμη ερωτημάτων."
+
+#: server_status.php:125
+msgctxt "$strShowStatusReset"
+msgid "Reset"
+msgstr "Επαναφορά"
+
+#: server_status.php:126
+msgid "The status of failsafe replication (not yet implemented)."
+msgstr "Η κατάσταση της ασφαλούς αναπαραγωγής (δεν έχει εφαρμοστεί)."
+
+#: server_status.php:127
+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 ""
+"Ο αριθμός των ενώσεων που δεν χρησιμοποιούν ευρετήρια. Αν η τιμή είναι 0, "
+"πρέπει να ελέγχετε προσεκτικά τα ευρετήρια των πινάκων σας."
+
+#: server_status.php:128
+msgid "The number of joins that used a range search on a reference table."
+msgstr ""
+"Ο αριθμός των ενώσεων που χρησιμοποιήσαν μια αναζήτηση εύρους σε έναν πίνακα "
+"παραπομπής."
+
+#: server_status.php:129
+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 ""
+"Ο αριθμός των ενώσεων χωρίς κλειδιά που ελέγχουν τη χρήση κλειδιού μετά από "
+"κάθε γραμμή. (Αν αυτό δεν είναι 0, πρέπει να ελέγχετε προσεκτικά τα "
+"ευρετήρια των πινάκων σας.)"
+
+#: server_status.php:130
+msgid ""
+"The number of joins that used ranges on the first table. (It's normally not "
+"critical even if this is big.)"
+msgstr ""
+"Ο αριθμός των ενώσεων που χρησιμοποιούν εύρη στον πρώτο πίνακα. (Κανονικά "
+"δεν είναι κρίσιμος αν δεν είναι μεγάλος.)"
+
+#: server_status.php:131
+msgid "The number of joins that did a full scan of the first table."
+msgstr "Ο αριθμός των ενώσεων που έκαναν μια πλήρη σάρωση του πρώτου πίνακα."
+
+#: server_status.php:132
+msgid "The number of temporary tables currently open by the slave SQL thread."
+msgstr ""
+"Ο αριθμός των προσωρινών πινάκων που είναι τώρα ανοιχτοί από τη δευτερεύουσα "
+"συνεργασία SQL."
+
+#: server_status.php:133
+msgid ""
+"Total (since startup) number of times the replication slave SQL thread has "
+"retried transactions."
+msgstr ""
+"Συνολικές φορές (από την εκκίνηση) που η διεργασία δευτερεύουσας "
+"αναπαραγωγής SQL έχει ξαναδοκιμάσει συναλλαγές."
+
+#: server_status.php:134
+msgid "This is ON if this server is a slave that is connected to a master."
+msgstr ""
+"Αυτό είναι ΑΝΟΙΧΤΟ, αν αυτός ο διακομιστής είναι δευτερεύων που συνδέεται σε "
+"πρωτεύωντα."
+
+#: server_status.php:135
+msgid ""
+"The number of threads that have taken more than slow_launch_time seconds to "
+"create."
+msgstr ""
+"Ο αριθμός των διεργασιών που έλαβαν περισσότερα από slow_launch_time "
+"δευτερόλεπτα να δημιουργηθούν."
+
+#: server_status.php:136
+msgid ""
+"The number of queries that have taken more than long_query_time seconds."
+msgstr ""
+"Ο αριθμός των ερωτημάτων που έλαβαν περισσότερα από long_query_time "
+"δευτερόλεπτα."
+
+#: server_status.php:137
+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 ""
+"Ο αριθμός των συνόλων περασμάτων που έπρεπε να κάνει ο αλγόριθμός "
+"ταξινόμησης. Αν ο αριθμός είναι μεγάλος, πρέπει να αυξήσετε την τιμή της "
+"μεταβλητής συστήματος sort_buffer_size."
+
+#: server_status.php:138
+msgid "The number of sorts that were done with ranges."
+msgstr "Ο αριθμός των ταξινομήσεων που έγιναν με εύρη."
+
+#: server_status.php:139
+msgid "The number of sorted rows."
+msgstr "Ο αριθμός των ταξινομημένων γραμμών."
+
+#: server_status.php:140
+msgid "The number of sorts that were done by scanning the table."
+msgstr "Ο αριθμός των ταξινομήσεων που έγιναν σαρώνοντας τον πίνακα."
+
+#: server_status.php:141
+msgid "The number of times that a table lock was acquired immediately."
+msgstr "Οι φορές που ένα κλείδωμα πινακα ανακτήθηκε άμεσα.."
+
+#: server_status.php:142
+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 "
+"should first optimize your queries, and then either split your table or "
+"tables or use replication."
+msgstr ""
+"Οι φορές που ένα κλείδωμα πίνακα δεν μπόρεσε να ληφθεί αμέσως και ήταν "
+"απαραίτητη μια αναμονή. Αν ο αριθμός είναι υψηλός, και έχετε προβλήματα "
+"απόδοσης, πρέπει πρώτα να βελτιώσετε τα ερωτήματά σας και μετά χωρίστε τον "
+"πίνακα ή τους πίνακες ή χρησιμοποιείστε αναπαραγωγή."
+
+#: server_status.php:143
+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 ""
+"Ο αριθμός των διεργασιών στη λανθάνουσα μνήμη διεργασιών. Ο βαθμός χρήσης "
+"λανθάνουσας μνήμης μπορεί να υπολογιστεί ως Threads_created/Connections. Αν "
+"η τιμή είναι κόκκινη πρέπει να αυξήσετε την τιμή thread_cache_size."
+
+#: server_status.php:144
+msgid "The number of currently open connections."
+msgstr "Ο αριθμός των τρέχοντων ανοιγμένων συνδέσεων."
+
+#: server_status.php:145
+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 "
+"doesn't give a notable performance improvement if you have a good thread "
+"implementation.)"
+msgstr ""
+"Ο αριθμός των διεργασιών που δημιουργήθηκαν για το χειρισμό συνδέσεων. Αν το "
+"Threads_created είναι μεγάλο, ίσως θέλετε να αυξήσετε την τιμή "
+"thread_cache_size. (Κανονικά αυτό δεν δίνει μια σημαντική βελτίωση απόδοσης "
+"αν έχετε μια καλή εφαρμογή διεργασίας.)"
+
+#: server_status.php:146
+msgid "The number of threads that are not sleeping."
+msgstr "Ο αριθμός των διεργασιών που δεν είναι σε νάρκη."
+
+#: server_status.php:157
msgid "Runtime Information"
msgstr "Πληροφορίες εκτέλεσης"
-#: server_status.php:250
+#: server_status.php:361
msgid "Handler"
msgstr "Χειριστής"
-#: server_status.php:251
+#: server_status.php:362
msgid "Query cache"
msgstr "Λανθάνουσα μνήμη ερωτήματος"
-#: server_status.php:252
+#: server_status.php:363
msgid "Threads"
msgstr "Διεργασίες"
-#: server_status.php:254
+#: server_status.php:365
msgid "Temporary data"
msgstr "Προσωρινά δεδομένα"
-#: server_status.php:255
+#: server_status.php:366
msgid "Delayed inserts"
msgstr "Καθυστερημένες εισαγωγές"
-#: server_status.php:256
+#: server_status.php:367
msgid "Key cache"
msgstr "Λανθάνουσα μνήμη κλειδιού"
-#: server_status.php:257
+#: server_status.php:368
msgid "Joins"
msgstr "Ενώσεις"
-#: server_status.php:259
+#: server_status.php:370
msgid "Sorting"
msgstr "Ταξινόμηση"
-#: server_status.php:261
+#: server_status.php:372
msgid "Transaction coordinator"
msgstr "Συντονιστής κινήσεων"
-#: server_status.php:271
+#: server_status.php:382
msgid "Flush (close) all tables"
msgstr "Εκκαθάριση (κλείσιμο) όλων των πινάκων"
-#: server_status.php:273
+#: server_status.php:384
msgid "Show open tables"
msgstr "Εμφάνιση ανοιχτών πινάκων"
-#: server_status.php:278
+#: server_status.php:389
msgid "Show slave hosts"
msgstr "Εμφάνιση δευτερευόντων διακομιστών"
-#: server_status.php:284
+#: server_status.php:395
msgid "Show slave status"
msgstr "Εμφάνιση κατάστασης δευτερεύοντος"
-#: server_status.php:289
+#: server_status.php:400
msgid "Flush query cache"
msgstr "Εκκαθάριση λανθάνουσας μνήμης ερωτημάτων"
-#: server_status.php:294
+#: server_status.php:405
msgid "Show processes"
msgstr "Εμφάνιση διεργασιών"
-#: server_status.php:344
+#: server_status.php:455
#, fuzzy
msgctxt "for Show status"
msgid "Reset"
msgstr "Επαναφορά"
-#: server_status.php:350
+#: server_status.php:461
#, php-format
msgid "This MySQL server has been running for %s. It started up on %s."
msgstr "Αυτός ο διακομιστής MySQL λειτουργεί για %s. Ξεκίνησε στις %s."
-#: server_status.php:360
+#: server_status.php:471
#, fuzzy
msgid ""
"This MySQL server works as master and slave in replication"
@@ -6007,21 +6019,21 @@ msgstr ""
"Αυτός ο διακομιστής έχει ρυθμιστεί ως πρωτεύων σε μια αναπαραγωγική "
"διαδικασία."
-#: server_status.php:362
+#: server_status.php:473
#, fuzzy
msgid "This MySQL server works as master in replication process."
msgstr ""
"Αυτός ο διακομιστής έχει ρυθμιστεί ως πρωτεύων σε μια αναπαραγωγική "
"διαδικασία."
-#: server_status.php:364
+#: server_status.php:475
#, fuzzy
msgid "This MySQL server works as slave in replication process."
msgstr ""
"Αυτός ο διακομιστής έχει ρυθμιστεί ως πρωτεύων σε μια αναπαραγωγική "
"διαδικασία."
-#: server_status.php:366
+#: server_status.php:477
#, fuzzy
msgid ""
"For further information about replication status on the server, please visit "
@@ -6031,7 +6043,7 @@ msgstr ""
"b>. Για περισσότερες πληροφορίες για την κατάσταση αναπαραγωγής στο "
"διακομιστή, επισκευτείτε τον τομέα αναπαραγωγής."
-#: server_status.php:383
+#: server_status.php:494
msgid ""
"Server traffic: These tables show the network traffic statistics of "
"this MySQL server since its startup."
@@ -6039,11 +6051,11 @@ msgstr ""
"Κίνηση Διακομιστή: Αυτοί οι πίνακες δείχνουν στατιστικά χρήσης "
"δικτύου αυτού του διακομιστή MySQL από την έναρξη της λειτουργίας του."
-#: server_status.php:388
+#: server_status.php:499
msgid "Traffic"
msgstr "Κίνηση"
-#: server_status.php:388
+#: server_status.php:499
msgid ""
"On a busy server, the byte counters may overrun, so those statistics as "
"reported by the MySQL server may be incorrect."
@@ -6052,36 +6064,36 @@ msgstr ""
"έτσι αυτές οι στατιστικές όπως αναφέρονται από τον διακομιστή μπορεί να "
"είναι εσφαλμένες."
-#: server_status.php:389 server_status.php:434 server_status.php:497
-#: server_status.php:555
+#: server_status.php:500 server_status.php:545 server_status.php:608
+#: server_status.php:666
msgid "per hour"
msgstr "ανά ώρα"
-#: server_status.php:394
+#: server_status.php:505
msgid "Received"
msgstr "Ελήφθησαν"
-#: server_status.php:404
+#: server_status.php:515
msgid "Sent"
msgstr "Εστάλησαν"
-#: server_status.php:433
+#: server_status.php:544
msgid "Connections"
msgstr "Συνδέσεις"
-#: server_status.php:440
+#: server_status.php:551
msgid "max. concurrent connections"
msgstr "μέγιστος αριθμός ταυτόχρονων συνδέσεων"
-#: server_status.php:447
+#: server_status.php:558
msgid "Failed attempts"
msgstr "Αποτυχημένες προσπάθειες"
-#: server_status.php:461
+#: server_status.php:572
msgid "Aborted"
msgstr "Ακυρωμένες συνδέσεις"
-#: server_status.php:490
+#: server_status.php:601
#, php-format
msgid ""
"Query statistics: Since its startup, %s queries have been sent to the "
@@ -6090,19 +6102,19 @@ msgstr ""
"Στατιστικά ερωτημάτων: Από την έναρξη λειτουργίας, %s ερωτήματα έχουν "
"σταλεί στον διακομιστή."
-#: server_status.php:498
+#: server_status.php:609
msgid "per minute"
msgstr "ανά λεπτό"
-#: server_status.php:499
+#: server_status.php:610
msgid "per second"
msgstr "ανά δευτερόλεπτο"
-#: server_status.php:554
+#: server_status.php:665
msgid "Query type"
msgstr "Τύπος ερωτήματος"
-#: server_status.php:721
+#: server_status.php:832
msgid "Replication status"
msgstr "Κατάσταση αναπαραγωγής"
diff --git a/po/en_GB.po b/po/en_GB.po
index e12821d71..b548e60bc 100755
--- a/po/en_GB.po
+++ b/po/en_GB.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-06-04 16:07-0400\n"
-"PO-Revision-Date: 2010-06-04 22:01+0200\n"
+"POT-Creation-Date: 2010-06-08 12:32-0400\n"
+"PO-Revision-Date: 2010-06-09 10:42+0200\n"
"Last-Translator: Michal \n"
"Language-Team: english-gb \n"
"Language: en_GB\n"
@@ -15,11 +15,11 @@ msgstr ""
"X-Generator: Pootle 2.0.1\n"
#: browse_foreigners.php:38 browse_foreigners.php:59
-#: libraries/display_tbl.lib.php:417 server_privileges.php:1475
+#: libraries/display_tbl.lib.php:417 server_privileges.php:1514
msgid "Show all"
msgstr "Show all"
-#: browse_foreigners.php:82 libraries/common.lib.php:2304
+#: browse_foreigners.php:82 libraries/common.lib.php:2313
#: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:394
#: libraries/export/pdf.php:147 pdf_schema.php:283 pdf_schema.php:1123
#: pdf_schema.php:1139
@@ -38,8 +38,8 @@ msgstr ""
#: browse_foreigners.php:150 db_structure.php:79 db_structure.php:80
#: db_structure.php:91 db_structure.php:93 db_structure.php:104
-#: db_structure.php:106 libraries/common.lib.php:2822
-#: libraries/common.lib.php:2829 libraries/db_links.inc.php:75
+#: db_structure.php:106 libraries/common.lib.php:2831
+#: libraries/common.lib.php:2838 libraries/db_links.inc.php:75
#: libraries/tbl_links.inc.php:63
msgid "Search"
msgstr "Search"
@@ -49,7 +49,7 @@ msgstr "Search"
#: db_structure.php:567 js/messages.php:48 libraries/Config.class.php:1046
#: libraries/Theme_Manager.class.php:311
#: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719
-#: libraries/common.lib.php:1333 libraries/common.lib.php:2279
+#: libraries/common.lib.php:1335 libraries/common.lib.php:2288
#: libraries/display_change_password.lib.php:82
#: libraries/display_create_table.lib.php:63
#: libraries/display_export.lib.php:275 libraries/display_import.lib.php:276
@@ -60,9 +60,9 @@ msgstr "Search"
#: libraries/sql_query_form.lib.php:552 libraries/tbl_properties.inc.php:782
#: main.php:128 navigation.php:237 pdf_pages.php:292 pdf_pages.php:328
#: pdf_pages.php:530 pmd_pdf.php:116 server_binlog.php:142
-#: server_privileges.php:625 server_privileges.php:1585
-#: server_privileges.php:1932 server_privileges.php:1979
-#: server_privileges.php:2018 server_replication.php:235
+#: server_privileges.php:664 server_privileges.php:1624
+#: server_privileges.php:1971 server_privileges.php:2018
+#: server_privileges.php:2057 server_replication.php:235
#: server_replication.php:318 server_replication.php:341
#: server_synchronize.php:1209 tbl_change.php:330 tbl_change.php:1174
#: tbl_change.php:1211 tbl_indexes.php:254 tbl_operations.php:265
@@ -80,7 +80,7 @@ msgstr "Keyname"
#: browse_foreigners.php:169 browse_foreigners.php:171
#: server_collations.php:55 server_collations.php:67 server_engines.php:59
-#: server_status.php:628
+#: server_status.php:739
msgid "Description"
msgstr "Description"
@@ -111,7 +111,6 @@ msgstr "Table comments"
#: tbl_indexes.php:189 tbl_printview.php:142 tbl_relation.php:402
#: tbl_select.php:135 tbl_structure.php:177 tbl_tracking.php:273
#: tbl_tracking.php:324
-#| msgid "Column names"
msgid "Column"
msgstr "Column"
@@ -120,7 +119,7 @@ msgstr "Column"
#: libraries/db_structure.lib.php:60 libraries/export/htmlword.php:245
#: libraries/export/latex.php:360 libraries/export/odt.php:297
#: libraries/export/texytext.php:234 libraries/tbl_properties.inc.php:100
-#: pdf_schema.php:1263 pdf_schema.php:1284 server_privileges.php:2031
+#: pdf_schema.php:1263 pdf_schema.php:1284 server_privileges.php:2070
#: tbl_change.php:287 tbl_change.php:314 tbl_printview.php:143
#: tbl_printview.php:313 tbl_select.php:136 tbl_structure.php:178
#: tbl_structure.php:659 tbl_tracking.php:274 tbl_tracking.php:321
@@ -164,9 +163,9 @@ msgstr "Comments"
#: libraries/Index.class.php:386 libraries/export/htmlword.php:322
#: libraries/export/latex.php:430 libraries/export/odt.php:368
#: libraries/export/texytext.php:311 libraries/mult_submits.inc.php:263
-#: pdf_schema.php:1344 server_privileges.php:1529 server_privileges.php:1540
-#: server_privileges.php:1850 server_privileges.php:1855
-#: server_privileges.php:2148 sql.php:132 sql.php:194 tbl_printview.php:229
+#: pdf_schema.php:1344 server_privileges.php:1568 server_privileges.php:1579
+#: server_privileges.php:1889 server_privileges.php:1894
+#: server_privileges.php:2187 sql.php:132 sql.php:194 tbl_printview.php:229
#: tbl_structure.php:350 tbl_tracking.php:337 tbl_tracking.php:342
msgid "No"
msgstr "No"
@@ -180,9 +179,9 @@ msgstr "No"
#: libraries/mult_submits.inc.php:101 libraries/mult_submits.inc.php:106
#: libraries/mult_submits.inc.php:111 libraries/mult_submits.inc.php:262
#: libraries/mult_submits.inc.php:273 pdf_schema.php:1344
-#: server_databases.php:64 server_privileges.php:1526
-#: server_privileges.php:1540 server_privileges.php:1850
-#: server_privileges.php:1853 server_privileges.php:2148 sql.php:193
+#: server_databases.php:64 server_privileges.php:1565
+#: server_privileges.php:1579 server_privileges.php:1889
+#: server_privileges.php:1892 server_privileges.php:2187 sql.php:193
#: tbl_printview.php:229 tbl_structure.php:40 tbl_structure.php:350
#: tbl_tracking.php:335 tbl_tracking.php:340
msgid "Yes"
@@ -279,7 +278,7 @@ msgstr "Switch to copied database"
msgid "BLOB Repository"
msgstr "BLOB Repository"
-#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1350
+#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1352
#: libraries/server_links.inc.php:49 server_processlist.php:59
#: tbl_tracking.php:596 test/theme.php:101
msgid "Status"
@@ -336,8 +335,8 @@ msgstr "Edit PDF Pages"
#: db_printview.php:104 db_tracking.php:72 db_tracking.php:157
#: libraries/db_structure.lib.php:46 libraries/export/xml.php:328
-#: libraries/header.inc.php:126 pdf_pages.php:424 server_privileges.php:1626
-#: server_privileges.php:1682 server_privileges.php:1946
+#: libraries/header.inc.php:126 pdf_pages.php:424 server_privileges.php:1665
+#: server_privileges.php:1721 server_privileges.php:1985
#: server_synchronize.php:423 server_synchronize.php:866 tbl_tracking.php:592
#: test/theme.php:75
msgid "Table"
@@ -437,7 +436,7 @@ msgstr "Del"
#: db_qbe.php:370 db_qbe.php:451 db_qbe.php:522 db_qbe.php:553
#: libraries/display_import.lib.php:166 libraries/tbl_properties.inc.php:779
-#: server_privileges.php:258 tbl_change.php:1031 tbl_indexes.php:250
+#: server_privileges.php:297 tbl_change.php:1031 tbl_indexes.php:250
#: tbl_select.php:288
msgid "Or"
msgstr "Or"
@@ -447,12 +446,10 @@ msgid "Modify"
msgstr "Modify"
#: db_qbe.php:584
-#| msgid "Add/Delete Criteria Row"
msgid "Add/Delete criteria rows"
msgstr "Add/Delete criteria rows"
#: db_qbe.php:596
-#| msgid "Add/Delete Field Columns"
msgid "Add/Delete columns"
msgstr "Add/Delete columns"
@@ -469,7 +466,7 @@ msgstr "Use Tables"
msgid "SQL query on database %s:"
msgstr "SQL query on database %s:"
-#: db_qbe.php:934 libraries/common.lib.php:1223
+#: db_qbe.php:934 libraries/common.lib.php:1225
msgid "Submit Query"
msgstr "Submit Query"
@@ -508,7 +505,7 @@ msgstr "%s match(es) inside table %s"
#: db_search.php:267 db_structure.php:77 db_structure.php:78
#: db_structure.php:90 db_structure.php:92 db_structure.php:103
-#: db_structure.php:105 libraries/common.lib.php:2824
+#: db_structure.php:105 libraries/common.lib.php:2833
#: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50
#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:467
msgid "Browse"
@@ -548,32 +545,31 @@ msgid "Inside table(s):"
msgstr "Inside table(s):"
#: db_search.php:355
-#| msgid "Inside field:"
msgid "Inside column:"
msgstr "Inside column:"
#: db_structure.php:81 db_structure.php:82 db_structure.php:94
#: db_structure.php:95 db_structure.php:107 db_structure.php:108
-#: libraries/common.lib.php:2823 libraries/sql_query_form.lib.php:334
+#: libraries/common.lib.php:2832 libraries/sql_query_form.lib.php:334
#: libraries/sql_query_form.lib.php:337 libraries/tbl_links.inc.php:76
msgid "Insert"
msgstr "Insert"
#: db_structure.php:83 db_structure.php:96 db_structure.php:109
-#: libraries/common.lib.php:2820 libraries/common.lib.php:2827
+#: libraries/common.lib.php:2829 libraries/common.lib.php:2836
#: libraries/db_links.inc.php:63 libraries/export/htmlword.php:23
#: libraries/export/latex.php:33 libraries/export/latex.php:337
#: libraries/export/odt.php:32 libraries/export/sql.php:60
#: libraries/export/texytext.php:23 libraries/import.lib.php:1104
#: libraries/tbl_links.inc.php:56 pmd_general.php:134
-#: server_privileges.php:554 server_replication.php:315 tbl_tracking.php:269
+#: server_privileges.php:593 server_replication.php:315 tbl_tracking.php:269
msgid "Structure"
msgstr "Structure"
#: db_structure.php:84 db_structure.php:85 db_structure.php:97
#: db_structure.php:98 db_structure.php:110 db_structure.php:111
#: db_structure.php:545 db_structure.php:546 db_tracking.php:91
-#: libraries/Index.class.php:483 libraries/common.lib.php:1654
+#: libraries/Index.class.php:483 libraries/common.lib.php:1656
#: libraries/db_links.inc.php:100 libraries/mult_submits.inc.php:36
#: libraries/mult_submits.inc.php:73 libraries/tbl_links.inc.php:127
#: server_databases.php:352 tbl_structure.php:27 tbl_structure.php:151
@@ -583,7 +579,7 @@ msgstr "Drop"
#: db_structure.php:86 db_structure.php:87 db_structure.php:99
#: db_structure.php:100 db_structure.php:112 db_structure.php:113
-#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1653
+#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1655
#: libraries/mult_submits.inc.php:39 libraries/tbl_links.inc.php:105
msgid "Empty"
msgstr "Empty"
@@ -627,7 +623,7 @@ msgstr "View"
#: db_structure.php:485 libraries/db_structure.lib.php:49
#: libraries/server_links.inc.php:70 server_replication.php:33
-#: server_replication.php:164 server_status.php:258
+#: server_replication.php:164 server_status.php:369
msgid "Replication"
msgstr "Replication"
@@ -643,20 +639,20 @@ msgstr "%s is the default storage engine on this MySQL server."
#: db_structure.php:524 db_structure.php:541 db_structure.php:542
#: libraries/display_tbl.lib.php:2081 libraries/display_tbl.lib.php:2086
#: libraries/mult_submits.inc.php:16 server_databases.php:346
-#: server_databases.php:351 server_privileges.php:1557 tbl_structure.php:455
+#: server_databases.php:351 server_privileges.php:1596 tbl_structure.php:455
#: tbl_structure.php:464
msgid "With selected:"
msgstr "With selected:"
#: db_structure.php:527 libraries/display_tbl.lib.php:2076
-#: server_databases.php:348 server_privileges.php:530
-#: server_privileges.php:1560 tbl_structure.php:458
+#: server_databases.php:348 server_privileges.php:569
+#: server_privileges.php:1599 tbl_structure.php:458
msgid "Check All"
msgstr "Check All"
#: db_structure.php:531 libraries/display_tbl.lib.php:2077
#: libraries/replication_gui.lib.php:33 server_databases.php:350
-#: server_privileges.php:533 server_privileges.php:1564 tbl_structure.php:462
+#: server_privileges.php:572 server_privileges.php:1603 tbl_structure.php:462
msgid "Uncheck All"
msgstr "Uncheck All"
@@ -694,7 +690,7 @@ msgstr "Analyse table"
#: libraries/display_export.lib.php:83 libraries/display_tbl.lib.php:2094
#: libraries/display_tbl.lib.php:2225 libraries/mult_submits.inc.php:62
#: libraries/server_links.inc.php:84 libraries/tbl_links.inc.php:82
-#: pmd_pdf.php:84 pmd_pdf.php:109 server_privileges.php:1341
+#: pmd_pdf.php:84 pmd_pdf.php:109 server_privileges.php:1380
#: setup/frames/menu.inc.php:22 tbl_row_action.php:59
msgid "Export"
msgstr "Export"
@@ -712,8 +708,8 @@ msgstr "Tracked tables"
#: libraries/export/sql.php:342 libraries/export/texytext.php:84
#: libraries/export/xml.php:255 libraries/header.inc.php:106
#: libraries/header_printview.inc.php:58 server_databases.php:169
-#: server_privileges.php:1621 server_privileges.php:1682
-#: server_privileges.php:1940 server_processlist.php:56
+#: server_privileges.php:1660 server_privileges.php:1721
+#: server_privileges.php:1979 server_processlist.php:56
#: server_synchronize.php:1179 server_synchronize.php:1183
#: tbl_tracking.php:591 test/theme.php:65
msgid "Database"
@@ -733,8 +729,8 @@ msgstr "Updated"
#: db_tracking.php:77 libraries/Index.class.php:440
#: libraries/db_structure.lib.php:53 server_databases.php:203
-#: server_privileges.php:1503 server_privileges.php:1686
-#: server_privileges.php:2034 tbl_structure.php:187
+#: server_privileges.php:1542 server_privileges.php:1725
+#: server_privileges.php:2073 tbl_structure.php:187
msgid "Action"
msgstr "Action"
@@ -933,11 +929,11 @@ msgstr "The host name is empty!"
msgid "The user name is empty!"
msgstr "The user name is empty!"
-#: js/messages.php:44 server_privileges.php:1197 user_password.php:70
+#: js/messages.php:44 server_privileges.php:1236 user_password.php:70
msgid "The password is empty!"
msgstr "The password is empty!"
-#: js/messages.php:45 server_privileges.php:1195 user_password.php:73
+#: js/messages.php:45 server_privileges.php:1234 user_password.php:73
msgid "The passwords aren't the same!"
msgstr "The passwords aren't the same!"
@@ -996,7 +992,6 @@ msgid "Please select the primary key or a unique key"
msgstr "Please select the primary key or a unique key"
#: js/messages.php:63 pmd_general.php:77 tbl_relation.php:548
-#| msgid "Choose field to display"
msgid "Choose column to display"
msgstr "Choose column to display"
@@ -1011,8 +1006,8 @@ msgid "Prev"
msgstr "Prev"
#. l10n: Display text for next month link in calendar
-#: js/messages.php:77 libraries/common.lib.php:2344
-#: libraries/common.lib.php:2347 libraries/display_tbl.lib.php:338
+#: js/messages.php:77 libraries/common.lib.php:2353
+#: libraries/common.lib.php:2356 libraries/display_tbl.lib.php:338
#: server_binlog.php:205 server_binlog.php:207 tbl_printview.php:424
#: tbl_structure.php:801
msgid "Next"
@@ -1072,63 +1067,63 @@ msgid "December"
msgstr "December"
#. l10n: Short month name
-#: js/messages.php:97 libraries/common.lib.php:1555
+#: js/messages.php:97 libraries/common.lib.php:1557
msgid "Jan"
msgstr "Jan"
#. l10n: Short month name
-#: js/messages.php:99 libraries/common.lib.php:1557
+#: js/messages.php:99 libraries/common.lib.php:1559
msgid "Feb"
msgstr "Feb"
#. l10n: Short month name
-#: js/messages.php:101 libraries/common.lib.php:1559
+#: js/messages.php:101 libraries/common.lib.php:1561
msgid "Mar"
msgstr "Mar"
#. l10n: Short month name
-#: js/messages.php:103 libraries/common.lib.php:1561
+#: js/messages.php:103 libraries/common.lib.php:1563
msgid "Apr"
msgstr "Apr"
#. l10n: Short month name
-#: js/messages.php:105 libraries/common.lib.php:1563
+#: js/messages.php:105 libraries/common.lib.php:1565
msgctxt "Short month name"
msgid "May"
msgstr "May"
#. l10n: Short month name
-#: js/messages.php:107 libraries/common.lib.php:1565
+#: js/messages.php:107 libraries/common.lib.php:1567
msgid "Jun"
msgstr "Jun"
#. l10n: Short month name
-#: js/messages.php:109 libraries/common.lib.php:1567
+#: js/messages.php:109 libraries/common.lib.php:1569
msgid "Jul"
msgstr "Jul"
#. l10n: Short month name
-#: js/messages.php:111 libraries/common.lib.php:1569
+#: js/messages.php:111 libraries/common.lib.php:1571
msgid "Aug"
msgstr "Aug"
#. l10n: Short month name
-#: js/messages.php:113 libraries/common.lib.php:1571
+#: js/messages.php:113 libraries/common.lib.php:1573
msgid "Sep"
msgstr "Sep"
#. l10n: Short month name
-#: js/messages.php:115 libraries/common.lib.php:1573
+#: js/messages.php:115 libraries/common.lib.php:1575
msgid "Oct"
msgstr "Oct"
#. l10n: Short month name
-#: js/messages.php:117 libraries/common.lib.php:1575
+#: js/messages.php:117 libraries/common.lib.php:1577
msgid "Nov"
msgstr "Nov"
#. l10n: Short month name
-#: js/messages.php:119 libraries/common.lib.php:1577
+#: js/messages.php:119 libraries/common.lib.php:1579
msgid "Dec"
msgstr "Dec"
@@ -1161,37 +1156,37 @@ msgid "Saturday"
msgstr "Saturday"
#. l10n: Short week day name
-#: js/messages.php:132 libraries/common.lib.php:1580
+#: js/messages.php:132 libraries/common.lib.php:1582
msgid "Sun"
msgstr "Sun"
#. l10n: Short week day name
-#: js/messages.php:134 libraries/common.lib.php:1582
+#: js/messages.php:134 libraries/common.lib.php:1584
msgid "Mon"
msgstr "Mon"
#. l10n: Short week day name
-#: js/messages.php:136 libraries/common.lib.php:1584
+#: js/messages.php:136 libraries/common.lib.php:1586
msgid "Tue"
msgstr "Tue"
#. l10n: Short week day name
-#: js/messages.php:138 libraries/common.lib.php:1586
+#: js/messages.php:138 libraries/common.lib.php:1588
msgid "Wed"
msgstr "Wed"
#. l10n: Short week day name
-#: js/messages.php:140 libraries/common.lib.php:1588
+#: js/messages.php:140 libraries/common.lib.php:1590
msgid "Thu"
msgstr "Thu"
#. l10n: Short week day name
-#: js/messages.php:142 libraries/common.lib.php:1590
+#: js/messages.php:142 libraries/common.lib.php:1592
msgid "Fri"
msgstr "Fri"
#. l10n: Short week day name
-#: js/messages.php:144 libraries/common.lib.php:1592
+#: js/messages.php:144 libraries/common.lib.php:1594
msgid "Sat"
msgstr "Sat"
@@ -1321,7 +1316,7 @@ msgid "Comment"
msgstr "Comment"
#: libraries/Index.class.php:466 libraries/common.lib.php:616
-#: libraries/common.lib.php:1199 libraries/display_tbl.lib.php:1117
+#: libraries/common.lib.php:1201 libraries/display_tbl.lib.php:1117
#: libraries/import.lib.php:1087 libraries/import.lib.php:1111
#: pdf_pages.php:285 setup/frames/index.inc.php:124
#: setup/lib/messages.inc.php:352 tbl_row_action.php:69
@@ -1347,7 +1342,7 @@ msgstr ""
"removed."
#: libraries/List_Database.class.php:431 libraries/server_links.inc.php:41
-#: server_databases.php:88 server_privileges.php:1621
+#: server_databases.php:88 server_privileges.php:1660
#: setup/lib/messages.inc.php:110 test/theme.php:93
msgid "Databases"
msgstr "Databases"
@@ -1678,7 +1673,7 @@ msgid "Documentation"
msgstr "Documentation"
#: libraries/common.lib.php:595 libraries/header_printview.inc.php:61
-#: server_processlist.php:60 server_status.php:247
+#: server_processlist.php:60 server_status.php:358
msgid "SQL query"
msgstr "SQL query"
@@ -1694,128 +1689,128 @@ msgstr "Explain SQL"
msgid "Skip Explain SQL"
msgstr "Skip Explain SQL"
-#: libraries/common.lib.php:1212
+#: libraries/common.lib.php:1214
msgid "Without PHP Code"
msgstr "Without PHP Code"
-#: libraries/common.lib.php:1215 setup/lib/messages.inc.php:355
+#: libraries/common.lib.php:1217 setup/lib/messages.inc.php:355
msgid "Create PHP Code"
msgstr "Create PHP Code"
-#: libraries/common.lib.php:1233 server_status.php:341
+#: libraries/common.lib.php:1235 server_status.php:452
#: setup/lib/messages.inc.php:354
msgid "Refresh"
msgstr "Refresh"
-#: libraries/common.lib.php:1242
+#: libraries/common.lib.php:1244
msgid "Skip Validate SQL"
msgstr "Skip Validate SQL"
-#: libraries/common.lib.php:1245 setup/lib/messages.inc.php:356 sql.php:518
+#: libraries/common.lib.php:1247 setup/lib/messages.inc.php:356 sql.php:518
msgid "Validate SQL"
msgstr "Validate SQL"
-#: libraries/common.lib.php:1276
+#: libraries/common.lib.php:1278
msgid "Inline edit of this query"
msgstr "Inline edit of this query"
-#: libraries/common.lib.php:1278
+#: libraries/common.lib.php:1280
msgid "Inline"
msgstr "Inline"
-#: libraries/common.lib.php:1332 libraries/common.lib.php:1347
+#: libraries/common.lib.php:1334 libraries/common.lib.php:1349
msgid "Profiling"
msgstr "Profiling"
-#: libraries/common.lib.php:1351 libraries/tbl_triggers.lib.php:28
+#: libraries/common.lib.php:1353 libraries/tbl_triggers.lib.php:28
#: server_processlist.php:58
msgid "Time"
msgstr "Time"
#. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "B"
msgstr "B"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "KiB"
msgstr "KiB"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "MiB"
msgstr "MiB"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "GiB"
msgstr "GiB"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "TiB"
msgstr "TiB"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "PiB"
msgstr "PiB"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "EiB"
msgstr "EiB"
#. l10n: Thousands separator
-#: libraries/common.lib.php:1417
+#: libraries/common.lib.php:1419
msgid ","
msgstr ","
#. l10n: Decimal separator
-#: libraries/common.lib.php:1419
+#: libraries/common.lib.php:1421
msgid "."
msgstr "."
#. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string
-#: libraries/common.lib.php:1596
+#: libraries/common.lib.php:1598
#: libraries/transformations/text_plain__dateformat.inc.php:34
msgid "%B %d, %Y at %I:%M %p"
msgstr "%B %d, %Y at %I:%M %p"
-#: libraries/common.lib.php:1898
+#: libraries/common.lib.php:1907
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "%s days, %s hours, %s minutes and %s seconds"
-#: libraries/common.lib.php:2313 libraries/common.lib.php:2316
-#: libraries/display_tbl.lib.php:290 server_status.php:608
+#: libraries/common.lib.php:2322 libraries/common.lib.php:2325
+#: libraries/display_tbl.lib.php:290 server_status.php:719
msgid "Begin"
msgstr "Begin"
-#: libraries/common.lib.php:2314 libraries/common.lib.php:2317
+#: libraries/common.lib.php:2323 libraries/common.lib.php:2326
#: libraries/display_tbl.lib.php:291 server_binlog.php:168
#: server_binlog.php:170
msgid "Previous"
msgstr "Previous"
-#: libraries/common.lib.php:2345 libraries/common.lib.php:2348
+#: libraries/common.lib.php:2354 libraries/common.lib.php:2357
#: libraries/display_tbl.lib.php:353
msgid "End"
msgstr "End"
-#: libraries/common.lib.php:2421
+#: libraries/common.lib.php:2430
#, php-format
msgid "Jump to database "%s"."
msgstr "Jump to database "%s"."
-#: libraries/common.lib.php:2441
+#: libraries/common.lib.php:2450
#, 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/common.lib.php:2821 libraries/common.lib.php:2828
+#: libraries/common.lib.php:2830 libraries/common.lib.php:2837
#: libraries/db_links.inc.php:68 libraries/export/sql.php:25
#: libraries/import/sql.php:18 libraries/server_links.inc.php:45
#: libraries/tbl_links.inc.php:60 querywindow.php:99 test/theme.php:97
msgid "SQL"
msgstr "SQL"
-#: libraries/common.lib.php:2830 libraries/db_links.inc.php:104
+#: libraries/common.lib.php:2839 libraries/db_links.inc.php:104
#: libraries/tbl_links.inc.php:95 libraries/tbl_links.inc.php:117
#: view_operations.php:89
msgid "Operations"
@@ -1871,8 +1866,8 @@ msgid "Import"
msgstr "Import"
#: libraries/db_links.inc.php:111 libraries/server_links.inc.php:66
-#: server_privileges.php:72 server_privileges.php:1683
-#: server_privileges.php:2032 test/theme.php:117
+#: server_privileges.php:111 server_privileges.php:1722
+#: server_privileges.php:2071 test/theme.php:117
msgid "Privileges"
msgstr "Privileges"
@@ -1920,22 +1915,22 @@ msgid "Change password"
msgstr "Change password"
#: libraries/display_change_password.lib.php:35
-#: libraries/replication_gui.lib.php:345 server_privileges.php:768
+#: libraries/replication_gui.lib.php:345 server_privileges.php:807
msgid "No Password"
msgstr "No Password"
#: libraries/display_change_password.lib.php:41
#: libraries/replication_gui.lib.php:59 libraries/replication_gui.lib.php:60
#: libraries/replication_gui.lib.php:335 libraries/replication_gui.lib.php:339
-#: libraries/replication_gui.lib.php:349 server_privileges.php:757
-#: server_privileges.php:761 server_privileges.php:772
-#: server_privileges.php:1499 server_synchronize.php:1175
+#: libraries/replication_gui.lib.php:349 server_privileges.php:796
+#: server_privileges.php:800 server_privileges.php:811
+#: server_privileges.php:1538 server_synchronize.php:1175
msgid "Password"
msgstr "Password"
#: libraries/display_change_password.lib.php:46
#: libraries/replication_gui.lib.php:353 libraries/replication_gui.lib.php:356
-#: server_privileges.php:776 server_privileges.php:779
+#: server_privileges.php:815 server_privileges.php:818
msgid "Re-type"
msgstr "Re-type"
@@ -1948,12 +1943,12 @@ msgid "MySQL 4.0 compatible"
msgstr "MySQL 4.0 compatible"
#: libraries/display_change_password.lib.php:72
-#: libraries/replication_gui.lib.php:360 server_privileges.php:783
+#: libraries/replication_gui.lib.php:360 server_privileges.php:822
msgid "Generate Password"
msgstr "Generate Password"
#: libraries/display_change_password.lib.php:75
-#: libraries/replication_gui.lib.php:363 server_privileges.php:786
+#: libraries/replication_gui.lib.php:363 server_privileges.php:825
msgid "Generate"
msgstr "Generate"
@@ -1966,13 +1961,12 @@ msgstr "Create new database"
msgid "Create"
msgstr "Create"
-#: libraries/display_create_database.lib.php:40 server_privileges.php:74
-#: server_privileges.php:1388 server_replication.php:35
+#: libraries/display_create_database.lib.php:40 server_privileges.php:113
+#: server_privileges.php:1427 server_replication.php:35
msgid "No Privileges"
msgstr "No Privileges"
#: libraries/display_create_table.lib.php:41
-#| msgid "Table must have at least one field."
msgid "Table must have at least one column."
msgstr "Table must have at least one column."
@@ -1982,7 +1976,6 @@ msgid "Create table on database %s"
msgstr "Create table on database %s"
#: libraries/display_create_table.lib.php:57
-#| msgid "Number of fields"
msgid "Number of columns"
msgstr "Number of columns"
@@ -1992,7 +1985,6 @@ msgstr "Could not load export plug-ins, please check your installation!"
#: libraries/display_export.lib.php:107
#, php-format
-#| msgid "Dump %s row(s) starting at record # %s"
msgid "Dump %s row(s) starting at row # %s"
msgstr "Dump %s row(s) starting at row # %s"
@@ -2056,7 +2048,7 @@ msgstr "Compression"
#: libraries/display_export.lib.php:240 libraries/display_import.lib.php:197
#: libraries/display_import.lib.php:210 libraries/display_tbl.lib.php:530
#: libraries/export/sql.php:868 libraries/tbl_properties.inc.php:575
-#: server_privileges.php:1836 server_processlist.php:75
+#: server_privileges.php:1875 server_processlist.php:75
msgid "None"
msgstr "None"
@@ -2148,7 +2140,6 @@ msgstr ""
"however it can break transactions."
#: libraries/display_import.lib.php:239 setup/lib/messages.inc.php:161
-#| msgid "Number of records (queries) to skip from start"
msgid "Number of queries to skip from start"
msgstr "Number of queries to skip from start"
@@ -2207,7 +2198,6 @@ msgid "%d is not valid row number."
msgstr "%d is not valid row number."
#: libraries/display_tbl.lib.php:310
-#| msgid "row(s) starting from record #"
msgid "row(s) starting from row #"
msgstr "row(s) starting from row #"
@@ -2266,7 +2256,6 @@ msgid "Relational key"
msgstr "Relational key"
#: libraries/display_tbl.lib.php:588
-#| msgid "Relational display field"
msgid "Relational display column"
msgstr "Relational display column"
@@ -2385,7 +2374,7 @@ msgstr ""
msgid "Buffer Pool"
msgstr "Buffer Pool"
-#: libraries/engines/innodb.lib.php:145 server_status.php:306
+#: libraries/engines/innodb.lib.php:145 server_status.php:417
msgid "InnoDB Status"
msgstr "InnoDB Status"
@@ -2394,8 +2383,8 @@ msgid "Buffer Pool Usage"
msgstr "Buffer Pool Usage"
#: libraries/engines/innodb.lib.php:194 server_databases.php:137
-#: server_databases.php:305 server_status.php:414 server_status.php:475
-#: server_status.php:496 tbl_printview.php:351 tbl_structure.php:696
+#: server_databases.php:305 server_status.php:525 server_status.php:586
+#: server_status.php:607 tbl_printview.php:351 tbl_structure.php:696
msgid "Total"
msgstr "Total"
@@ -2690,19 +2679,16 @@ msgstr "CSV"
#: libraries/export/csv.php:21 libraries/import/csv.php:27
#: libraries/import/csv.php:59 libraries/import/ldi.php:40
-#| msgid "Lines terminated by"
msgid "Columns terminated by"
msgstr "Columns terminated by"
#: libraries/export/csv.php:22 libraries/import/csv.php:28
#: libraries/import/csv.php:71 libraries/import/ldi.php:41
-#| msgid "Fields enclosed by"
msgid "Columns enclosed by"
msgstr "Columns enclosed by"
#: libraries/export/csv.php:23 libraries/import/csv.php:29
#: libraries/import/csv.php:75 libraries/import/ldi.php:42
-#| msgid "Fields escaped by"
msgid "Columns escaped by"
msgstr "Columns escaped by"
@@ -2720,7 +2706,6 @@ msgid "Replace NULL by"
msgstr "Replace NULL by"
#: libraries/export/csv.php:26 libraries/export/excel.php:23
-#| msgid "Remove CRLF characters within fields"
msgid "Remove CRLF characters within columns"
msgstr "Remove CRLF characters within columns"
@@ -2729,7 +2714,6 @@ msgstr "Remove CRLF characters within columns"
#: libraries/export/ods.php:24 libraries/export/odt.php:50
#: libraries/export/texytext.php:34 libraries/export/xls.php:24
#: libraries/export/xlsx.php:24
-#| msgid "Put fields names in the first row"
msgid "Put columns names in the first row"
msgstr "Put columns names in the first row"
@@ -2749,7 +2733,7 @@ msgstr "Microsoft Word 2000"
#: libraries/export/latex.php:201 libraries/export/odt.php:48
#: libraries/export/sql.php:106 libraries/export/sql.php:868
#: libraries/export/texytext.php:27 server_databases.php:127
-#: server_privileges.php:537 server_replication.php:316 tbl_printview.php:317
+#: server_privileges.php:576 server_replication.php:316 tbl_printview.php:317
#: tbl_structure.php:665
msgid "Data"
msgstr "Data"
@@ -2799,9 +2783,9 @@ msgstr "MIME type"
#: libraries/export/xml.php:102 libraries/header_printview.inc.php:57
#: libraries/replication_gui.lib.php:63 libraries/replication_gui.lib.php:174
#: libraries/replication_gui.lib.php:269 libraries/replication_gui.lib.php:272
-#: libraries/replication_gui.lib.php:329 server_privileges.php:692
-#: server_privileges.php:695 server_privileges.php:751
-#: server_privileges.php:1498 server_privileges.php:2030
+#: libraries/replication_gui.lib.php:329 server_privileges.php:731
+#: server_privileges.php:734 server_privileges.php:790
+#: server_privileges.php:1537 server_privileges.php:2069
#: server_processlist.php:55 server_synchronize.php:1159
msgid "Host"
msgstr "Host"
@@ -2866,7 +2850,6 @@ msgid "Database export options"
msgstr "Database export options"
#: libraries/export/sql.php:80
-#| msgid "Enclose table and field names with backquotes"
msgid "Enclose table and column names with backquotes"
msgstr "Enclose table and column names with backquotes"
@@ -3088,7 +3071,6 @@ msgstr "Invalid format of CSV input on line %d."
#: libraries/import/csv.php:312
#, php-format
-#| msgid "Invalid field count in CSV input on line %d."
msgid "Invalid column count in CSV input on line %d."
msgstr "Invalid column count in CSV input on line %d."
@@ -3153,845 +3135,6 @@ msgstr "None"
msgid "Convert to Kana"
msgstr "Convert to Kana"
-#. l10n: Text direction, use either ltr or rtl
-#: libraries/messages.inc.php:19
-msgid "ltr"
-msgstr "ltr"
-
-#: libraries/messages.inc.php:21
-msgid "Content of table __TABLE__"
-msgstr "Content of table __TABLE__"
-
-#: libraries/messages.inc.php:22
-msgid "(continued)"
-msgstr "(continued)"
-
-#: libraries/messages.inc.php:23
-msgid "Structure of table __TABLE__"
-msgstr "Structure of table __TABLE__"
-
-#: libraries/messages.inc.php:25 server_privileges.php:227
-msgid "Includes all privileges except GRANT."
-msgstr "Includes all privileges except GRANT."
-
-#: libraries/messages.inc.php:26 server_privileges.php:153
-#: server_privileges.php:476
-msgid "Allows altering the structure of existing tables."
-msgstr "Allows altering the structure of existing tables."
-
-#: libraries/messages.inc.php:27 server_privileges.php:169
-#: server_privileges.php:482
-msgid "Allows altering and dropping stored routines."
-msgstr "Allows altering and dropping stored routines."
-
-#: libraries/messages.inc.php:28 server_privileges.php:145
-#: server_privileges.php:475
-msgid "Allows creating new databases and tables."
-msgstr "Allows creating new databases and tables."
-
-#: libraries/messages.inc.php:29 server_privileges.php:168
-#: server_privileges.php:481
-msgid "Allows creating stored routines."
-msgstr "Allows creating stored routines."
-
-#: libraries/messages.inc.php:30 server_privileges.php:475
-msgid "Allows creating new tables."
-msgstr "Allows creating new tables."
-
-#: libraries/messages.inc.php:31 server_privileges.php:156
-#: server_privileges.php:479
-msgid "Allows creating temporary tables."
-msgstr "Allows creating temporary tables."
-
-#: libraries/messages.inc.php:32 server_privileges.php:170
-#: server_privileges.php:515
-msgid "Allows creating, dropping and renaming user accounts."
-msgstr "Allows creating, dropping and renaming user accounts."
-
-#: libraries/messages.inc.php:33 server_privileges.php:160
-#: server_privileges.php:164 server_privileges.php:487
-#: server_privileges.php:491
-msgid "Allows creating new views."
-msgstr "Allows creating new views."
-
-#: libraries/messages.inc.php:34 server_privileges.php:144
-#: server_privileges.php:467
-msgid "Allows deleting data."
-msgstr "Allows deleting data."
-
-#: libraries/messages.inc.php:35 server_privileges.php:146
-#: server_privileges.php:478
-msgid "Allows dropping databases and tables."
-msgstr "Allows dropping databases and tables."
-
-#: libraries/messages.inc.php:36 server_privileges.php:478
-msgid "Allows dropping tables."
-msgstr "Allows dropping tables."
-
-#: libraries/messages.inc.php:37 server_privileges.php:161
-#: server_privileges.php:495
-msgid "Allows to set up events for the event scheduler"
-msgstr "Allows to set up events for the event scheduler"
-
-#: libraries/messages.inc.php:38 server_privileges.php:171
-#: server_privileges.php:483
-msgid "Allows executing stored routines."
-msgstr "Allows executing stored routines."
-
-#: libraries/messages.inc.php:39 server_privileges.php:150
-#: server_privileges.php:470
-msgid "Allows importing data from and exporting data into files."
-msgstr "Allows importing data from and exporting data into files."
-
-#: libraries/messages.inc.php:40 server_privileges.php:501
-msgid ""
-"Allows adding users and privileges without reloading the privilege tables."
-msgstr ""
-"Allows adding users and privileges without reloading the privilege tables."
-
-#: libraries/messages.inc.php:41 server_privileges.php:152
-#: server_privileges.php:477
-msgid "Allows creating and dropping indexes."
-msgstr "Allows creating and dropping indexes."
-
-#: libraries/messages.inc.php:42 server_privileges.php:142
-#: server_privileges.php:403 server_privileges.php:465
-msgid "Allows inserting and replacing data."
-msgstr "Allows inserting and replacing data."
-
-#: libraries/messages.inc.php:43 server_privileges.php:157
-#: server_privileges.php:510
-msgid "Allows locking tables for the current thread."
-msgstr "Allows locking tables for the current thread."
-
-#: libraries/messages.inc.php:44 server_privileges.php:607
-#: server_privileges.php:609
-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/messages.inc.php:45 server_privileges.php:595
-#: server_privileges.php:597
-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/messages.inc.php:46 server_privileges.php:601
-#: server_privileges.php:603
-msgid ""
-"Limits the number of commands that change any table or database the user may "
-"execute per hour."
-msgstr ""
-"Limits the number of commands that change any table or database the user may "
-"execute per hour."
-
-#: libraries/messages.inc.php:47 server_privileges.php:613
-#: server_privileges.php:615
-msgid "Limits the number of simultaneous connections the user may have."
-msgstr "Limits the number of simultaneous connections the user may have."
-
-#: libraries/messages.inc.php:48 server_privileges.php:149
-#: server_privileges.php:505
-msgid "Allows viewing processes of all users"
-msgstr "Allows viewing processes of all users"
-
-#: libraries/messages.inc.php:49 server_privileges.php:151
-#: server_privileges.php:409 server_privileges.php:511
-msgid "Has no effect in this MySQL version."
-msgstr "Has no effect in this MySQL version."
-
-#: libraries/messages.inc.php:50 server_privileges.php:147
-#: server_privileges.php:506
-msgid "Allows reloading server settings and flushing the server's caches."
-msgstr "Allows reloading server settings and flushing the server's caches."
-
-#: libraries/messages.inc.php:51 server_privileges.php:159
-#: server_privileges.php:513
-msgid "Allows the user to ask where the slaves / masters are."
-msgstr "Allows the user to ask where the slaves / masters are."
-
-#: libraries/messages.inc.php:52 server_privileges.php:158
-#: server_privileges.php:514
-msgid "Needed for the replication slaves."
-msgstr "Needed for the replication slaves."
-
-#: libraries/messages.inc.php:53 server_privileges.php:141
-#: server_privileges.php:400 server_privileges.php:464
-msgid "Allows reading data."
-msgstr "Allows reading data."
-
-#: libraries/messages.inc.php:54 server_privileges.php:154
-#: server_privileges.php:508
-msgid "Gives access to the complete list of databases."
-msgstr "Gives access to the complete list of databases."
-
-#: libraries/messages.inc.php:55 server_privileges.php:165
-#: server_privileges.php:167 server_privileges.php:480
-msgid "Allows performing SHOW CREATE VIEW queries."
-msgstr "Allows performing SHOW CREATE VIEW queries."
-
-#: libraries/messages.inc.php:56 server_privileges.php:148
-#: server_privileges.php:507
-msgid "Allows shutting down the server."
-msgstr "Allows shutting down the server."
-
-#: libraries/messages.inc.php:57 server_privileges.php:155
-#: server_privileges.php:504
-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 ""
-"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."
-
-#: libraries/messages.inc.php:58 server_privileges.php:162
-#: server_privileges.php:496
-msgid "Allows creating and dropping triggers"
-msgstr "Allows creating and dropping triggers"
-
-#: libraries/messages.inc.php:59 server_privileges.php:143
-#: server_privileges.php:406 server_privileges.php:466
-msgid "Allows changing data."
-msgstr "Allows changing data."
-
-#: libraries/messages.inc.php:60 server_privileges.php:221
-msgid "No privileges."
-msgstr "No privileges."
-
-#: libraries/messages.inc.php:62
-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 ""
-"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."
-
-#: libraries/messages.inc.php:63
-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/messages.inc.php:64
-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 "
-"to increase the tmp_table_size value to cause temporary tables to be memory-"
-"based instead of disk-based."
-msgstr ""
-"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 "
-"to increase the tmp_table_size value to cause temporary tables to be memory-"
-"based instead of disk-based."
-
-#: libraries/messages.inc.php:65
-msgid "How many temporary files mysqld has created."
-msgstr "How many temporary files mysqld has created."
-
-#: libraries/messages.inc.php:66
-msgid ""
-"The number of in-memory temporary tables created automatically by the server "
-"while executing statements."
-msgstr ""
-"The number of in-memory temporary tables created automatically by the server "
-"while executing statements."
-
-#: libraries/messages.inc.php:67
-msgid ""
-"The number of rows written with INSERT DELAYED for which some error occurred "
-"(probably duplicate key)."
-msgstr ""
-"The number of rows written with INSERT DELAYED for which some error occurred "
-"(probably duplicate key)."
-
-#: libraries/messages.inc.php:68
-msgid ""
-"The number of INSERT DELAYED handler threads in use. Every different table "
-"on which one uses INSERT DELAYED gets its own thread."
-msgstr ""
-"The number of INSERT DELAYED handler threads in use. Every different table "
-"on which one uses INSERT DELAYED gets its own thread."
-
-#: libraries/messages.inc.php:69
-msgid "The number of INSERT DELAYED rows written."
-msgstr "The number of INSERT DELAYED rows written."
-
-#: libraries/messages.inc.php:70
-msgid "The number of executed FLUSH statements."
-msgstr "The number of executed FLUSH statements."
-
-#: libraries/messages.inc.php:71
-msgid "The number of internal COMMIT statements."
-msgstr "The number of internal COMMIT statements."
-
-#: libraries/messages.inc.php:72
-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/messages.inc.php:73
-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 ""
-"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."
-
-#: libraries/messages.inc.php:74
-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 ""
-"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."
-
-#: libraries/messages.inc.php:75
-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 ""
-"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/messages.inc.php:76
-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 ""
-"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."
-
-#: libraries/messages.inc.php:77
-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 ""
-"The number of requests to read the previous row in key order. This read "
-"method is mainly used to optimise ORDER BY ... DESC."
-
-#: libraries/messages.inc.php:78
-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 "
-"probably have a lot of queries that require MySQL to scan whole tables or "
-"you have joins that don't use keys properly."
-msgstr ""
-"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 "
-"probably have a lot of queries that require MySQL to scan whole tables or "
-"you have joins that don't use keys properly."
-
-#: libraries/messages.inc.php:79
-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 "
-"tables are not properly indexed or that your queries are not written to take "
-"advantage of the indexes you have."
-msgstr ""
-"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 "
-"tables are not properly indexed or that your queries are not written to take "
-"advantage of the indexes you have."
-
-#: libraries/messages.inc.php:80
-msgid "The number of internal ROLLBACK statements."
-msgstr "The number of internal ROLLBACK statements."
-
-#: libraries/messages.inc.php:81
-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/messages.inc.php:82
-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/messages.inc.php:83
-msgid "The number of pages containing data (dirty or clean)."
-msgstr "The number of pages containing data (dirty or clean)."
-
-#: libraries/messages.inc.php:84
-msgid "The number of pages currently dirty."
-msgstr "The number of pages currently dirty."
-
-#: libraries/messages.inc.php:85
-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/messages.inc.php:86
-msgid "The number of free pages."
-msgstr "The number of free pages."
-
-#: libraries/messages.inc.php:87
-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 ""
-"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."
-
-#: libraries/messages.inc.php:88
-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 "
-"be calculated as Innodb_buffer_pool_pages_total - "
-"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data."
-msgstr ""
-"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 "
-"be calculated as Innodb_buffer_pool_pages_total - "
-"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data."
-
-#: libraries/messages.inc.php:89
-msgid "Total size of buffer pool, in pages."
-msgstr "Total size of buffer pool, in pages."
-
-#: libraries/messages.inc.php:90
-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 ""
-"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/messages.inc.php:91
-msgid ""
-"The number of sequential read-aheads InnoDB initiated. This happens when "
-"InnoDB does a sequential full table scan."
-msgstr ""
-"The number of sequential read-aheads InnoDB initiated. This happens when "
-"InnoDB does a sequential full table scan."
-
-#: libraries/messages.inc.php:92
-msgid "The number of logical read requests InnoDB has done."
-msgstr "The number of logical read requests InnoDB has done."
-
-#: libraries/messages.inc.php:93
-msgid ""
-"The number of logical reads that InnoDB could not satisfy from buffer pool "
-"and had to do a single-page read."
-msgstr ""
-"The number of logical reads that InnoDB could not satisfy from buffer pool "
-"and had to do a single-page read."
-
-#: libraries/messages.inc.php:94
-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 "
-"available, it's necessary to wait for pages to be flushed first. This "
-"counter counts instances of these waits. If the buffer pool size was set "
-"properly, this value should be small."
-msgstr ""
-"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 "
-"available, it's necessary to wait for pages to be flushed first. This "
-"counter counts instances of these waits. If the buffer pool size was set "
-"properly, this value should be small."
-
-#: libraries/messages.inc.php:95
-msgid "The number writes done to the InnoDB buffer pool."
-msgstr "The number writes done to the InnoDB buffer pool."
-
-#: libraries/messages.inc.php:96
-msgid "The number of fsync() operations so far."
-msgstr "The number of fsync() operations so far."
-
-#: libraries/messages.inc.php:97
-msgid "The current number of pending fsync() operations."
-msgstr "The current number of pending fsync() operations."
-
-#: libraries/messages.inc.php:98
-msgid "The current number of pending reads."
-msgstr "The current number of pending reads."
-
-#: libraries/messages.inc.php:99
-msgid "The current number of pending writes."
-msgstr "The current number of pending writes."
-
-#: libraries/messages.inc.php:100
-msgid "The amount of data read so far, in bytes."
-msgstr "The amount of data read so far, in bytes."
-
-#: libraries/messages.inc.php:101
-msgid "The total number of data reads."
-msgstr "The total number of data reads."
-
-#: libraries/messages.inc.php:102
-msgid "The total number of data writes."
-msgstr "The total number of data writes."
-
-#: libraries/messages.inc.php:103
-msgid "The amount of data written so far, in bytes."
-msgstr "The amount of data written so far, in bytes."
-
-#: libraries/messages.inc.php:104
-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/messages.inc.php:105
-msgid "The number of doublewrite operations that have been performed."
-msgstr "The number of doublewrite operations that have been performed."
-
-#: libraries/messages.inc.php:106
-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 ""
-"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/messages.inc.php:107
-msgid "The number of log write requests."
-msgstr "The number of log write requests."
-
-#: libraries/messages.inc.php:108
-msgid "The number of physical writes to the log file."
-msgstr "The number of physical writes to the log file."
-
-#: libraries/messages.inc.php:109
-msgid "The number of fsync() writes done to the log file."
-msgstr "The number of fsync() writes done to the log file."
-
-#: libraries/messages.inc.php:110
-msgid "The number of pending log file fsyncs."
-msgstr "The number of pending log file fsyncs."
-
-#: libraries/messages.inc.php:111
-msgid "Pending log file writes."
-msgstr "Pending log file writes."
-
-#: libraries/messages.inc.php:112
-msgid "The number of bytes written to the log file."
-msgstr "The number of bytes written to the log file."
-
-#: libraries/messages.inc.php:113
-msgid "The number of pages created."
-msgstr "The number of pages created."
-
-#: libraries/messages.inc.php:114
-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 ""
-"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/messages.inc.php:115
-msgid "The number of pages read."
-msgstr "The number of pages read."
-
-#: libraries/messages.inc.php:116
-msgid "The number of pages written."
-msgstr "The number of pages written."
-
-#: libraries/messages.inc.php:117
-msgid "The number of row locks currently being waited for."
-msgstr "The number of row locks currently being waited for."
-
-#: libraries/messages.inc.php:118
-msgid "The average time to acquire a row lock, in milliseconds."
-msgstr "The average time to acquire a row lock, in milliseconds."
-
-#: libraries/messages.inc.php:119
-msgid "The total time spent in acquiring row locks, in milliseconds."
-msgstr "The total time spent in acquiring row locks, in milliseconds."
-
-#: libraries/messages.inc.php:120
-msgid "The maximum time to acquire a row lock, in milliseconds."
-msgstr "The maximum time to acquire a row lock, in milliseconds."
-
-#: libraries/messages.inc.php:121
-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/messages.inc.php:122
-msgid "The number of rows deleted from InnoDB tables."
-msgstr "The number of rows deleted from InnoDB tables."
-
-#: libraries/messages.inc.php:123
-msgid "The number of rows inserted in InnoDB tables."
-msgstr "The number of rows inserted in InnoDB tables."
-
-#: libraries/messages.inc.php:124
-msgid "The number of rows read from InnoDB tables."
-msgstr "The number of rows read from InnoDB tables."
-
-#: libraries/messages.inc.php:125
-msgid "The number of rows updated in InnoDB tables."
-msgstr "The number of rows updated in InnoDB tables."
-
-#: libraries/messages.inc.php:126
-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 ""
-"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/messages.inc.php:127
-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 ""
-"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/messages.inc.php:128
-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 ""
-"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."
-
-#: libraries/messages.inc.php:129
-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/messages.inc.php:130
-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 ""
-"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."
-
-#: libraries/messages.inc.php:131
-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/messages.inc.php:132
-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/messages.inc.php:133
-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 ""
-"The total cost of the last compiled query as computed by the query "
-"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/messages.inc.php:134
-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/messages.inc.php:135
-msgid ""
-"The number of tables that have been opened. If opened tables is big, your "
-"table cache value is probably too small."
-msgstr ""
-"The number of tables that have been opened. If opened tables is big, your "
-"table cache value is probably too small."
-
-#: libraries/messages.inc.php:136
-msgid "The number of files that are open."
-msgstr "The number of files that are open."
-
-#: libraries/messages.inc.php:137
-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/messages.inc.php:138
-msgid "The number of tables that are open."
-msgstr "The number of tables that are open."
-
-#: libraries/messages.inc.php:139
-msgid "The number of free memory blocks in query cache."
-msgstr "The number of free memory blocks in query cache."
-
-#: libraries/messages.inc.php:140
-msgid "The amount of free memory for query cache."
-msgstr "The amount of free memory for query cache."
-
-#: libraries/messages.inc.php:141
-msgid "The number of cache hits."
-msgstr "The number of cache hits."
-
-#: libraries/messages.inc.php:142
-msgid "The number of queries added to the cache."
-msgstr "The number of queries added to the cache."
-
-#: libraries/messages.inc.php:143
-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 "
-"cache size. The query cache uses a least recently used (LRU) strategy to "
-"decide which queries to remove from the cache."
-msgstr ""
-"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 "
-"cache size. The query cache uses a least recently used (LRU) strategy to "
-"decide which queries to remove from the cache."
-
-#: libraries/messages.inc.php:144
-msgid ""
-"The number of non-cached queries (not cachable, or not cached due to the "
-"query_cache_type setting)."
-msgstr ""
-"The number of non-cached queries (not cachable, or not cached due to the "
-"query_cache_type setting)."
-
-#: libraries/messages.inc.php:145
-msgid "The number of queries registered in the cache."
-msgstr "The number of queries registered in the cache."
-
-#: libraries/messages.inc.php:146
-msgid "The total number of blocks in the query cache."
-msgstr "The total number of blocks in the query cache."
-
-#: libraries/messages.inc.php:147
-msgctxt "$strShowStatusReset"
-msgid "Reset"
-msgstr "Reset"
-
-#: libraries/messages.inc.php:148
-msgid "The status of failsafe replication (not yet implemented)."
-msgstr "The status of failsafe replication (not yet implemented)."
-
-#: libraries/messages.inc.php:149
-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 ""
-"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/messages.inc.php:150
-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/messages.inc.php:151
-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 ""
-"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/messages.inc.php:152
-msgid ""
-"The number of joins that used ranges on the first table. (It's normally not "
-"critical even if this is big.)"
-msgstr ""
-"The number of joins that used ranges on the first table. (It's normally not "
-"critical even if this is big.)"
-
-#: libraries/messages.inc.php:153
-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/messages.inc.php:154
-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/messages.inc.php:155
-msgid ""
-"Total (since startup) number of times the replication slave SQL thread has "
-"retried transactions."
-msgstr ""
-"Total (since startup) number of times the replication slave SQL thread has "
-"retried transactions."
-
-#: libraries/messages.inc.php:156
-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/messages.inc.php:157
-msgid ""
-"The number of threads that have taken more than slow_launch_time seconds to "
-"create."
-msgstr ""
-"The number of threads that have taken more than slow_launch_time seconds to "
-"create."
-
-#: libraries/messages.inc.php:158
-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/messages.inc.php:159
-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 ""
-"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."
-
-#: libraries/messages.inc.php:160
-msgid "The number of sorts that were done with ranges."
-msgstr "The number of sorts that were done with ranges."
-
-#: libraries/messages.inc.php:161
-msgid "The number of sorted rows."
-msgstr "The number of sorted rows."
-
-#: libraries/messages.inc.php:162
-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/messages.inc.php:163
-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/messages.inc.php:164
-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 "
-"should first optimize your queries, and then either split your table or "
-"tables or use replication."
-msgstr ""
-"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 "
-"should first optimise your queries, and then either split your table or "
-"tables or use replication."
-
-#: libraries/messages.inc.php:165
-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 ""
-"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."
-
-#: libraries/messages.inc.php:166
-msgid "The number of currently open connections."
-msgstr "The number of currently open connections."
-
-#: libraries/messages.inc.php:167
-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 "
-"doesn't give a notable performance improvement if you have a good thread "
-"implementation.)"
-msgstr ""
-"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 "
-"doesn't give a notable performance improvement if you have a good thread "
-"implementation.)"
-
-#: libraries/messages.inc.php:168
-msgid "The number of threads that are not sleeping."
-msgstr "The number of threads that are not sleeping."
-
#: libraries/mult_submits.inc.php:76 libraries/tbl_properties.inc.php:513
#: tbl_structure.php:29 tbl_structure.php:153 tbl_structure.php:157
#: tbl_structure.php:473
@@ -4314,8 +3457,8 @@ msgstr ""
#: libraries/replication_gui.lib.php:55 libraries/replication_gui.lib.php:56
#: libraries/replication_gui.lib.php:249 libraries/replication_gui.lib.php:252
-#: libraries/replication_gui.lib.php:259 server_privileges.php:672
-#: server_privileges.php:675 server_privileges.php:682
+#: libraries/replication_gui.lib.php:259 server_privileges.php:711
+#: server_privileges.php:714 server_privileges.php:721
#: server_synchronize.php:1171
msgid "User name"
msgstr "User name"
@@ -4333,11 +3476,11 @@ msgid "Slave status"
msgstr "Slave status"
#: libraries/replication_gui.lib.php:114 libraries/sql_query_form.lib.php:445
-#: server_status.php:626 server_variables.php:52
+#: server_status.php:737 server_variables.php:52
msgid "Variable"
msgstr "Variable"
-#: libraries/replication_gui.lib.php:115 server_status.php:627
+#: libraries/replication_gui.lib.php:115 server_status.php:738
#: tbl_change.php:324 tbl_printview.php:370 tbl_select.php:139
#: tbl_structure.php:729
msgid "Value"
@@ -4359,34 +3502,34 @@ msgstr ""
msgid "Add slave replication user"
msgstr "Add slave replication user"
-#: libraries/replication_gui.lib.php:254 server_privileges.php:677
+#: libraries/replication_gui.lib.php:254 server_privileges.php:716
msgid "Any user"
msgstr "Any user"
#: libraries/replication_gui.lib.php:255 libraries/replication_gui.lib.php:323
-#: libraries/replication_gui.lib.php:346 server_privileges.php:678
-#: server_privileges.php:745 server_privileges.php:769
-#: server_privileges.php:1889 server_privileges.php:1919
+#: libraries/replication_gui.lib.php:346 server_privileges.php:717
+#: server_privileges.php:784 server_privileges.php:808
+#: server_privileges.php:1928 server_privileges.php:1958
msgid "Use text field"
msgstr "Use text field"
-#: libraries/replication_gui.lib.php:302 server_privileges.php:725
+#: libraries/replication_gui.lib.php:302 server_privileges.php:764
msgid "Any host"
msgstr "Any host"
-#: libraries/replication_gui.lib.php:306 server_privileges.php:729
+#: libraries/replication_gui.lib.php:306 server_privileges.php:768
msgid "Local"
msgstr "Local"
-#: libraries/replication_gui.lib.php:312 server_privileges.php:734
+#: libraries/replication_gui.lib.php:312 server_privileges.php:773
msgid "This Host"
msgstr "This Host"
-#: libraries/replication_gui.lib.php:318 server_privileges.php:740
+#: libraries/replication_gui.lib.php:318 server_privileges.php:779
msgid "Use Host Table"
msgstr "Use Host Table"
-#: libraries/replication_gui.lib.php:331 server_privileges.php:753
+#: libraries/replication_gui.lib.php:331 server_privileges.php:792
msgid ""
"When Host table is used, this field is ignored and values stored in Host "
"table are used instead."
@@ -4394,8 +3537,25 @@ msgstr ""
"When Host table is used, this field is ignored and values stored in Host "
"table are used instead."
-#: libraries/select_lang.lib.php:480 libraries/select_lang.lib.php:486
-#: libraries/select_lang.lib.php:492
+#. l10n: Text direction, use either ltr or rtl
+#: libraries/select_lang.lib.php:491
+msgid "ltr"
+msgstr "ltr"
+
+#: libraries/select_lang.lib.php:493
+msgid "Content of table __TABLE__"
+msgstr "Content of table __TABLE__"
+
+#: libraries/select_lang.lib.php:494
+msgid "(continued)"
+msgstr "(continued)"
+
+#: libraries/select_lang.lib.php:495
+msgid "Structure of table __TABLE__"
+msgstr "Structure of table __TABLE__"
+
+#: libraries/select_lang.lib.php:500 libraries/select_lang.lib.php:506
+#: libraries/select_lang.lib.php:512
#, php-format
msgid "Unknown language: %1$s."
msgstr "Unknown language: %1$s."
@@ -4406,7 +3566,7 @@ msgid "Servers"
msgstr "Servers"
#: libraries/server_links.inc.php:53 server_engines.php:112
-#: server_engines.php:116 server_status.php:304 test/theme.php:105
+#: server_engines.php:116 server_status.php:415 test/theme.php:105
msgid "Variables"
msgstr "Variables"
@@ -4419,7 +3579,7 @@ msgid "Engines"
msgstr "Engines"
#: libraries/server_links.inc.php:76 server_binlog.php:110
-#: server_status.php:253 test/theme.php:121
+#: server_status.php:364 test/theme.php:121
msgid "Binary log"
msgstr "Binary log"
@@ -4465,7 +3625,6 @@ msgid "Run SQL query/queries on database %s"
msgstr "Run SQL query/queries on database %s"
#: libraries/sql_query_form.lib.php:317
-#| msgid "Column names"
msgid "Columns"
msgstr "Columns"
@@ -4583,11 +3742,6 @@ msgid "Length/Values"
msgstr "Length/Values"
#: libraries/tbl_properties.inc.php:105
-#| msgid ""
-#| "If field type is \"enum\" or \"set\", please enter the values using this "
-#| "format: 'a','b','c'...
If you ever need to put a backslash (\"\\\") "
-#| "or a single quote (\"'\") amongst those values, precede it with a "
-#| "backslash (for example '\\\\xyz' or 'a\\'b')."
msgid ""
"If column type is \"enum\" or \"set\", please enter the values using this "
"format: 'a','b','c'...
If you ever need to put a backslash (\"\\\") or "
@@ -4595,9 +3749,9 @@ msgid ""
"(for example '\\\\xyz' or 'a\\'b')."
msgstr ""
"If column type is \"enum\" or \"set\", please enter the values using this "
-"format: 'a','b','c'...
If you ever need to put a backslash (\"\\\") or a "
-"single quote (\"'\") amongst those values, precede it with a backslash (for "
-"example '\\\\xyz' or 'a\\'b')."
+"format: 'a','b','c'...
If you ever need to put a backslash (\"\\\") or "
+"a single quote (\"'\") amongst those values, precede it with a backslash "
+"(for example '\\\\xyz' or 'a\\'b')."
#: libraries/tbl_properties.inc.php:106
msgid ""
@@ -4673,12 +3827,10 @@ msgstr "Save"
#: libraries/tbl_properties.inc.php:780 tbl_structure.php:542
#, php-format
-#| msgid "Add column(s)"
msgid "Add %s column(s)"
msgstr "Add %s column(s)"
#: libraries/tbl_properties.inc.php:784 tbl_structure.php:536
-#| msgid "You have to add at least one field."
msgid "You have to add at least one column."
msgstr "You have to add at least one column."
@@ -4687,11 +3839,6 @@ msgid "Event"
msgstr "Event"
#: libraries/transformations/application_octetstream__download.inc.php:10
-#| msgid ""
-#| "Displays a link to download the binary data of the field. You can use the "
-#| "first option to specify the filename, or use the second option as the "
-#| "name of a field which contains the filename. If you use the second "
-#| "option, you need to set the first option to the empty string."
msgid ""
"Displays a link to download the binary data of the column. You can use the "
"first option to specify the filename, or use the second option as the name "
@@ -4725,15 +3872,6 @@ msgid "Displays a link to download this image."
msgstr "Displays a link to download this image."
#: libraries/transformations/text_plain__dateformat.inc.php:10
-#| msgid ""
-#| "Displays a TIME, TIMESTAMP, DATETIME or numeric unix timestamp field as "
-#| "formatted date. The first option is the offset (in hours) which will be "
-#| "added to the timestamp (Default: 0). Use second option to specify a "
-#| "different date/time format string. Third option determines whether you "
-#| "want to see local date or UTC one (use \"local\" or \"utc\" strings) for "
-#| "that. According to that, date format has different value - for \"local\" "
-#| "see the documentation for PHP's strftime() function and for \"utc\" it is "
-#| "done using gmdate() function."
msgid ""
"Displays a TIME, TIMESTAMP, DATETIME or numeric unix timestamp column as "
"formatted date. The first option is the offset (in hours) which will be "
@@ -4754,17 +3892,6 @@ msgstr ""
"gmdate() function."
#: libraries/transformations/text_plain__external.inc.php:10
-#| msgid ""
-#| "LINUX ONLY: Launches an external application and feeds it the field data "
-#| "via standard input. Returns the standard output of the application. The "
-#| "default is Tidy, to pretty-print HTML code. For security reasons, you "
-#| "have to manually edit the file libraries/transformations/"
-#| "text_plain__external.inc.php and list the tools you want to make "
-#| "available. The first option is then the number of the program you want to "
-#| "use and the second option is the parameters for the program. The third "
-#| "option, if set to 1, will convert the output using htmlspecialchars() "
-#| "(Default 1). The fourth option, if set to 1, will prevent wrapping and "
-#| "ensure that the output appears all on one line (Default 1)."
msgid ""
"LINUX ONLY: Launches an external application and feeds it the column data "
"via standard input. Returns the standard output of the application. The "
@@ -4780,18 +3907,15 @@ msgstr ""
"LINUX ONLY: Launches an external application and feeds it the column data "
"via standard input. Returns the standard output of the application. The "
"default is Tidy, to pretty-print HTML code. For security reasons, you have "
-"to manually edit the file "
-"libraries/transformations/text_plain__external.inc.php and list the tools "
-"you want to make available. The first option is then the number of the "
-"program you want to use and the second option is the parameters for the "
-"program. The third option, if set to 1, will convert the output using "
-"htmlspecialchars() (Default 1). The fourth option, if set to 1, will prevent "
-"wrapping and ensure that the output appears all on one line (Default 1)."
+"to manually edit the file libraries/transformations/text_plain__external.inc."
+"php and list the tools you want to make available. The first option is then "
+"the number of the program you want to use and the second option is the "
+"parameters for the program. The third option, if set to 1, will convert the "
+"output using htmlspecialchars() (Default 1). The fourth option, if set to 1, "
+"will prevent wrapping and ensure that the output appears all on one line "
+"(Default 1)."
#: libraries/transformations/text_plain__formatted.inc.php:10
-#| msgid ""
-#| "Displays the contents of the field as-is, without running it through "
-#| "htmlspecialchars(). That is, the field is assumed to contain valid HTML."
msgid ""
"Displays the contents of the column as-is, without running it through "
"htmlspecialchars(). That is, the column is assumed to contain valid HTML."
@@ -4800,32 +3924,24 @@ msgstr ""
"htmlspecialchars(). That is, the column is assumed to contain valid HTML."
#: libraries/transformations/text_plain__imagelink.inc.php:10
-#| msgid ""
-#| "Displays an image and a link; the field contains the filename. The first "
-#| "option is a URL prefix like \"http://www.example.com/\". The second and "
-#| "third options are the width and the height in pixels."
msgid ""
"Displays an image and a link; the column contains the filename. The first "
"option is a URL prefix like \"http://www.example.com/\". The second and "
"third options are the width and the height in pixels."
msgstr ""
"Displays an image and a link; the column contains the filename. The first "
-"option is a URL prefix like \"http://www.example.com/\". The second and third "
-"options are the width and the height in pixels."
+"option is a URL prefix like \"http://www.example.com/\". The second and "
+"third options are the width and the height in pixels."
#: libraries/transformations/text_plain__link.inc.php:10
-#| msgid ""
-#| "Displays a link; the field contains the filename. The first option is a "
-#| "URL prefix like \"http://www.example.com/\". The second option is a title "
-#| "for the link."
msgid ""
"Displays a link; the column contains the filename. The first option is a URL "
"prefix like \"http://www.example.com/\". The second option is a title for "
"the link."
msgstr ""
"Displays a link; the column contains the filename. The first option is a URL "
-"prefix like \"http://www.example.com/\". The second option is a title for the "
-"link."
+"prefix like \"http://www.example.com/\". The second option is a title for "
+"the link."
#: libraries/transformations/text_plain__longToIpv4.inc.php:10
msgid ""
@@ -4887,8 +4003,8 @@ msgstr "Reset"
msgid "Protocol version"
msgstr "Protocol version"
-#: main.php:189 server_privileges.php:1350 server_privileges.php:1497
-#: server_privileges.php:1611 server_privileges.php:2029
+#: main.php:189 server_privileges.php:1389 server_privileges.php:1536
+#: server_privileges.php:1650 server_privileges.php:2068
#: server_processlist.php:54
msgid "User"
msgstr "User"
@@ -5048,12 +4164,10 @@ msgid "Create a page"
msgstr "Create a page"
#: pdf_pages.php:310
-#| msgid "Page number:"
msgid "Page name"
msgstr "Page name"
#: pdf_pages.php:314
-#| msgid "Automatic layout"
msgid "Automatic layout based on"
msgstr "Automatic layout based on"
@@ -5182,10 +4296,6 @@ msgid "To select relation, click :"
msgstr "To select relation, click :"
#: pmd_help.php:29
-#| msgid ""
-#| "The display field is shown in pink. To set/unset a field as the display "
-#| "field, click the \"Choose field to display\" icon, then click on the "
-#| "appropriate field name."
msgid ""
"The display column is shown in pink. To set/unset a column as the display "
"column, click the \"Choose column to display\" icon, then click on the "
@@ -5278,7 +4388,7 @@ msgstr "%s databases have been dropped successfully."
msgid "Databases statistics"
msgstr "Databases statistics"
-#: server_databases.php:117 server_status.php:260
+#: server_databases.php:117 server_status.php:371
#: setup/lib/messages.inc.php:117
msgid "Tables"
msgstr "Tables"
@@ -5296,6 +4406,16 @@ msgstr "Slave replication"
msgid "Jump to database"
msgstr "Jump to database"
+#: server_databases.php:267
+#| msgid "Master replication"
+msgid "Not replicated"
+msgstr "Not replicated"
+
+#: server_databases.php:273
+#| msgid "Replication"
+msgid "Replicated"
+msgstr "Replicated"
+
#: server_databases.php:289
#, php-format
msgid "Check privileges for database "%s"."
@@ -5329,139 +4449,327 @@ msgstr "Storage Engines"
msgid "View dump (schema) of databases"
msgstr "View dump (schema) of databases"
-#: server_privileges.php:263 server_privileges.php:264
+#: server_privileges.php:24 server_privileges.php:266
+msgid "Includes all privileges except GRANT."
+msgstr "Includes all privileges except GRANT."
+
+#: server_privileges.php:25 server_privileges.php:192
+#: server_privileges.php:515
+msgid "Allows altering the structure of existing tables."
+msgstr "Allows altering the structure of existing tables."
+
+#: server_privileges.php:26 server_privileges.php:208
+#: server_privileges.php:521
+msgid "Allows altering and dropping stored routines."
+msgstr "Allows altering and dropping stored routines."
+
+#: server_privileges.php:27 server_privileges.php:184
+#: server_privileges.php:514
+msgid "Allows creating new databases and tables."
+msgstr "Allows creating new databases and tables."
+
+#: server_privileges.php:28 server_privileges.php:207
+#: server_privileges.php:520
+msgid "Allows creating stored routines."
+msgstr "Allows creating stored routines."
+
+#: server_privileges.php:29 server_privileges.php:514
+msgid "Allows creating new tables."
+msgstr "Allows creating new tables."
+
+#: server_privileges.php:30 server_privileges.php:195
+#: server_privileges.php:518
+msgid "Allows creating temporary tables."
+msgstr "Allows creating temporary tables."
+
+#: server_privileges.php:31 server_privileges.php:209
+#: server_privileges.php:554
+msgid "Allows creating, dropping and renaming user accounts."
+msgstr "Allows creating, dropping and renaming user accounts."
+
+#: server_privileges.php:32 server_privileges.php:199
+#: server_privileges.php:203 server_privileges.php:526
+#: server_privileges.php:530
+msgid "Allows creating new views."
+msgstr "Allows creating new views."
+
+#: server_privileges.php:33 server_privileges.php:183
+#: server_privileges.php:506
+msgid "Allows deleting data."
+msgstr "Allows deleting data."
+
+#: server_privileges.php:34 server_privileges.php:185
+#: server_privileges.php:517
+msgid "Allows dropping databases and tables."
+msgstr "Allows dropping databases and tables."
+
+#: server_privileges.php:35 server_privileges.php:517
+msgid "Allows dropping tables."
+msgstr "Allows dropping tables."
+
+#: server_privileges.php:36 server_privileges.php:200
+#: server_privileges.php:534
+msgid "Allows to set up events for the event scheduler"
+msgstr "Allows to set up events for the event scheduler"
+
+#: server_privileges.php:37 server_privileges.php:210
+#: server_privileges.php:522
+msgid "Allows executing stored routines."
+msgstr "Allows executing stored routines."
+
+#: server_privileges.php:38 server_privileges.php:189
+#: server_privileges.php:509
+msgid "Allows importing data from and exporting data into files."
+msgstr "Allows importing data from and exporting data into files."
+
+#: server_privileges.php:39 server_privileges.php:540
+msgid ""
+"Allows adding users and privileges without reloading the privilege tables."
+msgstr ""
+"Allows adding users and privileges without reloading the privilege tables."
+
+#: server_privileges.php:40 server_privileges.php:191
+#: server_privileges.php:516
+msgid "Allows creating and dropping indexes."
+msgstr "Allows creating and dropping indexes."
+
+#: server_privileges.php:41 server_privileges.php:181
+#: server_privileges.php:442 server_privileges.php:504
+msgid "Allows inserting and replacing data."
+msgstr "Allows inserting and replacing data."
+
+#: server_privileges.php:42 server_privileges.php:196
+#: server_privileges.php:549
+msgid "Allows locking tables for the current thread."
+msgstr "Allows locking tables for the current thread."
+
+#: server_privileges.php:43 server_privileges.php:646
+#: server_privileges.php:648
+msgid "Limits the number of new connections the user may open per hour."
+msgstr "Limits the number of new connections the user may open per hour."
+
+#: server_privileges.php:44 server_privileges.php:634
+#: server_privileges.php:636
+msgid "Limits the number of queries the user may send to the server per hour."
+msgstr "Limits the number of queries the user may send to the server per hour."
+
+#: server_privileges.php:45 server_privileges.php:640
+#: server_privileges.php:642
+msgid ""
+"Limits the number of commands that change any table or database the user may "
+"execute per hour."
+msgstr ""
+"Limits the number of commands that change any table or database the user may "
+"execute per hour."
+
+#: server_privileges.php:46 server_privileges.php:652
+#: server_privileges.php:654
+msgid "Limits the number of simultaneous connections the user may have."
+msgstr "Limits the number of simultaneous connections the user may have."
+
+#: server_privileges.php:47 server_privileges.php:188
+#: server_privileges.php:544
+msgid "Allows viewing processes of all users"
+msgstr "Allows viewing processes of all users"
+
+#: server_privileges.php:48 server_privileges.php:190
+#: server_privileges.php:448 server_privileges.php:550
+msgid "Has no effect in this MySQL version."
+msgstr "Has no effect in this MySQL version."
+
+#: server_privileges.php:49 server_privileges.php:186
+#: server_privileges.php:545
+msgid "Allows reloading server settings and flushing the server's caches."
+msgstr "Allows reloading server settings and flushing the server's caches."
+
+#: server_privileges.php:50 server_privileges.php:198
+#: server_privileges.php:552
+msgid "Allows the user to ask where the slaves / masters are."
+msgstr "Allows the user to ask where the slaves / masters are."
+
+#: server_privileges.php:51 server_privileges.php:197
+#: server_privileges.php:553
+msgid "Needed for the replication slaves."
+msgstr "Needed for the replication slaves."
+
+#: server_privileges.php:52 server_privileges.php:180
+#: server_privileges.php:439 server_privileges.php:503
+msgid "Allows reading data."
+msgstr "Allows reading data."
+
+#: server_privileges.php:53 server_privileges.php:193
+#: server_privileges.php:547
+msgid "Gives access to the complete list of databases."
+msgstr "Gives access to the complete list of databases."
+
+#: server_privileges.php:54 server_privileges.php:204
+#: server_privileges.php:206 server_privileges.php:519
+msgid "Allows performing SHOW CREATE VIEW queries."
+msgstr "Allows performing SHOW CREATE VIEW queries."
+
+#: server_privileges.php:55 server_privileges.php:187
+#: server_privileges.php:546
+msgid "Allows shutting down the server."
+msgstr "Allows shutting down the server."
+
+#: server_privileges.php:56 server_privileges.php:194
+#: server_privileges.php:543
+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 ""
+"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."
+
+#: server_privileges.php:57 server_privileges.php:201
+#: server_privileges.php:535
+msgid "Allows creating and dropping triggers"
+msgstr "Allows creating and dropping triggers"
+
+#: server_privileges.php:58 server_privileges.php:182
+#: server_privileges.php:445 server_privileges.php:505
+msgid "Allows changing data."
+msgstr "Allows changing data."
+
+#: server_privileges.php:59 server_privileges.php:260
+msgid "No privileges."
+msgstr "No privileges."
+
+#: server_privileges.php:302 server_privileges.php:303
msgctxt "None privileges"
msgid "None"
msgstr "None"
-#: server_privileges.php:392 server_privileges.php:527
-#: server_privileges.php:1679 server_privileges.php:1685
+#: server_privileges.php:431 server_privileges.php:566
+#: server_privileges.php:1718 server_privileges.php:1724
msgid "Table-specific privileges"
msgstr "Table-specific privileges"
-#: server_privileges.php:393 server_privileges.php:535
-#: server_privileges.php:1501
+#: server_privileges.php:432 server_privileges.php:574
+#: server_privileges.php:1540
msgid " Note: MySQL privilege names are expressed in English "
msgstr " Note: MySQL privilege names are expressed in English "
-#: server_privileges.php:524 server_privileges.php:1500
+#: server_privileges.php:563 server_privileges.php:1539
msgid "Global privileges"
msgstr "Global privileges"
-#: server_privileges.php:526 server_privileges.php:1679
+#: server_privileges.php:565 server_privileges.php:1718
msgid "Database-specific privileges"
msgstr "Database-specific privileges"
-#: server_privileges.php:571
+#: server_privileges.php:610
msgid "Administration"
msgstr "Administration"
-#: server_privileges.php:591
+#: server_privileges.php:630
msgid "Resource limits"
msgstr "Resource limits"
-#: server_privileges.php:592
+#: server_privileges.php:631
msgid "Note: Setting these options to 0 (zero) removes the limit."
msgstr "Note: Setting these options to 0 (zero) removes the limit."
-#: server_privileges.php:669
+#: server_privileges.php:708
msgid "Login Information"
msgstr "Login Information"
-#: server_privileges.php:763
+#: server_privileges.php:802
msgid "Do not change the password"
msgstr "Do not change the password"
-#: server_privileges.php:804 server_privileges.php:2166
+#: server_privileges.php:843 server_privileges.php:2205
msgid "No user found."
msgstr "No user found."
-#: server_privileges.php:848
+#: server_privileges.php:887
#, php-format
msgid "The user %s already exists!"
msgstr "The user %s already exists!"
-#: server_privileges.php:931
+#: server_privileges.php:970
msgid "You have added a new user."
msgstr "You have added a new user."
-#: server_privileges.php:1152
+#: server_privileges.php:1191
#, php-format
msgid "You have updated the privileges for %s."
msgstr "You have updated the privileges for %s."
-#: server_privileges.php:1176
+#: server_privileges.php:1215
#, php-format
msgid "You have revoked the privileges for %s"
msgstr "You have revoked the privileges for %s"
-#: server_privileges.php:1212
+#: server_privileges.php:1251
#, php-format
msgid "The password for %s was changed successfully."
msgstr "The password for %s was changed successfully."
-#: server_privileges.php:1232
+#: server_privileges.php:1271
#, php-format
msgid "Deleting %s"
msgstr "Deleting %s"
-#: server_privileges.php:1243
+#: server_privileges.php:1282
msgid "No users selected for deleting!"
msgstr "No users selected for deleting!"
-#: server_privileges.php:1246
+#: server_privileges.php:1285
msgid "Reloading the privileges"
msgstr "Reloading the privileges"
-#: server_privileges.php:1261
+#: server_privileges.php:1300
msgid "The selected users have been deleted successfully."
msgstr "The selected users have been deleted successfully."
-#: server_privileges.php:1296
+#: server_privileges.php:1335
msgid "The privileges were reloaded successfully."
msgstr "The privileges were reloaded successfully."
-#: server_privileges.php:1324 server_privileges.php:1610
+#: server_privileges.php:1363 server_privileges.php:1649
msgid "Edit Privileges"
msgstr "Edit Privileges"
-#: server_privileges.php:1333
+#: server_privileges.php:1372
msgid "Revoke"
msgstr "Revoke"
-#: server_privileges.php:1365
+#: server_privileges.php:1404
msgid "User overview"
msgstr "User overview"
-#: server_privileges.php:1502 server_privileges.php:1684
-#: server_privileges.php:2033
+#: server_privileges.php:1541 server_privileges.php:1723
+#: server_privileges.php:2072
msgid "Grant"
msgstr "Grant"
-#: server_privileges.php:1521 server_privileges.php:2123
+#: server_privileges.php:1560 server_privileges.php:2162
msgid "Any"
msgstr "Any"
-#: server_privileges.php:1570 server_privileges.php:1594
-#: server_privileges.php:1988 server_privileges.php:2177
+#: server_privileges.php:1609 server_privileges.php:1633
+#: server_privileges.php:2027 server_privileges.php:2216
msgid "Add a new User"
msgstr "Add a new User"
-#: server_privileges.php:1575
+#: server_privileges.php:1614
msgid "Remove selected users"
msgstr "Remove selected users"
-#: server_privileges.php:1578
+#: server_privileges.php:1617
msgid "Revoke all active privileges from the users and delete them afterwards."
msgstr ""
"Revoke all active privileges from the users and delete them afterwards."
-#: server_privileges.php:1579 server_privileges.php:1580
-#: server_privileges.php:1581
+#: server_privileges.php:1618 server_privileges.php:1619
+#: server_privileges.php:1620
msgid "Drop the databases that have the same names as the users."
msgstr "Drop the databases that have the same names as the users."
-#: server_privileges.php:1597
+#: server_privileges.php:1636
#, php-format
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
@@ -5474,49 +4782,49 @@ msgstr ""
"server uses, if they have been changed manually. In this case, you should %"
"sreload the privileges%s before you continue."
-#: server_privileges.php:1645
+#: server_privileges.php:1684
msgid "The selected user was not found in the privilege table."
msgstr "The selected user was not found in the privilege table."
-#: server_privileges.php:1685
+#: server_privileges.php:1724
msgid "Column-specific privileges"
msgstr "Column-specific privileges"
-#: server_privileges.php:1886
+#: server_privileges.php:1925
msgid "Add privileges on the following database"
msgstr "Add privileges on the following database"
-#: server_privileges.php:1904
+#: server_privileges.php:1943
msgid "Wildcards % and _ should be escaped with a \\ to use them literally"
msgstr "Wildcards % and _ should be escaped with a \\ to use them literally"
-#: server_privileges.php:1907
+#: server_privileges.php:1946
msgid "Add privileges on the following table"
msgstr "Add privileges on the following table"
-#: server_privileges.php:1964
+#: server_privileges.php:2003
msgid "Change Login Information / Copy User"
msgstr "Change Login Information / Copy User"
-#: server_privileges.php:1967
+#: server_privileges.php:2006
msgid "Create a new user with the same privileges and ..."
msgstr "Create a new user with the same privileges and ..."
-#: server_privileges.php:1969
+#: server_privileges.php:2008
msgid "... keep the old one."
msgstr "... keep the old one."
-#: server_privileges.php:1970
+#: server_privileges.php:2009
msgid " ... delete the old one from the user tables."
msgstr " ... delete the old one from the user tables."
-#: server_privileges.php:1971
+#: server_privileges.php:2010
msgid ""
" ... revoke all active privileges from the old one and delete it afterwards."
msgstr ""
" ... revoke all active privileges from the old one and delete it afterwards."
-#: server_privileges.php:1972
+#: server_privileges.php:2011
msgid ""
" ... delete the old one from the user tables and reload the privileges "
"afterwards."
@@ -5524,42 +4832,42 @@ msgstr ""
" ... delete the old one from the user tables and reload the privileges "
"afterwards."
-#: server_privileges.php:1994
+#: server_privileges.php:2033
msgid "Database for user"
msgstr "Database for user"
-#: server_privileges.php:1998
+#: server_privileges.php:2037
msgctxt "Create none database for user"
msgid "None"
msgstr "None"
-#: server_privileges.php:1999
+#: server_privileges.php:2038
msgid "Create database with same name and grant all privileges"
msgstr "Create database with same name and grant all privileges"
-#: server_privileges.php:2000
+#: server_privileges.php:2039
msgid "Grant all privileges on wildcard name (username\\_%)"
msgstr "Grant all privileges on wildcard name (username\\_%)"
-#: server_privileges.php:2003
+#: server_privileges.php:2042
#, php-format
msgid "Grant all privileges on database "%s""
msgstr "Grant all privileges on database "%s""
-#: server_privileges.php:2026
+#: server_privileges.php:2065
#, php-format
msgid "Users having access to "%s""
msgstr "Users having access to "%s""
-#: server_privileges.php:2134
+#: server_privileges.php:2173
msgid "global"
msgstr "global"
-#: server_privileges.php:2136
+#: server_privileges.php:2175
msgid "database-specific"
msgstr "database-specific"
-#: server_privileges.php:2138
+#: server_privileges.php:2177
msgid "wildcard"
msgstr "wildcard"
@@ -5607,7 +4915,7 @@ msgstr "Master server changed succesfully to %s"
msgid "This server is configured as master in a replication process."
msgstr "This server is configured as master in a replication process."
-#: server_replication.php:184 server_status.php:281
+#: server_replication.php:184 server_status.php:392
msgid "Show master status"
msgstr "Show master status"
@@ -5757,81 +5065,715 @@ msgstr ""
"This server is not configured as slave in a replication process. Would you "
"like to configure it?"
+#: server_status.php:40
+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 ""
+"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."
+
+#: server_status.php:41
+msgid "The number of transactions that used the temporary binary log cache."
+msgstr "The number of transactions that used the temporary binary log cache."
+
+#: server_status.php:42
+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 "
+"to increase the tmp_table_size value to cause temporary tables to be memory-"
+"based instead of disk-based."
+msgstr ""
+"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 "
+"to increase the tmp_table_size value to cause temporary tables to be memory-"
+"based instead of disk-based."
+
+#: server_status.php:43
+msgid "How many temporary files mysqld has created."
+msgstr "How many temporary files mysqld has created."
+
+#: server_status.php:44
+msgid ""
+"The number of in-memory temporary tables created automatically by the server "
+"while executing statements."
+msgstr ""
+"The number of in-memory temporary tables created automatically by the server "
+"while executing statements."
+
+#: server_status.php:45
+msgid ""
+"The number of rows written with INSERT DELAYED for which some error occurred "
+"(probably duplicate key)."
+msgstr ""
+"The number of rows written with INSERT DELAYED for which some error occurred "
+"(probably duplicate key)."
+
#: server_status.php:46
+msgid ""
+"The number of INSERT DELAYED handler threads in use. Every different table "
+"on which one uses INSERT DELAYED gets its own thread."
+msgstr ""
+"The number of INSERT DELAYED handler threads in use. Every different table "
+"on which one uses INSERT DELAYED gets its own thread."
+
+#: server_status.php:47
+msgid "The number of INSERT DELAYED rows written."
+msgstr "The number of INSERT DELAYED rows written."
+
+#: server_status.php:48
+msgid "The number of executed FLUSH statements."
+msgstr "The number of executed FLUSH statements."
+
+#: server_status.php:49
+msgid "The number of internal COMMIT statements."
+msgstr "The number of internal COMMIT statements."
+
+#: server_status.php:50
+msgid "The number of times a row was deleted from a table."
+msgstr "The number of times a row was deleted from a table."
+
+#: server_status.php:51
+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 ""
+"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."
+
+#: server_status.php:52
+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 ""
+"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."
+
+#: server_status.php:53
+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 ""
+"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."
+
+#: server_status.php:54
+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 ""
+"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."
+
+#: server_status.php:55
+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 ""
+"The number of requests to read the previous row in key order. This read "
+"method is mainly used to optimise ORDER BY ... DESC."
+
+#: server_status.php:56
+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 "
+"probably have a lot of queries that require MySQL to scan whole tables or "
+"you have joins that don't use keys properly."
+msgstr ""
+"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 "
+"probably have a lot of queries that require MySQL to scan whole tables or "
+"you have joins that don't use keys properly."
+
+#: server_status.php:57
+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 "
+"tables are not properly indexed or that your queries are not written to take "
+"advantage of the indexes you have."
+msgstr ""
+"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 "
+"tables are not properly indexed or that your queries are not written to take "
+"advantage of the indexes you have."
+
+#: server_status.php:58
+msgid "The number of internal ROLLBACK statements."
+msgstr "The number of internal ROLLBACK statements."
+
+#: server_status.php:59
+msgid "The number of requests to update a row in a table."
+msgstr "The number of requests to update a row in a table."
+
+#: server_status.php:60
+msgid "The number of requests to insert a row in a table."
+msgstr "The number of requests to insert a row in a table."
+
+#: server_status.php:61
+msgid "The number of pages containing data (dirty or clean)."
+msgstr "The number of pages containing data (dirty or clean)."
+
+#: server_status.php:62
+msgid "The number of pages currently dirty."
+msgstr "The number of pages currently dirty."
+
+#: server_status.php:63
+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."
+
+#: server_status.php:64
+msgid "The number of free pages."
+msgstr "The number of free pages."
+
+#: server_status.php:65
+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 ""
+"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."
+
+#: server_status.php:66
+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 "
+"be calculated as Innodb_buffer_pool_pages_total - "
+"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data."
+msgstr ""
+"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 "
+"be calculated as Innodb_buffer_pool_pages_total - "
+"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data."
+
+#: server_status.php:67
+msgid "Total size of buffer pool, in pages."
+msgstr "Total size of buffer pool, in pages."
+
+#: server_status.php:68
+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 ""
+"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."
+
+#: server_status.php:69
+msgid ""
+"The number of sequential read-aheads InnoDB initiated. This happens when "
+"InnoDB does a sequential full table scan."
+msgstr ""
+"The number of sequential read-aheads InnoDB initiated. This happens when "
+"InnoDB does a sequential full table scan."
+
+#: server_status.php:70
+msgid "The number of logical read requests InnoDB has done."
+msgstr "The number of logical read requests InnoDB has done."
+
+#: server_status.php:71
+msgid ""
+"The number of logical reads that InnoDB could not satisfy from buffer pool "
+"and had to do a single-page read."
+msgstr ""
+"The number of logical reads that InnoDB could not satisfy from buffer pool "
+"and had to do a single-page read."
+
+#: server_status.php:72
+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 "
+"available, it's necessary to wait for pages to be flushed first. This "
+"counter counts instances of these waits. If the buffer pool size was set "
+"properly, this value should be small."
+msgstr ""
+"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 "
+"available, it's necessary to wait for pages to be flushed first. This "
+"counter counts instances of these waits. If the buffer pool size was set "
+"properly, this value should be small."
+
+#: server_status.php:73
+msgid "The number writes done to the InnoDB buffer pool."
+msgstr "The number writes done to the InnoDB buffer pool."
+
+#: server_status.php:74
+msgid "The number of fsync() operations so far."
+msgstr "The number of fsync() operations so far."
+
+#: server_status.php:75
+msgid "The current number of pending fsync() operations."
+msgstr "The current number of pending fsync() operations."
+
+#: server_status.php:76
+msgid "The current number of pending reads."
+msgstr "The current number of pending reads."
+
+#: server_status.php:77
+msgid "The current number of pending writes."
+msgstr "The current number of pending writes."
+
+#: server_status.php:78
+msgid "The amount of data read so far, in bytes."
+msgstr "The amount of data read so far, in bytes."
+
+#: server_status.php:79
+msgid "The total number of data reads."
+msgstr "The total number of data reads."
+
+#: server_status.php:80
+msgid "The total number of data writes."
+msgstr "The total number of data writes."
+
+#: server_status.php:81
+msgid "The amount of data written so far, in bytes."
+msgstr "The amount of data written so far, in bytes."
+
+#: server_status.php:82
+msgid "The number of pages that have been written for doublewrite operations."
+msgstr "The number of pages that have been written for doublewrite operations."
+
+#: server_status.php:83
+msgid "The number of doublewrite operations that have been performed."
+msgstr "The number of doublewrite operations that have been performed."
+
+#: server_status.php:84
+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 ""
+"The number of waits we had because log buffer was too small and we had to "
+"wait for it to be flushed before continuing."
+
+#: server_status.php:85
+msgid "The number of log write requests."
+msgstr "The number of log write requests."
+
+#: server_status.php:86
+msgid "The number of physical writes to the log file."
+msgstr "The number of physical writes to the log file."
+
+#: server_status.php:87
+msgid "The number of fsync() writes done to the log file."
+msgstr "The number of fsync() writes done to the log file."
+
+#: server_status.php:88
+msgid "The number of pending log file fsyncs."
+msgstr "The number of pending log file fsyncs."
+
+#: server_status.php:89
+msgid "Pending log file writes."
+msgstr "Pending log file writes."
+
+#: server_status.php:90
+msgid "The number of bytes written to the log file."
+msgstr "The number of bytes written to the log file."
+
+#: server_status.php:91
+msgid "The number of pages created."
+msgstr "The number of pages created."
+
+#: server_status.php:92
+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 ""
+"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."
+
+#: server_status.php:93
+msgid "The number of pages read."
+msgstr "The number of pages read."
+
+#: server_status.php:94
+msgid "The number of pages written."
+msgstr "The number of pages written."
+
+#: server_status.php:95
+msgid "The number of row locks currently being waited for."
+msgstr "The number of row locks currently being waited for."
+
+#: server_status.php:96
+msgid "The average time to acquire a row lock, in milliseconds."
+msgstr "The average time to acquire a row lock, in milliseconds."
+
+#: server_status.php:97
+msgid "The total time spent in acquiring row locks, in milliseconds."
+msgstr "The total time spent in acquiring row locks, in milliseconds."
+
+#: server_status.php:98
+msgid "The maximum time to acquire a row lock, in milliseconds."
+msgstr "The maximum time to acquire a row lock, in milliseconds."
+
+#: server_status.php:99
+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."
+
+#: server_status.php:100
+msgid "The number of rows deleted from InnoDB tables."
+msgstr "The number of rows deleted from InnoDB tables."
+
+#: server_status.php:101
+msgid "The number of rows inserted in InnoDB tables."
+msgstr "The number of rows inserted in InnoDB tables."
+
+#: server_status.php:102
+msgid "The number of rows read from InnoDB tables."
+msgstr "The number of rows read from InnoDB tables."
+
+#: server_status.php:103
+msgid "The number of rows updated in InnoDB tables."
+msgstr "The number of rows updated in InnoDB tables."
+
+#: server_status.php:104
+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 ""
+"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."
+
+#: server_status.php:105
+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 ""
+"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."
+
+#: server_status.php:106
+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 ""
+"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."
+
+#: server_status.php:107
+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."
+
+#: server_status.php:108
+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 ""
+"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."
+
+#: server_status.php:109
+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."
+
+#: server_status.php:110
+msgid "The number of physical writes of a key block to disk."
+msgstr "The number of physical writes of a key block to disk."
+
+#: server_status.php:111
+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 ""
+"The total cost of the last compiled query as computed by the query "
+"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."
+
+#: server_status.php:112
+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."
+
+#: server_status.php:113
+msgid ""
+"The number of tables that have been opened. If opened tables is big, your "
+"table cache value is probably too small."
+msgstr ""
+"The number of tables that have been opened. If opened tables is big, your "
+"table cache value is probably too small."
+
+#: server_status.php:114
+msgid "The number of files that are open."
+msgstr "The number of files that are open."
+
+#: server_status.php:115
+msgid "The number of streams that are open (used mainly for logging)."
+msgstr "The number of streams that are open (used mainly for logging)."
+
+#: server_status.php:116
+msgid "The number of tables that are open."
+msgstr "The number of tables that are open."
+
+#: server_status.php:117
+msgid "The number of free memory blocks in query cache."
+msgstr "The number of free memory blocks in query cache."
+
+#: server_status.php:118
+msgid "The amount of free memory for query cache."
+msgstr "The amount of free memory for query cache."
+
+#: server_status.php:119
+msgid "The number of cache hits."
+msgstr "The number of cache hits."
+
+#: server_status.php:120
+msgid "The number of queries added to the cache."
+msgstr "The number of queries added to the cache."
+
+#: server_status.php:121
+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 "
+"cache size. The query cache uses a least recently used (LRU) strategy to "
+"decide which queries to remove from the cache."
+msgstr ""
+"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 "
+"cache size. The query cache uses a least recently used (LRU) strategy to "
+"decide which queries to remove from the cache."
+
+#: server_status.php:122
+msgid ""
+"The number of non-cached queries (not cachable, or not cached due to the "
+"query_cache_type setting)."
+msgstr ""
+"The number of non-cached queries (not cachable, or not cached due to the "
+"query_cache_type setting)."
+
+#: server_status.php:123
+msgid "The number of queries registered in the cache."
+msgstr "The number of queries registered in the cache."
+
+#: server_status.php:124
+msgid "The total number of blocks in the query cache."
+msgstr "The total number of blocks in the query cache."
+
+#: server_status.php:125
+msgctxt "$strShowStatusReset"
+msgid "Reset"
+msgstr "Reset"
+
+#: server_status.php:126
+msgid "The status of failsafe replication (not yet implemented)."
+msgstr "The status of failsafe replication (not yet implemented)."
+
+#: server_status.php:127
+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 ""
+"The number of joins that do not use indexes. If this value is not 0, you "
+"should carefully check the indexes of your tables."
+
+#: server_status.php:128
+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."
+
+#: server_status.php:129
+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 ""
+"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.)"
+
+#: server_status.php:130
+msgid ""
+"The number of joins that used ranges on the first table. (It's normally not "
+"critical even if this is big.)"
+msgstr ""
+"The number of joins that used ranges on the first table. (It's normally not "
+"critical even if this is big.)"
+
+#: server_status.php:131
+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."
+
+#: server_status.php:132
+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."
+
+#: server_status.php:133
+msgid ""
+"Total (since startup) number of times the replication slave SQL thread has "
+"retried transactions."
+msgstr ""
+"Total (since startup) number of times the replication slave SQL thread has "
+"retried transactions."
+
+#: server_status.php:134
+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."
+
+#: server_status.php:135
+msgid ""
+"The number of threads that have taken more than slow_launch_time seconds to "
+"create."
+msgstr ""
+"The number of threads that have taken more than slow_launch_time seconds to "
+"create."
+
+#: server_status.php:136
+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."
+
+#: server_status.php:137
+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 ""
+"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."
+
+#: server_status.php:138
+msgid "The number of sorts that were done with ranges."
+msgstr "The number of sorts that were done with ranges."
+
+#: server_status.php:139
+msgid "The number of sorted rows."
+msgstr "The number of sorted rows."
+
+#: server_status.php:140
+msgid "The number of sorts that were done by scanning the table."
+msgstr "The number of sorts that were done by scanning the table."
+
+#: server_status.php:141
+msgid "The number of times that a table lock was acquired immediately."
+msgstr "The number of times that a table lock was acquired immediately."
+
+#: server_status.php:142
+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 "
+"should first optimize your queries, and then either split your table or "
+"tables or use replication."
+msgstr ""
+"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 "
+"should first optimise your queries, and then either split your table or "
+"tables or use replication."
+
+#: server_status.php:143
+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 ""
+"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."
+
+#: server_status.php:144
+msgid "The number of currently open connections."
+msgstr "The number of currently open connections."
+
+#: server_status.php:145
+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 "
+"doesn't give a notable performance improvement if you have a good thread "
+"implementation.)"
+msgstr ""
+"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 "
+"doesn't give a notable performance improvement if you have a good thread "
+"implementation.)"
+
+#: server_status.php:146
+msgid "The number of threads that are not sleeping."
+msgstr "The number of threads that are not sleeping."
+
+#: server_status.php:157
msgid "Runtime Information"
msgstr "Runtime Information"
-#: server_status.php:250
+#: server_status.php:361
msgid "Handler"
msgstr "Handler"
-#: server_status.php:251
+#: server_status.php:362
msgid "Query cache"
msgstr "Query cache"
-#: server_status.php:252
+#: server_status.php:363
msgid "Threads"
msgstr "Threads"
-#: server_status.php:254
+#: server_status.php:365
msgid "Temporary data"
msgstr "Temporary data"
-#: server_status.php:255
+#: server_status.php:366
msgid "Delayed inserts"
msgstr "Delayed inserts"
-#: server_status.php:256
+#: server_status.php:367
msgid "Key cache"
msgstr "Key cache"
-#: server_status.php:257
+#: server_status.php:368
msgid "Joins"
msgstr "Joins"
-#: server_status.php:259
+#: server_status.php:370
msgid "Sorting"
msgstr "Sorting"
-#: server_status.php:261
+#: server_status.php:372
msgid "Transaction coordinator"
msgstr "Transaction coordinator"
-#: server_status.php:271
+#: server_status.php:382
msgid "Flush (close) all tables"
msgstr "Flush (close) all tables"
-#: server_status.php:273
+#: server_status.php:384
msgid "Show open tables"
msgstr "Show open tables"
-#: server_status.php:278
+#: server_status.php:389
msgid "Show slave hosts"
msgstr "Show slave hosts"
-#: server_status.php:284
+#: server_status.php:395
msgid "Show slave status"
msgstr "Show slave status"
-#: server_status.php:289
+#: server_status.php:400
msgid "Flush query cache"
msgstr "Flush query cache"
-#: server_status.php:294
+#: server_status.php:405
msgid "Show processes"
msgstr "Show processes"
-#: server_status.php:344
+#: server_status.php:455
msgctxt "for Show status"
msgid "Reset"
msgstr "Reset"
-#: server_status.php:350
+#: server_status.php:461
#, php-format
msgid "This MySQL server has been running for %s. It started up on %s."
msgstr "This MySQL server has been running for %s. It started up on %s."
-#: server_status.php:360
+#: server_status.php:471
msgid ""
"This MySQL server works as master and slave in replication"
"b> process."
@@ -5839,16 +5781,16 @@ msgstr ""
"This MySQL server works as master and slave in replication"
"b> process."
-#: server_status.php:362
+#: server_status.php:473
msgid "This MySQL server works as master in replication process."
msgstr ""
"This MySQL server works as master in replication process."
-#: server_status.php:364
+#: server_status.php:475
msgid "This MySQL server works as slave in replication process."
msgstr "This MySQL server works as slave in replication process."
-#: server_status.php:366
+#: server_status.php:477
msgid ""
"For further information about replication status on the server, please visit "
"the replication section."
@@ -5856,7 +5798,7 @@ msgstr ""
"For further information about replication status on the server, please visit "
"the replication section."
-#: server_status.php:383
+#: server_status.php:494
msgid ""
"Server traffic: These tables show the network traffic statistics of "
"this MySQL server since its startup."
@@ -5864,11 +5806,11 @@ msgstr ""
"Server traffic: These tables show the network traffic statistics of "
"this MySQL server since its startup."
-#: server_status.php:388
+#: server_status.php:499
msgid "Traffic"
msgstr "Traffic"
-#: server_status.php:388
+#: server_status.php:499
msgid ""
"On a busy server, the byte counters may overrun, so those statistics as "
"reported by the MySQL server may be incorrect."
@@ -5876,36 +5818,36 @@ msgstr ""
"On a busy server, the byte counters may overrun, so those statistics as "
"reported by the MySQL server may be incorrect."
-#: server_status.php:389 server_status.php:434 server_status.php:497
-#: server_status.php:555
+#: server_status.php:500 server_status.php:545 server_status.php:608
+#: server_status.php:666
msgid "per hour"
msgstr "per hour"
-#: server_status.php:394
+#: server_status.php:505
msgid "Received"
msgstr "Received"
-#: server_status.php:404
+#: server_status.php:515
msgid "Sent"
msgstr "Sent"
-#: server_status.php:433
+#: server_status.php:544
msgid "Connections"
msgstr "Connections"
-#: server_status.php:440
+#: server_status.php:551
msgid "max. concurrent connections"
msgstr "max. concurrent connections"
-#: server_status.php:447
+#: server_status.php:558
msgid "Failed attempts"
msgstr "Failed attempts"
-#: server_status.php:461
+#: server_status.php:572
msgid "Aborted"
msgstr "Aborted"
-#: server_status.php:490
+#: server_status.php:601
#, php-format
msgid ""
"Query statistics: Since its startup, %s queries have been sent to the "
@@ -5914,19 +5856,19 @@ msgstr ""
"Query statistics: Since its startup, %s queries have been sent to the "
"server."
-#: server_status.php:498
+#: server_status.php:609
msgid "per minute"
msgstr "per minute"
-#: server_status.php:499
+#: server_status.php:610
msgid "per second"
msgstr "per second"
-#: server_status.php:554
+#: server_status.php:665
msgid "Query type"
msgstr "Query type"
-#: server_status.php:721
+#: server_status.php:832
msgid "Replication status"
msgstr "Replication status"
@@ -6283,21 +6225,16 @@ msgstr ""
"documentation[/a]. Otherwise you will be only able to download or display it."
#: setup/lib/messages.inc.php:35
-#| msgid ""
-#| "Defines which type of editing controls should be used for CHAR and "
-#| "VARCHAR fields; [kbd]input[/kbd] - allows limiting of input length, [kbd]"
-#| "textarea[/kbd] - allows newlines in fields"
msgid ""
"Defines which type of editing controls should be used for CHAR and VARCHAR "
"columns; [kbd]input[/kbd] - allows limiting of input length, [kbd]textarea[/"
"kbd] - allows newlines in columns"
msgstr ""
"Defines which type of editing controls should be used for CHAR and VARCHAR "
-"columns; [kbd]input[/kbd] - allows limiting of input length, "
-"[kbd]textarea[/kbd] - allows newlines in columns"
+"columns; [kbd]input[/kbd] - allows limiting of input length, [kbd]textarea[/"
+"kbd] - allows newlines in columns"
#: setup/lib/messages.inc.php:36
-#| msgid "CHAR fields editing"
msgid "CHAR columns editing"
msgstr "CHAR columns editing"
@@ -7023,9 +6960,6 @@ msgid "GZip output buffering"
msgstr "GZip output buffering"
#: setup/lib/messages.inc.php:217
-#| msgid ""
-#| "[kbd]SMART[/kbd] - i.e. descending order for fields of type TIME, DATE, "
-#| "DATETIME and TIMESTAMP, ascending order otherwise"
msgid ""
"[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, "
"DATETIME and TIMESTAMP, ascending order otherwise"
@@ -7050,12 +6984,10 @@ msgid "Iconic table operations"
msgstr "Iconic table operations"
#: setup/lib/messages.inc.php:224
-#| msgid "Disallow BLOB and BINARY fields from editing"
msgid "Disallow BLOB and BINARY columns from editing"
msgstr "Disallow BLOB and BINARY columns from editing"
#: setup/lib/messages.inc.php:225
-#| msgid "Protect binary fields"
msgid "Protect binary columns"
msgstr "Protect binary columns"
@@ -7521,9 +7453,6 @@ msgid "PDF schema: table coordinates"
msgstr "PDF schema: table coordinates"
#: setup/lib/messages.inc.php:320
-#| msgid ""
-#| "Table to describe the display fields, leave blank for no support; "
-#| "suggested: [kbd]pma_table_info[/kbd]"
msgid ""
"Table to describe the display columns, leave blank for no support; "
"suggested: [kbd]pma_table_info[/kbd]"
@@ -7532,7 +7461,6 @@ msgstr ""
"suggested: [kbd]pma_table_info[/kbd]"
#: setup/lib/messages.inc.php:321
-#| msgid "Display fields table"
msgid "Display columns table"
msgstr "Display columns table"
@@ -7565,10 +7493,9 @@ msgid "Verbose name of this server"
msgstr "Verbose name of this server"
#: setup/lib/messages.inc.php:329
-#| msgid ""
-#| "Whether a user should be displayed a "show all (records)" button"
msgid "Whether a user should be displayed a "show all (rows)" button"
-msgstr "Whether a user should be displayed a "show all (rows)" button"
+msgstr ""
+"Whether a user should be displayed a "show all (rows)" button"
#: setup/lib/messages.inc.php:330
msgid "Allow to display all the rows"
@@ -7860,7 +7787,6 @@ msgid "Ignore"
msgstr "Ignore"
#: tbl_change.php:728
-#| 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 column might not be editable "
@@ -8150,7 +8076,6 @@ msgid "Operator"
msgstr "Operator"
#: tbl_select.php:270
-#| msgid "Select fields (at least one):"
msgid "Select columns (at least one):"
msgstr "Select columns (at least one):"
@@ -8177,7 +8102,6 @@ msgstr "None"
#: tbl_structure.php:374
#, php-format
-#| msgid "Table %s has been dropped"
msgid "Column %s has been dropped"
msgstr "Column %s has been dropped"
@@ -8410,124 +8334,3 @@ msgstr "VIEW name"
#: view_operations.php:93
msgid "Rename view to"
msgstr "Rename view to"
-
-#, fuzzy
-#~| msgid "Add new field"
-#~ msgid "Add field"
-#~ msgstr "Add new field"
-
-#~ msgid "Field"
-#~ msgstr "Field"
-
-#~ msgid "Records"
-#~ msgstr "Records"
-
-#~ msgid "Fields terminated by"
-#~ msgstr "Fields terminated by"
-
-#~ msgid "Fields"
-#~ msgstr "Fields"
-
-#~ msgid "Add %s field(s)"
-#~ msgstr "Add %s field(s)"
-
-#~ msgid "Field %s has been dropped"
-#~ msgstr "Field %s has been dropped"
-
-#~ msgid "See image/jpeg: inline"
-#~ msgstr "See image/jpeg: inline"
-
-#~ msgid "zipped"
-#~ msgstr "zipped"
-
-#~ msgid "gzipped"
-#~ msgstr "gzipped"
-
-#~ msgid "bzipped"
-#~ msgstr "bzipped"
-
-#~ msgid ""
-#~ "Add custom comment into header (\n"
-#~ " splits lines)"
-#~ msgstr ""
-#~ "Add custom comment into header (\n"
-#~ " splits lines)"
-
-#~ msgid "and"
-#~ msgstr "and"
-
-#~ msgctxt "$strBLOBRepositoryDisabled"
-#~ msgid "Disabled"
-#~ msgstr "Disabled"
-
-#~ msgctxt "$strBLOBRepositoryEnabled"
-#~ msgid "Enabled"
-#~ msgstr "Enabled"
-
-#~ msgctxt "$strBLOBRepositoryRepair"
-#~ msgid "Repair"
-#~ msgstr "Repair"
-
-#~ msgid "Calendar"
-#~ msgstr "Calendar"
-
-#~ msgid "MySQL 4.0 compatible"
-#~ msgstr "MySQL 4.0 compatible"
-
-#~ msgid "Could not load default configuration from: \"%1$s\""
-#~ msgstr "Could not load default configuration from: \"%1$s\""
-
-#~ msgid "Create an index on %s columns"
-#~ msgstr "Create an index on %s columns"
-
-#~ msgctxt "$strCreateTableShort"
-#~ msgid "Create table"
-#~ msgstr "Create table"
-
-#~ msgctxt "$strCreateUserDatabaseNone"
-#~ msgid "None"
-#~ msgstr "None"
-
-#~ msgid "Flush the table (\"FLUSH\")"
-#~ msgstr "Flush the table (\"FLUSH\")"
-
-#~ msgid "Invalid server index: \"%s\""
-#~ msgstr "Invalid server index: \"%s\""
-
-#~ msgctxt "$strMIME_description"
-#~ msgid "Description"
-#~ msgstr "Description"
-
-#~ msgctxt "$strNoneDefault"
-#~ msgid "None"
-#~ msgstr "None"
-
-#~ msgid "Schema of the \"%s\" database - Page %s"
-#~ msgstr "Schema of the \"%s\" database - Page %s"
-
-#~ msgid "The \"%s\" table doesn't exist!"
-#~ msgstr "The \"%s\" table doesn't exist!"
-
-#~ msgid ""
-#~ "This MySQL server works as %s in replication process. For further "
-#~ "information about replication status on the server, please visit the replication section."
-#~ msgstr ""
-#~ "This MySQL server works as %s in replication process. For further "
-#~ "information about replication status on the server, please visit the replication section."
-
-#~ msgid "running on %s"
-#~ msgstr "running on %s"
-
-#~ msgid "The scale factor is too small to fit the schema on one page"
-#~ msgstr "The scale factor is too small to fit the schema on one page"
-
-#~ msgid ""
-#~ "Cannot start session without errors, please check errors given in your "
-#~ "PHP and/or webserver log file and configure your PHP installation "
-#~ "properly."
-#~ msgstr ""
-#~ "Cannot start session without errors, please check errors given in your "
-#~ "PHP and/or webserver log file and configure your PHP installation "
-#~ "properly."
diff --git a/po/es.po b/po/es.po
index 796849192..e75cc4465 100755
--- a/po/es.po
+++ b/po/es.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-06-04 16:07-0400\n"
+"POT-Creation-Date: 2010-06-08 12:32-0400\n"
"PO-Revision-Date: 2010-03-12 11:23+0200\n"
"Last-Translator: Michal \n"
"Language-Team: spanish \n"
@@ -15,11 +15,11 @@ msgstr ""
"X-Generator: Pootle 2.0.1\n"
#: browse_foreigners.php:38 browse_foreigners.php:59
-#: libraries/display_tbl.lib.php:417 server_privileges.php:1475
+#: libraries/display_tbl.lib.php:417 server_privileges.php:1514
msgid "Show all"
msgstr "Mostrar todo"
-#: browse_foreigners.php:82 libraries/common.lib.php:2304
+#: browse_foreigners.php:82 libraries/common.lib.php:2313
#: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:394
#: libraries/export/pdf.php:147 pdf_schema.php:283 pdf_schema.php:1123
#: pdf_schema.php:1139
@@ -38,8 +38,8 @@ msgstr ""
#: browse_foreigners.php:150 db_structure.php:79 db_structure.php:80
#: db_structure.php:91 db_structure.php:93 db_structure.php:104
-#: db_structure.php:106 libraries/common.lib.php:2822
-#: libraries/common.lib.php:2829 libraries/db_links.inc.php:75
+#: db_structure.php:106 libraries/common.lib.php:2831
+#: libraries/common.lib.php:2838 libraries/db_links.inc.php:75
#: libraries/tbl_links.inc.php:63
msgid "Search"
msgstr "Buscar"
@@ -49,7 +49,7 @@ msgstr "Buscar"
#: db_structure.php:567 js/messages.php:48 libraries/Config.class.php:1046
#: libraries/Theme_Manager.class.php:311
#: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719
-#: libraries/common.lib.php:1333 libraries/common.lib.php:2279
+#: libraries/common.lib.php:1335 libraries/common.lib.php:2288
#: libraries/display_change_password.lib.php:82
#: libraries/display_create_table.lib.php:63
#: libraries/display_export.lib.php:275 libraries/display_import.lib.php:276
@@ -60,9 +60,9 @@ msgstr "Buscar"
#: libraries/sql_query_form.lib.php:552 libraries/tbl_properties.inc.php:782
#: main.php:128 navigation.php:237 pdf_pages.php:292 pdf_pages.php:328
#: pdf_pages.php:530 pmd_pdf.php:116 server_binlog.php:142
-#: server_privileges.php:625 server_privileges.php:1585
-#: server_privileges.php:1932 server_privileges.php:1979
-#: server_privileges.php:2018 server_replication.php:235
+#: server_privileges.php:664 server_privileges.php:1624
+#: server_privileges.php:1971 server_privileges.php:2018
+#: server_privileges.php:2057 server_replication.php:235
#: server_replication.php:318 server_replication.php:341
#: server_synchronize.php:1209 tbl_change.php:330 tbl_change.php:1174
#: tbl_change.php:1211 tbl_indexes.php:254 tbl_operations.php:265
@@ -80,7 +80,7 @@ msgstr "Nombre de la clave"
#: browse_foreigners.php:169 browse_foreigners.php:171
#: server_collations.php:55 server_collations.php:67 server_engines.php:59
-#: server_status.php:628
+#: server_status.php:739
msgid "Description"
msgstr "Descripción"
@@ -121,7 +121,7 @@ msgstr "Nombre de las columnas"
#: libraries/db_structure.lib.php:60 libraries/export/htmlword.php:245
#: libraries/export/latex.php:360 libraries/export/odt.php:297
#: libraries/export/texytext.php:234 libraries/tbl_properties.inc.php:100
-#: pdf_schema.php:1263 pdf_schema.php:1284 server_privileges.php:2031
+#: pdf_schema.php:1263 pdf_schema.php:1284 server_privileges.php:2070
#: tbl_change.php:287 tbl_change.php:314 tbl_printview.php:143
#: tbl_printview.php:313 tbl_select.php:136 tbl_structure.php:178
#: tbl_structure.php:659 tbl_tracking.php:274 tbl_tracking.php:321
@@ -165,9 +165,9 @@ msgstr "Comentarios"
#: libraries/Index.class.php:386 libraries/export/htmlword.php:322
#: libraries/export/latex.php:430 libraries/export/odt.php:368
#: libraries/export/texytext.php:311 libraries/mult_submits.inc.php:263
-#: pdf_schema.php:1344 server_privileges.php:1529 server_privileges.php:1540
-#: server_privileges.php:1850 server_privileges.php:1855
-#: server_privileges.php:2148 sql.php:132 sql.php:194 tbl_printview.php:229
+#: pdf_schema.php:1344 server_privileges.php:1568 server_privileges.php:1579
+#: server_privileges.php:1889 server_privileges.php:1894
+#: server_privileges.php:2187 sql.php:132 sql.php:194 tbl_printview.php:229
#: tbl_structure.php:350 tbl_tracking.php:337 tbl_tracking.php:342
msgid "No"
msgstr "No"
@@ -181,9 +181,9 @@ msgstr "No"
#: libraries/mult_submits.inc.php:101 libraries/mult_submits.inc.php:106
#: libraries/mult_submits.inc.php:111 libraries/mult_submits.inc.php:262
#: libraries/mult_submits.inc.php:273 pdf_schema.php:1344
-#: server_databases.php:64 server_privileges.php:1526
-#: server_privileges.php:1540 server_privileges.php:1850
-#: server_privileges.php:1853 server_privileges.php:2148 sql.php:193
+#: server_databases.php:64 server_privileges.php:1565
+#: server_privileges.php:1579 server_privileges.php:1889
+#: server_privileges.php:1892 server_privileges.php:2187 sql.php:193
#: tbl_printview.php:229 tbl_structure.php:40 tbl_structure.php:350
#: tbl_tracking.php:335 tbl_tracking.php:340
msgid "Yes"
@@ -280,7 +280,7 @@ msgstr "Seleccionar la base de datos copiada"
msgid "BLOB Repository"
msgstr "Repositorio BLOB"
-#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1350
+#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1352
#: libraries/server_links.inc.php:49 server_processlist.php:59
#: tbl_tracking.php:596 test/theme.php:101
msgid "Status"
@@ -343,8 +343,8 @@ msgstr "Editar las páginas PDF"
#: db_printview.php:104 db_tracking.php:72 db_tracking.php:157
#: libraries/db_structure.lib.php:46 libraries/export/xml.php:328
-#: libraries/header.inc.php:126 pdf_pages.php:424 server_privileges.php:1626
-#: server_privileges.php:1682 server_privileges.php:1946
+#: libraries/header.inc.php:126 pdf_pages.php:424 server_privileges.php:1665
+#: server_privileges.php:1721 server_privileges.php:1985
#: server_synchronize.php:423 server_synchronize.php:866 tbl_tracking.php:592
#: test/theme.php:75
msgid "Table"
@@ -445,7 +445,7 @@ msgstr "Borrar"
#: db_qbe.php:370 db_qbe.php:451 db_qbe.php:522 db_qbe.php:553
#: libraries/display_import.lib.php:166 libraries/tbl_properties.inc.php:779
-#: server_privileges.php:258 tbl_change.php:1031 tbl_indexes.php:250
+#: server_privileges.php:297 tbl_change.php:1031 tbl_indexes.php:250
#: tbl_select.php:288
msgid "Or"
msgstr "O"
@@ -479,7 +479,7 @@ msgstr "Usar tablas"
msgid "SQL query on database %s:"
msgstr "Consulta a la base de datos %s:"
-#: db_qbe.php:934 libraries/common.lib.php:1223
+#: db_qbe.php:934 libraries/common.lib.php:1225
msgid "Submit Query"
msgstr "Ejecutar la consulta"
@@ -518,7 +518,7 @@ msgstr "%s resultado(s) en la tabla %s"
#: db_search.php:267 db_structure.php:77 db_structure.php:78
#: db_structure.php:90 db_structure.php:92 db_structure.php:103
-#: db_structure.php:105 libraries/common.lib.php:2824
+#: db_structure.php:105 libraries/common.lib.php:2833
#: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50
#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:467
msgid "Browse"
@@ -565,26 +565,26 @@ msgstr "Dentro del campo:"
#: db_structure.php:81 db_structure.php:82 db_structure.php:94
#: db_structure.php:95 db_structure.php:107 db_structure.php:108
-#: libraries/common.lib.php:2823 libraries/sql_query_form.lib.php:334
+#: libraries/common.lib.php:2832 libraries/sql_query_form.lib.php:334
#: libraries/sql_query_form.lib.php:337 libraries/tbl_links.inc.php:76
msgid "Insert"
msgstr "Insertar"
#: db_structure.php:83 db_structure.php:96 db_structure.php:109
-#: libraries/common.lib.php:2820 libraries/common.lib.php:2827
+#: libraries/common.lib.php:2829 libraries/common.lib.php:2836
#: libraries/db_links.inc.php:63 libraries/export/htmlword.php:23
#: libraries/export/latex.php:33 libraries/export/latex.php:337
#: libraries/export/odt.php:32 libraries/export/sql.php:60
#: libraries/export/texytext.php:23 libraries/import.lib.php:1104
#: libraries/tbl_links.inc.php:56 pmd_general.php:134
-#: server_privileges.php:554 server_replication.php:315 tbl_tracking.php:269
+#: server_privileges.php:593 server_replication.php:315 tbl_tracking.php:269
msgid "Structure"
msgstr "Estructura"
#: db_structure.php:84 db_structure.php:85 db_structure.php:97
#: db_structure.php:98 db_structure.php:110 db_structure.php:111
#: db_structure.php:545 db_structure.php:546 db_tracking.php:91
-#: libraries/Index.class.php:483 libraries/common.lib.php:1654
+#: libraries/Index.class.php:483 libraries/common.lib.php:1656
#: libraries/db_links.inc.php:100 libraries/mult_submits.inc.php:36
#: libraries/mult_submits.inc.php:73 libraries/tbl_links.inc.php:127
#: server_databases.php:352 tbl_structure.php:27 tbl_structure.php:151
@@ -594,7 +594,7 @@ msgstr "Eliminar"
#: db_structure.php:86 db_structure.php:87 db_structure.php:99
#: db_structure.php:100 db_structure.php:112 db_structure.php:113
-#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1653
+#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1655
#: libraries/mult_submits.inc.php:39 libraries/tbl_links.inc.php:105
msgid "Empty"
msgstr "Vaciar"
@@ -638,7 +638,7 @@ msgstr "Visualizar"
#: db_structure.php:485 libraries/db_structure.lib.php:49
#: libraries/server_links.inc.php:70 server_replication.php:33
-#: server_replication.php:164 server_status.php:258
+#: server_replication.php:164 server_status.php:369
msgid "Replication"
msgstr "Replicación"
@@ -655,20 +655,20 @@ msgstr ""
#: db_structure.php:524 db_structure.php:541 db_structure.php:542
#: libraries/display_tbl.lib.php:2081 libraries/display_tbl.lib.php:2086
#: libraries/mult_submits.inc.php:16 server_databases.php:346
-#: server_databases.php:351 server_privileges.php:1557 tbl_structure.php:455
+#: server_databases.php:351 server_privileges.php:1596 tbl_structure.php:455
#: tbl_structure.php:464
msgid "With selected:"
msgstr "Para los elementos que están marcados:"
#: db_structure.php:527 libraries/display_tbl.lib.php:2076
-#: server_databases.php:348 server_privileges.php:530
-#: server_privileges.php:1560 tbl_structure.php:458
+#: server_databases.php:348 server_privileges.php:569
+#: server_privileges.php:1599 tbl_structure.php:458
msgid "Check All"
msgstr "Marcar todos/as"
#: db_structure.php:531 libraries/display_tbl.lib.php:2077
#: libraries/replication_gui.lib.php:33 server_databases.php:350
-#: server_privileges.php:533 server_privileges.php:1564 tbl_structure.php:462
+#: server_privileges.php:572 server_privileges.php:1603 tbl_structure.php:462
msgid "Uncheck All"
msgstr "Desmarcar todos"
@@ -706,7 +706,7 @@ msgstr "Analizar la tabla"
#: libraries/display_export.lib.php:83 libraries/display_tbl.lib.php:2094
#: libraries/display_tbl.lib.php:2225 libraries/mult_submits.inc.php:62
#: libraries/server_links.inc.php:84 libraries/tbl_links.inc.php:82
-#: pmd_pdf.php:84 pmd_pdf.php:109 server_privileges.php:1341
+#: pmd_pdf.php:84 pmd_pdf.php:109 server_privileges.php:1380
#: setup/frames/menu.inc.php:22 tbl_row_action.php:59
msgid "Export"
msgstr "Exportar"
@@ -725,8 +725,8 @@ msgstr "Saltarse las tablas bloqueadas"
#: libraries/export/sql.php:342 libraries/export/texytext.php:84
#: libraries/export/xml.php:255 libraries/header.inc.php:106
#: libraries/header_printview.inc.php:58 server_databases.php:169
-#: server_privileges.php:1621 server_privileges.php:1682
-#: server_privileges.php:1940 server_processlist.php:56
+#: server_privileges.php:1660 server_privileges.php:1721
+#: server_privileges.php:1979 server_processlist.php:56
#: server_synchronize.php:1179 server_synchronize.php:1183
#: tbl_tracking.php:591 test/theme.php:65
msgid "Database"
@@ -748,8 +748,8 @@ msgstr ""
#: db_tracking.php:77 libraries/Index.class.php:440
#: libraries/db_structure.lib.php:53 server_databases.php:203
-#: server_privileges.php:1503 server_privileges.php:1686
-#: server_privileges.php:2034 tbl_structure.php:187
+#: server_privileges.php:1542 server_privileges.php:1725
+#: server_privileges.php:2073 tbl_structure.php:187
msgid "Action"
msgstr "Acción"
@@ -960,11 +960,11 @@ msgstr "¡¡El nombre del servidor está vacío!!"
msgid "The user name is empty!"
msgstr "¡El nombre de usuario está vacío!"
-#: js/messages.php:44 server_privileges.php:1197 user_password.php:70
+#: js/messages.php:44 server_privileges.php:1236 user_password.php:70
msgid "The password is empty!"
msgstr "¡La contraseña está vacía!"
-#: js/messages.php:45 server_privileges.php:1195 user_password.php:73
+#: js/messages.php:45 server_privileges.php:1234 user_password.php:73
msgid "The passwords aren't the same!"
msgstr "¡Las contraseñas no coinciden!"
@@ -1043,8 +1043,8 @@ msgid "Prev"
msgstr "Previo"
#. l10n: Display text for next month link in calendar
-#: js/messages.php:77 libraries/common.lib.php:2344
-#: libraries/common.lib.php:2347 libraries/display_tbl.lib.php:338
+#: js/messages.php:77 libraries/common.lib.php:2353
+#: libraries/common.lib.php:2356 libraries/display_tbl.lib.php:338
#: server_binlog.php:205 server_binlog.php:207 tbl_printview.php:424
#: tbl_structure.php:801
msgid "Next"
@@ -1120,27 +1120,27 @@ msgid "December"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:97 libraries/common.lib.php:1555
+#: js/messages.php:97 libraries/common.lib.php:1557
msgid "Jan"
msgstr "Ene"
#. l10n: Short month name
-#: js/messages.php:99 libraries/common.lib.php:1557
+#: js/messages.php:99 libraries/common.lib.php:1559
msgid "Feb"
msgstr "Feb"
#. l10n: Short month name
-#: js/messages.php:101 libraries/common.lib.php:1559
+#: js/messages.php:101 libraries/common.lib.php:1561
msgid "Mar"
msgstr "Mar"
#. l10n: Short month name
-#: js/messages.php:103 libraries/common.lib.php:1561
+#: js/messages.php:103 libraries/common.lib.php:1563
msgid "Apr"
msgstr "Abr"
#. l10n: Short month name
-#: js/messages.php:105 libraries/common.lib.php:1563
+#: js/messages.php:105 libraries/common.lib.php:1565
#, fuzzy
#| msgid "May"
msgctxt "Short month name"
@@ -1148,37 +1148,37 @@ msgid "May"
msgstr "May"
#. l10n: Short month name
-#: js/messages.php:107 libraries/common.lib.php:1565
+#: js/messages.php:107 libraries/common.lib.php:1567
msgid "Jun"
msgstr "Jun"
#. l10n: Short month name
-#: js/messages.php:109 libraries/common.lib.php:1567
+#: js/messages.php:109 libraries/common.lib.php:1569
msgid "Jul"
msgstr "Jul"
#. l10n: Short month name
-#: js/messages.php:111 libraries/common.lib.php:1569
+#: js/messages.php:111 libraries/common.lib.php:1571
msgid "Aug"
msgstr "Ago"
#. l10n: Short month name
-#: js/messages.php:113 libraries/common.lib.php:1571
+#: js/messages.php:113 libraries/common.lib.php:1573
msgid "Sep"
msgstr "Sep"
#. l10n: Short month name
-#: js/messages.php:115 libraries/common.lib.php:1573
+#: js/messages.php:115 libraries/common.lib.php:1575
msgid "Oct"
msgstr "Oct"
#. l10n: Short month name
-#: js/messages.php:117 libraries/common.lib.php:1575
+#: js/messages.php:117 libraries/common.lib.php:1577
msgid "Nov"
msgstr "Nov"
#. l10n: Short month name
-#: js/messages.php:119 libraries/common.lib.php:1577
+#: js/messages.php:119 libraries/common.lib.php:1579
msgid "Dec"
msgstr "Dic"
@@ -1219,37 +1219,37 @@ msgid "Saturday"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:132 libraries/common.lib.php:1580
+#: js/messages.php:132 libraries/common.lib.php:1582
msgid "Sun"
msgstr "Dom"
#. l10n: Short week day name
-#: js/messages.php:134 libraries/common.lib.php:1582
+#: js/messages.php:134 libraries/common.lib.php:1584
msgid "Mon"
msgstr "Lun"
#. l10n: Short week day name
-#: js/messages.php:136 libraries/common.lib.php:1584
+#: js/messages.php:136 libraries/common.lib.php:1586
msgid "Tue"
msgstr "Mar"
#. l10n: Short week day name
-#: js/messages.php:138 libraries/common.lib.php:1586
+#: js/messages.php:138 libraries/common.lib.php:1588
msgid "Wed"
msgstr "Mie"
#. l10n: Short week day name
-#: js/messages.php:140 libraries/common.lib.php:1588
+#: js/messages.php:140 libraries/common.lib.php:1590
msgid "Thu"
msgstr "Jue"
#. l10n: Short week day name
-#: js/messages.php:142 libraries/common.lib.php:1590
+#: js/messages.php:142 libraries/common.lib.php:1592
msgid "Fri"
msgstr "Vie"
#. l10n: Short week day name
-#: js/messages.php:144 libraries/common.lib.php:1592
+#: js/messages.php:144 libraries/common.lib.php:1594
msgid "Sat"
msgstr "Sab"
@@ -1398,7 +1398,7 @@ msgid "Comment"
msgstr "Comentario"
#: libraries/Index.class.php:466 libraries/common.lib.php:616
-#: libraries/common.lib.php:1199 libraries/display_tbl.lib.php:1117
+#: libraries/common.lib.php:1201 libraries/display_tbl.lib.php:1117
#: libraries/import.lib.php:1087 libraries/import.lib.php:1111
#: pdf_pages.php:285 setup/frames/index.inc.php:124
#: setup/lib/messages.inc.php:352 tbl_row_action.php:69
@@ -1424,7 +1424,7 @@ msgstr ""
"uno."
#: libraries/List_Database.class.php:431 libraries/server_links.inc.php:41
-#: server_databases.php:88 server_privileges.php:1621
+#: server_databases.php:88 server_privileges.php:1660
#: setup/lib/messages.inc.php:110 test/theme.php:93
msgid "Databases"
msgstr "Bases de datos"
@@ -1772,7 +1772,7 @@ msgid "Documentation"
msgstr "Documentación"
#: libraries/common.lib.php:595 libraries/header_printview.inc.php:61
-#: server_processlist.php:60 server_status.php:247
+#: server_processlist.php:60 server_status.php:358
msgid "SQL query"
msgstr "consulta SQL"
@@ -1788,130 +1788,130 @@ msgstr "Explicar el SQL"
msgid "Skip Explain SQL"
msgstr "Salir de la explicación del SQL"
-#: libraries/common.lib.php:1212
+#: libraries/common.lib.php:1214
msgid "Without PHP Code"
msgstr "Sin código PHP"
-#: libraries/common.lib.php:1215 setup/lib/messages.inc.php:355
+#: libraries/common.lib.php:1217 setup/lib/messages.inc.php:355
msgid "Create PHP Code"
msgstr "Crear código PHP"
-#: libraries/common.lib.php:1233 server_status.php:341
+#: libraries/common.lib.php:1235 server_status.php:452
#: setup/lib/messages.inc.php:354
msgid "Refresh"
msgstr "Actualizar"
-#: libraries/common.lib.php:1242
+#: libraries/common.lib.php:1244
msgid "Skip Validate SQL"
msgstr "Salir de la validación del SQL"
-#: libraries/common.lib.php:1245 setup/lib/messages.inc.php:356 sql.php:518
+#: libraries/common.lib.php:1247 setup/lib/messages.inc.php:356 sql.php:518
msgid "Validate SQL"
msgstr "Validar el SQL"
-#: libraries/common.lib.php:1276
+#: libraries/common.lib.php:1278
msgid "Inline edit of this query"
msgstr ""
-#: libraries/common.lib.php:1278
+#: libraries/common.lib.php:1280
#, fuzzy
#| msgid "Engines"
msgid "Inline"
msgstr "Motores"
-#: libraries/common.lib.php:1332 libraries/common.lib.php:1347
+#: libraries/common.lib.php:1334 libraries/common.lib.php:1349
msgid "Profiling"
msgstr "Perfil/Perfilamiento"
-#: libraries/common.lib.php:1351 libraries/tbl_triggers.lib.php:28
+#: libraries/common.lib.php:1353 libraries/tbl_triggers.lib.php:28
#: server_processlist.php:58
msgid "Time"
msgstr "Tiempo"
#. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "B"
msgstr "Bytes"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "KiB"
msgstr "KB"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "MiB"
msgstr "MB"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "GiB"
msgstr "GB"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "TiB"
msgstr "TB"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "PiB"
msgstr "PB"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "EiB"
msgstr "EB"
#. l10n: Thousands separator
-#: libraries/common.lib.php:1417
+#: libraries/common.lib.php:1419
msgid ","
msgstr ","
#. l10n: Decimal separator
-#: libraries/common.lib.php:1419
+#: libraries/common.lib.php:1421
msgid "."
msgstr "."
#. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string
-#: libraries/common.lib.php:1596
+#: libraries/common.lib.php:1598
#: libraries/transformations/text_plain__dateformat.inc.php:34
msgid "%B %d, %Y at %I:%M %p"
msgstr "%d-%m-%Y a las %H:%M:%S"
-#: libraries/common.lib.php:1898
+#: libraries/common.lib.php:1907
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "%s días, %s horas, %s minutos y %s segundos"
-#: libraries/common.lib.php:2313 libraries/common.lib.php:2316
-#: libraries/display_tbl.lib.php:290 server_status.php:608
+#: libraries/common.lib.php:2322 libraries/common.lib.php:2325
+#: libraries/display_tbl.lib.php:290 server_status.php:719
msgid "Begin"
msgstr "Empezar"
-#: libraries/common.lib.php:2314 libraries/common.lib.php:2317
+#: libraries/common.lib.php:2323 libraries/common.lib.php:2326
#: libraries/display_tbl.lib.php:291 server_binlog.php:168
#: server_binlog.php:170
msgid "Previous"
msgstr "Previo"
-#: libraries/common.lib.php:2345 libraries/common.lib.php:2348
+#: libraries/common.lib.php:2354 libraries/common.lib.php:2357
#: libraries/display_tbl.lib.php:353
msgid "End"
msgstr "Fin"
-#: libraries/common.lib.php:2421
+#: libraries/common.lib.php:2430
#, php-format
msgid "Jump to database "%s"."
msgstr "Saltar a la base de datos "%s"."
-#: libraries/common.lib.php:2441
+#: libraries/common.lib.php:2450
#, 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/common.lib.php:2821 libraries/common.lib.php:2828
+#: libraries/common.lib.php:2830 libraries/common.lib.php:2837
#: libraries/db_links.inc.php:68 libraries/export/sql.php:25
#: libraries/import/sql.php:18 libraries/server_links.inc.php:45
#: libraries/tbl_links.inc.php:60 querywindow.php:99 test/theme.php:97
msgid "SQL"
msgstr "SQL"
-#: libraries/common.lib.php:2830 libraries/db_links.inc.php:104
+#: libraries/common.lib.php:2839 libraries/db_links.inc.php:104
#: libraries/tbl_links.inc.php:95 libraries/tbl_links.inc.php:117
#: view_operations.php:89
msgid "Operations"
@@ -1967,8 +1967,8 @@ msgid "Import"
msgstr "Importar"
#: libraries/db_links.inc.php:111 libraries/server_links.inc.php:66
-#: server_privileges.php:72 server_privileges.php:1683
-#: server_privileges.php:2032 test/theme.php:117
+#: server_privileges.php:111 server_privileges.php:1722
+#: server_privileges.php:2071 test/theme.php:117
msgid "Privileges"
msgstr "Privilegios"
@@ -2017,22 +2017,22 @@ msgid "Change password"
msgstr "Cambio de contraseña"
#: libraries/display_change_password.lib.php:35
-#: libraries/replication_gui.lib.php:345 server_privileges.php:768
+#: libraries/replication_gui.lib.php:345 server_privileges.php:807
msgid "No Password"
msgstr "Sin contraseña"
#: libraries/display_change_password.lib.php:41
#: libraries/replication_gui.lib.php:59 libraries/replication_gui.lib.php:60
#: libraries/replication_gui.lib.php:335 libraries/replication_gui.lib.php:339
-#: libraries/replication_gui.lib.php:349 server_privileges.php:757
-#: server_privileges.php:761 server_privileges.php:772
-#: server_privileges.php:1499 server_synchronize.php:1175
+#: libraries/replication_gui.lib.php:349 server_privileges.php:796
+#: server_privileges.php:800 server_privileges.php:811
+#: server_privileges.php:1538 server_synchronize.php:1175
msgid "Password"
msgstr "Contraseña"
#: libraries/display_change_password.lib.php:46
#: libraries/replication_gui.lib.php:353 libraries/replication_gui.lib.php:356
-#: server_privileges.php:776 server_privileges.php:779
+#: server_privileges.php:815 server_privileges.php:818
msgid "Re-type"
msgstr "Debe volver a escribir"
@@ -2047,12 +2047,12 @@ msgid "MySQL 4.0 compatible"
msgstr "Compatible con MySQL 4.0"
#: libraries/display_change_password.lib.php:72
-#: libraries/replication_gui.lib.php:360 server_privileges.php:783
+#: libraries/replication_gui.lib.php:360 server_privileges.php:822
msgid "Generate Password"
msgstr "Generar la contraseña"
#: libraries/display_change_password.lib.php:75
-#: libraries/replication_gui.lib.php:363 server_privileges.php:786
+#: libraries/replication_gui.lib.php:363 server_privileges.php:825
msgid "Generate"
msgstr "Generar"
@@ -2065,8 +2065,8 @@ msgstr "Crear nueva base de datos"
msgid "Create"
msgstr "Crear"
-#: libraries/display_create_database.lib.php:40 server_privileges.php:74
-#: server_privileges.php:1388 server_replication.php:35
+#: libraries/display_create_database.lib.php:40 server_privileges.php:113
+#: server_privileges.php:1427 server_replication.php:35
msgid "No Privileges"
msgstr "Sin privilegios"
@@ -2160,7 +2160,7 @@ msgstr "Compresión"
#: libraries/display_export.lib.php:240 libraries/display_import.lib.php:197
#: libraries/display_import.lib.php:210 libraries/display_tbl.lib.php:530
#: libraries/export/sql.php:868 libraries/tbl_properties.inc.php:575
-#: server_privileges.php:1836 server_processlist.php:75
+#: server_privileges.php:1875 server_processlist.php:75
msgid "None"
msgstr "Ninguna"
@@ -2494,7 +2494,7 @@ msgstr ""
msgid "Buffer Pool"
msgstr "Total de memoria del búfer"
-#: libraries/engines/innodb.lib.php:145 server_status.php:306
+#: libraries/engines/innodb.lib.php:145 server_status.php:417
msgid "InnoDB Status"
msgstr "Estado del InnoDB"
@@ -2503,8 +2503,8 @@ msgid "Buffer Pool Usage"
msgstr "Total de memoria del búfer consumido"
#: libraries/engines/innodb.lib.php:194 server_databases.php:137
-#: server_databases.php:305 server_status.php:414 server_status.php:475
-#: server_status.php:496 tbl_printview.php:351 tbl_structure.php:696
+#: server_databases.php:305 server_status.php:525 server_status.php:586
+#: server_status.php:607 tbl_printview.php:351 tbl_structure.php:696
msgid "Total"
msgstr "Total"
@@ -2872,7 +2872,7 @@ msgstr "Microsoft Word 2000"
#: libraries/export/latex.php:201 libraries/export/odt.php:48
#: libraries/export/sql.php:106 libraries/export/sql.php:868
#: libraries/export/texytext.php:27 server_databases.php:127
-#: server_privileges.php:537 server_replication.php:316 tbl_printview.php:317
+#: server_privileges.php:576 server_replication.php:316 tbl_printview.php:317
#: tbl_structure.php:665
msgid "Data"
msgstr "Datos"
@@ -2922,9 +2922,9 @@ msgstr "MIME-type"
#: libraries/export/xml.php:102 libraries/header_printview.inc.php:57
#: libraries/replication_gui.lib.php:63 libraries/replication_gui.lib.php:174
#: libraries/replication_gui.lib.php:269 libraries/replication_gui.lib.php:272
-#: libraries/replication_gui.lib.php:329 server_privileges.php:692
-#: server_privileges.php:695 server_privileges.php:751
-#: server_privileges.php:1498 server_privileges.php:2030
+#: libraries/replication_gui.lib.php:329 server_privileges.php:731
+#: server_privileges.php:734 server_privileges.php:790
+#: server_privileges.php:1537 server_privileges.php:2069
#: server_processlist.php:55 server_synchronize.php:1159
msgid "Host"
msgstr "Servidor"
@@ -3287,888 +3287,6 @@ msgstr "Ninguna"
msgid "Convert to Kana"
msgstr ""
-#. l10n: Text direction, use either ltr or rtl
-#: libraries/messages.inc.php:19
-msgid "ltr"
-msgstr "ltr"
-
-#: libraries/messages.inc.php:21
-msgid "Content of table __TABLE__"
-msgstr "Contenido de la tabla __TABLE__"
-
-#: libraries/messages.inc.php:22
-msgid "(continued)"
-msgstr "(continúa)"
-
-#: libraries/messages.inc.php:23
-msgid "Structure of table __TABLE__"
-msgstr "Estructura de la tabla __TABLE__"
-
-#: libraries/messages.inc.php:25 server_privileges.php:227
-msgid "Includes all privileges except GRANT."
-msgstr "Incluye todos los privilegios excepto GRANT (CONCEDER)."
-
-#: libraries/messages.inc.php:26 server_privileges.php:153
-#: server_privileges.php:476
-msgid "Allows altering the structure of existing tables."
-msgstr "Permite alterar la estructura de las tablas existentes."
-
-#: libraries/messages.inc.php:27 server_privileges.php:169
-#: server_privileges.php:482
-msgid "Allows altering and dropping stored routines."
-msgstr "Permite alterar y eliminar las rutinas almacenadas."
-
-#: libraries/messages.inc.php:28 server_privileges.php:145
-#: server_privileges.php:475
-msgid "Allows creating new databases and tables."
-msgstr "Permite crear nuevas bases de datos y tablas."
-
-#: libraries/messages.inc.php:29 server_privileges.php:168
-#: server_privileges.php:481
-msgid "Allows creating stored routines."
-msgstr "Permite crear el almacenamiento de rutinas."
-
-#: libraries/messages.inc.php:30 server_privileges.php:475
-msgid "Allows creating new tables."
-msgstr "Permite la creación de tablas nuevas."
-
-#: libraries/messages.inc.php:31 server_privileges.php:156
-#: server_privileges.php:479
-msgid "Allows creating temporary tables."
-msgstr "Permite la creación de tablas temporales."
-
-#: libraries/messages.inc.php:32 server_privileges.php:170
-#: server_privileges.php:515
-msgid "Allows creating, dropping and renaming user accounts."
-msgstr "Permite crear, eliminar y cambiar el nombre de las cuentas de usuario."
-
-#: libraries/messages.inc.php:33 server_privileges.php:160
-#: server_privileges.php:164 server_privileges.php:487
-#: server_privileges.php:491
-msgid "Allows creating new views."
-msgstr "Permite crear nuevas vistas."
-
-#: libraries/messages.inc.php:34 server_privileges.php:144
-#: server_privileges.php:467
-msgid "Allows deleting data."
-msgstr "Permite borrar datos."
-
-#: libraries/messages.inc.php:35 server_privileges.php:146
-#: server_privileges.php:478
-msgid "Allows dropping databases and tables."
-msgstr "Permite eliminar bases de datos y tablas."
-
-#: libraries/messages.inc.php:36 server_privileges.php:478
-msgid "Allows dropping tables."
-msgstr "Permite eliminar tablas."
-
-#: libraries/messages.inc.php:37 server_privileges.php:161
-#: server_privileges.php:495
-msgid "Allows to set up events for the event scheduler"
-msgstr "Permite organizar los eventos para el gestor de eventos"
-
-#: libraries/messages.inc.php:38 server_privileges.php:171
-#: server_privileges.php:483
-msgid "Allows executing stored routines."
-msgstr "Permite ejecutar las rutinas almacenadas."
-
-#: libraries/messages.inc.php:39 server_privileges.php:150
-#: server_privileges.php:470
-msgid "Allows importing data from and exporting data into files."
-msgstr "Permite importar y exportar datos de y hacia archivos."
-
-#: libraries/messages.inc.php:40 server_privileges.php:501
-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/messages.inc.php:41 server_privileges.php:152
-#: server_privileges.php:477
-msgid "Allows creating and dropping indexes."
-msgstr "Permite crear y eliminar índices."
-
-#: libraries/messages.inc.php:42 server_privileges.php:142
-#: server_privileges.php:403 server_privileges.php:465
-msgid "Allows inserting and replacing data."
-msgstr "Permite insertar y reemplazar datos."
-
-#: libraries/messages.inc.php:43 server_privileges.php:157
-#: server_privileges.php:510
-msgid "Allows locking tables for the current thread."
-msgstr "Permite poner candados a las tablas para el proceso actual."
-
-#: libraries/messages.inc.php:44 server_privileges.php:607
-#: server_privileges.php:609
-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/messages.inc.php:45 server_privileges.php:595
-#: server_privileges.php:597
-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/messages.inc.php:46 server_privileges.php:601
-#: server_privileges.php:603
-msgid ""
-"Limits the number of commands that change any table or database the user may "
-"execute per hour."
-msgstr ""
-"Limita el número de comandos que cambian cualquier tabla o base de datos que "
-"el usuario puede ejecutar por hora."
-
-#: libraries/messages.inc.php:47 server_privileges.php:613
-#: server_privileges.php:615
-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/messages.inc.php:48 server_privileges.php:149
-#: server_privileges.php:505
-msgid "Allows viewing processes of all users"
-msgstr "Permite ver los procesos de todos los usuarios"
-
-#: libraries/messages.inc.php:49 server_privileges.php:151
-#: server_privileges.php:409 server_privileges.php:511
-msgid "Has no effect in this MySQL version."
-msgstr "No tiene efecto en esta versión de MySQL."
-
-#: libraries/messages.inc.php:50 server_privileges.php:147
-#: server_privileges.php:506
-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/messages.inc.php:51 server_privileges.php:159
-#: server_privileges.php:513
-msgid "Allows the user to ask where the slaves / masters are."
-msgstr ""
-"Da el derecho al usuario para preguntar dónde están los \"esclavos / masters"
-"\"."
-
-#: libraries/messages.inc.php:52 server_privileges.php:158
-#: server_privileges.php:514
-msgid "Needed for the replication slaves."
-msgstr "Necesario para los \"esclavos\" de replicación."
-
-#: libraries/messages.inc.php:53 server_privileges.php:141
-#: server_privileges.php:400 server_privileges.php:464
-msgid "Allows reading data."
-msgstr "Permite leer los datos."
-
-#: libraries/messages.inc.php:54 server_privileges.php:154
-#: server_privileges.php:508
-msgid "Gives access to the complete list of databases."
-msgstr "Concede acceso a la lista completa de bases de datos."
-
-#: libraries/messages.inc.php:55 server_privileges.php:165
-#: server_privileges.php:167 server_privileges.php:480
-msgid "Allows performing SHOW CREATE VIEW queries."
-msgstr ""
-"Permite llevar a cabo las consultas SHOW CREATE VIEW (MOSTRAR CREAR VER)."
-
-#: libraries/messages.inc.php:56 server_privileges.php:148
-#: server_privileges.php:507
-msgid "Allows shutting down the server."
-msgstr "Permite desconectar el servidor."
-
-#: libraries/messages.inc.php:57 server_privileges.php:155
-#: server_privileges.php:504
-msgid ""
-"Allows connecting, even if maximum number of connections is reached; "
-"required for most administrative operations like setting global variables or "
-"killing threads of other users."
-msgstr ""
-"Permite la conexión, incluso si el número máximo de conexiones ha sido "
-"alcanzado; Necesario para la mayor parte de operaciones administrativas "
-"tales como montar parámetros de variables globales o matar procesos de otros "
-"usuarios."
-
-#: libraries/messages.inc.php:58 server_privileges.php:162
-#: server_privileges.php:496
-msgid "Allows creating and dropping triggers"
-msgstr "Permite crear y eliminar un evento desencadenante"
-
-#: libraries/messages.inc.php:59 server_privileges.php:143
-#: server_privileges.php:406 server_privileges.php:466
-msgid "Allows changing data."
-msgstr "Permite cambiar los datos."
-
-#: libraries/messages.inc.php:60 server_privileges.php:221
-msgid "No privileges."
-msgstr "Sin privilegios."
-
-#: libraries/messages.inc.php:62
-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 ""
-"El número de transacciones que usaron el cache de log binario temporal pero "
-"que excedieron el valor del binlog_cache_size y usaron un archivo temporal "
-"para almacenar los enunciados de la transacción."
-
-#: libraries/messages.inc.php:63
-msgid "The number of transactions that used the temporary binary log cache."
-msgstr ""
-"El número de transacciones que usaron el cache de log binario temporal."
-
-#: libraries/messages.inc.php:64
-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 "
-"to increase the tmp_table_size value to cause temporary tables to be memory-"
-"based instead of disk-based."
-msgstr ""
-"El número de tablas temporales en el disco que fueron creados "
-"automáticamente por el servidor mientras ejecuta los enunciados. Si las "
-"tablas Created_tmp_disk_tables es grande, puede incrementar el valor de "
-"tmp_table_size para hacer que las tablas temporales se basen en memoria en "
-"lugar de basarse en disco."
-
-#: libraries/messages.inc.php:65
-msgid "How many temporary files mysqld has created."
-msgstr "El número de archivos temporales que fueron creados por mysqld."
-
-#: libraries/messages.inc.php:66
-msgid ""
-"The number of in-memory temporary tables created automatically by the server "
-"while executing statements."
-msgstr ""
-"El número de tablas temporales in-memory creadas automáticamente por el "
-"servidor mientras se ejecutaban los enunciados."
-
-#: libraries/messages.inc.php:67
-msgid ""
-"The number of rows written with INSERT DELAYED for which some error occurred "
-"(probably duplicate key)."
-msgstr ""
-"El número de filas escritas con INSERT DELAYED en los cuales ocurrió algún "
-"error (probablemente una llave duplicada)."
-
-#: libraries/messages.inc.php:68
-msgid ""
-"The number of INSERT DELAYED handler threads in use. Every different table "
-"on which one uses INSERT DELAYED gets its own thread."
-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/messages.inc.php:69
-msgid "The number of INSERT DELAYED rows written."
-msgstr "El número de filas INSERT DELAYED escritas."
-
-#: libraries/messages.inc.php:70
-msgid "The number of executed FLUSH statements."
-msgstr "El número de enunciados FLUSH ejecutados."
-
-#: libraries/messages.inc.php:71
-msgid "The number of internal COMMIT statements."
-msgstr "El número de enunciados COMMIT internos."
-
-#: libraries/messages.inc.php:72
-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/messages.inc.php:73
-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 ""
-"El servidor MySQL puede solicitar al motor de almacenamiento NDB Cluster si "
-"conoce acerca de una tabla con un nombre dado. Esto se llama descubrimiento. "
-"Handler_discover indica el número ocasiones que las tablas han sido "
-"descubiertas."
-
-#: libraries/messages.inc.php:74
-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 ""
-"El número de veces en que el primer registro ha sido leído desde un índice. "
-"Si este valor es alto, sugiere que el servidor está haciendo gran cantidad "
-"de escaneos completos del índice; por ejemplo, SELECT col1 FROM foo, "
-"asumiendo que col1 está indizado."
-
-#: libraries/messages.inc.php:75
-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 ""
-"El número de solicitudes hechas para leer una fila basado en una llave. Si "
-"este valor es alto, es una buena indicación de que sus consultas y tablas "
-"están indizadas apropiadamente."
-
-#: libraries/messages.inc.php:76
-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 ""
-"El número de solicitudes hechas para leer la siguiente fila en un orden "
-"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/messages.inc.php:77
-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 ""
-"El número de solicitudes hechas para leer la fila previa en un orden clave. "
-"Este método de lectura se usa principalmente para optimizar a ORDER BY ... "
-"DESC."
-
-#: libraries/messages.inc.php:78
-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 "
-"probably have a lot of queries that require MySQL to scan whole tables or "
-"you have joins that don't use keys properly."
-msgstr ""
-"El número de solicitudes hechas para leer una fila basado en una posición "
-"fija. Este es alto si usted está haciendo muchas consultas que requieren el "
-"reordenamiento del resultado. Usted probablemente tiene muchas consultas que "
-"requieren que MySQL escanee tablas enteras o usted debe tener vínculos "
-"(joins) que no usan las llaves de manera apropiada."
-
-#: libraries/messages.inc.php:79
-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 "
-"tables are not properly indexed or that your queries are not written to take "
-"advantage of the indexes you have."
-msgstr ""
-"El número de solicitudes hechas para leer la siguiente fila en el archivo de "
-"datos. Este es alto si usted está haciendo muchos escaneos de tablas. "
-"Generalmente, esto sugiere que sus tablas no están indizadas apropiadamente "
-"o que sus consultas no están escritas para tomar ventaja de los índices que "
-"tiene."
-
-#: libraries/messages.inc.php:80
-msgid "The number of internal ROLLBACK statements."
-msgstr "El número de enunciados ROLLBACK internos."
-
-#: libraries/messages.inc.php:81
-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/messages.inc.php:82
-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/messages.inc.php:83
-msgid "The number of pages containing data (dirty or clean)."
-msgstr "El número de páginas conteniendo datos (sucias o limpias)."
-
-#: libraries/messages.inc.php:84
-msgid "The number of pages currently dirty."
-msgstr "El número de páginas actualmente sucias."
-
-#: libraries/messages.inc.php:85
-msgid "The number of buffer pool pages that have been requested to be flushed."
-msgstr ""
-"El número de páginas en la memoria (búfer) de tránsito común que se ha "
-"solicitado sean vaciadas."
-
-#: libraries/messages.inc.php:86
-msgid "The number of free pages."
-msgstr "El número de páginas libres."
-
-#: libraries/messages.inc.php:87
-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 ""
-"El número de páginas aseguradas en la memoria (búfer) de tránsito común "
-"InnoDB. Estas son páginas en fase de lectura o escritura o que no pueden ser "
-"vaciadas o removidas por alguna otra razón."
-
-#: libraries/messages.inc.php:88
-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 "
-"be calculated as Innodb_buffer_pool_pages_total - "
-"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data."
-msgstr ""
-"El número de páginas ocupadas porque han sido asignadas para overhead "
-"administrativo tales como row locks o el índice hash adaptativo. Este valor "
-"también puede ser calculado como Innodb_buffer_pool_pages_total - "
-"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data."
-
-#: libraries/messages.inc.php:89
-msgid "Total size of buffer pool, in pages."
-msgstr "Tamaño total de la memoria (búfer) de tránsito común, en páginas."
-
-#: libraries/messages.inc.php:90
-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 ""
-"El número de read-aheads InnoDB \"aleatorias\" iniciadas. Esto sucede cuando "
-"una consulta va a escanear una gran porción de una tabla pero en orden "
-"aleatorio."
-
-#: libraries/messages.inc.php:91
-msgid ""
-"The number of sequential read-aheads InnoDB initiated. This happens when "
-"InnoDB does a sequential full table scan."
-msgstr ""
-"El número de read-aheads InnoDB secuenciales iniciadas. Esto sucede cuando "
-"InnoDB hace un escaneo secuencial de la tabla completa."
-
-#: libraries/messages.inc.php:92
-msgid "The number of logical read requests InnoDB has done."
-msgstr "El número de solicitudes de lectura lógica hechas por InnoDB."
-
-#: libraries/messages.inc.php:93
-msgid ""
-"The number of logical reads that InnoDB could not satisfy from buffer pool "
-"and had to do a single-page read."
-msgstr ""
-"El número de lecturas lógicas que InnoDB no pudo satisfacer de la memoria "
-"(búfer) de tránsito común y donde fue necesario hacer lectura de página "
-"sencilla."
-
-#: libraries/messages.inc.php:94
-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 "
-"available, it's necessary to wait for pages to be flushed first. This "
-"counter counts instances of these waits. If the buffer pool size was set "
-"properly, this value should be small."
-msgstr ""
-"Normalmente, las escrituras a la memoria de tránsito común InnoDB suceden en "
-"el trasfondo. Sin embargo, de ser necesario leer o crear una página y "
-"existen páginas limpias disponibles, es necesario esperar que las páginas "
-"sean vaciadas previamente. Este contador cuenta las instancias de estas "
-"esperas. Si los parámetros del tamaño de la memoria de tránsito común se "
-"fijaron apropiadamente, este valor será pequeño."
-
-#: libraries/messages.inc.php:95
-msgid "The number writes done to the InnoDB buffer pool."
-msgstr "El número de escrituras hechas a la memoria de tránsito común InnoDB."
-
-#: libraries/messages.inc.php:96
-msgid "The number of fsync() operations so far."
-msgstr "El número de operaciones fsync() hechas hasta el momento."
-
-#: libraries/messages.inc.php:97
-msgid "The current number of pending fsync() operations."
-msgstr "El número actual de operaciones fsync() pendientes."
-
-#: libraries/messages.inc.php:98
-msgid "The current number of pending reads."
-msgstr "El número actual de lecturas pendientes."
-
-#: libraries/messages.inc.php:99
-msgid "The current number of pending writes."
-msgstr "El número actual de escrituras pendientess."
-
-#: libraries/messages.inc.php:100
-msgid "The amount of data read so far, in bytes."
-msgstr "El número de datos leídos hasta el momento, en bytes."
-
-#: libraries/messages.inc.php:101
-msgid "The total number of data reads."
-msgstr "El número total de lectura de datos."
-
-#: libraries/messages.inc.php:102
-msgid "The total number of data writes."
-msgstr "El número total de escritura de datos."
-
-#: libraries/messages.inc.php:103
-msgid "The amount of data written so far, in bytes."
-msgstr "La cantidad de datos escritas hasta el momento, en bytes."
-
-#: libraries/messages.inc.php:104
-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/messages.inc.php:105
-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/messages.inc.php:106
-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 ""
-"El número de esperas generadas porque la memoria (búfer) log fue demasiado "
-"pequeña y hubo que esperar a que fuera vaciada antes de continuar."
-
-#: libraries/messages.inc.php:107
-msgid "The number of log write requests."
-msgstr "El número de solicitudes de escritura al log."
-
-#: libraries/messages.inc.php:108
-msgid "The number of physical writes to the log file."
-msgstr "El número de escrituras físicas al archivo log."
-
-#: libraries/messages.inc.php:109
-msgid "The number of fsync() writes done to the log file."
-msgstr "El número de escrituras fsyncs hechas al archivo log."
-
-#: libraries/messages.inc.php:110
-msgid "The number of pending log file fsyncs."
-msgstr "El número de fsyncs pendientes al archivo log."
-
-#: libraries/messages.inc.php:111
-msgid "Pending log file writes."
-msgstr "Escrituras pendientes al archivo log."
-
-#: libraries/messages.inc.php:112
-msgid "The number of bytes written to the log file."
-msgstr "El número de bytes escritos al archivo log."
-
-#: libraries/messages.inc.php:113
-msgid "The number of pages created."
-msgstr "El número de páginas creadas."
-
-#: libraries/messages.inc.php:114
-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 ""
-"El tamaño de página InnDB precompilado (por omisión 16KB). Muchos valores "
-"son contados por páginas; el tamaño de la página permite que pueda "
-"convertirse fácilmente a bytes."
-
-#: libraries/messages.inc.php:115
-msgid "The number of pages read."
-msgstr "El número de páginas leídas."
-
-#: libraries/messages.inc.php:116
-msgid "The number of pages written."
-msgstr "El número de páginas escritas."
-
-#: libraries/messages.inc.php:117
-msgid "The number of row locks currently being waited for."
-msgstr "El número de row locks que actualmente están en espera."
-
-#: libraries/messages.inc.php:118
-msgid "The average time to acquire a row lock, in milliseconds."
-msgstr "El tiempo promedio para adquirir un row lock, en milisegundos."
-
-#: libraries/messages.inc.php:119
-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/messages.inc.php:120
-msgid "The maximum time to acquire a row lock, in milliseconds."
-msgstr "El tiempo máximo para adquirir un row lock, en milisegundos."
-
-#: libraries/messages.inc.php:121
-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/messages.inc.php:122
-msgid "The number of rows deleted from InnoDB tables."
-msgstr "El número de filas eliminadas de tablas InnoDB."
-
-#: libraries/messages.inc.php:123
-msgid "The number of rows inserted in InnoDB tables."
-msgstr "El número de filas insertadas en tablas InnoDB."
-
-#: libraries/messages.inc.php:124
-msgid "The number of rows read from InnoDB tables."
-msgstr "El número de filas leídas de las tablas InnoDB."
-
-#: libraries/messages.inc.php:125
-msgid "The number of rows updated in InnoDB tables."
-msgstr "El número de filas actualizadas en tablas InnoDB."
-
-#: libraries/messages.inc.php:126
-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 ""
-"El número de key blocks en el key cache que han cambiado pero que aún no han "
-"sido vaciados al disco. Antes se conocía como Not_flushed_key_blocks."
-
-#: libraries/messages.inc.php:127
-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 ""
-"El número de bloques sin usar en el key cache. Puede usar este valor para "
-"determinar cuánto del key cache está en uso."
-
-#: libraries/messages.inc.php:128
-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 ""
-"El número de bloques usados en el key cache. Este valor es un marcador de "
-"desbordamiento que indica el número máximo de bloques que algún momento se "
-"llegaron a usar."
-
-#: libraries/messages.inc.php:129
-msgid "The number of requests to read a key block from the cache."
-msgstr "El número de solicitudes para leer un key block desde el cache."
-
-#: libraries/messages.inc.php:130
-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 ""
-"El número de lecturas físicas del key block desde el disco. Si el Key_reads "
-"es grande, entonces el valor key_buffer_size probablemente es demasiado "
-"pequeño. La tasa de fallos en el cache puede calcularse como Key_reads/"
-"Key_read_requests."
-
-#: libraries/messages.inc.php:131
-msgid "The number of requests to write a key block to the cache."
-msgstr "El número de solicitudes para escribir un key block al cache."
-
-#: libraries/messages.inc.php:132
-msgid "The number of physical writes of a key block to disk."
-msgstr "El número de escrituras físicas a un key block al disco."
-
-#: libraries/messages.inc.php:133
-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 ""
-"El costo total de la última consulta compilada como fuera computada por el "
-"optimizador de consultas. Es útil para comparar el costo de diferentes "
-"planes de consulta para una misma consulta. El valor por omisión de 0 "
-"significa que ninguna consulta ha sido compilada todavía."
-
-#: libraries/messages.inc.php:134
-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/messages.inc.php:135
-msgid ""
-"The number of tables that have been opened. If opened tables is big, your "
-"table cache value is probably too small."
-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/messages.inc.php:136
-msgid "The number of files that are open."
-msgstr "El número de archivos que están abiertos."
-
-#: libraries/messages.inc.php:137
-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 "
-"alimentar a los logs)."
-
-#: libraries/messages.inc.php:138
-msgid "The number of tables that are open."
-msgstr "El número de tablas que están abiertas."
-
-#: libraries/messages.inc.php:139
-msgid "The number of free memory blocks in query cache."
-msgstr "El número de bloques de memoria libre en el cache de consultas."
-
-#: libraries/messages.inc.php:140
-msgid "The amount of free memory for query cache."
-msgstr "La cantidad de memoria libre para el cache de consultas."
-
-#: libraries/messages.inc.php:141
-msgid "The number of cache hits."
-msgstr "El número de hits al cache."
-
-#: libraries/messages.inc.php:142
-msgid "The number of queries added to the cache."
-msgstr "El número de consultas añadidos al cache."
-
-#: libraries/messages.inc.php:143
-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 "
-"cache size. The query cache uses a least recently used (LRU) strategy to "
-"decide which queries to remove from the cache."
-msgstr ""
-"El número de consultas que han sido removidos del cache para liberar la "
-"memoria para poner nuevas consultas en el cache. Esta información puede "
-"ayudar a afinar el tamaño del cache de consultas. El cache de consultas usa "
-"la estrategia Least Recently Used (LRU) para decidir cuáles consultas deben "
-"ser removidas del cache."
-
-#: libraries/messages.inc.php:144
-msgid ""
-"The number of non-cached queries (not cachable, or not cached due to the "
-"query_cache_type setting)."
-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/messages.inc.php:145
-msgid "The number of queries registered in the cache."
-msgstr "El número de consultas registradas en el cache."
-
-#: libraries/messages.inc.php:146
-msgid "The total number of blocks in the query cache."
-msgstr "El número total de bloques en el cache de consultas."
-
-#: libraries/messages.inc.php:147
-msgctxt "$strShowStatusReset"
-msgid "Reset"
-msgstr "Resetear"
-
-#: libraries/messages.inc.php:148
-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/messages.inc.php:149
-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 ""
-"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/messages.inc.php:150
-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/messages.inc.php:151
-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 ""
-"El número de vínculos (joins) sin keys que revisan el uso de key luego de "
-"cada fila. (Si no es 0, deberá revisar los índices de sus tablas "
-"cuidadosamente.)"
-
-#: libraries/messages.inc.php:152
-msgid ""
-"The number of joins that used ranges on the first table. (It's normally not "
-"critical even if this is big.)"
-msgstr ""
-"El número de vínculos (joins) que usaron rangos en la primera tabla. "
-"(Normalmente no es crítico aun cuando sea grande.)"
-
-#: libraries/messages.inc.php:153
-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/messages.inc.php:154
-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/messages.inc.php:155
-msgid ""
-"Total (since startup) number of times the replication slave SQL thread has "
-"retried transactions."
-msgstr ""
-"Número total de veces (desde el arranque) que el proceso SQL esclavo de "
-"replicación ha reintentado hacer transacciones."
-
-#: libraries/messages.inc.php:156
-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/messages.inc.php:157
-msgid ""
-"The number of threads that have taken more than slow_launch_time seconds to "
-"create."
-msgstr ""
-"El número de procesos que han tomado más de los segundos registrados en "
-"slow_launch_time para crear."
-
-#: libraries/messages.inc.php:158
-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/messages.inc.php:159
-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 ""
-"El número de pasadas de fusión (merge) que el algoritmo organizar ha debido "
-"hacer. Si este valor es grande, debe considerar incrementar el valor de la "
-"varible de sistema sort_buffer_size."
-
-#: libraries/messages.inc.php:160
-msgid "The number of sorts that were done with ranges."
-msgstr "El número de consultas organizar que se ejecutaron con rangos."
-
-#: libraries/messages.inc.php:161
-msgid "The number of sorted rows."
-msgstr "El número de filas sorted."
-
-#: libraries/messages.inc.php:162
-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/messages.inc.php:163
-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/messages.inc.php:164
-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 "
-"should first optimize your queries, and then either split your table or "
-"tables or use replication."
-msgstr ""
-"El número de veces que un table lock no pudo adquirirse inmediatamente y fue "
-"necesaria una espera. Si este valor es alto, y hay problemas de rendimiento, "
-"primero deberá optimizar sus consultas, y luego, ya sea partir sus tablas o "
-"usar replicación."
-
-#: libraries/messages.inc.php:165
-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 ""
-"El número de procesos en el cache de procesos. La tasa de hits al cache "
-"puede calcularse como Threads_created/Connections. Si este valor es rojo, "
-"debe incrementar su thread_cache_size."
-
-#: libraries/messages.inc.php:166
-msgid "The number of currently open connections."
-msgstr "El número de conexiones abiertas actualmente."
-
-#: libraries/messages.inc.php:167
-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 "
-"doesn't give a notable performance improvement if you have a good thread "
-"implementation.)"
-msgstr ""
-"El número de procesos creados para manejar las conexiones. Si "
-"Threads_created es grande, querrá incrementar el valor thread_cache_size. "
-"(Normalmente esto no aporta una mejoría notable en el rendimiento si usted "
-"tiene una buena implementación de procesos.)"
-
-#: libraries/messages.inc.php:168
-msgid "The number of threads that are not sleeping."
-msgstr "El número de procesos que no están en reposo."
-
#: libraries/mult_submits.inc.php:76 libraries/tbl_properties.inc.php:513
#: tbl_structure.php:29 tbl_structure.php:153 tbl_structure.php:157
#: tbl_structure.php:473
@@ -4488,8 +3606,8 @@ msgstr ""
#: libraries/replication_gui.lib.php:55 libraries/replication_gui.lib.php:56
#: libraries/replication_gui.lib.php:249 libraries/replication_gui.lib.php:252
-#: libraries/replication_gui.lib.php:259 server_privileges.php:672
-#: server_privileges.php:675 server_privileges.php:682
+#: libraries/replication_gui.lib.php:259 server_privileges.php:711
+#: server_privileges.php:714 server_privileges.php:721
#: server_synchronize.php:1171
msgid "User name"
msgstr "Nombre de usuario"
@@ -4510,11 +3628,11 @@ msgid "Slave status"
msgstr "Mostrar el estado del esclavo"
#: libraries/replication_gui.lib.php:114 libraries/sql_query_form.lib.php:445
-#: server_status.php:626 server_variables.php:52
+#: server_status.php:737 server_variables.php:52
msgid "Variable"
msgstr "Variable"
-#: libraries/replication_gui.lib.php:115 server_status.php:627
+#: libraries/replication_gui.lib.php:115 server_status.php:738
#: tbl_change.php:324 tbl_printview.php:370 tbl_select.php:139
#: tbl_structure.php:729
msgid "Value"
@@ -4534,41 +3652,58 @@ msgstr ""
msgid "Add slave replication user"
msgstr ""
-#: libraries/replication_gui.lib.php:254 server_privileges.php:677
+#: libraries/replication_gui.lib.php:254 server_privileges.php:716
msgid "Any user"
msgstr "Cualquier usuario"
#: libraries/replication_gui.lib.php:255 libraries/replication_gui.lib.php:323
-#: libraries/replication_gui.lib.php:346 server_privileges.php:678
-#: server_privileges.php:745 server_privileges.php:769
-#: server_privileges.php:1889 server_privileges.php:1919
+#: libraries/replication_gui.lib.php:346 server_privileges.php:717
+#: server_privileges.php:784 server_privileges.php:808
+#: server_privileges.php:1928 server_privileges.php:1958
msgid "Use text field"
msgstr "Use el campo de texto"
-#: libraries/replication_gui.lib.php:302 server_privileges.php:725
+#: libraries/replication_gui.lib.php:302 server_privileges.php:764
msgid "Any host"
msgstr "Cualquier servidor"
-#: libraries/replication_gui.lib.php:306 server_privileges.php:729
+#: libraries/replication_gui.lib.php:306 server_privileges.php:768
msgid "Local"
msgstr "Local"
-#: libraries/replication_gui.lib.php:312 server_privileges.php:734
+#: libraries/replication_gui.lib.php:312 server_privileges.php:773
msgid "This Host"
msgstr "Este Host"
-#: libraries/replication_gui.lib.php:318 server_privileges.php:740
+#: libraries/replication_gui.lib.php:318 server_privileges.php:779
msgid "Use Host Table"
msgstr "Usar la tabla Anfitrión (Host)"
-#: libraries/replication_gui.lib.php:331 server_privileges.php:753
+#: libraries/replication_gui.lib.php:331 server_privileges.php:792
msgid ""
"When Host table is used, this field is ignored and values stored in Host "
"table are used instead."
msgstr ""
-#: libraries/select_lang.lib.php:480 libraries/select_lang.lib.php:486
-#: libraries/select_lang.lib.php:492
+#. l10n: Text direction, use either ltr or rtl
+#: libraries/select_lang.lib.php:491
+msgid "ltr"
+msgstr "ltr"
+
+#: libraries/select_lang.lib.php:493
+msgid "Content of table __TABLE__"
+msgstr "Contenido de la tabla __TABLE__"
+
+#: libraries/select_lang.lib.php:494
+msgid "(continued)"
+msgstr "(continúa)"
+
+#: libraries/select_lang.lib.php:495
+msgid "Structure of table __TABLE__"
+msgstr "Estructura de la tabla __TABLE__"
+
+#: libraries/select_lang.lib.php:500 libraries/select_lang.lib.php:506
+#: libraries/select_lang.lib.php:512
#, php-format
msgid "Unknown language: %1$s."
msgstr "Idioma desconocido: %1$s."
@@ -4579,7 +3714,7 @@ msgid "Servers"
msgstr "Servidores"
#: libraries/server_links.inc.php:53 server_engines.php:112
-#: server_engines.php:116 server_status.php:304 test/theme.php:105
+#: server_engines.php:116 server_status.php:415 test/theme.php:105
msgid "Variables"
msgstr "Variables"
@@ -4592,7 +3727,7 @@ msgid "Engines"
msgstr "Motores"
#: libraries/server_links.inc.php:76 server_binlog.php:110
-#: server_status.php:253 test/theme.php:121
+#: server_status.php:364 test/theme.php:121
msgid "Binary log"
msgstr "Log binario"
@@ -5078,8 +4213,8 @@ msgstr "Reiniciar"
msgid "Protocol version"
msgstr "Versión del protocolo"
-#: main.php:189 server_privileges.php:1350 server_privileges.php:1497
-#: server_privileges.php:1611 server_privileges.php:2029
+#: main.php:189 server_privileges.php:1389 server_privileges.php:1536
+#: server_privileges.php:1650 server_privileges.php:2068
#: server_processlist.php:54
msgid "User"
msgstr "Usuario"
@@ -5473,7 +4608,7 @@ msgstr "%s bases de datos han sido eliminadas exitosamente."
msgid "Databases statistics"
msgstr "Estadísticas de la base"
-#: server_databases.php:117 server_status.php:260
+#: server_databases.php:117 server_status.php:371
#: setup/lib/messages.inc.php:117
msgid "Tables"
msgstr "Tablas"
@@ -5494,6 +4629,17 @@ msgstr "Configuración del servidor"
msgid "Jump to database"
msgstr "No hay bases de datos"
+#: server_databases.php:267
+#, fuzzy
+msgid "Not replicated"
+msgstr "Configuración del servidor"
+
+#: server_databases.php:273
+#, fuzzy
+#| msgid "Replication"
+msgid "Replicated"
+msgstr "Replicación"
+
#: server_databases.php:289
#, php-format
msgid "Check privileges for database "%s"."
@@ -5527,147 +4673,345 @@ msgstr "Motores de almacenamiento"
msgid "View dump (schema) of databases"
msgstr "Ver el volcado (schema) de la base de datos"
-#: server_privileges.php:263 server_privileges.php:264
+#: server_privileges.php:24 server_privileges.php:266
+msgid "Includes all privileges except GRANT."
+msgstr "Incluye todos los privilegios excepto GRANT (CONCEDER)."
+
+#: server_privileges.php:25 server_privileges.php:192
+#: server_privileges.php:515
+msgid "Allows altering the structure of existing tables."
+msgstr "Permite alterar la estructura de las tablas existentes."
+
+#: server_privileges.php:26 server_privileges.php:208
+#: server_privileges.php:521
+msgid "Allows altering and dropping stored routines."
+msgstr "Permite alterar y eliminar las rutinas almacenadas."
+
+#: server_privileges.php:27 server_privileges.php:184
+#: server_privileges.php:514
+msgid "Allows creating new databases and tables."
+msgstr "Permite crear nuevas bases de datos y tablas."
+
+#: server_privileges.php:28 server_privileges.php:207
+#: server_privileges.php:520
+msgid "Allows creating stored routines."
+msgstr "Permite crear el almacenamiento de rutinas."
+
+#: server_privileges.php:29 server_privileges.php:514
+msgid "Allows creating new tables."
+msgstr "Permite la creación de tablas nuevas."
+
+#: server_privileges.php:30 server_privileges.php:195
+#: server_privileges.php:518
+msgid "Allows creating temporary tables."
+msgstr "Permite la creación de tablas temporales."
+
+#: server_privileges.php:31 server_privileges.php:209
+#: server_privileges.php:554
+msgid "Allows creating, dropping and renaming user accounts."
+msgstr "Permite crear, eliminar y cambiar el nombre de las cuentas de usuario."
+
+#: server_privileges.php:32 server_privileges.php:199
+#: server_privileges.php:203 server_privileges.php:526
+#: server_privileges.php:530
+msgid "Allows creating new views."
+msgstr "Permite crear nuevas vistas."
+
+#: server_privileges.php:33 server_privileges.php:183
+#: server_privileges.php:506
+msgid "Allows deleting data."
+msgstr "Permite borrar datos."
+
+#: server_privileges.php:34 server_privileges.php:185
+#: server_privileges.php:517
+msgid "Allows dropping databases and tables."
+msgstr "Permite eliminar bases de datos y tablas."
+
+#: server_privileges.php:35 server_privileges.php:517
+msgid "Allows dropping tables."
+msgstr "Permite eliminar tablas."
+
+#: server_privileges.php:36 server_privileges.php:200
+#: server_privileges.php:534
+msgid "Allows to set up events for the event scheduler"
+msgstr "Permite organizar los eventos para el gestor de eventos"
+
+#: server_privileges.php:37 server_privileges.php:210
+#: server_privileges.php:522
+msgid "Allows executing stored routines."
+msgstr "Permite ejecutar las rutinas almacenadas."
+
+#: server_privileges.php:38 server_privileges.php:189
+#: server_privileges.php:509
+msgid "Allows importing data from and exporting data into files."
+msgstr "Permite importar y exportar datos de y hacia archivos."
+
+#: server_privileges.php:39 server_privileges.php:540
+msgid ""
+"Allows adding users and privileges without reloading the privilege tables."
+msgstr ""
+"Permite añadir usuarios y privilegios sin conectarse nuevamente a la tabla "
+"de privilegios."
+
+#: server_privileges.php:40 server_privileges.php:191
+#: server_privileges.php:516
+msgid "Allows creating and dropping indexes."
+msgstr "Permite crear y eliminar índices."
+
+#: server_privileges.php:41 server_privileges.php:181
+#: server_privileges.php:442 server_privileges.php:504
+msgid "Allows inserting and replacing data."
+msgstr "Permite insertar y reemplazar datos."
+
+#: server_privileges.php:42 server_privileges.php:196
+#: server_privileges.php:549
+msgid "Allows locking tables for the current thread."
+msgstr "Permite poner candados a las tablas para el proceso actual."
+
+#: server_privileges.php:43 server_privileges.php:646
+#: server_privileges.php:648
+msgid "Limits the number of new connections the user may open per hour."
+msgstr ""
+"Limita el número de conexiones nuevas que el usuario puede abrir por hora."
+
+#: server_privileges.php:44 server_privileges.php:634
+#: server_privileges.php:636
+msgid "Limits the number of queries the user may send to the server per hour."
+msgstr ""
+"Limita el número de consultas que el usuario puede enviar al servidor por "
+"hora."
+
+#: server_privileges.php:45 server_privileges.php:640
+#: server_privileges.php:642
+msgid ""
+"Limits the number of commands that change any table or database the user may "
+"execute per hour."
+msgstr ""
+"Limita el número de comandos que cambian cualquier tabla o base de datos que "
+"el usuario puede ejecutar por hora."
+
+#: server_privileges.php:46 server_privileges.php:652
+#: server_privileges.php:654
+msgid "Limits the number of simultaneous connections the user may have."
+msgstr "Limita el número de conexiones simultáneas que el usuario pueda tener."
+
+#: server_privileges.php:47 server_privileges.php:188
+#: server_privileges.php:544
+msgid "Allows viewing processes of all users"
+msgstr "Permite ver los procesos de todos los usuarios"
+
+#: server_privileges.php:48 server_privileges.php:190
+#: server_privileges.php:448 server_privileges.php:550
+msgid "Has no effect in this MySQL version."
+msgstr "No tiene efecto en esta versión de MySQL."
+
+#: server_privileges.php:49 server_privileges.php:186
+#: server_privileges.php:545
+msgid "Allows reloading server settings and flushing the server's caches."
+msgstr ""
+"Permite volver a cargar los parámetros del servidor y depurar los cachés del "
+"servidor."
+
+#: server_privileges.php:50 server_privileges.php:198
+#: server_privileges.php:552
+msgid "Allows the user to ask where the slaves / masters are."
+msgstr ""
+"Da el derecho al usuario para preguntar dónde están los \"esclavos / masters"
+"\"."
+
+#: server_privileges.php:51 server_privileges.php:197
+#: server_privileges.php:553
+msgid "Needed for the replication slaves."
+msgstr "Necesario para los \"esclavos\" de replicación."
+
+#: server_privileges.php:52 server_privileges.php:180
+#: server_privileges.php:439 server_privileges.php:503
+msgid "Allows reading data."
+msgstr "Permite leer los datos."
+
+#: server_privileges.php:53 server_privileges.php:193
+#: server_privileges.php:547
+msgid "Gives access to the complete list of databases."
+msgstr "Concede acceso a la lista completa de bases de datos."
+
+#: server_privileges.php:54 server_privileges.php:204
+#: server_privileges.php:206 server_privileges.php:519
+msgid "Allows performing SHOW CREATE VIEW queries."
+msgstr ""
+"Permite llevar a cabo las consultas SHOW CREATE VIEW (MOSTRAR CREAR VER)."
+
+#: server_privileges.php:55 server_privileges.php:187
+#: server_privileges.php:546
+msgid "Allows shutting down the server."
+msgstr "Permite desconectar el servidor."
+
+#: server_privileges.php:56 server_privileges.php:194
+#: server_privileges.php:543
+msgid ""
+"Allows connecting, even if maximum number of connections is reached; "
+"required for most administrative operations like setting global variables or "
+"killing threads of other users."
+msgstr ""
+"Permite la conexión, incluso si el número máximo de conexiones ha sido "
+"alcanzado; Necesario para la mayor parte de operaciones administrativas "
+"tales como montar parámetros de variables globales o matar procesos de otros "
+"usuarios."
+
+#: server_privileges.php:57 server_privileges.php:201
+#: server_privileges.php:535
+msgid "Allows creating and dropping triggers"
+msgstr "Permite crear y eliminar un evento desencadenante"
+
+#: server_privileges.php:58 server_privileges.php:182
+#: server_privileges.php:445 server_privileges.php:505
+msgid "Allows changing data."
+msgstr "Permite cambiar los datos."
+
+#: server_privileges.php:59 server_privileges.php:260
+msgid "No privileges."
+msgstr "Sin privilegios."
+
+#: server_privileges.php:302 server_privileges.php:303
#, fuzzy
#| msgid "None"
msgctxt "None privileges"
msgid "None"
msgstr "Ninguna"
-#: server_privileges.php:392 server_privileges.php:527
-#: server_privileges.php:1679 server_privileges.php:1685
+#: server_privileges.php:431 server_privileges.php:566
+#: server_privileges.php:1718 server_privileges.php:1724
msgid "Table-specific privileges"
msgstr "Privilegios específicos para la tabla"
-#: server_privileges.php:393 server_privileges.php:535
-#: server_privileges.php:1501
+#: server_privileges.php:432 server_privileges.php:574
+#: server_privileges.php:1540
msgid " Note: MySQL privilege names are expressed in English "
msgstr ""
" Nota: Los nombres de los privilegios de MySQL están expresados en inglés "
-#: server_privileges.php:524 server_privileges.php:1500
+#: server_privileges.php:563 server_privileges.php:1539
msgid "Global privileges"
msgstr "Privilegios globales"
-#: server_privileges.php:526 server_privileges.php:1679
+#: server_privileges.php:565 server_privileges.php:1718
msgid "Database-specific privileges"
msgstr "Privilegios específicos para la base de datos"
-#: server_privileges.php:571
+#: server_privileges.php:610
msgid "Administration"
msgstr "Administración"
-#: server_privileges.php:591
+#: server_privileges.php:630
msgid "Resource limits"
msgstr "Límites de recursos"
-#: server_privileges.php:592
+#: server_privileges.php:631
msgid "Note: Setting these options to 0 (zero) removes the limit."
msgstr ""
"Nota: si cambia los parámetros de estas opciones a 0 (cero), remueve el "
"límite."
-#: server_privileges.php:669
+#: server_privileges.php:708
msgid "Login Information"
msgstr "Información de la cuenta"
-#: server_privileges.php:763
+#: server_privileges.php:802
msgid "Do not change the password"
msgstr "No cambiar la contraseña"
-#: server_privileges.php:804 server_privileges.php:2166
+#: server_privileges.php:843 server_privileges.php:2205
#, fuzzy
#| msgid "No user(s) found."
msgid "No user found."
msgstr "Usuario(s) no encontrado(s)."
-#: server_privileges.php:848
+#: server_privileges.php:887
#, php-format
msgid "The user %s already exists!"
msgstr "¡El usuario %s ya existe!"
-#: server_privileges.php:931
+#: server_privileges.php:970
msgid "You have added a new user."
msgstr "Ha agregado un nuevo usuario."
-#: server_privileges.php:1152
+#: server_privileges.php:1191
#, php-format
msgid "You have updated the privileges for %s."
msgstr "Ha actualizado los privilegios para %s."
-#: server_privileges.php:1176
+#: server_privileges.php:1215
#, php-format
msgid "You have revoked the privileges for %s"
msgstr "Ha revocado los privilegios para %s"
-#: server_privileges.php:1212
+#: server_privileges.php:1251
#, php-format
msgid "The password for %s was changed successfully."
msgstr "La contraseña para %s se cambió exitosamente."
-#: server_privileges.php:1232
+#: server_privileges.php:1271
#, php-format
msgid "Deleting %s"
msgstr "Borrando %s"
-#: server_privileges.php:1243
+#: server_privileges.php:1282
msgid "No users selected for deleting!"
msgstr "¡No se han seleccionado usuarios para eliminar!"
-#: server_privileges.php:1246
+#: server_privileges.php:1285
msgid "Reloading the privileges"
msgstr "Cargando los privilegios nuevamente"
-#: server_privileges.php:1261
+#: server_privileges.php:1300
msgid "The selected users have been deleted successfully."
msgstr "Los usuarios seleccionados fueron borrados exitosamente."
-#: server_privileges.php:1296
+#: server_privileges.php:1335
msgid "The privileges were reloaded successfully."
msgstr "Los privilegios fueron cargados nuevamente de manera exitosa."
-#: server_privileges.php:1324 server_privileges.php:1610
+#: server_privileges.php:1363 server_privileges.php:1649
msgid "Edit Privileges"
msgstr "Editar los privilegios"
-#: server_privileges.php:1333
+#: server_privileges.php:1372
msgid "Revoke"
msgstr "Revocar"
-#: server_privileges.php:1365
+#: server_privileges.php:1404
msgid "User overview"
msgstr "Vista global de usuarios"
-#: server_privileges.php:1502 server_privileges.php:1684
-#: server_privileges.php:2033
+#: server_privileges.php:1541 server_privileges.php:1723
+#: server_privileges.php:2072
msgid "Grant"
msgstr "Conceder"
-#: server_privileges.php:1521 server_privileges.php:2123
+#: server_privileges.php:1560 server_privileges.php:2162
msgid "Any"
msgstr "cualquiera"
-#: server_privileges.php:1570 server_privileges.php:1594
-#: server_privileges.php:1988 server_privileges.php:2177
+#: server_privileges.php:1609 server_privileges.php:1633
+#: server_privileges.php:2027 server_privileges.php:2216
msgid "Add a new User"
msgstr "Agregar un nuevo usuario"
-#: server_privileges.php:1575
+#: server_privileges.php:1614
msgid "Remove selected users"
msgstr "Eliminar a los usuarios seleccionados"
-#: server_privileges.php:1578
+#: server_privileges.php:1617
msgid "Revoke all active privileges from the users and delete them afterwards."
msgstr ""
"Revocar todos los privilegios activos de los usuarios y borrarlos después."
-#: server_privileges.php:1579 server_privileges.php:1580
-#: server_privileges.php:1581
+#: server_privileges.php:1618 server_privileges.php:1619
+#: server_privileges.php:1620
msgid "Drop the databases that have the same names as the users."
msgstr ""
"Eliminar las bases de datos que tienen los mismos nombres que los usuarios."
-#: server_privileges.php:1597
+#: server_privileges.php:1636
#, php-format
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
@@ -5681,50 +5025,50 @@ msgstr ""
"manuales en él. En este caso, nuevamente deberá %scargar la página de "
"privilegios%s antes de continuar."
-#: server_privileges.php:1645
+#: server_privileges.php:1684
msgid "The selected user was not found in the privilege table."
msgstr "El usuario que seleccionó no se halló en la tabla de privilegios."
-#: server_privileges.php:1685
+#: server_privileges.php:1724
msgid "Column-specific privileges"
msgstr "Privilegios específicos para la columna"
-#: server_privileges.php:1886
+#: server_privileges.php:1925
msgid "Add privileges on the following database"
msgstr "Añadir privilegios a esta base de datos"
-#: server_privileges.php:1904
+#: server_privileges.php:1943
msgid "Wildcards % and _ should be escaped with a \\ to use them literally"
msgstr ""
"Los comodines _ y % deben acompañarse de \\ para usarlos de manera literal"
-#: server_privileges.php:1907
+#: server_privileges.php:1946
msgid "Add privileges on the following table"
msgstr "Añadir privilegios a esta tabla"
-#: server_privileges.php:1964
+#: server_privileges.php:2003
msgid "Change Login Information / Copy User"
msgstr "Cambiar la información de la cuenta / Copiar el usuario"
-#: server_privileges.php:1967
+#: server_privileges.php:2006
msgid "Create a new user with the same privileges and ..."
msgstr "Crear un nuevo usuario con los mismos privilegios y..."
-#: server_privileges.php:1969
+#: server_privileges.php:2008
msgid "... keep the old one."
msgstr "...mantener el anterior."
-#: server_privileges.php:1970
+#: server_privileges.php:2009
msgid " ... delete the old one from the user tables."
msgstr " ...borrar el viejo de las tablas de usuario."
-#: server_privileges.php:1971
+#: server_privileges.php:2010
msgid ""
" ... revoke all active privileges from the old one and delete it afterwards."
msgstr ""
" ...revocar todos los privilegios activos del viejo y eliminarlo después."
-#: server_privileges.php:1972
+#: server_privileges.php:2011
msgid ""
" ... delete the old one from the user tables and reload the privileges "
"afterwards."
@@ -5732,46 +5076,46 @@ msgstr ""
" ...borrar el viejo de las tablas de usuario y luego volver a cargar los "
"privilegios."
-#: server_privileges.php:1994
+#: server_privileges.php:2033
msgid "Database for user"
msgstr "Base de datos para el usuario"
-#: server_privileges.php:1998
+#: server_privileges.php:2037
#, fuzzy
#| msgid "None"
msgctxt "Create none database for user"
msgid "None"
msgstr "Ninguna"
-#: server_privileges.php:1999
+#: server_privileges.php:2038
msgid "Create database with same name and grant all privileges"
msgstr ""
"Crear base de datos con el mismo nombre y otorgue todos los privilegios"
-#: server_privileges.php:2000
+#: server_privileges.php:2039
msgid "Grant all privileges on wildcard name (username\\_%)"
msgstr ""
"Otorgue todos los privilegios al nombre que contiene comodín (username\\_%)"
-#: server_privileges.php:2003
+#: server_privileges.php:2042
#, fuzzy, php-format
msgid "Grant all privileges on database "%s""
msgstr "Revisar los privilegios para la base de datos "%s"."
-#: server_privileges.php:2026
+#: server_privileges.php:2065
#, php-format
msgid "Users having access to "%s""
msgstr "Usuarios con acceso a "%s""
-#: server_privileges.php:2134
+#: server_privileges.php:2173
msgid "global"
msgstr "global"
-#: server_privileges.php:2136
+#: server_privileges.php:2175
msgid "database-specific"
msgstr "específico para la base de datos"
-#: server_privileges.php:2138
+#: server_privileges.php:2177
msgid "wildcard"
msgstr "comodín"
@@ -5819,7 +5163,7 @@ msgstr ""
msgid "This server is configured as master in a replication process."
msgstr ""
-#: server_replication.php:184 server_status.php:281
+#: server_replication.php:184 server_status.php:392
#, fuzzy
msgid "Show master status"
msgstr "Mostrar el estado del esclavo"
@@ -5961,103 +5305,770 @@ msgid ""
"like to configure it?"
msgstr ""
+#: server_status.php:40
+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 ""
+"El número de transacciones que usaron el cache de log binario temporal pero "
+"que excedieron el valor del binlog_cache_size y usaron un archivo temporal "
+"para almacenar los enunciados de la transacción."
+
+#: server_status.php:41
+msgid "The number of transactions that used the temporary binary log cache."
+msgstr ""
+"El número de transacciones que usaron el cache de log binario temporal."
+
+#: server_status.php:42
+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 "
+"to increase the tmp_table_size value to cause temporary tables to be memory-"
+"based instead of disk-based."
+msgstr ""
+"El número de tablas temporales en el disco que fueron creados "
+"automáticamente por el servidor mientras ejecuta los enunciados. Si las "
+"tablas Created_tmp_disk_tables es grande, puede incrementar el valor de "
+"tmp_table_size para hacer que las tablas temporales se basen en memoria en "
+"lugar de basarse en disco."
+
+#: server_status.php:43
+msgid "How many temporary files mysqld has created."
+msgstr "El número de archivos temporales que fueron creados por mysqld."
+
+#: server_status.php:44
+msgid ""
+"The number of in-memory temporary tables created automatically by the server "
+"while executing statements."
+msgstr ""
+"El número de tablas temporales in-memory creadas automáticamente por el "
+"servidor mientras se ejecutaban los enunciados."
+
+#: server_status.php:45
+msgid ""
+"The number of rows written with INSERT DELAYED for which some error occurred "
+"(probably duplicate key)."
+msgstr ""
+"El número de filas escritas con INSERT DELAYED en los cuales ocurrió algún "
+"error (probablemente una llave duplicada)."
+
#: server_status.php:46
+msgid ""
+"The number of INSERT DELAYED handler threads in use. Every different table "
+"on which one uses INSERT DELAYED gets its own thread."
+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."
+
+#: server_status.php:47
+msgid "The number of INSERT DELAYED rows written."
+msgstr "El número de filas INSERT DELAYED escritas."
+
+#: server_status.php:48
+msgid "The number of executed FLUSH statements."
+msgstr "El número de enunciados FLUSH ejecutados."
+
+#: server_status.php:49
+msgid "The number of internal COMMIT statements."
+msgstr "El número de enunciados COMMIT internos."
+
+#: server_status.php:50
+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."
+
+#: server_status.php:51
+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 ""
+"El servidor MySQL puede solicitar al motor de almacenamiento NDB Cluster si "
+"conoce acerca de una tabla con un nombre dado. Esto se llama descubrimiento. "
+"Handler_discover indica el número ocasiones que las tablas han sido "
+"descubiertas."
+
+#: server_status.php:52
+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 ""
+"El número de veces en que el primer registro ha sido leído desde un índice. "
+"Si este valor es alto, sugiere que el servidor está haciendo gran cantidad "
+"de escaneos completos del índice; por ejemplo, SELECT col1 FROM foo, "
+"asumiendo que col1 está indizado."
+
+#: server_status.php:53
+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 ""
+"El número de solicitudes hechas para leer una fila basado en una llave. Si "
+"este valor es alto, es una buena indicación de que sus consultas y tablas "
+"están indizadas apropiadamente."
+
+#: server_status.php:54
+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 ""
+"El número de solicitudes hechas para leer la siguiente fila en un orden "
+"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."
+
+#: server_status.php:55
+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 ""
+"El número de solicitudes hechas para leer la fila previa en un orden clave. "
+"Este método de lectura se usa principalmente para optimizar a ORDER BY ... "
+"DESC."
+
+#: server_status.php:56
+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 "
+"probably have a lot of queries that require MySQL to scan whole tables or "
+"you have joins that don't use keys properly."
+msgstr ""
+"El número de solicitudes hechas para leer una fila basado en una posición "
+"fija. Este es alto si usted está haciendo muchas consultas que requieren el "
+"reordenamiento del resultado. Usted probablemente tiene muchas consultas que "
+"requieren que MySQL escanee tablas enteras o usted debe tener vínculos "
+"(joins) que no usan las llaves de manera apropiada."
+
+#: server_status.php:57
+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 "
+"tables are not properly indexed or that your queries are not written to take "
+"advantage of the indexes you have."
+msgstr ""
+"El número de solicitudes hechas para leer la siguiente fila en el archivo de "
+"datos. Este es alto si usted está haciendo muchos escaneos de tablas. "
+"Generalmente, esto sugiere que sus tablas no están indizadas apropiadamente "
+"o que sus consultas no están escritas para tomar ventaja de los índices que "
+"tiene."
+
+#: server_status.php:58
+msgid "The number of internal ROLLBACK statements."
+msgstr "El número de enunciados ROLLBACK internos."
+
+#: server_status.php:59
+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."
+
+#: server_status.php:60
+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."
+
+#: server_status.php:61
+msgid "The number of pages containing data (dirty or clean)."
+msgstr "El número de páginas conteniendo datos (sucias o limpias)."
+
+#: server_status.php:62
+msgid "The number of pages currently dirty."
+msgstr "El número de páginas actualmente sucias."
+
+#: server_status.php:63
+msgid "The number of buffer pool pages that have been requested to be flushed."
+msgstr ""
+"El número de páginas en la memoria (búfer) de tránsito común que se ha "
+"solicitado sean vaciadas."
+
+#: server_status.php:64
+msgid "The number of free pages."
+msgstr "El número de páginas libres."
+
+#: server_status.php:65
+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 ""
+"El número de páginas aseguradas en la memoria (búfer) de tránsito común "
+"InnoDB. Estas son páginas en fase de lectura o escritura o que no pueden ser "
+"vaciadas o removidas por alguna otra razón."
+
+#: server_status.php:66
+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 "
+"be calculated as Innodb_buffer_pool_pages_total - "
+"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data."
+msgstr ""
+"El número de páginas ocupadas porque han sido asignadas para overhead "
+"administrativo tales como row locks o el índice hash adaptativo. Este valor "
+"también puede ser calculado como Innodb_buffer_pool_pages_total - "
+"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data."
+
+#: server_status.php:67
+msgid "Total size of buffer pool, in pages."
+msgstr "Tamaño total de la memoria (búfer) de tránsito común, en páginas."
+
+#: server_status.php:68
+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 ""
+"El número de read-aheads InnoDB \"aleatorias\" iniciadas. Esto sucede cuando "
+"una consulta va a escanear una gran porción de una tabla pero en orden "
+"aleatorio."
+
+#: server_status.php:69
+msgid ""
+"The number of sequential read-aheads InnoDB initiated. This happens when "
+"InnoDB does a sequential full table scan."
+msgstr ""
+"El número de read-aheads InnoDB secuenciales iniciadas. Esto sucede cuando "
+"InnoDB hace un escaneo secuencial de la tabla completa."
+
+#: server_status.php:70
+msgid "The number of logical read requests InnoDB has done."
+msgstr "El número de solicitudes de lectura lógica hechas por InnoDB."
+
+#: server_status.php:71
+msgid ""
+"The number of logical reads that InnoDB could not satisfy from buffer pool "
+"and had to do a single-page read."
+msgstr ""
+"El número de lecturas lógicas que InnoDB no pudo satisfacer de la memoria "
+"(búfer) de tránsito común y donde fue necesario hacer lectura de página "
+"sencilla."
+
+#: server_status.php:72
+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 "
+"available, it's necessary to wait for pages to be flushed first. This "
+"counter counts instances of these waits. If the buffer pool size was set "
+"properly, this value should be small."
+msgstr ""
+"Normalmente, las escrituras a la memoria de tránsito común InnoDB suceden en "
+"el trasfondo. Sin embargo, de ser necesario leer o crear una página y "
+"existen páginas limpias disponibles, es necesario esperar que las páginas "
+"sean vaciadas previamente. Este contador cuenta las instancias de estas "
+"esperas. Si los parámetros del tamaño de la memoria de tránsito común se "
+"fijaron apropiadamente, este valor será pequeño."
+
+#: server_status.php:73
+msgid "The number writes done to the InnoDB buffer pool."
+msgstr "El número de escrituras hechas a la memoria de tránsito común InnoDB."
+
+#: server_status.php:74
+msgid "The number of fsync() operations so far."
+msgstr "El número de operaciones fsync() hechas hasta el momento."
+
+#: server_status.php:75
+msgid "The current number of pending fsync() operations."
+msgstr "El número actual de operaciones fsync() pendientes."
+
+#: server_status.php:76
+msgid "The current number of pending reads."
+msgstr "El número actual de lecturas pendientes."
+
+#: server_status.php:77
+msgid "The current number of pending writes."
+msgstr "El número actual de escrituras pendientess."
+
+#: server_status.php:78
+msgid "The amount of data read so far, in bytes."
+msgstr "El número de datos leídos hasta el momento, en bytes."
+
+#: server_status.php:79
+msgid "The total number of data reads."
+msgstr "El número total de lectura de datos."
+
+#: server_status.php:80
+msgid "The total number of data writes."
+msgstr "El número total de escritura de datos."
+
+#: server_status.php:81
+msgid "The amount of data written so far, in bytes."
+msgstr "La cantidad de datos escritas hasta el momento, en bytes."
+
+#: server_status.php:82
+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."
+
+#: server_status.php:83
+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."
+
+#: server_status.php:84
+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 ""
+"El número de esperas generadas porque la memoria (búfer) log fue demasiado "
+"pequeña y hubo que esperar a que fuera vaciada antes de continuar."
+
+#: server_status.php:85
+msgid "The number of log write requests."
+msgstr "El número de solicitudes de escritura al log."
+
+#: server_status.php:86
+msgid "The number of physical writes to the log file."
+msgstr "El número de escrituras físicas al archivo log."
+
+#: server_status.php:87
+msgid "The number of fsync() writes done to the log file."
+msgstr "El número de escrituras fsyncs hechas al archivo log."
+
+#: server_status.php:88
+msgid "The number of pending log file fsyncs."
+msgstr "El número de fsyncs pendientes al archivo log."
+
+#: server_status.php:89
+msgid "Pending log file writes."
+msgstr "Escrituras pendientes al archivo log."
+
+#: server_status.php:90
+msgid "The number of bytes written to the log file."
+msgstr "El número de bytes escritos al archivo log."
+
+#: server_status.php:91
+msgid "The number of pages created."
+msgstr "El número de páginas creadas."
+
+#: server_status.php:92
+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 ""
+"El tamaño de página InnDB precompilado (por omisión 16KB). Muchos valores "
+"son contados por páginas; el tamaño de la página permite que pueda "
+"convertirse fácilmente a bytes."
+
+#: server_status.php:93
+msgid "The number of pages read."
+msgstr "El número de páginas leídas."
+
+#: server_status.php:94
+msgid "The number of pages written."
+msgstr "El número de páginas escritas."
+
+#: server_status.php:95
+msgid "The number of row locks currently being waited for."
+msgstr "El número de row locks que actualmente están en espera."
+
+#: server_status.php:96
+msgid "The average time to acquire a row lock, in milliseconds."
+msgstr "El tiempo promedio para adquirir un row lock, en milisegundos."
+
+#: server_status.php:97
+msgid "The total time spent in acquiring row locks, in milliseconds."
+msgstr ""
+"El total de tiempo invertido para adquirir los row locks, en milisegundos."
+
+#: server_status.php:98
+msgid "The maximum time to acquire a row lock, in milliseconds."
+msgstr "El tiempo máximo para adquirir un row lock, en milisegundos."
+
+#: server_status.php:99
+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."
+
+#: server_status.php:100
+msgid "The number of rows deleted from InnoDB tables."
+msgstr "El número de filas eliminadas de tablas InnoDB."
+
+#: server_status.php:101
+msgid "The number of rows inserted in InnoDB tables."
+msgstr "El número de filas insertadas en tablas InnoDB."
+
+#: server_status.php:102
+msgid "The number of rows read from InnoDB tables."
+msgstr "El número de filas leídas de las tablas InnoDB."
+
+#: server_status.php:103
+msgid "The number of rows updated in InnoDB tables."
+msgstr "El número de filas actualizadas en tablas InnoDB."
+
+#: server_status.php:104
+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 ""
+"El número de key blocks en el key cache que han cambiado pero que aún no han "
+"sido vaciados al disco. Antes se conocía como Not_flushed_key_blocks."
+
+#: server_status.php:105
+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 ""
+"El número de bloques sin usar en el key cache. Puede usar este valor para "
+"determinar cuánto del key cache está en uso."
+
+#: server_status.php:106
+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 ""
+"El número de bloques usados en el key cache. Este valor es un marcador de "
+"desbordamiento que indica el número máximo de bloques que algún momento se "
+"llegaron a usar."
+
+#: server_status.php:107
+msgid "The number of requests to read a key block from the cache."
+msgstr "El número de solicitudes para leer un key block desde el cache."
+
+#: server_status.php:108
+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 ""
+"El número de lecturas físicas del key block desde el disco. Si el Key_reads "
+"es grande, entonces el valor key_buffer_size probablemente es demasiado "
+"pequeño. La tasa de fallos en el cache puede calcularse como Key_reads/"
+"Key_read_requests."
+
+#: server_status.php:109
+msgid "The number of requests to write a key block to the cache."
+msgstr "El número de solicitudes para escribir un key block al cache."
+
+#: server_status.php:110
+msgid "The number of physical writes of a key block to disk."
+msgstr "El número de escrituras físicas a un key block al disco."
+
+#: server_status.php:111
+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 ""
+"El costo total de la última consulta compilada como fuera computada por el "
+"optimizador de consultas. Es útil para comparar el costo de diferentes "
+"planes de consulta para una misma consulta. El valor por omisión de 0 "
+"significa que ninguna consulta ha sido compilada todavía."
+
+#: server_status.php:112
+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."
+
+#: server_status.php:113
+msgid ""
+"The number of tables that have been opened. If opened tables is big, your "
+"table cache value is probably too small."
+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."
+
+#: server_status.php:114
+msgid "The number of files that are open."
+msgstr "El número de archivos que están abiertos."
+
+#: server_status.php:115
+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 "
+"alimentar a los logs)."
+
+#: server_status.php:116
+msgid "The number of tables that are open."
+msgstr "El número de tablas que están abiertas."
+
+#: server_status.php:117
+msgid "The number of free memory blocks in query cache."
+msgstr "El número de bloques de memoria libre en el cache de consultas."
+
+#: server_status.php:118
+msgid "The amount of free memory for query cache."
+msgstr "La cantidad de memoria libre para el cache de consultas."
+
+#: server_status.php:119
+msgid "The number of cache hits."
+msgstr "El número de hits al cache."
+
+#: server_status.php:120
+msgid "The number of queries added to the cache."
+msgstr "El número de consultas añadidos al cache."
+
+#: server_status.php:121
+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 "
+"cache size. The query cache uses a least recently used (LRU) strategy to "
+"decide which queries to remove from the cache."
+msgstr ""
+"El número de consultas que han sido removidos del cache para liberar la "
+"memoria para poner nuevas consultas en el cache. Esta información puede "
+"ayudar a afinar el tamaño del cache de consultas. El cache de consultas usa "
+"la estrategia Least Recently Used (LRU) para decidir cuáles consultas deben "
+"ser removidas del cache."
+
+#: server_status.php:122
+msgid ""
+"The number of non-cached queries (not cachable, or not cached due to the "
+"query_cache_type setting)."
+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)."
+
+#: server_status.php:123
+msgid "The number of queries registered in the cache."
+msgstr "El número de consultas registradas en el cache."
+
+#: server_status.php:124
+msgid "The total number of blocks in the query cache."
+msgstr "El número total de bloques en el cache de consultas."
+
+#: server_status.php:125
+msgctxt "$strShowStatusReset"
+msgid "Reset"
+msgstr "Resetear"
+
+#: server_status.php:126
+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)."
+
+#: server_status.php:127
+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 ""
+"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."
+
+#: server_status.php:128
+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."
+
+#: server_status.php:129
+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 ""
+"El número de vínculos (joins) sin keys que revisan el uso de key luego de "
+"cada fila. (Si no es 0, deberá revisar los índices de sus tablas "
+"cuidadosamente.)"
+
+#: server_status.php:130
+msgid ""
+"The number of joins that used ranges on the first table. (It's normally not "
+"critical even if this is big.)"
+msgstr ""
+"El número de vínculos (joins) que usaron rangos en la primera tabla. "
+"(Normalmente no es crítico aun cuando sea grande.)"
+
+#: server_status.php:131
+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."
+
+#: server_status.php:132
+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."
+
+#: server_status.php:133
+msgid ""
+"Total (since startup) number of times the replication slave SQL thread has "
+"retried transactions."
+msgstr ""
+"Número total de veces (desde el arranque) que el proceso SQL esclavo de "
+"replicación ha reintentado hacer transacciones."
+
+#: server_status.php:134
+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."
+
+#: server_status.php:135
+msgid ""
+"The number of threads that have taken more than slow_launch_time seconds to "
+"create."
+msgstr ""
+"El número de procesos que han tomado más de los segundos registrados en "
+"slow_launch_time para crear."
+
+#: server_status.php:136
+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."
+
+#: server_status.php:137
+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 ""
+"El número de pasadas de fusión (merge) que el algoritmo organizar ha debido "
+"hacer. Si este valor es grande, debe considerar incrementar el valor de la "
+"varible de sistema sort_buffer_size."
+
+#: server_status.php:138
+msgid "The number of sorts that were done with ranges."
+msgstr "El número de consultas organizar que se ejecutaron con rangos."
+
+#: server_status.php:139
+msgid "The number of sorted rows."
+msgstr "El número de filas sorted."
+
+#: server_status.php:140
+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."
+
+#: server_status.php:141
+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."
+
+#: server_status.php:142
+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 "
+"should first optimize your queries, and then either split your table or "
+"tables or use replication."
+msgstr ""
+"El número de veces que un table lock no pudo adquirirse inmediatamente y fue "
+"necesaria una espera. Si este valor es alto, y hay problemas de rendimiento, "
+"primero deberá optimizar sus consultas, y luego, ya sea partir sus tablas o "
+"usar replicación."
+
+#: server_status.php:143
+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 ""
+"El número de procesos en el cache de procesos. La tasa de hits al cache "
+"puede calcularse como Threads_created/Connections. Si este valor es rojo, "
+"debe incrementar su thread_cache_size."
+
+#: server_status.php:144
+msgid "The number of currently open connections."
+msgstr "El número de conexiones abiertas actualmente."
+
+#: server_status.php:145
+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 "
+"doesn't give a notable performance improvement if you have a good thread "
+"implementation.)"
+msgstr ""
+"El número de procesos creados para manejar las conexiones. Si "
+"Threads_created es grande, querrá incrementar el valor thread_cache_size. "
+"(Normalmente esto no aporta una mejoría notable en el rendimiento si usted "
+"tiene una buena implementación de procesos.)"
+
+#: server_status.php:146
+msgid "The number of threads that are not sleeping."
+msgstr "El número de procesos que no están en reposo."
+
+#: server_status.php:157
msgid "Runtime Information"
msgstr "Información acerca del tiempo de ejecución del proceso principal"
-#: server_status.php:250
+#: server_status.php:361
msgid "Handler"
msgstr "Gestor"
-#: server_status.php:251
+#: server_status.php:362
msgid "Query cache"
msgstr "Cache de consultas"
-#: server_status.php:252
+#: server_status.php:363
msgid "Threads"
msgstr "Procesos"
-#: server_status.php:254
+#: server_status.php:365
msgid "Temporary data"
msgstr "Datos temporales"
-#: server_status.php:255
+#: server_status.php:366
msgid "Delayed inserts"
msgstr "Delayed inserts"
-#: server_status.php:256
+#: server_status.php:367
msgid "Key cache"
msgstr "Cache principal"
-#: server_status.php:257
+#: server_status.php:368
msgid "Joins"
msgstr "Vínculos (Joins)"
-#: server_status.php:259
+#: server_status.php:370
msgid "Sorting"
msgstr "Organizando (sorting)"
-#: server_status.php:261
+#: server_status.php:372
msgid "Transaction coordinator"
msgstr "Coordinador de transacción"
-#: server_status.php:271
+#: server_status.php:382
msgid "Flush (close) all tables"
msgstr "Vaciar el cache de todas las tablas"
-#: server_status.php:273
+#: server_status.php:384
msgid "Show open tables"
msgstr "Mostrar las tablas que están abiertas"
-#: server_status.php:278
+#: server_status.php:389
msgid "Show slave hosts"
msgstr "Mostrar los hosts esclavos"
-#: server_status.php:284
+#: server_status.php:395
msgid "Show slave status"
msgstr "Mostrar el estado del esclavo"
-#: server_status.php:289
+#: server_status.php:400
msgid "Flush query cache"
msgstr "Vaciar el cache de consultas"
-#: server_status.php:294
+#: server_status.php:405
msgid "Show processes"
msgstr "Mostrar procesos"
-#: server_status.php:344
+#: server_status.php:455
#, fuzzy
#| msgid "Reset"
msgctxt "for Show status"
msgid "Reset"
msgstr "Reiniciar"
-#: server_status.php:350
+#: server_status.php:461
#, php-format
msgid "This MySQL server has been running for %s. It started up on %s."
msgstr "Este servidor MySQL ha estado activo durante %s. Se inició en %s."
-#: server_status.php:360
+#: server_status.php:471
msgid ""
"This MySQL server works as master and slave in replication"
"b> process."
msgstr ""
-#: server_status.php:362
+#: server_status.php:473
msgid "This MySQL server works as master in replication process."
msgstr ""
-#: server_status.php:364
+#: server_status.php:475
msgid "This MySQL server works as slave in replication process."
msgstr ""
-#: server_status.php:366
+#: server_status.php:477
msgid ""
"For further information about replication status on the server, please visit "
"the replication section."
msgstr ""
-#: server_status.php:383
+#: server_status.php:494
msgid ""
"Server traffic: These tables show the network traffic statistics of "
"this MySQL server since its startup."
@@ -6065,11 +6076,11 @@ msgstr ""
"Tráfico del servidor: Estas tablas muestran las estadísticas de "
"tráfico en la red de este servidor MySQL desde su inicio."
-#: server_status.php:388
+#: server_status.php:499
msgid "Traffic"
msgstr "Tráfico"
-#: server_status.php:388
+#: server_status.php:499
msgid ""
"On a busy server, the byte counters may overrun, so those statistics as "
"reported by the MySQL server may be incorrect."
@@ -6078,36 +6089,36 @@ msgstr ""
"pueden excederse. Por tanto, las estadísticas reportadas por el servidor "
"MySQL pueden estar incorrectas."
-#: server_status.php:389 server_status.php:434 server_status.php:497
-#: server_status.php:555
+#: server_status.php:500 server_status.php:545 server_status.php:608
+#: server_status.php:666
msgid "per hour"
msgstr "por hora"
-#: server_status.php:394
+#: server_status.php:505
msgid "Received"
msgstr "Recibido"
-#: server_status.php:404
+#: server_status.php:515
msgid "Sent"
msgstr "Enviado"
-#: server_status.php:433
+#: server_status.php:544
msgid "Connections"
msgstr "Conexiones"
-#: server_status.php:440
+#: server_status.php:551
msgid "max. concurrent connections"
msgstr "Número máx. de conexiones concurrentes"
-#: server_status.php:447
+#: server_status.php:558
msgid "Failed attempts"
msgstr "Intentos fallidos"
-#: server_status.php:461
+#: server_status.php:572
msgid "Aborted"
msgstr "Abortado"
-#: server_status.php:490
+#: server_status.php:601
#, php-format
msgid ""
"Query statistics: Since its startup, %s queries have been sent to the "
@@ -6116,19 +6127,19 @@ msgstr ""
"Estadísticas de consulta: Desde su inicio, %s consultas han sido "
"enviadas al servidor."
-#: server_status.php:498
+#: server_status.php:609
msgid "per minute"
msgstr "por minuto"
-#: server_status.php:499
+#: server_status.php:610
msgid "per second"
msgstr "por segundo"
-#: server_status.php:554
+#: server_status.php:665
msgid "Query type"
msgstr "Tipo de consulta"
-#: server_status.php:721
+#: server_status.php:832
#, fuzzy
msgid "Replication status"
msgstr "Replicación"
diff --git a/po/et.po b/po/et.po
index bab1c0b08..50b8e7071 100755
--- a/po/et.po
+++ b/po/et.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-06-04 16:07-0400\n"
+"POT-Creation-Date: 2010-06-08 12:32-0400\n"
"PO-Revision-Date: 2010-03-12 09:14+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: estonian \n"
@@ -14,11 +14,11 @@ msgstr ""
"X-Generator: Translate Toolkit 1.5.3\n"
#: browse_foreigners.php:38 browse_foreigners.php:59
-#: libraries/display_tbl.lib.php:417 server_privileges.php:1475
+#: libraries/display_tbl.lib.php:417 server_privileges.php:1514
msgid "Show all"
msgstr "Näita kõiki"
-#: browse_foreigners.php:82 libraries/common.lib.php:2304
+#: browse_foreigners.php:82 libraries/common.lib.php:2313
#: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:394
#: libraries/export/pdf.php:147 pdf_schema.php:283 pdf_schema.php:1123
#: pdf_schema.php:1139
@@ -37,8 +37,8 @@ msgstr ""
#: browse_foreigners.php:150 db_structure.php:79 db_structure.php:80
#: db_structure.php:91 db_structure.php:93 db_structure.php:104
-#: db_structure.php:106 libraries/common.lib.php:2822
-#: libraries/common.lib.php:2829 libraries/db_links.inc.php:75
+#: db_structure.php:106 libraries/common.lib.php:2831
+#: libraries/common.lib.php:2838 libraries/db_links.inc.php:75
#: libraries/tbl_links.inc.php:63
msgid "Search"
msgstr "Otsi"
@@ -48,7 +48,7 @@ msgstr "Otsi"
#: db_structure.php:567 js/messages.php:48 libraries/Config.class.php:1046
#: libraries/Theme_Manager.class.php:311
#: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719
-#: libraries/common.lib.php:1333 libraries/common.lib.php:2279
+#: libraries/common.lib.php:1335 libraries/common.lib.php:2288
#: libraries/display_change_password.lib.php:82
#: libraries/display_create_table.lib.php:63
#: libraries/display_export.lib.php:275 libraries/display_import.lib.php:276
@@ -59,9 +59,9 @@ msgstr "Otsi"
#: libraries/sql_query_form.lib.php:552 libraries/tbl_properties.inc.php:782
#: main.php:128 navigation.php:237 pdf_pages.php:292 pdf_pages.php:328
#: pdf_pages.php:530 pmd_pdf.php:116 server_binlog.php:142
-#: server_privileges.php:625 server_privileges.php:1585
-#: server_privileges.php:1932 server_privileges.php:1979
-#: server_privileges.php:2018 server_replication.php:235
+#: server_privileges.php:664 server_privileges.php:1624
+#: server_privileges.php:1971 server_privileges.php:2018
+#: server_privileges.php:2057 server_replication.php:235
#: server_replication.php:318 server_replication.php:341
#: server_synchronize.php:1209 tbl_change.php:330 tbl_change.php:1174
#: tbl_change.php:1211 tbl_indexes.php:254 tbl_operations.php:265
@@ -79,7 +79,7 @@ msgstr "Võtme nimi"
#: browse_foreigners.php:169 browse_foreigners.php:171
#: server_collations.php:55 server_collations.php:67 server_engines.php:59
-#: server_status.php:628
+#: server_status.php:739
msgid "Description"
msgstr "Kirjeldus"
@@ -120,7 +120,7 @@ msgstr "Väljade nimed"
#: libraries/db_structure.lib.php:60 libraries/export/htmlword.php:245
#: libraries/export/latex.php:360 libraries/export/odt.php:297
#: libraries/export/texytext.php:234 libraries/tbl_properties.inc.php:100
-#: pdf_schema.php:1263 pdf_schema.php:1284 server_privileges.php:2031
+#: pdf_schema.php:1263 pdf_schema.php:1284 server_privileges.php:2070
#: tbl_change.php:287 tbl_change.php:314 tbl_printview.php:143
#: tbl_printview.php:313 tbl_select.php:136 tbl_structure.php:178
#: tbl_structure.php:659 tbl_tracking.php:274 tbl_tracking.php:321
@@ -164,9 +164,9 @@ msgstr "Kommentaarid"
#: libraries/Index.class.php:386 libraries/export/htmlword.php:322
#: libraries/export/latex.php:430 libraries/export/odt.php:368
#: libraries/export/texytext.php:311 libraries/mult_submits.inc.php:263
-#: pdf_schema.php:1344 server_privileges.php:1529 server_privileges.php:1540
-#: server_privileges.php:1850 server_privileges.php:1855
-#: server_privileges.php:2148 sql.php:132 sql.php:194 tbl_printview.php:229
+#: pdf_schema.php:1344 server_privileges.php:1568 server_privileges.php:1579
+#: server_privileges.php:1889 server_privileges.php:1894
+#: server_privileges.php:2187 sql.php:132 sql.php:194 tbl_printview.php:229
#: tbl_structure.php:350 tbl_tracking.php:337 tbl_tracking.php:342
msgid "No"
msgstr "Ei"
@@ -180,9 +180,9 @@ msgstr "Ei"
#: libraries/mult_submits.inc.php:101 libraries/mult_submits.inc.php:106
#: libraries/mult_submits.inc.php:111 libraries/mult_submits.inc.php:262
#: libraries/mult_submits.inc.php:273 pdf_schema.php:1344
-#: server_databases.php:64 server_privileges.php:1526
-#: server_privileges.php:1540 server_privileges.php:1850
-#: server_privileges.php:1853 server_privileges.php:2148 sql.php:193
+#: server_databases.php:64 server_privileges.php:1565
+#: server_privileges.php:1579 server_privileges.php:1889
+#: server_privileges.php:1892 server_privileges.php:2187 sql.php:193
#: tbl_printview.php:229 tbl_structure.php:40 tbl_structure.php:350
#: tbl_tracking.php:335 tbl_tracking.php:340
msgid "Yes"
@@ -279,7 +279,7 @@ msgstr "Mine kopeeritud andmebaasile"
msgid "BLOB Repository"
msgstr ""
-#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1350
+#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1352
#: libraries/server_links.inc.php:49 server_processlist.php:59
#: tbl_tracking.php:596 test/theme.php:101
msgid "Status"
@@ -343,8 +343,8 @@ msgstr "Muuda PDF lehti"
#: db_printview.php:104 db_tracking.php:72 db_tracking.php:157
#: libraries/db_structure.lib.php:46 libraries/export/xml.php:328
-#: libraries/header.inc.php:126 pdf_pages.php:424 server_privileges.php:1626
-#: server_privileges.php:1682 server_privileges.php:1946
+#: libraries/header.inc.php:126 pdf_pages.php:424 server_privileges.php:1665
+#: server_privileges.php:1721 server_privileges.php:1985
#: server_synchronize.php:423 server_synchronize.php:866 tbl_tracking.php:592
#: test/theme.php:75
msgid "Table"
@@ -445,7 +445,7 @@ msgstr "Del"
#: db_qbe.php:370 db_qbe.php:451 db_qbe.php:522 db_qbe.php:553
#: libraries/display_import.lib.php:166 libraries/tbl_properties.inc.php:779
-#: server_privileges.php:258 tbl_change.php:1031 tbl_indexes.php:250
+#: server_privileges.php:297 tbl_change.php:1031 tbl_indexes.php:250
#: tbl_select.php:288
msgid "Or"
msgstr "või"
@@ -479,7 +479,7 @@ msgstr "Kasuta tabeleid"
msgid "SQL query on database %s:"
msgstr "SQL-päring andmebaasist %s:"
-#: db_qbe.php:934 libraries/common.lib.php:1223
+#: db_qbe.php:934 libraries/common.lib.php:1225
msgid "Submit Query"
msgstr "Lae päring"
@@ -518,7 +518,7 @@ msgstr "%s vaste(t) tabelis %s"
#: db_search.php:267 db_structure.php:77 db_structure.php:78
#: db_structure.php:90 db_structure.php:92 db_structure.php:103
-#: db_structure.php:105 libraries/common.lib.php:2824
+#: db_structure.php:105 libraries/common.lib.php:2833
#: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50
#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:467
msgid "Browse"
@@ -565,26 +565,26 @@ msgstr "Otsi tabeli(te)st:"
#: db_structure.php:81 db_structure.php:82 db_structure.php:94
#: db_structure.php:95 db_structure.php:107 db_structure.php:108
-#: libraries/common.lib.php:2823 libraries/sql_query_form.lib.php:334
+#: libraries/common.lib.php:2832 libraries/sql_query_form.lib.php:334
#: libraries/sql_query_form.lib.php:337 libraries/tbl_links.inc.php:76
msgid "Insert"
msgstr "Lisa"
#: db_structure.php:83 db_structure.php:96 db_structure.php:109
-#: libraries/common.lib.php:2820 libraries/common.lib.php:2827
+#: libraries/common.lib.php:2829 libraries/common.lib.php:2836
#: libraries/db_links.inc.php:63 libraries/export/htmlword.php:23
#: libraries/export/latex.php:33 libraries/export/latex.php:337
#: libraries/export/odt.php:32 libraries/export/sql.php:60
#: libraries/export/texytext.php:23 libraries/import.lib.php:1104
#: libraries/tbl_links.inc.php:56 pmd_general.php:134
-#: server_privileges.php:554 server_replication.php:315 tbl_tracking.php:269
+#: server_privileges.php:593 server_replication.php:315 tbl_tracking.php:269
msgid "Structure"
msgstr "Struktuur"
#: db_structure.php:84 db_structure.php:85 db_structure.php:97
#: db_structure.php:98 db_structure.php:110 db_structure.php:111
#: db_structure.php:545 db_structure.php:546 db_tracking.php:91
-#: libraries/Index.class.php:483 libraries/common.lib.php:1654
+#: libraries/Index.class.php:483 libraries/common.lib.php:1656
#: libraries/db_links.inc.php:100 libraries/mult_submits.inc.php:36
#: libraries/mult_submits.inc.php:73 libraries/tbl_links.inc.php:127
#: server_databases.php:352 tbl_structure.php:27 tbl_structure.php:151
@@ -594,7 +594,7 @@ msgstr "Kustuta"
#: db_structure.php:86 db_structure.php:87 db_structure.php:99
#: db_structure.php:100 db_structure.php:112 db_structure.php:113
-#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1653
+#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1655
#: libraries/mult_submits.inc.php:39 libraries/tbl_links.inc.php:105
msgid "Empty"
msgstr "Tühjenda"
@@ -636,7 +636,7 @@ msgstr "Vaade"
#: db_structure.php:485 libraries/db_structure.lib.php:49
#: libraries/server_links.inc.php:70 server_replication.php:33
-#: server_replication.php:164 server_status.php:258
+#: server_replication.php:164 server_status.php:369
msgid "Replication"
msgstr "Tiraeerimine"
@@ -652,20 +652,20 @@ msgstr "%s on vaikimisi varundusmootor sellele MySQL serverile."
#: db_structure.php:524 db_structure.php:541 db_structure.php:542
#: libraries/display_tbl.lib.php:2081 libraries/display_tbl.lib.php:2086
#: libraries/mult_submits.inc.php:16 server_databases.php:346
-#: server_databases.php:351 server_privileges.php:1557 tbl_structure.php:455
+#: server_databases.php:351 server_privileges.php:1596 tbl_structure.php:455
#: tbl_structure.php:464
msgid "With selected:"
msgstr "Valitud:"
#: db_structure.php:527 libraries/display_tbl.lib.php:2076
-#: server_databases.php:348 server_privileges.php:530
-#: server_privileges.php:1560 tbl_structure.php:458
+#: server_databases.php:348 server_privileges.php:569
+#: server_privileges.php:1599 tbl_structure.php:458
msgid "Check All"
msgstr "Märgista kõik"
#: db_structure.php:531 libraries/display_tbl.lib.php:2077
#: libraries/replication_gui.lib.php:33 server_databases.php:350
-#: server_privileges.php:533 server_privileges.php:1564 tbl_structure.php:462
+#: server_privileges.php:572 server_privileges.php:1603 tbl_structure.php:462
msgid "Uncheck All"
msgstr "Puhasta kõik"
@@ -703,7 +703,7 @@ msgstr "Analüüsi tabelit"
#: libraries/display_export.lib.php:83 libraries/display_tbl.lib.php:2094
#: libraries/display_tbl.lib.php:2225 libraries/mult_submits.inc.php:62
#: libraries/server_links.inc.php:84 libraries/tbl_links.inc.php:82
-#: pmd_pdf.php:84 pmd_pdf.php:109 server_privileges.php:1341
+#: pmd_pdf.php:84 pmd_pdf.php:109 server_privileges.php:1380
#: setup/frames/menu.inc.php:22 tbl_row_action.php:59
msgid "Export"
msgstr "Ekspordi"
@@ -722,8 +722,8 @@ msgstr "Kontrolli tabelit"
#: libraries/export/sql.php:342 libraries/export/texytext.php:84
#: libraries/export/xml.php:255 libraries/header.inc.php:106
#: libraries/header_printview.inc.php:58 server_databases.php:169
-#: server_privileges.php:1621 server_privileges.php:1682
-#: server_privileges.php:1940 server_processlist.php:56
+#: server_privileges.php:1660 server_privileges.php:1721
+#: server_privileges.php:1979 server_processlist.php:56
#: server_synchronize.php:1179 server_synchronize.php:1183
#: tbl_tracking.php:591 test/theme.php:65
msgid "Database"
@@ -745,8 +745,8 @@ msgstr ""
#: db_tracking.php:77 libraries/Index.class.php:440
#: libraries/db_structure.lib.php:53 server_databases.php:203
-#: server_privileges.php:1503 server_privileges.php:1686
-#: server_privileges.php:2034 tbl_structure.php:187
+#: server_privileges.php:1542 server_privileges.php:1725
+#: server_privileges.php:2073 tbl_structure.php:187
msgid "Action"
msgstr "Tegevus"
@@ -952,11 +952,11 @@ msgstr "Masin on tühi!"
msgid "The user name is empty!"
msgstr "Kasutajanimi on tühi!"
-#: js/messages.php:44 server_privileges.php:1197 user_password.php:70
+#: js/messages.php:44 server_privileges.php:1236 user_password.php:70
msgid "The password is empty!"
msgstr "Parool on tühi!"
-#: js/messages.php:45 server_privileges.php:1195 user_password.php:73
+#: js/messages.php:45 server_privileges.php:1234 user_password.php:73
msgid "The passwords aren't the same!"
msgstr "Paroolid ei ühti!"
@@ -1034,8 +1034,8 @@ msgid "Prev"
msgstr "Eelmine"
#. l10n: Display text for next month link in calendar
-#: js/messages.php:77 libraries/common.lib.php:2344
-#: libraries/common.lib.php:2347 libraries/display_tbl.lib.php:338
+#: js/messages.php:77 libraries/common.lib.php:2353
+#: libraries/common.lib.php:2356 libraries/display_tbl.lib.php:338
#: server_binlog.php:205 server_binlog.php:207 tbl_printview.php:424
#: tbl_structure.php:801
msgid "Next"
@@ -1111,27 +1111,27 @@ msgid "December"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:97 libraries/common.lib.php:1555
+#: js/messages.php:97 libraries/common.lib.php:1557
msgid "Jan"
msgstr "Jan"
#. l10n: Short month name
-#: js/messages.php:99 libraries/common.lib.php:1557
+#: js/messages.php:99 libraries/common.lib.php:1559
msgid "Feb"
msgstr "Veb"
#. l10n: Short month name
-#: js/messages.php:101 libraries/common.lib.php:1559
+#: js/messages.php:101 libraries/common.lib.php:1561
msgid "Mar"
msgstr "Mär"
#. l10n: Short month name
-#: js/messages.php:103 libraries/common.lib.php:1561
+#: js/messages.php:103 libraries/common.lib.php:1563
msgid "Apr"
msgstr "Apr"
#. l10n: Short month name
-#: js/messages.php:105 libraries/common.lib.php:1563
+#: js/messages.php:105 libraries/common.lib.php:1565
#, fuzzy
#| msgid "May"
msgctxt "Short month name"
@@ -1139,37 +1139,37 @@ msgid "May"
msgstr "Mai"
#. l10n: Short month name
-#: js/messages.php:107 libraries/common.lib.php:1565
+#: js/messages.php:107 libraries/common.lib.php:1567
msgid "Jun"
msgstr "Jun"
#. l10n: Short month name
-#: js/messages.php:109 libraries/common.lib.php:1567
+#: js/messages.php:109 libraries/common.lib.php:1569
msgid "Jul"
msgstr "Jul"
#. l10n: Short month name
-#: js/messages.php:111 libraries/common.lib.php:1569
+#: js/messages.php:111 libraries/common.lib.php:1571
msgid "Aug"
msgstr "Aug"
#. l10n: Short month name
-#: js/messages.php:113 libraries/common.lib.php:1571
+#: js/messages.php:113 libraries/common.lib.php:1573
msgid "Sep"
msgstr "Sep"
#. l10n: Short month name
-#: js/messages.php:115 libraries/common.lib.php:1573
+#: js/messages.php:115 libraries/common.lib.php:1575
msgid "Oct"
msgstr "Okt"
#. l10n: Short month name
-#: js/messages.php:117 libraries/common.lib.php:1575
+#: js/messages.php:117 libraries/common.lib.php:1577
msgid "Nov"
msgstr "Nov"
#. l10n: Short month name
-#: js/messages.php:119 libraries/common.lib.php:1577
+#: js/messages.php:119 libraries/common.lib.php:1579
msgid "Dec"
msgstr "Det"
@@ -1210,37 +1210,37 @@ msgid "Saturday"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:132 libraries/common.lib.php:1580
+#: js/messages.php:132 libraries/common.lib.php:1582
msgid "Sun"
msgstr "Püh"
#. l10n: Short week day name
-#: js/messages.php:134 libraries/common.lib.php:1582
+#: js/messages.php:134 libraries/common.lib.php:1584
msgid "Mon"
msgstr "Esm"
#. l10n: Short week day name
-#: js/messages.php:136 libraries/common.lib.php:1584
+#: js/messages.php:136 libraries/common.lib.php:1586
msgid "Tue"
msgstr "Tei"
#. l10n: Short week day name
-#: js/messages.php:138 libraries/common.lib.php:1586
+#: js/messages.php:138 libraries/common.lib.php:1588
msgid "Wed"
msgstr "Kol"
#. l10n: Short week day name
-#: js/messages.php:140 libraries/common.lib.php:1588
+#: js/messages.php:140 libraries/common.lib.php:1590
msgid "Thu"
msgstr "Nel"
#. l10n: Short week day name
-#: js/messages.php:142 libraries/common.lib.php:1590
+#: js/messages.php:142 libraries/common.lib.php:1592
msgid "Fri"
msgstr "Ree"
#. l10n: Short week day name
-#: js/messages.php:144 libraries/common.lib.php:1592
+#: js/messages.php:144 libraries/common.lib.php:1594
msgid "Sat"
msgstr "Lau"
@@ -1385,7 +1385,7 @@ msgid "Comment"
msgstr "Kommentaarid"
#: libraries/Index.class.php:466 libraries/common.lib.php:616
-#: libraries/common.lib.php:1199 libraries/display_tbl.lib.php:1117
+#: libraries/common.lib.php:1201 libraries/display_tbl.lib.php:1117
#: libraries/import.lib.php:1087 libraries/import.lib.php:1111
#: pdf_pages.php:285 setup/frames/index.inc.php:124
#: setup/lib/messages.inc.php:352 tbl_row_action.php:69
@@ -1409,7 +1409,7 @@ msgid ""
msgstr ""
#: libraries/List_Database.class.php:431 libraries/server_links.inc.php:41
-#: server_databases.php:88 server_privileges.php:1621
+#: server_databases.php:88 server_privileges.php:1660
#: setup/lib/messages.inc.php:110 test/theme.php:93
msgid "Databases"
msgstr "Andmebaasid"
@@ -1744,7 +1744,7 @@ msgid "Documentation"
msgstr "Dokumentatsioon"
#: libraries/common.lib.php:595 libraries/header_printview.inc.php:61
-#: server_processlist.php:60 server_status.php:247
+#: server_processlist.php:60 server_status.php:358
msgid "SQL query"
msgstr "SQL-päring"
@@ -1760,130 +1760,130 @@ msgstr "Seleta SQL-i"
msgid "Skip Explain SQL"
msgstr "Jäta SQL-i seletamine vahele"
-#: libraries/common.lib.php:1212
+#: libraries/common.lib.php:1214
msgid "Without PHP Code"
msgstr "ilma PHP koodita"
-#: libraries/common.lib.php:1215 setup/lib/messages.inc.php:355
+#: libraries/common.lib.php:1217 setup/lib/messages.inc.php:355
msgid "Create PHP Code"
msgstr "Loo PHP kood"
-#: libraries/common.lib.php:1233 server_status.php:341
+#: libraries/common.lib.php:1235 server_status.php:452
#: setup/lib/messages.inc.php:354
msgid "Refresh"
msgstr "Uuenda"
-#: libraries/common.lib.php:1242
+#: libraries/common.lib.php:1244
msgid "Skip Validate SQL"
msgstr "Jäta SQL-i kontroll vahele"
-#: libraries/common.lib.php:1245 setup/lib/messages.inc.php:356 sql.php:518
+#: libraries/common.lib.php:1247 setup/lib/messages.inc.php:356 sql.php:518
msgid "Validate SQL"
msgstr "Kontrolli SQL-i"
-#: libraries/common.lib.php:1276
+#: libraries/common.lib.php:1278
msgid "Inline edit of this query"
msgstr ""
-#: libraries/common.lib.php:1278
+#: libraries/common.lib.php:1280
#, fuzzy
#| msgid "Engines"
msgid "Inline"
msgstr "Mootor"
-#: libraries/common.lib.php:1332 libraries/common.lib.php:1347
+#: libraries/common.lib.php:1334 libraries/common.lib.php:1349
msgid "Profiling"
msgstr ""
-#: libraries/common.lib.php:1351 libraries/tbl_triggers.lib.php:28
+#: libraries/common.lib.php:1353 libraries/tbl_triggers.lib.php:28
#: server_processlist.php:58
msgid "Time"
msgstr "Aeg"
#. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "B"
msgstr "Baiti"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "KiB"
msgstr "KB"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "MiB"
msgstr "MB"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "GiB"
msgstr "GB"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "TiB"
msgstr "TB"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "PiB"
msgstr "PB"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "EiB"
msgstr "EB"
#. l10n: Thousands separator
-#: libraries/common.lib.php:1417
+#: libraries/common.lib.php:1419
msgid ","
msgstr ","
#. l10n: Decimal separator
-#: libraries/common.lib.php:1419
+#: libraries/common.lib.php:1421
msgid "."
msgstr "."
#. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string
-#: libraries/common.lib.php:1596
+#: libraries/common.lib.php:1598
#: libraries/transformations/text_plain__dateformat.inc.php:34
msgid "%B %d, %Y at %I:%M %p"
msgstr "%d.%m.%Y kell %H:%M:%S"
-#: libraries/common.lib.php:1898
+#: libraries/common.lib.php:1907
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "%s päeva, %s tundi, %s minutit ja %s sekundit"
-#: libraries/common.lib.php:2313 libraries/common.lib.php:2316
-#: libraries/display_tbl.lib.php:290 server_status.php:608
+#: libraries/common.lib.php:2322 libraries/common.lib.php:2325
+#: libraries/display_tbl.lib.php:290 server_status.php:719
msgid "Begin"
msgstr "Algus"
-#: libraries/common.lib.php:2314 libraries/common.lib.php:2317
+#: libraries/common.lib.php:2323 libraries/common.lib.php:2326
#: libraries/display_tbl.lib.php:291 server_binlog.php:168
#: server_binlog.php:170
msgid "Previous"
msgstr "Eelmine"
-#: libraries/common.lib.php:2345 libraries/common.lib.php:2348
+#: libraries/common.lib.php:2354 libraries/common.lib.php:2357
#: libraries/display_tbl.lib.php:353
msgid "End"
msgstr "Lõpp"
-#: libraries/common.lib.php:2421
+#: libraries/common.lib.php:2430
#, php-format
msgid "Jump to database "%s"."
msgstr "Hüppa andmebaasile "%s"."
-#: libraries/common.lib.php:2441
+#: libraries/common.lib.php:2450
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr "See %s funktionaalsus on mõjutatud tuntud viga, vaata %s"
-#: libraries/common.lib.php:2821 libraries/common.lib.php:2828
+#: libraries/common.lib.php:2830 libraries/common.lib.php:2837
#: libraries/db_links.inc.php:68 libraries/export/sql.php:25
#: libraries/import/sql.php:18 libraries/server_links.inc.php:45
#: libraries/tbl_links.inc.php:60 querywindow.php:99 test/theme.php:97
msgid "SQL"
msgstr "SQL"
-#: libraries/common.lib.php:2830 libraries/db_links.inc.php:104
+#: libraries/common.lib.php:2839 libraries/db_links.inc.php:104
#: libraries/tbl_links.inc.php:95 libraries/tbl_links.inc.php:117
#: view_operations.php:89
msgid "Operations"
@@ -1939,8 +1939,8 @@ msgid "Import"
msgstr "Import"
#: libraries/db_links.inc.php:111 libraries/server_links.inc.php:66
-#: server_privileges.php:72 server_privileges.php:1683
-#: server_privileges.php:2032 test/theme.php:117
+#: server_privileges.php:111 server_privileges.php:1722
+#: server_privileges.php:2071 test/theme.php:117
msgid "Privileges"
msgstr "Privileegid"
@@ -1986,22 +1986,22 @@ msgid "Change password"
msgstr "Muuda parooli"
#: libraries/display_change_password.lib.php:35
-#: libraries/replication_gui.lib.php:345 server_privileges.php:768
+#: libraries/replication_gui.lib.php:345 server_privileges.php:807
msgid "No Password"
msgstr "Ilma paroolita"
#: libraries/display_change_password.lib.php:41
#: libraries/replication_gui.lib.php:59 libraries/replication_gui.lib.php:60
#: libraries/replication_gui.lib.php:335 libraries/replication_gui.lib.php:339
-#: libraries/replication_gui.lib.php:349 server_privileges.php:757
-#: server_privileges.php:761 server_privileges.php:772
-#: server_privileges.php:1499 server_synchronize.php:1175
+#: libraries/replication_gui.lib.php:349 server_privileges.php:796
+#: server_privileges.php:800 server_privileges.php:811
+#: server_privileges.php:1538 server_synchronize.php:1175
msgid "Password"
msgstr "Parool"
#: libraries/display_change_password.lib.php:46
#: libraries/replication_gui.lib.php:353 libraries/replication_gui.lib.php:356
-#: server_privileges.php:776 server_privileges.php:779
+#: server_privileges.php:815 server_privileges.php:818
msgid "Re-type"
msgstr "Sisesta uuesti"
@@ -2016,12 +2016,12 @@ msgid "MySQL 4.0 compatible"
msgstr "MySQL 4.0-iga ühilduv"
#: libraries/display_change_password.lib.php:72
-#: libraries/replication_gui.lib.php:360 server_privileges.php:783
+#: libraries/replication_gui.lib.php:360 server_privileges.php:822
msgid "Generate Password"
msgstr "Genereeri parool"
#: libraries/display_change_password.lib.php:75
-#: libraries/replication_gui.lib.php:363 server_privileges.php:786
+#: libraries/replication_gui.lib.php:363 server_privileges.php:825
msgid "Generate"
msgstr "Genereeri"
@@ -2034,8 +2034,8 @@ msgstr "Loo uus andmebaas"
msgid "Create"
msgstr "Loo"
-#: libraries/display_create_database.lib.php:40 server_privileges.php:74
-#: server_privileges.php:1388 server_replication.php:35
+#: libraries/display_create_database.lib.php:40 server_privileges.php:113
+#: server_privileges.php:1427 server_replication.php:35
msgid "No Privileges"
msgstr "Ei oma ühtegi privileegi"
@@ -2126,7 +2126,7 @@ msgstr "Pakkimine"
#: libraries/display_export.lib.php:240 libraries/display_import.lib.php:197
#: libraries/display_import.lib.php:210 libraries/display_tbl.lib.php:530
#: libraries/export/sql.php:868 libraries/tbl_properties.inc.php:575
-#: server_privileges.php:1836 server_processlist.php:75
+#: server_privileges.php:1875 server_processlist.php:75
msgid "None"
msgstr "Pole"
@@ -2454,7 +2454,7 @@ msgstr ""
msgid "Buffer Pool"
msgstr "Puhverdusala"
-#: libraries/engines/innodb.lib.php:145 server_status.php:306
+#: libraries/engines/innodb.lib.php:145 server_status.php:417
msgid "InnoDB Status"
msgstr "InnoDB staatus"
@@ -2463,8 +2463,8 @@ msgid "Buffer Pool Usage"
msgstr "Puhverdusala kasutamine"
#: libraries/engines/innodb.lib.php:194 server_databases.php:137
-#: server_databases.php:305 server_status.php:414 server_status.php:475
-#: server_status.php:496 tbl_printview.php:351 tbl_structure.php:696
+#: server_databases.php:305 server_status.php:525 server_status.php:586
+#: server_status.php:607 tbl_printview.php:351 tbl_structure.php:696
msgid "Total"
msgstr "Kokku"
@@ -2797,7 +2797,7 @@ msgstr "Microsoft Word 2000"
#: libraries/export/latex.php:201 libraries/export/odt.php:48
#: libraries/export/sql.php:106 libraries/export/sql.php:868
#: libraries/export/texytext.php:27 server_databases.php:127
-#: server_privileges.php:537 server_replication.php:316 tbl_printview.php:317
+#: server_privileges.php:576 server_replication.php:316 tbl_printview.php:317
#: tbl_structure.php:665
msgid "Data"
msgstr "Andmed"
@@ -2847,9 +2847,9 @@ msgstr "MIME-tüüp"
#: libraries/export/xml.php:102 libraries/header_printview.inc.php:57
#: libraries/replication_gui.lib.php:63 libraries/replication_gui.lib.php:174
#: libraries/replication_gui.lib.php:269 libraries/replication_gui.lib.php:272
-#: libraries/replication_gui.lib.php:329 server_privileges.php:692
-#: server_privileges.php:695 server_privileges.php:751
-#: server_privileges.php:1498 server_privileges.php:2030
+#: libraries/replication_gui.lib.php:329 server_privileges.php:731
+#: server_privileges.php:734 server_privileges.php:790
+#: server_privileges.php:1537 server_privileges.php:2069
#: server_processlist.php:55 server_synchronize.php:1159
msgid "Host"
msgstr "Masin"
@@ -3209,845 +3209,6 @@ msgstr "Pole"
msgid "Convert to Kana"
msgstr ""
-#. l10n: Text direction, use either ltr or rtl
-#: libraries/messages.inc.php:19
-msgid "ltr"
-msgstr "ltr"
-
-#: libraries/messages.inc.php:21
-msgid "Content of table __TABLE__"
-msgstr "Tabeli __TABLE__ sisu"
-
-#: libraries/messages.inc.php:22
-msgid "(continued)"
-msgstr "(jätkub)"
-
-#: libraries/messages.inc.php:23
-msgid "Structure of table __TABLE__"
-msgstr "Tabeli __TABLE__ struktuur"
-
-#: libraries/messages.inc.php:25 server_privileges.php:227
-msgid "Includes all privileges except GRANT."
-msgstr "Sisaldab kõiki privileege peale GRANT."
-
-#: libraries/messages.inc.php:26 server_privileges.php:153
-#: server_privileges.php:476
-msgid "Allows altering the structure of existing tables."
-msgstr "Lubab muuta olemasolevate tabelite struktuure."
-
-#: libraries/messages.inc.php:27 server_privileges.php:169
-#: server_privileges.php:482
-msgid "Allows altering and dropping stored routines."
-msgstr "Lubabu salvestatud rutiinide muutmise ja kustutamise."
-
-#: libraries/messages.inc.php:28 server_privileges.php:145
-#: server_privileges.php:475
-msgid "Allows creating new databases and tables."
-msgstr "Lubab luua uusi andmebaase ja tabeleid."
-
-#: libraries/messages.inc.php:29 server_privileges.php:168
-#: server_privileges.php:481
-msgid "Allows creating stored routines."
-msgstr "Lubab salvestatud rutiinide loomise."
-
-#: libraries/messages.inc.php:30 server_privileges.php:475
-msgid "Allows creating new tables."
-msgstr "Lubab luua uusi tabeleid."
-
-#: libraries/messages.inc.php:31 server_privileges.php:156
-#: server_privileges.php:479
-msgid "Allows creating temporary tables."
-msgstr "Lubab luua ajutisi tabeleid."
-
-#: libraries/messages.inc.php:32 server_privileges.php:170
-#: server_privileges.php:515
-msgid "Allows creating, dropping and renaming user accounts."
-msgstr "Lubab kasutajakontode loomise, kustutamise ja muutmise."
-
-#: libraries/messages.inc.php:33 server_privileges.php:160
-#: server_privileges.php:164 server_privileges.php:487
-#: server_privileges.php:491
-msgid "Allows creating new views."
-msgstr "Lubab uute vaadete loomist."
-
-#: libraries/messages.inc.php:34 server_privileges.php:144
-#: server_privileges.php:467
-msgid "Allows deleting data."
-msgstr "Lubab kustutada infot."
-
-#: libraries/messages.inc.php:35 server_privileges.php:146
-#: server_privileges.php:478
-msgid "Allows dropping databases and tables."
-msgstr "Lubab kustuada andmebaase ja tabeleid."
-
-#: libraries/messages.inc.php:36 server_privileges.php:478
-msgid "Allows dropping tables."
-msgstr "Lubab kustutada tabeleid.."
-
-#: libraries/messages.inc.php:37 server_privileges.php:161
-#: server_privileges.php:495
-msgid "Allows to set up events for the event scheduler"
-msgstr ""
-
-#: libraries/messages.inc.php:38 server_privileges.php:171
-#: server_privileges.php:483
-msgid "Allows executing stored routines."
-msgstr "Lubab salvestatud rutiinide käivituse."
-
-#: libraries/messages.inc.php:39 server_privileges.php:150
-#: server_privileges.php:470
-msgid "Allows importing data from and exporting data into files."
-msgstr "Lubab andmete eksportimist faili ja andmete importimist failidest."
-
-#: libraries/messages.inc.php:40 server_privileges.php:501
-msgid ""
-"Allows adding users and privileges without reloading the privilege tables."
-msgstr ""
-"Lubab lisada kasutajaid ja privileege ilma privileges tabelit "
-"taaskäivitamata."
-
-#: libraries/messages.inc.php:41 server_privileges.php:152
-#: server_privileges.php:477
-msgid "Allows creating and dropping indexes."
-msgstr "Lubab luua ja kustutada indekseid."
-
-#: libraries/messages.inc.php:42 server_privileges.php:142
-#: server_privileges.php:403 server_privileges.php:465
-msgid "Allows inserting and replacing data."
-msgstr "Lubab lisada ja muuta infot."
-
-#: libraries/messages.inc.php:43 server_privileges.php:157
-#: server_privileges.php:510
-msgid "Allows locking tables for the current thread."
-msgstr "Lubab lukustada tabeleid aktiivse päringu tarbeks."
-
-#: libraries/messages.inc.php:44 server_privileges.php:607
-#: server_privileges.php:609
-msgid "Limits the number of new connections the user may open per hour."
-msgstr "Limiteerib ühenduste arvu tunnis kasutaja jaoks."
-
-#: libraries/messages.inc.php:45 server_privileges.php:595
-#: server_privileges.php:597
-msgid "Limits the number of queries the user may send to the server per hour."
-msgstr "Limiteerib päringute arvu tunnis kasutaja jaoks."
-
-#: libraries/messages.inc.php:46 server_privileges.php:601
-#: server_privileges.php:603
-msgid ""
-"Limits the number of commands that change any table or database the user may "
-"execute per hour."
-msgstr ""
-"Limiteerib käskude, mis muudavad suvalist tabelit või andmebaasi, arvu "
-"tunnis kasutaja jaoks"
-
-#: libraries/messages.inc.php:47 server_privileges.php:613
-#: server_privileges.php:615
-msgid "Limits the number of simultaneous connections the user may have."
-msgstr "Piirab ühenduste arvu mida kasutajal võib korraga olla."
-
-#: libraries/messages.inc.php:48 server_privileges.php:149
-#: server_privileges.php:505
-msgid "Allows viewing processes of all users"
-msgstr ""
-
-#: libraries/messages.inc.php:49 server_privileges.php:151
-#: server_privileges.php:409 server_privileges.php:511
-msgid "Has no effect in this MySQL version."
-msgstr "Ei oma antud MySQL versioonis mingit effekti."
-
-#: libraries/messages.inc.php:50 server_privileges.php:147
-#: server_privileges.php:506
-msgid "Allows reloading server settings and flushing the server's caches."
-msgstr "Lubab taaslaadida serveri seadmeid ja puhastada serveri cachet."
-
-#: libraries/messages.inc.php:51 server_privileges.php:159
-#: server_privileges.php:513
-msgid "Allows the user to ask where the slaves / masters are."
-msgstr "Lubab kasutajal küsida kus on slaved/masterid."
-
-#: libraries/messages.inc.php:52 server_privileges.php:158
-#: server_privileges.php:514
-msgid "Needed for the replication slaves."
-msgstr "Vajalik slavede paljundamiseks."
-
-#: libraries/messages.inc.php:53 server_privileges.php:141
-#: server_privileges.php:400 server_privileges.php:464
-msgid "Allows reading data."
-msgstr "Lubab lugeda infot."
-
-#: libraries/messages.inc.php:54 server_privileges.php:154
-#: server_privileges.php:508
-msgid "Gives access to the complete list of databases."
-msgstr "Annab ligipääsu kogu andmebaasilistingule."
-
-#: libraries/messages.inc.php:55 server_privileges.php:165
-#: server_privileges.php:167 server_privileges.php:480
-msgid "Allows performing SHOW CREATE VIEW queries."
-msgstr "Lubab SHOW CREATE VIEW päringute käivitamise."
-
-#: libraries/messages.inc.php:56 server_privileges.php:148
-#: server_privileges.php:507
-msgid "Allows shutting down the server."
-msgstr "Lubab serverit maha lasta."
-
-#: libraries/messages.inc.php:57 server_privileges.php:155
-#: server_privileges.php:504
-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 ""
-"Lubab ühenduda, isegi kui maksimaalne ühenduste arv on saavutatud; Vajalik "
-"enamike administratiivsete operatsioonide jaoks, nagu globaalsete muutujate "
-"seadmine või teiste kasutajate ühenduste tapmine."
-
-#: libraries/messages.inc.php:58 server_privileges.php:162
-#: server_privileges.php:496
-#, fuzzy
-msgid "Allows creating and dropping triggers"
-msgstr "Lubab luua ja kustutada indekseid."
-
-#: libraries/messages.inc.php:59 server_privileges.php:143
-#: server_privileges.php:406 server_privileges.php:466
-msgid "Allows changing data."
-msgstr "Lubab muuta infot."
-
-#: libraries/messages.inc.php:60 server_privileges.php:221
-msgid "No privileges."
-msgstr "Mitte ühtegi privileegi."
-
-#: libraries/messages.inc.php:62
-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 ""
-"Ülekannete number mida kasutab ajutise binaar logi vahemälu kuid ületab "
-"binlog_cache_size suurust ja kasutatakse ajutist faili et salvestada "
-"ülekande Käske (päringuid)."
-
-#: libraries/messages.inc.php:63
-msgid "The number of transactions that used the temporary binary log cache."
-msgstr "Ülekannete number mis kasutasid ajutist binaar logi vahemälu."
-
-#: libraries/messages.inc.php:64
-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 "
-"to increase the tmp_table_size value to cause temporary tables to be memory-"
-"based instead of disk-based."
-msgstr ""
-"Ajutiste tabelite arv, loodud automaatselt serveri poolt, päringuid "
-"käivitades. Kui Created_tmp_disk_tables on suur, sa võid tahta suurendada "
-"tmp_table_size väärtust et olla mälul baseeruv mitte kettal."
-
-#: libraries/messages.inc.php:65
-msgid "How many temporary files mysqld has created."
-msgstr "Mitu ajutist faili mysqld on loonud."
-
-#: libraries/messages.inc.php:66
-msgid ""
-"The number of in-memory temporary tables created automatically by the server "
-"while executing statements."
-msgstr ""
-"Ajutiste mälul baseeruvate tabelite arv, loodud automaatselt serveri poolt, "
-"päringuid käivitades."
-
-#: libraries/messages.inc.php:67
-msgid ""
-"The number of rows written with INSERT DELAYED for which some error occurred "
-"(probably duplicate key)."
-msgstr ""
-"Mitu rida on loodud käsuga INSERT DELAYED milles toimus viga (arvatavasti "
-"korduv võti)."
-
-#: libraries/messages.inc.php:68
-msgid ""
-"The number of INSERT DELAYED handler threads in use. Every different table "
-"on which one uses INSERT DELAYED gets its own thread."
-msgstr ""
-"Mitu INSERT DELAYED töötleja (handler) lõimu on kasutuses. Iga erinev tabel "
-"mis kasutab INSERT DELAYED saab oma lõimu."
-
-#: libraries/messages.inc.php:69
-msgid "The number of INSERT DELAYED rows written."
-msgstr "INSERT DELAYED ridasid loodud."
-
-#: libraries/messages.inc.php:70
-msgid "The number of executed FLUSH statements."
-msgstr "FLUSH käskude arv."
-
-#: libraries/messages.inc.php:71
-msgid "The number of internal COMMIT statements."
-msgstr "Sisemiste COMMIT käskude arv."
-
-#: libraries/messages.inc.php:72
-msgid "The number of times a row was deleted from a table."
-msgstr "Mitu korda rida kustutati tabelist."
-
-#: libraries/messages.inc.php:73
-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 ""
-"MySQLi server võib küsida \"NDB Cluster storage engine\" (klaster salvestus "
-"mootor) kas ta teab tabelit etteantud nimega. Seda kutsutakse avastus"
-"(discovery). Handler_discover annab mitu korda on tabel leitud."
-
-#: libraries/messages.inc.php:74
-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 ""
-"Mitu korda loeti esimene tulemus indeksist. Kui see on suur, see soovitab et "
-"server teeb palju täis indeksi skaneerimist; näitkes, SELECT col1 FROM foo, "
-"arvates et col1 indekseeritud."
-
-#: libraries/messages.inc.php:75
-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 ""
-"Mitu korda loeti rida võtme järgi. Kui see on suur, see on hea näitaja et "
-"sinu päringud ja tabelid on korralikult indekseeritud."
-
-#: libraries/messages.inc.php:76
-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 ""
-"Mitu korda saadi käsk lugeda võtme järgi järgmine rida. See on suurenev kui "
-"sa pärid indekseeritud piiratud välja või sa teed indeksi skaneerimist."
-
-#: libraries/messages.inc.php:77
-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 ""
-"Mitu korda saadi käsk lugeda võtme järgi eelnev rida. See lugemise meetod on "
-"peamiselt kasutatud optimiseerimiseks ORDER BY ... DESC."
-
-#: libraries/messages.inc.php:78
-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 "
-"probably have a lot of queries that require MySQL to scan whole tables or "
-"you have joins that don't use keys properly."
-msgstr ""
-"Mitu korda saadi käsk lugeda kindel rida. See on suur kui sa teed palju "
-"päringuid mis vajavad tulemuse sorteerimist. Sa kasutad kindlasti päringuid "
-"mis vajavad MySQLi et skaneerida kogu tabelit või liited(joins) mis ei "
-"kasuta võtmeid korralikult."
-
-#: libraries/messages.inc.php:79
-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 "
-"tables are not properly indexed or that your queries are not written to take "
-"advantage of the indexes you have."
-msgstr ""
-"Mitu korda saadi käsk lugeda järgmine rida andmefailist. See on suur kui sa "
-"teed palju tabeli skaneerimisi. Enamasti see soovitab et sinu tabelid pole "
-"korralikult indekseeritud või sinu päringud pole kirjutatud nii et võtta "
-"eeliseid sinu loodud indeksitest."
-
-#: libraries/messages.inc.php:80
-msgid "The number of internal ROLLBACK statements."
-msgstr "Mitu korda käivitati sisemine ROLLBACK lausung."
-
-#: libraries/messages.inc.php:81
-msgid "The number of requests to update a row in a table."
-msgstr "Mitu korda uuendati tabeli rida."
-
-#: libraries/messages.inc.php:82
-msgid "The number of requests to insert a row in a table."
-msgstr "Mitu korda lisati uus rida tabelisse."
-
-#: libraries/messages.inc.php:83
-msgid "The number of pages containing data (dirty or clean)."
-msgstr "Mitu lehekülge sisaldab andmeid (puhast või musta)."
-
-#: libraries/messages.inc.php:84
-msgid "The number of pages currently dirty."
-msgstr "Mitu lehekülge on mustad."
-
-#: libraries/messages.inc.php:85
-msgid "The number of buffer pool pages that have been requested to be flushed."
-msgstr "Mitu puhvri lehekülge on määratud puhastamisele."
-
-#: libraries/messages.inc.php:86
-msgid "The number of free pages."
-msgstr "Mitu puu lehekülge."
-
-#: libraries/messages.inc.php:87
-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 ""
-"Mitu lukus lehte on InnoDB puhvris. Need lehed on hetkel lugemisel või "
-"kirjutamisel ja pole võimalik puhastada või kustutada mingil põhjusel."
-
-#: libraries/messages.inc.php:88
-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 "
-"be calculated as Innodb_buffer_pool_pages_total - "
-"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data."
-msgstr ""
-"Mitu lehte on hetkel kasutuses kuna nad reserveeritud nagu rea lukustus või "
-"kohanemisvõimeline indeks. Seda summat saab ka arvutada nii "
-"Innodb_buffer_pool_pages_total - Innodb_buffer_pool_pages_free - "
-"Innodb_buffer_pool_pages_data."
-
-#: libraries/messages.inc.php:89
-msgid "Total size of buffer pool, in pages."
-msgstr "Kogu puhvris suurus, lehtedes."
-
-#: libraries/messages.inc.php:90
-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 ""
-"Mitu InnoDB juhuslikku(random) ette-lugemisi on töös. See juhtub kui päring "
-"on skaneerida suur osa tabelist kuid juhuslikus järjekorras."
-
-#: libraries/messages.inc.php:91
-msgid ""
-"The number of sequential read-aheads InnoDB initiated. This happens when "
-"InnoDB does a sequential full table scan."
-msgstr ""
-"Mitu InnoDB järjestikku ette-lugemisi on töös. See juhtub kui InnoDB teeb "
-"järjestikulist kogu tabeli skaneerimist."
-
-#: libraries/messages.inc.php:92
-msgid "The number of logical read requests InnoDB has done."
-msgstr "Mitu loogilist lugemist InnoDB on teinud."
-
-#: libraries/messages.inc.php:93
-msgid ""
-"The number of logical reads that InnoDB could not satisfy from buffer pool "
-"and had to do a single-page read."
-msgstr ""
-"Mitu loogilist lugemist InnoDB polnud võimalik puhvris poolt rahuldada ja "
-"tegi üksiku lehe lugemise."
-
-#: libraries/messages.inc.php:94
-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 "
-"available, it's necessary to wait for pages to be flushed first. This "
-"counter counts instances of these waits. If the buffer pool size was set "
-"properly, this value should be small."
-msgstr ""
-"Tavaliselt, kirjutab InnoDB puhvri taustal. Kuid, kui vajalik kirjutada leht "
-"ja ühtegi puhast lehte pole saadaval, on vajalik oodata et lehed oleksid "
-"enne ühtlustatud. See This loendur loeb kõiki neid ootamisi. Kui puhvri "
-"suurus on seatud korralikult, se number peaks olema väike."
-
-#: libraries/messages.inc.php:95
-msgid "The number writes done to the InnoDB buffer pool."
-msgstr "Mitu korda kirjutas InnoDB puhvrisse."
-
-#: libraries/messages.inc.php:96
-msgid "The number of fsync() operations so far."
-msgstr "Mitu fsync() operatsiooni siiani."
-
-#: libraries/messages.inc.php:97
-msgid "The current number of pending fsync() operations."
-msgstr "Mitu hetkel ootel fsync() operatsiooni."
-
-#: libraries/messages.inc.php:98
-msgid "The current number of pending reads."
-msgstr "Mitu ootel lugemist."
-
-#: libraries/messages.inc.php:99
-msgid "The current number of pending writes."
-msgstr "Mitu ootel kirjutamist."
-
-#: libraries/messages.inc.php:100
-msgid "The amount of data read so far, in bytes."
-msgstr "Suurus kui palju andmeid on loetud siiani, baitides."
-
-#: libraries/messages.inc.php:101
-msgid "The total number of data reads."
-msgstr "Mitu korda loetud."
-
-#: libraries/messages.inc.php:102
-msgid "The total number of data writes."
-msgstr "Mitu korda andmeid kirjutati."
-
-#: libraries/messages.inc.php:103
-msgid "The amount of data written so far, in bytes."
-msgstr "Suurus palju andmeid on kirjutatud, baitides."
-
-#: libraries/messages.inc.php:104
-msgid "The number of pages that have been written for doublewrite operations."
-msgstr ""
-"Mitu korda tehti topeltkirjutamist ja mitu lehte on kirjutatud just sellel "
-"põhjusel."
-
-#: libraries/messages.inc.php:105
-msgid "The number of doublewrite operations that have been performed."
-msgstr ""
-"Mitu korda tehti topeltkirjutamise kirjutamist ja mitu lehte on kirjutatud "
-"just sellel põhjusel."
-
-#: libraries/messages.inc.php:106
-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 ""
-"Mitu ootamist on olnud sellepärast et logi puhver oli liiga väike ja pidi "
-"ootama enne ühtlustamist et jätkata."
-
-#: libraries/messages.inc.php:107
-msgid "The number of log write requests."
-msgstr "Mitu logi kirjutamise soovi."
-
-#: libraries/messages.inc.php:108
-msgid "The number of physical writes to the log file."
-msgstr "Mitu füüsilist kirjutamist logi faili."
-
-#: libraries/messages.inc.php:109
-msgid "The number of fsync() writes done to the log file."
-msgstr "Mitu fsyncs kirjutamist tehtud logi faili."
-
-#: libraries/messages.inc.php:110
-msgid "The number of pending log file fsyncs."
-msgstr "Mitu ootel logi faili fsyncs."
-
-#: libraries/messages.inc.php:111
-msgid "Pending log file writes."
-msgstr "ootel logifaili kirjutamisi."
-
-#: libraries/messages.inc.php:112
-msgid "The number of bytes written to the log file."
-msgstr "Mitu baiti on kirjutatud logi faili."
-
-#: libraries/messages.inc.php:113
-msgid "The number of pages created."
-msgstr "Lehti loodud."
-
-#: libraries/messages.inc.php:114
-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 ""
-"Sisse-kompileeritud InnoDB lehe suurus (vaikimisi 16KB). Paljud väärtused on "
-"loetud lehtedes; lehe suurus lubab neid lihtsalt arvutada baitidesse."
-
-#: libraries/messages.inc.php:115
-msgid "The number of pages read."
-msgstr "Lehti loetud."
-
-#: libraries/messages.inc.php:116
-msgid "The number of pages written."
-msgstr "Lehti kirjutatud."
-
-#: libraries/messages.inc.php:117
-msgid "The number of row locks currently being waited for."
-msgstr "Mitu rea lukustamist on hetkel ootel."
-
-#: libraries/messages.inc.php:118
-msgid "The average time to acquire a row lock, in milliseconds."
-msgstr "Keskimne aeg pärides rea lukustust, millisekundites."
-
-#: libraries/messages.inc.php:119
-msgid "The total time spent in acquiring row locks, in milliseconds."
-msgstr "Aeg mis on raisatud pärides rea lukustust, millisekundites."
-
-#: libraries/messages.inc.php:120
-msgid "The maximum time to acquire a row lock, in milliseconds."
-msgstr "Maksimaalne aeg pärides rea lukustust, millisekundites."
-
-#: libraries/messages.inc.php:121
-msgid "The number of times a row lock had to be waited for."
-msgstr "Mitu korda pidi rea lukustus ootama."
-
-#: libraries/messages.inc.php:122
-msgid "The number of rows deleted from InnoDB tables."
-msgstr "Mitu rida kustutatud InnoDB tabelitest."
-
-#: libraries/messages.inc.php:123
-msgid "The number of rows inserted in InnoDB tables."
-msgstr "Mitu rida lisati InnoDB tabelitesse."
-
-#: libraries/messages.inc.php:124
-msgid "The number of rows read from InnoDB tables."
-msgstr "Mitu rida loetud InnoDB tabelitest."
-
-#: libraries/messages.inc.php:125
-msgid "The number of rows updated in InnoDB tables."
-msgstr "Mitu rida uuendati InnoDB tabelites."
-
-#: libraries/messages.inc.php:126
-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 ""
-"Mitu võtme plokki on võtme vahemälus muutunud kui pole veel kettale "
-"kirjutatud. Tuntud nagu Not_flushed_key_blocks."
-
-#: libraries/messages.inc.php:127
-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 ""
-"Mitu kasutamatta võtme plokki on võtme vahemälus. Sa saad kasutatda seda "
-"väärtust et teada saada kui palju võtme vahemälust on kasutuses."
-
-#: libraries/messages.inc.php:128
-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 ""
-"Mitu kasutatud plokki on võtme vahemälus. See väärtus näitab maksimaalse "
-"plokkide arvu mis on kunagi olnud kasutuses."
-
-#: libraries/messages.inc.php:129
-msgid "The number of requests to read a key block from the cache."
-msgstr "Mitu päringut et lugeda võtme plokk vahemälust."
-
-#: libraries/messages.inc.php:130
-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 ""
-"Mitu füüsilist lugemist lugeda võtme plokk kettalt. kui Key_reads on suur, "
-"siis sinu key_buffer_size näitaja on kindlasti väike. Vahemälus möödaminek "
-"on võimalik arvutada nii Key_reads/Key_read_requests."
-
-#: libraries/messages.inc.php:131
-msgid "The number of requests to write a key block to the cache."
-msgstr "Mitu päringut et kirjutada võtme plokk vahemällu."
-
-#: libraries/messages.inc.php:132
-msgid "The number of physical writes of a key block to disk."
-msgstr "Mitu füüsilist kirjutamist kirjutada võtme plokk kettale."
-
-#: libraries/messages.inc.php:133
-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 ""
-"Viimase kompileeritud päringu arvuatud tulemus päringu optimiseerija vastu. "
-"Kasulik võrdlemaks erinevaid päringu plaane ühelt ja samalt päringult. "
-"Vaikimisi väärtus 0 tähendab et päring pole veel töödeldud."
-
-#: libraries/messages.inc.php:134
-msgid "The number of rows waiting to be written in INSERT DELAYED queues."
-msgstr "Mitu rida on ootel INSERT DELAYED päringutes."
-
-#: libraries/messages.inc.php:135
-msgid ""
-"The number of tables that have been opened. If opened tables is big, your "
-"table cache value is probably too small."
-msgstr ""
-"Mitu tabelit on avatud. Avatud tabeleid on palju siis sinu tabeli vahemälus "
-"kindlasti liiga väike."
-
-#: libraries/messages.inc.php:136
-msgid "The number of files that are open."
-msgstr "Mitu faili on avatud."
-
-#: libraries/messages.inc.php:137
-msgid "The number of streams that are open (used mainly for logging)."
-msgstr "Mitu voogu on hetkel avatud (enamasti logimiseks)."
-
-#: libraries/messages.inc.php:138
-msgid "The number of tables that are open."
-msgstr "Mitu tabelit on hetkel avatud."
-
-#: libraries/messages.inc.php:139
-msgid "The number of free memory blocks in query cache."
-msgstr "Vabad mälu plokid päringute vahemälus."
-
-#: libraries/messages.inc.php:140
-msgid "The amount of free memory for query cache."
-msgstr "Vaba mälu päringute vahemälus."
-
-#: libraries/messages.inc.php:141
-msgid "The number of cache hits."
-msgstr "Leitud Puhvrist."
-
-#: libraries/messages.inc.php:142
-msgid "The number of queries added to the cache."
-msgstr "Mitu päringut on lisatud vahemällu."
-
-#: libraries/messages.inc.php:143
-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 "
-"cache size. The query cache uses a least recently used (LRU) strategy to "
-"decide which queries to remove from the cache."
-msgstr ""
-"Mitu päringut kustutati puhvrist et vabastada mälu uutele päringutele. See "
-"informatsioon aitab sind päringute-puhvri suuruse seadistamisel. Päringute "
-"vahemälu kasutab viimati kasutatud strateegiat(LRU) et otsustada millised "
-"päringud eemaldada puhvrist."
-
-#: libraries/messages.inc.php:144
-msgid ""
-"The number of non-cached queries (not cachable, or not cached due to the "
-"query_cache_type setting)."
-msgstr ""
-"Mitu mitte-puhverdatud päringut (pole salvestatud vahemällu, või sõltuvalt "
-"query_cache_type sätetest mitte puhverdatud)."
-
-#: libraries/messages.inc.php:145
-msgid "The number of queries registered in the cache."
-msgstr "Mitu päringut on registreeritud vahemälus."
-
-#: libraries/messages.inc.php:146
-msgid "The total number of blocks in the query cache."
-msgstr "Plokkide koguarv päringute vahemälus."
-
-#: libraries/messages.inc.php:147
-msgctxt "$strShowStatusReset"
-msgid "Reset"
-msgstr "Nulli"
-
-#: libraries/messages.inc.php:148
-msgid "The status of failsafe replication (not yet implemented)."
-msgstr ""
-"See staatus on tõrkekindel tiraþeerimine (failsafe replication) (pole veel "
-"kasutuses)."
-
-#: libraries/messages.inc.php:149
-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 ""
-"Liited(joins) mis ei kasuta indekseid. Kui see näitaja on 0, peaksid "
-"ettevaatlikult kontrollima oma tabelites indekseid."
-
-#: libraries/messages.inc.php:150
-msgid "The number of joins that used a range search on a reference table."
-msgstr "Liidete arv mida kasutati piirkonna otsimisel eelistatud tabelist."
-
-#: libraries/messages.inc.php:151
-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 ""
-"Ilma võtmeta liidete(joins) arv mis konrollivad peale igat rida võtme "
-"kasutamist. (Kui see pole 0 siis peaksid ettevaatlikult kontrollima oma "
-"tabelite indekseid.)"
-
-#: libraries/messages.inc.php:152
-msgid ""
-"The number of joins that used ranges on the first table. (It's normally not "
-"critical even if this is big.)"
-msgstr ""
-"Liidete arv mida kasutati esimese tabeli piirides. (Pole eriti kriitiline "
-"kui see on väga suur.)"
-
-#: libraries/messages.inc.php:153
-msgid "The number of joins that did a full scan of the first table."
-msgstr "Liidete arv mis tegid täielikku skaneerimist esimesest tabelist."
-
-#: libraries/messages.inc.php:154
-msgid "The number of temporary tables currently open by the slave SQL thread."
-msgstr ""
-"Ajutiste tabelite arv mis on hetkel avatud alam-lõimu(replication slave) "
-"poolt."
-
-#: libraries/messages.inc.php:155
-msgid ""
-"Total (since startup) number of times the replication slave SQL thread has "
-"retried transactions."
-msgstr ""
-"Kogusumma (alates käivitamisest) mitu korda tiraþeerimise(replication) SQL "
-"alam-lõim(replication slave) proovis ülekandeid."
-
-#: libraries/messages.inc.php:156
-msgid "This is ON if this server is a slave that is connected to a master."
-msgstr ""
-"Kui see on ON kui serveril on alam server(masin) mis on ühenduses masteriga."
-
-#: libraries/messages.inc.php:157
-msgid ""
-"The number of threads that have taken more than slow_launch_time seconds to "
-"create."
-msgstr "Lõimude arv mis võtsid rohkem aega käivitamiseks kui slow_launch_time."
-
-#: libraries/messages.inc.php:158
-msgid ""
-"The number of queries that have taken more than long_query_time seconds."
-msgstr "Päringute arv mis võtsid rohkem aega kui long_query_time sekundites."
-
-#: libraries/messages.inc.php:159
-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 ""
-"Edukate ühinemiste(merge) arv millega lühike algoritm on tegelenud. Kui see "
-"väärtuse on suur, sa peaksid mõtlema sort_buffer_size väärtuse suurendamist."
-
-#: libraries/messages.inc.php:160
-msgid "The number of sorts that were done with ranges."
-msgstr "Sorteerimiste arv mis on tehtud piirkonna ulatuses."
-
-#: libraries/messages.inc.php:161
-msgid "The number of sorted rows."
-msgstr "Sorteritud ridade arv."
-
-#: libraries/messages.inc.php:162
-msgid "The number of sorts that were done by scanning the table."
-msgstr "Sorteerimiste arv mis on tehtud tabeli skaneerimist kasutades."
-
-#: libraries/messages.inc.php:163
-msgid "The number of times that a table lock was acquired immediately."
-msgstr "Mitu korda tabeli lukustus jõustus koheselt."
-
-#: libraries/messages.inc.php:164
-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 "
-"should first optimize your queries, and then either split your table or "
-"tables or use replication."
-msgstr ""
-"Mitu korda tabeli lukustus ei jõustunud koheselt ja pandi ootele. Kui see on "
-"suur ja jõudlusega on probleeme, sa peaksid optimiseerima oma päringuid või "
-"poolitama oma tabelid või kasutama tiraþeerimist(replication)."
-
-#: libraries/messages.inc.php:165
-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 ""
-"Lõimude arv Lõimude vahemälus. Vahemälu kasutamist(hit) on võimalik arvutada "
-"nii Threads_created/Connections. Kui see on punane paksid suurendama "
-"thread_cache_size suurust."
-
-#: libraries/messages.inc.php:166
-msgid "The number of currently open connections."
-msgstr "Hetkel avatud ühendusi."
-
-#: libraries/messages.inc.php:167
-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 "
-"doesn't give a notable performance improvement if you have a good thread "
-"implementation.)"
-msgstr ""
-"Lõimude arv mis on loodud ühenduste haldamiseks. Kui Threads_created on suur "
-"siis suurenda thread_cache_size väärtust. (Tavaliselt see ei anna märgatavat "
-"kiiruse tõusu kui Lõimude teostus on korralik.)"
-
-#: libraries/messages.inc.php:168
-msgid "The number of threads that are not sleeping."
-msgstr "Lõimude arv mis mis hetkel ei maga."
-
#: libraries/mult_submits.inc.php:76 libraries/tbl_properties.inc.php:513
#: tbl_structure.php:29 tbl_structure.php:153 tbl_structure.php:157
#: tbl_structure.php:473
@@ -4364,8 +3525,8 @@ msgstr ""
#: libraries/replication_gui.lib.php:55 libraries/replication_gui.lib.php:56
#: libraries/replication_gui.lib.php:249 libraries/replication_gui.lib.php:252
-#: libraries/replication_gui.lib.php:259 server_privileges.php:672
-#: server_privileges.php:675 server_privileges.php:682
+#: libraries/replication_gui.lib.php:259 server_privileges.php:711
+#: server_privileges.php:714 server_privileges.php:721
#: server_synchronize.php:1171
msgid "User name"
msgstr "Kasutajanimi"
@@ -4386,11 +3547,11 @@ msgid "Slave status"
msgstr "Näita alluvate(slave) staatust"
#: libraries/replication_gui.lib.php:114 libraries/sql_query_form.lib.php:445
-#: server_status.php:626 server_variables.php:52
+#: server_status.php:737 server_variables.php:52
msgid "Variable"
msgstr "Muutuja"
-#: libraries/replication_gui.lib.php:115 server_status.php:627
+#: libraries/replication_gui.lib.php:115 server_status.php:738
#: tbl_change.php:324 tbl_printview.php:370 tbl_select.php:139
#: tbl_structure.php:729
msgid "Value"
@@ -4410,41 +3571,58 @@ msgstr ""
msgid "Add slave replication user"
msgstr ""
-#: libraries/replication_gui.lib.php:254 server_privileges.php:677
+#: libraries/replication_gui.lib.php:254 server_privileges.php:716
msgid "Any user"
msgstr "Kõik kasutajad"
#: libraries/replication_gui.lib.php:255 libraries/replication_gui.lib.php:323
-#: libraries/replication_gui.lib.php:346 server_privileges.php:678
-#: server_privileges.php:745 server_privileges.php:769
-#: server_privileges.php:1889 server_privileges.php:1919
+#: libraries/replication_gui.lib.php:346 server_privileges.php:717
+#: server_privileges.php:784 server_privileges.php:808
+#: server_privileges.php:1928 server_privileges.php:1958
msgid "Use text field"
msgstr "Kasutage tekstivälja"
-#: libraries/replication_gui.lib.php:302 server_privileges.php:725
+#: libraries/replication_gui.lib.php:302 server_privileges.php:764
msgid "Any host"
msgstr "Kõik masinad"
-#: libraries/replication_gui.lib.php:306 server_privileges.php:729
+#: libraries/replication_gui.lib.php:306 server_privileges.php:768
msgid "Local"
msgstr "Lokaalne"
-#: libraries/replication_gui.lib.php:312 server_privileges.php:734
+#: libraries/replication_gui.lib.php:312 server_privileges.php:773
msgid "This Host"
msgstr "Antud host"
-#: libraries/replication_gui.lib.php:318 server_privileges.php:740
+#: libraries/replication_gui.lib.php:318 server_privileges.php:779
msgid "Use Host Table"
msgstr "Kasuta host tabelit"
-#: libraries/replication_gui.lib.php:331 server_privileges.php:753
+#: libraries/replication_gui.lib.php:331 server_privileges.php:792
msgid ""
"When Host table is used, this field is ignored and values stored in Host "
"table are used instead."
msgstr ""
-#: libraries/select_lang.lib.php:480 libraries/select_lang.lib.php:486
-#: libraries/select_lang.lib.php:492
+#. l10n: Text direction, use either ltr or rtl
+#: libraries/select_lang.lib.php:491
+msgid "ltr"
+msgstr "ltr"
+
+#: libraries/select_lang.lib.php:493
+msgid "Content of table __TABLE__"
+msgstr "Tabeli __TABLE__ sisu"
+
+#: libraries/select_lang.lib.php:494
+msgid "(continued)"
+msgstr "(jätkub)"
+
+#: libraries/select_lang.lib.php:495
+msgid "Structure of table __TABLE__"
+msgstr "Tabeli __TABLE__ struktuur"
+
+#: libraries/select_lang.lib.php:500 libraries/select_lang.lib.php:506
+#: libraries/select_lang.lib.php:512
#, php-format
msgid "Unknown language: %1$s."
msgstr "Tundmatu keel: %1$s."
@@ -4455,7 +3633,7 @@ msgid "Servers"
msgstr "Serverid"
#: libraries/server_links.inc.php:53 server_engines.php:112
-#: server_engines.php:116 server_status.php:304 test/theme.php:105
+#: server_engines.php:116 server_status.php:415 test/theme.php:105
msgid "Variables"
msgstr "Muutujad"
@@ -4468,7 +3646,7 @@ msgid "Engines"
msgstr "Mootor"
#: libraries/server_links.inc.php:76 server_binlog.php:110
-#: server_status.php:253 test/theme.php:121
+#: server_status.php:364 test/theme.php:121
msgid "Binary log"
msgstr "Binaarne logi"
@@ -4948,8 +4126,8 @@ msgstr "Tühista"
msgid "Protocol version"
msgstr "Protokolli versioon"
-#: main.php:189 server_privileges.php:1350 server_privileges.php:1497
-#: server_privileges.php:1611 server_privileges.php:2029
+#: main.php:189 server_privileges.php:1389 server_privileges.php:1536
+#: server_privileges.php:1650 server_privileges.php:2068
#: server_processlist.php:54
msgid "User"
msgstr "Kasutaja"
@@ -5327,7 +4505,7 @@ msgstr "andmebaasid %s kustutati õnnestunult."
msgid "Databases statistics"
msgstr "Andmebaaside statistika"
-#: server_databases.php:117 server_status.php:260
+#: server_databases.php:117 server_status.php:371
#: setup/lib/messages.inc.php:117
msgid "Tables"
msgstr "Tabelid"
@@ -5346,6 +4524,16 @@ msgstr ""
msgid "Jump to database"
msgstr "Pole andmebaase"
+#: server_databases.php:267
+msgid "Not replicated"
+msgstr ""
+
+#: server_databases.php:273
+#, fuzzy
+#| msgid "Replication"
+msgid "Replicated"
+msgstr "Tiraeerimine"
+
#: server_databases.php:289
#, php-format
msgid "Check privileges for database "%s"."
@@ -5379,143 +4567,333 @@ msgstr "Varundusmootorid"
msgid "View dump (schema) of databases"
msgstr "Näita andmebaaside sisu (skeemi)"
-#: server_privileges.php:263 server_privileges.php:264
+#: server_privileges.php:24 server_privileges.php:266
+msgid "Includes all privileges except GRANT."
+msgstr "Sisaldab kõiki privileege peale GRANT."
+
+#: server_privileges.php:25 server_privileges.php:192
+#: server_privileges.php:515
+msgid "Allows altering the structure of existing tables."
+msgstr "Lubab muuta olemasolevate tabelite struktuure."
+
+#: server_privileges.php:26 server_privileges.php:208
+#: server_privileges.php:521
+msgid "Allows altering and dropping stored routines."
+msgstr "Lubabu salvestatud rutiinide muutmise ja kustutamise."
+
+#: server_privileges.php:27 server_privileges.php:184
+#: server_privileges.php:514
+msgid "Allows creating new databases and tables."
+msgstr "Lubab luua uusi andmebaase ja tabeleid."
+
+#: server_privileges.php:28 server_privileges.php:207
+#: server_privileges.php:520
+msgid "Allows creating stored routines."
+msgstr "Lubab salvestatud rutiinide loomise."
+
+#: server_privileges.php:29 server_privileges.php:514
+msgid "Allows creating new tables."
+msgstr "Lubab luua uusi tabeleid."
+
+#: server_privileges.php:30 server_privileges.php:195
+#: server_privileges.php:518
+msgid "Allows creating temporary tables."
+msgstr "Lubab luua ajutisi tabeleid."
+
+#: server_privileges.php:31 server_privileges.php:209
+#: server_privileges.php:554
+msgid "Allows creating, dropping and renaming user accounts."
+msgstr "Lubab kasutajakontode loomise, kustutamise ja muutmise."
+
+#: server_privileges.php:32 server_privileges.php:199
+#: server_privileges.php:203 server_privileges.php:526
+#: server_privileges.php:530
+msgid "Allows creating new views."
+msgstr "Lubab uute vaadete loomist."
+
+#: server_privileges.php:33 server_privileges.php:183
+#: server_privileges.php:506
+msgid "Allows deleting data."
+msgstr "Lubab kustutada infot."
+
+#: server_privileges.php:34 server_privileges.php:185
+#: server_privileges.php:517
+msgid "Allows dropping databases and tables."
+msgstr "Lubab kustuada andmebaase ja tabeleid."
+
+#: server_privileges.php:35 server_privileges.php:517
+msgid "Allows dropping tables."
+msgstr "Lubab kustutada tabeleid.."
+
+#: server_privileges.php:36 server_privileges.php:200
+#: server_privileges.php:534
+msgid "Allows to set up events for the event scheduler"
+msgstr ""
+
+#: server_privileges.php:37 server_privileges.php:210
+#: server_privileges.php:522
+msgid "Allows executing stored routines."
+msgstr "Lubab salvestatud rutiinide käivituse."
+
+#: server_privileges.php:38 server_privileges.php:189
+#: server_privileges.php:509
+msgid "Allows importing data from and exporting data into files."
+msgstr "Lubab andmete eksportimist faili ja andmete importimist failidest."
+
+#: server_privileges.php:39 server_privileges.php:540
+msgid ""
+"Allows adding users and privileges without reloading the privilege tables."
+msgstr ""
+"Lubab lisada kasutajaid ja privileege ilma privileges tabelit "
+"taaskäivitamata."
+
+#: server_privileges.php:40 server_privileges.php:191
+#: server_privileges.php:516
+msgid "Allows creating and dropping indexes."
+msgstr "Lubab luua ja kustutada indekseid."
+
+#: server_privileges.php:41 server_privileges.php:181
+#: server_privileges.php:442 server_privileges.php:504
+msgid "Allows inserting and replacing data."
+msgstr "Lubab lisada ja muuta infot."
+
+#: server_privileges.php:42 server_privileges.php:196
+#: server_privileges.php:549
+msgid "Allows locking tables for the current thread."
+msgstr "Lubab lukustada tabeleid aktiivse päringu tarbeks."
+
+#: server_privileges.php:43 server_privileges.php:646
+#: server_privileges.php:648
+msgid "Limits the number of new connections the user may open per hour."
+msgstr "Limiteerib ühenduste arvu tunnis kasutaja jaoks."
+
+#: server_privileges.php:44 server_privileges.php:634
+#: server_privileges.php:636
+msgid "Limits the number of queries the user may send to the server per hour."
+msgstr "Limiteerib päringute arvu tunnis kasutaja jaoks."
+
+#: server_privileges.php:45 server_privileges.php:640
+#: server_privileges.php:642
+msgid ""
+"Limits the number of commands that change any table or database the user may "
+"execute per hour."
+msgstr ""
+"Limiteerib käskude, mis muudavad suvalist tabelit või andmebaasi, arvu "
+"tunnis kasutaja jaoks"
+
+#: server_privileges.php:46 server_privileges.php:652
+#: server_privileges.php:654
+msgid "Limits the number of simultaneous connections the user may have."
+msgstr "Piirab ühenduste arvu mida kasutajal võib korraga olla."
+
+#: server_privileges.php:47 server_privileges.php:188
+#: server_privileges.php:544
+msgid "Allows viewing processes of all users"
+msgstr ""
+
+#: server_privileges.php:48 server_privileges.php:190
+#: server_privileges.php:448 server_privileges.php:550
+msgid "Has no effect in this MySQL version."
+msgstr "Ei oma antud MySQL versioonis mingit effekti."
+
+#: server_privileges.php:49 server_privileges.php:186
+#: server_privileges.php:545
+msgid "Allows reloading server settings and flushing the server's caches."
+msgstr "Lubab taaslaadida serveri seadmeid ja puhastada serveri cachet."
+
+#: server_privileges.php:50 server_privileges.php:198
+#: server_privileges.php:552
+msgid "Allows the user to ask where the slaves / masters are."
+msgstr "Lubab kasutajal küsida kus on slaved/masterid."
+
+#: server_privileges.php:51 server_privileges.php:197
+#: server_privileges.php:553
+msgid "Needed for the replication slaves."
+msgstr "Vajalik slavede paljundamiseks."
+
+#: server_privileges.php:52 server_privileges.php:180
+#: server_privileges.php:439 server_privileges.php:503
+msgid "Allows reading data."
+msgstr "Lubab lugeda infot."
+
+#: server_privileges.php:53 server_privileges.php:193
+#: server_privileges.php:547
+msgid "Gives access to the complete list of databases."
+msgstr "Annab ligipääsu kogu andmebaasilistingule."
+
+#: server_privileges.php:54 server_privileges.php:204
+#: server_privileges.php:206 server_privileges.php:519
+msgid "Allows performing SHOW CREATE VIEW queries."
+msgstr "Lubab SHOW CREATE VIEW päringute käivitamise."
+
+#: server_privileges.php:55 server_privileges.php:187
+#: server_privileges.php:546
+msgid "Allows shutting down the server."
+msgstr "Lubab serverit maha lasta."
+
+#: server_privileges.php:56 server_privileges.php:194
+#: server_privileges.php:543
+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 ""
+"Lubab ühenduda, isegi kui maksimaalne ühenduste arv on saavutatud; Vajalik "
+"enamike administratiivsete operatsioonide jaoks, nagu globaalsete muutujate "
+"seadmine või teiste kasutajate ühenduste tapmine."
+
+#: server_privileges.php:57 server_privileges.php:201
+#: server_privileges.php:535
+#, fuzzy
+msgid "Allows creating and dropping triggers"
+msgstr "Lubab luua ja kustutada indekseid."
+
+#: server_privileges.php:58 server_privileges.php:182
+#: server_privileges.php:445 server_privileges.php:505
+msgid "Allows changing data."
+msgstr "Lubab muuta infot."
+
+#: server_privileges.php:59 server_privileges.php:260
+msgid "No privileges."
+msgstr "Mitte ühtegi privileegi."
+
+#: server_privileges.php:302 server_privileges.php:303
#, fuzzy
#| msgid "None"
msgctxt "None privileges"
msgid "None"
msgstr "Pole"
-#: server_privileges.php:392 server_privileges.php:527
-#: server_privileges.php:1679 server_privileges.php:1685
+#: server_privileges.php:431 server_privileges.php:566
+#: server_privileges.php:1718 server_privileges.php:1724
msgid "Table-specific privileges"
msgstr "Tabel-spetsiifilised privileegid"
-#: server_privileges.php:393 server_privileges.php:535
-#: server_privileges.php:1501
+#: server_privileges.php:432 server_privileges.php:574
+#: server_privileges.php:1540
msgid " Note: MySQL privilege names are expressed in English "
msgstr " Märkus: MySQL privileegide nimed on ingliskeelsed "
-#: server_privileges.php:524 server_privileges.php:1500
+#: server_privileges.php:563 server_privileges.php:1539
msgid "Global privileges"
msgstr "Globaalsed privileegid"
-#: server_privileges.php:526 server_privileges.php:1679
+#: server_privileges.php:565 server_privileges.php:1718
msgid "Database-specific privileges"
msgstr "Andmebaas-spetsiifilised privileegid"
-#: server_privileges.php:571
+#: server_privileges.php:610
msgid "Administration"
msgstr "Administreerimine"
-#: server_privileges.php:591
+#: server_privileges.php:630
msgid "Resource limits"
msgstr "Ressursilimiidid"
-#: server_privileges.php:592
+#: server_privileges.php:631
msgid "Note: Setting these options to 0 (zero) removes the limit."
msgstr "Märkus: Märkides antud seaded 0 (null), eemaldate limiidi."
-#: server_privileges.php:669
+#: server_privileges.php:708
msgid "Login Information"
msgstr "Logimise informatsioon"
-#: server_privileges.php:763
+#: server_privileges.php:802
msgid "Do not change the password"
msgstr "Ärge muutke parooli"
-#: server_privileges.php:804 server_privileges.php:2166
+#: server_privileges.php:843 server_privileges.php:2205
#, fuzzy
#| msgid "No user(s) found."
msgid "No user found."
msgstr "Ei leitud ühtegi kasutajat."
-#: server_privileges.php:848
+#: server_privileges.php:887
#, php-format
msgid "The user %s already exists!"
msgstr "Kasutaja %s on juba olemas!"
-#: server_privileges.php:931
+#: server_privileges.php:970
msgid "You have added a new user."
msgstr "Te lisasite uue kasutaja."
-#: server_privileges.php:1152
+#: server_privileges.php:1191
#, php-format
msgid "You have updated the privileges for %s."
msgstr "Te uuendasite privileege %s-l."
-#: server_privileges.php:1176
+#: server_privileges.php:1215
#, php-format
msgid "You have revoked the privileges for %s"
msgstr "Te võtsite tagasi privileegid %s-lt"
-#: server_privileges.php:1212
+#: server_privileges.php:1251
#, php-format
msgid "The password for %s was changed successfully."
msgstr "Kasutaja %s parool vahetati õnnestunult."
-#: server_privileges.php:1232
+#: server_privileges.php:1271
#, php-format
msgid "Deleting %s"
msgstr "Kustutan %s"
-#: server_privileges.php:1243
+#: server_privileges.php:1282
msgid "No users selected for deleting!"
msgstr "Ühtegi kasutajat pole valitud kustutamiseks!"
-#: server_privileges.php:1246
+#: server_privileges.php:1285
msgid "Reloading the privileges"
msgstr "Taaslaen privileege"
-#: server_privileges.php:1261
+#: server_privileges.php:1300
msgid "The selected users have been deleted successfully."
msgstr "Valitud kasutajad on õnnestunult kustutatud."
-#: server_privileges.php:1296
+#: server_privileges.php:1335
msgid "The privileges were reloaded successfully."
msgstr "Privileegid taaslaeti edukalt."
-#: server_privileges.php:1324 server_privileges.php:1610
+#: server_privileges.php:1363 server_privileges.php:1649
msgid "Edit Privileges"
msgstr "Muuda privileege"
-#: server_privileges.php:1333
+#: server_privileges.php:1372
msgid "Revoke"
msgstr "Võta tagasi"
-#: server_privileges.php:1365
+#: server_privileges.php:1404
msgid "User overview"
msgstr "Kasutaja ülevaade"
-#: server_privileges.php:1502 server_privileges.php:1684
-#: server_privileges.php:2033
+#: server_privileges.php:1541 server_privileges.php:1723
+#: server_privileges.php:2072
msgid "Grant"
msgstr "Õigused"
-#: server_privileges.php:1521 server_privileges.php:2123
+#: server_privileges.php:1560 server_privileges.php:2162
msgid "Any"
msgstr "kõik"
-#: server_privileges.php:1570 server_privileges.php:1594
-#: server_privileges.php:1988 server_privileges.php:2177
+#: server_privileges.php:1609 server_privileges.php:1633
+#: server_privileges.php:2027 server_privileges.php:2216
msgid "Add a new User"
msgstr "Lisa uus kasutaja"
-#: server_privileges.php:1575
+#: server_privileges.php:1614
msgid "Remove selected users"
msgstr "Eemalda valitud kasutajad"
-#: server_privileges.php:1578
+#: server_privileges.php:1617
msgid "Revoke all active privileges from the users and delete them afterwards."
msgstr ""
"Eemalda kõik aktiivsed privileegid kasutajatelt ning kustuta nad pärast seda."
-#: server_privileges.php:1579 server_privileges.php:1580
-#: server_privileges.php:1581
+#: server_privileges.php:1618 server_privileges.php:1619
+#: server_privileges.php:1620
msgid "Drop the databases that have the same names as the users."
msgstr "Kustuta andmebaasid millel on samad nimed nagu kasutajatel."
-#: server_privileges.php:1597
+#: server_privileges.php:1636
#, php-format
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
@@ -5528,95 +4906,95 @@ msgstr ""
"juhul kui olete käsitsi muudatusi teinud. Sellisel juhul peaksite te "
"privileegid %staaslaadima%s enne jätkamist."
-#: server_privileges.php:1645
+#: server_privileges.php:1684
msgid "The selected user was not found in the privilege table."
msgstr "Valitud kasutajat ei leitud privileegide tabelist."
-#: server_privileges.php:1685
+#: server_privileges.php:1724
msgid "Column-specific privileges"
msgstr "Väli-spetsiifilised privileegid"
-#: server_privileges.php:1886
+#: server_privileges.php:1925
msgid "Add privileges on the following database"
msgstr "Lisa privileegid antud andmebaasile"
-#: server_privileges.php:1904
+#: server_privileges.php:1943
msgid "Wildcards % and _ should be escaped with a \\ to use them literally"
msgstr ""
"Metamärgid _ ja % peaksid olema varjestatud märgiga \\, kui soovite neid "
"sisestada"
-#: server_privileges.php:1907
+#: server_privileges.php:1946
msgid "Add privileges on the following table"
msgstr "Lisa privileegid antud tabelile"
-#: server_privileges.php:1964
+#: server_privileges.php:2003
msgid "Change Login Information / Copy User"
msgstr "Vaheta logimisinformatsiooni / Kopeeri kasutaja"
-#: server_privileges.php:1967
+#: server_privileges.php:2006
msgid "Create a new user with the same privileges and ..."
msgstr "Loo uus kasutaja samade privileegidega ja ..."
-#: server_privileges.php:1969
+#: server_privileges.php:2008
msgid "... keep the old one."
msgstr "... hoia vana alles."
-#: server_privileges.php:1970
+#: server_privileges.php:2009
msgid " ... delete the old one from the user tables."
msgstr " ... kustuta vana kasutajate tabelist."
-#: server_privileges.php:1971
+#: server_privileges.php:2010
msgid ""
" ... revoke all active privileges from the old one and delete it afterwards."
msgstr ""
" ... kanna kõik aktiivsed privileegid üle vanast ja kustuta see pärast."
-#: server_privileges.php:1972
+#: server_privileges.php:2011
msgid ""
" ... delete the old one from the user tables and reload the privileges "
"afterwards."
msgstr ""
" ... kustuta vana kasutajate tabelist ja taaslae privileegid pärast seda."
-#: server_privileges.php:1994
+#: server_privileges.php:2033
msgid "Database for user"
msgstr "Andmebaas kasutajale"
-#: server_privileges.php:1998
+#: server_privileges.php:2037
#, fuzzy
#| msgid "None"
msgctxt "Create none database for user"
msgid "None"
msgstr "Pole"
-#: server_privileges.php:1999
+#: server_privileges.php:2038
msgid "Create database with same name and grant all privileges"
msgstr "Loo sama nimega andmebaas ja anna kõik õigused"
-#: server_privileges.php:2000
+#: server_privileges.php:2039
msgid "Grant all privileges on wildcard name (username\\_%)"
msgstr "Anna kõik õigused Metanimele (username\\_%)"
-#: server_privileges.php:2003
+#: server_privileges.php:2042
#, fuzzy, php-format
msgid "Grant all privileges on database "%s""
msgstr "Kontrolli privileege andmebaasile "%s"."
-#: server_privileges.php:2026
+#: server_privileges.php:2065
#, php-format
msgid "Users having access to "%s""
msgstr "Kasutajad kellel on ligipääs "%s""
-#: server_privileges.php:2134
+#: server_privileges.php:2173
msgid "global"
msgstr "globaalne"
-#: server_privileges.php:2136
+#: server_privileges.php:2175
msgid "database-specific"
msgstr "andmebaasipõhine"
-#: server_privileges.php:2138
+#: server_privileges.php:2177
msgid "wildcard"
msgstr "metamärk"
@@ -5664,7 +5042,7 @@ msgstr ""
msgid "This server is configured as master in a replication process."
msgstr ""
-#: server_replication.php:184 server_status.php:281
+#: server_replication.php:184 server_status.php:392
#, fuzzy
msgid "Show master status"
msgstr "Näita alluvate(slave) staatust"
@@ -5804,103 +5182,735 @@ msgid ""
"like to configure it?"
msgstr ""
+#: server_status.php:40
+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 ""
+"Ülekannete number mida kasutab ajutise binaar logi vahemälu kuid ületab "
+"binlog_cache_size suurust ja kasutatakse ajutist faili et salvestada "
+"ülekande Käske (päringuid)."
+
+#: server_status.php:41
+msgid "The number of transactions that used the temporary binary log cache."
+msgstr "Ülekannete number mis kasutasid ajutist binaar logi vahemälu."
+
+#: server_status.php:42
+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 "
+"to increase the tmp_table_size value to cause temporary tables to be memory-"
+"based instead of disk-based."
+msgstr ""
+"Ajutiste tabelite arv, loodud automaatselt serveri poolt, päringuid "
+"käivitades. Kui Created_tmp_disk_tables on suur, sa võid tahta suurendada "
+"tmp_table_size väärtust et olla mälul baseeruv mitte kettal."
+
+#: server_status.php:43
+msgid "How many temporary files mysqld has created."
+msgstr "Mitu ajutist faili mysqld on loonud."
+
+#: server_status.php:44
+msgid ""
+"The number of in-memory temporary tables created automatically by the server "
+"while executing statements."
+msgstr ""
+"Ajutiste mälul baseeruvate tabelite arv, loodud automaatselt serveri poolt, "
+"päringuid käivitades."
+
+#: server_status.php:45
+msgid ""
+"The number of rows written with INSERT DELAYED for which some error occurred "
+"(probably duplicate key)."
+msgstr ""
+"Mitu rida on loodud käsuga INSERT DELAYED milles toimus viga (arvatavasti "
+"korduv võti)."
+
#: server_status.php:46
+msgid ""
+"The number of INSERT DELAYED handler threads in use. Every different table "
+"on which one uses INSERT DELAYED gets its own thread."
+msgstr ""
+"Mitu INSERT DELAYED töötleja (handler) lõimu on kasutuses. Iga erinev tabel "
+"mis kasutab INSERT DELAYED saab oma lõimu."
+
+#: server_status.php:47
+msgid "The number of INSERT DELAYED rows written."
+msgstr "INSERT DELAYED ridasid loodud."
+
+#: server_status.php:48
+msgid "The number of executed FLUSH statements."
+msgstr "FLUSH käskude arv."
+
+#: server_status.php:49
+msgid "The number of internal COMMIT statements."
+msgstr "Sisemiste COMMIT käskude arv."
+
+#: server_status.php:50
+msgid "The number of times a row was deleted from a table."
+msgstr "Mitu korda rida kustutati tabelist."
+
+#: server_status.php:51
+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 ""
+"MySQLi server võib küsida \"NDB Cluster storage engine\" (klaster salvestus "
+"mootor) kas ta teab tabelit etteantud nimega. Seda kutsutakse avastus"
+"(discovery). Handler_discover annab mitu korda on tabel leitud."
+
+#: server_status.php:52
+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 ""
+"Mitu korda loeti esimene tulemus indeksist. Kui see on suur, see soovitab et "
+"server teeb palju täis indeksi skaneerimist; näitkes, SELECT col1 FROM foo, "
+"arvates et col1 indekseeritud."
+
+#: server_status.php:53
+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 ""
+"Mitu korda loeti rida võtme järgi. Kui see on suur, see on hea näitaja et "
+"sinu päringud ja tabelid on korralikult indekseeritud."
+
+#: server_status.php:54
+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 ""
+"Mitu korda saadi käsk lugeda võtme järgi järgmine rida. See on suurenev kui "
+"sa pärid indekseeritud piiratud välja või sa teed indeksi skaneerimist."
+
+#: server_status.php:55
+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 ""
+"Mitu korda saadi käsk lugeda võtme järgi eelnev rida. See lugemise meetod on "
+"peamiselt kasutatud optimiseerimiseks ORDER BY ... DESC."
+
+#: server_status.php:56
+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 "
+"probably have a lot of queries that require MySQL to scan whole tables or "
+"you have joins that don't use keys properly."
+msgstr ""
+"Mitu korda saadi käsk lugeda kindel rida. See on suur kui sa teed palju "
+"päringuid mis vajavad tulemuse sorteerimist. Sa kasutad kindlasti päringuid "
+"mis vajavad MySQLi et skaneerida kogu tabelit või liited(joins) mis ei "
+"kasuta võtmeid korralikult."
+
+#: server_status.php:57
+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 "
+"tables are not properly indexed or that your queries are not written to take "
+"advantage of the indexes you have."
+msgstr ""
+"Mitu korda saadi käsk lugeda järgmine rida andmefailist. See on suur kui sa "
+"teed palju tabeli skaneerimisi. Enamasti see soovitab et sinu tabelid pole "
+"korralikult indekseeritud või sinu päringud pole kirjutatud nii et võtta "
+"eeliseid sinu loodud indeksitest."
+
+#: server_status.php:58
+msgid "The number of internal ROLLBACK statements."
+msgstr "Mitu korda käivitati sisemine ROLLBACK lausung."
+
+#: server_status.php:59
+msgid "The number of requests to update a row in a table."
+msgstr "Mitu korda uuendati tabeli rida."
+
+#: server_status.php:60
+msgid "The number of requests to insert a row in a table."
+msgstr "Mitu korda lisati uus rida tabelisse."
+
+#: server_status.php:61
+msgid "The number of pages containing data (dirty or clean)."
+msgstr "Mitu lehekülge sisaldab andmeid (puhast või musta)."
+
+#: server_status.php:62
+msgid "The number of pages currently dirty."
+msgstr "Mitu lehekülge on mustad."
+
+#: server_status.php:63
+msgid "The number of buffer pool pages that have been requested to be flushed."
+msgstr "Mitu puhvri lehekülge on määratud puhastamisele."
+
+#: server_status.php:64
+msgid "The number of free pages."
+msgstr "Mitu puu lehekülge."
+
+#: server_status.php:65
+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 ""
+"Mitu lukus lehte on InnoDB puhvris. Need lehed on hetkel lugemisel või "
+"kirjutamisel ja pole võimalik puhastada või kustutada mingil põhjusel."
+
+#: server_status.php:66
+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 "
+"be calculated as Innodb_buffer_pool_pages_total - "
+"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data."
+msgstr ""
+"Mitu lehte on hetkel kasutuses kuna nad reserveeritud nagu rea lukustus või "
+"kohanemisvõimeline indeks. Seda summat saab ka arvutada nii "
+"Innodb_buffer_pool_pages_total - Innodb_buffer_pool_pages_free - "
+"Innodb_buffer_pool_pages_data."
+
+#: server_status.php:67
+msgid "Total size of buffer pool, in pages."
+msgstr "Kogu puhvris suurus, lehtedes."
+
+#: server_status.php:68
+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 ""
+"Mitu InnoDB juhuslikku(random) ette-lugemisi on töös. See juhtub kui päring "
+"on skaneerida suur osa tabelist kuid juhuslikus järjekorras."
+
+#: server_status.php:69
+msgid ""
+"The number of sequential read-aheads InnoDB initiated. This happens when "
+"InnoDB does a sequential full table scan."
+msgstr ""
+"Mitu InnoDB järjestikku ette-lugemisi on töös. See juhtub kui InnoDB teeb "
+"järjestikulist kogu tabeli skaneerimist."
+
+#: server_status.php:70
+msgid "The number of logical read requests InnoDB has done."
+msgstr "Mitu loogilist lugemist InnoDB on teinud."
+
+#: server_status.php:71
+msgid ""
+"The number of logical reads that InnoDB could not satisfy from buffer pool "
+"and had to do a single-page read."
+msgstr ""
+"Mitu loogilist lugemist InnoDB polnud võimalik puhvris poolt rahuldada ja "
+"tegi üksiku lehe lugemise."
+
+#: server_status.php:72
+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 "
+"available, it's necessary to wait for pages to be flushed first. This "
+"counter counts instances of these waits. If the buffer pool size was set "
+"properly, this value should be small."
+msgstr ""
+"Tavaliselt, kirjutab InnoDB puhvri taustal. Kuid, kui vajalik kirjutada leht "
+"ja ühtegi puhast lehte pole saadaval, on vajalik oodata et lehed oleksid "
+"enne ühtlustatud. See This loendur loeb kõiki neid ootamisi. Kui puhvri "
+"suurus on seatud korralikult, se number peaks olema väike."
+
+#: server_status.php:73
+msgid "The number writes done to the InnoDB buffer pool."
+msgstr "Mitu korda kirjutas InnoDB puhvrisse."
+
+#: server_status.php:74
+msgid "The number of fsync() operations so far."
+msgstr "Mitu fsync() operatsiooni siiani."
+
+#: server_status.php:75
+msgid "The current number of pending fsync() operations."
+msgstr "Mitu hetkel ootel fsync() operatsiooni."
+
+#: server_status.php:76
+msgid "The current number of pending reads."
+msgstr "Mitu ootel lugemist."
+
+#: server_status.php:77
+msgid "The current number of pending writes."
+msgstr "Mitu ootel kirjutamist."
+
+#: server_status.php:78
+msgid "The amount of data read so far, in bytes."
+msgstr "Suurus kui palju andmeid on loetud siiani, baitides."
+
+#: server_status.php:79
+msgid "The total number of data reads."
+msgstr "Mitu korda loetud."
+
+#: server_status.php:80
+msgid "The total number of data writes."
+msgstr "Mitu korda andmeid kirjutati."
+
+#: server_status.php:81
+msgid "The amount of data written so far, in bytes."
+msgstr "Suurus palju andmeid on kirjutatud, baitides."
+
+#: server_status.php:82
+msgid "The number of pages that have been written for doublewrite operations."
+msgstr ""
+"Mitu korda tehti topeltkirjutamist ja mitu lehte on kirjutatud just sellel "
+"põhjusel."
+
+#: server_status.php:83
+msgid "The number of doublewrite operations that have been performed."
+msgstr ""
+"Mitu korda tehti topeltkirjutamise kirjutamist ja mitu lehte on kirjutatud "
+"just sellel põhjusel."
+
+#: server_status.php:84
+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 ""
+"Mitu ootamist on olnud sellepärast et logi puhver oli liiga väike ja pidi "
+"ootama enne ühtlustamist et jätkata."
+
+#: server_status.php:85
+msgid "The number of log write requests."
+msgstr "Mitu logi kirjutamise soovi."
+
+#: server_status.php:86
+msgid "The number of physical writes to the log file."
+msgstr "Mitu füüsilist kirjutamist logi faili."
+
+#: server_status.php:87
+msgid "The number of fsync() writes done to the log file."
+msgstr "Mitu fsyncs kirjutamist tehtud logi faili."
+
+#: server_status.php:88
+msgid "The number of pending log file fsyncs."
+msgstr "Mitu ootel logi faili fsyncs."
+
+#: server_status.php:89
+msgid "Pending log file writes."
+msgstr "ootel logifaili kirjutamisi."
+
+#: server_status.php:90
+msgid "The number of bytes written to the log file."
+msgstr "Mitu baiti on kirjutatud logi faili."
+
+#: server_status.php:91
+msgid "The number of pages created."
+msgstr "Lehti loodud."
+
+#: server_status.php:92
+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 ""
+"Sisse-kompileeritud InnoDB lehe suurus (vaikimisi 16KB). Paljud väärtused on "
+"loetud lehtedes; lehe suurus lubab neid lihtsalt arvutada baitidesse."
+
+#: server_status.php:93
+msgid "The number of pages read."
+msgstr "Lehti loetud."
+
+#: server_status.php:94
+msgid "The number of pages written."
+msgstr "Lehti kirjutatud."
+
+#: server_status.php:95
+msgid "The number of row locks currently being waited for."
+msgstr "Mitu rea lukustamist on hetkel ootel."
+
+#: server_status.php:96
+msgid "The average time to acquire a row lock, in milliseconds."
+msgstr "Keskimne aeg pärides rea lukustust, millisekundites."
+
+#: server_status.php:97
+msgid "The total time spent in acquiring row locks, in milliseconds."
+msgstr "Aeg mis on raisatud pärides rea lukustust, millisekundites."
+
+#: server_status.php:98
+msgid "The maximum time to acquire a row lock, in milliseconds."
+msgstr "Maksimaalne aeg pärides rea lukustust, millisekundites."
+
+#: server_status.php:99
+msgid "The number of times a row lock had to be waited for."
+msgstr "Mitu korda pidi rea lukustus ootama."
+
+#: server_status.php:100
+msgid "The number of rows deleted from InnoDB tables."
+msgstr "Mitu rida kustutatud InnoDB tabelitest."
+
+#: server_status.php:101
+msgid "The number of rows inserted in InnoDB tables."
+msgstr "Mitu rida lisati InnoDB tabelitesse."
+
+#: server_status.php:102
+msgid "The number of rows read from InnoDB tables."
+msgstr "Mitu rida loetud InnoDB tabelitest."
+
+#: server_status.php:103
+msgid "The number of rows updated in InnoDB tables."
+msgstr "Mitu rida uuendati InnoDB tabelites."
+
+#: server_status.php:104
+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 ""
+"Mitu võtme plokki on võtme vahemälus muutunud kui pole veel kettale "
+"kirjutatud. Tuntud nagu Not_flushed_key_blocks."
+
+#: server_status.php:105
+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 ""
+"Mitu kasutamatta võtme plokki on võtme vahemälus. Sa saad kasutatda seda "
+"väärtust et teada saada kui palju võtme vahemälust on kasutuses."
+
+#: server_status.php:106
+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 ""
+"Mitu kasutatud plokki on võtme vahemälus. See väärtus näitab maksimaalse "
+"plokkide arvu mis on kunagi olnud kasutuses."
+
+#: server_status.php:107
+msgid "The number of requests to read a key block from the cache."
+msgstr "Mitu päringut et lugeda võtme plokk vahemälust."
+
+#: server_status.php:108
+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 ""
+"Mitu füüsilist lugemist lugeda võtme plokk kettalt. kui Key_reads on suur, "
+"siis sinu key_buffer_size näitaja on kindlasti väike. Vahemälus möödaminek "
+"on võimalik arvutada nii Key_reads/Key_read_requests."
+
+#: server_status.php:109
+msgid "The number of requests to write a key block to the cache."
+msgstr "Mitu päringut et kirjutada võtme plokk vahemällu."
+
+#: server_status.php:110
+msgid "The number of physical writes of a key block to disk."
+msgstr "Mitu füüsilist kirjutamist kirjutada võtme plokk kettale."
+
+#: server_status.php:111
+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 ""
+"Viimase kompileeritud päringu arvuatud tulemus päringu optimiseerija vastu. "
+"Kasulik võrdlemaks erinevaid päringu plaane ühelt ja samalt päringult. "
+"Vaikimisi väärtus 0 tähendab et päring pole veel töödeldud."
+
+#: server_status.php:112
+msgid "The number of rows waiting to be written in INSERT DELAYED queues."
+msgstr "Mitu rida on ootel INSERT DELAYED päringutes."
+
+#: server_status.php:113
+msgid ""
+"The number of tables that have been opened. If opened tables is big, your "
+"table cache value is probably too small."
+msgstr ""
+"Mitu tabelit on avatud. Avatud tabeleid on palju siis sinu tabeli vahemälus "
+"kindlasti liiga väike."
+
+#: server_status.php:114
+msgid "The number of files that are open."
+msgstr "Mitu faili on avatud."
+
+#: server_status.php:115
+msgid "The number of streams that are open (used mainly for logging)."
+msgstr "Mitu voogu on hetkel avatud (enamasti logimiseks)."
+
+#: server_status.php:116
+msgid "The number of tables that are open."
+msgstr "Mitu tabelit on hetkel avatud."
+
+#: server_status.php:117
+msgid "The number of free memory blocks in query cache."
+msgstr "Vabad mälu plokid päringute vahemälus."
+
+#: server_status.php:118
+msgid "The amount of free memory for query cache."
+msgstr "Vaba mälu päringute vahemälus."
+
+#: server_status.php:119
+msgid "The number of cache hits."
+msgstr "Leitud Puhvrist."
+
+#: server_status.php:120
+msgid "The number of queries added to the cache."
+msgstr "Mitu päringut on lisatud vahemällu."
+
+#: server_status.php:121
+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 "
+"cache size. The query cache uses a least recently used (LRU) strategy to "
+"decide which queries to remove from the cache."
+msgstr ""
+"Mitu päringut kustutati puhvrist et vabastada mälu uutele päringutele. See "
+"informatsioon aitab sind päringute-puhvri suuruse seadistamisel. Päringute "
+"vahemälu kasutab viimati kasutatud strateegiat(LRU) et otsustada millised "
+"päringud eemaldada puhvrist."
+
+#: server_status.php:122
+msgid ""
+"The number of non-cached queries (not cachable, or not cached due to the "
+"query_cache_type setting)."
+msgstr ""
+"Mitu mitte-puhverdatud päringut (pole salvestatud vahemällu, või sõltuvalt "
+"query_cache_type sätetest mitte puhverdatud)."
+
+#: server_status.php:123
+msgid "The number of queries registered in the cache."
+msgstr "Mitu päringut on registreeritud vahemälus."
+
+#: server_status.php:124
+msgid "The total number of blocks in the query cache."
+msgstr "Plokkide koguarv päringute vahemälus."
+
+#: server_status.php:125
+msgctxt "$strShowStatusReset"
+msgid "Reset"
+msgstr "Nulli"
+
+#: server_status.php:126
+msgid "The status of failsafe replication (not yet implemented)."
+msgstr ""
+"See staatus on tõrkekindel tiraþeerimine (failsafe replication) (pole veel "
+"kasutuses)."
+
+#: server_status.php:127
+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 ""
+"Liited(joins) mis ei kasuta indekseid. Kui see näitaja on 0, peaksid "
+"ettevaatlikult kontrollima oma tabelites indekseid."
+
+#: server_status.php:128
+msgid "The number of joins that used a range search on a reference table."
+msgstr "Liidete arv mida kasutati piirkonna otsimisel eelistatud tabelist."
+
+#: server_status.php:129
+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 ""
+"Ilma võtmeta liidete(joins) arv mis konrollivad peale igat rida võtme "
+"kasutamist. (Kui see pole 0 siis peaksid ettevaatlikult kontrollima oma "
+"tabelite indekseid.)"
+
+#: server_status.php:130
+msgid ""
+"The number of joins that used ranges on the first table. (It's normally not "
+"critical even if this is big.)"
+msgstr ""
+"Liidete arv mida kasutati esimese tabeli piirides. (Pole eriti kriitiline "
+"kui see on väga suur.)"
+
+#: server_status.php:131
+msgid "The number of joins that did a full scan of the first table."
+msgstr "Liidete arv mis tegid täielikku skaneerimist esimesest tabelist."
+
+#: server_status.php:132
+msgid "The number of temporary tables currently open by the slave SQL thread."
+msgstr ""
+"Ajutiste tabelite arv mis on hetkel avatud alam-lõimu(replication slave) "
+"poolt."
+
+#: server_status.php:133
+msgid ""
+"Total (since startup) number of times the replication slave SQL thread has "
+"retried transactions."
+msgstr ""
+"Kogusumma (alates käivitamisest) mitu korda tiraþeerimise(replication) SQL "
+"alam-lõim(replication slave) proovis ülekandeid."
+
+#: server_status.php:134
+msgid "This is ON if this server is a slave that is connected to a master."
+msgstr ""
+"Kui see on ON kui serveril on alam server(masin) mis on ühenduses masteriga."
+
+#: server_status.php:135
+msgid ""
+"The number of threads that have taken more than slow_launch_time seconds to "
+"create."
+msgstr "Lõimude arv mis võtsid rohkem aega käivitamiseks kui slow_launch_time."
+
+#: server_status.php:136
+msgid ""
+"The number of queries that have taken more than long_query_time seconds."
+msgstr "Päringute arv mis võtsid rohkem aega kui long_query_time sekundites."
+
+#: server_status.php:137
+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 ""
+"Edukate ühinemiste(merge) arv millega lühike algoritm on tegelenud. Kui see "
+"väärtuse on suur, sa peaksid mõtlema sort_buffer_size väärtuse suurendamist."
+
+#: server_status.php:138
+msgid "The number of sorts that were done with ranges."
+msgstr "Sorteerimiste arv mis on tehtud piirkonna ulatuses."
+
+#: server_status.php:139
+msgid "The number of sorted rows."
+msgstr "Sorteritud ridade arv."
+
+#: server_status.php:140
+msgid "The number of sorts that were done by scanning the table."
+msgstr "Sorteerimiste arv mis on tehtud tabeli skaneerimist kasutades."
+
+#: server_status.php:141
+msgid "The number of times that a table lock was acquired immediately."
+msgstr "Mitu korda tabeli lukustus jõustus koheselt."
+
+#: server_status.php:142
+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 "
+"should first optimize your queries, and then either split your table or "
+"tables or use replication."
+msgstr ""
+"Mitu korda tabeli lukustus ei jõustunud koheselt ja pandi ootele. Kui see on "
+"suur ja jõudlusega on probleeme, sa peaksid optimiseerima oma päringuid või "
+"poolitama oma tabelid või kasutama tiraþeerimist(replication)."
+
+#: server_status.php:143
+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 ""
+"Lõimude arv Lõimude vahemälus. Vahemälu kasutamist(hit) on võimalik arvutada "
+"nii Threads_created/Connections. Kui see on punane paksid suurendama "
+"thread_cache_size suurust."
+
+#: server_status.php:144
+msgid "The number of currently open connections."
+msgstr "Hetkel avatud ühendusi."
+
+#: server_status.php:145
+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 "
+"doesn't give a notable performance improvement if you have a good thread "
+"implementation.)"
+msgstr ""
+"Lõimude arv mis on loodud ühenduste haldamiseks. Kui Threads_created on suur "
+"siis suurenda thread_cache_size väärtust. (Tavaliselt see ei anna märgatavat "
+"kiiruse tõusu kui Lõimude teostus on korralik.)"
+
+#: server_status.php:146
+msgid "The number of threads that are not sleeping."
+msgstr "Lõimude arv mis mis hetkel ei maga."
+
+#: server_status.php:157
msgid "Runtime Information"
msgstr "Jooksev informatsioon"
-#: server_status.php:250
+#: server_status.php:361
msgid "Handler"
msgstr "Töötleja"
-#: server_status.php:251
+#: server_status.php:362
msgid "Query cache"
msgstr "Päringute vahemälu"
-#: server_status.php:252
+#: server_status.php:363
msgid "Threads"
msgstr "Lõimud"
-#: server_status.php:254
+#: server_status.php:365
msgid "Temporary data"
msgstr "Ajutised andmed "
-#: server_status.php:255
+#: server_status.php:366
msgid "Delayed inserts"
msgstr "Ajastatud lisamised"
-#: server_status.php:256
+#: server_status.php:367
msgid "Key cache"
msgstr "Võtme vahemälu"
-#: server_status.php:257
+#: server_status.php:368
msgid "Joins"
msgstr "Liited"
-#: server_status.php:259
+#: server_status.php:370
msgid "Sorting"
msgstr "Järjestamine"
-#: server_status.php:261
+#: server_status.php:372
msgid "Transaction coordinator"
msgstr "Ülekande kordinaator"
-#: server_status.php:271
+#: server_status.php:382
msgid "Flush (close) all tables"
msgstr "Tühjenda (sulge) kõik tabelid"
-#: server_status.php:273
+#: server_status.php:384
msgid "Show open tables"
msgstr "Näita avatud tabeleid"
-#: server_status.php:278
+#: server_status.php:389
msgid "Show slave hosts"
msgstr "Näita alluvaid(slave)"
-#: server_status.php:284
+#: server_status.php:395
msgid "Show slave status"
msgstr "Näita alluvate(slave) staatust"
-#: server_status.php:289
+#: server_status.php:400
msgid "Flush query cache"
msgstr "Tühjenda päringute vahemälu"
-#: server_status.php:294
+#: server_status.php:405
msgid "Show processes"
msgstr "Näita protsesse"
-#: server_status.php:344
+#: server_status.php:455
#, fuzzy
#| msgid "Reset"
msgctxt "for Show status"
msgid "Reset"
msgstr "Tühista"
-#: server_status.php:350
+#: server_status.php:461
#, php-format
msgid "This MySQL server has been running for %s. It started up on %s."
msgstr "See MySQL server on käinud %s. Käivitusaeg %s."
-#: server_status.php:360
+#: server_status.php:471
msgid ""
"This MySQL server works as master and slave in replication"
"b> process."
msgstr ""
-#: server_status.php:362
+#: server_status.php:473
msgid "This MySQL server works as master in replication process."
msgstr ""
-#: server_status.php:364
+#: server_status.php:475
msgid "This MySQL server works as slave in replication process."
msgstr ""
-#: server_status.php:366
+#: server_status.php:477
msgid ""
"For further information about replication status on the server, please visit "
"the replication section."
msgstr ""
-#: server_status.php:383
+#: server_status.php:494
msgid ""
"Server traffic: These tables show the network traffic statistics of "
"this MySQL server since its startup."
@@ -5908,11 +5918,11 @@ msgstr ""
"Serveri liiklus: Need tabelid näitavad võrguliikluse statistikat "
"selle MySQL serveri jaoks alates tema käivitamisest."
-#: server_status.php:388
+#: server_status.php:499
msgid "Traffic"
msgstr "Liiklus"
-#: server_status.php:388
+#: server_status.php:499
msgid ""
"On a busy server, the byte counters may overrun, so those statistics as "
"reported by the MySQL server may be incorrect."
@@ -5920,36 +5930,36 @@ msgstr ""
"Koormusega serveris, baitide lugeja võib lugeda vigadega (overrun), st. see "
"statistika mida näitab MySQL server ei pruugi olla täpne."
-#: server_status.php:389 server_status.php:434 server_status.php:497
-#: server_status.php:555
+#: server_status.php:500 server_status.php:545 server_status.php:608
+#: server_status.php:666
msgid "per hour"
msgstr "tunni kohta"
-#: server_status.php:394
+#: server_status.php:505
msgid "Received"
msgstr "Saadud"
-#: server_status.php:404
+#: server_status.php:515
msgid "Sent"
msgstr "Saadetud"
-#: server_status.php:433
+#: server_status.php:544
msgid "Connections"
msgstr "Ühendused"
-#: server_status.php:440
+#: server_status.php:551
msgid "max. concurrent connections"
msgstr "maks. parallel ühendusi"
-#: server_status.php:447
+#: server_status.php:558
msgid "Failed attempts"
msgstr "Ebaõnnestunud üritused"
-#: server_status.php:461
+#: server_status.php:572
msgid "Aborted"
msgstr "Katkestatud"
-#: server_status.php:490
+#: server_status.php:601
#, php-format
msgid ""
"Query statistics: Since its startup, %s queries have been sent to the "
@@ -5958,19 +5968,19 @@ msgstr ""
"Päringu statistika: Alates stardist, %s päringut on saadetud "
"serverile."
-#: server_status.php:498
+#: server_status.php:609
msgid "per minute"
msgstr "minutis"
-#: server_status.php:499
+#: server_status.php:610
msgid "per second"
msgstr "sekundis"
-#: server_status.php:554
+#: server_status.php:665
msgid "Query type"
msgstr "Päringu tüüp"
-#: server_status.php:721
+#: server_status.php:832
#, fuzzy
msgid "Replication status"
msgstr "Tiraeerimine"
diff --git a/po/eu.po b/po/eu.po
index 01472ae9e..35c953fdd 100755
--- a/po/eu.po
+++ b/po/eu.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-06-04 16:07-0400\n"
+"POT-Creation-Date: 2010-06-08 12:32-0400\n"
"PO-Revision-Date: 2010-03-31 10:40+0200\n"
"Last-Translator: \n"
"Language-Team: basque \n"
@@ -15,11 +15,11 @@ msgstr ""
"X-Generator: Pootle 2.0.1\n"
#: browse_foreigners.php:38 browse_foreigners.php:59
-#: libraries/display_tbl.lib.php:417 server_privileges.php:1475
+#: libraries/display_tbl.lib.php:417 server_privileges.php:1514
msgid "Show all"
msgstr "Dena erakutsi"
-#: browse_foreigners.php:82 libraries/common.lib.php:2304
+#: browse_foreigners.php:82 libraries/common.lib.php:2313
#: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:394
#: libraries/export/pdf.php:147 pdf_schema.php:283 pdf_schema.php:1123
#: pdf_schema.php:1139
@@ -38,8 +38,8 @@ msgstr ""
#: browse_foreigners.php:150 db_structure.php:79 db_structure.php:80
#: db_structure.php:91 db_structure.php:93 db_structure.php:104
-#: db_structure.php:106 libraries/common.lib.php:2822
-#: libraries/common.lib.php:2829 libraries/db_links.inc.php:75
+#: db_structure.php:106 libraries/common.lib.php:2831
+#: libraries/common.lib.php:2838 libraries/db_links.inc.php:75
#: libraries/tbl_links.inc.php:63
msgid "Search"
msgstr "Bilatu"
@@ -49,7 +49,7 @@ msgstr "Bilatu"
#: db_structure.php:567 js/messages.php:48 libraries/Config.class.php:1046
#: libraries/Theme_Manager.class.php:311
#: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719
-#: libraries/common.lib.php:1333 libraries/common.lib.php:2279
+#: libraries/common.lib.php:1335 libraries/common.lib.php:2288
#: libraries/display_change_password.lib.php:82
#: libraries/display_create_table.lib.php:63
#: libraries/display_export.lib.php:275 libraries/display_import.lib.php:276
@@ -60,9 +60,9 @@ msgstr "Bilatu"
#: libraries/sql_query_form.lib.php:552 libraries/tbl_properties.inc.php:782
#: main.php:128 navigation.php:237 pdf_pages.php:292 pdf_pages.php:328
#: pdf_pages.php:530 pmd_pdf.php:116 server_binlog.php:142
-#: server_privileges.php:625 server_privileges.php:1585
-#: server_privileges.php:1932 server_privileges.php:1979
-#: server_privileges.php:2018 server_replication.php:235
+#: server_privileges.php:664 server_privileges.php:1624
+#: server_privileges.php:1971 server_privileges.php:2018
+#: server_privileges.php:2057 server_replication.php:235
#: server_replication.php:318 server_replication.php:341
#: server_synchronize.php:1209 tbl_change.php:330 tbl_change.php:1174
#: tbl_change.php:1211 tbl_indexes.php:254 tbl_operations.php:265
@@ -80,7 +80,7 @@ msgstr "Klabearen hitza"
#: browse_foreigners.php:169 browse_foreigners.php:171
#: server_collations.php:55 server_collations.php:67 server_engines.php:59
-#: server_status.php:628
+#: server_status.php:739
msgid "Description"
msgstr "Deskribapena"
@@ -121,7 +121,7 @@ msgstr "Zutabe izenak"
#: libraries/db_structure.lib.php:60 libraries/export/htmlword.php:245
#: libraries/export/latex.php:360 libraries/export/odt.php:297
#: libraries/export/texytext.php:234 libraries/tbl_properties.inc.php:100
-#: pdf_schema.php:1263 pdf_schema.php:1284 server_privileges.php:2031
+#: pdf_schema.php:1263 pdf_schema.php:1284 server_privileges.php:2070
#: tbl_change.php:287 tbl_change.php:314 tbl_printview.php:143
#: tbl_printview.php:313 tbl_select.php:136 tbl_structure.php:178
#: tbl_structure.php:659 tbl_tracking.php:274 tbl_tracking.php:321
@@ -165,9 +165,9 @@ msgstr "Iruzkinak"
#: libraries/Index.class.php:386 libraries/export/htmlword.php:322
#: libraries/export/latex.php:430 libraries/export/odt.php:368
#: libraries/export/texytext.php:311 libraries/mult_submits.inc.php:263
-#: pdf_schema.php:1344 server_privileges.php:1529 server_privileges.php:1540
-#: server_privileges.php:1850 server_privileges.php:1855
-#: server_privileges.php:2148 sql.php:132 sql.php:194 tbl_printview.php:229
+#: pdf_schema.php:1344 server_privileges.php:1568 server_privileges.php:1579
+#: server_privileges.php:1889 server_privileges.php:1894
+#: server_privileges.php:2187 sql.php:132 sql.php:194 tbl_printview.php:229
#: tbl_structure.php:350 tbl_tracking.php:337 tbl_tracking.php:342
msgid "No"
msgstr "Ez"
@@ -181,9 +181,9 @@ msgstr "Ez"
#: libraries/mult_submits.inc.php:101 libraries/mult_submits.inc.php:106
#: libraries/mult_submits.inc.php:111 libraries/mult_submits.inc.php:262
#: libraries/mult_submits.inc.php:273 pdf_schema.php:1344
-#: server_databases.php:64 server_privileges.php:1526
-#: server_privileges.php:1540 server_privileges.php:1850
-#: server_privileges.php:1853 server_privileges.php:2148 sql.php:193
+#: server_databases.php:64 server_privileges.php:1565
+#: server_privileges.php:1579 server_privileges.php:1889
+#: server_privileges.php:1892 server_privileges.php:2187 sql.php:193
#: tbl_printview.php:229 tbl_structure.php:40 tbl_structure.php:350
#: tbl_tracking.php:335 tbl_tracking.php:340
msgid "Yes"
@@ -284,7 +284,7 @@ msgstr "Kopiatutako taulara aldatu"
msgid "BLOB Repository"
msgstr ""
-#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1350
+#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1352
#: libraries/server_links.inc.php:49 server_processlist.php:59
#: tbl_tracking.php:596 test/theme.php:101
msgid "Status"
@@ -348,8 +348,8 @@ msgstr "Editatu PDF Orriak"
#: db_printview.php:104 db_tracking.php:72 db_tracking.php:157
#: libraries/db_structure.lib.php:46 libraries/export/xml.php:328
-#: libraries/header.inc.php:126 pdf_pages.php:424 server_privileges.php:1626
-#: server_privileges.php:1682 server_privileges.php:1946
+#: libraries/header.inc.php:126 pdf_pages.php:424 server_privileges.php:1665
+#: server_privileges.php:1721 server_privileges.php:1985
#: server_synchronize.php:423 server_synchronize.php:866 tbl_tracking.php:592
#: test/theme.php:75
msgid "Table"
@@ -450,7 +450,7 @@ msgstr "Ezabatu"
#: db_qbe.php:370 db_qbe.php:451 db_qbe.php:522 db_qbe.php:553
#: libraries/display_import.lib.php:166 libraries/tbl_properties.inc.php:779
-#: server_privileges.php:258 tbl_change.php:1031 tbl_indexes.php:250
+#: server_privileges.php:297 tbl_change.php:1031 tbl_indexes.php:250
#: tbl_select.php:288
msgid "Or"
msgstr "Edo"
@@ -484,7 +484,7 @@ msgstr "Taulak erabili"
msgid "SQL query on database %s:"
msgstr "SQL-kontsulta %s datu-basean:"
-#: db_qbe.php:934 libraries/common.lib.php:1223
+#: db_qbe.php:934 libraries/common.lib.php:1225
msgid "Submit Query"
msgstr "Kontsulta bidali"
@@ -523,7 +523,7 @@ msgstr "%s emaitza(k) %s taulan"
#: db_search.php:267 db_structure.php:77 db_structure.php:78
#: db_structure.php:90 db_structure.php:92 db_structure.php:103
-#: db_structure.php:105 libraries/common.lib.php:2824
+#: db_structure.php:105 libraries/common.lib.php:2833
#: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50
#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:467
msgid "Browse"
@@ -570,26 +570,26 @@ msgstr "Taul(ar)en barnean:"
#: db_structure.php:81 db_structure.php:82 db_structure.php:94
#: db_structure.php:95 db_structure.php:107 db_structure.php:108
-#: libraries/common.lib.php:2823 libraries/sql_query_form.lib.php:334
+#: libraries/common.lib.php:2832 libraries/sql_query_form.lib.php:334
#: libraries/sql_query_form.lib.php:337 libraries/tbl_links.inc.php:76
msgid "Insert"
msgstr "Txertatu"
#: db_structure.php:83 db_structure.php:96 db_structure.php:109
-#: libraries/common.lib.php:2820 libraries/common.lib.php:2827
+#: libraries/common.lib.php:2829 libraries/common.lib.php:2836
#: libraries/db_links.inc.php:63 libraries/export/htmlword.php:23
#: libraries/export/latex.php:33 libraries/export/latex.php:337
#: libraries/export/odt.php:32 libraries/export/sql.php:60
#: libraries/export/texytext.php:23 libraries/import.lib.php:1104
#: libraries/tbl_links.inc.php:56 pmd_general.php:134
-#: server_privileges.php:554 server_replication.php:315 tbl_tracking.php:269
+#: server_privileges.php:593 server_replication.php:315 tbl_tracking.php:269
msgid "Structure"
msgstr "Egitura"
#: db_structure.php:84 db_structure.php:85 db_structure.php:97
#: db_structure.php:98 db_structure.php:110 db_structure.php:111
#: db_structure.php:545 db_structure.php:546 db_tracking.php:91
-#: libraries/Index.class.php:483 libraries/common.lib.php:1654
+#: libraries/Index.class.php:483 libraries/common.lib.php:1656
#: libraries/db_links.inc.php:100 libraries/mult_submits.inc.php:36
#: libraries/mult_submits.inc.php:73 libraries/tbl_links.inc.php:127
#: server_databases.php:352 tbl_structure.php:27 tbl_structure.php:151
@@ -599,7 +599,7 @@ msgstr "Ezabatu"
#: db_structure.php:86 db_structure.php:87 db_structure.php:99
#: db_structure.php:100 db_structure.php:112 db_structure.php:113
-#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1653
+#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1655
#: libraries/mult_submits.inc.php:39 libraries/tbl_links.inc.php:105
msgid "Empty"
msgstr "Hutsik"
@@ -641,7 +641,7 @@ msgstr ""
#: db_structure.php:485 libraries/db_structure.lib.php:49
#: libraries/server_links.inc.php:70 server_replication.php:33
-#: server_replication.php:164 server_status.php:258
+#: server_replication.php:164 server_status.php:369
#, fuzzy
msgid "Replication"
msgstr "Erlazioak"
@@ -658,20 +658,20 @@ msgstr ""
#: db_structure.php:524 db_structure.php:541 db_structure.php:542
#: libraries/display_tbl.lib.php:2081 libraries/display_tbl.lib.php:2086
#: libraries/mult_submits.inc.php:16 server_databases.php:346
-#: server_databases.php:351 server_privileges.php:1557 tbl_structure.php:455
+#: server_databases.php:351 server_privileges.php:1596 tbl_structure.php:455
#: tbl_structure.php:464
msgid "With selected:"
msgstr "Ikurdunak:"
#: db_structure.php:527 libraries/display_tbl.lib.php:2076
-#: server_databases.php:348 server_privileges.php:530
-#: server_privileges.php:1560 tbl_structure.php:458
+#: server_databases.php:348 server_privileges.php:569
+#: server_privileges.php:1599 tbl_structure.php:458
msgid "Check All"
msgstr "Guztiak egiaztatu"
#: db_structure.php:531 libraries/display_tbl.lib.php:2077
#: libraries/replication_gui.lib.php:33 server_databases.php:350
-#: server_privileges.php:533 server_privileges.php:1564 tbl_structure.php:462
+#: server_privileges.php:572 server_privileges.php:1603 tbl_structure.php:462
msgid "Uncheck All"
msgstr "Desautatu dena"
@@ -709,7 +709,7 @@ msgstr "Taula aztertu"
#: libraries/display_export.lib.php:83 libraries/display_tbl.lib.php:2094
#: libraries/display_tbl.lib.php:2225 libraries/mult_submits.inc.php:62
#: libraries/server_links.inc.php:84 libraries/tbl_links.inc.php:82
-#: pmd_pdf.php:84 pmd_pdf.php:109 server_privileges.php:1341
+#: pmd_pdf.php:84 pmd_pdf.php:109 server_privileges.php:1380
#: setup/frames/menu.inc.php:22 tbl_row_action.php:59
msgid "Export"
msgstr "Esportatu"
@@ -727,8 +727,8 @@ msgstr ""
#: libraries/export/sql.php:342 libraries/export/texytext.php:84
#: libraries/export/xml.php:255 libraries/header.inc.php:106
#: libraries/header_printview.inc.php:58 server_databases.php:169
-#: server_privileges.php:1621 server_privileges.php:1682
-#: server_privileges.php:1940 server_processlist.php:56
+#: server_privileges.php:1660 server_privileges.php:1721
+#: server_privileges.php:1979 server_processlist.php:56
#: server_synchronize.php:1179 server_synchronize.php:1183
#: tbl_tracking.php:591 test/theme.php:65
msgid "Database"
@@ -749,8 +749,8 @@ msgstr ""
#: db_tracking.php:77 libraries/Index.class.php:440
#: libraries/db_structure.lib.php:53 server_databases.php:203
-#: server_privileges.php:1503 server_privileges.php:1686
-#: server_privileges.php:2034 tbl_structure.php:187
+#: server_privileges.php:1542 server_privileges.php:1725
+#: server_privileges.php:2073 tbl_structure.php:187
msgid "Action"
msgstr "Ekintza"
@@ -945,11 +945,11 @@ msgstr "Zerbitzariaren izena hutsik dago!"
msgid "The user name is empty!"
msgstr "Erabiltzailearen izena hutsik dago!"
-#: js/messages.php:44 server_privileges.php:1197 user_password.php:70
+#: js/messages.php:44 server_privileges.php:1236 user_password.php:70
msgid "The password is empty!"
msgstr "Pasahitza hutsik dago!"
-#: js/messages.php:45 server_privileges.php:1195 user_password.php:73
+#: js/messages.php:45 server_privileges.php:1234 user_password.php:73
msgid "The passwords aren't the same!"
msgstr "Pasahitzek ez dute bat egiten!"
@@ -1030,8 +1030,8 @@ msgid "Prev"
msgstr "Aurrekoa"
#. l10n: Display text for next month link in calendar
-#: js/messages.php:77 libraries/common.lib.php:2344
-#: libraries/common.lib.php:2347 libraries/display_tbl.lib.php:338
+#: js/messages.php:77 libraries/common.lib.php:2353
+#: libraries/common.lib.php:2356 libraries/display_tbl.lib.php:338
#: server_binlog.php:205 server_binlog.php:207 tbl_printview.php:424
#: tbl_structure.php:801
msgid "Next"
@@ -1107,27 +1107,27 @@ msgid "December"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:97 libraries/common.lib.php:1555
+#: js/messages.php:97 libraries/common.lib.php:1557
msgid "Jan"
msgstr "Urt"
#. l10n: Short month name
-#: js/messages.php:99 libraries/common.lib.php:1557
+#: js/messages.php:99 libraries/common.lib.php:1559
msgid "Feb"
msgstr "Ots"
#. l10n: Short month name
-#: js/messages.php:101 libraries/common.lib.php:1559
+#: js/messages.php:101 libraries/common.lib.php:1561
msgid "Mar"
msgstr "Mar"
#. l10n: Short month name
-#: js/messages.php:103 libraries/common.lib.php:1561
+#: js/messages.php:103 libraries/common.lib.php:1563
msgid "Apr"
msgstr "Api"
#. l10n: Short month name
-#: js/messages.php:105 libraries/common.lib.php:1563
+#: js/messages.php:105 libraries/common.lib.php:1565
#, fuzzy
#| msgid "May"
msgctxt "Short month name"
@@ -1135,37 +1135,37 @@ msgid "May"
msgstr "Mai"
#. l10n: Short month name
-#: js/messages.php:107 libraries/common.lib.php:1565
+#: js/messages.php:107 libraries/common.lib.php:1567
msgid "Jun"
msgstr "Eka"
#. l10n: Short month name
-#: js/messages.php:109 libraries/common.lib.php:1567
+#: js/messages.php:109 libraries/common.lib.php:1569
msgid "Jul"
msgstr "Uzt"
#. l10n: Short month name
-#: js/messages.php:111 libraries/common.lib.php:1569
+#: js/messages.php:111 libraries/common.lib.php:1571
msgid "Aug"
msgstr "Abu"
#. l10n: Short month name
-#: js/messages.php:113 libraries/common.lib.php:1571
+#: js/messages.php:113 libraries/common.lib.php:1573
msgid "Sep"
msgstr "Ira"
#. l10n: Short month name
-#: js/messages.php:115 libraries/common.lib.php:1573
+#: js/messages.php:115 libraries/common.lib.php:1575
msgid "Oct"
msgstr "Urr"
#. l10n: Short month name
-#: js/messages.php:117 libraries/common.lib.php:1575
+#: js/messages.php:117 libraries/common.lib.php:1577
msgid "Nov"
msgstr "Aza"
#. l10n: Short month name
-#: js/messages.php:119 libraries/common.lib.php:1577
+#: js/messages.php:119 libraries/common.lib.php:1579
msgid "Dec"
msgstr "Abe"
@@ -1206,37 +1206,37 @@ msgid "Saturday"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:132 libraries/common.lib.php:1580
+#: js/messages.php:132 libraries/common.lib.php:1582
msgid "Sun"
msgstr "Iga"
#. l10n: Short week day name
-#: js/messages.php:134 libraries/common.lib.php:1582
+#: js/messages.php:134 libraries/common.lib.php:1584
msgid "Mon"
msgstr "Astel"
#. l10n: Short week day name
-#: js/messages.php:136 libraries/common.lib.php:1584
+#: js/messages.php:136 libraries/common.lib.php:1586
msgid "Tue"
msgstr "Astea"
#. l10n: Short week day name
-#: js/messages.php:138 libraries/common.lib.php:1586
+#: js/messages.php:138 libraries/common.lib.php:1588
msgid "Wed"
msgstr "Astez"
#. l10n: Short week day name
-#: js/messages.php:140 libraries/common.lib.php:1588
+#: js/messages.php:140 libraries/common.lib.php:1590
msgid "Thu"
msgstr "Oste"
#. l10n: Short week day name
-#: js/messages.php:142 libraries/common.lib.php:1590
+#: js/messages.php:142 libraries/common.lib.php:1592
msgid "Fri"
msgstr "Osti"
#. l10n: Short week day name
-#: js/messages.php:144 libraries/common.lib.php:1592
+#: js/messages.php:144 libraries/common.lib.php:1594
msgid "Sat"
msgstr "Lar"
@@ -1380,7 +1380,7 @@ msgid "Comment"
msgstr "Iruzkinak"
#: libraries/Index.class.php:466 libraries/common.lib.php:616
-#: libraries/common.lib.php:1199 libraries/display_tbl.lib.php:1117
+#: libraries/common.lib.php:1201 libraries/display_tbl.lib.php:1117
#: libraries/import.lib.php:1087 libraries/import.lib.php:1111
#: pdf_pages.php:285 setup/frames/index.inc.php:124
#: setup/lib/messages.inc.php:352 tbl_row_action.php:69
@@ -1404,7 +1404,7 @@ msgid ""
msgstr ""
#: libraries/List_Database.class.php:431 libraries/server_links.inc.php:41
-#: server_databases.php:88 server_privileges.php:1621
+#: server_databases.php:88 server_privileges.php:1660
#: setup/lib/messages.inc.php:110 test/theme.php:93
msgid "Databases"
msgstr "Datu-baseak"
@@ -1732,7 +1732,7 @@ msgid "Documentation"
msgstr "Dokumentazioa"
#: libraries/common.lib.php:595 libraries/header_printview.inc.php:61
-#: server_processlist.php:60 server_status.php:247
+#: server_processlist.php:60 server_status.php:358
msgid "SQL query"
msgstr "SQL kontsulta"
@@ -1748,128 +1748,128 @@ msgstr "SQL-a azaldu"
msgid "Skip Explain SQL"
msgstr "SQL-ren azalpena saltatu"
-#: libraries/common.lib.php:1212
+#: libraries/common.lib.php:1214
msgid "Without PHP Code"
msgstr "PHP Koderik gabe"
-#: libraries/common.lib.php:1215 setup/lib/messages.inc.php:355
+#: libraries/common.lib.php:1217 setup/lib/messages.inc.php:355
msgid "Create PHP Code"
msgstr "PHP kodea sortu"
-#: libraries/common.lib.php:1233 server_status.php:341
+#: libraries/common.lib.php:1235 server_status.php:452
#: setup/lib/messages.inc.php:354
msgid "Refresh"
msgstr ""
-#: libraries/common.lib.php:1242
+#: libraries/common.lib.php:1244
msgid "Skip Validate SQL"
msgstr "SQL-ren balidapena saltatu"
-#: libraries/common.lib.php:1245 setup/lib/messages.inc.php:356 sql.php:518
+#: libraries/common.lib.php:1247 setup/lib/messages.inc.php:356 sql.php:518
msgid "Validate SQL"
msgstr "SQL balidatu"
-#: libraries/common.lib.php:1276
+#: libraries/common.lib.php:1278
msgid "Inline edit of this query"
msgstr ""
-#: libraries/common.lib.php:1278
+#: libraries/common.lib.php:1280
msgid "Inline"
msgstr ""
-#: libraries/common.lib.php:1332 libraries/common.lib.php:1347
+#: libraries/common.lib.php:1334 libraries/common.lib.php:1349
msgid "Profiling"
msgstr ""
-#: libraries/common.lib.php:1351 libraries/tbl_triggers.lib.php:28
+#: libraries/common.lib.php:1353 libraries/tbl_triggers.lib.php:28
#: server_processlist.php:58
msgid "Time"
msgstr "Denbora"
#. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "B"
msgstr "Byte"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "KiB"
msgstr "KB"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "MiB"
msgstr "MB"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "GiB"
msgstr "GB"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "TiB"
msgstr "TB"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "PiB"
msgstr "PB"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "EiB"
msgstr "EB"
#. l10n: Thousands separator
-#: libraries/common.lib.php:1417
+#: libraries/common.lib.php:1419
msgid ","
msgstr ","
#. l10n: Decimal separator
-#: libraries/common.lib.php:1419
+#: libraries/common.lib.php:1421
msgid "."
msgstr "."
#. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string
-#: libraries/common.lib.php:1596
+#: libraries/common.lib.php:1598
#: libraries/transformations/text_plain__dateformat.inc.php:34
msgid "%B %d, %Y at %I:%M %p"
msgstr "%Y-%m-%d, %H:%M:%S"
-#: libraries/common.lib.php:1898
+#: libraries/common.lib.php:1907
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "%s egun, %s ordu, %s minutu eta %s segundu"
-#: libraries/common.lib.php:2313 libraries/common.lib.php:2316
-#: libraries/display_tbl.lib.php:290 server_status.php:608
+#: libraries/common.lib.php:2322 libraries/common.lib.php:2325
+#: libraries/display_tbl.lib.php:290 server_status.php:719
msgid "Begin"
msgstr "Hasi"
-#: libraries/common.lib.php:2314 libraries/common.lib.php:2317
+#: libraries/common.lib.php:2323 libraries/common.lib.php:2326
#: libraries/display_tbl.lib.php:291 server_binlog.php:168
#: server_binlog.php:170
msgid "Previous"
msgstr "Aurrekoa"
-#: libraries/common.lib.php:2345 libraries/common.lib.php:2348
+#: libraries/common.lib.php:2354 libraries/common.lib.php:2357
#: libraries/display_tbl.lib.php:353
msgid "End"
msgstr "Amaiera"
-#: libraries/common.lib.php:2421
+#: libraries/common.lib.php:2430
#, php-format
msgid "Jump to database "%s"."
msgstr ""%s" datu-basera joan."
-#: libraries/common.lib.php:2441
+#: libraries/common.lib.php:2450
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr ""
-#: libraries/common.lib.php:2821 libraries/common.lib.php:2828
+#: libraries/common.lib.php:2830 libraries/common.lib.php:2837
#: libraries/db_links.inc.php:68 libraries/export/sql.php:25
#: libraries/import/sql.php:18 libraries/server_links.inc.php:45
#: libraries/tbl_links.inc.php:60 querywindow.php:99 test/theme.php:97
msgid "SQL"
msgstr "SQL"
-#: libraries/common.lib.php:2830 libraries/db_links.inc.php:104
+#: libraries/common.lib.php:2839 libraries/db_links.inc.php:104
#: libraries/tbl_links.inc.php:95 libraries/tbl_links.inc.php:117
#: view_operations.php:89
msgid "Operations"
@@ -1926,8 +1926,8 @@ msgid "Import"
msgstr "Esportatu"
#: libraries/db_links.inc.php:111 libraries/server_links.inc.php:66
-#: server_privileges.php:72 server_privileges.php:1683
-#: server_privileges.php:2032 test/theme.php:117
+#: server_privileges.php:111 server_privileges.php:1722
+#: server_privileges.php:2071 test/theme.php:117
msgid "Privileges"
msgstr "Pribilegioak"
@@ -1973,22 +1973,22 @@ msgid "Change password"
msgstr "Pasahitza aldatu"
#: libraries/display_change_password.lib.php:35
-#: libraries/replication_gui.lib.php:345 server_privileges.php:768
+#: libraries/replication_gui.lib.php:345 server_privileges.php:807
msgid "No Password"
msgstr "Pasahitzik ez"
#: libraries/display_change_password.lib.php:41
#: libraries/replication_gui.lib.php:59 libraries/replication_gui.lib.php:60
#: libraries/replication_gui.lib.php:335 libraries/replication_gui.lib.php:339
-#: libraries/replication_gui.lib.php:349 server_privileges.php:757
-#: server_privileges.php:761 server_privileges.php:772
-#: server_privileges.php:1499 server_synchronize.php:1175
+#: libraries/replication_gui.lib.php:349 server_privileges.php:796
+#: server_privileges.php:800 server_privileges.php:811
+#: server_privileges.php:1538 server_synchronize.php:1175
msgid "Password"
msgstr "Pasahitza"
#: libraries/display_change_password.lib.php:46
#: libraries/replication_gui.lib.php:353 libraries/replication_gui.lib.php:356
-#: server_privileges.php:776 server_privileges.php:779
+#: server_privileges.php:815 server_privileges.php:818
msgid "Re-type"
msgstr "Berridatzi"
@@ -2001,12 +2001,12 @@ msgid "MySQL 4.0 compatible"
msgstr ""
#: libraries/display_change_password.lib.php:72
-#: libraries/replication_gui.lib.php:360 server_privileges.php:783
+#: libraries/replication_gui.lib.php:360 server_privileges.php:822
msgid "Generate Password"
msgstr ""
#: libraries/display_change_password.lib.php:75
-#: libraries/replication_gui.lib.php:363 server_privileges.php:786
+#: libraries/replication_gui.lib.php:363 server_privileges.php:825
#, fuzzy
msgid "Generate"
msgstr "Egilea:"
@@ -2020,8 +2020,8 @@ msgstr "Datu-base berri bat sortu"
msgid "Create"
msgstr "Sortu"
-#: libraries/display_create_database.lib.php:40 server_privileges.php:74
-#: server_privileges.php:1388 server_replication.php:35
+#: libraries/display_create_database.lib.php:40 server_privileges.php:113
+#: server_privileges.php:1427 server_replication.php:35
msgid "No Privileges"
msgstr "Pribilegiorik gabe"
@@ -2110,7 +2110,7 @@ msgstr "Trinkotzea"
#: libraries/display_export.lib.php:240 libraries/display_import.lib.php:197
#: libraries/display_import.lib.php:210 libraries/display_tbl.lib.php:530
#: libraries/export/sql.php:868 libraries/tbl_properties.inc.php:575
-#: server_privileges.php:1836 server_processlist.php:75
+#: server_privileges.php:1875 server_processlist.php:75
msgid "None"
msgstr "Batez"
@@ -2431,7 +2431,7 @@ msgstr ""
msgid "Buffer Pool"
msgstr ""
-#: libraries/engines/innodb.lib.php:145 server_status.php:306
+#: libraries/engines/innodb.lib.php:145 server_status.php:417
msgid "InnoDB Status"
msgstr "InnoDB Egoera"
@@ -2440,8 +2440,8 @@ msgid "Buffer Pool Usage"
msgstr ""
#: libraries/engines/innodb.lib.php:194 server_databases.php:137
-#: server_databases.php:305 server_status.php:414 server_status.php:475
-#: server_status.php:496 tbl_printview.php:351 tbl_structure.php:696
+#: server_databases.php:305 server_status.php:525 server_status.php:586
+#: server_status.php:607 tbl_printview.php:351 tbl_structure.php:696
msgid "Total"
msgstr "Gutira"
@@ -2759,7 +2759,7 @@ msgstr ""
#: libraries/export/latex.php:201 libraries/export/odt.php:48
#: libraries/export/sql.php:106 libraries/export/sql.php:868
#: libraries/export/texytext.php:27 server_databases.php:127
-#: server_privileges.php:537 server_replication.php:316 tbl_printview.php:317
+#: server_privileges.php:576 server_replication.php:316 tbl_printview.php:317
#: tbl_structure.php:665
msgid "Data"
msgstr "Datuak"
@@ -2810,9 +2810,9 @@ msgstr "MIME-mota"
#: libraries/export/xml.php:102 libraries/header_printview.inc.php:57
#: libraries/replication_gui.lib.php:63 libraries/replication_gui.lib.php:174
#: libraries/replication_gui.lib.php:269 libraries/replication_gui.lib.php:272
-#: libraries/replication_gui.lib.php:329 server_privileges.php:692
-#: server_privileges.php:695 server_privileges.php:751
-#: server_privileges.php:1498 server_privileges.php:2030
+#: libraries/replication_gui.lib.php:329 server_privileges.php:731
+#: server_privileges.php:734 server_privileges.php:790
+#: server_privileges.php:1537 server_privileges.php:2069
#: server_processlist.php:55 server_synchronize.php:1159
msgid "Host"
msgstr "Zerbitzaria"
@@ -3171,757 +3171,6 @@ msgstr "Batez"
msgid "Convert to Kana"
msgstr ""
-#. l10n: Text direction, use either ltr or rtl
-#: libraries/messages.inc.php:19
-msgid "ltr"
-msgstr "ltr"
-
-#: libraries/messages.inc.php:21
-msgid "Content of table __TABLE__"
-msgstr "__TABLE__ taularen edukina"
-
-#: libraries/messages.inc.php:22
-msgid "(continued)"
-msgstr ""
-
-#: libraries/messages.inc.php:23
-msgid "Structure of table __TABLE__"
-msgstr "__TABLE__ taularen egitura"
-
-#: libraries/messages.inc.php:25 server_privileges.php:227
-msgid "Includes all privileges except GRANT."
-msgstr "Pribilegio guztiak, GRANT(baimendu) izanezik, dauzka."
-
-#: libraries/messages.inc.php:26 server_privileges.php:153
-#: server_privileges.php:476
-msgid "Allows altering the structure of existing tables."
-msgstr "Uneko taulen egiturak aldatzea baimentzen du."
-
-#: libraries/messages.inc.php:27 server_privileges.php:169
-#: server_privileges.php:482
-#, fuzzy
-msgid "Allows altering and dropping stored routines."
-msgstr "Indizeak sortu eta ezabatzea baimentzen du."
-
-#: libraries/messages.inc.php:28 server_privileges.php:145
-#: server_privileges.php:475
-msgid "Allows creating new databases and tables."
-msgstr "Datu-base eta taula berriak sortzea baimentzen du."
-
-#: libraries/messages.inc.php:29 server_privileges.php:168
-#: server_privileges.php:481
-#, fuzzy
-msgid "Allows creating stored routines."
-msgstr "Taula berriak sortzea baimentzen du."
-
-#: libraries/messages.inc.php:30 server_privileges.php:475
-msgid "Allows creating new tables."
-msgstr "Taula berriak sortzea baimentzen du."
-
-#: libraries/messages.inc.php:31 server_privileges.php:156
-#: server_privileges.php:479
-msgid "Allows creating temporary tables."
-msgstr "Aldi baterako taulak sortzea baimentzen du."
-
-#: libraries/messages.inc.php:32 server_privileges.php:170
-#: server_privileges.php:515
-msgid "Allows creating, dropping and renaming user accounts."
-msgstr ""
-
-#: libraries/messages.inc.php:33 server_privileges.php:160
-#: server_privileges.php:164 server_privileges.php:487
-#: server_privileges.php:491
-#, fuzzy
-msgid "Allows creating new views."
-msgstr "Taula berriak sortzea baimentzen du."
-
-#: libraries/messages.inc.php:34 server_privileges.php:144
-#: server_privileges.php:467
-msgid "Allows deleting data."
-msgstr "Datuak ezabatzea baimentzen du."
-
-#: libraries/messages.inc.php:35 server_privileges.php:146
-#: server_privileges.php:478
-msgid "Allows dropping databases and tables."
-msgstr "Datu-base eta taulak ezabatzea baimentzen du."
-
-#: libraries/messages.inc.php:36 server_privileges.php:478
-msgid "Allows dropping tables."
-msgstr "Taulak ezabatzea baimentzen du."
-
-#: libraries/messages.inc.php:37 server_privileges.php:161
-#: server_privileges.php:495
-msgid "Allows to set up events for the event scheduler"
-msgstr ""
-
-#: libraries/messages.inc.php:38 server_privileges.php:171
-#: server_privileges.php:483
-msgid "Allows executing stored routines."
-msgstr ""
-
-#: libraries/messages.inc.php:39 server_privileges.php:150
-#: server_privileges.php:470
-msgid "Allows importing data from and exporting data into files."
-msgstr ""
-"Datuak fitxategietatik inportatzea eta fitxategietara esportatzea baimentzen "
-"du."
-
-#: libraries/messages.inc.php:40 server_privileges.php:501
-msgid ""
-"Allows adding users and privileges without reloading the privilege tables."
-msgstr ""
-"Erabiltzaileak eta pribilegioak gehitzea baimentzen du pribilegioen taula "
-"berkargatu gabe."
-
-#: libraries/messages.inc.php:41 server_privileges.php:152
-#: server_privileges.php:477
-msgid "Allows creating and dropping indexes."
-msgstr "Indizeak sortu eta ezabatzea baimentzen du."
-
-#: libraries/messages.inc.php:42 server_privileges.php:142
-#: server_privileges.php:403 server_privileges.php:465
-msgid "Allows inserting and replacing data."
-msgstr "Datuak txertatu eta ordezkatzea baimentzen du."
-
-#: libraries/messages.inc.php:43 server_privileges.php:157
-#: server_privileges.php:510
-msgid "Allows locking tables for the current thread."
-msgstr "Momentuko harian taulak blokeatzea baimentzen du."
-
-#: libraries/messages.inc.php:44 server_privileges.php:607
-#: server_privileges.php:609
-msgid "Limits the number of new connections the user may open per hour."
-msgstr ""
-"Erabiltzaileak orduko ireki dezakeen konexio berrien kopurua mugatzen du."
-
-#: libraries/messages.inc.php:45 server_privileges.php:595
-#: server_privileges.php:597
-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/messages.inc.php:46 server_privileges.php:601
-#: server_privileges.php:603
-msgid ""
-"Limits the number of commands that change any table or database the user may "
-"execute per hour."
-msgstr ""
-"Erabiltzaileak orduko exekuta dezakeen taula edo datu-baserik alda dezaketen "
-"komando kopurua mugatzen du."
-
-#: libraries/messages.inc.php:47 server_privileges.php:613
-#: server_privileges.php:615
-#, fuzzy
-msgid "Limits the number of simultaneous connections the user may have."
-msgstr ""
-"Erabiltzaileak orduko ireki dezakeen konexio berrien kopurua mugatzen du."
-
-#: libraries/messages.inc.php:48 server_privileges.php:149
-#: server_privileges.php:505
-msgid "Allows viewing processes of all users"
-msgstr ""
-
-#: libraries/messages.inc.php:49 server_privileges.php:151
-#: server_privileges.php:409 server_privileges.php:511
-msgid "Has no effect in this MySQL version."
-msgstr "Ez du eraginik MySQL bertsio honetan."
-
-#: libraries/messages.inc.php:50 server_privileges.php:147
-#: server_privileges.php:506
-msgid "Allows reloading server settings and flushing the server's caches."
-msgstr ""
-"Zerbitzariaren hobespenak berkargatu eta beraren cacheak hustea baimentzen "
-"du."
-
-#: libraries/messages.inc.php:51 server_privileges.php:159
-#: server_privileges.php:513
-msgid "Allows the user to ask where the slaves / masters are."
-msgstr "Erabiltzailea baimentzen du morroiak / nagusiak non dauden galdetzeko."
-
-#: libraries/messages.inc.php:52 server_privileges.php:158
-#: server_privileges.php:514
-msgid "Needed for the replication slaves."
-msgstr "Erreplikazio morroientzat beharrezkoa."
-
-#: libraries/messages.inc.php:53 server_privileges.php:141
-#: server_privileges.php:400 server_privileges.php:464
-msgid "Allows reading data."
-msgstr "Datuak irakurtzea baimentzen du."
-
-#: libraries/messages.inc.php:54 server_privileges.php:154
-#: server_privileges.php:508
-msgid "Gives access to the complete list of databases."
-msgstr "Datu-base zenrrenda osorako sarrera ahalbidetzen du."
-
-#: libraries/messages.inc.php:55 server_privileges.php:165
-#: server_privileges.php:167 server_privileges.php:480
-msgid "Allows performing SHOW CREATE VIEW queries."
-msgstr ""
-
-#: libraries/messages.inc.php:56 server_privileges.php:148
-#: server_privileges.php:507
-msgid "Allows shutting down the server."
-msgstr "Zerbitzaria amatatzea baimentzen du."
-
-#: libraries/messages.inc.php:57 server_privileges.php:155
-#: server_privileges.php:504
-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 ""
-"Konektatzea baimentzen du, baita konexio kopuru maximora ailegatuta ere; "
-"Aldagai orokorrak zehaztu edota beste erabiltzaileen hariak hiltzeko "
-"bezalako kudeaketa-eragiketa gehienentzat beharrezkoa da."
-
-#: libraries/messages.inc.php:58 server_privileges.php:162
-#: server_privileges.php:496
-#, fuzzy
-msgid "Allows creating and dropping triggers"
-msgstr "Indizeak sortu eta ezabatzea baimentzen du."
-
-#: libraries/messages.inc.php:59 server_privileges.php:143
-#: server_privileges.php:406 server_privileges.php:466
-msgid "Allows changing data."
-msgstr "Datuak aldatzea baimentzen du."
-
-#: libraries/messages.inc.php:60 server_privileges.php:221
-msgid "No privileges."
-msgstr "Pribilegiorik ez."
-
-#: libraries/messages.inc.php:62
-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/messages.inc.php:63
-msgid "The number of transactions that used the temporary binary log cache."
-msgstr ""
-
-#: libraries/messages.inc.php:64
-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 "
-"to increase the tmp_table_size value to cause temporary tables to be memory-"
-"based instead of disk-based."
-msgstr ""
-
-#: libraries/messages.inc.php:65
-msgid "How many temporary files mysqld has created."
-msgstr ""
-
-#: libraries/messages.inc.php:66
-msgid ""
-"The number of in-memory temporary tables created automatically by the server "
-"while executing statements."
-msgstr ""
-
-#: libraries/messages.inc.php:67
-msgid ""
-"The number of rows written with INSERT DELAYED for which some error occurred "
-"(probably duplicate key)."
-msgstr ""
-
-#: libraries/messages.inc.php:68
-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/messages.inc.php:69
-msgid "The number of INSERT DELAYED rows written."
-msgstr ""
-
-#: libraries/messages.inc.php:70
-msgid "The number of executed FLUSH statements."
-msgstr ""
-
-#: libraries/messages.inc.php:71
-msgid "The number of internal COMMIT statements."
-msgstr ""
-
-#: libraries/messages.inc.php:72
-msgid "The number of times a row was deleted from a table."
-msgstr ""
-
-#: libraries/messages.inc.php:73
-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/messages.inc.php:74
-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/messages.inc.php:75
-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/messages.inc.php:76
-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/messages.inc.php:77
-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/messages.inc.php:78
-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 "
-"probably have a lot of queries that require MySQL to scan whole tables or "
-"you have joins that don't use keys properly."
-msgstr ""
-
-#: libraries/messages.inc.php:79
-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 "
-"tables are not properly indexed or that your queries are not written to take "
-"advantage of the indexes you have."
-msgstr ""
-
-#: libraries/messages.inc.php:80
-msgid "The number of internal ROLLBACK statements."
-msgstr ""
-
-#: libraries/messages.inc.php:81
-msgid "The number of requests to update a row in a table."
-msgstr ""
-
-#: libraries/messages.inc.php:82
-msgid "The number of requests to insert a row in a table."
-msgstr ""
-
-#: libraries/messages.inc.php:83
-msgid "The number of pages containing data (dirty or clean)."
-msgstr ""
-
-#: libraries/messages.inc.php:84
-msgid "The number of pages currently dirty."
-msgstr ""
-
-#: libraries/messages.inc.php:85
-msgid "The number of buffer pool pages that have been requested to be flushed."
-msgstr ""
-
-#: libraries/messages.inc.php:86
-msgid "The number of free pages."
-msgstr ""
-
-#: libraries/messages.inc.php:87
-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/messages.inc.php:88
-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 "
-"be calculated as Innodb_buffer_pool_pages_total - "
-"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data."
-msgstr ""
-
-#: libraries/messages.inc.php:89
-msgid "Total size of buffer pool, in pages."
-msgstr ""
-
-#: libraries/messages.inc.php:90
-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/messages.inc.php:91
-msgid ""
-"The number of sequential read-aheads InnoDB initiated. This happens when "
-"InnoDB does a sequential full table scan."
-msgstr ""
-
-#: libraries/messages.inc.php:92
-msgid "The number of logical read requests InnoDB has done."
-msgstr ""
-
-#: libraries/messages.inc.php:93
-msgid ""
-"The number of logical reads that InnoDB could not satisfy from buffer pool "
-"and had to do a single-page read."
-msgstr ""
-
-#: libraries/messages.inc.php:94
-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 "
-"available, it's necessary to wait for pages to be flushed first. This "
-"counter counts instances of these waits. If the buffer pool size was set "
-"properly, this value should be small."
-msgstr ""
-
-#: libraries/messages.inc.php:95
-msgid "The number writes done to the InnoDB buffer pool."
-msgstr ""
-
-#: libraries/messages.inc.php:96
-msgid "The number of fsync() operations so far."
-msgstr ""
-
-#: libraries/messages.inc.php:97
-msgid "The current number of pending fsync() operations."
-msgstr ""
-
-#: libraries/messages.inc.php:98
-msgid "The current number of pending reads."
-msgstr ""
-
-#: libraries/messages.inc.php:99
-msgid "The current number of pending writes."
-msgstr ""
-
-#: libraries/messages.inc.php:100
-msgid "The amount of data read so far, in bytes."
-msgstr ""
-
-#: libraries/messages.inc.php:101
-msgid "The total number of data reads."
-msgstr ""
-
-#: libraries/messages.inc.php:102
-msgid "The total number of data writes."
-msgstr ""
-
-#: libraries/messages.inc.php:103
-msgid "The amount of data written so far, in bytes."
-msgstr ""
-
-#: libraries/messages.inc.php:104
-msgid "The number of pages that have been written for doublewrite operations."
-msgstr ""
-
-#: libraries/messages.inc.php:105
-msgid "The number of doublewrite operations that have been performed."
-msgstr ""
-
-#: libraries/messages.inc.php:106
-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/messages.inc.php:107
-msgid "The number of log write requests."
-msgstr ""
-
-#: libraries/messages.inc.php:108
-msgid "The number of physical writes to the log file."
-msgstr ""
-
-#: libraries/messages.inc.php:109
-msgid "The number of fsync() writes done to the log file."
-msgstr ""
-
-#: libraries/messages.inc.php:110
-msgid "The number of pending log file fsyncs."
-msgstr ""
-
-#: libraries/messages.inc.php:111
-msgid "Pending log file writes."
-msgstr ""
-
-#: libraries/messages.inc.php:112
-msgid "The number of bytes written to the log file."
-msgstr ""
-
-#: libraries/messages.inc.php:113
-msgid "The number of pages created."
-msgstr ""
-
-#: libraries/messages.inc.php:114
-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/messages.inc.php:115
-msgid "The number of pages read."
-msgstr ""
-
-#: libraries/messages.inc.php:116
-msgid "The number of pages written."
-msgstr ""
-
-#: libraries/messages.inc.php:117
-msgid "The number of row locks currently being waited for."
-msgstr ""
-
-#: libraries/messages.inc.php:118
-msgid "The average time to acquire a row lock, in milliseconds."
-msgstr ""
-
-#: libraries/messages.inc.php:119
-msgid "The total time spent in acquiring row locks, in milliseconds."
-msgstr ""
-
-#: libraries/messages.inc.php:120
-msgid "The maximum time to acquire a row lock, in milliseconds."
-msgstr ""
-
-#: libraries/messages.inc.php:121
-msgid "The number of times a row lock had to be waited for."
-msgstr ""
-
-#: libraries/messages.inc.php:122
-msgid "The number of rows deleted from InnoDB tables."
-msgstr ""
-
-#: libraries/messages.inc.php:123
-msgid "The number of rows inserted in InnoDB tables."
-msgstr ""
-
-#: libraries/messages.inc.php:124
-msgid "The number of rows read from InnoDB tables."
-msgstr ""
-
-#: libraries/messages.inc.php:125
-msgid "The number of rows updated in InnoDB tables."
-msgstr ""
-
-#: libraries/messages.inc.php:126
-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/messages.inc.php:127
-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/messages.inc.php:128
-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/messages.inc.php:129
-msgid "The number of requests to read a key block from the cache."
-msgstr ""
-
-#: libraries/messages.inc.php:130
-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/messages.inc.php:131
-msgid "The number of requests to write a key block to the cache."
-msgstr ""
-
-#: libraries/messages.inc.php:132
-msgid "The number of physical writes of a key block to disk."
-msgstr ""
-
-#: libraries/messages.inc.php:133
-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/messages.inc.php:134
-msgid "The number of rows waiting to be written in INSERT DELAYED queues."
-msgstr ""
-
-#: libraries/messages.inc.php:135
-msgid ""
-"The number of tables that have been opened. If opened tables is big, your "
-"table cache value is probably too small."
-msgstr ""
-
-#: libraries/messages.inc.php:136
-msgid "The number of files that are open."
-msgstr ""
-
-#: libraries/messages.inc.php:137
-msgid "The number of streams that are open (used mainly for logging)."
-msgstr ""
-
-#: libraries/messages.inc.php:138
-msgid "The number of tables that are open."
-msgstr ""
-
-#: libraries/messages.inc.php:139
-msgid "The number of free memory blocks in query cache."
-msgstr ""
-
-#: libraries/messages.inc.php:140
-msgid "The amount of free memory for query cache."
-msgstr ""
-
-#: libraries/messages.inc.php:141
-msgid "The number of cache hits."
-msgstr ""
-
-#: libraries/messages.inc.php:142
-msgid "The number of queries added to the cache."
-msgstr ""
-
-#: libraries/messages.inc.php:143
-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 "
-"cache size. The query cache uses a least recently used (LRU) strategy to "
-"decide which queries to remove from the cache."
-msgstr ""
-
-#: libraries/messages.inc.php:144
-msgid ""
-"The number of non-cached queries (not cachable, or not cached due to the "
-"query_cache_type setting)."
-msgstr ""
-
-#: libraries/messages.inc.php:145
-msgid "The number of queries registered in the cache."
-msgstr ""
-
-#: libraries/messages.inc.php:146
-msgid "The total number of blocks in the query cache."
-msgstr ""
-
-#: libraries/messages.inc.php:147
-#, fuzzy
-msgctxt "$strShowStatusReset"
-msgid "Reset"
-msgstr "Reset egin"
-
-#: libraries/messages.inc.php:148
-msgid "The status of failsafe replication (not yet implemented)."
-msgstr ""
-
-#: libraries/messages.inc.php:149
-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/messages.inc.php:150
-msgid "The number of joins that used a range search on a reference table."
-msgstr ""
-
-#: libraries/messages.inc.php:151
-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/messages.inc.php:152
-msgid ""
-"The number of joins that used ranges on the first table. (It's normally not "
-"critical even if this is big.)"
-msgstr ""
-
-#: libraries/messages.inc.php:153
-msgid "The number of joins that did a full scan of the first table."
-msgstr ""
-
-#: libraries/messages.inc.php:154
-msgid "The number of temporary tables currently open by the slave SQL thread."
-msgstr ""
-
-#: libraries/messages.inc.php:155
-msgid ""
-"Total (since startup) number of times the replication slave SQL thread has "
-"retried transactions."
-msgstr ""
-
-#: libraries/messages.inc.php:156
-msgid "This is ON if this server is a slave that is connected to a master."
-msgstr ""
-
-#: libraries/messages.inc.php:157
-msgid ""
-"The number of threads that have taken more than slow_launch_time seconds to "
-"create."
-msgstr ""
-
-#: libraries/messages.inc.php:158
-msgid ""
-"The number of queries that have taken more than long_query_time seconds."
-msgstr ""
-
-#: libraries/messages.inc.php:159
-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/messages.inc.php:160
-msgid "The number of sorts that were done with ranges."
-msgstr ""
-
-#: libraries/messages.inc.php:161
-msgid "The number of sorted rows."
-msgstr ""
-
-#: libraries/messages.inc.php:162
-msgid "The number of sorts that were done by scanning the table."
-msgstr ""
-
-#: libraries/messages.inc.php:163
-msgid "The number of times that a table lock was acquired immediately."
-msgstr ""
-
-#: libraries/messages.inc.php:164
-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 "
-"should first optimize your queries, and then either split your table or "
-"tables or use replication."
-msgstr ""
-
-#: libraries/messages.inc.php:165
-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/messages.inc.php:166
-msgid "The number of currently open connections."
-msgstr ""
-
-#: libraries/messages.inc.php:167
-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 "
-"doesn't give a notable performance improvement if you have a good thread "
-"implementation.)"
-msgstr ""
-
-#: libraries/messages.inc.php:168
-msgid "The number of threads that are not sleeping."
-msgstr ""
-
#: libraries/mult_submits.inc.php:76 libraries/tbl_properties.inc.php:513
#: tbl_structure.php:29 tbl_structure.php:153 tbl_structure.php:157
#: tbl_structure.php:473
@@ -4244,8 +3493,8 @@ msgstr ""
#: libraries/replication_gui.lib.php:55 libraries/replication_gui.lib.php:56
#: libraries/replication_gui.lib.php:249 libraries/replication_gui.lib.php:252
-#: libraries/replication_gui.lib.php:259 server_privileges.php:672
-#: server_privileges.php:675 server_privileges.php:682
+#: libraries/replication_gui.lib.php:259 server_privileges.php:711
+#: server_privileges.php:714 server_privileges.php:721
#: server_synchronize.php:1171
msgid "User name"
msgstr "Erabiltzaile-izena"
@@ -4264,11 +3513,11 @@ msgid "Slave status"
msgstr ""
#: libraries/replication_gui.lib.php:114 libraries/sql_query_form.lib.php:445
-#: server_status.php:626 server_variables.php:52
+#: server_status.php:737 server_variables.php:52
msgid "Variable"
msgstr "Aldagaia"
-#: libraries/replication_gui.lib.php:115 server_status.php:627
+#: libraries/replication_gui.lib.php:115 server_status.php:738
#: tbl_change.php:324 tbl_printview.php:370 tbl_select.php:139
#: tbl_structure.php:729
msgid "Value"
@@ -4289,41 +3538,58 @@ msgstr ""
msgid "Add slave replication user"
msgstr ""
-#: libraries/replication_gui.lib.php:254 server_privileges.php:677
+#: libraries/replication_gui.lib.php:254 server_privileges.php:716
msgid "Any user"
msgstr "Edozein erabiltzaile"
#: libraries/replication_gui.lib.php:255 libraries/replication_gui.lib.php:323
-#: libraries/replication_gui.lib.php:346 server_privileges.php:678
-#: server_privileges.php:745 server_privileges.php:769
-#: server_privileges.php:1889 server_privileges.php:1919
+#: libraries/replication_gui.lib.php:346 server_privileges.php:717
+#: server_privileges.php:784 server_privileges.php:808
+#: server_privileges.php:1928 server_privileges.php:1958
msgid "Use text field"
msgstr "Testu-eremua erabili"
-#: libraries/replication_gui.lib.php:302 server_privileges.php:725
+#: libraries/replication_gui.lib.php:302 server_privileges.php:764
msgid "Any host"
msgstr "Edozein ostalari"
-#: libraries/replication_gui.lib.php:306 server_privileges.php:729
+#: libraries/replication_gui.lib.php:306 server_privileges.php:768
msgid "Local"
msgstr "Lokal"
-#: libraries/replication_gui.lib.php:312 server_privileges.php:734
+#: libraries/replication_gui.lib.php:312 server_privileges.php:773
msgid "This Host"
msgstr "Host hau"
-#: libraries/replication_gui.lib.php:318 server_privileges.php:740
+#: libraries/replication_gui.lib.php:318 server_privileges.php:779
msgid "Use Host Table"
msgstr "Host taula erabili"
-#: libraries/replication_gui.lib.php:331 server_privileges.php:753
+#: libraries/replication_gui.lib.php:331 server_privileges.php:792
msgid ""
"When Host table is used, this field is ignored and values stored in Host "
"table are used instead."
msgstr ""
-#: libraries/select_lang.lib.php:480 libraries/select_lang.lib.php:486
-#: libraries/select_lang.lib.php:492
+#. l10n: Text direction, use either ltr or rtl
+#: libraries/select_lang.lib.php:491
+msgid "ltr"
+msgstr "ltr"
+
+#: libraries/select_lang.lib.php:493
+msgid "Content of table __TABLE__"
+msgstr "__TABLE__ taularen edukina"
+
+#: libraries/select_lang.lib.php:494
+msgid "(continued)"
+msgstr ""
+
+#: libraries/select_lang.lib.php:495
+msgid "Structure of table __TABLE__"
+msgstr "__TABLE__ taularen egitura"
+
+#: libraries/select_lang.lib.php:500 libraries/select_lang.lib.php:506
+#: libraries/select_lang.lib.php:512
#, php-format
msgid "Unknown language: %1$s."
msgstr ""
@@ -4335,7 +3601,7 @@ msgid "Servers"
msgstr "Zerbitzaria"
#: libraries/server_links.inc.php:53 server_engines.php:112
-#: server_engines.php:116 server_status.php:304 test/theme.php:105
+#: server_engines.php:116 server_status.php:415 test/theme.php:105
msgid "Variables"
msgstr "Aldagaiak"
@@ -4348,7 +3614,7 @@ msgid "Engines"
msgstr ""
#: libraries/server_links.inc.php:76 server_binlog.php:110
-#: server_status.php:253 test/theme.php:121
+#: server_status.php:364 test/theme.php:121
#, fuzzy
msgid "Binary log"
msgstr " Binarioa "
@@ -4802,8 +4068,8 @@ msgstr "Reset egin"
msgid "Protocol version"
msgstr ""
-#: main.php:189 server_privileges.php:1350 server_privileges.php:1497
-#: server_privileges.php:1611 server_privileges.php:2029
+#: main.php:189 server_privileges.php:1389 server_privileges.php:1536
+#: server_privileges.php:1650 server_privileges.php:2068
#: server_processlist.php:54
msgid "User"
msgstr "Erabiltzailea"
@@ -5179,7 +4445,7 @@ msgstr "%s datu-base arrakastaz ezabatu dira."
msgid "Databases statistics"
msgstr "Datu-baseen estatistikak"
-#: server_databases.php:117 server_status.php:260
+#: server_databases.php:117 server_status.php:371
#: setup/lib/messages.inc.php:117
msgid "Tables"
msgstr "Taulak"
@@ -5198,6 +4464,15 @@ msgstr ""
msgid "Jump to database"
msgstr "Datu-baserik ez"
+#: server_databases.php:267
+msgid "Not replicated"
+msgstr ""
+
+#: server_databases.php:273
+#, fuzzy
+msgid "Replicated"
+msgstr "Erlazioak"
+
#: server_databases.php:289
#, php-format
msgid "Check privileges for database "%s"."
@@ -5231,143 +4506,345 @@ msgstr ""
msgid "View dump (schema) of databases"
msgstr "Ikusi datu-baseen iraulketa (eskema)"
-#: server_privileges.php:263 server_privileges.php:264
+#: server_privileges.php:24 server_privileges.php:266
+msgid "Includes all privileges except GRANT."
+msgstr "Pribilegio guztiak, GRANT(baimendu) izanezik, dauzka."
+
+#: server_privileges.php:25 server_privileges.php:192
+#: server_privileges.php:515
+msgid "Allows altering the structure of existing tables."
+msgstr "Uneko taulen egiturak aldatzea baimentzen du."
+
+#: server_privileges.php:26 server_privileges.php:208
+#: server_privileges.php:521
+#, fuzzy
+msgid "Allows altering and dropping stored routines."
+msgstr "Indizeak sortu eta ezabatzea baimentzen du."
+
+#: server_privileges.php:27 server_privileges.php:184
+#: server_privileges.php:514
+msgid "Allows creating new databases and tables."
+msgstr "Datu-base eta taula berriak sortzea baimentzen du."
+
+#: server_privileges.php:28 server_privileges.php:207
+#: server_privileges.php:520
+#, fuzzy
+msgid "Allows creating stored routines."
+msgstr "Taula berriak sortzea baimentzen du."
+
+#: server_privileges.php:29 server_privileges.php:514
+msgid "Allows creating new tables."
+msgstr "Taula berriak sortzea baimentzen du."
+
+#: server_privileges.php:30 server_privileges.php:195
+#: server_privileges.php:518
+msgid "Allows creating temporary tables."
+msgstr "Aldi baterako taulak sortzea baimentzen du."
+
+#: server_privileges.php:31 server_privileges.php:209
+#: server_privileges.php:554
+msgid "Allows creating, dropping and renaming user accounts."
+msgstr ""
+
+#: server_privileges.php:32 server_privileges.php:199
+#: server_privileges.php:203 server_privileges.php:526
+#: server_privileges.php:530
+#, fuzzy
+msgid "Allows creating new views."
+msgstr "Taula berriak sortzea baimentzen du."
+
+#: server_privileges.php:33 server_privileges.php:183
+#: server_privileges.php:506
+msgid "Allows deleting data."
+msgstr "Datuak ezabatzea baimentzen du."
+
+#: server_privileges.php:34 server_privileges.php:185
+#: server_privileges.php:517
+msgid "Allows dropping databases and tables."
+msgstr "Datu-base eta taulak ezabatzea baimentzen du."
+
+#: server_privileges.php:35 server_privileges.php:517
+msgid "Allows dropping tables."
+msgstr "Taulak ezabatzea baimentzen du."
+
+#: server_privileges.php:36 server_privileges.php:200
+#: server_privileges.php:534
+msgid "Allows to set up events for the event scheduler"
+msgstr ""
+
+#: server_privileges.php:37 server_privileges.php:210
+#: server_privileges.php:522
+msgid "Allows executing stored routines."
+msgstr ""
+
+#: server_privileges.php:38 server_privileges.php:189
+#: server_privileges.php:509
+msgid "Allows importing data from and exporting data into files."
+msgstr ""
+"Datuak fitxategietatik inportatzea eta fitxategietara esportatzea baimentzen "
+"du."
+
+#: server_privileges.php:39 server_privileges.php:540
+msgid ""
+"Allows adding users and privileges without reloading the privilege tables."
+msgstr ""
+"Erabiltzaileak eta pribilegioak gehitzea baimentzen du pribilegioen taula "
+"berkargatu gabe."
+
+#: server_privileges.php:40 server_privileges.php:191
+#: server_privileges.php:516
+msgid "Allows creating and dropping indexes."
+msgstr "Indizeak sortu eta ezabatzea baimentzen du."
+
+#: server_privileges.php:41 server_privileges.php:181
+#: server_privileges.php:442 server_privileges.php:504
+msgid "Allows inserting and replacing data."
+msgstr "Datuak txertatu eta ordezkatzea baimentzen du."
+
+#: server_privileges.php:42 server_privileges.php:196
+#: server_privileges.php:549
+msgid "Allows locking tables for the current thread."
+msgstr "Momentuko harian taulak blokeatzea baimentzen du."
+
+#: server_privileges.php:43 server_privileges.php:646
+#: server_privileges.php:648
+msgid "Limits the number of new connections the user may open per hour."
+msgstr ""
+"Erabiltzaileak orduko ireki dezakeen konexio berrien kopurua mugatzen du."
+
+#: server_privileges.php:44 server_privileges.php:634
+#: server_privileges.php:636
+msgid "Limits the number of queries the user may send to the server per hour."
+msgstr ""
+"Erabiltzaileak orduko zerbitzarira bidali dezakeen kontsulta kopurua "
+"mugatzen du."
+
+#: server_privileges.php:45 server_privileges.php:640
+#: server_privileges.php:642
+msgid ""
+"Limits the number of commands that change any table or database the user may "
+"execute per hour."
+msgstr ""
+"Erabiltzaileak orduko exekuta dezakeen taula edo datu-baserik alda dezaketen "
+"komando kopurua mugatzen du."
+
+#: server_privileges.php:46 server_privileges.php:652
+#: server_privileges.php:654
+#, fuzzy
+msgid "Limits the number of simultaneous connections the user may have."
+msgstr ""
+"Erabiltzaileak orduko ireki dezakeen konexio berrien kopurua mugatzen du."
+
+#: server_privileges.php:47 server_privileges.php:188
+#: server_privileges.php:544
+msgid "Allows viewing processes of all users"
+msgstr ""
+
+#: server_privileges.php:48 server_privileges.php:190
+#: server_privileges.php:448 server_privileges.php:550
+msgid "Has no effect in this MySQL version."
+msgstr "Ez du eraginik MySQL bertsio honetan."
+
+#: server_privileges.php:49 server_privileges.php:186
+#: server_privileges.php:545
+msgid "Allows reloading server settings and flushing the server's caches."
+msgstr ""
+"Zerbitzariaren hobespenak berkargatu eta beraren cacheak hustea baimentzen "
+"du."
+
+#: server_privileges.php:50 server_privileges.php:198
+#: server_privileges.php:552
+msgid "Allows the user to ask where the slaves / masters are."
+msgstr "Erabiltzailea baimentzen du morroiak / nagusiak non dauden galdetzeko."
+
+#: server_privileges.php:51 server_privileges.php:197
+#: server_privileges.php:553
+msgid "Needed for the replication slaves."
+msgstr "Erreplikazio morroientzat beharrezkoa."
+
+#: server_privileges.php:52 server_privileges.php:180
+#: server_privileges.php:439 server_privileges.php:503
+msgid "Allows reading data."
+msgstr "Datuak irakurtzea baimentzen du."
+
+#: server_privileges.php:53 server_privileges.php:193
+#: server_privileges.php:547
+msgid "Gives access to the complete list of databases."
+msgstr "Datu-base zenrrenda osorako sarrera ahalbidetzen du."
+
+#: server_privileges.php:54 server_privileges.php:204
+#: server_privileges.php:206 server_privileges.php:519
+msgid "Allows performing SHOW CREATE VIEW queries."
+msgstr ""
+
+#: server_privileges.php:55 server_privileges.php:187
+#: server_privileges.php:546
+msgid "Allows shutting down the server."
+msgstr "Zerbitzaria amatatzea baimentzen du."
+
+#: server_privileges.php:56 server_privileges.php:194
+#: server_privileges.php:543
+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 ""
+"Konektatzea baimentzen du, baita konexio kopuru maximora ailegatuta ere; "
+"Aldagai orokorrak zehaztu edota beste erabiltzaileen hariak hiltzeko "
+"bezalako kudeaketa-eragiketa gehienentzat beharrezkoa da."
+
+#: server_privileges.php:57 server_privileges.php:201
+#: server_privileges.php:535
+#, fuzzy
+msgid "Allows creating and dropping triggers"
+msgstr "Indizeak sortu eta ezabatzea baimentzen du."
+
+#: server_privileges.php:58 server_privileges.php:182
+#: server_privileges.php:445 server_privileges.php:505
+msgid "Allows changing data."
+msgstr "Datuak aldatzea baimentzen du."
+
+#: server_privileges.php:59 server_privileges.php:260
+msgid "No privileges."
+msgstr "Pribilegiorik ez."
+
+#: server_privileges.php:302 server_privileges.php:303
#, fuzzy
#| msgid "None"
msgctxt "None privileges"
msgid "None"
msgstr "Batez"
-#: server_privileges.php:392 server_privileges.php:527
-#: server_privileges.php:1679 server_privileges.php:1685
+#: server_privileges.php:431 server_privileges.php:566
+#: server_privileges.php:1718 server_privileges.php:1724
msgid "Table-specific privileges"
msgstr "Taularen pribilegio espezifikoak"
-#: server_privileges.php:393 server_privileges.php:535
-#: server_privileges.php:1501
+#: server_privileges.php:432 server_privileges.php:574
+#: server_privileges.php:1540
msgid " Note: MySQL privilege names are expressed in English "
msgstr " Oharra: MySQL-ren pribilegioen izenak ingelesez adierazita daude"
-#: server_privileges.php:524 server_privileges.php:1500
+#: server_privileges.php:563 server_privileges.php:1539
msgid "Global privileges"
msgstr "Pribilegio orokorrak"
-#: server_privileges.php:526 server_privileges.php:1679
+#: server_privileges.php:565 server_privileges.php:1718
msgid "Database-specific privileges"
msgstr "Datu-basearen pribilegio espezifikoak"
-#: server_privileges.php:571
+#: server_privileges.php:610
msgid "Administration"
msgstr "Kudeaketa"
-#: server_privileges.php:591
+#: server_privileges.php:630
msgid "Resource limits"
msgstr "Baliabideen mugak"
-#: server_privileges.php:592
+#: server_privileges.php:631
msgid "Note: Setting these options to 0 (zero) removes the limit."
msgstr "Oharra: Aukera hauek zerora ezarriz gero muga kentzen da."
-#: server_privileges.php:669
+#: server_privileges.php:708
msgid "Login Information"
msgstr "Saioa hasteko informazioa"
-#: server_privileges.php:763
+#: server_privileges.php:802
msgid "Do not change the password"
msgstr "Pasahitza ez aldatu"
-#: server_privileges.php:804 server_privileges.php:2166
+#: server_privileges.php:843 server_privileges.php:2205
#, fuzzy
#| msgid "No user(s) found."
msgid "No user found."
msgstr "Ez da erabiltzailerik aurkitu."
-#: server_privileges.php:848
+#: server_privileges.php:887
#, php-format
msgid "The user %s already exists!"
msgstr "%s erabiltzailea badago lehendik ere!"
-#: server_privileges.php:931
+#: server_privileges.php:970
msgid "You have added a new user."
msgstr "Erabiltzaile berria gehitu duzu."
-#: server_privileges.php:1152
+#: server_privileges.php:1191
#, php-format
msgid "You have updated the privileges for %s."
msgstr "%s-aren pribilegioak eguneratu dituzu."
-#: server_privileges.php:1176
+#: server_privileges.php:1215
#, php-format
msgid "You have revoked the privileges for %s"
msgstr "Zuk %s-(r)en pribilegioak ezeztatu dituzu"
-#: server_privileges.php:1212
+#: server_privileges.php:1251
#, php-format
msgid "The password for %s was changed successfully."
msgstr "%s-arentzako pasahitza arrakastaz aldatua izan da."
-#: server_privileges.php:1232
+#: server_privileges.php:1271
#, php-format
msgid "Deleting %s"
msgstr "%s ezabatzen"
-#: server_privileges.php:1243
+#: server_privileges.php:1282
msgid "No users selected for deleting!"
msgstr ""
-#: server_privileges.php:1246
+#: server_privileges.php:1285
msgid "Reloading the privileges"
msgstr "Pribilegioak berkargatzen"
-#: server_privileges.php:1261
+#: server_privileges.php:1300
msgid "The selected users have been deleted successfully."
msgstr "Hautatutako erabiltzaileak arrakastaz ezabatu dira."
-#: server_privileges.php:1296
+#: server_privileges.php:1335
msgid "The privileges were reloaded successfully."
msgstr "Pribilegioak arrakastaz berkargatu dira."
-#: server_privileges.php:1324 server_privileges.php:1610
+#: server_privileges.php:1363 server_privileges.php:1649
msgid "Edit Privileges"
msgstr "Editatu Pribilegioak"
-#: server_privileges.php:1333
+#: server_privileges.php:1372
msgid "Revoke"
msgstr "Ezeztatu"
-#: server_privileges.php:1365
+#: server_privileges.php:1404
msgid "User overview"
msgstr "Erabiltzailearen info orokorra"
-#: server_privileges.php:1502 server_privileges.php:1684
-#: server_privileges.php:2033
+#: server_privileges.php:1541 server_privileges.php:1723
+#: server_privileges.php:2072
msgid "Grant"
msgstr "Baimendu"
-#: server_privileges.php:1521 server_privileges.php:2123
+#: server_privileges.php:1560 server_privileges.php:2162
msgid "Any"
msgstr "Edozein"
-#: server_privileges.php:1570 server_privileges.php:1594
-#: server_privileges.php:1988 server_privileges.php:2177
+#: server_privileges.php:1609 server_privileges.php:1633
+#: server_privileges.php:2027 server_privileges.php:2216
msgid "Add a new User"
msgstr "Erabiltzaile berria gehitu"
-#: server_privileges.php:1575
+#: server_privileges.php:1614
msgid "Remove selected users"
msgstr "Hautatutako erabiltzaileak baztertu"
-#: server_privileges.php:1578
+#: server_privileges.php:1617
msgid "Revoke all active privileges from the users and delete them afterwards."
msgstr ""
"Erabiltzaileen pribilegio aktibo guztiak ezeztatu eta ondoren denak ezabatu."
-#: server_privileges.php:1579 server_privileges.php:1580
-#: server_privileges.php:1581
+#: server_privileges.php:1618 server_privileges.php:1619
+#: server_privileges.php:1620
msgid "Drop the databases that have the same names as the users."
msgstr "Erabiltzaileen izen berdina duten datu-baseak ezabatu."
-#: server_privileges.php:1597
+#: server_privileges.php:1636
#, php-format
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
@@ -5381,49 +4858,49 @@ msgstr ""
"daitezke. Kasu honetan, jarraitu aurretik %spribilegioak berkargatu%s "
"beharko zenituzke."
-#: server_privileges.php:1645
+#: server_privileges.php:1684
msgid "The selected user was not found in the privilege table."
msgstr "Hautatutako erabiltzailea ez da pribilegioen taulan aurkitu."
-#: server_privileges.php:1685
+#: server_privileges.php:1724
msgid "Column-specific privileges"
msgstr "Zutabearen pribilegio espezifikoak"
-#: server_privileges.php:1886
+#: server_privileges.php:1925
msgid "Add privileges on the following database"
msgstr "Pribilegioak gehitu datu-base honetan"
-#: server_privileges.php:1904
+#: server_privileges.php:1943
msgid "Wildcards % and _ should be escaped with a \\ to use them literally"
msgstr ""
-#: server_privileges.php:1907
+#: server_privileges.php:1946
msgid "Add privileges on the following table"
msgstr "Pribilegioak gehitu taula honetan "
-#: server_privileges.php:1964
+#: server_privileges.php:2003
msgid "Change Login Information / Copy User"
msgstr "Aldatu saioa hasteko informazioa / Erabiltzailea kopiatu"
-#: server_privileges.php:1967
+#: server_privileges.php:2006
msgid "Create a new user with the same privileges and ..."
msgstr "Erabiltzaile berri bat sortu pribilegio berdinekin eta ..."
-#: server_privileges.php:1969
+#: server_privileges.php:2008
msgid "... keep the old one."
msgstr "... mantendu aurrekoa."
-#: server_privileges.php:1970
+#: server_privileges.php:2009
msgid " ... delete the old one from the user tables."
msgstr " ... zaharra ezabatu erabiltzaileen tauletatik."
-#: server_privileges.php:1971
+#: server_privileges.php:2010
msgid ""
" ... revoke all active privileges from the old one and delete it afterwards."
msgstr ""
" ... zaharraren pribilegio aktibo guztiak errebokatu eta ondoren ezabatu."
-#: server_privileges.php:1972
+#: server_privileges.php:2011
msgid ""
" ... delete the old one from the user tables and reload the privileges "
"afterwards."
@@ -5431,44 +4908,44 @@ msgstr ""
" ... zaharra ezabatu erabiltzaileen tauletatik eta ondoren berkargatu "
"pribilegioak."
-#: server_privileges.php:1994
+#: server_privileges.php:2033
msgid "Database for user"
msgstr ""
-#: server_privileges.php:1998
+#: server_privileges.php:2037
#, fuzzy
#| msgid "None"
msgctxt "Create none database for user"
msgid "None"
msgstr "Batez"
-#: server_privileges.php:1999
+#: server_privileges.php:2038
msgid "Create database with same name and grant all privileges"
msgstr ""
-#: server_privileges.php:2000
+#: server_privileges.php:2039
msgid "Grant all privileges on wildcard name (username\\_%)"
msgstr ""
-#: server_privileges.php:2003
+#: server_privileges.php:2042
#, fuzzy, php-format
msgid "Grant all privileges on database "%s""
msgstr ""%s" datu-basearen pribilegioak egiaztatu."
-#: server_privileges.php:2026
+#: server_privileges.php:2065
#, php-format
msgid "Users having access to "%s""
msgstr ""%s"-(e)ra sarbidea duten erabiltzaileak"
-#: server_privileges.php:2134
+#: server_privileges.php:2173
msgid "global"
msgstr "orokorra"
-#: server_privileges.php:2136
+#: server_privileges.php:2175
msgid "database-specific"
msgstr "Datubasearentzat espezifikoa"
-#: server_privileges.php:2138
+#: server_privileges.php:2177
msgid "wildcard"
msgstr "komodina"
@@ -5516,7 +4993,7 @@ msgstr ""
msgid "This server is configured as master in a replication process."
msgstr ""
-#: server_replication.php:184 server_status.php:281
+#: server_replication.php:184 server_status.php:392
msgid "Show master status"
msgstr ""
@@ -5654,107 +5131,639 @@ msgid ""
"like to configure it?"
msgstr ""
+#: server_status.php:40
+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 ""
+
+#: server_status.php:41
+msgid "The number of transactions that used the temporary binary log cache."
+msgstr ""
+
+#: server_status.php:42
+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 "
+"to increase the tmp_table_size value to cause temporary tables to be memory-"
+"based instead of disk-based."
+msgstr ""
+
+#: server_status.php:43
+msgid "How many temporary files mysqld has created."
+msgstr ""
+
+#: server_status.php:44
+msgid ""
+"The number of in-memory temporary tables created automatically by the server "
+"while executing statements."
+msgstr ""
+
+#: server_status.php:45
+msgid ""
+"The number of rows written with INSERT DELAYED for which some error occurred "
+"(probably duplicate key)."
+msgstr ""
+
#: server_status.php:46
+msgid ""
+"The number of INSERT DELAYED handler threads in use. Every different table "
+"on which one uses INSERT DELAYED gets its own thread."
+msgstr ""
+
+#: server_status.php:47
+msgid "The number of INSERT DELAYED rows written."
+msgstr ""
+
+#: server_status.php:48
+msgid "The number of executed FLUSH statements."
+msgstr ""
+
+#: server_status.php:49
+msgid "The number of internal COMMIT statements."
+msgstr ""
+
+#: server_status.php:50
+msgid "The number of times a row was deleted from a table."
+msgstr ""
+
+#: server_status.php:51
+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 ""
+
+#: server_status.php:52
+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 ""
+
+#: server_status.php:53
+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 ""
+
+#: server_status.php:54
+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 ""
+
+#: server_status.php:55
+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 ""
+
+#: server_status.php:56
+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 "
+"probably have a lot of queries that require MySQL to scan whole tables or "
+"you have joins that don't use keys properly."
+msgstr ""
+
+#: server_status.php:57
+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 "
+"tables are not properly indexed or that your queries are not written to take "
+"advantage of the indexes you have."
+msgstr ""
+
+#: server_status.php:58
+msgid "The number of internal ROLLBACK statements."
+msgstr ""
+
+#: server_status.php:59
+msgid "The number of requests to update a row in a table."
+msgstr ""
+
+#: server_status.php:60
+msgid "The number of requests to insert a row in a table."
+msgstr ""
+
+#: server_status.php:61
+msgid "The number of pages containing data (dirty or clean)."
+msgstr ""
+
+#: server_status.php:62
+msgid "The number of pages currently dirty."
+msgstr ""
+
+#: server_status.php:63
+msgid "The number of buffer pool pages that have been requested to be flushed."
+msgstr ""
+
+#: server_status.php:64
+msgid "The number of free pages."
+msgstr ""
+
+#: server_status.php:65
+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 ""
+
+#: server_status.php:66
+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 "
+"be calculated as Innodb_buffer_pool_pages_total - "
+"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data."
+msgstr ""
+
+#: server_status.php:67
+msgid "Total size of buffer pool, in pages."
+msgstr ""
+
+#: server_status.php:68
+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 ""
+
+#: server_status.php:69
+msgid ""
+"The number of sequential read-aheads InnoDB initiated. This happens when "
+"InnoDB does a sequential full table scan."
+msgstr ""
+
+#: server_status.php:70
+msgid "The number of logical read requests InnoDB has done."
+msgstr ""
+
+#: server_status.php:71
+msgid ""
+"The number of logical reads that InnoDB could not satisfy from buffer pool "
+"and had to do a single-page read."
+msgstr ""
+
+#: server_status.php:72
+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 "
+"available, it's necessary to wait for pages to be flushed first. This "
+"counter counts instances of these waits. If the buffer pool size was set "
+"properly, this value should be small."
+msgstr ""
+
+#: server_status.php:73
+msgid "The number writes done to the InnoDB buffer pool."
+msgstr ""
+
+#: server_status.php:74
+msgid "The number of fsync() operations so far."
+msgstr ""
+
+#: server_status.php:75
+msgid "The current number of pending fsync() operations."
+msgstr ""
+
+#: server_status.php:76
+msgid "The current number of pending reads."
+msgstr ""
+
+#: server_status.php:77
+msgid "The current number of pending writes."
+msgstr ""
+
+#: server_status.php:78
+msgid "The amount of data read so far, in bytes."
+msgstr ""
+
+#: server_status.php:79
+msgid "The total number of data reads."
+msgstr ""
+
+#: server_status.php:80
+msgid "The total number of data writes."
+msgstr ""
+
+#: server_status.php:81
+msgid "The amount of data written so far, in bytes."
+msgstr ""
+
+#: server_status.php:82
+msgid "The number of pages that have been written for doublewrite operations."
+msgstr ""
+
+#: server_status.php:83
+msgid "The number of doublewrite operations that have been performed."
+msgstr ""
+
+#: server_status.php:84
+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 ""
+
+#: server_status.php:85
+msgid "The number of log write requests."
+msgstr ""
+
+#: server_status.php:86
+msgid "The number of physical writes to the log file."
+msgstr ""
+
+#: server_status.php:87
+msgid "The number of fsync() writes done to the log file."
+msgstr ""
+
+#: server_status.php:88
+msgid "The number of pending log file fsyncs."
+msgstr ""
+
+#: server_status.php:89
+msgid "Pending log file writes."
+msgstr ""
+
+#: server_status.php:90
+msgid "The number of bytes written to the log file."
+msgstr ""
+
+#: server_status.php:91
+msgid "The number of pages created."
+msgstr ""
+
+#: server_status.php:92
+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 ""
+
+#: server_status.php:93
+msgid "The number of pages read."
+msgstr ""
+
+#: server_status.php:94
+msgid "The number of pages written."
+msgstr ""
+
+#: server_status.php:95
+msgid "The number of row locks currently being waited for."
+msgstr ""
+
+#: server_status.php:96
+msgid "The average time to acquire a row lock, in milliseconds."
+msgstr ""
+
+#: server_status.php:97
+msgid "The total time spent in acquiring row locks, in milliseconds."
+msgstr ""
+
+#: server_status.php:98
+msgid "The maximum time to acquire a row lock, in milliseconds."
+msgstr ""
+
+#: server_status.php:99
+msgid "The number of times a row lock had to be waited for."
+msgstr ""
+
+#: server_status.php:100
+msgid "The number of rows deleted from InnoDB tables."
+msgstr ""
+
+#: server_status.php:101
+msgid "The number of rows inserted in InnoDB tables."
+msgstr ""
+
+#: server_status.php:102
+msgid "The number of rows read from InnoDB tables."
+msgstr ""
+
+#: server_status.php:103
+msgid "The number of rows updated in InnoDB tables."
+msgstr ""
+
+#: server_status.php:104
+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 ""
+
+#: server_status.php:105
+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 ""
+
+#: server_status.php:106
+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 ""
+
+#: server_status.php:107
+msgid "The number of requests to read a key block from the cache."
+msgstr ""
+
+#: server_status.php:108
+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 ""
+
+#: server_status.php:109
+msgid "The number of requests to write a key block to the cache."
+msgstr ""
+
+#: server_status.php:110
+msgid "The number of physical writes of a key block to disk."
+msgstr ""
+
+#: server_status.php:111
+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 ""
+
+#: server_status.php:112
+msgid "The number of rows waiting to be written in INSERT DELAYED queues."
+msgstr ""
+
+#: server_status.php:113
+msgid ""
+"The number of tables that have been opened. If opened tables is big, your "
+"table cache value is probably too small."
+msgstr ""
+
+#: server_status.php:114
+msgid "The number of files that are open."
+msgstr ""
+
+#: server_status.php:115
+msgid "The number of streams that are open (used mainly for logging)."
+msgstr ""
+
+#: server_status.php:116
+msgid "The number of tables that are open."
+msgstr ""
+
+#: server_status.php:117
+msgid "The number of free memory blocks in query cache."
+msgstr ""
+
+#: server_status.php:118
+msgid "The amount of free memory for query cache."
+msgstr ""
+
+#: server_status.php:119
+msgid "The number of cache hits."
+msgstr ""
+
+#: server_status.php:120
+msgid "The number of queries added to the cache."
+msgstr ""
+
+#: server_status.php:121
+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 "
+"cache size. The query cache uses a least recently used (LRU) strategy to "
+"decide which queries to remove from the cache."
+msgstr ""
+
+#: server_status.php:122
+msgid ""
+"The number of non-cached queries (not cachable, or not cached due to the "
+"query_cache_type setting)."
+msgstr ""
+
+#: server_status.php:123
+msgid "The number of queries registered in the cache."
+msgstr ""
+
+#: server_status.php:124
+msgid "The total number of blocks in the query cache."
+msgstr ""
+
+#: server_status.php:125
+#, fuzzy
+msgctxt "$strShowStatusReset"
+msgid "Reset"
+msgstr "Reset egin"
+
+#: server_status.php:126
+msgid "The status of failsafe replication (not yet implemented)."
+msgstr ""
+
+#: server_status.php:127
+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 ""
+
+#: server_status.php:128
+msgid "The number of joins that used a range search on a reference table."
+msgstr ""
+
+#: server_status.php:129
+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 ""
+
+#: server_status.php:130
+msgid ""
+"The number of joins that used ranges on the first table. (It's normally not "
+"critical even if this is big.)"
+msgstr ""
+
+#: server_status.php:131
+msgid "The number of joins that did a full scan of the first table."
+msgstr ""
+
+#: server_status.php:132
+msgid "The number of temporary tables currently open by the slave SQL thread."
+msgstr ""
+
+#: server_status.php:133
+msgid ""
+"Total (since startup) number of times the replication slave SQL thread has "
+"retried transactions."
+msgstr ""
+
+#: server_status.php:134
+msgid "This is ON if this server is a slave that is connected to a master."
+msgstr ""
+
+#: server_status.php:135
+msgid ""
+"The number of threads that have taken more than slow_launch_time seconds to "
+"create."
+msgstr ""
+
+#: server_status.php:136
+msgid ""
+"The number of queries that have taken more than long_query_time seconds."
+msgstr ""
+
+#: server_status.php:137
+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 ""
+
+#: server_status.php:138
+msgid "The number of sorts that were done with ranges."
+msgstr ""
+
+#: server_status.php:139
+msgid "The number of sorted rows."
+msgstr ""
+
+#: server_status.php:140
+msgid "The number of sorts that were done by scanning the table."
+msgstr ""
+
+#: server_status.php:141
+msgid "The number of times that a table lock was acquired immediately."
+msgstr ""
+
+#: server_status.php:142
+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 "
+"should first optimize your queries, and then either split your table or "
+"tables or use replication."
+msgstr ""
+
+#: server_status.php:143
+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 ""
+
+#: server_status.php:144
+msgid "The number of currently open connections."
+msgstr ""
+
+#: server_status.php:145
+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 "
+"doesn't give a notable performance improvement if you have a good thread "
+"implementation.)"
+msgstr ""
+
+#: server_status.php:146
+msgid "The number of threads that are not sleeping."
+msgstr ""
+
+#: server_status.php:157
#, fuzzy
msgid "Runtime Information"
msgstr "Saioa hasteko informazioa"
-#: server_status.php:250
+#: server_status.php:361
msgid "Handler"
msgstr ""
-#: server_status.php:251
+#: server_status.php:362
#, fuzzy
msgid "Query cache"
msgstr "Kontsulta mota"
-#: server_status.php:252
+#: server_status.php:363
msgid "Threads"
msgstr ""
-#: server_status.php:254
+#: server_status.php:365
msgid "Temporary data"
msgstr ""
-#: server_status.php:255
+#: server_status.php:366
#, fuzzy
msgid "Delayed inserts"
msgstr "Use delayed inserts"
-#: server_status.php:256
+#: server_status.php:367
msgid "Key cache"
msgstr ""
-#: server_status.php:257
+#: server_status.php:368
msgid "Joins"
msgstr ""
-#: server_status.php:259
+#: server_status.php:370
msgid "Sorting"
msgstr ""
-#: server_status.php:261
+#: server_status.php:372
msgid "Transaction coordinator"
msgstr ""
-#: server_status.php:271
+#: server_status.php:382
msgid "Flush (close) all tables"
msgstr ""
-#: server_status.php:273
+#: server_status.php:384
#, fuzzy
msgid "Show open tables"
msgstr "Taulak erakutsi"
-#: server_status.php:278
+#: server_status.php:389
msgid "Show slave hosts"
msgstr ""
-#: server_status.php:284
+#: server_status.php:395
msgid "Show slave status"
msgstr ""
-#: server_status.php:289
+#: server_status.php:400
msgid "Flush query cache"
msgstr ""
-#: server_status.php:294
+#: server_status.php:405
msgid "Show processes"
msgstr "Erakutsi prozesuak"
-#: server_status.php:344
+#: server_status.php:455
#, fuzzy
#| msgid "Reset"
msgctxt "for Show status"
msgid "Reset"
msgstr "Reset egin"
-#: server_status.php:350
+#: server_status.php:461
#, php-format
msgid "This MySQL server has been running for %s. It started up on %s."
msgstr "MySQL zerbitzari hau martxan egon da %s. %s abiaratu zelarik."
-#: server_status.php:360
+#: server_status.php:471
msgid ""
"This MySQL server works as master and slave in replication"
"b> process."
msgstr ""
-#: server_status.php:362
+#: server_status.php:473
msgid "This MySQL server works as master in replication process."
msgstr ""
-#: server_status.php:364
+#: server_status.php:475
msgid "This MySQL server works as slave in replication process."
msgstr ""
-#: server_status.php:366
+#: server_status.php:477
msgid ""
"For further information about replication status on the server, please visit "
"the replication section."
msgstr ""
-#: server_status.php:383
+#: server_status.php:494
msgid ""
"Server traffic: These tables show the network traffic statistics of "
"this MySQL server since its startup."
@@ -5762,46 +5771,46 @@ msgstr ""
"Zerbitzariaren trafikoa: Taula hauek erakusten dituzte MySQL "
"zerbitzari honen sare-trafikoaren estatistikak bere hasieratzetik."
-#: server_status.php:388
+#: server_status.php:499
msgid "Traffic"
msgstr "Trafikoa"
-#: server_status.php:388
+#: server_status.php:499
msgid ""
"On a busy server, the byte counters may overrun, so those statistics as "
"reported by the MySQL server may be incorrect."
msgstr ""
-#: server_status.php:389 server_status.php:434 server_status.php:497
-#: server_status.php:555
+#: server_status.php:500 server_status.php:545 server_status.php:608
+#: server_status.php:666
msgid "per hour"
msgstr "orduko"
-#: server_status.php:394
+#: server_status.php:505
msgid "Received"
msgstr "Jasota"
-#: server_status.php:404
+#: server_status.php:515
msgid "Sent"
msgstr "Bidalita"
-#: server_status.php:433
+#: server_status.php:544
msgid "Connections"
msgstr "Konexioak"
-#: server_status.php:440
+#: server_status.php:551
msgid "max. concurrent connections"
msgstr ""
-#: server_status.php:447
+#: server_status.php:558
msgid "Failed attempts"
msgstr "Erratutako saiakerak"
-#: server_status.php:461
+#: server_status.php:572
msgid "Aborted"
msgstr "Deuseztatua"
-#: server_status.php:490
+#: server_status.php:601
#, php-format
msgid ""
"Query statistics: Since its startup, %s queries have been sent to the "
@@ -5810,19 +5819,19 @@ msgstr ""
"Kontsultaren estatistikak: Bere hasieratik, %s kontsulta zerbitzarira "
"bidali dira."
-#: server_status.php:498
+#: server_status.php:609
msgid "per minute"
msgstr "minutuko"
-#: server_status.php:499
+#: server_status.php:610
msgid "per second"
msgstr "segunduko"
-#: server_status.php:554
+#: server_status.php:665
msgid "Query type"
msgstr "Kontsulta mota"
-#: server_status.php:721
+#: server_status.php:832
msgid "Replication status"
msgstr ""
diff --git a/po/fa.po b/po/fa.po
index 800687167..3429b03e8 100755
--- a/po/fa.po
+++ b/po/fa.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-06-04 16:07-0400\n"
+"POT-Creation-Date: 2010-06-08 12:32-0400\n"
"PO-Revision-Date: 2010-05-19 03:54+0200\n"
"Last-Translator: \n"
"Language-Team: persian \n"
@@ -15,11 +15,11 @@ msgstr ""
"X-Generator: Pootle 2.0.1\n"
#: browse_foreigners.php:38 browse_foreigners.php:59
-#: libraries/display_tbl.lib.php:417 server_privileges.php:1475
+#: libraries/display_tbl.lib.php:417 server_privileges.php:1514
msgid "Show all"
msgstr "نمايش همه"
-#: browse_foreigners.php:82 libraries/common.lib.php:2304
+#: browse_foreigners.php:82 libraries/common.lib.php:2313
#: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:394
#: libraries/export/pdf.php:147 pdf_schema.php:283 pdf_schema.php:1123
#: pdf_schema.php:1139
@@ -35,8 +35,8 @@ msgstr ""
#: browse_foreigners.php:150 db_structure.php:79 db_structure.php:80
#: db_structure.php:91 db_structure.php:93 db_structure.php:104
-#: db_structure.php:106 libraries/common.lib.php:2822
-#: libraries/common.lib.php:2829 libraries/db_links.inc.php:75
+#: db_structure.php:106 libraries/common.lib.php:2831
+#: libraries/common.lib.php:2838 libraries/db_links.inc.php:75
#: libraries/tbl_links.inc.php:63
msgid "Search"
msgstr "جستجو"
@@ -46,7 +46,7 @@ msgstr "جستجو"
#: db_structure.php:567 js/messages.php:48 libraries/Config.class.php:1046
#: libraries/Theme_Manager.class.php:311
#: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719
-#: libraries/common.lib.php:1333 libraries/common.lib.php:2279
+#: libraries/common.lib.php:1335 libraries/common.lib.php:2288
#: libraries/display_change_password.lib.php:82
#: libraries/display_create_table.lib.php:63
#: libraries/display_export.lib.php:275 libraries/display_import.lib.php:276
@@ -57,9 +57,9 @@ msgstr "جستجو"
#: libraries/sql_query_form.lib.php:552 libraries/tbl_properties.inc.php:782
#: main.php:128 navigation.php:237 pdf_pages.php:292 pdf_pages.php:328
#: pdf_pages.php:530 pmd_pdf.php:116 server_binlog.php:142
-#: server_privileges.php:625 server_privileges.php:1585
-#: server_privileges.php:1932 server_privileges.php:1979
-#: server_privileges.php:2018 server_replication.php:235
+#: server_privileges.php:664 server_privileges.php:1624
+#: server_privileges.php:1971 server_privileges.php:2018
+#: server_privileges.php:2057 server_replication.php:235
#: server_replication.php:318 server_replication.php:341
#: server_synchronize.php:1209 tbl_change.php:330 tbl_change.php:1174
#: tbl_change.php:1211 tbl_indexes.php:254 tbl_operations.php:265
@@ -77,7 +77,7 @@ msgstr "Keyname"
#: browse_foreigners.php:169 browse_foreigners.php:171
#: server_collations.php:55 server_collations.php:67 server_engines.php:59
-#: server_status.php:628
+#: server_status.php:739
msgid "Description"
msgstr "توضیحات"
@@ -119,7 +119,7 @@ msgstr "نام ستونها"
#: libraries/db_structure.lib.php:60 libraries/export/htmlword.php:245
#: libraries/export/latex.php:360 libraries/export/odt.php:297
#: libraries/export/texytext.php:234 libraries/tbl_properties.inc.php:100
-#: pdf_schema.php:1263 pdf_schema.php:1284 server_privileges.php:2031
+#: pdf_schema.php:1263 pdf_schema.php:1284 server_privileges.php:2070
#: tbl_change.php:287 tbl_change.php:314 tbl_printview.php:143
#: tbl_printview.php:313 tbl_select.php:136 tbl_structure.php:178
#: tbl_structure.php:659 tbl_tracking.php:274 tbl_tracking.php:321
@@ -163,9 +163,9 @@ msgstr "توضيحات"
#: libraries/Index.class.php:386 libraries/export/htmlword.php:322
#: libraries/export/latex.php:430 libraries/export/odt.php:368
#: libraries/export/texytext.php:311 libraries/mult_submits.inc.php:263
-#: pdf_schema.php:1344 server_privileges.php:1529 server_privileges.php:1540
-#: server_privileges.php:1850 server_privileges.php:1855
-#: server_privileges.php:2148 sql.php:132 sql.php:194 tbl_printview.php:229
+#: pdf_schema.php:1344 server_privileges.php:1568 server_privileges.php:1579
+#: server_privileges.php:1889 server_privileges.php:1894
+#: server_privileges.php:2187 sql.php:132 sql.php:194 tbl_printview.php:229
#: tbl_structure.php:350 tbl_tracking.php:337 tbl_tracking.php:342
msgid "No"
msgstr "خير"
@@ -179,9 +179,9 @@ msgstr "خير"
#: libraries/mult_submits.inc.php:101 libraries/mult_submits.inc.php:106
#: libraries/mult_submits.inc.php:111 libraries/mult_submits.inc.php:262
#: libraries/mult_submits.inc.php:273 pdf_schema.php:1344
-#: server_databases.php:64 server_privileges.php:1526
-#: server_privileges.php:1540 server_privileges.php:1850
-#: server_privileges.php:1853 server_privileges.php:2148 sql.php:193
+#: server_databases.php:64 server_privileges.php:1565
+#: server_privileges.php:1579 server_privileges.php:1889
+#: server_privileges.php:1892 server_privileges.php:2187 sql.php:193
#: tbl_printview.php:229 tbl_structure.php:40 tbl_structure.php:350
#: tbl_tracking.php:335 tbl_tracking.php:340
msgid "Yes"
@@ -281,7 +281,7 @@ msgstr ""
msgid "BLOB Repository"
msgstr ""
-#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1350
+#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1352
#: libraries/server_links.inc.php:49 server_processlist.php:59
#: tbl_tracking.php:596 test/theme.php:101
msgid "Status"
@@ -343,8 +343,8 @@ msgstr "ويرايش صفحات PDF"
#: db_printview.php:104 db_tracking.php:72 db_tracking.php:157
#: libraries/db_structure.lib.php:46 libraries/export/xml.php:328
-#: libraries/header.inc.php:126 pdf_pages.php:424 server_privileges.php:1626
-#: server_privileges.php:1682 server_privileges.php:1946
+#: libraries/header.inc.php:126 pdf_pages.php:424 server_privileges.php:1665
+#: server_privileges.php:1721 server_privileges.php:1985
#: server_synchronize.php:423 server_synchronize.php:866 tbl_tracking.php:592
#: test/theme.php:75
msgid "Table"
@@ -445,7 +445,7 @@ msgstr "Del"
#: db_qbe.php:370 db_qbe.php:451 db_qbe.php:522 db_qbe.php:553
#: libraries/display_import.lib.php:166 libraries/tbl_properties.inc.php:779
-#: server_privileges.php:258 tbl_change.php:1031 tbl_indexes.php:250
+#: server_privileges.php:297 tbl_change.php:1031 tbl_indexes.php:250
#: tbl_select.php:288
msgid "Or"
msgstr "يا"
@@ -479,7 +479,7 @@ msgstr "بكارگيري جدولها"
msgid "SQL query on database %s:"
msgstr "پرس و جوي SQL از پايگاه داده %s:"
-#: db_qbe.php:934 libraries/common.lib.php:1223
+#: db_qbe.php:934 libraries/common.lib.php:1225
msgid "Submit Query"
msgstr "Submit Query"
@@ -518,7 +518,7 @@ msgstr ""
#: db_search.php:267 db_structure.php:77 db_structure.php:78
#: db_structure.php:90 db_structure.php:92 db_structure.php:103
-#: db_structure.php:105 libraries/common.lib.php:2824
+#: db_structure.php:105 libraries/common.lib.php:2833
#: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50
#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:467
msgid "Browse"
@@ -565,26 +565,26 @@ msgstr "در جدول(هاي) :"
#: db_structure.php:81 db_structure.php:82 db_structure.php:94
#: db_structure.php:95 db_structure.php:107 db_structure.php:108
-#: libraries/common.lib.php:2823 libraries/sql_query_form.lib.php:334
+#: libraries/common.lib.php:2832 libraries/sql_query_form.lib.php:334
#: libraries/sql_query_form.lib.php:337 libraries/tbl_links.inc.php:76
msgid "Insert"
msgstr "درج"
#: db_structure.php:83 db_structure.php:96 db_structure.php:109
-#: libraries/common.lib.php:2820 libraries/common.lib.php:2827
+#: libraries/common.lib.php:2829 libraries/common.lib.php:2836
#: libraries/db_links.inc.php:63 libraries/export/htmlword.php:23
#: libraries/export/latex.php:33 libraries/export/latex.php:337
#: libraries/export/odt.php:32 libraries/export/sql.php:60
#: libraries/export/texytext.php:23 libraries/import.lib.php:1104
#: libraries/tbl_links.inc.php:56 pmd_general.php:134
-#: server_privileges.php:554 server_replication.php:315 tbl_tracking.php:269
+#: server_privileges.php:593 server_replication.php:315 tbl_tracking.php:269
msgid "Structure"
msgstr "ساختار"
#: db_structure.php:84 db_structure.php:85 db_structure.php:97
#: db_structure.php:98 db_structure.php:110 db_structure.php:111
#: db_structure.php:545 db_structure.php:546 db_tracking.php:91
-#: libraries/Index.class.php:483 libraries/common.lib.php:1654
+#: libraries/Index.class.php:483 libraries/common.lib.php:1656
#: libraries/db_links.inc.php:100 libraries/mult_submits.inc.php:36
#: libraries/mult_submits.inc.php:73 libraries/tbl_links.inc.php:127
#: server_databases.php:352 tbl_structure.php:27 tbl_structure.php:151
@@ -594,7 +594,7 @@ msgstr "حذف"
#: db_structure.php:86 db_structure.php:87 db_structure.php:99
#: db_structure.php:100 db_structure.php:112 db_structure.php:113
-#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1653
+#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1655
#: libraries/mult_submits.inc.php:39 libraries/tbl_links.inc.php:105
msgid "Empty"
msgstr "خالي كردن"
@@ -636,7 +636,7 @@ msgstr "نمایش"
#: db_structure.php:485 libraries/db_structure.lib.php:49
#: libraries/server_links.inc.php:70 server_replication.php:33
-#: server_replication.php:164 server_status.php:258
+#: server_replication.php:164 server_status.php:369
msgid "Replication"
msgstr ""
@@ -652,20 +652,20 @@ msgstr ""
#: db_structure.php:524 db_structure.php:541 db_structure.php:542
#: libraries/display_tbl.lib.php:2081 libraries/display_tbl.lib.php:2086
#: libraries/mult_submits.inc.php:16 server_databases.php:346
-#: server_databases.php:351 server_privileges.php:1557 tbl_structure.php:455
+#: server_databases.php:351 server_privileges.php:1596 tbl_structure.php:455
#: tbl_structure.php:464
msgid "With selected:"
msgstr "موارد انتخابشده :"
#: db_structure.php:527 libraries/display_tbl.lib.php:2076
-#: server_databases.php:348 server_privileges.php:530
-#: server_privileges.php:1560 tbl_structure.php:458
+#: server_databases.php:348 server_privileges.php:569
+#: server_privileges.php:1599 tbl_structure.php:458
msgid "Check All"
msgstr "انتخاب همه"
#: db_structure.php:531 libraries/display_tbl.lib.php:2077
#: libraries/replication_gui.lib.php:33 server_databases.php:350
-#: server_privileges.php:533 server_privileges.php:1564 tbl_structure.php:462
+#: server_privileges.php:572 server_privileges.php:1603 tbl_structure.php:462
msgid "Uncheck All"
msgstr "عدم انتخاب همه"
@@ -703,7 +703,7 @@ msgstr "تحليل جدول"
#: libraries/display_export.lib.php:83 libraries/display_tbl.lib.php:2094
#: libraries/display_tbl.lib.php:2225 libraries/mult_submits.inc.php:62
#: libraries/server_links.inc.php:84 libraries/tbl_links.inc.php:82
-#: pmd_pdf.php:84 pmd_pdf.php:109 server_privileges.php:1341
+#: pmd_pdf.php:84 pmd_pdf.php:109 server_privileges.php:1380
#: setup/frames/menu.inc.php:22 tbl_row_action.php:59
msgid "Export"
msgstr "صدور"
@@ -721,8 +721,8 @@ msgstr ""
#: libraries/export/sql.php:342 libraries/export/texytext.php:84
#: libraries/export/xml.php:255 libraries/header.inc.php:106
#: libraries/header_printview.inc.php:58 server_databases.php:169
-#: server_privileges.php:1621 server_privileges.php:1682
-#: server_privileges.php:1940 server_processlist.php:56
+#: server_privileges.php:1660 server_privileges.php:1721
+#: server_privileges.php:1979 server_processlist.php:56
#: server_synchronize.php:1179 server_synchronize.php:1183
#: tbl_tracking.php:591 test/theme.php:65
msgid "Database"
@@ -743,8 +743,8 @@ msgstr ""
#: db_tracking.php:77 libraries/Index.class.php:440
#: libraries/db_structure.lib.php:53 server_databases.php:203
-#: server_privileges.php:1503 server_privileges.php:1686
-#: server_privileges.php:2034 tbl_structure.php:187
+#: server_privileges.php:1542 server_privileges.php:1725
+#: server_privileges.php:2073 tbl_structure.php:187
msgid "Action"
msgstr "عمل"
@@ -936,11 +936,11 @@ msgstr "نام ميزبان خالي است!"
msgid "The user name is empty!"
msgstr "نام كاربر خالي است!"
-#: js/messages.php:44 server_privileges.php:1197 user_password.php:70
+#: js/messages.php:44 server_privileges.php:1236 user_password.php:70
msgid "The password is empty!"
msgstr "اسم رمز خالي است!"
-#: js/messages.php:45 server_privileges.php:1195 user_password.php:73
+#: js/messages.php:45 server_privileges.php:1234 user_password.php:73
msgid "The passwords aren't the same!"
msgstr "اسم رمزها مانند هم نميباشد!"
@@ -1019,8 +1019,8 @@ msgid "Prev"
msgstr "قبل"
#. l10n: Display text for next month link in calendar
-#: js/messages.php:77 libraries/common.lib.php:2344
-#: libraries/common.lib.php:2347 libraries/display_tbl.lib.php:338
+#: js/messages.php:77 libraries/common.lib.php:2353
+#: libraries/common.lib.php:2356 libraries/display_tbl.lib.php:338
#: server_binlog.php:205 server_binlog.php:207 tbl_printview.php:424
#: tbl_structure.php:801
msgid "Next"
@@ -1096,27 +1096,27 @@ msgid "December"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:97 libraries/common.lib.php:1555
+#: js/messages.php:97 libraries/common.lib.php:1557
msgid "Jan"
msgstr "ژانويه"
#. l10n: Short month name
-#: js/messages.php:99 libraries/common.lib.php:1557
+#: js/messages.php:99 libraries/common.lib.php:1559
msgid "Feb"
msgstr "فوريه"
#. l10n: Short month name
-#: js/messages.php:101 libraries/common.lib.php:1559
+#: js/messages.php:101 libraries/common.lib.php:1561
msgid "Mar"
msgstr "مارس"
#. l10n: Short month name
-#: js/messages.php:103 libraries/common.lib.php:1561
+#: js/messages.php:103 libraries/common.lib.php:1563
msgid "Apr"
msgstr "آوريل"
#. l10n: Short month name
-#: js/messages.php:105 libraries/common.lib.php:1563
+#: js/messages.php:105 libraries/common.lib.php:1565
#, fuzzy
#| msgid "May"
msgctxt "Short month name"
@@ -1124,37 +1124,37 @@ msgid "May"
msgstr "مي"
#. l10n: Short month name
-#: js/messages.php:107 libraries/common.lib.php:1565
+#: js/messages.php:107 libraries/common.lib.php:1567
msgid "Jun"
msgstr "ژوئن"
#. l10n: Short month name
-#: js/messages.php:109 libraries/common.lib.php:1567
+#: js/messages.php:109 libraries/common.lib.php:1569
msgid "Jul"
msgstr "جولاي"
#. l10n: Short month name
-#: js/messages.php:111 libraries/common.lib.php:1569
+#: js/messages.php:111 libraries/common.lib.php:1571
msgid "Aug"
msgstr "آگوست"
#. l10n: Short month name
-#: js/messages.php:113 libraries/common.lib.php:1571
+#: js/messages.php:113 libraries/common.lib.php:1573
msgid "Sep"
msgstr "سپتامبر"
#. l10n: Short month name
-#: js/messages.php:115 libraries/common.lib.php:1573
+#: js/messages.php:115 libraries/common.lib.php:1575
msgid "Oct"
msgstr "اكتبر"
#. l10n: Short month name
-#: js/messages.php:117 libraries/common.lib.php:1575
+#: js/messages.php:117 libraries/common.lib.php:1577
msgid "Nov"
msgstr "نوامبر"
#. l10n: Short month name
-#: js/messages.php:119 libraries/common.lib.php:1577
+#: js/messages.php:119 libraries/common.lib.php:1579
msgid "Dec"
msgstr "دسامبر"
@@ -1195,37 +1195,37 @@ msgid "Saturday"
msgstr "شنبه"
#. l10n: Short week day name
-#: js/messages.php:132 libraries/common.lib.php:1580
+#: js/messages.php:132 libraries/common.lib.php:1582
msgid "Sun"
msgstr "يكشنبه"
#. l10n: Short week day name
-#: js/messages.php:134 libraries/common.lib.php:1582
+#: js/messages.php:134 libraries/common.lib.php:1584
msgid "Mon"
msgstr "دوشنبه"
#. l10n: Short week day name
-#: js/messages.php:136 libraries/common.lib.php:1584
+#: js/messages.php:136 libraries/common.lib.php:1586
msgid "Tue"
msgstr "سهشنبه"
#. l10n: Short week day name
-#: js/messages.php:138 libraries/common.lib.php:1586
+#: js/messages.php:138 libraries/common.lib.php:1588
msgid "Wed"
msgstr "چهارشنبه"
#. l10n: Short week day name
-#: js/messages.php:140 libraries/common.lib.php:1588
+#: js/messages.php:140 libraries/common.lib.php:1590
msgid "Thu"
msgstr "پنجشنبه"
#. l10n: Short week day name
-#: js/messages.php:142 libraries/common.lib.php:1590
+#: js/messages.php:142 libraries/common.lib.php:1592
msgid "Fri"
msgstr "جمعه"
#. l10n: Short week day name
-#: js/messages.php:144 libraries/common.lib.php:1592
+#: js/messages.php:144 libraries/common.lib.php:1594
msgid "Sat"
msgstr "شنبه"
@@ -1365,7 +1365,7 @@ msgid "Comment"
msgstr "توضيحات"
#: libraries/Index.class.php:466 libraries/common.lib.php:616
-#: libraries/common.lib.php:1199 libraries/display_tbl.lib.php:1117
+#: libraries/common.lib.php:1201 libraries/display_tbl.lib.php:1117
#: libraries/import.lib.php:1087 libraries/import.lib.php:1111
#: pdf_pages.php:285 setup/frames/index.inc.php:124
#: setup/lib/messages.inc.php:352 tbl_row_action.php:69
@@ -1389,7 +1389,7 @@ msgid ""
msgstr ""
#: libraries/List_Database.class.php:431 libraries/server_links.inc.php:41
-#: server_databases.php:88 server_privileges.php:1621
+#: server_databases.php:88 server_privileges.php:1660
#: setup/lib/messages.inc.php:110 test/theme.php:93
msgid "Databases"
msgstr "پايگاههاي داده"
@@ -1709,7 +1709,7 @@ msgid "Documentation"
msgstr "مستندات"
#: libraries/common.lib.php:595 libraries/header_printview.inc.php:61
-#: server_processlist.php:60 server_status.php:247
+#: server_processlist.php:60 server_status.php:358
msgid "SQL query"
msgstr "پرس و جوي SQL"
@@ -1726,131 +1726,131 @@ msgstr "شرح دادن SQL"
msgid "Skip Explain SQL"
msgstr "شرح دادن SQL"
-#: libraries/common.lib.php:1212
+#: libraries/common.lib.php:1214
msgid "Without PHP Code"
msgstr "بدون كد PHP"
-#: libraries/common.lib.php:1215 setup/lib/messages.inc.php:355
+#: libraries/common.lib.php:1217 setup/lib/messages.inc.php:355
msgid "Create PHP Code"
msgstr "ساخت كد PHP"
-#: libraries/common.lib.php:1233 server_status.php:341
+#: libraries/common.lib.php:1235 server_status.php:452
#: setup/lib/messages.inc.php:354
msgid "Refresh"
msgstr ""
-#: libraries/common.lib.php:1242
+#: libraries/common.lib.php:1244
#, fuzzy
msgid "Skip Validate SQL"
msgstr "معتبرسازي SQL"
-#: libraries/common.lib.php:1245 setup/lib/messages.inc.php:356 sql.php:518
+#: libraries/common.lib.php:1247 setup/lib/messages.inc.php:356 sql.php:518
msgid "Validate SQL"
msgstr "معتبرسازي SQL"
-#: libraries/common.lib.php:1276
+#: libraries/common.lib.php:1278
msgid "Inline edit of this query"
msgstr ""
-#: libraries/common.lib.php:1278
+#: libraries/common.lib.php:1280
#, fuzzy
#| msgid "Engines"
msgid "Inline"
msgstr "موتور"
-#: libraries/common.lib.php:1332 libraries/common.lib.php:1347
+#: libraries/common.lib.php:1334 libraries/common.lib.php:1349
msgid "Profiling"
msgstr ""
-#: libraries/common.lib.php:1351 libraries/tbl_triggers.lib.php:28
+#: libraries/common.lib.php:1353 libraries/tbl_triggers.lib.php:28
#: server_processlist.php:58
msgid "Time"
msgstr ""
#. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "B"
msgstr "بايت"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "KiB"
msgstr "كيلوبايت"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "MiB"
msgstr "مگا بايت"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "GiB"
msgstr "گيگا بايت"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "TiB"
msgstr "ترابايت"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "PiB"
msgstr "پتا بايت"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "EiB"
msgstr "اگزا بايت"
#. l10n: Thousands separator
-#: libraries/common.lib.php:1417
+#: libraries/common.lib.php:1419
msgid ","
msgstr ","
#. l10n: Decimal separator
-#: libraries/common.lib.php:1419
+#: libraries/common.lib.php:1421
msgid "."
msgstr "."
#. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string
-#: libraries/common.lib.php:1596
+#: libraries/common.lib.php:1598
#: libraries/transformations/text_plain__dateformat.inc.php:34
msgid "%B %d, %Y at %I:%M %p"
msgstr "%d %B %Y ساعت %I:%M %p"
-#: libraries/common.lib.php:1898
+#: libraries/common.lib.php:1907
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "%s days, %s hours, %s minutes and %s seconds"
-#: libraries/common.lib.php:2313 libraries/common.lib.php:2316
-#: libraries/display_tbl.lib.php:290 server_status.php:608
+#: libraries/common.lib.php:2322 libraries/common.lib.php:2325
+#: libraries/display_tbl.lib.php:290 server_status.php:719
msgid "Begin"
msgstr "شروع"
-#: libraries/common.lib.php:2314 libraries/common.lib.php:2317
+#: libraries/common.lib.php:2323 libraries/common.lib.php:2326
#: libraries/display_tbl.lib.php:291 server_binlog.php:168
#: server_binlog.php:170
msgid "Previous"
msgstr "قبل"
-#: libraries/common.lib.php:2345 libraries/common.lib.php:2348
+#: libraries/common.lib.php:2354 libraries/common.lib.php:2357
#: libraries/display_tbl.lib.php:353
msgid "End"
msgstr "انتها"
-#: libraries/common.lib.php:2421
+#: libraries/common.lib.php:2430
#, php-format
msgid "Jump to database "%s"."
msgstr ""
-#: libraries/common.lib.php:2441
+#: libraries/common.lib.php:2450
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr ""
-#: libraries/common.lib.php:2821 libraries/common.lib.php:2828
+#: libraries/common.lib.php:2830 libraries/common.lib.php:2837
#: libraries/db_links.inc.php:68 libraries/export/sql.php:25
#: libraries/import/sql.php:18 libraries/server_links.inc.php:45
#: libraries/tbl_links.inc.php:60 querywindow.php:99 test/theme.php:97
msgid "SQL"
msgstr "SQL"
-#: libraries/common.lib.php:2830 libraries/db_links.inc.php:104
+#: libraries/common.lib.php:2839 libraries/db_links.inc.php:104
#: libraries/tbl_links.inc.php:95 libraries/tbl_links.inc.php:117
#: view_operations.php:89
msgid "Operations"
@@ -1905,8 +1905,8 @@ msgid "Import"
msgstr "صدور"
#: libraries/db_links.inc.php:111 libraries/server_links.inc.php:66
-#: server_privileges.php:72 server_privileges.php:1683
-#: server_privileges.php:2032 test/theme.php:117
+#: server_privileges.php:111 server_privileges.php:1722
+#: server_privileges.php:2071 test/theme.php:117
msgid "Privileges"
msgstr "امتيازات"
@@ -1952,22 +1952,22 @@ msgid "Change password"
msgstr "تغيير اسم رمز"
#: libraries/display_change_password.lib.php:35
-#: libraries/replication_gui.lib.php:345 server_privileges.php:768
+#: libraries/replication_gui.lib.php:345 server_privileges.php:807
msgid "No Password"
msgstr "بدون اسم رمز"
#: libraries/display_change_password.lib.php:41
#: libraries/replication_gui.lib.php:59 libraries/replication_gui.lib.php:60
#: libraries/replication_gui.lib.php:335 libraries/replication_gui.lib.php:339
-#: libraries/replication_gui.lib.php:349 server_privileges.php:757
-#: server_privileges.php:761 server_privileges.php:772
-#: server_privileges.php:1499 server_synchronize.php:1175
+#: libraries/replication_gui.lib.php:349 server_privileges.php:796
+#: server_privileges.php:800 server_privileges.php:811
+#: server_privileges.php:1538 server_synchronize.php:1175
msgid "Password"
msgstr "اسم رمز"
#: libraries/display_change_password.lib.php:46
#: libraries/replication_gui.lib.php:353 libraries/replication_gui.lib.php:356
-#: server_privileges.php:776 server_privileges.php:779
+#: server_privileges.php:815 server_privileges.php:818
msgid "Re-type"
msgstr "تكرار"
@@ -1980,12 +1980,12 @@ msgid "MySQL 4.0 compatible"
msgstr ""
#: libraries/display_change_password.lib.php:72
-#: libraries/replication_gui.lib.php:360 server_privileges.php:783
+#: libraries/replication_gui.lib.php:360 server_privileges.php:822
msgid "Generate Password"
msgstr ""
#: libraries/display_change_password.lib.php:75
-#: libraries/replication_gui.lib.php:363 server_privileges.php:786
+#: libraries/replication_gui.lib.php:363 server_privileges.php:825
#, fuzzy
msgid "Generate"
msgstr "توليدشده توسط"
@@ -1999,8 +1999,8 @@ msgstr "ساخت پايگاه داده جديد"
msgid "Create"
msgstr "ساختن"
-#: libraries/display_create_database.lib.php:40 server_privileges.php:74
-#: server_privileges.php:1388 server_replication.php:35
+#: libraries/display_create_database.lib.php:40 server_privileges.php:113
+#: server_privileges.php:1427 server_replication.php:35
#, fuzzy
msgid "No Privileges"
msgstr "امتيازات"
@@ -2090,7 +2090,7 @@ msgstr "فشردهسازي"
#: libraries/display_export.lib.php:240 libraries/display_import.lib.php:197
#: libraries/display_import.lib.php:210 libraries/display_tbl.lib.php:530
#: libraries/export/sql.php:868 libraries/tbl_properties.inc.php:575
-#: server_privileges.php:1836 server_processlist.php:75
+#: server_privileges.php:1875 server_processlist.php:75
msgid "None"
msgstr "خير"
@@ -2409,7 +2409,7 @@ msgstr ""
msgid "Buffer Pool"
msgstr ""
-#: libraries/engines/innodb.lib.php:145 server_status.php:306
+#: libraries/engines/innodb.lib.php:145 server_status.php:417
msgid "InnoDB Status"
msgstr ""
@@ -2418,8 +2418,8 @@ msgid "Buffer Pool Usage"
msgstr ""
#: libraries/engines/innodb.lib.php:194 server_databases.php:137
-#: server_databases.php:305 server_status.php:414 server_status.php:475
-#: server_status.php:496 tbl_printview.php:351 tbl_structure.php:696
+#: server_databases.php:305 server_status.php:525 server_status.php:586
+#: server_status.php:607 tbl_printview.php:351 tbl_structure.php:696
msgid "Total"
msgstr "جمع كل"
@@ -2736,7 +2736,7 @@ msgstr ""
#: libraries/export/latex.php:201 libraries/export/odt.php:48
#: libraries/export/sql.php:106 libraries/export/sql.php:868
#: libraries/export/texytext.php:27 server_databases.php:127
-#: server_privileges.php:537 server_replication.php:316 tbl_printview.php:317
+#: server_privileges.php:576 server_replication.php:316 tbl_printview.php:317
#: tbl_structure.php:665
msgid "Data"
msgstr "داده"
@@ -2787,9 +2787,9 @@ msgstr ""
#: libraries/export/xml.php:102 libraries/header_printview.inc.php:57
#: libraries/replication_gui.lib.php:63 libraries/replication_gui.lib.php:174
#: libraries/replication_gui.lib.php:269 libraries/replication_gui.lib.php:272
-#: libraries/replication_gui.lib.php:329 server_privileges.php:692
-#: server_privileges.php:695 server_privileges.php:751
-#: server_privileges.php:1498 server_privileges.php:2030
+#: libraries/replication_gui.lib.php:329 server_privileges.php:731
+#: server_privileges.php:734 server_privileges.php:790
+#: server_privileges.php:1537 server_privileges.php:2069
#: server_processlist.php:55 server_synchronize.php:1159
msgid "Host"
msgstr "ميزبان"
@@ -3145,738 +3145,6 @@ msgstr "خير"
msgid "Convert to Kana"
msgstr ""
-#. l10n: Text direction, use either ltr or rtl
-#: libraries/messages.inc.php:19
-msgid "ltr"
-msgstr "rtl"
-
-#: libraries/messages.inc.php:21
-msgid "Content of table __TABLE__"
-msgstr ""
-
-#: libraries/messages.inc.php:22
-msgid "(continued)"
-msgstr ""
-
-#: libraries/messages.inc.php:23
-msgid "Structure of table __TABLE__"
-msgstr ""
-
-#: libraries/messages.inc.php:25 server_privileges.php:227
-msgid "Includes all privileges except GRANT."
-msgstr ""
-
-#: libraries/messages.inc.php:26 server_privileges.php:153
-#: server_privileges.php:476
-msgid "Allows altering the structure of existing tables."
-msgstr ""
-
-#: libraries/messages.inc.php:27 server_privileges.php:169
-#: server_privileges.php:482
-msgid "Allows altering and dropping stored routines."
-msgstr ""
-
-#: libraries/messages.inc.php:28 server_privileges.php:145
-#: server_privileges.php:475
-msgid "Allows creating new databases and tables."
-msgstr ""
-
-#: libraries/messages.inc.php:29 server_privileges.php:168
-#: server_privileges.php:481
-msgid "Allows creating stored routines."
-msgstr ""
-
-#: libraries/messages.inc.php:30 server_privileges.php:475
-msgid "Allows creating new tables."
-msgstr ""
-
-#: libraries/messages.inc.php:31 server_privileges.php:156
-#: server_privileges.php:479
-msgid "Allows creating temporary tables."
-msgstr ""
-
-#: libraries/messages.inc.php:32 server_privileges.php:170
-#: server_privileges.php:515
-msgid "Allows creating, dropping and renaming user accounts."
-msgstr ""
-
-#: libraries/messages.inc.php:33 server_privileges.php:160
-#: server_privileges.php:164 server_privileges.php:487
-#: server_privileges.php:491
-msgid "Allows creating new views."
-msgstr ""
-
-#: libraries/messages.inc.php:34 server_privileges.php:144
-#: server_privileges.php:467
-msgid "Allows deleting data."
-msgstr ""
-
-#: libraries/messages.inc.php:35 server_privileges.php:146
-#: server_privileges.php:478
-msgid "Allows dropping databases and tables."
-msgstr ""
-
-#: libraries/messages.inc.php:36 server_privileges.php:478
-msgid "Allows dropping tables."
-msgstr ""
-
-#: libraries/messages.inc.php:37 server_privileges.php:161
-#: server_privileges.php:495
-msgid "Allows to set up events for the event scheduler"
-msgstr ""
-
-#: libraries/messages.inc.php:38 server_privileges.php:171
-#: server_privileges.php:483
-msgid "Allows executing stored routines."
-msgstr ""
-
-#: libraries/messages.inc.php:39 server_privileges.php:150
-#: server_privileges.php:470
-msgid "Allows importing data from and exporting data into files."
-msgstr ""
-
-#: libraries/messages.inc.php:40 server_privileges.php:501
-msgid ""
-"Allows adding users and privileges without reloading the privilege tables."
-msgstr ""
-
-#: libraries/messages.inc.php:41 server_privileges.php:152
-#: server_privileges.php:477
-msgid "Allows creating and dropping indexes."
-msgstr ""
-
-#: libraries/messages.inc.php:42 server_privileges.php:142
-#: server_privileges.php:403 server_privileges.php:465
-msgid "Allows inserting and replacing data."
-msgstr ""
-
-#: libraries/messages.inc.php:43 server_privileges.php:157
-#: server_privileges.php:510
-msgid "Allows locking tables for the current thread."
-msgstr ""
-
-#: libraries/messages.inc.php:44 server_privileges.php:607
-#: server_privileges.php:609
-msgid "Limits the number of new connections the user may open per hour."
-msgstr ""
-
-#: libraries/messages.inc.php:45 server_privileges.php:595
-#: server_privileges.php:597
-msgid "Limits the number of queries the user may send to the server per hour."
-msgstr ""
-
-#: libraries/messages.inc.php:46 server_privileges.php:601
-#: server_privileges.php:603
-msgid ""
-"Limits the number of commands that change any table or database the user may "
-"execute per hour."
-msgstr ""
-
-#: libraries/messages.inc.php:47 server_privileges.php:613
-#: server_privileges.php:615
-msgid "Limits the number of simultaneous connections the user may have."
-msgstr ""
-
-#: libraries/messages.inc.php:48 server_privileges.php:149
-#: server_privileges.php:505
-msgid "Allows viewing processes of all users"
-msgstr ""
-
-#: libraries/messages.inc.php:49 server_privileges.php:151
-#: server_privileges.php:409 server_privileges.php:511
-msgid "Has no effect in this MySQL version."
-msgstr ""
-
-#: libraries/messages.inc.php:50 server_privileges.php:147
-#: server_privileges.php:506
-msgid "Allows reloading server settings and flushing the server's caches."
-msgstr ""
-
-#: libraries/messages.inc.php:51 server_privileges.php:159
-#: server_privileges.php:513
-msgid "Allows the user to ask where the slaves / masters are."
-msgstr ""
-
-#: libraries/messages.inc.php:52 server_privileges.php:158
-#: server_privileges.php:514
-msgid "Needed for the replication slaves."
-msgstr ""
-
-#: libraries/messages.inc.php:53 server_privileges.php:141
-#: server_privileges.php:400 server_privileges.php:464
-msgid "Allows reading data."
-msgstr ""
-
-#: libraries/messages.inc.php:54 server_privileges.php:154
-#: server_privileges.php:508
-msgid "Gives access to the complete list of databases."
-msgstr ""
-
-#: libraries/messages.inc.php:55 server_privileges.php:165
-#: server_privileges.php:167 server_privileges.php:480
-msgid "Allows performing SHOW CREATE VIEW queries."
-msgstr ""
-
-#: libraries/messages.inc.php:56 server_privileges.php:148
-#: server_privileges.php:507
-msgid "Allows shutting down the server."
-msgstr ""
-
-#: libraries/messages.inc.php:57 server_privileges.php:155
-#: server_privileges.php:504
-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/messages.inc.php:58 server_privileges.php:162
-#: server_privileges.php:496
-msgid "Allows creating and dropping triggers"
-msgstr ""
-
-#: libraries/messages.inc.php:59 server_privileges.php:143
-#: server_privileges.php:406 server_privileges.php:466
-msgid "Allows changing data."
-msgstr ""
-
-#: libraries/messages.inc.php:60 server_privileges.php:221
-#, fuzzy
-msgid "No privileges."
-msgstr "امتيازات"
-
-#: libraries/messages.inc.php:62
-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/messages.inc.php:63
-msgid "The number of transactions that used the temporary binary log cache."
-msgstr ""
-
-#: libraries/messages.inc.php:64
-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 "
-"to increase the tmp_table_size value to cause temporary tables to be memory-"
-"based instead of disk-based."
-msgstr ""
-
-#: libraries/messages.inc.php:65
-msgid "How many temporary files mysqld has created."
-msgstr ""
-
-#: libraries/messages.inc.php:66
-msgid ""
-"The number of in-memory temporary tables created automatically by the server "
-"while executing statements."
-msgstr ""
-
-#: libraries/messages.inc.php:67
-msgid ""
-"The number of rows written with INSERT DELAYED for which some error occurred "
-"(probably duplicate key)."
-msgstr ""
-
-#: libraries/messages.inc.php:68
-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/messages.inc.php:69
-msgid "The number of INSERT DELAYED rows written."
-msgstr ""
-
-#: libraries/messages.inc.php:70
-msgid "The number of executed FLUSH statements."
-msgstr ""
-
-#: libraries/messages.inc.php:71
-msgid "The number of internal COMMIT statements."
-msgstr ""
-
-#: libraries/messages.inc.php:72
-msgid "The number of times a row was deleted from a table."
-msgstr ""
-
-#: libraries/messages.inc.php:73
-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/messages.inc.php:74
-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/messages.inc.php:75
-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/messages.inc.php:76
-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/messages.inc.php:77
-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/messages.inc.php:78
-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 "
-"probably have a lot of queries that require MySQL to scan whole tables or "
-"you have joins that don't use keys properly."
-msgstr ""
-
-#: libraries/messages.inc.php:79
-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 "
-"tables are not properly indexed or that your queries are not written to take "
-"advantage of the indexes you have."
-msgstr ""
-
-#: libraries/messages.inc.php:80
-msgid "The number of internal ROLLBACK statements."
-msgstr ""
-
-#: libraries/messages.inc.php:81
-msgid "The number of requests to update a row in a table."
-msgstr ""
-
-#: libraries/messages.inc.php:82
-msgid "The number of requests to insert a row in a table."
-msgstr ""
-
-#: libraries/messages.inc.php:83
-msgid "The number of pages containing data (dirty or clean)."
-msgstr ""
-
-#: libraries/messages.inc.php:84
-msgid "The number of pages currently dirty."
-msgstr ""
-
-#: libraries/messages.inc.php:85
-msgid "The number of buffer pool pages that have been requested to be flushed."
-msgstr ""
-
-#: libraries/messages.inc.php:86
-msgid "The number of free pages."
-msgstr ""
-
-#: libraries/messages.inc.php:87
-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/messages.inc.php:88
-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 "
-"be calculated as Innodb_buffer_pool_pages_total - "
-"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data."
-msgstr ""
-
-#: libraries/messages.inc.php:89
-msgid "Total size of buffer pool, in pages."
-msgstr ""
-
-#: libraries/messages.inc.php:90
-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/messages.inc.php:91
-msgid ""
-"The number of sequential read-aheads InnoDB initiated. This happens when "
-"InnoDB does a sequential full table scan."
-msgstr ""
-
-#: libraries/messages.inc.php:92
-msgid "The number of logical read requests InnoDB has done."
-msgstr ""
-
-#: libraries/messages.inc.php:93
-msgid ""
-"The number of logical reads that InnoDB could not satisfy from buffer pool "
-"and had to do a single-page read."
-msgstr ""
-
-#: libraries/messages.inc.php:94
-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 "
-"available, it's necessary to wait for pages to be flushed first. This "
-"counter counts instances of these waits. If the buffer pool size was set "
-"properly, this value should be small."
-msgstr ""
-
-#: libraries/messages.inc.php:95
-msgid "The number writes done to the InnoDB buffer pool."
-msgstr ""
-
-#: libraries/messages.inc.php:96
-msgid "The number of fsync() operations so far."
-msgstr ""
-
-#: libraries/messages.inc.php:97
-msgid "The current number of pending fsync() operations."
-msgstr ""
-
-#: libraries/messages.inc.php:98
-msgid "The current number of pending reads."
-msgstr ""
-
-#: libraries/messages.inc.php:99
-msgid "The current number of pending writes."
-msgstr ""
-
-#: libraries/messages.inc.php:100
-msgid "The amount of data read so far, in bytes."
-msgstr ""
-
-#: libraries/messages.inc.php:101
-msgid "The total number of data reads."
-msgstr ""
-
-#: libraries/messages.inc.php:102
-msgid "The total number of data writes."
-msgstr ""
-
-#: libraries/messages.inc.php:103
-msgid "The amount of data written so far, in bytes."
-msgstr ""
-
-#: libraries/messages.inc.php:104
-msgid "The number of pages that have been written for doublewrite operations."
-msgstr ""
-
-#: libraries/messages.inc.php:105
-msgid "The number of doublewrite operations that have been performed."
-msgstr ""
-
-#: libraries/messages.inc.php:106
-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/messages.inc.php:107
-msgid "The number of log write requests."
-msgstr ""
-
-#: libraries/messages.inc.php:108
-msgid "The number of physical writes to the log file."
-msgstr ""
-
-#: libraries/messages.inc.php:109
-msgid "The number of fsync() writes done to the log file."
-msgstr ""
-
-#: libraries/messages.inc.php:110
-msgid "The number of pending log file fsyncs."
-msgstr ""
-
-#: libraries/messages.inc.php:111
-msgid "Pending log file writes."
-msgstr ""
-
-#: libraries/messages.inc.php:112
-msgid "The number of bytes written to the log file."
-msgstr ""
-
-#: libraries/messages.inc.php:113
-msgid "The number of pages created."
-msgstr ""
-
-#: libraries/messages.inc.php:114
-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/messages.inc.php:115
-msgid "The number of pages read."
-msgstr ""
-
-#: libraries/messages.inc.php:116
-msgid "The number of pages written."
-msgstr ""
-
-#: libraries/messages.inc.php:117
-msgid "The number of row locks currently being waited for."
-msgstr ""
-
-#: libraries/messages.inc.php:118
-msgid "The average time to acquire a row lock, in milliseconds."
-msgstr ""
-
-#: libraries/messages.inc.php:119
-msgid "The total time spent in acquiring row locks, in milliseconds."
-msgstr ""
-
-#: libraries/messages.inc.php:120
-msgid "The maximum time to acquire a row lock, in milliseconds."
-msgstr ""
-
-#: libraries/messages.inc.php:121
-msgid "The number of times a row lock had to be waited for."
-msgstr ""
-
-#: libraries/messages.inc.php:122
-msgid "The number of rows deleted from InnoDB tables."
-msgstr ""
-
-#: libraries/messages.inc.php:123
-msgid "The number of rows inserted in InnoDB tables."
-msgstr ""
-
-#: libraries/messages.inc.php:124
-msgid "The number of rows read from InnoDB tables."
-msgstr ""
-
-#: libraries/messages.inc.php:125
-msgid "The number of rows updated in InnoDB tables."
-msgstr ""
-
-#: libraries/messages.inc.php:126
-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/messages.inc.php:127
-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/messages.inc.php:128
-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/messages.inc.php:129
-msgid "The number of requests to read a key block from the cache."
-msgstr ""
-
-#: libraries/messages.inc.php:130
-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/messages.inc.php:131
-msgid "The number of requests to write a key block to the cache."
-msgstr ""
-
-#: libraries/messages.inc.php:132
-msgid "The number of physical writes of a key block to disk."
-msgstr ""
-
-#: libraries/messages.inc.php:133
-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/messages.inc.php:134
-msgid "The number of rows waiting to be written in INSERT DELAYED queues."
-msgstr ""
-
-#: libraries/messages.inc.php:135
-msgid ""
-"The number of tables that have been opened. If opened tables is big, your "
-"table cache value is probably too small."
-msgstr ""
-
-#: libraries/messages.inc.php:136
-msgid "The number of files that are open."
-msgstr ""
-
-#: libraries/messages.inc.php:137
-msgid "The number of streams that are open (used mainly for logging)."
-msgstr ""
-
-#: libraries/messages.inc.php:138
-msgid "The number of tables that are open."
-msgstr ""
-
-#: libraries/messages.inc.php:139
-msgid "The number of free memory blocks in query cache."
-msgstr ""
-
-#: libraries/messages.inc.php:140
-msgid "The amount of free memory for query cache."
-msgstr ""
-
-#: libraries/messages.inc.php:141
-msgid "The number of cache hits."
-msgstr ""
-
-#: libraries/messages.inc.php:142
-msgid "The number of queries added to the cache."
-msgstr ""
-
-#: libraries/messages.inc.php:143
-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 "
-"cache size. The query cache uses a least recently used (LRU) strategy to "
-"decide which queries to remove from the cache."
-msgstr ""
-
-#: libraries/messages.inc.php:144
-msgid ""
-"The number of non-cached queries (not cachable, or not cached due to the "
-"query_cache_type setting)."
-msgstr ""
-
-#: libraries/messages.inc.php:145
-msgid "The number of queries registered in the cache."
-msgstr ""
-
-#: libraries/messages.inc.php:146
-msgid "The total number of blocks in the query cache."
-msgstr ""
-
-#: libraries/messages.inc.php:147
-#, fuzzy
-msgctxt "$strShowStatusReset"
-msgid "Reset"
-msgstr "Reset"
-
-#: libraries/messages.inc.php:148
-msgid "The status of failsafe replication (not yet implemented)."
-msgstr ""
-
-#: libraries/messages.inc.php:149
-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/messages.inc.php:150
-msgid "The number of joins that used a range search on a reference table."
-msgstr ""
-
-#: libraries/messages.inc.php:151
-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/messages.inc.php:152
-msgid ""
-"The number of joins that used ranges on the first table. (It's normally not "
-"critical even if this is big.)"
-msgstr ""
-
-#: libraries/messages.inc.php:153
-msgid "The number of joins that did a full scan of the first table."
-msgstr ""
-
-#: libraries/messages.inc.php:154
-msgid "The number of temporary tables currently open by the slave SQL thread."
-msgstr ""
-
-#: libraries/messages.inc.php:155
-msgid ""
-"Total (since startup) number of times the replication slave SQL thread has "
-"retried transactions."
-msgstr ""
-
-#: libraries/messages.inc.php:156
-msgid "This is ON if this server is a slave that is connected to a master."
-msgstr ""
-
-#: libraries/messages.inc.php:157
-msgid ""
-"The number of threads that have taken more than slow_launch_time seconds to "
-"create."
-msgstr ""
-
-#: libraries/messages.inc.php:158
-msgid ""
-"The number of queries that have taken more than long_query_time seconds."
-msgstr ""
-
-#: libraries/messages.inc.php:159
-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/messages.inc.php:160
-msgid "The number of sorts that were done with ranges."
-msgstr ""
-
-#: libraries/messages.inc.php:161
-msgid "The number of sorted rows."
-msgstr ""
-
-#: libraries/messages.inc.php:162
-msgid "The number of sorts that were done by scanning the table."
-msgstr ""
-
-#: libraries/messages.inc.php:163
-msgid "The number of times that a table lock was acquired immediately."
-msgstr ""
-
-#: libraries/messages.inc.php:164
-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 "
-"should first optimize your queries, and then either split your table or "
-"tables or use replication."
-msgstr ""
-
-#: libraries/messages.inc.php:165
-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/messages.inc.php:166
-msgid "The number of currently open connections."
-msgstr ""
-
-#: libraries/messages.inc.php:167
-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 "
-"doesn't give a notable performance improvement if you have a good thread "
-"implementation.)"
-msgstr ""
-
-#: libraries/messages.inc.php:168
-msgid "The number of threads that are not sleeping."
-msgstr ""
-
#: libraries/mult_submits.inc.php:76 libraries/tbl_properties.inc.php:513
#: tbl_structure.php:29 tbl_structure.php:153 tbl_structure.php:157
#: tbl_structure.php:473
@@ -4196,8 +3464,8 @@ msgstr ""
#: libraries/replication_gui.lib.php:55 libraries/replication_gui.lib.php:56
#: libraries/replication_gui.lib.php:249 libraries/replication_gui.lib.php:252
-#: libraries/replication_gui.lib.php:259 server_privileges.php:672
-#: server_privileges.php:675 server_privileges.php:682
+#: libraries/replication_gui.lib.php:259 server_privileges.php:711
+#: server_privileges.php:714 server_privileges.php:721
#: server_synchronize.php:1171
msgid "User name"
msgstr "نام كاربر"
@@ -4216,11 +3484,11 @@ msgid "Slave status"
msgstr ""
#: libraries/replication_gui.lib.php:114 libraries/sql_query_form.lib.php:445
-#: server_status.php:626 server_variables.php:52
+#: server_status.php:737 server_variables.php:52
msgid "Variable"
msgstr "متغییر"
-#: libraries/replication_gui.lib.php:115 server_status.php:627
+#: libraries/replication_gui.lib.php:115 server_status.php:738
#: tbl_change.php:324 tbl_printview.php:370 tbl_select.php:139
#: tbl_structure.php:729
msgid "Value"
@@ -4241,41 +3509,58 @@ msgstr ""
msgid "Add slave replication user"
msgstr ""
-#: libraries/replication_gui.lib.php:254 server_privileges.php:677
+#: libraries/replication_gui.lib.php:254 server_privileges.php:716
msgid "Any user"
msgstr "همه كاربران"
#: libraries/replication_gui.lib.php:255 libraries/replication_gui.lib.php:323
-#: libraries/replication_gui.lib.php:346 server_privileges.php:678
-#: server_privileges.php:745 server_privileges.php:769
-#: server_privileges.php:1889 server_privileges.php:1919
+#: libraries/replication_gui.lib.php:346 server_privileges.php:717
+#: server_privileges.php:784 server_privileges.php:808
+#: server_privileges.php:1928 server_privileges.php:1958
msgid "Use text field"
msgstr ""
-#: libraries/replication_gui.lib.php:302 server_privileges.php:725
+#: libraries/replication_gui.lib.php:302 server_privileges.php:764
msgid "Any host"
msgstr "همه ميزبانها"
-#: libraries/replication_gui.lib.php:306 server_privileges.php:729
+#: libraries/replication_gui.lib.php:306 server_privileges.php:768
msgid "Local"
msgstr "محلی"
-#: libraries/replication_gui.lib.php:312 server_privileges.php:734
+#: libraries/replication_gui.lib.php:312 server_privileges.php:773
msgid "This Host"
msgstr ""
-#: libraries/replication_gui.lib.php:318 server_privileges.php:740
+#: libraries/replication_gui.lib.php:318 server_privileges.php:779
msgid "Use Host Table"
msgstr ""
-#: libraries/replication_gui.lib.php:331 server_privileges.php:753
+#: libraries/replication_gui.lib.php:331 server_privileges.php:792
msgid ""
"When Host table is used, this field is ignored and values stored in Host "
"table are used instead."
msgstr ""
-#: libraries/select_lang.lib.php:480 libraries/select_lang.lib.php:486
-#: libraries/select_lang.lib.php:492
+#. l10n: Text direction, use either ltr or rtl
+#: libraries/select_lang.lib.php:491
+msgid "ltr"
+msgstr "rtl"
+
+#: libraries/select_lang.lib.php:493
+msgid "Content of table __TABLE__"
+msgstr ""
+
+#: libraries/select_lang.lib.php:494
+msgid "(continued)"
+msgstr ""
+
+#: libraries/select_lang.lib.php:495
+msgid "Structure of table __TABLE__"
+msgstr ""
+
+#: libraries/select_lang.lib.php:500 libraries/select_lang.lib.php:506
+#: libraries/select_lang.lib.php:512
#, php-format
msgid "Unknown language: %1$s."
msgstr "زبانِ ناشناس : %1$s."
@@ -4287,7 +3572,7 @@ msgid "Servers"
msgstr "سرور"
#: libraries/server_links.inc.php:53 server_engines.php:112
-#: server_engines.php:116 server_status.php:304 test/theme.php:105
+#: server_engines.php:116 server_status.php:415 test/theme.php:105
#, fuzzy
msgid "Variables"
msgstr "متغییر"
@@ -4301,7 +3586,7 @@ msgid "Engines"
msgstr "موتور"
#: libraries/server_links.inc.php:76 server_binlog.php:110
-#: server_status.php:253 test/theme.php:121
+#: server_status.php:364 test/theme.php:121
#, fuzzy
msgid "Binary log"
msgstr "دودويي"
@@ -4684,8 +3969,8 @@ msgstr "Reset"
msgid "Protocol version"
msgstr ""
-#: main.php:189 server_privileges.php:1350 server_privileges.php:1497
-#: server_privileges.php:1611 server_privileges.php:2029
+#: main.php:189 server_privileges.php:1389 server_privileges.php:1536
+#: server_privileges.php:1650 server_privileges.php:2068
#: server_processlist.php:54
msgid "User"
msgstr "كاربر"
@@ -5054,7 +4339,7 @@ msgstr ""
msgid "Databases statistics"
msgstr "آمار پايگاههاي داده"
-#: server_databases.php:117 server_status.php:260
+#: server_databases.php:117 server_status.php:371
#: setup/lib/messages.inc.php:117
msgid "Tables"
msgstr "جدولها"
@@ -5073,6 +4358,14 @@ msgstr ""
msgid "Jump to database"
msgstr "No databases"
+#: server_databases.php:267
+msgid "Not replicated"
+msgstr ""
+
+#: server_databases.php:273
+msgid "Replicated"
+msgstr ""
+
#: server_databases.php:289
#, php-format
msgid "Check privileges for database "%s"."
@@ -5108,143 +4401,326 @@ msgstr ""
msgid "View dump (schema) of databases"
msgstr "نمايش الگوي پايگاه داده"
-#: server_privileges.php:263 server_privileges.php:264
+#: server_privileges.php:24 server_privileges.php:266
+msgid "Includes all privileges except GRANT."
+msgstr ""
+
+#: server_privileges.php:25 server_privileges.php:192
+#: server_privileges.php:515
+msgid "Allows altering the structure of existing tables."
+msgstr ""
+
+#: server_privileges.php:26 server_privileges.php:208
+#: server_privileges.php:521
+msgid "Allows altering and dropping stored routines."
+msgstr ""
+
+#: server_privileges.php:27 server_privileges.php:184
+#: server_privileges.php:514
+msgid "Allows creating new databases and tables."
+msgstr ""
+
+#: server_privileges.php:28 server_privileges.php:207
+#: server_privileges.php:520
+msgid "Allows creating stored routines."
+msgstr ""
+
+#: server_privileges.php:29 server_privileges.php:514
+msgid "Allows creating new tables."
+msgstr ""
+
+#: server_privileges.php:30 server_privileges.php:195
+#: server_privileges.php:518
+msgid "Allows creating temporary tables."
+msgstr ""
+
+#: server_privileges.php:31 server_privileges.php:209
+#: server_privileges.php:554
+msgid "Allows creating, dropping and renaming user accounts."
+msgstr ""
+
+#: server_privileges.php:32 server_privileges.php:199
+#: server_privileges.php:203 server_privileges.php:526
+#: server_privileges.php:530
+msgid "Allows creating new views."
+msgstr ""
+
+#: server_privileges.php:33 server_privileges.php:183
+#: server_privileges.php:506
+msgid "Allows deleting data."
+msgstr ""
+
+#: server_privileges.php:34 server_privileges.php:185
+#: server_privileges.php:517
+msgid "Allows dropping databases and tables."
+msgstr ""
+
+#: server_privileges.php:35 server_privileges.php:517
+msgid "Allows dropping tables."
+msgstr ""
+
+#: server_privileges.php:36 server_privileges.php:200
+#: server_privileges.php:534
+msgid "Allows to set up events for the event scheduler"
+msgstr ""
+
+#: server_privileges.php:37 server_privileges.php:210
+#: server_privileges.php:522
+msgid "Allows executing stored routines."
+msgstr ""
+
+#: server_privileges.php:38 server_privileges.php:189
+#: server_privileges.php:509
+msgid "Allows importing data from and exporting data into files."
+msgstr ""
+
+#: server_privileges.php:39 server_privileges.php:540
+msgid ""
+"Allows adding users and privileges without reloading the privilege tables."
+msgstr ""
+
+#: server_privileges.php:40 server_privileges.php:191
+#: server_privileges.php:516
+msgid "Allows creating and dropping indexes."
+msgstr ""
+
+#: server_privileges.php:41 server_privileges.php:181
+#: server_privileges.php:442 server_privileges.php:504
+msgid "Allows inserting and replacing data."
+msgstr ""
+
+#: server_privileges.php:42 server_privileges.php:196
+#: server_privileges.php:549
+msgid "Allows locking tables for the current thread."
+msgstr ""
+
+#: server_privileges.php:43 server_privileges.php:646
+#: server_privileges.php:648
+msgid "Limits the number of new connections the user may open per hour."
+msgstr ""
+
+#: server_privileges.php:44 server_privileges.php:634
+#: server_privileges.php:636
+msgid "Limits the number of queries the user may send to the server per hour."
+msgstr ""
+
+#: server_privileges.php:45 server_privileges.php:640
+#: server_privileges.php:642
+msgid ""
+"Limits the number of commands that change any table or database the user may "
+"execute per hour."
+msgstr ""
+
+#: server_privileges.php:46 server_privileges.php:652
+#: server_privileges.php:654
+msgid "Limits the number of simultaneous connections the user may have."
+msgstr ""
+
+#: server_privileges.php:47 server_privileges.php:188
+#: server_privileges.php:544
+msgid "Allows viewing processes of all users"
+msgstr ""
+
+#: server_privileges.php:48 server_privileges.php:190
+#: server_privileges.php:448 server_privileges.php:550
+msgid "Has no effect in this MySQL version."
+msgstr ""
+
+#: server_privileges.php:49 server_privileges.php:186
+#: server_privileges.php:545
+msgid "Allows reloading server settings and flushing the server's caches."
+msgstr ""
+
+#: server_privileges.php:50 server_privileges.php:198
+#: server_privileges.php:552
+msgid "Allows the user to ask where the slaves / masters are."
+msgstr ""
+
+#: server_privileges.php:51 server_privileges.php:197
+#: server_privileges.php:553
+msgid "Needed for the replication slaves."
+msgstr ""
+
+#: server_privileges.php:52 server_privileges.php:180
+#: server_privileges.php:439 server_privileges.php:503
+msgid "Allows reading data."
+msgstr ""
+
+#: server_privileges.php:53 server_privileges.php:193
+#: server_privileges.php:547
+msgid "Gives access to the complete list of databases."
+msgstr ""
+
+#: server_privileges.php:54 server_privileges.php:204
+#: server_privileges.php:206 server_privileges.php:519
+msgid "Allows performing SHOW CREATE VIEW queries."
+msgstr ""
+
+#: server_privileges.php:55 server_privileges.php:187
+#: server_privileges.php:546
+msgid "Allows shutting down the server."
+msgstr ""
+
+#: server_privileges.php:56 server_privileges.php:194
+#: server_privileges.php:543
+msgid ""
+"Allows connecting, even if maximum number of connections is reached; "
+"required for most administrative operations like setting global variables or "
+"killing threads of other users."
+msgstr ""
+
+#: server_privileges.php:57 server_privileges.php:201
+#: server_privileges.php:535
+msgid "Allows creating and dropping triggers"
+msgstr ""
+
+#: server_privileges.php:58 server_privileges.php:182
+#: server_privileges.php:445 server_privileges.php:505
+msgid "Allows changing data."
+msgstr ""
+
+#: server_privileges.php:59 server_privileges.php:260
+#, fuzzy
+msgid "No privileges."
+msgstr "امتيازات"
+
+#: server_privileges.php:302 server_privileges.php:303
#, fuzzy
#| msgid "None"
msgctxt "None privileges"
msgid "None"
msgstr "خير"
-#: server_privileges.php:392 server_privileges.php:527
-#: server_privileges.php:1679 server_privileges.php:1685
+#: server_privileges.php:431 server_privileges.php:566
+#: server_privileges.php:1718 server_privileges.php:1724
msgid "Table-specific privileges"
msgstr ""
-#: server_privileges.php:393 server_privileges.php:535
-#: server_privileges.php:1501
+#: server_privileges.php:432 server_privileges.php:574
+#: server_privileges.php:1540
msgid " Note: MySQL privilege names are expressed in English "
msgstr " نكته : نام امتيازات MySQL به زبان انگليسي بيان ميشود ."
-#: server_privileges.php:524 server_privileges.php:1500
+#: server_privileges.php:563 server_privileges.php:1539
msgid "Global privileges"
msgstr ""
-#: server_privileges.php:526 server_privileges.php:1679
+#: server_privileges.php:565 server_privileges.php:1718
msgid "Database-specific privileges"
msgstr ""
-#: server_privileges.php:571
+#: server_privileges.php:610
msgid "Administration"
msgstr "مدیریت"
-#: server_privileges.php:591
+#: server_privileges.php:630
msgid "Resource limits"
msgstr ""
-#: server_privileges.php:592
+#: server_privileges.php:631
msgid "Note: Setting these options to 0 (zero) removes the limit."
msgstr ""
-#: server_privileges.php:669
+#: server_privileges.php:708
msgid "Login Information"
msgstr "اطلاعات ورود"
-#: server_privileges.php:763
+#: server_privileges.php:802
msgid "Do not change the password"
msgstr "عدم تغيير اسم رمز"
-#: server_privileges.php:804 server_privileges.php:2166
+#: server_privileges.php:843 server_privileges.php:2205
#, fuzzy
#| msgid "No user(s) found."
msgid "No user found."
msgstr "هيچ كاربري وچود ندارد."
-#: server_privileges.php:848
+#: server_privileges.php:887
#, php-format
msgid "The user %s already exists!"
msgstr ""
-#: server_privileges.php:931
+#: server_privileges.php:970
msgid "You have added a new user."
msgstr "شما يك كاربر جديد اضافه كرديد."
-#: server_privileges.php:1152
+#: server_privileges.php:1191
#, php-format
msgid "You have updated the privileges for %s."
msgstr "امتيازات %s به هنگام گرديد."
-#: server_privileges.php:1176
+#: server_privileges.php:1215
#, php-format
msgid "You have revoked the privileges for %s"
msgstr "شما امتيازات %s را ابطال كرديد"
-#: server_privileges.php:1212
+#: server_privileges.php:1251
#, php-format
msgid "The password for %s was changed successfully."
msgstr ""
-#: server_privileges.php:1232
+#: server_privileges.php:1271
#, php-format
msgid "Deleting %s"
msgstr "در حال پاک کردن %s"
-#: server_privileges.php:1243
+#: server_privileges.php:1282
msgid "No users selected for deleting!"
msgstr ""
-#: server_privileges.php:1246
+#: server_privileges.php:1285
msgid "Reloading the privileges"
msgstr ""
-#: server_privileges.php:1261
+#: server_privileges.php:1300
msgid "The selected users have been deleted successfully."
msgstr ""
-#: server_privileges.php:1296
+#: server_privileges.php:1335
msgid "The privileges were reloaded successfully."
msgstr ""
-#: server_privileges.php:1324 server_privileges.php:1610
+#: server_privileges.php:1363 server_privileges.php:1649
msgid "Edit Privileges"
msgstr "ويرايش امتيازات"
-#: server_privileges.php:1333
+#: server_privileges.php:1372
msgid "Revoke"
msgstr "ابطال"
-#: server_privileges.php:1365
+#: server_privileges.php:1404
msgid "User overview"
msgstr ""
-#: server_privileges.php:1502 server_privileges.php:1684
-#: server_privileges.php:2033
+#: server_privileges.php:1541 server_privileges.php:1723
+#: server_privileges.php:2072
#, fuzzy
msgid "Grant"
msgstr "چاپ"
-#: server_privileges.php:1521 server_privileges.php:2123
+#: server_privileges.php:1560 server_privileges.php:2162
msgid "Any"
msgstr "همه"
-#: server_privileges.php:1570 server_privileges.php:1594
-#: server_privileges.php:1988 server_privileges.php:2177
+#: server_privileges.php:1609 server_privileges.php:1633
+#: server_privileges.php:2027 server_privileges.php:2216
msgid "Add a new User"
msgstr "افزودن يك كاربر جديد"
-#: server_privileges.php:1575
+#: server_privileges.php:1614
msgid "Remove selected users"
msgstr ""
-#: server_privileges.php:1578
+#: server_privileges.php:1617
msgid "Revoke all active privileges from the users and delete them afterwards."
msgstr ""
-#: server_privileges.php:1579 server_privileges.php:1580
-#: server_privileges.php:1581
+#: server_privileges.php:1618 server_privileges.php:1619
+#: server_privileges.php:1620
msgid "Drop the databases that have the same names as the users."
msgstr ""
-#: server_privileges.php:1597
+#: server_privileges.php:1636
#, php-format
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
@@ -5253,91 +4729,91 @@ msgid ""
"sreload the privileges%s before you continue."
msgstr ""
-#: server_privileges.php:1645
+#: server_privileges.php:1684
msgid "The selected user was not found in the privilege table."
msgstr ""
-#: server_privileges.php:1685
+#: server_privileges.php:1724
msgid "Column-specific privileges"
msgstr ""
-#: server_privileges.php:1886
+#: server_privileges.php:1925
msgid "Add privileges on the following database"
msgstr ""
-#: server_privileges.php:1904
+#: server_privileges.php:1943
msgid "Wildcards % and _ should be escaped with a \\ to use them literally"
msgstr ""
-#: server_privileges.php:1907
+#: server_privileges.php:1946
msgid "Add privileges on the following table"
msgstr ""
-#: server_privileges.php:1964
+#: server_privileges.php:2003
msgid "Change Login Information / Copy User"
msgstr ""
-#: server_privileges.php:1967
+#: server_privileges.php:2006
msgid "Create a new user with the same privileges and ..."
msgstr ""
-#: server_privileges.php:1969
+#: server_privileges.php:2008
msgid "... keep the old one."
msgstr ""
-#: server_privileges.php:1970
+#: server_privileges.php:2009
msgid " ... delete the old one from the user tables."
msgstr ""
-#: server_privileges.php:1971
+#: server_privileges.php:2010
msgid ""
" ... revoke all active privileges from the old one and delete it afterwards."
msgstr ""
-#: server_privileges.php:1972
+#: server_privileges.php:2011
msgid ""
" ... delete the old one from the user tables and reload the privileges "
"afterwards."
msgstr ""
-#: server_privileges.php:1994
+#: server_privileges.php:2033
msgid "Database for user"
msgstr ""
-#: server_privileges.php:1998
+#: server_privileges.php:2037
#, fuzzy
#| msgid "None"
msgctxt "Create none database for user"
msgid "None"
msgstr "خير"
-#: server_privileges.php:1999
+#: server_privileges.php:2038
msgid "Create database with same name and grant all privileges"
msgstr ""
-#: server_privileges.php:2000
+#: server_privileges.php:2039
msgid "Grant all privileges on wildcard name (username\\_%)"
msgstr ""
-#: server_privileges.php:2003
+#: server_privileges.php:2042
#, php-format
msgid "Grant all privileges on database "%s""
msgstr ""
-#: server_privileges.php:2026
+#: server_privileges.php:2065
#, php-format
msgid "Users having access to "%s""
msgstr ""
-#: server_privileges.php:2134
+#: server_privileges.php:2173
msgid "global"
msgstr ""
-#: server_privileges.php:2136
+#: server_privileges.php:2175
msgid "database-specific"
msgstr ""
-#: server_privileges.php:2138
+#: server_privileges.php:2177
msgid "wildcard"
msgstr ""
@@ -5383,7 +4859,7 @@ msgstr ""
msgid "This server is configured as master in a replication process."
msgstr ""
-#: server_replication.php:184 server_status.php:281
+#: server_replication.php:184 server_status.php:392
msgid "Show master status"
msgstr ""
@@ -5521,170 +4997,702 @@ msgid ""
"like to configure it?"
msgstr ""
+#: server_status.php:40
+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 ""
+
+#: server_status.php:41
+msgid "The number of transactions that used the temporary binary log cache."
+msgstr ""
+
+#: server_status.php:42
+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 "
+"to increase the tmp_table_size value to cause temporary tables to be memory-"
+"based instead of disk-based."
+msgstr ""
+
+#: server_status.php:43
+msgid "How many temporary files mysqld has created."
+msgstr ""
+
+#: server_status.php:44
+msgid ""
+"The number of in-memory temporary tables created automatically by the server "
+"while executing statements."
+msgstr ""
+
+#: server_status.php:45
+msgid ""
+"The number of rows written with INSERT DELAYED for which some error occurred "
+"(probably duplicate key)."
+msgstr ""
+
#: server_status.php:46
+msgid ""
+"The number of INSERT DELAYED handler threads in use. Every different table "
+"on which one uses INSERT DELAYED gets its own thread."
+msgstr ""
+
+#: server_status.php:47
+msgid "The number of INSERT DELAYED rows written."
+msgstr ""
+
+#: server_status.php:48
+msgid "The number of executed FLUSH statements."
+msgstr ""
+
+#: server_status.php:49
+msgid "The number of internal COMMIT statements."
+msgstr ""
+
+#: server_status.php:50
+msgid "The number of times a row was deleted from a table."
+msgstr ""
+
+#: server_status.php:51
+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 ""
+
+#: server_status.php:52
+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 ""
+
+#: server_status.php:53
+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 ""
+
+#: server_status.php:54
+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 ""
+
+#: server_status.php:55
+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 ""
+
+#: server_status.php:56
+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 "
+"probably have a lot of queries that require MySQL to scan whole tables or "
+"you have joins that don't use keys properly."
+msgstr ""
+
+#: server_status.php:57
+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 "
+"tables are not properly indexed or that your queries are not written to take "
+"advantage of the indexes you have."
+msgstr ""
+
+#: server_status.php:58
+msgid "The number of internal ROLLBACK statements."
+msgstr ""
+
+#: server_status.php:59
+msgid "The number of requests to update a row in a table."
+msgstr ""
+
+#: server_status.php:60
+msgid "The number of requests to insert a row in a table."
+msgstr ""
+
+#: server_status.php:61
+msgid "The number of pages containing data (dirty or clean)."
+msgstr ""
+
+#: server_status.php:62
+msgid "The number of pages currently dirty."
+msgstr ""
+
+#: server_status.php:63
+msgid "The number of buffer pool pages that have been requested to be flushed."
+msgstr ""
+
+#: server_status.php:64
+msgid "The number of free pages."
+msgstr ""
+
+#: server_status.php:65
+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 ""
+
+#: server_status.php:66
+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 "
+"be calculated as Innodb_buffer_pool_pages_total - "
+"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data."
+msgstr ""
+
+#: server_status.php:67
+msgid "Total size of buffer pool, in pages."
+msgstr ""
+
+#: server_status.php:68
+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 ""
+
+#: server_status.php:69
+msgid ""
+"The number of sequential read-aheads InnoDB initiated. This happens when "
+"InnoDB does a sequential full table scan."
+msgstr ""
+
+#: server_status.php:70
+msgid "The number of logical read requests InnoDB has done."
+msgstr ""
+
+#: server_status.php:71
+msgid ""
+"The number of logical reads that InnoDB could not satisfy from buffer pool "
+"and had to do a single-page read."
+msgstr ""
+
+#: server_status.php:72
+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 "
+"available, it's necessary to wait for pages to be flushed first. This "
+"counter counts instances of these waits. If the buffer pool size was set "
+"properly, this value should be small."
+msgstr ""
+
+#: server_status.php:73
+msgid "The number writes done to the InnoDB buffer pool."
+msgstr ""
+
+#: server_status.php:74
+msgid "The number of fsync() operations so far."
+msgstr ""
+
+#: server_status.php:75
+msgid "The current number of pending fsync() operations."
+msgstr ""
+
+#: server_status.php:76
+msgid "The current number of pending reads."
+msgstr ""
+
+#: server_status.php:77
+msgid "The current number of pending writes."
+msgstr ""
+
+#: server_status.php:78
+msgid "The amount of data read so far, in bytes."
+msgstr ""
+
+#: server_status.php:79
+msgid "The total number of data reads."
+msgstr ""
+
+#: server_status.php:80
+msgid "The total number of data writes."
+msgstr ""
+
+#: server_status.php:81
+msgid "The amount of data written so far, in bytes."
+msgstr ""
+
+#: server_status.php:82
+msgid "The number of pages that have been written for doublewrite operations."
+msgstr ""
+
+#: server_status.php:83
+msgid "The number of doublewrite operations that have been performed."
+msgstr ""
+
+#: server_status.php:84
+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 ""
+
+#: server_status.php:85
+msgid "The number of log write requests."
+msgstr ""
+
+#: server_status.php:86
+msgid "The number of physical writes to the log file."
+msgstr ""
+
+#: server_status.php:87
+msgid "The number of fsync() writes done to the log file."
+msgstr ""
+
+#: server_status.php:88
+msgid "The number of pending log file fsyncs."
+msgstr ""
+
+#: server_status.php:89
+msgid "Pending log file writes."
+msgstr ""
+
+#: server_status.php:90
+msgid "The number of bytes written to the log file."
+msgstr ""
+
+#: server_status.php:91
+msgid "The number of pages created."
+msgstr ""
+
+#: server_status.php:92
+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 ""
+
+#: server_status.php:93
+msgid "The number of pages read."
+msgstr ""
+
+#: server_status.php:94
+msgid "The number of pages written."
+msgstr ""
+
+#: server_status.php:95
+msgid "The number of row locks currently being waited for."
+msgstr ""
+
+#: server_status.php:96
+msgid "The average time to acquire a row lock, in milliseconds."
+msgstr ""
+
+#: server_status.php:97
+msgid "The total time spent in acquiring row locks, in milliseconds."
+msgstr ""
+
+#: server_status.php:98
+msgid "The maximum time to acquire a row lock, in milliseconds."
+msgstr ""
+
+#: server_status.php:99
+msgid "The number of times a row lock had to be waited for."
+msgstr ""
+
+#: server_status.php:100
+msgid "The number of rows deleted from InnoDB tables."
+msgstr ""
+
+#: server_status.php:101
+msgid "The number of rows inserted in InnoDB tables."
+msgstr ""
+
+#: server_status.php:102
+msgid "The number of rows read from InnoDB tables."
+msgstr ""
+
+#: server_status.php:103
+msgid "The number of rows updated in InnoDB tables."
+msgstr ""
+
+#: server_status.php:104
+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 ""
+
+#: server_status.php:105
+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 ""
+
+#: server_status.php:106
+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 ""
+
+#: server_status.php:107
+msgid "The number of requests to read a key block from the cache."
+msgstr ""
+
+#: server_status.php:108
+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 ""
+
+#: server_status.php:109
+msgid "The number of requests to write a key block to the cache."
+msgstr ""
+
+#: server_status.php:110
+msgid "The number of physical writes of a key block to disk."
+msgstr ""
+
+#: server_status.php:111
+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 ""
+
+#: server_status.php:112
+msgid "The number of rows waiting to be written in INSERT DELAYED queues."
+msgstr ""
+
+#: server_status.php:113
+msgid ""
+"The number of tables that have been opened. If opened tables is big, your "
+"table cache value is probably too small."
+msgstr ""
+
+#: server_status.php:114
+msgid "The number of files that are open."
+msgstr ""
+
+#: server_status.php:115
+msgid "The number of streams that are open (used mainly for logging)."
+msgstr ""
+
+#: server_status.php:116
+msgid "The number of tables that are open."
+msgstr ""
+
+#: server_status.php:117
+msgid "The number of free memory blocks in query cache."
+msgstr ""
+
+#: server_status.php:118
+msgid "The amount of free memory for query cache."
+msgstr ""
+
+#: server_status.php:119
+msgid "The number of cache hits."
+msgstr ""
+
+#: server_status.php:120
+msgid "The number of queries added to the cache."
+msgstr ""
+
+#: server_status.php:121
+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 "
+"cache size. The query cache uses a least recently used (LRU) strategy to "
+"decide which queries to remove from the cache."
+msgstr ""
+
+#: server_status.php:122
+msgid ""
+"The number of non-cached queries (not cachable, or not cached due to the "
+"query_cache_type setting)."
+msgstr ""
+
+#: server_status.php:123
+msgid "The number of queries registered in the cache."
+msgstr ""
+
+#: server_status.php:124
+msgid "The total number of blocks in the query cache."
+msgstr ""
+
+#: server_status.php:125
+#, fuzzy
+msgctxt "$strShowStatusReset"
+msgid "Reset"
+msgstr "Reset"
+
+#: server_status.php:126
+msgid "The status of failsafe replication (not yet implemented)."
+msgstr ""
+
+#: server_status.php:127
+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 ""
+
+#: server_status.php:128
+msgid "The number of joins that used a range search on a reference table."
+msgstr ""
+
+#: server_status.php:129
+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 ""
+
+#: server_status.php:130
+msgid ""
+"The number of joins that used ranges on the first table. (It's normally not "
+"critical even if this is big.)"
+msgstr ""
+
+#: server_status.php:131
+msgid "The number of joins that did a full scan of the first table."
+msgstr ""
+
+#: server_status.php:132
+msgid "The number of temporary tables currently open by the slave SQL thread."
+msgstr ""
+
+#: server_status.php:133
+msgid ""
+"Total (since startup) number of times the replication slave SQL thread has "
+"retried transactions."
+msgstr ""
+
+#: server_status.php:134
+msgid "This is ON if this server is a slave that is connected to a master."
+msgstr ""
+
+#: server_status.php:135
+msgid ""
+"The number of threads that have taken more than slow_launch_time seconds to "
+"create."
+msgstr ""
+
+#: server_status.php:136
+msgid ""
+"The number of queries that have taken more than long_query_time seconds."
+msgstr ""
+
+#: server_status.php:137
+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 ""
+
+#: server_status.php:138
+msgid "The number of sorts that were done with ranges."
+msgstr ""
+
+#: server_status.php:139
+msgid "The number of sorted rows."
+msgstr ""
+
+#: server_status.php:140
+msgid "The number of sorts that were done by scanning the table."
+msgstr ""
+
+#: server_status.php:141
+msgid "The number of times that a table lock was acquired immediately."
+msgstr ""
+
+#: server_status.php:142
+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 "
+"should first optimize your queries, and then either split your table or "
+"tables or use replication."
+msgstr ""
+
+#: server_status.php:143
+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 ""
+
+#: server_status.php:144
+msgid "The number of currently open connections."
+msgstr ""
+
+#: server_status.php:145
+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 "
+"doesn't give a notable performance improvement if you have a good thread "
+"implementation.)"
+msgstr ""
+
+#: server_status.php:146
+msgid "The number of threads that are not sleeping."
+msgstr ""
+
+#: server_status.php:157
#, fuzzy
msgid "Runtime Information"
msgstr "اطلاعات ورود"
-#: server_status.php:250
+#: server_status.php:361
msgid "Handler"
msgstr ""
-#: server_status.php:251
+#: server_status.php:362
msgid "Query cache"
msgstr ""
-#: server_status.php:252
+#: server_status.php:363
msgid "Threads"
msgstr ""
-#: server_status.php:254
+#: server_status.php:365
msgid "Temporary data"
msgstr ""
-#: server_status.php:255
+#: server_status.php:366
#, fuzzy
msgid "Delayed inserts"
msgstr "وروديهاي تمديدشده"
-#: server_status.php:256
+#: server_status.php:367
msgid "Key cache"
msgstr ""
-#: server_status.php:257
+#: server_status.php:368
msgid "Joins"
msgstr ""
-#: server_status.php:259
+#: server_status.php:370
msgid "Sorting"
msgstr ""
-#: server_status.php:261
+#: server_status.php:372
msgid "Transaction coordinator"
msgstr ""
-#: server_status.php:271
+#: server_status.php:382
msgid "Flush (close) all tables"
msgstr ""
-#: server_status.php:273
+#: server_status.php:384
#, fuzzy
msgid "Show open tables"
msgstr "نمايش جدولها"
-#: server_status.php:278
+#: server_status.php:389
msgid "Show slave hosts"
msgstr ""
-#: server_status.php:284
+#: server_status.php:395
msgid "Show slave status"
msgstr ""
-#: server_status.php:289
+#: server_status.php:400
msgid "Flush query cache"
msgstr ""
-#: server_status.php:294
+#: server_status.php:405
msgid "Show processes"
msgstr "نمايش فرايندها"
-#: server_status.php:344
+#: server_status.php:455
#, fuzzy
#| msgid "Reset"
msgctxt "for Show status"
msgid "Reset"
msgstr "Reset"
-#: server_status.php:350
+#: server_status.php:461
#, php-format
msgid "This MySQL server has been running for %s. It started up on %s."
msgstr ""
-#: server_status.php:360
+#: server_status.php:471
msgid ""
"This MySQL server works as master and slave in replication"
"b> process."
msgstr ""
-#: server_status.php:362
+#: server_status.php:473
msgid "This MySQL server works as master in replication process."
msgstr ""
-#: server_status.php:364
+#: server_status.php:475
msgid "This MySQL server works as slave in replication process."
msgstr ""
-#: server_status.php:366
+#: server_status.php:477
msgid ""
"For further information about replication status on the server, please visit "
"the replication section."
msgstr ""
-#: server_status.php:383
+#: server_status.php:494
msgid ""
"Server traffic: These tables show the network traffic statistics of "
"this MySQL server since its startup."
msgstr ""
-#: server_status.php:388
+#: server_status.php:499
msgid "Traffic"
msgstr ""
-#: server_status.php:388
+#: server_status.php:499
msgid ""
"On a busy server, the byte counters may overrun, so those statistics as "
"reported by the MySQL server may be incorrect."
msgstr ""
-#: server_status.php:389 server_status.php:434 server_status.php:497
-#: server_status.php:555
+#: server_status.php:500 server_status.php:545 server_status.php:608
+#: server_status.php:666
msgid "per hour"
msgstr "در ساعت"
-#: server_status.php:394
+#: server_status.php:505
msgid "Received"
msgstr ""
-#: server_status.php:404
+#: server_status.php:515
msgid "Sent"
msgstr ""
-#: server_status.php:433
+#: server_status.php:544
msgid "Connections"
msgstr ""
-#: server_status.php:440
+#: server_status.php:551
msgid "max. concurrent connections"
msgstr ""
-#: server_status.php:447
+#: server_status.php:558
msgid "Failed attempts"
msgstr ""
-#: server_status.php:461
+#: server_status.php:572
msgid "Aborted"
msgstr ""
-#: server_status.php:490
+#: server_status.php:601
#, php-format
msgid ""
"Query statistics: Since its startup, %s queries have been sent to the "
"server."
msgstr ""
-#: server_status.php:498
+#: server_status.php:609
msgid "per minute"
msgstr "در دقیقه"
-#: server_status.php:499
+#: server_status.php:610
msgid "per second"
msgstr "در ثانیه"
-#: server_status.php:554
+#: server_status.php:665
msgid "Query type"
msgstr ""
-#: server_status.php:721
+#: server_status.php:832
msgid "Replication status"
msgstr ""
diff --git a/po/fi.po b/po/fi.po
index 1a0f14ad2..c92e74648 100755
--- a/po/fi.po
+++ b/po/fi.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-06-04 16:07-0400\n"
+"POT-Creation-Date: 2010-06-08 12:32-0400\n"
"PO-Revision-Date: 2010-04-30 18:08+0200\n"
"Last-Translator: \n"
"Language-Team: finnish \n"
@@ -15,11 +15,11 @@ msgstr ""
"X-Generator: Pootle 2.0.1\n"
#: browse_foreigners.php:38 browse_foreigners.php:59
-#: libraries/display_tbl.lib.php:417 server_privileges.php:1475
+#: libraries/display_tbl.lib.php:417 server_privileges.php:1514
msgid "Show all"
msgstr "Näytä kaikki"
-#: browse_foreigners.php:82 libraries/common.lib.php:2304
+#: browse_foreigners.php:82 libraries/common.lib.php:2313
#: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:394
#: libraries/export/pdf.php:147 pdf_schema.php:283 pdf_schema.php:1123
#: pdf_schema.php:1139
@@ -38,8 +38,8 @@ msgstr ""
#: browse_foreigners.php:150 db_structure.php:79 db_structure.php:80
#: db_structure.php:91 db_structure.php:93 db_structure.php:104
-#: db_structure.php:106 libraries/common.lib.php:2822
-#: libraries/common.lib.php:2829 libraries/db_links.inc.php:75
+#: db_structure.php:106 libraries/common.lib.php:2831
+#: libraries/common.lib.php:2838 libraries/db_links.inc.php:75
#: libraries/tbl_links.inc.php:63
msgid "Search"
msgstr "Etsi"
@@ -49,7 +49,7 @@ msgstr "Etsi"
#: db_structure.php:567 js/messages.php:48 libraries/Config.class.php:1046
#: libraries/Theme_Manager.class.php:311
#: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719
-#: libraries/common.lib.php:1333 libraries/common.lib.php:2279
+#: libraries/common.lib.php:1335 libraries/common.lib.php:2288
#: libraries/display_change_password.lib.php:82
#: libraries/display_create_table.lib.php:63
#: libraries/display_export.lib.php:275 libraries/display_import.lib.php:276
@@ -60,9 +60,9 @@ msgstr "Etsi"
#: libraries/sql_query_form.lib.php:552 libraries/tbl_properties.inc.php:782
#: main.php:128 navigation.php:237 pdf_pages.php:292 pdf_pages.php:328
#: pdf_pages.php:530 pmd_pdf.php:116 server_binlog.php:142
-#: server_privileges.php:625 server_privileges.php:1585
-#: server_privileges.php:1932 server_privileges.php:1979
-#: server_privileges.php:2018 server_replication.php:235
+#: server_privileges.php:664 server_privileges.php:1624
+#: server_privileges.php:1971 server_privileges.php:2018
+#: server_privileges.php:2057 server_replication.php:235
#: server_replication.php:318 server_replication.php:341
#: server_synchronize.php:1209 tbl_change.php:330 tbl_change.php:1174
#: tbl_change.php:1211 tbl_indexes.php:254 tbl_operations.php:265
@@ -80,7 +80,7 @@ msgstr "Avaimen nimi"
#: browse_foreigners.php:169 browse_foreigners.php:171
#: server_collations.php:55 server_collations.php:67 server_engines.php:59
-#: server_status.php:628
+#: server_status.php:739
msgid "Description"
msgstr "Kuvaus"
@@ -121,7 +121,7 @@ msgstr "Sarakkeiden nimet"
#: libraries/db_structure.lib.php:60 libraries/export/htmlword.php:245
#: libraries/export/latex.php:360 libraries/export/odt.php:297
#: libraries/export/texytext.php:234 libraries/tbl_properties.inc.php:100
-#: pdf_schema.php:1263 pdf_schema.php:1284 server_privileges.php:2031
+#: pdf_schema.php:1263 pdf_schema.php:1284 server_privileges.php:2070
#: tbl_change.php:287 tbl_change.php:314 tbl_printview.php:143
#: tbl_printview.php:313 tbl_select.php:136 tbl_structure.php:178
#: tbl_structure.php:659 tbl_tracking.php:274 tbl_tracking.php:321
@@ -165,9 +165,9 @@ msgstr "Kommentit"
#: libraries/Index.class.php:386 libraries/export/htmlword.php:322
#: libraries/export/latex.php:430 libraries/export/odt.php:368
#: libraries/export/texytext.php:311 libraries/mult_submits.inc.php:263
-#: pdf_schema.php:1344 server_privileges.php:1529 server_privileges.php:1540
-#: server_privileges.php:1850 server_privileges.php:1855
-#: server_privileges.php:2148 sql.php:132 sql.php:194 tbl_printview.php:229
+#: pdf_schema.php:1344 server_privileges.php:1568 server_privileges.php:1579
+#: server_privileges.php:1889 server_privileges.php:1894
+#: server_privileges.php:2187 sql.php:132 sql.php:194 tbl_printview.php:229
#: tbl_structure.php:350 tbl_tracking.php:337 tbl_tracking.php:342
msgid "No"
msgstr "Ei"
@@ -181,9 +181,9 @@ msgstr "Ei"
#: libraries/mult_submits.inc.php:101 libraries/mult_submits.inc.php:106
#: libraries/mult_submits.inc.php:111 libraries/mult_submits.inc.php:262
#: libraries/mult_submits.inc.php:273 pdf_schema.php:1344
-#: server_databases.php:64 server_privileges.php:1526
-#: server_privileges.php:1540 server_privileges.php:1850
-#: server_privileges.php:1853 server_privileges.php:2148 sql.php:193
+#: server_databases.php:64 server_privileges.php:1565
+#: server_privileges.php:1579 server_privileges.php:1889
+#: server_privileges.php:1892 server_privileges.php:2187 sql.php:193
#: tbl_printview.php:229 tbl_structure.php:40 tbl_structure.php:350
#: tbl_tracking.php:335 tbl_tracking.php:340
msgid "Yes"
@@ -280,7 +280,7 @@ msgstr "Siirry kopioituun tietokantaan"
msgid "BLOB Repository"
msgstr "BLOB-tietokanta"
-#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1350
+#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1352
#: libraries/server_links.inc.php:49 server_processlist.php:59
#: tbl_tracking.php:596 test/theme.php:101
msgid "Status"
@@ -343,8 +343,8 @@ msgstr "Muokkaa PDF-sivuja"
#: db_printview.php:104 db_tracking.php:72 db_tracking.php:157
#: libraries/db_structure.lib.php:46 libraries/export/xml.php:328
-#: libraries/header.inc.php:126 pdf_pages.php:424 server_privileges.php:1626
-#: server_privileges.php:1682 server_privileges.php:1946
+#: libraries/header.inc.php:126 pdf_pages.php:424 server_privileges.php:1665
+#: server_privileges.php:1721 server_privileges.php:1985
#: server_synchronize.php:423 server_synchronize.php:866 tbl_tracking.php:592
#: test/theme.php:75
msgid "Table"
@@ -445,7 +445,7 @@ msgstr "Poista"
#: db_qbe.php:370 db_qbe.php:451 db_qbe.php:522 db_qbe.php:553
#: libraries/display_import.lib.php:166 libraries/tbl_properties.inc.php:779
-#: server_privileges.php:258 tbl_change.php:1031 tbl_indexes.php:250
+#: server_privileges.php:297 tbl_change.php:1031 tbl_indexes.php:250
#: tbl_select.php:288
msgid "Or"
msgstr "Tai"
@@ -479,7 +479,7 @@ msgstr "Käytä tauluja"
msgid "SQL query on database %s:"
msgstr "Suorita SQL-kysely tietokannassa %s:"
-#: db_qbe.php:934 libraries/common.lib.php:1223
+#: db_qbe.php:934 libraries/common.lib.php:1225
msgid "Submit Query"
msgstr "Suorita"
@@ -518,7 +518,7 @@ msgstr "%s hakutulosta taulussa %s"
#: db_search.php:267 db_structure.php:77 db_structure.php:78
#: db_structure.php:90 db_structure.php:92 db_structure.php:103
-#: db_structure.php:105 libraries/common.lib.php:2824
+#: db_structure.php:105 libraries/common.lib.php:2833
#: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50
#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:467
msgid "Browse"
@@ -565,26 +565,26 @@ msgstr "Kentän sisältä:"
#: db_structure.php:81 db_structure.php:82 db_structure.php:94
#: db_structure.php:95 db_structure.php:107 db_structure.php:108
-#: libraries/common.lib.php:2823 libraries/sql_query_form.lib.php:334
+#: libraries/common.lib.php:2832 libraries/sql_query_form.lib.php:334
#: libraries/sql_query_form.lib.php:337 libraries/tbl_links.inc.php:76
msgid "Insert"
msgstr "Lisää rivi"
#: db_structure.php:83 db_structure.php:96 db_structure.php:109
-#: libraries/common.lib.php:2820 libraries/common.lib.php:2827
+#: libraries/common.lib.php:2829 libraries/common.lib.php:2836
#: libraries/db_links.inc.php:63 libraries/export/htmlword.php:23
#: libraries/export/latex.php:33 libraries/export/latex.php:337
#: libraries/export/odt.php:32 libraries/export/sql.php:60
#: libraries/export/texytext.php:23 libraries/import.lib.php:1104
#: libraries/tbl_links.inc.php:56 pmd_general.php:134
-#: server_privileges.php:554 server_replication.php:315 tbl_tracking.php:269
+#: server_privileges.php:593 server_replication.php:315 tbl_tracking.php:269
msgid "Structure"
msgstr "Rakenne"
#: db_structure.php:84 db_structure.php:85 db_structure.php:97
#: db_structure.php:98 db_structure.php:110 db_structure.php:111
#: db_structure.php:545 db_structure.php:546 db_tracking.php:91
-#: libraries/Index.class.php:483 libraries/common.lib.php:1654
+#: libraries/Index.class.php:483 libraries/common.lib.php:1656
#: libraries/db_links.inc.php:100 libraries/mult_submits.inc.php:36
#: libraries/mult_submits.inc.php:73 libraries/tbl_links.inc.php:127
#: server_databases.php:352 tbl_structure.php:27 tbl_structure.php:151
@@ -594,7 +594,7 @@ msgstr "Tuhoa"
#: db_structure.php:86 db_structure.php:87 db_structure.php:99
#: db_structure.php:100 db_structure.php:112 db_structure.php:113
-#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1653
+#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1655
#: libraries/mult_submits.inc.php:39 libraries/tbl_links.inc.php:105
msgid "Empty"
msgstr "Tyhjennä"
@@ -638,7 +638,7 @@ msgstr "Näkymä"
#: db_structure.php:485 libraries/db_structure.lib.php:49
#: libraries/server_links.inc.php:70 server_replication.php:33
-#: server_replication.php:164 server_status.php:258
+#: server_replication.php:164 server_status.php:369
msgid "Replication"
msgstr "Replikaatio"
@@ -654,20 +654,20 @@ msgstr "%s on tämän MySQL-palvelimen oletustallennusmoottori."
#: db_structure.php:524 db_structure.php:541 db_structure.php:542
#: libraries/display_tbl.lib.php:2081 libraries/display_tbl.lib.php:2086
#: libraries/mult_submits.inc.php:16 server_databases.php:346
-#: server_databases.php:351 server_privileges.php:1557 tbl_structure.php:455
+#: server_databases.php:351 server_privileges.php:1596 tbl_structure.php:455
#: tbl_structure.php:464
msgid "With selected:"
msgstr "Valitut:"
#: db_structure.php:527 libraries/display_tbl.lib.php:2076
-#: server_databases.php:348 server_privileges.php:530
-#: server_privileges.php:1560 tbl_structure.php:458
+#: server_databases.php:348 server_privileges.php:569
+#: server_privileges.php:1599 tbl_structure.php:458
msgid "Check All"
msgstr "Valitse kaikki"
#: db_structure.php:531 libraries/display_tbl.lib.php:2077
#: libraries/replication_gui.lib.php:33 server_databases.php:350
-#: server_privileges.php:533 server_privileges.php:1564 tbl_structure.php:462
+#: server_privileges.php:572 server_privileges.php:1603 tbl_structure.php:462
msgid "Uncheck All"
msgstr "Poista valinta kaikista"
@@ -705,7 +705,7 @@ msgstr "Analysoi taulu"
#: libraries/display_export.lib.php:83 libraries/display_tbl.lib.php:2094
#: libraries/display_tbl.lib.php:2225 libraries/mult_submits.inc.php:62
#: libraries/server_links.inc.php:84 libraries/tbl_links.inc.php:82
-#: pmd_pdf.php:84 pmd_pdf.php:109 server_privileges.php:1341
+#: pmd_pdf.php:84 pmd_pdf.php:109 server_privileges.php:1380
#: setup/frames/menu.inc.php:22 tbl_row_action.php:59
msgid "Export"
msgstr "Vienti"
@@ -723,8 +723,8 @@ msgstr "Seurattavat taulut"
#: libraries/export/sql.php:342 libraries/export/texytext.php:84
#: libraries/export/xml.php:255 libraries/header.inc.php:106
#: libraries/header_printview.inc.php:58 server_databases.php:169
-#: server_privileges.php:1621 server_privileges.php:1682
-#: server_privileges.php:1940 server_processlist.php:56
+#: server_privileges.php:1660 server_privileges.php:1721
+#: server_privileges.php:1979 server_processlist.php:56
#: server_synchronize.php:1179 server_synchronize.php:1183
#: tbl_tracking.php:591 test/theme.php:65
msgid "Database"
@@ -744,8 +744,8 @@ msgstr "Päivitetty"
#: db_tracking.php:77 libraries/Index.class.php:440
#: libraries/db_structure.lib.php:53 server_databases.php:203
-#: server_privileges.php:1503 server_privileges.php:1686
-#: server_privileges.php:2034 tbl_structure.php:187
+#: server_privileges.php:1542 server_privileges.php:1725
+#: server_privileges.php:2073 tbl_structure.php:187
msgid "Action"
msgstr "Toiminnot"
@@ -947,11 +947,11 @@ msgstr "Palvelimen nimi puuttuu!"
msgid "The user name is empty!"
msgstr "Käyttäjän nimi puuttuu!"
-#: js/messages.php:44 server_privileges.php:1197 user_password.php:70
+#: js/messages.php:44 server_privileges.php:1236 user_password.php:70
msgid "The password is empty!"
msgstr "Salasana puuttuu!"
-#: js/messages.php:45 server_privileges.php:1195 user_password.php:73
+#: js/messages.php:45 server_privileges.php:1234 user_password.php:73
msgid "The passwords aren't the same!"
msgstr "Salasanat eivät ole samat!"
@@ -1030,8 +1030,8 @@ msgid "Prev"
msgstr "Edellinen"
#. l10n: Display text for next month link in calendar
-#: js/messages.php:77 libraries/common.lib.php:2344
-#: libraries/common.lib.php:2347 libraries/display_tbl.lib.php:338
+#: js/messages.php:77 libraries/common.lib.php:2353
+#: libraries/common.lib.php:2356 libraries/display_tbl.lib.php:338
#: server_binlog.php:205 server_binlog.php:207 tbl_printview.php:424
#: tbl_structure.php:801
msgid "Next"
@@ -1107,27 +1107,27 @@ msgid "December"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:97 libraries/common.lib.php:1555
+#: js/messages.php:97 libraries/common.lib.php:1557
msgid "Jan"
msgstr "Tammi"
#. l10n: Short month name
-#: js/messages.php:99 libraries/common.lib.php:1557
+#: js/messages.php:99 libraries/common.lib.php:1559
msgid "Feb"
msgstr "Helmi"
#. l10n: Short month name
-#: js/messages.php:101 libraries/common.lib.php:1559
+#: js/messages.php:101 libraries/common.lib.php:1561
msgid "Mar"
msgstr "Maalis"
#. l10n: Short month name
-#: js/messages.php:103 libraries/common.lib.php:1561
+#: js/messages.php:103 libraries/common.lib.php:1563
msgid "Apr"
msgstr "Huhti"
#. l10n: Short month name
-#: js/messages.php:105 libraries/common.lib.php:1563
+#: js/messages.php:105 libraries/common.lib.php:1565
#, fuzzy
#| msgid "May"
msgctxt "Short month name"
@@ -1135,37 +1135,37 @@ msgid "May"
msgstr "Touko"
#. l10n: Short month name
-#: js/messages.php:107 libraries/common.lib.php:1565
+#: js/messages.php:107 libraries/common.lib.php:1567
msgid "Jun"
msgstr "Kesä"
#. l10n: Short month name
-#: js/messages.php:109 libraries/common.lib.php:1567
+#: js/messages.php:109 libraries/common.lib.php:1569
msgid "Jul"
msgstr "Heinä"
#. l10n: Short month name
-#: js/messages.php:111 libraries/common.lib.php:1569
+#: js/messages.php:111 libraries/common.lib.php:1571
msgid "Aug"
msgstr "Elo"
#. l10n: Short month name
-#: js/messages.php:113 libraries/common.lib.php:1571
+#: js/messages.php:113 libraries/common.lib.php:1573
msgid "Sep"
msgstr "Syys"
#. l10n: Short month name
-#: js/messages.php:115 libraries/common.lib.php:1573
+#: js/messages.php:115 libraries/common.lib.php:1575
msgid "Oct"
msgstr "Loka"
#. l10n: Short month name
-#: js/messages.php:117 libraries/common.lib.php:1575
+#: js/messages.php:117 libraries/common.lib.php:1577
msgid "Nov"
msgstr "Marras"
#. l10n: Short month name
-#: js/messages.php:119 libraries/common.lib.php:1577
+#: js/messages.php:119 libraries/common.lib.php:1579
msgid "Dec"
msgstr "Joulu"
@@ -1206,37 +1206,37 @@ msgid "Saturday"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:132 libraries/common.lib.php:1580
+#: js/messages.php:132 libraries/common.lib.php:1582
msgid "Sun"
msgstr "Su"
#. l10n: Short week day name
-#: js/messages.php:134 libraries/common.lib.php:1582
+#: js/messages.php:134 libraries/common.lib.php:1584
msgid "Mon"
msgstr "Ma"
#. l10n: Short week day name
-#: js/messages.php:136 libraries/common.lib.php:1584
+#: js/messages.php:136 libraries/common.lib.php:1586
msgid "Tue"
msgstr "Ti"
#. l10n: Short week day name
-#: js/messages.php:138 libraries/common.lib.php:1586
+#: js/messages.php:138 libraries/common.lib.php:1588
msgid "Wed"
msgstr "Ke"
#. l10n: Short week day name
-#: js/messages.php:140 libraries/common.lib.php:1588
+#: js/messages.php:140 libraries/common.lib.php:1590
msgid "Thu"
msgstr "To"
#. l10n: Short week day name
-#: js/messages.php:142 libraries/common.lib.php:1590
+#: js/messages.php:142 libraries/common.lib.php:1592
msgid "Fri"
msgstr "Pe"
#. l10n: Short week day name
-#: js/messages.php:144 libraries/common.lib.php:1592
+#: js/messages.php:144 libraries/common.lib.php:1594
msgid "Sat"
msgstr "La"
@@ -1385,7 +1385,7 @@ msgid "Comment"
msgstr "Kommentti"
#: libraries/Index.class.php:466 libraries/common.lib.php:616
-#: libraries/common.lib.php:1199 libraries/display_tbl.lib.php:1117
+#: libraries/common.lib.php:1201 libraries/display_tbl.lib.php:1117
#: libraries/import.lib.php:1087 libraries/import.lib.php:1111
#: pdf_pages.php:285 setup/frames/index.inc.php:124
#: setup/lib/messages.inc.php:352 tbl_row_action.php:69
@@ -1411,7 +1411,7 @@ msgstr ""
"poistaa."
#: libraries/List_Database.class.php:431 libraries/server_links.inc.php:41
-#: server_databases.php:88 server_privileges.php:1621
+#: server_databases.php:88 server_privileges.php:1660
#: setup/lib/messages.inc.php:110 test/theme.php:93
msgid "Databases"
msgstr "Tietokannat"
@@ -1750,7 +1750,7 @@ msgid "Documentation"
msgstr "Ohjeet"
#: libraries/common.lib.php:595 libraries/header_printview.inc.php:61
-#: server_processlist.php:60 server_status.php:247
+#: server_processlist.php:60 server_status.php:358
msgid "SQL query"
msgstr "SQL-kysely"
@@ -1766,130 +1766,130 @@ msgstr "Selitä SQL-kysely"
msgid "Skip Explain SQL"
msgstr "Älä selitä SQL-kyselyä"
-#: libraries/common.lib.php:1212
+#: libraries/common.lib.php:1214
msgid "Without PHP Code"
msgstr "Kätke PHP-koodi"
-#: libraries/common.lib.php:1215 setup/lib/messages.inc.php:355
+#: libraries/common.lib.php:1217 setup/lib/messages.inc.php:355
msgid "Create PHP Code"
msgstr "Näytä PHP-koodi"
-#: libraries/common.lib.php:1233 server_status.php:341
+#: libraries/common.lib.php:1235 server_status.php:452
#: setup/lib/messages.inc.php:354
msgid "Refresh"
msgstr "Päivitä"
-#: libraries/common.lib.php:1242
+#: libraries/common.lib.php:1244
msgid "Skip Validate SQL"
msgstr "Älä tarkista SQL-kyselyä"
-#: libraries/common.lib.php:1245 setup/lib/messages.inc.php:356 sql.php:518
+#: libraries/common.lib.php:1247 setup/lib/messages.inc.php:356 sql.php:518
msgid "Validate SQL"
msgstr "Tarkista SQL-lause"
-#: libraries/common.lib.php:1276
+#: libraries/common.lib.php:1278
msgid "Inline edit of this query"
msgstr ""
-#: libraries/common.lib.php:1278
+#: libraries/common.lib.php:1280
#, fuzzy
#| msgid "Engines"
msgid "Inline"
msgstr "Moottorit"
-#: libraries/common.lib.php:1332 libraries/common.lib.php:1347
+#: libraries/common.lib.php:1334 libraries/common.lib.php:1349
msgid "Profiling"
msgstr "Profilointi"
-#: libraries/common.lib.php:1351 libraries/tbl_triggers.lib.php:28
+#: libraries/common.lib.php:1353 libraries/tbl_triggers.lib.php:28
#: server_processlist.php:58
msgid "Time"
msgstr "Aika"
#. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "B"
msgstr "tavua"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "KiB"
msgstr "kt"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "MiB"
msgstr "Mt"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "GiB"
msgstr "Gt"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "TiB"
msgstr "Tt"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "PiB"
msgstr "Pt"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "EiB"
msgstr "Et"
#. l10n: Thousands separator
-#: libraries/common.lib.php:1417
+#: libraries/common.lib.php:1419
msgid ","
msgstr " "
#. l10n: Decimal separator
-#: libraries/common.lib.php:1419
+#: libraries/common.lib.php:1421
msgid "."
msgstr ","
#. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string
-#: libraries/common.lib.php:1596
+#: libraries/common.lib.php:1598
#: libraries/transformations/text_plain__dateformat.inc.php:34
msgid "%B %d, %Y at %I:%M %p"
msgstr "%d.%m.%Y klo %H:%M"
-#: libraries/common.lib.php:1898
+#: libraries/common.lib.php:1907
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "%s päivää, %s tuntia, %s minuuttia ja %s sekuntia"
-#: libraries/common.lib.php:2313 libraries/common.lib.php:2316
-#: libraries/display_tbl.lib.php:290 server_status.php:608
+#: libraries/common.lib.php:2322 libraries/common.lib.php:2325
+#: libraries/display_tbl.lib.php:290 server_status.php:719
msgid "Begin"
msgstr "Alkuun"
-#: libraries/common.lib.php:2314 libraries/common.lib.php:2317
+#: libraries/common.lib.php:2323 libraries/common.lib.php:2326
#: libraries/display_tbl.lib.php:291 server_binlog.php:168
#: server_binlog.php:170
msgid "Previous"
msgstr "Edellinen"
-#: libraries/common.lib.php:2345 libraries/common.lib.php:2348
+#: libraries/common.lib.php:2354 libraries/common.lib.php:2357
#: libraries/display_tbl.lib.php:353
msgid "End"
msgstr "Loppu"
-#: libraries/common.lib.php:2421
+#: libraries/common.lib.php:2430
#, php-format
msgid "Jump to database "%s"."
msgstr "Siirry tietokantaan "%s"."
-#: libraries/common.lib.php:2441
+#: libraries/common.lib.php:2450
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr "Toimintoon %s vaikuttaa tunnettu vika, katso %s"
-#: libraries/common.lib.php:2821 libraries/common.lib.php:2828
+#: libraries/common.lib.php:2830 libraries/common.lib.php:2837
#: libraries/db_links.inc.php:68 libraries/export/sql.php:25
#: libraries/import/sql.php:18 libraries/server_links.inc.php:45
#: libraries/tbl_links.inc.php:60 querywindow.php:99 test/theme.php:97
msgid "SQL"
msgstr "SQL"
-#: libraries/common.lib.php:2830 libraries/db_links.inc.php:104
+#: libraries/common.lib.php:2839 libraries/db_links.inc.php:104
#: libraries/tbl_links.inc.php:95 libraries/tbl_links.inc.php:117
#: view_operations.php:89
msgid "Operations"
@@ -1943,8 +1943,8 @@ msgid "Import"
msgstr "Tuonti"
#: libraries/db_links.inc.php:111 libraries/server_links.inc.php:66
-#: server_privileges.php:72 server_privileges.php:1683
-#: server_privileges.php:2032 test/theme.php:117
+#: server_privileges.php:111 server_privileges.php:1722
+#: server_privileges.php:2071 test/theme.php:117
msgid "Privileges"
msgstr "Käyttöoikeudet"
@@ -1993,22 +1993,22 @@ msgid "Change password"
msgstr "Vaihda salasana"
#: libraries/display_change_password.lib.php:35
-#: libraries/replication_gui.lib.php:345 server_privileges.php:768
+#: libraries/replication_gui.lib.php:345 server_privileges.php:807
msgid "No Password"
msgstr "Ei salasanaa"
#: libraries/display_change_password.lib.php:41
#: libraries/replication_gui.lib.php:59 libraries/replication_gui.lib.php:60
#: libraries/replication_gui.lib.php:335 libraries/replication_gui.lib.php:339
-#: libraries/replication_gui.lib.php:349 server_privileges.php:757
-#: server_privileges.php:761 server_privileges.php:772
-#: server_privileges.php:1499 server_synchronize.php:1175
+#: libraries/replication_gui.lib.php:349 server_privileges.php:796
+#: server_privileges.php:800 server_privileges.php:811
+#: server_privileges.php:1538 server_synchronize.php:1175
msgid "Password"
msgstr "Salasana"
#: libraries/display_change_password.lib.php:46
#: libraries/replication_gui.lib.php:353 libraries/replication_gui.lib.php:356
-#: server_privileges.php:776 server_privileges.php:779
+#: server_privileges.php:815 server_privileges.php:818
msgid "Re-type"
msgstr "Kirjoita uudelleen"
@@ -2023,12 +2023,12 @@ msgid "MySQL 4.0 compatible"
msgstr "MySQL 4.0 -yhteensopiva"
#: libraries/display_change_password.lib.php:72
-#: libraries/replication_gui.lib.php:360 server_privileges.php:783
+#: libraries/replication_gui.lib.php:360 server_privileges.php:822
msgid "Generate Password"
msgstr "Keksi salasana"
#: libraries/display_change_password.lib.php:75
-#: libraries/replication_gui.lib.php:363 server_privileges.php:786
+#: libraries/replication_gui.lib.php:363 server_privileges.php:825
msgid "Generate"
msgstr "Keksi"
@@ -2041,8 +2041,8 @@ msgstr "Luo uusi tietokanta"
msgid "Create"
msgstr "Luo"
-#: libraries/display_create_database.lib.php:40 server_privileges.php:74
-#: server_privileges.php:1388 server_replication.php:35
+#: libraries/display_create_database.lib.php:40 server_privileges.php:113
+#: server_privileges.php:1427 server_replication.php:35
msgid "No Privileges"
msgstr "Ei käyttöoikeuksia"
@@ -2133,7 +2133,7 @@ msgstr "Pakkaus"
#: libraries/display_export.lib.php:240 libraries/display_import.lib.php:197
#: libraries/display_import.lib.php:210 libraries/display_tbl.lib.php:530
#: libraries/export/sql.php:868 libraries/tbl_properties.inc.php:575
-#: server_privileges.php:1836 server_processlist.php:75
+#: server_privileges.php:1875 server_processlist.php:75
msgid "None"
msgstr "Ei mitään"
@@ -2465,7 +2465,7 @@ msgstr ""
msgid "Buffer Pool"
msgstr "Puskurivaranto"
-#: libraries/engines/innodb.lib.php:145 server_status.php:306
+#: libraries/engines/innodb.lib.php:145 server_status.php:417
msgid "InnoDB Status"
msgstr "InnoDB:n tila"
@@ -2474,8 +2474,8 @@ msgid "Buffer Pool Usage"
msgstr "Puskurivarannon käyttö"
#: libraries/engines/innodb.lib.php:194 server_databases.php:137
-#: server_databases.php:305 server_status.php:414 server_status.php:475
-#: server_status.php:496 tbl_printview.php:351 tbl_structure.php:696
+#: server_databases.php:305 server_status.php:525 server_status.php:586
+#: server_status.php:607 tbl_printview.php:351 tbl_structure.php:696
msgid "Total"
msgstr "Yhteensä"
@@ -2834,7 +2834,7 @@ msgstr "Microsoft Word 2000"
#: libraries/export/latex.php:201 libraries/export/odt.php:48
#: libraries/export/sql.php:106 libraries/export/sql.php:868
#: libraries/export/texytext.php:27 server_databases.php:127
-#: server_privileges.php:537 server_replication.php:316 tbl_printview.php:317
+#: server_privileges.php:576 server_replication.php:316 tbl_printview.php:317
#: tbl_structure.php:665
msgid "Data"
msgstr "Tietoa"
@@ -2884,9 +2884,9 @@ msgstr "MIME-tyyppi"
#: libraries/export/xml.php:102 libraries/header_printview.inc.php:57
#: libraries/replication_gui.lib.php:63 libraries/replication_gui.lib.php:174
#: libraries/replication_gui.lib.php:269 libraries/replication_gui.lib.php:272
-#: libraries/replication_gui.lib.php:329 server_privileges.php:692
-#: server_privileges.php:695 server_privileges.php:751
-#: server_privileges.php:1498 server_privileges.php:2030
+#: libraries/replication_gui.lib.php:329 server_privileges.php:731
+#: server_privileges.php:734 server_privileges.php:790
+#: server_privileges.php:1537 server_privileges.php:2069
#: server_processlist.php:55 server_synchronize.php:1159
msgid "Host"
msgstr "Palvelin"
@@ -3243,873 +3243,6 @@ msgstr "Ei mitään"
msgid "Convert to Kana"
msgstr ""
-#. l10n: Text direction, use either ltr or rtl
-#: libraries/messages.inc.php:19
-msgid "ltr"
-msgstr "ltr"
-
-#: libraries/messages.inc.php:21
-msgid "Content of table __TABLE__"
-msgstr "Taulun __TABLE__ sisältö"
-
-#: libraries/messages.inc.php:22
-msgid "(continued)"
-msgstr "(jatkuu)"
-
-#: libraries/messages.inc.php:23
-msgid "Structure of table __TABLE__"
-msgstr "Taulun __TABLE__ rakenne"
-
-#: libraries/messages.inc.php:25 server_privileges.php:227
-msgid "Includes all privileges except GRANT."
-msgstr "Sisältää kaikki käyttöoikeudet GRANT-oikeutta lukuun ottamatta."
-
-#: libraries/messages.inc.php:26 server_privileges.php:153
-#: server_privileges.php:476
-msgid "Allows altering the structure of existing tables."
-msgstr "Sallii muuttaa olemassa olevien taulujen rakennetta."
-
-#: libraries/messages.inc.php:27 server_privileges.php:169
-#: server_privileges.php:482
-msgid "Allows altering and dropping stored routines."
-msgstr "Sallii talletettujen rutiinien muuntamisen ja poistamisen."
-
-#: libraries/messages.inc.php:28 server_privileges.php:145
-#: server_privileges.php:475
-msgid "Allows creating new databases and tables."
-msgstr "Sallii uusien tietokantojen ja taulujen luomisen."
-
-#: libraries/messages.inc.php:29 server_privileges.php:168
-#: server_privileges.php:481
-msgid "Allows creating stored routines."
-msgstr "Sallii talletettujen rutiinien luomisen."
-
-#: libraries/messages.inc.php:30 server_privileges.php:475
-msgid "Allows creating new tables."
-msgstr "Sallii uusien taulujen luomisen."
-
-#: libraries/messages.inc.php:31 server_privileges.php:156
-#: server_privileges.php:479
-msgid "Allows creating temporary tables."
-msgstr "Sallii tilapäisten taulujen luomisen."
-
-#: libraries/messages.inc.php:32 server_privileges.php:170
-#: server_privileges.php:515
-msgid "Allows creating, dropping and renaming user accounts."
-msgstr "Sallii käyttäjätilien luomisen, poistamisen ja uudelleennimeämisen."
-
-#: libraries/messages.inc.php:33 server_privileges.php:160
-#: server_privileges.php:164 server_privileges.php:487
-#: server_privileges.php:491
-msgid "Allows creating new views."
-msgstr "Sallii uusien näkymien luomisen."
-
-#: libraries/messages.inc.php:34 server_privileges.php:144
-#: server_privileges.php:467
-msgid "Allows deleting data."
-msgstr "Sallii tietojen poistamisen."
-
-#: libraries/messages.inc.php:35 server_privileges.php:146
-#: server_privileges.php:478
-msgid "Allows dropping databases and tables."
-msgstr "Sallii tietokantojen ja taulujen poistamisen."
-
-#: libraries/messages.inc.php:36 server_privileges.php:478
-msgid "Allows dropping tables."
-msgstr "Sallii taulujen poistamisen."
-
-#: libraries/messages.inc.php:37 server_privileges.php:161
-#: server_privileges.php:495
-msgid "Allows to set up events for the event scheduler"
-msgstr "Sallii luoda tapahtuma-ajastimelle tapahtumia"
-
-#: libraries/messages.inc.php:38 server_privileges.php:171
-#: server_privileges.php:483
-msgid "Allows executing stored routines."
-msgstr "Sallii talletettujen rutiinien suorittamisen."
-
-#: libraries/messages.inc.php:39 server_privileges.php:150
-#: server_privileges.php:470
-msgid "Allows importing data from and exporting data into files."
-msgstr "Sallii tietojen tuomisen ja viemisen."
-
-#: libraries/messages.inc.php:40 server_privileges.php:501
-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/messages.inc.php:41 server_privileges.php:152
-#: server_privileges.php:477
-msgid "Allows creating and dropping indexes."
-msgstr "Sallii indeksien luomisen ja poistamisen."
-
-#: libraries/messages.inc.php:42 server_privileges.php:142
-#: server_privileges.php:403 server_privileges.php:465
-msgid "Allows inserting and replacing data."
-msgstr "Sallii tietojen lisäämisen ja korvaamisen."
-
-#: libraries/messages.inc.php:43 server_privileges.php:157
-#: server_privileges.php:510
-msgid "Allows locking tables for the current thread."
-msgstr "Sallii taulujen lukitsemisen nykyiselle säikeelle."
-
-#: libraries/messages.inc.php:44 server_privileges.php:607
-#: server_privileges.php:609
-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/messages.inc.php:45 server_privileges.php:595
-#: server_privileges.php:597
-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/messages.inc.php:46 server_privileges.php:601
-#: server_privileges.php:603
-msgid ""
-"Limits the number of commands that change any table or database the user may "
-"execute per hour."
-msgstr ""
-"Rajoittaa, kuinka monta monta kertaa käyttäjä saa suorittaa tauluihin tai "
-"tietokantoihin muutoksia tekeviä komentoja tunnin aikana."
-
-#: libraries/messages.inc.php:47 server_privileges.php:613
-#: server_privileges.php:615
-msgid "Limits the number of simultaneous connections the user may have."
-msgstr "Rajoittaa käyttäjän yhtäaikaisten yhteyksien määrän."
-
-#: libraries/messages.inc.php:48 server_privileges.php:149
-#: server_privileges.php:505
-msgid "Allows viewing processes of all users"
-msgstr "Sallii kaikkien käyttäjien prosessien näyttämisen"
-
-#: libraries/messages.inc.php:49 server_privileges.php:151
-#: server_privileges.php:409 server_privileges.php:511
-msgid "Has no effect in this MySQL version."
-msgstr "Ei vaikutusta tässä MySQL-palvelimen versiossa."
-
-#: libraries/messages.inc.php:50 server_privileges.php:147
-#: server_privileges.php:506
-msgid "Allows reloading server settings and flushing the server's caches."
-msgstr ""
-"Sallii palvelinasetusten uudelleenlataamisen ja palvelimen välimuistin "
-"tyhjentämisen."
-
-#: libraries/messages.inc.php:51 server_privileges.php:159
-#: server_privileges.php:513
-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/messages.inc.php:52 server_privileges.php:158
-#: server_privileges.php:514
-msgid "Needed for the replication slaves."
-msgstr "Tarvitaan replikaatiota käyttävissä alipalvelimissa."
-
-#: libraries/messages.inc.php:53 server_privileges.php:141
-#: server_privileges.php:400 server_privileges.php:464
-msgid "Allows reading data."
-msgstr "Sallii tietojen lukemisen."
-
-#: libraries/messages.inc.php:54 server_privileges.php:154
-#: server_privileges.php:508
-msgid "Gives access to the complete list of databases."
-msgstr "Sallii koko tietokantaluettelon käytön."
-
-#: libraries/messages.inc.php:55 server_privileges.php:165
-#: server_privileges.php:167 server_privileges.php:480
-msgid "Allows performing SHOW CREATE VIEW queries."
-msgstr "Sallii SHOW CREATE VIEW -kyselyjen suorittamisen."
-
-#: libraries/messages.inc.php:56 server_privileges.php:148
-#: server_privileges.php:507
-msgid "Allows shutting down the server."
-msgstr "Sallii palvelimen sammuttamisen."
-
-#: libraries/messages.inc.php:57 server_privileges.php:155
-#: server_privileges.php:504
-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 ""
-"Sallii yhteydenmuotostamisen silloinkin kun yhteyksien enimmäismäärä on "
-"saavutettu; Tarvitaan useissa pääkäyttäjän toiminnoissa kuten globaalien "
-"muuttujien asettamisessa ja muitten käyttäjien säikeiden lopettamisessa."
-
-#: libraries/messages.inc.php:58 server_privileges.php:162
-#: server_privileges.php:496
-msgid "Allows creating and dropping triggers"
-msgstr "Sallii herättimien eli laukaisinten luomisen ja poistamisen"
-
-#: libraries/messages.inc.php:59 server_privileges.php:143
-#: server_privileges.php:406 server_privileges.php:466
-msgid "Allows changing data."
-msgstr "Sallii tietojen muuttamisen."
-
-#: libraries/messages.inc.php:60 server_privileges.php:221
-msgid "No privileges."
-msgstr "Ei käyttöoikeuksia."
-
-#: libraries/messages.inc.php:62
-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 ""
-"Kertoo binäärilokin tilapäistä välimuistia käyttäneiden transaktioiden "
-"määrän sellaisissa tapauksissa, joissa transaktiot ovat ylittäneet "
-"\"binlog_cache_size\"-muuttujan arvon ja käyttäneet tilapäistiedostoa "
-"transaktiokyselyjen tallentamiseen."
-
-#: libraries/messages.inc.php:63
-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/messages.inc.php:64
-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 "
-"to increase the tmp_table_size value to cause temporary tables to be memory-"
-"based instead of disk-based."
-msgstr ""
-"Kertoo, kuinka monta palvelimen automaattisesti luomaa tilapäistaulua "
-"levyllä on. Jos Created_tmp_disk_tables-parametrin arvo on liian suuri, "
-"nosta tmp_table_size:n arvoa, jotta tilapäisiä tauluja säilytettäisiin "
-"muistissa eikä levyllä."
-
-#: libraries/messages.inc.php:65
-msgid "How many temporary files mysqld has created."
-msgstr "Mysqld-palvelun luomien tilapäistiedostojen määrä."
-
-#: libraries/messages.inc.php:66
-msgid ""
-"The number of in-memory temporary tables created automatically by the server "
-"while executing statements."
-msgstr ""
-"Kertoo, kuinka monta tilapäistaulua palvelin on automaattisesti luonut "
-"kyselyjä suorittaessaan."
-
-#: libraries/messages.inc.php:67
-msgid ""
-"The number of rows written with INSERT DELAYED for which some error occurred "
-"(probably duplicate key)."
-msgstr ""
-"Virheen aiheuttaneiden, INSERT DELAYED -kyselyllä kirjoitettujen rivien "
-"määrä (virheenä todennäköisesti päällekkäinen avain)."
-
-#: libraries/messages.inc.php:68
-msgid ""
-"The number of INSERT DELAYED handler threads in use. Every different table "
-"on which one uses INSERT DELAYED gets its own thread."
-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/messages.inc.php:69
-msgid "The number of INSERT DELAYED rows written."
-msgstr "INSERT DELAYED -rivien kirjoituksia."
-
-#: libraries/messages.inc.php:70
-msgid "The number of executed FLUSH statements."
-msgstr "FLUSH-kyselyjä suoritettu."
-
-#: libraries/messages.inc.php:71
-msgid "The number of internal COMMIT statements."
-msgstr "Sisäisten COMMIT-kyselyjen määrä."
-
-#: libraries/messages.inc.php:72
-msgid "The number of times a row was deleted from a table."
-msgstr "Kertoo, kuinka monta kertaa taulusta on poistettu rivi."
-
-#: libraries/messages.inc.php:73
-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 ""
-"MySQL-palvelin saattaa kysyä NDB Cluster -tallennusmoottorilta, tunteeko se "
-"tietyn nimisen taulun. Tätä toimintoa kutsutaan selvittämiseksi (engl. "
-"discovery). Handler_discover ilmaisee selvitettyjen taulujen määrän."
-
-#: libraries/messages.inc.php:74
-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 ""
-"Kertoo, kuinka monta kertaa ensimmäistä kohtaa on luettu indeksistä. Jos "
-"tämän arvo on suuri, palvelin suorittaa runsaasti kokonaisia indeksien "
-"läpikäyntejä; näin käy esimerkiksi lauseessa SELECT col1 FROM foo, olettaen "
-"col1:sen olevan indeksoitu sarake."
-
-#: libraries/messages.inc.php:75
-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 ""
-"Kertoo, kuinka monta kertaa rivejä on luettu avaimen perusteella. Jos tämä "
-"on suuri, kyselyjen ja taulujen indeksointi suoritetaan oikein."
-
-#: libraries/messages.inc.php:76
-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 ""
-"Kertoo niiden pyyntöjen määrän, jotka lukevat seuraavan rivin "
-"avainjärjestyksessä. Tämä arvo kasvaa, jos haetaan indeksisarakkeita "
-"käyttämällä rajauksia tai jos suoritetaan indeksihaku."
-
-#: libraries/messages.inc.php:77
-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 ""
-"Kertoo niiden pyyntöjen määrän, jotka lukevat edellisen rivin "
-"avainjärjestyksessä. Tätä lukumenetelmää käytetään lähinnä ORDER BY ... DESC "
-"-kyselyllä optimoimiseen."
-
-#: libraries/messages.inc.php:78
-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 "
-"probably have a lot of queries that require MySQL to scan whole tables or "
-"you have joins that don't use keys properly."
-msgstr ""
-"Kertoo niiden pyyntöjen määrän, jotka lukevat rivin käyttäen kiinteää "
-"sijaintia. Tämä on suuri, jos tulostietojen lajittelua edellyttäviä kyselyjä "
-"suoritetaan paljon. Käytät ehkä runsaasti sellaisia kyselyjä, jotka "
-"pakottavat MySQL-palvelimen käymään läpi kaikki taulut, tai käytät "
-"liitoksia, jotka käyttävät avaimia virheellisesti."
-
-#: libraries/messages.inc.php:79
-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 "
-"tables are not properly indexed or that your queries are not written to take "
-"advantage of the indexes you have."
-msgstr ""
-"Kertoo, kuinka usein pyynnöillä on luettu seuraava rivi tiedostosta. Tämä on "
-"suuri, jos käydään läpi runsaasti kokonaisia tauluja. Tämä luku kertoo "
-"yleensä siitä, että tauluja ei ole indeksoitu hyvin, tai että kyselyjä ei "
-"ole kirjoitettu siten, että ne hyödyntäisivät luomiasi indeksejä."
-
-#: libraries/messages.inc.php:80
-msgid "The number of internal ROLLBACK statements."
-msgstr "Sisäisten ROLLBACK-kyselyjen määrä."
-
-#: libraries/messages.inc.php:81
-msgid "The number of requests to update a row in a table."
-msgstr "Taulun rivien päivityspyyntöjen määrä."
-
-#: libraries/messages.inc.php:82
-msgid "The number of requests to insert a row in a table."
-msgstr "Kertoo tauluihin lisättyjen rivien määrän."
-
-#: libraries/messages.inc.php:83
-msgid "The number of pages containing data (dirty or clean)."
-msgstr "Tietoa (epäsiistiä tai siistiä) sisältävien sivujen määrä"
-
-#: libraries/messages.inc.php:84
-msgid "The number of pages currently dirty."
-msgstr "Tällä hetkellä epäsiistinä olevien sivujen määrä."
-
-#: libraries/messages.inc.php:85
-msgid "The number of buffer pool pages that have been requested to be flushed."
-msgstr "Siistittäviksi pyydettyjen, puskurivarannossa olevien sivujen määrä."
-
-#: libraries/messages.inc.php:86
-msgid "The number of free pages."
-msgstr "Vapaiden sivujen määrä."
-
-#: libraries/messages.inc.php:87
-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 ""
-"InnoDB-puskurivarannon lukittujen sivujen määrä. Nämä ovat sivuja, joita "
-"parhaillaan luetaan tai kirjoitetaan tai joita ei voida poistaa tai joiden "
-"välimuistia ei voida tyhjentää syystä tai toisesta."
-
-#: libraries/messages.inc.php:88
-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 "
-"be calculated as Innodb_buffer_pool_pages_total - "
-"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data."
-msgstr ""
-"Kertoo niiden sivujen määrän, jotka ovat käytössä administratiivisen "
-"ylijäämän, kuten rivinlukitusten tai mukautuvien salausindeksien, varaamisen "
-"takia. Tämä arvo voidaan laskea näinkin: Innodb_buffer_pool_pages_total - "
-"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data."
-
-#: libraries/messages.inc.php:89
-msgid "Total size of buffer pool, in pages."
-msgstr "Puskurivarannon kokonaiskoko sivuina."
-
-#: libraries/messages.inc.php:90
-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 ""
-"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/messages.inc.php:91
-msgid ""
-"The number of sequential read-aheads InnoDB initiated. This happens when "
-"InnoDB does a sequential full table scan."
-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/messages.inc.php:92
-msgid "The number of logical read requests InnoDB has done."
-msgstr "InnoDB:n suorittamien loogisten lukupyyntöjen määrä."
-
-#: libraries/messages.inc.php:93
-msgid ""
-"The number of logical reads that InnoDB could not satisfy from buffer pool "
-"and had to do a single-page read."
-msgstr ""
-"Sellaisten loogisten lukujen määrä, joita InnoDB ei voinut toteuttaa "
-"puskurivarannon avulla vaan joutui lukemaan yksittäisen sivun."
-
-#: libraries/messages.inc.php:94
-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 "
-"available, it's necessary to wait for pages to be flushed first. This "
-"counter counts instances of these waits. If the buffer pool size was set "
-"properly, this value should be small."
-msgstr ""
-"Yleensä InnoDB:n puskurivarannon kirjoituspyynnöt suoritetaan taustalla. Jos "
-"on kuitenkin tarve lukea tai luoda sivu silloin kun tyhjiä sivuja ei ole "
-"käytettävissä, sivujen tyhjentymistä joudutaan odottamaan. Tämä laskuri "
-"kertoo tällaisten odotusten määrän. Jos puskurivarannon koko on asetettu "
-"sopivaksi, tämän arvon pitäisi olla alhainen."
-
-#: libraries/messages.inc.php:95
-msgid "The number writes done to the InnoDB buffer pool."
-msgstr "InnoDB:n puskurivarannon kirjoituspyyntöjen määrä."
-
-#: libraries/messages.inc.php:96
-msgid "The number of fsync() operations so far."
-msgstr "Fsync()-toimenpiteitä tähän mennessä."
-
-#: libraries/messages.inc.php:97
-msgid "The current number of pending fsync() operations."
-msgstr "Tällä hetkellä käynnissä olevien fsync()-toimenpiteiden määrä."
-
-#: libraries/messages.inc.php:98
-msgid "The current number of pending reads."
-msgstr "Tällä hetkellä käynnissä olevien lukutoimenpiteiden määrä."
-
-#: libraries/messages.inc.php:99
-msgid "The current number of pending writes."
-msgstr "Tällä hetkellä käynnissä olevien kirjoitustoimenpiteiden määrä."
-
-#: libraries/messages.inc.php:100
-msgid "The amount of data read so far, in bytes."
-msgstr "Tähän mennessä luetun tiedon määrä tavuina."
-
-#: libraries/messages.inc.php:101
-msgid "The total number of data reads."
-msgstr "Kertoo, kuinka monta kertaa tietoja on luettu kaikkiaan."
-
-#: libraries/messages.inc.php:102
-msgid "The total number of data writes."
-msgstr "Kertoo, kuinka monta kertaa tietoja on kirjoitettu kaikkiaan."
-
-#: libraries/messages.inc.php:103
-msgid "The amount of data written so far, in bytes."
-msgstr "Kertoo, kuinka paljon on tähän mennessä tietoja kirjoitettu (tavuina)."
-
-#: libraries/messages.inc.php:104
-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/messages.inc.php:105
-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/messages.inc.php:106
-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 ""
-"Liian pienestä lokipuskurista johtuneiden odotusten määrä, jolloin puskurin "
-"tyhjentymistä jouduttiin odottamaan ennen jatkamista."
-
-#: libraries/messages.inc.php:107
-msgid "The number of log write requests."
-msgstr "Kertoo, kuinka monta kertaa lokitiedostoon on pyydetty kirjoittaa."
-
-#: libraries/messages.inc.php:108
-msgid "The number of physical writes to the log file."
-msgstr "Kertoo, kuinka monta kertaa lokitiedostoon on fyysisesti kirjoitettu."
-
-#: libraries/messages.inc.php:109
-msgid "The number of fsync() writes done to the log file."
-msgstr "Lokitiedostojen fsync()-kirjoitusten määrä."
-
-#: libraries/messages.inc.php:110
-msgid "The number of pending log file fsyncs."
-msgstr "Lokitiedoston avointen fsync-synkronointien määrä."
-
-#: libraries/messages.inc.php:111
-msgid "Pending log file writes."
-msgstr "Avoimet lokitiedostokirjoitukset."
-
-#: libraries/messages.inc.php:112
-msgid "The number of bytes written to the log file."
-msgstr "Lokitiedostoon kirjoitettujen tavujen määrä."
-
-#: libraries/messages.inc.php:113
-msgid "The number of pages created."
-msgstr "Luotujen sivujen määrä."
-
-#: libraries/messages.inc.php:114
-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 ""
-"InnoDB-sivun sisäänohjelmoitu koko (oletusarvoisesti se on 16 kt). Useita "
-"arvoja lasketaan sivuina; sivukoon avulla voidaan helposti laskea sivujen "
-"koko tavuina."
-
-#: libraries/messages.inc.php:115
-msgid "The number of pages read."
-msgstr "Luettujen rivien määrä."
-
-#: libraries/messages.inc.php:116
-msgid "The number of pages written."
-msgstr "Kirjoitettujen sivujen määrä."
-
-#: libraries/messages.inc.php:117
-msgid "The number of row locks currently being waited for."
-msgstr "Tällä hetkellä odotettavien rivilukitusten määrä."
-
-#: libraries/messages.inc.php:118
-msgid "The average time to acquire a row lock, in milliseconds."
-msgstr ""
-"Rivilukituksen valmistumiseen kuluva aika keskimäärin, millisekunteina."
-
-#: libraries/messages.inc.php:119
-msgid "The total time spent in acquiring row locks, in milliseconds."
-msgstr "Rivilukitusten valmistumiseen kuluva aika yhteensä, millisekunteina."
-
-#: libraries/messages.inc.php:120
-msgid "The maximum time to acquire a row lock, in milliseconds."
-msgstr "Rivilukituksen noutamiseen kulunut aika enimmillään, millisekunteina."
-
-#: libraries/messages.inc.php:121
-msgid "The number of times a row lock had to be waited for."
-msgstr "Kertoo, kuinka monta kertaa rivilukitusta on jouduttu odottamaan."
-
-#: libraries/messages.inc.php:122
-msgid "The number of rows deleted from InnoDB tables."
-msgstr "InnoDB-tauluista poistettujen rivien määrä."
-
-#: libraries/messages.inc.php:123
-msgid "The number of rows inserted in InnoDB tables."
-msgstr "InnoDB-tauluihin lisättyjen rivien määrä."
-
-#: libraries/messages.inc.php:124
-msgid "The number of rows read from InnoDB tables."
-msgstr "InnoDB-taulusta luettujen rivien määrä."
-
-#: libraries/messages.inc.php:125
-msgid "The number of rows updated in InnoDB tables."
-msgstr "InnoDB-taulun päivitettyjen rivien määrä."
-
-#: libraries/messages.inc.php:126
-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 ""
-"Niiden avainvälimuistissa sijaitsevien avainlohkojen määrä, joihin on tehty "
-"muutoksia, mutta joita ei vielä ole tallennettu levylle. Tämä toiminto "
-"tunnetaan yleisesti nimellä Not_flushed_key_blocks."
-
-#: libraries/messages.inc.php:127
-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 ""
-"Avainvälimuistissa sijaitsevien käyttämättömien lohkojen määrä. Tämän arvon "
-"avulla voi määrittää, kuinka paljon avainvälimuistia halutaan olevan "
-"käytössä."
-
-#: libraries/messages.inc.php:128
-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/messages.inc.php:129
-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/messages.inc.php:130
-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 ""
-"Kertoo, kuinka monta kertaa levyltä on fyysisesti luettu avainlohkoja. Jos "
-"Key_reads-muuttujan arvo on suuri, key_buffer_size-muuttujaan on ehkä "
-"asetettu liian alhainen arvo. Välimuistin käyttötahti voidaan laskea "
-"lausekkeella Key_reads / Key_read_requests."
-
-#: libraries/messages.inc.php:131
-msgid "The number of requests to write a key block to the cache."
-msgstr "Kertoo, kuinka monta kertaa välimuistiin on kirjoitettu avainlohko."
-
-#: libraries/messages.inc.php:132
-msgid "The number of physical writes of a key block to disk."
-msgstr ""
-"Kertoo, kuinka monta kertaa levylle on fyysisesti kirjoitettu avainlohko."
-
-#: libraries/messages.inc.php:133
-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 ""
-"Kyselynoptimoijan laskeman, viimeksi kootun kyselyn kokonaiskulut. "
-"Hyödyllinen suunniteltaessa erilaisia kyselyvaihtoehtoja samaa "
-"kyselytapausta varten. Oletusarvo 0 tarkoittaa, että yhtään kyselyä ei ole "
-"vielä koottu."
-
-#: libraries/messages.inc.php:134
-msgid "The number of rows waiting to be written in INSERT DELAYED queues."
-msgstr ""
-"Kertoo, kuinka monta riviä INSERT DELAYED -jonoissa odottaa kirjoittamista."
-
-#: libraries/messages.inc.php:135
-msgid ""
-"The number of tables that have been opened. If opened tables is big, your "
-"table cache value is probably too small."
-msgstr ""
-"Avattujen taulujen määrä. Jos määrä on suuri, tauluvälimuistin arvo saattaa "
-"olla liian alhainen."
-
-#: libraries/messages.inc.php:136
-msgid "The number of files that are open."
-msgstr "Avoinna olevien tiedostojen määrä."
-
-#: libraries/messages.inc.php:137
-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/messages.inc.php:138
-msgid "The number of tables that are open."
-msgstr "Avoinna olevien taulujen määrä."
-
-#: libraries/messages.inc.php:139
-msgid "The number of free memory blocks in query cache."
-msgstr "Vapaitten muistilohkojen määrä kyselyvälimuistissa."
-
-#: libraries/messages.inc.php:140
-msgid "The amount of free memory for query cache."
-msgstr "Kyselyvälimuistin vapaan muistin määrä."
-
-#: libraries/messages.inc.php:141
-msgid "The number of cache hits."
-msgstr "Välimuistiosumien määrä."
-
-#: libraries/messages.inc.php:142
-msgid "The number of queries added to the cache."
-msgstr "Välimuistiin lisättyjen kyselyjen määrä."
-
-#: libraries/messages.inc.php:143
-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 "
-"cache size. The query cache uses a least recently used (LRU) strategy to "
-"decide which queries to remove from the cache."
-msgstr ""
-"Niiden kyselyjen määrä, jotka on poistettu välimuistista muistin "
-"vapauttamiseksi, jotta uusia kyselyjä voitaisiin tallentaa välimuistiin. "
-"Tämän tiedon avulla kyselyvälimuistin koon voi asettaa sopivaksi. "
-"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/messages.inc.php:144
-msgid ""
-"The number of non-cached queries (not cachable, or not cached due to the "
-"query_cache_type setting)."
-msgstr ""
-"Niiden kyselyjen määrä, joita ei ole tallennettu välimuistiin (ei ole voitu "
-"tallentaa välimuistiin tai ei muuten vain ole tallennettu sinne "
-"query_cache_type-asetuksen takia)."
-
-#: libraries/messages.inc.php:145
-msgid "The number of queries registered in the cache."
-msgstr "Rekisteröityjen kyselyjen määrä välimuistissa."
-
-#: libraries/messages.inc.php:146
-msgid "The total number of blocks in the query cache."
-msgstr "Lohkojen kokonaismäärä kyselyvälimuistissa."
-
-#: libraries/messages.inc.php:147
-msgctxt "$strShowStatusReset"
-msgid "Reset"
-msgstr "Nollaa"
-
-#: libraries/messages.inc.php:148
-msgid "The status of failsafe replication (not yet implemented)."
-msgstr "Replikaation vikasietotila (ei vielä toteutettu)."
-
-#: libraries/messages.inc.php:149
-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 ""
-"Kertoo, kuinka moni liitos ei käytä indeksejä. Jos tämä arvo ei ole 0, "
-"taulujen indeksit olisi hyvä tarkistaa tarkkaan."
-
-#: libraries/messages.inc.php:150
-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/messages.inc.php:151
-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 ""
-"Niiden avaimittomien liitosten määrä, jotka varmistavat avaimien käytön joka "
-"rivin jälkeen. (Jos tämä ei ole 0, taulujen indeksit tulisi tarkistaa "
-"huolella.)"
-
-#: libraries/messages.inc.php:152
-msgid ""
-"The number of joins that used ranges on the first table. (It's normally not "
-"critical even if this is big.)"
-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/messages.inc.php:153
-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/messages.inc.php:154
-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/messages.inc.php:155
-msgid ""
-"Total (since startup) number of times the replication slave SQL thread has "
-"retried transactions."
-msgstr ""
-"Kertoo, kuinka usein replikaation SQL-alisäie on käynnistyksestään lähtien "
-"kaikkiaan uudelleen yrittänyt transkatioita."
-
-#: libraries/messages.inc.php:156
-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/messages.inc.php:157
-msgid ""
-"The number of threads that have taken more than slow_launch_time seconds to "
-"create."
-msgstr ""
-"Niiden säikeiden määrä, joiden luomiseen on kulunut aikaa enemmän kuin "
-"slow_launch_time sekuntia."
-
-#: libraries/messages.inc.php:158
-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/messages.inc.php:159
-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 ""
-"Lajittelualgoritmiin tarvittavien lomitusten määrä. Jos tämä arvo on suuri, "
-"sort_buffer-muuttujan arvoa voi suurentaa."
-
-#: libraries/messages.inc.php:160
-msgid "The number of sorts that were done with ranges."
-msgstr "Arvolillä suoritettujen lajittelutoimenpiteiden määrä."
-
-#: libraries/messages.inc.php:161
-msgid "The number of sorted rows."
-msgstr "Lajiteltujen rivien määrä."
-
-#: libraries/messages.inc.php:162
-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/messages.inc.php:163
-msgid "The number of times that a table lock was acquired immediately."
-msgstr "Kertoo, kuinka usein taulu on saatu lukittua heti."
-
-#: libraries/messages.inc.php:164
-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 "
-"should first optimize your queries, and then either split your table or "
-"tables or use replication."
-msgstr ""
-"Kertoo, kuinka usein taulua ei ole saatu heti lukittua, ja on siten jouduttu "
-"odottamaan. Jos tämä arvo on suuri, ja suorituskyvyn kanssa on ongelmia, on "
-"hyvä ensin optimoida kyselyjä ja sitten joko jakaa taulu useampaan osaan tai "
-"käyttää hyödyksi replikaatiota."
-
-#: libraries/messages.inc.php:165
-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 ""
-"Säievälimuistissa sijaitsevien säikeiden määrä. Välimuistin käyttötahti "
-"voidaan laskea täten kaavalla Threads_created / yhteyksien lkm. Jos tämä "
-"arvo on punainen, thread_cache_size-muuttujan arvoa tulisi nostaa."
-
-#: libraries/messages.inc.php:166
-msgid "The number of currently open connections."
-msgstr "Tällä hetkellä avoinna olevien yhteyksien määrä."
-
-#: libraries/messages.inc.php:167
-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 "
-"doesn't give a notable performance improvement if you have a good thread "
-"implementation.)"
-msgstr ""
-"Yhteyksien käsittelyä varten luotujen säikeiden määrä. Jos Threads_created "
-"on suuri, thread_cache_size-muuttujan arvoa kannattaa nostaa. (Mikäli "
-"säikeet on toteutettu hyvin, tällä ei ole kovin suurta vaikutusta "
-"suorituskykyyn.)"
-
-#: libraries/messages.inc.php:168
-msgid "The number of threads that are not sleeping."
-msgstr "Hereillä olevien säikeiden määrä."
-
#: libraries/mult_submits.inc.php:76 libraries/tbl_properties.inc.php:513
#: tbl_structure.php:29 tbl_structure.php:153 tbl_structure.php:157
#: tbl_structure.php:473
@@ -4428,8 +3561,8 @@ msgstr ""
#: libraries/replication_gui.lib.php:55 libraries/replication_gui.lib.php:56
#: libraries/replication_gui.lib.php:249 libraries/replication_gui.lib.php:252
-#: libraries/replication_gui.lib.php:259 server_privileges.php:672
-#: server_privileges.php:675 server_privileges.php:682
+#: libraries/replication_gui.lib.php:259 server_privileges.php:711
+#: server_privileges.php:714 server_privileges.php:721
#: server_synchronize.php:1171
msgid "User name"
msgstr "Käyttäjänimi"
@@ -4447,11 +3580,11 @@ msgid "Slave status"
msgstr "Alipalvelimen tila"
#: libraries/replication_gui.lib.php:114 libraries/sql_query_form.lib.php:445
-#: server_status.php:626 server_variables.php:52
+#: server_status.php:737 server_variables.php:52
msgid "Variable"
msgstr "Muuttuja"
-#: libraries/replication_gui.lib.php:115 server_status.php:627
+#: libraries/replication_gui.lib.php:115 server_status.php:738
#: tbl_change.php:324 tbl_printview.php:370 tbl_select.php:139
#: tbl_structure.php:729
msgid "Value"
@@ -4473,34 +3606,34 @@ msgstr ""
msgid "Add slave replication user"
msgstr "Lisää alireplikaatiokäyttäjä"
-#: libraries/replication_gui.lib.php:254 server_privileges.php:677
+#: libraries/replication_gui.lib.php:254 server_privileges.php:716
msgid "Any user"
msgstr "Kuka tahansa käyttäjä"
#: libraries/replication_gui.lib.php:255 libraries/replication_gui.lib.php:323
-#: libraries/replication_gui.lib.php:346 server_privileges.php:678
-#: server_privileges.php:745 server_privileges.php:769
-#: server_privileges.php:1889 server_privileges.php:1919
+#: libraries/replication_gui.lib.php:346 server_privileges.php:717
+#: server_privileges.php:784 server_privileges.php:808
+#: server_privileges.php:1928 server_privileges.php:1958
msgid "Use text field"
msgstr "Käytä tekstikenttää"
-#: libraries/replication_gui.lib.php:302 server_privileges.php:725
+#: libraries/replication_gui.lib.php:302 server_privileges.php:764
msgid "Any host"
msgstr "Mikä tahansa palvelin"
-#: libraries/replication_gui.lib.php:306 server_privileges.php:729
+#: libraries/replication_gui.lib.php:306 server_privileges.php:768
msgid "Local"
msgstr "Paikallinen"
-#: libraries/replication_gui.lib.php:312 server_privileges.php:734
+#: libraries/replication_gui.lib.php:312 server_privileges.php:773
msgid "This Host"
msgstr "Tämä isäntä"
-#: libraries/replication_gui.lib.php:318 server_privileges.php:740
+#: libraries/replication_gui.lib.php:318 server_privileges.php:779
msgid "Use Host Table"
msgstr "Käytä isäntätaulua"
-#: libraries/replication_gui.lib.php:331 server_privileges.php:753
+#: libraries/replication_gui.lib.php:331 server_privileges.php:792
msgid ""
"When Host table is used, this field is ignored and values stored in Host "
"table are used instead."
@@ -4508,8 +3641,25 @@ msgstr ""
"Kun Host-taulua käytetään, tätä kenttää ei huomioida, vaan sen sijaan "
"käytetään Host-taulussa olevia tietoja."
-#: libraries/select_lang.lib.php:480 libraries/select_lang.lib.php:486
-#: libraries/select_lang.lib.php:492
+#. l10n: Text direction, use either ltr or rtl
+#: libraries/select_lang.lib.php:491
+msgid "ltr"
+msgstr "ltr"
+
+#: libraries/select_lang.lib.php:493
+msgid "Content of table __TABLE__"
+msgstr "Taulun __TABLE__ sisältö"
+
+#: libraries/select_lang.lib.php:494
+msgid "(continued)"
+msgstr "(jatkuu)"
+
+#: libraries/select_lang.lib.php:495
+msgid "Structure of table __TABLE__"
+msgstr "Taulun __TABLE__ rakenne"
+
+#: libraries/select_lang.lib.php:500 libraries/select_lang.lib.php:506
+#: libraries/select_lang.lib.php:512
#, php-format
msgid "Unknown language: %1$s."
msgstr "Tuntematon kieli: %1$s."
@@ -4520,7 +3670,7 @@ msgid "Servers"
msgstr "Palvelimet"
#: libraries/server_links.inc.php:53 server_engines.php:112
-#: server_engines.php:116 server_status.php:304 test/theme.php:105
+#: server_engines.php:116 server_status.php:415 test/theme.php:105
msgid "Variables"
msgstr "Muuttujat"
@@ -4533,7 +3683,7 @@ msgid "Engines"
msgstr "Moottorit"
#: libraries/server_links.inc.php:76 server_binlog.php:110
-#: server_status.php:253 test/theme.php:121
+#: server_status.php:364 test/theme.php:121
msgid "Binary log"
msgstr "Binääriloki"
@@ -5010,8 +4160,8 @@ msgstr "Nollaa"
msgid "Protocol version"
msgstr "Protokollan versio"
-#: main.php:189 server_privileges.php:1350 server_privileges.php:1497
-#: server_privileges.php:1611 server_privileges.php:2029
+#: main.php:189 server_privileges.php:1389 server_privileges.php:1536
+#: server_privileges.php:1650 server_privileges.php:2068
#: server_processlist.php:54
msgid "User"
msgstr "Käyttäjä"
@@ -5405,7 +4555,7 @@ msgstr "%s tietokantaa poistettiin onnistuneesti."
msgid "Databases statistics"
msgstr "Tietokantatilastot"
-#: server_databases.php:117 server_status.php:260
+#: server_databases.php:117 server_status.php:371
#: setup/lib/messages.inc.php:117
msgid "Tables"
msgstr "Taulut"
@@ -5425,6 +4575,18 @@ msgstr "Alipalvelimen replikointi"
msgid "Jump to database"
msgstr "Siirry tietokantaan"
+#: server_databases.php:267
+#, fuzzy
+#| msgid "Master replication"
+msgid "Not replicated"
+msgstr "Isäntäpalvelimen replikointi"
+
+#: server_databases.php:273
+#, fuzzy
+#| msgid "Replication"
+msgid "Replicated"
+msgstr "Replikaatio"
+
#: server_databases.php:289
#, php-format
msgid "Check privileges for database "%s"."
@@ -5458,143 +4620,335 @@ msgstr "Tallennusmoottorit"
msgid "View dump (schema) of databases"
msgstr "Näytä tietokannoista vedos (skeema)"
-#: server_privileges.php:263 server_privileges.php:264
+#: server_privileges.php:24 server_privileges.php:266
+msgid "Includes all privileges except GRANT."
+msgstr "Sisältää kaikki käyttöoikeudet GRANT-oikeutta lukuun ottamatta."
+
+#: server_privileges.php:25 server_privileges.php:192
+#: server_privileges.php:515
+msgid "Allows altering the structure of existing tables."
+msgstr "Sallii muuttaa olemassa olevien taulujen rakennetta."
+
+#: server_privileges.php:26 server_privileges.php:208
+#: server_privileges.php:521
+msgid "Allows altering and dropping stored routines."
+msgstr "Sallii talletettujen rutiinien muuntamisen ja poistamisen."
+
+#: server_privileges.php:27 server_privileges.php:184
+#: server_privileges.php:514
+msgid "Allows creating new databases and tables."
+msgstr "Sallii uusien tietokantojen ja taulujen luomisen."
+
+#: server_privileges.php:28 server_privileges.php:207
+#: server_privileges.php:520
+msgid "Allows creating stored routines."
+msgstr "Sallii talletettujen rutiinien luomisen."
+
+#: server_privileges.php:29 server_privileges.php:514
+msgid "Allows creating new tables."
+msgstr "Sallii uusien taulujen luomisen."
+
+#: server_privileges.php:30 server_privileges.php:195
+#: server_privileges.php:518
+msgid "Allows creating temporary tables."
+msgstr "Sallii tilapäisten taulujen luomisen."
+
+#: server_privileges.php:31 server_privileges.php:209
+#: server_privileges.php:554
+msgid "Allows creating, dropping and renaming user accounts."
+msgstr "Sallii käyttäjätilien luomisen, poistamisen ja uudelleennimeämisen."
+
+#: server_privileges.php:32 server_privileges.php:199
+#: server_privileges.php:203 server_privileges.php:526
+#: server_privileges.php:530
+msgid "Allows creating new views."
+msgstr "Sallii uusien näkymien luomisen."
+
+#: server_privileges.php:33 server_privileges.php:183
+#: server_privileges.php:506
+msgid "Allows deleting data."
+msgstr "Sallii tietojen poistamisen."
+
+#: server_privileges.php:34 server_privileges.php:185
+#: server_privileges.php:517
+msgid "Allows dropping databases and tables."
+msgstr "Sallii tietokantojen ja taulujen poistamisen."
+
+#: server_privileges.php:35 server_privileges.php:517
+msgid "Allows dropping tables."
+msgstr "Sallii taulujen poistamisen."
+
+#: server_privileges.php:36 server_privileges.php:200
+#: server_privileges.php:534
+msgid "Allows to set up events for the event scheduler"
+msgstr "Sallii luoda tapahtuma-ajastimelle tapahtumia"
+
+#: server_privileges.php:37 server_privileges.php:210
+#: server_privileges.php:522
+msgid "Allows executing stored routines."
+msgstr "Sallii talletettujen rutiinien suorittamisen."
+
+#: server_privileges.php:38 server_privileges.php:189
+#: server_privileges.php:509
+msgid "Allows importing data from and exporting data into files."
+msgstr "Sallii tietojen tuomisen ja viemisen."
+
+#: server_privileges.php:39 server_privileges.php:540
+msgid ""
+"Allows adding users and privileges without reloading the privilege tables."
+msgstr ""
+"Sallii käyttäjien ja käyttöoikeuksien lisäämisen lataamatta "
+"käyttöoikeustauluja uudestaan."
+
+#: server_privileges.php:40 server_privileges.php:191
+#: server_privileges.php:516
+msgid "Allows creating and dropping indexes."
+msgstr "Sallii indeksien luomisen ja poistamisen."
+
+#: server_privileges.php:41 server_privileges.php:181
+#: server_privileges.php:442 server_privileges.php:504
+msgid "Allows inserting and replacing data."
+msgstr "Sallii tietojen lisäämisen ja korvaamisen."
+
+#: server_privileges.php:42 server_privileges.php:196
+#: server_privileges.php:549
+msgid "Allows locking tables for the current thread."
+msgstr "Sallii taulujen lukitsemisen nykyiselle säikeelle."
+
+#: server_privileges.php:43 server_privileges.php:646
+#: server_privileges.php:648
+msgid "Limits the number of new connections the user may open per hour."
+msgstr "Rajoittaa käyttäjän tunnissa luomien uusien yhteyksien määrän."
+
+#: server_privileges.php:44 server_privileges.php:634
+#: server_privileges.php:636
+msgid "Limits the number of queries the user may send to the server per hour."
+msgstr ""
+"Rajoittaa käyttäjän tunnissa palvelimelle lähettämien kyselyjen määrän."
+
+#: server_privileges.php:45 server_privileges.php:640
+#: server_privileges.php:642
+msgid ""
+"Limits the number of commands that change any table or database the user may "
+"execute per hour."
+msgstr ""
+"Rajoittaa, kuinka monta monta kertaa käyttäjä saa suorittaa tauluihin tai "
+"tietokantoihin muutoksia tekeviä komentoja tunnin aikana."
+
+#: server_privileges.php:46 server_privileges.php:652
+#: server_privileges.php:654
+msgid "Limits the number of simultaneous connections the user may have."
+msgstr "Rajoittaa käyttäjän yhtäaikaisten yhteyksien määrän."
+
+#: server_privileges.php:47 server_privileges.php:188
+#: server_privileges.php:544
+msgid "Allows viewing processes of all users"
+msgstr "Sallii kaikkien käyttäjien prosessien näyttämisen"
+
+#: server_privileges.php:48 server_privileges.php:190
+#: server_privileges.php:448 server_privileges.php:550
+msgid "Has no effect in this MySQL version."
+msgstr "Ei vaikutusta tässä MySQL-palvelimen versiossa."
+
+#: server_privileges.php:49 server_privileges.php:186
+#: server_privileges.php:545
+msgid "Allows reloading server settings and flushing the server's caches."
+msgstr ""
+"Sallii palvelinasetusten uudelleenlataamisen ja palvelimen välimuistin "
+"tyhjentämisen."
+
+#: server_privileges.php:50 server_privileges.php:198
+#: server_privileges.php:552
+msgid "Allows the user to ask where the slaves / masters are."
+msgstr "Sallii käyttäjän kysyä, missä ali- ja pääpalvelimet sijaitsevat."
+
+#: server_privileges.php:51 server_privileges.php:197
+#: server_privileges.php:553
+msgid "Needed for the replication slaves."
+msgstr "Tarvitaan replikaatiota käyttävissä alipalvelimissa."
+
+#: server_privileges.php:52 server_privileges.php:180
+#: server_privileges.php:439 server_privileges.php:503
+msgid "Allows reading data."
+msgstr "Sallii tietojen lukemisen."
+
+#: server_privileges.php:53 server_privileges.php:193
+#: server_privileges.php:547
+msgid "Gives access to the complete list of databases."
+msgstr "Sallii koko tietokantaluettelon käytön."
+
+#: server_privileges.php:54 server_privileges.php:204
+#: server_privileges.php:206 server_privileges.php:519
+msgid "Allows performing SHOW CREATE VIEW queries."
+msgstr "Sallii SHOW CREATE VIEW -kyselyjen suorittamisen."
+
+#: server_privileges.php:55 server_privileges.php:187
+#: server_privileges.php:546
+msgid "Allows shutting down the server."
+msgstr "Sallii palvelimen sammuttamisen."
+
+#: server_privileges.php:56 server_privileges.php:194
+#: server_privileges.php:543
+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 ""
+"Sallii yhteydenmuotostamisen silloinkin kun yhteyksien enimmäismäärä on "
+"saavutettu; Tarvitaan useissa pääkäyttäjän toiminnoissa kuten globaalien "
+"muuttujien asettamisessa ja muitten käyttäjien säikeiden lopettamisessa."
+
+#: server_privileges.php:57 server_privileges.php:201
+#: server_privileges.php:535
+msgid "Allows creating and dropping triggers"
+msgstr "Sallii herättimien eli laukaisinten luomisen ja poistamisen"
+
+#: server_privileges.php:58 server_privileges.php:182
+#: server_privileges.php:445 server_privileges.php:505
+msgid "Allows changing data."
+msgstr "Sallii tietojen muuttamisen."
+
+#: server_privileges.php:59 server_privileges.php:260
+msgid "No privileges."
+msgstr "Ei käyttöoikeuksia."
+
+#: server_privileges.php:302 server_privileges.php:303
#, fuzzy
#| msgid "None"
msgctxt "None privileges"
msgid "None"
msgstr "Ei mitään"
-#: server_privileges.php:392 server_privileges.php:527
-#: server_privileges.php:1679 server_privileges.php:1685
+#: server_privileges.php:431 server_privileges.php:566
+#: server_privileges.php:1718 server_privileges.php:1724
msgid "Table-specific privileges"
msgstr "Taulukohtaiset käyttöoikeudet"
-#: server_privileges.php:393 server_privileges.php:535
-#: server_privileges.php:1501
+#: server_privileges.php:432 server_privileges.php:574
+#: server_privileges.php:1540
msgid " Note: MySQL privilege names are expressed in English "
msgstr " Huom! MySQL-käyttöoikeuksien nimet ovat englanniksi! "
-#: server_privileges.php:524 server_privileges.php:1500
+#: server_privileges.php:563 server_privileges.php:1539
msgid "Global privileges"
msgstr "Globaalit käyttöoikeudet"
-#: server_privileges.php:526 server_privileges.php:1679
+#: server_privileges.php:565 server_privileges.php:1718
msgid "Database-specific privileges"
msgstr "Tietokantakohtaiset käyttöoikeudet"
-#: server_privileges.php:571
+#: server_privileges.php:610
msgid "Administration"
msgstr "Hallinta"
-#: server_privileges.php:591
+#: server_privileges.php:630
msgid "Resource limits"
msgstr "Resurssirajoitukset"
-#: server_privileges.php:592
+#: server_privileges.php:631
msgid "Note: Setting these options to 0 (zero) removes the limit."
msgstr "Huom: Näiden valintojen asettaminen nollaksi (0) poistaa rajoituksen."
-#: server_privileges.php:669
+#: server_privileges.php:708
msgid "Login Information"
msgstr "Kirjautumistiedot"
-#: server_privileges.php:763
+#: server_privileges.php:802
msgid "Do not change the password"
msgstr "Älä vaihda salasanaa"
-#: server_privileges.php:804 server_privileges.php:2166
+#: server_privileges.php:843 server_privileges.php:2205
#, fuzzy
#| msgid "No user(s) found."
msgid "No user found."
msgstr "Käyttäjiä ei ole."
-#: server_privileges.php:848
+#: server_privileges.php:887
#, php-format
msgid "The user %s already exists!"
msgstr "Käyttäjä %s on jo olemassa!"
-#: server_privileges.php:931
+#: server_privileges.php:970
msgid "You have added a new user."
msgstr "Uusi käyttäjä lisätty."
-#: server_privileges.php:1152
+#: server_privileges.php:1191
#, php-format
msgid "You have updated the privileges for %s."
msgstr "Käyttäjän %s käyttöoikeudet on päivitetty."
-#: server_privileges.php:1176
+#: server_privileges.php:1215
#, php-format
msgid "You have revoked the privileges for %s"
msgstr "Käyttäjän %s käyttöoikeudet on poistettu"
-#: server_privileges.php:1212
+#: server_privileges.php:1251
#, php-format
msgid "The password for %s was changed successfully."
msgstr "Käyttäjän %s salasanan vaihto onnistui."
-#: server_privileges.php:1232
+#: server_privileges.php:1271
#, php-format
msgid "Deleting %s"
msgstr "Poistetaan: %s"
-#: server_privileges.php:1243
+#: server_privileges.php:1282
msgid "No users selected for deleting!"
msgstr "Yhtään käyttäjää ei valittu poistettavaksi!"
-#: server_privileges.php:1246
+#: server_privileges.php:1285
msgid "Reloading the privileges"
msgstr "Ladataan käyttöoikeuksia uudelleen"
-#: server_privileges.php:1261
+#: server_privileges.php:1300
msgid "The selected users have been deleted successfully."
msgstr "Valitsemiesi käyttäjien poisto onnistui."
-#: server_privileges.php:1296
+#: server_privileges.php:1335
msgid "The privileges were reloaded successfully."
msgstr "Käyttöoikeuksien uudelleenlataus onnistui."
-#: server_privileges.php:1324 server_privileges.php:1610
+#: server_privileges.php:1363 server_privileges.php:1649
msgid "Edit Privileges"
msgstr "Muokkaa käyttöoikeuksia"
-#: server_privileges.php:1333
+#: server_privileges.php:1372
msgid "Revoke"
msgstr "Pura käyttöoikeudet"
-#: server_privileges.php:1365
+#: server_privileges.php:1404
msgid "User overview"
msgstr "Käyttäjien yleiskatsaus"
-#: server_privileges.php:1502 server_privileges.php:1684
-#: server_privileges.php:2033
+#: server_privileges.php:1541 server_privileges.php:1723
+#: server_privileges.php:2072
msgid "Grant"
msgstr "Valtuudet (GRANT)"
-#: server_privileges.php:1521 server_privileges.php:2123
+#: server_privileges.php:1560 server_privileges.php:2162
msgid "Any"
msgstr "Mikä tahansa"
-#: server_privileges.php:1570 server_privileges.php:1594
-#: server_privileges.php:1988 server_privileges.php:2177
+#: server_privileges.php:1609 server_privileges.php:1633
+#: server_privileges.php:2027 server_privileges.php:2216
msgid "Add a new User"
msgstr "Lisää uusi käyttäjä"
-#: server_privileges.php:1575
+#: server_privileges.php:1614
msgid "Remove selected users"
msgstr "Poista valitut käyttäjät"
-#: server_privileges.php:1578
+#: server_privileges.php:1617
msgid "Revoke all active privileges from the users and delete them afterwards."
msgstr ""
"Pura kaikki käyttäjän aktiiviset käyttöoikeudet, ja poista ne sen jälkeen."
-#: server_privileges.php:1579 server_privileges.php:1580
-#: server_privileges.php:1581
+#: server_privileges.php:1618 server_privileges.php:1619
+#: server_privileges.php:1620
msgid "Drop the databases that have the same names as the users."
msgstr "Poista tietokannat, joilla on sama nimi kuin käyttäjillä."
-#: server_privileges.php:1597
+#: server_privileges.php:1636
#, php-format
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
@@ -5607,52 +4961,52 @@ msgstr ""
"käyttämistä käyttöoikeuksista, jos tauluihin on tehty muutoksia käsin. "
"Tällöin %skäyttöoikeudet on ladattava uudestaan%s ennen jatkamista."
-#: server_privileges.php:1645
+#: server_privileges.php:1684
msgid "The selected user was not found in the privilege table."
msgstr "Valittua käyttäjää ei löytynyt käyttöoikeustaulusta."
-#: server_privileges.php:1685
+#: server_privileges.php:1724
msgid "Column-specific privileges"
msgstr "Sarakekohtaiset käyttöoikeudet"
-#: server_privileges.php:1886
+#: server_privileges.php:1925
msgid "Add privileges on the following database"
msgstr "Lisää käyttöoikeudet seuraavaan tietokantaan"
-#: server_privileges.php:1904
+#: server_privileges.php:1943
msgid "Wildcards % and _ should be escaped with a \\ to use them literally"
msgstr ""
"Korvausmerkkien _ ja % eteen on lisättävä \\-merkki, jotta ne näkyisivät "
"oikein"
-#: server_privileges.php:1907
+#: server_privileges.php:1946
msgid "Add privileges on the following table"
msgstr "Lisää käyttöoikeudet seuraavaan tauluun"
-#: server_privileges.php:1964
+#: server_privileges.php:2003
msgid "Change Login Information / Copy User"
msgstr "Vaihda kirjautumistietoja / Kopioi käyttäjä"
-#: server_privileges.php:1967
+#: server_privileges.php:2006
msgid "Create a new user with the same privileges and ..."
msgstr "Luo uusi käyttäjä samoilla käyttöoikeuksilla ja ..."
-#: server_privileges.php:1969
+#: server_privileges.php:2008
msgid "... keep the old one."
msgstr "... säilytä vanha käyttäjä."
-#: server_privileges.php:1970
+#: server_privileges.php:2009
msgid " ... delete the old one from the user tables."
msgstr " ... poista vanha käyttäjä käyttäjätauluista."
-#: server_privileges.php:1971
+#: server_privileges.php:2010
msgid ""
" ... revoke all active privileges from the old one and delete it afterwards."
msgstr ""
" ... peruuta kaikki vanhan käyttäjän aktiiviset käyttöoikeudet ja tuhoa "
"käyttäjä sen jälkeen."
-#: server_privileges.php:1972
+#: server_privileges.php:2011
msgid ""
" ... delete the old one from the user tables and reload the privileges "
"afterwards."
@@ -5660,45 +5014,45 @@ msgstr ""
" ... poista vanha käyttäjä käyttäjätauluista ja lataa käyttöoikeudet sen "
"jälkeen uudelleen."
-#: server_privileges.php:1994
+#: server_privileges.php:2033
msgid "Database for user"
msgstr "Tietokanta käyttäjälle"
-#: server_privileges.php:1998
+#: server_privileges.php:2037
#, fuzzy
#| msgid "None"
msgctxt "Create none database for user"
msgid "None"
msgstr "Ei mitään"
-#: server_privileges.php:1999
+#: server_privileges.php:2038
msgid "Create database with same name and grant all privileges"
msgstr "Luo samanniminen tietokanta ja anna kaikki oikeudet"
-#: server_privileges.php:2000
+#: server_privileges.php:2039
msgid "Grant all privileges on wildcard name (username\\_%)"
msgstr ""
"Anna kaikki oikeudet tietokannalle käyttäen korvausmerkkiä (username\\_%)"
-#: server_privileges.php:2003
+#: server_privileges.php:2042
#, php-format
msgid "Grant all privileges on database "%s""
msgstr "Anna tietokannalle "%s" kaikki oikeudet"
-#: server_privileges.php:2026
+#: server_privileges.php:2065
#, php-format
msgid "Users having access to "%s""
msgstr "Käyttäjät, joilla on oikeus käyttää kohdetta "%s""
-#: server_privileges.php:2134
+#: server_privileges.php:2173
msgid "global"
msgstr "globaali"
-#: server_privileges.php:2136
+#: server_privileges.php:2175
msgid "database-specific"
msgstr "tietokantakohtainen"
-#: server_privileges.php:2138
+#: server_privileges.php:2177
msgid "wildcard"
msgstr "korvausmerkki"
@@ -5746,7 +5100,7 @@ msgstr "Isäntäpalvelimeksi on onnistuen vaihdettu %s"
msgid "This server is configured as master in a replication process."
msgstr "Tämä palvelin on määritelty replikaatioprosessin isäntäpalvelimeksi."
-#: server_replication.php:184 server_status.php:281
+#: server_replication.php:184 server_status.php:392
msgid "Show master status"
msgstr "Näytä isäntäpalvelimen tila"
@@ -5901,83 +5255,741 @@ msgstr ""
"Tätä palvelinta ei ole määritetty replikaatioprosessin alipalvelimeksi. "
"Haluatko määrittää sen?"
+#: server_status.php:40
+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 ""
+"Kertoo binäärilokin tilapäistä välimuistia käyttäneiden transaktioiden "
+"määrän sellaisissa tapauksissa, joissa transaktiot ovat ylittäneet "
+"\"binlog_cache_size\"-muuttujan arvon ja käyttäneet tilapäistiedostoa "
+"transaktiokyselyjen tallentamiseen."
+
+#: server_status.php:41
+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ä."
+
+#: server_status.php:42
+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 "
+"to increase the tmp_table_size value to cause temporary tables to be memory-"
+"based instead of disk-based."
+msgstr ""
+"Kertoo, kuinka monta palvelimen automaattisesti luomaa tilapäistaulua "
+"levyllä on. Jos Created_tmp_disk_tables-parametrin arvo on liian suuri, "
+"nosta tmp_table_size:n arvoa, jotta tilapäisiä tauluja säilytettäisiin "
+"muistissa eikä levyllä."
+
+#: server_status.php:43
+msgid "How many temporary files mysqld has created."
+msgstr "Mysqld-palvelun luomien tilapäistiedostojen määrä."
+
+#: server_status.php:44
+msgid ""
+"The number of in-memory temporary tables created automatically by the server "
+"while executing statements."
+msgstr ""
+"Kertoo, kuinka monta tilapäistaulua palvelin on automaattisesti luonut "
+"kyselyjä suorittaessaan."
+
+#: server_status.php:45
+msgid ""
+"The number of rows written with INSERT DELAYED for which some error occurred "
+"(probably duplicate key)."
+msgstr ""
+"Virheen aiheuttaneiden, INSERT DELAYED -kyselyllä kirjoitettujen rivien "
+"määrä (virheenä todennäköisesti päällekkäinen avain)."
+
#: server_status.php:46
+msgid ""
+"The number of INSERT DELAYED handler threads in use. Every different table "
+"on which one uses INSERT DELAYED gets its own thread."
+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ä."
+
+#: server_status.php:47
+msgid "The number of INSERT DELAYED rows written."
+msgstr "INSERT DELAYED -rivien kirjoituksia."
+
+#: server_status.php:48
+msgid "The number of executed FLUSH statements."
+msgstr "FLUSH-kyselyjä suoritettu."
+
+#: server_status.php:49
+msgid "The number of internal COMMIT statements."
+msgstr "Sisäisten COMMIT-kyselyjen määrä."
+
+#: server_status.php:50
+msgid "The number of times a row was deleted from a table."
+msgstr "Kertoo, kuinka monta kertaa taulusta on poistettu rivi."
+
+#: server_status.php:51
+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 ""
+"MySQL-palvelin saattaa kysyä NDB Cluster -tallennusmoottorilta, tunteeko se "
+"tietyn nimisen taulun. Tätä toimintoa kutsutaan selvittämiseksi (engl. "
+"discovery). Handler_discover ilmaisee selvitettyjen taulujen määrän."
+
+#: server_status.php:52
+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 ""
+"Kertoo, kuinka monta kertaa ensimmäistä kohtaa on luettu indeksistä. Jos "
+"tämän arvo on suuri, palvelin suorittaa runsaasti kokonaisia indeksien "
+"läpikäyntejä; näin käy esimerkiksi lauseessa SELECT col1 FROM foo, olettaen "
+"col1:sen olevan indeksoitu sarake."
+
+#: server_status.php:53
+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 ""
+"Kertoo, kuinka monta kertaa rivejä on luettu avaimen perusteella. Jos tämä "
+"on suuri, kyselyjen ja taulujen indeksointi suoritetaan oikein."
+
+#: server_status.php:54
+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 ""
+"Kertoo niiden pyyntöjen määrän, jotka lukevat seuraavan rivin "
+"avainjärjestyksessä. Tämä arvo kasvaa, jos haetaan indeksisarakkeita "
+"käyttämällä rajauksia tai jos suoritetaan indeksihaku."
+
+#: server_status.php:55
+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 ""
+"Kertoo niiden pyyntöjen määrän, jotka lukevat edellisen rivin "
+"avainjärjestyksessä. Tätä lukumenetelmää käytetään lähinnä ORDER BY ... DESC "
+"-kyselyllä optimoimiseen."
+
+#: server_status.php:56
+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 "
+"probably have a lot of queries that require MySQL to scan whole tables or "
+"you have joins that don't use keys properly."
+msgstr ""
+"Kertoo niiden pyyntöjen määrän, jotka lukevat rivin käyttäen kiinteää "
+"sijaintia. Tämä on suuri, jos tulostietojen lajittelua edellyttäviä kyselyjä "
+"suoritetaan paljon. Käytät ehkä runsaasti sellaisia kyselyjä, jotka "
+"pakottavat MySQL-palvelimen käymään läpi kaikki taulut, tai käytät "
+"liitoksia, jotka käyttävät avaimia virheellisesti."
+
+#: server_status.php:57
+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 "
+"tables are not properly indexed or that your queries are not written to take "
+"advantage of the indexes you have."
+msgstr ""
+"Kertoo, kuinka usein pyynnöillä on luettu seuraava rivi tiedostosta. Tämä on "
+"suuri, jos käydään läpi runsaasti kokonaisia tauluja. Tämä luku kertoo "
+"yleensä siitä, että tauluja ei ole indeksoitu hyvin, tai että kyselyjä ei "
+"ole kirjoitettu siten, että ne hyödyntäisivät luomiasi indeksejä."
+
+#: server_status.php:58
+msgid "The number of internal ROLLBACK statements."
+msgstr "Sisäisten ROLLBACK-kyselyjen määrä."
+
+#: server_status.php:59
+msgid "The number of requests to update a row in a table."
+msgstr "Taulun rivien päivityspyyntöjen määrä."
+
+#: server_status.php:60
+msgid "The number of requests to insert a row in a table."
+msgstr "Kertoo tauluihin lisättyjen rivien määrän."
+
+#: server_status.php:61
+msgid "The number of pages containing data (dirty or clean)."
+msgstr "Tietoa (epäsiistiä tai siistiä) sisältävien sivujen määrä"
+
+#: server_status.php:62
+msgid "The number of pages currently dirty."
+msgstr "Tällä hetkellä epäsiistinä olevien sivujen määrä."
+
+#: server_status.php:63
+msgid "The number of buffer pool pages that have been requested to be flushed."
+msgstr "Siistittäviksi pyydettyjen, puskurivarannossa olevien sivujen määrä."
+
+#: server_status.php:64
+msgid "The number of free pages."
+msgstr "Vapaiden sivujen määrä."
+
+#: server_status.php:65
+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 ""
+"InnoDB-puskurivarannon lukittujen sivujen määrä. Nämä ovat sivuja, joita "
+"parhaillaan luetaan tai kirjoitetaan tai joita ei voida poistaa tai joiden "
+"välimuistia ei voida tyhjentää syystä tai toisesta."
+
+#: server_status.php:66
+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 "
+"be calculated as Innodb_buffer_pool_pages_total - "
+"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data."
+msgstr ""
+"Kertoo niiden sivujen määrän, jotka ovat käytössä administratiivisen "
+"ylijäämän, kuten rivinlukitusten tai mukautuvien salausindeksien, varaamisen "
+"takia. Tämä arvo voidaan laskea näinkin: Innodb_buffer_pool_pages_total - "
+"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data."
+
+#: server_status.php:67
+msgid "Total size of buffer pool, in pages."
+msgstr "Puskurivarannon kokonaiskoko sivuina."
+
+#: server_status.php:68
+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 ""
+"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."
+
+#: server_status.php:69
+msgid ""
+"The number of sequential read-aheads InnoDB initiated. This happens when "
+"InnoDB does a sequential full table scan."
+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ä."
+
+#: server_status.php:70
+msgid "The number of logical read requests InnoDB has done."
+msgstr "InnoDB:n suorittamien loogisten lukupyyntöjen määrä."
+
+#: server_status.php:71
+msgid ""
+"The number of logical reads that InnoDB could not satisfy from buffer pool "
+"and had to do a single-page read."
+msgstr ""
+"Sellaisten loogisten lukujen määrä, joita InnoDB ei voinut toteuttaa "
+"puskurivarannon avulla vaan joutui lukemaan yksittäisen sivun."
+
+#: server_status.php:72
+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 "
+"available, it's necessary to wait for pages to be flushed first. This "
+"counter counts instances of these waits. If the buffer pool size was set "
+"properly, this value should be small."
+msgstr ""
+"Yleensä InnoDB:n puskurivarannon kirjoituspyynnöt suoritetaan taustalla. Jos "
+"on kuitenkin tarve lukea tai luoda sivu silloin kun tyhjiä sivuja ei ole "
+"käytettävissä, sivujen tyhjentymistä joudutaan odottamaan. Tämä laskuri "
+"kertoo tällaisten odotusten määrän. Jos puskurivarannon koko on asetettu "
+"sopivaksi, tämän arvon pitäisi olla alhainen."
+
+#: server_status.php:73
+msgid "The number writes done to the InnoDB buffer pool."
+msgstr "InnoDB:n puskurivarannon kirjoituspyyntöjen määrä."
+
+#: server_status.php:74
+msgid "The number of fsync() operations so far."
+msgstr "Fsync()-toimenpiteitä tähän mennessä."
+
+#: server_status.php:75
+msgid "The current number of pending fsync() operations."
+msgstr "Tällä hetkellä käynnissä olevien fsync()-toimenpiteiden määrä."
+
+#: server_status.php:76
+msgid "The current number of pending reads."
+msgstr "Tällä hetkellä käynnissä olevien lukutoimenpiteiden määrä."
+
+#: server_status.php:77
+msgid "The current number of pending writes."
+msgstr "Tällä hetkellä käynnissä olevien kirjoitustoimenpiteiden määrä."
+
+#: server_status.php:78
+msgid "The amount of data read so far, in bytes."
+msgstr "Tähän mennessä luetun tiedon määrä tavuina."
+
+#: server_status.php:79
+msgid "The total number of data reads."
+msgstr "Kertoo, kuinka monta kertaa tietoja on luettu kaikkiaan."
+
+#: server_status.php:80
+msgid "The total number of data writes."
+msgstr "Kertoo, kuinka monta kertaa tietoja on kirjoitettu kaikkiaan."
+
+#: server_status.php:81
+msgid "The amount of data written so far, in bytes."
+msgstr "Kertoo, kuinka paljon on tähän mennessä tietoja kirjoitettu (tavuina)."
+
+#: server_status.php:82
+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ä."
+
+#: server_status.php:83
+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ä."
+
+#: server_status.php:84
+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 ""
+"Liian pienestä lokipuskurista johtuneiden odotusten määrä, jolloin puskurin "
+"tyhjentymistä jouduttiin odottamaan ennen jatkamista."
+
+#: server_status.php:85
+msgid "The number of log write requests."
+msgstr "Kertoo, kuinka monta kertaa lokitiedostoon on pyydetty kirjoittaa."
+
+#: server_status.php:86
+msgid "The number of physical writes to the log file."
+msgstr "Kertoo, kuinka monta kertaa lokitiedostoon on fyysisesti kirjoitettu."
+
+#: server_status.php:87
+msgid "The number of fsync() writes done to the log file."
+msgstr "Lokitiedostojen fsync()-kirjoitusten määrä."
+
+#: server_status.php:88
+msgid "The number of pending log file fsyncs."
+msgstr "Lokitiedoston avointen fsync-synkronointien määrä."
+
+#: server_status.php:89
+msgid "Pending log file writes."
+msgstr "Avoimet lokitiedostokirjoitukset."
+
+#: server_status.php:90
+msgid "The number of bytes written to the log file."
+msgstr "Lokitiedostoon kirjoitettujen tavujen määrä."
+
+#: server_status.php:91
+msgid "The number of pages created."
+msgstr "Luotujen sivujen määrä."
+
+#: server_status.php:92
+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 ""
+"InnoDB-sivun sisäänohjelmoitu koko (oletusarvoisesti se on 16 kt). Useita "
+"arvoja lasketaan sivuina; sivukoon avulla voidaan helposti laskea sivujen "
+"koko tavuina."
+
+#: server_status.php:93
+msgid "The number of pages read."
+msgstr "Luettujen rivien määrä."
+
+#: server_status.php:94
+msgid "The number of pages written."
+msgstr "Kirjoitettujen sivujen määrä."
+
+#: server_status.php:95
+msgid "The number of row locks currently being waited for."
+msgstr "Tällä hetkellä odotettavien rivilukitusten määrä."
+
+#: server_status.php:96
+msgid "The average time to acquire a row lock, in milliseconds."
+msgstr ""
+"Rivilukituksen valmistumiseen kuluva aika keskimäärin, millisekunteina."
+
+#: server_status.php:97
+msgid "The total time spent in acquiring row locks, in milliseconds."
+msgstr "Rivilukitusten valmistumiseen kuluva aika yhteensä, millisekunteina."
+
+#: server_status.php:98
+msgid "The maximum time to acquire a row lock, in milliseconds."
+msgstr "Rivilukituksen noutamiseen kulunut aika enimmillään, millisekunteina."
+
+#: server_status.php:99
+msgid "The number of times a row lock had to be waited for."
+msgstr "Kertoo, kuinka monta kertaa rivilukitusta on jouduttu odottamaan."
+
+#: server_status.php:100
+msgid "The number of rows deleted from InnoDB tables."
+msgstr "InnoDB-tauluista poistettujen rivien määrä."
+
+#: server_status.php:101
+msgid "The number of rows inserted in InnoDB tables."
+msgstr "InnoDB-tauluihin lisättyjen rivien määrä."
+
+#: server_status.php:102
+msgid "The number of rows read from InnoDB tables."
+msgstr "InnoDB-taulusta luettujen rivien määrä."
+
+#: server_status.php:103
+msgid "The number of rows updated in InnoDB tables."
+msgstr "InnoDB-taulun päivitettyjen rivien määrä."
+
+#: server_status.php:104
+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 ""
+"Niiden avainvälimuistissa sijaitsevien avainlohkojen määrä, joihin on tehty "
+"muutoksia, mutta joita ei vielä ole tallennettu levylle. Tämä toiminto "
+"tunnetaan yleisesti nimellä Not_flushed_key_blocks."
+
+#: server_status.php:105
+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 ""
+"Avainvälimuistissa sijaitsevien käyttämättömien lohkojen määrä. Tämän arvon "
+"avulla voi määrittää, kuinka paljon avainvälimuistia halutaan olevan "
+"käytössä."
+
+#: server_status.php:106
+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."
+
+#: server_status.php:107
+msgid "The number of requests to read a key block from the cache."
+msgstr ""
+"Kertoo, kuinka monta pyyntöä on suoritettu avainlohkon hakemiseksi "
+"välimuistista."
+
+#: server_status.php:108
+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 ""
+"Kertoo, kuinka monta kertaa levyltä on fyysisesti luettu avainlohkoja. Jos "
+"Key_reads-muuttujan arvo on suuri, key_buffer_size-muuttujaan on ehkä "
+"asetettu liian alhainen arvo. Välimuistin käyttötahti voidaan laskea "
+"lausekkeella Key_reads / Key_read_requests."
+
+#: server_status.php:109
+msgid "The number of requests to write a key block to the cache."
+msgstr "Kertoo, kuinka monta kertaa välimuistiin on kirjoitettu avainlohko."
+
+#: server_status.php:110
+msgid "The number of physical writes of a key block to disk."
+msgstr ""
+"Kertoo, kuinka monta kertaa levylle on fyysisesti kirjoitettu avainlohko."
+
+#: server_status.php:111
+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 ""
+"Kyselynoptimoijan laskeman, viimeksi kootun kyselyn kokonaiskulut. "
+"Hyödyllinen suunniteltaessa erilaisia kyselyvaihtoehtoja samaa "
+"kyselytapausta varten. Oletusarvo 0 tarkoittaa, että yhtään kyselyä ei ole "
+"vielä koottu."
+
+#: server_status.php:112
+msgid "The number of rows waiting to be written in INSERT DELAYED queues."
+msgstr ""
+"Kertoo, kuinka monta riviä INSERT DELAYED -jonoissa odottaa kirjoittamista."
+
+#: server_status.php:113
+msgid ""
+"The number of tables that have been opened. If opened tables is big, your "
+"table cache value is probably too small."
+msgstr ""
+"Avattujen taulujen määrä. Jos määrä on suuri, tauluvälimuistin arvo saattaa "
+"olla liian alhainen."
+
+#: server_status.php:114
+msgid "The number of files that are open."
+msgstr "Avoinna olevien tiedostojen määrä."
+
+#: server_status.php:115
+msgid "The number of streams that are open (used mainly for logging)."
+msgstr ""
+"Avoinna olevien tietovirtojen määrä (käytetään pääasiassa kirjauksessa)."
+
+#: server_status.php:116
+msgid "The number of tables that are open."
+msgstr "Avoinna olevien taulujen määrä."
+
+#: server_status.php:117
+msgid "The number of free memory blocks in query cache."
+msgstr "Vapaitten muistilohkojen määrä kyselyvälimuistissa."
+
+#: server_status.php:118
+msgid "The amount of free memory for query cache."
+msgstr "Kyselyvälimuistin vapaan muistin määrä."
+
+#: server_status.php:119
+msgid "The number of cache hits."
+msgstr "Välimuistiosumien määrä."
+
+#: server_status.php:120
+msgid "The number of queries added to the cache."
+msgstr "Välimuistiin lisättyjen kyselyjen määrä."
+
+#: server_status.php:121
+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 "
+"cache size. The query cache uses a least recently used (LRU) strategy to "
+"decide which queries to remove from the cache."
+msgstr ""
+"Niiden kyselyjen määrä, jotka on poistettu välimuistista muistin "
+"vapauttamiseksi, jotta uusia kyselyjä voitaisiin tallentaa välimuistiin. "
+"Tämän tiedon avulla kyselyvälimuistin koon voi asettaa sopivaksi. "
+"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\")."
+
+#: server_status.php:122
+msgid ""
+"The number of non-cached queries (not cachable, or not cached due to the "
+"query_cache_type setting)."
+msgstr ""
+"Niiden kyselyjen määrä, joita ei ole tallennettu välimuistiin (ei ole voitu "
+"tallentaa välimuistiin tai ei muuten vain ole tallennettu sinne "
+"query_cache_type-asetuksen takia)."
+
+#: server_status.php:123
+msgid "The number of queries registered in the cache."
+msgstr "Rekisteröityjen kyselyjen määrä välimuistissa."
+
+#: server_status.php:124
+msgid "The total number of blocks in the query cache."
+msgstr "Lohkojen kokonaismäärä kyselyvälimuistissa."
+
+#: server_status.php:125
+msgctxt "$strShowStatusReset"
+msgid "Reset"
+msgstr "Nollaa"
+
+#: server_status.php:126
+msgid "The status of failsafe replication (not yet implemented)."
+msgstr "Replikaation vikasietotila (ei vielä toteutettu)."
+
+#: server_status.php:127
+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 ""
+"Kertoo, kuinka moni liitos ei käytä indeksejä. Jos tämä arvo ei ole 0, "
+"taulujen indeksit olisi hyvä tarkistaa tarkkaan."
+
+#: server_status.php:128
+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."
+
+#: server_status.php:129
+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 ""
+"Niiden avaimittomien liitosten määrä, jotka varmistavat avaimien käytön joka "
+"rivin jälkeen. (Jos tämä ei ole 0, taulujen indeksit tulisi tarkistaa "
+"huolella.)"
+
+#: server_status.php:130
+msgid ""
+"The number of joins that used ranges on the first table. (It's normally not "
+"critical even if this is big.)"
+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.)"
+
+#: server_status.php:131
+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."
+
+#: server_status.php:132
+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ä."
+
+#: server_status.php:133
+msgid ""
+"Total (since startup) number of times the replication slave SQL thread has "
+"retried transactions."
+msgstr ""
+"Kertoo, kuinka usein replikaation SQL-alisäie on käynnistyksestään lähtien "
+"kaikkiaan uudelleen yrittänyt transkatioita."
+
+#: server_status.php:134
+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."
+
+#: server_status.php:135
+msgid ""
+"The number of threads that have taken more than slow_launch_time seconds to "
+"create."
+msgstr ""
+"Niiden säikeiden määrä, joiden luomiseen on kulunut aikaa enemmän kuin "
+"slow_launch_time sekuntia."
+
+#: server_status.php:136
+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."
+
+#: server_status.php:137
+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 ""
+"Lajittelualgoritmiin tarvittavien lomitusten määrä. Jos tämä arvo on suuri, "
+"sort_buffer-muuttujan arvoa voi suurentaa."
+
+#: server_status.php:138
+msgid "The number of sorts that were done with ranges."
+msgstr "Arvolillä suoritettujen lajittelutoimenpiteiden määrä."
+
+#: server_status.php:139
+msgid "The number of sorted rows."
+msgstr "Lajiteltujen rivien määrä."
+
+#: server_status.php:140
+msgid "The number of sorts that were done by scanning the table."
+msgstr ""
+"Niiden lajittelutoimenpiteiden määrä, jotka on suoritettu lukemalla taulu "
+"läpi."
+
+#: server_status.php:141
+msgid "The number of times that a table lock was acquired immediately."
+msgstr "Kertoo, kuinka usein taulu on saatu lukittua heti."
+
+#: server_status.php:142
+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 "
+"should first optimize your queries, and then either split your table or "
+"tables or use replication."
+msgstr ""
+"Kertoo, kuinka usein taulua ei ole saatu heti lukittua, ja on siten jouduttu "
+"odottamaan. Jos tämä arvo on suuri, ja suorituskyvyn kanssa on ongelmia, on "
+"hyvä ensin optimoida kyselyjä ja sitten joko jakaa taulu useampaan osaan tai "
+"käyttää hyödyksi replikaatiota."
+
+#: server_status.php:143
+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 ""
+"Säievälimuistissa sijaitsevien säikeiden määrä. Välimuistin käyttötahti "
+"voidaan laskea täten kaavalla Threads_created / yhteyksien lkm. Jos tämä "
+"arvo on punainen, thread_cache_size-muuttujan arvoa tulisi nostaa."
+
+#: server_status.php:144
+msgid "The number of currently open connections."
+msgstr "Tällä hetkellä avoinna olevien yhteyksien määrä."
+
+#: server_status.php:145
+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 "
+"doesn't give a notable performance improvement if you have a good thread "
+"implementation.)"
+msgstr ""
+"Yhteyksien käsittelyä varten luotujen säikeiden määrä. Jos Threads_created "
+"on suuri, thread_cache_size-muuttujan arvoa kannattaa nostaa. (Mikäli "
+"säikeet on toteutettu hyvin, tällä ei ole kovin suurta vaikutusta "
+"suorituskykyyn.)"
+
+#: server_status.php:146
+msgid "The number of threads that are not sleeping."
+msgstr "Hereillä olevien säikeiden määrä."
+
+#: server_status.php:157
msgid "Runtime Information"
msgstr "Ajonaikaiset tiedot"
-#: server_status.php:250
+#: server_status.php:361
msgid "Handler"
msgstr "Käsittelijä"
-#: server_status.php:251
+#: server_status.php:362
msgid "Query cache"
msgstr "Kyselyvälimuisti"
-#: server_status.php:252
+#: server_status.php:363
msgid "Threads"
msgstr "Säikeet"
-#: server_status.php:254
+#: server_status.php:365
msgid "Temporary data"
msgstr "Väliaikaista tietoa"
-#: server_status.php:255
+#: server_status.php:366
msgid "Delayed inserts"
msgstr "Viivästetyt lisäyslauseet"
-#: server_status.php:256
+#: server_status.php:367
msgid "Key cache"
msgstr "Avainvälimuisti"
-#: server_status.php:257
+#: server_status.php:368
msgid "Joins"
msgstr "Liitokset"
-#: server_status.php:259
+#: server_status.php:370
msgid "Sorting"
msgstr "Lajittelu"
-#: server_status.php:261
+#: server_status.php:372
msgid "Transaction coordinator"
msgstr "Transaktion koordinaattori"
-#: server_status.php:271
+#: server_status.php:382
msgid "Flush (close) all tables"
msgstr "Tyhjennä (sulje) kaikki taulut"
-#: server_status.php:273
+#: server_status.php:384
msgid "Show open tables"
msgstr "Näytä avoimet taulut"
-#: server_status.php:278
+#: server_status.php:389
msgid "Show slave hosts"
msgstr "Näytä alipalvelimet"
-#: server_status.php:284
+#: server_status.php:395
msgid "Show slave status"
msgstr "Näytä alipalvelimen tila"
-#: server_status.php:289
+#: server_status.php:400
msgid "Flush query cache"
msgstr "Tyhjennä kyselymuisti"
-#: server_status.php:294
+#: server_status.php:405
msgid "Show processes"
msgstr "Näytä prosessit"
-#: server_status.php:344
+#: server_status.php:455
#, fuzzy
#| msgid "Reset"
msgctxt "for Show status"
msgid "Reset"
msgstr "Nollaa"
-#: server_status.php:350
+#: server_status.php:461
#, php-format
msgid "This MySQL server has been running for %s. It started up on %s."
msgstr "Tämä MySQL-palvelin on ollut käynnissä %s. Se käynnistettiin %s."
-#: server_status.php:360
+#: server_status.php:471
#, fuzzy
#| msgid "This server is configured as master in a replication process."
msgid ""
@@ -5985,19 +5997,19 @@ msgid ""
"b> process."
msgstr "Tämä palvelin on määritelty replikaatioprosessin isäntäpalvelimeksi."
-#: server_status.php:362
+#: server_status.php:473
#, fuzzy
#| msgid "This server is configured as master in a replication process."
msgid "This MySQL server works as master in replication process."
msgstr "Tämä palvelin on määritelty replikaatioprosessin isäntäpalvelimeksi."
-#: server_status.php:364
+#: server_status.php:475
#, fuzzy
#| msgid "This server is configured as master in a replication process."
msgid "This MySQL server works as slave in replication process."
msgstr "Tämä palvelin on määritelty replikaatioprosessin isäntäpalvelimeksi."
-#: server_status.php:366
+#: server_status.php:477
#, fuzzy
#| msgid ""
#| "This MySQL server works as %s in replication process. For further "
@@ -6011,7 +6023,7 @@ msgstr ""
"palvelimen replikaatiotilasta lisää tietoja kohdasta Replikaatio."
-#: server_status.php:383
+#: server_status.php:494
msgid ""
"Server traffic: These tables show the network traffic statistics of "
"this MySQL server since its startup."
@@ -6019,11 +6031,11 @@ msgstr ""
"Palvelinliikenne: Nämä taulukot näyttävät tämän MySQL-palvelimen "
"verkkoliikennetilastot käynnistyksestä lähtien."
-#: server_status.php:388
+#: server_status.php:499
msgid "Traffic"
msgstr "Liikenne"
-#: server_status.php:388
+#: server_status.php:499
msgid ""
"On a busy server, the byte counters may overrun, so those statistics as "
"reported by the MySQL server may be incorrect."
@@ -6031,36 +6043,36 @@ msgstr ""
"Ruuhkaisten palvelinten tavulaskurit saattavat ylivuotaa, joten MySQL-"
"palvelimen ilmoittamat tilastotiedot saattavat olla virheellisiä."
-#: server_status.php:389 server_status.php:434 server_status.php:497
-#: server_status.php:555
+#: server_status.php:500 server_status.php:545 server_status.php:608
+#: server_status.php:666
msgid "per hour"
msgstr "tunnissa"
-#: server_status.php:394
+#: server_status.php:505
msgid "Received"
msgstr "Vastaanotettu"
-#: server_status.php:404
+#: server_status.php:515
msgid "Sent"
msgstr "Lähetetty"
-#: server_status.php:433
+#: server_status.php:544
msgid "Connections"
msgstr "Yhteydet"
-#: server_status.php:440
+#: server_status.php:551
msgid "max. concurrent connections"
msgstr "Enim. yhtäaikaisia yhteyksiä"
-#: server_status.php:447
+#: server_status.php:558
msgid "Failed attempts"
msgstr "Epäonnistuneet yritykset"
-#: server_status.php:461
+#: server_status.php:572
msgid "Aborted"
msgstr "Keskeytetty"
-#: server_status.php:490
+#: server_status.php:601
#, php-format
msgid ""
"Query statistics: Since its startup, %s queries have been sent to the "
@@ -6069,19 +6081,19 @@ msgstr ""
"Kyselytilastot: Tälle palvelimelle on lähetetty viime käynnistyksestä "
"lähtien %s kyselyä."
-#: server_status.php:498
+#: server_status.php:609
msgid "per minute"
msgstr "minuutissa"
-#: server_status.php:499
+#: server_status.php:610
msgid "per second"
msgstr "sekunnissa"
-#: server_status.php:554
+#: server_status.php:665
msgid "Query type"
msgstr "Kyselyn tyyppi"
-#: server_status.php:721
+#: server_status.php:832
msgid "Replication status"
msgstr "Replikaation tila"
diff --git a/po/fr.po b/po/fr.po
index e6d08248c..7e169781b 100755
--- a/po/fr.po
+++ b/po/fr.po
@@ -3,23 +3,23 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-06-04 16:07-0400\n"
-"PO-Revision-Date: 2010-06-01 16:27+0200\n"
+"POT-Creation-Date: 2010-06-08 12:32-0400\n"
+"PO-Revision-Date: 2010-06-08 18:57+0200\n"
"Last-Translator: Marc \n"
"Language-Team: french \n"
+"Language: fr\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: fr\n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
"X-Generator: Pootle 2.0.1\n"
#: browse_foreigners.php:38 browse_foreigners.php:59
-#: libraries/display_tbl.lib.php:417 server_privileges.php:1475
+#: libraries/display_tbl.lib.php:417 server_privileges.php:1514
msgid "Show all"
msgstr "Tout afficher"
-#: browse_foreigners.php:82 libraries/common.lib.php:2304
+#: browse_foreigners.php:82 libraries/common.lib.php:2313
#: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:394
#: libraries/export/pdf.php:147 pdf_schema.php:283 pdf_schema.php:1123
#: pdf_schema.php:1139
@@ -38,8 +38,8 @@ msgstr ""
#: browse_foreigners.php:150 db_structure.php:79 db_structure.php:80
#: db_structure.php:91 db_structure.php:93 db_structure.php:104
-#: db_structure.php:106 libraries/common.lib.php:2822
-#: libraries/common.lib.php:2829 libraries/db_links.inc.php:75
+#: db_structure.php:106 libraries/common.lib.php:2831
+#: libraries/common.lib.php:2838 libraries/db_links.inc.php:75
#: libraries/tbl_links.inc.php:63
msgid "Search"
msgstr "Rechercher"
@@ -49,7 +49,7 @@ msgstr "Rechercher"
#: db_structure.php:567 js/messages.php:48 libraries/Config.class.php:1046
#: libraries/Theme_Manager.class.php:311
#: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719
-#: libraries/common.lib.php:1333 libraries/common.lib.php:2279
+#: libraries/common.lib.php:1335 libraries/common.lib.php:2288
#: libraries/display_change_password.lib.php:82
#: libraries/display_create_table.lib.php:63
#: libraries/display_export.lib.php:275 libraries/display_import.lib.php:276
@@ -60,9 +60,9 @@ msgstr "Rechercher"
#: libraries/sql_query_form.lib.php:552 libraries/tbl_properties.inc.php:782
#: main.php:128 navigation.php:237 pdf_pages.php:292 pdf_pages.php:328
#: pdf_pages.php:530 pmd_pdf.php:116 server_binlog.php:142
-#: server_privileges.php:625 server_privileges.php:1585
-#: server_privileges.php:1932 server_privileges.php:1979
-#: server_privileges.php:2018 server_replication.php:235
+#: server_privileges.php:664 server_privileges.php:1624
+#: server_privileges.php:1971 server_privileges.php:2018
+#: server_privileges.php:2057 server_replication.php:235
#: server_replication.php:318 server_replication.php:341
#: server_synchronize.php:1209 tbl_change.php:330 tbl_change.php:1174
#: tbl_change.php:1211 tbl_indexes.php:254 tbl_operations.php:265
@@ -80,7 +80,7 @@ msgstr "Nom de l'index"
#: browse_foreigners.php:169 browse_foreigners.php:171
#: server_collations.php:55 server_collations.php:67 server_engines.php:59
-#: server_status.php:628
+#: server_status.php:739
msgid "Description"
msgstr "Description"
@@ -119,7 +119,7 @@ msgstr "Colonne"
#: libraries/db_structure.lib.php:60 libraries/export/htmlword.php:245
#: libraries/export/latex.php:360 libraries/export/odt.php:297
#: libraries/export/texytext.php:234 libraries/tbl_properties.inc.php:100
-#: pdf_schema.php:1263 pdf_schema.php:1284 server_privileges.php:2031
+#: pdf_schema.php:1263 pdf_schema.php:1284 server_privileges.php:2070
#: tbl_change.php:287 tbl_change.php:314 tbl_printview.php:143
#: tbl_printview.php:313 tbl_select.php:136 tbl_structure.php:178
#: tbl_structure.php:659 tbl_tracking.php:274 tbl_tracking.php:321
@@ -163,9 +163,9 @@ msgstr "Commentaires"
#: libraries/Index.class.php:386 libraries/export/htmlword.php:322
#: libraries/export/latex.php:430 libraries/export/odt.php:368
#: libraries/export/texytext.php:311 libraries/mult_submits.inc.php:263
-#: pdf_schema.php:1344 server_privileges.php:1529 server_privileges.php:1540
-#: server_privileges.php:1850 server_privileges.php:1855
-#: server_privileges.php:2148 sql.php:132 sql.php:194 tbl_printview.php:229
+#: pdf_schema.php:1344 server_privileges.php:1568 server_privileges.php:1579
+#: server_privileges.php:1889 server_privileges.php:1894
+#: server_privileges.php:2187 sql.php:132 sql.php:194 tbl_printview.php:229
#: tbl_structure.php:350 tbl_tracking.php:337 tbl_tracking.php:342
msgid "No"
msgstr "Non"
@@ -179,9 +179,9 @@ msgstr "Non"
#: libraries/mult_submits.inc.php:101 libraries/mult_submits.inc.php:106
#: libraries/mult_submits.inc.php:111 libraries/mult_submits.inc.php:262
#: libraries/mult_submits.inc.php:273 pdf_schema.php:1344
-#: server_databases.php:64 server_privileges.php:1526
-#: server_privileges.php:1540 server_privileges.php:1850
-#: server_privileges.php:1853 server_privileges.php:2148 sql.php:193
+#: server_databases.php:64 server_privileges.php:1565
+#: server_privileges.php:1579 server_privileges.php:1889
+#: server_privileges.php:1892 server_privileges.php:2187 sql.php:193
#: tbl_printview.php:229 tbl_structure.php:40 tbl_structure.php:350
#: tbl_tracking.php:335 tbl_tracking.php:340
msgid "Yes"
@@ -278,7 +278,7 @@ msgstr "Aller à la base de données copiée"
msgid "BLOB Repository"
msgstr "Dépôt BLOB"
-#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1350
+#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1352
#: libraries/server_links.inc.php:49 server_processlist.php:59
#: tbl_tracking.php:596 test/theme.php:101
msgid "Status"
@@ -335,8 +335,8 @@ msgstr "Préparer le schéma en PDF"
#: db_printview.php:104 db_tracking.php:72 db_tracking.php:157
#: libraries/db_structure.lib.php:46 libraries/export/xml.php:328
-#: libraries/header.inc.php:126 pdf_pages.php:424 server_privileges.php:1626
-#: server_privileges.php:1682 server_privileges.php:1946
+#: libraries/header.inc.php:126 pdf_pages.php:424 server_privileges.php:1665
+#: server_privileges.php:1721 server_privileges.php:1985
#: server_synchronize.php:423 server_synchronize.php:866 tbl_tracking.php:592
#: test/theme.php:75
msgid "Table"
@@ -436,7 +436,7 @@ msgstr "Effacer"
#: db_qbe.php:370 db_qbe.php:451 db_qbe.php:522 db_qbe.php:553
#: libraries/display_import.lib.php:166 libraries/tbl_properties.inc.php:779
-#: server_privileges.php:258 tbl_change.php:1031 tbl_indexes.php:250
+#: server_privileges.php:297 tbl_change.php:1031 tbl_indexes.php:250
#: tbl_select.php:288
msgid "Or"
msgstr "Ou"
@@ -466,7 +466,7 @@ msgstr "Utiliser les tables"
msgid "SQL query on database %s:"
msgstr "Requête SQL sur la base %s:"
-#: db_qbe.php:934 libraries/common.lib.php:1223
+#: db_qbe.php:934 libraries/common.lib.php:1225
msgid "Submit Query"
msgstr "Exécuter la requête"
@@ -505,7 +505,7 @@ msgstr "%s occurence(s) dans la table %s"
#: db_search.php:267 db_structure.php:77 db_structure.php:78
#: db_structure.php:90 db_structure.php:92 db_structure.php:103
-#: db_structure.php:105 libraries/common.lib.php:2824
+#: db_structure.php:105 libraries/common.lib.php:2833
#: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50
#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:467
msgid "Browse"
@@ -550,26 +550,26 @@ msgstr "Dans la colonne:"
#: db_structure.php:81 db_structure.php:82 db_structure.php:94
#: db_structure.php:95 db_structure.php:107 db_structure.php:108
-#: libraries/common.lib.php:2823 libraries/sql_query_form.lib.php:334
+#: libraries/common.lib.php:2832 libraries/sql_query_form.lib.php:334
#: libraries/sql_query_form.lib.php:337 libraries/tbl_links.inc.php:76
msgid "Insert"
msgstr "Insérer"
#: db_structure.php:83 db_structure.php:96 db_structure.php:109
-#: libraries/common.lib.php:2820 libraries/common.lib.php:2827
+#: libraries/common.lib.php:2829 libraries/common.lib.php:2836
#: libraries/db_links.inc.php:63 libraries/export/htmlword.php:23
#: libraries/export/latex.php:33 libraries/export/latex.php:337
#: libraries/export/odt.php:32 libraries/export/sql.php:60
#: libraries/export/texytext.php:23 libraries/import.lib.php:1104
#: libraries/tbl_links.inc.php:56 pmd_general.php:134
-#: server_privileges.php:554 server_replication.php:315 tbl_tracking.php:269
+#: server_privileges.php:593 server_replication.php:315 tbl_tracking.php:269
msgid "Structure"
msgstr "Structure"
#: db_structure.php:84 db_structure.php:85 db_structure.php:97
#: db_structure.php:98 db_structure.php:110 db_structure.php:111
#: db_structure.php:545 db_structure.php:546 db_tracking.php:91
-#: libraries/Index.class.php:483 libraries/common.lib.php:1654
+#: libraries/Index.class.php:483 libraries/common.lib.php:1656
#: libraries/db_links.inc.php:100 libraries/mult_submits.inc.php:36
#: libraries/mult_submits.inc.php:73 libraries/tbl_links.inc.php:127
#: server_databases.php:352 tbl_structure.php:27 tbl_structure.php:151
@@ -579,7 +579,7 @@ msgstr "Supprimer"
#: db_structure.php:86 db_structure.php:87 db_structure.php:99
#: db_structure.php:100 db_structure.php:112 db_structure.php:113
-#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1653
+#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1655
#: libraries/mult_submits.inc.php:39 libraries/tbl_links.inc.php:105
msgid "Empty"
msgstr "Vider"
@@ -623,7 +623,7 @@ msgstr "Vue"
#: db_structure.php:485 libraries/db_structure.lib.php:49
#: libraries/server_links.inc.php:70 server_replication.php:33
-#: server_replication.php:164 server_status.php:258
+#: server_replication.php:164 server_status.php:369
msgid "Replication"
msgstr "Réplication"
@@ -639,20 +639,20 @@ msgstr "Sur ce serveur MySQL, le moteur de stockage par défaut est %s."
#: db_structure.php:524 db_structure.php:541 db_structure.php:542
#: libraries/display_tbl.lib.php:2081 libraries/display_tbl.lib.php:2086
#: libraries/mult_submits.inc.php:16 server_databases.php:346
-#: server_databases.php:351 server_privileges.php:1557 tbl_structure.php:455
+#: server_databases.php:351 server_privileges.php:1596 tbl_structure.php:455
#: tbl_structure.php:464
msgid "With selected:"
msgstr "Pour la sélection :"
#: db_structure.php:527 libraries/display_tbl.lib.php:2076
-#: server_databases.php:348 server_privileges.php:530
-#: server_privileges.php:1560 tbl_structure.php:458
+#: server_databases.php:348 server_privileges.php:569
+#: server_privileges.php:1599 tbl_structure.php:458
msgid "Check All"
msgstr "Tout cocher"
#: db_structure.php:531 libraries/display_tbl.lib.php:2077
#: libraries/replication_gui.lib.php:33 server_databases.php:350
-#: server_privileges.php:533 server_privileges.php:1564 tbl_structure.php:462
+#: server_privileges.php:572 server_privileges.php:1603 tbl_structure.php:462
msgid "Uncheck All"
msgstr "Tout décocher"
@@ -690,7 +690,7 @@ msgstr "Analyser la table"
#: libraries/display_export.lib.php:83 libraries/display_tbl.lib.php:2094
#: libraries/display_tbl.lib.php:2225 libraries/mult_submits.inc.php:62
#: libraries/server_links.inc.php:84 libraries/tbl_links.inc.php:82
-#: pmd_pdf.php:84 pmd_pdf.php:109 server_privileges.php:1341
+#: pmd_pdf.php:84 pmd_pdf.php:109 server_privileges.php:1380
#: setup/frames/menu.inc.php:22 tbl_row_action.php:59
msgid "Export"
msgstr "Exporter"
@@ -708,8 +708,8 @@ msgstr "Tables faisant l'objet d'un suivi"
#: libraries/export/sql.php:342 libraries/export/texytext.php:84
#: libraries/export/xml.php:255 libraries/header.inc.php:106
#: libraries/header_printview.inc.php:58 server_databases.php:169
-#: server_privileges.php:1621 server_privileges.php:1682
-#: server_privileges.php:1940 server_processlist.php:56
+#: server_privileges.php:1660 server_privileges.php:1721
+#: server_privileges.php:1979 server_processlist.php:56
#: server_synchronize.php:1179 server_synchronize.php:1183
#: tbl_tracking.php:591 test/theme.php:65
msgid "Database"
@@ -729,8 +729,8 @@ msgstr "Mis à jour"
#: db_tracking.php:77 libraries/Index.class.php:440
#: libraries/db_structure.lib.php:53 server_databases.php:203
-#: server_privileges.php:1503 server_privileges.php:1686
-#: server_privileges.php:2034 tbl_structure.php:187
+#: server_privileges.php:1542 server_privileges.php:1725
+#: server_privileges.php:2073 tbl_structure.php:187
msgid "Action"
msgstr "Action"
@@ -941,11 +941,11 @@ msgstr "Le nom de serveur est vide"
msgid "The user name is empty!"
msgstr "Le nom d'utilisateur est vide"
-#: js/messages.php:44 server_privileges.php:1197 user_password.php:70
+#: js/messages.php:44 server_privileges.php:1236 user_password.php:70
msgid "The password is empty!"
msgstr "Le mot de passe est vide"
-#: js/messages.php:45 server_privileges.php:1195 user_password.php:73
+#: js/messages.php:45 server_privileges.php:1234 user_password.php:73
msgid "The passwords aren't the same!"
msgstr "Les mots de passe doivent être identiques"
@@ -1018,8 +1018,8 @@ msgid "Prev"
msgstr "Précédent"
#. l10n: Display text for next month link in calendar
-#: js/messages.php:77 libraries/common.lib.php:2344
-#: libraries/common.lib.php:2347 libraries/display_tbl.lib.php:338
+#: js/messages.php:77 libraries/common.lib.php:2353
+#: libraries/common.lib.php:2356 libraries/display_tbl.lib.php:338
#: server_binlog.php:205 server_binlog.php:207 tbl_printview.php:424
#: tbl_structure.php:801
msgid "Next"
@@ -1079,63 +1079,63 @@ msgid "December"
msgstr "Décembre"
#. l10n: Short month name
-#: js/messages.php:97 libraries/common.lib.php:1555
+#: js/messages.php:97 libraries/common.lib.php:1557
msgid "Jan"
msgstr "Janvier"
#. l10n: Short month name
-#: js/messages.php:99 libraries/common.lib.php:1557
+#: js/messages.php:99 libraries/common.lib.php:1559
msgid "Feb"
msgstr "Février"
#. l10n: Short month name
-#: js/messages.php:101 libraries/common.lib.php:1559
+#: js/messages.php:101 libraries/common.lib.php:1561
msgid "Mar"
msgstr "Mars"
#. l10n: Short month name
-#: js/messages.php:103 libraries/common.lib.php:1561
+#: js/messages.php:103 libraries/common.lib.php:1563
msgid "Apr"
msgstr "Avril"
#. l10n: Short month name
-#: js/messages.php:105 libraries/common.lib.php:1563
+#: js/messages.php:105 libraries/common.lib.php:1565
msgctxt "Short month name"
msgid "May"
msgstr "Mai"
#. l10n: Short month name
-#: js/messages.php:107 libraries/common.lib.php:1565
+#: js/messages.php:107 libraries/common.lib.php:1567
msgid "Jun"
msgstr "Juin"
#. l10n: Short month name
-#: js/messages.php:109 libraries/common.lib.php:1567
+#: js/messages.php:109 libraries/common.lib.php:1569
msgid "Jul"
msgstr "Juillet"
#. l10n: Short month name
-#: js/messages.php:111 libraries/common.lib.php:1569
+#: js/messages.php:111 libraries/common.lib.php:1571
msgid "Aug"
msgstr "Août"
#. l10n: Short month name
-#: js/messages.php:113 libraries/common.lib.php:1571
+#: js/messages.php:113 libraries/common.lib.php:1573
msgid "Sep"
msgstr "Septembre"
#. l10n: Short month name
-#: js/messages.php:115 libraries/common.lib.php:1573
+#: js/messages.php:115 libraries/common.lib.php:1575
msgid "Oct"
msgstr "Octobre"
#. l10n: Short month name
-#: js/messages.php:117 libraries/common.lib.php:1575
+#: js/messages.php:117 libraries/common.lib.php:1577
msgid "Nov"
msgstr "Novembre"
#. l10n: Short month name
-#: js/messages.php:119 libraries/common.lib.php:1577
+#: js/messages.php:119 libraries/common.lib.php:1579
msgid "Dec"
msgstr "Décembre"
@@ -1168,37 +1168,37 @@ msgid "Saturday"
msgstr "Samedi"
#. l10n: Short week day name
-#: js/messages.php:132 libraries/common.lib.php:1580
+#: js/messages.php:132 libraries/common.lib.php:1582
msgid "Sun"
msgstr "Dim"
#. l10n: Short week day name
-#: js/messages.php:134 libraries/common.lib.php:1582
+#: js/messages.php:134 libraries/common.lib.php:1584
msgid "Mon"
msgstr "Lun"
#. l10n: Short week day name
-#: js/messages.php:136 libraries/common.lib.php:1584
+#: js/messages.php:136 libraries/common.lib.php:1586
msgid "Tue"
msgstr "Mar"
#. l10n: Short week day name
-#: js/messages.php:138 libraries/common.lib.php:1586
+#: js/messages.php:138 libraries/common.lib.php:1588
msgid "Wed"
msgstr "Mer"
#. l10n: Short week day name
-#: js/messages.php:140 libraries/common.lib.php:1588
+#: js/messages.php:140 libraries/common.lib.php:1590
msgid "Thu"
msgstr "Jeu"
#. l10n: Short week day name
-#: js/messages.php:142 libraries/common.lib.php:1590
+#: js/messages.php:142 libraries/common.lib.php:1592
msgid "Fri"
msgstr "Ven"
#. l10n: Short week day name
-#: js/messages.php:144 libraries/common.lib.php:1592
+#: js/messages.php:144 libraries/common.lib.php:1594
msgid "Sat"
msgstr "Sam"
@@ -1329,7 +1329,7 @@ msgid "Comment"
msgstr "Commentaire"
#: libraries/Index.class.php:466 libraries/common.lib.php:616
-#: libraries/common.lib.php:1199 libraries/display_tbl.lib.php:1117
+#: libraries/common.lib.php:1201 libraries/display_tbl.lib.php:1117
#: libraries/import.lib.php:1087 libraries/import.lib.php:1111
#: pdf_pages.php:285 setup/frames/index.inc.php:124
#: setup/lib/messages.inc.php:352 tbl_row_action.php:69
@@ -1355,7 +1355,7 @@ msgstr ""
"supprimé."
#: libraries/List_Database.class.php:431 libraries/server_links.inc.php:41
-#: server_databases.php:88 server_privileges.php:1621
+#: server_databases.php:88 server_privileges.php:1660
#: setup/lib/messages.inc.php:110 test/theme.php:93
msgid "Databases"
msgstr "Bases de données"
@@ -1695,7 +1695,7 @@ msgid "Documentation"
msgstr "Documentation"
#: libraries/common.lib.php:595 libraries/header_printview.inc.php:61
-#: server_processlist.php:60 server_status.php:247
+#: server_processlist.php:60 server_status.php:358
msgid "SQL query"
msgstr "requête SQL"
@@ -1711,128 +1711,128 @@ msgstr "Expliquer SQL"
msgid "Skip Explain SQL"
msgstr "Ne pas expliquer SQL"
-#: libraries/common.lib.php:1212
+#: libraries/common.lib.php:1214
msgid "Without PHP Code"
msgstr "Sans source PHP"
-#: libraries/common.lib.php:1215 setup/lib/messages.inc.php:355
+#: libraries/common.lib.php:1217 setup/lib/messages.inc.php:355
msgid "Create PHP Code"
msgstr "Créer source PHP"
-#: libraries/common.lib.php:1233 server_status.php:341
+#: libraries/common.lib.php:1235 server_status.php:452
#: setup/lib/messages.inc.php:354
msgid "Refresh"
msgstr "Actualiser"
-#: libraries/common.lib.php:1242
+#: libraries/common.lib.php:1244
msgid "Skip Validate SQL"
msgstr "Ne pas valider SQL"
-#: libraries/common.lib.php:1245 setup/lib/messages.inc.php:356 sql.php:518
+#: libraries/common.lib.php:1247 setup/lib/messages.inc.php:356 sql.php:518
msgid "Validate SQL"
msgstr "Valider SQL"
-#: libraries/common.lib.php:1276
+#: libraries/common.lib.php:1278
msgid "Inline edit of this query"
msgstr "Éditer cette requête en ligne"
-#: libraries/common.lib.php:1278
+#: libraries/common.lib.php:1280
msgid "Inline"
msgstr "En ligne"
-#: libraries/common.lib.php:1332 libraries/common.lib.php:1347
+#: libraries/common.lib.php:1334 libraries/common.lib.php:1349
msgid "Profiling"
msgstr "Profilage"
-#: libraries/common.lib.php:1351 libraries/tbl_triggers.lib.php:28
+#: libraries/common.lib.php:1353 libraries/tbl_triggers.lib.php:28
#: server_processlist.php:58
msgid "Time"
msgstr "Durée"
#. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "B"
msgstr "o"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "KiB"
msgstr "Kio"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "MiB"
msgstr "Mio"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "GiB"
msgstr "Gio"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "TiB"
msgstr "Tio"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "PiB"
msgstr "Pio"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "EiB"
msgstr "Eio"
#. l10n: Thousands separator
-#: libraries/common.lib.php:1417
+#: libraries/common.lib.php:1419
msgid ","
msgstr " "
#. l10n: Decimal separator
-#: libraries/common.lib.php:1419
+#: libraries/common.lib.php:1421
msgid "."
msgstr ","
#. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string
-#: libraries/common.lib.php:1596
+#: libraries/common.lib.php:1598
#: libraries/transformations/text_plain__dateformat.inc.php:34
msgid "%B %d, %Y at %I:%M %p"
msgstr "%A %d %B %Y à %H:%M"
-#: libraries/common.lib.php:1898
+#: libraries/common.lib.php:1907
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "%s jours, %s heures, %s minutes et %s secondes"
-#: libraries/common.lib.php:2313 libraries/common.lib.php:2316
-#: libraries/display_tbl.lib.php:290 server_status.php:608
+#: libraries/common.lib.php:2322 libraries/common.lib.php:2325
+#: libraries/display_tbl.lib.php:290 server_status.php:719
msgid "Begin"
msgstr "Début"
-#: libraries/common.lib.php:2314 libraries/common.lib.php:2317
+#: libraries/common.lib.php:2323 libraries/common.lib.php:2326
#: libraries/display_tbl.lib.php:291 server_binlog.php:168
#: server_binlog.php:170
msgid "Previous"
msgstr "Précédent"
-#: libraries/common.lib.php:2345 libraries/common.lib.php:2348
+#: libraries/common.lib.php:2354 libraries/common.lib.php:2357
#: libraries/display_tbl.lib.php:353
msgid "End"
msgstr "Fin"
-#: libraries/common.lib.php:2421
+#: libraries/common.lib.php:2430
#, php-format
msgid "Jump to database "%s"."
msgstr "Aller à la base de données "%s"."
-#: libraries/common.lib.php:2441
+#: libraries/common.lib.php:2450
#, 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/common.lib.php:2821 libraries/common.lib.php:2828
+#: libraries/common.lib.php:2830 libraries/common.lib.php:2837
#: libraries/db_links.inc.php:68 libraries/export/sql.php:25
#: libraries/import/sql.php:18 libraries/server_links.inc.php:45
#: libraries/tbl_links.inc.php:60 querywindow.php:99 test/theme.php:97
msgid "SQL"
msgstr "SQL"
-#: libraries/common.lib.php:2830 libraries/db_links.inc.php:104
+#: libraries/common.lib.php:2839 libraries/db_links.inc.php:104
#: libraries/tbl_links.inc.php:95 libraries/tbl_links.inc.php:117
#: view_operations.php:89
msgid "Operations"
@@ -1888,8 +1888,8 @@ msgid "Import"
msgstr "Importer"
#: libraries/db_links.inc.php:111 libraries/server_links.inc.php:66
-#: server_privileges.php:72 server_privileges.php:1683
-#: server_privileges.php:2032 test/theme.php:117
+#: server_privileges.php:111 server_privileges.php:1722
+#: server_privileges.php:2071 test/theme.php:117
msgid "Privileges"
msgstr "Privilèges"
@@ -1940,22 +1940,22 @@ msgid "Change password"
msgstr "Modifier le mot de passe"
#: libraries/display_change_password.lib.php:35
-#: libraries/replication_gui.lib.php:345 server_privileges.php:768
+#: libraries/replication_gui.lib.php:345 server_privileges.php:807
msgid "No Password"
msgstr "aucun mot de passe"
#: libraries/display_change_password.lib.php:41
#: libraries/replication_gui.lib.php:59 libraries/replication_gui.lib.php:60
#: libraries/replication_gui.lib.php:335 libraries/replication_gui.lib.php:339
-#: libraries/replication_gui.lib.php:349 server_privileges.php:757
-#: server_privileges.php:761 server_privileges.php:772
-#: server_privileges.php:1499 server_synchronize.php:1175
+#: libraries/replication_gui.lib.php:349 server_privileges.php:796
+#: server_privileges.php:800 server_privileges.php:811
+#: server_privileges.php:1538 server_synchronize.php:1175
msgid "Password"
msgstr "Mot de passe"
#: libraries/display_change_password.lib.php:46
#: libraries/replication_gui.lib.php:353 libraries/replication_gui.lib.php:356
-#: server_privileges.php:776 server_privileges.php:779
+#: server_privileges.php:815 server_privileges.php:818
msgid "Re-type"
msgstr "Entrer à nouveau"
@@ -1968,12 +1968,12 @@ msgid "MySQL 4.0 compatible"
msgstr "compatible MySQL 4.0"
#: libraries/display_change_password.lib.php:72
-#: libraries/replication_gui.lib.php:360 server_privileges.php:783
+#: libraries/replication_gui.lib.php:360 server_privileges.php:822
msgid "Generate Password"
msgstr "Générer un mot de passe"
#: libraries/display_change_password.lib.php:75
-#: libraries/replication_gui.lib.php:363 server_privileges.php:786
+#: libraries/replication_gui.lib.php:363 server_privileges.php:825
msgid "Generate"
msgstr "Générer"
@@ -1986,8 +1986,8 @@ msgstr "Créer une base de données"
msgid "Create"
msgstr "Créer"
-#: libraries/display_create_database.lib.php:40 server_privileges.php:74
-#: server_privileges.php:1388 server_replication.php:35
+#: libraries/display_create_database.lib.php:40 server_privileges.php:113
+#: server_privileges.php:1427 server_replication.php:35
msgid "No Privileges"
msgstr "aucun privilège"
@@ -2073,7 +2073,7 @@ msgstr "Compression"
#: libraries/display_export.lib.php:240 libraries/display_import.lib.php:197
#: libraries/display_import.lib.php:210 libraries/display_tbl.lib.php:530
#: libraries/export/sql.php:868 libraries/tbl_properties.inc.php:575
-#: server_privileges.php:1836 server_processlist.php:75
+#: server_privileges.php:1875 server_processlist.php:75
msgid "None"
msgstr "aucune"
@@ -2400,7 +2400,7 @@ msgstr ""
msgid "Buffer Pool"
msgstr "Mémoire-tampon"
-#: libraries/engines/innodb.lib.php:145 server_status.php:306
+#: libraries/engines/innodb.lib.php:145 server_status.php:417
msgid "InnoDB Status"
msgstr "État InnoDB"
@@ -2409,8 +2409,8 @@ msgid "Buffer Pool Usage"
msgstr "Utilisation de la mémoire-tampon"
#: libraries/engines/innodb.lib.php:194 server_databases.php:137
-#: server_databases.php:305 server_status.php:414 server_status.php:475
-#: server_status.php:496 tbl_printview.php:351 tbl_structure.php:696
+#: server_databases.php:305 server_status.php:525 server_status.php:586
+#: server_status.php:607 tbl_printview.php:351 tbl_structure.php:696
msgid "Total"
msgstr "Total"
@@ -2767,7 +2767,7 @@ msgstr "Microsoft Word 2000"
#: libraries/export/latex.php:201 libraries/export/odt.php:48
#: libraries/export/sql.php:106 libraries/export/sql.php:868
#: libraries/export/texytext.php:27 server_databases.php:127
-#: server_privileges.php:537 server_replication.php:316 tbl_printview.php:317
+#: server_privileges.php:576 server_replication.php:316 tbl_printview.php:317
#: tbl_structure.php:665
msgid "Data"
msgstr "Données"
@@ -2817,9 +2817,9 @@ msgstr "Type MIME"
#: libraries/export/xml.php:102 libraries/header_printview.inc.php:57
#: libraries/replication_gui.lib.php:63 libraries/replication_gui.lib.php:174
#: libraries/replication_gui.lib.php:269 libraries/replication_gui.lib.php:272
-#: libraries/replication_gui.lib.php:329 server_privileges.php:692
-#: server_privileges.php:695 server_privileges.php:751
-#: server_privileges.php:1498 server_privileges.php:2030
+#: libraries/replication_gui.lib.php:329 server_privileges.php:731
+#: server_privileges.php:734 server_privileges.php:790
+#: server_privileges.php:1537 server_privileges.php:2069
#: server_processlist.php:55 server_synchronize.php:1159
msgid "Host"
msgstr "Serveur"
@@ -3170,879 +3170,6 @@ msgstr "aucune"
msgid "Convert to Kana"
msgstr "Conversion en kana"
-#. l10n: Text direction, use either ltr or rtl
-#: libraries/messages.inc.php:19
-msgid "ltr"
-msgstr "ltr"
-
-#: libraries/messages.inc.php:21
-msgid "Content of table __TABLE__"
-msgstr "Contenu de la table __TABLE__"
-
-#: libraries/messages.inc.php:22
-msgid "(continued)"
-msgstr "(suite)"
-
-#: libraries/messages.inc.php:23
-msgid "Structure of table __TABLE__"
-msgstr "Structure de la table __TABLE__"
-
-#: libraries/messages.inc.php:25 server_privileges.php:227
-msgid "Includes all privileges except GRANT."
-msgstr "Tous les privilèges sauf GRANT."
-
-#: libraries/messages.inc.php:26 server_privileges.php:153
-#: server_privileges.php:476
-msgid "Allows altering the structure of existing tables."
-msgstr "Permission de modifier la structure des tables existantes."
-
-#: libraries/messages.inc.php:27 server_privileges.php:169
-#: server_privileges.php:482
-msgid "Allows altering and dropping stored routines."
-msgstr "Permission de modifier et de supprimer des procédures stockées."
-
-#: libraries/messages.inc.php:28 server_privileges.php:145
-#: server_privileges.php:475
-msgid "Allows creating new databases and tables."
-msgstr "Permission de créer des bases de données et des tables."
-
-#: libraries/messages.inc.php:29 server_privileges.php:168
-#: server_privileges.php:481
-msgid "Allows creating stored routines."
-msgstr "Permission de créer des procédures stockées."
-
-#: libraries/messages.inc.php:30 server_privileges.php:475
-msgid "Allows creating new tables."
-msgstr "Permission de créer des tables."
-
-#: libraries/messages.inc.php:31 server_privileges.php:156
-#: server_privileges.php:479
-msgid "Allows creating temporary tables."
-msgstr "Permission de créer des tables temporaires."
-
-#: libraries/messages.inc.php:32 server_privileges.php:170
-#: server_privileges.php:515
-msgid "Allows creating, dropping and renaming user accounts."
-msgstr "Permission de créer, supprimer et renommer des comptes utilisateurs"
-
-#: libraries/messages.inc.php:33 server_privileges.php:160
-#: server_privileges.php:164 server_privileges.php:487
-#: server_privileges.php:491
-msgid "Allows creating new views."
-msgstr "Permission de créer des vues."
-
-#: libraries/messages.inc.php:34 server_privileges.php:144
-#: server_privileges.php:467
-msgid "Allows deleting data."
-msgstr "Permission de détruire des données"
-
-#: libraries/messages.inc.php:35 server_privileges.php:146
-#: server_privileges.php:478
-msgid "Allows dropping databases and tables."
-msgstr "Permission d'effacer des bases de données et des tables."
-
-#: libraries/messages.inc.php:36 server_privileges.php:478
-msgid "Allows dropping tables."
-msgstr "Permission d'effacer des tables."
-
-#: libraries/messages.inc.php:37 server_privileges.php:161
-#: server_privileges.php:495
-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/messages.inc.php:38 server_privileges.php:171
-#: server_privileges.php:483
-msgid "Allows executing stored routines."
-msgstr "Permission d'exécuter des procédures stockées"
-
-#: libraries/messages.inc.php:39 server_privileges.php:150
-#: server_privileges.php:470
-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/messages.inc.php:40 server_privileges.php:501
-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/messages.inc.php:41 server_privileges.php:152
-#: server_privileges.php:477
-msgid "Allows creating and dropping indexes."
-msgstr "Permission de créer et d'effacer des index."
-
-#: libraries/messages.inc.php:42 server_privileges.php:142
-#: server_privileges.php:403 server_privileges.php:465
-msgid "Allows inserting and replacing data."
-msgstr "Permission d'ajouter et de remplacer des données"
-
-#: libraries/messages.inc.php:43 server_privileges.php:157
-#: server_privileges.php:510
-msgid "Allows locking tables for the current thread."
-msgstr ""
-"Permission de verrouiller des enregistrements dans le fil courant (unité "
-"d'exécution)."
-
-#: libraries/messages.inc.php:44 server_privileges.php:607
-#: server_privileges.php:609
-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/messages.inc.php:45 server_privileges.php:595
-#: server_privileges.php:597
-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/messages.inc.php:46 server_privileges.php:601
-#: server_privileges.php:603
-msgid ""
-"Limits the number of commands that change any table or database the user may "
-"execute per hour."
-msgstr ""
-"Limite du nombre de commandes changeant une table ou base de données, qu'un "
-"utilisateur peut exécuter, par heure."
-
-#: libraries/messages.inc.php:47 server_privileges.php:613
-#: server_privileges.php:615
-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/messages.inc.php:48 server_privileges.php:149
-#: server_privileges.php:505
-msgid "Allows viewing processes of all users"
-msgstr "Permission de voir les processus de tous les utilisateurs"
-
-#: libraries/messages.inc.php:49 server_privileges.php:151
-#: server_privileges.php:409 server_privileges.php:511
-msgid "Has no effect in this MySQL version."
-msgstr "Non effectif dans cette version de MySQL."
-
-#: libraries/messages.inc.php:50 server_privileges.php:147
-#: server_privileges.php:506
-msgid "Allows reloading server settings and flushing the server's caches."
-msgstr ""
-"Permission de recharger les réglages du serveur, et de vidanger la mémoire "
-"cache."
-
-#: libraries/messages.inc.php:51 server_privileges.php:159
-#: server_privileges.php:513
-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/messages.inc.php:52 server_privileges.php:158
-#: server_privileges.php:514
-msgid "Needed for the replication slaves."
-msgstr "Nécessaire pour les esclaves (système de duplication)."
-
-#: libraries/messages.inc.php:53 server_privileges.php:141
-#: server_privileges.php:400 server_privileges.php:464
-msgid "Allows reading data."
-msgstr "Permission de lire des données."
-
-#: libraries/messages.inc.php:54 server_privileges.php:154
-#: server_privileges.php:508
-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/messages.inc.php:55 server_privileges.php:165
-#: server_privileges.php:167 server_privileges.php:480
-msgid "Allows performing SHOW CREATE VIEW queries."
-msgstr "Permission d'exécuter SHOW CREATE VIEW."
-
-#: libraries/messages.inc.php:56 server_privileges.php:148
-#: server_privileges.php:507
-msgid "Allows shutting down the server."
-msgstr "Permission d'arrêter le serveur MySQL."
-
-#: libraries/messages.inc.php:57 server_privileges.php:155
-#: server_privileges.php:504
-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 ""
-"Permission de se connecter, même si le nombre maximal de connexions permises "
-"a été atteint; ceci est requis pour la plupart des opérations de type "
-"administratif, par exemple les changements de variables globales ou la "
-"destruction de processus."
-
-#: libraries/messages.inc.php:58 server_privileges.php:162
-#: server_privileges.php:496
-msgid "Allows creating and dropping triggers"
-msgstr "Permission de créer et de supprimer des déclencheurs"
-
-#: libraries/messages.inc.php:59 server_privileges.php:143
-#: server_privileges.php:406 server_privileges.php:466
-msgid "Allows changing data."
-msgstr "Permission de changer des données."
-
-#: libraries/messages.inc.php:60 server_privileges.php:221
-msgid "No privileges."
-msgstr "Pas de privilèges"
-
-#: libraries/messages.inc.php:62
-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 ""
-"Le nombre de transactions qui ont utilisé la cache temporaire du log binaire "
-"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/messages.inc.php:63
-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/messages.inc.php:64
-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 "
-"to increase the tmp_table_size value to cause temporary tables to be memory-"
-"based instead of disk-based."
-msgstr ""
-"Le nombre de tables temporaires sur disque créées automatiquement par le "
-"serveur lors de l'exécution d'énoncés. Si la valeur du paramètre "
-"Created_tmp_disk_tables est trop grande, augmentez la valeur de "
-"tmp_table_size afin que les tables temporaires soient maintenues en mémoire "
-"au lieu d'être sur disque."
-
-#: libraries/messages.inc.php:65
-msgid "How many temporary files mysqld has created."
-msgstr "Le nombre de fichiers temporaires créés par mysqld."
-
-#: libraries/messages.inc.php:66
-msgid ""
-"The number of in-memory temporary tables created automatically by the server "
-"while executing statements."
-msgstr ""
-"Le nombre de tables temporaires en mémoire créées automatiquement par le "
-"serveur lors de l'exécution d'énoncés."
-
-#: libraries/messages.inc.php:67
-msgid ""
-"The number of rows written with INSERT DELAYED for which some error occurred "
-"(probably duplicate key)."
-msgstr ""
-"Le nombre d'enregistrements écrits avec INSERT DELAYED pour lesquels une "
-"erreur est survenue (probablement un doublon sur la clé)."
-
-#: libraries/messages.inc.php:68
-msgid ""
-"The number of INSERT DELAYED handler threads in use. Every different table "
-"on which one uses INSERT DELAYED gets its own thread."
-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/messages.inc.php:69
-msgid "The number of INSERT DELAYED rows written."
-msgstr "Le nombre d'enregistrements écrits via INSERT DELAYED."
-
-#: libraries/messages.inc.php:70
-msgid "The number of executed FLUSH statements."
-msgstr "Le nombre de commandes FLUSH exécutées."
-
-#: libraries/messages.inc.php:71
-msgid "The number of internal COMMIT statements."
-msgstr "Le nombre de commandes COMMIT internes."
-
-#: libraries/messages.inc.php:72
-msgid "The number of times a row was deleted from a table."
-msgstr "Le nombre de fois qu'un enregistrement a été supprimé d'une table."
-
-#: libraries/messages.inc.php:73
-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 ""
-"Le serveur MySQL peut demander au moteur de données NDB Cluster s'il connaît "
-"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/messages.inc.php:74
-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 ""
-"Le nombre de fois que la première entrée a été lue depuis un index. Si c'est "
-"élevé, ceci suggère que le serveur effectue beaucoup de parcours complets "
-"d'un index; par exemple, SELECT col1 FROM foo, en assumant que col1 est une "
-"colonne indexée."
-
-#: libraries/messages.inc.php:75
-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 ""
-"Le nombre de requêtes pour lire un enregistrement via une clé. Si élevé, "
-"c'est une bonne indication que vos tables sont correctement indexées."
-
-#: libraries/messages.inc.php:76
-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 ""
-"Le nombre de requêtes de lecture du prochain enregistrement, en ordre de "
-"clé. Ceci est augmenté si vous interrogez une colonne indexée avec un "
-"critère de fourchette ou si vous parcourez l'index."
-
-#: libraries/messages.inc.php:77
-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 ""
-"Le nombre de requêtes de lecture de l'enregistrement précédent, en ordre de "
-"clé. Utilisé surtout pour optimiser ORDER BY ... DESC"
-
-#: libraries/messages.inc.php:78
-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 "
-"probably have a lot of queries that require MySQL to scan whole tables or "
-"you have joins that don't use keys properly."
-msgstr ""
-"Le nombre de requêtes de lecture d'un enregistrement basée sur une position "
-"fixe. Ce nombre est élevé si vous faites de nombreuses requêtes qui "
-"nécessitent de trier les résultats. Vous avez probablement un grand nombre "
-"de requêtes qui demandent à MySQL de parcourir des tables en entier, ou vous "
-"avez des jointures qui n'utilisent pas correctement les clés."
-
-#: libraries/messages.inc.php:79
-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 "
-"tables are not properly indexed or that your queries are not written to take "
-"advantage of the indexes you have."
-msgstr ""
-"Le nombre de requêtes de lecture du prochaine enregistrement dans le "
-"fichier. Élevé si vous faites plusieurs parcours de tables. Ceci suggère que "
-"vos 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/messages.inc.php:80
-msgid "The number of internal ROLLBACK statements."
-msgstr "Le nombre d'énoncés ROLLBACK internes."
-
-#: libraries/messages.inc.php:81
-msgid "The number of requests to update a row in a table."
-msgstr "Le nombre de requêtes de mise à jour d'enregistrements."
-
-#: libraries/messages.inc.php:82
-msgid "The number of requests to insert a row in a table."
-msgstr "Le nombre de requêtes d'insertion d'enregistrements."
-
-#: libraries/messages.inc.php:83
-msgid "The number of pages containing data (dirty or clean)."
-msgstr "Le nombre de pages contenant des données."
-
-#: libraries/messages.inc.php:84
-msgid "The number of pages currently dirty."
-msgstr "Le nombre de pages contenant des données «dirty»"
-
-#: libraries/messages.inc.php:85
-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/messages.inc.php:86
-msgid "The number of free pages."
-msgstr "Le nombre de pages libres"
-
-#: libraries/messages.inc.php:87
-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 ""
-"Le nombre de pages dans la réserve InnoDB. Ce sont des pages actuellement en "
-"train d'être lues ou écrites, ou qui ne peuvent être supprimées pour une "
-"autre raison."
-
-#: libraries/messages.inc.php:88
-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 "
-"be calculated as Innodb_buffer_pool_pages_total - "
-"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data."
-msgstr ""
-"Le nombre de pages occupées car elles ont été déallouées en raison de "
-"verrous sur les enregistrements. Cette valeur peut également être calculée "
-"comme suit: Innodb_buffer_pool_pages_total - Innodb_buffer_pool_pages_free - "
-"Innodb_buffer_pool_pages_data."
-
-#: libraries/messages.inc.php:89
-msgid "Total size of buffer pool, in pages."
-msgstr "Taille totale de la réserve, en pages."
-
-#: libraries/messages.inc.php:90
-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 ""
-"Le nombre de lectures «discontinues» effectuées par InnoDB. Ceci survient "
-"lorsqu'une requête doit balayer une large portion de table en ordre "
-"discontinu."
-
-#: libraries/messages.inc.php:91
-msgid ""
-"The number of sequential read-aheads InnoDB initiated. This happens when "
-"InnoDB does a sequential full table scan."
-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/messages.inc.php:92
-msgid "The number of logical read requests InnoDB has done."
-msgstr "Le nombre de requêtes de lectures logiques effectuées par InnoDB."
-
-#: libraries/messages.inc.php:93
-msgid ""
-"The number of logical reads that InnoDB could not satisfy from buffer pool "
-"and had to do a single-page read."
-msgstr ""
-"Le nombre de lectures que InnoDB n'a pu faire à partir de la réserve, menant "
-"à une lecture directe d'une page."
-
-#: libraries/messages.inc.php:94
-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 "
-"available, it's necessary to wait for pages to be flushed first. This "
-"counter counts instances of these waits. If the buffer pool size was set "
-"properly, this value should be small."
-msgstr ""
-"Normalement, l'écriture dans la réserve InnoDB se passe en arrière-plan. "
-"Cependant, s'il est nécessaire de lire ou de créer une page et qu'aucune "
-"page n'est disponible, InnoDB doit attendre que des pages soient libérées. "
-"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/messages.inc.php:95
-msgid "The number writes done to the InnoDB buffer pool."
-msgstr "Le nombre d'écritures faites dans la réserve InnoDB."
-
-#: libraries/messages.inc.php:96
-msgid "The number of fsync() operations so far."
-msgstr "Le nombre d'opérations fsync() faites jusqu'à présent."
-
-#: libraries/messages.inc.php:97
-msgid "The current number of pending fsync() operations."
-msgstr "Le nombre d'opérations fsync() actuellement en attente."
-
-#: libraries/messages.inc.php:98
-msgid "The current number of pending reads."
-msgstr "Le nombre actuel de lectures en attente."
-
-#: libraries/messages.inc.php:99
-msgid "The current number of pending writes."
-msgstr "Le nombre actuel d'écritures en attente."
-
-#: libraries/messages.inc.php:100
-msgid "The amount of data read so far, in bytes."
-msgstr "La quantité d'octets lus jusqu'à présent."
-
-#: libraries/messages.inc.php:101
-msgid "The total number of data reads."
-msgstr "Le nombre total de lectures de données."
-
-#: libraries/messages.inc.php:102
-msgid "The total number of data writes."
-msgstr "Le nombre total d'écritures de données."
-
-#: libraries/messages.inc.php:103
-msgid "The amount of data written so far, in bytes."
-msgstr "La quantité d'octets écrits jusqu'à présent."
-
-#: libraries/messages.inc.php:104
-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/messages.inc.php:105
-msgid "The number of doublewrite operations that have been performed."
-msgstr "Le nombre d'opérations «doublewrite» effectuées."
-
-#: libraries/messages.inc.php:106
-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 ""
-"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/messages.inc.php:107
-msgid "The number of log write requests."
-msgstr "Le nombre de requêtes d'écritures sur le fichier témoin."
-
-#: libraries/messages.inc.php:108
-msgid "The number of physical writes to the log file."
-msgstr "Le nombre d'écritures physiques au fichier témoin."
-
-#: libraries/messages.inc.php:109
-msgid "The number of fsync() writes done to the log file."
-msgstr "Le nombre d'écritures fsync() sur le fichier témoin."
-
-#: libraries/messages.inc.php:110
-msgid "The number of pending log file fsyncs."
-msgstr "Le nombre de synchronisations (fsync) du fichier témoin en attente."
-
-#: libraries/messages.inc.php:111
-msgid "Pending log file writes."
-msgstr "Le nombre d'écritures du fichier témoin en attente."
-
-#: libraries/messages.inc.php:112
-msgid "The number of bytes written to the log file."
-msgstr "Le nombre d'octets écrits sur le fichier témoin."
-
-#: libraries/messages.inc.php:113
-msgid "The number of pages created."
-msgstr "Le nombre de pages créées."
-
-#: libraries/messages.inc.php:114
-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 ""
-"La taille de page InnoDB telle que compilée (16 Ko par défaut). Plusieurs "
-"valeurs sont comptées par page; la taille de page leur permet d'être "
-"facilement converties en octets."
-
-#: libraries/messages.inc.php:115
-msgid "The number of pages read."
-msgstr "Le nombre de pages lues."
-
-#: libraries/messages.inc.php:116
-msgid "The number of pages written."
-msgstr "Le nombre de pages écrites."
-
-#: libraries/messages.inc.php:117
-msgid "The number of row locks currently being waited for."
-msgstr "Le nombre de verrous d'enregistrements actuellement en attente."
-
-#: libraries/messages.inc.php:118
-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/messages.inc.php:119
-msgid "The total time spent in acquiring row locks, in milliseconds."
-msgstr "Le temps total utilisé pour acquérir un verrou, en millisecondes."
-
-#: libraries/messages.inc.php:120
-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/messages.inc.php:121
-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/messages.inc.php:122
-msgid "The number of rows deleted from InnoDB tables."
-msgstr "Le nombre d'enregistrements supprimés des tables InnoDB."
-
-#: libraries/messages.inc.php:123
-msgid "The number of rows inserted in InnoDB tables."
-msgstr "Le nombre d'enregistrements insérés dans des tables InnoDB."
-
-#: libraries/messages.inc.php:124
-msgid "The number of rows read from InnoDB tables."
-msgstr "Le nombre d'enregistrements lus dans des tables InnoDB."
-
-#: libraries/messages.inc.php:125
-msgid "The number of rows updated in InnoDB tables."
-msgstr "Le nombre d'enregistrements mis à jour dans des tables InnoDB."
-
-#: libraries/messages.inc.php:126
-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 ""
-"Le nombre de blocs de clés dans la cache de clés qui ont été modifiés mais "
-"pas encore transférés sur disque. Anciennement connu sous le nom "
-"Not_flushed_key_blocks."
-
-#: libraries/messages.inc.php:127
-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 ""
-"Le nombre de blocs inutilisés dans la cache de clés. Vous pouvez utiliser "
-"cette valeur pour déterminer la proportion de la cache de clés qui est "
-"utilisée."
-
-#: libraries/messages.inc.php:128
-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 ""
-"Le nombre maximum de blocs utilisés dans le cache. Il s'agit de la valeur "
-"maximum du nombre de blocs qui ont été utilisés en même temps dans le cache "
-"de clés."
-
-#: libraries/messages.inc.php:129
-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/messages.inc.php:130
-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 ""
-"Le nombre de lectures physiques d'un bloc de clés depuis le disque. Si cette "
-"valeur est élevée, la taille de votre mémoire tampon de clés est trop "
-"petite. Le taux d'échec de la cache peut être calculé par Key reads/Key read "
-"requests."
-
-#: libraries/messages.inc.php:131
-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/messages.inc.php:132
-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/messages.inc.php:133
-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 ""
-"Le coût total de la dernière requête compilée, tel que calculé par "
-"l'optimiseur de requêtes. Utile pour comparer le coût de diverses stratégies "
-"pour une même requête. La valeur de 0 indique qu'aucune requête n'a encore "
-"été compilée."
-
-#: libraries/messages.inc.php:134
-msgid "The number of rows waiting to be written in INSERT DELAYED queues."
-msgstr "Le nombre d'enregistrements en attente d'écriture (INSERT DELAYED)."
-
-#: libraries/messages.inc.php:135
-msgid ""
-"The number of tables that have been opened. If opened tables is big, your "
-"table cache value is probably too small."
-msgstr ""
-"Le nombre tables qui ont été ouvertes. Si trop élevé, votre cache de table "
-"est probablement trop petite."
-
-#: libraries/messages.inc.php:136
-msgid "The number of files that are open."
-msgstr "Le nombre de fichiers qui sont ouverts."
-
-#: libraries/messages.inc.php:137
-msgid "The number of streams that are open (used mainly for logging)."
-msgstr "Le nombre de flux de données qui sont ouverts."
-
-#: libraries/messages.inc.php:138
-msgid "The number of tables that are open."
-msgstr "Le nombre de tables qui sont ouvertes."
-
-#: libraries/messages.inc.php:139
-msgid "The number of free memory blocks in query cache."
-msgstr "Le nombre de blocs de mémoire libre dans la cache de requêtes."
-
-#: libraries/messages.inc.php:140
-msgid "The amount of free memory for query cache."
-msgstr "La quantité de mémoire libre dans la cache de requêtes."
-
-#: libraries/messages.inc.php:141
-msgid "The number of cache hits."
-msgstr "Le nombre de succès dans la cache."
-
-#: libraries/messages.inc.php:142
-msgid "The number of queries added to the cache."
-msgstr "Le nombre de requêtes ajoutées à la cache."
-
-#: libraries/messages.inc.php:143
-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 "
-"cache size. The query cache uses a least recently used (LRU) strategy to "
-"decide which queries to remove from the cache."
-msgstr ""
-"Le nombre de requêtes qui ont été retirées de la cache pour libérer de la "
-"mémoire afin de mettre en cache de nouvelles requêtes. Peut être utilisé "
-"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/messages.inc.php:144
-msgid ""
-"The number of non-cached queries (not cachable, or not cached due to the "
-"query_cache_type setting)."
-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/messages.inc.php:145
-msgid "The number of queries registered in the cache."
-msgstr "Le nombre de requêtes enregistrées dans la cache."
-
-#: libraries/messages.inc.php:146
-msgid "The total number of blocks in the query cache."
-msgstr "Le nombre total de blocs dans la cache de requêtes."
-
-#: libraries/messages.inc.php:147
-msgctxt "$strShowStatusReset"
-msgid "Reset"
-msgstr "Réinitialiser"
-
-#: libraries/messages.inc.php:148
-msgid "The status of failsafe replication (not yet implemented)."
-msgstr "L'état de la réplication sans échec (pas encore implantée)."
-
-#: libraries/messages.inc.php:149
-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 ""
-"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/messages.inc.php:150
-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/messages.inc.php:151
-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 ""
-"Le nombre de jointures sans clés qui vérifient l'utilisation de clé à chaque "
-"enregistrement. (Si ceci est supérieur à 0, vérifiez soigneusement les "
-"indexes de vos tables.)"
-
-#: libraries/messages.inc.php:152
-msgid ""
-"The number of joins that used ranges on the first table. (It's normally not "
-"critical even if this is big.)"
-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/messages.inc.php:153
-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/messages.inc.php:154
-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/messages.inc.php:155
-msgid ""
-"Total (since startup) number of times the replication slave SQL thread has "
-"retried transactions."
-msgstr ""
-"Nombre de fois (depuis le démarrage) que le fil d'exécution SQL de l'esclave "
-"a envoyé à nouveau des transactions."
-
-#: libraries/messages.inc.php:156
-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/messages.inc.php:157
-msgid ""
-"The number of threads that have taken more than slow_launch_time seconds to "
-"create."
-msgstr ""
-"Le nombre de fils d'exécution dont le temps de création a excédé "
-"slow_launch_time secondes."
-
-#: libraries/messages.inc.php:158
-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/messages.inc.php:159
-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 ""
-"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/messages.inc.php:160
-msgid "The number of sorts that were done with ranges."
-msgstr "Le nombre de tri effectués avec des plages."
-
-#: libraries/messages.inc.php:161
-msgid "The number of sorted rows."
-msgstr "Le nombre d'enregistrements triés."
-
-#: libraries/messages.inc.php:162
-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/messages.inc.php:163
-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/messages.inc.php:164
-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 "
-"should first optimize your queries, and then either split your table or "
-"tables or use replication."
-msgstr ""
-"Le nombre de fois qu'un verrou de table n'a pu être acquis immédiatement, "
-"induisant un temps d'attente. Si ce nombre est élevé et que vous éprouvez "
-"des problèmes de performance, commencez par optimiser vos requêtes, puis "
-"subdivisez vos tables ou encore utiliser la réplication."
-
-#: libraries/messages.inc.php:165
-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 ""
-"Le nombre de fils dans la cache des fils d'exécution. Le taux peut être "
-"calculé via Nombre de fils / connexion. Si cette valeur est en rouge, vous "
-"devriez augmenter la taille de cette cache."
-
-#: libraries/messages.inc.php:166
-msgid "The number of currently open connections."
-msgstr "Le nombre de connexions ouvertes actuellement."
-
-#: libraries/messages.inc.php:167
-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 "
-"doesn't give a notable performance improvement if you have a good thread "
-"implementation.)"
-msgstr ""
-"Le nombre de fils d'exécution créés afin de gérer les connexions. Si ce "
-"nombre est trop grand, vous pourriez augmenter la valeur du paramètre "
-"thread_cache_size. (Normalement, ceci ne procure pas une amélioration "
-"perceptible de la performance si votre serveur gère correctement les fils "
-"d'exécution."
-
-#: libraries/messages.inc.php:168
-msgid "The number of threads that are not sleeping."
-msgstr "Le nombre de fils d'exécution non suspendus."
-
#: libraries/mult_submits.inc.php:76 libraries/tbl_properties.inc.php:513
#: tbl_structure.php:29 tbl_structure.php:153 tbl_structure.php:157
#: tbl_structure.php:473
@@ -4369,8 +3496,8 @@ msgstr ""
#: libraries/replication_gui.lib.php:55 libraries/replication_gui.lib.php:56
#: libraries/replication_gui.lib.php:249 libraries/replication_gui.lib.php:252
-#: libraries/replication_gui.lib.php:259 server_privileges.php:672
-#: server_privileges.php:675 server_privileges.php:682
+#: libraries/replication_gui.lib.php:259 server_privileges.php:711
+#: server_privileges.php:714 server_privileges.php:721
#: server_synchronize.php:1171
msgid "User name"
msgstr "Nom d'utilisateur"
@@ -4388,11 +3515,11 @@ msgid "Slave status"
msgstr "État de l'esclave"
#: libraries/replication_gui.lib.php:114 libraries/sql_query_form.lib.php:445
-#: server_status.php:626 server_variables.php:52
+#: server_status.php:737 server_variables.php:52
msgid "Variable"
msgstr "Variable"
-#: libraries/replication_gui.lib.php:115 server_status.php:627
+#: libraries/replication_gui.lib.php:115 server_status.php:738
#: tbl_change.php:324 tbl_printview.php:370 tbl_select.php:139
#: tbl_structure.php:729
msgid "Value"
@@ -4414,34 +3541,34 @@ msgstr ""
msgid "Add slave replication user"
msgstr "Ajouter un utilisateur pour la réplication vers l'esclave?"
-#: libraries/replication_gui.lib.php:254 server_privileges.php:677
+#: libraries/replication_gui.lib.php:254 server_privileges.php:716
msgid "Any user"
msgstr "Tout utilisateur"
#: libraries/replication_gui.lib.php:255 libraries/replication_gui.lib.php:323
-#: libraries/replication_gui.lib.php:346 server_privileges.php:678
-#: server_privileges.php:745 server_privileges.php:769
-#: server_privileges.php:1889 server_privileges.php:1919
+#: libraries/replication_gui.lib.php:346 server_privileges.php:717
+#: server_privileges.php:784 server_privileges.php:808
+#: server_privileges.php:1928 server_privileges.php:1958
msgid "Use text field"
msgstr "Entrez une valeur"
-#: libraries/replication_gui.lib.php:302 server_privileges.php:725
+#: libraries/replication_gui.lib.php:302 server_privileges.php:764
msgid "Any host"
msgstr "Tout serveur"
-#: libraries/replication_gui.lib.php:306 server_privileges.php:729
+#: libraries/replication_gui.lib.php:306 server_privileges.php:768
msgid "Local"
msgstr "Local"
-#: libraries/replication_gui.lib.php:312 server_privileges.php:734
+#: libraries/replication_gui.lib.php:312 server_privileges.php:773
msgid "This Host"
msgstr "Ce serveur"
-#: libraries/replication_gui.lib.php:318 server_privileges.php:740
+#: libraries/replication_gui.lib.php:318 server_privileges.php:779
msgid "Use Host Table"
msgstr "Utiliser la table Host"
-#: libraries/replication_gui.lib.php:331 server_privileges.php:753
+#: libraries/replication_gui.lib.php:331 server_privileges.php:792
msgid ""
"When Host table is used, this field is ignored and values stored in Host "
"table are used instead."
@@ -4449,8 +3576,25 @@ 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/select_lang.lib.php:480 libraries/select_lang.lib.php:486
-#: libraries/select_lang.lib.php:492
+#. l10n: Text direction, use either ltr or rtl
+#: libraries/select_lang.lib.php:491
+msgid "ltr"
+msgstr "ltr"
+
+#: libraries/select_lang.lib.php:493
+msgid "Content of table __TABLE__"
+msgstr "Contenu de la table __TABLE__"
+
+#: libraries/select_lang.lib.php:494
+msgid "(continued)"
+msgstr "(suite)"
+
+#: libraries/select_lang.lib.php:495
+msgid "Structure of table __TABLE__"
+msgstr "Structure de la table __TABLE__"
+
+#: libraries/select_lang.lib.php:500 libraries/select_lang.lib.php:506
+#: libraries/select_lang.lib.php:512
#, php-format
msgid "Unknown language: %1$s."
msgstr "Langue inconnue: %1$s."
@@ -4461,7 +3605,7 @@ msgid "Servers"
msgstr "Serveurs"
#: libraries/server_links.inc.php:53 server_engines.php:112
-#: server_engines.php:116 server_status.php:304 test/theme.php:105
+#: server_engines.php:116 server_status.php:415 test/theme.php:105
msgid "Variables"
msgstr "Variables"
@@ -4474,7 +3618,7 @@ msgid "Engines"
msgstr "Moteurs"
#: libraries/server_links.inc.php:76 server_binlog.php:110
-#: server_status.php:253 test/theme.php:121
+#: server_status.php:364 test/theme.php:121
msgid "Binary log"
msgstr "Log binaire"
@@ -4901,8 +4045,8 @@ msgstr "Réinitialiser"
msgid "Protocol version"
msgstr "Version du protocole"
-#: main.php:189 server_privileges.php:1350 server_privileges.php:1497
-#: server_privileges.php:1611 server_privileges.php:2029
+#: main.php:189 server_privileges.php:1389 server_privileges.php:1536
+#: server_privileges.php:1650 server_privileges.php:2068
#: server_processlist.php:54
msgid "User"
msgstr "Utilisateur"
@@ -5288,7 +4432,7 @@ msgstr "%s bases de données ont été supprimées."
msgid "Databases statistics"
msgstr "Statistiques sur les bases de données"
-#: server_databases.php:117 server_status.php:260
+#: server_databases.php:117 server_status.php:371
#: setup/lib/messages.inc.php:117
msgid "Tables"
msgstr "Tables"
@@ -5306,6 +4450,16 @@ msgstr "Réplication esclave"
msgid "Jump to database"
msgstr "Aller à la base de données"
+#: server_databases.php:267
+#| msgid "Master replication"
+msgid "Not replicated"
+msgstr "Non répliqué"
+
+#: server_databases.php:273
+#| msgid "Replication"
+msgid "Replicated"
+msgstr "Répliqué"
+
#: server_databases.php:289
#, php-format
msgid "Check privileges for database "%s"."
@@ -5339,139 +4493,344 @@ msgstr "Moteurs de stockage"
msgid "View dump (schema) of databases"
msgstr "Schéma et/ou contenu des bases de données"
-#: server_privileges.php:263 server_privileges.php:264
+#: server_privileges.php:24 server_privileges.php:266
+msgid "Includes all privileges except GRANT."
+msgstr "Tous les privilèges sauf GRANT."
+
+#: server_privileges.php:25 server_privileges.php:192
+#: server_privileges.php:515
+msgid "Allows altering the structure of existing tables."
+msgstr "Permission de modifier la structure des tables existantes."
+
+#: server_privileges.php:26 server_privileges.php:208
+#: server_privileges.php:521
+msgid "Allows altering and dropping stored routines."
+msgstr "Permission de modifier et de supprimer des procédures stockées."
+
+#: server_privileges.php:27 server_privileges.php:184
+#: server_privileges.php:514
+msgid "Allows creating new databases and tables."
+msgstr "Permission de créer des bases de données et des tables."
+
+#: server_privileges.php:28 server_privileges.php:207
+#: server_privileges.php:520
+msgid "Allows creating stored routines."
+msgstr "Permission de créer des procédures stockées."
+
+#: server_privileges.php:29 server_privileges.php:514
+msgid "Allows creating new tables."
+msgstr "Permission de créer des tables."
+
+#: server_privileges.php:30 server_privileges.php:195
+#: server_privileges.php:518
+msgid "Allows creating temporary tables."
+msgstr "Permission de créer des tables temporaires."
+
+#: server_privileges.php:31 server_privileges.php:209
+#: server_privileges.php:554
+msgid "Allows creating, dropping and renaming user accounts."
+msgstr "Permission de créer, supprimer et renommer des comptes utilisateurs"
+
+#: server_privileges.php:32 server_privileges.php:199
+#: server_privileges.php:203 server_privileges.php:526
+#: server_privileges.php:530
+msgid "Allows creating new views."
+msgstr "Permission de créer des vues."
+
+#: server_privileges.php:33 server_privileges.php:183
+#: server_privileges.php:506
+msgid "Allows deleting data."
+msgstr "Permission de détruire des données"
+
+#: server_privileges.php:34 server_privileges.php:185
+#: server_privileges.php:517
+msgid "Allows dropping databases and tables."
+msgstr "Permission d'effacer des bases de données et des tables."
+
+#: server_privileges.php:35 server_privileges.php:517
+msgid "Allows dropping tables."
+msgstr "Permission d'effacer des tables."
+
+#: server_privileges.php:36 server_privileges.php:200
+#: server_privileges.php:534
+msgid "Allows to set up events for the event scheduler"
+msgstr ""
+"Permission de mettre en place des événements pour le programmateur "
+"d'événements"
+
+#: server_privileges.php:37 server_privileges.php:210
+#: server_privileges.php:522
+msgid "Allows executing stored routines."
+msgstr "Permission d'exécuter des procédures stockées"
+
+#: server_privileges.php:38 server_privileges.php:189
+#: server_privileges.php:509
+msgid "Allows importing data from and exporting data into files."
+msgstr ""
+"Permission d'importer et d'exporter des données à partir de / dans des "
+"fichiers."
+
+#: server_privileges.php:39 server_privileges.php:540
+msgid ""
+"Allows adding users and privileges without reloading the privilege tables."
+msgstr ""
+"Permission d'ajouter des utilisateurs et des privilèges sans avoir besoin de "
+"recharger les privilèges."
+
+#: server_privileges.php:40 server_privileges.php:191
+#: server_privileges.php:516
+msgid "Allows creating and dropping indexes."
+msgstr "Permission de créer et d'effacer des index."
+
+#: server_privileges.php:41 server_privileges.php:181
+#: server_privileges.php:442 server_privileges.php:504
+msgid "Allows inserting and replacing data."
+msgstr "Permission d'ajouter et de remplacer des données"
+
+#: server_privileges.php:42 server_privileges.php:196
+#: server_privileges.php:549
+msgid "Allows locking tables for the current thread."
+msgstr ""
+"Permission de verrouiller des enregistrements dans le fil courant (unité "
+"d'exécution)."
+
+#: server_privileges.php:43 server_privileges.php:646
+#: server_privileges.php:648
+msgid "Limits the number of new connections the user may open per hour."
+msgstr ""
+"Limite du nombre de nouvelles connexions qu'un utilisateur peut démarrer, "
+"par heure."
+
+#: server_privileges.php:44 server_privileges.php:634
+#: server_privileges.php:636
+msgid "Limits the number of queries the user may send to the server per hour."
+msgstr ""
+"Limite du nombre de requêtes qu'un utilisateur peut envoyer au serveur, par "
+"heure."
+
+#: server_privileges.php:45 server_privileges.php:640
+#: server_privileges.php:642
+msgid ""
+"Limits the number of commands that change any table or database the user may "
+"execute per hour."
+msgstr ""
+"Limite du nombre de commandes changeant une table ou base de données, qu'un "
+"utilisateur peut exécuter, par heure."
+
+#: server_privileges.php:46 server_privileges.php:652
+#: server_privileges.php:654
+msgid "Limits the number of simultaneous connections the user may have."
+msgstr ""
+"Limite le nombre de connexions simultanées autorisées pour un utilisateur."
+
+#: server_privileges.php:47 server_privileges.php:188
+#: server_privileges.php:544
+msgid "Allows viewing processes of all users"
+msgstr "Permission de voir les processus de tous les utilisateurs"
+
+#: server_privileges.php:48 server_privileges.php:190
+#: server_privileges.php:448 server_privileges.php:550
+msgid "Has no effect in this MySQL version."
+msgstr "Non effectif dans cette version de MySQL."
+
+#: server_privileges.php:49 server_privileges.php:186
+#: server_privileges.php:545
+msgid "Allows reloading server settings and flushing the server's caches."
+msgstr ""
+"Permission de recharger les réglages du serveur, et de vidanger la mémoire "
+"cache."
+
+#: server_privileges.php:50 server_privileges.php:198
+#: server_privileges.php:552
+msgid "Allows the user to ask where the slaves / masters are."
+msgstr ""
+"Permission de demander où sont les maîtres et les esclaves (système de "
+"duplication)."
+
+#: server_privileges.php:51 server_privileges.php:197
+#: server_privileges.php:553
+msgid "Needed for the replication slaves."
+msgstr "Nécessaire pour les esclaves (système de duplication)."
+
+#: server_privileges.php:52 server_privileges.php:180
+#: server_privileges.php:439 server_privileges.php:503
+msgid "Allows reading data."
+msgstr "Permission de lire des données."
+
+#: server_privileges.php:53 server_privileges.php:193
+#: server_privileges.php:547
+msgid "Gives access to the complete list of databases."
+msgstr "Permission de voir la liste complète des noms de bases de données."
+
+#: server_privileges.php:54 server_privileges.php:204
+#: server_privileges.php:206 server_privileges.php:519
+msgid "Allows performing SHOW CREATE VIEW queries."
+msgstr "Permission d'exécuter SHOW CREATE VIEW."
+
+#: server_privileges.php:55 server_privileges.php:187
+#: server_privileges.php:546
+msgid "Allows shutting down the server."
+msgstr "Permission d'arrêter le serveur MySQL."
+
+#: server_privileges.php:56 server_privileges.php:194
+#: server_privileges.php:543
+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 ""
+"Permission de se connecter, même si le nombre maximal de connexions permises "
+"a été atteint; ceci est requis pour la plupart des opérations de type "
+"administratif, par exemple les changements de variables globales ou la "
+"destruction de processus."
+
+#: server_privileges.php:57 server_privileges.php:201
+#: server_privileges.php:535
+msgid "Allows creating and dropping triggers"
+msgstr "Permission de créer et de supprimer des déclencheurs"
+
+#: server_privileges.php:58 server_privileges.php:182
+#: server_privileges.php:445 server_privileges.php:505
+msgid "Allows changing data."
+msgstr "Permission de changer des données."
+
+#: server_privileges.php:59 server_privileges.php:260
+msgid "No privileges."
+msgstr "Pas de privilèges"
+
+#: server_privileges.php:302 server_privileges.php:303
msgctxt "None privileges"
msgid "None"
msgstr "Aucun"
-#: server_privileges.php:392 server_privileges.php:527
-#: server_privileges.php:1679 server_privileges.php:1685
+#: server_privileges.php:431 server_privileges.php:566
+#: server_privileges.php:1718 server_privileges.php:1724
msgid "Table-specific privileges"
msgstr "Privilèges spécifiques à une table"
-#: server_privileges.php:393 server_privileges.php:535
-#: server_privileges.php:1501
+#: server_privileges.php:432 server_privileges.php:574
+#: server_privileges.php:1540
msgid " Note: MySQL privilege names are expressed in English "
msgstr " Veuillez noter que les noms de privilèges sont exprimés en anglais"
-#: server_privileges.php:524 server_privileges.php:1500
+#: server_privileges.php:563 server_privileges.php:1539
msgid "Global privileges"
msgstr "Privilèges globaux"
-#: server_privileges.php:526 server_privileges.php:1679
+#: server_privileges.php:565 server_privileges.php:1718
msgid "Database-specific privileges"
msgstr "Privilèges spécifiques à une base de données"
-#: server_privileges.php:571
+#: server_privileges.php:610
msgid "Administration"
msgstr "Administration"
-#: server_privileges.php:591
+#: server_privileges.php:630
msgid "Resource limits"
msgstr "Limites de ressources."
-#: server_privileges.php:592
+#: server_privileges.php:631
msgid "Note: Setting these options to 0 (zero) removes the limit."
msgstr "Note: Une valeur de 0 (zero) enlève la limite."
-#: server_privileges.php:669
+#: server_privileges.php:708
msgid "Login Information"
msgstr "Information pour la connexion"
-#: server_privileges.php:763
+#: server_privileges.php:802
msgid "Do not change the password"
msgstr "Conserver le mot de passe"
-#: server_privileges.php:804 server_privileges.php:2166
+#: server_privileges.php:843 server_privileges.php:2205
msgid "No user found."
msgstr "Aucun utilisateur n'a été trouvé."
-#: server_privileges.php:848
+#: server_privileges.php:887
#, php-format
msgid "The user %s already exists!"
msgstr "L'utilisateur %s existe déjà!"
-#: server_privileges.php:931
+#: server_privileges.php:970
msgid "You have added a new user."
msgstr "Vous avez ajouté un utilisateur"
-#: server_privileges.php:1152
+#: server_privileges.php:1191
#, php-format
msgid "You have updated the privileges for %s."
msgstr "Vous avez modifié les privilèges pour %s."
-#: server_privileges.php:1176
+#: server_privileges.php:1215
#, php-format
msgid "You have revoked the privileges for %s"
msgstr "Vous avez révoqué les privilèges pour %s"
-#: server_privileges.php:1212
+#: server_privileges.php:1251
#, php-format
msgid "The password for %s was changed successfully."
msgstr "Le mot de passe de %s a été changé."
-#: server_privileges.php:1232
+#: server_privileges.php:1271
#, php-format
msgid "Deleting %s"
msgstr "Destruction de %s"
-#: server_privileges.php:1243
+#: server_privileges.php:1282
msgid "No users selected for deleting!"
msgstr "Aucun utilisateur n'a été choisi en vue de le détruire!"
-#: server_privileges.php:1246
+#: server_privileges.php:1285
msgid "Reloading the privileges"
msgstr "Chargement des privilèges en cours."
-#: server_privileges.php:1261
+#: server_privileges.php:1300
msgid "The selected users have been deleted successfully."
msgstr "Les utilisateurs sélectionnés ont été effacés."
-#: server_privileges.php:1296
+#: server_privileges.php:1335
msgid "The privileges were reloaded successfully."
msgstr "Les privilèges ont été rechargés."
-#: server_privileges.php:1324 server_privileges.php:1610
+#: server_privileges.php:1363 server_privileges.php:1649
msgid "Edit Privileges"
msgstr "Changer les privilèges"
-#: server_privileges.php:1333
+#: server_privileges.php:1372
msgid "Revoke"
msgstr "Révoquer"
-#: server_privileges.php:1365
+#: server_privileges.php:1404
msgid "User overview"
msgstr "Vue d'ensemble des utilisateurs"
-#: server_privileges.php:1502 server_privileges.php:1684
-#: server_privileges.php:2033
+#: server_privileges.php:1541 server_privileges.php:1723
+#: server_privileges.php:2072
msgid "Grant"
msgstr " «Grant »"
-#: server_privileges.php:1521 server_privileges.php:2123
+#: server_privileges.php:1560 server_privileges.php:2162
msgid "Any"
msgstr "N'importe quel"
-#: server_privileges.php:1570 server_privileges.php:1594
-#: server_privileges.php:1988 server_privileges.php:2177
+#: server_privileges.php:1609 server_privileges.php:1633
+#: server_privileges.php:2027 server_privileges.php:2216
msgid "Add a new User"
msgstr "Ajouter un utilisateur"
-#: server_privileges.php:1575
+#: server_privileges.php:1614
msgid "Remove selected users"
msgstr "Effacer les utilisateurs sélectionnés."
-#: server_privileges.php:1578
+#: server_privileges.php:1617
msgid "Revoke all active privileges from the users and delete them afterwards."
msgstr "Effacer tous les privilèges de ces utilisateurs, puis les effacer."
-#: server_privileges.php:1579 server_privileges.php:1580
-#: server_privileges.php:1581
+#: server_privileges.php:1618 server_privileges.php:1619
+#: server_privileges.php:1620
msgid "Drop the databases that have the same names as the users."
msgstr ""
"Supprimer les bases de données portant le même nom que les utilisateurs"
-#: server_privileges.php:1597
+#: server_privileges.php:1636
#, php-format
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
@@ -5484,49 +4843,49 @@ msgstr ""
"effectifs, si des changements manuels ont été apportés. Dans ce cas, vous "
"devriez %srecharger les privilèges%s avant de continuer."
-#: server_privileges.php:1645
+#: server_privileges.php:1684
msgid "The selected user was not found in the privilege table."
msgstr "L'utilisateur choisi n'existe pas dans la table des privilèges"
-#: server_privileges.php:1685
+#: server_privileges.php:1724
msgid "Column-specific privileges"
msgstr "Privilèges de colonnes"
-#: server_privileges.php:1886
+#: server_privileges.php:1925
msgid "Add privileges on the following database"
msgstr "Ajouter des privilèges sur cette base de données"
-#: server_privileges.php:1904
+#: server_privileges.php:1943
msgid "Wildcards % and _ should be escaped with a \\ to use them literally"
msgstr "Préfixer avec \\ les passepartouts _ et % pour un usage littéral"
-#: server_privileges.php:1907
+#: server_privileges.php:1946
msgid "Add privileges on the following table"
msgstr "Ajouter des privilèges sur cette table"
-#: server_privileges.php:1964
+#: server_privileges.php:2003
msgid "Change Login Information / Copy User"
msgstr "Changement des informations de connexion / Copie d'utilisateur"
-#: server_privileges.php:1967
+#: server_privileges.php:2006
msgid "Create a new user with the same privileges and ..."
msgstr "Créer un nouvel utilisateur avec les mêmes privilèges et ..."
-#: server_privileges.php:1969
+#: server_privileges.php:2008
msgid "... keep the old one."
msgstr "... conserver intact l'ancien utilisateur."
-#: server_privileges.php:1970
+#: server_privileges.php:2009
msgid " ... delete the old one from the user tables."
msgstr " ... supprimer l'ancien utilisateur."
-#: server_privileges.php:1971
+#: server_privileges.php:2010
msgid ""
" ... revoke all active privileges from the old one and delete it afterwards."
msgstr ""
" ... effacer tous les privilèges de l'ancien utilisateur, puis l'effacer."
-#: server_privileges.php:1972
+#: server_privileges.php:2011
msgid ""
" ... delete the old one from the user tables and reload the privileges "
"afterwards."
@@ -5534,44 +4893,44 @@ msgstr ""
" ... supprimer l'ancien utilisateur, puis recharger les privilèges au "
"serveur."
-#: server_privileges.php:1994
+#: server_privileges.php:2033
msgid "Database for user"
msgstr "Base de données pour cet utilisateur"
-#: server_privileges.php:1998
+#: server_privileges.php:2037
msgctxt "Create none database for user"
msgid "None"
msgstr "aucune"
-#: server_privileges.php:1999
+#: server_privileges.php:2038
msgid "Create database with same name and grant all privileges"
msgstr ""
"Créer une base portant son nom et donner à cet utilisateur tous les "
"privilèges sur cette base"
-#: server_privileges.php:2000
+#: server_privileges.php:2039
msgid "Grant all privileges on wildcard name (username\\_%)"
msgstr "Donner les privilèges passepartout (utilisateur\\_%)"
-#: server_privileges.php:2003
+#: server_privileges.php:2042
#, php-format
msgid "Grant all privileges on database "%s""
msgstr "Donner tous les privilèges sur la base de données "%s""
-#: server_privileges.php:2026
+#: server_privileges.php:2065
#, php-format
msgid "Users having access to "%s""
msgstr "Utilisateurs ayant accès à "%s""
-#: server_privileges.php:2134
+#: server_privileges.php:2173
msgid "global"
msgstr "global"
-#: server_privileges.php:2136
+#: server_privileges.php:2175
msgid "database-specific"
msgstr "spécifique à cette base de données"
-#: server_privileges.php:2138
+#: server_privileges.php:2177
msgid "wildcard"
msgstr "passepartout"
@@ -5620,7 +4979,7 @@ msgstr "Le serveur maître est maintenant %s"
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"
-#: server_replication.php:184 server_status.php:281
+#: server_replication.php:184 server_status.php:392
msgid "Show master status"
msgstr "Montrer l'état du maître"
@@ -5773,81 +5132,732 @@ msgstr ""
"Ce serveur n'est pas configuré comme esclave dans un processus de "
"réplication. Désirez-vous le configurer?"
+#: server_status.php:40
+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 ""
+"Le nombre de transactions qui ont utilisé la cache temporaire du log binaire "
+"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."
+
+#: server_status.php:41
+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."
+
+#: server_status.php:42
+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 "
+"to increase the tmp_table_size value to cause temporary tables to be memory-"
+"based instead of disk-based."
+msgstr ""
+"Le nombre de tables temporaires sur disque créées automatiquement par le "
+"serveur lors de l'exécution d'énoncés. Si la valeur du paramètre "
+"Created_tmp_disk_tables est trop grande, augmentez la valeur de "
+"tmp_table_size afin que les tables temporaires soient maintenues en mémoire "
+"au lieu d'être sur disque."
+
+#: server_status.php:43
+msgid "How many temporary files mysqld has created."
+msgstr "Le nombre de fichiers temporaires créés par mysqld."
+
+#: server_status.php:44
+msgid ""
+"The number of in-memory temporary tables created automatically by the server "
+"while executing statements."
+msgstr ""
+"Le nombre de tables temporaires en mémoire créées automatiquement par le "
+"serveur lors de l'exécution d'énoncés."
+
+#: server_status.php:45
+msgid ""
+"The number of rows written with INSERT DELAYED for which some error occurred "
+"(probably duplicate key)."
+msgstr ""
+"Le nombre d'enregistrements écrits avec INSERT DELAYED pour lesquels une "
+"erreur est survenue (probablement un doublon sur la clé)."
+
#: server_status.php:46
+msgid ""
+"The number of INSERT DELAYED handler threads in use. Every different table "
+"on which one uses INSERT DELAYED gets its own thread."
+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."
+
+#: server_status.php:47
+msgid "The number of INSERT DELAYED rows written."
+msgstr "Le nombre d'enregistrements écrits via INSERT DELAYED."
+
+#: server_status.php:48
+msgid "The number of executed FLUSH statements."
+msgstr "Le nombre de commandes FLUSH exécutées."
+
+#: server_status.php:49
+msgid "The number of internal COMMIT statements."
+msgstr "Le nombre de commandes COMMIT internes."
+
+#: server_status.php:50
+msgid "The number of times a row was deleted from a table."
+msgstr "Le nombre de fois qu'un enregistrement a été supprimé d'une table."
+
+#: server_status.php:51
+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 ""
+"Le serveur MySQL peut demander au moteur de données NDB Cluster s'il connaît "
+"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."
+
+#: server_status.php:52
+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 ""
+"Le nombre de fois que la première entrée a été lue depuis un index. Si c'est "
+"élevé, ceci suggère que le serveur effectue beaucoup de parcours complets "
+"d'un index; par exemple, SELECT col1 FROM foo, en assumant que col1 est une "
+"colonne indexée."
+
+#: server_status.php:53
+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 ""
+"Le nombre de requêtes pour lire un enregistrement via une clé. Si élevé, "
+"c'est une bonne indication que vos tables sont correctement indexées."
+
+#: server_status.php:54
+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 ""
+"Le nombre de requêtes de lecture du prochain enregistrement, en ordre de "
+"clé. Ceci est augmenté si vous interrogez une colonne indexée avec un "
+"critère de fourchette ou si vous parcourez l'index."
+
+#: server_status.php:55
+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 ""
+"Le nombre de requêtes de lecture de l'enregistrement précédent, en ordre de "
+"clé. Utilisé surtout pour optimiser ORDER BY ... DESC"
+
+#: server_status.php:56
+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 "
+"probably have a lot of queries that require MySQL to scan whole tables or "
+"you have joins that don't use keys properly."
+msgstr ""
+"Le nombre de requêtes de lecture d'un enregistrement basée sur une position "
+"fixe. Ce nombre est élevé si vous faites de nombreuses requêtes qui "
+"nécessitent de trier les résultats. Vous avez probablement un grand nombre "
+"de requêtes qui demandent à MySQL de parcourir des tables en entier, ou vous "
+"avez des jointures qui n'utilisent pas correctement les clés."
+
+#: server_status.php:57
+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 "
+"tables are not properly indexed or that your queries are not written to take "
+"advantage of the indexes you have."
+msgstr ""
+"Le nombre de requêtes de lecture du prochaine enregistrement dans le "
+"fichier. Élevé si vous faites plusieurs parcours de tables. Ceci suggère que "
+"vos 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."
+
+#: server_status.php:58
+msgid "The number of internal ROLLBACK statements."
+msgstr "Le nombre d'énoncés ROLLBACK internes."
+
+#: server_status.php:59
+msgid "The number of requests to update a row in a table."
+msgstr "Le nombre de requêtes de mise à jour d'enregistrements."
+
+#: server_status.php:60
+msgid "The number of requests to insert a row in a table."
+msgstr "Le nombre de requêtes d'insertion d'enregistrements."
+
+#: server_status.php:61
+msgid "The number of pages containing data (dirty or clean)."
+msgstr "Le nombre de pages contenant des données."
+
+#: server_status.php:62
+msgid "The number of pages currently dirty."
+msgstr "Le nombre de pages contenant des données «dirty»"
+
+#: server_status.php:63
+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."
+
+#: server_status.php:64
+msgid "The number of free pages."
+msgstr "Le nombre de pages libres"
+
+#: server_status.php:65
+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 ""
+"Le nombre de pages dans la réserve InnoDB. Ce sont des pages actuellement en "
+"train d'être lues ou écrites, ou qui ne peuvent être supprimées pour une "
+"autre raison."
+
+#: server_status.php:66
+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 "
+"be calculated as Innodb_buffer_pool_pages_total - "
+"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data."
+msgstr ""
+"Le nombre de pages occupées car elles ont été déallouées en raison de "
+"verrous sur les enregistrements. Cette valeur peut également être calculée "
+"comme suit: Innodb_buffer_pool_pages_total - Innodb_buffer_pool_pages_free - "
+"Innodb_buffer_pool_pages_data."
+
+#: server_status.php:67
+msgid "Total size of buffer pool, in pages."
+msgstr "Taille totale de la réserve, en pages."
+
+#: server_status.php:68
+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 ""
+"Le nombre de lectures «discontinues» effectuées par InnoDB. Ceci survient "
+"lorsqu'une requête doit balayer une large portion de table en ordre "
+"discontinu."
+
+#: server_status.php:69
+msgid ""
+"The number of sequential read-aheads InnoDB initiated. This happens when "
+"InnoDB does a sequential full table scan."
+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."
+
+#: server_status.php:70
+msgid "The number of logical read requests InnoDB has done."
+msgstr "Le nombre de requêtes de lectures logiques effectuées par InnoDB."
+
+#: server_status.php:71
+msgid ""
+"The number of logical reads that InnoDB could not satisfy from buffer pool "
+"and had to do a single-page read."
+msgstr ""
+"Le nombre de lectures que InnoDB n'a pu faire à partir de la réserve, menant "
+"à une lecture directe d'une page."
+
+#: server_status.php:72
+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 "
+"available, it's necessary to wait for pages to be flushed first. This "
+"counter counts instances of these waits. If the buffer pool size was set "
+"properly, this value should be small."
+msgstr ""
+"Normalement, l'écriture dans la réserve InnoDB se passe en arrière-plan. "
+"Cependant, s'il est nécessaire de lire ou de créer une page et qu'aucune "
+"page n'est disponible, InnoDB doit attendre que des pages soient libérées. "
+"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."
+
+#: server_status.php:73
+msgid "The number writes done to the InnoDB buffer pool."
+msgstr "Le nombre d'écritures faites dans la réserve InnoDB."
+
+#: server_status.php:74
+msgid "The number of fsync() operations so far."
+msgstr "Le nombre d'opérations fsync() faites jusqu'à présent."
+
+#: server_status.php:75
+msgid "The current number of pending fsync() operations."
+msgstr "Le nombre d'opérations fsync() actuellement en attente."
+
+#: server_status.php:76
+msgid "The current number of pending reads."
+msgstr "Le nombre actuel de lectures en attente."
+
+#: server_status.php:77
+msgid "The current number of pending writes."
+msgstr "Le nombre actuel d'écritures en attente."
+
+#: server_status.php:78
+msgid "The amount of data read so far, in bytes."
+msgstr "La quantité d'octets lus jusqu'à présent."
+
+#: server_status.php:79
+msgid "The total number of data reads."
+msgstr "Le nombre total de lectures de données."
+
+#: server_status.php:80
+msgid "The total number of data writes."
+msgstr "Le nombre total d'écritures de données."
+
+#: server_status.php:81
+msgid "The amount of data written so far, in bytes."
+msgstr "La quantité d'octets écrits jusqu'à présent."
+
+#: server_status.php:82
+msgid "The number of pages that have been written for doublewrite operations."
+msgstr "Le nombre de pages utilisées pour des opérations «doublewrite»."
+
+#: server_status.php:83
+msgid "The number of doublewrite operations that have been performed."
+msgstr "Le nombre d'opérations «doublewrite» effectuées."
+
+#: server_status.php:84
+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 ""
+"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."
+
+#: server_status.php:85
+msgid "The number of log write requests."
+msgstr "Le nombre de requêtes d'écritures sur le fichier témoin."
+
+#: server_status.php:86
+msgid "The number of physical writes to the log file."
+msgstr "Le nombre d'écritures physiques au fichier témoin."
+
+#: server_status.php:87
+msgid "The number of fsync() writes done to the log file."
+msgstr "Le nombre d'écritures fsync() sur le fichier témoin."
+
+#: server_status.php:88
+msgid "The number of pending log file fsyncs."
+msgstr "Le nombre de synchronisations (fsync) du fichier témoin en attente."
+
+#: server_status.php:89
+msgid "Pending log file writes."
+msgstr "Le nombre d'écritures du fichier témoin en attente."
+
+#: server_status.php:90
+msgid "The number of bytes written to the log file."
+msgstr "Le nombre d'octets écrits sur le fichier témoin."
+
+#: server_status.php:91
+msgid "The number of pages created."
+msgstr "Le nombre de pages créées."
+
+#: server_status.php:92
+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 ""
+"La taille de page InnoDB telle que compilée (16 Ko par défaut). Plusieurs "
+"valeurs sont comptées par page; la taille de page leur permet d'être "
+"facilement converties en octets."
+
+#: server_status.php:93
+msgid "The number of pages read."
+msgstr "Le nombre de pages lues."
+
+#: server_status.php:94
+msgid "The number of pages written."
+msgstr "Le nombre de pages écrites."
+
+#: server_status.php:95
+msgid "The number of row locks currently being waited for."
+msgstr "Le nombre de verrous d'enregistrements actuellement en attente."
+
+#: server_status.php:96
+msgid "The average time to acquire a row lock, in milliseconds."
+msgstr "Le temps d'attente moyen pour acquérir un verrou, en millisecondes."
+
+#: server_status.php:97
+msgid "The total time spent in acquiring row locks, in milliseconds."
+msgstr "Le temps total utilisé pour acquérir un verrou, en millisecondes."
+
+#: server_status.php:98
+msgid "The maximum time to acquire a row lock, in milliseconds."
+msgstr "Le temps d'attente maximum pour acquérir un verrou, en millisecondes."
+
+#: server_status.php:99
+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."
+
+#: server_status.php:100
+msgid "The number of rows deleted from InnoDB tables."
+msgstr "Le nombre d'enregistrements supprimés des tables InnoDB."
+
+#: server_status.php:101
+msgid "The number of rows inserted in InnoDB tables."
+msgstr "Le nombre d'enregistrements insérés dans des tables InnoDB."
+
+#: server_status.php:102
+msgid "The number of rows read from InnoDB tables."
+msgstr "Le nombre d'enregistrements lus dans des tables InnoDB."
+
+#: server_status.php:103
+msgid "The number of rows updated in InnoDB tables."
+msgstr "Le nombre d'enregistrements mis à jour dans des tables InnoDB."
+
+#: server_status.php:104
+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 ""
+"Le nombre de blocs de clés dans la cache de clés qui ont été modifiés mais "
+"pas encore transférés sur disque. Anciennement connu sous le nom "
+"Not_flushed_key_blocks."
+
+#: server_status.php:105
+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 ""
+"Le nombre de blocs inutilisés dans la cache de clés. Vous pouvez utiliser "
+"cette valeur pour déterminer la proportion de la cache de clés qui est "
+"utilisée."
+
+#: server_status.php:106
+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 ""
+"Le nombre maximum de blocs utilisés dans le cache. Il s'agit de la valeur "
+"maximum du nombre de blocs qui ont été utilisés en même temps dans le cache "
+"de clés."
+
+#: server_status.php:107
+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."
+
+#: server_status.php:108
+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 ""
+"Le nombre de lectures physiques d'un bloc de clés depuis le disque. Si cette "
+"valeur est élevée, la taille de votre mémoire tampon de clés est trop "
+"petite. Le taux d'échec de la cache peut être calculé par Key reads/Key read "
+"requests."
+
+#: server_status.php:109
+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."
+
+#: server_status.php:110
+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."
+
+#: server_status.php:111
+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 ""
+"Le coût total de la dernière requête compilée, tel que calculé par "
+"l'optimiseur de requêtes. Utile pour comparer le coût de diverses stratégies "
+"pour une même requête. La valeur de 0 indique qu'aucune requête n'a encore "
+"été compilée."
+
+#: server_status.php:112
+msgid "The number of rows waiting to be written in INSERT DELAYED queues."
+msgstr "Le nombre d'enregistrements en attente d'écriture (INSERT DELAYED)."
+
+#: server_status.php:113
+msgid ""
+"The number of tables that have been opened. If opened tables is big, your "
+"table cache value is probably too small."
+msgstr ""
+"Le nombre tables qui ont été ouvertes. Si trop élevé, votre cache de table "
+"est probablement trop petite."
+
+#: server_status.php:114
+msgid "The number of files that are open."
+msgstr "Le nombre de fichiers qui sont ouverts."
+
+#: server_status.php:115
+msgid "The number of streams that are open (used mainly for logging)."
+msgstr "Le nombre de flux de données qui sont ouverts."
+
+#: server_status.php:116
+msgid "The number of tables that are open."
+msgstr "Le nombre de tables qui sont ouvertes."
+
+#: server_status.php:117
+msgid "The number of free memory blocks in query cache."
+msgstr "Le nombre de blocs de mémoire libre dans la cache de requêtes."
+
+#: server_status.php:118
+msgid "The amount of free memory for query cache."
+msgstr "La quantité de mémoire libre dans la cache de requêtes."
+
+#: server_status.php:119
+msgid "The number of cache hits."
+msgstr "Le nombre de succès dans la cache."
+
+#: server_status.php:120
+msgid "The number of queries added to the cache."
+msgstr "Le nombre de requêtes ajoutées à la cache."
+
+#: server_status.php:121
+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 "
+"cache size. The query cache uses a least recently used (LRU) strategy to "
+"decide which queries to remove from the cache."
+msgstr ""
+"Le nombre de requêtes qui ont été retirées de la cache pour libérer de la "
+"mémoire afin de mettre en cache de nouvelles requêtes. Peut être utilisé "
+"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)."
+
+#: server_status.php:122
+msgid ""
+"The number of non-cached queries (not cachable, or not cached due to the "
+"query_cache_type setting)."
+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)."
+
+#: server_status.php:123
+msgid "The number of queries registered in the cache."
+msgstr "Le nombre de requêtes enregistrées dans la cache."
+
+#: server_status.php:124
+msgid "The total number of blocks in the query cache."
+msgstr "Le nombre total de blocs dans la cache de requêtes."
+
+#: server_status.php:125
+msgctxt "$strShowStatusReset"
+msgid "Reset"
+msgstr "Réinitialiser"
+
+#: server_status.php:126
+msgid "The status of failsafe replication (not yet implemented)."
+msgstr "L'état de la réplication sans échec (pas encore implantée)."
+
+#: server_status.php:127
+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 ""
+"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."
+
+#: server_status.php:128
+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."
+
+#: server_status.php:129
+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 ""
+"Le nombre de jointures sans clés qui vérifient l'utilisation de clé à chaque "
+"enregistrement. (Si ceci est supérieur à 0, vérifiez soigneusement les "
+"indexes de vos tables.)"
+
+#: server_status.php:130
+msgid ""
+"The number of joins that used ranges on the first table. (It's normally not "
+"critical even if this is big.)"
+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.)"
+
+#: server_status.php:131
+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."
+
+#: server_status.php:132
+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."
+
+#: server_status.php:133
+msgid ""
+"Total (since startup) number of times the replication slave SQL thread has "
+"retried transactions."
+msgstr ""
+"Nombre de fois (depuis le démarrage) que le fil d'exécution SQL de l'esclave "
+"a envoyé à nouveau des transactions."
+
+#: server_status.php:134
+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."
+
+#: server_status.php:135
+msgid ""
+"The number of threads that have taken more than slow_launch_time seconds to "
+"create."
+msgstr ""
+"Le nombre de fils d'exécution dont le temps de création a excédé "
+"slow_launch_time secondes."
+
+#: server_status.php:136
+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."
+
+#: server_status.php:137
+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 ""
+"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."
+
+#: server_status.php:138
+msgid "The number of sorts that were done with ranges."
+msgstr "Le nombre de tri effectués avec des plages."
+
+#: server_status.php:139
+msgid "The number of sorted rows."
+msgstr "Le nombre d'enregistrements triés."
+
+#: server_status.php:140
+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."
+
+#: server_status.php:141
+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."
+
+#: server_status.php:142
+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 "
+"should first optimize your queries, and then either split your table or "
+"tables or use replication."
+msgstr ""
+"Le nombre de fois qu'un verrou de table n'a pu être acquis immédiatement, "
+"induisant un temps d'attente. Si ce nombre est élevé et que vous éprouvez "
+"des problèmes de performance, commencez par optimiser vos requêtes, puis "
+"subdivisez vos tables ou encore utiliser la réplication."
+
+#: server_status.php:143
+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 ""
+"Le nombre de fils dans la cache des fils d'exécution. Le taux peut être "
+"calculé via Nombre de fils / connexion. Si cette valeur est en rouge, vous "
+"devriez augmenter la taille de cette cache."
+
+#: server_status.php:144
+msgid "The number of currently open connections."
+msgstr "Le nombre de connexions ouvertes actuellement."
+
+#: server_status.php:145
+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 "
+"doesn't give a notable performance improvement if you have a good thread "
+"implementation.)"
+msgstr ""
+"Le nombre de fils d'exécution créés afin de gérer les connexions. Si ce "
+"nombre est trop grand, vous pourriez augmenter la valeur du paramètre "
+"thread_cache_size. (Normalement, ceci ne procure pas une amélioration "
+"perceptible de la performance si votre serveur gère correctement les fils "
+"d'exécution."
+
+#: server_status.php:146
+msgid "The number of threads that are not sleeping."
+msgstr "Le nombre de fils d'exécution non suspendus."
+
+#: server_status.php:157
msgid "Runtime Information"
msgstr "Informations sur le serveur"
-#: server_status.php:250
+#: server_status.php:361
msgid "Handler"
msgstr "Gestionnaire"
-#: server_status.php:251
+#: server_status.php:362
msgid "Query cache"
msgstr "Cache des requêtes"
-#: server_status.php:252
+#: server_status.php:363
msgid "Threads"
msgstr "Fils d'exécution"
-#: server_status.php:254
+#: server_status.php:365
msgid "Temporary data"
msgstr "Données temporaires"
-#: server_status.php:255
+#: server_status.php:366
msgid "Delayed inserts"
msgstr "Insertions avec délais"
-#: server_status.php:256
+#: server_status.php:367
msgid "Key cache"
msgstr "Cache des clés"
-#: server_status.php:257
+#: server_status.php:368
msgid "Joins"
msgstr "Jointures"
-#: server_status.php:259
+#: server_status.php:370
msgid "Sorting"
msgstr "Mécanisme de tri"
-#: server_status.php:261
+#: server_status.php:372
msgid "Transaction coordinator"
msgstr "Coordonnateur des transactions"
-#: server_status.php:271
+#: server_status.php:382
msgid "Flush (close) all tables"
msgstr "Fermer toutes les tables"
-#: server_status.php:273
+#: server_status.php:384
msgid "Show open tables"
msgstr "Montrer les tables ouvertes"
-#: server_status.php:278
+#: server_status.php:389
msgid "Show slave hosts"
msgstr "Montrer les serveurs esclaves"
-#: server_status.php:284
+#: server_status.php:395
msgid "Show slave status"
msgstr "Montrer l'état des serveurs esclaves"
-#: server_status.php:289
+#: server_status.php:400
msgid "Flush query cache"
msgstr "Vider la cache des requêtes"
-#: server_status.php:294
+#: server_status.php:405
msgid "Show processes"
msgstr "Afficher les processus"
-#: server_status.php:344
+#: server_status.php:455
msgctxt "for Show status"
msgid "Reset"
msgstr "Réinitialiser"
-#: server_status.php:350
+#: server_status.php:461
#, php-format
msgid "This MySQL server has been running for %s. It started up on %s."
msgstr "Ce serveur MySQL fonctionne depuis %s. Il a démarré le %s."
-#: server_status.php:360
+#: server_status.php:471
msgid ""
"This MySQL server works as master and slave in replication"
"b> process."
@@ -5855,19 +5865,19 @@ msgstr ""
"Ce serveur est un serveur maître et esclave dans le processus "
"de réplication."
-#: server_status.php:362
+#: server_status.php:473
msgid "This MySQL server works as master in replication process."
msgstr ""
"Ce serveur est un serveur maître dans le processus de réplication"
"b>."
-#: server_status.php:364
+#: server_status.php:475
msgid "This MySQL server works as slave in replication process."
msgstr ""
"Ce serveur est un serveur esclave dans le processus de "
"réplication."
-#: server_status.php:366
+#: server_status.php:477
msgid ""
"For further information about replication status on the server, please visit "
"the replication section."
@@ -5875,7 +5885,7 @@ msgstr ""
"Pour plus d'information sur l'état de la réplication sur ce serveur, "
"consultez la section de réplication."
-#: server_status.php:383
+#: server_status.php:494
msgid ""
"Server traffic: These tables show the network traffic statistics of "
"this MySQL server since its startup."
@@ -5883,11 +5893,11 @@ msgstr ""
"Statistiques sur le trafic: Ce tableau indique le trafic réseau "
"observé sur ce serveur MySQL depuis son démarrage."
-#: server_status.php:388
+#: server_status.php:499
msgid "Traffic"
msgstr "Trafic"
-#: server_status.php:388
+#: server_status.php:499
msgid ""
"On a busy server, the byte counters may overrun, so those statistics as "
"reported by the MySQL server may be incorrect."
@@ -5896,36 +5906,36 @@ msgstr ""
"dépassée, auquel cas les statistiques rapportées par MySQL peuvent être "
"inexactes."
-#: server_status.php:389 server_status.php:434 server_status.php:497
-#: server_status.php:555
+#: server_status.php:500 server_status.php:545 server_status.php:608
+#: server_status.php:666
msgid "per hour"
msgstr "par heure"
-#: server_status.php:394
+#: server_status.php:505
msgid "Received"
msgstr "Reçu"
-#: server_status.php:404
+#: server_status.php:515
msgid "Sent"
msgstr "Envoyé"
-#: server_status.php:433
+#: server_status.php:544
msgid "Connections"
msgstr "Connexions"
-#: server_status.php:440
+#: server_status.php:551
msgid "max. concurrent connections"
msgstr "max. de connexions simultanées"
-#: server_status.php:447
+#: server_status.php:558
msgid "Failed attempts"
msgstr "Tentatives échouées"
-#: server_status.php:461
+#: server_status.php:572
msgid "Aborted"
msgstr "Arrêts prématurés"
-#: server_status.php:490
+#: server_status.php:601
#, php-format
msgid ""
"Query statistics: Since its startup, %s queries have been sent to the "
@@ -5934,19 +5944,19 @@ msgstr ""
"Statistiques sur les requêtes: Depuis son démarrage, %s requêtes ont "
"été envoyées au serveur."
-#: server_status.php:498
+#: server_status.php:609
msgid "per minute"
msgstr "par minute"
-#: server_status.php:499
+#: server_status.php:610
msgid "per second"
msgstr "par seconde"
-#: server_status.php:554
+#: server_status.php:665
msgid "Query type"
msgstr "Type de requête"
-#: server_status.php:721
+#: server_status.php:832
msgid "Replication status"
msgstr "État de la réplication"
@@ -8219,10 +8229,8 @@ msgid "Propose table structure"
msgstr "Suggérer des optimisations quant à la structure de la table"
#: tbl_structure.php:540
-#, fuzzy
-#| msgid "Add column(s)"
msgid "Add column"
-msgstr "Ajouter des colonnes"
+msgstr "Ajouter une colonne"
#: tbl_structure.php:554
msgid "At End of Table"
@@ -8433,126 +8441,3 @@ msgstr "Nom de la vue"
#: view_operations.php:93
msgid "Rename view to"
msgstr "Changer le nom de la vue pour"
-
-#~| msgid "Add new field"
-#~ msgid "Add field"
-#~ msgstr "Ajouter une colonne"
-
-#~ msgid "Field"
-#~ msgstr "Champ"
-
-#~ msgid "Records"
-#~ msgstr "Enregistrements"
-
-#~ msgid "Fields terminated by"
-#~ msgstr "Champs terminés par"
-
-#~ msgid "Fields"
-#~ msgstr "Champs"
-
-#~ msgid "Add %s field(s)"
-#~ msgstr "Ajouter %s champ(s)"
-
-#~ msgid "Field %s has been dropped"
-#~ msgstr "Le champ %s a été effacé"
-
-#~ msgid "See image/jpeg: inline"
-#~ msgstr "Voir image/jpeg: inline"
-
-#~ msgid "zipped"
-#~ msgstr "zippé"
-
-#~ msgid "gzipped"
-#~ msgstr "gzippé"
-
-#~ msgid "bzipped"
-#~ msgstr "bzippé"
-
-#~ msgid ""
-#~ "Add custom comment into header (\n"
-#~ " splits lines)"
-#~ msgstr ""
-#~ "Ajouter des commentaires au début (\n"
-#~ " sépare les lignes)"
-
-#~ msgid "and"
-#~ msgstr "et"
-
-#~ msgctxt "$strBLOBRepositoryDisabled"
-#~ msgid "Disabled"
-#~ msgstr "Désactivé"
-
-#~ msgctxt "$strBLOBRepositoryEnabled"
-#~ msgid "Enabled"
-#~ msgstr "Activé"
-
-#~ msgctxt "$strBLOBRepositoryRepair"
-#~ msgid "Repair"
-#~ msgstr "Réparer"
-
-#~ msgid "Calendar"
-#~ msgstr "Calendrier"
-
-#~ msgid "MySQL 4.0 compatible"
-#~ msgstr "compatible MySQL 4.0"
-
-#~ msgid "Could not load default configuration from: \"%1$s\""
-#~ msgstr "Chargement de la configuration par défaut impossible depuis «%1$s»"
-
-#~ msgid "Create an index on %s columns"
-#~ msgstr "Créer un index sur %s colonnes"
-
-#~ msgctxt "$strCreateTableShort"
-#~ msgid "Create table"
-#~ msgstr "Créer une table"
-
-#~ msgctxt "$strCreateUserDatabaseNone"
-#~ msgid "None"
-#~ msgstr "aucune"
-
-#~ msgid "Flush the table (\"FLUSH\")"
-#~ msgstr "Recharger la table ( «FLUSH »)"
-
-#~ msgid "Invalid server index: \"%s\""
-#~ msgstr "Indice de serveur invalide: «%s »"
-
-#~ msgctxt "$strMIME_description"
-#~ msgid "Description"
-#~ msgstr "Description"
-
-#~ msgctxt "$strNoneDefault"
-#~ msgid "None"
-#~ msgstr "Aucun"
-
-#~ msgid "Schema of the \"%s\" database - Page %s"
-#~ msgstr "Schéma de la base «%s» - Page %s"
-
-#~ msgid "The \"%s\" table doesn't exist!"
-#~ msgstr "La table «%s» n'existe pas !"
-
-#~ msgid ""
-#~ "This MySQL server works as %s in replication process. For further "
-#~ "information about replication status on the server, please visit the replication section."
-#~ msgstr ""
-#~ "Ce serveur MySQL agit en tant que %s dans le processus de réplication"
-#~ "b>. Pour plus d'information sur l'état de la réplication sur ce serveur, "
-#~ "consultez la section de réplication."
-
-#~ msgid "running on %s"
-#~ msgstr "sur le serveur %s"
-
-#~ msgid "The scale factor is too small to fit the schema on one page"
-#~ msgstr "Veuillez augmenter l'échelle car le schéma déborde la page"
-
-#~ msgid ""
-#~ "Cannot start session without errors, please check errors given in your "
-#~ "PHP and/or webserver log file and configure your PHP installation "
-#~ "properly."
-#~ msgstr ""
-#~ "Erreur lors du démarrage de la session, veuillez vérifier les erreurs "
-#~ "indiquées par PHP ou dans le fichier témoin du serveur web, et configurer "
-#~ "PHP correctement."
-
-#~ msgid "Import currencies (.00 to 5.00)"
-#~ msgstr "Importer les valeurs de monnaie (de .00 à 5.00)"
diff --git a/po/gl.po b/po/gl.po
index c1f1995f1..5f83204a9 100755
--- a/po/gl.po
+++ b/po/gl.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-06-04 16:07-0400\n"
+"POT-Creation-Date: 2010-06-08 12:32-0400\n"
"PO-Revision-Date: 2010-03-12 09:14+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: galician \n"
@@ -14,11 +14,11 @@ msgstr ""
"X-Generator: Translate Toolkit 1.5.3\n"
#: browse_foreigners.php:38 browse_foreigners.php:59
-#: libraries/display_tbl.lib.php:417 server_privileges.php:1475
+#: libraries/display_tbl.lib.php:417 server_privileges.php:1514
msgid "Show all"
msgstr "Ver todos os rexistros"
-#: browse_foreigners.php:82 libraries/common.lib.php:2304
+#: browse_foreigners.php:82 libraries/common.lib.php:2313
#: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:394
#: libraries/export/pdf.php:147 pdf_schema.php:283 pdf_schema.php:1123
#: pdf_schema.php:1139
@@ -38,8 +38,8 @@ msgstr ""
#: browse_foreigners.php:150 db_structure.php:79 db_structure.php:80
#: db_structure.php:91 db_structure.php:93 db_structure.php:104
-#: db_structure.php:106 libraries/common.lib.php:2822
-#: libraries/common.lib.php:2829 libraries/db_links.inc.php:75
+#: db_structure.php:106 libraries/common.lib.php:2831
+#: libraries/common.lib.php:2838 libraries/db_links.inc.php:75
#: libraries/tbl_links.inc.php:63
msgid "Search"
msgstr "Procurar"
@@ -49,7 +49,7 @@ msgstr "Procurar"
#: db_structure.php:567 js/messages.php:48 libraries/Config.class.php:1046
#: libraries/Theme_Manager.class.php:311
#: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719
-#: libraries/common.lib.php:1333 libraries/common.lib.php:2279
+#: libraries/common.lib.php:1335 libraries/common.lib.php:2288
#: libraries/display_change_password.lib.php:82
#: libraries/display_create_table.lib.php:63
#: libraries/display_export.lib.php:275 libraries/display_import.lib.php:276
@@ -60,9 +60,9 @@ msgstr "Procurar"
#: libraries/sql_query_form.lib.php:552 libraries/tbl_properties.inc.php:782
#: main.php:128 navigation.php:237 pdf_pages.php:292 pdf_pages.php:328
#: pdf_pages.php:530 pmd_pdf.php:116 server_binlog.php:142
-#: server_privileges.php:625 server_privileges.php:1585
-#: server_privileges.php:1932 server_privileges.php:1979
-#: server_privileges.php:2018 server_replication.php:235
+#: server_privileges.php:664 server_privileges.php:1624
+#: server_privileges.php:1971 server_privileges.php:2018
+#: server_privileges.php:2057 server_replication.php:235
#: server_replication.php:318 server_replication.php:341
#: server_synchronize.php:1209 tbl_change.php:330 tbl_change.php:1174
#: tbl_change.php:1211 tbl_indexes.php:254 tbl_operations.php:265
@@ -80,7 +80,7 @@ msgstr "Nome chave"
#: browse_foreigners.php:169 browse_foreigners.php:171
#: server_collations.php:55 server_collations.php:67 server_engines.php:59
-#: server_status.php:628
+#: server_status.php:739
msgid "Description"
msgstr "Descrición"
@@ -121,7 +121,7 @@ msgstr "Nomes das columnas"
#: libraries/db_structure.lib.php:60 libraries/export/htmlword.php:245
#: libraries/export/latex.php:360 libraries/export/odt.php:297
#: libraries/export/texytext.php:234 libraries/tbl_properties.inc.php:100
-#: pdf_schema.php:1263 pdf_schema.php:1284 server_privileges.php:2031
+#: pdf_schema.php:1263 pdf_schema.php:1284 server_privileges.php:2070
#: tbl_change.php:287 tbl_change.php:314 tbl_printview.php:143
#: tbl_printview.php:313 tbl_select.php:136 tbl_structure.php:178
#: tbl_structure.php:659 tbl_tracking.php:274 tbl_tracking.php:321
@@ -165,9 +165,9 @@ msgstr "Comentarios"
#: libraries/Index.class.php:386 libraries/export/htmlword.php:322
#: libraries/export/latex.php:430 libraries/export/odt.php:368
#: libraries/export/texytext.php:311 libraries/mult_submits.inc.php:263
-#: pdf_schema.php:1344 server_privileges.php:1529 server_privileges.php:1540
-#: server_privileges.php:1850 server_privileges.php:1855
-#: server_privileges.php:2148 sql.php:132 sql.php:194 tbl_printview.php:229
+#: pdf_schema.php:1344 server_privileges.php:1568 server_privileges.php:1579
+#: server_privileges.php:1889 server_privileges.php:1894
+#: server_privileges.php:2187 sql.php:132 sql.php:194 tbl_printview.php:229
#: tbl_structure.php:350 tbl_tracking.php:337 tbl_tracking.php:342
msgid "No"
msgstr "Non"
@@ -181,9 +181,9 @@ msgstr "Non"
#: libraries/mult_submits.inc.php:101 libraries/mult_submits.inc.php:106
#: libraries/mult_submits.inc.php:111 libraries/mult_submits.inc.php:262
#: libraries/mult_submits.inc.php:273 pdf_schema.php:1344
-#: server_databases.php:64 server_privileges.php:1526
-#: server_privileges.php:1540 server_privileges.php:1850
-#: server_privileges.php:1853 server_privileges.php:2148 sql.php:193
+#: server_databases.php:64 server_privileges.php:1565
+#: server_privileges.php:1579 server_privileges.php:1889
+#: server_privileges.php:1892 server_privileges.php:2187 sql.php:193
#: tbl_printview.php:229 tbl_structure.php:40 tbl_structure.php:350
#: tbl_tracking.php:335 tbl_tracking.php:340
msgid "Yes"
@@ -280,7 +280,7 @@ msgstr "Pasar á base de datos copiada"
msgid "BLOB Repository"
msgstr "Repositorio de BLOB"
-#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1350
+#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1352
#: libraries/server_links.inc.php:49 server_processlist.php:59
#: tbl_tracking.php:596 test/theme.php:101
msgid "Status"
@@ -343,8 +343,8 @@ msgstr "Editar as páxinas PDF"
#: db_printview.php:104 db_tracking.php:72 db_tracking.php:157
#: libraries/db_structure.lib.php:46 libraries/export/xml.php:328
-#: libraries/header.inc.php:126 pdf_pages.php:424 server_privileges.php:1626
-#: server_privileges.php:1682 server_privileges.php:1946
+#: libraries/header.inc.php:126 pdf_pages.php:424 server_privileges.php:1665
+#: server_privileges.php:1721 server_privileges.php:1985
#: server_synchronize.php:423 server_synchronize.php:866 tbl_tracking.php:592
#: test/theme.php:75
msgid "Table"
@@ -445,7 +445,7 @@ msgstr "Eliminar"
#: db_qbe.php:370 db_qbe.php:451 db_qbe.php:522 db_qbe.php:553
#: libraries/display_import.lib.php:166 libraries/tbl_properties.inc.php:779
-#: server_privileges.php:258 tbl_change.php:1031 tbl_indexes.php:250
+#: server_privileges.php:297 tbl_change.php:1031 tbl_indexes.php:250
#: tbl_select.php:288
msgid "Or"
msgstr "ou"
@@ -479,7 +479,7 @@ msgstr "Usar as táboas"
msgid "SQL query on database %s:"
msgstr "Procura tipo SQL na base de datos %s:"
-#: db_qbe.php:934 libraries/common.lib.php:1223
+#: db_qbe.php:934 libraries/common.lib.php:1225
msgid "Submit Query"
msgstr "Enviar esta procura"
@@ -518,7 +518,7 @@ msgstr "%s ocorrencias(s) dentro da táboa %s"
#: db_search.php:267 db_structure.php:77 db_structure.php:78
#: db_structure.php:90 db_structure.php:92 db_structure.php:103
-#: db_structure.php:105 libraries/common.lib.php:2824
+#: db_structure.php:105 libraries/common.lib.php:2833
#: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50
#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:467
msgid "Browse"
@@ -565,26 +565,26 @@ msgstr "No campo:"
#: db_structure.php:81 db_structure.php:82 db_structure.php:94
#: db_structure.php:95 db_structure.php:107 db_structure.php:108
-#: libraries/common.lib.php:2823 libraries/sql_query_form.lib.php:334
+#: libraries/common.lib.php:2832 libraries/sql_query_form.lib.php:334
#: libraries/sql_query_form.lib.php:337 libraries/tbl_links.inc.php:76
msgid "Insert"
msgstr "Inserir"
#: db_structure.php:83 db_structure.php:96 db_structure.php:109
-#: libraries/common.lib.php:2820 libraries/common.lib.php:2827
+#: libraries/common.lib.php:2829 libraries/common.lib.php:2836
#: libraries/db_links.inc.php:63 libraries/export/htmlword.php:23
#: libraries/export/latex.php:33 libraries/export/latex.php:337
#: libraries/export/odt.php:32 libraries/export/sql.php:60
#: libraries/export/texytext.php:23 libraries/import.lib.php:1104
#: libraries/tbl_links.inc.php:56 pmd_general.php:134
-#: server_privileges.php:554 server_replication.php:315 tbl_tracking.php:269
+#: server_privileges.php:593 server_replication.php:315 tbl_tracking.php:269
msgid "Structure"
msgstr "Estrutura"
#: db_structure.php:84 db_structure.php:85 db_structure.php:97
#: db_structure.php:98 db_structure.php:110 db_structure.php:111
#: db_structure.php:545 db_structure.php:546 db_tracking.php:91
-#: libraries/Index.class.php:483 libraries/common.lib.php:1654
+#: libraries/Index.class.php:483 libraries/common.lib.php:1656
#: libraries/db_links.inc.php:100 libraries/mult_submits.inc.php:36
#: libraries/mult_submits.inc.php:73 libraries/tbl_links.inc.php:127
#: server_databases.php:352 tbl_structure.php:27 tbl_structure.php:151
@@ -594,7 +594,7 @@ msgstr "Eliminar"
#: db_structure.php:86 db_structure.php:87 db_structure.php:99
#: db_structure.php:100 db_structure.php:112 db_structure.php:113
-#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1653
+#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1655
#: libraries/mult_submits.inc.php:39 libraries/tbl_links.inc.php:105
msgid "Empty"
msgstr "Borrar"
@@ -638,7 +638,7 @@ msgstr "Vista"
#: db_structure.php:485 libraries/db_structure.lib.php:49
#: libraries/server_links.inc.php:70 server_replication.php:33
-#: server_replication.php:164 server_status.php:258
+#: server_replication.php:164 server_status.php:369
msgid "Replication"
msgstr "Replicación"
@@ -654,20 +654,20 @@ msgstr "%s é o motor de almacenamento predefinido neste servidor de MySQL."
#: db_structure.php:524 db_structure.php:541 db_structure.php:542
#: libraries/display_tbl.lib.php:2081 libraries/display_tbl.lib.php:2086
#: libraries/mult_submits.inc.php:16 server_databases.php:346
-#: server_databases.php:351 server_privileges.php:1557 tbl_structure.php:455
+#: server_databases.php:351 server_privileges.php:1596 tbl_structure.php:455
#: tbl_structure.php:464
msgid "With selected:"
msgstr "Todos os marcados"
#: db_structure.php:527 libraries/display_tbl.lib.php:2076
-#: server_databases.php:348 server_privileges.php:530
-#: server_privileges.php:1560 tbl_structure.php:458
+#: server_databases.php:348 server_privileges.php:569
+#: server_privileges.php:1599 tbl_structure.php:458
msgid "Check All"
msgstr "Marcalos todos"
#: db_structure.php:531 libraries/display_tbl.lib.php:2077
#: libraries/replication_gui.lib.php:33 server_databases.php:350
-#: server_privileges.php:533 server_privileges.php:1564 tbl_structure.php:462
+#: server_privileges.php:572 server_privileges.php:1603 tbl_structure.php:462
msgid "Uncheck All"
msgstr "Quitarlles as marcas a todos"
@@ -705,7 +705,7 @@ msgstr "Analizar a táboa"
#: libraries/display_export.lib.php:83 libraries/display_tbl.lib.php:2094
#: libraries/display_tbl.lib.php:2225 libraries/mult_submits.inc.php:62
#: libraries/server_links.inc.php:84 libraries/tbl_links.inc.php:82
-#: pmd_pdf.php:84 pmd_pdf.php:109 server_privileges.php:1341
+#: pmd_pdf.php:84 pmd_pdf.php:109 server_privileges.php:1380
#: setup/frames/menu.inc.php:22 tbl_row_action.php:59
msgid "Export"
msgstr "Exportar"
@@ -723,8 +723,8 @@ msgstr "Táboas seguidas"
#: libraries/export/sql.php:342 libraries/export/texytext.php:84
#: libraries/export/xml.php:255 libraries/header.inc.php:106
#: libraries/header_printview.inc.php:58 server_databases.php:169
-#: server_privileges.php:1621 server_privileges.php:1682
-#: server_privileges.php:1940 server_processlist.php:56
+#: server_privileges.php:1660 server_privileges.php:1721
+#: server_privileges.php:1979 server_processlist.php:56
#: server_synchronize.php:1179 server_synchronize.php:1183
#: tbl_tracking.php:591 test/theme.php:65
msgid "Database"
@@ -744,8 +744,8 @@ msgstr "Actualizada"
#: db_tracking.php:77 libraries/Index.class.php:440
#: libraries/db_structure.lib.php:53 server_databases.php:203
-#: server_privileges.php:1503 server_privileges.php:1686
-#: server_privileges.php:2034 tbl_structure.php:187
+#: server_privileges.php:1542 server_privileges.php:1725
+#: server_privileges.php:2073 tbl_structure.php:187
msgid "Action"
msgstr "Acción"
@@ -948,11 +948,11 @@ msgstr "O nome do servidor está vacío!"
msgid "The user name is empty!"
msgstr "O nome do usuario está vacío!"
-#: js/messages.php:44 server_privileges.php:1197 user_password.php:70
+#: js/messages.php:44 server_privileges.php:1236 user_password.php:70
msgid "The password is empty!"
msgstr "O contrasinal está vacío!"
-#: js/messages.php:45 server_privileges.php:1195 user_password.php:73
+#: js/messages.php:45 server_privileges.php:1234 user_password.php:73
msgid "The passwords aren't the same!"
msgstr "Os contrasinais non son os mesmos."
@@ -1031,8 +1031,8 @@ msgid "Prev"
msgstr "Anterior"
#. l10n: Display text for next month link in calendar
-#: js/messages.php:77 libraries/common.lib.php:2344
-#: libraries/common.lib.php:2347 libraries/display_tbl.lib.php:338
+#: js/messages.php:77 libraries/common.lib.php:2353
+#: libraries/common.lib.php:2356 libraries/display_tbl.lib.php:338
#: server_binlog.php:205 server_binlog.php:207 tbl_printview.php:424
#: tbl_structure.php:801
msgid "Next"
@@ -1108,27 +1108,27 @@ msgid "December"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:97 libraries/common.lib.php:1555
+#: js/messages.php:97 libraries/common.lib.php:1557
msgid "Jan"
msgstr "Xan"
#. l10n: Short month name
-#: js/messages.php:99 libraries/common.lib.php:1557
+#: js/messages.php:99 libraries/common.lib.php:1559
msgid "Feb"
msgstr "Feb"
#. l10n: Short month name
-#: js/messages.php:101 libraries/common.lib.php:1559
+#: js/messages.php:101 libraries/common.lib.php:1561
msgid "Mar"
msgstr "Mar"
#. l10n: Short month name
-#: js/messages.php:103 libraries/common.lib.php:1561
+#: js/messages.php:103 libraries/common.lib.php:1563
msgid "Apr"
msgstr "Abr"
#. l10n: Short month name
-#: js/messages.php:105 libraries/common.lib.php:1563
+#: js/messages.php:105 libraries/common.lib.php:1565
#, fuzzy
#| msgid "May"
msgctxt "Short month name"
@@ -1136,37 +1136,37 @@ msgid "May"
msgstr "Maio"
#. l10n: Short month name
-#: js/messages.php:107 libraries/common.lib.php:1565
+#: js/messages.php:107 libraries/common.lib.php:1567
msgid "Jun"
msgstr "Xuño"
#. l10n: Short month name
-#: js/messages.php:109 libraries/common.lib.php:1567
+#: js/messages.php:109 libraries/common.lib.php:1569
msgid "Jul"
msgstr "Xullo"
#. l10n: Short month name
-#: js/messages.php:111 libraries/common.lib.php:1569
+#: js/messages.php:111 libraries/common.lib.php:1571
msgid "Aug"
msgstr "Ago"
#. l10n: Short month name
-#: js/messages.php:113 libraries/common.lib.php:1571
+#: js/messages.php:113 libraries/common.lib.php:1573
msgid "Sep"
msgstr "Set"
#. l10n: Short month name
-#: js/messages.php:115 libraries/common.lib.php:1573
+#: js/messages.php:115 libraries/common.lib.php:1575
msgid "Oct"
msgstr "Out"
#. l10n: Short month name
-#: js/messages.php:117 libraries/common.lib.php:1575
+#: js/messages.php:117 libraries/common.lib.php:1577
msgid "Nov"
msgstr "Nov"
#. l10n: Short month name
-#: js/messages.php:119 libraries/common.lib.php:1577
+#: js/messages.php:119 libraries/common.lib.php:1579
msgid "Dec"
msgstr "Dec"
@@ -1207,37 +1207,37 @@ msgid "Saturday"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:132 libraries/common.lib.php:1580
+#: js/messages.php:132 libraries/common.lib.php:1582
msgid "Sun"
msgstr "Do"
#. l10n: Short week day name
-#: js/messages.php:134 libraries/common.lib.php:1582
+#: js/messages.php:134 libraries/common.lib.php:1584
msgid "Mon"
msgstr "Lu"
#. l10n: Short week day name
-#: js/messages.php:136 libraries/common.lib.php:1584
+#: js/messages.php:136 libraries/common.lib.php:1586
msgid "Tue"
msgstr "Ma"
#. l10n: Short week day name
-#: js/messages.php:138 libraries/common.lib.php:1586
+#: js/messages.php:138 libraries/common.lib.php:1588
msgid "Wed"
msgstr "Mé"
#. l10n: Short week day name
-#: js/messages.php:140 libraries/common.lib.php:1588
+#: js/messages.php:140 libraries/common.lib.php:1590
msgid "Thu"
msgstr "Xo"
#. l10n: Short week day name
-#: js/messages.php:142 libraries/common.lib.php:1590
+#: js/messages.php:142 libraries/common.lib.php:1592
msgid "Fri"
msgstr "Ve"
#. l10n: Short week day name
-#: js/messages.php:144 libraries/common.lib.php:1592
+#: js/messages.php:144 libraries/common.lib.php:1594
msgid "Sat"
msgstr "Sá"
@@ -1386,7 +1386,7 @@ msgid "Comment"
msgstr "Comentario"
#: libraries/Index.class.php:466 libraries/common.lib.php:616
-#: libraries/common.lib.php:1199 libraries/display_tbl.lib.php:1117
+#: libraries/common.lib.php:1201 libraries/display_tbl.lib.php:1117
#: libraries/import.lib.php:1087 libraries/import.lib.php:1111
#: pdf_pages.php:285 setup/frames/index.inc.php:124
#: setup/lib/messages.inc.php:352 tbl_row_action.php:69
@@ -1412,7 +1412,7 @@ msgstr ""
"eliminar un deles"
#: libraries/List_Database.class.php:431 libraries/server_links.inc.php:41
-#: server_databases.php:88 server_privileges.php:1621
+#: server_databases.php:88 server_privileges.php:1660
#: setup/lib/messages.inc.php:110 test/theme.php:93
msgid "Databases"
msgstr "Bases de datos"
@@ -1756,7 +1756,7 @@ msgid "Documentation"
msgstr "Documentación"
#: libraries/common.lib.php:595 libraries/header_printview.inc.php:61
-#: server_processlist.php:60 server_status.php:247
+#: server_processlist.php:60 server_status.php:358
msgid "SQL query"
msgstr "orde SQL"
@@ -1772,130 +1772,130 @@ msgstr "Explicar SQL"
msgid "Skip Explain SQL"
msgstr "Saltar a explicacion de SQL"
-#: libraries/common.lib.php:1212
+#: libraries/common.lib.php:1214
msgid "Without PHP Code"
msgstr "sen código PHP"
-#: libraries/common.lib.php:1215 setup/lib/messages.inc.php:355
+#: libraries/common.lib.php:1217 setup/lib/messages.inc.php:355
msgid "Create PHP Code"
msgstr "Crear código PHP"
-#: libraries/common.lib.php:1233 server_status.php:341
+#: libraries/common.lib.php:1235 server_status.php:452
#: setup/lib/messages.inc.php:354
msgid "Refresh"
msgstr "Refrescar"
-#: libraries/common.lib.php:1242
+#: libraries/common.lib.php:1244
msgid "Skip Validate SQL"
msgstr "Omitir a validacion de"
-#: libraries/common.lib.php:1245 setup/lib/messages.inc.php:356 sql.php:518
+#: libraries/common.lib.php:1247 setup/lib/messages.inc.php:356 sql.php:518
msgid "Validate SQL"
msgstr "Validar o SQL"
-#: libraries/common.lib.php:1276
+#: libraries/common.lib.php:1278
msgid "Inline edit of this query"
msgstr ""
-#: libraries/common.lib.php:1278
+#: libraries/common.lib.php:1280
#, fuzzy
#| msgid "Engines"
msgid "Inline"
msgstr "Motores"
-#: libraries/common.lib.php:1332 libraries/common.lib.php:1347
+#: libraries/common.lib.php:1334 libraries/common.lib.php:1349
msgid "Profiling"
msgstr "Análise do desempeño"
-#: libraries/common.lib.php:1351 libraries/tbl_triggers.lib.php:28
+#: libraries/common.lib.php:1353 libraries/tbl_triggers.lib.php:28
#: server_processlist.php:58
msgid "Time"
msgstr "Tempo"
#. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "B"
msgstr "B"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "KiB"
msgstr "KiB"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "MiB"
msgstr "MiB"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "GiB"
msgstr "GiB"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "TiB"
msgstr "TiB"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "PiB"
msgstr "PiB"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "EiB"
msgstr "EiB"
#. l10n: Thousands separator
-#: libraries/common.lib.php:1417
+#: libraries/common.lib.php:1419
msgid ","
msgstr "."
#. l10n: Decimal separator
-#: libraries/common.lib.php:1419
+#: libraries/common.lib.php:1421
msgid "."
msgstr ","
#. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string
-#: libraries/common.lib.php:1596
+#: libraries/common.lib.php:1598
#: libraries/transformations/text_plain__dateformat.inc.php:34
msgid "%B %d, %Y at %I:%M %p"
msgstr "%d de %B de %Y ás %H:%M"
-#: libraries/common.lib.php:1898
+#: libraries/common.lib.php:1907
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "%s días, %s horas, %s minutos e %s segundos"
-#: libraries/common.lib.php:2313 libraries/common.lib.php:2316
-#: libraries/display_tbl.lib.php:290 server_status.php:608
+#: libraries/common.lib.php:2322 libraries/common.lib.php:2325
+#: libraries/display_tbl.lib.php:290 server_status.php:719
msgid "Begin"
msgstr "Inicio"
-#: libraries/common.lib.php:2314 libraries/common.lib.php:2317
+#: libraries/common.lib.php:2323 libraries/common.lib.php:2326
#: libraries/display_tbl.lib.php:291 server_binlog.php:168
#: server_binlog.php:170
msgid "Previous"
msgstr "Anterior"
-#: libraries/common.lib.php:2345 libraries/common.lib.php:2348
+#: libraries/common.lib.php:2354 libraries/common.lib.php:2357
#: libraries/display_tbl.lib.php:353
msgid "End"
msgstr "Fin"
-#: libraries/common.lib.php:2421
+#: libraries/common.lib.php:2430
#, php-format
msgid "Jump to database "%s"."
msgstr "Saltar à base de datos "%s"."
-#: libraries/common.lib.php:2441
+#: libraries/common.lib.php:2450
#, 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/common.lib.php:2821 libraries/common.lib.php:2828
+#: libraries/common.lib.php:2830 libraries/common.lib.php:2837
#: libraries/db_links.inc.php:68 libraries/export/sql.php:25
#: libraries/import/sql.php:18 libraries/server_links.inc.php:45
#: libraries/tbl_links.inc.php:60 querywindow.php:99 test/theme.php:97
msgid "SQL"
msgstr "SQL"
-#: libraries/common.lib.php:2830 libraries/db_links.inc.php:104
+#: libraries/common.lib.php:2839 libraries/db_links.inc.php:104
#: libraries/tbl_links.inc.php:95 libraries/tbl_links.inc.php:117
#: view_operations.php:89
msgid "Operations"
@@ -1950,8 +1950,8 @@ msgid "Import"
msgstr "Importar"
#: libraries/db_links.inc.php:111 libraries/server_links.inc.php:66
-#: server_privileges.php:72 server_privileges.php:1683
-#: server_privileges.php:2032 test/theme.php:117
+#: server_privileges.php:111 server_privileges.php:1722
+#: server_privileges.php:2071 test/theme.php:117
msgid "Privileges"
msgstr "Privilexios"
@@ -1999,22 +1999,22 @@ msgid "Change password"
msgstr "Trocar o contrasinal"
#: libraries/display_change_password.lib.php:35
-#: libraries/replication_gui.lib.php:345 server_privileges.php:768
+#: libraries/replication_gui.lib.php:345 server_privileges.php:807
msgid "No Password"
msgstr "Sen contrasinal"
#: libraries/display_change_password.lib.php:41
#: libraries/replication_gui.lib.php:59 libraries/replication_gui.lib.php:60
#: libraries/replication_gui.lib.php:335 libraries/replication_gui.lib.php:339
-#: libraries/replication_gui.lib.php:349 server_privileges.php:757
-#: server_privileges.php:761 server_privileges.php:772
-#: server_privileges.php:1499 server_synchronize.php:1175
+#: libraries/replication_gui.lib.php:349 server_privileges.php:796
+#: server_privileges.php:800 server_privileges.php:811
+#: server_privileges.php:1538 server_synchronize.php:1175
msgid "Password"
msgstr "Contrasinal"
#: libraries/display_change_password.lib.php:46
#: libraries/replication_gui.lib.php:353 libraries/replication_gui.lib.php:356
-#: server_privileges.php:776 server_privileges.php:779
+#: server_privileges.php:815 server_privileges.php:818
msgid "Re-type"
msgstr "Reescribir"
@@ -2029,12 +2029,12 @@ msgid "MySQL 4.0 compatible"
msgstr "Compatíbel co MySQL 4.0"
#: libraries/display_change_password.lib.php:72
-#: libraries/replication_gui.lib.php:360 server_privileges.php:783
+#: libraries/replication_gui.lib.php:360 server_privileges.php:822
msgid "Generate Password"
msgstr "Xerar un contrasinal"
#: libraries/display_change_password.lib.php:75
-#: libraries/replication_gui.lib.php:363 server_privileges.php:786
+#: libraries/replication_gui.lib.php:363 server_privileges.php:825
msgid "Generate"
msgstr "Xerar"
@@ -2047,8 +2047,8 @@ msgstr "Crear unha base de datos nova"
msgid "Create"
msgstr "Crear"
-#: libraries/display_create_database.lib.php:40 server_privileges.php:74
-#: server_privileges.php:1388 server_replication.php:35
+#: libraries/display_create_database.lib.php:40 server_privileges.php:113
+#: server_privileges.php:1427 server_replication.php:35
msgid "No Privileges"
msgstr "Sen privilexios"
@@ -2140,7 +2140,7 @@ msgstr "Compresión"
#: libraries/display_export.lib.php:240 libraries/display_import.lib.php:197
#: libraries/display_import.lib.php:210 libraries/display_tbl.lib.php:530
#: libraries/export/sql.php:868 libraries/tbl_properties.inc.php:575
-#: server_privileges.php:1836 server_processlist.php:75
+#: server_privileges.php:1875 server_processlist.php:75
msgid "None"
msgstr "Ningunha"
@@ -2475,7 +2475,7 @@ msgstr ""
msgid "Buffer Pool"
msgstr "Reserva da memoria intermedia"
-#: libraries/engines/innodb.lib.php:145 server_status.php:306
+#: libraries/engines/innodb.lib.php:145 server_status.php:417
msgid "InnoDB Status"
msgstr "Estado de InnoDB"
@@ -2484,8 +2484,8 @@ msgid "Buffer Pool Usage"
msgstr "Uso da reserva da memoria intermedia"
#: libraries/engines/innodb.lib.php:194 server_databases.php:137
-#: server_databases.php:305 server_status.php:414 server_status.php:475
-#: server_status.php:496 tbl_printview.php:351 tbl_structure.php:696
+#: server_databases.php:305 server_status.php:525 server_status.php:586
+#: server_status.php:607 tbl_printview.php:351 tbl_structure.php:696
msgid "Total"
msgstr "Total"
@@ -2849,7 +2849,7 @@ msgstr "Microsoft Word 2000"
#: libraries/export/latex.php:201 libraries/export/odt.php:48
#: libraries/export/sql.php:106 libraries/export/sql.php:868
#: libraries/export/texytext.php:27 server_databases.php:127
-#: server_privileges.php:537 server_replication.php:316 tbl_printview.php:317
+#: server_privileges.php:576 server_replication.php:316 tbl_printview.php:317
#: tbl_structure.php:665
msgid "Data"
msgstr "Datos"
@@ -2899,9 +2899,9 @@ msgstr "Tipo MIME"
#: libraries/export/xml.php:102 libraries/header_printview.inc.php:57
#: libraries/replication_gui.lib.php:63 libraries/replication_gui.lib.php:174
#: libraries/replication_gui.lib.php:269 libraries/replication_gui.lib.php:272
-#: libraries/replication_gui.lib.php:329 server_privileges.php:692
-#: server_privileges.php:695 server_privileges.php:751
-#: server_privileges.php:1498 server_privileges.php:2030
+#: libraries/replication_gui.lib.php:329 server_privileges.php:731
+#: server_privileges.php:734 server_privileges.php:790
+#: server_privileges.php:1537 server_privileges.php:2069
#: server_processlist.php:55 server_synchronize.php:1159
msgid "Host"
msgstr "Servidor"
@@ -3258,862 +3258,6 @@ msgstr "Ningunha"
msgid "Convert to Kana"
msgstr ""
-#. l10n: Text direction, use either ltr or rtl
-#: libraries/messages.inc.php:19
-msgid "ltr"
-msgstr "ltr"
-
-#: libraries/messages.inc.php:21
-msgid "Content of table __TABLE__"
-msgstr "Contido da táboa __TABLE__"
-
-#: libraries/messages.inc.php:22
-msgid "(continued)"
-msgstr "(continuado)"
-
-#: libraries/messages.inc.php:23
-msgid "Structure of table __TABLE__"
-msgstr "Estrutura da táboa __TABLE__"
-
-#: libraries/messages.inc.php:25 server_privileges.php:227
-msgid "Includes all privileges except GRANT."
-msgstr "Inclúe todos os privilexios a excepción de GRANT (Conceder)."
-
-#: libraries/messages.inc.php:26 server_privileges.php:153
-#: server_privileges.php:476
-msgid "Allows altering the structure of existing tables."
-msgstr "Permite alterar a estrutura das táboas xa existentes."
-
-#: libraries/messages.inc.php:27 server_privileges.php:169
-#: server_privileges.php:482
-msgid "Allows altering and dropping stored routines."
-msgstr "Permite alterar e eliminar rutinas armacenadas."
-
-#: libraries/messages.inc.php:28 server_privileges.php:145
-#: server_privileges.php:475
-msgid "Allows creating new databases and tables."
-msgstr "Permite crear bases de datos e táboas novas."
-
-#: libraries/messages.inc.php:29 server_privileges.php:168
-#: server_privileges.php:481
-msgid "Allows creating stored routines."
-msgstr "Permite crear rutinas almacenadas."
-
-#: libraries/messages.inc.php:30 server_privileges.php:475
-msgid "Allows creating new tables."
-msgstr "Permite crear táboas novas."
-
-#: libraries/messages.inc.php:31 server_privileges.php:156
-#: server_privileges.php:479
-msgid "Allows creating temporary tables."
-msgstr "Permite crear táboas temporais."
-
-#: libraries/messages.inc.php:32 server_privileges.php:170
-#: server_privileges.php:515
-msgid "Allows creating, dropping and renaming user accounts."
-msgstr "Permite crear, eliminar e mudar o nome das contas de usuario."
-
-#: libraries/messages.inc.php:33 server_privileges.php:160
-#: server_privileges.php:164 server_privileges.php:487
-#: server_privileges.php:491
-msgid "Allows creating new views."
-msgstr "Permite crear vistas novas."
-
-#: libraries/messages.inc.php:34 server_privileges.php:144
-#: server_privileges.php:467
-msgid "Allows deleting data."
-msgstr "Permite eliminar datos."
-
-#: libraries/messages.inc.php:35 server_privileges.php:146
-#: server_privileges.php:478
-msgid "Allows dropping databases and tables."
-msgstr "Permite eliminar bases de datos e táboas."
-
-#: libraries/messages.inc.php:36 server_privileges.php:478
-msgid "Allows dropping tables."
-msgstr "Permite eliminar táboas."
-
-#: libraries/messages.inc.php:37 server_privileges.php:161
-#: server_privileges.php:495
-msgid "Allows to set up events for the event scheduler"
-msgstr "Permite configurar acontecementos para o programador de acontecementos"
-
-#: libraries/messages.inc.php:38 server_privileges.php:171
-#: server_privileges.php:483
-msgid "Allows executing stored routines."
-msgstr "Permite executar rutinas almacenadas."
-
-#: libraries/messages.inc.php:39 server_privileges.php:150
-#: server_privileges.php:470
-msgid "Allows importing data from and exporting data into files."
-msgstr "Permite importar e exportar datos desde e para ficheiros."
-
-#: libraries/messages.inc.php:40 server_privileges.php:501
-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/messages.inc.php:41 server_privileges.php:152
-#: server_privileges.php:477
-msgid "Allows creating and dropping indexes."
-msgstr "Permite crear e eliminar índices."
-
-#: libraries/messages.inc.php:42 server_privileges.php:142
-#: server_privileges.php:403 server_privileges.php:465
-msgid "Allows inserting and replacing data."
-msgstr "Permite inserir e substituír datos."
-
-#: libraries/messages.inc.php:43 server_privileges.php:157
-#: server_privileges.php:510
-msgid "Allows locking tables for the current thread."
-msgstr "Permite bloquear táboas do fío en uso"
-
-#: libraries/messages.inc.php:44 server_privileges.php:607
-#: server_privileges.php:609
-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/messages.inc.php:45 server_privileges.php:595
-#: server_privileges.php:597
-msgid "Limits the number of queries the user may send to the server per hour."
-msgstr "Limita o número de procuras por hora que pode enviar un usuario."
-
-#: libraries/messages.inc.php:46 server_privileges.php:601
-#: server_privileges.php:603
-msgid ""
-"Limits the number of commands that change any table or database the user may "
-"execute per hour."
-msgstr ""
-"Limita o número de ordes que modifiquen unha táboa ou base de datos por hora "
-"que pode executar un usuario."
-
-#: libraries/messages.inc.php:47 server_privileges.php:613
-#: server_privileges.php:615
-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/messages.inc.php:48 server_privileges.php:149
-#: server_privileges.php:505
-msgid "Allows viewing processes of all users"
-msgstr "Permite ver procesos de todos os usuarios"
-
-#: libraries/messages.inc.php:49 server_privileges.php:151
-#: server_privileges.php:409 server_privileges.php:511
-msgid "Has no effect in this MySQL version."
-msgstr "Non funciona nesta versión do MySQL."
-
-#: libraries/messages.inc.php:50 server_privileges.php:147
-#: server_privileges.php:506
-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/messages.inc.php:51 server_privileges.php:159
-#: server_privileges.php:513
-msgid "Allows the user to ask where the slaves / masters are."
-msgstr "Permite que o usuario pregunte onde están os escravos e os masters."
-
-#: libraries/messages.inc.php:52 server_privileges.php:158
-#: server_privileges.php:514
-msgid "Needed for the replication slaves."
-msgstr "Necesario para os escravos de replicación."
-
-#: libraries/messages.inc.php:53 server_privileges.php:141
-#: server_privileges.php:400 server_privileges.php:464
-msgid "Allows reading data."
-msgstr "Permite gravar datos."
-
-#: libraries/messages.inc.php:54 server_privileges.php:154
-#: server_privileges.php:508
-msgid "Gives access to the complete list of databases."
-msgstr "Permite acceder á listaxe completa de bases de datos"
-
-#: libraries/messages.inc.php:55 server_privileges.php:165
-#: server_privileges.php:167 server_privileges.php:480
-msgid "Allows performing SHOW CREATE VIEW queries."
-msgstr "Permite realizar consultas SHOW CREATE VIEW."
-
-#: libraries/messages.inc.php:56 server_privileges.php:148
-#: server_privileges.php:507
-msgid "Allows shutting down the server."
-msgstr "Permite apagar o servidor."
-
-#: libraries/messages.inc.php:57 server_privileges.php:155
-#: server_privileges.php:504
-msgid ""
-"Allows connecting, even if maximum number of connections is reached; "
-"required for most administrative operations like setting global variables or "
-"killing threads of other users."
-msgstr ""
-"Permite conexións, mesmo chegado ao número máximo de conexións. Requíreno a "
-"maioría das operación administrativas, como configurar as variábeis globais "
-"ou matar os fíos doutros usuarios."
-
-#: libraries/messages.inc.php:58 server_privileges.php:162
-#: server_privileges.php:496
-msgid "Allows creating and dropping triggers"
-msgstr "Permite crear e eliminar os disparadores"
-
-#: libraries/messages.inc.php:59 server_privileges.php:143
-#: server_privileges.php:406 server_privileges.php:466
-msgid "Allows changing data."
-msgstr "Permite modificar datos."
-
-#: libraries/messages.inc.php:60 server_privileges.php:221
-msgid "No privileges."
-msgstr "Sen privilexios."
-
-#: libraries/messages.inc.php:62
-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 ""
-"Número de transaccións que utilizaron a caché do rexistro binario mais que "
-"excederon o valor de binlog_cache_size e utilizaron un ficheiro temporal "
-"para almacenar instrucións para a transacción."
-
-#: libraries/messages.inc.php:63
-msgid "The number of transactions that used the temporary binary log cache."
-msgstr "Número de transaccións que utilizaron o caché do rexistro binario."
-
-#: libraries/messages.inc.php:64
-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 "
-"to increase the tmp_table_size value to cause temporary tables to be memory-"
-"based instead of disk-based."
-msgstr ""
-"Número de táboas temporais no disco creadas automaticamente polo servidor ao "
-"executar as instrucións. Se Created_tmp_disk_tables é grande, será ben que "
-"incremente o valor de tmp_table_size para que as táboas temporais se baseen "
-"na memoria en vez de no disco."
-
-#: libraries/messages.inc.php:65
-msgid "How many temporary files mysqld has created."
-msgstr "Número de ficheiros temporais creados por mysqld."
-
-#: libraries/messages.inc.php:66
-msgid ""
-"The number of in-memory temporary tables created automatically by the server "
-"while executing statements."
-msgstr ""
-"Número de táboas temporais na memoria creadas automaticamente polo servidor "
-"ao executar instrucións."
-
-#: libraries/messages.inc.php:67
-msgid ""
-"The number of rows written with INSERT DELAYED for which some error occurred "
-"(probably duplicate key)."
-msgstr ""
-"Número de fileiras escritas con INSERT DELAYED que sofriron algún erro "
-"(probabelmente unha chave duplicada)."
-
-#: libraries/messages.inc.php:68
-msgid ""
-"The number of INSERT DELAYED handler threads in use. Every different table "
-"on which one uses INSERT DELAYED gets its own thread."
-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/messages.inc.php:69
-msgid "The number of INSERT DELAYED rows written."
-msgstr "Número de fileiras INSERT DELAYED escritas."
-
-#: libraries/messages.inc.php:70
-msgid "The number of executed FLUSH statements."
-msgstr "Número de instrucións FLUSH executadas."
-
-#: libraries/messages.inc.php:71
-msgid "The number of internal COMMIT statements."
-msgstr "Número de instrucións COMMIT internas."
-
-#: libraries/messages.inc.php:72
-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/messages.inc.php:73
-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 ""
-"O servidor de MySQL pódelle perguntar ao motor de almacenamento NDB Cluster "
-"se sabe dunha táboa cun nome dado. Isto chámase descuberta. "
-"Handler_discovery indica o número de veces que se descobriron táboas."
-
-#: libraries/messages.inc.php:74
-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 ""
-"Número de veces que se leu a primeira entrada dun índice. Se for alto, tamén "
-"suxire que o servidor está a realizar un monte de exames de índice "
-"completos; por exemplo, SELECT col FROM algo, supoñendo que col estea "
-"indexada."
-
-#: libraries/messages.inc.php:75
-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 ""
-"Número de peticións para ler unha fileira baseadas nunha chave. Se for alto, "
-"é unha boa indicación de que as procuras e táboas están ben indexadas."
-
-#: libraries/messages.inc.php:76
-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 ""
-"Número de peticións para ler a seguinte fileira na orde da chave. Isto "
-"increméntase se está a procurar unha columna de índice cunha limitación de "
-"intervalo ou se está a examinar un índice."
-
-#: libraries/messages.inc.php:77
-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 ""
-"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/messages.inc.php:78
-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 "
-"probably have a lot of queries that require MySQL to scan whole tables or "
-"you have joins that don't use keys properly."
-msgstr ""
-"Número de peticións para ler unha fileira baseadas nunha posición fixa. Isto "
-"é alto se está a realizar moitas procuras que requiran ordenar o resultado. "
-"Posibelmente terá un monte de procuras que esixan que MySQL examine táboas "
-"completas ou ten unións que non usan as chaves axeitadamente."
-
-#: libraries/messages.inc.php:79
-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 "
-"tables are not properly indexed or that your queries are not written to take "
-"advantage of the indexes you have."
-msgstr ""
-"Número de peticións para ler a seguinte fileira no ficheiro de datos. Isto é "
-"alto se está a realizar moitos exames de táboas. Normalmente suxire que as "
-"táboas non están indexadas axeitadamente ou que as súas procuras non están "
-"escritas para aproveitar os índices de que dispón."
-
-#: libraries/messages.inc.php:80
-msgid "The number of internal ROLLBACK statements."
-msgstr "Número de instrucións de ROLLBACK (\"desfacer\") interno."
-
-#: libraries/messages.inc.php:81
-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/messages.inc.php:82
-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/messages.inc.php:83
-msgid "The number of pages containing data (dirty or clean)."
-msgstr "Número de páxinas que conteñen datos (suxos ou limpos)."
-
-#: libraries/messages.inc.php:84
-msgid "The number of pages currently dirty."
-msgstr "Número de páxinas actualmente suxas."
-
-#: libraries/messages.inc.php:85
-msgid "The number of buffer pool pages that have been requested to be flushed."
-msgstr "Número de páxinas do búfer que se pediu que se limpasen."
-
-#: libraries/messages.inc.php:86
-msgid "The number of free pages."
-msgstr "Número de páxinas libres."
-
-#: libraries/messages.inc.php:87
-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 ""
-"Número de páxinas con seguro no búfer InnoDB buffer. Estas páxinas están "
-"actualmente a ser lidas ou escritas ou non se poden limpar ou eliminar por "
-"algunha outra razón."
-
-#: libraries/messages.inc.php:88
-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 "
-"be calculated as Innodb_buffer_pool_pages_total - "
-"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data."
-msgstr ""
-"O número de páxinas ocupadas porque se destinan a reserva administrativa, "
-"tais como bloqueos de fileiras ou o índice hash adaptativo. Este valor tamén "
-"se pode calcular así: Innodb_buffer_pool_pages_total - "
-"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data."
-
-#: libraries/messages.inc.php:89
-msgid "Total size of buffer pool, in pages."
-msgstr "Tamaño total do búfer, en páxinas."
-
-#: libraries/messages.inc.php:90
-msgid ""
-"The number of \"random\" read-aheads InnoDB initiated. This happens when a "
-"query is to scan a large portion of a table but in random order."
-msgstr ""
-"Número de pré-lecturas \"aleatorias\" iniciadas por InnoDB. Isto acontece "
-"cando unha procura vai examinar unha porción grande dunha táboa mais en orde "
-"aleatoria."
-
-#: libraries/messages.inc.php:91
-msgid ""
-"The number of sequential read-aheads InnoDB initiated. This happens when "
-"InnoDB does a sequential full table scan."
-msgstr ""
-"Número de pre-lecturas secuenciais iniciadas por innoDB. Isto acontece cando "
-"InnoDB realiza un exame secuencial completo dunha táboa."
-
-#: libraries/messages.inc.php:92
-msgid "The number of logical read requests InnoDB has done."
-msgstr "Número de peticións de lectura lóxicas feitas por InnoDB."
-
-#: libraries/messages.inc.php:93
-msgid ""
-"The number of logical reads that InnoDB could not satisfy from buffer pool "
-"and had to do a single-page read."
-msgstr ""
-"Número de lecturas lóxicas que InnoDB non puido satisfacer do búfer e tivo "
-"que efectuar por medio de lecturas dunha única páxina."
-
-#: libraries/messages.inc.php:94
-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 "
-"available, it's necessary to wait for pages to be flushed first. This "
-"counter counts instances of these waits. If the buffer pool size was set "
-"properly, this value should be small."
-msgstr ""
-"Normalmente, escríbese no búfer de InnoDB como tarefa de fondo. Porén, de se "
-"precisar ler ou crear unha páxina e non haber páxinas limpas dispoñíbeis, "
-"hai que agardar a que se limpen. Este contador vai contando cantas veces hai "
-"que esperar. Se o tamaño do búfer é o axeitado, este valor debería ser "
-"pequeno."
-
-#: libraries/messages.inc.php:95
-msgid "The number writes done to the InnoDB buffer pool."
-msgstr "Número de veces que se escribiu no búfer InnoDB."
-
-#: libraries/messages.inc.php:96
-msgid "The number of fsync() operations so far."
-msgstr "Número de operacións fsync() até o momento."
-
-#: libraries/messages.inc.php:97
-msgid "The current number of pending fsync() operations."
-msgstr "Número actual de operacións fsync() pendentes."
-
-#: libraries/messages.inc.php:98
-msgid "The current number of pending reads."
-msgstr "Número actual de lecturas pendentes."
-
-#: libraries/messages.inc.php:99
-msgid "The current number of pending writes."
-msgstr "Número actual de escritas pendentes."
-
-#: libraries/messages.inc.php:100
-msgid "The amount of data read so far, in bytes."
-msgstr "Cantidade de datos lida até o momento, en bytes."
-
-#: libraries/messages.inc.php:101
-msgid "The total number of data reads."
-msgstr "Número total de lecturas de datos."
-
-#: libraries/messages.inc.php:102
-msgid "The total number of data writes."
-msgstr "Número total de escritas de datos."
-
-#: libraries/messages.inc.php:103
-msgid "The amount of data written so far, in bytes."
-msgstr "Cantidade de datos escrita até o momento, en bytes."
-
-#: libraries/messages.inc.php:104
-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/messages.inc.php:105
-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/messages.inc.php:106
-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 ""
-"Número de esperas debidas a que o búfer do rexistro é demasiado pequeno e "
-"houbo que agardar até que se limpase para continuar."
-
-#: libraries/messages.inc.php:107
-msgid "The number of log write requests."
-msgstr "Número de peticións de escrita no rexistro."
-
-#: libraries/messages.inc.php:108
-msgid "The number of physical writes to the log file."
-msgstr "Número de escritas físicas no ficheiro de rexistro."
-
-#: libraries/messages.inc.php:109
-msgid "The number of fsync() writes done to the log file."
-msgstr "Número de escritas fsyncss feitas no ficheiro de rexistro."
-
-#: libraries/messages.inc.php:110
-msgid "The number of pending log file fsyncs."
-msgstr "Número de fsyncs do ficheiro de rexistro pendentes."
-
-#: libraries/messages.inc.php:111
-msgid "Pending log file writes."
-msgstr "Escritas no ficheiro de rexistro pendentes."
-
-#: libraries/messages.inc.php:112
-msgid "The number of bytes written to the log file."
-msgstr "Número de bytes escritos no ficheiro de rexistro."
-
-#: libraries/messages.inc.php:113
-msgid "The number of pages created."
-msgstr "Número de páxinas creadas."
-
-#: libraries/messages.inc.php:114
-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 ""
-"O tamaño de páxina InnoDB incluído (por omisión 16KB). Moitos valores "
-"cóntanse en páxinas: o tamaño da páxina permite que se convirtan doadamente "
-"en bytes."
-
-#: libraries/messages.inc.php:115
-msgid "The number of pages read."
-msgstr "Número de páxinas lidas."
-
-#: libraries/messages.inc.php:116
-msgid "The number of pages written."
-msgstr "Número de páxinas escritas."
-
-#: libraries/messages.inc.php:117
-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/messages.inc.php:118
-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/messages.inc.php:119
-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/messages.inc.php:120
-msgid "The maximum time to acquire a row lock, in milliseconds."
-msgstr "Tempo máximo en adquirir un bloqueo de fileira, en milisegundos."
-
-#: libraries/messages.inc.php:121
-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/messages.inc.php:122
-msgid "The number of rows deleted from InnoDB tables."
-msgstr "Número de fileiras eliminadas das táboas InnoDB."
-
-#: libraries/messages.inc.php:123
-msgid "The number of rows inserted in InnoDB tables."
-msgstr "Número de fileiras inseridas nas táboas InnoDB."
-
-#: libraries/messages.inc.php:124
-msgid "The number of rows read from InnoDB tables."
-msgstr "Número de fileiras lidas das táboas InnoDB."
-
-#: libraries/messages.inc.php:125
-msgid "The number of rows updated in InnoDB tables."
-msgstr "Número de fileiras actualizadas en táboas InnoDB."
-
-#: libraries/messages.inc.php:126
-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 ""
-"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/messages.inc.php:127
-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 ""
-"Número de bloques sen utilizar na caché de chaves. Pode utilizar este valor "
-"para determinar canta caché de chave está en uso."
-
-#: libraries/messages.inc.php:128
-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 ""
-"Número de bloques utilizados na caché de chaves. Este valor é unha "
-"referencia superior que indica o número máximo de bloques que se teñen "
-"empregado."
-
-#: libraries/messages.inc.php:129
-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/messages.inc.php:130
-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 ""
-"Número de lecturas físicas dun bloque chave desde o disco. Se key_reads for "
-"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/messages.inc.php:131
-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/messages.inc.php:132
-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/messages.inc.php:133
-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 ""
-"Custo total da última procura compilada tal e como se computa mediante o "
-"optimizador de procuras. Resulta útil para comparar o custo de planos de "
-"procura diferentes para a mesma pesquisa. O valor por omisión é 0, que "
-"significa que aínda non se compilou ningunha procura."
-
-#: libraries/messages.inc.php:134
-msgid "The number of rows waiting to be written in INSERT DELAYED queues."
-msgstr ""
-"Número de procuras que están a agardar para seren escritas nas fileiras "
-"INSERT DELAYED."
-
-#: libraries/messages.inc.php:135
-msgid ""
-"The number of tables that have been opened. If opened tables is big, your "
-"table cache value is probably too small."
-msgstr ""
-"Número de táboas abertas en total. Se a cantidade é grande, o valor da caché "
-"de táboas posibelmente é demasiado pequeno."
-
-#: libraries/messages.inc.php:136
-msgid "The number of files that are open."
-msgstr "Número de ficheiros abertos."
-
-#: libraries/messages.inc.php:137
-msgid "The number of streams that are open (used mainly for logging)."
-msgstr "Número de fluxos abertos (utilizado principalmente para o rexistro)."
-
-#: libraries/messages.inc.php:138
-msgid "The number of tables that are open."
-msgstr "Número de táboas abertas."
-
-#: libraries/messages.inc.php:139
-msgid "The number of free memory blocks in query cache."
-msgstr "Número de bloques de memoria libres na caché de procuras."
-
-#: libraries/messages.inc.php:140
-msgid "The amount of free memory for query cache."
-msgstr "Cantidade de memoria libre para a caché de procuras."
-
-#: libraries/messages.inc.php:141
-msgid "The number of cache hits."
-msgstr "Número de impactos na caché."
-
-#: libraries/messages.inc.php:142
-msgid "The number of queries added to the cache."
-msgstr "Número de procuras adicionadas na caché."
-
-#: libraries/messages.inc.php:143
-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 "
-"cache size. The query cache uses a least recently used (LRU) strategy to "
-"decide which queries to remove from the cache."
-msgstr ""
-"Número de procuras eliminadas da caché para liberar memoria para deixar a "
-"caché para procuras novas. Esta información pode axudar a afinar o tamaño da "
-"caché de procuras. A caché de procuras utiliza unha estratexia de utilizado "
-"menos recentemente (LRU) para decidir que procuras debe eliminar da caché."
-
-#: libraries/messages.inc.php:144
-msgid ""
-"The number of non-cached queries (not cachable, or not cached due to the "
-"query_cache_type setting)."
-msgstr ""
-"Número de procuras non enviadas á caché (que non se poden enviar debido á "
-"configuración de query_cache_type)."
-
-#: libraries/messages.inc.php:145
-msgid "The number of queries registered in the cache."
-msgstr "Número de procuras rexistradas na caché."
-
-#: libraries/messages.inc.php:146
-msgid "The total number of blocks in the query cache."
-msgstr "Número total de bloques na caché de procuras."
-
-#: libraries/messages.inc.php:147
-msgctxt "$strShowStatusReset"
-msgid "Reset"
-msgstr "Reiniciar"
-
-#: libraries/messages.inc.php:148
-msgid "The status of failsafe replication (not yet implemented)."
-msgstr "Estado da replicación en modo seguro (aínda non realizado)."
-
-#: libraries/messages.inc.php:149
-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 ""
-"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/messages.inc.php:150
-msgid "The number of joins that used a range search on a reference table."
-msgstr ""
-"Número de unións que utilizaron un intervalo de procura nunha táboa de "
-"referencia."
-
-#: libraries/messages.inc.php:151
-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 ""
-"Número de unións de chaves que comproban a utilización de chaves despois de "
-"cada fileira (se non for 0, debería comprobar con atención os índices das "
-"táboas)."
-
-#: libraries/messages.inc.php:152
-msgid ""
-"The number of joins that used ranges on the first table. (It's normally not "
-"critical even if this is big.)"
-msgstr ""
-"Número de unións que utilizaron intervalos na primeira táboa (Normalmente "
-"non é grave, mesmo de ser grande)"
-
-#: libraries/messages.inc.php:153
-msgid "The number of joins that did a full scan of the first table."
-msgstr "Número de unións que realizaron un exame completo da primeira táboa."
-
-#: libraries/messages.inc.php:154
-msgid "The number of temporary tables currently open by the slave SQL thread."
-msgstr "Número de táboas temporais abertas actualmente polo fío SQL escravo."
-
-#: libraries/messages.inc.php:155
-msgid ""
-"Total (since startup) number of times the replication slave SQL thread has "
-"retried transactions."
-msgstr ""
-"Número total de veces (desde o inicio) que o fío de replicación SQL escravo "
-"reintentou as transaccións."
-
-#: libraries/messages.inc.php:156
-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/messages.inc.php:157
-msgid ""
-"The number of threads that have taken more than slow_launch_time seconds to "
-"create."
-msgstr ""
-"Número de fíos aos que lles levou crearse máis segundos dos indicados en "
-"slow_launch_time."
-
-#: libraries/messages.inc.php:158
-msgid ""
-"The number of queries that have taken more than long_query_time seconds."
-msgstr ""
-"Número de procuras ás que lles levou máis segundos dos indicados en "
-"long_query_time."
-
-#: libraries/messages.inc.php:159
-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 ""
-"Número de pasaxes de fusión que tivo que facer o algarismo de ordenación. Se "
-"este valor for grande, sería ben que considerase incrementar o valor da "
-"variábel de sistema sort_buffer_size."
-
-#: libraries/messages.inc.php:160
-msgid "The number of sorts that were done with ranges."
-msgstr "Número de ordenacións feitas con intervalos."
-
-#: libraries/messages.inc.php:161
-msgid "The number of sorted rows."
-msgstr "Número de fileiras ordenadas."
-
-#: libraries/messages.inc.php:162
-msgid "The number of sorts that were done by scanning the table."
-msgstr "Número de ordenacións realizadas examinando a táboa."
-
-#: libraries/messages.inc.php:163
-msgid "The number of times that a table lock was acquired immediately."
-msgstr "Número de veces que se adquiriu inmediatamente un bloqueo de táboa."
-
-#: libraries/messages.inc.php:164
-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 "
-"should first optimize your queries, and then either split your table or "
-"tables or use replication."
-msgstr ""
-"Número de veces que non se puido adquirir inmediatamente un bloqueo de táboa "
-"e houbo que agardar. De ser alto e ter observado problemas no desempeño, "
-"debería en primeiro lugar mellorar as procuras e despois, ora partir a táboa "
-"ou táboas, ora utilizar replicación."
-
-#: libraries/messages.inc.php:165
-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 ""
-"Número de fíos na caché de fíos. A relación de impactos da caché pódese "
-"calcular como Threads_created/Connections. Se este valor for vermello, "
-"debería aumentar a thread_cache_size."
-
-#: libraries/messages.inc.php:166
-msgid "The number of currently open connections."
-msgstr "Número de conexións abertas neste momento."
-
-#: libraries/messages.inc.php:167
-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 "
-"doesn't give a notable performance improvement if you have a good thread "
-"implementation.)"
-msgstr ""
-"Número de fíos creados para xerir as conexións. De ser Threads_created "
-"grande, sería ben aumentar o valor de thread_cache_size. (Normalmente isto "
-"non fornece unha mellora notábel no desempeño se ten unha boa implementación "
-"de fíos.)"
-
-#: libraries/messages.inc.php:168
-msgid "The number of threads that are not sleeping."
-msgstr "Número de fíos que non están a durmir."
-
#: libraries/mult_submits.inc.php:76 libraries/tbl_properties.inc.php:513
#: tbl_structure.php:29 tbl_structure.php:153 tbl_structure.php:157
#: tbl_structure.php:473
@@ -4434,8 +3578,8 @@ msgstr ""
#: libraries/replication_gui.lib.php:55 libraries/replication_gui.lib.php:56
#: libraries/replication_gui.lib.php:249 libraries/replication_gui.lib.php:252
-#: libraries/replication_gui.lib.php:259 server_privileges.php:672
-#: server_privileges.php:675 server_privileges.php:682
+#: libraries/replication_gui.lib.php:259 server_privileges.php:711
+#: server_privileges.php:714 server_privileges.php:721
#: server_synchronize.php:1171
msgid "User name"
msgstr "Nome do usuario"
@@ -4453,11 +3597,11 @@ msgid "Slave status"
msgstr "Estado do escravo"
#: libraries/replication_gui.lib.php:114 libraries/sql_query_form.lib.php:445
-#: server_status.php:626 server_variables.php:52
+#: server_status.php:737 server_variables.php:52
msgid "Variable"
msgstr "Variábel"
-#: libraries/replication_gui.lib.php:115 server_status.php:627
+#: libraries/replication_gui.lib.php:115 server_status.php:738
#: tbl_change.php:324 tbl_printview.php:370 tbl_select.php:139
#: tbl_structure.php:729
msgid "Value"
@@ -4479,34 +3623,34 @@ msgstr ""
msgid "Add slave replication user"
msgstr "Engadir un usuario de replicación de escravos"
-#: libraries/replication_gui.lib.php:254 server_privileges.php:677
+#: libraries/replication_gui.lib.php:254 server_privileges.php:716
msgid "Any user"
msgstr "Calquera usuario"
#: libraries/replication_gui.lib.php:255 libraries/replication_gui.lib.php:323
-#: libraries/replication_gui.lib.php:346 server_privileges.php:678
-#: server_privileges.php:745 server_privileges.php:769
-#: server_privileges.php:1889 server_privileges.php:1919
+#: libraries/replication_gui.lib.php:346 server_privileges.php:717
+#: server_privileges.php:784 server_privileges.php:808
+#: server_privileges.php:1928 server_privileges.php:1958
msgid "Use text field"
msgstr "Use campo de texto"
-#: libraries/replication_gui.lib.php:302 server_privileges.php:725
+#: libraries/replication_gui.lib.php:302 server_privileges.php:764
msgid "Any host"
msgstr "Calquera servidor"
-#: libraries/replication_gui.lib.php:306 server_privileges.php:729
+#: libraries/replication_gui.lib.php:306 server_privileges.php:768
msgid "Local"
msgstr "Local"
-#: libraries/replication_gui.lib.php:312 server_privileges.php:734
+#: libraries/replication_gui.lib.php:312 server_privileges.php:773
msgid "This Host"
msgstr "Este servidor"
-#: libraries/replication_gui.lib.php:318 server_privileges.php:740
+#: libraries/replication_gui.lib.php:318 server_privileges.php:779
msgid "Use Host Table"
msgstr "Usar a táboa de Host"
-#: libraries/replication_gui.lib.php:331 server_privileges.php:753
+#: libraries/replication_gui.lib.php:331 server_privileges.php:792
msgid ""
"When Host table is used, this field is ignored and values stored in Host "
"table are used instead."
@@ -4514,8 +3658,25 @@ 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/select_lang.lib.php:480 libraries/select_lang.lib.php:486
-#: libraries/select_lang.lib.php:492
+#. l10n: Text direction, use either ltr or rtl
+#: libraries/select_lang.lib.php:491
+msgid "ltr"
+msgstr "ltr"
+
+#: libraries/select_lang.lib.php:493
+msgid "Content of table __TABLE__"
+msgstr "Contido da táboa __TABLE__"
+
+#: libraries/select_lang.lib.php:494
+msgid "(continued)"
+msgstr "(continuado)"
+
+#: libraries/select_lang.lib.php:495
+msgid "Structure of table __TABLE__"
+msgstr "Estrutura da táboa __TABLE__"
+
+#: libraries/select_lang.lib.php:500 libraries/select_lang.lib.php:506
+#: libraries/select_lang.lib.php:512
#, php-format
msgid "Unknown language: %1$s."
msgstr "Linguaxe descoñecida: %1$s."
@@ -4526,7 +3687,7 @@ msgid "Servers"
msgstr "Servidores"
#: libraries/server_links.inc.php:53 server_engines.php:112
-#: server_engines.php:116 server_status.php:304 test/theme.php:105
+#: server_engines.php:116 server_status.php:415 test/theme.php:105
msgid "Variables"
msgstr "Variábeis"
@@ -4539,7 +3700,7 @@ msgid "Engines"
msgstr "Motores"
#: libraries/server_links.inc.php:76 server_binlog.php:110
-#: server_status.php:253 test/theme.php:121
+#: server_status.php:364 test/theme.php:121
msgid "Binary log"
msgstr "Ficheiro de rexistro binario"
@@ -5017,8 +4178,8 @@ msgstr "Reiniciar"
msgid "Protocol version"
msgstr "Versión do protocolo"
-#: main.php:189 server_privileges.php:1350 server_privileges.php:1497
-#: server_privileges.php:1611 server_privileges.php:2029
+#: main.php:189 server_privileges.php:1389 server_privileges.php:1536
+#: server_privileges.php:1650 server_privileges.php:2068
#: server_processlist.php:54
msgid "User"
msgstr "Usuario"
@@ -5415,7 +4576,7 @@ msgstr "Elimináronse %s bases de datos sen problemas."
msgid "Databases statistics"
msgstr "Estatísticas das bases de datos"
-#: server_databases.php:117 server_status.php:260
+#: server_databases.php:117 server_status.php:371
#: setup/lib/messages.inc.php:117
msgid "Tables"
msgstr "Táboas"
@@ -5435,6 +4596,18 @@ msgstr "Replicación do escravo"
msgid "Jump to database"
msgstr "Ir á base de datos"
+#: server_databases.php:267
+#, fuzzy
+#| msgid "Master replication"
+msgid "Not replicated"
+msgstr "Replicación do principal"
+
+#: server_databases.php:273
+#, fuzzy
+#| msgid "Replication"
+msgid "Replicated"
+msgstr "Replicación"
+
#: server_databases.php:289
#, php-format
msgid "Check privileges for database "%s"."
@@ -5468,144 +4641,332 @@ msgstr "Motores de almacenamento"
msgid "View dump (schema) of databases"
msgstr "Ver o volcado das bases de datos"
-#: server_privileges.php:263 server_privileges.php:264
+#: server_privileges.php:24 server_privileges.php:266
+msgid "Includes all privileges except GRANT."
+msgstr "Inclúe todos os privilexios a excepción de GRANT (Conceder)."
+
+#: server_privileges.php:25 server_privileges.php:192
+#: server_privileges.php:515
+msgid "Allows altering the structure of existing tables."
+msgstr "Permite alterar a estrutura das táboas xa existentes."
+
+#: server_privileges.php:26 server_privileges.php:208
+#: server_privileges.php:521
+msgid "Allows altering and dropping stored routines."
+msgstr "Permite alterar e eliminar rutinas armacenadas."
+
+#: server_privileges.php:27 server_privileges.php:184
+#: server_privileges.php:514
+msgid "Allows creating new databases and tables."
+msgstr "Permite crear bases de datos e táboas novas."
+
+#: server_privileges.php:28 server_privileges.php:207
+#: server_privileges.php:520
+msgid "Allows creating stored routines."
+msgstr "Permite crear rutinas almacenadas."
+
+#: server_privileges.php:29 server_privileges.php:514
+msgid "Allows creating new tables."
+msgstr "Permite crear táboas novas."
+
+#: server_privileges.php:30 server_privileges.php:195
+#: server_privileges.php:518
+msgid "Allows creating temporary tables."
+msgstr "Permite crear táboas temporais."
+
+#: server_privileges.php:31 server_privileges.php:209
+#: server_privileges.php:554
+msgid "Allows creating, dropping and renaming user accounts."
+msgstr "Permite crear, eliminar e mudar o nome das contas de usuario."
+
+#: server_privileges.php:32 server_privileges.php:199
+#: server_privileges.php:203 server_privileges.php:526
+#: server_privileges.php:530
+msgid "Allows creating new views."
+msgstr "Permite crear vistas novas."
+
+#: server_privileges.php:33 server_privileges.php:183
+#: server_privileges.php:506
+msgid "Allows deleting data."
+msgstr "Permite eliminar datos."
+
+#: server_privileges.php:34 server_privileges.php:185
+#: server_privileges.php:517
+msgid "Allows dropping databases and tables."
+msgstr "Permite eliminar bases de datos e táboas."
+
+#: server_privileges.php:35 server_privileges.php:517
+msgid "Allows dropping tables."
+msgstr "Permite eliminar táboas."
+
+#: server_privileges.php:36 server_privileges.php:200
+#: server_privileges.php:534
+msgid "Allows to set up events for the event scheduler"
+msgstr "Permite configurar acontecementos para o programador de acontecementos"
+
+#: server_privileges.php:37 server_privileges.php:210
+#: server_privileges.php:522
+msgid "Allows executing stored routines."
+msgstr "Permite executar rutinas almacenadas."
+
+#: server_privileges.php:38 server_privileges.php:189
+#: server_privileges.php:509
+msgid "Allows importing data from and exporting data into files."
+msgstr "Permite importar e exportar datos desde e para ficheiros."
+
+#: server_privileges.php:39 server_privileges.php:540
+msgid ""
+"Allows adding users and privileges without reloading the privilege tables."
+msgstr ""
+"Permite engadir usuarios e privilexios sen recargar as táboas de privilexios."
+
+#: server_privileges.php:40 server_privileges.php:191
+#: server_privileges.php:516
+msgid "Allows creating and dropping indexes."
+msgstr "Permite crear e eliminar índices."
+
+#: server_privileges.php:41 server_privileges.php:181
+#: server_privileges.php:442 server_privileges.php:504
+msgid "Allows inserting and replacing data."
+msgstr "Permite inserir e substituír datos."
+
+#: server_privileges.php:42 server_privileges.php:196
+#: server_privileges.php:549
+msgid "Allows locking tables for the current thread."
+msgstr "Permite bloquear táboas do fío en uso"
+
+#: server_privileges.php:43 server_privileges.php:646
+#: server_privileges.php:648
+msgid "Limits the number of new connections the user may open per hour."
+msgstr "Limita o número de conexións novas por hora que pode abrir un usuario."
+
+#: server_privileges.php:44 server_privileges.php:634
+#: server_privileges.php:636
+msgid "Limits the number of queries the user may send to the server per hour."
+msgstr "Limita o número de procuras por hora que pode enviar un usuario."
+
+#: server_privileges.php:45 server_privileges.php:640
+#: server_privileges.php:642
+msgid ""
+"Limits the number of commands that change any table or database the user may "
+"execute per hour."
+msgstr ""
+"Limita o número de ordes que modifiquen unha táboa ou base de datos por hora "
+"que pode executar un usuario."
+
+#: server_privileges.php:46 server_privileges.php:652
+#: server_privileges.php:654
+msgid "Limits the number of simultaneous connections the user may have."
+msgstr "Limita o número de conexións simultáneas que pode ter o usuario."
+
+#: server_privileges.php:47 server_privileges.php:188
+#: server_privileges.php:544
+msgid "Allows viewing processes of all users"
+msgstr "Permite ver procesos de todos os usuarios"
+
+#: server_privileges.php:48 server_privileges.php:190
+#: server_privileges.php:448 server_privileges.php:550
+msgid "Has no effect in this MySQL version."
+msgstr "Non funciona nesta versión do MySQL."
+
+#: server_privileges.php:49 server_privileges.php:186
+#: server_privileges.php:545
+msgid "Allows reloading server settings and flushing the server's caches."
+msgstr "Permite recargar a configuración do servidor e limpar a súa caché."
+
+#: server_privileges.php:50 server_privileges.php:198
+#: server_privileges.php:552
+msgid "Allows the user to ask where the slaves / masters are."
+msgstr "Permite que o usuario pregunte onde están os escravos e os masters."
+
+#: server_privileges.php:51 server_privileges.php:197
+#: server_privileges.php:553
+msgid "Needed for the replication slaves."
+msgstr "Necesario para os escravos de replicación."
+
+#: server_privileges.php:52 server_privileges.php:180
+#: server_privileges.php:439 server_privileges.php:503
+msgid "Allows reading data."
+msgstr "Permite gravar datos."
+
+#: server_privileges.php:53 server_privileges.php:193
+#: server_privileges.php:547
+msgid "Gives access to the complete list of databases."
+msgstr "Permite acceder á listaxe completa de bases de datos"
+
+#: server_privileges.php:54 server_privileges.php:204
+#: server_privileges.php:206 server_privileges.php:519
+msgid "Allows performing SHOW CREATE VIEW queries."
+msgstr "Permite realizar consultas SHOW CREATE VIEW."
+
+#: server_privileges.php:55 server_privileges.php:187
+#: server_privileges.php:546
+msgid "Allows shutting down the server."
+msgstr "Permite apagar o servidor."
+
+#: server_privileges.php:56 server_privileges.php:194
+#: server_privileges.php:543
+msgid ""
+"Allows connecting, even if maximum number of connections is reached; "
+"required for most administrative operations like setting global variables or "
+"killing threads of other users."
+msgstr ""
+"Permite conexións, mesmo chegado ao número máximo de conexións. Requíreno a "
+"maioría das operación administrativas, como configurar as variábeis globais "
+"ou matar os fíos doutros usuarios."
+
+#: server_privileges.php:57 server_privileges.php:201
+#: server_privileges.php:535
+msgid "Allows creating and dropping triggers"
+msgstr "Permite crear e eliminar os disparadores"
+
+#: server_privileges.php:58 server_privileges.php:182
+#: server_privileges.php:445 server_privileges.php:505
+msgid "Allows changing data."
+msgstr "Permite modificar datos."
+
+#: server_privileges.php:59 server_privileges.php:260
+msgid "No privileges."
+msgstr "Sen privilexios."
+
+#: server_privileges.php:302 server_privileges.php:303
#, fuzzy
#| msgid "None"
msgctxt "None privileges"
msgid "None"
msgstr "Ningunha"
-#: server_privileges.php:392 server_privileges.php:527
-#: server_privileges.php:1679 server_privileges.php:1685
+#: server_privileges.php:431 server_privileges.php:566
+#: server_privileges.php:1718 server_privileges.php:1724
msgid "Table-specific privileges"
msgstr "Privilexios propios de táboa"
-#: server_privileges.php:393 server_privileges.php:535
-#: server_privileges.php:1501
+#: server_privileges.php:432 server_privileges.php:574
+#: server_privileges.php:1540
msgid " Note: MySQL privilege names are expressed in English "
msgstr " Nota: os nomes de privilexios do MySQL están en inglés"
-#: server_privileges.php:524 server_privileges.php:1500
+#: server_privileges.php:563 server_privileges.php:1539
msgid "Global privileges"
msgstr "Privilexios globais"
-#: server_privileges.php:526 server_privileges.php:1679
+#: server_privileges.php:565 server_privileges.php:1718
msgid "Database-specific privileges"
msgstr "Privilexios propios de base de datos"
-#: server_privileges.php:571
+#: server_privileges.php:610
msgid "Administration"
msgstr "Administración"
-#: server_privileges.php:591
+#: server_privileges.php:630
msgid "Resource limits"
msgstr "Limites de recursos"
-#: server_privileges.php:592
+#: server_privileges.php:631
msgid "Note: Setting these options to 0 (zero) removes the limit."
msgstr "Nota: Se estas opcións se configuran como 0 (cero) elimínase o límite."
-#: server_privileges.php:669
+#: server_privileges.php:708
msgid "Login Information"
msgstr "Información sobre o acceso (login)"
-#: server_privileges.php:763
+#: server_privileges.php:802
msgid "Do not change the password"
msgstr "Non mude o contrasinal"
-#: server_privileges.php:804 server_privileges.php:2166
+#: server_privileges.php:843 server_privileges.php:2205
#, fuzzy
#| msgid "No user(s) found."
msgid "No user found."
msgstr "Non se achou ningún usuario."
-#: server_privileges.php:848
+#: server_privileges.php:887
#, php-format
msgid "The user %s already exists!"
msgstr "Xa existe o usuario %s"
-#: server_privileges.php:931
+#: server_privileges.php:970
msgid "You have added a new user."
msgstr "Engadiuse o usuario."
-#: server_privileges.php:1152
+#: server_privileges.php:1191
#, php-format
msgid "You have updated the privileges for %s."
msgstr "Acaba de actualizar os privilexios de %s."
-#: server_privileges.php:1176
+#: server_privileges.php:1215
#, php-format
msgid "You have revoked the privileges for %s"
msgstr "Retiroulle os privilexios a %s"
-#: server_privileges.php:1212
+#: server_privileges.php:1251
#, php-format
msgid "The password for %s was changed successfully."
msgstr "Modificouse sen problemas o contrasinal de %s."
-#: server_privileges.php:1232
+#: server_privileges.php:1271
#, php-format
msgid "Deleting %s"
msgstr "A eliminar %s"
-#: server_privileges.php:1243
+#: server_privileges.php:1282
msgid "No users selected for deleting!"
msgstr "Non se seleccionaron utilizadores para eliminar!"
-#: server_privileges.php:1246
+#: server_privileges.php:1285
msgid "Reloading the privileges"
msgstr "A recargar os privilexios"
-#: server_privileges.php:1261
+#: server_privileges.php:1300
msgid "The selected users have been deleted successfully."
msgstr "Elimináronse sen problemas os usuarios seleccionados."
-#: server_privileges.php:1296
+#: server_privileges.php:1335
msgid "The privileges were reloaded successfully."
msgstr "Non houbo problemas ao recargar os privilexios."
-#: server_privileges.php:1324 server_privileges.php:1610
+#: server_privileges.php:1363 server_privileges.php:1649
msgid "Edit Privileges"
msgstr "Modificar privilexios"
-#: server_privileges.php:1333
+#: server_privileges.php:1372
msgid "Revoke"
msgstr "Revogar"
-#: server_privileges.php:1365
+#: server_privileges.php:1404
msgid "User overview"
msgstr "Vista xeral dos usuarios"
-#: server_privileges.php:1502 server_privileges.php:1684
-#: server_privileges.php:2033
+#: server_privileges.php:1541 server_privileges.php:1723
+#: server_privileges.php:2072
msgid "Grant"
msgstr "Conceder"
-#: server_privileges.php:1521 server_privileges.php:2123
+#: server_privileges.php:1560 server_privileges.php:2162
msgid "Any"
msgstr "Calquera"
-#: server_privileges.php:1570 server_privileges.php:1594
-#: server_privileges.php:1988 server_privileges.php:2177
+#: server_privileges.php:1609 server_privileges.php:1633
+#: server_privileges.php:2027 server_privileges.php:2216
msgid "Add a new User"
msgstr "Engadir un usuario novo"
-#: server_privileges.php:1575
+#: server_privileges.php:1614
msgid "Remove selected users"
msgstr "Eliminar os usuarios seleccionados"
-#: server_privileges.php:1578
+#: server_privileges.php:1617
msgid "Revoke all active privileges from the users and delete them afterwards."
msgstr ""
"Retirarlles todos os privilexios activos aos usuarios e eliminalos a "
"continuación."
-#: server_privileges.php:1579 server_privileges.php:1580
-#: server_privileges.php:1581
+#: server_privileges.php:1618 server_privileges.php:1619
+#: server_privileges.php:1620
msgid "Drop the databases that have the same names as the users."
msgstr "Eliminar as bases de datos que teñan os mesmos nomes que os usuarios."
-#: server_privileges.php:1597
+#: server_privileges.php:1636
#, php-format
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
@@ -5618,51 +4979,51 @@ msgstr ""
"privilexios que usa o servidor se se levaron a cabo alteracións manuais. "
"Neste caso, debería %svolver a cargar os privilexios%s antes de proseguir."
-#: server_privileges.php:1645
+#: server_privileges.php:1684
msgid "The selected user was not found in the privilege table."
msgstr "Non se atopou o usuario seleccionado na táboa de privilexios."
-#: server_privileges.php:1685
+#: server_privileges.php:1724
msgid "Column-specific privileges"
msgstr "Privilexios propios de columna"
-#: server_privileges.php:1886
+#: server_privileges.php:1925
msgid "Add privileges on the following database"
msgstr "Engadir privilexios para esta base de datos"
-#: server_privileges.php:1904
+#: server_privileges.php:1943
msgid "Wildcards % and _ should be escaped with a \\ to use them literally"
msgstr ""
"Os caracteres comodín _ e % deberíanse escapar con \\ para podelos usar "
"literalmente"
-#: server_privileges.php:1907
+#: server_privileges.php:1946
msgid "Add privileges on the following table"
msgstr "Engadir privilexios para a esta táboa"
-#: server_privileges.php:1964
+#: server_privileges.php:2003
msgid "Change Login Information / Copy User"
msgstr "Modificar a información de acceso (login) / Copiar o utilizador"
-#: server_privileges.php:1967
+#: server_privileges.php:2006
msgid "Create a new user with the same privileges and ..."
msgstr "Crear un utilizador novo cos mesmos privilexios e..."
-#: server_privileges.php:1969
+#: server_privileges.php:2008
msgid "... keep the old one."
msgstr "... manter o anterior."
-#: server_privileges.php:1970
+#: server_privileges.php:2009
msgid " ... delete the old one from the user tables."
msgstr " ... eliminar o anterior das táboas de utilizadores."
-#: server_privileges.php:1971
+#: server_privileges.php:2010
msgid ""
" ... revoke all active privileges from the old one and delete it afterwards."
msgstr ""
" ... retirarlle todos os privilexios activos ao anterior e eliminalo despois."
-#: server_privileges.php:1972
+#: server_privileges.php:2011
msgid ""
" ... delete the old one from the user tables and reload the privileges "
"afterwards."
@@ -5670,44 +5031,44 @@ msgstr ""
" ... eliminar o anterior das táboas de utilizadores e recargar os "
"privilexios despois."
-#: server_privileges.php:1994
+#: server_privileges.php:2033
msgid "Database for user"
msgstr "Base de datos para o usuario"
-#: server_privileges.php:1998
+#: server_privileges.php:2037
#, fuzzy
#| msgid "None"
msgctxt "Create none database for user"
msgid "None"
msgstr "Ningunha"
-#: server_privileges.php:1999
+#: server_privileges.php:2038
msgid "Create database with same name and grant all privileges"
msgstr "Crear unha base de datos co mesmo nome e conceder todos os privilexios"
-#: server_privileges.php:2000
+#: server_privileges.php:2039
msgid "Grant all privileges on wildcard name (username\\_%)"
msgstr "Conceder todos os privilexios para o nome con comodíns (username\\_%)"
-#: server_privileges.php:2003
+#: server_privileges.php:2042
#, php-format
msgid "Grant all privileges on database "%s""
msgstr "Conceder todos os privilexios sobre a base de datos "%s""
-#: server_privileges.php:2026
+#: server_privileges.php:2065
#, php-format
msgid "Users having access to "%s""
msgstr "Usuarios que teñen acceso a "%s""
-#: server_privileges.php:2134
+#: server_privileges.php:2173
msgid "global"
msgstr "global"
-#: server_privileges.php:2136
+#: server_privileges.php:2175
msgid "database-specific"
msgstr "específico da base de datos"
-#: server_privileges.php:2138
+#: server_privileges.php:2177
msgid "wildcard"
msgstr "comodín"
@@ -5757,7 +5118,7 @@ msgid "This server is configured as master in a replication process."
msgstr ""
"Este servidor está configurado como principal nun proceso de replicación."
-#: server_replication.php:184 server_status.php:281
+#: server_replication.php:184 server_status.php:392
msgid "Show master status"
msgstr "Mostrar o estado do principal"
@@ -5911,83 +5272,734 @@ msgstr ""
"Este servidor non está configurado como escravo nun proceso de replicación. "
"Desexa configuralo?"
+#: server_status.php:40
+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 ""
+"Número de transaccións que utilizaron a caché do rexistro binario mais que "
+"excederon o valor de binlog_cache_size e utilizaron un ficheiro temporal "
+"para almacenar instrucións para a transacción."
+
+#: server_status.php:41
+msgid "The number of transactions that used the temporary binary log cache."
+msgstr "Número de transaccións que utilizaron o caché do rexistro binario."
+
+#: server_status.php:42
+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 "
+"to increase the tmp_table_size value to cause temporary tables to be memory-"
+"based instead of disk-based."
+msgstr ""
+"Número de táboas temporais no disco creadas automaticamente polo servidor ao "
+"executar as instrucións. Se Created_tmp_disk_tables é grande, será ben que "
+"incremente o valor de tmp_table_size para que as táboas temporais se baseen "
+"na memoria en vez de no disco."
+
+#: server_status.php:43
+msgid "How many temporary files mysqld has created."
+msgstr "Número de ficheiros temporais creados por mysqld."
+
+#: server_status.php:44
+msgid ""
+"The number of in-memory temporary tables created automatically by the server "
+"while executing statements."
+msgstr ""
+"Número de táboas temporais na memoria creadas automaticamente polo servidor "
+"ao executar instrucións."
+
+#: server_status.php:45
+msgid ""
+"The number of rows written with INSERT DELAYED for which some error occurred "
+"(probably duplicate key)."
+msgstr ""
+"Número de fileiras escritas con INSERT DELAYED que sofriron algún erro "
+"(probabelmente unha chave duplicada)."
+
#: server_status.php:46
+msgid ""
+"The number of INSERT DELAYED handler threads in use. Every different table "
+"on which one uses INSERT DELAYED gets its own thread."
+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."
+
+#: server_status.php:47
+msgid "The number of INSERT DELAYED rows written."
+msgstr "Número de fileiras INSERT DELAYED escritas."
+
+#: server_status.php:48
+msgid "The number of executed FLUSH statements."
+msgstr "Número de instrucións FLUSH executadas."
+
+#: server_status.php:49
+msgid "The number of internal COMMIT statements."
+msgstr "Número de instrucións COMMIT internas."
+
+#: server_status.php:50
+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."
+
+#: server_status.php:51
+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 ""
+"O servidor de MySQL pódelle perguntar ao motor de almacenamento NDB Cluster "
+"se sabe dunha táboa cun nome dado. Isto chámase descuberta. "
+"Handler_discovery indica o número de veces que se descobriron táboas."
+
+#: server_status.php:52
+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 ""
+"Número de veces que se leu a primeira entrada dun índice. Se for alto, tamén "
+"suxire que o servidor está a realizar un monte de exames de índice "
+"completos; por exemplo, SELECT col FROM algo, supoñendo que col estea "
+"indexada."
+
+#: server_status.php:53
+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 ""
+"Número de peticións para ler unha fileira baseadas nunha chave. Se for alto, "
+"é unha boa indicación de que as procuras e táboas están ben indexadas."
+
+#: server_status.php:54
+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 ""
+"Número de peticións para ler a seguinte fileira na orde da chave. Isto "
+"increméntase se está a procurar unha columna de índice cunha limitación de "
+"intervalo ou se está a examinar un índice."
+
+#: server_status.php:55
+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 ""
+"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."
+
+#: server_status.php:56
+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 "
+"probably have a lot of queries that require MySQL to scan whole tables or "
+"you have joins that don't use keys properly."
+msgstr ""
+"Número de peticións para ler unha fileira baseadas nunha posición fixa. Isto "
+"é alto se está a realizar moitas procuras que requiran ordenar o resultado. "
+"Posibelmente terá un monte de procuras que esixan que MySQL examine táboas "
+"completas ou ten unións que non usan as chaves axeitadamente."
+
+#: server_status.php:57
+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 "
+"tables are not properly indexed or that your queries are not written to take "
+"advantage of the indexes you have."
+msgstr ""
+"Número de peticións para ler a seguinte fileira no ficheiro de datos. Isto é "
+"alto se está a realizar moitos exames de táboas. Normalmente suxire que as "
+"táboas non están indexadas axeitadamente ou que as súas procuras non están "
+"escritas para aproveitar os índices de que dispón."
+
+#: server_status.php:58
+msgid "The number of internal ROLLBACK statements."
+msgstr "Número de instrucións de ROLLBACK (\"desfacer\") interno."
+
+#: server_status.php:59
+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."
+
+#: server_status.php:60
+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."
+
+#: server_status.php:61
+msgid "The number of pages containing data (dirty or clean)."
+msgstr "Número de páxinas que conteñen datos (suxos ou limpos)."
+
+#: server_status.php:62
+msgid "The number of pages currently dirty."
+msgstr "Número de páxinas actualmente suxas."
+
+#: server_status.php:63
+msgid "The number of buffer pool pages that have been requested to be flushed."
+msgstr "Número de páxinas do búfer que se pediu que se limpasen."
+
+#: server_status.php:64
+msgid "The number of free pages."
+msgstr "Número de páxinas libres."
+
+#: server_status.php:65
+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 ""
+"Número de páxinas con seguro no búfer InnoDB buffer. Estas páxinas están "
+"actualmente a ser lidas ou escritas ou non se poden limpar ou eliminar por "
+"algunha outra razón."
+
+#: server_status.php:66
+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 "
+"be calculated as Innodb_buffer_pool_pages_total - "
+"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data."
+msgstr ""
+"O número de páxinas ocupadas porque se destinan a reserva administrativa, "
+"tais como bloqueos de fileiras ou o índice hash adaptativo. Este valor tamén "
+"se pode calcular así: Innodb_buffer_pool_pages_total - "
+"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data."
+
+#: server_status.php:67
+msgid "Total size of buffer pool, in pages."
+msgstr "Tamaño total do búfer, en páxinas."
+
+#: server_status.php:68
+msgid ""
+"The number of \"random\" read-aheads InnoDB initiated. This happens when a "
+"query is to scan a large portion of a table but in random order."
+msgstr ""
+"Número de pré-lecturas \"aleatorias\" iniciadas por InnoDB. Isto acontece "
+"cando unha procura vai examinar unha porción grande dunha táboa mais en orde "
+"aleatoria."
+
+#: server_status.php:69
+msgid ""
+"The number of sequential read-aheads InnoDB initiated. This happens when "
+"InnoDB does a sequential full table scan."
+msgstr ""
+"Número de pre-lecturas secuenciais iniciadas por innoDB. Isto acontece cando "
+"InnoDB realiza un exame secuencial completo dunha táboa."
+
+#: server_status.php:70
+msgid "The number of logical read requests InnoDB has done."
+msgstr "Número de peticións de lectura lóxicas feitas por InnoDB."
+
+#: server_status.php:71
+msgid ""
+"The number of logical reads that InnoDB could not satisfy from buffer pool "
+"and had to do a single-page read."
+msgstr ""
+"Número de lecturas lóxicas que InnoDB non puido satisfacer do búfer e tivo "
+"que efectuar por medio de lecturas dunha única páxina."
+
+#: server_status.php:72
+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 "
+"available, it's necessary to wait for pages to be flushed first. This "
+"counter counts instances of these waits. If the buffer pool size was set "
+"properly, this value should be small."
+msgstr ""
+"Normalmente, escríbese no búfer de InnoDB como tarefa de fondo. Porén, de se "
+"precisar ler ou crear unha páxina e non haber páxinas limpas dispoñíbeis, "
+"hai que agardar a que se limpen. Este contador vai contando cantas veces hai "
+"que esperar. Se o tamaño do búfer é o axeitado, este valor debería ser "
+"pequeno."
+
+#: server_status.php:73
+msgid "The number writes done to the InnoDB buffer pool."
+msgstr "Número de veces que se escribiu no búfer InnoDB."
+
+#: server_status.php:74
+msgid "The number of fsync() operations so far."
+msgstr "Número de operacións fsync() até o momento."
+
+#: server_status.php:75
+msgid "The current number of pending fsync() operations."
+msgstr "Número actual de operacións fsync() pendentes."
+
+#: server_status.php:76
+msgid "The current number of pending reads."
+msgstr "Número actual de lecturas pendentes."
+
+#: server_status.php:77
+msgid "The current number of pending writes."
+msgstr "Número actual de escritas pendentes."
+
+#: server_status.php:78
+msgid "The amount of data read so far, in bytes."
+msgstr "Cantidade de datos lida até o momento, en bytes."
+
+#: server_status.php:79
+msgid "The total number of data reads."
+msgstr "Número total de lecturas de datos."
+
+#: server_status.php:80
+msgid "The total number of data writes."
+msgstr "Número total de escritas de datos."
+
+#: server_status.php:81
+msgid "The amount of data written so far, in bytes."
+msgstr "Cantidade de datos escrita até o momento, en bytes."
+
+#: server_status.php:82
+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."
+
+#: server_status.php:83
+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."
+
+#: server_status.php:84
+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 ""
+"Número de esperas debidas a que o búfer do rexistro é demasiado pequeno e "
+"houbo que agardar até que se limpase para continuar."
+
+#: server_status.php:85
+msgid "The number of log write requests."
+msgstr "Número de peticións de escrita no rexistro."
+
+#: server_status.php:86
+msgid "The number of physical writes to the log file."
+msgstr "Número de escritas físicas no ficheiro de rexistro."
+
+#: server_status.php:87
+msgid "The number of fsync() writes done to the log file."
+msgstr "Número de escritas fsyncss feitas no ficheiro de rexistro."
+
+#: server_status.php:88
+msgid "The number of pending log file fsyncs."
+msgstr "Número de fsyncs do ficheiro de rexistro pendentes."
+
+#: server_status.php:89
+msgid "Pending log file writes."
+msgstr "Escritas no ficheiro de rexistro pendentes."
+
+#: server_status.php:90
+msgid "The number of bytes written to the log file."
+msgstr "Número de bytes escritos no ficheiro de rexistro."
+
+#: server_status.php:91
+msgid "The number of pages created."
+msgstr "Número de páxinas creadas."
+
+#: server_status.php:92
+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 ""
+"O tamaño de páxina InnoDB incluído (por omisión 16KB). Moitos valores "
+"cóntanse en páxinas: o tamaño da páxina permite que se convirtan doadamente "
+"en bytes."
+
+#: server_status.php:93
+msgid "The number of pages read."
+msgstr "Número de páxinas lidas."
+
+#: server_status.php:94
+msgid "The number of pages written."
+msgstr "Número de páxinas escritas."
+
+#: server_status.php:95
+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."
+
+#: server_status.php:96
+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."
+
+#: server_status.php:97
+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."
+
+#: server_status.php:98
+msgid "The maximum time to acquire a row lock, in milliseconds."
+msgstr "Tempo máximo en adquirir un bloqueo de fileira, en milisegundos."
+
+#: server_status.php:99
+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."
+
+#: server_status.php:100
+msgid "The number of rows deleted from InnoDB tables."
+msgstr "Número de fileiras eliminadas das táboas InnoDB."
+
+#: server_status.php:101
+msgid "The number of rows inserted in InnoDB tables."
+msgstr "Número de fileiras inseridas nas táboas InnoDB."
+
+#: server_status.php:102
+msgid "The number of rows read from InnoDB tables."
+msgstr "Número de fileiras lidas das táboas InnoDB."
+
+#: server_status.php:103
+msgid "The number of rows updated in InnoDB tables."
+msgstr "Número de fileiras actualizadas en táboas InnoDB."
+
+#: server_status.php:104
+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 ""
+"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."
+
+#: server_status.php:105
+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 ""
+"Número de bloques sen utilizar na caché de chaves. Pode utilizar este valor "
+"para determinar canta caché de chave está en uso."
+
+#: server_status.php:106
+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 ""
+"Número de bloques utilizados na caché de chaves. Este valor é unha "
+"referencia superior que indica o número máximo de bloques que se teñen "
+"empregado."
+
+#: server_status.php:107
+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é."
+
+#: server_status.php:108
+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 ""
+"Número de lecturas físicas dun bloque chave desde o disco. Se key_reads for "
+"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."
+
+#: server_status.php:109
+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é."
+
+#: server_status.php:110
+msgid "The number of physical writes of a key block to disk."
+msgstr "Número de escritas físicas dun bloque chave no disco."
+
+#: server_status.php:111
+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 ""
+"Custo total da última procura compilada tal e como se computa mediante o "
+"optimizador de procuras. Resulta útil para comparar o custo de planos de "
+"procura diferentes para a mesma pesquisa. O valor por omisión é 0, que "
+"significa que aínda non se compilou ningunha procura."
+
+#: server_status.php:112
+msgid "The number of rows waiting to be written in INSERT DELAYED queues."
+msgstr ""
+"Número de procuras que están a agardar para seren escritas nas fileiras "
+"INSERT DELAYED."
+
+#: server_status.php:113
+msgid ""
+"The number of tables that have been opened. If opened tables is big, your "
+"table cache value is probably too small."
+msgstr ""
+"Número de táboas abertas en total. Se a cantidade é grande, o valor da caché "
+"de táboas posibelmente é demasiado pequeno."
+
+#: server_status.php:114
+msgid "The number of files that are open."
+msgstr "Número de ficheiros abertos."
+
+#: server_status.php:115
+msgid "The number of streams that are open (used mainly for logging)."
+msgstr "Número de fluxos abertos (utilizado principalmente para o rexistro)."
+
+#: server_status.php:116
+msgid "The number of tables that are open."
+msgstr "Número de táboas abertas."
+
+#: server_status.php:117
+msgid "The number of free memory blocks in query cache."
+msgstr "Número de bloques de memoria libres na caché de procuras."
+
+#: server_status.php:118
+msgid "The amount of free memory for query cache."
+msgstr "Cantidade de memoria libre para a caché de procuras."
+
+#: server_status.php:119
+msgid "The number of cache hits."
+msgstr "Número de impactos na caché."
+
+#: server_status.php:120
+msgid "The number of queries added to the cache."
+msgstr "Número de procuras adicionadas na caché."
+
+#: server_status.php:121
+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 "
+"cache size. The query cache uses a least recently used (LRU) strategy to "
+"decide which queries to remove from the cache."
+msgstr ""
+"Número de procuras eliminadas da caché para liberar memoria para deixar a "
+"caché para procuras novas. Esta información pode axudar a afinar o tamaño da "
+"caché de procuras. A caché de procuras utiliza unha estratexia de utilizado "
+"menos recentemente (LRU) para decidir que procuras debe eliminar da caché."
+
+#: server_status.php:122
+msgid ""
+"The number of non-cached queries (not cachable, or not cached due to the "
+"query_cache_type setting)."
+msgstr ""
+"Número de procuras non enviadas á caché (que non se poden enviar debido á "
+"configuración de query_cache_type)."
+
+#: server_status.php:123
+msgid "The number of queries registered in the cache."
+msgstr "Número de procuras rexistradas na caché."
+
+#: server_status.php:124
+msgid "The total number of blocks in the query cache."
+msgstr "Número total de bloques na caché de procuras."
+
+#: server_status.php:125
+msgctxt "$strShowStatusReset"
+msgid "Reset"
+msgstr "Reiniciar"
+
+#: server_status.php:126
+msgid "The status of failsafe replication (not yet implemented)."
+msgstr "Estado da replicación en modo seguro (aínda non realizado)."
+
+#: server_status.php:127
+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 ""
+"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."
+
+#: server_status.php:128
+msgid "The number of joins that used a range search on a reference table."
+msgstr ""
+"Número de unións que utilizaron un intervalo de procura nunha táboa de "
+"referencia."
+
+#: server_status.php:129
+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 ""
+"Número de unións de chaves que comproban a utilización de chaves despois de "
+"cada fileira (se non for 0, debería comprobar con atención os índices das "
+"táboas)."
+
+#: server_status.php:130
+msgid ""
+"The number of joins that used ranges on the first table. (It's normally not "
+"critical even if this is big.)"
+msgstr ""
+"Número de unións que utilizaron intervalos na primeira táboa (Normalmente "
+"non é grave, mesmo de ser grande)"
+
+#: server_status.php:131
+msgid "The number of joins that did a full scan of the first table."
+msgstr "Número de unións que realizaron un exame completo da primeira táboa."
+
+#: server_status.php:132
+msgid "The number of temporary tables currently open by the slave SQL thread."
+msgstr "Número de táboas temporais abertas actualmente polo fío SQL escravo."
+
+#: server_status.php:133
+msgid ""
+"Total (since startup) number of times the replication slave SQL thread has "
+"retried transactions."
+msgstr ""
+"Número total de veces (desde o inicio) que o fío de replicación SQL escravo "
+"reintentou as transaccións."
+
+#: server_status.php:134
+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."
+
+#: server_status.php:135
+msgid ""
+"The number of threads that have taken more than slow_launch_time seconds to "
+"create."
+msgstr ""
+"Número de fíos aos que lles levou crearse máis segundos dos indicados en "
+"slow_launch_time."
+
+#: server_status.php:136
+msgid ""
+"The number of queries that have taken more than long_query_time seconds."
+msgstr ""
+"Número de procuras ás que lles levou máis segundos dos indicados en "
+"long_query_time."
+
+#: server_status.php:137
+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 ""
+"Número de pasaxes de fusión que tivo que facer o algarismo de ordenación. Se "
+"este valor for grande, sería ben que considerase incrementar o valor da "
+"variábel de sistema sort_buffer_size."
+
+#: server_status.php:138
+msgid "The number of sorts that were done with ranges."
+msgstr "Número de ordenacións feitas con intervalos."
+
+#: server_status.php:139
+msgid "The number of sorted rows."
+msgstr "Número de fileiras ordenadas."
+
+#: server_status.php:140
+msgid "The number of sorts that were done by scanning the table."
+msgstr "Número de ordenacións realizadas examinando a táboa."
+
+#: server_status.php:141
+msgid "The number of times that a table lock was acquired immediately."
+msgstr "Número de veces que se adquiriu inmediatamente un bloqueo de táboa."
+
+#: server_status.php:142
+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 "
+"should first optimize your queries, and then either split your table or "
+"tables or use replication."
+msgstr ""
+"Número de veces que non se puido adquirir inmediatamente un bloqueo de táboa "
+"e houbo que agardar. De ser alto e ter observado problemas no desempeño, "
+"debería en primeiro lugar mellorar as procuras e despois, ora partir a táboa "
+"ou táboas, ora utilizar replicación."
+
+#: server_status.php:143
+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 ""
+"Número de fíos na caché de fíos. A relación de impactos da caché pódese "
+"calcular como Threads_created/Connections. Se este valor for vermello, "
+"debería aumentar a thread_cache_size."
+
+#: server_status.php:144
+msgid "The number of currently open connections."
+msgstr "Número de conexións abertas neste momento."
+
+#: server_status.php:145
+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 "
+"doesn't give a notable performance improvement if you have a good thread "
+"implementation.)"
+msgstr ""
+"Número de fíos creados para xerir as conexións. De ser Threads_created "
+"grande, sería ben aumentar o valor de thread_cache_size. (Normalmente isto "
+"non fornece unha mellora notábel no desempeño se ten unha boa implementación "
+"de fíos.)"
+
+#: server_status.php:146
+msgid "The number of threads that are not sleeping."
+msgstr "Número de fíos que non están a durmir."
+
+#: server_status.php:157
msgid "Runtime Information"
msgstr "Información sobre o tempo de execución"
-#: server_status.php:250
+#: server_status.php:361
msgid "Handler"
msgstr "Manipulador"
-#: server_status.php:251
+#: server_status.php:362
msgid "Query cache"
msgstr "caché de procuras"
-#: server_status.php:252
+#: server_status.php:363
msgid "Threads"
msgstr "Fíos"
-#: server_status.php:254
+#: server_status.php:365
msgid "Temporary data"
msgstr "Datos temporais"
-#: server_status.php:255
+#: server_status.php:366
msgid "Delayed inserts"
msgstr "Insercións demoradas"
-#: server_status.php:256
+#: server_status.php:367
msgid "Key cache"
msgstr "caché da chave"
-#: server_status.php:257
+#: server_status.php:368
msgid "Joins"
msgstr "Unións"
-#: server_status.php:259
+#: server_status.php:370
msgid "Sorting"
msgstr "Ordenación"
-#: server_status.php:261
+#: server_status.php:372
msgid "Transaction coordinator"
msgstr "Coordinador da transacción"
-#: server_status.php:271
+#: server_status.php:382
msgid "Flush (close) all tables"
msgstr "Limpar (fechar) todas as táboas"
-#: server_status.php:273
+#: server_status.php:384
msgid "Show open tables"
msgstr "Mostrar as táboas abertas"
-#: server_status.php:278
+#: server_status.php:389
msgid "Show slave hosts"
msgstr "Mostrar os servidores escravos"
-#: server_status.php:284
+#: server_status.php:395
msgid "Show slave status"
msgstr "Mostrar o estado dos escravos"
-#: server_status.php:289
+#: server_status.php:400
msgid "Flush query cache"
msgstr "Limpar a caché da pesquisa"
-#: server_status.php:294
+#: server_status.php:405
msgid "Show processes"
msgstr "Mostrar os procesos"
-#: server_status.php:344
+#: server_status.php:455
#, fuzzy
#| msgid "Reset"
msgctxt "for Show status"
msgid "Reset"
msgstr "Reiniciar"
-#: server_status.php:350
+#: server_status.php:461
#, php-format
msgid "This MySQL server has been running for %s. It started up on %s."
msgstr "Este servidor de MySQL leva funcionando %s. Iniciouse às %s."
-#: server_status.php:360
+#: server_status.php:471
#, fuzzy
#| msgid "This server is configured as master in a replication process."
msgid ""
@@ -5996,21 +6008,21 @@ msgid ""
msgstr ""
"Este servidor está configurado como principal nun proceso de replicación."
-#: server_status.php:362
+#: server_status.php:473
#, fuzzy
#| msgid "This server is configured as master in a replication process."
msgid "This MySQL server works as master in replication process."
msgstr ""
"Este servidor está configurado como principal nun proceso de replicación."
-#: server_status.php:364
+#: server_status.php:475
#, fuzzy
#| msgid "This server is configured as master in a replication process."
msgid "This MySQL server works as slave in replication process."
msgstr ""
"Este servidor está configurado como principal nun proceso de replicación."
-#: server_status.php:366
+#: server_status.php:477
#, fuzzy
#| msgid ""
#| "This MySQL server works as %s in replication process. For further "
@@ -6024,7 +6036,7 @@ msgstr ""
"b>. Para máis información acerca do estado de replicación do servidor visite "
"a sección sobre replicación."
-#: server_status.php:383
+#: server_status.php:494
msgid ""
"Server traffic: These tables show the network traffic statistics of "
"this MySQL server since its startup."
@@ -6032,11 +6044,11 @@ msgstr ""
"Tráfico do servidor: Estas táboas mostran as estatísticas do tráfico "
"da rede neste servidor de MySQL desde que se iniciou."
-#: server_status.php:388
+#: server_status.php:499
msgid "Traffic"
msgstr "Tráfico"
-#: server_status.php:388
+#: server_status.php:499
msgid ""
"On a busy server, the byte counters may overrun, so those statistics as "
"reported by the MySQL server may be incorrect."
@@ -6045,36 +6057,36 @@ msgstr ""
"que esas estatísticas, tal e como as transmite o servidor de MySQL, poden "
"resultar incorrectas."
-#: server_status.php:389 server_status.php:434 server_status.php:497
-#: server_status.php:555
+#: server_status.php:500 server_status.php:545 server_status.php:608
+#: server_status.php:666
msgid "per hour"
msgstr "por hora"
-#: server_status.php:394
+#: server_status.php:505
msgid "Received"
msgstr "Recibido"
-#: server_status.php:404
+#: server_status.php:515
msgid "Sent"
msgstr "Enviado"
-#: server_status.php:433
+#: server_status.php:544
msgid "Connections"
msgstr "Conexións"
-#: server_status.php:440
+#: server_status.php:551
msgid "max. concurrent connections"
msgstr "conexións simultáneas máximas"
-#: server_status.php:447
+#: server_status.php:558
msgid "Failed attempts"
msgstr "Tentativas falidas"
-#: server_status.php:461
+#: server_status.php:572
msgid "Aborted"
msgstr "Cancelado"
-#: server_status.php:490
+#: server_status.php:601
#, php-format
msgid ""
"Query statistics: Since its startup, %s queries have been sent to the "
@@ -6083,19 +6095,19 @@ msgstr ""
"Estatística das procuras: Desde que se iniciou, enviáronselle ao "
"servidor %s procuras."
-#: server_status.php:498
+#: server_status.php:609
msgid "per minute"
msgstr "por minuto"
-#: server_status.php:499
+#: server_status.php:610
msgid "per second"
msgstr "por segundo"
-#: server_status.php:554
+#: server_status.php:665
msgid "Query type"
msgstr "Tipo de procura"
-#: server_status.php:721
+#: server_status.php:832
msgid "Replication status"
msgstr "Estado da replicación"
diff --git a/po/he.po b/po/he.po
index b32c131b6..172e5e2ad 100755
--- a/po/he.po
+++ b/po/he.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-06-04 16:07-0400\n"
+"POT-Creation-Date: 2010-06-08 12:32-0400\n"
"PO-Revision-Date: 2010-03-12 09:15+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: hebrew \n"
@@ -14,11 +14,11 @@ msgstr ""
"X-Generator: Translate Toolkit 1.5.3\n"
#: browse_foreigners.php:38 browse_foreigners.php:59
-#: libraries/display_tbl.lib.php:417 server_privileges.php:1475
+#: libraries/display_tbl.lib.php:417 server_privileges.php:1514
msgid "Show all"
msgstr "ראיית הכל"
-#: browse_foreigners.php:82 libraries/common.lib.php:2304
+#: browse_foreigners.php:82 libraries/common.lib.php:2313
#: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:394
#: libraries/export/pdf.php:147 pdf_schema.php:283 pdf_schema.php:1123
#: pdf_schema.php:1139
@@ -34,8 +34,8 @@ msgstr ""
#: browse_foreigners.php:150 db_structure.php:79 db_structure.php:80
#: db_structure.php:91 db_structure.php:93 db_structure.php:104
-#: db_structure.php:106 libraries/common.lib.php:2822
-#: libraries/common.lib.php:2829 libraries/db_links.inc.php:75
+#: db_structure.php:106 libraries/common.lib.php:2831
+#: libraries/common.lib.php:2838 libraries/db_links.inc.php:75
#: libraries/tbl_links.inc.php:63
msgid "Search"
msgstr "חיפוש"
@@ -45,7 +45,7 @@ msgstr "חיפוש"
#: db_structure.php:567 js/messages.php:48 libraries/Config.class.php:1046
#: libraries/Theme_Manager.class.php:311
#: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719
-#: libraries/common.lib.php:1333 libraries/common.lib.php:2279
+#: libraries/common.lib.php:1335 libraries/common.lib.php:2288
#: libraries/display_change_password.lib.php:82
#: libraries/display_create_table.lib.php:63
#: libraries/display_export.lib.php:275 libraries/display_import.lib.php:276
@@ -56,9 +56,9 @@ msgstr "חיפוש"
#: libraries/sql_query_form.lib.php:552 libraries/tbl_properties.inc.php:782
#: main.php:128 navigation.php:237 pdf_pages.php:292 pdf_pages.php:328
#: pdf_pages.php:530 pmd_pdf.php:116 server_binlog.php:142
-#: server_privileges.php:625 server_privileges.php:1585
-#: server_privileges.php:1932 server_privileges.php:1979
-#: server_privileges.php:2018 server_replication.php:235
+#: server_privileges.php:664 server_privileges.php:1624
+#: server_privileges.php:1971 server_privileges.php:2018
+#: server_privileges.php:2057 server_replication.php:235
#: server_replication.php:318 server_replication.php:341
#: server_synchronize.php:1209 tbl_change.php:330 tbl_change.php:1174
#: tbl_change.php:1211 tbl_indexes.php:254 tbl_operations.php:265
@@ -76,7 +76,7 @@ msgstr ""
#: browse_foreigners.php:169 browse_foreigners.php:171
#: server_collations.php:55 server_collations.php:67 server_engines.php:59
-#: server_status.php:628
+#: server_status.php:739
msgid "Description"
msgstr "תיאור"
@@ -117,7 +117,7 @@ msgstr "שמות עמודה"
#: libraries/db_structure.lib.php:60 libraries/export/htmlword.php:245
#: libraries/export/latex.php:360 libraries/export/odt.php:297
#: libraries/export/texytext.php:234 libraries/tbl_properties.inc.php:100
-#: pdf_schema.php:1263 pdf_schema.php:1284 server_privileges.php:2031
+#: pdf_schema.php:1263 pdf_schema.php:1284 server_privileges.php:2070
#: tbl_change.php:287 tbl_change.php:314 tbl_printview.php:143
#: tbl_printview.php:313 tbl_select.php:136 tbl_structure.php:178
#: tbl_structure.php:659 tbl_tracking.php:274 tbl_tracking.php:321
@@ -161,9 +161,9 @@ msgstr "הערות"
#: libraries/Index.class.php:386 libraries/export/htmlword.php:322
#: libraries/export/latex.php:430 libraries/export/odt.php:368
#: libraries/export/texytext.php:311 libraries/mult_submits.inc.php:263
-#: pdf_schema.php:1344 server_privileges.php:1529 server_privileges.php:1540
-#: server_privileges.php:1850 server_privileges.php:1855
-#: server_privileges.php:2148 sql.php:132 sql.php:194 tbl_printview.php:229
+#: pdf_schema.php:1344 server_privileges.php:1568 server_privileges.php:1579
+#: server_privileges.php:1889 server_privileges.php:1894
+#: server_privileges.php:2187 sql.php:132 sql.php:194 tbl_printview.php:229
#: tbl_structure.php:350 tbl_tracking.php:337 tbl_tracking.php:342
msgid "No"
msgstr "לא"
@@ -177,9 +177,9 @@ msgstr "לא"
#: libraries/mult_submits.inc.php:101 libraries/mult_submits.inc.php:106
#: libraries/mult_submits.inc.php:111 libraries/mult_submits.inc.php:262
#: libraries/mult_submits.inc.php:273 pdf_schema.php:1344
-#: server_databases.php:64 server_privileges.php:1526
-#: server_privileges.php:1540 server_privileges.php:1850
-#: server_privileges.php:1853 server_privileges.php:2148 sql.php:193
+#: server_databases.php:64 server_privileges.php:1565
+#: server_privileges.php:1579 server_privileges.php:1889
+#: server_privileges.php:1892 server_privileges.php:2187 sql.php:193
#: tbl_printview.php:229 tbl_structure.php:40 tbl_structure.php:350
#: tbl_tracking.php:335 tbl_tracking.php:340
msgid "Yes"
@@ -276,7 +276,7 @@ msgstr "מעבר למאגר נתונים שהועתק"
msgid "BLOB Repository"
msgstr ""
-#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1350
+#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1352
#: libraries/server_links.inc.php:49 server_processlist.php:59
#: tbl_tracking.php:596 test/theme.php:101
msgid "Status"
@@ -339,8 +339,8 @@ msgstr "עריכת דפי PDG"
#: db_printview.php:104 db_tracking.php:72 db_tracking.php:157
#: libraries/db_structure.lib.php:46 libraries/export/xml.php:328
-#: libraries/header.inc.php:126 pdf_pages.php:424 server_privileges.php:1626
-#: server_privileges.php:1682 server_privileges.php:1946
+#: libraries/header.inc.php:126 pdf_pages.php:424 server_privileges.php:1665
+#: server_privileges.php:1721 server_privileges.php:1985
#: server_synchronize.php:423 server_synchronize.php:866 tbl_tracking.php:592
#: test/theme.php:75
msgid "Table"
@@ -441,7 +441,7 @@ msgstr "מחיקה"
#: db_qbe.php:370 db_qbe.php:451 db_qbe.php:522 db_qbe.php:553
#: libraries/display_import.lib.php:166 libraries/tbl_properties.inc.php:779
-#: server_privileges.php:258 tbl_change.php:1031 tbl_indexes.php:250
+#: server_privileges.php:297 tbl_change.php:1031 tbl_indexes.php:250
#: tbl_select.php:288
msgid "Or"
msgstr "או"
@@ -475,7 +475,7 @@ msgstr "השתמש בטבלאות"
msgid "SQL query on database %s:"
msgstr ""
-#: db_qbe.php:934 libraries/common.lib.php:1223
+#: db_qbe.php:934 libraries/common.lib.php:1225
msgid "Submit Query"
msgstr "שליחת שאילתה"
@@ -514,7 +514,7 @@ msgstr ""
#: db_search.php:267 db_structure.php:77 db_structure.php:78
#: db_structure.php:90 db_structure.php:92 db_structure.php:103
-#: db_structure.php:105 libraries/common.lib.php:2824
+#: db_structure.php:105 libraries/common.lib.php:2833
#: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50
#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:467
msgid "Browse"
@@ -561,26 +561,26 @@ msgstr "בתוך הטבלה/הטבלאות:"
#: db_structure.php:81 db_structure.php:82 db_structure.php:94
#: db_structure.php:95 db_structure.php:107 db_structure.php:108
-#: libraries/common.lib.php:2823 libraries/sql_query_form.lib.php:334
+#: libraries/common.lib.php:2832 libraries/sql_query_form.lib.php:334
#: libraries/sql_query_form.lib.php:337 libraries/tbl_links.inc.php:76
msgid "Insert"
msgstr "הכנסה"
#: db_structure.php:83 db_structure.php:96 db_structure.php:109
-#: libraries/common.lib.php:2820 libraries/common.lib.php:2827
+#: libraries/common.lib.php:2829 libraries/common.lib.php:2836
#: libraries/db_links.inc.php:63 libraries/export/htmlword.php:23
#: libraries/export/latex.php:33 libraries/export/latex.php:337
#: libraries/export/odt.php:32 libraries/export/sql.php:60
#: libraries/export/texytext.php:23 libraries/import.lib.php:1104
#: libraries/tbl_links.inc.php:56 pmd_general.php:134
-#: server_privileges.php:554 server_replication.php:315 tbl_tracking.php:269
+#: server_privileges.php:593 server_replication.php:315 tbl_tracking.php:269
msgid "Structure"
msgstr "מבנה"
#: db_structure.php:84 db_structure.php:85 db_structure.php:97
#: db_structure.php:98 db_structure.php:110 db_structure.php:111
#: db_structure.php:545 db_structure.php:546 db_tracking.php:91
-#: libraries/Index.class.php:483 libraries/common.lib.php:1654
+#: libraries/Index.class.php:483 libraries/common.lib.php:1656
#: libraries/db_links.inc.php:100 libraries/mult_submits.inc.php:36
#: libraries/mult_submits.inc.php:73 libraries/tbl_links.inc.php:127
#: server_databases.php:352 tbl_structure.php:27 tbl_structure.php:151
@@ -590,7 +590,7 @@ msgstr "הסרה"
#: db_structure.php:86 db_structure.php:87 db_structure.php:99
#: db_structure.php:100 db_structure.php:112 db_structure.php:113
-#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1653
+#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1655
#: libraries/mult_submits.inc.php:39 libraries/tbl_links.inc.php:105
msgid "Empty"
msgstr "ריקון"
@@ -632,7 +632,7 @@ msgstr ""
#: db_structure.php:485 libraries/db_structure.lib.php:49
#: libraries/server_links.inc.php:70 server_replication.php:33
-#: server_replication.php:164 server_status.php:258
+#: server_replication.php:164 server_status.php:369
#, fuzzy
msgid "Replication"
msgstr "יחסים"
@@ -649,20 +649,20 @@ msgstr "%s הוא מנוע האחסון ברירת המחדשל של שרת MySQ
#: db_structure.php:524 db_structure.php:541 db_structure.php:542
#: libraries/display_tbl.lib.php:2081 libraries/display_tbl.lib.php:2086
#: libraries/mult_submits.inc.php:16 server_databases.php:346
-#: server_databases.php:351 server_privileges.php:1557 tbl_structure.php:455
+#: server_databases.php:351 server_privileges.php:1596 tbl_structure.php:455
#: tbl_structure.php:464
msgid "With selected:"
msgstr "עם הנבחרים:"
#: db_structure.php:527 libraries/display_tbl.lib.php:2076
-#: server_databases.php:348 server_privileges.php:530
-#: server_privileges.php:1560 tbl_structure.php:458
+#: server_databases.php:348 server_privileges.php:569
+#: server_privileges.php:1599 tbl_structure.php:458
msgid "Check All"
msgstr "בחירת הכל"
#: db_structure.php:531 libraries/display_tbl.lib.php:2077
#: libraries/replication_gui.lib.php:33 server_databases.php:350
-#: server_privileges.php:533 server_privileges.php:1564 tbl_structure.php:462
+#: server_privileges.php:572 server_privileges.php:1603 tbl_structure.php:462
msgid "Uncheck All"
msgstr "בטל סימון הכל"
@@ -700,7 +700,7 @@ msgstr "ניתוח טבלה"
#: libraries/display_export.lib.php:83 libraries/display_tbl.lib.php:2094
#: libraries/display_tbl.lib.php:2225 libraries/mult_submits.inc.php:62
#: libraries/server_links.inc.php:84 libraries/tbl_links.inc.php:82
-#: pmd_pdf.php:84 pmd_pdf.php:109 server_privileges.php:1341
+#: pmd_pdf.php:84 pmd_pdf.php:109 server_privileges.php:1380
#: setup/frames/menu.inc.php:22 tbl_row_action.php:59
msgid "Export"
msgstr "ייצוא"
@@ -718,8 +718,8 @@ msgstr ""
#: libraries/export/sql.php:342 libraries/export/texytext.php:84
#: libraries/export/xml.php:255 libraries/header.inc.php:106
#: libraries/header_printview.inc.php:58 server_databases.php:169
-#: server_privileges.php:1621 server_privileges.php:1682
-#: server_privileges.php:1940 server_processlist.php:56
+#: server_privileges.php:1660 server_privileges.php:1721
+#: server_privileges.php:1979 server_processlist.php:56
#: server_synchronize.php:1179 server_synchronize.php:1183
#: tbl_tracking.php:591 test/theme.php:65
msgid "Database"
@@ -740,8 +740,8 @@ msgstr ""
#: db_tracking.php:77 libraries/Index.class.php:440
#: libraries/db_structure.lib.php:53 server_databases.php:203
-#: server_privileges.php:1503 server_privileges.php:1686
-#: server_privileges.php:2034 tbl_structure.php:187
+#: server_privileges.php:1542 server_privileges.php:1725
+#: server_privileges.php:2073 tbl_structure.php:187
msgid "Action"
msgstr "פעולה"
@@ -932,11 +932,11 @@ msgstr "שם המארח ריק!"
msgid "The user name is empty!"
msgstr "שם המשתמש ריק !"
-#: js/messages.php:44 server_privileges.php:1197 user_password.php:70
+#: js/messages.php:44 server_privileges.php:1236 user_password.php:70
msgid "The password is empty!"
msgstr "הסיסמא ריקה!"
-#: js/messages.php:45 server_privileges.php:1195 user_password.php:73
+#: js/messages.php:45 server_privileges.php:1234 user_password.php:73
msgid "The passwords aren't the same!"
msgstr "הסיסמאות אינן זהות!"
@@ -1017,8 +1017,8 @@ msgid "Prev"
msgstr "הקודם"
#. l10n: Display text for next month link in calendar
-#: js/messages.php:77 libraries/common.lib.php:2344
-#: libraries/common.lib.php:2347 libraries/display_tbl.lib.php:338
+#: js/messages.php:77 libraries/common.lib.php:2353
+#: libraries/common.lib.php:2356 libraries/display_tbl.lib.php:338
#: server_binlog.php:205 server_binlog.php:207 tbl_printview.php:424
#: tbl_structure.php:801
msgid "Next"
@@ -1094,27 +1094,27 @@ msgid "December"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:97 libraries/common.lib.php:1555
+#: js/messages.php:97 libraries/common.lib.php:1557
msgid "Jan"
msgstr "ינואר"
#. l10n: Short month name
-#: js/messages.php:99 libraries/common.lib.php:1557
+#: js/messages.php:99 libraries/common.lib.php:1559
msgid "Feb"
msgstr "פברואר"
#. l10n: Short month name
-#: js/messages.php:101 libraries/common.lib.php:1559
+#: js/messages.php:101 libraries/common.lib.php:1561
msgid "Mar"
msgstr "מרץ"
#. l10n: Short month name
-#: js/messages.php:103 libraries/common.lib.php:1561
+#: js/messages.php:103 libraries/common.lib.php:1563
msgid "Apr"
msgstr "אפריל"
#. l10n: Short month name
-#: js/messages.php:105 libraries/common.lib.php:1563
+#: js/messages.php:105 libraries/common.lib.php:1565
#, fuzzy
#| msgid "May"
msgctxt "Short month name"
@@ -1122,37 +1122,37 @@ msgid "May"
msgstr "מאי"
#. l10n: Short month name
-#: js/messages.php:107 libraries/common.lib.php:1565
+#: js/messages.php:107 libraries/common.lib.php:1567
msgid "Jun"
msgstr "יוני"
#. l10n: Short month name
-#: js/messages.php:109 libraries/common.lib.php:1567
+#: js/messages.php:109 libraries/common.lib.php:1569
msgid "Jul"
msgstr "יולי"
#. l10n: Short month name
-#: js/messages.php:111 libraries/common.lib.php:1569
+#: js/messages.php:111 libraries/common.lib.php:1571
msgid "Aug"
msgstr "אוגוסט"
#. l10n: Short month name
-#: js/messages.php:113 libraries/common.lib.php:1571
+#: js/messages.php:113 libraries/common.lib.php:1573
msgid "Sep"
msgstr "ספטמבר"
#. l10n: Short month name
-#: js/messages.php:115 libraries/common.lib.php:1573
+#: js/messages.php:115 libraries/common.lib.php:1575
msgid "Oct"
msgstr "אוקטובר"
#. l10n: Short month name
-#: js/messages.php:117 libraries/common.lib.php:1575
+#: js/messages.php:117 libraries/common.lib.php:1577
msgid "Nov"
msgstr "נובמבר"
#. l10n: Short month name
-#: js/messages.php:119 libraries/common.lib.php:1577
+#: js/messages.php:119 libraries/common.lib.php:1579
msgid "Dec"
msgstr "דצמבר"
@@ -1193,37 +1193,37 @@ msgid "Saturday"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:132 libraries/common.lib.php:1580
+#: js/messages.php:132 libraries/common.lib.php:1582
msgid "Sun"
msgstr "יום ראשון"
#. l10n: Short week day name
-#: js/messages.php:134 libraries/common.lib.php:1582
+#: js/messages.php:134 libraries/common.lib.php:1584
msgid "Mon"
msgstr "יום שני"
#. l10n: Short week day name
-#: js/messages.php:136 libraries/common.lib.php:1584
+#: js/messages.php:136 libraries/common.lib.php:1586
msgid "Tue"
msgstr "יום שלישי"
#. l10n: Short week day name
-#: js/messages.php:138 libraries/common.lib.php:1586
+#: js/messages.php:138 libraries/common.lib.php:1588
msgid "Wed"
msgstr "יום רביעי"
#. l10n: Short week day name
-#: js/messages.php:140 libraries/common.lib.php:1588
+#: js/messages.php:140 libraries/common.lib.php:1590
msgid "Thu"
msgstr "יום חמישי"
#. l10n: Short week day name
-#: js/messages.php:142 libraries/common.lib.php:1590
+#: js/messages.php:142 libraries/common.lib.php:1592
msgid "Fri"
msgstr "יום שישי"
#. l10n: Short week day name
-#: js/messages.php:144 libraries/common.lib.php:1592
+#: js/messages.php:144 libraries/common.lib.php:1594
msgid "Sat"
msgstr "שבת"
@@ -1368,7 +1368,7 @@ msgid "Comment"
msgstr "הערות"
#: libraries/Index.class.php:466 libraries/common.lib.php:616
-#: libraries/common.lib.php:1199 libraries/display_tbl.lib.php:1117
+#: libraries/common.lib.php:1201 libraries/display_tbl.lib.php:1117
#: libraries/import.lib.php:1087 libraries/import.lib.php:1111
#: pdf_pages.php:285 setup/frames/index.inc.php:124
#: setup/lib/messages.inc.php:352 tbl_row_action.php:69
@@ -1392,7 +1392,7 @@ msgid ""
msgstr ""
#: libraries/List_Database.class.php:431 libraries/server_links.inc.php:41
-#: server_databases.php:88 server_privileges.php:1621
+#: server_databases.php:88 server_privileges.php:1660
#: setup/lib/messages.inc.php:110 test/theme.php:93
msgid "Databases"
msgstr "מאגרי נתונים"
@@ -1717,7 +1717,7 @@ msgid "Documentation"
msgstr "תיעוד"
#: libraries/common.lib.php:595 libraries/header_printview.inc.php:61
-#: server_processlist.php:60 server_status.php:247
+#: server_processlist.php:60 server_status.php:358
msgid "SQL query"
msgstr "שאילתת SQL"
@@ -1733,131 +1733,131 @@ msgstr "הסברת SQL"
msgid "Skip Explain SQL"
msgstr "Skip Explain SQL"
-#: libraries/common.lib.php:1212
+#: libraries/common.lib.php:1214
msgid "Without PHP Code"
msgstr "ללא קוד PHP"
-#: libraries/common.lib.php:1215 setup/lib/messages.inc.php:355
+#: libraries/common.lib.php:1217 setup/lib/messages.inc.php:355
msgid "Create PHP Code"
msgstr "ייצור קוד PHP"
-#: libraries/common.lib.php:1233 server_status.php:341
+#: libraries/common.lib.php:1235 server_status.php:452
#: setup/lib/messages.inc.php:354
msgid "Refresh"
msgstr "רענון"
-#: libraries/common.lib.php:1242
+#: libraries/common.lib.php:1244
#, fuzzy
msgid "Skip Validate SQL"
msgstr "בדיקת תקינות SQL"
-#: libraries/common.lib.php:1245 setup/lib/messages.inc.php:356 sql.php:518
+#: libraries/common.lib.php:1247 setup/lib/messages.inc.php:356 sql.php:518
msgid "Validate SQL"
msgstr "בדיקת תקינות SQL"
-#: libraries/common.lib.php:1276
+#: libraries/common.lib.php:1278
msgid "Inline edit of this query"
msgstr ""
-#: libraries/common.lib.php:1278
+#: libraries/common.lib.php:1280
#, fuzzy
#| msgid "Engines"
msgid "Inline"
msgstr "מנועים"
-#: libraries/common.lib.php:1332 libraries/common.lib.php:1347
+#: libraries/common.lib.php:1334 libraries/common.lib.php:1349
msgid "Profiling"
msgstr ""
-#: libraries/common.lib.php:1351 libraries/tbl_triggers.lib.php:28
+#: libraries/common.lib.php:1353 libraries/tbl_triggers.lib.php:28
#: server_processlist.php:58
msgid "Time"
msgstr "זמן"
#. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "B"
msgstr "Bytes"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "KiB"
msgstr "KB"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "MiB"
msgstr "MB"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "GiB"
msgstr "GB"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "TiB"
msgstr "TB"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "PiB"
msgstr "PB"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "EiB"
msgstr "EB"
#. l10n: Thousands separator
-#: libraries/common.lib.php:1417
+#: libraries/common.lib.php:1419
msgid ","
msgstr ","
#. l10n: Decimal separator
-#: libraries/common.lib.php:1419
+#: libraries/common.lib.php:1421
msgid "."
msgstr "."
#. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string
-#: libraries/common.lib.php:1596
+#: libraries/common.lib.php:1598
#: libraries/transformations/text_plain__dateformat.inc.php:34
msgid "%B %d, %Y at %I:%M %p"
msgstr "%B %d, %Y at %I:%M %p"
-#: libraries/common.lib.php:1898
+#: libraries/common.lib.php:1907
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "%s ימים, %s שעות, %s דקות ו- %s שניות"
-#: libraries/common.lib.php:2313 libraries/common.lib.php:2316
-#: libraries/display_tbl.lib.php:290 server_status.php:608
+#: libraries/common.lib.php:2322 libraries/common.lib.php:2325
+#: libraries/display_tbl.lib.php:290 server_status.php:719
msgid "Begin"
msgstr "התחלה"
-#: libraries/common.lib.php:2314 libraries/common.lib.php:2317
+#: libraries/common.lib.php:2323 libraries/common.lib.php:2326
#: libraries/display_tbl.lib.php:291 server_binlog.php:168
#: server_binlog.php:170
msgid "Previous"
msgstr "הקודם"
-#: libraries/common.lib.php:2345 libraries/common.lib.php:2348
+#: libraries/common.lib.php:2354 libraries/common.lib.php:2357
#: libraries/display_tbl.lib.php:353
msgid "End"
msgstr "סיום"
-#: libraries/common.lib.php:2421
+#: libraries/common.lib.php:2430
#, php-format
msgid "Jump to database "%s"."
msgstr "קפיצה אל מאגר נתונים "%s"."
-#: libraries/common.lib.php:2441
+#: libraries/common.lib.php:2450
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr ""
-#: libraries/common.lib.php:2821 libraries/common.lib.php:2828
+#: libraries/common.lib.php:2830 libraries/common.lib.php:2837
#: libraries/db_links.inc.php:68 libraries/export/sql.php:25
#: libraries/import/sql.php:18 libraries/server_links.inc.php:45
#: libraries/tbl_links.inc.php:60 querywindow.php:99 test/theme.php:97
msgid "SQL"
msgstr "SQL"
-#: libraries/common.lib.php:2830 libraries/db_links.inc.php:104
+#: libraries/common.lib.php:2839 libraries/db_links.inc.php:104
#: libraries/tbl_links.inc.php:95 libraries/tbl_links.inc.php:117
#: view_operations.php:89
msgid "Operations"
@@ -1912,8 +1912,8 @@ msgid "Import"
msgstr "ייצוא"
#: libraries/db_links.inc.php:111 libraries/server_links.inc.php:66
-#: server_privileges.php:72 server_privileges.php:1683
-#: server_privileges.php:2032 test/theme.php:117
+#: server_privileges.php:111 server_privileges.php:1722
+#: server_privileges.php:2071 test/theme.php:117
msgid "Privileges"
msgstr "הרשאות"
@@ -1959,22 +1959,22 @@ msgid "Change password"
msgstr "שינוי סיסמא"
#: libraries/display_change_password.lib.php:35
-#: libraries/replication_gui.lib.php:345 server_privileges.php:768
+#: libraries/replication_gui.lib.php:345 server_privileges.php:807
msgid "No Password"
msgstr "ללא סיסמא"
#: libraries/display_change_password.lib.php:41
#: libraries/replication_gui.lib.php:59 libraries/replication_gui.lib.php:60
#: libraries/replication_gui.lib.php:335 libraries/replication_gui.lib.php:339
-#: libraries/replication_gui.lib.php:349 server_privileges.php:757
-#: server_privileges.php:761 server_privileges.php:772
-#: server_privileges.php:1499 server_synchronize.php:1175
+#: libraries/replication_gui.lib.php:349 server_privileges.php:796
+#: server_privileges.php:800 server_privileges.php:811
+#: server_privileges.php:1538 server_synchronize.php:1175
msgid "Password"
msgstr "סיסמא"
#: libraries/display_change_password.lib.php:46
#: libraries/replication_gui.lib.php:353 libraries/replication_gui.lib.php:356
-#: server_privileges.php:776 server_privileges.php:779
+#: server_privileges.php:815 server_privileges.php:818
msgid "Re-type"
msgstr "הקלדה נוספת"
@@ -1989,12 +1989,12 @@ msgid "MySQL 4.0 compatible"
msgstr "תואם MySQL 4.0"
#: libraries/display_change_password.lib.php:72
-#: libraries/replication_gui.lib.php:360 server_privileges.php:783
+#: libraries/replication_gui.lib.php:360 server_privileges.php:822
msgid "Generate Password"
msgstr "ייצור סיסמא"
#: libraries/display_change_password.lib.php:75
-#: libraries/replication_gui.lib.php:363 server_privileges.php:786
+#: libraries/replication_gui.lib.php:363 server_privileges.php:825
msgid "Generate"
msgstr "ייצור"
@@ -2007,8 +2007,8 @@ msgstr "יצירת מאגר נתונים חדש"
msgid "Create"
msgstr "יצירה"
-#: libraries/display_create_database.lib.php:40 server_privileges.php:74
-#: server_privileges.php:1388 server_replication.php:35
+#: libraries/display_create_database.lib.php:40 server_privileges.php:113
+#: server_privileges.php:1427 server_replication.php:35
msgid "No Privileges"
msgstr "ללא הרשאות"
@@ -2097,7 +2097,7 @@ msgstr "דחיסה"
#: libraries/display_export.lib.php:240 libraries/display_import.lib.php:197
#: libraries/display_import.lib.php:210 libraries/display_tbl.lib.php:530
#: libraries/export/sql.php:868 libraries/tbl_properties.inc.php:575
-#: server_privileges.php:1836 server_processlist.php:75
+#: server_privileges.php:1875 server_processlist.php:75
msgid "None"
msgstr "ללא"
@@ -2417,7 +2417,7 @@ msgstr ""
msgid "Buffer Pool"
msgstr ""
-#: libraries/engines/innodb.lib.php:145 server_status.php:306
+#: libraries/engines/innodb.lib.php:145 server_status.php:417
msgid "InnoDB Status"
msgstr "מצב InnoDB"
@@ -2426,8 +2426,8 @@ msgid "Buffer Pool Usage"
msgstr ""
#: libraries/engines/innodb.lib.php:194 server_databases.php:137
-#: server_databases.php:305 server_status.php:414 server_status.php:475
-#: server_status.php:496 tbl_printview.php:351 tbl_structure.php:696
+#: server_databases.php:305 server_status.php:525 server_status.php:586
+#: server_status.php:607 tbl_printview.php:351 tbl_structure.php:696
msgid "Total"
msgstr "סה\"כ"
@@ -2743,7 +2743,7 @@ msgstr "Microsoft Word 2000"
#: libraries/export/latex.php:201 libraries/export/odt.php:48
#: libraries/export/sql.php:106 libraries/export/sql.php:868
#: libraries/export/texytext.php:27 server_databases.php:127
-#: server_privileges.php:537 server_replication.php:316 tbl_printview.php:317
+#: server_privileges.php:576 server_replication.php:316 tbl_printview.php:317
#: tbl_structure.php:665
msgid "Data"
msgstr "נתונים"
@@ -2793,9 +2793,9 @@ msgstr "סוג MIME"
#: libraries/export/xml.php:102 libraries/header_printview.inc.php:57
#: libraries/replication_gui.lib.php:63 libraries/replication_gui.lib.php:174
#: libraries/replication_gui.lib.php:269 libraries/replication_gui.lib.php:272
-#: libraries/replication_gui.lib.php:329 server_privileges.php:692
-#: server_privileges.php:695 server_privileges.php:751
-#: server_privileges.php:1498 server_privileges.php:2030
+#: libraries/replication_gui.lib.php:329 server_privileges.php:731
+#: server_privileges.php:734 server_privileges.php:790
+#: server_privileges.php:1537 server_privileges.php:2069
#: server_processlist.php:55 server_synchronize.php:1159
msgid "Host"
msgstr "מארח"
@@ -3153,743 +3153,6 @@ msgstr "ללא"
msgid "Convert to Kana"
msgstr ""
-#. l10n: Text direction, use either ltr or rtl
-#: libraries/messages.inc.php:19
-msgid "ltr"
-msgstr "rtl"
-
-#: libraries/messages.inc.php:21
-msgid "Content of table __TABLE__"
-msgstr "תוכן של טבלה __TABLE__"
-
-#: libraries/messages.inc.php:22
-msgid "(continued)"
-msgstr "(מומשך)"
-
-#: libraries/messages.inc.php:23
-msgid "Structure of table __TABLE__"
-msgstr "מבנה של טבלה __TABLE__"
-
-#: libraries/messages.inc.php:25 server_privileges.php:227
-msgid "Includes all privileges except GRANT."
-msgstr "כלול כל ההרשאות חוץ מ- GRANT."
-
-#: libraries/messages.inc.php:26 server_privileges.php:153
-#: server_privileges.php:476
-msgid "Allows altering the structure of existing tables."
-msgstr "מאפשר שינוי של מבני הטבלאות הקיימות."
-
-#: libraries/messages.inc.php:27 server_privileges.php:169
-#: server_privileges.php:482
-#, fuzzy
-msgid "Allows altering and dropping stored routines."
-msgstr "מאפשר יצירת שגרות מאוחסנות."
-
-#: libraries/messages.inc.php:28 server_privileges.php:145
-#: server_privileges.php:475
-#, fuzzy
-msgid "Allows creating new databases and tables."
-msgstr "מאפשר מחיקת מאגרי נתונים וטבלאות."
-
-#: libraries/messages.inc.php:29 server_privileges.php:168
-#: server_privileges.php:481
-msgid "Allows creating stored routines."
-msgstr "מאפשר יצירת שגרות מאוחסנות."
-
-#: libraries/messages.inc.php:30 server_privileges.php:475
-msgid "Allows creating new tables."
-msgstr "מאפשר יצירת טבלאות חדשות."
-
-#: libraries/messages.inc.php:31 server_privileges.php:156
-#: server_privileges.php:479
-msgid "Allows creating temporary tables."
-msgstr "מאפשר יצירת טבלאות זמניות."
-
-#: libraries/messages.inc.php:32 server_privileges.php:170
-#: server_privileges.php:515
-msgid "Allows creating, dropping and renaming user accounts."
-msgstr ""
-
-#: libraries/messages.inc.php:33 server_privileges.php:160
-#: server_privileges.php:164 server_privileges.php:487
-#: server_privileges.php:491
-#, fuzzy
-msgid "Allows creating new views."
-msgstr "מאפשר יצירת טבלאות חדשות."
-
-#: libraries/messages.inc.php:34 server_privileges.php:144
-#: server_privileges.php:467
-msgid "Allows deleting data."
-msgstr "מאפשר מחיקת מידע."
-
-#: libraries/messages.inc.php:35 server_privileges.php:146
-#: server_privileges.php:478
-msgid "Allows dropping databases and tables."
-msgstr "מאפשר מחיקת מאגרי נתונים וטבלאות."
-
-#: libraries/messages.inc.php:36 server_privileges.php:478
-msgid "Allows dropping tables."
-msgstr "מאפשר מחיקת טבלאות."
-
-#: libraries/messages.inc.php:37 server_privileges.php:161
-#: server_privileges.php:495
-msgid "Allows to set up events for the event scheduler"
-msgstr ""
-
-#: libraries/messages.inc.php:38 server_privileges.php:171
-#: server_privileges.php:483
-#, fuzzy
-msgid "Allows executing stored routines."
-msgstr "מאפשר יצירת שגרות מאוחסנות."
-
-#: libraries/messages.inc.php:39 server_privileges.php:150
-#: server_privileges.php:470
-msgid "Allows importing data from and exporting data into files."
-msgstr ""
-
-#: libraries/messages.inc.php:40 server_privileges.php:501
-msgid ""
-"Allows adding users and privileges without reloading the privilege tables."
-msgstr ""
-
-#: libraries/messages.inc.php:41 server_privileges.php:152
-#: server_privileges.php:477
-msgid "Allows creating and dropping indexes."
-msgstr ""
-
-#: libraries/messages.inc.php:42 server_privileges.php:142
-#: server_privileges.php:403 server_privileges.php:465
-msgid "Allows inserting and replacing data."
-msgstr ""
-
-#: libraries/messages.inc.php:43 server_privileges.php:157
-#: server_privileges.php:510
-msgid "Allows locking tables for the current thread."
-msgstr ""
-
-#: libraries/messages.inc.php:44 server_privileges.php:607
-#: server_privileges.php:609
-msgid "Limits the number of new connections the user may open per hour."
-msgstr ""
-
-#: libraries/messages.inc.php:45 server_privileges.php:595
-#: server_privileges.php:597
-msgid "Limits the number of queries the user may send to the server per hour."
-msgstr ""
-
-#: libraries/messages.inc.php:46 server_privileges.php:601
-#: server_privileges.php:603
-msgid ""
-"Limits the number of commands that change any table or database the user may "
-"execute per hour."
-msgstr ""
-
-#: libraries/messages.inc.php:47 server_privileges.php:613
-#: server_privileges.php:615
-msgid "Limits the number of simultaneous connections the user may have."
-msgstr ""
-
-#: libraries/messages.inc.php:48 server_privileges.php:149
-#: server_privileges.php:505
-msgid "Allows viewing processes of all users"
-msgstr ""
-
-#: libraries/messages.inc.php:49 server_privileges.php:151
-#: server_privileges.php:409 server_privileges.php:511
-msgid "Has no effect in this MySQL version."
-msgstr ""
-
-#: libraries/messages.inc.php:50 server_privileges.php:147
-#: server_privileges.php:506
-msgid "Allows reloading server settings and flushing the server's caches."
-msgstr ""
-
-#: libraries/messages.inc.php:51 server_privileges.php:159
-#: server_privileges.php:513
-msgid "Allows the user to ask where the slaves / masters are."
-msgstr ""
-
-#: libraries/messages.inc.php:52 server_privileges.php:158
-#: server_privileges.php:514
-msgid "Needed for the replication slaves."
-msgstr ""
-
-#: libraries/messages.inc.php:53 server_privileges.php:141
-#: server_privileges.php:400 server_privileges.php:464
-#, fuzzy
-msgid "Allows reading data."
-msgstr "מאפשר מחיקת מידע."
-
-#: libraries/messages.inc.php:54 server_privileges.php:154
-#: server_privileges.php:508
-msgid "Gives access to the complete list of databases."
-msgstr ""
-
-#: libraries/messages.inc.php:55 server_privileges.php:165
-#: server_privileges.php:167 server_privileges.php:480
-msgid "Allows performing SHOW CREATE VIEW queries."
-msgstr ""
-
-#: libraries/messages.inc.php:56 server_privileges.php:148
-#: server_privileges.php:507
-msgid "Allows shutting down the server."
-msgstr ""
-
-#: libraries/messages.inc.php:57 server_privileges.php:155
-#: server_privileges.php:504
-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/messages.inc.php:58 server_privileges.php:162
-#: server_privileges.php:496
-msgid "Allows creating and dropping triggers"
-msgstr ""
-
-#: libraries/messages.inc.php:59 server_privileges.php:143
-#: server_privileges.php:406 server_privileges.php:466
-#, fuzzy
-msgid "Allows changing data."
-msgstr "מאפשר מחיקת מידע."
-
-#: libraries/messages.inc.php:60 server_privileges.php:221
-msgid "No privileges."
-msgstr "ללא הרשאות."
-
-#: libraries/messages.inc.php:62
-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/messages.inc.php:63
-msgid "The number of transactions that used the temporary binary log cache."
-msgstr ""
-
-#: libraries/messages.inc.php:64
-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 "
-"to increase the tmp_table_size value to cause temporary tables to be memory-"
-"based instead of disk-based."
-msgstr ""
-
-#: libraries/messages.inc.php:65
-msgid "How many temporary files mysqld has created."
-msgstr ""
-
-#: libraries/messages.inc.php:66
-msgid ""
-"The number of in-memory temporary tables created automatically by the server "
-"while executing statements."
-msgstr ""
-
-#: libraries/messages.inc.php:67
-msgid ""
-"The number of rows written with INSERT DELAYED for which some error occurred "
-"(probably duplicate key)."
-msgstr ""
-
-#: libraries/messages.inc.php:68
-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/messages.inc.php:69
-msgid "The number of INSERT DELAYED rows written."
-msgstr ""
-
-#: libraries/messages.inc.php:70
-msgid "The number of executed FLUSH statements."
-msgstr ""
-
-#: libraries/messages.inc.php:71
-msgid "The number of internal COMMIT statements."
-msgstr ""
-
-#: libraries/messages.inc.php:72
-msgid "The number of times a row was deleted from a table."
-msgstr ""
-
-#: libraries/messages.inc.php:73
-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/messages.inc.php:74
-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/messages.inc.php:75
-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/messages.inc.php:76
-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/messages.inc.php:77
-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/messages.inc.php:78
-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 "
-"probably have a lot of queries that require MySQL to scan whole tables or "
-"you have joins that don't use keys properly."
-msgstr ""
-
-#: libraries/messages.inc.php:79
-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 "
-"tables are not properly indexed or that your queries are not written to take "
-"advantage of the indexes you have."
-msgstr ""
-
-#: libraries/messages.inc.php:80
-msgid "The number of internal ROLLBACK statements."
-msgstr ""
-
-#: libraries/messages.inc.php:81
-msgid "The number of requests to update a row in a table."
-msgstr ""
-
-#: libraries/messages.inc.php:82
-msgid "The number of requests to insert a row in a table."
-msgstr ""
-
-#: libraries/messages.inc.php:83
-msgid "The number of pages containing data (dirty or clean)."
-msgstr ""
-
-#: libraries/messages.inc.php:84
-msgid "The number of pages currently dirty."
-msgstr ""
-
-#: libraries/messages.inc.php:85
-msgid "The number of buffer pool pages that have been requested to be flushed."
-msgstr ""
-
-#: libraries/messages.inc.php:86
-msgid "The number of free pages."
-msgstr ""
-
-#: libraries/messages.inc.php:87
-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/messages.inc.php:88
-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 "
-"be calculated as Innodb_buffer_pool_pages_total - "
-"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data."
-msgstr ""
-
-#: libraries/messages.inc.php:89
-msgid "Total size of buffer pool, in pages."
-msgstr ""
-
-#: libraries/messages.inc.php:90
-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/messages.inc.php:91
-msgid ""
-"The number of sequential read-aheads InnoDB initiated. This happens when "
-"InnoDB does a sequential full table scan."
-msgstr ""
-
-#: libraries/messages.inc.php:92
-msgid "The number of logical read requests InnoDB has done."
-msgstr ""
-
-#: libraries/messages.inc.php:93
-msgid ""
-"The number of logical reads that InnoDB could not satisfy from buffer pool "
-"and had to do a single-page read."
-msgstr ""
-
-#: libraries/messages.inc.php:94
-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 "
-"available, it's necessary to wait for pages to be flushed first. This "
-"counter counts instances of these waits. If the buffer pool size was set "
-"properly, this value should be small."
-msgstr ""
-
-#: libraries/messages.inc.php:95
-msgid "The number writes done to the InnoDB buffer pool."
-msgstr ""
-
-#: libraries/messages.inc.php:96
-msgid "The number of fsync() operations so far."
-msgstr ""
-
-#: libraries/messages.inc.php:97
-msgid "The current number of pending fsync() operations."
-msgstr ""
-
-#: libraries/messages.inc.php:98
-msgid "The current number of pending reads."
-msgstr ""
-
-#: libraries/messages.inc.php:99
-msgid "The current number of pending writes."
-msgstr ""
-
-#: libraries/messages.inc.php:100
-msgid "The amount of data read so far, in bytes."
-msgstr ""
-
-#: libraries/messages.inc.php:101
-msgid "The total number of data reads."
-msgstr ""
-
-#: libraries/messages.inc.php:102
-msgid "The total number of data writes."
-msgstr ""
-
-#: libraries/messages.inc.php:103
-msgid "The amount of data written so far, in bytes."
-msgstr ""
-
-#: libraries/messages.inc.php:104
-msgid "The number of pages that have been written for doublewrite operations."
-msgstr ""
-
-#: libraries/messages.inc.php:105
-msgid "The number of doublewrite operations that have been performed."
-msgstr ""
-
-#: libraries/messages.inc.php:106
-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/messages.inc.php:107
-msgid "The number of log write requests."
-msgstr ""
-
-#: libraries/messages.inc.php:108
-msgid "The number of physical writes to the log file."
-msgstr ""
-
-#: libraries/messages.inc.php:109
-msgid "The number of fsync() writes done to the log file."
-msgstr ""
-
-#: libraries/messages.inc.php:110
-msgid "The number of pending log file fsyncs."
-msgstr ""
-
-#: libraries/messages.inc.php:111
-msgid "Pending log file writes."
-msgstr ""
-
-#: libraries/messages.inc.php:112
-msgid "The number of bytes written to the log file."
-msgstr ""
-
-#: libraries/messages.inc.php:113
-msgid "The number of pages created."
-msgstr ""
-
-#: libraries/messages.inc.php:114
-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/messages.inc.php:115
-msgid "The number of pages read."
-msgstr ""
-
-#: libraries/messages.inc.php:116
-msgid "The number of pages written."
-msgstr ""
-
-#: libraries/messages.inc.php:117
-msgid "The number of row locks currently being waited for."
-msgstr ""
-
-#: libraries/messages.inc.php:118
-msgid "The average time to acquire a row lock, in milliseconds."
-msgstr ""
-
-#: libraries/messages.inc.php:119
-msgid "The total time spent in acquiring row locks, in milliseconds."
-msgstr ""
-
-#: libraries/messages.inc.php:120
-msgid "The maximum time to acquire a row lock, in milliseconds."
-msgstr ""
-
-#: libraries/messages.inc.php:121
-msgid "The number of times a row lock had to be waited for."
-msgstr ""
-
-#: libraries/messages.inc.php:122
-msgid "The number of rows deleted from InnoDB tables."
-msgstr ""
-
-#: libraries/messages.inc.php:123
-msgid "The number of rows inserted in InnoDB tables."
-msgstr ""
-
-#: libraries/messages.inc.php:124
-msgid "The number of rows read from InnoDB tables."
-msgstr ""
-
-#: libraries/messages.inc.php:125
-msgid "The number of rows updated in InnoDB tables."
-msgstr ""
-
-#: libraries/messages.inc.php:126
-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/messages.inc.php:127
-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/messages.inc.php:128
-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/messages.inc.php:129
-msgid "The number of requests to read a key block from the cache."
-msgstr ""
-
-#: libraries/messages.inc.php:130
-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/messages.inc.php:131
-msgid "The number of requests to write a key block to the cache."
-msgstr ""
-
-#: libraries/messages.inc.php:132
-msgid "The number of physical writes of a key block to disk."
-msgstr ""
-
-#: libraries/messages.inc.php:133
-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/messages.inc.php:134
-msgid "The number of rows waiting to be written in INSERT DELAYED queues."
-msgstr ""
-
-#: libraries/messages.inc.php:135
-msgid ""
-"The number of tables that have been opened. If opened tables is big, your "
-"table cache value is probably too small."
-msgstr ""
-
-#: libraries/messages.inc.php:136
-msgid "The number of files that are open."
-msgstr ""
-
-#: libraries/messages.inc.php:137
-msgid "The number of streams that are open (used mainly for logging)."
-msgstr ""
-
-#: libraries/messages.inc.php:138
-msgid "The number of tables that are open."
-msgstr ""
-
-#: libraries/messages.inc.php:139
-msgid "The number of free memory blocks in query cache."
-msgstr ""
-
-#: libraries/messages.inc.php:140
-msgid "The amount of free memory for query cache."
-msgstr ""
-
-#: libraries/messages.inc.php:141
-msgid "The number of cache hits."
-msgstr ""
-
-#: libraries/messages.inc.php:142
-msgid "The number of queries added to the cache."
-msgstr ""
-
-#: libraries/messages.inc.php:143
-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 "
-"cache size. The query cache uses a least recently used (LRU) strategy to "
-"decide which queries to remove from the cache."
-msgstr ""
-
-#: libraries/messages.inc.php:144
-msgid ""
-"The number of non-cached queries (not cachable, or not cached due to the "
-"query_cache_type setting)."
-msgstr ""
-
-#: libraries/messages.inc.php:145
-msgid "The number of queries registered in the cache."
-msgstr ""
-
-#: libraries/messages.inc.php:146
-msgid "The total number of blocks in the query cache."
-msgstr ""
-
-#: libraries/messages.inc.php:147
-#, fuzzy
-msgctxt "$strShowStatusReset"
-msgid "Reset"
-msgstr "איפוס"
-
-#: libraries/messages.inc.php:148
-msgid "The status of failsafe replication (not yet implemented)."
-msgstr ""
-
-#: libraries/messages.inc.php:149
-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/messages.inc.php:150
-msgid "The number of joins that used a range search on a reference table."
-msgstr ""
-
-#: libraries/messages.inc.php:151
-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/messages.inc.php:152
-msgid ""
-"The number of joins that used ranges on the first table. (It's normally not "
-"critical even if this is big.)"
-msgstr ""
-
-#: libraries/messages.inc.php:153
-msgid "The number of joins that did a full scan of the first table."
-msgstr ""
-
-#: libraries/messages.inc.php:154
-msgid "The number of temporary tables currently open by the slave SQL thread."
-msgstr ""
-
-#: libraries/messages.inc.php:155
-msgid ""
-"Total (since startup) number of times the replication slave SQL thread has "
-"retried transactions."
-msgstr ""
-
-#: libraries/messages.inc.php:156
-msgid "This is ON if this server is a slave that is connected to a master."
-msgstr ""
-
-#: libraries/messages.inc.php:157
-msgid ""
-"The number of threads that have taken more than slow_launch_time seconds to "
-"create."
-msgstr ""
-
-#: libraries/messages.inc.php:158
-msgid ""
-"The number of queries that have taken more than long_query_time seconds."
-msgstr ""
-
-#: libraries/messages.inc.php:159
-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/messages.inc.php:160
-msgid "The number of sorts that were done with ranges."
-msgstr ""
-
-#: libraries/messages.inc.php:161
-msgid "The number of sorted rows."
-msgstr ""
-
-#: libraries/messages.inc.php:162
-msgid "The number of sorts that were done by scanning the table."
-msgstr ""
-
-#: libraries/messages.inc.php:163
-msgid "The number of times that a table lock was acquired immediately."
-msgstr ""
-
-#: libraries/messages.inc.php:164
-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 "
-"should first optimize your queries, and then either split your table or "
-"tables or use replication."
-msgstr ""
-
-#: libraries/messages.inc.php:165
-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/messages.inc.php:166
-msgid "The number of currently open connections."
-msgstr ""
-
-#: libraries/messages.inc.php:167
-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 "
-"doesn't give a notable performance improvement if you have a good thread "
-"implementation.)"
-msgstr ""
-
-#: libraries/messages.inc.php:168
-msgid "The number of threads that are not sleeping."
-msgstr ""
-
#: libraries/mult_submits.inc.php:76 libraries/tbl_properties.inc.php:513
#: tbl_structure.php:29 tbl_structure.php:153 tbl_structure.php:157
#: tbl_structure.php:473
@@ -4206,8 +3469,8 @@ msgstr ""
#: libraries/replication_gui.lib.php:55 libraries/replication_gui.lib.php:56
#: libraries/replication_gui.lib.php:249 libraries/replication_gui.lib.php:252
-#: libraries/replication_gui.lib.php:259 server_privileges.php:672
-#: server_privileges.php:675 server_privileges.php:682
+#: libraries/replication_gui.lib.php:259 server_privileges.php:711
+#: server_privileges.php:714 server_privileges.php:721
#: server_synchronize.php:1171
msgid "User name"
msgstr "שם משתמש"
@@ -4226,11 +3489,11 @@ msgid "Slave status"
msgstr ""
#: libraries/replication_gui.lib.php:114 libraries/sql_query_form.lib.php:445
-#: server_status.php:626 server_variables.php:52
+#: server_status.php:737 server_variables.php:52
msgid "Variable"
msgstr "משתנה"
-#: libraries/replication_gui.lib.php:115 server_status.php:627
+#: libraries/replication_gui.lib.php:115 server_status.php:738
#: tbl_change.php:324 tbl_printview.php:370 tbl_select.php:139
#: tbl_structure.php:729
msgid "Value"
@@ -4250,41 +3513,58 @@ msgstr ""
msgid "Add slave replication user"
msgstr ""
-#: libraries/replication_gui.lib.php:254 server_privileges.php:677
+#: libraries/replication_gui.lib.php:254 server_privileges.php:716
msgid "Any user"
msgstr "כל משתמש"
#: libraries/replication_gui.lib.php:255 libraries/replication_gui.lib.php:323
-#: libraries/replication_gui.lib.php:346 server_privileges.php:678
-#: server_privileges.php:745 server_privileges.php:769
-#: server_privileges.php:1889 server_privileges.php:1919
+#: libraries/replication_gui.lib.php:346 server_privileges.php:717
+#: server_privileges.php:784 server_privileges.php:808
+#: server_privileges.php:1928 server_privileges.php:1958
msgid "Use text field"
msgstr "השתמש בשדה טקסט"
-#: libraries/replication_gui.lib.php:302 server_privileges.php:725
+#: libraries/replication_gui.lib.php:302 server_privileges.php:764
msgid "Any host"
msgstr "כל שרת מארח"
-#: libraries/replication_gui.lib.php:306 server_privileges.php:729
+#: libraries/replication_gui.lib.php:306 server_privileges.php:768
msgid "Local"
msgstr "מקומי"
-#: libraries/replication_gui.lib.php:312 server_privileges.php:734
+#: libraries/replication_gui.lib.php:312 server_privileges.php:773
msgid "This Host"
msgstr "מארח זה"
-#: libraries/replication_gui.lib.php:318 server_privileges.php:740
+#: libraries/replication_gui.lib.php:318 server_privileges.php:779
msgid "Use Host Table"
msgstr "Use Host Table"
-#: libraries/replication_gui.lib.php:331 server_privileges.php:753
+#: libraries/replication_gui.lib.php:331 server_privileges.php:792
msgid ""
"When Host table is used, this field is ignored and values stored in Host "
"table are used instead."
msgstr ""
-#: libraries/select_lang.lib.php:480 libraries/select_lang.lib.php:486
-#: libraries/select_lang.lib.php:492
+#. l10n: Text direction, use either ltr or rtl
+#: libraries/select_lang.lib.php:491
+msgid "ltr"
+msgstr "rtl"
+
+#: libraries/select_lang.lib.php:493
+msgid "Content of table __TABLE__"
+msgstr "תוכן של טבלה __TABLE__"
+
+#: libraries/select_lang.lib.php:494
+msgid "(continued)"
+msgstr "(מומשך)"
+
+#: libraries/select_lang.lib.php:495
+msgid "Structure of table __TABLE__"
+msgstr "מבנה של טבלה __TABLE__"
+
+#: libraries/select_lang.lib.php:500 libraries/select_lang.lib.php:506
+#: libraries/select_lang.lib.php:512
#, php-format
msgid "Unknown language: %1$s."
msgstr ""
@@ -4296,7 +3576,7 @@ msgid "Servers"
msgstr "שרת"
#: libraries/server_links.inc.php:53 server_engines.php:112
-#: server_engines.php:116 server_status.php:304 test/theme.php:105
+#: server_engines.php:116 server_status.php:415 test/theme.php:105
msgid "Variables"
msgstr "משתנים"
@@ -4309,7 +3589,7 @@ msgid "Engines"
msgstr "מנועים"
#: libraries/server_links.inc.php:76 server_binlog.php:110
-#: server_status.php:253 test/theme.php:121
+#: server_status.php:364 test/theme.php:121
msgid "Binary log"
msgstr "דו\"ח בינארי"
@@ -4694,8 +3974,8 @@ msgstr "איפוס"
msgid "Protocol version"
msgstr ""
-#: main.php:189 server_privileges.php:1350 server_privileges.php:1497
-#: server_privileges.php:1611 server_privileges.php:2029
+#: main.php:189 server_privileges.php:1389 server_privileges.php:1536
+#: server_privileges.php:1650 server_privileges.php:2068
#: server_processlist.php:54
msgid "User"
msgstr "משתמש"
@@ -5070,7 +4350,7 @@ msgstr "%s מסדי נתונים נמחקו בהצלחה."
msgid "Databases statistics"
msgstr "סטטיסטיקת מסד הנתונים"
-#: server_databases.php:117 server_status.php:260
+#: server_databases.php:117 server_status.php:371
#: setup/lib/messages.inc.php:117
msgid "Tables"
msgstr "טבלאות"
@@ -5089,6 +4369,15 @@ msgstr ""
msgid "Jump to database"
msgstr "אין מאגרי נתונים"
+#: server_databases.php:267
+msgid "Not replicated"
+msgstr ""
+
+#: server_databases.php:273
+#, fuzzy
+msgid "Replicated"
+msgstr "יחסים"
+
#: server_databases.php:289
#, php-format
msgid "Check privileges for database "%s"."
@@ -5122,143 +4411,331 @@ msgstr "מנועי אחסון"
msgid "View dump (schema) of databases"
msgstr "ראיית הוצאה (תבנית) של מאגרי נתונים"
-#: server_privileges.php:263 server_privileges.php:264
+#: server_privileges.php:24 server_privileges.php:266
+msgid "Includes all privileges except GRANT."
+msgstr "כלול כל ההרשאות חוץ מ- GRANT."
+
+#: server_privileges.php:25 server_privileges.php:192
+#: server_privileges.php:515
+msgid "Allows altering the structure of existing tables."
+msgstr "מאפשר שינוי של מבני הטבלאות הקיימות."
+
+#: server_privileges.php:26 server_privileges.php:208
+#: server_privileges.php:521
+#, fuzzy
+msgid "Allows altering and dropping stored routines."
+msgstr "מאפשר יצירת שגרות מאוחסנות."
+
+#: server_privileges.php:27 server_privileges.php:184
+#: server_privileges.php:514
+#, fuzzy
+msgid "Allows creating new databases and tables."
+msgstr "מאפשר מחיקת מאגרי נתונים וטבלאות."
+
+#: server_privileges.php:28 server_privileges.php:207
+#: server_privileges.php:520
+msgid "Allows creating stored routines."
+msgstr "מאפשר יצירת שגרות מאוחסנות."
+
+#: server_privileges.php:29 server_privileges.php:514
+msgid "Allows creating new tables."
+msgstr "מאפשר יצירת טבלאות חדשות."
+
+#: server_privileges.php:30 server_privileges.php:195
+#: server_privileges.php:518
+msgid "Allows creating temporary tables."
+msgstr "מאפשר יצירת טבלאות זמניות."
+
+#: server_privileges.php:31 server_privileges.php:209
+#: server_privileges.php:554
+msgid "Allows creating, dropping and renaming user accounts."
+msgstr ""
+
+#: server_privileges.php:32 server_privileges.php:199
+#: server_privileges.php:203 server_privileges.php:526
+#: server_privileges.php:530
+#, fuzzy
+msgid "Allows creating new views."
+msgstr "מאפשר יצירת טבלאות חדשות."
+
+#: server_privileges.php:33 server_privileges.php:183
+#: server_privileges.php:506
+msgid "Allows deleting data."
+msgstr "מאפשר מחיקת מידע."
+
+#: server_privileges.php:34 server_privileges.php:185
+#: server_privileges.php:517
+msgid "Allows dropping databases and tables."
+msgstr "מאפשר מחיקת מאגרי נתונים וטבלאות."
+
+#: server_privileges.php:35 server_privileges.php:517
+msgid "Allows dropping tables."
+msgstr "מאפשר מחיקת טבלאות."
+
+#: server_privileges.php:36 server_privileges.php:200
+#: server_privileges.php:534
+msgid "Allows to set up events for the event scheduler"
+msgstr ""
+
+#: server_privileges.php:37 server_privileges.php:210
+#: server_privileges.php:522
+#, fuzzy
+msgid "Allows executing stored routines."
+msgstr "מאפשר יצירת שגרות מאוחסנות."
+
+#: server_privileges.php:38 server_privileges.php:189
+#: server_privileges.php:509
+msgid "Allows importing data from and exporting data into files."
+msgstr ""
+
+#: server_privileges.php:39 server_privileges.php:540
+msgid ""
+"Allows adding users and privileges without reloading the privilege tables."
+msgstr ""
+
+#: server_privileges.php:40 server_privileges.php:191
+#: server_privileges.php:516
+msgid "Allows creating and dropping indexes."
+msgstr ""
+
+#: server_privileges.php:41 server_privileges.php:181
+#: server_privileges.php:442 server_privileges.php:504
+msgid "Allows inserting and replacing data."
+msgstr ""
+
+#: server_privileges.php:42 server_privileges.php:196
+#: server_privileges.php:549
+msgid "Allows locking tables for the current thread."
+msgstr ""
+
+#: server_privileges.php:43 server_privileges.php:646
+#: server_privileges.php:648
+msgid "Limits the number of new connections the user may open per hour."
+msgstr ""
+
+#: server_privileges.php:44 server_privileges.php:634
+#: server_privileges.php:636
+msgid "Limits the number of queries the user may send to the server per hour."
+msgstr ""
+
+#: server_privileges.php:45 server_privileges.php:640
+#: server_privileges.php:642
+msgid ""
+"Limits the number of commands that change any table or database the user may "
+"execute per hour."
+msgstr ""
+
+#: server_privileges.php:46 server_privileges.php:652
+#: server_privileges.php:654
+msgid "Limits the number of simultaneous connections the user may have."
+msgstr ""
+
+#: server_privileges.php:47 server_privileges.php:188
+#: server_privileges.php:544
+msgid "Allows viewing processes of all users"
+msgstr ""
+
+#: server_privileges.php:48 server_privileges.php:190
+#: server_privileges.php:448 server_privileges.php:550
+msgid "Has no effect in this MySQL version."
+msgstr ""
+
+#: server_privileges.php:49 server_privileges.php:186
+#: server_privileges.php:545
+msgid "Allows reloading server settings and flushing the server's caches."
+msgstr ""
+
+#: server_privileges.php:50 server_privileges.php:198
+#: server_privileges.php:552
+msgid "Allows the user to ask where the slaves / masters are."
+msgstr ""
+
+#: server_privileges.php:51 server_privileges.php:197
+#: server_privileges.php:553
+msgid "Needed for the replication slaves."
+msgstr ""
+
+#: server_privileges.php:52 server_privileges.php:180
+#: server_privileges.php:439 server_privileges.php:503
+#, fuzzy
+msgid "Allows reading data."
+msgstr "מאפשר מחיקת מידע."
+
+#: server_privileges.php:53 server_privileges.php:193
+#: server_privileges.php:547
+msgid "Gives access to the complete list of databases."
+msgstr ""
+
+#: server_privileges.php:54 server_privileges.php:204
+#: server_privileges.php:206 server_privileges.php:519
+msgid "Allows performing SHOW CREATE VIEW queries."
+msgstr ""
+
+#: server_privileges.php:55 server_privileges.php:187
+#: server_privileges.php:546
+msgid "Allows shutting down the server."
+msgstr ""
+
+#: server_privileges.php:56 server_privileges.php:194
+#: server_privileges.php:543
+msgid ""
+"Allows connecting, even if maximum number of connections is reached; "
+"required for most administrative operations like setting global variables or "
+"killing threads of other users."
+msgstr ""
+
+#: server_privileges.php:57 server_privileges.php:201
+#: server_privileges.php:535
+msgid "Allows creating and dropping triggers"
+msgstr ""
+
+#: server_privileges.php:58 server_privileges.php:182
+#: server_privileges.php:445 server_privileges.php:505
+#, fuzzy
+msgid "Allows changing data."
+msgstr "מאפשר מחיקת מידע."
+
+#: server_privileges.php:59 server_privileges.php:260
+msgid "No privileges."
+msgstr "ללא הרשאות."
+
+#: server_privileges.php:302 server_privileges.php:303
#, fuzzy
#| msgid "None"
msgctxt "None privileges"
msgid "None"
msgstr "ללא"
-#: server_privileges.php:392 server_privileges.php:527
-#: server_privileges.php:1679 server_privileges.php:1685
+#: server_privileges.php:431 server_privileges.php:566
+#: server_privileges.php:1718 server_privileges.php:1724
msgid "Table-specific privileges"
msgstr "הרשאות ספציפיות-לטבלאות"
-#: server_privileges.php:393 server_privileges.php:535
-#: server_privileges.php:1501
+#: server_privileges.php:432 server_privileges.php:574
+#: server_privileges.php:1540
msgid " Note: MySQL privilege names are expressed in English "
msgstr " הערה: שמות הרשאות MySQL מובטאות באנגלית "
-#: server_privileges.php:524 server_privileges.php:1500
+#: server_privileges.php:563 server_privileges.php:1539
msgid "Global privileges"
msgstr "הרשאות גלובליות"
-#: server_privileges.php:526 server_privileges.php:1679
+#: server_privileges.php:565 server_privileges.php:1718
msgid "Database-specific privileges"
msgstr "הרשאות ספציפיות למאגר נתונים"
-#: server_privileges.php:571
+#: server_privileges.php:610
msgid "Administration"
msgstr "ניהול"
-#: server_privileges.php:591
+#: server_privileges.php:630
msgid "Resource limits"
msgstr "גבולות משאבים"
-#: server_privileges.php:592
+#: server_privileges.php:631
msgid "Note: Setting these options to 0 (zero) removes the limit."
msgstr "הערה: הגדרת אפשרויות אלו אל 0 (אפס) יבטלו את ההגבלה."
-#: server_privileges.php:669
+#: server_privileges.php:708
msgid "Login Information"
msgstr "מידע כניסה"
-#: server_privileges.php:763
+#: server_privileges.php:802
msgid "Do not change the password"
msgstr "אל תשנה את הסיסמא"
-#: server_privileges.php:804 server_privileges.php:2166
+#: server_privileges.php:843 server_privileges.php:2205
#, fuzzy
#| msgid "No user(s) found."
msgid "No user found."
msgstr "לא נמצאו משתמשים."
-#: server_privileges.php:848
+#: server_privileges.php:887
#, php-format
msgid "The user %s already exists!"
msgstr "שם המשתמש %s כבר קיים!"
-#: server_privileges.php:931
+#: server_privileges.php:970
msgid "You have added a new user."
msgstr "משתמש חדש נוסף."
-#: server_privileges.php:1152
+#: server_privileges.php:1191
#, php-format
msgid "You have updated the privileges for %s."
msgstr "אתה עדכנת הרשאות עבור %s."
-#: server_privileges.php:1176
+#: server_privileges.php:1215
#, php-format
msgid "You have revoked the privileges for %s"
msgstr "אתה שללת הרשאות עבור %s"
-#: server_privileges.php:1212
+#: server_privileges.php:1251
#, php-format
msgid "The password for %s was changed successfully."
msgstr "הסיסמא עבור %s שונתה בהצלחה."
-#: server_privileges.php:1232
+#: server_privileges.php:1271
#, php-format
msgid "Deleting %s"
msgstr "מוחק %s"
-#: server_privileges.php:1243
+#: server_privileges.php:1282
msgid "No users selected for deleting!"
msgstr ""
-#: server_privileges.php:1246
+#: server_privileges.php:1285
msgid "Reloading the privileges"
msgstr "טוען מחדש הרשאות"
-#: server_privileges.php:1261
+#: server_privileges.php:1300
#, fuzzy
msgid "The selected users have been deleted successfully."
msgstr "%s מסדי נתונים נמחקו בהצלחה."
-#: server_privileges.php:1296
+#: server_privileges.php:1335
msgid "The privileges were reloaded successfully."
msgstr "ההרשאות נטענו מחדש בהצלחה."
-#: server_privileges.php:1324 server_privileges.php:1610
+#: server_privileges.php:1363 server_privileges.php:1649
msgid "Edit Privileges"
msgstr "עריכת הרשאות"
-#: server_privileges.php:1333
+#: server_privileges.php:1372
msgid "Revoke"
msgstr "שלילה"
-#: server_privileges.php:1365
+#: server_privileges.php:1404
msgid "User overview"
msgstr "סקירת משתמשים"
-#: server_privileges.php:1502 server_privileges.php:1684
-#: server_privileges.php:2033
+#: server_privileges.php:1541 server_privileges.php:1723
+#: server_privileges.php:2072
msgid "Grant"
msgstr "הענקה"
-#: server_privileges.php:1521 server_privileges.php:2123
+#: server_privileges.php:1560 server_privileges.php:2162
msgid "Any"
msgstr "כל דבר"
-#: server_privileges.php:1570 server_privileges.php:1594
-#: server_privileges.php:1988 server_privileges.php:2177
+#: server_privileges.php:1609 server_privileges.php:1633
+#: server_privileges.php:2027 server_privileges.php:2216
msgid "Add a new User"
msgstr "הוספת משתמש חדש"
-#: server_privileges.php:1575
+#: server_privileges.php:1614
msgid "Remove selected users"
msgstr "הסרת משתמשים שנבחרו"
-#: server_privileges.php:1578
+#: server_privileges.php:1617
msgid "Revoke all active privileges from the users and delete them afterwards."
msgstr "שלילת כל ההרשאות הפעילות מהמשתמשים ומחיקתם לאחר מכן."
-#: server_privileges.php:1579 server_privileges.php:1580
-#: server_privileges.php:1581
+#: server_privileges.php:1618 server_privileges.php:1619
+#: server_privileges.php:1620
msgid "Drop the databases that have the same names as the users."
msgstr "הסרת מאגרי נתונים שיש להם שמות דומים כמו למשתמשים."
-#: server_privileges.php:1597
+#: server_privileges.php:1636
#, php-format
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
@@ -5270,91 +4747,91 @@ msgstr ""
"הטבלאות האלו יכול להיות שונה מההרשאות שהשרת משתמש בהן, אם הן שונו באופן "
"ידני. במקרה זה, אתה צריך לבצע %sטעינה מחדש של הרשאות%s לפני שאתה ממשיך."
-#: server_privileges.php:1645
+#: server_privileges.php:1684
msgid "The selected user was not found in the privilege table."
msgstr "המשתמש שנבחר לא נמצא בטבלת ההרשאות."
-#: server_privileges.php:1685
+#: server_privileges.php:1724
msgid "Column-specific privileges"
msgstr "הרשאות ספציפיות-לעמודה"
-#: server_privileges.php:1886
+#: server_privileges.php:1925
msgid "Add privileges on the following database"
msgstr "הוספת הרשאות למאגר הנתונים הבא"
-#: server_privileges.php:1904
+#: server_privileges.php:1943
msgid "Wildcards % and _ should be escaped with a \\ to use them literally"
msgstr "תווים כללים _ וגם % צריכים לבוא ביחד עם \\ על מנת להשתמש בהם באמת"
-#: server_privileges.php:1907
+#: server_privileges.php:1946
msgid "Add privileges on the following table"
msgstr "הוספת הראשאות לטבלה הבאה"
-#: server_privileges.php:1964
+#: server_privileges.php:2003
msgid "Change Login Information / Copy User"
msgstr "שינוי מידע כניסה / העתקת משתמש"
-#: server_privileges.php:1967
+#: server_privileges.php:2006
msgid "Create a new user with the same privileges and ..."
msgstr "יצירת משתמש חדש עם אותן ההרשאות וגם ..."
-#: server_privileges.php:1969
+#: server_privileges.php:2008
msgid "... keep the old one."
msgstr "... שמירת הישן."
-#: server_privileges.php:1970
+#: server_privileges.php:2009
msgid " ... delete the old one from the user tables."
msgstr " ... מחיקת הישן מטבלאות המשתמשים."
-#: server_privileges.php:1971
+#: server_privileges.php:2010
msgid ""
" ... revoke all active privileges from the old one and delete it afterwards."
msgstr " ... בטל את כל ההרשאות הפעילות מהישן ומחק אותו לאחר מכן."
-#: server_privileges.php:1972
+#: server_privileges.php:2011
msgid ""
" ... delete the old one from the user tables and reload the privileges "
"afterwards."
msgstr " ... מחיקת הישן מטבלאות המשתמשים וטען מחדש את ההרשאות לאחר מכן."
-#: server_privileges.php:1994
+#: server_privileges.php:2033
msgid "Database for user"
msgstr ""
-#: server_privileges.php:1998
+#: server_privileges.php:2037
#, fuzzy
#| msgid "None"
msgctxt "Create none database for user"
msgid "None"
msgstr "ללא"
-#: server_privileges.php:1999
+#: server_privileges.php:2038
msgid "Create database with same name and grant all privileges"
msgstr ""
-#: server_privileges.php:2000
+#: server_privileges.php:2039
msgid "Grant all privileges on wildcard name (username\\_%)"
msgstr ""
-#: server_privileges.php:2003
+#: server_privileges.php:2042
#, fuzzy, php-format
msgid "Grant all privileges on database "%s""
msgstr "בדיקת הראשות עבור מאגר נתונים "%s"."
-#: server_privileges.php:2026
+#: server_privileges.php:2065
#, php-format
msgid "Users having access to "%s""
msgstr ""
-#: server_privileges.php:2134
+#: server_privileges.php:2173
msgid "global"
msgstr "עולמי"
-#: server_privileges.php:2136
+#: server_privileges.php:2175
msgid "database-specific"
msgstr "ספציפי למאגר הנתונים"
-#: server_privileges.php:2138
+#: server_privileges.php:2177
msgid "wildcard"
msgstr "תו כללי"
@@ -5400,7 +4877,7 @@ msgstr ""
msgid "This server is configured as master in a replication process."
msgstr ""
-#: server_replication.php:184 server_status.php:281
+#: server_replication.php:184 server_status.php:392
msgid "Show master status"
msgstr ""
@@ -5538,170 +5015,702 @@ msgid ""
"like to configure it?"
msgstr ""
+#: server_status.php:40
+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 ""
+
+#: server_status.php:41
+msgid "The number of transactions that used the temporary binary log cache."
+msgstr ""
+
+#: server_status.php:42
+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 "
+"to increase the tmp_table_size value to cause temporary tables to be memory-"
+"based instead of disk-based."
+msgstr ""
+
+#: server_status.php:43
+msgid "How many temporary files mysqld has created."
+msgstr ""
+
+#: server_status.php:44
+msgid ""
+"The number of in-memory temporary tables created automatically by the server "
+"while executing statements."
+msgstr ""
+
+#: server_status.php:45
+msgid ""
+"The number of rows written with INSERT DELAYED for which some error occurred "
+"(probably duplicate key)."
+msgstr ""
+
#: server_status.php:46
+msgid ""
+"The number of INSERT DELAYED handler threads in use. Every different table "
+"on which one uses INSERT DELAYED gets its own thread."
+msgstr ""
+
+#: server_status.php:47
+msgid "The number of INSERT DELAYED rows written."
+msgstr ""
+
+#: server_status.php:48
+msgid "The number of executed FLUSH statements."
+msgstr ""
+
+#: server_status.php:49
+msgid "The number of internal COMMIT statements."
+msgstr ""
+
+#: server_status.php:50
+msgid "The number of times a row was deleted from a table."
+msgstr ""
+
+#: server_status.php:51
+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 ""
+
+#: server_status.php:52
+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 ""
+
+#: server_status.php:53
+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 ""
+
+#: server_status.php:54
+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 ""
+
+#: server_status.php:55
+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 ""
+
+#: server_status.php:56
+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 "
+"probably have a lot of queries that require MySQL to scan whole tables or "
+"you have joins that don't use keys properly."
+msgstr ""
+
+#: server_status.php:57
+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 "
+"tables are not properly indexed or that your queries are not written to take "
+"advantage of the indexes you have."
+msgstr ""
+
+#: server_status.php:58
+msgid "The number of internal ROLLBACK statements."
+msgstr ""
+
+#: server_status.php:59
+msgid "The number of requests to update a row in a table."
+msgstr ""
+
+#: server_status.php:60
+msgid "The number of requests to insert a row in a table."
+msgstr ""
+
+#: server_status.php:61
+msgid "The number of pages containing data (dirty or clean)."
+msgstr ""
+
+#: server_status.php:62
+msgid "The number of pages currently dirty."
+msgstr ""
+
+#: server_status.php:63
+msgid "The number of buffer pool pages that have been requested to be flushed."
+msgstr ""
+
+#: server_status.php:64
+msgid "The number of free pages."
+msgstr ""
+
+#: server_status.php:65
+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 ""
+
+#: server_status.php:66
+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 "
+"be calculated as Innodb_buffer_pool_pages_total - "
+"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data."
+msgstr ""
+
+#: server_status.php:67
+msgid "Total size of buffer pool, in pages."
+msgstr ""
+
+#: server_status.php:68
+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 ""
+
+#: server_status.php:69
+msgid ""
+"The number of sequential read-aheads InnoDB initiated. This happens when "
+"InnoDB does a sequential full table scan."
+msgstr ""
+
+#: server_status.php:70
+msgid "The number of logical read requests InnoDB has done."
+msgstr ""
+
+#: server_status.php:71
+msgid ""
+"The number of logical reads that InnoDB could not satisfy from buffer pool "
+"and had to do a single-page read."
+msgstr ""
+
+#: server_status.php:72
+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 "
+"available, it's necessary to wait for pages to be flushed first. This "
+"counter counts instances of these waits. If the buffer pool size was set "
+"properly, this value should be small."
+msgstr ""
+
+#: server_status.php:73
+msgid "The number writes done to the InnoDB buffer pool."
+msgstr ""
+
+#: server_status.php:74
+msgid "The number of fsync() operations so far."
+msgstr ""
+
+#: server_status.php:75
+msgid "The current number of pending fsync() operations."
+msgstr ""
+
+#: server_status.php:76
+msgid "The current number of pending reads."
+msgstr ""
+
+#: server_status.php:77
+msgid "The current number of pending writes."
+msgstr ""
+
+#: server_status.php:78
+msgid "The amount of data read so far, in bytes."
+msgstr ""
+
+#: server_status.php:79
+msgid "The total number of data reads."
+msgstr ""
+
+#: server_status.php:80
+msgid "The total number of data writes."
+msgstr ""
+
+#: server_status.php:81
+msgid "The amount of data written so far, in bytes."
+msgstr ""
+
+#: server_status.php:82
+msgid "The number of pages that have been written for doublewrite operations."
+msgstr ""
+
+#: server_status.php:83
+msgid "The number of doublewrite operations that have been performed."
+msgstr ""
+
+#: server_status.php:84
+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 ""
+
+#: server_status.php:85
+msgid "The number of log write requests."
+msgstr ""
+
+#: server_status.php:86
+msgid "The number of physical writes to the log file."
+msgstr ""
+
+#: server_status.php:87
+msgid "The number of fsync() writes done to the log file."
+msgstr ""
+
+#: server_status.php:88
+msgid "The number of pending log file fsyncs."
+msgstr ""
+
+#: server_status.php:89
+msgid "Pending log file writes."
+msgstr ""
+
+#: server_status.php:90
+msgid "The number of bytes written to the log file."
+msgstr ""
+
+#: server_status.php:91
+msgid "The number of pages created."
+msgstr ""
+
+#: server_status.php:92
+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 ""
+
+#: server_status.php:93
+msgid "The number of pages read."
+msgstr ""
+
+#: server_status.php:94
+msgid "The number of pages written."
+msgstr ""
+
+#: server_status.php:95
+msgid "The number of row locks currently being waited for."
+msgstr ""
+
+#: server_status.php:96
+msgid "The average time to acquire a row lock, in milliseconds."
+msgstr ""
+
+#: server_status.php:97
+msgid "The total time spent in acquiring row locks, in milliseconds."
+msgstr ""
+
+#: server_status.php:98
+msgid "The maximum time to acquire a row lock, in milliseconds."
+msgstr ""
+
+#: server_status.php:99
+msgid "The number of times a row lock had to be waited for."
+msgstr ""
+
+#: server_status.php:100
+msgid "The number of rows deleted from InnoDB tables."
+msgstr ""
+
+#: server_status.php:101
+msgid "The number of rows inserted in InnoDB tables."
+msgstr ""
+
+#: server_status.php:102
+msgid "The number of rows read from InnoDB tables."
+msgstr ""
+
+#: server_status.php:103
+msgid "The number of rows updated in InnoDB tables."
+msgstr ""
+
+#: server_status.php:104
+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 ""
+
+#: server_status.php:105
+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 ""
+
+#: server_status.php:106
+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 ""
+
+#: server_status.php:107
+msgid "The number of requests to read a key block from the cache."
+msgstr ""
+
+#: server_status.php:108
+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 ""
+
+#: server_status.php:109
+msgid "The number of requests to write a key block to the cache."
+msgstr ""
+
+#: server_status.php:110
+msgid "The number of physical writes of a key block to disk."
+msgstr ""
+
+#: server_status.php:111
+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 ""
+
+#: server_status.php:112
+msgid "The number of rows waiting to be written in INSERT DELAYED queues."
+msgstr ""
+
+#: server_status.php:113
+msgid ""
+"The number of tables that have been opened. If opened tables is big, your "
+"table cache value is probably too small."
+msgstr ""
+
+#: server_status.php:114
+msgid "The number of files that are open."
+msgstr ""
+
+#: server_status.php:115
+msgid "The number of streams that are open (used mainly for logging)."
+msgstr ""
+
+#: server_status.php:116
+msgid "The number of tables that are open."
+msgstr ""
+
+#: server_status.php:117
+msgid "The number of free memory blocks in query cache."
+msgstr ""
+
+#: server_status.php:118
+msgid "The amount of free memory for query cache."
+msgstr ""
+
+#: server_status.php:119
+msgid "The number of cache hits."
+msgstr ""
+
+#: server_status.php:120
+msgid "The number of queries added to the cache."
+msgstr ""
+
+#: server_status.php:121
+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 "
+"cache size. The query cache uses a least recently used (LRU) strategy to "
+"decide which queries to remove from the cache."
+msgstr ""
+
+#: server_status.php:122
+msgid ""
+"The number of non-cached queries (not cachable, or not cached due to the "
+"query_cache_type setting)."
+msgstr ""
+
+#: server_status.php:123
+msgid "The number of queries registered in the cache."
+msgstr ""
+
+#: server_status.php:124
+msgid "The total number of blocks in the query cache."
+msgstr ""
+
+#: server_status.php:125
+#, fuzzy
+msgctxt "$strShowStatusReset"
+msgid "Reset"
+msgstr "איפוס"
+
+#: server_status.php:126
+msgid "The status of failsafe replication (not yet implemented)."
+msgstr ""
+
+#: server_status.php:127
+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 ""
+
+#: server_status.php:128
+msgid "The number of joins that used a range search on a reference table."
+msgstr ""
+
+#: server_status.php:129
+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 ""
+
+#: server_status.php:130
+msgid ""
+"The number of joins that used ranges on the first table. (It's normally not "
+"critical even if this is big.)"
+msgstr ""
+
+#: server_status.php:131
+msgid "The number of joins that did a full scan of the first table."
+msgstr ""
+
+#: server_status.php:132
+msgid "The number of temporary tables currently open by the slave SQL thread."
+msgstr ""
+
+#: server_status.php:133
+msgid ""
+"Total (since startup) number of times the replication slave SQL thread has "
+"retried transactions."
+msgstr ""
+
+#: server_status.php:134
+msgid "This is ON if this server is a slave that is connected to a master."
+msgstr ""
+
+#: server_status.php:135
+msgid ""
+"The number of threads that have taken more than slow_launch_time seconds to "
+"create."
+msgstr ""
+
+#: server_status.php:136
+msgid ""
+"The number of queries that have taken more than long_query_time seconds."
+msgstr ""
+
+#: server_status.php:137
+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 ""
+
+#: server_status.php:138
+msgid "The number of sorts that were done with ranges."
+msgstr ""
+
+#: server_status.php:139
+msgid "The number of sorted rows."
+msgstr ""
+
+#: server_status.php:140
+msgid "The number of sorts that were done by scanning the table."
+msgstr ""
+
+#: server_status.php:141
+msgid "The number of times that a table lock was acquired immediately."
+msgstr ""
+
+#: server_status.php:142
+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 "
+"should first optimize your queries, and then either split your table or "
+"tables or use replication."
+msgstr ""
+
+#: server_status.php:143
+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 ""
+
+#: server_status.php:144
+msgid "The number of currently open connections."
+msgstr ""
+
+#: server_status.php:145
+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 "
+"doesn't give a notable performance improvement if you have a good thread "
+"implementation.)"
+msgstr ""
+
+#: server_status.php:146
+msgid "The number of threads that are not sleeping."
+msgstr ""
+
+#: server_status.php:157
msgid "Runtime Information"
msgstr "מידע זמן ריצה"
-#: server_status.php:250
+#: server_status.php:361
msgid "Handler"
msgstr ""
-#: server_status.php:251
+#: server_status.php:362
#, fuzzy
msgid "Query cache"
msgstr "סוג שאילתה"
-#: server_status.php:252
+#: server_status.php:363
msgid "Threads"
msgstr ""
-#: server_status.php:254
+#: server_status.php:365
msgid "Temporary data"
msgstr ""
-#: server_status.php:255
+#: server_status.php:366
#, fuzzy
msgid "Delayed inserts"
msgstr "השתמש בהכנסות מעוכבות"
-#: server_status.php:256
+#: server_status.php:367
msgid "Key cache"
msgstr ""
-#: server_status.php:257
+#: server_status.php:368
msgid "Joins"
msgstr ""
-#: server_status.php:259
+#: server_status.php:370
msgid "Sorting"
msgstr ""
-#: server_status.php:261
+#: server_status.php:372
msgid "Transaction coordinator"
msgstr ""
-#: server_status.php:271
+#: server_status.php:382
msgid "Flush (close) all tables"
msgstr ""
-#: server_status.php:273
+#: server_status.php:384
#, fuzzy
msgid "Show open tables"
msgstr "ראיית טבלאות"
-#: server_status.php:278
+#: server_status.php:389
msgid "Show slave hosts"
msgstr ""
-#: server_status.php:284
+#: server_status.php:395
msgid "Show slave status"
msgstr ""
-#: server_status.php:289
+#: server_status.php:400
msgid "Flush query cache"
msgstr ""
-#: server_status.php:294
+#: server_status.php:405
msgid "Show processes"
msgstr "ראיית תהליכים"
-#: server_status.php:344
+#: server_status.php:455
#, fuzzy
#| msgid "Reset"
msgctxt "for Show status"
msgid "Reset"
msgstr "איפוס"
-#: server_status.php:350
+#: server_status.php:461
#, php-format
msgid "This MySQL server has been running for %s. It started up on %s."
msgstr "שרת MySQL פעיל במשך %s. הוא התחיל לפעול ב- %s."
-#: server_status.php:360
+#: server_status.php:471
msgid ""
"This MySQL server works as master and slave in replication"
"b> process."
msgstr ""
-#: server_status.php:362
+#: server_status.php:473
msgid "This MySQL server works as master in replication process."
msgstr ""
-#: server_status.php:364
+#: server_status.php:475
msgid "This MySQL server works as slave in replication process."
msgstr ""
-#: server_status.php:366
+#: server_status.php:477
msgid ""
"For further information about replication status on the server, please visit "
"the replication section."
msgstr ""
-#: server_status.php:383
+#: server_status.php:494
msgid ""
"Server traffic: These tables show the network traffic statistics of "
"this MySQL server since its startup."
msgstr ""
-#: server_status.php:388
+#: server_status.php:499
msgid "Traffic"
msgstr "Traffic"
-#: server_status.php:388
+#: server_status.php:499
msgid ""
"On a busy server, the byte counters may overrun, so those statistics as "
"reported by the MySQL server may be incorrect."
msgstr ""
-#: server_status.php:389 server_status.php:434 server_status.php:497
-#: server_status.php:555
+#: server_status.php:500 server_status.php:545 server_status.php:608
+#: server_status.php:666
msgid "per hour"
msgstr "לשעה"
-#: server_status.php:394
+#: server_status.php:505
msgid "Received"
msgstr "התקבל"
-#: server_status.php:404
+#: server_status.php:515
msgid "Sent"
msgstr "נשלח"
-#: server_status.php:433
+#: server_status.php:544
msgid "Connections"
msgstr "חיבורים"
-#: server_status.php:440
+#: server_status.php:551
msgid "max. concurrent connections"
msgstr ""
-#: server_status.php:447
+#: server_status.php:558
msgid "Failed attempts"
msgstr "ניסיונות כושלים"
-#: server_status.php:461
+#: server_status.php:572
msgid "Aborted"
msgstr "בוטל"
-#: server_status.php:490
+#: server_status.php:601
#, php-format
msgid ""
"Query statistics: Since its startup, %s queries have been sent to the "
"server."
msgstr "סטטיטיקת שאילתות: מאז ההפעלה, %s שאילתות נשלחו לשרת."
-#: server_status.php:498
+#: server_status.php:609
msgid "per minute"
msgstr "לדקה"
-#: server_status.php:499
+#: server_status.php:610
msgid "per second"
msgstr "לשנייה"
-#: server_status.php:554
+#: server_status.php:665
msgid "Query type"
msgstr "סוג שאילתה"
-#: server_status.php:721
+#: server_status.php:832
msgid "Replication status"
msgstr ""
diff --git a/po/hi.po b/po/hi.po
index 2d7261d99..46fc4e6b0 100755
--- a/po/hi.po
+++ b/po/hi.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-06-04 16:07-0400\n"
+"POT-Creation-Date: 2010-06-08 12:32-0400\n"
"PO-Revision-Date: 2010-05-21 05:48+0200\n"
"Last-Translator: \n"
"Language-Team: hindi \n"
@@ -15,11 +15,11 @@ msgstr ""
"X-Generator: Pootle 2.0.1\n"
#: browse_foreigners.php:38 browse_foreigners.php:59
-#: libraries/display_tbl.lib.php:417 server_privileges.php:1475
+#: libraries/display_tbl.lib.php:417 server_privileges.php:1514
msgid "Show all"
msgstr "सभी दिखाओ"
-#: browse_foreigners.php:82 libraries/common.lib.php:2304
+#: browse_foreigners.php:82 libraries/common.lib.php:2313
#: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:394
#: libraries/export/pdf.php:147 pdf_schema.php:283 pdf_schema.php:1123
#: pdf_schema.php:1139
@@ -37,8 +37,8 @@ msgstr ""
#: browse_foreigners.php:150 db_structure.php:79 db_structure.php:80
#: db_structure.php:91 db_structure.php:93 db_structure.php:104
-#: db_structure.php:106 libraries/common.lib.php:2822
-#: libraries/common.lib.php:2829 libraries/db_links.inc.php:75
+#: db_structure.php:106 libraries/common.lib.php:2831
+#: libraries/common.lib.php:2838 libraries/db_links.inc.php:75
#: libraries/tbl_links.inc.php:63
msgid "Search"
msgstr "खोजें"
@@ -48,7 +48,7 @@ msgstr "खोजें"
#: db_structure.php:567 js/messages.php:48 libraries/Config.class.php:1046
#: libraries/Theme_Manager.class.php:311
#: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719
-#: libraries/common.lib.php:1333 libraries/common.lib.php:2279
+#: libraries/common.lib.php:1335 libraries/common.lib.php:2288
#: libraries/display_change_password.lib.php:82
#: libraries/display_create_table.lib.php:63
#: libraries/display_export.lib.php:275 libraries/display_import.lib.php:276
@@ -59,9 +59,9 @@ msgstr "खोजें"
#: libraries/sql_query_form.lib.php:552 libraries/tbl_properties.inc.php:782
#: main.php:128 navigation.php:237 pdf_pages.php:292 pdf_pages.php:328
#: pdf_pages.php:530 pmd_pdf.php:116 server_binlog.php:142
-#: server_privileges.php:625 server_privileges.php:1585
-#: server_privileges.php:1932 server_privileges.php:1979
-#: server_privileges.php:2018 server_replication.php:235
+#: server_privileges.php:664 server_privileges.php:1624
+#: server_privileges.php:1971 server_privileges.php:2018
+#: server_privileges.php:2057 server_replication.php:235
#: server_replication.php:318 server_replication.php:341
#: server_synchronize.php:1209 tbl_change.php:330 tbl_change.php:1174
#: tbl_change.php:1211 tbl_indexes.php:254 tbl_operations.php:265
@@ -79,7 +79,7 @@ msgstr "मुख्यनाम"
#: browse_foreigners.php:169 browse_foreigners.php:171
#: server_collations.php:55 server_collations.php:67 server_engines.php:59
-#: server_status.php:628
+#: server_status.php:739
msgid "Description"
msgstr "वर्णन"
@@ -120,7 +120,7 @@ msgstr "कोलम के नाम"
#: libraries/db_structure.lib.php:60 libraries/export/htmlword.php:245
#: libraries/export/latex.php:360 libraries/export/odt.php:297
#: libraries/export/texytext.php:234 libraries/tbl_properties.inc.php:100
-#: pdf_schema.php:1263 pdf_schema.php:1284 server_privileges.php:2031
+#: pdf_schema.php:1263 pdf_schema.php:1284 server_privileges.php:2070
#: tbl_change.php:287 tbl_change.php:314 tbl_printview.php:143
#: tbl_printview.php:313 tbl_select.php:136 tbl_structure.php:178
#: tbl_structure.php:659 tbl_tracking.php:274 tbl_tracking.php:321
@@ -164,9 +164,9 @@ msgstr "टिप्पणी"
#: libraries/Index.class.php:386 libraries/export/htmlword.php:322
#: libraries/export/latex.php:430 libraries/export/odt.php:368
#: libraries/export/texytext.php:311 libraries/mult_submits.inc.php:263
-#: pdf_schema.php:1344 server_privileges.php:1529 server_privileges.php:1540
-#: server_privileges.php:1850 server_privileges.php:1855
-#: server_privileges.php:2148 sql.php:132 sql.php:194 tbl_printview.php:229
+#: pdf_schema.php:1344 server_privileges.php:1568 server_privileges.php:1579
+#: server_privileges.php:1889 server_privileges.php:1894
+#: server_privileges.php:2187 sql.php:132 sql.php:194 tbl_printview.php:229
#: tbl_structure.php:350 tbl_tracking.php:337 tbl_tracking.php:342
msgid "No"
msgstr "नहीं"
@@ -180,9 +180,9 @@ msgstr "नहीं"
#: libraries/mult_submits.inc.php:101 libraries/mult_submits.inc.php:106
#: libraries/mult_submits.inc.php:111 libraries/mult_submits.inc.php:262
#: libraries/mult_submits.inc.php:273 pdf_schema.php:1344
-#: server_databases.php:64 server_privileges.php:1526
-#: server_privileges.php:1540 server_privileges.php:1850
-#: server_privileges.php:1853 server_privileges.php:2148 sql.php:193
+#: server_databases.php:64 server_privileges.php:1565
+#: server_privileges.php:1579 server_privileges.php:1889
+#: server_privileges.php:1892 server_privileges.php:2187 sql.php:193
#: tbl_printview.php:229 tbl_structure.php:40 tbl_structure.php:350
#: tbl_tracking.php:335 tbl_tracking.php:340
msgid "Yes"
@@ -279,7 +279,7 @@ msgstr "नक़ल किये गए डाटाबेस पर जाय
msgid "BLOB Repository"
msgstr "BLOB भंडार गृह"
-#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1350
+#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1352
#: libraries/server_links.inc.php:49 server_processlist.php:59
#: tbl_tracking.php:596 test/theme.php:101
msgid "Status"
@@ -336,8 +336,8 @@ msgstr "पीडीएफ पृष्ठों को संपादित
#: db_printview.php:104 db_tracking.php:72 db_tracking.php:157
#: libraries/db_structure.lib.php:46 libraries/export/xml.php:328
-#: libraries/header.inc.php:126 pdf_pages.php:424 server_privileges.php:1626
-#: server_privileges.php:1682 server_privileges.php:1946
+#: libraries/header.inc.php:126 pdf_pages.php:424 server_privileges.php:1665
+#: server_privileges.php:1721 server_privileges.php:1985
#: server_synchronize.php:423 server_synchronize.php:866 tbl_tracking.php:592
#: test/theme.php:75
msgid "Table"
@@ -438,7 +438,7 @@ msgstr "हटाइए"
#: db_qbe.php:370 db_qbe.php:451 db_qbe.php:522 db_qbe.php:553
#: libraries/display_import.lib.php:166 libraries/tbl_properties.inc.php:779
-#: server_privileges.php:258 tbl_change.php:1031 tbl_indexes.php:250
+#: server_privileges.php:297 tbl_change.php:1031 tbl_indexes.php:250
#: tbl_select.php:288
msgid "Or"
msgstr "अथवा"
@@ -472,7 +472,7 @@ msgstr "टेबल का उपयोग करो"
msgid "SQL query on database %s:"
msgstr "डेटाबेस %s पर SQL प्रश्न:"
-#: db_qbe.php:934 libraries/common.lib.php:1223
+#: db_qbe.php:934 libraries/common.lib.php:1225
msgid "Submit Query"
msgstr "प्रश्न प्रस्तुत करें"
@@ -511,7 +511,7 @@ msgstr "%s तालिका के अंदर %s मैच हैं.
#: db_search.php:267 db_structure.php:77 db_structure.php:78
#: db_structure.php:90 db_structure.php:92 db_structure.php:103
-#: db_structure.php:105 libraries/common.lib.php:2824
+#: db_structure.php:105 libraries/common.lib.php:2833
#: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50
#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:467
msgid "Browse"
@@ -558,26 +558,26 @@ msgstr "क्षेत्र के अंदर:"
#: db_structure.php:81 db_structure.php:82 db_structure.php:94
#: db_structure.php:95 db_structure.php:107 db_structure.php:108
-#: libraries/common.lib.php:2823 libraries/sql_query_form.lib.php:334
+#: libraries/common.lib.php:2832 libraries/sql_query_form.lib.php:334
#: libraries/sql_query_form.lib.php:337 libraries/tbl_links.inc.php:76
msgid "Insert"
msgstr "इनसर्ट"
#: db_structure.php:83 db_structure.php:96 db_structure.php:109
-#: libraries/common.lib.php:2820 libraries/common.lib.php:2827
+#: libraries/common.lib.php:2829 libraries/common.lib.php:2836
#: libraries/db_links.inc.php:63 libraries/export/htmlword.php:23
#: libraries/export/latex.php:33 libraries/export/latex.php:337
#: libraries/export/odt.php:32 libraries/export/sql.php:60
#: libraries/export/texytext.php:23 libraries/import.lib.php:1104
#: libraries/tbl_links.inc.php:56 pmd_general.php:134
-#: server_privileges.php:554 server_replication.php:315 tbl_tracking.php:269
+#: server_privileges.php:593 server_replication.php:315 tbl_tracking.php:269
msgid "Structure"
msgstr "संरचना"
#: db_structure.php:84 db_structure.php:85 db_structure.php:97
#: db_structure.php:98 db_structure.php:110 db_structure.php:111
#: db_structure.php:545 db_structure.php:546 db_tracking.php:91
-#: libraries/Index.class.php:483 libraries/common.lib.php:1654
+#: libraries/Index.class.php:483 libraries/common.lib.php:1656
#: libraries/db_links.inc.php:100 libraries/mult_submits.inc.php:36
#: libraries/mult_submits.inc.php:73 libraries/tbl_links.inc.php:127
#: server_databases.php:352 tbl_structure.php:27 tbl_structure.php:151
@@ -587,7 +587,7 @@ msgstr "छोड़ें"
#: db_structure.php:86 db_structure.php:87 db_structure.php:99
#: db_structure.php:100 db_structure.php:112 db_structure.php:113
-#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1653
+#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1655
#: libraries/mult_submits.inc.php:39 libraries/tbl_links.inc.php:105
msgid "Empty"
msgstr "खाली करें"
@@ -629,7 +629,7 @@ msgstr "दृश्य"
#: db_structure.php:485 libraries/db_structure.lib.php:49
#: libraries/server_links.inc.php:70 server_replication.php:33
-#: server_replication.php:164 server_status.php:258
+#: server_replication.php:164 server_status.php:369
msgid "Replication"
msgstr "प्रतिकृति"
@@ -645,20 +645,20 @@ msgstr "%s इस MySQL सर्वर पर डिफ़ॉल्ट भं
#: db_structure.php:524 db_structure.php:541 db_structure.php:542
#: libraries/display_tbl.lib.php:2081 libraries/display_tbl.lib.php:2086
#: libraries/mult_submits.inc.php:16 server_databases.php:346
-#: server_databases.php:351 server_privileges.php:1557 tbl_structure.php:455
+#: server_databases.php:351 server_privileges.php:1596 tbl_structure.php:455
#: tbl_structure.php:464
msgid "With selected:"
msgstr "चुने हुओं को:"
#: db_structure.php:527 libraries/display_tbl.lib.php:2076
-#: server_databases.php:348 server_privileges.php:530
-#: server_privileges.php:1560 tbl_structure.php:458
+#: server_databases.php:348 server_privileges.php:569
+#: server_privileges.php:1599 tbl_structure.php:458
msgid "Check All"
msgstr "सभी को चेक करें"
#: db_structure.php:531 libraries/display_tbl.lib.php:2077
#: libraries/replication_gui.lib.php:33 server_databases.php:350
-#: server_privileges.php:533 server_privileges.php:1564 tbl_structure.php:462
+#: server_privileges.php:572 server_privileges.php:1603 tbl_structure.php:462
msgid "Uncheck All"
msgstr " सभी को अनचेक करें"
@@ -696,7 +696,7 @@ msgstr "टेबल का विश्लेषण करें"
#: libraries/display_export.lib.php:83 libraries/display_tbl.lib.php:2094
#: libraries/display_tbl.lib.php:2225 libraries/mult_submits.inc.php:62
#: libraries/server_links.inc.php:84 libraries/tbl_links.inc.php:82
-#: pmd_pdf.php:84 pmd_pdf.php:109 server_privileges.php:1341
+#: pmd_pdf.php:84 pmd_pdf.php:109 server_privileges.php:1380
#: setup/frames/menu.inc.php:22 tbl_row_action.php:59
msgid "Export"
msgstr "निर्यात"
@@ -714,8 +714,8 @@ msgstr "ट्रैक की गयी तालिकाएं"
#: libraries/export/sql.php:342 libraries/export/texytext.php:84
#: libraries/export/xml.php:255 libraries/header.inc.php:106
#: libraries/header_printview.inc.php:58 server_databases.php:169
-#: server_privileges.php:1621 server_privileges.php:1682
-#: server_privileges.php:1940 server_processlist.php:56
+#: server_privileges.php:1660 server_privileges.php:1721
+#: server_privileges.php:1979 server_processlist.php:56
#: server_synchronize.php:1179 server_synchronize.php:1183
#: tbl_tracking.php:591 test/theme.php:65
msgid "Database"
@@ -735,8 +735,8 @@ msgstr "अद्यतन"
#: db_tracking.php:77 libraries/Index.class.php:440
#: libraries/db_structure.lib.php:53 server_databases.php:203
-#: server_privileges.php:1503 server_privileges.php:1686
-#: server_privileges.php:2034 tbl_structure.php:187
+#: server_privileges.php:1542 server_privileges.php:1725
+#: server_privileges.php:2073 tbl_structure.php:187
msgid "Action"
msgstr "कार्य"
@@ -934,11 +934,11 @@ msgstr "मेज़बान का नाम (hostname) खाली है!"
msgid "The user name is empty!"
msgstr "उपयोगकर्ता नाम खाली है!"
-#: js/messages.php:44 server_privileges.php:1197 user_password.php:70
+#: js/messages.php:44 server_privileges.php:1236 user_password.php:70
msgid "The password is empty!"
msgstr "पासवर्ड खाली है"
-#: js/messages.php:45 server_privileges.php:1195 user_password.php:73
+#: js/messages.php:45 server_privileges.php:1234 user_password.php:73
msgid "The passwords aren't the same!"
msgstr "पासवर्ड मिलते झूलते नहीं हैं."
@@ -1013,8 +1013,8 @@ msgid "Prev"
msgstr "पिछला"
#. l10n: Display text for next month link in calendar
-#: js/messages.php:77 libraries/common.lib.php:2344
-#: libraries/common.lib.php:2347 libraries/display_tbl.lib.php:338
+#: js/messages.php:77 libraries/common.lib.php:2353
+#: libraries/common.lib.php:2356 libraries/display_tbl.lib.php:338
#: server_binlog.php:205 server_binlog.php:207 tbl_printview.php:424
#: tbl_structure.php:801
msgid "Next"
@@ -1074,63 +1074,63 @@ msgid "December"
msgstr "दिसम्बर"
#. l10n: Short month name
-#: js/messages.php:97 libraries/common.lib.php:1555
+#: js/messages.php:97 libraries/common.lib.php:1557
msgid "Jan"
msgstr "जनवरी"
#. l10n: Short month name
-#: js/messages.php:99 libraries/common.lib.php:1557
+#: js/messages.php:99 libraries/common.lib.php:1559
msgid "Feb"
msgstr "फरवरी"
#. l10n: Short month name
-#: js/messages.php:101 libraries/common.lib.php:1559
+#: js/messages.php:101 libraries/common.lib.php:1561
msgid "Mar"
msgstr "मार्च"
#. l10n: Short month name
-#: js/messages.php:103 libraries/common.lib.php:1561
+#: js/messages.php:103 libraries/common.lib.php:1563
msgid "Apr"
msgstr "अप्रैल"
#. l10n: Short month name
-#: js/messages.php:105 libraries/common.lib.php:1563
+#: js/messages.php:105 libraries/common.lib.php:1565
msgctxt "Short month name"
msgid "May"
msgstr "मई"
#. l10n: Short month name
-#: js/messages.php:107 libraries/common.lib.php:1565
+#: js/messages.php:107 libraries/common.lib.php:1567
msgid "Jun"
msgstr "जून"
#. l10n: Short month name
-#: js/messages.php:109 libraries/common.lib.php:1567
+#: js/messages.php:109 libraries/common.lib.php:1569
msgid "Jul"
msgstr "जुलाई"
#. l10n: Short month name
-#: js/messages.php:111 libraries/common.lib.php:1569
+#: js/messages.php:111 libraries/common.lib.php:1571
msgid "Aug"
msgstr "अगस्त"
#. l10n: Short month name
-#: js/messages.php:113 libraries/common.lib.php:1571
+#: js/messages.php:113 libraries/common.lib.php:1573
msgid "Sep"
msgstr "सितम्बर"
#. l10n: Short month name
-#: js/messages.php:115 libraries/common.lib.php:1573
+#: js/messages.php:115 libraries/common.lib.php:1575
msgid "Oct"
msgstr "अक्तूबर"
#. l10n: Short month name
-#: js/messages.php:117 libraries/common.lib.php:1575
+#: js/messages.php:117 libraries/common.lib.php:1577
msgid "Nov"
msgstr "नवम्बर"
#. l10n: Short month name
-#: js/messages.php:119 libraries/common.lib.php:1577
+#: js/messages.php:119 libraries/common.lib.php:1579
msgid "Dec"
msgstr "दिसमबर"
@@ -1163,37 +1163,37 @@ msgid "Saturday"
msgstr "शनिवार"
#. l10n: Short week day name
-#: js/messages.php:132 libraries/common.lib.php:1580
+#: js/messages.php:132 libraries/common.lib.php:1582
msgid "Sun"
msgstr "रविवार"
#. l10n: Short week day name
-#: js/messages.php:134 libraries/common.lib.php:1582
+#: js/messages.php:134 libraries/common.lib.php:1584
msgid "Mon"
msgstr "सोमवार"
#. l10n: Short week day name
-#: js/messages.php:136 libraries/common.lib.php:1584
+#: js/messages.php:136 libraries/common.lib.php:1586
msgid "Tue"
msgstr "मन्गलवार"
#. l10n: Short week day name
-#: js/messages.php:138 libraries/common.lib.php:1586
+#: js/messages.php:138 libraries/common.lib.php:1588
msgid "Wed"
msgstr "बुधवार"
#. l10n: Short week day name
-#: js/messages.php:140 libraries/common.lib.php:1588
+#: js/messages.php:140 libraries/common.lib.php:1590
msgid "Thu"
msgstr "गुरुवार"
#. l10n: Short week day name
-#: js/messages.php:142 libraries/common.lib.php:1590
+#: js/messages.php:142 libraries/common.lib.php:1592
msgid "Fri"
msgstr "शुक्रवार"
#. l10n: Short week day name
-#: js/messages.php:144 libraries/common.lib.php:1592
+#: js/messages.php:144 libraries/common.lib.php:1594
msgid "Sat"
msgstr "शनिवार"
@@ -1320,7 +1320,7 @@ msgid "Comment"
msgstr "टिप्पणी"
#: libraries/Index.class.php:466 libraries/common.lib.php:616
-#: libraries/common.lib.php:1199 libraries/display_tbl.lib.php:1117
+#: libraries/common.lib.php:1201 libraries/display_tbl.lib.php:1117
#: libraries/import.lib.php:1087 libraries/import.lib.php:1111
#: pdf_pages.php:285 setup/frames/index.inc.php:124
#: setup/lib/messages.inc.php:352 tbl_row_action.php:69
@@ -1344,7 +1344,7 @@ msgid ""
msgstr "सूचकांक %1s और %2s बराबर लगने के कारन उनमें से संभवतः हटाया जा सकता है."
#: libraries/List_Database.class.php:431 libraries/server_links.inc.php:41
-#: server_databases.php:88 server_privileges.php:1621
+#: server_databases.php:88 server_privileges.php:1660
#: setup/lib/messages.inc.php:110 test/theme.php:93
msgid "Databases"
msgstr " डाटाबेस"
@@ -1659,7 +1659,7 @@ msgid "Documentation"
msgstr "डोक्युमेंटेशन"
#: libraries/common.lib.php:595 libraries/header_printview.inc.php:61
-#: server_processlist.php:60 server_status.php:247
+#: server_processlist.php:60 server_status.php:358
msgid "SQL query"
msgstr ""
@@ -1675,128 +1675,128 @@ msgstr "SQL की व्याख्या "
msgid "Skip Explain SQL"
msgstr ""
-#: libraries/common.lib.php:1212
+#: libraries/common.lib.php:1214
msgid "Without PHP Code"
msgstr ""
-#: libraries/common.lib.php:1215 setup/lib/messages.inc.php:355
+#: libraries/common.lib.php:1217 setup/lib/messages.inc.php:355
msgid "Create PHP Code"
msgstr "PHP Code बनाओ"
-#: libraries/common.lib.php:1233 server_status.php:341
+#: libraries/common.lib.php:1235 server_status.php:452
#: setup/lib/messages.inc.php:354
msgid "Refresh"
msgstr ""
-#: libraries/common.lib.php:1242
+#: libraries/common.lib.php:1244
msgid "Skip Validate SQL"
msgstr ""
-#: libraries/common.lib.php:1245 setup/lib/messages.inc.php:356 sql.php:518
+#: libraries/common.lib.php:1247 setup/lib/messages.inc.php:356 sql.php:518
msgid "Validate SQL"
msgstr ""
-#: libraries/common.lib.php:1276
+#: libraries/common.lib.php:1278
msgid "Inline edit of this query"
msgstr "इस कुएरी की इनलाइन एडिट"
-#: libraries/common.lib.php:1278
+#: libraries/common.lib.php:1280
msgid "Inline"
msgstr "इनलाइन"
-#: libraries/common.lib.php:1332 libraries/common.lib.php:1347
+#: libraries/common.lib.php:1334 libraries/common.lib.php:1349
msgid "Profiling"
msgstr ""
-#: libraries/common.lib.php:1351 libraries/tbl_triggers.lib.php:28
+#: libraries/common.lib.php:1353 libraries/tbl_triggers.lib.php:28
#: server_processlist.php:58
msgid "Time"
msgstr ""
#. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "B"
msgstr " बैट्स"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "KiB"
msgstr "KB"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "MiB"
msgstr "MB"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "GiB"
msgstr "GB"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "TiB"
msgstr "TB"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "PiB"
msgstr "PB"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "EiB"
msgstr "EB"
#. l10n: Thousands separator
-#: libraries/common.lib.php:1417
+#: libraries/common.lib.php:1419
msgid ","
msgstr ","
#. l10n: Decimal separator
-#: libraries/common.lib.php:1419
+#: libraries/common.lib.php:1421
msgid "."
msgstr "."
#. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string
-#: libraries/common.lib.php:1596
+#: libraries/common.lib.php:1598
#: libraries/transformations/text_plain__dateformat.inc.php:34
msgid "%B %d, %Y at %I:%M %p"
msgstr "%d %B, %Y को %I:%M %p"
-#: libraries/common.lib.php:1898
+#: libraries/common.lib.php:1907
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "%s दिन, %s घंटे, %s मिनट and %s सेकंड"
-#: libraries/common.lib.php:2313 libraries/common.lib.php:2316
-#: libraries/display_tbl.lib.php:290 server_status.php:608
+#: libraries/common.lib.php:2322 libraries/common.lib.php:2325
+#: libraries/display_tbl.lib.php:290 server_status.php:719
msgid "Begin"
msgstr ""
-#: libraries/common.lib.php:2314 libraries/common.lib.php:2317
+#: libraries/common.lib.php:2323 libraries/common.lib.php:2326
#: libraries/display_tbl.lib.php:291 server_binlog.php:168
#: server_binlog.php:170
msgid "Previous"
msgstr ""
-#: libraries/common.lib.php:2345 libraries/common.lib.php:2348
+#: libraries/common.lib.php:2354 libraries/common.lib.php:2357
#: libraries/display_tbl.lib.php:353
msgid "End"
msgstr "आखरी"
-#: libraries/common.lib.php:2421
+#: libraries/common.lib.php:2430
#, php-format
msgid "Jump to database "%s"."
msgstr ""
-#: libraries/common.lib.php:2441
+#: libraries/common.lib.php:2450
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr ""
-#: libraries/common.lib.php:2821 libraries/common.lib.php:2828
+#: libraries/common.lib.php:2830 libraries/common.lib.php:2837
#: libraries/db_links.inc.php:68 libraries/export/sql.php:25
#: libraries/import/sql.php:18 libraries/server_links.inc.php:45
#: libraries/tbl_links.inc.php:60 querywindow.php:99 test/theme.php:97
msgid "SQL"
msgstr ""
-#: libraries/common.lib.php:2830 libraries/db_links.inc.php:104
+#: libraries/common.lib.php:2839 libraries/db_links.inc.php:104
#: libraries/tbl_links.inc.php:95 libraries/tbl_links.inc.php:117
#: view_operations.php:89
msgid "Operations"
@@ -1850,8 +1850,8 @@ msgid "Import"
msgstr ""
#: libraries/db_links.inc.php:111 libraries/server_links.inc.php:66
-#: server_privileges.php:72 server_privileges.php:1683
-#: server_privileges.php:2032 test/theme.php:117
+#: server_privileges.php:111 server_privileges.php:1722
+#: server_privileges.php:2071 test/theme.php:117
msgid "Privileges"
msgstr " प्रिविलेज"
@@ -1898,22 +1898,22 @@ msgid "Change password"
msgstr "पासव्रड बदलिये"
#: libraries/display_change_password.lib.php:35
-#: libraries/replication_gui.lib.php:345 server_privileges.php:768
+#: libraries/replication_gui.lib.php:345 server_privileges.php:807
msgid "No Password"
msgstr "पासवर्ड नहीं है"
#: libraries/display_change_password.lib.php:41
#: libraries/replication_gui.lib.php:59 libraries/replication_gui.lib.php:60
#: libraries/replication_gui.lib.php:335 libraries/replication_gui.lib.php:339
-#: libraries/replication_gui.lib.php:349 server_privileges.php:757
-#: server_privileges.php:761 server_privileges.php:772
-#: server_privileges.php:1499 server_synchronize.php:1175
+#: libraries/replication_gui.lib.php:349 server_privileges.php:796
+#: server_privileges.php:800 server_privileges.php:811
+#: server_privileges.php:1538 server_synchronize.php:1175
msgid "Password"
msgstr ""
#: libraries/display_change_password.lib.php:46
#: libraries/replication_gui.lib.php:353 libraries/replication_gui.lib.php:356
-#: server_privileges.php:776 server_privileges.php:779
+#: server_privileges.php:815 server_privileges.php:818
msgid "Re-type"
msgstr ""
@@ -1926,12 +1926,12 @@ msgid "MySQL 4.0 compatible"
msgstr ""
#: libraries/display_change_password.lib.php:72
-#: libraries/replication_gui.lib.php:360 server_privileges.php:783
+#: libraries/replication_gui.lib.php:360 server_privileges.php:822
msgid "Generate Password"
msgstr ""
#: libraries/display_change_password.lib.php:75
-#: libraries/replication_gui.lib.php:363 server_privileges.php:786
+#: libraries/replication_gui.lib.php:363 server_privileges.php:825
msgid "Generate"
msgstr ""
@@ -1944,8 +1944,8 @@ msgstr " नया डाटाबेस बनाओ"
msgid "Create"
msgstr "बनाइये"
-#: libraries/display_create_database.lib.php:40 server_privileges.php:74
-#: server_privileges.php:1388 server_replication.php:35
+#: libraries/display_create_database.lib.php:40 server_privileges.php:113
+#: server_privileges.php:1427 server_replication.php:35
msgid "No Privileges"
msgstr "कोइ प्रिविलेज नहीं"
@@ -2033,7 +2033,7 @@ msgstr ""
#: libraries/display_export.lib.php:240 libraries/display_import.lib.php:197
#: libraries/display_import.lib.php:210 libraries/display_tbl.lib.php:530
#: libraries/export/sql.php:868 libraries/tbl_properties.inc.php:575
-#: server_privileges.php:1836 server_processlist.php:75
+#: server_privileges.php:1875 server_processlist.php:75
msgid "None"
msgstr ""
@@ -2350,7 +2350,7 @@ msgstr ""
msgid "Buffer Pool"
msgstr "बफर पूल"
-#: libraries/engines/innodb.lib.php:145 server_status.php:306
+#: libraries/engines/innodb.lib.php:145 server_status.php:417
msgid "InnoDB Status"
msgstr ""
@@ -2359,8 +2359,8 @@ msgid "Buffer Pool Usage"
msgstr "बफर पूल उपयोग"
#: libraries/engines/innodb.lib.php:194 server_databases.php:137
-#: server_databases.php:305 server_status.php:414 server_status.php:475
-#: server_status.php:496 tbl_printview.php:351 tbl_structure.php:696
+#: server_databases.php:305 server_status.php:525 server_status.php:586
+#: server_status.php:607 tbl_printview.php:351 tbl_structure.php:696
msgid "Total"
msgstr ""
@@ -2673,7 +2673,7 @@ msgstr ""
#: libraries/export/latex.php:201 libraries/export/odt.php:48
#: libraries/export/sql.php:106 libraries/export/sql.php:868
#: libraries/export/texytext.php:27 server_databases.php:127
-#: server_privileges.php:537 server_replication.php:316 tbl_printview.php:317
+#: server_privileges.php:576 server_replication.php:316 tbl_printview.php:317
#: tbl_structure.php:665
msgid "Data"
msgstr " डाटा"
@@ -2723,9 +2723,9 @@ msgstr ""
#: libraries/export/xml.php:102 libraries/header_printview.inc.php:57
#: libraries/replication_gui.lib.php:63 libraries/replication_gui.lib.php:174
#: libraries/replication_gui.lib.php:269 libraries/replication_gui.lib.php:272
-#: libraries/replication_gui.lib.php:329 server_privileges.php:692
-#: server_privileges.php:695 server_privileges.php:751
-#: server_privileges.php:1498 server_privileges.php:2030
+#: libraries/replication_gui.lib.php:329 server_privileges.php:731
+#: server_privileges.php:734 server_privileges.php:790
+#: server_privileges.php:1537 server_privileges.php:2069
#: server_processlist.php:55 server_synchronize.php:1159
msgid "Host"
msgstr "होस्ट"
@@ -3077,738 +3077,6 @@ msgstr "नहीं"
msgid "Convert to Kana"
msgstr ""
-#. l10n: Text direction, use either ltr or rtl
-#: libraries/messages.inc.php:19
-msgid "ltr"
-msgstr "आईटीआर"
-
-#: libraries/messages.inc.php:21
-msgid "Content of table __TABLE__"
-msgstr ""
-
-#: libraries/messages.inc.php:22
-msgid "(continued)"
-msgstr ""
-
-#: libraries/messages.inc.php:23
-msgid "Structure of table __TABLE__"
-msgstr ""
-
-#: libraries/messages.inc.php:25 server_privileges.php:227
-msgid "Includes all privileges except GRANT."
-msgstr ""
-
-#: libraries/messages.inc.php:26 server_privileges.php:153
-#: server_privileges.php:476
-msgid "Allows altering the structure of existing tables."
-msgstr ""
-
-#: libraries/messages.inc.php:27 server_privileges.php:169
-#: server_privileges.php:482
-msgid "Allows altering and dropping stored routines."
-msgstr ""
-
-#: libraries/messages.inc.php:28 server_privileges.php:145
-#: server_privileges.php:475
-msgid "Allows creating new databases and tables."
-msgstr ""
-
-#: libraries/messages.inc.php:29 server_privileges.php:168
-#: server_privileges.php:481
-msgid "Allows creating stored routines."
-msgstr ""
-
-#: libraries/messages.inc.php:30 server_privileges.php:475
-msgid "Allows creating new tables."
-msgstr ""
-
-#: libraries/messages.inc.php:31 server_privileges.php:156
-#: server_privileges.php:479
-msgid "Allows creating temporary tables."
-msgstr ""
-
-#: libraries/messages.inc.php:32 server_privileges.php:170
-#: server_privileges.php:515
-msgid "Allows creating, dropping and renaming user accounts."
-msgstr ""
-
-#: libraries/messages.inc.php:33 server_privileges.php:160
-#: server_privileges.php:164 server_privileges.php:487
-#: server_privileges.php:491
-msgid "Allows creating new views."
-msgstr ""
-
-#: libraries/messages.inc.php:34 server_privileges.php:144
-#: server_privileges.php:467
-msgid "Allows deleting data."
-msgstr ""
-
-#: libraries/messages.inc.php:35 server_privileges.php:146
-#: server_privileges.php:478
-msgid "Allows dropping databases and tables."
-msgstr ""
-
-#: libraries/messages.inc.php:36 server_privileges.php:478
-msgid "Allows dropping tables."
-msgstr ""
-
-#: libraries/messages.inc.php:37 server_privileges.php:161
-#: server_privileges.php:495
-msgid "Allows to set up events for the event scheduler"
-msgstr ""
-
-#: libraries/messages.inc.php:38 server_privileges.php:171
-#: server_privileges.php:483
-msgid "Allows executing stored routines."
-msgstr ""
-
-#: libraries/messages.inc.php:39 server_privileges.php:150
-#: server_privileges.php:470
-msgid "Allows importing data from and exporting data into files."
-msgstr ""
-
-#: libraries/messages.inc.php:40 server_privileges.php:501
-msgid ""
-"Allows adding users and privileges without reloading the privilege tables."
-msgstr ""
-
-#: libraries/messages.inc.php:41 server_privileges.php:152
-#: server_privileges.php:477
-msgid "Allows creating and dropping indexes."
-msgstr ""
-
-#: libraries/messages.inc.php:42 server_privileges.php:142
-#: server_privileges.php:403 server_privileges.php:465
-msgid "Allows inserting and replacing data."
-msgstr ""
-
-#: libraries/messages.inc.php:43 server_privileges.php:157
-#: server_privileges.php:510
-msgid "Allows locking tables for the current thread."
-msgstr ""
-
-#: libraries/messages.inc.php:44 server_privileges.php:607
-#: server_privileges.php:609
-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/messages.inc.php:45 server_privileges.php:595
-#: server_privileges.php:597
-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/messages.inc.php:46 server_privileges.php:601
-#: server_privileges.php:603
-msgid ""
-"Limits the number of commands that change any table or database the user may "
-"execute per hour."
-msgstr ""
-"Limits the number of commands that change any table or database the user may "
-"execute per hour."
-
-#: libraries/messages.inc.php:47 server_privileges.php:613
-#: server_privileges.php:615
-msgid "Limits the number of simultaneous connections the user may have."
-msgstr ""
-
-#: libraries/messages.inc.php:48 server_privileges.php:149
-#: server_privileges.php:505
-msgid "Allows viewing processes of all users"
-msgstr ""
-
-#: libraries/messages.inc.php:49 server_privileges.php:151
-#: server_privileges.php:409 server_privileges.php:511
-msgid "Has no effect in this MySQL version."
-msgstr ""
-
-#: libraries/messages.inc.php:50 server_privileges.php:147
-#: server_privileges.php:506
-msgid "Allows reloading server settings and flushing the server's caches."
-msgstr ""
-
-#: libraries/messages.inc.php:51 server_privileges.php:159
-#: server_privileges.php:513
-msgid "Allows the user to ask where the slaves / masters are."
-msgstr ""
-
-#: libraries/messages.inc.php:52 server_privileges.php:158
-#: server_privileges.php:514
-msgid "Needed for the replication slaves."
-msgstr ""
-
-#: libraries/messages.inc.php:53 server_privileges.php:141
-#: server_privileges.php:400 server_privileges.php:464
-msgid "Allows reading data."
-msgstr ""
-
-#: libraries/messages.inc.php:54 server_privileges.php:154
-#: server_privileges.php:508
-msgid "Gives access to the complete list of databases."
-msgstr ""
-
-#: libraries/messages.inc.php:55 server_privileges.php:165
-#: server_privileges.php:167 server_privileges.php:480
-msgid "Allows performing SHOW CREATE VIEW queries."
-msgstr ""
-
-#: libraries/messages.inc.php:56 server_privileges.php:148
-#: server_privileges.php:507
-msgid "Allows shutting down the server."
-msgstr ""
-
-#: libraries/messages.inc.php:57 server_privileges.php:155
-#: server_privileges.php:504
-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/messages.inc.php:58 server_privileges.php:162
-#: server_privileges.php:496
-msgid "Allows creating and dropping triggers"
-msgstr ""
-
-#: libraries/messages.inc.php:59 server_privileges.php:143
-#: server_privileges.php:406 server_privileges.php:466
-msgid "Allows changing data."
-msgstr ""
-
-#: libraries/messages.inc.php:60 server_privileges.php:221
-msgid "No privileges."
-msgstr ""
-
-#: libraries/messages.inc.php:62
-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/messages.inc.php:63
-msgid "The number of transactions that used the temporary binary log cache."
-msgstr ""
-
-#: libraries/messages.inc.php:64
-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 "
-"to increase the tmp_table_size value to cause temporary tables to be memory-"
-"based instead of disk-based."
-msgstr ""
-
-#: libraries/messages.inc.php:65
-msgid "How many temporary files mysqld has created."
-msgstr ""
-
-#: libraries/messages.inc.php:66
-msgid ""
-"The number of in-memory temporary tables created automatically by the server "
-"while executing statements."
-msgstr ""
-
-#: libraries/messages.inc.php:67
-msgid ""
-"The number of rows written with INSERT DELAYED for which some error occurred "
-"(probably duplicate key)."
-msgstr ""
-
-#: libraries/messages.inc.php:68
-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/messages.inc.php:69
-msgid "The number of INSERT DELAYED rows written."
-msgstr ""
-
-#: libraries/messages.inc.php:70
-msgid "The number of executed FLUSH statements."
-msgstr ""
-
-#: libraries/messages.inc.php:71
-msgid "The number of internal COMMIT statements."
-msgstr ""
-
-#: libraries/messages.inc.php:72
-msgid "The number of times a row was deleted from a table."
-msgstr ""
-
-#: libraries/messages.inc.php:73
-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/messages.inc.php:74
-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/messages.inc.php:75
-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/messages.inc.php:76
-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/messages.inc.php:77
-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/messages.inc.php:78
-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 "
-"probably have a lot of queries that require MySQL to scan whole tables or "
-"you have joins that don't use keys properly."
-msgstr ""
-
-#: libraries/messages.inc.php:79
-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 "
-"tables are not properly indexed or that your queries are not written to take "
-"advantage of the indexes you have."
-msgstr ""
-
-#: libraries/messages.inc.php:80
-msgid "The number of internal ROLLBACK statements."
-msgstr ""
-
-#: libraries/messages.inc.php:81
-msgid "The number of requests to update a row in a table."
-msgstr ""
-
-#: libraries/messages.inc.php:82
-msgid "The number of requests to insert a row in a table."
-msgstr ""
-
-#: libraries/messages.inc.php:83
-msgid "The number of pages containing data (dirty or clean)."
-msgstr ""
-
-#: libraries/messages.inc.php:84
-msgid "The number of pages currently dirty."
-msgstr ""
-
-#: libraries/messages.inc.php:85
-msgid "The number of buffer pool pages that have been requested to be flushed."
-msgstr ""
-
-#: libraries/messages.inc.php:86
-msgid "The number of free pages."
-msgstr ""
-
-#: libraries/messages.inc.php:87
-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/messages.inc.php:88
-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 "
-"be calculated as Innodb_buffer_pool_pages_total - "
-"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data."
-msgstr ""
-
-#: libraries/messages.inc.php:89
-msgid "Total size of buffer pool, in pages."
-msgstr ""
-
-#: libraries/messages.inc.php:90
-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/messages.inc.php:91
-msgid ""
-"The number of sequential read-aheads InnoDB initiated. This happens when "
-"InnoDB does a sequential full table scan."
-msgstr ""
-
-#: libraries/messages.inc.php:92
-msgid "The number of logical read requests InnoDB has done."
-msgstr ""
-
-#: libraries/messages.inc.php:93
-msgid ""
-"The number of logical reads that InnoDB could not satisfy from buffer pool "
-"and had to do a single-page read."
-msgstr ""
-
-#: libraries/messages.inc.php:94
-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 "
-"available, it's necessary to wait for pages to be flushed first. This "
-"counter counts instances of these waits. If the buffer pool size was set "
-"properly, this value should be small."
-msgstr ""
-
-#: libraries/messages.inc.php:95
-msgid "The number writes done to the InnoDB buffer pool."
-msgstr ""
-
-#: libraries/messages.inc.php:96
-msgid "The number of fsync() operations so far."
-msgstr ""
-
-#: libraries/messages.inc.php:97
-msgid "The current number of pending fsync() operations."
-msgstr ""
-
-#: libraries/messages.inc.php:98
-msgid "The current number of pending reads."
-msgstr ""
-
-#: libraries/messages.inc.php:99
-msgid "The current number of pending writes."
-msgstr ""
-
-#: libraries/messages.inc.php:100
-msgid "The amount of data read so far, in bytes."
-msgstr ""
-
-#: libraries/messages.inc.php:101
-msgid "The total number of data reads."
-msgstr ""
-
-#: libraries/messages.inc.php:102
-msgid "The total number of data writes."
-msgstr ""
-
-#: libraries/messages.inc.php:103
-msgid "The amount of data written so far, in bytes."
-msgstr ""
-
-#: libraries/messages.inc.php:104
-msgid "The number of pages that have been written for doublewrite operations."
-msgstr ""
-
-#: libraries/messages.inc.php:105
-msgid "The number of doublewrite operations that have been performed."
-msgstr ""
-
-#: libraries/messages.inc.php:106
-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/messages.inc.php:107
-msgid "The number of log write requests."
-msgstr ""
-
-#: libraries/messages.inc.php:108
-msgid "The number of physical writes to the log file."
-msgstr ""
-
-#: libraries/messages.inc.php:109
-msgid "The number of fsync() writes done to the log file."
-msgstr ""
-
-#: libraries/messages.inc.php:110
-msgid "The number of pending log file fsyncs."
-msgstr ""
-
-#: libraries/messages.inc.php:111
-msgid "Pending log file writes."
-msgstr ""
-
-#: libraries/messages.inc.php:112
-msgid "The number of bytes written to the log file."
-msgstr ""
-
-#: libraries/messages.inc.php:113
-msgid "The number of pages created."
-msgstr ""
-
-#: libraries/messages.inc.php:114
-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/messages.inc.php:115
-msgid "The number of pages read."
-msgstr ""
-
-#: libraries/messages.inc.php:116
-msgid "The number of pages written."
-msgstr ""
-
-#: libraries/messages.inc.php:117
-msgid "The number of row locks currently being waited for."
-msgstr ""
-
-#: libraries/messages.inc.php:118
-msgid "The average time to acquire a row lock, in milliseconds."
-msgstr ""
-
-#: libraries/messages.inc.php:119
-msgid "The total time spent in acquiring row locks, in milliseconds."
-msgstr ""
-
-#: libraries/messages.inc.php:120
-msgid "The maximum time to acquire a row lock, in milliseconds."
-msgstr ""
-
-#: libraries/messages.inc.php:121
-msgid "The number of times a row lock had to be waited for."
-msgstr ""
-
-#: libraries/messages.inc.php:122
-msgid "The number of rows deleted from InnoDB tables."
-msgstr ""
-
-#: libraries/messages.inc.php:123
-msgid "The number of rows inserted in InnoDB tables."
-msgstr ""
-
-#: libraries/messages.inc.php:124
-msgid "The number of rows read from InnoDB tables."
-msgstr ""
-
-#: libraries/messages.inc.php:125
-msgid "The number of rows updated in InnoDB tables."
-msgstr ""
-
-#: libraries/messages.inc.php:126
-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/messages.inc.php:127
-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/messages.inc.php:128
-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/messages.inc.php:129
-msgid "The number of requests to read a key block from the cache."
-msgstr ""
-
-#: libraries/messages.inc.php:130
-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/messages.inc.php:131
-msgid "The number of requests to write a key block to the cache."
-msgstr ""
-
-#: libraries/messages.inc.php:132
-msgid "The number of physical writes of a key block to disk."
-msgstr ""
-
-#: libraries/messages.inc.php:133
-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/messages.inc.php:134
-msgid "The number of rows waiting to be written in INSERT DELAYED queues."
-msgstr ""
-
-#: libraries/messages.inc.php:135
-msgid ""
-"The number of tables that have been opened. If opened tables is big, your "
-"table cache value is probably too small."
-msgstr ""
-
-#: libraries/messages.inc.php:136
-msgid "The number of files that are open."
-msgstr ""
-
-#: libraries/messages.inc.php:137
-msgid "The number of streams that are open (used mainly for logging)."
-msgstr ""
-
-#: libraries/messages.inc.php:138
-msgid "The number of tables that are open."
-msgstr ""
-
-#: libraries/messages.inc.php:139
-msgid "The number of free memory blocks in query cache."
-msgstr ""
-
-#: libraries/messages.inc.php:140
-msgid "The amount of free memory for query cache."
-msgstr ""
-
-#: libraries/messages.inc.php:141
-msgid "The number of cache hits."
-msgstr ""
-
-#: libraries/messages.inc.php:142
-msgid "The number of queries added to the cache."
-msgstr ""
-
-#: libraries/messages.inc.php:143
-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 "
-"cache size. The query cache uses a least recently used (LRU) strategy to "
-"decide which queries to remove from the cache."
-msgstr ""
-
-#: libraries/messages.inc.php:144
-msgid ""
-"The number of non-cached queries (not cachable, or not cached due to the "
-"query_cache_type setting)."
-msgstr ""
-
-#: libraries/messages.inc.php:145
-msgid "The number of queries registered in the cache."
-msgstr ""
-
-#: libraries/messages.inc.php:146
-msgid "The total number of blocks in the query cache."
-msgstr ""
-
-#: libraries/messages.inc.php:147
-msgctxt "$strShowStatusReset"
-msgid "Reset"
-msgstr ""
-
-#: libraries/messages.inc.php:148
-msgid "The status of failsafe replication (not yet implemented)."
-msgstr ""
-
-#: libraries/messages.inc.php:149
-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/messages.inc.php:150
-msgid "The number of joins that used a range search on a reference table."
-msgstr ""
-
-#: libraries/messages.inc.php:151
-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/messages.inc.php:152
-msgid ""
-"The number of joins that used ranges on the first table. (It's normally not "
-"critical even if this is big.)"
-msgstr ""
-
-#: libraries/messages.inc.php:153
-msgid "The number of joins that did a full scan of the first table."
-msgstr ""
-
-#: libraries/messages.inc.php:154
-msgid "The number of temporary tables currently open by the slave SQL thread."
-msgstr ""
-
-#: libraries/messages.inc.php:155
-msgid ""
-"Total (since startup) number of times the replication slave SQL thread has "
-"retried transactions."
-msgstr ""
-
-#: libraries/messages.inc.php:156
-msgid "This is ON if this server is a slave that is connected to a master."
-msgstr ""
-
-#: libraries/messages.inc.php:157
-msgid ""
-"The number of threads that have taken more than slow_launch_time seconds to "
-"create."
-msgstr ""
-
-#: libraries/messages.inc.php:158
-msgid ""
-"The number of queries that have taken more than long_query_time seconds."
-msgstr ""
-
-#: libraries/messages.inc.php:159
-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/messages.inc.php:160
-msgid "The number of sorts that were done with ranges."
-msgstr ""
-
-#: libraries/messages.inc.php:161
-msgid "The number of sorted rows."
-msgstr ""
-
-#: libraries/messages.inc.php:162
-msgid "The number of sorts that were done by scanning the table."
-msgstr ""
-
-#: libraries/messages.inc.php:163
-msgid "The number of times that a table lock was acquired immediately."
-msgstr ""
-
-#: libraries/messages.inc.php:164
-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 "
-"should first optimize your queries, and then either split your table or "
-"tables or use replication."
-msgstr ""
-
-#: libraries/messages.inc.php:165
-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/messages.inc.php:166
-msgid "The number of currently open connections."
-msgstr ""
-
-#: libraries/messages.inc.php:167
-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 "
-"doesn't give a notable performance improvement if you have a good thread "
-"implementation.)"
-msgstr ""
-
-#: libraries/messages.inc.php:168
-msgid "The number of threads that are not sleeping."
-msgstr ""
-
#: libraries/mult_submits.inc.php:76 libraries/tbl_properties.inc.php:513
#: tbl_structure.php:29 tbl_structure.php:153 tbl_structure.php:157
#: tbl_structure.php:473
@@ -4125,8 +3393,8 @@ msgstr ""
#: libraries/replication_gui.lib.php:55 libraries/replication_gui.lib.php:56
#: libraries/replication_gui.lib.php:249 libraries/replication_gui.lib.php:252
-#: libraries/replication_gui.lib.php:259 server_privileges.php:672
-#: server_privileges.php:675 server_privileges.php:682
+#: libraries/replication_gui.lib.php:259 server_privileges.php:711
+#: server_privileges.php:714 server_privileges.php:721
#: server_synchronize.php:1171
msgid "User name"
msgstr "यूसर नेम"
@@ -4144,11 +3412,11 @@ msgid "Slave status"
msgstr ""
#: libraries/replication_gui.lib.php:114 libraries/sql_query_form.lib.php:445
-#: server_status.php:626 server_variables.php:52
+#: server_status.php:737 server_variables.php:52
msgid "Variable"
msgstr ""
-#: libraries/replication_gui.lib.php:115 server_status.php:627
+#: libraries/replication_gui.lib.php:115 server_status.php:738
#: tbl_change.php:324 tbl_printview.php:370 tbl_select.php:139
#: tbl_structure.php:729
msgid "Value"
@@ -4168,41 +3436,58 @@ msgstr ""
msgid "Add slave replication user"
msgstr ""
-#: libraries/replication_gui.lib.php:254 server_privileges.php:677
+#: libraries/replication_gui.lib.php:254 server_privileges.php:716
msgid "Any user"
msgstr "कोई भी उपयोगकर्ता"
#: libraries/replication_gui.lib.php:255 libraries/replication_gui.lib.php:323
-#: libraries/replication_gui.lib.php:346 server_privileges.php:678
-#: server_privileges.php:745 server_privileges.php:769
-#: server_privileges.php:1889 server_privileges.php:1919
+#: libraries/replication_gui.lib.php:346 server_privileges.php:717
+#: server_privileges.php:784 server_privileges.php:808
+#: server_privileges.php:1928 server_privileges.php:1958
msgid "Use text field"
msgstr ""
-#: libraries/replication_gui.lib.php:302 server_privileges.php:725
+#: libraries/replication_gui.lib.php:302 server_privileges.php:764
msgid "Any host"
msgstr "कोई भी होस्ट"
-#: libraries/replication_gui.lib.php:306 server_privileges.php:729
+#: libraries/replication_gui.lib.php:306 server_privileges.php:768
msgid "Local"
msgstr "Local"
-#: libraries/replication_gui.lib.php:312 server_privileges.php:734
+#: libraries/replication_gui.lib.php:312 server_privileges.php:773
msgid "This Host"
msgstr ""
-#: libraries/replication_gui.lib.php:318 server_privileges.php:740
+#: libraries/replication_gui.lib.php:318 server_privileges.php:779
msgid "Use Host Table"
msgstr ""
-#: libraries/replication_gui.lib.php:331 server_privileges.php:753
+#: libraries/replication_gui.lib.php:331 server_privileges.php:792
msgid ""
"When Host table is used, this field is ignored and values stored in Host "
"table are used instead."
msgstr ""
-#: libraries/select_lang.lib.php:480 libraries/select_lang.lib.php:486
-#: libraries/select_lang.lib.php:492
+#. l10n: Text direction, use either ltr or rtl
+#: libraries/select_lang.lib.php:491
+msgid "ltr"
+msgstr "आईटीआर"
+
+#: libraries/select_lang.lib.php:493
+msgid "Content of table __TABLE__"
+msgstr ""
+
+#: libraries/select_lang.lib.php:494
+msgid "(continued)"
+msgstr ""
+
+#: libraries/select_lang.lib.php:495
+msgid "Structure of table __TABLE__"
+msgstr ""
+
+#: libraries/select_lang.lib.php:500 libraries/select_lang.lib.php:506
+#: libraries/select_lang.lib.php:512
#, php-format
msgid "Unknown language: %1$s."
msgstr ""
@@ -4213,7 +3498,7 @@ msgid "Servers"
msgstr ""
#: libraries/server_links.inc.php:53 server_engines.php:112
-#: server_engines.php:116 server_status.php:304 test/theme.php:105
+#: server_engines.php:116 server_status.php:415 test/theme.php:105
msgid "Variables"
msgstr ""
@@ -4226,7 +3511,7 @@ msgid "Engines"
msgstr ""
#: libraries/server_links.inc.php:76 server_binlog.php:110
-#: server_status.php:253 test/theme.php:121
+#: server_status.php:364 test/theme.php:121
msgid "Binary log"
msgstr "बाइनरी लोग"
@@ -4589,8 +3874,8 @@ msgstr ""
msgid "Protocol version"
msgstr ""
-#: main.php:189 server_privileges.php:1350 server_privileges.php:1497
-#: server_privileges.php:1611 server_privileges.php:2029
+#: main.php:189 server_privileges.php:1389 server_privileges.php:1536
+#: server_privileges.php:1650 server_privileges.php:2068
#: server_processlist.php:54
msgid "User"
msgstr "यूसर"
@@ -4951,7 +4236,7 @@ msgstr "%s डाटाबेस को सफलता से डिलीट
msgid "Databases statistics"
msgstr " डाटाबेसों के आँकडे"
-#: server_databases.php:117 server_status.php:260
+#: server_databases.php:117 server_status.php:371
#: setup/lib/messages.inc.php:117
msgid "Tables"
msgstr ""
@@ -4971,6 +4256,16 @@ msgstr ""
msgid "Jump to database"
msgstr "कोइ डाटाबेस नहिं"
+#: server_databases.php:267
+msgid "Not replicated"
+msgstr ""
+
+#: server_databases.php:273
+#, fuzzy
+#| msgid "Replication"
+msgid "Replicated"
+msgstr "प्रतिकृति"
+
#: server_databases.php:289
#, php-format
msgid "Check privileges for database "%s"."
@@ -5004,142 +4299,326 @@ msgstr ""
msgid "View dump (schema) of databases"
msgstr ""
-#: server_privileges.php:263 server_privileges.php:264
+#: server_privileges.php:24 server_privileges.php:266
+msgid "Includes all privileges except GRANT."
+msgstr ""
+
+#: server_privileges.php:25 server_privileges.php:192
+#: server_privileges.php:515
+msgid "Allows altering the structure of existing tables."
+msgstr ""
+
+#: server_privileges.php:26 server_privileges.php:208
+#: server_privileges.php:521
+msgid "Allows altering and dropping stored routines."
+msgstr ""
+
+#: server_privileges.php:27 server_privileges.php:184
+#: server_privileges.php:514
+msgid "Allows creating new databases and tables."
+msgstr ""
+
+#: server_privileges.php:28 server_privileges.php:207
+#: server_privileges.php:520
+msgid "Allows creating stored routines."
+msgstr ""
+
+#: server_privileges.php:29 server_privileges.php:514
+msgid "Allows creating new tables."
+msgstr ""
+
+#: server_privileges.php:30 server_privileges.php:195
+#: server_privileges.php:518
+msgid "Allows creating temporary tables."
+msgstr ""
+
+#: server_privileges.php:31 server_privileges.php:209
+#: server_privileges.php:554
+msgid "Allows creating, dropping and renaming user accounts."
+msgstr ""
+
+#: server_privileges.php:32 server_privileges.php:199
+#: server_privileges.php:203 server_privileges.php:526
+#: server_privileges.php:530
+msgid "Allows creating new views."
+msgstr ""
+
+#: server_privileges.php:33 server_privileges.php:183
+#: server_privileges.php:506
+msgid "Allows deleting data."
+msgstr ""
+
+#: server_privileges.php:34 server_privileges.php:185
+#: server_privileges.php:517
+msgid "Allows dropping databases and tables."
+msgstr ""
+
+#: server_privileges.php:35 server_privileges.php:517
+msgid "Allows dropping tables."
+msgstr ""
+
+#: server_privileges.php:36 server_privileges.php:200
+#: server_privileges.php:534
+msgid "Allows to set up events for the event scheduler"
+msgstr ""
+
+#: server_privileges.php:37 server_privileges.php:210
+#: server_privileges.php:522
+msgid "Allows executing stored routines."
+msgstr ""
+
+#: server_privileges.php:38 server_privileges.php:189
+#: server_privileges.php:509
+msgid "Allows importing data from and exporting data into files."
+msgstr ""
+
+#: server_privileges.php:39 server_privileges.php:540
+msgid ""
+"Allows adding users and privileges without reloading the privilege tables."
+msgstr ""
+
+#: server_privileges.php:40 server_privileges.php:191
+#: server_privileges.php:516
+msgid "Allows creating and dropping indexes."
+msgstr ""
+
+#: server_privileges.php:41 server_privileges.php:181
+#: server_privileges.php:442 server_privileges.php:504
+msgid "Allows inserting and replacing data."
+msgstr ""
+
+#: server_privileges.php:42 server_privileges.php:196
+#: server_privileges.php:549
+msgid "Allows locking tables for the current thread."
+msgstr ""
+
+#: server_privileges.php:43 server_privileges.php:646
+#: server_privileges.php:648
+msgid "Limits the number of new connections the user may open per hour."
+msgstr "Limits the number of new connections the user may open per hour."
+
+#: server_privileges.php:44 server_privileges.php:634
+#: server_privileges.php:636
+msgid "Limits the number of queries the user may send to the server per hour."
+msgstr "Limits the number of queries the user may send to the server per hour."
+
+#: server_privileges.php:45 server_privileges.php:640
+#: server_privileges.php:642
+msgid ""
+"Limits the number of commands that change any table or database the user may "
+"execute per hour."
+msgstr ""
+"Limits the number of commands that change any table or database the user may "
+"execute per hour."
+
+#: server_privileges.php:46 server_privileges.php:652
+#: server_privileges.php:654
+msgid "Limits the number of simultaneous connections the user may have."
+msgstr ""
+
+#: server_privileges.php:47 server_privileges.php:188
+#: server_privileges.php:544
+msgid "Allows viewing processes of all users"
+msgstr ""
+
+#: server_privileges.php:48 server_privileges.php:190
+#: server_privileges.php:448 server_privileges.php:550
+msgid "Has no effect in this MySQL version."
+msgstr ""
+
+#: server_privileges.php:49 server_privileges.php:186
+#: server_privileges.php:545
+msgid "Allows reloading server settings and flushing the server's caches."
+msgstr ""
+
+#: server_privileges.php:50 server_privileges.php:198
+#: server_privileges.php:552
+msgid "Allows the user to ask where the slaves / masters are."
+msgstr ""
+
+#: server_privileges.php:51 server_privileges.php:197
+#: server_privileges.php:553
+msgid "Needed for the replication slaves."
+msgstr ""
+
+#: server_privileges.php:52 server_privileges.php:180
+#: server_privileges.php:439 server_privileges.php:503
+msgid "Allows reading data."
+msgstr ""
+
+#: server_privileges.php:53 server_privileges.php:193
+#: server_privileges.php:547
+msgid "Gives access to the complete list of databases."
+msgstr ""
+
+#: server_privileges.php:54 server_privileges.php:204
+#: server_privileges.php:206 server_privileges.php:519
+msgid "Allows performing SHOW CREATE VIEW queries."
+msgstr ""
+
+#: server_privileges.php:55 server_privileges.php:187
+#: server_privileges.php:546
+msgid "Allows shutting down the server."
+msgstr ""
+
+#: server_privileges.php:56 server_privileges.php:194
+#: server_privileges.php:543
+msgid ""
+"Allows connecting, even if maximum number of connections is reached; "
+"required for most administrative operations like setting global variables or "
+"killing threads of other users."
+msgstr ""
+
+#: server_privileges.php:57 server_privileges.php:201
+#: server_privileges.php:535
+msgid "Allows creating and dropping triggers"
+msgstr ""
+
+#: server_privileges.php:58 server_privileges.php:182
+#: server_privileges.php:445 server_privileges.php:505
+msgid "Allows changing data."
+msgstr ""
+
+#: server_privileges.php:59 server_privileges.php:260
+msgid "No privileges."
+msgstr ""
+
+#: server_privileges.php:302 server_privileges.php:303
#, fuzzy
#| msgid "No"
msgctxt "None privileges"
msgid "None"
msgstr "नहीं"
-#: server_privileges.php:392 server_privileges.php:527
-#: server_privileges.php:1679 server_privileges.php:1685
+#: server_privileges.php:431 server_privileges.php:566
+#: server_privileges.php:1718 server_privileges.php:1724
msgid "Table-specific privileges"
msgstr " केवल टेबल के प्रिविलेज"
-#: server_privileges.php:393 server_privileges.php:535
-#: server_privileges.php:1501
+#: server_privileges.php:432 server_privileges.php:574
+#: server_privileges.php:1540
msgid " Note: MySQL privilege names are expressed in English "
msgstr " नोट: MySQL प्रिविलेज नामों को अंग्रेजी मे लिखा गया है "
-#: server_privileges.php:524 server_privileges.php:1500
+#: server_privileges.php:563 server_privileges.php:1539
msgid "Global privileges"
msgstr ""
-#: server_privileges.php:526 server_privileges.php:1679
+#: server_privileges.php:565 server_privileges.php:1718
msgid "Database-specific privileges"
msgstr " केवल डाटाबेस के प्रिविलेज"
-#: server_privileges.php:571
+#: server_privileges.php:610
msgid "Administration"
msgstr "एडमिनिस्ट्रेशन"
-#: server_privileges.php:591
+#: server_privileges.php:630
msgid "Resource limits"
msgstr ""
-#: server_privileges.php:592
+#: server_privileges.php:631
msgid "Note: Setting these options to 0 (zero) removes the limit."
msgstr ""
-#: server_privileges.php:669
+#: server_privileges.php:708
msgid "Login Information"
msgstr ""
-#: server_privileges.php:763
+#: server_privileges.php:802
msgid "Do not change the password"
msgstr "पासवर्ड मत बदलिये"
-#: server_privileges.php:804 server_privileges.php:2166
+#: server_privileges.php:843 server_privileges.php:2205
#, fuzzy
#| msgid "No user(s) found."
msgid "No user found."
msgstr "कोई यूसर नहीं।"
-#: server_privileges.php:848
+#: server_privileges.php:887
#, php-format
msgid "The user %s already exists!"
msgstr ""
-#: server_privileges.php:931
+#: server_privileges.php:970
msgid "You have added a new user."
msgstr "आपने नया यूसर बना लिया"
-#: server_privileges.php:1152
+#: server_privileges.php:1191
#, php-format
msgid "You have updated the privileges for %s."
msgstr "आपने %s के प्रिविलेज अपडेट कर दिया ।"
-#: server_privileges.php:1176
+#: server_privileges.php:1215
#, php-format
msgid "You have revoked the privileges for %s"
msgstr "आपने %s के privileges वापस ले लिया "
-#: server_privileges.php:1212
+#: server_privileges.php:1251
#, php-format
msgid "The password for %s was changed successfully."
msgstr ""
-#: server_privileges.php:1232
+#: server_privileges.php:1271
#, php-format
msgid "Deleting %s"
msgstr ""
-#: server_privileges.php:1243
+#: server_privileges.php:1282
msgid "No users selected for deleting!"
msgstr ""
-#: server_privileges.php:1246
+#: server_privileges.php:1285
msgid "Reloading the privileges"
msgstr ""
-#: server_privileges.php:1261
+#: server_privileges.php:1300
msgid "The selected users have been deleted successfully."
msgstr ""
-#: server_privileges.php:1296
+#: server_privileges.php:1335
msgid "The privileges were reloaded successfully."
msgstr ""
-#: server_privileges.php:1324 server_privileges.php:1610
+#: server_privileges.php:1363 server_privileges.php:1649
msgid "Edit Privileges"
msgstr " प्रिविलेज एडिट करें"
-#: server_privileges.php:1333
+#: server_privileges.php:1372
msgid "Revoke"
msgstr "वापस लो"
-#: server_privileges.php:1365
+#: server_privileges.php:1404
msgid "User overview"
msgstr ""
-#: server_privileges.php:1502 server_privileges.php:1684
-#: server_privileges.php:2033
+#: server_privileges.php:1541 server_privileges.php:1723
+#: server_privileges.php:2072
msgid "Grant"
msgstr ""
-#: server_privileges.php:1521 server_privileges.php:2123
+#: server_privileges.php:1560 server_privileges.php:2162
msgid "Any"
msgstr "कोई"
-#: server_privileges.php:1570 server_privileges.php:1594
-#: server_privileges.php:1988 server_privileges.php:2177
+#: server_privileges.php:1609 server_privileges.php:1633
+#: server_privileges.php:2027 server_privileges.php:2216
msgid "Add a new User"
msgstr "नया यूसर जोडें"
-#: server_privileges.php:1575
+#: server_privileges.php:1614
msgid "Remove selected users"
msgstr ""
-#: server_privileges.php:1578
+#: server_privileges.php:1617
msgid "Revoke all active privileges from the users and delete them afterwards."
msgstr ""
-#: server_privileges.php:1579 server_privileges.php:1580
-#: server_privileges.php:1581
+#: server_privileges.php:1618 server_privileges.php:1619
+#: server_privileges.php:1620
msgid "Drop the databases that have the same names as the users."
msgstr "Drop the databases that have the same names as the users."
-#: server_privileges.php:1597
+#: server_privileges.php:1636
#, php-format
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
@@ -5148,91 +4627,91 @@ msgid ""
"sreload the privileges%s before you continue."
msgstr ""
-#: server_privileges.php:1645
+#: server_privileges.php:1684
msgid "The selected user was not found in the privilege table."
msgstr ""
-#: server_privileges.php:1685
+#: server_privileges.php:1724
msgid "Column-specific privileges"
msgstr " केवल कोलम के प्रिविलेज"
-#: server_privileges.php:1886
+#: server_privileges.php:1925
msgid "Add privileges on the following database"
msgstr "इन डाटाबेसों के लिये विशेषाधिकार जोडें"
-#: server_privileges.php:1904
+#: server_privileges.php:1943
msgid "Wildcards % and _ should be escaped with a \\ to use them literally"
msgstr ""
-#: server_privileges.php:1907
+#: server_privileges.php:1946
msgid "Add privileges on the following table"
msgstr "इन टेबल के लिये विशेषाधिकार जोडें"
-#: server_privileges.php:1964
+#: server_privileges.php:2003
msgid "Change Login Information / Copy User"
msgstr ""
-#: server_privileges.php:1967
+#: server_privileges.php:2006
msgid "Create a new user with the same privileges and ..."
msgstr ""
-#: server_privileges.php:1969
+#: server_privileges.php:2008
msgid "... keep the old one."
msgstr ""
-#: server_privileges.php:1970
+#: server_privileges.php:2009
msgid " ... delete the old one from the user tables."
msgstr ""
-#: server_privileges.php:1971
+#: server_privileges.php:2010
msgid ""
" ... revoke all active privileges from the old one and delete it afterwards."
msgstr ""
-#: server_privileges.php:1972
+#: server_privileges.php:2011
msgid ""
" ... delete the old one from the user tables and reload the privileges "
"afterwards."
msgstr ""
-#: server_privileges.php:1994
+#: server_privileges.php:2033
msgid "Database for user"
msgstr ""
-#: server_privileges.php:1998
+#: server_privileges.php:2037
#, fuzzy
#| msgid "No"
msgctxt "Create none database for user"
msgid "None"
msgstr "नहीं"
-#: server_privileges.php:1999
+#: server_privileges.php:2038
msgid "Create database with same name and grant all privileges"
msgstr ""
-#: server_privileges.php:2000
+#: server_privileges.php:2039
msgid "Grant all privileges on wildcard name (username\\_%)"
msgstr ""
-#: server_privileges.php:2003
+#: server_privileges.php:2042
#, php-format
msgid "Grant all privileges on database "%s""
msgstr ""
-#: server_privileges.php:2026
+#: server_privileges.php:2065
#, php-format
msgid "Users having access to "%s""
msgstr ""
-#: server_privileges.php:2134
+#: server_privileges.php:2173
msgid "global"
msgstr ""
-#: server_privileges.php:2136
+#: server_privileges.php:2175
msgid "database-specific"
msgstr ""
-#: server_privileges.php:2138
+#: server_privileges.php:2177
msgid "wildcard"
msgstr ""
@@ -5278,7 +4757,7 @@ msgstr ""
msgid "This server is configured as master in a replication process."
msgstr ""
-#: server_replication.php:184 server_status.php:281
+#: server_replication.php:184 server_status.php:392
msgid "Show master status"
msgstr ""
@@ -5413,101 +4892,632 @@ msgid ""
"like to configure it?"
msgstr ""
+#: server_status.php:40
+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 ""
+
+#: server_status.php:41
+msgid "The number of transactions that used the temporary binary log cache."
+msgstr ""
+
+#: server_status.php:42
+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 "
+"to increase the tmp_table_size value to cause temporary tables to be memory-"
+"based instead of disk-based."
+msgstr ""
+
+#: server_status.php:43
+msgid "How many temporary files mysqld has created."
+msgstr ""
+
+#: server_status.php:44
+msgid ""
+"The number of in-memory temporary tables created automatically by the server "
+"while executing statements."
+msgstr ""
+
+#: server_status.php:45
+msgid ""
+"The number of rows written with INSERT DELAYED for which some error occurred "
+"(probably duplicate key)."
+msgstr ""
+
#: server_status.php:46
+msgid ""
+"The number of INSERT DELAYED handler threads in use. Every different table "
+"on which one uses INSERT DELAYED gets its own thread."
+msgstr ""
+
+#: server_status.php:47
+msgid "The number of INSERT DELAYED rows written."
+msgstr ""
+
+#: server_status.php:48
+msgid "The number of executed FLUSH statements."
+msgstr ""
+
+#: server_status.php:49
+msgid "The number of internal COMMIT statements."
+msgstr ""
+
+#: server_status.php:50
+msgid "The number of times a row was deleted from a table."
+msgstr ""
+
+#: server_status.php:51
+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 ""
+
+#: server_status.php:52
+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 ""
+
+#: server_status.php:53
+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 ""
+
+#: server_status.php:54
+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 ""
+
+#: server_status.php:55
+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 ""
+
+#: server_status.php:56
+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 "
+"probably have a lot of queries that require MySQL to scan whole tables or "
+"you have joins that don't use keys properly."
+msgstr ""
+
+#: server_status.php:57
+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 "
+"tables are not properly indexed or that your queries are not written to take "
+"advantage of the indexes you have."
+msgstr ""
+
+#: server_status.php:58
+msgid "The number of internal ROLLBACK statements."
+msgstr ""
+
+#: server_status.php:59
+msgid "The number of requests to update a row in a table."
+msgstr ""
+
+#: server_status.php:60
+msgid "The number of requests to insert a row in a table."
+msgstr ""
+
+#: server_status.php:61
+msgid "The number of pages containing data (dirty or clean)."
+msgstr ""
+
+#: server_status.php:62
+msgid "The number of pages currently dirty."
+msgstr ""
+
+#: server_status.php:63
+msgid "The number of buffer pool pages that have been requested to be flushed."
+msgstr ""
+
+#: server_status.php:64
+msgid "The number of free pages."
+msgstr ""
+
+#: server_status.php:65
+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 ""
+
+#: server_status.php:66
+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 "
+"be calculated as Innodb_buffer_pool_pages_total - "
+"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data."
+msgstr ""
+
+#: server_status.php:67
+msgid "Total size of buffer pool, in pages."
+msgstr ""
+
+#: server_status.php:68
+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 ""
+
+#: server_status.php:69
+msgid ""
+"The number of sequential read-aheads InnoDB initiated. This happens when "
+"InnoDB does a sequential full table scan."
+msgstr ""
+
+#: server_status.php:70
+msgid "The number of logical read requests InnoDB has done."
+msgstr ""
+
+#: server_status.php:71
+msgid ""
+"The number of logical reads that InnoDB could not satisfy from buffer pool "
+"and had to do a single-page read."
+msgstr ""
+
+#: server_status.php:72
+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 "
+"available, it's necessary to wait for pages to be flushed first. This "
+"counter counts instances of these waits. If the buffer pool size was set "
+"properly, this value should be small."
+msgstr ""
+
+#: server_status.php:73
+msgid "The number writes done to the InnoDB buffer pool."
+msgstr ""
+
+#: server_status.php:74
+msgid "The number of fsync() operations so far."
+msgstr ""
+
+#: server_status.php:75
+msgid "The current number of pending fsync() operations."
+msgstr ""
+
+#: server_status.php:76
+msgid "The current number of pending reads."
+msgstr ""
+
+#: server_status.php:77
+msgid "The current number of pending writes."
+msgstr ""
+
+#: server_status.php:78
+msgid "The amount of data read so far, in bytes."
+msgstr ""
+
+#: server_status.php:79
+msgid "The total number of data reads."
+msgstr ""
+
+#: server_status.php:80
+msgid "The total number of data writes."
+msgstr ""
+
+#: server_status.php:81
+msgid "The amount of data written so far, in bytes."
+msgstr ""
+
+#: server_status.php:82
+msgid "The number of pages that have been written for doublewrite operations."
+msgstr ""
+
+#: server_status.php:83
+msgid "The number of doublewrite operations that have been performed."
+msgstr ""
+
+#: server_status.php:84
+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 ""
+
+#: server_status.php:85
+msgid "The number of log write requests."
+msgstr ""
+
+#: server_status.php:86
+msgid "The number of physical writes to the log file."
+msgstr ""
+
+#: server_status.php:87
+msgid "The number of fsync() writes done to the log file."
+msgstr ""
+
+#: server_status.php:88
+msgid "The number of pending log file fsyncs."
+msgstr ""
+
+#: server_status.php:89
+msgid "Pending log file writes."
+msgstr ""
+
+#: server_status.php:90
+msgid "The number of bytes written to the log file."
+msgstr ""
+
+#: server_status.php:91
+msgid "The number of pages created."
+msgstr ""
+
+#: server_status.php:92
+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 ""
+
+#: server_status.php:93
+msgid "The number of pages read."
+msgstr ""
+
+#: server_status.php:94
+msgid "The number of pages written."
+msgstr ""
+
+#: server_status.php:95
+msgid "The number of row locks currently being waited for."
+msgstr ""
+
+#: server_status.php:96
+msgid "The average time to acquire a row lock, in milliseconds."
+msgstr ""
+
+#: server_status.php:97
+msgid "The total time spent in acquiring row locks, in milliseconds."
+msgstr ""
+
+#: server_status.php:98
+msgid "The maximum time to acquire a row lock, in milliseconds."
+msgstr ""
+
+#: server_status.php:99
+msgid "The number of times a row lock had to be waited for."
+msgstr ""
+
+#: server_status.php:100
+msgid "The number of rows deleted from InnoDB tables."
+msgstr ""
+
+#: server_status.php:101
+msgid "The number of rows inserted in InnoDB tables."
+msgstr ""
+
+#: server_status.php:102
+msgid "The number of rows read from InnoDB tables."
+msgstr ""
+
+#: server_status.php:103
+msgid "The number of rows updated in InnoDB tables."
+msgstr ""
+
+#: server_status.php:104
+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 ""
+
+#: server_status.php:105
+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 ""
+
+#: server_status.php:106
+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 ""
+
+#: server_status.php:107
+msgid "The number of requests to read a key block from the cache."
+msgstr ""
+
+#: server_status.php:108
+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 ""
+
+#: server_status.php:109
+msgid "The number of requests to write a key block to the cache."
+msgstr ""
+
+#: server_status.php:110
+msgid "The number of physical writes of a key block to disk."
+msgstr ""
+
+#: server_status.php:111
+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 ""
+
+#: server_status.php:112
+msgid "The number of rows waiting to be written in INSERT DELAYED queues."
+msgstr ""
+
+#: server_status.php:113
+msgid ""
+"The number of tables that have been opened. If opened tables is big, your "
+"table cache value is probably too small."
+msgstr ""
+
+#: server_status.php:114
+msgid "The number of files that are open."
+msgstr ""
+
+#: server_status.php:115
+msgid "The number of streams that are open (used mainly for logging)."
+msgstr ""
+
+#: server_status.php:116
+msgid "The number of tables that are open."
+msgstr ""
+
+#: server_status.php:117
+msgid "The number of free memory blocks in query cache."
+msgstr ""
+
+#: server_status.php:118
+msgid "The amount of free memory for query cache."
+msgstr ""
+
+#: server_status.php:119
+msgid "The number of cache hits."
+msgstr ""
+
+#: server_status.php:120
+msgid "The number of queries added to the cache."
+msgstr ""
+
+#: server_status.php:121
+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 "
+"cache size. The query cache uses a least recently used (LRU) strategy to "
+"decide which queries to remove from the cache."
+msgstr ""
+
+#: server_status.php:122
+msgid ""
+"The number of non-cached queries (not cachable, or not cached due to the "
+"query_cache_type setting)."
+msgstr ""
+
+#: server_status.php:123
+msgid "The number of queries registered in the cache."
+msgstr ""
+
+#: server_status.php:124
+msgid "The total number of blocks in the query cache."
+msgstr ""
+
+#: server_status.php:125
+msgctxt "$strShowStatusReset"
+msgid "Reset"
+msgstr ""
+
+#: server_status.php:126
+msgid "The status of failsafe replication (not yet implemented)."
+msgstr ""
+
+#: server_status.php:127
+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 ""
+
+#: server_status.php:128
+msgid "The number of joins that used a range search on a reference table."
+msgstr ""
+
+#: server_status.php:129
+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 ""
+
+#: server_status.php:130
+msgid ""
+"The number of joins that used ranges on the first table. (It's normally not "
+"critical even if this is big.)"
+msgstr ""
+
+#: server_status.php:131
+msgid "The number of joins that did a full scan of the first table."
+msgstr ""
+
+#: server_status.php:132
+msgid "The number of temporary tables currently open by the slave SQL thread."
+msgstr ""
+
+#: server_status.php:133
+msgid ""
+"Total (since startup) number of times the replication slave SQL thread has "
+"retried transactions."
+msgstr ""
+
+#: server_status.php:134
+msgid "This is ON if this server is a slave that is connected to a master."
+msgstr ""
+
+#: server_status.php:135
+msgid ""
+"The number of threads that have taken more than slow_launch_time seconds to "
+"create."
+msgstr ""
+
+#: server_status.php:136
+msgid ""
+"The number of queries that have taken more than long_query_time seconds."
+msgstr ""
+
+#: server_status.php:137
+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 ""
+
+#: server_status.php:138
+msgid "The number of sorts that were done with ranges."
+msgstr ""
+
+#: server_status.php:139
+msgid "The number of sorted rows."
+msgstr ""
+
+#: server_status.php:140
+msgid "The number of sorts that were done by scanning the table."
+msgstr ""
+
+#: server_status.php:141
+msgid "The number of times that a table lock was acquired immediately."
+msgstr ""
+
+#: server_status.php:142
+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 "
+"should first optimize your queries, and then either split your table or "
+"tables or use replication."
+msgstr ""
+
+#: server_status.php:143
+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 ""
+
+#: server_status.php:144
+msgid "The number of currently open connections."
+msgstr ""
+
+#: server_status.php:145
+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 "
+"doesn't give a notable performance improvement if you have a good thread "
+"implementation.)"
+msgstr ""
+
+#: server_status.php:146
+msgid "The number of threads that are not sleeping."
+msgstr ""
+
+#: server_status.php:157
msgid "Runtime Information"
msgstr ""
-#: server_status.php:250
+#: server_status.php:361
msgid "Handler"
msgstr ""
-#: server_status.php:251
+#: server_status.php:362
msgid "Query cache"
msgstr ""
-#: server_status.php:252
+#: server_status.php:363
msgid "Threads"
msgstr ""
-#: server_status.php:254
+#: server_status.php:365
msgid "Temporary data"
msgstr ""
-#: server_status.php:255
+#: server_status.php:366
msgid "Delayed inserts"
msgstr ""
-#: server_status.php:256
+#: server_status.php:367
msgid "Key cache"
msgstr ""
-#: server_status.php:257
+#: server_status.php:368
msgid "Joins"
msgstr ""
-#: server_status.php:259
+#: server_status.php:370
msgid "Sorting"
msgstr ""
-#: server_status.php:261
+#: server_status.php:372
msgid "Transaction coordinator"
msgstr ""
-#: server_status.php:271
+#: server_status.php:382
msgid "Flush (close) all tables"
msgstr ""
-#: server_status.php:273
+#: server_status.php:384
msgid "Show open tables"
msgstr ""
-#: server_status.php:278
+#: server_status.php:389
msgid "Show slave hosts"
msgstr ""
-#: server_status.php:284
+#: server_status.php:395
msgid "Show slave status"
msgstr ""
-#: server_status.php:289
+#: server_status.php:400
msgid "Flush query cache"
msgstr ""
-#: server_status.php:294
+#: server_status.php:405
msgid "Show processes"
msgstr "प्रोसेस दिखाओ"
-#: server_status.php:344
+#: server_status.php:455
msgctxt "for Show status"
msgid "Reset"
msgstr ""
-#: server_status.php:350
+#: server_status.php:461
#, php-format
msgid "This MySQL server has been running for %s. It started up on %s."
msgstr ""
-#: server_status.php:360
+#: server_status.php:471
msgid ""
"This MySQL server works as master and slave in replication"
"b> process."
msgstr ""
-#: server_status.php:362
+#: server_status.php:473
msgid "This MySQL server works as master in replication process."
msgstr ""
-#: server_status.php:364
+#: server_status.php:475
msgid "This MySQL server works as slave in replication process."
msgstr ""
-#: server_status.php:366
+#: server_status.php:477
msgid ""
"For further information about replication status on the server, please visit "
"the replication section."
msgstr ""
-#: server_status.php:383
+#: server_status.php:494
msgid ""
"Server traffic: These tables show the network traffic statistics of "
"this MySQL server since its startup."
@@ -5515,46 +5525,46 @@ msgstr ""
"Server traffic: These tables show the network traffic statistics of "
"this MySQL server since its startup."
-#: server_status.php:388
+#: server_status.php:499
msgid "Traffic"
msgstr ""
-#: server_status.php:388
+#: server_status.php:499
msgid ""
"On a busy server, the byte counters may overrun, so those statistics as "
"reported by the MySQL server may be incorrect."
msgstr ""
-#: server_status.php:389 server_status.php:434 server_status.php:497
-#: server_status.php:555
+#: server_status.php:500 server_status.php:545 server_status.php:608
+#: server_status.php:666
msgid "per hour"
msgstr ""
-#: server_status.php:394
+#: server_status.php:505
msgid "Received"
msgstr ""
-#: server_status.php:404
+#: server_status.php:515
msgid "Sent"
msgstr ""
-#: server_status.php:433
+#: server_status.php:544
msgid "Connections"
msgstr ""
-#: server_status.php:440
+#: server_status.php:551
msgid "max. concurrent connections"
msgstr ""
-#: server_status.php:447
+#: server_status.php:558
msgid "Failed attempts"
msgstr ""
-#: server_status.php:461
+#: server_status.php:572
msgid "Aborted"
msgstr "रद्द"
-#: server_status.php:490
+#: server_status.php:601
#, php-format
msgid ""
"Query statistics: Since its startup, %s queries have been sent to the "
@@ -5563,19 +5573,19 @@ msgstr ""
"Query statistics: Since its startup, %s queries have been sent to the "
"server."
-#: server_status.php:498
+#: server_status.php:609
msgid "per minute"
msgstr ""
-#: server_status.php:499
+#: server_status.php:610
msgid "per second"
msgstr ""
-#: server_status.php:554
+#: server_status.php:665
msgid "Query type"
msgstr ""
-#: server_status.php:721
+#: server_status.php:832
msgid "Replication status"
msgstr ""
diff --git a/po/hr.po b/po/hr.po
index d30a9f781..ea739ddbf 100755
--- a/po/hr.po
+++ b/po/hr.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-06-04 16:07-0400\n"
+"POT-Creation-Date: 2010-06-08 12:32-0400\n"
"PO-Revision-Date: 2010-03-12 09:13+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: croatian
\n"
@@ -14,11 +14,11 @@ msgstr ""
"X-Generator: Translate Toolkit 1.5.3\n"
#: browse_foreigners.php:38 browse_foreigners.php:59
-#: libraries/display_tbl.lib.php:417 server_privileges.php:1475
+#: libraries/display_tbl.lib.php:417 server_privileges.php:1514
msgid "Show all"
msgstr "Prikaži sve"
-#: browse_foreigners.php:82 libraries/common.lib.php:2304
+#: browse_foreigners.php:82 libraries/common.lib.php:2313
#: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:394
#: libraries/export/pdf.php:147 pdf_schema.php:283 pdf_schema.php:1123
#: pdf_schema.php:1139
@@ -37,8 +37,8 @@ msgstr ""
#: browse_foreigners.php:150 db_structure.php:79 db_structure.php:80
#: db_structure.php:91 db_structure.php:93 db_structure.php:104
-#: db_structure.php:106 libraries/common.lib.php:2822
-#: libraries/common.lib.php:2829 libraries/db_links.inc.php:75
+#: db_structure.php:106 libraries/common.lib.php:2831
+#: libraries/common.lib.php:2838 libraries/db_links.inc.php:75
#: libraries/tbl_links.inc.php:63
msgid "Search"
msgstr "Traži"
@@ -48,7 +48,7 @@ msgstr "Traži"
#: db_structure.php:567 js/messages.php:48 libraries/Config.class.php:1046
#: libraries/Theme_Manager.class.php:311
#: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719
-#: libraries/common.lib.php:1333 libraries/common.lib.php:2279
+#: libraries/common.lib.php:1335 libraries/common.lib.php:2288
#: libraries/display_change_password.lib.php:82
#: libraries/display_create_table.lib.php:63
#: libraries/display_export.lib.php:275 libraries/display_import.lib.php:276
@@ -59,9 +59,9 @@ msgstr "Traži"
#: libraries/sql_query_form.lib.php:552 libraries/tbl_properties.inc.php:782
#: main.php:128 navigation.php:237 pdf_pages.php:292 pdf_pages.php:328
#: pdf_pages.php:530 pmd_pdf.php:116 server_binlog.php:142
-#: server_privileges.php:625 server_privileges.php:1585
-#: server_privileges.php:1932 server_privileges.php:1979
-#: server_privileges.php:2018 server_replication.php:235
+#: server_privileges.php:664 server_privileges.php:1624
+#: server_privileges.php:1971 server_privileges.php:2018
+#: server_privileges.php:2057 server_replication.php:235
#: server_replication.php:318 server_replication.php:341
#: server_synchronize.php:1209 tbl_change.php:330 tbl_change.php:1174
#: tbl_change.php:1211 tbl_indexes.php:254 tbl_operations.php:265
@@ -79,7 +79,7 @@ msgstr "Naziv ključa"
#: browse_foreigners.php:169 browse_foreigners.php:171
#: server_collations.php:55 server_collations.php:67 server_engines.php:59
-#: server_status.php:628
+#: server_status.php:739
msgid "Description"
msgstr "Opis"
@@ -120,7 +120,7 @@ msgstr "Nazivi stupaca"
#: libraries/db_structure.lib.php:60 libraries/export/htmlword.php:245
#: libraries/export/latex.php:360 libraries/export/odt.php:297
#: libraries/export/texytext.php:234 libraries/tbl_properties.inc.php:100
-#: pdf_schema.php:1263 pdf_schema.php:1284 server_privileges.php:2031
+#: pdf_schema.php:1263 pdf_schema.php:1284 server_privileges.php:2070
#: tbl_change.php:287 tbl_change.php:314 tbl_printview.php:143
#: tbl_printview.php:313 tbl_select.php:136 tbl_structure.php:178
#: tbl_structure.php:659 tbl_tracking.php:274 tbl_tracking.php:321
@@ -164,9 +164,9 @@ msgstr "Komentari"
#: libraries/Index.class.php:386 libraries/export/htmlword.php:322
#: libraries/export/latex.php:430 libraries/export/odt.php:368
#: libraries/export/texytext.php:311 libraries/mult_submits.inc.php:263
-#: pdf_schema.php:1344 server_privileges.php:1529 server_privileges.php:1540
-#: server_privileges.php:1850 server_privileges.php:1855
-#: server_privileges.php:2148 sql.php:132 sql.php:194 tbl_printview.php:229
+#: pdf_schema.php:1344 server_privileges.php:1568 server_privileges.php:1579
+#: server_privileges.php:1889 server_privileges.php:1894
+#: server_privileges.php:2187 sql.php:132 sql.php:194 tbl_printview.php:229
#: tbl_structure.php:350 tbl_tracking.php:337 tbl_tracking.php:342
msgid "No"
msgstr "Ne"
@@ -180,9 +180,9 @@ msgstr "Ne"
#: libraries/mult_submits.inc.php:101 libraries/mult_submits.inc.php:106
#: libraries/mult_submits.inc.php:111 libraries/mult_submits.inc.php:262
#: libraries/mult_submits.inc.php:273 pdf_schema.php:1344
-#: server_databases.php:64 server_privileges.php:1526
-#: server_privileges.php:1540 server_privileges.php:1850
-#: server_privileges.php:1853 server_privileges.php:2148 sql.php:193
+#: server_databases.php:64 server_privileges.php:1565
+#: server_privileges.php:1579 server_privileges.php:1889
+#: server_privileges.php:1892 server_privileges.php:2187 sql.php:193
#: tbl_printview.php:229 tbl_structure.php:40 tbl_structure.php:350
#: tbl_tracking.php:335 tbl_tracking.php:340
msgid "Yes"
@@ -279,7 +279,7 @@ msgstr "Prebaci se na kopiranu bazu podataka"
msgid "BLOB Repository"
msgstr ""
-#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1350
+#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1352
#: libraries/server_links.inc.php:49 server_processlist.php:59
#: tbl_tracking.php:596 test/theme.php:101
msgid "Status"
@@ -344,8 +344,8 @@ msgstr "Uredi PDF stranice"
#: db_printview.php:104 db_tracking.php:72 db_tracking.php:157
#: libraries/db_structure.lib.php:46 libraries/export/xml.php:328
-#: libraries/header.inc.php:126 pdf_pages.php:424 server_privileges.php:1626
-#: server_privileges.php:1682 server_privileges.php:1946
+#: libraries/header.inc.php:126 pdf_pages.php:424 server_privileges.php:1665
+#: server_privileges.php:1721 server_privileges.php:1985
#: server_synchronize.php:423 server_synchronize.php:866 tbl_tracking.php:592
#: test/theme.php:75
msgid "Table"
@@ -446,7 +446,7 @@ msgstr "Del"
#: db_qbe.php:370 db_qbe.php:451 db_qbe.php:522 db_qbe.php:553
#: libraries/display_import.lib.php:166 libraries/tbl_properties.inc.php:779
-#: server_privileges.php:258 tbl_change.php:1031 tbl_indexes.php:250
+#: server_privileges.php:297 tbl_change.php:1031 tbl_indexes.php:250
#: tbl_select.php:288
msgid "Or"
msgstr "Ili"
@@ -480,7 +480,7 @@ msgstr "Upotrijebi tablice"
msgid "SQL query on database %s:"
msgstr "SQL upit nad bazom podataka %s:"
-#: db_qbe.php:934 libraries/common.lib.php:1223
+#: db_qbe.php:934 libraries/common.lib.php:1225
msgid "Submit Query"
msgstr "Podnesi upit"
@@ -519,7 +519,7 @@ msgstr "%s poklapanja unutar tablice %s"
#: db_search.php:267 db_structure.php:77 db_structure.php:78
#: db_structure.php:90 db_structure.php:92 db_structure.php:103
-#: db_structure.php:105 libraries/common.lib.php:2824
+#: db_structure.php:105 libraries/common.lib.php:2833
#: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50
#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:467
msgid "Browse"
@@ -566,26 +566,26 @@ msgstr "Unutar polja:"
#: db_structure.php:81 db_structure.php:82 db_structure.php:94
#: db_structure.php:95 db_structure.php:107 db_structure.php:108
-#: libraries/common.lib.php:2823 libraries/sql_query_form.lib.php:334
+#: libraries/common.lib.php:2832 libraries/sql_query_form.lib.php:334
#: libraries/sql_query_form.lib.php:337 libraries/tbl_links.inc.php:76
msgid "Insert"
msgstr "Umetni"
#: db_structure.php:83 db_structure.php:96 db_structure.php:109
-#: libraries/common.lib.php:2820 libraries/common.lib.php:2827
+#: libraries/common.lib.php:2829 libraries/common.lib.php:2836
#: libraries/db_links.inc.php:63 libraries/export/htmlword.php:23
#: libraries/export/latex.php:33 libraries/export/latex.php:337
#: libraries/export/odt.php:32 libraries/export/sql.php:60
#: libraries/export/texytext.php:23 libraries/import.lib.php:1104
#: libraries/tbl_links.inc.php:56 pmd_general.php:134
-#: server_privileges.php:554 server_replication.php:315 tbl_tracking.php:269
+#: server_privileges.php:593 server_replication.php:315 tbl_tracking.php:269
msgid "Structure"
msgstr "Strukturu"
#: db_structure.php:84 db_structure.php:85 db_structure.php:97
#: db_structure.php:98 db_structure.php:110 db_structure.php:111
#: db_structure.php:545 db_structure.php:546 db_tracking.php:91
-#: libraries/Index.class.php:483 libraries/common.lib.php:1654
+#: libraries/Index.class.php:483 libraries/common.lib.php:1656
#: libraries/db_links.inc.php:100 libraries/mult_submits.inc.php:36
#: libraries/mult_submits.inc.php:73 libraries/tbl_links.inc.php:127
#: server_databases.php:352 tbl_structure.php:27 tbl_structure.php:151
@@ -595,7 +595,7 @@ msgstr "Ispusti"
#: db_structure.php:86 db_structure.php:87 db_structure.php:99
#: db_structure.php:100 db_structure.php:112 db_structure.php:113
-#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1653
+#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1655
#: libraries/mult_submits.inc.php:39 libraries/tbl_links.inc.php:105
msgid "Empty"
msgstr "Isprazni"
@@ -638,7 +638,7 @@ msgstr "Prikaz"
#: db_structure.php:485 libraries/db_structure.lib.php:49
#: libraries/server_links.inc.php:70 server_replication.php:33
-#: server_replication.php:164 server_status.php:258
+#: server_replication.php:164 server_status.php:369
msgid "Replication"
msgstr "Replikacija"
@@ -654,20 +654,20 @@ msgstr "%s je zadani pogon pohranjivanja na ovom MySQL poslužitelju."
#: db_structure.php:524 db_structure.php:541 db_structure.php:542
#: libraries/display_tbl.lib.php:2081 libraries/display_tbl.lib.php:2086
#: libraries/mult_submits.inc.php:16 server_databases.php:346
-#: server_databases.php:351 server_privileges.php:1557 tbl_structure.php:455
+#: server_databases.php:351 server_privileges.php:1596 tbl_structure.php:455
#: tbl_structure.php:464
msgid "With selected:"
msgstr "S odabirom:"
#: db_structure.php:527 libraries/display_tbl.lib.php:2076
-#: server_databases.php:348 server_privileges.php:530
-#: server_privileges.php:1560 tbl_structure.php:458
+#: server_databases.php:348 server_privileges.php:569
+#: server_privileges.php:1599 tbl_structure.php:458
msgid "Check All"
msgstr "Označi sve"
#: db_structure.php:531 libraries/display_tbl.lib.php:2077
#: libraries/replication_gui.lib.php:33 server_databases.php:350
-#: server_privileges.php:533 server_privileges.php:1564 tbl_structure.php:462
+#: server_privileges.php:572 server_privileges.php:1603 tbl_structure.php:462
msgid "Uncheck All"
msgstr "Ukloni sve oznake"
@@ -705,7 +705,7 @@ msgstr "Analiziraj tablicu"
#: libraries/display_export.lib.php:83 libraries/display_tbl.lib.php:2094
#: libraries/display_tbl.lib.php:2225 libraries/mult_submits.inc.php:62
#: libraries/server_links.inc.php:84 libraries/tbl_links.inc.php:82
-#: pmd_pdf.php:84 pmd_pdf.php:109 server_privileges.php:1341
+#: pmd_pdf.php:84 pmd_pdf.php:109 server_privileges.php:1380
#: setup/frames/menu.inc.php:22 tbl_row_action.php:59
msgid "Export"
msgstr "Izvoz"
@@ -724,8 +724,8 @@ msgstr "Provjeri tablicu"
#: libraries/export/sql.php:342 libraries/export/texytext.php:84
#: libraries/export/xml.php:255 libraries/header.inc.php:106
#: libraries/header_printview.inc.php:58 server_databases.php:169
-#: server_privileges.php:1621 server_privileges.php:1682
-#: server_privileges.php:1940 server_processlist.php:56
+#: server_privileges.php:1660 server_privileges.php:1721
+#: server_privileges.php:1979 server_processlist.php:56
#: server_synchronize.php:1179 server_synchronize.php:1183
#: tbl_tracking.php:591 test/theme.php:65
msgid "Database"
@@ -747,8 +747,8 @@ msgstr ""
#: db_tracking.php:77 libraries/Index.class.php:440
#: libraries/db_structure.lib.php:53 server_databases.php:203
-#: server_privileges.php:1503 server_privileges.php:1686
-#: server_privileges.php:2034 tbl_structure.php:187
+#: server_privileges.php:1542 server_privileges.php:1725
+#: server_privileges.php:2073 tbl_structure.php:187
msgid "Action"
msgstr "Aktivnost"
@@ -957,11 +957,11 @@ msgstr "Naziv računala je prazan!"
msgid "The user name is empty!"
msgstr "Korisničko ime je prazno!"
-#: js/messages.php:44 server_privileges.php:1197 user_password.php:70
+#: js/messages.php:44 server_privileges.php:1236 user_password.php:70
msgid "The password is empty!"
msgstr "Lozinka je prazna!"
-#: js/messages.php:45 server_privileges.php:1195 user_password.php:73
+#: js/messages.php:45 server_privileges.php:1234 user_password.php:73
msgid "The passwords aren't the same!"
msgstr "Lozinke se ne podudaraju!"
@@ -1039,8 +1039,8 @@ msgid "Prev"
msgstr "Prethodni"
#. l10n: Display text for next month link in calendar
-#: js/messages.php:77 libraries/common.lib.php:2344
-#: libraries/common.lib.php:2347 libraries/display_tbl.lib.php:338
+#: js/messages.php:77 libraries/common.lib.php:2353
+#: libraries/common.lib.php:2356 libraries/display_tbl.lib.php:338
#: server_binlog.php:205 server_binlog.php:207 tbl_printview.php:424
#: tbl_structure.php:801
msgid "Next"
@@ -1116,27 +1116,27 @@ msgid "December"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:97 libraries/common.lib.php:1555
+#: js/messages.php:97 libraries/common.lib.php:1557
msgid "Jan"
msgstr "Sij"
#. l10n: Short month name
-#: js/messages.php:99 libraries/common.lib.php:1557
+#: js/messages.php:99 libraries/common.lib.php:1559
msgid "Feb"
msgstr "Velj"
#. l10n: Short month name
-#: js/messages.php:101 libraries/common.lib.php:1559
+#: js/messages.php:101 libraries/common.lib.php:1561
msgid "Mar"
msgstr "Ožu"
#. l10n: Short month name
-#: js/messages.php:103 libraries/common.lib.php:1561
+#: js/messages.php:103 libraries/common.lib.php:1563
msgid "Apr"
msgstr "Tra"
#. l10n: Short month name
-#: js/messages.php:105 libraries/common.lib.php:1563
+#: js/messages.php:105 libraries/common.lib.php:1565
#, fuzzy
#| msgid "May"
msgctxt "Short month name"
@@ -1144,37 +1144,37 @@ msgid "May"
msgstr "Svi"
#. l10n: Short month name
-#: js/messages.php:107 libraries/common.lib.php:1565
+#: js/messages.php:107 libraries/common.lib.php:1567
msgid "Jun"
msgstr "Lip"
#. l10n: Short month name
-#: js/messages.php:109 libraries/common.lib.php:1567
+#: js/messages.php:109 libraries/common.lib.php:1569
msgid "Jul"
msgstr "Srp"
#. l10n: Short month name
-#: js/messages.php:111 libraries/common.lib.php:1569
+#: js/messages.php:111 libraries/common.lib.php:1571
msgid "Aug"
msgstr "Kol"
#. l10n: Short month name
-#: js/messages.php:113 libraries/common.lib.php:1571
+#: js/messages.php:113 libraries/common.lib.php:1573
msgid "Sep"
msgstr "Ruj"
#. l10n: Short month name
-#: js/messages.php:115 libraries/common.lib.php:1573
+#: js/messages.php:115 libraries/common.lib.php:1575
msgid "Oct"
msgstr "Lis"
#. l10n: Short month name
-#: js/messages.php:117 libraries/common.lib.php:1575
+#: js/messages.php:117 libraries/common.lib.php:1577
msgid "Nov"
msgstr "Stu"
#. l10n: Short month name
-#: js/messages.php:119 libraries/common.lib.php:1577
+#: js/messages.php:119 libraries/common.lib.php:1579
msgid "Dec"
msgstr "Pro"
@@ -1215,37 +1215,37 @@ msgid "Saturday"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:132 libraries/common.lib.php:1580
+#: js/messages.php:132 libraries/common.lib.php:1582
msgid "Sun"
msgstr "Ned"
#. l10n: Short week day name
-#: js/messages.php:134 libraries/common.lib.php:1582
+#: js/messages.php:134 libraries/common.lib.php:1584
msgid "Mon"
msgstr "Pon"
#. l10n: Short week day name
-#: js/messages.php:136 libraries/common.lib.php:1584
+#: js/messages.php:136 libraries/common.lib.php:1586
msgid "Tue"
msgstr "Uto"
#. l10n: Short week day name
-#: js/messages.php:138 libraries/common.lib.php:1586
+#: js/messages.php:138 libraries/common.lib.php:1588
msgid "Wed"
msgstr "Sri"
#. l10n: Short week day name
-#: js/messages.php:140 libraries/common.lib.php:1588
+#: js/messages.php:140 libraries/common.lib.php:1590
msgid "Thu"
msgstr "Čet"
#. l10n: Short week day name
-#: js/messages.php:142 libraries/common.lib.php:1590
+#: js/messages.php:142 libraries/common.lib.php:1592
msgid "Fri"
msgstr "Pet"
#. l10n: Short week day name
-#: js/messages.php:144 libraries/common.lib.php:1592
+#: js/messages.php:144 libraries/common.lib.php:1594
msgid "Sat"
msgstr "Sub"
@@ -1394,7 +1394,7 @@ msgid "Comment"
msgstr "Komentar"
#: libraries/Index.class.php:466 libraries/common.lib.php:616
-#: libraries/common.lib.php:1199 libraries/display_tbl.lib.php:1117
+#: libraries/common.lib.php:1201 libraries/display_tbl.lib.php:1117
#: libraries/import.lib.php:1087 libraries/import.lib.php:1111
#: pdf_pages.php:285 setup/frames/index.inc.php:124
#: setup/lib/messages.inc.php:352 tbl_row_action.php:69
@@ -1419,7 +1419,7 @@ msgstr ""
"Indeksi %1$s i %2$s izgledaju jednakim i jednog od njih moguće je ukloniti."
#: libraries/List_Database.class.php:431 libraries/server_links.inc.php:41
-#: server_databases.php:88 server_privileges.php:1621
+#: server_databases.php:88 server_privileges.php:1660
#: setup/lib/messages.inc.php:110 test/theme.php:93
msgid "Databases"
msgstr "Baze podataka"
@@ -1758,7 +1758,7 @@ msgid "Documentation"
msgstr "Dokumentacija"
#: libraries/common.lib.php:595 libraries/header_printview.inc.php:61
-#: server_processlist.php:60 server_status.php:247
+#: server_processlist.php:60 server_status.php:358
msgid "SQL query"
msgstr "SQL upit"
@@ -1774,130 +1774,130 @@ msgstr "Objasni SQL"
msgid "Skip Explain SQL"
msgstr "Preskoči Objasni SQL"
-#: libraries/common.lib.php:1212
+#: libraries/common.lib.php:1214
msgid "Without PHP Code"
msgstr "Bez PHP koda"
-#: libraries/common.lib.php:1215 setup/lib/messages.inc.php:355
+#: libraries/common.lib.php:1217 setup/lib/messages.inc.php:355
msgid "Create PHP Code"
msgstr "Izradi PHP kod"
-#: libraries/common.lib.php:1233 server_status.php:341
+#: libraries/common.lib.php:1235 server_status.php:452
#: setup/lib/messages.inc.php:354
msgid "Refresh"
msgstr "Osvježi"
-#: libraries/common.lib.php:1242
+#: libraries/common.lib.php:1244
msgid "Skip Validate SQL"
msgstr "Preskoči provjeru valjanosti SQL-a"
-#: libraries/common.lib.php:1245 setup/lib/messages.inc.php:356 sql.php:518
+#: libraries/common.lib.php:1247 setup/lib/messages.inc.php:356 sql.php:518
msgid "Validate SQL"
msgstr "Provjera valjanosti SQL-a"
-#: libraries/common.lib.php:1276
+#: libraries/common.lib.php:1278
msgid "Inline edit of this query"
msgstr ""
-#: libraries/common.lib.php:1278
+#: libraries/common.lib.php:1280
#, fuzzy
#| msgid "Engines"
msgid "Inline"
msgstr "Pogoni"
-#: libraries/common.lib.php:1332 libraries/common.lib.php:1347
+#: libraries/common.lib.php:1334 libraries/common.lib.php:1349
msgid "Profiling"
msgstr "Izrada profila"
-#: libraries/common.lib.php:1351 libraries/tbl_triggers.lib.php:28
+#: libraries/common.lib.php:1353 libraries/tbl_triggers.lib.php:28
#: server_processlist.php:58
msgid "Time"
msgstr "Vrijeme"
#. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "B"
msgstr "B"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "KiB"
msgstr "kB"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "MiB"
msgstr "MB"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "GiB"
msgstr "GB"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "TiB"
msgstr "TB"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "PiB"
msgstr "PB"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "EiB"
msgstr "EB"
#. l10n: Thousands separator
-#: libraries/common.lib.php:1417
+#: libraries/common.lib.php:1419
msgid ","
msgstr "."
#. l10n: Decimal separator
-#: libraries/common.lib.php:1419
+#: libraries/common.lib.php:1421
msgid "."
msgstr ","
#. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string
-#: libraries/common.lib.php:1596
+#: libraries/common.lib.php:1598
#: libraries/transformations/text_plain__dateformat.inc.php:34
msgid "%B %d, %Y at %I:%M %p"
msgstr "%B %d, %Y u %I:%M %p"
-#: libraries/common.lib.php:1898
+#: libraries/common.lib.php:1907
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "%s dana, %s sati, %s minuta i %s sekunda"
-#: libraries/common.lib.php:2313 libraries/common.lib.php:2316
-#: libraries/display_tbl.lib.php:290 server_status.php:608
+#: libraries/common.lib.php:2322 libraries/common.lib.php:2325
+#: libraries/display_tbl.lib.php:290 server_status.php:719
msgid "Begin"
msgstr "Na vrh stranice"
-#: libraries/common.lib.php:2314 libraries/common.lib.php:2317
+#: libraries/common.lib.php:2323 libraries/common.lib.php:2326
#: libraries/display_tbl.lib.php:291 server_binlog.php:168
#: server_binlog.php:170
msgid "Previous"
msgstr "Prethodni"
-#: libraries/common.lib.php:2345 libraries/common.lib.php:2348
+#: libraries/common.lib.php:2354 libraries/common.lib.php:2357
#: libraries/display_tbl.lib.php:353
msgid "End"
msgstr "Završetak"
-#: libraries/common.lib.php:2421
+#: libraries/common.lib.php:2430
#, php-format
msgid "Jump to database "%s"."
msgstr "Skoči do baze podataka \"%s\"."
-#: libraries/common.lib.php:2441
+#: libraries/common.lib.php:2450
#, 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/common.lib.php:2821 libraries/common.lib.php:2828
+#: libraries/common.lib.php:2830 libraries/common.lib.php:2837
#: libraries/db_links.inc.php:68 libraries/export/sql.php:25
#: libraries/import/sql.php:18 libraries/server_links.inc.php:45
#: libraries/tbl_links.inc.php:60 querywindow.php:99 test/theme.php:97
msgid "SQL"
msgstr "SQL"
-#: libraries/common.lib.php:2830 libraries/db_links.inc.php:104
+#: libraries/common.lib.php:2839 libraries/db_links.inc.php:104
#: libraries/tbl_links.inc.php:95 libraries/tbl_links.inc.php:117
#: view_operations.php:89
msgid "Operations"
@@ -1953,8 +1953,8 @@ msgid "Import"
msgstr "Uvoz"
#: libraries/db_links.inc.php:111 libraries/server_links.inc.php:66
-#: server_privileges.php:72 server_privileges.php:1683
-#: server_privileges.php:2032 test/theme.php:117
+#: server_privileges.php:111 server_privileges.php:1722
+#: server_privileges.php:2071 test/theme.php:117
msgid "Privileges"
msgstr "Privilegije"
@@ -2003,22 +2003,22 @@ msgid "Change password"
msgstr "Promijeni lozinku"
#: libraries/display_change_password.lib.php:35
-#: libraries/replication_gui.lib.php:345 server_privileges.php:768
+#: libraries/replication_gui.lib.php:345 server_privileges.php:807
msgid "No Password"
msgstr "Bez lozinke"
#: libraries/display_change_password.lib.php:41
#: libraries/replication_gui.lib.php:59 libraries/replication_gui.lib.php:60
#: libraries/replication_gui.lib.php:335 libraries/replication_gui.lib.php:339
-#: libraries/replication_gui.lib.php:349 server_privileges.php:757
-#: server_privileges.php:761 server_privileges.php:772
-#: server_privileges.php:1499 server_synchronize.php:1175
+#: libraries/replication_gui.lib.php:349 server_privileges.php:796
+#: server_privileges.php:800 server_privileges.php:811
+#: server_privileges.php:1538 server_synchronize.php:1175
msgid "Password"
msgstr "Lozinka"
#: libraries/display_change_password.lib.php:46
#: libraries/replication_gui.lib.php:353 libraries/replication_gui.lib.php:356
-#: server_privileges.php:776 server_privileges.php:779
+#: server_privileges.php:815 server_privileges.php:818
msgid "Re-type"
msgstr "Ponovite"
@@ -2033,12 +2033,12 @@ msgid "MySQL 4.0 compatible"
msgstr "MySQL 4.0 kompatibilno"
#: libraries/display_change_password.lib.php:72
-#: libraries/replication_gui.lib.php:360 server_privileges.php:783
+#: libraries/replication_gui.lib.php:360 server_privileges.php:822
msgid "Generate Password"
msgstr "Generiraj lozinku"
#: libraries/display_change_password.lib.php:75
-#: libraries/replication_gui.lib.php:363 server_privileges.php:786
+#: libraries/replication_gui.lib.php:363 server_privileges.php:825
msgid "Generate"
msgstr "Generiraj"
@@ -2051,8 +2051,8 @@ msgstr "Izradi novu bazu podataka"
msgid "Create"
msgstr "Izradi"
-#: libraries/display_create_database.lib.php:40 server_privileges.php:74
-#: server_privileges.php:1388 server_replication.php:35
+#: libraries/display_create_database.lib.php:40 server_privileges.php:113
+#: server_privileges.php:1427 server_replication.php:35
msgid "No Privileges"
msgstr "Bez privilegija"
@@ -2143,7 +2143,7 @@ msgstr "Kompresija"
#: libraries/display_export.lib.php:240 libraries/display_import.lib.php:197
#: libraries/display_import.lib.php:210 libraries/display_tbl.lib.php:530
#: libraries/export/sql.php:868 libraries/tbl_properties.inc.php:575
-#: server_privileges.php:1836 server_processlist.php:75
+#: server_privileges.php:1875 server_processlist.php:75
msgid "None"
msgstr "bez kompresije"
@@ -2471,7 +2471,7 @@ msgstr ""
msgid "Buffer Pool"
msgstr "Međuspremnik"
-#: libraries/engines/innodb.lib.php:145 server_status.php:306
+#: libraries/engines/innodb.lib.php:145 server_status.php:417
msgid "InnoDB Status"
msgstr "InnoDB stanje"
@@ -2480,8 +2480,8 @@ msgid "Buffer Pool Usage"
msgstr "Iskoristivost međuspremnika"
#: libraries/engines/innodb.lib.php:194 server_databases.php:137
-#: server_databases.php:305 server_status.php:414 server_status.php:475
-#: server_status.php:496 tbl_printview.php:351 tbl_structure.php:696
+#: server_databases.php:305 server_status.php:525 server_status.php:586
+#: server_status.php:607 tbl_printview.php:351 tbl_structure.php:696
msgid "Total"
msgstr "Ukupno"
@@ -2842,7 +2842,7 @@ msgstr "Microsoft Word 2000"
#: libraries/export/latex.php:201 libraries/export/odt.php:48
#: libraries/export/sql.php:106 libraries/export/sql.php:868
#: libraries/export/texytext.php:27 server_databases.php:127
-#: server_privileges.php:537 server_replication.php:316 tbl_printview.php:317
+#: server_privileges.php:576 server_replication.php:316 tbl_printview.php:317
#: tbl_structure.php:665
msgid "Data"
msgstr "Podaci"
@@ -2892,9 +2892,9 @@ msgstr "MIME vrsta"
#: libraries/export/xml.php:102 libraries/header_printview.inc.php:57
#: libraries/replication_gui.lib.php:63 libraries/replication_gui.lib.php:174
#: libraries/replication_gui.lib.php:269 libraries/replication_gui.lib.php:272
-#: libraries/replication_gui.lib.php:329 server_privileges.php:692
-#: server_privileges.php:695 server_privileges.php:751
-#: server_privileges.php:1498 server_privileges.php:2030
+#: libraries/replication_gui.lib.php:329 server_privileges.php:731
+#: server_privileges.php:734 server_privileges.php:790
+#: server_privileges.php:1537 server_privileges.php:2069
#: server_processlist.php:55 server_synchronize.php:1159
msgid "Host"
msgstr "Računalo"
@@ -3254,867 +3254,6 @@ msgstr "bez kompresije"
msgid "Convert to Kana"
msgstr ""
-#. l10n: Text direction, use either ltr or rtl
-#: libraries/messages.inc.php:19
-msgid "ltr"
-msgstr "ltr"
-
-#: libraries/messages.inc.php:21
-msgid "Content of table __TABLE__"
-msgstr "Sadržaj tablice __TABLE__"
-
-#: libraries/messages.inc.php:22
-msgid "(continued)"
-msgstr "(nastavljeno)"
-
-#: libraries/messages.inc.php:23
-msgid "Structure of table __TABLE__"
-msgstr "Struktura tablice __TABLE__"
-
-#: libraries/messages.inc.php:25 server_privileges.php:227
-msgid "Includes all privileges except GRANT."
-msgstr "Obuhvaća sve privilegije osim GRANT (Podari)."
-
-#: libraries/messages.inc.php:26 server_privileges.php:153
-#: server_privileges.php:476
-msgid "Allows altering the structure of existing tables."
-msgstr "Dopušta izmjenu strukture postojećih tablice."
-
-#: libraries/messages.inc.php:27 server_privileges.php:169
-#: server_privileges.php:482
-msgid "Allows altering and dropping stored routines."
-msgstr "Dopušta izmjenu i odbacivanje pohranjenih rutina."
-
-#: libraries/messages.inc.php:28 server_privileges.php:145
-#: server_privileges.php:475
-msgid "Allows creating new databases and tables."
-msgstr "Dopušta izradu novih baze podataka i tablice."
-
-#: libraries/messages.inc.php:29 server_privileges.php:168
-#: server_privileges.php:481
-msgid "Allows creating stored routines."
-msgstr "Dopušta izradu pohranjenih rutina."
-
-#: libraries/messages.inc.php:30 server_privileges.php:475
-msgid "Allows creating new tables."
-msgstr "Dopušta izradu novih tablica."
-
-#: libraries/messages.inc.php:31 server_privileges.php:156
-#: server_privileges.php:479
-msgid "Allows creating temporary tables."
-msgstr "Dopušta izradu privremenih tablica."
-
-#: libraries/messages.inc.php:32 server_privileges.php:170
-#: server_privileges.php:515
-msgid "Allows creating, dropping and renaming user accounts."
-msgstr "Dopušta izradu, odbacivanje i preimenovanje korisničkih naloga."
-
-#: libraries/messages.inc.php:33 server_privileges.php:160
-#: server_privileges.php:164 server_privileges.php:487
-#: server_privileges.php:491
-msgid "Allows creating new views."
-msgstr "Dopušta izradu novih prikaza."
-
-#: libraries/messages.inc.php:34 server_privileges.php:144
-#: server_privileges.php:467
-msgid "Allows deleting data."
-msgstr "Dopušta brisanje podataka."
-
-#: libraries/messages.inc.php:35 server_privileges.php:146
-#: server_privileges.php:478
-msgid "Allows dropping databases and tables."
-msgstr "Dopušta odbacivanje baza podataka i tablica."
-
-#: libraries/messages.inc.php:36 server_privileges.php:478
-msgid "Allows dropping tables."
-msgstr "Dopušta odbacivanje tablica."
-
-#: libraries/messages.inc.php:37 server_privileges.php:161
-#: server_privileges.php:495
-msgid "Allows to set up events for the event scheduler"
-msgstr "Omogućuje postavljanje događaja za planer"
-
-#: libraries/messages.inc.php:38 server_privileges.php:171
-#: server_privileges.php:483
-msgid "Allows executing stored routines."
-msgstr "Dopušta pokretanje pohranjenih rutina."
-
-#: libraries/messages.inc.php:39 server_privileges.php:150
-#: server_privileges.php:470
-msgid "Allows importing data from and exporting data into files."
-msgstr "Dopušta uvoz i izvoz podataka iz datoteka."
-
-#: libraries/messages.inc.php:40 server_privileges.php:501
-msgid ""
-"Allows adding users and privileges without reloading the privilege tables."
-msgstr ""
-"Dopušta dodavanje korisnika i privilegija bez ponovnog učitavanja tablica."
-
-#: libraries/messages.inc.php:41 server_privileges.php:152
-#: server_privileges.php:477
-msgid "Allows creating and dropping indexes."
-msgstr "Dopušta izradu i odbacivanje indeksa."
-
-#: libraries/messages.inc.php:42 server_privileges.php:142
-#: server_privileges.php:403 server_privileges.php:465
-msgid "Allows inserting and replacing data."
-msgstr "Dopušta umetanje i zamjenu podataka."
-
-#: libraries/messages.inc.php:43 server_privileges.php:157
-#: server_privileges.php:510
-msgid "Allows locking tables for the current thread."
-msgstr "Dopušta zaključavanje tablica u trenutnoj grani."
-
-#: libraries/messages.inc.php:44 server_privileges.php:607
-#: server_privileges.php:609
-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/messages.inc.php:45 server_privileges.php:595
-#: server_privileges.php:597
-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/messages.inc.php:46 server_privileges.php:601
-#: server_privileges.php:603
-msgid ""
-"Limits the number of commands that change any table or database the user may "
-"execute per hour."
-msgstr ""
-"Ograničava broj naredbi koje korisnik može pokrenuti, a čija je namjena "
-"mijenjanje bilo koje tablice ili baze podataka, po satu."
-
-#: libraries/messages.inc.php:47 server_privileges.php:613
-#: server_privileges.php:615
-msgid "Limits the number of simultaneous connections the user may have."
-msgstr "Ograničava broj istovremenih povezivanja koje korisnik može imati."
-
-#: libraries/messages.inc.php:48 server_privileges.php:149
-#: server_privileges.php:505
-msgid "Allows viewing processes of all users"
-msgstr "Omogućuje pregledavanje procesa za sve korisnike"
-
-#: libraries/messages.inc.php:49 server_privileges.php:151
-#: server_privileges.php:409 server_privileges.php:511
-msgid "Has no effect in this MySQL version."
-msgstr "Nema učinka u ovoj verziji MySQL-a."
-
-#: libraries/messages.inc.php:50 server_privileges.php:147
-#: server_privileges.php:506
-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/messages.inc.php:51 server_privileges.php:159
-#: server_privileges.php:513
-msgid "Allows the user to ask where the slaves / masters are."
-msgstr ""
-"Dopušta korisnik postavljanje upita o lokaciji potčinjenih i gospodara."
-
-#: libraries/messages.inc.php:52 server_privileges.php:158
-#: server_privileges.php:514
-msgid "Needed for the replication slaves."
-msgstr "Potrebno za replikacijske potčinjene."
-
-#: libraries/messages.inc.php:53 server_privileges.php:141
-#: server_privileges.php:400 server_privileges.php:464
-msgid "Allows reading data."
-msgstr "Dopušta čitanje podataka."
-
-#: libraries/messages.inc.php:54 server_privileges.php:154
-#: server_privileges.php:508
-msgid "Gives access to the complete list of databases."
-msgstr "Daje pristup cjelokupnom popisu baza podataka."
-
-#: libraries/messages.inc.php:55 server_privileges.php:165
-#: server_privileges.php:167 server_privileges.php:480
-msgid "Allows performing SHOW CREATE VIEW queries."
-msgstr "Dopušta izvođenje upita SHOW CREATE VIEW."
-
-#: libraries/messages.inc.php:56 server_privileges.php:148
-#: server_privileges.php:507
-msgid "Allows shutting down the server."
-msgstr "Dopušta gašenje poslužitelja."
-
-#: libraries/messages.inc.php:57 server_privileges.php:155
-#: server_privileges.php:504
-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 ""
-"Dopušta povezivanje čak i kad je dostignut najveći broj veza. Potrebno za "
-"većinu administrativnih operacija poput postavljanja općih varijabli ili "
-"eliminiranje grana drugih korisnika."
-
-#: libraries/messages.inc.php:58 server_privileges.php:162
-#: server_privileges.php:496
-msgid "Allows creating and dropping triggers"
-msgstr "Omogućuje izradu i uklanjanje okidača"
-
-#: libraries/messages.inc.php:59 server_privileges.php:143
-#: server_privileges.php:406 server_privileges.php:466
-msgid "Allows changing data."
-msgstr "Dopušta mijenjanje podataka."
-
-#: libraries/messages.inc.php:60 server_privileges.php:221
-msgid "No privileges."
-msgstr "Bez privilegija."
-
-#: libraries/messages.inc.php:62
-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 ""
-"Broj transakcija koje su upotrebljavale privremeni binarni zapisnik pohrane, "
-"ali su nadmašile vrijednost binlog_cache_size i upotrijebile privremenu "
-"datoteku za pohranjivanje izjava transakcija."
-
-#: libraries/messages.inc.php:63
-msgid "The number of transactions that used the temporary binary log cache."
-msgstr ""
-"Broj transakcija koje su upotrebljavale privremeni binarni zapisnik pohrane."
-
-#: libraries/messages.inc.php:64
-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 "
-"to increase the tmp_table_size value to cause temporary tables to be memory-"
-"based instead of disk-based."
-msgstr ""
-"Broj privremenih tablica koje poslužitelj automatski izrađuje na disku "
-"tijekom izvršavanja izjava. Ako je stavka Created_tmp_disk_tables velika, "
-"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/messages.inc.php:65
-msgid "How many temporary files mysqld has created."
-msgstr "Koliko je privremenih tablica izradio mysqld."
-
-#: libraries/messages.inc.php:66
-msgid ""
-"The number of in-memory temporary tables created automatically by the server "
-"while executing statements."
-msgstr ""
-"Broj privremenih tablica u memoriji koje je poslužitelj automatski izradio "
-"tijekom izvršavanja izjava."
-
-#: libraries/messages.inc.php:67
-msgid ""
-"The number of rows written with INSERT DELAYED for which some error occurred "
-"(probably duplicate key)."
-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/messages.inc.php:68
-msgid ""
-"The number of INSERT DELAYED handler threads in use. Every different table "
-"on which one uses INSERT DELAYED gets its own thread."
-msgstr ""
-"Broj hvatište grana INSERT DELAYED u upotrebi. Svaka druga tablica na koju "
-"se primjeni INSERT DELAYED dobiva vlastitu granu."
-
-#: libraries/messages.inc.php:69
-msgid "The number of INSERT DELAYED rows written."
-msgstr "Broj redaka zapisanih pomoću INSERT DELAYED."
-
-#: libraries/messages.inc.php:70
-msgid "The number of executed FLUSH statements."
-msgstr "Broj izvršenih izjava FLUSH."
-
-#: libraries/messages.inc.php:71
-msgid "The number of internal COMMIT statements."
-msgstr "Broj internih izjava COMMIT."
-
-#: libraries/messages.inc.php:72
-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/messages.inc.php:73
-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 ""
-"MySQL poslužitelj može upitati pogon pohranjivanja NDB skupine, zna li za "
-"tablicu s traženim nazivom. Ovaj se postupak naziva otkrivanje. "
-"Handler_discover naznačuje koliko je puta tablica bila otkrivenom."
-
-#: libraries/messages.inc.php:74
-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 ""
-"Brojka koja prokazuje koliko puta je prvi unos bio čitan iz indeksa. Velik "
-"broj je pokazatelj da poslužitelj izvodi mnogo potpunih pretraživanja "
-"indeksa, npr. SELECT col1 FROM foo, pri čemu je col1 indeksiran."
-
-#: libraries/messages.inc.php:75
-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 ""
-"Broj zahtjeva za čitanje retka zasnovan na ključu. Velik broj je pokazatelj "
-"da su vaši upiti i tablice pravilno indeksirani."
-
-#: libraries/messages.inc.php:76
-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 ""
-"Broj zahtjeva za čitanje sljedećeg retka u redoslijedu ključa. Ovaj se broj "
-"povećava ako izvodite upite stupca indeksa s ograničenjem opsega ili ako "
-"izvodite pretraživanje indeksa."
-
-#: libraries/messages.inc.php:77
-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 ""
-"Broj zahtjeva za čitanje prethodnog retka u redoslijedu ključa. Ovaj način "
-"čitanja uglavnom se upotrebljava za optimiziranje opcije ORDER BY ... DESC."
-
-#: libraries/messages.inc.php:78
-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 "
-"probably have a lot of queries that require MySQL to scan whole tables or "
-"you have joins that don't use keys properly."
-msgstr ""
-"Broj zahtjeva za čitanje retka zasnovanog na fiksnom položaju. Ovaj iznos je "
-"velik ako izvodite mnogo upita koji zahtjevaju preslagivanje rezultata. "
-"Vjerojatno imate mnogo upita koji zahtijevaju da MySQL pretražuje cjelokupne "
-"tablice ili imate spojeve koji ne upotrebljavaju ključ na pravilan način."
-
-#: libraries/messages.inc.php:79
-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 "
-"tables are not properly indexed or that your queries are not written to take "
-"advantage of the indexes you have."
-msgstr ""
-"Broj zahtjeva za čitanje sljedećeg retka u datoteci s podacima. Ovaj broj je "
-"velik ako izvodite mnogo pretraživanja tablice. Općenito, ovaj iznos "
-"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/messages.inc.php:80
-msgid "The number of internal ROLLBACK statements."
-msgstr "Broj internih izjava ROLLBACK."
-
-#: libraries/messages.inc.php:81
-msgid "The number of requests to update a row in a table."
-msgstr "Broj zahtjeva za ažuriranje retka u tablici."
-
-#: libraries/messages.inc.php:82
-msgid "The number of requests to insert a row in a table."
-msgstr "Broj zahtjeva za umetanje retka u tablici."
-
-#: libraries/messages.inc.php:83
-msgid "The number of pages containing data (dirty or clean)."
-msgstr "Broj stranice koje sadrže podatke (dirty ili clean)."
-
-#: libraries/messages.inc.php:84
-msgid "The number of pages currently dirty."
-msgstr "Broj stranica koje su trenutno 'dirty'."
-
-#: libraries/messages.inc.php:85
-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/messages.inc.php:86
-msgid "The number of free pages."
-msgstr "Broj slobodnih stranica."
-
-#: libraries/messages.inc.php:87
-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 ""
-"Broj vezanih stranica u InnoDB međuspremniku. Ove se stranice trenutno "
-"čitaju ili zapisuju, ili ih nije moguće isprazniti ili ukloniti iz nekog "
-"drugog razloga."
-
-#: libraries/messages.inc.php:88
-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 "
-"be calculated as Innodb_buffer_pool_pages_total - "
-"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data."
-msgstr ""
-"Broj stranica koje su zauzete jer su dodijeljene za administrativna "
-"prepunjenja, poput zaključavanja redaka ili adaptivni indeks presjeka. Ovu "
-"je vrijednost moguće izračunati i kao Innodb_buffer_pool_pages_total - "
-"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data."
-
-#: libraries/messages.inc.php:89
-msgid "Total size of buffer pool, in pages."
-msgstr "Ukupna veličina međuspremnika, u stranicama."
-
-#: libraries/messages.inc.php:90
-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 ""
-"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/messages.inc.php:91
-msgid ""
-"The number of sequential read-aheads InnoDB initiated. This happens when "
-"InnoDB does a sequential full table scan."
-msgstr ""
-"Broj slijednih pripremnih čitanja koje je inicijalizirao InnoDB. Ovo se "
-"događa kad InnoDB izvodi potpuno pretraživanje tablice."
-
-#: libraries/messages.inc.php:92
-msgid "The number of logical read requests InnoDB has done."
-msgstr "Broj logičkih zahtjeva za čitanjem koje je obavio InnoDB."
-
-#: libraries/messages.inc.php:93
-msgid ""
-"The number of logical reads that InnoDB could not satisfy from buffer pool "
-"and had to do a single-page read."
-msgstr ""
-"Broj logičkih čitanja koje InnoDB nije mogao zadovoljiti iz međuspremnik i "
-"morao je izvesti čitanje po jedne stranice."
-
-#: libraries/messages.inc.php:94
-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 "
-"available, it's necessary to wait for pages to be flushed first. This "
-"counter counts instances of these waits. If the buffer pool size was set "
-"properly, this value should be small."
-msgstr ""
-"Uobičajeno, zapisivanja u InnoDB međuspremnik izvode se u pozadini. Ipak, "
-"ako je potrebno iščitati ili izraditi stranicu, a nema raspoložive prazne "
-"stranice, bit će potrebno pričekati pražnjenje stranice. Ovaj brojač "
-"prikazuje stanje ovog čekanja. Ako je veličina međuspremnika pravilno "
-"postavljena, ova bi vrijednost trebala biti malenom."
-
-#: libraries/messages.inc.php:95
-msgid "The number writes done to the InnoDB buffer pool."
-msgstr "Broj izvršenih zapisivanja u InnoDB međuspremnik."
-
-#: libraries/messages.inc.php:96
-msgid "The number of fsync() operations so far."
-msgstr "Broj dosadašnjih fsync() operacija."
-
-#: libraries/messages.inc.php:97
-msgid "The current number of pending fsync() operations."
-msgstr "Trenutan broj fsync() operacija u čekanju."
-
-#: libraries/messages.inc.php:98
-msgid "The current number of pending reads."
-msgstr "Trenutan broj čitanja u čekanju."
-
-#: libraries/messages.inc.php:99
-msgid "The current number of pending writes."
-msgstr "Trenutan broj zapisivanja u čekanju."
-
-#: libraries/messages.inc.php:100
-msgid "The amount of data read so far, in bytes."
-msgstr "Količina podataka pročitanih do ovog trenutka, u bajtovima."
-
-#: libraries/messages.inc.php:101
-msgid "The total number of data reads."
-msgstr "Ukupan broj iščitavanja podataka."
-
-#: libraries/messages.inc.php:102
-msgid "The total number of data writes."
-msgstr "Ukupan broj zapisivanja podataka."
-
-#: libraries/messages.inc.php:103
-msgid "The amount of data written so far, in bytes."
-msgstr "Količina podataka zapisanih do ovog trenutka, u bajtovima."
-
-#: libraries/messages.inc.php:104
-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/messages.inc.php:105
-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/messages.inc.php:106
-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 ""
-"Broj čekanja koja su se dogodila zbog nedovoljno velikog zapisnika "
-"međuspremnika, te je bilo potrebno čekati njegovo pražnjenje prije nastavka "
-"rada."
-
-#: libraries/messages.inc.php:107
-msgid "The number of log write requests."
-msgstr "Broj zahtjeva za zapisivanje u zapisnik."
-
-#: libraries/messages.inc.php:108
-msgid "The number of physical writes to the log file."
-msgstr "Broj fizičkih zapisivanja u zapisnik."
-
-#: libraries/messages.inc.php:109
-msgid "The number of fsync() writes done to the log file."
-msgstr "Broj fsyncs zapisivanja izvršenih u datoteci zapisnika."
-
-#: libraries/messages.inc.php:110
-msgid "The number of pending log file fsyncs."
-msgstr "Broj naredbi fsyncs za zapisnik, a koje su na čekanju."
-
-#: libraries/messages.inc.php:111
-msgid "Pending log file writes."
-msgstr "Zapisivanja u zapisnik na čekanju."
-
-#: libraries/messages.inc.php:112
-msgid "The number of bytes written to the log file."
-msgstr "Broj bajtova zapisanih u zapisnik."
-
-#: libraries/messages.inc.php:113
-msgid "The number of pages created."
-msgstr "Broj izrađenih stranica."
-
-#: libraries/messages.inc.php:114
-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 ""
-"Izrađena veličina InnoDB stranice (zadana vrijednost je 16kB). Mnoge se "
-"vrijednosti prebrojavaju u stranicama. Veličina stranice dopušta njihovo "
-"jednostavno pretvaranje u bajtove."
-
-#: libraries/messages.inc.php:115
-msgid "The number of pages read."
-msgstr "Broj iščitanih stranica."
-
-#: libraries/messages.inc.php:116
-msgid "The number of pages written."
-msgstr "Broj zapisanih stranica."
-
-#: libraries/messages.inc.php:117
-msgid "The number of row locks currently being waited for."
-msgstr "Broj zaključavanja redaka na koje se trenutno čeka."
-
-#: libraries/messages.inc.php:118
-msgid "The average time to acquire a row lock, in milliseconds."
-msgstr "Prosječno vrijeme postizanja zaključanosti retka, u milisekundama."
-
-#: libraries/messages.inc.php:119
-msgid "The total time spent in acquiring row locks, in milliseconds."
-msgstr ""
-"Ukupno vrijeme utrošeno na postizanja zaključanosti retka, u milisekundama."
-
-#: libraries/messages.inc.php:120
-msgid "The maximum time to acquire a row lock, in milliseconds."
-msgstr "Najdulje vrijeme postizanja zaključanosti retka, u milisekundama."
-
-#: libraries/messages.inc.php:121
-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/messages.inc.php:122
-msgid "The number of rows deleted from InnoDB tables."
-msgstr "Broj redaka izbrisanih iz InnoDB tablica."
-
-#: libraries/messages.inc.php:123
-msgid "The number of rows inserted in InnoDB tables."
-msgstr "Broj redaka umetnutih u InnoDB tablice."
-
-#: libraries/messages.inc.php:124
-msgid "The number of rows read from InnoDB tables."
-msgstr "Broj redaka iščitanih iz InnoDB tablica."
-
-#: libraries/messages.inc.php:125
-msgid "The number of rows updated in InnoDB tables."
-msgstr "Broj ažuriranih redaka u InnoDB tablicama."
-
-#: libraries/messages.inc.php:126
-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 ""
-"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/messages.inc.php:127
-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 ""
-"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/messages.inc.php:128
-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 ""
-"Broj iskorištenih blokova u pohrani ključeva. Ova je vrijednost oznaka "
-"gornje razine koja označuje najveći broj blokova koji su ikad bili u "
-"istovremenoj upotrebi."
-
-#: libraries/messages.inc.php:129
-msgid "The number of requests to read a key block from the cache."
-msgstr "Broj zahtjeva za čitanje ključnog bloka iz pohrane."
-
-#: libraries/messages.inc.php:130
-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 ""
-"Broj fizičkih čitanja ključnih blokova s diska. Ako je iznos Key_reads "
-"velik, vjerojatno je vaša vrijednost key_buffer_size premala. Stupanj "
-"promašivanja pohrane moguće je izračunati putem naredbi Key_reads/"
-"Key_read_requests."
-
-#: libraries/messages.inc.php:131
-msgid "The number of requests to write a key block to the cache."
-msgstr "Broj zahtjeva za zapisivanje ključnog bloka u pohranu."
-
-#: libraries/messages.inc.php:132
-msgid "The number of physical writes of a key block to disk."
-msgstr "Broj fizičkih zapisivanja ključnih blokova na disk. "
-
-#: libraries/messages.inc.php:133
-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 ""
-"Ukupan trošak posljednjeg složenog upita, izračunat od strane optimizatora "
-"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/messages.inc.php:134
-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/messages.inc.php:135
-msgid ""
-"The number of tables that have been opened. If opened tables is big, your "
-"table cache value is probably too small."
-msgstr ""
-"Broj tablica koje su otvorene. Ako je iznos otvorenih tablica velik, vaša "
-"vrijednost za pohranu tablica vjerojatno je premala."
-
-#: libraries/messages.inc.php:136
-msgid "The number of files that are open."
-msgstr "Broj otvorenih datoteka."
-
-#: libraries/messages.inc.php:137
-msgid "The number of streams that are open (used mainly for logging)."
-msgstr ""
-"Broj otvorenih protoka (uglavnom se upotrebljava za vođenje zapisnika)."
-
-#: libraries/messages.inc.php:138
-msgid "The number of tables that are open."
-msgstr "Broj otvorenih tablica."
-
-#: libraries/messages.inc.php:139
-msgid "The number of free memory blocks in query cache."
-msgstr "Broj slobodnih memorijskih blokova u pohrani upita."
-
-#: libraries/messages.inc.php:140
-msgid "The amount of free memory for query cache."
-msgstr "Količina slobodne memorije za pohranu upita."
-
-#: libraries/messages.inc.php:141
-msgid "The number of cache hits."
-msgstr "Broj pronalaženja u pohrani."
-
-#: libraries/messages.inc.php:142
-msgid "The number of queries added to the cache."
-msgstr "Broj upita pridodanih u pohranu."
-
-#: libraries/messages.inc.php:143
-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 "
-"cache size. The query cache uses a least recently used (LRU) strategy to "
-"decide which queries to remove from the cache."
-msgstr ""
-"Broj upita koji su uklonjeni iz pohrane radi oslobađanja memorije za potrebe "
-"pohranjivanja novih upita. Ovaj vam podatak može pomoći pri podešavanju "
-"veličine pohrane upita. Pohrana upita upotrebljava strategiju posljednjeg "
-"nedavno upotrebljavanog (LRU - least recently used) radi odlučivanja koje će "
-"upite ukloniti iz pohrane."
-
-#: libraries/messages.inc.php:144
-msgid ""
-"The number of non-cached queries (not cachable, or not cached due to the "
-"query_cache_type setting)."
-msgstr ""
-"Broj upita koji nisu pohranjeni (nisu za pohranu ili nisu pohranjeni zbog "
-"postavke query_cache_type)."
-
-#: libraries/messages.inc.php:145
-msgid "The number of queries registered in the cache."
-msgstr "Broj upita registriranih u pohrani."
-
-#: libraries/messages.inc.php:146
-msgid "The total number of blocks in the query cache."
-msgstr "Ukupan broj blokova u pohrani upita."
-
-#: libraries/messages.inc.php:147
-msgctxt "$strShowStatusReset"
-msgid "Reset"
-msgstr "Povrat"
-
-#: libraries/messages.inc.php:148
-msgid "The status of failsafe replication (not yet implemented)."
-msgstr "Stanje replikacije sigurnosti protiv otkaza (još nije implementirano)."
-
-#: libraries/messages.inc.php:149
-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 ""
-"Broj spojeva koji ne upotrebljavaju indekse. Ako ovaj iznos nije 0, bit će "
-"potrebno da pažljivo provjerite indekse vaših tablica."
-
-#: libraries/messages.inc.php:150
-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/messages.inc.php:151
-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 ""
-"Broj spojeva bez ključeva koji provjeravaju upotrebu ključa nakon svakog "
-"retka. (Ako ovaj iznos nije 0, bit će potrebno da pažljivo provjerite "
-"indekse vaših tablica."
-
-#: libraries/messages.inc.php:152
-msgid ""
-"The number of joins that used ranges on the first table. (It's normally not "
-"critical even if this is big.)"
-msgstr ""
-"Broj spojeva koji su upotrijebili opsege nad prvom tablicom. (Općenito nije "
-"kritično ako je ovaj iznos velik.)"
-
-#: libraries/messages.inc.php:153
-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/messages.inc.php:154
-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/messages.inc.php:155
-msgid ""
-"Total (since startup) number of times the replication slave SQL thread has "
-"retried transactions."
-msgstr ""
-"Ukupna količina (od pokretanja) ponovnih pokušaja transakcija od strane "
-"replikacijske potčinjene SQL grane."
-
-#: libraries/messages.inc.php:156
-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/messages.inc.php:157
-msgid ""
-"The number of threads that have taken more than slow_launch_time seconds to "
-"create."
-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/messages.inc.php:158
-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/messages.inc.php:159
-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 ""
-"Broj prolaza udruživanja koje je algoritam za preslagivanje morao izvesti. "
-"Ako je ovaj iznos velik, razmotrite mogućnost povećanja vrijednosti "
-"sistemske varijable sort_buffer_size."
-
-#: libraries/messages.inc.php:160
-msgid "The number of sorts that were done with ranges."
-msgstr "Broj preslagivanja učinjenih pomoću opsega."
-
-#: libraries/messages.inc.php:161
-msgid "The number of sorted rows."
-msgstr "Broj presloženih redaka."
-
-#: libraries/messages.inc.php:162
-msgid "The number of sorts that were done by scanning the table."
-msgstr "Broj preslagivanja učinjenih pomoću pretraživanja tablice."
-
-#: libraries/messages.inc.php:163
-msgid "The number of times that a table lock was acquired immediately."
-msgstr "Količina trenutno postignutih zaključavanja tablica."
-
-#: libraries/messages.inc.php:164
-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 "
-"should first optimize your queries, and then either split your table or "
-"tables or use replication."
-msgstr ""
-"Količina zaključavanja tablica koji nisu mogli biti trenutno postignuti i "
-"bilo je potrebno određeno čekanje. Ako je ovaj iznos visok i ako imate "
-"problema s performansama, bit će potrebno da prvo optimizirate svoje upite i "
-"potom ili podijelite svoje tablice ili upotrijebite replikaciju."
-
-#: libraries/messages.inc.php:165
-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 ""
-"Broj grana u pohrani grana. Stupanj pogodaka u pohrani može se izračunati "
-"kao Threads_created/Connections. Ako je ovaj iznos prikazan crvenom bojom, "
-"bit će potrebno da povećate svoju vrijednost thread_cache_size."
-
-#: libraries/messages.inc.php:166
-msgid "The number of currently open connections."
-msgstr "Broj trenutno otvorenih veza."
-
-#: libraries/messages.inc.php:167
-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 "
-"doesn't give a notable performance improvement if you have a good thread "
-"implementation.)"
-msgstr ""
-"Broj grana izrađenih za rukovanje vezama. Ako je iznos Threads_created "
-"velik, moglo bi biti potrebno da povećate vrijednost thread_cache_size. "
-"(Uobičajeno, ako imate dobru implementaciju grana, ova opcija neće pružiti "
-"primjetna poboljšanja performansi.)"
-
-#: libraries/messages.inc.php:168
-msgid "The number of threads that are not sleeping."
-msgstr "Broj grana koje nisu uspavane."
-
#: libraries/mult_submits.inc.php:76 libraries/tbl_properties.inc.php:513
#: tbl_structure.php:29 tbl_structure.php:153 tbl_structure.php:157
#: tbl_structure.php:473
@@ -4432,8 +3571,8 @@ msgstr ""
#: libraries/replication_gui.lib.php:55 libraries/replication_gui.lib.php:56
#: libraries/replication_gui.lib.php:249 libraries/replication_gui.lib.php:252
-#: libraries/replication_gui.lib.php:259 server_privileges.php:672
-#: server_privileges.php:675 server_privileges.php:682
+#: libraries/replication_gui.lib.php:259 server_privileges.php:711
+#: server_privileges.php:714 server_privileges.php:721
#: server_synchronize.php:1171
msgid "User name"
msgstr "Korisničko ime"
@@ -4454,11 +3593,11 @@ msgid "Slave status"
msgstr "Prikaži stanje potčinjenog"
#: libraries/replication_gui.lib.php:114 libraries/sql_query_form.lib.php:445
-#: server_status.php:626 server_variables.php:52
+#: server_status.php:737 server_variables.php:52
msgid "Variable"
msgstr "Varijabla"
-#: libraries/replication_gui.lib.php:115 server_status.php:627
+#: libraries/replication_gui.lib.php:115 server_status.php:738
#: tbl_change.php:324 tbl_printview.php:370 tbl_select.php:139
#: tbl_structure.php:729
msgid "Value"
@@ -4478,41 +3617,58 @@ msgstr ""
msgid "Add slave replication user"
msgstr ""
-#: libraries/replication_gui.lib.php:254 server_privileges.php:677
+#: libraries/replication_gui.lib.php:254 server_privileges.php:716
msgid "Any user"
msgstr "Bilo koji korisnik"
#: libraries/replication_gui.lib.php:255 libraries/replication_gui.lib.php:323
-#: libraries/replication_gui.lib.php:346 server_privileges.php:678
-#: server_privileges.php:745 server_privileges.php:769
-#: server_privileges.php:1889 server_privileges.php:1919
+#: libraries/replication_gui.lib.php:346 server_privileges.php:717
+#: server_privileges.php:784 server_privileges.php:808
+#: server_privileges.php:1928 server_privileges.php:1958
msgid "Use text field"
msgstr "Upotrijebi tekstualno polje"
-#: libraries/replication_gui.lib.php:302 server_privileges.php:725
+#: libraries/replication_gui.lib.php:302 server_privileges.php:764
msgid "Any host"
msgstr "Bilo koje računalo"
-#: libraries/replication_gui.lib.php:306 server_privileges.php:729
+#: libraries/replication_gui.lib.php:306 server_privileges.php:768
msgid "Local"
msgstr "Lokalno"
-#: libraries/replication_gui.lib.php:312 server_privileges.php:734
+#: libraries/replication_gui.lib.php:312 server_privileges.php:773
msgid "This Host"
msgstr "Ovo računalo"
-#: libraries/replication_gui.lib.php:318 server_privileges.php:740
+#: libraries/replication_gui.lib.php:318 server_privileges.php:779
msgid "Use Host Table"
msgstr "Upotrijebi tablicu poslužitelja"
-#: libraries/replication_gui.lib.php:331 server_privileges.php:753
+#: libraries/replication_gui.lib.php:331 server_privileges.php:792
msgid ""
"When Host table is used, this field is ignored and values stored in Host "
"table are used instead."
msgstr ""
-#: libraries/select_lang.lib.php:480 libraries/select_lang.lib.php:486
-#: libraries/select_lang.lib.php:492
+#. l10n: Text direction, use either ltr or rtl
+#: libraries/select_lang.lib.php:491
+msgid "ltr"
+msgstr "ltr"
+
+#: libraries/select_lang.lib.php:493
+msgid "Content of table __TABLE__"
+msgstr "Sadržaj tablice __TABLE__"
+
+#: libraries/select_lang.lib.php:494
+msgid "(continued)"
+msgstr "(nastavljeno)"
+
+#: libraries/select_lang.lib.php:495
+msgid "Structure of table __TABLE__"
+msgstr "Struktura tablice __TABLE__"
+
+#: libraries/select_lang.lib.php:500 libraries/select_lang.lib.php:506
+#: libraries/select_lang.lib.php:512
#, php-format
msgid "Unknown language: %1$s."
msgstr "Nepoznati jezik: %1$s."
@@ -4523,7 +3679,7 @@ msgid "Servers"
msgstr "Poslužitelji"
#: libraries/server_links.inc.php:53 server_engines.php:112
-#: server_engines.php:116 server_status.php:304 test/theme.php:105
+#: server_engines.php:116 server_status.php:415 test/theme.php:105
msgid "Variables"
msgstr "Varijable"
@@ -4536,7 +3692,7 @@ msgid "Engines"
msgstr "Pogoni"
#: libraries/server_links.inc.php:76 server_binlog.php:110
-#: server_status.php:253 test/theme.php:121
+#: server_status.php:364 test/theme.php:121
msgid "Binary log"
msgstr "Binarni zapisnik"
@@ -5017,8 +4173,8 @@ msgstr "Povrat"
msgid "Protocol version"
msgstr "Verzija protokola"
-#: main.php:189 server_privileges.php:1350 server_privileges.php:1497
-#: server_privileges.php:1611 server_privileges.php:2029
+#: main.php:189 server_privileges.php:1389 server_privileges.php:1536
+#: server_privileges.php:1650 server_privileges.php:2068
#: server_processlist.php:54
msgid "User"
msgstr "Korisnik"
@@ -5407,7 +4563,7 @@ msgstr "Baza podataka %s uspješno je odbačena."
msgid "Databases statistics"
msgstr "Statistike baza podataka"
-#: server_databases.php:117 server_status.php:260
+#: server_databases.php:117 server_status.php:371
#: setup/lib/messages.inc.php:117
msgid "Tables"
msgstr "Tablice"
@@ -5426,6 +4582,16 @@ msgstr ""
msgid "Jump to database"
msgstr "Nema baza podataka"
+#: server_databases.php:267
+msgid "Not replicated"
+msgstr ""
+
+#: server_databases.php:273
+#, fuzzy
+#| msgid "Replication"
+msgid "Replicated"
+msgstr "Replikacija"
+
#: server_databases.php:289
#, php-format
msgid "Check privileges for database "%s"."
@@ -5459,144 +4625,337 @@ msgstr "Pogoni pohrane"
msgid "View dump (schema) of databases"
msgstr "Prikaži ispis (shemu) baza podataka"
-#: server_privileges.php:263 server_privileges.php:264
+#: server_privileges.php:24 server_privileges.php:266
+msgid "Includes all privileges except GRANT."
+msgstr "Obuhvaća sve privilegije osim GRANT (Podari)."
+
+#: server_privileges.php:25 server_privileges.php:192
+#: server_privileges.php:515
+msgid "Allows altering the structure of existing tables."
+msgstr "Dopušta izmjenu strukture postojećih tablice."
+
+#: server_privileges.php:26 server_privileges.php:208
+#: server_privileges.php:521
+msgid "Allows altering and dropping stored routines."
+msgstr "Dopušta izmjenu i odbacivanje pohranjenih rutina."
+
+#: server_privileges.php:27 server_privileges.php:184
+#: server_privileges.php:514
+msgid "Allows creating new databases and tables."
+msgstr "Dopušta izradu novih baze podataka i tablice."
+
+#: server_privileges.php:28 server_privileges.php:207
+#: server_privileges.php:520
+msgid "Allows creating stored routines."
+msgstr "Dopušta izradu pohranjenih rutina."
+
+#: server_privileges.php:29 server_privileges.php:514
+msgid "Allows creating new tables."
+msgstr "Dopušta izradu novih tablica."
+
+#: server_privileges.php:30 server_privileges.php:195
+#: server_privileges.php:518
+msgid "Allows creating temporary tables."
+msgstr "Dopušta izradu privremenih tablica."
+
+#: server_privileges.php:31 server_privileges.php:209
+#: server_privileges.php:554
+msgid "Allows creating, dropping and renaming user accounts."
+msgstr "Dopušta izradu, odbacivanje i preimenovanje korisničkih naloga."
+
+#: server_privileges.php:32 server_privileges.php:199
+#: server_privileges.php:203 server_privileges.php:526
+#: server_privileges.php:530
+msgid "Allows creating new views."
+msgstr "Dopušta izradu novih prikaza."
+
+#: server_privileges.php:33 server_privileges.php:183
+#: server_privileges.php:506
+msgid "Allows deleting data."
+msgstr "Dopušta brisanje podataka."
+
+#: server_privileges.php:34 server_privileges.php:185
+#: server_privileges.php:517
+msgid "Allows dropping databases and tables."
+msgstr "Dopušta odbacivanje baza podataka i tablica."
+
+#: server_privileges.php:35 server_privileges.php:517
+msgid "Allows dropping tables."
+msgstr "Dopušta odbacivanje tablica."
+
+#: server_privileges.php:36 server_privileges.php:200
+#: server_privileges.php:534
+msgid "Allows to set up events for the event scheduler"
+msgstr "Omogućuje postavljanje događaja za planer"
+
+#: server_privileges.php:37 server_privileges.php:210
+#: server_privileges.php:522
+msgid "Allows executing stored routines."
+msgstr "Dopušta pokretanje pohranjenih rutina."
+
+#: server_privileges.php:38 server_privileges.php:189
+#: server_privileges.php:509
+msgid "Allows importing data from and exporting data into files."
+msgstr "Dopušta uvoz i izvoz podataka iz datoteka."
+
+#: server_privileges.php:39 server_privileges.php:540
+msgid ""
+"Allows adding users and privileges without reloading the privilege tables."
+msgstr ""
+"Dopušta dodavanje korisnika i privilegija bez ponovnog učitavanja tablica."
+
+#: server_privileges.php:40 server_privileges.php:191
+#: server_privileges.php:516
+msgid "Allows creating and dropping indexes."
+msgstr "Dopušta izradu i odbacivanje indeksa."
+
+#: server_privileges.php:41 server_privileges.php:181
+#: server_privileges.php:442 server_privileges.php:504
+msgid "Allows inserting and replacing data."
+msgstr "Dopušta umetanje i zamjenu podataka."
+
+#: server_privileges.php:42 server_privileges.php:196
+#: server_privileges.php:549
+msgid "Allows locking tables for the current thread."
+msgstr "Dopušta zaključavanje tablica u trenutnoj grani."
+
+#: server_privileges.php:43 server_privileges.php:646
+#: server_privileges.php:648
+msgid "Limits the number of new connections the user may open per hour."
+msgstr ""
+"Ograničava broj novih povezivanja koje korisnik može otvoriti, po satu."
+
+#: server_privileges.php:44 server_privileges.php:634
+#: server_privileges.php:636
+msgid "Limits the number of queries the user may send to the server per hour."
+msgstr ""
+"Ograničava broj upita koje korisnik može poslati poslužitelju, po satu."
+
+#: server_privileges.php:45 server_privileges.php:640
+#: server_privileges.php:642
+msgid ""
+"Limits the number of commands that change any table or database the user may "
+"execute per hour."
+msgstr ""
+"Ograničava broj naredbi koje korisnik može pokrenuti, a čija je namjena "
+"mijenjanje bilo koje tablice ili baze podataka, po satu."
+
+#: server_privileges.php:46 server_privileges.php:652
+#: server_privileges.php:654
+msgid "Limits the number of simultaneous connections the user may have."
+msgstr "Ograničava broj istovremenih povezivanja koje korisnik može imati."
+
+#: server_privileges.php:47 server_privileges.php:188
+#: server_privileges.php:544
+msgid "Allows viewing processes of all users"
+msgstr "Omogućuje pregledavanje procesa za sve korisnike"
+
+#: server_privileges.php:48 server_privileges.php:190
+#: server_privileges.php:448 server_privileges.php:550
+msgid "Has no effect in this MySQL version."
+msgstr "Nema učinka u ovoj verziji MySQL-a."
+
+#: server_privileges.php:49 server_privileges.php:186
+#: server_privileges.php:545
+msgid "Allows reloading server settings and flushing the server's caches."
+msgstr ""
+"Dopušta ponovno učitavanje postavki poslužitelja i pražnjenje privremene "
+"pohrane poslužitelja."
+
+#: server_privileges.php:50 server_privileges.php:198
+#: server_privileges.php:552
+msgid "Allows the user to ask where the slaves / masters are."
+msgstr ""
+"Dopušta korisnik postavljanje upita o lokaciji potčinjenih i gospodara."
+
+#: server_privileges.php:51 server_privileges.php:197
+#: server_privileges.php:553
+msgid "Needed for the replication slaves."
+msgstr "Potrebno za replikacijske potčinjene."
+
+#: server_privileges.php:52 server_privileges.php:180
+#: server_privileges.php:439 server_privileges.php:503
+msgid "Allows reading data."
+msgstr "Dopušta čitanje podataka."
+
+#: server_privileges.php:53 server_privileges.php:193
+#: server_privileges.php:547
+msgid "Gives access to the complete list of databases."
+msgstr "Daje pristup cjelokupnom popisu baza podataka."
+
+#: server_privileges.php:54 server_privileges.php:204
+#: server_privileges.php:206 server_privileges.php:519
+msgid "Allows performing SHOW CREATE VIEW queries."
+msgstr "Dopušta izvođenje upita SHOW CREATE VIEW."
+
+#: server_privileges.php:55 server_privileges.php:187
+#: server_privileges.php:546
+msgid "Allows shutting down the server."
+msgstr "Dopušta gašenje poslužitelja."
+
+#: server_privileges.php:56 server_privileges.php:194
+#: server_privileges.php:543
+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 ""
+"Dopušta povezivanje čak i kad je dostignut najveći broj veza. Potrebno za "
+"većinu administrativnih operacija poput postavljanja općih varijabli ili "
+"eliminiranje grana drugih korisnika."
+
+#: server_privileges.php:57 server_privileges.php:201
+#: server_privileges.php:535
+msgid "Allows creating and dropping triggers"
+msgstr "Omogućuje izradu i uklanjanje okidača"
+
+#: server_privileges.php:58 server_privileges.php:182
+#: server_privileges.php:445 server_privileges.php:505
+msgid "Allows changing data."
+msgstr "Dopušta mijenjanje podataka."
+
+#: server_privileges.php:59 server_privileges.php:260
+msgid "No privileges."
+msgstr "Bez privilegija."
+
+#: server_privileges.php:302 server_privileges.php:303
#, fuzzy
#| msgid "None"
msgctxt "None privileges"
msgid "None"
msgstr "bez kompresije"
-#: server_privileges.php:392 server_privileges.php:527
-#: server_privileges.php:1679 server_privileges.php:1685
+#: server_privileges.php:431 server_privileges.php:566
+#: server_privileges.php:1718 server_privileges.php:1724
msgid "Table-specific privileges"
msgstr "Privilegije specifične za tablicu"
-#: server_privileges.php:393 server_privileges.php:535
-#: server_privileges.php:1501
+#: server_privileges.php:432 server_privileges.php:574
+#: server_privileges.php:1540
msgid " Note: MySQL privilege names are expressed in English "
msgstr " Napomena: Nazivi MySQL privilegija navedeni su na engleskom jeziku "
-#: server_privileges.php:524 server_privileges.php:1500
+#: server_privileges.php:563 server_privileges.php:1539
msgid "Global privileges"
msgstr "Opće privilegije"
-#: server_privileges.php:526 server_privileges.php:1679
+#: server_privileges.php:565 server_privileges.php:1718
msgid "Database-specific privileges"
msgstr "Privilegije specifične za bazu podataka"
-#: server_privileges.php:571
+#: server_privileges.php:610
msgid "Administration"
msgstr "Administracija"
-#: server_privileges.php:591
+#: server_privileges.php:630
msgid "Resource limits"
msgstr "Ograničenja resursa"
-#: server_privileges.php:592
+#: server_privileges.php:631
msgid "Note: Setting these options to 0 (zero) removes the limit."
msgstr ""
"Napomena: Postavljanje ovih opcija na vrijednost 0 (nula) uklanja "
"ograničenje."
-#: server_privileges.php:669
+#: server_privileges.php:708
msgid "Login Information"
msgstr "_Podaci prijave"
-#: server_privileges.php:763
+#: server_privileges.php:802
msgid "Do not change the password"
msgstr "Ne mijenjaj lozinku"
-#: server_privileges.php:804 server_privileges.php:2166
+#: server_privileges.php:843 server_privileges.php:2205
#, fuzzy
#| msgid "No user(s) found."
msgid "No user found."
msgstr "Korisnici nisu pronađeni."
-#: server_privileges.php:848
+#: server_privileges.php:887
#, php-format
msgid "The user %s already exists!"
msgstr "Korisnik %s već postoji!"
-#: server_privileges.php:931
+#: server_privileges.php:970
msgid "You have added a new user."
msgstr "Dodali ste novog korisnika."
-#: server_privileges.php:1152
+#: server_privileges.php:1191
#, php-format
msgid "You have updated the privileges for %s."
msgstr "Ažurirali ste privilegije za %s."
-#: server_privileges.php:1176
+#: server_privileges.php:1215
#, php-format
msgid "You have revoked the privileges for %s"
msgstr "Opozvali ste privilegije za %s"
-#: server_privileges.php:1212
+#: server_privileges.php:1251
#, php-format
msgid "The password for %s was changed successfully."
msgstr "Lozinka za %s uspješno je promijenjena."
-#: server_privileges.php:1232
+#: server_privileges.php:1271
#, php-format
msgid "Deleting %s"
msgstr "Brisanje %s"
-#: server_privileges.php:1243
+#: server_privileges.php:1282
msgid "No users selected for deleting!"
msgstr "Nema odabranih korisnika za uklanjanje!"
-#: server_privileges.php:1246
+#: server_privileges.php:1285
msgid "Reloading the privileges"
msgstr "Ponovno učitavanje privilegija"
-#: server_privileges.php:1261
+#: server_privileges.php:1300
msgid "The selected users have been deleted successfully."
msgstr "Odabrani korisnici uspješno su izbrisani."
-#: server_privileges.php:1296
+#: server_privileges.php:1335
msgid "The privileges were reloaded successfully."
msgstr "Privilegije su uspješno učitane."
-#: server_privileges.php:1324 server_privileges.php:1610
+#: server_privileges.php:1363 server_privileges.php:1649
msgid "Edit Privileges"
msgstr "Uredi privilegije"
-#: server_privileges.php:1333
+#: server_privileges.php:1372
msgid "Revoke"
msgstr "Opozovi"
-#: server_privileges.php:1365
+#: server_privileges.php:1404
msgid "User overview"
msgstr "Pregled korisnika"
-#: server_privileges.php:1502 server_privileges.php:1684
-#: server_privileges.php:2033
+#: server_privileges.php:1541 server_privileges.php:1723
+#: server_privileges.php:2072
msgid "Grant"
msgstr "Podarivanje"
-#: server_privileges.php:1521 server_privileges.php:2123
+#: server_privileges.php:1560 server_privileges.php:2162
msgid "Any"
msgstr "Bilo koji"
-#: server_privileges.php:1570 server_privileges.php:1594
-#: server_privileges.php:1988 server_privileges.php:2177
+#: server_privileges.php:1609 server_privileges.php:1633
+#: server_privileges.php:2027 server_privileges.php:2216
msgid "Add a new User"
msgstr "Dodaj novog korisnika"
-#: server_privileges.php:1575
+#: server_privileges.php:1614
msgid "Remove selected users"
msgstr "Ukloni odabrane korisnike"
-#: server_privileges.php:1578
+#: server_privileges.php:1617
msgid "Revoke all active privileges from the users and delete them afterwards."
msgstr "Opozovi sve aktivne privilegije korisnika i potom ih izbriši."
-#: server_privileges.php:1579 server_privileges.php:1580
-#: server_privileges.php:1581
+#: server_privileges.php:1618 server_privileges.php:1619
+#: server_privileges.php:1620
msgid "Drop the databases that have the same names as the users."
msgstr "Ispusti baze podataka koje imaju iste nazive i korisnike."
-#: server_privileges.php:1597
+#: server_privileges.php:1636
#, php-format
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
@@ -5609,94 +4968,94 @@ msgstr ""
"može se razlikovati od privilegija koje upotrebljava poslužitelj. U tom je "
"slučaju potrebno %sponovo učitati privilegije%s prije nastavljanja rada."
-#: server_privileges.php:1645
+#: server_privileges.php:1684
msgid "The selected user was not found in the privilege table."
msgstr "Odabrani korisnik nije pronađen u tablici privilegija."
-#: server_privileges.php:1685
+#: server_privileges.php:1724
msgid "Column-specific privileges"
msgstr "Privilegije specifične za stupac"
-#: server_privileges.php:1886
+#: server_privileges.php:1925
msgid "Add privileges on the following database"
msgstr "Dodaj privilegije za sljedeće baze podataka"
-#: server_privileges.php:1904
+#: server_privileges.php:1943
msgid "Wildcards % and _ should be escaped with a \\ to use them literally"
msgstr ""
"Kako bi se mogli upotrebljavati u doslovnom smislu, džokerima \\_ i \\% mora "
"prethoditi znak \\"
-#: server_privileges.php:1907
+#: server_privileges.php:1946
msgid "Add privileges on the following table"
msgstr "Dodaj privilegije za sljedeću tablicu"
-#: server_privileges.php:1964
+#: server_privileges.php:2003
msgid "Change Login Information / Copy User"
msgstr "Promjena podataka prijave / Kopiranje korisnika"
-#: server_privileges.php:1967
+#: server_privileges.php:2006
msgid "Create a new user with the same privileges and ..."
msgstr "Izradi novog korisnika s istim privilegijama i..."
-#: server_privileges.php:1969
+#: server_privileges.php:2008
msgid "... keep the old one."
msgstr "... zadržati staru."
-#: server_privileges.php:1970
+#: server_privileges.php:2009
msgid " ... delete the old one from the user tables."
msgstr " ... izbriši starog iz korisničkih tablica."
-#: server_privileges.php:1971
+#: server_privileges.php:2010
msgid ""
" ... revoke all active privileges from the old one and delete it afterwards."
msgstr " ... opozovi sve aktivne privilegije iz stare i potom je izbriši."
-#: server_privileges.php:1972
+#: server_privileges.php:2011
msgid ""
" ... delete the old one from the user tables and reload the privileges "
"afterwards."
msgstr ""
" ... izbriši starog iz korisničkih tablica i potom ponovo učitaj privilegije."
-#: server_privileges.php:1994
+#: server_privileges.php:2033
msgid "Database for user"
msgstr "Baza podataka za korisnika"
-#: server_privileges.php:1998
+#: server_privileges.php:2037
#, fuzzy
#| msgid "None"
msgctxt "Create none database for user"
msgid "None"
msgstr "bez kompresije"
-#: server_privileges.php:1999
+#: server_privileges.php:2038
msgid "Create database with same name and grant all privileges"
msgstr "Izradi bazu podataka istog naziva i podari sve privilegije"
-#: server_privileges.php:2000
+#: server_privileges.php:2039
msgid "Grant all privileges on wildcard name (username\\_%)"
msgstr "Podari sve privilegije imenima s džokerima (korisničkoime_%)"
-#: server_privileges.php:2003
+#: server_privileges.php:2042
#, fuzzy, php-format
msgid "Grant all privileges on database "%s""
msgstr "Provjeri privilegije za bazu podataka \"%s\"."
-#: server_privileges.php:2026
+#: server_privileges.php:2065
#, php-format
msgid "Users having access to "%s""
msgstr "Korisnici koji imaju pristup u \"%s\""
-#: server_privileges.php:2134
+#: server_privileges.php:2173
msgid "global"
msgstr "opće"
-#: server_privileges.php:2136
+#: server_privileges.php:2175
msgid "database-specific"
msgstr "specifično za bazu podataka"
-#: server_privileges.php:2138
+#: server_privileges.php:2177
msgid "wildcard"
msgstr "džoker"
@@ -5742,7 +5101,7 @@ msgstr ""
msgid "This server is configured as master in a replication process."
msgstr ""
-#: server_replication.php:184 server_status.php:281
+#: server_replication.php:184 server_status.php:392
#, fuzzy
msgid "Show master status"
msgstr "Prikaži stanje potčinjenog"
@@ -5882,103 +5241,754 @@ msgid ""
"like to configure it?"
msgstr ""
+#: server_status.php:40
+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 ""
+"Broj transakcija koje su upotrebljavale privremeni binarni zapisnik pohrane, "
+"ali su nadmašile vrijednost binlog_cache_size i upotrijebile privremenu "
+"datoteku za pohranjivanje izjava transakcija."
+
+#: server_status.php:41
+msgid "The number of transactions that used the temporary binary log cache."
+msgstr ""
+"Broj transakcija koje su upotrebljavale privremeni binarni zapisnik pohrane."
+
+#: server_status.php:42
+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 "
+"to increase the tmp_table_size value to cause temporary tables to be memory-"
+"based instead of disk-based."
+msgstr ""
+"Broj privremenih tablica koje poslužitelj automatski izrađuje na disku "
+"tijekom izvršavanja izjava. Ako je stavka Created_tmp_disk_tables velika, "
+"moglo bi biti potrebno da povećate vrijednost tmp_table_size, kako biste "
+"privremene tablice smjestili u radnu memoriju, a ne na tvrdi disk."
+
+#: server_status.php:43
+msgid "How many temporary files mysqld has created."
+msgstr "Koliko je privremenih tablica izradio mysqld."
+
+#: server_status.php:44
+msgid ""
+"The number of in-memory temporary tables created automatically by the server "
+"while executing statements."
+msgstr ""
+"Broj privremenih tablica u memoriji koje je poslužitelj automatski izradio "
+"tijekom izvršavanja izjava."
+
+#: server_status.php:45
+msgid ""
+"The number of rows written with INSERT DELAYED for which some error occurred "
+"(probably duplicate key)."
+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č)."
+
#: server_status.php:46
+msgid ""
+"The number of INSERT DELAYED handler threads in use. Every different table "
+"on which one uses INSERT DELAYED gets its own thread."
+msgstr ""
+"Broj hvatište grana INSERT DELAYED u upotrebi. Svaka druga tablica na koju "
+"se primjeni INSERT DELAYED dobiva vlastitu granu."
+
+#: server_status.php:47
+msgid "The number of INSERT DELAYED rows written."
+msgstr "Broj redaka zapisanih pomoću INSERT DELAYED."
+
+#: server_status.php:48
+msgid "The number of executed FLUSH statements."
+msgstr "Broj izvršenih izjava FLUSH."
+
+#: server_status.php:49
+msgid "The number of internal COMMIT statements."
+msgstr "Broj internih izjava COMMIT."
+
+#: server_status.php:50
+msgid "The number of times a row was deleted from a table."
+msgstr "Brojka koja prokazuje koliko puta je redak bio izbrisan iz tablice."
+
+#: server_status.php:51
+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 ""
+"MySQL poslužitelj može upitati pogon pohranjivanja NDB skupine, zna li za "
+"tablicu s traženim nazivom. Ovaj se postupak naziva otkrivanje. "
+"Handler_discover naznačuje koliko je puta tablica bila otkrivenom."
+
+#: server_status.php:52
+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 ""
+"Brojka koja prokazuje koliko puta je prvi unos bio čitan iz indeksa. Velik "
+"broj je pokazatelj da poslužitelj izvodi mnogo potpunih pretraživanja "
+"indeksa, npr. SELECT col1 FROM foo, pri čemu je col1 indeksiran."
+
+#: server_status.php:53
+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 ""
+"Broj zahtjeva za čitanje retka zasnovan na ključu. Velik broj je pokazatelj "
+"da su vaši upiti i tablice pravilno indeksirani."
+
+#: server_status.php:54
+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 ""
+"Broj zahtjeva za čitanje sljedećeg retka u redoslijedu ključa. Ovaj se broj "
+"povećava ako izvodite upite stupca indeksa s ograničenjem opsega ili ako "
+"izvodite pretraživanje indeksa."
+
+#: server_status.php:55
+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 ""
+"Broj zahtjeva za čitanje prethodnog retka u redoslijedu ključa. Ovaj način "
+"čitanja uglavnom se upotrebljava za optimiziranje opcije ORDER BY ... DESC."
+
+#: server_status.php:56
+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 "
+"probably have a lot of queries that require MySQL to scan whole tables or "
+"you have joins that don't use keys properly."
+msgstr ""
+"Broj zahtjeva za čitanje retka zasnovanog na fiksnom položaju. Ovaj iznos je "
+"velik ako izvodite mnogo upita koji zahtjevaju preslagivanje rezultata. "
+"Vjerojatno imate mnogo upita koji zahtijevaju da MySQL pretražuje cjelokupne "
+"tablice ili imate spojeve koji ne upotrebljavaju ključ na pravilan način."
+
+#: server_status.php:57
+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 "
+"tables are not properly indexed or that your queries are not written to take "
+"advantage of the indexes you have."
+msgstr ""
+"Broj zahtjeva za čitanje sljedećeg retka u datoteci s podacima. Ovaj broj je "
+"velik ako izvodite mnogo pretraživanja tablice. Općenito, ovaj iznos "
+"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."
+
+#: server_status.php:58
+msgid "The number of internal ROLLBACK statements."
+msgstr "Broj internih izjava ROLLBACK."
+
+#: server_status.php:59
+msgid "The number of requests to update a row in a table."
+msgstr "Broj zahtjeva za ažuriranje retka u tablici."
+
+#: server_status.php:60
+msgid "The number of requests to insert a row in a table."
+msgstr "Broj zahtjeva za umetanje retka u tablici."
+
+#: server_status.php:61
+msgid "The number of pages containing data (dirty or clean)."
+msgstr "Broj stranice koje sadrže podatke (dirty ili clean)."
+
+#: server_status.php:62
+msgid "The number of pages currently dirty."
+msgstr "Broj stranica koje su trenutno 'dirty'."
+
+#: server_status.php:63
+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."
+
+#: server_status.php:64
+msgid "The number of free pages."
+msgstr "Broj slobodnih stranica."
+
+#: server_status.php:65
+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 ""
+"Broj vezanih stranica u InnoDB međuspremniku. Ove se stranice trenutno "
+"čitaju ili zapisuju, ili ih nije moguće isprazniti ili ukloniti iz nekog "
+"drugog razloga."
+
+#: server_status.php:66
+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 "
+"be calculated as Innodb_buffer_pool_pages_total - "
+"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data."
+msgstr ""
+"Broj stranica koje su zauzete jer su dodijeljene za administrativna "
+"prepunjenja, poput zaključavanja redaka ili adaptivni indeks presjeka. Ovu "
+"je vrijednost moguće izračunati i kao Innodb_buffer_pool_pages_total - "
+"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data."
+
+#: server_status.php:67
+msgid "Total size of buffer pool, in pages."
+msgstr "Ukupna veličina međuspremnika, u stranicama."
+
+#: server_status.php:68
+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 ""
+"Broj \"nasumičnih\" pripremnih čitanja koje je InnoDB inicijalizirao. Događa "
+"se kad upit mora pretražiti veliki dio tablice, ali nasumičnim redoslijedom."
+
+#: server_status.php:69
+msgid ""
+"The number of sequential read-aheads InnoDB initiated. This happens when "
+"InnoDB does a sequential full table scan."
+msgstr ""
+"Broj slijednih pripremnih čitanja koje je inicijalizirao InnoDB. Ovo se "
+"događa kad InnoDB izvodi potpuno pretraživanje tablice."
+
+#: server_status.php:70
+msgid "The number of logical read requests InnoDB has done."
+msgstr "Broj logičkih zahtjeva za čitanjem koje je obavio InnoDB."
+
+#: server_status.php:71
+msgid ""
+"The number of logical reads that InnoDB could not satisfy from buffer pool "
+"and had to do a single-page read."
+msgstr ""
+"Broj logičkih čitanja koje InnoDB nije mogao zadovoljiti iz međuspremnik i "
+"morao je izvesti čitanje po jedne stranice."
+
+#: server_status.php:72
+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 "
+"available, it's necessary to wait for pages to be flushed first. This "
+"counter counts instances of these waits. If the buffer pool size was set "
+"properly, this value should be small."
+msgstr ""
+"Uobičajeno, zapisivanja u InnoDB međuspremnik izvode se u pozadini. Ipak, "
+"ako je potrebno iščitati ili izraditi stranicu, a nema raspoložive prazne "
+"stranice, bit će potrebno pričekati pražnjenje stranice. Ovaj brojač "
+"prikazuje stanje ovog čekanja. Ako je veličina međuspremnika pravilno "
+"postavljena, ova bi vrijednost trebala biti malenom."
+
+#: server_status.php:73
+msgid "The number writes done to the InnoDB buffer pool."
+msgstr "Broj izvršenih zapisivanja u InnoDB međuspremnik."
+
+#: server_status.php:74
+msgid "The number of fsync() operations so far."
+msgstr "Broj dosadašnjih fsync() operacija."
+
+#: server_status.php:75
+msgid "The current number of pending fsync() operations."
+msgstr "Trenutan broj fsync() operacija u čekanju."
+
+#: server_status.php:76
+msgid "The current number of pending reads."
+msgstr "Trenutan broj čitanja u čekanju."
+
+#: server_status.php:77
+msgid "The current number of pending writes."
+msgstr "Trenutan broj zapisivanja u čekanju."
+
+#: server_status.php:78
+msgid "The amount of data read so far, in bytes."
+msgstr "Količina podataka pročitanih do ovog trenutka, u bajtovima."
+
+#: server_status.php:79
+msgid "The total number of data reads."
+msgstr "Ukupan broj iščitavanja podataka."
+
+#: server_status.php:80
+msgid "The total number of data writes."
+msgstr "Ukupan broj zapisivanja podataka."
+
+#: server_status.php:81
+msgid "The amount of data written so far, in bytes."
+msgstr "Količina podataka zapisanih do ovog trenutka, u bajtovima."
+
+#: server_status.php:82
+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."
+
+#: server_status.php:83
+msgid "The number of doublewrite operations that have been performed."
+msgstr ""
+"Broj dvostrukih zapisivanja do ovog trenutka i broj stranica zapisanih za "
+"ovu potrebu."
+
+#: server_status.php:84
+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 ""
+"Broj čekanja koja su se dogodila zbog nedovoljno velikog zapisnika "
+"međuspremnika, te je bilo potrebno čekati njegovo pražnjenje prije nastavka "
+"rada."
+
+#: server_status.php:85
+msgid "The number of log write requests."
+msgstr "Broj zahtjeva za zapisivanje u zapisnik."
+
+#: server_status.php:86
+msgid "The number of physical writes to the log file."
+msgstr "Broj fizičkih zapisivanja u zapisnik."
+
+#: server_status.php:87
+msgid "The number of fsync() writes done to the log file."
+msgstr "Broj fsyncs zapisivanja izvršenih u datoteci zapisnika."
+
+#: server_status.php:88
+msgid "The number of pending log file fsyncs."
+msgstr "Broj naredbi fsyncs za zapisnik, a koje su na čekanju."
+
+#: server_status.php:89
+msgid "Pending log file writes."
+msgstr "Zapisivanja u zapisnik na čekanju."
+
+#: server_status.php:90
+msgid "The number of bytes written to the log file."
+msgstr "Broj bajtova zapisanih u zapisnik."
+
+#: server_status.php:91
+msgid "The number of pages created."
+msgstr "Broj izrađenih stranica."
+
+#: server_status.php:92
+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 ""
+"Izrađena veličina InnoDB stranice (zadana vrijednost je 16kB). Mnoge se "
+"vrijednosti prebrojavaju u stranicama. Veličina stranice dopušta njihovo "
+"jednostavno pretvaranje u bajtove."
+
+#: server_status.php:93
+msgid "The number of pages read."
+msgstr "Broj iščitanih stranica."
+
+#: server_status.php:94
+msgid "The number of pages written."
+msgstr "Broj zapisanih stranica."
+
+#: server_status.php:95
+msgid "The number of row locks currently being waited for."
+msgstr "Broj zaključavanja redaka na koje se trenutno čeka."
+
+#: server_status.php:96
+msgid "The average time to acquire a row lock, in milliseconds."
+msgstr "Prosječno vrijeme postizanja zaključanosti retka, u milisekundama."
+
+#: server_status.php:97
+msgid "The total time spent in acquiring row locks, in milliseconds."
+msgstr ""
+"Ukupno vrijeme utrošeno na postizanja zaključanosti retka, u milisekundama."
+
+#: server_status.php:98
+msgid "The maximum time to acquire a row lock, in milliseconds."
+msgstr "Najdulje vrijeme postizanja zaključanosti retka, u milisekundama."
+
+#: server_status.php:99
+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."
+
+#: server_status.php:100
+msgid "The number of rows deleted from InnoDB tables."
+msgstr "Broj redaka izbrisanih iz InnoDB tablica."
+
+#: server_status.php:101
+msgid "The number of rows inserted in InnoDB tables."
+msgstr "Broj redaka umetnutih u InnoDB tablice."
+
+#: server_status.php:102
+msgid "The number of rows read from InnoDB tables."
+msgstr "Broj redaka iščitanih iz InnoDB tablica."
+
+#: server_status.php:103
+msgid "The number of rows updated in InnoDB tables."
+msgstr "Broj ažuriranih redaka u InnoDB tablicama."
+
+#: server_status.php:104
+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 ""
+"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."
+
+#: server_status.php:105
+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 ""
+"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."
+
+#: server_status.php:106
+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 ""
+"Broj iskorištenih blokova u pohrani ključeva. Ova je vrijednost oznaka "
+"gornje razine koja označuje najveći broj blokova koji su ikad bili u "
+"istovremenoj upotrebi."
+
+#: server_status.php:107
+msgid "The number of requests to read a key block from the cache."
+msgstr "Broj zahtjeva za čitanje ključnog bloka iz pohrane."
+
+#: server_status.php:108
+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 ""
+"Broj fizičkih čitanja ključnih blokova s diska. Ako je iznos Key_reads "
+"velik, vjerojatno je vaša vrijednost key_buffer_size premala. Stupanj "
+"promašivanja pohrane moguće je izračunati putem naredbi Key_reads/"
+"Key_read_requests."
+
+#: server_status.php:109
+msgid "The number of requests to write a key block to the cache."
+msgstr "Broj zahtjeva za zapisivanje ključnog bloka u pohranu."
+
+#: server_status.php:110
+msgid "The number of physical writes of a key block to disk."
+msgstr "Broj fizičkih zapisivanja ključnih blokova na disk. "
+
+#: server_status.php:111
+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 ""
+"Ukupan trošak posljednjeg složenog upita, izračunat od strane optimizatora "
+"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."
+
+#: server_status.php:112
+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."
+
+#: server_status.php:113
+msgid ""
+"The number of tables that have been opened. If opened tables is big, your "
+"table cache value is probably too small."
+msgstr ""
+"Broj tablica koje su otvorene. Ako je iznos otvorenih tablica velik, vaša "
+"vrijednost za pohranu tablica vjerojatno je premala."
+
+#: server_status.php:114
+msgid "The number of files that are open."
+msgstr "Broj otvorenih datoteka."
+
+#: server_status.php:115
+msgid "The number of streams that are open (used mainly for logging)."
+msgstr ""
+"Broj otvorenih protoka (uglavnom se upotrebljava za vođenje zapisnika)."
+
+#: server_status.php:116
+msgid "The number of tables that are open."
+msgstr "Broj otvorenih tablica."
+
+#: server_status.php:117
+msgid "The number of free memory blocks in query cache."
+msgstr "Broj slobodnih memorijskih blokova u pohrani upita."
+
+#: server_status.php:118
+msgid "The amount of free memory for query cache."
+msgstr "Količina slobodne memorije za pohranu upita."
+
+#: server_status.php:119
+msgid "The number of cache hits."
+msgstr "Broj pronalaženja u pohrani."
+
+#: server_status.php:120
+msgid "The number of queries added to the cache."
+msgstr "Broj upita pridodanih u pohranu."
+
+#: server_status.php:121
+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 "
+"cache size. The query cache uses a least recently used (LRU) strategy to "
+"decide which queries to remove from the cache."
+msgstr ""
+"Broj upita koji su uklonjeni iz pohrane radi oslobađanja memorije za potrebe "
+"pohranjivanja novih upita. Ovaj vam podatak može pomoći pri podešavanju "
+"veličine pohrane upita. Pohrana upita upotrebljava strategiju posljednjeg "
+"nedavno upotrebljavanog (LRU - least recently used) radi odlučivanja koje će "
+"upite ukloniti iz pohrane."
+
+#: server_status.php:122
+msgid ""
+"The number of non-cached queries (not cachable, or not cached due to the "
+"query_cache_type setting)."
+msgstr ""
+"Broj upita koji nisu pohranjeni (nisu za pohranu ili nisu pohranjeni zbog "
+"postavke query_cache_type)."
+
+#: server_status.php:123
+msgid "The number of queries registered in the cache."
+msgstr "Broj upita registriranih u pohrani."
+
+#: server_status.php:124
+msgid "The total number of blocks in the query cache."
+msgstr "Ukupan broj blokova u pohrani upita."
+
+#: server_status.php:125
+msgctxt "$strShowStatusReset"
+msgid "Reset"
+msgstr "Povrat"
+
+#: server_status.php:126
+msgid "The status of failsafe replication (not yet implemented)."
+msgstr "Stanje replikacije sigurnosti protiv otkaza (još nije implementirano)."
+
+#: server_status.php:127
+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 ""
+"Broj spojeva koji ne upotrebljavaju indekse. Ako ovaj iznos nije 0, bit će "
+"potrebno da pažljivo provjerite indekse vaših tablica."
+
+#: server_status.php:128
+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."
+
+#: server_status.php:129
+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 ""
+"Broj spojeva bez ključeva koji provjeravaju upotrebu ključa nakon svakog "
+"retka. (Ako ovaj iznos nije 0, bit će potrebno da pažljivo provjerite "
+"indekse vaših tablica."
+
+#: server_status.php:130
+msgid ""
+"The number of joins that used ranges on the first table. (It's normally not "
+"critical even if this is big.)"
+msgstr ""
+"Broj spojeva koji su upotrijebili opsege nad prvom tablicom. (Općenito nije "
+"kritično ako je ovaj iznos velik.)"
+
+#: server_status.php:131
+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."
+
+#: server_status.php:132
+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."
+
+#: server_status.php:133
+msgid ""
+"Total (since startup) number of times the replication slave SQL thread has "
+"retried transactions."
+msgstr ""
+"Ukupna količina (od pokretanja) ponovnih pokušaja transakcija od strane "
+"replikacijske potčinjene SQL grane."
+
+#: server_status.php:134
+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."
+
+#: server_status.php:135
+msgid ""
+"The number of threads that have taken more than slow_launch_time seconds to "
+"create."
+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."
+
+#: server_status.php:136
+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."
+
+#: server_status.php:137
+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 ""
+"Broj prolaza udruživanja koje je algoritam za preslagivanje morao izvesti. "
+"Ako je ovaj iznos velik, razmotrite mogućnost povećanja vrijednosti "
+"sistemske varijable sort_buffer_size."
+
+#: server_status.php:138
+msgid "The number of sorts that were done with ranges."
+msgstr "Broj preslagivanja učinjenih pomoću opsega."
+
+#: server_status.php:139
+msgid "The number of sorted rows."
+msgstr "Broj presloženih redaka."
+
+#: server_status.php:140
+msgid "The number of sorts that were done by scanning the table."
+msgstr "Broj preslagivanja učinjenih pomoću pretraživanja tablice."
+
+#: server_status.php:141
+msgid "The number of times that a table lock was acquired immediately."
+msgstr "Količina trenutno postignutih zaključavanja tablica."
+
+#: server_status.php:142
+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 "
+"should first optimize your queries, and then either split your table or "
+"tables or use replication."
+msgstr ""
+"Količina zaključavanja tablica koji nisu mogli biti trenutno postignuti i "
+"bilo je potrebno određeno čekanje. Ako je ovaj iznos visok i ako imate "
+"problema s performansama, bit će potrebno da prvo optimizirate svoje upite i "
+"potom ili podijelite svoje tablice ili upotrijebite replikaciju."
+
+#: server_status.php:143
+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 ""
+"Broj grana u pohrani grana. Stupanj pogodaka u pohrani može se izračunati "
+"kao Threads_created/Connections. Ako je ovaj iznos prikazan crvenom bojom, "
+"bit će potrebno da povećate svoju vrijednost thread_cache_size."
+
+#: server_status.php:144
+msgid "The number of currently open connections."
+msgstr "Broj trenutno otvorenih veza."
+
+#: server_status.php:145
+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 "
+"doesn't give a notable performance improvement if you have a good thread "
+"implementation.)"
+msgstr ""
+"Broj grana izrađenih za rukovanje vezama. Ako je iznos Threads_created "
+"velik, moglo bi biti potrebno da povećate vrijednost thread_cache_size. "
+"(Uobičajeno, ako imate dobru implementaciju grana, ova opcija neće pružiti "
+"primjetna poboljšanja performansi.)"
+
+#: server_status.php:146
+msgid "The number of threads that are not sleeping."
+msgstr "Broj grana koje nisu uspavane."
+
+#: server_status.php:157
msgid "Runtime Information"
msgstr "Podaci o razini izvršavanja"
-#: server_status.php:250
+#: server_status.php:361
msgid "Handler"
msgstr "Hvatišta"
-#: server_status.php:251
+#: server_status.php:362
msgid "Query cache"
msgstr "Pohrana upita"
-#: server_status.php:252
+#: server_status.php:363
msgid "Threads"
msgstr "Grane"
-#: server_status.php:254
+#: server_status.php:365
msgid "Temporary data"
msgstr "Privremeni podaci"
-#: server_status.php:255
+#: server_status.php:366
msgid "Delayed inserts"
msgstr "Odgođena umetanja"
-#: server_status.php:256
+#: server_status.php:367
msgid "Key cache"
msgstr "Pohrana ključeva"
-#: server_status.php:257
+#: server_status.php:368
msgid "Joins"
msgstr "Spojevi"
-#: server_status.php:259
+#: server_status.php:370
msgid "Sorting"
msgstr "Preslagivanje"
-#: server_status.php:261
+#: server_status.php:372
msgid "Transaction coordinator"
msgstr "Koordinator transakcije"
-#: server_status.php:271
+#: server_status.php:382
msgid "Flush (close) all tables"
msgstr "Isprazni (zatvori) sve tablice"
-#: server_status.php:273
+#: server_status.php:384
msgid "Show open tables"
msgstr "Prikaži otvorene tablice"
-#: server_status.php:278
+#: server_status.php:389
msgid "Show slave hosts"
msgstr "Prikaži potčinjena računala"
-#: server_status.php:284
+#: server_status.php:395
msgid "Show slave status"
msgstr "Prikaži stanje potčinjenog"
-#: server_status.php:289
+#: server_status.php:400
msgid "Flush query cache"
msgstr "Isprazni pohranu upita"
-#: server_status.php:294
+#: server_status.php:405
msgid "Show processes"
msgstr "Prikaži procese"
-#: server_status.php:344
+#: server_status.php:455
#, fuzzy
#| msgid "Reset"
msgctxt "for Show status"
msgid "Reset"
msgstr "Povrat"
-#: server_status.php:350
+#: server_status.php:461
#, php-format
msgid "This MySQL server has been running for %s. It started up on %s."
msgstr "Ovaj MySQL poslužitelj radi tijekom %s. Pokrenut je %s."
-#: server_status.php:360
+#: server_status.php:471
msgid ""
"This MySQL server works as master and slave in replication"
"b> process."
msgstr ""
-#: server_status.php:362
+#: server_status.php:473
msgid "This MySQL server works as master in replication process."
msgstr ""
-#: server_status.php:364
+#: server_status.php:475
msgid "This MySQL server works as slave in replication process."
msgstr ""
-#: server_status.php:366
+#: server_status.php:477
msgid ""
"For further information about replication status on the server, please visit "
"the replication section."
msgstr ""
-#: server_status.php:383
+#: server_status.php:494
msgid ""
"Server traffic: These tables show the network traffic statistics of "
"this MySQL server since its startup."
@@ -5986,11 +5996,11 @@ msgstr ""
"Promet poslužitelja: Ove tablice prikazuju statistike mrežnog prometa "
"na ovom MySQL poslužitelju od trenutka njegovog pokretanja."
-#: server_status.php:388
+#: server_status.php:499
msgid "Traffic"
msgstr "Promet"
-#: server_status.php:388
+#: server_status.php:499
msgid ""
"On a busy server, the byte counters may overrun, so those statistics as "
"reported by the MySQL server may be incorrect."
@@ -5999,36 +6009,36 @@ msgstr ""
"prikaza, pri čemu bi statistike koje prikazuje MySQL poslužitelj mogle biti "
"netočne."
-#: server_status.php:389 server_status.php:434 server_status.php:497
-#: server_status.php:555
+#: server_status.php:500 server_status.php:545 server_status.php:608
+#: server_status.php:666
msgid "per hour"
msgstr "po satu"
-#: server_status.php:394
+#: server_status.php:505
msgid "Received"
msgstr "Primljeno"
-#: server_status.php:404
+#: server_status.php:515
msgid "Sent"
msgstr "Poslano"
-#: server_status.php:433
+#: server_status.php:544
msgid "Connections"
msgstr "Veze"
-#: server_status.php:440
+#: server_status.php:551
msgid "max. concurrent connections"
msgstr "najv. uzastopnih veza"
-#: server_status.php:447
+#: server_status.php:558
msgid "Failed attempts"
msgstr "Neuspjeli pokušaji"
-#: server_status.php:461
+#: server_status.php:572
msgid "Aborted"
msgstr "Prekinuto"
-#: server_status.php:490
+#: server_status.php:601
#, php-format
msgid ""
"Query statistics: Since its startup, %s queries have been sent to the "
@@ -6036,19 +6046,19 @@ msgid ""
msgstr ""
"Statistike upita: Od pokretanja poslužitelju je upućeno %s upita."
-#: server_status.php:498
+#: server_status.php:609
msgid "per minute"
msgstr "po minuti"
-#: server_status.php:499
+#: server_status.php:610
msgid "per second"
msgstr "po sekundi"
-#: server_status.php:554
+#: server_status.php:665
msgid "Query type"
msgstr "Vrsta upita"
-#: server_status.php:721
+#: server_status.php:832
#, fuzzy
msgid "Replication status"
msgstr "Replikacija"
diff --git a/po/hu.po b/po/hu.po
index d55599368..65bd8a757 100755
--- a/po/hu.po
+++ b/po/hu.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-06-04 16:07-0400\n"
+"POT-Creation-Date: 2010-06-08 12:32-0400\n"
"PO-Revision-Date: 2010-03-12 09:15+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: hungarian \n"
@@ -14,11 +14,11 @@ msgstr ""
"X-Generator: Translate Toolkit 1.5.3\n"
#: browse_foreigners.php:38 browse_foreigners.php:59
-#: libraries/display_tbl.lib.php:417 server_privileges.php:1475
+#: libraries/display_tbl.lib.php:417 server_privileges.php:1514
msgid "Show all"
msgstr "Mind látható"
-#: browse_foreigners.php:82 libraries/common.lib.php:2304
+#: browse_foreigners.php:82 libraries/common.lib.php:2313
#: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:394
#: libraries/export/pdf.php:147 pdf_schema.php:283 pdf_schema.php:1123
#: pdf_schema.php:1139
@@ -37,8 +37,8 @@ msgstr ""
#: browse_foreigners.php:150 db_structure.php:79 db_structure.php:80
#: db_structure.php:91 db_structure.php:93 db_structure.php:104
-#: db_structure.php:106 libraries/common.lib.php:2822
-#: libraries/common.lib.php:2829 libraries/db_links.inc.php:75
+#: db_structure.php:106 libraries/common.lib.php:2831
+#: libraries/common.lib.php:2838 libraries/db_links.inc.php:75
#: libraries/tbl_links.inc.php:63
msgid "Search"
msgstr "Keresés"
@@ -48,7 +48,7 @@ msgstr "Keresés"
#: db_structure.php:567 js/messages.php:48 libraries/Config.class.php:1046
#: libraries/Theme_Manager.class.php:311
#: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719
-#: libraries/common.lib.php:1333 libraries/common.lib.php:2279
+#: libraries/common.lib.php:1335 libraries/common.lib.php:2288
#: libraries/display_change_password.lib.php:82
#: libraries/display_create_table.lib.php:63
#: libraries/display_export.lib.php:275 libraries/display_import.lib.php:276
@@ -59,9 +59,9 @@ msgstr "Keresés"
#: libraries/sql_query_form.lib.php:552 libraries/tbl_properties.inc.php:782
#: main.php:128 navigation.php:237 pdf_pages.php:292 pdf_pages.php:328
#: pdf_pages.php:530 pmd_pdf.php:116 server_binlog.php:142
-#: server_privileges.php:625 server_privileges.php:1585
-#: server_privileges.php:1932 server_privileges.php:1979
-#: server_privileges.php:2018 server_replication.php:235
+#: server_privileges.php:664 server_privileges.php:1624
+#: server_privileges.php:1971 server_privileges.php:2018
+#: server_privileges.php:2057 server_replication.php:235
#: server_replication.php:318 server_replication.php:341
#: server_synchronize.php:1209 tbl_change.php:330 tbl_change.php:1174
#: tbl_change.php:1211 tbl_indexes.php:254 tbl_operations.php:265
@@ -79,7 +79,7 @@ msgstr "Kulcsnév"
#: browse_foreigners.php:169 browse_foreigners.php:171
#: server_collations.php:55 server_collations.php:67 server_engines.php:59
-#: server_status.php:628
+#: server_status.php:739
msgid "Description"
msgstr "Leírás"
@@ -120,7 +120,7 @@ msgstr "Oszlopnevek"
#: libraries/db_structure.lib.php:60 libraries/export/htmlword.php:245
#: libraries/export/latex.php:360 libraries/export/odt.php:297
#: libraries/export/texytext.php:234 libraries/tbl_properties.inc.php:100
-#: pdf_schema.php:1263 pdf_schema.php:1284 server_privileges.php:2031
+#: pdf_schema.php:1263 pdf_schema.php:1284 server_privileges.php:2070
#: tbl_change.php:287 tbl_change.php:314 tbl_printview.php:143
#: tbl_printview.php:313 tbl_select.php:136 tbl_structure.php:178
#: tbl_structure.php:659 tbl_tracking.php:274 tbl_tracking.php:321
@@ -164,9 +164,9 @@ msgstr "Megjegyzések"
#: libraries/Index.class.php:386 libraries/export/htmlword.php:322
#: libraries/export/latex.php:430 libraries/export/odt.php:368
#: libraries/export/texytext.php:311 libraries/mult_submits.inc.php:263
-#: pdf_schema.php:1344 server_privileges.php:1529 server_privileges.php:1540
-#: server_privileges.php:1850 server_privileges.php:1855
-#: server_privileges.php:2148 sql.php:132 sql.php:194 tbl_printview.php:229
+#: pdf_schema.php:1344 server_privileges.php:1568 server_privileges.php:1579
+#: server_privileges.php:1889 server_privileges.php:1894
+#: server_privileges.php:2187 sql.php:132 sql.php:194 tbl_printview.php:229
#: tbl_structure.php:350 tbl_tracking.php:337 tbl_tracking.php:342
msgid "No"
msgstr "Nem"
@@ -180,9 +180,9 @@ msgstr "Nem"
#: libraries/mult_submits.inc.php:101 libraries/mult_submits.inc.php:106
#: libraries/mult_submits.inc.php:111 libraries/mult_submits.inc.php:262
#: libraries/mult_submits.inc.php:273 pdf_schema.php:1344
-#: server_databases.php:64 server_privileges.php:1526
-#: server_privileges.php:1540 server_privileges.php:1850
-#: server_privileges.php:1853 server_privileges.php:2148 sql.php:193
+#: server_databases.php:64 server_privileges.php:1565
+#: server_privileges.php:1579 server_privileges.php:1889
+#: server_privileges.php:1892 server_privileges.php:2187 sql.php:193
#: tbl_printview.php:229 tbl_structure.php:40 tbl_structure.php:350
#: tbl_tracking.php:335 tbl_tracking.php:340
msgid "Yes"
@@ -279,7 +279,7 @@ msgstr "A másolt adatbázisra váltás"
msgid "BLOB Repository"
msgstr "BLOB-ratár"
-#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1350
+#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1352
#: libraries/server_links.inc.php:49 server_processlist.php:59
#: tbl_tracking.php:596 test/theme.php:101
msgid "Status"
@@ -342,8 +342,8 @@ msgstr "PDF oldalak szerkesztése"
#: db_printview.php:104 db_tracking.php:72 db_tracking.php:157
#: libraries/db_structure.lib.php:46 libraries/export/xml.php:328
-#: libraries/header.inc.php:126 pdf_pages.php:424 server_privileges.php:1626
-#: server_privileges.php:1682 server_privileges.php:1946
+#: libraries/header.inc.php:126 pdf_pages.php:424 server_privileges.php:1665
+#: server_privileges.php:1721 server_privileges.php:1985
#: server_synchronize.php:423 server_synchronize.php:866 tbl_tracking.php:592
#: test/theme.php:75
msgid "Table"
@@ -444,7 +444,7 @@ msgstr "Törlés"
#: db_qbe.php:370 db_qbe.php:451 db_qbe.php:522 db_qbe.php:553
#: libraries/display_import.lib.php:166 libraries/tbl_properties.inc.php:779
-#: server_privileges.php:258 tbl_change.php:1031 tbl_indexes.php:250
+#: server_privileges.php:297 tbl_change.php:1031 tbl_indexes.php:250
#: tbl_select.php:288
msgid "Or"
msgstr "Vagy"
@@ -478,7 +478,7 @@ msgstr "Felhasználandó táblák"
msgid "SQL query on database %s:"
msgstr "SQL-lekérdezés a(z) %s adatbázison:"
-#: db_qbe.php:934 libraries/common.lib.php:1223
+#: db_qbe.php:934 libraries/common.lib.php:1225
msgid "Submit Query"
msgstr "Lekérdezés indítása"
@@ -517,7 +517,7 @@ msgstr "%s találat a(z) %s táblában"
#: db_search.php:267 db_structure.php:77 db_structure.php:78
#: db_structure.php:90 db_structure.php:92 db_structure.php:103
-#: db_structure.php:105 libraries/common.lib.php:2824
+#: db_structure.php:105 libraries/common.lib.php:2833
#: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50
#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:467
msgid "Browse"
@@ -564,26 +564,26 @@ msgstr "Mezőben:"
#: db_structure.php:81 db_structure.php:82 db_structure.php:94
#: db_structure.php:95 db_structure.php:107 db_structure.php:108
-#: libraries/common.lib.php:2823 libraries/sql_query_form.lib.php:334
+#: libraries/common.lib.php:2832 libraries/sql_query_form.lib.php:334
#: libraries/sql_query_form.lib.php:337 libraries/tbl_links.inc.php:76
msgid "Insert"
msgstr "Beszúrás"
#: db_structure.php:83 db_structure.php:96 db_structure.php:109
-#: libraries/common.lib.php:2820 libraries/common.lib.php:2827
+#: libraries/common.lib.php:2829 libraries/common.lib.php:2836
#: libraries/db_links.inc.php:63 libraries/export/htmlword.php:23
#: libraries/export/latex.php:33 libraries/export/latex.php:337
#: libraries/export/odt.php:32 libraries/export/sql.php:60
#: libraries/export/texytext.php:23 libraries/import.lib.php:1104
#: libraries/tbl_links.inc.php:56 pmd_general.php:134
-#: server_privileges.php:554 server_replication.php:315 tbl_tracking.php:269
+#: server_privileges.php:593 server_replication.php:315 tbl_tracking.php:269
msgid "Structure"
msgstr "Szerkezet"
#: db_structure.php:84 db_structure.php:85 db_structure.php:97
#: db_structure.php:98 db_structure.php:110 db_structure.php:111
#: db_structure.php:545 db_structure.php:546 db_tracking.php:91
-#: libraries/Index.class.php:483 libraries/common.lib.php:1654
+#: libraries/Index.class.php:483 libraries/common.lib.php:1656
#: libraries/db_links.inc.php:100 libraries/mult_submits.inc.php:36
#: libraries/mult_submits.inc.php:73 libraries/tbl_links.inc.php:127
#: server_databases.php:352 tbl_structure.php:27 tbl_structure.php:151
@@ -593,7 +593,7 @@ msgstr "Eldobás"
#: db_structure.php:86 db_structure.php:87 db_structure.php:99
#: db_structure.php:100 db_structure.php:112 db_structure.php:113
-#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1653
+#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1655
#: libraries/mult_submits.inc.php:39 libraries/tbl_links.inc.php:105
msgid "Empty"
msgstr "Kiürítés"
@@ -637,7 +637,7 @@ msgstr "Nézet"
#: db_structure.php:485 libraries/db_structure.lib.php:49
#: libraries/server_links.inc.php:70 server_replication.php:33
-#: server_replication.php:164 server_status.php:258
+#: server_replication.php:164 server_status.php:369
msgid "Replication"
msgstr "Többszörözés"
@@ -653,20 +653,20 @@ msgstr "Ezen a MySQL szerveren a(z) %s az alapértelmezett tárolómotor."
#: db_structure.php:524 db_structure.php:541 db_structure.php:542
#: libraries/display_tbl.lib.php:2081 libraries/display_tbl.lib.php:2086
#: libraries/mult_submits.inc.php:16 server_databases.php:346
-#: server_databases.php:351 server_privileges.php:1557 tbl_structure.php:455
+#: server_databases.php:351 server_privileges.php:1596 tbl_structure.php:455
#: tbl_structure.php:464
msgid "With selected:"
msgstr "A kijelöltekkel végzendő művelet:"
#: db_structure.php:527 libraries/display_tbl.lib.php:2076
-#: server_databases.php:348 server_privileges.php:530
-#: server_privileges.php:1560 tbl_structure.php:458
+#: server_databases.php:348 server_privileges.php:569
+#: server_privileges.php:1599 tbl_structure.php:458
msgid "Check All"
msgstr "Mind kijelölése"
#: db_structure.php:531 libraries/display_tbl.lib.php:2077
#: libraries/replication_gui.lib.php:33 server_databases.php:350
-#: server_privileges.php:533 server_privileges.php:1564 tbl_structure.php:462
+#: server_privileges.php:572 server_privileges.php:1603 tbl_structure.php:462
msgid "Uncheck All"
msgstr "Kijelölés törlése"
@@ -704,7 +704,7 @@ msgstr "Tábla elemzése"
#: libraries/display_export.lib.php:83 libraries/display_tbl.lib.php:2094
#: libraries/display_tbl.lib.php:2225 libraries/mult_submits.inc.php:62
#: libraries/server_links.inc.php:84 libraries/tbl_links.inc.php:82
-#: pmd_pdf.php:84 pmd_pdf.php:109 server_privileges.php:1341
+#: pmd_pdf.php:84 pmd_pdf.php:109 server_privileges.php:1380
#: setup/frames/menu.inc.php:22 tbl_row_action.php:59
msgid "Export"
msgstr "Exportálás"
@@ -723,8 +723,8 @@ msgstr "A zárolt táblák kihagyása"
#: libraries/export/sql.php:342 libraries/export/texytext.php:84
#: libraries/export/xml.php:255 libraries/header.inc.php:106
#: libraries/header_printview.inc.php:58 server_databases.php:169
-#: server_privileges.php:1621 server_privileges.php:1682
-#: server_privileges.php:1940 server_processlist.php:56
+#: server_privileges.php:1660 server_privileges.php:1721
+#: server_privileges.php:1979 server_processlist.php:56
#: server_synchronize.php:1179 server_synchronize.php:1183
#: tbl_tracking.php:591 test/theme.php:65
msgid "Database"
@@ -745,8 +745,8 @@ msgstr ""
#: db_tracking.php:77 libraries/Index.class.php:440
#: libraries/db_structure.lib.php:53 server_databases.php:203
-#: server_privileges.php:1503 server_privileges.php:1686
-#: server_privileges.php:2034 tbl_structure.php:187
+#: server_privileges.php:1542 server_privileges.php:1725
+#: server_privileges.php:2073 tbl_structure.php:187
msgid "Action"
msgstr "Művelet"
@@ -955,11 +955,11 @@ msgstr "A hosztnév üres!"
msgid "The user name is empty!"
msgstr "Üres a felhasználónév!"
-#: js/messages.php:44 server_privileges.php:1197 user_password.php:70
+#: js/messages.php:44 server_privileges.php:1236 user_password.php:70
msgid "The password is empty!"
msgstr "Üres a jelszó mező!"
-#: js/messages.php:45 server_privileges.php:1195 user_password.php:73
+#: js/messages.php:45 server_privileges.php:1234 user_password.php:73
msgid "The passwords aren't the same!"
msgstr "Nem egyeznek a jelszavak!"
@@ -1038,8 +1038,8 @@ msgid "Prev"
msgstr "Előző"
#. l10n: Display text for next month link in calendar
-#: js/messages.php:77 libraries/common.lib.php:2344
-#: libraries/common.lib.php:2347 libraries/display_tbl.lib.php:338
+#: js/messages.php:77 libraries/common.lib.php:2353
+#: libraries/common.lib.php:2356 libraries/display_tbl.lib.php:338
#: server_binlog.php:205 server_binlog.php:207 tbl_printview.php:424
#: tbl_structure.php:801
msgid "Next"
@@ -1115,27 +1115,27 @@ msgid "December"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:97 libraries/common.lib.php:1555
+#: js/messages.php:97 libraries/common.lib.php:1557
msgid "Jan"
msgstr "jan."
#. l10n: Short month name
-#: js/messages.php:99 libraries/common.lib.php:1557
+#: js/messages.php:99 libraries/common.lib.php:1559
msgid "Feb"
msgstr "febr."
#. l10n: Short month name
-#: js/messages.php:101 libraries/common.lib.php:1559
+#: js/messages.php:101 libraries/common.lib.php:1561
msgid "Mar"
msgstr "márc."
#. l10n: Short month name
-#: js/messages.php:103 libraries/common.lib.php:1561
+#: js/messages.php:103 libraries/common.lib.php:1563
msgid "Apr"
msgstr "ápr."
#. l10n: Short month name
-#: js/messages.php:105 libraries/common.lib.php:1563
+#: js/messages.php:105 libraries/common.lib.php:1565
#, fuzzy
#| msgid "May"
msgctxt "Short month name"
@@ -1143,37 +1143,37 @@ msgid "May"
msgstr "máj."
#. l10n: Short month name
-#: js/messages.php:107 libraries/common.lib.php:1565
+#: js/messages.php:107 libraries/common.lib.php:1567
msgid "Jun"
msgstr "jún."
#. l10n: Short month name
-#: js/messages.php:109 libraries/common.lib.php:1567
+#: js/messages.php:109 libraries/common.lib.php:1569
msgid "Jul"
msgstr "júl."
#. l10n: Short month name
-#: js/messages.php:111 libraries/common.lib.php:1569
+#: js/messages.php:111 libraries/common.lib.php:1571
msgid "Aug"
msgstr "aug."
#. l10n: Short month name
-#: js/messages.php:113 libraries/common.lib.php:1571
+#: js/messages.php:113 libraries/common.lib.php:1573
msgid "Sep"
msgstr "szept."
#. l10n: Short month name
-#: js/messages.php:115 libraries/common.lib.php:1573
+#: js/messages.php:115 libraries/common.lib.php:1575
msgid "Oct"
msgstr "okt."
#. l10n: Short month name
-#: js/messages.php:117 libraries/common.lib.php:1575
+#: js/messages.php:117 libraries/common.lib.php:1577
msgid "Nov"
msgstr "nov."
#. l10n: Short month name
-#: js/messages.php:119 libraries/common.lib.php:1577
+#: js/messages.php:119 libraries/common.lib.php:1579
msgid "Dec"
msgstr "dec."
@@ -1214,37 +1214,37 @@ msgid "Saturday"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:132 libraries/common.lib.php:1580
+#: js/messages.php:132 libraries/common.lib.php:1582
msgid "Sun"
msgstr "V"
#. l10n: Short week day name
-#: js/messages.php:134 libraries/common.lib.php:1582
+#: js/messages.php:134 libraries/common.lib.php:1584
msgid "Mon"
msgstr "H"
#. l10n: Short week day name
-#: js/messages.php:136 libraries/common.lib.php:1584
+#: js/messages.php:136 libraries/common.lib.php:1586
msgid "Tue"
msgstr "K"
#. l10n: Short week day name
-#: js/messages.php:138 libraries/common.lib.php:1586
+#: js/messages.php:138 libraries/common.lib.php:1588
msgid "Wed"
msgstr "Sze"
#. l10n: Short week day name
-#: js/messages.php:140 libraries/common.lib.php:1588
+#: js/messages.php:140 libraries/common.lib.php:1590
msgid "Thu"
msgstr "Cs"
#. l10n: Short week day name
-#: js/messages.php:142 libraries/common.lib.php:1590
+#: js/messages.php:142 libraries/common.lib.php:1592
msgid "Fri"
msgstr "P"
#. l10n: Short week day name
-#: js/messages.php:144 libraries/common.lib.php:1592
+#: js/messages.php:144 libraries/common.lib.php:1594
msgid "Sat"
msgstr "Szo"
@@ -1393,7 +1393,7 @@ msgid "Comment"
msgstr "Megjegyzés"
#: libraries/Index.class.php:466 libraries/common.lib.php:616
-#: libraries/common.lib.php:1199 libraries/display_tbl.lib.php:1117
+#: libraries/common.lib.php:1201 libraries/display_tbl.lib.php:1117
#: libraries/import.lib.php:1087 libraries/import.lib.php:1111
#: pdf_pages.php:285 setup/frames/index.inc.php:124
#: setup/lib/messages.inc.php:352 tbl_row_action.php:69
@@ -1419,7 +1419,7 @@ msgstr ""
"eltávolítható."
#: libraries/List_Database.class.php:431 libraries/server_links.inc.php:41
-#: server_databases.php:88 server_privileges.php:1621
+#: server_databases.php:88 server_privileges.php:1660
#: setup/lib/messages.inc.php:110 test/theme.php:93
msgid "Databases"
msgstr "Adatbázisok"
@@ -1760,7 +1760,7 @@ msgid "Documentation"
msgstr "Dokumentáció"
#: libraries/common.lib.php:595 libraries/header_printview.inc.php:61
-#: server_processlist.php:60 server_status.php:247
+#: server_processlist.php:60 server_status.php:358
msgid "SQL query"
msgstr "SQL-lekérdezés"
@@ -1776,130 +1776,130 @@ msgstr "Az SQL magyarázata"
msgid "Skip Explain SQL"
msgstr "SQL magyarázat átugrása"
-#: libraries/common.lib.php:1212
+#: libraries/common.lib.php:1214
msgid "Without PHP Code"
msgstr "PHP kód nélkül"
-#: libraries/common.lib.php:1215 setup/lib/messages.inc.php:355
+#: libraries/common.lib.php:1217 setup/lib/messages.inc.php:355
msgid "Create PHP Code"
msgstr "PHP-kód létrehozása"
-#: libraries/common.lib.php:1233 server_status.php:341
+#: libraries/common.lib.php:1235 server_status.php:452
#: setup/lib/messages.inc.php:354
msgid "Refresh"
msgstr "Frissítés"
-#: libraries/common.lib.php:1242
+#: libraries/common.lib.php:1244
msgid "Skip Validate SQL"
msgstr "SQL érvényesítés átugrása"
-#: libraries/common.lib.php:1245 setup/lib/messages.inc.php:356 sql.php:518
+#: libraries/common.lib.php:1247 setup/lib/messages.inc.php:356 sql.php:518
msgid "Validate SQL"
msgstr "SQL érvényesítése"
-#: libraries/common.lib.php:1276
+#: libraries/common.lib.php:1278
msgid "Inline edit of this query"
msgstr ""
-#: libraries/common.lib.php:1278
+#: libraries/common.lib.php:1280
#, fuzzy
#| msgid "Engines"
msgid "Inline"
msgstr "Motorok"
-#: libraries/common.lib.php:1332 libraries/common.lib.php:1347
+#: libraries/common.lib.php:1334 libraries/common.lib.php:1349
msgid "Profiling"
msgstr "Adatgyűjtés"
-#: libraries/common.lib.php:1351 libraries/tbl_triggers.lib.php:28
+#: libraries/common.lib.php:1353 libraries/tbl_triggers.lib.php:28
#: server_processlist.php:58
msgid "Time"
msgstr "Idő"
#. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "B"
msgstr "Bájt"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "KiB"
msgstr "KB"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "MiB"
msgstr "MB"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "GiB"
msgstr "GB"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "TiB"
msgstr "TB"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "PiB"
msgstr "PB"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "EiB"
msgstr "EB"
#. l10n: Thousands separator
-#: libraries/common.lib.php:1417
+#: libraries/common.lib.php:1419
msgid ","
msgstr " "
#. l10n: Decimal separator
-#: libraries/common.lib.php:1419
+#: libraries/common.lib.php:1421
msgid "."
msgstr "."
#. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string
-#: libraries/common.lib.php:1596
+#: libraries/common.lib.php:1598
#: libraries/transformations/text_plain__dateformat.inc.php:34
msgid "%B %d, %Y at %I:%M %p"
msgstr "%Y. %B %d. %H:%M"
-#: libraries/common.lib.php:1898
+#: libraries/common.lib.php:1907
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "%s nap, %s óra, %s perc, %s másodperc"
-#: libraries/common.lib.php:2313 libraries/common.lib.php:2316
-#: libraries/display_tbl.lib.php:290 server_status.php:608
+#: libraries/common.lib.php:2322 libraries/common.lib.php:2325
+#: libraries/display_tbl.lib.php:290 server_status.php:719
msgid "Begin"
msgstr "A tetejére"
-#: libraries/common.lib.php:2314 libraries/common.lib.php:2317
+#: libraries/common.lib.php:2323 libraries/common.lib.php:2326
#: libraries/display_tbl.lib.php:291 server_binlog.php:168
#: server_binlog.php:170
msgid "Previous"
msgstr "Előző"
-#: libraries/common.lib.php:2345 libraries/common.lib.php:2348
+#: libraries/common.lib.php:2354 libraries/common.lib.php:2357
#: libraries/display_tbl.lib.php:353
msgid "End"
msgstr "Vége"
-#: libraries/common.lib.php:2421
+#: libraries/common.lib.php:2430
#, php-format
msgid "Jump to database "%s"."
msgstr "Ugrás a(z) "%s" adatbázishoz."
-#: libraries/common.lib.php:2441
+#: libraries/common.lib.php:2450
#, 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/common.lib.php:2821 libraries/common.lib.php:2828
+#: libraries/common.lib.php:2830 libraries/common.lib.php:2837
#: libraries/db_links.inc.php:68 libraries/export/sql.php:25
#: libraries/import/sql.php:18 libraries/server_links.inc.php:45
#: libraries/tbl_links.inc.php:60 querywindow.php:99 test/theme.php:97
msgid "SQL"
msgstr "SQL"
-#: libraries/common.lib.php:2830 libraries/db_links.inc.php:104
+#: libraries/common.lib.php:2839 libraries/db_links.inc.php:104
#: libraries/tbl_links.inc.php:95 libraries/tbl_links.inc.php:117
#: view_operations.php:89
msgid "Operations"
@@ -1955,8 +1955,8 @@ msgid "Import"
msgstr "Importálás"
#: libraries/db_links.inc.php:111 libraries/server_links.inc.php:66
-#: server_privileges.php:72 server_privileges.php:1683
-#: server_privileges.php:2032 test/theme.php:117
+#: server_privileges.php:111 server_privileges.php:1722
+#: server_privileges.php:2071 test/theme.php:117
msgid "Privileges"
msgstr "Jogok"
@@ -2006,22 +2006,22 @@ msgid "Change password"
msgstr "Jelszó megváltoztatása"
#: libraries/display_change_password.lib.php:35
-#: libraries/replication_gui.lib.php:345 server_privileges.php:768
+#: libraries/replication_gui.lib.php:345 server_privileges.php:807
msgid "No Password"
msgstr "Nincs jelszó"
#: libraries/display_change_password.lib.php:41
#: libraries/replication_gui.lib.php:59 libraries/replication_gui.lib.php:60
#: libraries/replication_gui.lib.php:335 libraries/replication_gui.lib.php:339
-#: libraries/replication_gui.lib.php:349 server_privileges.php:757
-#: server_privileges.php:761 server_privileges.php:772
-#: server_privileges.php:1499 server_synchronize.php:1175
+#: libraries/replication_gui.lib.php:349 server_privileges.php:796
+#: server_privileges.php:800 server_privileges.php:811
+#: server_privileges.php:1538 server_synchronize.php:1175
msgid "Password"
msgstr "Jelszó"
#: libraries/display_change_password.lib.php:46
#: libraries/replication_gui.lib.php:353 libraries/replication_gui.lib.php:356
-#: server_privileges.php:776 server_privileges.php:779
+#: server_privileges.php:815 server_privileges.php:818
msgid "Re-type"
msgstr "Újraírás"
@@ -2036,12 +2036,12 @@ msgid "MySQL 4.0 compatible"
msgstr "MySQL 4.0 kompatibilis"
#: libraries/display_change_password.lib.php:72
-#: libraries/replication_gui.lib.php:360 server_privileges.php:783
+#: libraries/replication_gui.lib.php:360 server_privileges.php:822
msgid "Generate Password"
msgstr "Jelszó generálása"
#: libraries/display_change_password.lib.php:75
-#: libraries/replication_gui.lib.php:363 server_privileges.php:786
+#: libraries/replication_gui.lib.php:363 server_privileges.php:825
msgid "Generate"
msgstr "Generálás"
@@ -2054,8 +2054,8 @@ msgstr "Új adatbázis létrehozása"
msgid "Create"
msgstr "Létrehozás"
-#: libraries/display_create_database.lib.php:40 server_privileges.php:74
-#: server_privileges.php:1388 server_replication.php:35
+#: libraries/display_create_database.lib.php:40 server_privileges.php:113
+#: server_privileges.php:1427 server_replication.php:35
msgid "No Privileges"
msgstr "Nincs jog"
@@ -2148,7 +2148,7 @@ msgstr "Tömörítés"
#: libraries/display_export.lib.php:240 libraries/display_import.lib.php:197
#: libraries/display_import.lib.php:210 libraries/display_tbl.lib.php:530
#: libraries/export/sql.php:868 libraries/tbl_properties.inc.php:575
-#: server_privileges.php:1836 server_processlist.php:75
+#: server_privileges.php:1875 server_processlist.php:75
msgid "None"
msgstr "Nincs"
@@ -2479,7 +2479,7 @@ msgstr ""
msgid "Buffer Pool"
msgstr "Pufferkészlet"
-#: libraries/engines/innodb.lib.php:145 server_status.php:306
+#: libraries/engines/innodb.lib.php:145 server_status.php:417
msgid "InnoDB Status"
msgstr "InnoDB állapota"
@@ -2488,8 +2488,8 @@ msgid "Buffer Pool Usage"
msgstr "Pufferkészlet kihasználtsága"
#: libraries/engines/innodb.lib.php:194 server_databases.php:137
-#: server_databases.php:305 server_status.php:414 server_status.php:475
-#: server_status.php:496 tbl_printview.php:351 tbl_structure.php:696
+#: server_databases.php:305 server_status.php:525 server_status.php:586
+#: server_status.php:607 tbl_printview.php:351 tbl_structure.php:696
msgid "Total"
msgstr "Összesen"
@@ -2851,7 +2851,7 @@ msgstr "Microsoft Word 2000"
#: libraries/export/latex.php:201 libraries/export/odt.php:48
#: libraries/export/sql.php:106 libraries/export/sql.php:868
#: libraries/export/texytext.php:27 server_databases.php:127
-#: server_privileges.php:537 server_replication.php:316 tbl_printview.php:317
+#: server_privileges.php:576 server_replication.php:316 tbl_printview.php:317
#: tbl_structure.php:665
msgid "Data"
msgstr "Adatok"
@@ -2901,9 +2901,9 @@ msgstr "MIME-típus"
#: libraries/export/xml.php:102 libraries/header_printview.inc.php:57
#: libraries/replication_gui.lib.php:63 libraries/replication_gui.lib.php:174
#: libraries/replication_gui.lib.php:269 libraries/replication_gui.lib.php:272
-#: libraries/replication_gui.lib.php:329 server_privileges.php:692
-#: server_privileges.php:695 server_privileges.php:751
-#: server_privileges.php:1498 server_privileges.php:2030
+#: libraries/replication_gui.lib.php:329 server_privileges.php:731
+#: server_privileges.php:734 server_privileges.php:790
+#: server_privileges.php:1537 server_privileges.php:2069
#: server_processlist.php:55 server_synchronize.php:1159
msgid "Host"
msgstr "Hoszt"
@@ -3262,867 +3262,6 @@ msgstr "Nincs"
msgid "Convert to Kana"
msgstr ""
-#. l10n: Text direction, use either ltr or rtl
-#: libraries/messages.inc.php:19
-msgid "ltr"
-msgstr "ltr"
-
-#: libraries/messages.inc.php:21
-msgid "Content of table __TABLE__"
-msgstr "__TABLE__ tábla tartalma"
-
-#: libraries/messages.inc.php:22
-msgid "(continued)"
-msgstr "(folytatás)"
-
-#: libraries/messages.inc.php:23
-msgid "Structure of table __TABLE__"
-msgstr "__TABLE__ tábla szerkezete"
-
-#: libraries/messages.inc.php:25 server_privileges.php:227
-msgid "Includes all privileges except GRANT."
-msgstr "A GRANT kivételével minden jogot tartalmaz."
-
-#: libraries/messages.inc.php:26 server_privileges.php:153
-#: server_privileges.php:476
-msgid "Allows altering the structure of existing tables."
-msgstr "Engedélyezi a létező táblák szerkezetének megváltoztatását."
-
-#: libraries/messages.inc.php:27 server_privileges.php:169
-#: server_privileges.php:482
-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/messages.inc.php:28 server_privileges.php:145
-#: server_privileges.php:475
-msgid "Allows creating new databases and tables."
-msgstr "Engedélyezi új adatbázisok és táblák készítését."
-
-#: libraries/messages.inc.php:29 server_privileges.php:168
-#: server_privileges.php:481
-msgid "Allows creating stored routines."
-msgstr "Engedélyezi tárolt eljárások létrehozását."
-
-#: libraries/messages.inc.php:30 server_privileges.php:475
-msgid "Allows creating new tables."
-msgstr "Engedélyezi új táblák készítését."
-
-#: libraries/messages.inc.php:31 server_privileges.php:156
-#: server_privileges.php:479
-msgid "Allows creating temporary tables."
-msgstr "Engedélyezi ideiglenes táblák készítését."
-
-#: libraries/messages.inc.php:32 server_privileges.php:170
-#: server_privileges.php:515
-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/messages.inc.php:33 server_privileges.php:160
-#: server_privileges.php:164 server_privileges.php:487
-#: server_privileges.php:491
-msgid "Allows creating new views."
-msgstr "Engedélyezi új nézetek létrehozását."
-
-#: libraries/messages.inc.php:34 server_privileges.php:144
-#: server_privileges.php:467
-msgid "Allows deleting data."
-msgstr "Engedélyezi az adatok törlését."
-
-#: libraries/messages.inc.php:35 server_privileges.php:146
-#: server_privileges.php:478
-msgid "Allows dropping databases and tables."
-msgstr "Engedélyezi az adatbázisok és táblák eldobását."
-
-#: libraries/messages.inc.php:36 server_privileges.php:478
-msgid "Allows dropping tables."
-msgstr "Engedélyezi a táblák eldobását."
-
-#: libraries/messages.inc.php:37 server_privileges.php:161
-#: server_privileges.php:495
-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/messages.inc.php:38 server_privileges.php:171
-#: server_privileges.php:483
-msgid "Allows executing stored routines."
-msgstr "Engedélyezi a tárolt eljárások végrehajtását."
-
-#: libraries/messages.inc.php:39 server_privileges.php:150
-#: server_privileges.php:470
-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/messages.inc.php:40 server_privileges.php:501
-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/messages.inc.php:41 server_privileges.php:152
-#: server_privileges.php:477
-msgid "Allows creating and dropping indexes."
-msgstr "Engedélyezi indexek készítését és törlését."
-
-#: libraries/messages.inc.php:42 server_privileges.php:142
-#: server_privileges.php:403 server_privileges.php:465
-msgid "Allows inserting and replacing data."
-msgstr "Engedélyezi az adatok beírását és megváltoztatását."
-
-#: libraries/messages.inc.php:43 server_privileges.php:157
-#: server_privileges.php:510
-msgid "Allows locking tables for the current thread."
-msgstr "A jelenlegi szálon engedélyezi a táblák blokkolását."
-
-#: libraries/messages.inc.php:44 server_privileges.php:607
-#: server_privileges.php:609
-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/messages.inc.php:45 server_privileges.php:595
-#: server_privileges.php:597
-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/messages.inc.php:46 server_privileges.php:601
-#: server_privileges.php:603
-msgid ""
-"Limits the number of commands that change any table or database the user may "
-"execute per hour."
-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/messages.inc.php:47 server_privileges.php:613
-#: server_privileges.php:615
-msgid "Limits the number of simultaneous connections the user may have."
-msgstr "Korlátozza a felhasználó egyidejű kapcsolatainak számát."
-
-#: libraries/messages.inc.php:48 server_privileges.php:149
-#: server_privileges.php:505
-msgid "Allows viewing processes of all users"
-msgstr "Az összes felhasználó folyamatainak megtekintését engedélyezi"
-
-#: libraries/messages.inc.php:49 server_privileges.php:151
-#: server_privileges.php:409 server_privileges.php:511
-msgid "Has no effect in this MySQL version."
-msgstr "Nem valósult meg ebben a MySQL verzióban"
-
-#: libraries/messages.inc.php:50 server_privileges.php:147
-#: server_privileges.php:506
-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/messages.inc.php:51 server_privileges.php:159
-#: server_privileges.php:513
-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/messages.inc.php:52 server_privileges.php:158
-#: server_privileges.php:514
-msgid "Needed for the replication slaves."
-msgstr "A kisegítő helyek másolásához szükséges."
-
-#: libraries/messages.inc.php:53 server_privileges.php:141
-#: server_privileges.php:400 server_privileges.php:464
-msgid "Allows reading data."
-msgstr "Engedélyezi az adatok olvasását."
-
-#: libraries/messages.inc.php:54 server_privileges.php:154
-#: server_privileges.php:508
-msgid "Gives access to the complete list of databases."
-msgstr "Hozzáférést ad az adatbázisok teljes listájához."
-
-#: libraries/messages.inc.php:55 server_privileges.php:165
-#: server_privileges.php:167 server_privileges.php:480
-msgid "Allows performing SHOW CREATE VIEW queries."
-msgstr "Engedélyezi SHOW CREATE VIEW lekérdezések végrehajtását."
-
-#: libraries/messages.inc.php:56 server_privileges.php:148
-#: server_privileges.php:507
-msgid "Allows shutting down the server."
-msgstr "Engedélyezi a szerver leállítását."
-
-#: libraries/messages.inc.php:57 server_privileges.php:155
-#: server_privileges.php:504
-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 ""
-"Akkor is engedélyezi a kapcsolódást, ha a kapcsolatok száma elérte a "
-"maximumot. A legfontosabb adminisztrációs műveletekhez szükséges, mint a "
-"globális változók beállítása, vagy más felhasználók folyamatainak "
-"megszüntetése."
-
-#: libraries/messages.inc.php:58 server_privileges.php:162
-#: server_privileges.php:496
-msgid "Allows creating and dropping triggers"
-msgstr "Eseményindítók létrehozásának és eldobásának engedélyezése"
-
-#: libraries/messages.inc.php:59 server_privileges.php:143
-#: server_privileges.php:406 server_privileges.php:466
-msgid "Allows changing data."
-msgstr "Engedélyezi az adatok megváltoztatását."
-
-#: libraries/messages.inc.php:60 server_privileges.php:221
-msgid "No privileges."
-msgstr "Nincsenek jogok."
-
-#: libraries/messages.inc.php:62
-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 ""
-"A tranzakciók száma, melyek az ideiglenes bináris naplógyorsítótárat "
-"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/messages.inc.php:63
-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/messages.inc.php:64
-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 "
-"to increase the tmp_table_size value to cause temporary tables to be memory-"
-"based instead of disk-based."
-msgstr ""
-"A szerver által az utasítások végrehajtásakor a lemezen automatikusan "
-"létrehozott ideiglenes táblák száma. Ha a Created_tmp_disk_tables értéke "
-"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/messages.inc.php:65
-msgid "How many temporary files mysqld has created."
-msgstr "Ennyi ideiglenes fájlt hozott létre a mysqld."
-
-#: libraries/messages.inc.php:66
-msgid ""
-"The number of in-memory temporary tables created automatically by the server "
-"while executing statements."
-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/messages.inc.php:67
-msgid ""
-"The number of rows written with INSERT DELAYED for which some error occurred "
-"(probably duplicate key)."
-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/messages.inc.php:68
-msgid ""
-"The number of INSERT DELAYED handler threads in use. Every different table "
-"on which one uses INSERT DELAYED gets its own thread."
-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/messages.inc.php:69
-msgid "The number of INSERT DELAYED rows written."
-msgstr "A beírt INSERT DELAYED sorok száma."
-
-#: libraries/messages.inc.php:70
-msgid "The number of executed FLUSH statements."
-msgstr "A végrehajtott FLUSH utasítások száma."
-
-#: libraries/messages.inc.php:71
-msgid "The number of internal COMMIT statements."
-msgstr "A belső COMMIT utasítások száma."
-
-#: libraries/messages.inc.php:72
-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/messages.inc.php:73
-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 ""
-"A MySQL szerver meg tudja kérdezni az NDB fürt tárolómotortól, hogy ismeri a "
-"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/messages.inc.php:74
-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 ""
-"Az első bejegyzés egy indexből történő beolvasásainak száma. Ha ez magas, "
-"akkor ez azt sugallja, hogy a szerver sok teljes indexvizsgálatot végez; "
-"például a SELECT col1 FROM foo azt feltételezi, hogy a col1 kerül "
-"indexelésre."
-
-#: libraries/messages.inc.php:75
-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 ""
-"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/messages.inc.php:76
-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 ""
-"A kulcssorrendben a következő sort beolvasandó kérések száma. Ez növekszik, "
-"ha Ön tartománymegkötéses index oszlopot kérdez le, vagy ha indexvizsgálatot "
-"végez."
-
-#: libraries/messages.inc.php:77
-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 ""
-"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/messages.inc.php:78
-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 "
-"probably have a lot of queries that require MySQL to scan whole tables or "
-"you have joins that don't use keys properly."
-msgstr ""
-"Egy sor beolvasásához szükséges kérések száma egy rögzített pozíció alapján. "
-"Ez magas, ha Ön sok, az eredmény rendezését igénylő lekérdezést hajt végre. "
-"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/messages.inc.php:79
-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 "
-"tables are not properly indexed or that your queries are not written to take "
-"advantage of the indexes you have."
-msgstr ""
-"Az adatfájlban lévő következő sor beolvasásához szükséges kérések száma. Ez "
-"magas, ha Ön sokszor vizsgálja át a táblákat. Ez általában azt javasolja, "
-"hogy a táblák nem megfelelően indexeltek, vagy a lekérdezések nincsenek írva "
-"az indexek kihasználása végett."
-
-#: libraries/messages.inc.php:80
-msgid "The number of internal ROLLBACK statements."
-msgstr "A belső ROLLBACK utasítások száma."
-
-#: libraries/messages.inc.php:81
-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/messages.inc.php:82
-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/messages.inc.php:83
-msgid "The number of pages containing data (dirty or clean)."
-msgstr "Az adatokat tartalmazó lapok száma (piszkos vagy tiszta)."
-
-#: libraries/messages.inc.php:84
-msgid "The number of pages currently dirty."
-msgstr "A jelenleg piszkos lapok száma."
-
-#: libraries/messages.inc.php:85
-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/messages.inc.php:86
-msgid "The number of free pages."
-msgstr "A szabad lapok száma."
-
-#: libraries/messages.inc.php:87
-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 ""
-"Az InnoDB pufferkészletében zárolt oldalak száma. Ezek az épp beolvasás vagy "
-"írás alatt lévő oldalak, melyeket bizonyos más okok miatt nem lehet kiírni "
-"vagy eltávolítani."
-
-#: libraries/messages.inc.php:88
-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 "
-"be calculated as Innodb_buffer_pool_pages_total - "
-"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data."
-msgstr ""
-"A foglalt oldalak száma, mert le lettek foglalva adminisztratív "
-"többletterheléshez, mint például a sorzárolások vagy az adaptív "
-"kivonatindex. 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/messages.inc.php:89
-msgid "Total size of buffer pool, in pages."
-msgstr "A pufferkészlet teljes mérete lapokban."
-
-#: libraries/messages.inc.php:90
-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 ""
-"Az InnoDB által kezdeményezett \"véletlenszerű\" előreolvasások száma. Ez "
-"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/messages.inc.php:91
-msgid ""
-"The number of sequential read-aheads InnoDB initiated. This happens when "
-"InnoDB does a sequential full table scan."
-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/messages.inc.php:92
-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/messages.inc.php:93
-msgid ""
-"The number of logical reads that InnoDB could not satisfy from buffer pool "
-"and had to do a single-page read."
-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/messages.inc.php:94
-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 "
-"available, it's necessary to wait for pages to be flushed first. This "
-"counter counts instances of these waits. If the buffer pool size was set "
-"properly, this value should be small."
-msgstr ""
-"Normál esetben az InnoDB pufferkészletébe írások a háttérben történnek. Ha "
-"viszont be kell olvasni vagy létre kell hozni egy oldalt, s nincs több "
-"tiszta oldal, akkor várni kell az előbb kiírandó oldalakra. Ez a számláló "
-"számolja ezeknek a várakozásoknak az előfordulásait. Ha a pufferkészlet "
-"méretét megfelelően állították be, akkor ennek az értéknek kicsinek kell "
-"lennie."
-
-#: libraries/messages.inc.php:95
-msgid "The number writes done to the InnoDB buffer pool."
-msgstr "Az InnoDB pufferkészletébe történt írások száma."
-
-#: libraries/messages.inc.php:96
-msgid "The number of fsync() operations so far."
-msgstr "Az fsync() műveletek eddigi száma."
-
-#: libraries/messages.inc.php:97
-msgid "The current number of pending fsync() operations."
-msgstr "A folyamatban lévő fsync() műveletek száma."
-
-#: libraries/messages.inc.php:98
-msgid "The current number of pending reads."
-msgstr "A folyamatban lévő olvasások száma."
-
-#: libraries/messages.inc.php:99
-msgid "The current number of pending writes."
-msgstr "A folyamatban lévő írások száma."
-
-#: libraries/messages.inc.php:100
-msgid "The amount of data read so far, in bytes."
-msgstr "Az eddig beolvasott adatok mennyisége bájtban."
-
-#: libraries/messages.inc.php:101
-msgid "The total number of data reads."
-msgstr "Az összes beolvasott adat."
-
-#: libraries/messages.inc.php:102
-msgid "The total number of data writes."
-msgstr "Az összes írott adat."
-
-#: libraries/messages.inc.php:103
-msgid "The amount of data written so far, in bytes."
-msgstr "Az összes írott adat, bájtban."
-
-#: libraries/messages.inc.php:104
-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/messages.inc.php:105
-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/messages.inc.php:106
-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 ""
-"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/messages.inc.php:107
-msgid "The number of log write requests."
-msgstr "A naplóírási kérések száma."
-
-#: libraries/messages.inc.php:108
-msgid "The number of physical writes to the log file."
-msgstr "A naplófájlba történt fizikai írások száma."
-
-#: libraries/messages.inc.php:109
-msgid "The number of fsync() writes done to the log file."
-msgstr "A naplófájlba történt fsyncs írások száma."
-
-#: libraries/messages.inc.php:110
-msgid "The number of pending log file fsyncs."
-msgstr "A folyamatban lévő naplófájl fsync-ek száma."
-
-#: libraries/messages.inc.php:111
-msgid "Pending log file writes."
-msgstr "A folyamatban lévő naplófájl írások száma."
-
-#: libraries/messages.inc.php:112
-msgid "The number of bytes written to the log file."
-msgstr "A naplófájlba írt bájtok száma."
-
-#: libraries/messages.inc.php:113
-msgid "The number of pages created."
-msgstr "A létrehozott lapok száma."
-
-#: libraries/messages.inc.php:114
-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 ""
-"A belefordított InnoDB oldal mérete (alapértelmezés: 16 KB). Sok érték "
-"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/messages.inc.php:115
-msgid "The number of pages read."
-msgstr "A beolvasott lapok száma."
-
-#: libraries/messages.inc.php:116
-msgid "The number of pages written."
-msgstr "Az írott lapok száma."
-
-#: libraries/messages.inc.php:117
-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/messages.inc.php:118
-msgid "The average time to acquire a row lock, in milliseconds."
-msgstr "A sorzároláshoz szükséges átlag időtartam, milliszekundumban."
-
-#: libraries/messages.inc.php:119
-msgid "The total time spent in acquiring row locks, in milliseconds."
-msgstr "A sorzárolásokra fordított összes idő, milliszekundumban."
-
-#: libraries/messages.inc.php:120
-msgid "The maximum time to acquire a row lock, in milliseconds."
-msgstr "A sorzároláshoz szükséges időtartam, milliszekundumban."
-
-#: libraries/messages.inc.php:121
-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/messages.inc.php:122
-msgid "The number of rows deleted from InnoDB tables."
-msgstr "Az InnoDB táblákból törölt sorok száma."
-
-#: libraries/messages.inc.php:123
-msgid "The number of rows inserted in InnoDB tables."
-msgstr "Az InnoDB táblákba beszúrt sorok száma."
-
-#: libraries/messages.inc.php:124
-msgid "The number of rows read from InnoDB tables."
-msgstr "Az InnoDB táblákból beolvasott sorok száma."
-
-#: libraries/messages.inc.php:125
-msgid "The number of rows updated in InnoDB tables."
-msgstr "Az InnoDB táblákban frissített sorok száma."
-
-#: libraries/messages.inc.php:126
-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 ""
-"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/messages.inc.php:127
-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 ""
-"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/messages.inc.php:128
-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 ""
-"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/messages.inc.php:129
-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/messages.inc.php:130
-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 ""
-"Egy kulcsblokk lemezről történő fizikai beolvasásainak száma. Ha a Key_reads "
-"nagy, akkor valószínűleg túl kicsi a key_buffer_size értéke. A gyorsítótár "
-"sikertelen találatainak aránya a Key_reads/Key_read_requests alapján "
-"számítható ki."
-
-#: libraries/messages.inc.php:131
-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/messages.inc.php:132
-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/messages.inc.php:133
-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 ""
-"Az utoljára lefordított lekérdezés összköltsége a lekérdezésoptimalizáló "
-"számítása szerint. Ugyanazon lekérdezés különféle lekérdezési tervei "
-"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/messages.inc.php:134
-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/messages.inc.php:135
-msgid ""
-"The number of tables that have been opened. If opened tables is big, your "
-"table cache value is probably too small."
-msgstr ""
-"Az eddig megnyitott táblák száma. Ha a megnyitott táblák nagy,akkor "
-"valószínűleg túl kicsi a táblagyorsítótár értéke."
-
-#: libraries/messages.inc.php:136
-msgid "The number of files that are open."
-msgstr "A megnyitott fájlok száma."
-
-#: libraries/messages.inc.php:137
-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/messages.inc.php:138
-msgid "The number of tables that are open."
-msgstr "A megnyitott táblák száma."
-
-#: libraries/messages.inc.php:139
-msgid "The number of free memory blocks in query cache."
-msgstr "A szabad memóriablokkok száma a lekérdezési gyorsítótárban."
-
-#: libraries/messages.inc.php:140
-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/messages.inc.php:141
-msgid "The number of cache hits."
-msgstr "A gyorsítótár találatok száma."
-
-#: libraries/messages.inc.php:142
-msgid "The number of queries added to the cache."
-msgstr "A gyorsítótárhoz adott lekérdezések száma."
-
-#: libraries/messages.inc.php:143
-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 "
-"cache size. The query cache uses a least recently used (LRU) strategy to "
-"decide which queries to remove from the cache."
-msgstr ""
-"A lekérdezések száma, melyek eltávolításra kerültek a gyorsítórából az új "
-"lekérdezések gyorsítótárazásához történő memória felszabadításához. Ez az "
-"információ a lekérdezési gyorsítótár méretének szabályozásában segíthet. A "
-"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/messages.inc.php:144
-msgid ""
-"The number of non-cached queries (not cachable, or not cached due to the "
-"query_cache_type setting)."
-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/messages.inc.php:145
-msgid "The number of queries registered in the cache."
-msgstr "A gyorsítótárban bejegyzett lekérdezések száma."
-
-#: libraries/messages.inc.php:146
-msgid "The total number of blocks in the query cache."
-msgstr "A blokkok száma a lekérdezési gyorsítótárban."
-
-#: libraries/messages.inc.php:147
-msgctxt "$strShowStatusReset"
-msgid "Reset"
-msgstr "Törlés"
-
-#: libraries/messages.inc.php:148
-msgid "The status of failsafe replication (not yet implemented)."
-msgstr "A hibabiztos többszörözések állapota (megvalósításra vár)."
-
-#: libraries/messages.inc.php:149
-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 ""
-"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/messages.inc.php:150
-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/messages.inc.php:151
-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 ""
-"A kulcsok nélküli illesztések száma, melyek minden sor után kulcs "
-"használatát ellenőrzik. (Ha ez nem 0, akkor ellenőrizze körültekintően a "
-"táblák indexeit.))"
-
-#: libraries/messages.inc.php:152
-msgid ""
-"The number of joins that used ranges on the first table. (It's normally not "
-"critical even if this is big.)"
-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/messages.inc.php:153
-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/messages.inc.php:154
-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/messages.inc.php:155
-msgid ""
-"Total (since startup) number of times the replication slave SQL thread has "
-"retried transactions."
-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/messages.inc.php:156
-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/messages.inc.php:157
-msgid ""
-"The number of threads that have taken more than slow_launch_time seconds to "
-"create."
-msgstr ""
-"A szálak száma, melyek létrehozásához slow_launch_time másodpercnél többre "
-"volt szükség."
-
-#: libraries/messages.inc.php:158
-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/messages.inc.php:159
-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 ""
-"Az egyesítési menetek száma, amit a rendezési algoritmusnak el kellett "
-"végeznie. Ha ez az érték nagy, akkor gondolja meg a sort_buffer_size "
-"rendszerváltozó értékének növelését."
-
-#: libraries/messages.inc.php:160
-msgid "The number of sorts that were done with ranges."
-msgstr "A tartományokkal végzett rendezések száma."
-
-#: libraries/messages.inc.php:161
-msgid "The number of sorted rows."
-msgstr "Rendezett sorok száma."
-
-#: libraries/messages.inc.php:162
-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/messages.inc.php:163
-msgid "The number of times that a table lock was acquired immediately."
-msgstr "Ennyiszer nem lehetett azonnal megszerezni egy táblazárolást."
-
-#: libraries/messages.inc.php:164
-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 "
-"should first optimize your queries, and then either split your table or "
-"tables or use replication."
-msgstr ""
-"Ennyiszer nem lehetett azonnal megszerezni egy táblazárolást, s várni "
-"kellett. Ha ez magas, s Önnek teljesítményproblémái vannak, akkor 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/messages.inc.php:165
-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 ""
-"A szálak száma a szál gyorsítótárban. A gyorsítótár találati aránya a "
-"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/messages.inc.php:166
-msgid "The number of currently open connections."
-msgstr "A jelenleg megnyitott kapcsolatok száma."
-
-#: libraries/messages.inc.php:167
-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 "
-"doesn't give a notable performance improvement if you have a good thread "
-"implementation.)"
-msgstr ""
-"A kapcsolatok kezeléséhez létrehozott szálak száma. Ha a Threads_created "
-"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/messages.inc.php:168
-msgid "The number of threads that are not sleeping."
-msgstr "A nem alvó szálak száma."
-
#: libraries/mult_submits.inc.php:76 libraries/tbl_properties.inc.php:513
#: tbl_structure.php:29 tbl_structure.php:153 tbl_structure.php:157
#: tbl_structure.php:473
@@ -4442,8 +3581,8 @@ msgstr ""
#: libraries/replication_gui.lib.php:55 libraries/replication_gui.lib.php:56
#: libraries/replication_gui.lib.php:249 libraries/replication_gui.lib.php:252
-#: libraries/replication_gui.lib.php:259 server_privileges.php:672
-#: server_privileges.php:675 server_privileges.php:682
+#: libraries/replication_gui.lib.php:259 server_privileges.php:711
+#: server_privileges.php:714 server_privileges.php:721
#: server_synchronize.php:1171
msgid "User name"
msgstr "Felhasználónév"
@@ -4462,11 +3601,11 @@ msgid "Slave status"
msgstr "Másodlagos állapot"
#: libraries/replication_gui.lib.php:114 libraries/sql_query_form.lib.php:445
-#: server_status.php:626 server_variables.php:52
+#: server_status.php:737 server_variables.php:52
msgid "Variable"
msgstr "Változó"
-#: libraries/replication_gui.lib.php:115 server_status.php:627
+#: libraries/replication_gui.lib.php:115 server_status.php:738
#: tbl_change.php:324 tbl_printview.php:370 tbl_select.php:139
#: tbl_structure.php:729
msgid "Value"
@@ -4486,34 +3625,34 @@ msgstr ""
msgid "Add slave replication user"
msgstr ""
-#: libraries/replication_gui.lib.php:254 server_privileges.php:677
+#: libraries/replication_gui.lib.php:254 server_privileges.php:716
msgid "Any user"
msgstr "Bármilyen felhasználó"
#: libraries/replication_gui.lib.php:255 libraries/replication_gui.lib.php:323
-#: libraries/replication_gui.lib.php:346 server_privileges.php:678
-#: server_privileges.php:745 server_privileges.php:769
-#: server_privileges.php:1889 server_privileges.php:1919
+#: libraries/replication_gui.lib.php:346 server_privileges.php:717
+#: server_privileges.php:784 server_privileges.php:808
+#: server_privileges.php:1928 server_privileges.php:1958
msgid "Use text field"
msgstr "Szöveges mező használata"
-#: libraries/replication_gui.lib.php:302 server_privileges.php:725
+#: libraries/replication_gui.lib.php:302 server_privileges.php:764
msgid "Any host"
msgstr "Bármilyen hoszt"
-#: libraries/replication_gui.lib.php:306 server_privileges.php:729
+#: libraries/replication_gui.lib.php:306 server_privileges.php:768
msgid "Local"
msgstr "Helyi"
-#: libraries/replication_gui.lib.php:312 server_privileges.php:734
+#: libraries/replication_gui.lib.php:312 server_privileges.php:773
msgid "This Host"
msgstr "Ez a hoszt"
-#: libraries/replication_gui.lib.php:318 server_privileges.php:740
+#: libraries/replication_gui.lib.php:318 server_privileges.php:779
msgid "Use Host Table"
msgstr "Hoszt-tábla használata"
-#: libraries/replication_gui.lib.php:331 server_privileges.php:753
+#: libraries/replication_gui.lib.php:331 server_privileges.php:792
msgid ""
"When Host table is used, this field is ignored and values stored in Host "
"table are used instead."
@@ -4521,8 +3660,25 @@ msgstr ""
"A Host tábla használatakor ez a mező mellőzésre kerül, s a Host táblában "
"lévő értékek kerülnek felhaszsnálásra."
-#: libraries/select_lang.lib.php:480 libraries/select_lang.lib.php:486
-#: libraries/select_lang.lib.php:492
+#. l10n: Text direction, use either ltr or rtl
+#: libraries/select_lang.lib.php:491
+msgid "ltr"
+msgstr "ltr"
+
+#: libraries/select_lang.lib.php:493
+msgid "Content of table __TABLE__"
+msgstr "__TABLE__ tábla tartalma"
+
+#: libraries/select_lang.lib.php:494
+msgid "(continued)"
+msgstr "(folytatás)"
+
+#: libraries/select_lang.lib.php:495
+msgid "Structure of table __TABLE__"
+msgstr "__TABLE__ tábla szerkezete"
+
+#: libraries/select_lang.lib.php:500 libraries/select_lang.lib.php:506
+#: libraries/select_lang.lib.php:512
#, php-format
msgid "Unknown language: %1$s."
msgstr "Ismeretlen nyelv: %1$s."
@@ -4533,7 +3689,7 @@ msgid "Servers"
msgstr "Szerverek"
#: libraries/server_links.inc.php:53 server_engines.php:112
-#: server_engines.php:116 server_status.php:304 test/theme.php:105
+#: server_engines.php:116 server_status.php:415 test/theme.php:105
msgid "Variables"
msgstr "Változók"
@@ -4546,7 +3702,7 @@ msgid "Engines"
msgstr "Motorok"
#: libraries/server_links.inc.php:76 server_binlog.php:110
-#: server_status.php:253 test/theme.php:121
+#: server_status.php:364 test/theme.php:121
msgid "Binary log"
msgstr "Bináris napló"
@@ -5037,8 +4193,8 @@ msgstr "Törlés"
msgid "Protocol version"
msgstr "Protokoll verzió"
-#: main.php:189 server_privileges.php:1350 server_privileges.php:1497
-#: server_privileges.php:1611 server_privileges.php:2029
+#: main.php:189 server_privileges.php:1389 server_privileges.php:1536
+#: server_privileges.php:1650 server_privileges.php:2068
#: server_processlist.php:54
msgid "User"
msgstr "Felhasználó"
@@ -5436,7 +4592,7 @@ msgstr "A(z) %s adatbázis eldobása sikerült."
msgid "Databases statistics"
msgstr "Adatbázis-statisztika"
-#: server_databases.php:117 server_status.php:260
+#: server_databases.php:117 server_status.php:371
#: setup/lib/messages.inc.php:117
msgid "Tables"
msgstr "Táblák"
@@ -5455,6 +4611,16 @@ msgstr ""
msgid "Jump to database"
msgstr "Nincs adatbázis"
+#: server_databases.php:267
+msgid "Not replicated"
+msgstr ""
+
+#: server_databases.php:273
+#, fuzzy
+#| msgid "Replication"
+msgid "Replicated"
+msgstr "Többszörözés"
+
#: server_databases.php:289
#, php-format
msgid "Check privileges for database "%s"."
@@ -5488,143 +4654,341 @@ msgstr "Tárolómotorok"
msgid "View dump (schema) of databases"
msgstr "Adatbázis kiírás (séma) megtekintése"
-#: server_privileges.php:263 server_privileges.php:264
+#: server_privileges.php:24 server_privileges.php:266
+msgid "Includes all privileges except GRANT."
+msgstr "A GRANT kivételével minden jogot tartalmaz."
+
+#: server_privileges.php:25 server_privileges.php:192
+#: server_privileges.php:515
+msgid "Allows altering the structure of existing tables."
+msgstr "Engedélyezi a létező táblák szerkezetének megváltoztatását."
+
+#: server_privileges.php:26 server_privileges.php:208
+#: server_privileges.php:521
+msgid "Allows altering and dropping stored routines."
+msgstr "Engedélyezi a tárolt eljárások módosítását és eldobását."
+
+#: server_privileges.php:27 server_privileges.php:184
+#: server_privileges.php:514
+msgid "Allows creating new databases and tables."
+msgstr "Engedélyezi új adatbázisok és táblák készítését."
+
+#: server_privileges.php:28 server_privileges.php:207
+#: server_privileges.php:520
+msgid "Allows creating stored routines."
+msgstr "Engedélyezi tárolt eljárások létrehozását."
+
+#: server_privileges.php:29 server_privileges.php:514
+msgid "Allows creating new tables."
+msgstr "Engedélyezi új táblák készítését."
+
+#: server_privileges.php:30 server_privileges.php:195
+#: server_privileges.php:518
+msgid "Allows creating temporary tables."
+msgstr "Engedélyezi ideiglenes táblák készítését."
+
+#: server_privileges.php:31 server_privileges.php:209
+#: server_privileges.php:554
+msgid "Allows creating, dropping and renaming user accounts."
+msgstr ""
+"Engedélyezi a felhasználói fiókok létrehozását, törlését és átnevezését."
+
+#: server_privileges.php:32 server_privileges.php:199
+#: server_privileges.php:203 server_privileges.php:526
+#: server_privileges.php:530
+msgid "Allows creating new views."
+msgstr "Engedélyezi új nézetek létrehozását."
+
+#: server_privileges.php:33 server_privileges.php:183
+#: server_privileges.php:506
+msgid "Allows deleting data."
+msgstr "Engedélyezi az adatok törlését."
+
+#: server_privileges.php:34 server_privileges.php:185
+#: server_privileges.php:517
+msgid "Allows dropping databases and tables."
+msgstr "Engedélyezi az adatbázisok és táblák eldobását."
+
+#: server_privileges.php:35 server_privileges.php:517
+msgid "Allows dropping tables."
+msgstr "Engedélyezi a táblák eldobását."
+
+#: server_privileges.php:36 server_privileges.php:200
+#: server_privileges.php:534
+msgid "Allows to set up events for the event scheduler"
+msgstr "Az eseményütemező eseményeinek beállítását teszi lehetővé"
+
+#: server_privileges.php:37 server_privileges.php:210
+#: server_privileges.php:522
+msgid "Allows executing stored routines."
+msgstr "Engedélyezi a tárolt eljárások végrehajtását."
+
+#: server_privileges.php:38 server_privileges.php:189
+#: server_privileges.php:509
+msgid "Allows importing data from and exporting data into files."
+msgstr "Engedélyezi az adatok fájlokba történő exportálását/importálását."
+
+#: server_privileges.php:39 server_privileges.php:540
+msgid ""
+"Allows adding users and privileges without reloading the privilege tables."
+msgstr ""
+"A privilégium táblák újratöltése nélkül engedélyezi a felhasználók és jogok "
+"hozzáadását."
+
+#: server_privileges.php:40 server_privileges.php:191
+#: server_privileges.php:516
+msgid "Allows creating and dropping indexes."
+msgstr "Engedélyezi indexek készítését és törlését."
+
+#: server_privileges.php:41 server_privileges.php:181
+#: server_privileges.php:442 server_privileges.php:504
+msgid "Allows inserting and replacing data."
+msgstr "Engedélyezi az adatok beírását és megváltoztatását."
+
+#: server_privileges.php:42 server_privileges.php:196
+#: server_privileges.php:549
+msgid "Allows locking tables for the current thread."
+msgstr "A jelenlegi szálon engedélyezi a táblák blokkolását."
+
+#: server_privileges.php:43 server_privileges.php:646
+#: server_privileges.php:648
+msgid "Limits the number of new connections the user may open per hour."
+msgstr ""
+"Korlátozza a felhasználó által óránként megnyitható új kapcsolatok számát."
+
+#: server_privileges.php:44 server_privileges.php:634
+#: server_privileges.php:636
+msgid "Limits the number of queries the user may send to the server per hour."
+msgstr ""
+"Korlátozza a felhasználó által a kiszolgálóra óránként küldhető lekérdezések "
+"számát."
+
+#: server_privileges.php:45 server_privileges.php:640
+#: server_privileges.php:642
+msgid ""
+"Limits the number of commands that change any table or database the user may "
+"execute per hour."
+msgstr ""
+"Korlátozza a felhasználó által óránként végrehajtható, bármelyik táblát vagy "
+"adatbázist módosító parancsok számát."
+
+#: server_privileges.php:46 server_privileges.php:652
+#: server_privileges.php:654
+msgid "Limits the number of simultaneous connections the user may have."
+msgstr "Korlátozza a felhasználó egyidejű kapcsolatainak számát."
+
+#: server_privileges.php:47 server_privileges.php:188
+#: server_privileges.php:544
+msgid "Allows viewing processes of all users"
+msgstr "Az összes felhasználó folyamatainak megtekintését engedélyezi"
+
+#: server_privileges.php:48 server_privileges.php:190
+#: server_privileges.php:448 server_privileges.php:550
+msgid "Has no effect in this MySQL version."
+msgstr "Nem valósult meg ebben a MySQL verzióban"
+
+#: server_privileges.php:49 server_privileges.php:186
+#: server_privileges.php:545
+msgid "Allows reloading server settings and flushing the server's caches."
+msgstr ""
+"Engedélyezi a szerver beállításainak újratöltését, és a szerver "
+"gyorsítótárának törlését."
+
+#: server_privileges.php:50 server_privileges.php:198
+#: server_privileges.php:552
+msgid "Allows the user to ask where the slaves / masters are."
+msgstr ""
+"Engedélyezi a felhasználónak, hogy megkérdezze, hol találhatók a kisegítő/fő "
+"helyek."
+
+#: server_privileges.php:51 server_privileges.php:197
+#: server_privileges.php:553
+msgid "Needed for the replication slaves."
+msgstr "A kisegítő helyek másolásához szükséges."
+
+#: server_privileges.php:52 server_privileges.php:180
+#: server_privileges.php:439 server_privileges.php:503
+msgid "Allows reading data."
+msgstr "Engedélyezi az adatok olvasását."
+
+#: server_privileges.php:53 server_privileges.php:193
+#: server_privileges.php:547
+msgid "Gives access to the complete list of databases."
+msgstr "Hozzáférést ad az adatbázisok teljes listájához."
+
+#: server_privileges.php:54 server_privileges.php:204
+#: server_privileges.php:206 server_privileges.php:519
+msgid "Allows performing SHOW CREATE VIEW queries."
+msgstr "Engedélyezi SHOW CREATE VIEW lekérdezések végrehajtását."
+
+#: server_privileges.php:55 server_privileges.php:187
+#: server_privileges.php:546
+msgid "Allows shutting down the server."
+msgstr "Engedélyezi a szerver leállítását."
+
+#: server_privileges.php:56 server_privileges.php:194
+#: server_privileges.php:543
+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 ""
+"Akkor is engedélyezi a kapcsolódást, ha a kapcsolatok száma elérte a "
+"maximumot. A legfontosabb adminisztrációs műveletekhez szükséges, mint a "
+"globális változók beállítása, vagy más felhasználók folyamatainak "
+"megszüntetése."
+
+#: server_privileges.php:57 server_privileges.php:201
+#: server_privileges.php:535
+msgid "Allows creating and dropping triggers"
+msgstr "Eseményindítók létrehozásának és eldobásának engedélyezése"
+
+#: server_privileges.php:58 server_privileges.php:182
+#: server_privileges.php:445 server_privileges.php:505
+msgid "Allows changing data."
+msgstr "Engedélyezi az adatok megváltoztatását."
+
+#: server_privileges.php:59 server_privileges.php:260
+msgid "No privileges."
+msgstr "Nincsenek jogok."
+
+#: server_privileges.php:302 server_privileges.php:303
#, fuzzy
#| msgid "None"
msgctxt "None privileges"
msgid "None"
msgstr "Nincs"
-#: server_privileges.php:392 server_privileges.php:527
-#: server_privileges.php:1679 server_privileges.php:1685
+#: server_privileges.php:431 server_privileges.php:566
+#: server_privileges.php:1718 server_privileges.php:1724
msgid "Table-specific privileges"
msgstr "Táblaspecifikus jogok"
-#: server_privileges.php:393 server_privileges.php:535
-#: server_privileges.php:1501
+#: server_privileges.php:432 server_privileges.php:574
+#: server_privileges.php:1540
msgid " Note: MySQL privilege names are expressed in English "
msgstr " Megjegyzés: a MySQL jognevek az angolból származnak."
-#: server_privileges.php:524 server_privileges.php:1500
+#: server_privileges.php:563 server_privileges.php:1539
msgid "Global privileges"
msgstr "Globális jogok"
-#: server_privileges.php:526 server_privileges.php:1679
+#: server_privileges.php:565 server_privileges.php:1718
msgid "Database-specific privileges"
msgstr "Adatbázis-specifikus jogok"
-#: server_privileges.php:571
+#: server_privileges.php:610
msgid "Administration"
msgstr "Adminisztráció"
-#: server_privileges.php:591
+#: server_privileges.php:630
msgid "Resource limits"
msgstr "Erőforrás-korlátozások"
-#: server_privileges.php:592
+#: server_privileges.php:631
msgid "Note: Setting these options to 0 (zero) removes the limit."
msgstr ""
"Megjegyzés: Ezen beállítások 0-ra (nulla) állítása eltávolítja a korlátozást."
-#: server_privileges.php:669
+#: server_privileges.php:708
msgid "Login Information"
msgstr "Bejelentkezési adatok"
-#: server_privileges.php:763
+#: server_privileges.php:802
msgid "Do not change the password"
msgstr "Nincs jelszó megváltoztatás"
-#: server_privileges.php:804 server_privileges.php:2166
+#: server_privileges.php:843 server_privileges.php:2205
#, fuzzy
#| msgid "No user(s) found."
msgid "No user found."
msgstr "Nem található(k) a felhasználó(k)."
-#: server_privileges.php:848
+#: server_privileges.php:887
#, php-format
msgid "The user %s already exists!"
msgstr "%s felhasználó már létezik!"
-#: server_privileges.php:931
+#: server_privileges.php:970
msgid "You have added a new user."
msgstr "Az új felhasználó hozzáadása megtörtént."
-#: server_privileges.php:1152
+#: server_privileges.php:1191
#, php-format
msgid "You have updated the privileges for %s."
msgstr "Ön frissítette %s jogait."
-#: server_privileges.php:1176
+#: server_privileges.php:1215
#, php-format
msgid "You have revoked the privileges for %s"
msgstr "%s jogainak visszavonása megtörtént"
-#: server_privileges.php:1212
+#: server_privileges.php:1251
#, php-format
msgid "The password for %s was changed successfully."
msgstr "%s jelszavának megváltoztatása sikerült."
-#: server_privileges.php:1232
+#: server_privileges.php:1271
#, php-format
msgid "Deleting %s"
msgstr "%s törlése"
-#: server_privileges.php:1243
+#: server_privileges.php:1282
msgid "No users selected for deleting!"
msgstr "Nincs törlésre kijelölt felhasználó!"
-#: server_privileges.php:1246
+#: server_privileges.php:1285
msgid "Reloading the privileges"
msgstr "A jogok újratöltése"
-#: server_privileges.php:1261
+#: server_privileges.php:1300
msgid "The selected users have been deleted successfully."
msgstr "A kiválasztott felhasználók törlése sikerült."
-#: server_privileges.php:1296
+#: server_privileges.php:1335
msgid "The privileges were reloaded successfully."
msgstr "A jogok újratöltése sikerült."
-#: server_privileges.php:1324 server_privileges.php:1610
+#: server_privileges.php:1363 server_privileges.php:1649
msgid "Edit Privileges"
msgstr "Jogok szerkesztése"
-#: server_privileges.php:1333
+#: server_privileges.php:1372
msgid "Revoke"
msgstr "Visszavonás"
-#: server_privileges.php:1365
+#: server_privileges.php:1404
msgid "User overview"
msgstr "Felhasználók áttekintése"
-#: server_privileges.php:1502 server_privileges.php:1684
-#: server_privileges.php:2033
+#: server_privileges.php:1541 server_privileges.php:1723
+#: server_privileges.php:2072
msgid "Grant"
msgstr "Engedélyezés"
-#: server_privileges.php:1521 server_privileges.php:2123
+#: server_privileges.php:1560 server_privileges.php:2162
msgid "Any"
msgstr "Bármi"
-#: server_privileges.php:1570 server_privileges.php:1594
-#: server_privileges.php:1988 server_privileges.php:2177
+#: server_privileges.php:1609 server_privileges.php:1633
+#: server_privileges.php:2027 server_privileges.php:2216
msgid "Add a new User"
msgstr "Új felhasználó hozzáadása"
-#: server_privileges.php:1575
+#: server_privileges.php:1614
msgid "Remove selected users"
msgstr "A kijelölt felhasználók törlése"
-#: server_privileges.php:1578
+#: server_privileges.php:1617
msgid "Revoke all active privileges from the users and delete them afterwards."
msgstr "A felhasználók összes jogának visszavonása, majd törlése."
-#: server_privileges.php:1579 server_privileges.php:1580
-#: server_privileges.php:1581
+#: server_privileges.php:1618 server_privileges.php:1619
+#: server_privileges.php:1620
msgid "Drop the databases that have the same names as the users."
msgstr "A felhasználókéval azonos nevű adatbázisok eldobása."
-#: server_privileges.php:1597
+#: server_privileges.php:1636
#, php-format
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
@@ -5637,94 +5001,94 @@ msgstr ""
"használt jogoktól, ha a módosításuk kézzel történt. Ebben az esetben %"
"stöltse be újra a jogokat%s a folytatás előtt."
-#: server_privileges.php:1645
+#: server_privileges.php:1684
msgid "The selected user was not found in the privilege table."
msgstr "Nem található a kiválasztott felhasználó a privilégium táblában."
-#: server_privileges.php:1685
+#: server_privileges.php:1724
msgid "Column-specific privileges"
msgstr "Oszlopspecifikus jogok"
-#: server_privileges.php:1886
+#: server_privileges.php:1925
msgid "Add privileges on the following database"
msgstr "Jogok hozzáadása a következő adatbázison"
-#: server_privileges.php:1904
+#: server_privileges.php:1943
msgid "Wildcards % and _ should be escaped with a \\ to use them literally"
msgstr ""
"A _ és a % karakterhelyettesítőt \\ jellel kell lezárni, hogy "
"szövegkonstansként lehessen őket használni"
-#: server_privileges.php:1907
+#: server_privileges.php:1946
msgid "Add privileges on the following table"
msgstr "Jogok hozzáadása a következő táblán:"
-#: server_privileges.php:1964
+#: server_privileges.php:2003
msgid "Change Login Information / Copy User"
msgstr "Bejelentkezési adatok módosítása / Felhasználó másolása"
-#: server_privileges.php:1967
+#: server_privileges.php:2006
msgid "Create a new user with the same privileges and ..."
msgstr "Új felhasználó létrehozása ezekkel a jogokkal, és ..."
-#: server_privileges.php:1969
+#: server_privileges.php:2008
msgid "... keep the old one."
msgstr "... a régiek megőrzése."
-#: server_privileges.php:1970
+#: server_privileges.php:2009
msgid " ... delete the old one from the user tables."
msgstr " ... a régiek törlése a felhasználói táblákból."
-#: server_privileges.php:1971
+#: server_privileges.php:2010
msgid ""
" ... revoke all active privileges from the old one and delete it afterwards."
msgstr " ... az összes aktív jog visszaállítása a régiekből, majd törlés."
-#: server_privileges.php:1972
+#: server_privileges.php:2011
msgid ""
" ... delete the old one from the user tables and reload the privileges "
"afterwards."
msgstr ""
" ... a régiek törlése a felhasználói táblákból, majd a jogok újratöltése."
-#: server_privileges.php:1994
+#: server_privileges.php:2033
msgid "Database for user"
msgstr "Adatbázis a felhasználó számára"
-#: server_privileges.php:1998
+#: server_privileges.php:2037
#, fuzzy
#| msgid "None"
msgctxt "Create none database for user"
msgid "None"
msgstr "Nincs"
-#: server_privileges.php:1999
+#: server_privileges.php:2038
msgid "Create database with same name and grant all privileges"
msgstr "Azonos nevű adatbázis létrehozása, és az összes jog engedélyezése"
-#: server_privileges.php:2000
+#: server_privileges.php:2039
msgid "Grant all privileges on wildcard name (username\\_%)"
msgstr "Az összes jog engedélyezése karakterhelyettesítős néven (username\\_%)"
-#: server_privileges.php:2003
+#: server_privileges.php:2042
#, php-format
msgid "Grant all privileges on database "%s""
msgstr "Az összes jog engedélyezése a(z) "%s" adatbázison"
-#: server_privileges.php:2026
+#: server_privileges.php:2065
#, php-format
msgid "Users having access to "%s""
msgstr "A(z) "%s" adatbázishoz hozzáférhető felhasználók"
-#: server_privileges.php:2134
+#: server_privileges.php:2173
msgid "global"
msgstr "globális"
-#: server_privileges.php:2136
+#: server_privileges.php:2175
msgid "database-specific"
msgstr "adatbázis-specifikus"
-#: server_privileges.php:2138
+#: server_privileges.php:2177
msgid "wildcard"
msgstr "karakterhelyettesítő"
@@ -5772,7 +5136,7 @@ msgstr ""
msgid "This server is configured as master in a replication process."
msgstr ""
-#: server_replication.php:184 server_status.php:281
+#: server_replication.php:184 server_status.php:392
#, fuzzy
msgid "Show master status"
msgstr "Kisegítő állapot megjelenítése"
@@ -5913,97 +5277,743 @@ msgid ""
"like to configure it?"
msgstr ""
+#: server_status.php:40
+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 ""
+"A tranzakciók száma, melyek az ideiglenes bináris naplógyorsítótárat "
+"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."
+
+#: server_status.php:41
+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."
+
+#: server_status.php:42
+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 "
+"to increase the tmp_table_size value to cause temporary tables to be memory-"
+"based instead of disk-based."
+msgstr ""
+"A szerver által az utasítások végrehajtásakor a lemezen automatikusan "
+"létrehozott ideiglenes táblák száma. Ha a Created_tmp_disk_tables értéke "
+"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."
+
+#: server_status.php:43
+msgid "How many temporary files mysqld has created."
+msgstr "Ennyi ideiglenes fájlt hozott létre a mysqld."
+
+#: server_status.php:44
+msgid ""
+"The number of in-memory temporary tables created automatically by the server "
+"while executing statements."
+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."
+
+#: server_status.php:45
+msgid ""
+"The number of rows written with INSERT DELAYED for which some error occurred "
+"(probably duplicate key)."
+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)."
+
#: server_status.php:46
+msgid ""
+"The number of INSERT DELAYED handler threads in use. Every different table "
+"on which one uses INSERT DELAYED gets its own thread."
+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."
+
+#: server_status.php:47
+msgid "The number of INSERT DELAYED rows written."
+msgstr "A beírt INSERT DELAYED sorok száma."
+
+#: server_status.php:48
+msgid "The number of executed FLUSH statements."
+msgstr "A végrehajtott FLUSH utasítások száma."
+
+#: server_status.php:49
+msgid "The number of internal COMMIT statements."
+msgstr "A belső COMMIT utasítások száma."
+
+#: server_status.php:50
+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."
+
+#: server_status.php:51
+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 ""
+"A MySQL szerver meg tudja kérdezni az NDB fürt tárolómotortól, hogy ismeri a "
+"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."
+
+#: server_status.php:52
+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 ""
+"Az első bejegyzés egy indexből történő beolvasásainak száma. Ha ez magas, "
+"akkor ez azt sugallja, hogy a szerver sok teljes indexvizsgálatot végez; "
+"például a SELECT col1 FROM foo azt feltételezi, hogy a col1 kerül "
+"indexelésre."
+
+#: server_status.php:53
+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 ""
+"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."
+
+#: server_status.php:54
+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 ""
+"A kulcssorrendben a következő sort beolvasandó kérések száma. Ez növekszik, "
+"ha Ön tartománymegkötéses index oszlopot kérdez le, vagy ha indexvizsgálatot "
+"végez."
+
+#: server_status.php:55
+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 ""
+"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."
+
+#: server_status.php:56
+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 "
+"probably have a lot of queries that require MySQL to scan whole tables or "
+"you have joins that don't use keys properly."
+msgstr ""
+"Egy sor beolvasásához szükséges kérések száma egy rögzített pozíció alapján. "
+"Ez magas, ha Ön sok, az eredmény rendezését igénylő lekérdezést hajt végre. "
+"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."
+
+#: server_status.php:57
+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 "
+"tables are not properly indexed or that your queries are not written to take "
+"advantage of the indexes you have."
+msgstr ""
+"Az adatfájlban lévő következő sor beolvasásához szükséges kérések száma. Ez "
+"magas, ha Ön sokszor vizsgálja át a táblákat. Ez általában azt javasolja, "
+"hogy a táblák nem megfelelően indexeltek, vagy a lekérdezések nincsenek írva "
+"az indexek kihasználása végett."
+
+#: server_status.php:58
+msgid "The number of internal ROLLBACK statements."
+msgstr "A belső ROLLBACK utasítások száma."
+
+#: server_status.php:59
+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."
+
+#: server_status.php:60
+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."
+
+#: server_status.php:61
+msgid "The number of pages containing data (dirty or clean)."
+msgstr "Az adatokat tartalmazó lapok száma (piszkos vagy tiszta)."
+
+#: server_status.php:62
+msgid "The number of pages currently dirty."
+msgstr "A jelenleg piszkos lapok száma."
+
+#: server_status.php:63
+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."
+
+#: server_status.php:64
+msgid "The number of free pages."
+msgstr "A szabad lapok száma."
+
+#: server_status.php:65
+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 ""
+"Az InnoDB pufferkészletében zárolt oldalak száma. Ezek az épp beolvasás vagy "
+"írás alatt lévő oldalak, melyeket bizonyos más okok miatt nem lehet kiírni "
+"vagy eltávolítani."
+
+#: server_status.php:66
+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 "
+"be calculated as Innodb_buffer_pool_pages_total - "
+"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data."
+msgstr ""
+"A foglalt oldalak száma, mert le lettek foglalva adminisztratív "
+"többletterheléshez, mint például a sorzárolások vagy az adaptív "
+"kivonatindex. 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ó."
+
+#: server_status.php:67
+msgid "Total size of buffer pool, in pages."
+msgstr "A pufferkészlet teljes mérete lapokban."
+
+#: server_status.php:68
+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 ""
+"Az InnoDB által kezdeményezett \"véletlenszerű\" előreolvasások száma. Ez "
+"akkor történik, ha egy lekérdezés meg akarja vizsgálni egy tábla nagy "
+"részét, viszont véletlenszerű sorrendben."
+
+#: server_status.php:69
+msgid ""
+"The number of sequential read-aheads InnoDB initiated. This happens when "
+"InnoDB does a sequential full table scan."
+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."
+
+#: server_status.php:70
+msgid "The number of logical read requests InnoDB has done."
+msgstr "Az InnoDB által elvégzett logikai olvasási kérések száma."
+
+#: server_status.php:71
+msgid ""
+"The number of logical reads that InnoDB could not satisfy from buffer pool "
+"and had to do a single-page read."
+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."
+
+#: server_status.php:72
+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 "
+"available, it's necessary to wait for pages to be flushed first. This "
+"counter counts instances of these waits. If the buffer pool size was set "
+"properly, this value should be small."
+msgstr ""
+"Normál esetben az InnoDB pufferkészletébe írások a háttérben történnek. Ha "
+"viszont be kell olvasni vagy létre kell hozni egy oldalt, s nincs több "
+"tiszta oldal, akkor várni kell az előbb kiírandó oldalakra. Ez a számláló "
+"számolja ezeknek a várakozásoknak az előfordulásait. Ha a pufferkészlet "
+"méretét megfelelően állították be, akkor ennek az értéknek kicsinek kell "
+"lennie."
+
+#: server_status.php:73
+msgid "The number writes done to the InnoDB buffer pool."
+msgstr "Az InnoDB pufferkészletébe történt írások száma."
+
+#: server_status.php:74
+msgid "The number of fsync() operations so far."
+msgstr "Az fsync() műveletek eddigi száma."
+
+#: server_status.php:75
+msgid "The current number of pending fsync() operations."
+msgstr "A folyamatban lévő fsync() műveletek száma."
+
+#: server_status.php:76
+msgid "The current number of pending reads."
+msgstr "A folyamatban lévő olvasások száma."
+
+#: server_status.php:77
+msgid "The current number of pending writes."
+msgstr "A folyamatban lévő írások száma."
+
+#: server_status.php:78
+msgid "The amount of data read so far, in bytes."
+msgstr "Az eddig beolvasott adatok mennyisége bájtban."
+
+#: server_status.php:79
+msgid "The total number of data reads."
+msgstr "Az összes beolvasott adat."
+
+#: server_status.php:80
+msgid "The total number of data writes."
+msgstr "Az összes írott adat."
+
+#: server_status.php:81
+msgid "The amount of data written so far, in bytes."
+msgstr "Az összes írott adat, bájtban."
+
+#: server_status.php:82
+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."
+
+#: server_status.php:83
+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."
+
+#: server_status.php:84
+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 ""
+"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."
+
+#: server_status.php:85
+msgid "The number of log write requests."
+msgstr "A naplóírási kérések száma."
+
+#: server_status.php:86
+msgid "The number of physical writes to the log file."
+msgstr "A naplófájlba történt fizikai írások száma."
+
+#: server_status.php:87
+msgid "The number of fsync() writes done to the log file."
+msgstr "A naplófájlba történt fsyncs írások száma."
+
+#: server_status.php:88
+msgid "The number of pending log file fsyncs."
+msgstr "A folyamatban lévő naplófájl fsync-ek száma."
+
+#: server_status.php:89
+msgid "Pending log file writes."
+msgstr "A folyamatban lévő naplófájl írások száma."
+
+#: server_status.php:90
+msgid "The number of bytes written to the log file."
+msgstr "A naplófájlba írt bájtok száma."
+
+#: server_status.php:91
+msgid "The number of pages created."
+msgstr "A létrehozott lapok száma."
+
+#: server_status.php:92
+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 ""
+"A belefordított InnoDB oldal mérete (alapértelmezés: 16 KB). Sok érték "
+"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."
+
+#: server_status.php:93
+msgid "The number of pages read."
+msgstr "A beolvasott lapok száma."
+
+#: server_status.php:94
+msgid "The number of pages written."
+msgstr "Az írott lapok száma."
+
+#: server_status.php:95
+msgid "The number of row locks currently being waited for."
+msgstr "A jelenleg várakozás alatt lévő sorzárolások száma."
+
+#: server_status.php:96
+msgid "The average time to acquire a row lock, in milliseconds."
+msgstr "A sorzároláshoz szükséges átlag időtartam, milliszekundumban."
+
+#: server_status.php:97
+msgid "The total time spent in acquiring row locks, in milliseconds."
+msgstr "A sorzárolásokra fordított összes idő, milliszekundumban."
+
+#: server_status.php:98
+msgid "The maximum time to acquire a row lock, in milliseconds."
+msgstr "A sorzároláshoz szükséges időtartam, milliszekundumban."
+
+#: server_status.php:99
+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."
+
+#: server_status.php:100
+msgid "The number of rows deleted from InnoDB tables."
+msgstr "Az InnoDB táblákból törölt sorok száma."
+
+#: server_status.php:101
+msgid "The number of rows inserted in InnoDB tables."
+msgstr "Az InnoDB táblákba beszúrt sorok száma."
+
+#: server_status.php:102
+msgid "The number of rows read from InnoDB tables."
+msgstr "Az InnoDB táblákból beolvasott sorok száma."
+
+#: server_status.php:103
+msgid "The number of rows updated in InnoDB tables."
+msgstr "Az InnoDB táblákban frissített sorok száma."
+
+#: server_status.php:104
+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 ""
+"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."
+
+#: server_status.php:105
+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 ""
+"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."
+
+#: server_status.php:106
+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 ""
+"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."
+
+#: server_status.php:107
+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."
+
+#: server_status.php:108
+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 ""
+"Egy kulcsblokk lemezről történő fizikai beolvasásainak száma. Ha a Key_reads "
+"nagy, akkor valószínűleg túl kicsi a key_buffer_size értéke. A gyorsítótár "
+"sikertelen találatainak aránya a Key_reads/Key_read_requests alapján "
+"számítható ki."
+
+#: server_status.php:109
+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."
+
+#: server_status.php:110
+msgid "The number of physical writes of a key block to disk."
+msgstr "Egy kulcsblokk lemezre történő fizikai írásainak száma."
+
+#: server_status.php:111
+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 ""
+"Az utoljára lefordított lekérdezés összköltsége a lekérdezésoptimalizáló "
+"számítása szerint. Ugyanazon lekérdezés különféle lekérdezési tervei "
+"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."
+
+#: server_status.php:112
+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."
+
+#: server_status.php:113
+msgid ""
+"The number of tables that have been opened. If opened tables is big, your "
+"table cache value is probably too small."
+msgstr ""
+"Az eddig megnyitott táblák száma. Ha a megnyitott táblák nagy,akkor "
+"valószínűleg túl kicsi a táblagyorsítótár értéke."
+
+#: server_status.php:114
+msgid "The number of files that are open."
+msgstr "A megnyitott fájlok száma."
+
+#: server_status.php:115
+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)."
+
+#: server_status.php:116
+msgid "The number of tables that are open."
+msgstr "A megnyitott táblák száma."
+
+#: server_status.php:117
+msgid "The number of free memory blocks in query cache."
+msgstr "A szabad memóriablokkok száma a lekérdezési gyorsítótárban."
+
+#: server_status.php:118
+msgid "The amount of free memory for query cache."
+msgstr "A szabad memória mérete a lekérdezési gyorsítótárhoz."
+
+#: server_status.php:119
+msgid "The number of cache hits."
+msgstr "A gyorsítótár találatok száma."
+
+#: server_status.php:120
+msgid "The number of queries added to the cache."
+msgstr "A gyorsítótárhoz adott lekérdezések száma."
+
+#: server_status.php:121
+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 "
+"cache size. The query cache uses a least recently used (LRU) strategy to "
+"decide which queries to remove from the cache."
+msgstr ""
+"A lekérdezések száma, melyek eltávolításra kerültek a gyorsítórából az új "
+"lekérdezések gyorsítótárazásához történő memória felszabadításához. Ez az "
+"információ a lekérdezési gyorsítótár méretének szabályozásában segíthet. A "
+"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."
+
+#: server_status.php:122
+msgid ""
+"The number of non-cached queries (not cachable, or not cached due to the "
+"query_cache_type setting)."
+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)."
+
+#: server_status.php:123
+msgid "The number of queries registered in the cache."
+msgstr "A gyorsítótárban bejegyzett lekérdezések száma."
+
+#: server_status.php:124
+msgid "The total number of blocks in the query cache."
+msgstr "A blokkok száma a lekérdezési gyorsítótárban."
+
+#: server_status.php:125
+msgctxt "$strShowStatusReset"
+msgid "Reset"
+msgstr "Törlés"
+
+#: server_status.php:126
+msgid "The status of failsafe replication (not yet implemented)."
+msgstr "A hibabiztos többszörözések állapota (megvalósításra vár)."
+
+#: server_status.php:127
+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 ""
+"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."
+
+#: server_status.php:128
+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."
+
+#: server_status.php:129
+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 ""
+"A kulcsok nélküli illesztések száma, melyek minden sor után kulcs "
+"használatát ellenőrzik. (Ha ez nem 0, akkor ellenőrizze körültekintően a "
+"táblák indexeit.))"
+
+#: server_status.php:130
+msgid ""
+"The number of joins that used ranges on the first table. (It's normally not "
+"critical even if this is big.)"
+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.)"
+
+#: server_status.php:131
+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."
+
+#: server_status.php:132
+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."
+
+#: server_status.php:133
+msgid ""
+"Total (since startup) number of times the replication slave SQL thread has "
+"retried transactions."
+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."
+
+#: server_status.php:134
+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."
+
+#: server_status.php:135
+msgid ""
+"The number of threads that have taken more than slow_launch_time seconds to "
+"create."
+msgstr ""
+"A szálak száma, melyek létrehozásához slow_launch_time másodpercnél többre "
+"volt szükség."
+
+#: server_status.php:136
+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."
+
+#: server_status.php:137
+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 ""
+"Az egyesítési menetek száma, amit a rendezési algoritmusnak el kellett "
+"végeznie. Ha ez az érték nagy, akkor gondolja meg a sort_buffer_size "
+"rendszerváltozó értékének növelését."
+
+#: server_status.php:138
+msgid "The number of sorts that were done with ranges."
+msgstr "A tartományokkal végzett rendezések száma."
+
+#: server_status.php:139
+msgid "The number of sorted rows."
+msgstr "Rendezett sorok száma."
+
+#: server_status.php:140
+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."
+
+#: server_status.php:141
+msgid "The number of times that a table lock was acquired immediately."
+msgstr "Ennyiszer nem lehetett azonnal megszerezni egy táblazárolást."
+
+#: server_status.php:142
+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 "
+"should first optimize your queries, and then either split your table or "
+"tables or use replication."
+msgstr ""
+"Ennyiszer nem lehetett azonnal megszerezni egy táblazárolást, s várni "
+"kellett. Ha ez magas, s Önnek teljesítményproblémái vannak, akkor 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."
+
+#: server_status.php:143
+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 ""
+"A szálak száma a szál gyorsítótárban. A gyorsítótár találati aránya a "
+"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."
+
+#: server_status.php:144
+msgid "The number of currently open connections."
+msgstr "A jelenleg megnyitott kapcsolatok száma."
+
+#: server_status.php:145
+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 "
+"doesn't give a notable performance improvement if you have a good thread "
+"implementation.)"
+msgstr ""
+"A kapcsolatok kezeléséhez létrehozott szálak száma. Ha a Threads_created "
+"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.)"
+
+#: server_status.php:146
+msgid "The number of threads that are not sleeping."
+msgstr "A nem alvó szálak száma."
+
+#: server_status.php:157
msgid "Runtime Information"
msgstr "Futtatási információk"
-#: server_status.php:250
+#: server_status.php:361
msgid "Handler"
msgstr "Kezelő"
-#: server_status.php:251
+#: server_status.php:362
msgid "Query cache"
msgstr "Lekérdezési gyorsítótár"
-#: server_status.php:252
+#: server_status.php:363
msgid "Threads"
msgstr "Szálak"
-#: server_status.php:254
+#: server_status.php:365
msgid "Temporary data"
msgstr "Ideiglenes adatok"
-#: server_status.php:255
+#: server_status.php:366
msgid "Delayed inserts"
msgstr "Késleltetett beszúrások"
-#: server_status.php:256
+#: server_status.php:367
msgid "Key cache"
msgstr "Kulcs gyorsítótár"
-#: server_status.php:257
+#: server_status.php:368
msgid "Joins"
msgstr "Illesztések"
-#: server_status.php:259
+#: server_status.php:370
msgid "Sorting"
msgstr "Rendezés"
-#: server_status.php:261
+#: server_status.php:372
msgid "Transaction coordinator"
msgstr "Tranzakció koordinátor"
-#: server_status.php:271
+#: server_status.php:382
msgid "Flush (close) all tables"
msgstr "Összes tábla kiírása (bezárása)"
-#: server_status.php:273
+#: server_status.php:384
msgid "Show open tables"
msgstr "Nyitott táblák megjelenítése"
-#: server_status.php:278
+#: server_status.php:389
msgid "Show slave hosts"
msgstr "Kisegítő állomások megjelenítése"
-#: server_status.php:284
+#: server_status.php:395
msgid "Show slave status"
msgstr "Kisegítő állapot megjelenítése"
-#: server_status.php:289
+#: server_status.php:400
msgid "Flush query cache"
msgstr "Lekérdezési gyorsítótár kiírása"
-#: server_status.php:294
+#: server_status.php:405
msgid "Show processes"
msgstr "Folyamatok megjelenítése"
-#: server_status.php:344
+#: server_status.php:455
#, fuzzy
#| msgid "Reset"
msgctxt "for Show status"
msgid "Reset"
msgstr "Törlés"
-#: server_status.php:350
+#: server_status.php:461
#, php-format
msgid "This MySQL server has been running for %s. It started up on %s."
msgstr "Ez a MySQL szerver %s óta fut. Indítás időpontja: %s."
-#: server_status.php:360
+#: server_status.php:471
msgid ""
"This MySQL server works as master and slave in replication"
"b> process."
msgstr ""
-#: server_status.php:362
+#: server_status.php:473
msgid "This MySQL server works as master in replication process."
msgstr ""
-#: server_status.php:364
+#: server_status.php:475
msgid "This MySQL server works as slave in replication process."
msgstr ""
-#: server_status.php:366
+#: server_status.php:477
#, fuzzy
#| msgid ""
#| "This MySQL server works as %s in replication process. For further "
@@ -6017,7 +6027,7 @@ msgstr ""
"szerveren lévő többszörözéses állapotról a többszörözés részben kaphat bővebb információt."
-#: server_status.php:383
+#: server_status.php:494
msgid ""
"Server traffic: These tables show the network traffic statistics of "
"this MySQL server since its startup."
@@ -6025,11 +6035,11 @@ msgstr ""
"Szerver forgalma: Ezek a táblázatok a MySQL szerver hálózati "
"forgalmának statisztikájáit mutatják az indítástól kezdve."
-#: server_status.php:388
+#: server_status.php:499
msgid "Traffic"
msgstr "Forgalom"
-#: server_status.php:388
+#: server_status.php:499
msgid ""
"On a busy server, the byte counters may overrun, so those statistics as "
"reported by the MySQL server may be incorrect."
@@ -6037,36 +6047,36 @@ msgstr ""
"Foglalt szerveren túlfuthatnak a bájtszámlálók, ezért a MySQL által "
"jelentett statisztikák pontatlanok lehetnek."
-#: server_status.php:389 server_status.php:434 server_status.php:497
-#: server_status.php:555
+#: server_status.php:500 server_status.php:545 server_status.php:608
+#: server_status.php:666
msgid "per hour"
msgstr "óránként"
-#: server_status.php:394
+#: server_status.php:505
msgid "Received"
msgstr "Fogadott"
-#: server_status.php:404
+#: server_status.php:515
msgid "Sent"
msgstr "Küldött"
-#: server_status.php:433
+#: server_status.php:544
msgid "Connections"
msgstr "Kapcsolatok"
-#: server_status.php:440
+#: server_status.php:551
msgid "max. concurrent connections"
msgstr "Max. egyidejű kapcsolatok száma"
-#: server_status.php:447
+#: server_status.php:558
msgid "Failed attempts"
msgstr "Sikertelen próbák"
-#: server_status.php:461
+#: server_status.php:572
msgid "Aborted"
msgstr "Megszakítva"
-#: server_status.php:490
+#: server_status.php:601
#, php-format
msgid ""
"Query statistics: Since its startup, %s queries have been sent to the "
@@ -6075,19 +6085,19 @@ msgstr ""
"Lekérdezési statisztika: Az indulás óta %s kérés került elküldésre a "
"szerverhez."
-#: server_status.php:498
+#: server_status.php:609
msgid "per minute"
msgstr "percenként"
-#: server_status.php:499
+#: server_status.php:610
msgid "per second"
msgstr "másodpercenként"
-#: server_status.php:554
+#: server_status.php:665
msgid "Query type"
msgstr "Lekérdezés típusa"
-#: server_status.php:721
+#: server_status.php:832
msgid "Replication status"
msgstr "Többszörözéses állapot"
diff --git a/po/id.po b/po/id.po
index ef0baf32b..1c412a122 100755
--- a/po/id.po
+++ b/po/id.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-06-04 16:07-0400\n"
+"POT-Creation-Date: 2010-06-08 12:32-0400\n"
"PO-Revision-Date: 2010-04-17 21:14+0200\n"
"Last-Translator: Azhari Harahap \n"
"Language-Team: indonesian \n"
@@ -15,11 +15,11 @@ msgstr ""
"X-Generator: Pootle 2.0.1\n"
#: browse_foreigners.php:38 browse_foreigners.php:59
-#: libraries/display_tbl.lib.php:417 server_privileges.php:1475
+#: libraries/display_tbl.lib.php:417 server_privileges.php:1514
msgid "Show all"
msgstr "Tampilkan semua"
-#: browse_foreigners.php:82 libraries/common.lib.php:2304
+#: browse_foreigners.php:82 libraries/common.lib.php:2313
#: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:394
#: libraries/export/pdf.php:147 pdf_schema.php:283 pdf_schema.php:1123
#: pdf_schema.php:1139
@@ -38,8 +38,8 @@ msgstr ""
#: browse_foreigners.php:150 db_structure.php:79 db_structure.php:80
#: db_structure.php:91 db_structure.php:93 db_structure.php:104
-#: db_structure.php:106 libraries/common.lib.php:2822
-#: libraries/common.lib.php:2829 libraries/db_links.inc.php:75
+#: db_structure.php:106 libraries/common.lib.php:2831
+#: libraries/common.lib.php:2838 libraries/db_links.inc.php:75
#: libraries/tbl_links.inc.php:63
msgid "Search"
msgstr "Cari"
@@ -49,7 +49,7 @@ msgstr "Cari"
#: db_structure.php:567 js/messages.php:48 libraries/Config.class.php:1046
#: libraries/Theme_Manager.class.php:311
#: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719
-#: libraries/common.lib.php:1333 libraries/common.lib.php:2279
+#: libraries/common.lib.php:1335 libraries/common.lib.php:2288
#: libraries/display_change_password.lib.php:82
#: libraries/display_create_table.lib.php:63
#: libraries/display_export.lib.php:275 libraries/display_import.lib.php:276
@@ -60,9 +60,9 @@ msgstr "Cari"
#: libraries/sql_query_form.lib.php:552 libraries/tbl_properties.inc.php:782
#: main.php:128 navigation.php:237 pdf_pages.php:292 pdf_pages.php:328
#: pdf_pages.php:530 pmd_pdf.php:116 server_binlog.php:142
-#: server_privileges.php:625 server_privileges.php:1585
-#: server_privileges.php:1932 server_privileges.php:1979
-#: server_privileges.php:2018 server_replication.php:235
+#: server_privileges.php:664 server_privileges.php:1624
+#: server_privileges.php:1971 server_privileges.php:2018
+#: server_privileges.php:2057 server_replication.php:235
#: server_replication.php:318 server_replication.php:341
#: server_synchronize.php:1209 tbl_change.php:330 tbl_change.php:1174
#: tbl_change.php:1211 tbl_indexes.php:254 tbl_operations.php:265
@@ -80,7 +80,7 @@ msgstr "Nama Kunci"
#: browse_foreigners.php:169 browse_foreigners.php:171
#: server_collations.php:55 server_collations.php:67 server_engines.php:59
-#: server_status.php:628
+#: server_status.php:739
msgid "Description"
msgstr "Deskripsi"
@@ -121,7 +121,7 @@ msgstr "Nama kolom"
#: libraries/db_structure.lib.php:60 libraries/export/htmlword.php:245
#: libraries/export/latex.php:360 libraries/export/odt.php:297
#: libraries/export/texytext.php:234 libraries/tbl_properties.inc.php:100
-#: pdf_schema.php:1263 pdf_schema.php:1284 server_privileges.php:2031
+#: pdf_schema.php:1263 pdf_schema.php:1284 server_privileges.php:2070
#: tbl_change.php:287 tbl_change.php:314 tbl_printview.php:143
#: tbl_printview.php:313 tbl_select.php:136 tbl_structure.php:178
#: tbl_structure.php:659 tbl_tracking.php:274 tbl_tracking.php:321
@@ -165,9 +165,9 @@ msgstr "Komentar"
#: libraries/Index.class.php:386 libraries/export/htmlword.php:322
#: libraries/export/latex.php:430 libraries/export/odt.php:368
#: libraries/export/texytext.php:311 libraries/mult_submits.inc.php:263
-#: pdf_schema.php:1344 server_privileges.php:1529 server_privileges.php:1540
-#: server_privileges.php:1850 server_privileges.php:1855
-#: server_privileges.php:2148 sql.php:132 sql.php:194 tbl_printview.php:229
+#: pdf_schema.php:1344 server_privileges.php:1568 server_privileges.php:1579
+#: server_privileges.php:1889 server_privileges.php:1894
+#: server_privileges.php:2187 sql.php:132 sql.php:194 tbl_printview.php:229
#: tbl_structure.php:350 tbl_tracking.php:337 tbl_tracking.php:342
msgid "No"
msgstr "Tidak"
@@ -181,9 +181,9 @@ msgstr "Tidak"
#: libraries/mult_submits.inc.php:101 libraries/mult_submits.inc.php:106
#: libraries/mult_submits.inc.php:111 libraries/mult_submits.inc.php:262
#: libraries/mult_submits.inc.php:273 pdf_schema.php:1344
-#: server_databases.php:64 server_privileges.php:1526
-#: server_privileges.php:1540 server_privileges.php:1850
-#: server_privileges.php:1853 server_privileges.php:2148 sql.php:193
+#: server_databases.php:64 server_privileges.php:1565
+#: server_privileges.php:1579 server_privileges.php:1889
+#: server_privileges.php:1892 server_privileges.php:2187 sql.php:193
#: tbl_printview.php:229 tbl_structure.php:40 tbl_structure.php:350
#: tbl_tracking.php:335 tbl_tracking.php:340
msgid "Yes"
@@ -280,7 +280,7 @@ msgstr "Pindah ke database yang disalin"
msgid "BLOB Repository"
msgstr "Repositori BLOB"
-#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1350
+#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1352
#: libraries/server_links.inc.php:49 server_processlist.php:59
#: tbl_tracking.php:596 test/theme.php:101
msgid "Status"
@@ -342,8 +342,8 @@ msgstr "Ubah halaman PDF"
#: db_printview.php:104 db_tracking.php:72 db_tracking.php:157
#: libraries/db_structure.lib.php:46 libraries/export/xml.php:328
-#: libraries/header.inc.php:126 pdf_pages.php:424 server_privileges.php:1626
-#: server_privileges.php:1682 server_privileges.php:1946
+#: libraries/header.inc.php:126 pdf_pages.php:424 server_privileges.php:1665
+#: server_privileges.php:1721 server_privileges.php:1985
#: server_synchronize.php:423 server_synchronize.php:866 tbl_tracking.php:592
#: test/theme.php:75
msgid "Table"
@@ -443,7 +443,7 @@ msgstr "Hapus"
#: db_qbe.php:370 db_qbe.php:451 db_qbe.php:522 db_qbe.php:553
#: libraries/display_import.lib.php:166 libraries/tbl_properties.inc.php:779
-#: server_privileges.php:258 tbl_change.php:1031 tbl_indexes.php:250
+#: server_privileges.php:297 tbl_change.php:1031 tbl_indexes.php:250
#: tbl_select.php:288
msgid "Or"
msgstr "Atau"
@@ -477,7 +477,7 @@ msgstr "Gunakan tabel"
msgid "SQL query on database %s:"
msgstr "Pencarian SQL dalam database %s:"
-#: db_qbe.php:934 libraries/common.lib.php:1223
+#: db_qbe.php:934 libraries/common.lib.php:1225
msgid "Submit Query"
msgstr "Jalankan pencarian SQL"
@@ -516,7 +516,7 @@ msgstr "%s catatan dalam tabel %s"
#: db_search.php:267 db_structure.php:77 db_structure.php:78
#: db_structure.php:90 db_structure.php:92 db_structure.php:103
-#: db_structure.php:105 libraries/common.lib.php:2824
+#: db_structure.php:105 libraries/common.lib.php:2833
#: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50
#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:467
msgid "Browse"
@@ -563,26 +563,26 @@ msgstr "Cari dalam tabel:"
#: db_structure.php:81 db_structure.php:82 db_structure.php:94
#: db_structure.php:95 db_structure.php:107 db_structure.php:108
-#: libraries/common.lib.php:2823 libraries/sql_query_form.lib.php:334
+#: libraries/common.lib.php:2832 libraries/sql_query_form.lib.php:334
#: libraries/sql_query_form.lib.php:337 libraries/tbl_links.inc.php:76
msgid "Insert"
msgstr "Sisipkan"
#: db_structure.php:83 db_structure.php:96 db_structure.php:109
-#: libraries/common.lib.php:2820 libraries/common.lib.php:2827
+#: libraries/common.lib.php:2829 libraries/common.lib.php:2836
#: libraries/db_links.inc.php:63 libraries/export/htmlword.php:23
#: libraries/export/latex.php:33 libraries/export/latex.php:337
#: libraries/export/odt.php:32 libraries/export/sql.php:60
#: libraries/export/texytext.php:23 libraries/import.lib.php:1104
#: libraries/tbl_links.inc.php:56 pmd_general.php:134
-#: server_privileges.php:554 server_replication.php:315 tbl_tracking.php:269
+#: server_privileges.php:593 server_replication.php:315 tbl_tracking.php:269
msgid "Structure"
msgstr "Struktur"
#: db_structure.php:84 db_structure.php:85 db_structure.php:97
#: db_structure.php:98 db_structure.php:110 db_structure.php:111
#: db_structure.php:545 db_structure.php:546 db_tracking.php:91
-#: libraries/Index.class.php:483 libraries/common.lib.php:1654
+#: libraries/Index.class.php:483 libraries/common.lib.php:1656
#: libraries/db_links.inc.php:100 libraries/mult_submits.inc.php:36
#: libraries/mult_submits.inc.php:73 libraries/tbl_links.inc.php:127
#: server_databases.php:352 tbl_structure.php:27 tbl_structure.php:151
@@ -592,7 +592,7 @@ msgstr "Hapus"
#: db_structure.php:86 db_structure.php:87 db_structure.php:99
#: db_structure.php:100 db_structure.php:112 db_structure.php:113
-#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1653
+#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1655
#: libraries/mult_submits.inc.php:39 libraries/tbl_links.inc.php:105
msgid "Empty"
msgstr "Mengosongkan"
@@ -636,7 +636,7 @@ msgstr "Gambarkan"
#: db_structure.php:485 libraries/db_structure.lib.php:49
#: libraries/server_links.inc.php:70 server_replication.php:33
-#: server_replication.php:164 server_status.php:258
+#: server_replication.php:164 server_status.php:369
#, fuzzy
msgid "Replication"
msgstr "Tabel Relasi"
@@ -653,20 +653,20 @@ msgstr "%s adalah mesin penyimpan utama pada server MySQL ini."
#: db_structure.php:524 db_structure.php:541 db_structure.php:542
#: libraries/display_tbl.lib.php:2081 libraries/display_tbl.lib.php:2086
#: libraries/mult_submits.inc.php:16 server_databases.php:346
-#: server_databases.php:351 server_privileges.php:1557 tbl_structure.php:455
+#: server_databases.php:351 server_privileges.php:1596 tbl_structure.php:455
#: tbl_structure.php:464
msgid "With selected:"
msgstr "yang ditandai:"
#: db_structure.php:527 libraries/display_tbl.lib.php:2076
-#: server_databases.php:348 server_privileges.php:530
-#: server_privileges.php:1560 tbl_structure.php:458
+#: server_databases.php:348 server_privileges.php:569
+#: server_privileges.php:1599 tbl_structure.php:458
msgid "Check All"
msgstr "Pilih semua"
#: db_structure.php:531 libraries/display_tbl.lib.php:2077
#: libraries/replication_gui.lib.php:33 server_databases.php:350
-#: server_privileges.php:533 server_privileges.php:1564 tbl_structure.php:462
+#: server_privileges.php:572 server_privileges.php:1603 tbl_structure.php:462
msgid "Uncheck All"
msgstr "Balik pilihan"
@@ -704,7 +704,7 @@ msgstr "Analisa tabel"
#: libraries/display_export.lib.php:83 libraries/display_tbl.lib.php:2094
#: libraries/display_tbl.lib.php:2225 libraries/mult_submits.inc.php:62
#: libraries/server_links.inc.php:84 libraries/tbl_links.inc.php:82
-#: pmd_pdf.php:84 pmd_pdf.php:109 server_privileges.php:1341
+#: pmd_pdf.php:84 pmd_pdf.php:109 server_privileges.php:1380
#: setup/frames/menu.inc.php:22 tbl_row_action.php:59
msgid "Export"
msgstr "Ekspor"
@@ -722,8 +722,8 @@ msgstr "Tabel-tabel yang dilacak"
#: libraries/export/sql.php:342 libraries/export/texytext.php:84
#: libraries/export/xml.php:255 libraries/header.inc.php:106
#: libraries/header_printview.inc.php:58 server_databases.php:169
-#: server_privileges.php:1621 server_privileges.php:1682
-#: server_privileges.php:1940 server_processlist.php:56
+#: server_privileges.php:1660 server_privileges.php:1721
+#: server_privileges.php:1979 server_processlist.php:56
#: server_synchronize.php:1179 server_synchronize.php:1183
#: tbl_tracking.php:591 test/theme.php:65
msgid "Database"
@@ -743,8 +743,8 @@ msgstr "Diperbarui"
#: db_tracking.php:77 libraries/Index.class.php:440
#: libraries/db_structure.lib.php:53 server_databases.php:203
-#: server_privileges.php:1503 server_privileges.php:1686
-#: server_privileges.php:2034 tbl_structure.php:187
+#: server_privileges.php:1542 server_privileges.php:1725
+#: server_privileges.php:2073 tbl_structure.php:187
msgid "Action"
msgstr "Aksi"
@@ -939,11 +939,11 @@ msgstr "Nama Host harus diisi!"
msgid "The user name is empty!"
msgstr "Nama pengguna masih kosong!"
-#: js/messages.php:44 server_privileges.php:1197 user_password.php:70
+#: js/messages.php:44 server_privileges.php:1236 user_password.php:70
msgid "The password is empty!"
msgstr "Kata Sandi kosong!"
-#: js/messages.php:45 server_privileges.php:1195 user_password.php:73
+#: js/messages.php:45 server_privileges.php:1234 user_password.php:73
msgid "The passwords aren't the same!"
msgstr "Kata Sandi tidak sama!"
@@ -1024,8 +1024,8 @@ msgid "Prev"
msgstr "Sebelumnya"
#. l10n: Display text for next month link in calendar
-#: js/messages.php:77 libraries/common.lib.php:2344
-#: libraries/common.lib.php:2347 libraries/display_tbl.lib.php:338
+#: js/messages.php:77 libraries/common.lib.php:2353
+#: libraries/common.lib.php:2356 libraries/display_tbl.lib.php:338
#: server_binlog.php:205 server_binlog.php:207 tbl_printview.php:424
#: tbl_structure.php:801
msgid "Next"
@@ -1101,27 +1101,27 @@ msgid "December"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:97 libraries/common.lib.php:1555
+#: js/messages.php:97 libraries/common.lib.php:1557
msgid "Jan"
msgstr "Januari"
#. l10n: Short month name
-#: js/messages.php:99 libraries/common.lib.php:1557
+#: js/messages.php:99 libraries/common.lib.php:1559
msgid "Feb"
msgstr "Februari"
#. l10n: Short month name
-#: js/messages.php:101 libraries/common.lib.php:1559
+#: js/messages.php:101 libraries/common.lib.php:1561
msgid "Mar"
msgstr "Maret"
#. l10n: Short month name
-#: js/messages.php:103 libraries/common.lib.php:1561
+#: js/messages.php:103 libraries/common.lib.php:1563
msgid "Apr"
msgstr "April"
#. l10n: Short month name
-#: js/messages.php:105 libraries/common.lib.php:1563
+#: js/messages.php:105 libraries/common.lib.php:1565
#, fuzzy
#| msgid "May"
msgctxt "Short month name"
@@ -1129,37 +1129,37 @@ msgid "May"
msgstr "Mei"
#. l10n: Short month name
-#: js/messages.php:107 libraries/common.lib.php:1565
+#: js/messages.php:107 libraries/common.lib.php:1567
msgid "Jun"
msgstr "Juni"
#. l10n: Short month name
-#: js/messages.php:109 libraries/common.lib.php:1567
+#: js/messages.php:109 libraries/common.lib.php:1569
msgid "Jul"
msgstr "Juli"
#. l10n: Short month name
-#: js/messages.php:111 libraries/common.lib.php:1569
+#: js/messages.php:111 libraries/common.lib.php:1571
msgid "Aug"
msgstr "Agustus"
#. l10n: Short month name
-#: js/messages.php:113 libraries/common.lib.php:1571
+#: js/messages.php:113 libraries/common.lib.php:1573
msgid "Sep"
msgstr "September"
#. l10n: Short month name
-#: js/messages.php:115 libraries/common.lib.php:1573
+#: js/messages.php:115 libraries/common.lib.php:1575
msgid "Oct"
msgstr "Oktober"
#. l10n: Short month name
-#: js/messages.php:117 libraries/common.lib.php:1575
+#: js/messages.php:117 libraries/common.lib.php:1577
msgid "Nov"
msgstr "Nopember"
#. l10n: Short month name
-#: js/messages.php:119 libraries/common.lib.php:1577
+#: js/messages.php:119 libraries/common.lib.php:1579
msgid "Dec"
msgstr "Desember"
@@ -1200,37 +1200,37 @@ msgid "Saturday"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:132 libraries/common.lib.php:1580
+#: js/messages.php:132 libraries/common.lib.php:1582
msgid "Sun"
msgstr "Minggu"
#. l10n: Short week day name
-#: js/messages.php:134 libraries/common.lib.php:1582
+#: js/messages.php:134 libraries/common.lib.php:1584
msgid "Mon"
msgstr "Senin"
#. l10n: Short week day name
-#: js/messages.php:136 libraries/common.lib.php:1584
+#: js/messages.php:136 libraries/common.lib.php:1586
msgid "Tue"
msgstr "Selasa"
#. l10n: Short week day name
-#: js/messages.php:138 libraries/common.lib.php:1586
+#: js/messages.php:138 libraries/common.lib.php:1588
msgid "Wed"
msgstr "Rabu"
#. l10n: Short week day name
-#: js/messages.php:140 libraries/common.lib.php:1588
+#: js/messages.php:140 libraries/common.lib.php:1590
msgid "Thu"
msgstr "Kamis"
#. l10n: Short week day name
-#: js/messages.php:142 libraries/common.lib.php:1590
+#: js/messages.php:142 libraries/common.lib.php:1592
msgid "Fri"
msgstr "Jumat"
#. l10n: Short week day name
-#: js/messages.php:144 libraries/common.lib.php:1592
+#: js/messages.php:144 libraries/common.lib.php:1594
msgid "Sat"
msgstr "Sabtu"
@@ -1378,7 +1378,7 @@ msgid "Comment"
msgstr "Komentar"
#: libraries/Index.class.php:466 libraries/common.lib.php:616
-#: libraries/common.lib.php:1199 libraries/display_tbl.lib.php:1117
+#: libraries/common.lib.php:1201 libraries/display_tbl.lib.php:1117
#: libraries/import.lib.php:1087 libraries/import.lib.php:1111
#: pdf_pages.php:285 setup/frames/index.inc.php:124
#: setup/lib/messages.inc.php:352 tbl_row_action.php:69
@@ -1402,7 +1402,7 @@ msgid ""
msgstr ""
#: libraries/List_Database.class.php:431 libraries/server_links.inc.php:41
-#: server_databases.php:88 server_privileges.php:1621
+#: server_databases.php:88 server_privileges.php:1660
#: setup/lib/messages.inc.php:110 test/theme.php:93
msgid "Databases"
msgstr "Database"
@@ -1730,7 +1730,7 @@ msgid "Documentation"
msgstr "Dokumentasi"
#: libraries/common.lib.php:595 libraries/header_printview.inc.php:61
-#: server_processlist.php:60 server_status.php:247
+#: server_processlist.php:60 server_status.php:358
msgid "SQL query"
msgstr "Pencarian SQL"
@@ -1746,130 +1746,130 @@ msgstr "Terangkan SQL"
msgid "Skip Explain SQL"
msgstr "Melewati keterangan SQL"
-#: libraries/common.lib.php:1212
+#: libraries/common.lib.php:1214
msgid "Without PHP Code"
msgstr "Kode PHP tidak ditemukan"
-#: libraries/common.lib.php:1215 setup/lib/messages.inc.php:355
+#: libraries/common.lib.php:1217 setup/lib/messages.inc.php:355
msgid "Create PHP Code"
msgstr "Ciptakan kode PHP"
-#: libraries/common.lib.php:1233 server_status.php:341
+#: libraries/common.lib.php:1235 server_status.php:452
#: setup/lib/messages.inc.php:354
msgid "Refresh"
msgstr "Menyegarkan"
-#: libraries/common.lib.php:1242
+#: libraries/common.lib.php:1244
msgid "Skip Validate SQL"
msgstr "Melewati pengesahan (validation) SQL"
-#: libraries/common.lib.php:1245 setup/lib/messages.inc.php:356 sql.php:518
+#: libraries/common.lib.php:1247 setup/lib/messages.inc.php:356 sql.php:518
msgid "Validate SQL"
msgstr "Mengesahkan (validate) SQL"
-#: libraries/common.lib.php:1276
+#: libraries/common.lib.php:1278
msgid "Inline edit of this query"
msgstr ""
-#: libraries/common.lib.php:1278
+#: libraries/common.lib.php:1280
#, fuzzy
#| msgid "Engines"
msgid "Inline"
msgstr "Mesin"
-#: libraries/common.lib.php:1332 libraries/common.lib.php:1347
+#: libraries/common.lib.php:1334 libraries/common.lib.php:1349
msgid "Profiling"
msgstr ""
-#: libraries/common.lib.php:1351 libraries/tbl_triggers.lib.php:28
+#: libraries/common.lib.php:1353 libraries/tbl_triggers.lib.php:28
#: server_processlist.php:58
msgid "Time"
msgstr "Jangka Waktu"
#. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "B"
msgstr "Bytes"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "KiB"
msgstr "KB"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "MiB"
msgstr "MB"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "GiB"
msgstr "GB"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "TiB"
msgstr "TB"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "PiB"
msgstr "PB"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "EiB"
msgstr "EB"
#. l10n: Thousands separator
-#: libraries/common.lib.php:1417
+#: libraries/common.lib.php:1419
msgid ","
msgstr "."
#. l10n: Decimal separator
-#: libraries/common.lib.php:1419
+#: libraries/common.lib.php:1421
msgid "."
msgstr ","
#. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string
-#: libraries/common.lib.php:1596
+#: libraries/common.lib.php:1598
#: libraries/transformations/text_plain__dateformat.inc.php:34
msgid "%B %d, %Y at %I:%M %p"
msgstr "%d. %B %Y jam %H:%M"
-#: libraries/common.lib.php:1898
+#: libraries/common.lib.php:1907
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "%s hari, %s jam, %s menit dan %s detik"
-#: libraries/common.lib.php:2313 libraries/common.lib.php:2316
-#: libraries/display_tbl.lib.php:290 server_status.php:608
+#: libraries/common.lib.php:2322 libraries/common.lib.php:2325
+#: libraries/display_tbl.lib.php:290 server_status.php:719
msgid "Begin"
msgstr "Awal"
-#: libraries/common.lib.php:2314 libraries/common.lib.php:2317
+#: libraries/common.lib.php:2323 libraries/common.lib.php:2326
#: libraries/display_tbl.lib.php:291 server_binlog.php:168
#: server_binlog.php:170
msgid "Previous"
msgstr "Sebelumnya"
-#: libraries/common.lib.php:2345 libraries/common.lib.php:2348
+#: libraries/common.lib.php:2354 libraries/common.lib.php:2357
#: libraries/display_tbl.lib.php:353
msgid "End"
msgstr "Terakhir"
-#: libraries/common.lib.php:2421
+#: libraries/common.lib.php:2430
#, php-format
msgid "Jump to database "%s"."
msgstr "Lompat langsung ke database "%s"."
-#: libraries/common.lib.php:2441
+#: libraries/common.lib.php:2450
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr ""
-#: libraries/common.lib.php:2821 libraries/common.lib.php:2828
+#: libraries/common.lib.php:2830 libraries/common.lib.php:2837
#: libraries/db_links.inc.php:68 libraries/export/sql.php:25
#: libraries/import/sql.php:18 libraries/server_links.inc.php:45
#: libraries/tbl_links.inc.php:60 querywindow.php:99 test/theme.php:97
msgid "SQL"
msgstr "SQL"
-#: libraries/common.lib.php:2830 libraries/db_links.inc.php:104
+#: libraries/common.lib.php:2839 libraries/db_links.inc.php:104
#: libraries/tbl_links.inc.php:95 libraries/tbl_links.inc.php:117
#: view_operations.php:89
msgid "Operations"
@@ -1924,8 +1924,8 @@ msgid "Import"
msgstr "Ekspor"
#: libraries/db_links.inc.php:111 libraries/server_links.inc.php:66
-#: server_privileges.php:72 server_privileges.php:1683
-#: server_privileges.php:2032 test/theme.php:117
+#: server_privileges.php:111 server_privileges.php:1722
+#: server_privileges.php:2071 test/theme.php:117
msgid "Privileges"
msgstr "Hak Akses"
@@ -1974,22 +1974,22 @@ msgid "Change password"
msgstr "Ubah Kata Sandi"
#: libraries/display_change_password.lib.php:35
-#: libraries/replication_gui.lib.php:345 server_privileges.php:768
+#: libraries/replication_gui.lib.php:345 server_privileges.php:807
msgid "No Password"
msgstr "Kata Sandi belum ditetapkan"
#: libraries/display_change_password.lib.php:41
#: libraries/replication_gui.lib.php:59 libraries/replication_gui.lib.php:60
#: libraries/replication_gui.lib.php:335 libraries/replication_gui.lib.php:339
-#: libraries/replication_gui.lib.php:349 server_privileges.php:757
-#: server_privileges.php:761 server_privileges.php:772
-#: server_privileges.php:1499 server_synchronize.php:1175
+#: libraries/replication_gui.lib.php:349 server_privileges.php:796
+#: server_privileges.php:800 server_privileges.php:811
+#: server_privileges.php:1538 server_synchronize.php:1175
msgid "Password"
msgstr "Kata Sandi"
#: libraries/display_change_password.lib.php:46
#: libraries/replication_gui.lib.php:353 libraries/replication_gui.lib.php:356
-#: server_privileges.php:776 server_privileges.php:779
+#: server_privileges.php:815 server_privileges.php:818
msgid "Re-type"
msgstr "Ketik ulang"
@@ -2004,12 +2004,12 @@ msgid "MySQL 4.0 compatible"
msgstr "MySQL 4.0 compatible"
#: libraries/display_change_password.lib.php:72
-#: libraries/replication_gui.lib.php:360 server_privileges.php:783
+#: libraries/replication_gui.lib.php:360 server_privileges.php:822
msgid "Generate Password"
msgstr "Menghasilkan kata sandi"
#: libraries/display_change_password.lib.php:75
-#: libraries/replication_gui.lib.php:363 server_privileges.php:786
+#: libraries/replication_gui.lib.php:363 server_privileges.php:825
msgid "Generate"
msgstr "Menghasilkan"
@@ -2022,8 +2022,8 @@ msgstr "Ciptakan database baru"
msgid "Create"
msgstr "Ciptakan"
-#: libraries/display_create_database.lib.php:40 server_privileges.php:74
-#: server_privileges.php:1388 server_replication.php:35
+#: libraries/display_create_database.lib.php:40 server_privileges.php:113
+#: server_privileges.php:1427 server_replication.php:35
msgid "No Privileges"
msgstr "Tidak ada Hak Akses (privilege)"
@@ -2112,7 +2112,7 @@ msgstr "Kompresi"
#: libraries/display_export.lib.php:240 libraries/display_import.lib.php:197
#: libraries/display_import.lib.php:210 libraries/display_tbl.lib.php:530
#: libraries/export/sql.php:868 libraries/tbl_properties.inc.php:575
-#: server_privileges.php:1836 server_processlist.php:75
+#: server_privileges.php:1875 server_processlist.php:75
msgid "None"
msgstr "tanpa"
@@ -2435,7 +2435,7 @@ msgstr ""
msgid "Buffer Pool"
msgstr "Penampungan Buffer"
-#: libraries/engines/innodb.lib.php:145 server_status.php:306
+#: libraries/engines/innodb.lib.php:145 server_status.php:417
msgid "InnoDB Status"
msgstr "Status dari InnoDB"
@@ -2444,8 +2444,8 @@ msgid "Buffer Pool Usage"
msgstr "Penggunaan penampungan Buffer"
#: libraries/engines/innodb.lib.php:194 server_databases.php:137
-#: server_databases.php:305 server_status.php:414 server_status.php:475
-#: server_status.php:496 tbl_printview.php:351 tbl_structure.php:696
+#: server_databases.php:305 server_status.php:525 server_status.php:586
+#: server_status.php:607 tbl_printview.php:351 tbl_structure.php:696
msgid "Total"
msgstr "Jumlah"
@@ -2779,7 +2779,7 @@ msgstr "Microsoft Word 2000"
#: libraries/export/latex.php:201 libraries/export/odt.php:48
#: libraries/export/sql.php:106 libraries/export/sql.php:868
#: libraries/export/texytext.php:27 server_databases.php:127
-#: server_privileges.php:537 server_replication.php:316 tbl_printview.php:317
+#: server_privileges.php:576 server_replication.php:316 tbl_printview.php:317
#: tbl_structure.php:665
msgid "Data"
msgstr "Data"
@@ -2829,9 +2829,9 @@ msgstr "Tipe MIME"
#: libraries/export/xml.php:102 libraries/header_printview.inc.php:57
#: libraries/replication_gui.lib.php:63 libraries/replication_gui.lib.php:174
#: libraries/replication_gui.lib.php:269 libraries/replication_gui.lib.php:272
-#: libraries/replication_gui.lib.php:329 server_privileges.php:692
-#: server_privileges.php:695 server_privileges.php:751
-#: server_privileges.php:1498 server_privileges.php:2030
+#: libraries/replication_gui.lib.php:329 server_privileges.php:731
+#: server_privileges.php:734 server_privileges.php:790
+#: server_privileges.php:1537 server_privileges.php:2069
#: server_processlist.php:55 server_synchronize.php:1159
msgid "Host"
msgstr "Host"
@@ -3189,755 +3189,6 @@ msgstr "tanpa"
msgid "Convert to Kana"
msgstr ""
-#. l10n: Text direction, use either ltr or rtl
-#: libraries/messages.inc.php:19
-msgid "ltr"
-msgstr "ltr"
-
-#: libraries/messages.inc.php:21
-msgid "Content of table __TABLE__"
-msgstr "Isi dari tabel __TABLE__"
-
-#: libraries/messages.inc.php:22
-msgid "(continued)"
-msgstr "(dilanjutkan)"
-
-#: libraries/messages.inc.php:23
-msgid "Structure of table __TABLE__"
-msgstr "Struktur dari tabel __TABLE__"
-
-#: libraries/messages.inc.php:25 server_privileges.php:227
-msgid "Includes all privileges except GRANT."
-msgstr "Menggunakan seluruh Hak Istimewa (Privileges) selain GRANT."
-
-#: libraries/messages.inc.php:26 server_privileges.php:153
-#: server_privileges.php:476
-msgid "Allows altering the structure of existing tables."
-msgstr "Mengizinkan untuk merubah struktur dari tabel yang ada."
-
-#: libraries/messages.inc.php:27 server_privileges.php:169
-#: server_privileges.php:482
-msgid "Allows altering and dropping stored routines."
-msgstr "Mengizinkan perubahan dan penghapusan dari Routines yang tersimpan."
-
-#: libraries/messages.inc.php:28 server_privileges.php:145
-#: server_privileges.php:475
-msgid "Allows creating new databases and tables."
-msgstr "Mengizinkan untuk menciptakan database dan tabel baru."
-
-#: libraries/messages.inc.php:29 server_privileges.php:168
-#: server_privileges.php:481
-msgid "Allows creating stored routines."
-msgstr "Mengizinkan penciptaan Routines yang akan disimpan."
-
-#: libraries/messages.inc.php:30 server_privileges.php:475
-msgid "Allows creating new tables."
-msgstr "Mengizinkan untuk menciptakan tabel baru."
-
-#: libraries/messages.inc.php:31 server_privileges.php:156
-#: server_privileges.php:479
-msgid "Allows creating temporary tables."
-msgstr "Mengizinkan untuk menciptakan tabel yang bersifat temporer."
-
-#: libraries/messages.inc.php:32 server_privileges.php:170
-#: server_privileges.php:515
-msgid "Allows creating, dropping and renaming user accounts."
-msgstr "Mengizinkan penciptaan, penghapusan dan perubahan account pengguna."
-
-#: libraries/messages.inc.php:33 server_privileges.php:160
-#: server_privileges.php:164 server_privileges.php:487
-#: server_privileges.php:491
-msgid "Allows creating new views."
-msgstr "Mengizinkan untuk menciptakan pandangan baru."
-
-#: libraries/messages.inc.php:34 server_privileges.php:144
-#: server_privileges.php:467
-msgid "Allows deleting data."
-msgstr "Mengizinkan untuk hapus data."
-
-#: libraries/messages.inc.php:35 server_privileges.php:146
-#: server_privileges.php:478
-msgid "Allows dropping databases and tables."
-msgstr "Mengizinkan untuk hapus database dan tabel."
-
-#: libraries/messages.inc.php:36 server_privileges.php:478
-msgid "Allows dropping tables."
-msgstr "Mengizinkan untuk hapus tabel."
-
-#: libraries/messages.inc.php:37 server_privileges.php:161
-#: server_privileges.php:495
-msgid "Allows to set up events for the event scheduler"
-msgstr ""
-
-#: libraries/messages.inc.php:38 server_privileges.php:171
-#: server_privileges.php:483
-msgid "Allows executing stored routines."
-msgstr "Mengizinkan eksekusi Routines yang tersimpan."
-
-#: libraries/messages.inc.php:39 server_privileges.php:150
-#: server_privileges.php:470
-msgid "Allows importing data from and exporting data into files."
-msgstr "Mengizinkan untuk impor data dari file dan ekspor data kedalam file."
-
-#: libraries/messages.inc.php:40 server_privileges.php:501
-msgid ""
-"Allows adding users and privileges without reloading the privilege tables."
-msgstr ""
-"Mengizinkan untuk menambah pengguna dan Hak Istimewa (Privileges) tanpa "
-"harus me-reload ulang tabel Hak Istimewa."
-
-#: libraries/messages.inc.php:41 server_privileges.php:152
-#: server_privileges.php:477
-msgid "Allows creating and dropping indexes."
-msgstr "Mengizinkan untuk menciptakan dan hapus Indeks."
-
-#: libraries/messages.inc.php:42 server_privileges.php:142
-#: server_privileges.php:403 server_privileges.php:465
-msgid "Allows inserting and replacing data."
-msgstr "Mengizinkan untuk tambah dan ganti data."
-
-#: libraries/messages.inc.php:43 server_privileges.php:157
-#: server_privileges.php:510
-msgid "Allows locking tables for the current thread."
-msgstr "Mengizinkan untuk mengunci tabel dalam Thread yang lagi berjalan."
-
-#: libraries/messages.inc.php:44 server_privileges.php:607
-#: server_privileges.php:609
-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/messages.inc.php:45 server_privileges.php:595
-#: server_privileges.php:597
-msgid "Limits the number of queries the user may send to the server per hour."
-msgstr ""
-"Membatasi jumlah pencarian (Queries) yang diperbolehkan untuk setiap "
-"pengguna dalam batas waktu satu jam."
-
-#: libraries/messages.inc.php:46 server_privileges.php:601
-#: server_privileges.php:603
-msgid ""
-"Limits the number of commands that change any table or database the user may "
-"execute per hour."
-msgstr ""
-"Membatasi jumlah perintah untuk merubah sebuah tabel atau database untuk "
-"setiap pengguna dalam batas waktu satu jam."
-
-#: libraries/messages.inc.php:47 server_privileges.php:613
-#: server_privileges.php:615
-#, fuzzy
-msgid "Limits the number of simultaneous connections the user may have."
-msgstr ""
-"Membatasi jumlah koneksi baru yang diperbolehkan untuk setiap pengguna dalam "
-"batas waktu satu jam."
-
-#: libraries/messages.inc.php:48 server_privileges.php:149
-#: server_privileges.php:505
-msgid "Allows viewing processes of all users"
-msgstr ""
-
-#: libraries/messages.inc.php:49 server_privileges.php:151
-#: server_privileges.php:409 server_privileges.php:511
-msgid "Has no effect in this MySQL version."
-msgstr "Tidak ada efek dalam versi MySQL yang digunakan."
-
-#: libraries/messages.inc.php:50 server_privileges.php:147
-#: server_privileges.php:506
-msgid "Allows reloading server settings and flushing the server's caches."
-msgstr ""
-"Mengizinkan untuk reload stelan dari server dan untuk flush cache dari "
-"server."
-
-#: libraries/messages.inc.php:51 server_privileges.php:159
-#: server_privileges.php:513
-msgid "Allows the user to ask where the slaves / masters are."
-msgstr ""
-"Memberi hak kepada pengguna untuk menanyakan lokasi dari slaves / masters."
-
-#: libraries/messages.inc.php:52 server_privileges.php:158
-#: server_privileges.php:514
-msgid "Needed for the replication slaves."
-msgstr "Digunakan untuk replikasi dari slaves."
-
-#: libraries/messages.inc.php:53 server_privileges.php:141
-#: server_privileges.php:400 server_privileges.php:464
-msgid "Allows reading data."
-msgstr "Mengizinkan untuk baca data."
-
-#: libraries/messages.inc.php:54 server_privileges.php:154
-#: server_privileges.php:508
-msgid "Gives access to the complete list of databases."
-msgstr "Memberi akses ke seluruh daftar database."
-
-#: libraries/messages.inc.php:55 server_privileges.php:165
-#: server_privileges.php:167 server_privileges.php:480
-msgid "Allows performing SHOW CREATE VIEW queries."
-msgstr "Mengizinkan pencarian dengan cara SHOW CREATE VIEW."
-
-#: libraries/messages.inc.php:56 server_privileges.php:148
-#: server_privileges.php:507
-msgid "Allows shutting down the server."
-msgstr "Mengizinkan untuk shut-down server."
-
-#: libraries/messages.inc.php:57 server_privileges.php:155
-#: server_privileges.php:504
-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 ""
-"Mengizinkan untuk tetap konek meskipun jumlah batas koneksi telah tercapai; "
-"diperlukan untuk hampir semua operasi administratif seperti stelan variabel "
-"global atau untuk mematikan sebuah Thread yang dimiliki oleh pengguna lain."
-
-#: libraries/messages.inc.php:58 server_privileges.php:162
-#: server_privileges.php:496
-#, fuzzy
-msgid "Allows creating and dropping triggers"
-msgstr "Mengizinkan untuk menciptakan dan hapus Indeks."
-
-#: libraries/messages.inc.php:59 server_privileges.php:143
-#: server_privileges.php:406 server_privileges.php:466
-msgid "Allows changing data."
-msgstr "Mengizinkan untuk ubah data."
-
-#: libraries/messages.inc.php:60 server_privileges.php:221
-msgid "No privileges."
-msgstr "Tanpa Hak Istimewa (Privileges)."
-
-#: libraries/messages.inc.php:62
-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/messages.inc.php:63
-msgid "The number of transactions that used the temporary binary log cache."
-msgstr ""
-
-#: libraries/messages.inc.php:64
-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 "
-"to increase the tmp_table_size value to cause temporary tables to be memory-"
-"based instead of disk-based."
-msgstr ""
-
-#: libraries/messages.inc.php:65
-msgid "How many temporary files mysqld has created."
-msgstr ""
-
-#: libraries/messages.inc.php:66
-msgid ""
-"The number of in-memory temporary tables created automatically by the server "
-"while executing statements."
-msgstr ""
-
-#: libraries/messages.inc.php:67
-msgid ""
-"The number of rows written with INSERT DELAYED for which some error occurred "
-"(probably duplicate key)."
-msgstr ""
-
-#: libraries/messages.inc.php:68
-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/messages.inc.php:69
-msgid "The number of INSERT DELAYED rows written."
-msgstr ""
-
-#: libraries/messages.inc.php:70
-msgid "The number of executed FLUSH statements."
-msgstr ""
-
-#: libraries/messages.inc.php:71
-msgid "The number of internal COMMIT statements."
-msgstr ""
-
-#: libraries/messages.inc.php:72
-msgid "The number of times a row was deleted from a table."
-msgstr ""
-
-#: libraries/messages.inc.php:73
-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/messages.inc.php:74
-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/messages.inc.php:75
-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/messages.inc.php:76
-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/messages.inc.php:77
-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/messages.inc.php:78
-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 "
-"probably have a lot of queries that require MySQL to scan whole tables or "
-"you have joins that don't use keys properly."
-msgstr ""
-
-#: libraries/messages.inc.php:79
-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 "
-"tables are not properly indexed or that your queries are not written to take "
-"advantage of the indexes you have."
-msgstr ""
-
-#: libraries/messages.inc.php:80
-msgid "The number of internal ROLLBACK statements."
-msgstr ""
-
-#: libraries/messages.inc.php:81
-msgid "The number of requests to update a row in a table."
-msgstr ""
-
-#: libraries/messages.inc.php:82
-msgid "The number of requests to insert a row in a table."
-msgstr ""
-
-#: libraries/messages.inc.php:83
-msgid "The number of pages containing data (dirty or clean)."
-msgstr ""
-
-#: libraries/messages.inc.php:84
-msgid "The number of pages currently dirty."
-msgstr ""
-
-#: libraries/messages.inc.php:85
-msgid "The number of buffer pool pages that have been requested to be flushed."
-msgstr ""
-
-#: libraries/messages.inc.php:86
-msgid "The number of free pages."
-msgstr ""
-
-#: libraries/messages.inc.php:87
-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/messages.inc.php:88
-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 "
-"be calculated as Innodb_buffer_pool_pages_total - "
-"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data."
-msgstr ""
-
-#: libraries/messages.inc.php:89
-msgid "Total size of buffer pool, in pages."
-msgstr ""
-
-#: libraries/messages.inc.php:90
-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/messages.inc.php:91
-msgid ""
-"The number of sequential read-aheads InnoDB initiated. This happens when "
-"InnoDB does a sequential full table scan."
-msgstr ""
-
-#: libraries/messages.inc.php:92
-msgid "The number of logical read requests InnoDB has done."
-msgstr ""
-
-#: libraries/messages.inc.php:93
-msgid ""
-"The number of logical reads that InnoDB could not satisfy from buffer pool "
-"and had to do a single-page read."
-msgstr ""
-
-#: libraries/messages.inc.php:94
-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 "
-"available, it's necessary to wait for pages to be flushed first. This "
-"counter counts instances of these waits. If the buffer pool size was set "
-"properly, this value should be small."
-msgstr ""
-
-#: libraries/messages.inc.php:95
-msgid "The number writes done to the InnoDB buffer pool."
-msgstr ""
-
-#: libraries/messages.inc.php:96
-msgid "The number of fsync() operations so far."
-msgstr ""
-
-#: libraries/messages.inc.php:97
-msgid "The current number of pending fsync() operations."
-msgstr ""
-
-#: libraries/messages.inc.php:98
-msgid "The current number of pending reads."
-msgstr ""
-
-#: libraries/messages.inc.php:99
-msgid "The current number of pending writes."
-msgstr ""
-
-#: libraries/messages.inc.php:100
-msgid "The amount of data read so far, in bytes."
-msgstr ""
-
-#: libraries/messages.inc.php:101
-msgid "The total number of data reads."
-msgstr ""
-
-#: libraries/messages.inc.php:102
-msgid "The total number of data writes."
-msgstr ""
-
-#: libraries/messages.inc.php:103
-msgid "The amount of data written so far, in bytes."
-msgstr ""
-
-#: libraries/messages.inc.php:104
-msgid "The number of pages that have been written for doublewrite operations."
-msgstr ""
-
-#: libraries/messages.inc.php:105
-msgid "The number of doublewrite operations that have been performed."
-msgstr ""
-
-#: libraries/messages.inc.php:106
-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/messages.inc.php:107
-msgid "The number of log write requests."
-msgstr ""
-
-#: libraries/messages.inc.php:108
-msgid "The number of physical writes to the log file."
-msgstr ""
-
-#: libraries/messages.inc.php:109
-msgid "The number of fsync() writes done to the log file."
-msgstr ""
-
-#: libraries/messages.inc.php:110
-msgid "The number of pending log file fsyncs."
-msgstr ""
-
-#: libraries/messages.inc.php:111
-msgid "Pending log file writes."
-msgstr ""
-
-#: libraries/messages.inc.php:112
-msgid "The number of bytes written to the log file."
-msgstr ""
-
-#: libraries/messages.inc.php:113
-msgid "The number of pages created."
-msgstr ""
-
-#: libraries/messages.inc.php:114
-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/messages.inc.php:115
-msgid "The number of pages read."
-msgstr ""
-
-#: libraries/messages.inc.php:116
-msgid "The number of pages written."
-msgstr ""
-
-#: libraries/messages.inc.php:117
-msgid "The number of row locks currently being waited for."
-msgstr ""
-
-#: libraries/messages.inc.php:118
-msgid "The average time to acquire a row lock, in milliseconds."
-msgstr ""
-
-#: libraries/messages.inc.php:119
-msgid "The total time spent in acquiring row locks, in milliseconds."
-msgstr ""
-
-#: libraries/messages.inc.php:120
-msgid "The maximum time to acquire a row lock, in milliseconds."
-msgstr ""
-
-#: libraries/messages.inc.php:121
-msgid "The number of times a row lock had to be waited for."
-msgstr ""
-
-#: libraries/messages.inc.php:122
-msgid "The number of rows deleted from InnoDB tables."
-msgstr ""
-
-#: libraries/messages.inc.php:123
-msgid "The number of rows inserted in InnoDB tables."
-msgstr ""
-
-#: libraries/messages.inc.php:124
-msgid "The number of rows read from InnoDB tables."
-msgstr ""
-
-#: libraries/messages.inc.php:125
-msgid "The number of rows updated in InnoDB tables."
-msgstr ""
-
-#: libraries/messages.inc.php:126
-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/messages.inc.php:127
-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/messages.inc.php:128
-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/messages.inc.php:129
-msgid "The number of requests to read a key block from the cache."
-msgstr ""
-
-#: libraries/messages.inc.php:130
-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/messages.inc.php:131
-msgid "The number of requests to write a key block to the cache."
-msgstr ""
-
-#: libraries/messages.inc.php:132
-msgid "The number of physical writes of a key block to disk."
-msgstr ""
-
-#: libraries/messages.inc.php:133
-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/messages.inc.php:134
-msgid "The number of rows waiting to be written in INSERT DELAYED queues."
-msgstr ""
-
-#: libraries/messages.inc.php:135
-msgid ""
-"The number of tables that have been opened. If opened tables is big, your "
-"table cache value is probably too small."
-msgstr ""
-
-#: libraries/messages.inc.php:136
-msgid "The number of files that are open."
-msgstr ""
-
-#: libraries/messages.inc.php:137
-msgid "The number of streams that are open (used mainly for logging)."
-msgstr ""
-
-#: libraries/messages.inc.php:138
-msgid "The number of tables that are open."
-msgstr ""
-
-#: libraries/messages.inc.php:139
-msgid "The number of free memory blocks in query cache."
-msgstr ""
-
-#: libraries/messages.inc.php:140
-msgid "The amount of free memory for query cache."
-msgstr ""
-
-#: libraries/messages.inc.php:141
-msgid "The number of cache hits."
-msgstr ""
-
-#: libraries/messages.inc.php:142
-msgid "The number of queries added to the cache."
-msgstr ""
-
-#: libraries/messages.inc.php:143
-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 "
-"cache size. The query cache uses a least recently used (LRU) strategy to "
-"decide which queries to remove from the cache."
-msgstr ""
-
-#: libraries/messages.inc.php:144
-msgid ""
-"The number of non-cached queries (not cachable, or not cached due to the "
-"query_cache_type setting)."
-msgstr ""
-
-#: libraries/messages.inc.php:145
-msgid "The number of queries registered in the cache."
-msgstr ""
-
-#: libraries/messages.inc.php:146
-msgid "The total number of blocks in the query cache."
-msgstr ""
-
-#: libraries/messages.inc.php:147
-#, fuzzy
-msgctxt "$strShowStatusReset"
-msgid "Reset"
-msgstr "Reset"
-
-#: libraries/messages.inc.php:148
-msgid "The status of failsafe replication (not yet implemented)."
-msgstr ""
-
-#: libraries/messages.inc.php:149
-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/messages.inc.php:150
-msgid "The number of joins that used a range search on a reference table."
-msgstr ""
-
-#: libraries/messages.inc.php:151
-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/messages.inc.php:152
-msgid ""
-"The number of joins that used ranges on the first table. (It's normally not "
-"critical even if this is big.)"
-msgstr ""
-
-#: libraries/messages.inc.php:153
-msgid "The number of joins that did a full scan of the first table."
-msgstr ""
-
-#: libraries/messages.inc.php:154
-msgid "The number of temporary tables currently open by the slave SQL thread."
-msgstr ""
-
-#: libraries/messages.inc.php:155
-msgid ""
-"Total (since startup) number of times the replication slave SQL thread has "
-"retried transactions."
-msgstr ""
-
-#: libraries/messages.inc.php:156
-msgid "This is ON if this server is a slave that is connected to a master."
-msgstr ""
-
-#: libraries/messages.inc.php:157
-msgid ""
-"The number of threads that have taken more than slow_launch_time seconds to "
-"create."
-msgstr ""
-
-#: libraries/messages.inc.php:158
-msgid ""
-"The number of queries that have taken more than long_query_time seconds."
-msgstr ""
-
-#: libraries/messages.inc.php:159
-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/messages.inc.php:160
-msgid "The number of sorts that were done with ranges."
-msgstr ""
-
-#: libraries/messages.inc.php:161
-msgid "The number of sorted rows."
-msgstr ""
-
-#: libraries/messages.inc.php:162
-msgid "The number of sorts that were done by scanning the table."
-msgstr ""
-
-#: libraries/messages.inc.php:163
-msgid "The number of times that a table lock was acquired immediately."
-msgstr ""
-
-#: libraries/messages.inc.php:164
-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 "
-"should first optimize your queries, and then either split your table or "
-"tables or use replication."
-msgstr ""
-
-#: libraries/messages.inc.php:165
-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/messages.inc.php:166
-msgid "The number of currently open connections."
-msgstr ""
-
-#: libraries/messages.inc.php:167
-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 "
-"doesn't give a notable performance improvement if you have a good thread "
-"implementation.)"
-msgstr ""
-
-#: libraries/messages.inc.php:168
-msgid "The number of threads that are not sleeping."
-msgstr ""
-
#: libraries/mult_submits.inc.php:76 libraries/tbl_properties.inc.php:513
#: tbl_structure.php:29 tbl_structure.php:153 tbl_structure.php:157
#: tbl_structure.php:473
@@ -4256,8 +3507,8 @@ msgstr ""
#: libraries/replication_gui.lib.php:55 libraries/replication_gui.lib.php:56
#: libraries/replication_gui.lib.php:249 libraries/replication_gui.lib.php:252
-#: libraries/replication_gui.lib.php:259 server_privileges.php:672
-#: server_privileges.php:675 server_privileges.php:682
+#: libraries/replication_gui.lib.php:259 server_privileges.php:711
+#: server_privileges.php:714 server_privileges.php:721
#: server_synchronize.php:1171
msgid "User name"
msgstr "Nama pengguna"
@@ -4276,11 +3527,11 @@ msgid "Slave status"
msgstr ""
#: libraries/replication_gui.lib.php:114 libraries/sql_query_form.lib.php:445
-#: server_status.php:626 server_variables.php:52
+#: server_status.php:737 server_variables.php:52
msgid "Variable"
msgstr "Variabel"
-#: libraries/replication_gui.lib.php:115 server_status.php:627
+#: libraries/replication_gui.lib.php:115 server_status.php:738
#: tbl_change.php:324 tbl_printview.php:370 tbl_select.php:139
#: tbl_structure.php:729
msgid "Value"
@@ -4300,41 +3551,58 @@ msgstr ""
msgid "Add slave replication user"
msgstr ""
-#: libraries/replication_gui.lib.php:254 server_privileges.php:677
+#: libraries/replication_gui.lib.php:254 server_privileges.php:716
msgid "Any user"
msgstr "Setiap pengguna"
#: libraries/replication_gui.lib.php:255 libraries/replication_gui.lib.php:323
-#: libraries/replication_gui.lib.php:346 server_privileges.php:678
-#: server_privileges.php:745 server_privileges.php:769
-#: server_privileges.php:1889 server_privileges.php:1919
+#: libraries/replication_gui.lib.php:346 server_privileges.php:717
+#: server_privileges.php:784 server_privileges.php:808
+#: server_privileges.php:1928 server_privileges.php:1958
msgid "Use text field"
msgstr "Gunakan text field"
-#: libraries/replication_gui.lib.php:302 server_privileges.php:725
+#: libraries/replication_gui.lib.php:302 server_privileges.php:764
msgid "Any host"
msgstr "Setiap host"
-#: libraries/replication_gui.lib.php:306 server_privileges.php:729
+#: libraries/replication_gui.lib.php:306 server_privileges.php:768
msgid "Local"
msgstr "Lokal"
-#: libraries/replication_gui.lib.php:312 server_privileges.php:734
+#: libraries/replication_gui.lib.php:312 server_privileges.php:773
msgid "This Host"
msgstr "Host yang ini"
-#: libraries/replication_gui.lib.php:318 server_privileges.php:740
+#: libraries/replication_gui.lib.php:318 server_privileges.php:779
msgid "Use Host Table"
msgstr "Gunakan Host Table"
-#: libraries/replication_gui.lib.php:331 server_privileges.php:753
+#: libraries/replication_gui.lib.php:331 server_privileges.php:792
msgid ""
"When Host table is used, this field is ignored and values stored in Host "
"table are used instead."
msgstr ""
-#: libraries/select_lang.lib.php:480 libraries/select_lang.lib.php:486
-#: libraries/select_lang.lib.php:492
+#. l10n: Text direction, use either ltr or rtl
+#: libraries/select_lang.lib.php:491
+msgid "ltr"
+msgstr "ltr"
+
+#: libraries/select_lang.lib.php:493
+msgid "Content of table __TABLE__"
+msgstr "Isi dari tabel __TABLE__"
+
+#: libraries/select_lang.lib.php:494
+msgid "(continued)"
+msgstr "(dilanjutkan)"
+
+#: libraries/select_lang.lib.php:495
+msgid "Structure of table __TABLE__"
+msgstr "Struktur dari tabel __TABLE__"
+
+#: libraries/select_lang.lib.php:500 libraries/select_lang.lib.php:506
+#: libraries/select_lang.lib.php:512
#, php-format
msgid "Unknown language: %1$s."
msgstr ""
@@ -4346,7 +3614,7 @@ msgid "Servers"
msgstr "Server"
#: libraries/server_links.inc.php:53 server_engines.php:112
-#: server_engines.php:116 server_status.php:304 test/theme.php:105
+#: server_engines.php:116 server_status.php:415 test/theme.php:105
msgid "Variables"
msgstr "Variabel"
@@ -4359,7 +3627,7 @@ msgid "Engines"
msgstr "Mesin"
#: libraries/server_links.inc.php:76 server_binlog.php:110
-#: server_status.php:253 test/theme.php:121
+#: server_status.php:364 test/theme.php:121
msgid "Binary log"
msgstr "Log binari"
@@ -4822,8 +4090,8 @@ msgstr "Reset"
msgid "Protocol version"
msgstr ""
-#: main.php:189 server_privileges.php:1350 server_privileges.php:1497
-#: server_privileges.php:1611 server_privileges.php:2029
+#: main.php:189 server_privileges.php:1389 server_privileges.php:1536
+#: server_privileges.php:1650 server_privileges.php:2068
#: server_processlist.php:54
msgid "User"
msgstr "Pengguna"
@@ -5207,7 +4475,7 @@ msgstr "Sukses menghapus database %s."
msgid "Databases statistics"
msgstr "Statistik Database"
-#: server_databases.php:117 server_status.php:260
+#: server_databases.php:117 server_status.php:371
#: setup/lib/messages.inc.php:117
msgid "Tables"
msgstr "Tabel"
@@ -5226,6 +4494,15 @@ msgstr ""
msgid "Jump to database"
msgstr "Database tidak ditemukan"
+#: server_databases.php:267
+msgid "Not replicated"
+msgstr ""
+
+#: server_databases.php:273
+#, fuzzy
+msgid "Replicated"
+msgstr "Tabel Relasi"
+
#: server_databases.php:289
#, php-format
msgid "Check privileges for database "%s"."
@@ -5259,146 +4536,346 @@ msgstr "Mesin Penyimpan"
msgid "View dump (schema) of databases"
msgstr "Tampilkan Dump (skema) dari database"
-#: server_privileges.php:263 server_privileges.php:264
+#: server_privileges.php:24 server_privileges.php:266
+msgid "Includes all privileges except GRANT."
+msgstr "Menggunakan seluruh Hak Istimewa (Privileges) selain GRANT."
+
+#: server_privileges.php:25 server_privileges.php:192
+#: server_privileges.php:515
+msgid "Allows altering the structure of existing tables."
+msgstr "Mengizinkan untuk merubah struktur dari tabel yang ada."
+
+#: server_privileges.php:26 server_privileges.php:208
+#: server_privileges.php:521
+msgid "Allows altering and dropping stored routines."
+msgstr "Mengizinkan perubahan dan penghapusan dari Routines yang tersimpan."
+
+#: server_privileges.php:27 server_privileges.php:184
+#: server_privileges.php:514
+msgid "Allows creating new databases and tables."
+msgstr "Mengizinkan untuk menciptakan database dan tabel baru."
+
+#: server_privileges.php:28 server_privileges.php:207
+#: server_privileges.php:520
+msgid "Allows creating stored routines."
+msgstr "Mengizinkan penciptaan Routines yang akan disimpan."
+
+#: server_privileges.php:29 server_privileges.php:514
+msgid "Allows creating new tables."
+msgstr "Mengizinkan untuk menciptakan tabel baru."
+
+#: server_privileges.php:30 server_privileges.php:195
+#: server_privileges.php:518
+msgid "Allows creating temporary tables."
+msgstr "Mengizinkan untuk menciptakan tabel yang bersifat temporer."
+
+#: server_privileges.php:31 server_privileges.php:209
+#: server_privileges.php:554
+msgid "Allows creating, dropping and renaming user accounts."
+msgstr "Mengizinkan penciptaan, penghapusan dan perubahan account pengguna."
+
+#: server_privileges.php:32 server_privileges.php:199
+#: server_privileges.php:203 server_privileges.php:526
+#: server_privileges.php:530
+msgid "Allows creating new views."
+msgstr "Mengizinkan untuk menciptakan pandangan baru."
+
+#: server_privileges.php:33 server_privileges.php:183
+#: server_privileges.php:506
+msgid "Allows deleting data."
+msgstr "Mengizinkan untuk hapus data."
+
+#: server_privileges.php:34 server_privileges.php:185
+#: server_privileges.php:517
+msgid "Allows dropping databases and tables."
+msgstr "Mengizinkan untuk hapus database dan tabel."
+
+#: server_privileges.php:35 server_privileges.php:517
+msgid "Allows dropping tables."
+msgstr "Mengizinkan untuk hapus tabel."
+
+#: server_privileges.php:36 server_privileges.php:200
+#: server_privileges.php:534
+msgid "Allows to set up events for the event scheduler"
+msgstr ""
+
+#: server_privileges.php:37 server_privileges.php:210
+#: server_privileges.php:522
+msgid "Allows executing stored routines."
+msgstr "Mengizinkan eksekusi Routines yang tersimpan."
+
+#: server_privileges.php:38 server_privileges.php:189
+#: server_privileges.php:509
+msgid "Allows importing data from and exporting data into files."
+msgstr "Mengizinkan untuk impor data dari file dan ekspor data kedalam file."
+
+#: server_privileges.php:39 server_privileges.php:540
+msgid ""
+"Allows adding users and privileges without reloading the privilege tables."
+msgstr ""
+"Mengizinkan untuk menambah pengguna dan Hak Istimewa (Privileges) tanpa "
+"harus me-reload ulang tabel Hak Istimewa."
+
+#: server_privileges.php:40 server_privileges.php:191
+#: server_privileges.php:516
+msgid "Allows creating and dropping indexes."
+msgstr "Mengizinkan untuk menciptakan dan hapus Indeks."
+
+#: server_privileges.php:41 server_privileges.php:181
+#: server_privileges.php:442 server_privileges.php:504
+msgid "Allows inserting and replacing data."
+msgstr "Mengizinkan untuk tambah dan ganti data."
+
+#: server_privileges.php:42 server_privileges.php:196
+#: server_privileges.php:549
+msgid "Allows locking tables for the current thread."
+msgstr "Mengizinkan untuk mengunci tabel dalam Thread yang lagi berjalan."
+
+#: server_privileges.php:43 server_privileges.php:646
+#: server_privileges.php:648
+msgid "Limits the number of new connections the user may open per hour."
+msgstr ""
+"Membatasi jumlah koneksi baru yang diperbolehkan untuk setiap pengguna dalam "
+"batas waktu satu jam."
+
+#: server_privileges.php:44 server_privileges.php:634
+#: server_privileges.php:636
+msgid "Limits the number of queries the user may send to the server per hour."
+msgstr ""
+"Membatasi jumlah pencarian (Queries) yang diperbolehkan untuk setiap "
+"pengguna dalam batas waktu satu jam."
+
+#: server_privileges.php:45 server_privileges.php:640
+#: server_privileges.php:642
+msgid ""
+"Limits the number of commands that change any table or database the user may "
+"execute per hour."
+msgstr ""
+"Membatasi jumlah perintah untuk merubah sebuah tabel atau database untuk "
+"setiap pengguna dalam batas waktu satu jam."
+
+#: server_privileges.php:46 server_privileges.php:652
+#: server_privileges.php:654
+#, fuzzy
+msgid "Limits the number of simultaneous connections the user may have."
+msgstr ""
+"Membatasi jumlah koneksi baru yang diperbolehkan untuk setiap pengguna dalam "
+"batas waktu satu jam."
+
+#: server_privileges.php:47 server_privileges.php:188
+#: server_privileges.php:544
+msgid "Allows viewing processes of all users"
+msgstr ""
+
+#: server_privileges.php:48 server_privileges.php:190
+#: server_privileges.php:448 server_privileges.php:550
+msgid "Has no effect in this MySQL version."
+msgstr "Tidak ada efek dalam versi MySQL yang digunakan."
+
+#: server_privileges.php:49 server_privileges.php:186
+#: server_privileges.php:545
+msgid "Allows reloading server settings and flushing the server's caches."
+msgstr ""
+"Mengizinkan untuk reload stelan dari server dan untuk flush cache dari "
+"server."
+
+#: server_privileges.php:50 server_privileges.php:198
+#: server_privileges.php:552
+msgid "Allows the user to ask where the slaves / masters are."
+msgstr ""
+"Memberi hak kepada pengguna untuk menanyakan lokasi dari slaves / masters."
+
+#: server_privileges.php:51 server_privileges.php:197
+#: server_privileges.php:553
+msgid "Needed for the replication slaves."
+msgstr "Digunakan untuk replikasi dari slaves."
+
+#: server_privileges.php:52 server_privileges.php:180
+#: server_privileges.php:439 server_privileges.php:503
+msgid "Allows reading data."
+msgstr "Mengizinkan untuk baca data."
+
+#: server_privileges.php:53 server_privileges.php:193
+#: server_privileges.php:547
+msgid "Gives access to the complete list of databases."
+msgstr "Memberi akses ke seluruh daftar database."
+
+#: server_privileges.php:54 server_privileges.php:204
+#: server_privileges.php:206 server_privileges.php:519
+msgid "Allows performing SHOW CREATE VIEW queries."
+msgstr "Mengizinkan pencarian dengan cara SHOW CREATE VIEW."
+
+#: server_privileges.php:55 server_privileges.php:187
+#: server_privileges.php:546
+msgid "Allows shutting down the server."
+msgstr "Mengizinkan untuk shut-down server."
+
+#: server_privileges.php:56 server_privileges.php:194
+#: server_privileges.php:543
+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 ""
+"Mengizinkan untuk tetap konek meskipun jumlah batas koneksi telah tercapai; "
+"diperlukan untuk hampir semua operasi administratif seperti stelan variabel "
+"global atau untuk mematikan sebuah Thread yang dimiliki oleh pengguna lain."
+
+#: server_privileges.php:57 server_privileges.php:201
+#: server_privileges.php:535
+#, fuzzy
+msgid "Allows creating and dropping triggers"
+msgstr "Mengizinkan untuk menciptakan dan hapus Indeks."
+
+#: server_privileges.php:58 server_privileges.php:182
+#: server_privileges.php:445 server_privileges.php:505
+msgid "Allows changing data."
+msgstr "Mengizinkan untuk ubah data."
+
+#: server_privileges.php:59 server_privileges.php:260
+msgid "No privileges."
+msgstr "Tanpa Hak Istimewa (Privileges)."
+
+#: server_privileges.php:302 server_privileges.php:303
#, fuzzy
#| msgid "None"
msgctxt "None privileges"
msgid "None"
msgstr "tanpa"
-#: server_privileges.php:392 server_privileges.php:527
-#: server_privileges.php:1679 server_privileges.php:1685
+#: server_privileges.php:431 server_privileges.php:566
+#: server_privileges.php:1718 server_privileges.php:1724
msgid "Table-specific privileges"
msgstr "Hak (privileges) khusus terhadap tabel"
-#: server_privileges.php:393 server_privileges.php:535
-#: server_privileges.php:1501
+#: server_privileges.php:432 server_privileges.php:574
+#: server_privileges.php:1540
msgid " Note: MySQL privilege names are expressed in English "
msgstr " Catatan: Nama privilege MySQL dalam bahasa Ingris "
-#: server_privileges.php:524 server_privileges.php:1500
+#: server_privileges.php:563 server_privileges.php:1539
msgid "Global privileges"
msgstr "Hak Istimewa (Privileges) Global"
-#: server_privileges.php:526 server_privileges.php:1679
+#: server_privileges.php:565 server_privileges.php:1718
msgid "Database-specific privileges"
msgstr "Hak (privileges) khusus terhadap Database"
-#: server_privileges.php:571
+#: server_privileges.php:610
msgid "Administration"
msgstr "Administrasi"
-#: server_privileges.php:591
+#: server_privileges.php:630
msgid "Resource limits"
msgstr "Batas dari sumber"
-#: server_privileges.php:592
+#: server_privileges.php:631
msgid "Note: Setting these options to 0 (zero) removes the limit."
msgstr ""
"Perhatian: Perubahan pilihan ini ke posisi 0 (zero) akan menghapus batas "
"yang telah ditentukan."
-#: server_privileges.php:669
+#: server_privileges.php:708
msgid "Login Information"
msgstr "Informasi Login"
-#: server_privileges.php:763
+#: server_privileges.php:802
msgid "Do not change the password"
msgstr "Jangan ubah Kata Sandi"
-#: server_privileges.php:804 server_privileges.php:2166
+#: server_privileges.php:843 server_privileges.php:2205
#, fuzzy
#| msgid "No user(s) found."
msgid "No user found."
msgstr "Pengguna tidak ditemukan."
-#: server_privileges.php:848
+#: server_privileges.php:887
#, php-format
msgid "The user %s already exists!"
msgstr "Pengguna %s telah terdaftar!"
-#: server_privileges.php:931
+#: server_privileges.php:970
msgid "You have added a new user."
msgstr "Pengguna baru telah ditambahkan."
-#: server_privileges.php:1152
+#: server_privileges.php:1191
#, php-format
msgid "You have updated the privileges for %s."
msgstr "Hak Akses (privilege) untuk %s telah di-update."
-#: server_privileges.php:1176
+#: server_privileges.php:1215
#, php-format
msgid "You have revoked the privileges for %s"
msgstr "Hak akses untuk %s telah dicabut"
-#: server_privileges.php:1212
+#: server_privileges.php:1251
#, php-format
msgid "The password for %s was changed successfully."
msgstr "Sukses mengubah Kata Sandi untuk %s ."
-#: server_privileges.php:1232
+#: server_privileges.php:1271
#, php-format
msgid "Deleting %s"
msgstr "Menghapus %s"
-#: server_privileges.php:1243
+#: server_privileges.php:1282
msgid "No users selected for deleting!"
msgstr "Tidak ada pengguna yang dipilih untuk dihapus!"
-#: server_privileges.php:1246
+#: server_privileges.php:1285
msgid "Reloading the privileges"
msgstr "Reload Hak Istimewa (Privileges)"
-#: server_privileges.php:1261
+#: server_privileges.php:1300
msgid "The selected users have been deleted successfully."
msgstr "Sukses menghapus Pengguna yang dipilih."
-#: server_privileges.php:1296
+#: server_privileges.php:1335
msgid "The privileges were reloaded successfully."
msgstr "Sukses reload Hak Istimewa (Privileges)."
-#: server_privileges.php:1324 server_privileges.php:1610
+#: server_privileges.php:1363 server_privileges.php:1649
msgid "Edit Privileges"
msgstr "Ubah hak akses (privilege)"
-#: server_privileges.php:1333
+#: server_privileges.php:1372
msgid "Revoke"
msgstr "Cabut"
-#: server_privileges.php:1365
+#: server_privileges.php:1404
msgid "User overview"
msgstr "Pandangan Umum Pengguna"
-#: server_privileges.php:1502 server_privileges.php:1684
-#: server_privileges.php:2033
+#: server_privileges.php:1541 server_privileges.php:1723
+#: server_privileges.php:2072
msgid "Grant"
msgstr "Izin"
-#: server_privileges.php:1521 server_privileges.php:2123
+#: server_privileges.php:1560 server_privileges.php:2162
msgid "Any"
msgstr "Setiap"
-#: server_privileges.php:1570 server_privileges.php:1594
-#: server_privileges.php:1988 server_privileges.php:2177
+#: server_privileges.php:1609 server_privileges.php:1633
+#: server_privileges.php:2027 server_privileges.php:2216
msgid "Add a new User"
msgstr "Menambahkan pengguna baru"
-#: server_privileges.php:1575
+#: server_privileges.php:1614
msgid "Remove selected users"
msgstr "Hapus pengguna yang dipilih"
-#: server_privileges.php:1578
+#: server_privileges.php:1617
msgid "Revoke all active privileges from the users and delete them afterwards."
msgstr ""
"Cabut seluruh Hak Istimewa (Privileges) dari pengguna, lantas hapus pengguna "
"tsb. dari daftar tabel pengguna."
-#: server_privileges.php:1579 server_privileges.php:1580
-#: server_privileges.php:1581
+#: server_privileges.php:1618 server_privileges.php:1619
+#: server_privileges.php:1620
msgid "Drop the databases that have the same names as the users."
msgstr "Hapus database yang memiliki nama yang sama dengan pengguna."
-#: server_privileges.php:1597
+#: server_privileges.php:1636
#, php-format
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
@@ -5412,94 +4889,94 @@ msgstr ""
"diubah secara manual. Disarankan untuk %sme-reload profil pengguna%s sebelum "
"melanjut."
-#: server_privileges.php:1645
+#: server_privileges.php:1684
msgid "The selected user was not found in the privilege table."
msgstr ""
"Pengguna yang dipilih tidak ditemukan pada tabel hak (privilege table)."
-#: server_privileges.php:1685
+#: server_privileges.php:1724
msgid "Column-specific privileges"
msgstr "Hak (privileges) khusus terhadap kolum"
-#: server_privileges.php:1886
+#: server_privileges.php:1925
msgid "Add privileges on the following database"
msgstr "Menambahkan hak (privileges) pada database berikut"
-#: server_privileges.php:1904
+#: server_privileges.php:1943
msgid "Wildcards % and _ should be escaped with a \\ to use them literally"
msgstr ""
"Wildcard _ dan % sebaiknya diakhiri dengan tanda \\ untuk mengunakannya "
"secara harfiah"
-#: server_privileges.php:1907
+#: server_privileges.php:1946
msgid "Add privileges on the following table"
msgstr "Menambahkan hak (privileges) pada tabel berikut"
-#: server_privileges.php:1964
+#: server_privileges.php:2003
msgid "Change Login Information / Copy User"
msgstr "Ubah informasi Login / Salip pengguna"
-#: server_privileges.php:1967
+#: server_privileges.php:2006
msgid "Create a new user with the same privileges and ..."
msgstr "Ciptakan pengguna baru dengan hak-hak yang sama dan ..."
-#: server_privileges.php:1969
+#: server_privileges.php:2008
msgid "... keep the old one."
msgstr "... mempertahankan yang lama."
-#: server_privileges.php:1970
+#: server_privileges.php:2009
msgid " ... delete the old one from the user tables."
msgstr " ... hapus yang lama dari User Table."
-#: server_privileges.php:1971
+#: server_privileges.php:2010
msgid ""
" ... revoke all active privileges from the old one and delete it afterwards."
msgstr " ... cabut seluruh hak yang aktif, kemudian hapuskan yang lama."
-#: server_privileges.php:1972
+#: server_privileges.php:2011
msgid ""
" ... delete the old one from the user tables and reload the privileges "
"afterwards."
msgstr " ... hapuskan yang lama dari User Table, kemudian reload hak-hak."
-#: server_privileges.php:1994
+#: server_privileges.php:2033
msgid "Database for user"
msgstr "Database untuk pengguna"
-#: server_privileges.php:1998
+#: server_privileges.php:2037
#, fuzzy
#| msgid "None"
msgctxt "Create none database for user"
msgid "None"
msgstr "tanpa"
-#: server_privileges.php:1999
+#: server_privileges.php:2038
msgid "Create database with same name and grant all privileges"
msgstr "Buat database dengan nama yang sama dan beri semua hak"
-#: server_privileges.php:2000
+#: server_privileges.php:2039
msgid "Grant all privileges on wildcard name (username\\_%)"
msgstr "Berikan semua hak untuk nama wildcard (pengguna\\_%)"
-#: server_privileges.php:2003
+#: server_privileges.php:2042
#, php-format
msgid "Grant all privileges on database "%s""
msgstr "Berikan semua hak untuk database "%s"."
-#: server_privileges.php:2026
+#: server_privileges.php:2065
#, php-format
msgid "Users having access to "%s""
msgstr "Pengguna memiliki akses ke "%s""
-#: server_privileges.php:2134
+#: server_privileges.php:2173
msgid "global"
msgstr "global"
-#: server_privileges.php:2136
+#: server_privileges.php:2175
msgid "database-specific"
msgstr "database-spesifik"
-#: server_privileges.php:2138
+#: server_privileges.php:2177
msgid "wildcard"
msgstr "wildcard"
@@ -5547,7 +5024,7 @@ msgstr ""
msgid "This server is configured as master in a replication process."
msgstr ""
-#: server_replication.php:184 server_status.php:281
+#: server_replication.php:184 server_status.php:392
msgid "Show master status"
msgstr ""
@@ -5685,108 +5162,640 @@ msgid ""
"like to configure it?"
msgstr ""
+#: server_status.php:40
+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 ""
+
+#: server_status.php:41
+msgid "The number of transactions that used the temporary binary log cache."
+msgstr ""
+
+#: server_status.php:42
+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 "
+"to increase the tmp_table_size value to cause temporary tables to be memory-"
+"based instead of disk-based."
+msgstr ""
+
+#: server_status.php:43
+msgid "How many temporary files mysqld has created."
+msgstr ""
+
+#: server_status.php:44
+msgid ""
+"The number of in-memory temporary tables created automatically by the server "
+"while executing statements."
+msgstr ""
+
+#: server_status.php:45
+msgid ""
+"The number of rows written with INSERT DELAYED for which some error occurred "
+"(probably duplicate key)."
+msgstr ""
+
#: server_status.php:46
+msgid ""
+"The number of INSERT DELAYED handler threads in use. Every different table "
+"on which one uses INSERT DELAYED gets its own thread."
+msgstr ""
+
+#: server_status.php:47
+msgid "The number of INSERT DELAYED rows written."
+msgstr ""
+
+#: server_status.php:48
+msgid "The number of executed FLUSH statements."
+msgstr ""
+
+#: server_status.php:49
+msgid "The number of internal COMMIT statements."
+msgstr ""
+
+#: server_status.php:50
+msgid "The number of times a row was deleted from a table."
+msgstr ""
+
+#: server_status.php:51
+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 ""
+
+#: server_status.php:52
+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 ""
+
+#: server_status.php:53
+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 ""
+
+#: server_status.php:54
+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 ""
+
+#: server_status.php:55
+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 ""
+
+#: server_status.php:56
+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 "
+"probably have a lot of queries that require MySQL to scan whole tables or "
+"you have joins that don't use keys properly."
+msgstr ""
+
+#: server_status.php:57
+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 "
+"tables are not properly indexed or that your queries are not written to take "
+"advantage of the indexes you have."
+msgstr ""
+
+#: server_status.php:58
+msgid "The number of internal ROLLBACK statements."
+msgstr ""
+
+#: server_status.php:59
+msgid "The number of requests to update a row in a table."
+msgstr ""
+
+#: server_status.php:60
+msgid "The number of requests to insert a row in a table."
+msgstr ""
+
+#: server_status.php:61
+msgid "The number of pages containing data (dirty or clean)."
+msgstr ""
+
+#: server_status.php:62
+msgid "The number of pages currently dirty."
+msgstr ""
+
+#: server_status.php:63
+msgid "The number of buffer pool pages that have been requested to be flushed."
+msgstr ""
+
+#: server_status.php:64
+msgid "The number of free pages."
+msgstr ""
+
+#: server_status.php:65
+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 ""
+
+#: server_status.php:66
+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 "
+"be calculated as Innodb_buffer_pool_pages_total - "
+"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data."
+msgstr ""
+
+#: server_status.php:67
+msgid "Total size of buffer pool, in pages."
+msgstr ""
+
+#: server_status.php:68
+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 ""
+
+#: server_status.php:69
+msgid ""
+"The number of sequential read-aheads InnoDB initiated. This happens when "
+"InnoDB does a sequential full table scan."
+msgstr ""
+
+#: server_status.php:70
+msgid "The number of logical read requests InnoDB has done."
+msgstr ""
+
+#: server_status.php:71
+msgid ""
+"The number of logical reads that InnoDB could not satisfy from buffer pool "
+"and had to do a single-page read."
+msgstr ""
+
+#: server_status.php:72
+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 "
+"available, it's necessary to wait for pages to be flushed first. This "
+"counter counts instances of these waits. If the buffer pool size was set "
+"properly, this value should be small."
+msgstr ""
+
+#: server_status.php:73
+msgid "The number writes done to the InnoDB buffer pool."
+msgstr ""
+
+#: server_status.php:74
+msgid "The number of fsync() operations so far."
+msgstr ""
+
+#: server_status.php:75
+msgid "The current number of pending fsync() operations."
+msgstr ""
+
+#: server_status.php:76
+msgid "The current number of pending reads."
+msgstr ""
+
+#: server_status.php:77
+msgid "The current number of pending writes."
+msgstr ""
+
+#: server_status.php:78
+msgid "The amount of data read so far, in bytes."
+msgstr ""
+
+#: server_status.php:79
+msgid "The total number of data reads."
+msgstr ""
+
+#: server_status.php:80
+msgid "The total number of data writes."
+msgstr ""
+
+#: server_status.php:81
+msgid "The amount of data written so far, in bytes."
+msgstr ""
+
+#: server_status.php:82
+msgid "The number of pages that have been written for doublewrite operations."
+msgstr ""
+
+#: server_status.php:83
+msgid "The number of doublewrite operations that have been performed."
+msgstr ""
+
+#: server_status.php:84
+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 ""
+
+#: server_status.php:85
+msgid "The number of log write requests."
+msgstr ""
+
+#: server_status.php:86
+msgid "The number of physical writes to the log file."
+msgstr ""
+
+#: server_status.php:87
+msgid "The number of fsync() writes done to the log file."
+msgstr ""
+
+#: server_status.php:88
+msgid "The number of pending log file fsyncs."
+msgstr ""
+
+#: server_status.php:89
+msgid "Pending log file writes."
+msgstr ""
+
+#: server_status.php:90
+msgid "The number of bytes written to the log file."
+msgstr ""
+
+#: server_status.php:91
+msgid "The number of pages created."
+msgstr ""
+
+#: server_status.php:92
+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 ""
+
+#: server_status.php:93
+msgid "The number of pages read."
+msgstr ""
+
+#: server_status.php:94
+msgid "The number of pages written."
+msgstr ""
+
+#: server_status.php:95
+msgid "The number of row locks currently being waited for."
+msgstr ""
+
+#: server_status.php:96
+msgid "The average time to acquire a row lock, in milliseconds."
+msgstr ""
+
+#: server_status.php:97
+msgid "The total time spent in acquiring row locks, in milliseconds."
+msgstr ""
+
+#: server_status.php:98
+msgid "The maximum time to acquire a row lock, in milliseconds."
+msgstr ""
+
+#: server_status.php:99
+msgid "The number of times a row lock had to be waited for."
+msgstr ""
+
+#: server_status.php:100
+msgid "The number of rows deleted from InnoDB tables."
+msgstr ""
+
+#: server_status.php:101
+msgid "The number of rows inserted in InnoDB tables."
+msgstr ""
+
+#: server_status.php:102
+msgid "The number of rows read from InnoDB tables."
+msgstr ""
+
+#: server_status.php:103
+msgid "The number of rows updated in InnoDB tables."
+msgstr ""
+
+#: server_status.php:104
+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 ""
+
+#: server_status.php:105
+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 ""
+
+#: server_status.php:106
+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 ""
+
+#: server_status.php:107
+msgid "The number of requests to read a key block from the cache."
+msgstr ""
+
+#: server_status.php:108
+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 ""
+
+#: server_status.php:109
+msgid "The number of requests to write a key block to the cache."
+msgstr ""
+
+#: server_status.php:110
+msgid "The number of physical writes of a key block to disk."
+msgstr ""
+
+#: server_status.php:111
+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 ""
+
+#: server_status.php:112
+msgid "The number of rows waiting to be written in INSERT DELAYED queues."
+msgstr ""
+
+#: server_status.php:113
+msgid ""
+"The number of tables that have been opened. If opened tables is big, your "
+"table cache value is probably too small."
+msgstr ""
+
+#: server_status.php:114
+msgid "The number of files that are open."
+msgstr ""
+
+#: server_status.php:115
+msgid "The number of streams that are open (used mainly for logging)."
+msgstr ""
+
+#: server_status.php:116
+msgid "The number of tables that are open."
+msgstr ""
+
+#: server_status.php:117
+msgid "The number of free memory blocks in query cache."
+msgstr ""
+
+#: server_status.php:118
+msgid "The amount of free memory for query cache."
+msgstr ""
+
+#: server_status.php:119
+msgid "The number of cache hits."
+msgstr ""
+
+#: server_status.php:120
+msgid "The number of queries added to the cache."
+msgstr ""
+
+#: server_status.php:121
+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 "
+"cache size. The query cache uses a least recently used (LRU) strategy to "
+"decide which queries to remove from the cache."
+msgstr ""
+
+#: server_status.php:122
+msgid ""
+"The number of non-cached queries (not cachable, or not cached due to the "
+"query_cache_type setting)."
+msgstr ""
+
+#: server_status.php:123
+msgid "The number of queries registered in the cache."
+msgstr ""
+
+#: server_status.php:124
+msgid "The total number of blocks in the query cache."
+msgstr ""
+
+#: server_status.php:125
+#, fuzzy
+msgctxt "$strShowStatusReset"
+msgid "Reset"
+msgstr "Reset"
+
+#: server_status.php:126
+msgid "The status of failsafe replication (not yet implemented)."
+msgstr ""
+
+#: server_status.php:127
+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 ""
+
+#: server_status.php:128
+msgid "The number of joins that used a range search on a reference table."
+msgstr ""
+
+#: server_status.php:129
+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 ""
+
+#: server_status.php:130
+msgid ""
+"The number of joins that used ranges on the first table. (It's normally not "
+"critical even if this is big.)"
+msgstr ""
+
+#: server_status.php:131
+msgid "The number of joins that did a full scan of the first table."
+msgstr ""
+
+#: server_status.php:132
+msgid "The number of temporary tables currently open by the slave SQL thread."
+msgstr ""
+
+#: server_status.php:133
+msgid ""
+"Total (since startup) number of times the replication slave SQL thread has "
+"retried transactions."
+msgstr ""
+
+#: server_status.php:134
+msgid "This is ON if this server is a slave that is connected to a master."
+msgstr ""
+
+#: server_status.php:135
+msgid ""
+"The number of threads that have taken more than slow_launch_time seconds to "
+"create."
+msgstr ""
+
+#: server_status.php:136
+msgid ""
+"The number of queries that have taken more than long_query_time seconds."
+msgstr ""
+
+#: server_status.php:137
+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 ""
+
+#: server_status.php:138
+msgid "The number of sorts that were done with ranges."
+msgstr ""
+
+#: server_status.php:139
+msgid "The number of sorted rows."
+msgstr ""
+
+#: server_status.php:140
+msgid "The number of sorts that were done by scanning the table."
+msgstr ""
+
+#: server_status.php:141
+msgid "The number of times that a table lock was acquired immediately."
+msgstr ""
+
+#: server_status.php:142
+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 "
+"should first optimize your queries, and then either split your table or "
+"tables or use replication."
+msgstr ""
+
+#: server_status.php:143
+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 ""
+
+#: server_status.php:144
+msgid "The number of currently open connections."
+msgstr ""
+
+#: server_status.php:145
+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 "
+"doesn't give a notable performance improvement if you have a good thread "
+"implementation.)"
+msgstr ""
+
+#: server_status.php:146
+msgid "The number of threads that are not sleeping."
+msgstr ""
+
+#: server_status.php:157
msgid "Runtime Information"
msgstr "Informasi Runtime"
-#: server_status.php:250
+#: server_status.php:361
msgid "Handler"
msgstr ""
-#: server_status.php:251
+#: server_status.php:362
#, fuzzy
msgid "Query cache"
msgstr "Tipe Pencarian"
-#: server_status.php:252
+#: server_status.php:363
msgid "Threads"
msgstr ""
-#: server_status.php:254
+#: server_status.php:365
msgid "Temporary data"
msgstr ""
-#: server_status.php:255
+#: server_status.php:366
#, fuzzy
msgid "Delayed inserts"
msgstr "Gunakan perintah INSERT memperlambat"
-#: server_status.php:256
+#: server_status.php:367
msgid "Key cache"
msgstr ""
-#: server_status.php:257
+#: server_status.php:368
msgid "Joins"
msgstr ""
-#: server_status.php:259
+#: server_status.php:370
msgid "Sorting"
msgstr ""
-#: server_status.php:261
+#: server_status.php:372
msgid "Transaction coordinator"
msgstr "Koordinator transaksi"
-#: server_status.php:271
+#: server_status.php:382
msgid "Flush (close) all tables"
msgstr ""
-#: server_status.php:273
+#: server_status.php:384
#, fuzzy
msgid "Show open tables"
msgstr "Tampilkan tabel"
-#: server_status.php:278
+#: server_status.php:389
msgid "Show slave hosts"
msgstr ""
-#: server_status.php:284
+#: server_status.php:395
msgid "Show slave status"
msgstr ""
-#: server_status.php:289
+#: server_status.php:400
msgid "Flush query cache"
msgstr ""
-#: server_status.php:294
+#: server_status.php:405
msgid "Show processes"
msgstr "Tampilkan Proses"
-#: server_status.php:344
+#: server_status.php:455
#, fuzzy
#| msgid "Reset"
msgctxt "for Show status"
msgid "Reset"
msgstr "Reset"
-#: server_status.php:350
+#: server_status.php:461
#, php-format
msgid "This MySQL server has been running for %s. It started up on %s."
msgstr ""
"MySQL server ini telah berjalan secara berturut-turut selama %s. Server "
"dijalankan pada tanggal %s."
-#: server_status.php:360
+#: server_status.php:471
msgid ""
"This MySQL server works as master and slave in replication"
"b> process."
msgstr ""
-#: server_status.php:362
+#: server_status.php:473
msgid "This MySQL server works as master in replication process."
msgstr ""
-#: server_status.php:364
+#: server_status.php:475
msgid "This MySQL server works as slave in replication process."
msgstr ""
-#: server_status.php:366
+#: server_status.php:477
msgid ""
"For further information about replication status on the server, please visit "
"the replication section."
msgstr ""
-#: server_status.php:383
+#: server_status.php:494
msgid ""
"Server traffic: These tables show the network traffic statistics of "
"this MySQL server since its startup."
@@ -5794,46 +5803,46 @@ msgstr ""
"Server traffic: Tabel ini menampilkan statistik jaringan lalu-lintas "
"server MySQL sejak dihidupkan."
-#: server_status.php:388
+#: server_status.php:499
msgid "Traffic"
msgstr "Lalu-Lintas"
-#: server_status.php:388
+#: server_status.php:499
msgid ""
"On a busy server, the byte counters may overrun, so those statistics as "
"reported by the MySQL server may be incorrect."
msgstr ""
-#: server_status.php:389 server_status.php:434 server_status.php:497
-#: server_status.php:555
+#: server_status.php:500 server_status.php:545 server_status.php:608
+#: server_status.php:666
msgid "per hour"
msgstr "dalam sejam"
-#: server_status.php:394
+#: server_status.php:505
msgid "Received"
msgstr "Penerimaan"
-#: server_status.php:404
+#: server_status.php:515
msgid "Sent"
msgstr "Pengiriman"
-#: server_status.php:433
+#: server_status.php:544
msgid "Connections"
msgstr "Koneksi"
-#: server_status.php:440
+#: server_status.php:551
msgid "max. concurrent connections"
msgstr ""
-#: server_status.php:447
+#: server_status.php:558
msgid "Failed attempts"
msgstr "Gagal"
-#: server_status.php:461
+#: server_status.php:572
msgid "Aborted"
msgstr "Pembatalan"
-#: server_status.php:490
+#: server_status.php:601
#, php-format
msgid ""
"Query statistics: Since its startup, %s queries have been sent to the "
@@ -5842,19 +5851,19 @@ msgstr ""
"Informasi statistik: Sejak dihidupkan, %s pencarian telah dikirim "
"kepada server."
-#: server_status.php:498
+#: server_status.php:609
msgid "per minute"
msgstr "per menit"
-#: server_status.php:499
+#: server_status.php:610
msgid "per second"
msgstr "per detik"
-#: server_status.php:554
+#: server_status.php:665
msgid "Query type"
msgstr "Tipe Pencarian"
-#: server_status.php:721
+#: server_status.php:832
msgid "Replication status"
msgstr ""
diff --git a/po/it.po b/po/it.po
index c00d8fa0d..b902a0588 100755
--- a/po/it.po
+++ b/po/it.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-06-04 16:07-0400\n"
+"POT-Creation-Date: 2010-06-08 12:32-0400\n"
"PO-Revision-Date: 2010-05-24 21:25+0200\n"
"Last-Translator: Fabio \n"
"Language-Team: italian \n"
@@ -15,11 +15,11 @@ msgstr ""
"X-Generator: Pootle 2.0.1\n"
#: browse_foreigners.php:38 browse_foreigners.php:59
-#: libraries/display_tbl.lib.php:417 server_privileges.php:1475
+#: libraries/display_tbl.lib.php:417 server_privileges.php:1514
msgid "Show all"
msgstr "Mostra tutti"
-#: browse_foreigners.php:82 libraries/common.lib.php:2304
+#: browse_foreigners.php:82 libraries/common.lib.php:2313
#: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:394
#: libraries/export/pdf.php:147 pdf_schema.php:283 pdf_schema.php:1123
#: pdf_schema.php:1139
@@ -39,8 +39,8 @@ msgstr ""
#: browse_foreigners.php:150 db_structure.php:79 db_structure.php:80
#: db_structure.php:91 db_structure.php:93 db_structure.php:104
-#: db_structure.php:106 libraries/common.lib.php:2822
-#: libraries/common.lib.php:2829 libraries/db_links.inc.php:75
+#: db_structure.php:106 libraries/common.lib.php:2831
+#: libraries/common.lib.php:2838 libraries/db_links.inc.php:75
#: libraries/tbl_links.inc.php:63
msgid "Search"
msgstr "Cerca"
@@ -50,7 +50,7 @@ msgstr "Cerca"
#: db_structure.php:567 js/messages.php:48 libraries/Config.class.php:1046
#: libraries/Theme_Manager.class.php:311
#: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719
-#: libraries/common.lib.php:1333 libraries/common.lib.php:2279
+#: libraries/common.lib.php:1335 libraries/common.lib.php:2288
#: libraries/display_change_password.lib.php:82
#: libraries/display_create_table.lib.php:63
#: libraries/display_export.lib.php:275 libraries/display_import.lib.php:276
@@ -61,9 +61,9 @@ msgstr "Cerca"
#: libraries/sql_query_form.lib.php:552 libraries/tbl_properties.inc.php:782
#: main.php:128 navigation.php:237 pdf_pages.php:292 pdf_pages.php:328
#: pdf_pages.php:530 pmd_pdf.php:116 server_binlog.php:142
-#: server_privileges.php:625 server_privileges.php:1585
-#: server_privileges.php:1932 server_privileges.php:1979
-#: server_privileges.php:2018 server_replication.php:235
+#: server_privileges.php:664 server_privileges.php:1624
+#: server_privileges.php:1971 server_privileges.php:2018
+#: server_privileges.php:2057 server_replication.php:235
#: server_replication.php:318 server_replication.php:341
#: server_synchronize.php:1209 tbl_change.php:330 tbl_change.php:1174
#: tbl_change.php:1211 tbl_indexes.php:254 tbl_operations.php:265
@@ -81,7 +81,7 @@ msgstr "Nome chiave"
#: browse_foreigners.php:169 browse_foreigners.php:171
#: server_collations.php:55 server_collations.php:67 server_engines.php:59
-#: server_status.php:628
+#: server_status.php:739
msgid "Description"
msgstr "Descrizione"
@@ -122,7 +122,7 @@ msgstr "Nomi delle colonne"
#: libraries/db_structure.lib.php:60 libraries/export/htmlword.php:245
#: libraries/export/latex.php:360 libraries/export/odt.php:297
#: libraries/export/texytext.php:234 libraries/tbl_properties.inc.php:100
-#: pdf_schema.php:1263 pdf_schema.php:1284 server_privileges.php:2031
+#: pdf_schema.php:1263 pdf_schema.php:1284 server_privileges.php:2070
#: tbl_change.php:287 tbl_change.php:314 tbl_printview.php:143
#: tbl_printview.php:313 tbl_select.php:136 tbl_structure.php:178
#: tbl_structure.php:659 tbl_tracking.php:274 tbl_tracking.php:321
@@ -166,9 +166,9 @@ msgstr "Commenti"
#: libraries/Index.class.php:386 libraries/export/htmlword.php:322
#: libraries/export/latex.php:430 libraries/export/odt.php:368
#: libraries/export/texytext.php:311 libraries/mult_submits.inc.php:263
-#: pdf_schema.php:1344 server_privileges.php:1529 server_privileges.php:1540
-#: server_privileges.php:1850 server_privileges.php:1855
-#: server_privileges.php:2148 sql.php:132 sql.php:194 tbl_printview.php:229
+#: pdf_schema.php:1344 server_privileges.php:1568 server_privileges.php:1579
+#: server_privileges.php:1889 server_privileges.php:1894
+#: server_privileges.php:2187 sql.php:132 sql.php:194 tbl_printview.php:229
#: tbl_structure.php:350 tbl_tracking.php:337 tbl_tracking.php:342
msgid "No"
msgstr " No "
@@ -182,9 +182,9 @@ msgstr " No "
#: libraries/mult_submits.inc.php:101 libraries/mult_submits.inc.php:106
#: libraries/mult_submits.inc.php:111 libraries/mult_submits.inc.php:262
#: libraries/mult_submits.inc.php:273 pdf_schema.php:1344
-#: server_databases.php:64 server_privileges.php:1526
-#: server_privileges.php:1540 server_privileges.php:1850
-#: server_privileges.php:1853 server_privileges.php:2148 sql.php:193
+#: server_databases.php:64 server_privileges.php:1565
+#: server_privileges.php:1579 server_privileges.php:1889
+#: server_privileges.php:1892 server_privileges.php:2187 sql.php:193
#: tbl_printview.php:229 tbl_structure.php:40 tbl_structure.php:350
#: tbl_tracking.php:335 tbl_tracking.php:340
msgid "Yes"
@@ -281,7 +281,7 @@ msgstr "Passare al Database copiato"
msgid "BLOB Repository"
msgstr "Repository BLOB"
-#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1350
+#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1352
#: libraries/server_links.inc.php:49 server_processlist.php:59
#: tbl_tracking.php:596 test/theme.php:101
msgid "Status"
@@ -338,8 +338,8 @@ msgstr "Modifica pagine PDF"
#: db_printview.php:104 db_tracking.php:72 db_tracking.php:157
#: libraries/db_structure.lib.php:46 libraries/export/xml.php:328
-#: libraries/header.inc.php:126 pdf_pages.php:424 server_privileges.php:1626
-#: server_privileges.php:1682 server_privileges.php:1946
+#: libraries/header.inc.php:126 pdf_pages.php:424 server_privileges.php:1665
+#: server_privileges.php:1721 server_privileges.php:1985
#: server_synchronize.php:423 server_synchronize.php:866 tbl_tracking.php:592
#: test/theme.php:75
msgid "Table"
@@ -440,7 +440,7 @@ msgstr "Elimina"
#: db_qbe.php:370 db_qbe.php:451 db_qbe.php:522 db_qbe.php:553
#: libraries/display_import.lib.php:166 libraries/tbl_properties.inc.php:779
-#: server_privileges.php:258 tbl_change.php:1031 tbl_indexes.php:250
+#: server_privileges.php:297 tbl_change.php:1031 tbl_indexes.php:250
#: tbl_select.php:288
msgid "Or"
msgstr "Oppure"
@@ -474,7 +474,7 @@ msgstr "Utilizza tabelle"
msgid "SQL query on database %s:"
msgstr "SQL-query sul database %s:"
-#: db_qbe.php:934 libraries/common.lib.php:1223
+#: db_qbe.php:934 libraries/common.lib.php:1225
msgid "Submit Query"
msgstr "Invia Query"
@@ -513,7 +513,7 @@ msgstr "%s corrisponde/ono nella tabella %s"
#: db_search.php:267 db_structure.php:77 db_structure.php:78
#: db_structure.php:90 db_structure.php:92 db_structure.php:103
-#: db_structure.php:105 libraries/common.lib.php:2824
+#: db_structure.php:105 libraries/common.lib.php:2833
#: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50
#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:467
msgid "Browse"
@@ -560,26 +560,26 @@ msgstr "Campi contenuti:"
#: db_structure.php:81 db_structure.php:82 db_structure.php:94
#: db_structure.php:95 db_structure.php:107 db_structure.php:108
-#: libraries/common.lib.php:2823 libraries/sql_query_form.lib.php:334
+#: libraries/common.lib.php:2832 libraries/sql_query_form.lib.php:334
#: libraries/sql_query_form.lib.php:337 libraries/tbl_links.inc.php:76
msgid "Insert"
msgstr "Inserisci"
#: db_structure.php:83 db_structure.php:96 db_structure.php:109
-#: libraries/common.lib.php:2820 libraries/common.lib.php:2827
+#: libraries/common.lib.php:2829 libraries/common.lib.php:2836
#: libraries/db_links.inc.php:63 libraries/export/htmlword.php:23
#: libraries/export/latex.php:33 libraries/export/latex.php:337
#: libraries/export/odt.php:32 libraries/export/sql.php:60
#: libraries/export/texytext.php:23 libraries/import.lib.php:1104
#: libraries/tbl_links.inc.php:56 pmd_general.php:134
-#: server_privileges.php:554 server_replication.php:315 tbl_tracking.php:269
+#: server_privileges.php:593 server_replication.php:315 tbl_tracking.php:269
msgid "Structure"
msgstr "Struttura"
#: db_structure.php:84 db_structure.php:85 db_structure.php:97
#: db_structure.php:98 db_structure.php:110 db_structure.php:111
#: db_structure.php:545 db_structure.php:546 db_tracking.php:91
-#: libraries/Index.class.php:483 libraries/common.lib.php:1654
+#: libraries/Index.class.php:483 libraries/common.lib.php:1656
#: libraries/db_links.inc.php:100 libraries/mult_submits.inc.php:36
#: libraries/mult_submits.inc.php:73 libraries/tbl_links.inc.php:127
#: server_databases.php:352 tbl_structure.php:27 tbl_structure.php:151
@@ -589,7 +589,7 @@ msgstr "Elimina"
#: db_structure.php:86 db_structure.php:87 db_structure.php:99
#: db_structure.php:100 db_structure.php:112 db_structure.php:113
-#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1653
+#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1655
#: libraries/mult_submits.inc.php:39 libraries/tbl_links.inc.php:105
msgid "Empty"
msgstr "Svuota"
@@ -633,7 +633,7 @@ msgstr "Vista"
#: db_structure.php:485 libraries/db_structure.lib.php:49
#: libraries/server_links.inc.php:70 server_replication.php:33
-#: server_replication.php:164 server_status.php:258
+#: server_replication.php:164 server_status.php:369
msgid "Replication"
msgstr "Replicazione"
@@ -649,20 +649,20 @@ msgstr "%s è il motore di memorizzazione predefinito su questo server MySQL."
#: db_structure.php:524 db_structure.php:541 db_structure.php:542
#: libraries/display_tbl.lib.php:2081 libraries/display_tbl.lib.php:2086
#: libraries/mult_submits.inc.php:16 server_databases.php:346
-#: server_databases.php:351 server_privileges.php:1557 tbl_structure.php:455
+#: server_databases.php:351 server_privileges.php:1596 tbl_structure.php:455
#: tbl_structure.php:464
msgid "With selected:"
msgstr "Se selezionati:"
#: db_structure.php:527 libraries/display_tbl.lib.php:2076
-#: server_databases.php:348 server_privileges.php:530
-#: server_privileges.php:1560 tbl_structure.php:458
+#: server_databases.php:348 server_privileges.php:569
+#: server_privileges.php:1599 tbl_structure.php:458
msgid "Check All"
msgstr "Seleziona tutti"
#: db_structure.php:531 libraries/display_tbl.lib.php:2077
#: libraries/replication_gui.lib.php:33 server_databases.php:350
-#: server_privileges.php:533 server_privileges.php:1564 tbl_structure.php:462
+#: server_privileges.php:572 server_privileges.php:1603 tbl_structure.php:462
msgid "Uncheck All"
msgstr "Deseleziona tutti"
@@ -700,7 +700,7 @@ msgstr "Analizza tabella"
#: libraries/display_export.lib.php:83 libraries/display_tbl.lib.php:2094
#: libraries/display_tbl.lib.php:2225 libraries/mult_submits.inc.php:62
#: libraries/server_links.inc.php:84 libraries/tbl_links.inc.php:82
-#: pmd_pdf.php:84 pmd_pdf.php:109 server_privileges.php:1341
+#: pmd_pdf.php:84 pmd_pdf.php:109 server_privileges.php:1380
#: setup/frames/menu.inc.php:22 tbl_row_action.php:59
msgid "Export"
msgstr "Esporta"
@@ -718,8 +718,8 @@ msgstr "Controlla tabelle"
#: libraries/export/sql.php:342 libraries/export/texytext.php:84
#: libraries/export/xml.php:255 libraries/header.inc.php:106
#: libraries/header_printview.inc.php:58 server_databases.php:169
-#: server_privileges.php:1621 server_privileges.php:1682
-#: server_privileges.php:1940 server_processlist.php:56
+#: server_privileges.php:1660 server_privileges.php:1721
+#: server_privileges.php:1979 server_processlist.php:56
#: server_synchronize.php:1179 server_synchronize.php:1183
#: tbl_tracking.php:591 test/theme.php:65
msgid "Database"
@@ -739,8 +739,8 @@ msgstr "Aggiornato"
#: db_tracking.php:77 libraries/Index.class.php:440
#: libraries/db_structure.lib.php:53 server_databases.php:203
-#: server_privileges.php:1503 server_privileges.php:1686
-#: server_privileges.php:2034 tbl_structure.php:187
+#: server_privileges.php:1542 server_privileges.php:1725
+#: server_privileges.php:2073 tbl_structure.php:187
msgid "Action"
msgstr "Azione"
@@ -949,11 +949,11 @@ msgstr "Il nome di host è vuoto!"
msgid "The user name is empty!"
msgstr "Il nome utente è vuoto!"
-#: js/messages.php:44 server_privileges.php:1197 user_password.php:70
+#: js/messages.php:44 server_privileges.php:1236 user_password.php:70
msgid "The password is empty!"
msgstr "La password è vuota!"
-#: js/messages.php:45 server_privileges.php:1195 user_password.php:73
+#: js/messages.php:45 server_privileges.php:1234 user_password.php:73
msgid "The passwords aren't the same!"
msgstr "La password non coincide!"
@@ -1028,8 +1028,8 @@ msgid "Prev"
msgstr "Precedente"
#. l10n: Display text for next month link in calendar
-#: js/messages.php:77 libraries/common.lib.php:2344
-#: libraries/common.lib.php:2347 libraries/display_tbl.lib.php:338
+#: js/messages.php:77 libraries/common.lib.php:2353
+#: libraries/common.lib.php:2356 libraries/display_tbl.lib.php:338
#: server_binlog.php:205 server_binlog.php:207 tbl_printview.php:424
#: tbl_structure.php:801
msgid "Next"
@@ -1089,63 +1089,63 @@ msgid "December"
msgstr "Dicembre"
#. l10n: Short month name
-#: js/messages.php:97 libraries/common.lib.php:1555
+#: js/messages.php:97 libraries/common.lib.php:1557
msgid "Jan"
msgstr "Gen"
#. l10n: Short month name
-#: js/messages.php:99 libraries/common.lib.php:1557
+#: js/messages.php:99 libraries/common.lib.php:1559
msgid "Feb"
msgstr "Feb"
#. l10n: Short month name
-#: js/messages.php:101 libraries/common.lib.php:1559
+#: js/messages.php:101 libraries/common.lib.php:1561
msgid "Mar"
msgstr "Mar"
#. l10n: Short month name
-#: js/messages.php:103 libraries/common.lib.php:1561
+#: js/messages.php:103 libraries/common.lib.php:1563
msgid "Apr"
msgstr "Apr"
#. l10n: Short month name
-#: js/messages.php:105 libraries/common.lib.php:1563
+#: js/messages.php:105 libraries/common.lib.php:1565
msgctxt "Short month name"
msgid "May"
msgstr "Mag"
#. l10n: Short month name
-#: js/messages.php:107 libraries/common.lib.php:1565
+#: js/messages.php:107 libraries/common.lib.php:1567
msgid "Jun"
msgstr "Giu"
#. l10n: Short month name
-#: js/messages.php:109 libraries/common.lib.php:1567
+#: js/messages.php:109 libraries/common.lib.php:1569
msgid "Jul"
msgstr "lug"
#. l10n: Short month name
-#: js/messages.php:111 libraries/common.lib.php:1569
+#: js/messages.php:111 libraries/common.lib.php:1571
msgid "Aug"
msgstr "ago"
#. l10n: Short month name
-#: js/messages.php:113 libraries/common.lib.php:1571
+#: js/messages.php:113 libraries/common.lib.php:1573
msgid "Sep"
msgstr "set"
#. l10n: Short month name
-#: js/messages.php:115 libraries/common.lib.php:1573
+#: js/messages.php:115 libraries/common.lib.php:1575
msgid "Oct"
msgstr "ott"
#. l10n: Short month name
-#: js/messages.php:117 libraries/common.lib.php:1575
+#: js/messages.php:117 libraries/common.lib.php:1577
msgid "Nov"
msgstr "nov"
#. l10n: Short month name
-#: js/messages.php:119 libraries/common.lib.php:1577
+#: js/messages.php:119 libraries/common.lib.php:1579
msgid "Dec"
msgstr "dic"
@@ -1178,37 +1178,37 @@ msgid "Saturday"
msgstr "Sabato"
#. l10n: Short week day name
-#: js/messages.php:132 libraries/common.lib.php:1580
+#: js/messages.php:132 libraries/common.lib.php:1582
msgid "Sun"
msgstr "Dom"
#. l10n: Short week day name
-#: js/messages.php:134 libraries/common.lib.php:1582
+#: js/messages.php:134 libraries/common.lib.php:1584
msgid "Mon"
msgstr "Lun"
#. l10n: Short week day name
-#: js/messages.php:136 libraries/common.lib.php:1584
+#: js/messages.php:136 libraries/common.lib.php:1586
msgid "Tue"
msgstr "Mar"
#. l10n: Short week day name
-#: js/messages.php:138 libraries/common.lib.php:1586
+#: js/messages.php:138 libraries/common.lib.php:1588
msgid "Wed"
msgstr "Mer"
#. l10n: Short week day name
-#: js/messages.php:140 libraries/common.lib.php:1588
+#: js/messages.php:140 libraries/common.lib.php:1590
msgid "Thu"
msgstr "Gio"
#. l10n: Short week day name
-#: js/messages.php:142 libraries/common.lib.php:1590
+#: js/messages.php:142 libraries/common.lib.php:1592
msgid "Fri"
msgstr "Ven"
#. l10n: Short week day name
-#: js/messages.php:144 libraries/common.lib.php:1592
+#: js/messages.php:144 libraries/common.lib.php:1594
msgid "Sat"
msgstr "Sab"
@@ -1336,7 +1336,7 @@ msgid "Comment"
msgstr "Commenti"
#: libraries/Index.class.php:466 libraries/common.lib.php:616
-#: libraries/common.lib.php:1199 libraries/display_tbl.lib.php:1117
+#: libraries/common.lib.php:1201 libraries/display_tbl.lib.php:1117
#: libraries/import.lib.php:1087 libraries/import.lib.php:1111
#: pdf_pages.php:285 setup/frames/index.inc.php:124
#: setup/lib/messages.inc.php:352 tbl_row_action.php:69
@@ -1362,7 +1362,7 @@ msgstr ""
"essere rimossi."
#: libraries/List_Database.class.php:431 libraries/server_links.inc.php:41
-#: server_databases.php:88 server_privileges.php:1621
+#: server_databases.php:88 server_privileges.php:1660
#: setup/lib/messages.inc.php:110 test/theme.php:93
msgid "Databases"
msgstr "Database"
@@ -1698,7 +1698,7 @@ msgid "Documentation"
msgstr "Documentazione"
#: libraries/common.lib.php:595 libraries/header_printview.inc.php:61
-#: server_processlist.php:60 server_status.php:247
+#: server_processlist.php:60 server_status.php:358
msgid "SQL query"
msgstr "query SQL"
@@ -1714,130 +1714,130 @@ msgstr "Spiega SQL"
msgid "Skip Explain SQL"
msgstr "Non Spiegare SQL"
-#: libraries/common.lib.php:1212
+#: libraries/common.lib.php:1214
msgid "Without PHP Code"
msgstr "senza codice PHP"
-#: libraries/common.lib.php:1215 setup/lib/messages.inc.php:355
+#: libraries/common.lib.php:1217 setup/lib/messages.inc.php:355
msgid "Create PHP Code"
msgstr "Crea il codice PHP"
-#: libraries/common.lib.php:1233 server_status.php:341
+#: libraries/common.lib.php:1235 server_status.php:452
#: setup/lib/messages.inc.php:354
msgid "Refresh"
msgstr "Aggiorna"
-#: libraries/common.lib.php:1242
+#: libraries/common.lib.php:1244
msgid "Skip Validate SQL"
msgstr "Non Validare SQL"
-#: libraries/common.lib.php:1245 setup/lib/messages.inc.php:356 sql.php:518
+#: libraries/common.lib.php:1247 setup/lib/messages.inc.php:356 sql.php:518
msgid "Validate SQL"
msgstr "Valida SQL"
-#: libraries/common.lib.php:1276
+#: libraries/common.lib.php:1278
msgid "Inline edit of this query"
msgstr ""
-#: libraries/common.lib.php:1278
+#: libraries/common.lib.php:1280
#, fuzzy
#| msgid "Engines"
msgid "Inline"
msgstr "In linea"
-#: libraries/common.lib.php:1332 libraries/common.lib.php:1347
+#: libraries/common.lib.php:1334 libraries/common.lib.php:1349
msgid "Profiling"
msgstr "Profiling"
-#: libraries/common.lib.php:1351 libraries/tbl_triggers.lib.php:28
+#: libraries/common.lib.php:1353 libraries/tbl_triggers.lib.php:28
#: server_processlist.php:58
msgid "Time"
msgstr "Tempo"
#. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "B"
msgstr "B"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "KiB"
msgstr "KiB"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "MiB"
msgstr "MiB"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "GiB"
msgstr "GiB"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "TiB"
msgstr "TiB"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "PiB"
msgstr "PiB"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "EiB"
msgstr "EiB"
#. l10n: Thousands separator
-#: libraries/common.lib.php:1417
+#: libraries/common.lib.php:1419
msgid ","
msgstr "."
#. l10n: Decimal separator
-#: libraries/common.lib.php:1419
+#: libraries/common.lib.php:1421
msgid "."
msgstr ","
#. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string
-#: libraries/common.lib.php:1596
+#: libraries/common.lib.php:1598
#: libraries/transformations/text_plain__dateformat.inc.php:34
msgid "%B %d, %Y at %I:%M %p"
msgstr "%d %B, %Y at %I:%M %p"
-#: libraries/common.lib.php:1898
+#: libraries/common.lib.php:1907
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "%s giorni, %s ore, %s minuti e %s secondi"
-#: libraries/common.lib.php:2313 libraries/common.lib.php:2316
-#: libraries/display_tbl.lib.php:290 server_status.php:608
+#: libraries/common.lib.php:2322 libraries/common.lib.php:2325
+#: libraries/display_tbl.lib.php:290 server_status.php:719
msgid "Begin"
msgstr "Inizio"
-#: libraries/common.lib.php:2314 libraries/common.lib.php:2317
+#: libraries/common.lib.php:2323 libraries/common.lib.php:2326
#: libraries/display_tbl.lib.php:291 server_binlog.php:168
#: server_binlog.php:170
msgid "Previous"
msgstr "Precedente"
-#: libraries/common.lib.php:2345 libraries/common.lib.php:2348
+#: libraries/common.lib.php:2354 libraries/common.lib.php:2357
#: libraries/display_tbl.lib.php:353
msgid "End"
msgstr "Fine"
-#: libraries/common.lib.php:2421
+#: libraries/common.lib.php:2430
#, php-format
msgid "Jump to database "%s"."
msgstr "Passa al database \"%s\"."
-#: libraries/common.lib.php:2441
+#: libraries/common.lib.php:2450
#, 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/common.lib.php:2821 libraries/common.lib.php:2828
+#: libraries/common.lib.php:2830 libraries/common.lib.php:2837
#: libraries/db_links.inc.php:68 libraries/export/sql.php:25
#: libraries/import/sql.php:18 libraries/server_links.inc.php:45
#: libraries/tbl_links.inc.php:60 querywindow.php:99 test/theme.php:97
msgid "SQL"
msgstr "SQL"
-#: libraries/common.lib.php:2830 libraries/db_links.inc.php:104
+#: libraries/common.lib.php:2839 libraries/db_links.inc.php:104
#: libraries/tbl_links.inc.php:95 libraries/tbl_links.inc.php:117
#: view_operations.php:89
msgid "Operations"
@@ -1893,8 +1893,8 @@ msgid "Import"
msgstr "Importa"
#: libraries/db_links.inc.php:111 libraries/server_links.inc.php:66
-#: server_privileges.php:72 server_privileges.php:1683
-#: server_privileges.php:2032 test/theme.php:117
+#: server_privileges.php:111 server_privileges.php:1722
+#: server_privileges.php:2071 test/theme.php:117
msgid "Privileges"
msgstr "Privilegi"
@@ -1941,22 +1941,22 @@ msgid "Change password"
msgstr "Cambia password"
#: libraries/display_change_password.lib.php:35
-#: libraries/replication_gui.lib.php:345 server_privileges.php:768
+#: libraries/replication_gui.lib.php:345 server_privileges.php:807
msgid "No Password"
msgstr "Nessuna Password"
#: libraries/display_change_password.lib.php:41
#: libraries/replication_gui.lib.php:59 libraries/replication_gui.lib.php:60
#: libraries/replication_gui.lib.php:335 libraries/replication_gui.lib.php:339
-#: libraries/replication_gui.lib.php:349 server_privileges.php:757
-#: server_privileges.php:761 server_privileges.php:772
-#: server_privileges.php:1499 server_synchronize.php:1175
+#: libraries/replication_gui.lib.php:349 server_privileges.php:796
+#: server_privileges.php:800 server_privileges.php:811
+#: server_privileges.php:1538 server_synchronize.php:1175
msgid "Password"
msgstr "Password"
#: libraries/display_change_password.lib.php:46
#: libraries/replication_gui.lib.php:353 libraries/replication_gui.lib.php:356
-#: server_privileges.php:776 server_privileges.php:779
+#: server_privileges.php:815 server_privileges.php:818
msgid "Re-type"
msgstr "Reinserisci"
@@ -1969,12 +1969,12 @@ msgid "MySQL 4.0 compatible"
msgstr "Compatibile con MySQL 4.0"
#: libraries/display_change_password.lib.php:72
-#: libraries/replication_gui.lib.php:360 server_privileges.php:783
+#: libraries/replication_gui.lib.php:360 server_privileges.php:822
msgid "Generate Password"
msgstr "Genera Password"
#: libraries/display_change_password.lib.php:75
-#: libraries/replication_gui.lib.php:363 server_privileges.php:786
+#: libraries/replication_gui.lib.php:363 server_privileges.php:825
msgid "Generate"
msgstr "Genera"
@@ -1987,8 +1987,8 @@ msgstr "Crea un nuovo database"
msgid "Create"
msgstr "Crea"
-#: libraries/display_create_database.lib.php:40 server_privileges.php:74
-#: server_privileges.php:1388 server_replication.php:35
+#: libraries/display_create_database.lib.php:40 server_privileges.php:113
+#: server_privileges.php:1427 server_replication.php:35
msgid "No Privileges"
msgstr "Nessun Privilegio"
@@ -2080,7 +2080,7 @@ msgstr "Compressione"
#: libraries/display_export.lib.php:240 libraries/display_import.lib.php:197
#: libraries/display_import.lib.php:210 libraries/display_tbl.lib.php:530
#: libraries/export/sql.php:868 libraries/tbl_properties.inc.php:575
-#: server_privileges.php:1836 server_processlist.php:75
+#: server_privileges.php:1875 server_processlist.php:75
msgid "None"
msgstr "Nessuno"
@@ -2415,7 +2415,7 @@ msgstr ""
msgid "Buffer Pool"
msgstr "Buffer Pool"
-#: libraries/engines/innodb.lib.php:145 server_status.php:306
+#: libraries/engines/innodb.lib.php:145 server_status.php:417
msgid "InnoDB Status"
msgstr "Stato InnoDB"
@@ -2424,8 +2424,8 @@ msgid "Buffer Pool Usage"
msgstr "Utilizzo del Buffer Pool"
#: libraries/engines/innodb.lib.php:194 server_databases.php:137
-#: server_databases.php:305 server_status.php:414 server_status.php:475
-#: server_status.php:496 tbl_printview.php:351 tbl_structure.php:696
+#: server_databases.php:305 server_status.php:525 server_status.php:586
+#: server_status.php:607 tbl_printview.php:351 tbl_structure.php:696
msgid "Total"
msgstr "Totale"
@@ -2788,7 +2788,7 @@ msgstr "Microsoft Word 2000"
#: libraries/export/latex.php:201 libraries/export/odt.php:48
#: libraries/export/sql.php:106 libraries/export/sql.php:868
#: libraries/export/texytext.php:27 server_databases.php:127
-#: server_privileges.php:537 server_replication.php:316 tbl_printview.php:317
+#: server_privileges.php:576 server_replication.php:316 tbl_printview.php:317
#: tbl_structure.php:665
msgid "Data"
msgstr "Dati"
@@ -2838,9 +2838,9 @@ msgstr "tipo MIME"
#: libraries/export/xml.php:102 libraries/header_printview.inc.php:57
#: libraries/replication_gui.lib.php:63 libraries/replication_gui.lib.php:174
#: libraries/replication_gui.lib.php:269 libraries/replication_gui.lib.php:272
-#: libraries/replication_gui.lib.php:329 server_privileges.php:692
-#: server_privileges.php:695 server_privileges.php:751
-#: server_privileges.php:1498 server_privileges.php:2030
+#: libraries/replication_gui.lib.php:329 server_privileges.php:731
+#: server_privileges.php:734 server_privileges.php:790
+#: server_privileges.php:1537 server_privileges.php:2069
#: server_processlist.php:55 server_synchronize.php:1159
msgid "Host"
msgstr "Host"
@@ -3193,878 +3193,6 @@ msgstr "Nessuno"
msgid "Convert to Kana"
msgstr ""
-#. l10n: Text direction, use either ltr or rtl
-#: libraries/messages.inc.php:19
-msgid "ltr"
-msgstr "ltr"
-
-#: libraries/messages.inc.php:21
-msgid "Content of table __TABLE__"
-msgstr "Contenuto della tabella __TABLE__"
-
-#: libraries/messages.inc.php:22
-msgid "(continued)"
-msgstr "(continua)"
-
-#: libraries/messages.inc.php:23
-msgid "Structure of table __TABLE__"
-msgstr "Struttura della tabella __TABLE__"
-
-#: libraries/messages.inc.php:25 server_privileges.php:227
-msgid "Includes all privileges except GRANT."
-msgstr "Comprende tutti i privilegi tranne GRANT."
-
-#: libraries/messages.inc.php:26 server_privileges.php:153
-#: server_privileges.php:476
-msgid "Allows altering the structure of existing tables."
-msgstr "Permette di alterare la struttura di tabelle esistenti."
-
-#: libraries/messages.inc.php:27 server_privileges.php:169
-#: server_privileges.php:482
-msgid "Allows altering and dropping stored routines."
-msgstr "Permette l'alterazione e l'eliminazione di routines memorizzate."
-
-#: libraries/messages.inc.php:28 server_privileges.php:145
-#: server_privileges.php:475
-msgid "Allows creating new databases and tables."
-msgstr "Permette di creare nuove tabelle e nuovi databases."
-
-#: libraries/messages.inc.php:29 server_privileges.php:168
-#: server_privileges.php:481
-msgid "Allows creating stored routines."
-msgstr "Permette la creazione di routines memorizzate."
-
-#: libraries/messages.inc.php:30 server_privileges.php:475
-msgid "Allows creating new tables."
-msgstr "Permette di creare nuove tabelle."
-
-#: libraries/messages.inc.php:31 server_privileges.php:156
-#: server_privileges.php:479
-msgid "Allows creating temporary tables."
-msgstr "Permette di creare tabelle temporanee."
-
-#: libraries/messages.inc.php:32 server_privileges.php:170
-#: server_privileges.php:515
-msgid "Allows creating, dropping and renaming user accounts."
-msgstr "Permette di creare, cancellare e rinominare gli account utente."
-
-#: libraries/messages.inc.php:33 server_privileges.php:160
-#: server_privileges.php:164 server_privileges.php:487
-#: server_privileges.php:491
-msgid "Allows creating new views."
-msgstr "Permette la creazione di nuove viste."
-
-#: libraries/messages.inc.php:34 server_privileges.php:144
-#: server_privileges.php:467
-msgid "Allows deleting data."
-msgstr "Permette di cancellare dati."
-
-#: libraries/messages.inc.php:35 server_privileges.php:146
-#: server_privileges.php:478
-msgid "Allows dropping databases and tables."
-msgstr "Permette di eliminare databases e tabelle."
-
-#: libraries/messages.inc.php:36 server_privileges.php:478
-msgid "Allows dropping tables."
-msgstr "Permette di eliminare tabelle."
-
-#: libraries/messages.inc.php:37 server_privileges.php:161
-#: server_privileges.php:495
-msgid "Allows to set up events for the event scheduler"
-msgstr "Permette di impostare gli eventi per lo scheduler"
-
-#: libraries/messages.inc.php:38 server_privileges.php:171
-#: server_privileges.php:483
-msgid "Allows executing stored routines."
-msgstr "Permette l'esecuzione di routines memorizzate."
-
-#: libraries/messages.inc.php:39 server_privileges.php:150
-#: server_privileges.php:470
-msgid "Allows importing data from and exporting data into files."
-msgstr "Permette di importare dati da e esportare dati in file."
-
-#: libraries/messages.inc.php:40 server_privileges.php:501
-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/messages.inc.php:41 server_privileges.php:152
-#: server_privileges.php:477
-msgid "Allows creating and dropping indexes."
-msgstr "Permette di creare ed eliminare gli indici."
-
-#: libraries/messages.inc.php:42 server_privileges.php:142
-#: server_privileges.php:403 server_privileges.php:465
-msgid "Allows inserting and replacing data."
-msgstr "Permette di inserire e sovrascrivere dati."
-
-#: libraries/messages.inc.php:43 server_privileges.php:157
-#: server_privileges.php:510
-msgid "Allows locking tables for the current thread."
-msgstr "Permette di bloccare le tabelle per il thread corrente."
-
-#: libraries/messages.inc.php:44 server_privileges.php:607
-#: server_privileges.php:609
-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/messages.inc.php:45 server_privileges.php:595
-#: server_privileges.php:597
-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/messages.inc.php:46 server_privileges.php:601
-#: server_privileges.php:603
-msgid ""
-"Limits the number of commands that change any table or database the user may "
-"execute per hour."
-msgstr ""
-"Limita il numero di comandi che possono cambiare una tabella o un database "
-"che un utente può eseguire in un'ora."
-
-#: libraries/messages.inc.php:47 server_privileges.php:613
-#: server_privileges.php:615
-msgid "Limits the number of simultaneous connections the user may have."
-msgstr "Limite di connessioni simultanee che un utente può fare."
-
-#: libraries/messages.inc.php:48 server_privileges.php:149
-#: server_privileges.php:505
-msgid "Allows viewing processes of all users"
-msgstr "Permette di vedere i processi di tutti gli utenti"
-
-#: libraries/messages.inc.php:49 server_privileges.php:151
-#: server_privileges.php:409 server_privileges.php:511
-msgid "Has no effect in this MySQL version."
-msgstr "Non ha alcun effetto in questa versione di MySQL."
-
-#: libraries/messages.inc.php:50 server_privileges.php:147
-#: server_privileges.php:506
-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/messages.inc.php:51 server_privileges.php:159
-#: server_privileges.php:513
-msgid "Allows the user to ask where the slaves / masters are."
-msgstr ""
-"Accorda il diritto ad un utente di domandare dove sono i masters/slaves."
-
-#: libraries/messages.inc.php:52 server_privileges.php:158
-#: server_privileges.php:514
-msgid "Needed for the replication slaves."
-msgstr "Necessario per la replicazione degli slaves."
-
-#: libraries/messages.inc.php:53 server_privileges.php:141
-#: server_privileges.php:400 server_privileges.php:464
-msgid "Allows reading data."
-msgstr "Permette di leggere i dati."
-
-#: libraries/messages.inc.php:54 server_privileges.php:154
-#: server_privileges.php:508
-msgid "Gives access to the complete list of databases."
-msgstr "Accorda l'accesso alla lista completa dei databases."
-
-#: libraries/messages.inc.php:55 server_privileges.php:165
-#: server_privileges.php:167 server_privileges.php:480
-msgid "Allows performing SHOW CREATE VIEW queries."
-msgstr "Permette di effettuare query del tipo SHOW CREATE VIEW."
-
-#: libraries/messages.inc.php:56 server_privileges.php:148
-#: server_privileges.php:507
-msgid "Allows shutting down the server."
-msgstr "Permette di chiudere il server."
-
-#: libraries/messages.inc.php:57 server_privileges.php:155
-#: server_privileges.php:504
-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 ""
-"Permette altre connessioni, anche se è stato raggiunto il massimo numero di "
-"connessioni; Necessario per molte operazioni di amministrazione come il "
-"settaggio di variabili globali o la cancellazione dei threads di altri "
-"utenti."
-
-#: libraries/messages.inc.php:58 server_privileges.php:162
-#: server_privileges.php:496
-msgid "Allows creating and dropping triggers"
-msgstr "Permette di creare e di eliminare i triggers"
-
-#: libraries/messages.inc.php:59 server_privileges.php:143
-#: server_privileges.php:406 server_privileges.php:466
-msgid "Allows changing data."
-msgstr "Permette di cambiare i dati."
-
-#: libraries/messages.inc.php:60 server_privileges.php:221
-msgid "No privileges."
-msgstr "Nessun privilegio."
-
-#: libraries/messages.inc.php:62
-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 ""
-"Il numero delle transazioni che usano la cache temporanea del log binario, "
-"ma che oltrepassano il valore di binlog_cache_size e usano un file "
-"temporaneo per salvare gli statements dalle transazioni."
-
-#: libraries/messages.inc.php:63
-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/messages.inc.php:64
-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 "
-"to increase the tmp_table_size value to cause temporary tables to be memory-"
-"based instead of disk-based."
-msgstr ""
-"Il numero delle tabelle temporanee create automaticamente sul disco dal "
-"server mentre esegue i comandi. Se il valore Created_tmp_disk_tables è "
-"grande, potresti voler aumentare il valore tmp_table_size, per fare im modo "
-"che le tabelle temporanee siano memory-based anzichè disk-based."
-
-#: libraries/messages.inc.php:65
-msgid "How many temporary files mysqld has created."
-msgstr "Numero di file temporanei che mysqld ha creato."
-
-#: libraries/messages.inc.php:66
-msgid ""
-"The number of in-memory temporary tables created automatically by the server "
-"while executing statements."
-msgstr ""
-"Il numero di tabelle temporanee create automaticamente in memoria dal server "
-"durante l'esecuzione dei comandi."
-
-#: libraries/messages.inc.php:67
-msgid ""
-"The number of rows written with INSERT DELAYED for which some error occurred "
-"(probably duplicate key)."
-msgstr ""
-"Numero di righe scritte con INSERT DELAYED in cui ci sono stati degli errori "
-"(probabilmete chiave dublicata)."
-
-#: libraries/messages.inc.php:68
-msgid ""
-"The number of INSERT DELAYED handler threads in use. Every different table "
-"on which one uses INSERT DELAYED gets its own thread."
-msgstr ""
-"Il numero di processi INSERT DELAYED in uso. Ciascuna tabella su cui è usato "
-"INSERT DELAYED occupa un thread."
-
-#: libraries/messages.inc.php:69
-msgid "The number of INSERT DELAYED rows written."
-msgstr "Il numero di righe INSERT DELAYED scritte."
-
-#: libraries/messages.inc.php:70
-msgid "The number of executed FLUSH statements."
-msgstr "Il numero di comandi FLUSH eseguiti."
-
-#: libraries/messages.inc.php:71
-msgid "The number of internal COMMIT statements."
-msgstr "Il numero di comandi interni COMMIT eseguiti."
-
-#: libraries/messages.inc.php:72
-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/messages.inc.php:73
-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 ""
-"Il server MySQL può chiedere al motore di storage NDB Cluster se conosce una "
-"tabella sulla base di un nome dato. Questo è chaiamto discovery. "
-"Handler_discover indica il numero di volte che una tabella è stata trovata."
-
-#: libraries/messages.inc.php:74
-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 ""
-"Il numero di volte che il primo valore è stato letto da un indice. Se è "
-"troppo alto è probabile che il server stia facendo molte scansioni complete "
-"degli indici; per esempio, SELECT col1 FROM foo, assumento che col1 sia "
-"indicizzata."
-
-#: libraries/messages.inc.php:75
-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 ""
-"Il numero di richieste per leggere una riga basata su di una chiave. Se è "
-"alta, è un buon indice che le tue query e le tue tabelle sono correttamente "
-"indicizzate."
-
-#: libraries/messages.inc.php:76
-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 ""
-"Il numero di richieste per leggere la riga successiva nell'ordine delle "
-"chiavi. Questo valore è incrementato se stai facendo una query su di una "
-"colonna indice con un range costante, oppure se stai facendo una scansione "
-"degli indici."
-
-#: libraries/messages.inc.php:77
-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 ""
-"Il numero di richieste per leggere la riga precedente nell'ordine delle "
-"chiavi. Questo metodo di lettura è principalmente utilizzato per ottimizzare "
-"ORDER BY ... DESC."
-
-#: libraries/messages.inc.php:78
-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 "
-"probably have a lot of queries that require MySQL to scan whole tables or "
-"you have joins that don't use keys properly."
-msgstr ""
-"Il numero di richieste per leggere una riga basata su una posizione fissa. "
-"Questo valore è alto se stai facendo molte richieste che richiedono un "
-"ordinamento dei risultati. Probabilmente hai molte query che che richiedono "
-"a MySQL di leggere l'intera tabella oppure ci sono dei joins che non usano "
-"le chiavi correttamente."
-
-#: libraries/messages.inc.php:79
-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 "
-"tables are not properly indexed or that your queries are not written to take "
-"advantage of the indexes you have."
-msgstr ""
-"Il numero di richieste per leggere la riga successiva in un file di dati. "
-"Questo valore è alto se stai facendo molte scansioni della tabella. "
-"Generalmente è un segnale che le tue tabelle non sono correttamente "
-"indicizzate, o che le query non sono state scritte per trarre vantaggi dagli "
-"indici che hai."
-
-#: libraries/messages.inc.php:80
-msgid "The number of internal ROLLBACK statements."
-msgstr "Il numero di comandi ROLLBACK interni."
-
-#: libraries/messages.inc.php:81
-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/messages.inc.php:82
-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/messages.inc.php:83
-msgid "The number of pages containing data (dirty or clean)."
-msgstr "Il numero di pagine che contengono dati (sporchi o puliti)."
-
-#: libraries/messages.inc.php:84
-msgid "The number of pages currently dirty."
-msgstr "Il numero di pagine attualmente sporche."
-
-#: libraries/messages.inc.php:85
-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/messages.inc.php:86
-msgid "The number of free pages."
-msgstr "Il numero di pagine libere."
-
-#: libraries/messages.inc.php:87
-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 ""
-"Il numero di pagine bloccate in un InnoDB buffer pool. Queste pagine sono "
-"attualmente in lettura o in scittura e non possono essere aggiornate o "
-"rimosse per altre ragioni."
-
-#: libraries/messages.inc.php:88
-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 "
-"be calculated as Innodb_buffer_pool_pages_total - "
-"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data."
-msgstr ""
-"Il numero di pagine occupate perchè sono state allocate per amministrazione, "
-"come row locks o per hash index adattivi. Questo valore può essere calcolato "
-"come Innodb_buffer_pool_pages_total - Innodb_buffer_pool_pages_free - "
-"Innodb_buffer_pool_pages_data."
-
-#: libraries/messages.inc.php:89
-msgid "Total size of buffer pool, in pages."
-msgstr "Il numero totale di buffer pool, in pagine."
-
-#: libraries/messages.inc.php:90
-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 ""
-"Il numero di read-aheads \"random\" InnoDB iniziate. Questo accade quando "
-"una query legge una porzione di una tabella, ma in ordine casuale."
-
-#: libraries/messages.inc.php:91
-msgid ""
-"The number of sequential read-aheads InnoDB initiated. This happens when "
-"InnoDB does a sequential full table scan."
-msgstr ""
-"Il numero di read-aheads InnoDB sequanziali. Questo accade quando InnoDB "
-"esegue una scansione completa sequenziale di una tabella."
-
-#: libraries/messages.inc.php:92
-msgid "The number of logical read requests InnoDB has done."
-msgstr "Il numero di richieste logiche che InnoDb ha fatto."
-
-#: libraries/messages.inc.php:93
-msgid ""
-"The number of logical reads that InnoDB could not satisfy from buffer pool "
-"and had to do a single-page read."
-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/messages.inc.php:94
-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 "
-"available, it's necessary to wait for pages to be flushed first. This "
-"counter counts instances of these waits. If the buffer pool size was set "
-"properly, this value should be small."
-msgstr ""
-"Normalmente le sritture nel buffer pool InnoDB vengono effettuate in "
-"background. Tuttavia se è necessario leggere o creare una pagina, e non sono "
-"disponibile pagine pulite è necessario attendere che le pagine siano "
-"aggiornate prima. Questo contatore conta le istanze di queste attese. Se la "
-"dimesione del buffer pool è stata settata correttamente questo valore "
-"dovrebbe essere basso."
-
-#: libraries/messages.inc.php:95
-msgid "The number writes done to the InnoDB buffer pool."
-msgstr "Il numero di scritture effettuate nel buffer pool InnoDB."
-
-#: libraries/messages.inc.php:96
-msgid "The number of fsync() operations so far."
-msgstr "Il numero delle operazioni fsync() fino ad ora."
-
-#: libraries/messages.inc.php:97
-msgid "The current number of pending fsync() operations."
-msgstr "Il numero di operazioni fsync() in attesa."
-
-#: libraries/messages.inc.php:98
-msgid "The current number of pending reads."
-msgstr "Il numero di letture in attesa."
-
-#: libraries/messages.inc.php:99
-msgid "The current number of pending writes."
-msgstr "Il numero di scritture in attesa."
-
-#: libraries/messages.inc.php:100
-msgid "The amount of data read so far, in bytes."
-msgstr "La quantità di dati letti fino ad ora, in bytes."
-
-#: libraries/messages.inc.php:101
-msgid "The total number of data reads."
-msgstr "Il numero totale di dati letti."
-
-#: libraries/messages.inc.php:102
-msgid "The total number of data writes."
-msgstr "Il numero totale di dati scritti."
-
-#: libraries/messages.inc.php:103
-msgid "The amount of data written so far, in bytes."
-msgstr "La quantità di dati scritti fino ad ora, in bytes."
-
-#: libraries/messages.inc.php:104
-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/messages.inc.php:105
-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/messages.inc.php:106
-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 ""
-"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/messages.inc.php:107
-msgid "The number of log write requests."
-msgstr "Il numero di richieste di scrittura dei log."
-
-#: libraries/messages.inc.php:108
-msgid "The number of physical writes to the log file."
-msgstr "Il numero scritture fisiche del log file."
-
-#: libraries/messages.inc.php:109
-msgid "The number of fsync() writes done to the log file."
-msgstr "Il numero di scritture fsync fatte sul log file."
-
-#: libraries/messages.inc.php:110
-msgid "The number of pending log file fsyncs."
-msgstr "Il numero degli fsyncs in sospeso sul log file."
-
-#: libraries/messages.inc.php:111
-msgid "Pending log file writes."
-msgstr "Il numero di scritture in sospeso sul log file."
-
-#: libraries/messages.inc.php:112
-msgid "The number of bytes written to the log file."
-msgstr "Il numero di bytes scritti sul log file."
-
-#: libraries/messages.inc.php:113
-msgid "The number of pages created."
-msgstr "Il numero di pagine create."
-
-#: libraries/messages.inc.php:114
-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 ""
-"La dimesione di-compilazione delle pagine InnoDB (default 16KB). Molti "
-"valori sono conteggiati nelle pagine; la dimesione delle pagine permette di "
-"convertirli facilmente in bytes."
-
-#: libraries/messages.inc.php:115
-msgid "The number of pages read."
-msgstr "Il numero di pagine lette."
-
-#: libraries/messages.inc.php:116
-msgid "The number of pages written."
-msgstr "Il numero di pagine scritte."
-
-#: libraries/messages.inc.php:117
-msgid "The number of row locks currently being waited for."
-msgstr "Il numero di row locks attualmente in attesa."
-
-#: libraries/messages.inc.php:118
-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/messages.inc.php:119
-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/messages.inc.php:120
-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/messages.inc.php:121
-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/messages.inc.php:122
-msgid "The number of rows deleted from InnoDB tables."
-msgstr "Il numero di righe cancellate da una tabella InnoDB."
-
-#: libraries/messages.inc.php:123
-msgid "The number of rows inserted in InnoDB tables."
-msgstr "Il numero di righe inserite da una tabella InnoDB."
-
-#: libraries/messages.inc.php:124
-msgid "The number of rows read from InnoDB tables."
-msgstr "Il numero di righe lette da una tabella InnoDB."
-
-#: libraries/messages.inc.php:125
-msgid "The number of rows updated in InnoDB tables."
-msgstr "Il numero di righe aggiornate da una tabella InnoDB."
-
-#: libraries/messages.inc.php:126
-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 ""
-"Il numero di blocchi chaive aggiunti nella cache chiave che sono stati "
-"cambiati, ma che non sono stai aggiornati su disco. E' conosciuto con il "
-"nome di Not_flushed_key_blocks."
-
-#: libraries/messages.inc.php:127
-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 ""
-"Il numero di blocchi non usati nella cache chiave. Puoi usare questo valore "
-"per determinare quanta cache chiave è in uso."
-
-#: libraries/messages.inc.php:128
-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 ""
-"Il numero di blocchi usati nella cache chiave. The number of used blocks in "
-"the key cache. Questo valore è un'importante segnale che indica il numero "
-"massimo di blocchi che sono stati in uso contemporaneamente."
-
-#: libraries/messages.inc.php:129
-msgid "The number of requests to read a key block from the cache."
-msgstr "Il numero di richieste per le ggere un blocco chiave dalla cache."
-
-#: libraries/messages.inc.php:130
-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 ""
-"Il numero di letture fisiche dal disco di un blocco chiave. Se Key_reads è "
-"grande allora il valore key_buffer_size è probabilmente troppo piccolo. IIl "
-"rapporto di cache miss rate può essere calcolato come Key_reads/"
-"Key_read_requests."
-
-#: libraries/messages.inc.php:131
-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/messages.inc.php:132
-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/messages.inc.php:133
-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 ""
-"Il costo totale dell'ultima query compilata così come computato "
-"dall'ottimizzatore delle query. Utile per comparare il costo di differenti "
-"query per la stessa operazione di query. Il valore di default è 0, che "
-"significa che nessuna query è stata ancora compilata."
-
-#: libraries/messages.inc.php:134
-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/messages.inc.php:135
-msgid ""
-"The number of tables that have been opened. If opened tables is big, your "
-"table cache value is probably too small."
-msgstr ""
-"Il numero di tabelle che sono state aperte. Se il valore opened_tables è "
-"grande, probabilmente il valore di table cache è troppo piccolo."
-
-#: libraries/messages.inc.php:136
-msgid "The number of files that are open."
-msgstr "Il numero di file che sono aperti."
-
-#: libraries/messages.inc.php:137
-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/messages.inc.php:138
-msgid "The number of tables that are open."
-msgstr "Il numero di tabelle che sono aperte."
-
-#: libraries/messages.inc.php:139
-msgid "The number of free memory blocks in query cache."
-msgstr "Il numero di blocchi di memoria liberi nella cache delle query."
-
-#: libraries/messages.inc.php:140
-msgid "The amount of free memory for query cache."
-msgstr "L'ammontare di memoria libera nella cache delle query."
-
-#: libraries/messages.inc.php:141
-msgid "The number of cache hits."
-msgstr "Il numero di cache hits."
-
-#: libraries/messages.inc.php:142
-msgid "The number of queries added to the cache."
-msgstr "Il numero di query aggiunte alla cache."
-
-#: libraries/messages.inc.php:143
-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 "
-"cache size. The query cache uses a least recently used (LRU) strategy to "
-"decide which queries to remove from the cache."
-msgstr ""
-"Il numero di query che sono state rimosse dalla cache per liberare memoria "
-"per la cache di nuove query. Questa informazione può aiutarti per "
-"parametrare la dimensione della cache delle query. La cache delle query usa "
-"una strategia di \"meno usate recentemente\" (LRU - least recently used) per "
-"decidere quali query rimuovere dalla cache."
-
-#: libraries/messages.inc.php:144
-msgid ""
-"The number of non-cached queries (not cachable, or not cached due to the "
-"query_cache_type setting)."
-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/messages.inc.php:145
-msgid "The number of queries registered in the cache."
-msgstr "Il numero di query registrate nella cache."
-
-#: libraries/messages.inc.php:146
-msgid "The total number of blocks in the query cache."
-msgstr "Il numero totale di blocchi nella cache delle query."
-
-#: libraries/messages.inc.php:147
-msgctxt "$strShowStatusReset"
-msgid "Reset"
-msgstr "Reset"
-
-#: libraries/messages.inc.php:148
-msgid "The status of failsafe replication (not yet implemented)."
-msgstr "Lo sato delle repliche failsafe (non ancora implementato)."
-
-#: libraries/messages.inc.php:149
-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 ""
-"Il numero di joins che non usano gli indici. (Se questo valore non è 0, "
-"dovresti controllare attentamente gli indici delle tue tabelle.)"
-
-#: libraries/messages.inc.php:150
-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/messages.inc.php:151
-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 ""
-"Il numero di joins senza chiavi che controllano per l'uso di una chiave dopo "
-"ogni riga. (Se questo valore non è 0, dovresti controllare attentamente gli "
-"indici delle tue tabelle.)"
-
-#: libraries/messages.inc.php:152
-msgid ""
-"The number of joins that used ranges on the first table. (It's normally not "
-"critical even if this is big.)"
-msgstr ""
-"Il numero di joins che usano un range sulla prima tabella. (Non è, "
-"solitamente, un valore critico anche se è grande.)"
-
-#: libraries/messages.inc.php:153
-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/messages.inc.php:154
-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/messages.inc.php:155
-msgid ""
-"Total (since startup) number of times the replication slave SQL thread has "
-"retried transactions."
-msgstr ""
-"Numero totale di volte (dalla partenza) in cui la replica slave SQL ha "
-"ritentato una transazione."
-
-#: libraries/messages.inc.php:156
-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/messages.inc.php:157
-msgid ""
-"The number of threads that have taken more than slow_launch_time seconds to "
-"create."
-msgstr ""
-"Numero di processi che hanno impiegato più di \"slow_launch_time\" secondi "
-"per partire."
-
-#: libraries/messages.inc.php:158
-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\" seconds."
-
-#: libraries/messages.inc.php:159
-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 ""
-"Il numero di fusioni passate all'algoritmo di ordianemento che sono state "
-"fatte. Se questo valore è grande, dovresti incrementare la variabile di "
-"sistema sort_buffer_size."
-
-#: libraries/messages.inc.php:160
-msgid "The number of sorts that were done with ranges."
-msgstr "Il numero di ordinamenti che sono stati eseguiti in un intervallo."
-
-#: libraries/messages.inc.php:161
-msgid "The number of sorted rows."
-msgstr "Il numero di righe ordinate."
-
-#: libraries/messages.inc.php:162
-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/messages.inc.php:163
-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/messages.inc.php:164
-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 "
-"should first optimize your queries, and then either split your table or "
-"tables or use replication."
-msgstr ""
-"Il numero di volte che un table lock è stato eseguito immediatamente ed era "
-"necessaria un'attesa. Se è alto, potresti avere dei problemi con le "
-"performance, dovresti prima ottimizzare le query, oppure sia utilizzare le "
-"repliche, sia dividere le tabelle."
-
-#: libraries/messages.inc.php:165
-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 ""
-"Il numero dei processi nella cache dei processi. L'hit rate della cache può "
-"essere calcolato come processi_creati/connessioni. Se questo valore è rosso "
-"devi aumentare la tua thread_cache_size."
-
-#: libraries/messages.inc.php:166
-msgid "The number of currently open connections."
-msgstr "Il numero di connessioni correntemente aperte."
-
-#: libraries/messages.inc.php:167
-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 "
-"doesn't give a notable performance improvement if you have a good thread "
-"implementation.)"
-msgstr ""
-"Il numero di processi creati per gestire le connessioni. Se Threads_created "
-"è grosso, devi probabilmente aumentare il valore thread_cache_size. "
-"(Normalmente questo non fornisce un significatico incremento delle "
-"performace se hai una buona implementazione dei processi.)"
-
-#: libraries/messages.inc.php:168
-msgid "The number of threads that are not sleeping."
-msgstr "Il numero di processi non in attesa."
-
#: libraries/mult_submits.inc.php:76 libraries/tbl_properties.inc.php:513
#: tbl_structure.php:29 tbl_structure.php:153 tbl_structure.php:157
#: tbl_structure.php:473
@@ -4386,8 +3514,8 @@ msgstr ""
#: libraries/replication_gui.lib.php:55 libraries/replication_gui.lib.php:56
#: libraries/replication_gui.lib.php:249 libraries/replication_gui.lib.php:252
-#: libraries/replication_gui.lib.php:259 server_privileges.php:672
-#: server_privileges.php:675 server_privileges.php:682
+#: libraries/replication_gui.lib.php:259 server_privileges.php:711
+#: server_privileges.php:714 server_privileges.php:721
#: server_synchronize.php:1171
msgid "User name"
msgstr "Nome utente"
@@ -4408,11 +3536,11 @@ msgid "Slave status"
msgstr "Mostra lo stato degli slave"
#: libraries/replication_gui.lib.php:114 libraries/sql_query_form.lib.php:445
-#: server_status.php:626 server_variables.php:52
+#: server_status.php:737 server_variables.php:52
msgid "Variable"
msgstr "Variabile"
-#: libraries/replication_gui.lib.php:115 server_status.php:627
+#: libraries/replication_gui.lib.php:115 server_status.php:738
#: tbl_change.php:324 tbl_printview.php:370 tbl_select.php:139
#: tbl_structure.php:729
msgid "Value"
@@ -4432,34 +3560,34 @@ msgstr ""
msgid "Add slave replication user"
msgstr ""
-#: libraries/replication_gui.lib.php:254 server_privileges.php:677
+#: libraries/replication_gui.lib.php:254 server_privileges.php:716
msgid "Any user"
msgstr "Qualsiasi utente"
#: libraries/replication_gui.lib.php:255 libraries/replication_gui.lib.php:323
-#: libraries/replication_gui.lib.php:346 server_privileges.php:678
-#: server_privileges.php:745 server_privileges.php:769
-#: server_privileges.php:1889 server_privileges.php:1919
+#: libraries/replication_gui.lib.php:346 server_privileges.php:717
+#: server_privileges.php:784 server_privileges.php:808
+#: server_privileges.php:1928 server_privileges.php:1958
msgid "Use text field"
msgstr "Utilizza campo text"
-#: libraries/replication_gui.lib.php:302 server_privileges.php:725
+#: libraries/replication_gui.lib.php:302 server_privileges.php:764
msgid "Any host"
msgstr "Qualsiasi host"
-#: libraries/replication_gui.lib.php:306 server_privileges.php:729
+#: libraries/replication_gui.lib.php:306 server_privileges.php:768
msgid "Local"
msgstr "Locale"
-#: libraries/replication_gui.lib.php:312 server_privileges.php:734
+#: libraries/replication_gui.lib.php:312 server_privileges.php:773
msgid "This Host"
msgstr "Questo Host"
-#: libraries/replication_gui.lib.php:318 server_privileges.php:740
+#: libraries/replication_gui.lib.php:318 server_privileges.php:779
msgid "Use Host Table"
msgstr "Utilizza la Tabella dell'Host"
-#: libraries/replication_gui.lib.php:331 server_privileges.php:753
+#: libraries/replication_gui.lib.php:331 server_privileges.php:792
msgid ""
"When Host table is used, this field is ignored and values stored in Host "
"table are used instead."
@@ -4467,8 +3595,25 @@ msgstr ""
"Quando la tabella Host è usata, questo campo è ignorato e i valori "
"memorizzati nella tabella Host invece utilizzati."
-#: libraries/select_lang.lib.php:480 libraries/select_lang.lib.php:486
-#: libraries/select_lang.lib.php:492
+#. l10n: Text direction, use either ltr or rtl
+#: libraries/select_lang.lib.php:491
+msgid "ltr"
+msgstr "ltr"
+
+#: libraries/select_lang.lib.php:493
+msgid "Content of table __TABLE__"
+msgstr "Contenuto della tabella __TABLE__"
+
+#: libraries/select_lang.lib.php:494
+msgid "(continued)"
+msgstr "(continua)"
+
+#: libraries/select_lang.lib.php:495
+msgid "Structure of table __TABLE__"
+msgstr "Struttura della tabella __TABLE__"
+
+#: libraries/select_lang.lib.php:500 libraries/select_lang.lib.php:506
+#: libraries/select_lang.lib.php:512
#, php-format
msgid "Unknown language: %1$s."
msgstr "Lingua non conosciuta : %1$s."
@@ -4479,7 +3624,7 @@ msgid "Servers"
msgstr "Servers"
#: libraries/server_links.inc.php:53 server_engines.php:112
-#: server_engines.php:116 server_status.php:304 test/theme.php:105
+#: server_engines.php:116 server_status.php:415 test/theme.php:105
msgid "Variables"
msgstr "Variabili"
@@ -4492,7 +3637,7 @@ msgid "Engines"
msgstr "Motori"
#: libraries/server_links.inc.php:76 server_binlog.php:110
-#: server_status.php:253 test/theme.php:121
+#: server_status.php:364 test/theme.php:121
msgid "Binary log"
msgstr "Log binario"
@@ -4975,8 +4120,8 @@ msgstr "Riavvia"
msgid "Protocol version"
msgstr "Versione protocollo"
-#: main.php:189 server_privileges.php:1350 server_privileges.php:1497
-#: server_privileges.php:1611 server_privileges.php:2029
+#: main.php:189 server_privileges.php:1389 server_privileges.php:1536
+#: server_privileges.php:1650 server_privileges.php:2068
#: server_processlist.php:54
msgid "User"
msgstr "Utente"
@@ -5374,7 +4519,7 @@ msgstr "%s databases sono stati cancellati correttamente."
msgid "Databases statistics"
msgstr "Statistiche dei databases"
-#: server_databases.php:117 server_status.php:260
+#: server_databases.php:117 server_status.php:371
#: setup/lib/messages.inc.php:117
msgid "Tables"
msgstr "Tabelle"
@@ -5396,6 +4541,17 @@ msgstr "Configurazione del server"
msgid "Jump to database"
msgstr "Vai al database"
+#: server_databases.php:267
+#, fuzzy
+msgid "Not replicated"
+msgstr "Configurazione del server"
+
+#: server_databases.php:273
+#, fuzzy
+#| msgid "Replication"
+msgid "Replicated"
+msgstr "Replicazione"
+
#: server_databases.php:289
#, php-format
msgid "Check privileges for database "%s"."
@@ -5429,142 +4585,337 @@ msgstr "Motori di Memorizzazione"
msgid "View dump (schema) of databases"
msgstr "Visualizza il dump (schema) dei databases"
-#: server_privileges.php:263 server_privileges.php:264
+#: server_privileges.php:24 server_privileges.php:266
+msgid "Includes all privileges except GRANT."
+msgstr "Comprende tutti i privilegi tranne GRANT."
+
+#: server_privileges.php:25 server_privileges.php:192
+#: server_privileges.php:515
+msgid "Allows altering the structure of existing tables."
+msgstr "Permette di alterare la struttura di tabelle esistenti."
+
+#: server_privileges.php:26 server_privileges.php:208
+#: server_privileges.php:521
+msgid "Allows altering and dropping stored routines."
+msgstr "Permette l'alterazione e l'eliminazione di routines memorizzate."
+
+#: server_privileges.php:27 server_privileges.php:184
+#: server_privileges.php:514
+msgid "Allows creating new databases and tables."
+msgstr "Permette di creare nuove tabelle e nuovi databases."
+
+#: server_privileges.php:28 server_privileges.php:207
+#: server_privileges.php:520
+msgid "Allows creating stored routines."
+msgstr "Permette la creazione di routines memorizzate."
+
+#: server_privileges.php:29 server_privileges.php:514
+msgid "Allows creating new tables."
+msgstr "Permette di creare nuove tabelle."
+
+#: server_privileges.php:30 server_privileges.php:195
+#: server_privileges.php:518
+msgid "Allows creating temporary tables."
+msgstr "Permette di creare tabelle temporanee."
+
+#: server_privileges.php:31 server_privileges.php:209
+#: server_privileges.php:554
+msgid "Allows creating, dropping and renaming user accounts."
+msgstr "Permette di creare, cancellare e rinominare gli account utente."
+
+#: server_privileges.php:32 server_privileges.php:199
+#: server_privileges.php:203 server_privileges.php:526
+#: server_privileges.php:530
+msgid "Allows creating new views."
+msgstr "Permette la creazione di nuove viste."
+
+#: server_privileges.php:33 server_privileges.php:183
+#: server_privileges.php:506
+msgid "Allows deleting data."
+msgstr "Permette di cancellare dati."
+
+#: server_privileges.php:34 server_privileges.php:185
+#: server_privileges.php:517
+msgid "Allows dropping databases and tables."
+msgstr "Permette di eliminare databases e tabelle."
+
+#: server_privileges.php:35 server_privileges.php:517
+msgid "Allows dropping tables."
+msgstr "Permette di eliminare tabelle."
+
+#: server_privileges.php:36 server_privileges.php:200
+#: server_privileges.php:534
+msgid "Allows to set up events for the event scheduler"
+msgstr "Permette di impostare gli eventi per lo scheduler"
+
+#: server_privileges.php:37 server_privileges.php:210
+#: server_privileges.php:522
+msgid "Allows executing stored routines."
+msgstr "Permette l'esecuzione di routines memorizzate."
+
+#: server_privileges.php:38 server_privileges.php:189
+#: server_privileges.php:509
+msgid "Allows importing data from and exporting data into files."
+msgstr "Permette di importare dati da e esportare dati in file."
+
+#: server_privileges.php:39 server_privileges.php:540
+msgid ""
+"Allows adding users and privileges without reloading the privilege tables."
+msgstr ""
+"Permette di aggiungere utenti e privilegi senza ricaricare le tabelle dei "
+"privilegi."
+
+#: server_privileges.php:40 server_privileges.php:191
+#: server_privileges.php:516
+msgid "Allows creating and dropping indexes."
+msgstr "Permette di creare ed eliminare gli indici."
+
+#: server_privileges.php:41 server_privileges.php:181
+#: server_privileges.php:442 server_privileges.php:504
+msgid "Allows inserting and replacing data."
+msgstr "Permette di inserire e sovrascrivere dati."
+
+#: server_privileges.php:42 server_privileges.php:196
+#: server_privileges.php:549
+msgid "Allows locking tables for the current thread."
+msgstr "Permette di bloccare le tabelle per il thread corrente."
+
+#: server_privileges.php:43 server_privileges.php:646
+#: server_privileges.php:648
+msgid "Limits the number of new connections the user may open per hour."
+msgstr ""
+"Limita il numero di nuove connessioni che un utente può aprire in un'ora."
+
+#: server_privileges.php:44 server_privileges.php:634
+#: server_privileges.php:636
+msgid "Limits the number of queries the user may send to the server per hour."
+msgstr ""
+"Limita il numero di query che un utente può mandare al server in un'ora."
+
+#: server_privileges.php:45 server_privileges.php:640
+#: server_privileges.php:642
+msgid ""
+"Limits the number of commands that change any table or database the user may "
+"execute per hour."
+msgstr ""
+"Limita il numero di comandi che possono cambiare una tabella o un database "
+"che un utente può eseguire in un'ora."
+
+#: server_privileges.php:46 server_privileges.php:652
+#: server_privileges.php:654
+msgid "Limits the number of simultaneous connections the user may have."
+msgstr "Limite di connessioni simultanee che un utente può fare."
+
+#: server_privileges.php:47 server_privileges.php:188
+#: server_privileges.php:544
+msgid "Allows viewing processes of all users"
+msgstr "Permette di vedere i processi di tutti gli utenti"
+
+#: server_privileges.php:48 server_privileges.php:190
+#: server_privileges.php:448 server_privileges.php:550
+msgid "Has no effect in this MySQL version."
+msgstr "Non ha alcun effetto in questa versione di MySQL."
+
+#: server_privileges.php:49 server_privileges.php:186
+#: server_privileges.php:545
+msgid "Allows reloading server settings and flushing the server's caches."
+msgstr ""
+"Permette di ricaricare i parametri del server e di resettare la cache del "
+"server."
+
+#: server_privileges.php:50 server_privileges.php:198
+#: server_privileges.php:552
+msgid "Allows the user to ask where the slaves / masters are."
+msgstr ""
+"Accorda il diritto ad un utente di domandare dove sono i masters/slaves."
+
+#: server_privileges.php:51 server_privileges.php:197
+#: server_privileges.php:553
+msgid "Needed for the replication slaves."
+msgstr "Necessario per la replicazione degli slaves."
+
+#: server_privileges.php:52 server_privileges.php:180
+#: server_privileges.php:439 server_privileges.php:503
+msgid "Allows reading data."
+msgstr "Permette di leggere i dati."
+
+#: server_privileges.php:53 server_privileges.php:193
+#: server_privileges.php:547
+msgid "Gives access to the complete list of databases."
+msgstr "Accorda l'accesso alla lista completa dei databases."
+
+#: server_privileges.php:54 server_privileges.php:204
+#: server_privileges.php:206 server_privileges.php:519
+msgid "Allows performing SHOW CREATE VIEW queries."
+msgstr "Permette di effettuare query del tipo SHOW CREATE VIEW."
+
+#: server_privileges.php:55 server_privileges.php:187
+#: server_privileges.php:546
+msgid "Allows shutting down the server."
+msgstr "Permette di chiudere il server."
+
+#: server_privileges.php:56 server_privileges.php:194
+#: server_privileges.php:543
+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 ""
+"Permette altre connessioni, anche se è stato raggiunto il massimo numero di "
+"connessioni; Necessario per molte operazioni di amministrazione come il "
+"settaggio di variabili globali o la cancellazione dei threads di altri "
+"utenti."
+
+#: server_privileges.php:57 server_privileges.php:201
+#: server_privileges.php:535
+msgid "Allows creating and dropping triggers"
+msgstr "Permette di creare e di eliminare i triggers"
+
+#: server_privileges.php:58 server_privileges.php:182
+#: server_privileges.php:445 server_privileges.php:505
+msgid "Allows changing data."
+msgstr "Permette di cambiare i dati."
+
+#: server_privileges.php:59 server_privileges.php:260
+msgid "No privileges."
+msgstr "Nessun privilegio."
+
+#: server_privileges.php:302 server_privileges.php:303
#, fuzzy
#| msgid "None"
msgctxt "None privileges"
msgid "None"
msgstr "Nessuno"
-#: server_privileges.php:392 server_privileges.php:527
-#: server_privileges.php:1679 server_privileges.php:1685
+#: server_privileges.php:431 server_privileges.php:566
+#: server_privileges.php:1718 server_privileges.php:1724
msgid "Table-specific privileges"
msgstr "Privilegi relativi alle tabelle"
-#: server_privileges.php:393 server_privileges.php:535
-#: server_privileges.php:1501
+#: server_privileges.php:432 server_privileges.php:574
+#: server_privileges.php:1540
msgid " Note: MySQL privilege names are expressed in English "
msgstr "Nota: i nomi dei privilegi di MySQL sono in Inglese"
-#: server_privileges.php:524 server_privileges.php:1500
+#: server_privileges.php:563 server_privileges.php:1539
msgid "Global privileges"
msgstr "Privilegi globali"
-#: server_privileges.php:526 server_privileges.php:1679
+#: server_privileges.php:565 server_privileges.php:1718
msgid "Database-specific privileges"
msgstr "Privilegi specifici al database"
-#: server_privileges.php:571
+#: server_privileges.php:610
msgid "Administration"
msgstr "Amministrazione"
-#: server_privileges.php:591
+#: server_privileges.php:630
msgid "Resource limits"
msgstr "Limiti di risorse"
-#: server_privileges.php:592
+#: server_privileges.php:631
msgid "Note: Setting these options to 0 (zero) removes the limit."
msgstr "N.B.: 0 (zero) significa nessun limite."
-#: server_privileges.php:669
+#: server_privileges.php:708
msgid "Login Information"
msgstr "Informazioni di Login"
-#: server_privileges.php:763
+#: server_privileges.php:802
msgid "Do not change the password"
msgstr "Non cambiare la password"
-#: server_privileges.php:804 server_privileges.php:2166
+#: server_privileges.php:843 server_privileges.php:2205
#, fuzzy
#| msgid "No user(s) found."
msgid "No user found."
msgstr "Nessun utente trovato."
-#: server_privileges.php:848
+#: server_privileges.php:887
#, php-format
msgid "The user %s already exists!"
msgstr "L'utente %s esiste già!"
-#: server_privileges.php:931
+#: server_privileges.php:970
msgid "You have added a new user."
msgstr "Hai aggiunto un nuovo utente."
-#: server_privileges.php:1152
+#: server_privileges.php:1191
#, php-format
msgid "You have updated the privileges for %s."
msgstr "Hai aggiornato i permessi per %s."
-#: server_privileges.php:1176
+#: server_privileges.php:1215
#, php-format
msgid "You have revoked the privileges for %s"
msgstr "Hai revocato i privilegi per %s"
-#: server_privileges.php:1212
+#: server_privileges.php:1251
#, php-format
msgid "The password for %s was changed successfully."
msgstr "La password per l'utente %s è cambiata con successo."
-#: server_privileges.php:1232
+#: server_privileges.php:1271
#, php-format
msgid "Deleting %s"
msgstr "Cancellazione in corso di %s"
-#: server_privileges.php:1243
+#: server_privileges.php:1282
msgid "No users selected for deleting!"
msgstr "Nessun utente selezionato per la cancellazione!"
-#: server_privileges.php:1246
+#: server_privileges.php:1285
msgid "Reloading the privileges"
msgstr "Caricamento dei privilegi in corso"
-#: server_privileges.php:1261
+#: server_privileges.php:1300
msgid "The selected users have been deleted successfully."
msgstr "Gli utenti selezionati sono stati cancellati con successo."
-#: server_privileges.php:1296
+#: server_privileges.php:1335
msgid "The privileges were reloaded successfully."
msgstr "I privilegi sono stati ricaricati con successo."
-#: server_privileges.php:1324 server_privileges.php:1610
+#: server_privileges.php:1363 server_privileges.php:1649
msgid "Edit Privileges"
msgstr "Modifica Privilegi"
-#: server_privileges.php:1333
+#: server_privileges.php:1372
msgid "Revoke"
msgstr "Revoca"
-#: server_privileges.php:1365
+#: server_privileges.php:1404
msgid "User overview"
msgstr "Vista d'insieme dell'utente"
-#: server_privileges.php:1502 server_privileges.php:1684
-#: server_privileges.php:2033
+#: server_privileges.php:1541 server_privileges.php:1723
+#: server_privileges.php:2072
msgid "Grant"
msgstr "Grant"
-#: server_privileges.php:1521 server_privileges.php:2123
+#: server_privileges.php:1560 server_privileges.php:2162
msgid "Any"
msgstr "Qualsiasi"
-#: server_privileges.php:1570 server_privileges.php:1594
-#: server_privileges.php:1988 server_privileges.php:2177
+#: server_privileges.php:1609 server_privileges.php:1633
+#: server_privileges.php:2027 server_privileges.php:2216
msgid "Add a new User"
msgstr "Aggiungi un nuovo utente"
-#: server_privileges.php:1575
+#: server_privileges.php:1614
msgid "Remove selected users"
msgstr "Rimuove gli utenti selezionati"
-#: server_privileges.php:1578
+#: server_privileges.php:1617
msgid "Revoke all active privileges from the users and delete them afterwards."
msgstr "Revoca tutti i privilegi attivi agli utenti e dopo li cancella."
-#: server_privileges.php:1579 server_privileges.php:1580
-#: server_privileges.php:1581
+#: server_privileges.php:1618 server_privileges.php:1619
+#: server_privileges.php:1620
msgid "Drop the databases that have the same names as the users."
msgstr "Elimina i databases gli stessi nomi degli utenti."
-#: server_privileges.php:1597
+#: server_privileges.php:1636
#, php-format
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
@@ -5577,52 +4928,52 @@ msgstr ""
"privilegi usati dal server se sono stati fatti cambiamenti manuali. In "
"questo caso, Si dovrebbero %srinfrescare i privilegi%s prima di continuare."
-#: server_privileges.php:1645
+#: server_privileges.php:1684
msgid "The selected user was not found in the privilege table."
msgstr "L'utente selezionato non è stato trovato nella tabella dei privilegi."
-#: server_privileges.php:1685
+#: server_privileges.php:1724
msgid "Column-specific privileges"
msgstr "Privilegi relativi alle colonne"
-#: server_privileges.php:1886
+#: server_privileges.php:1925
msgid "Add privileges on the following database"
msgstr "Aggiungi privilegi sul seguente database"
-#: server_privileges.php:1904
+#: server_privileges.php:1943
msgid "Wildcards % and _ should be escaped with a \\ to use them literally"
msgstr ""
"I caratteri jolly _ e % dovrebbero essere preceduti da un \\ per l'utilizzo "
"letterale"
-#: server_privileges.php:1907
+#: server_privileges.php:1946
msgid "Add privileges on the following table"
msgstr "Aggiungi privilegi sulla seguente tabella"
-#: server_privileges.php:1964
+#: server_privileges.php:2003
msgid "Change Login Information / Copy User"
msgstr "Cambia le Informazioni di Login / Copia Utente"
-#: server_privileges.php:1967
+#: server_privileges.php:2006
msgid "Create a new user with the same privileges and ..."
msgstr "Crea un nuovo utente con gli stessi privilegi e ..."
-#: server_privileges.php:1969
+#: server_privileges.php:2008
msgid "... keep the old one."
msgstr "... mantieni quello vecchio."
-#: server_privileges.php:1970
+#: server_privileges.php:2009
msgid " ... delete the old one from the user tables."
msgstr " ... cancella quello vecchio dalla tabella degli utenti."
-#: server_privileges.php:1971
+#: server_privileges.php:2010
msgid ""
" ... revoke all active privileges from the old one and delete it afterwards."
msgstr ""
" ... revoca tutti i privilegi attivi da quello vecchio e in seguito "
"cancellalo."
-#: server_privileges.php:1972
+#: server_privileges.php:2011
msgid ""
" ... delete the old one from the user tables and reload the privileges "
"afterwards."
@@ -5630,44 +4981,44 @@ msgstr ""
" ... cancella quello vecchio dalla tabella degli utenti e in seguito "
"ricarica i privilegi."
-#: server_privileges.php:1994
+#: server_privileges.php:2033
msgid "Database for user"
msgstr "Database per l'utente"
-#: server_privileges.php:1998
+#: server_privileges.php:2037
#, fuzzy
#| msgid "None"
msgctxt "Create none database for user"
msgid "None"
msgstr "Nessuno"
-#: server_privileges.php:1999
+#: server_privileges.php:2038
msgid "Create database with same name and grant all privileges"
msgstr "Crea un database con lo stesso nome e concedi tutti i privilegi"
-#: server_privileges.php:2000
+#: server_privileges.php:2039
msgid "Grant all privileges on wildcard name (username\\_%)"
msgstr "Concedi tutti i privilegi al nome con caratteri jolly (username\\_%)"
-#: server_privileges.php:2003
+#: server_privileges.php:2042
#, php-format
msgid "Grant all privileges on database "%s""
msgstr "Garantisci tutti i privilegi per il database "%s""
-#: server_privileges.php:2026
+#: server_privileges.php:2065
#, php-format
msgid "Users having access to "%s""
msgstr "Utenti che hanno accesso a \"%s\""
-#: server_privileges.php:2134
+#: server_privileges.php:2173
msgid "global"
msgstr "globale"
-#: server_privileges.php:2136
+#: server_privileges.php:2175
msgid "database-specific"
msgstr "specifico del database"
-#: server_privileges.php:2138
+#: server_privileges.php:2177
msgid "wildcard"
msgstr "wildcard"
@@ -5715,7 +5066,7 @@ msgstr ""
msgid "This server is configured as master in a replication process."
msgstr ""
-#: server_replication.php:184 server_status.php:281
+#: server_replication.php:184 server_status.php:392
#, fuzzy
msgid "Show master status"
msgstr "Mostra lo stato degli slave"
@@ -5854,103 +5205,763 @@ msgid ""
"like to configure it?"
msgstr ""
+#: server_status.php:40
+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 ""
+"Il numero delle transazioni che usano la cache temporanea del log binario, "
+"ma che oltrepassano il valore di binlog_cache_size e usano un file "
+"temporaneo per salvare gli statements dalle transazioni."
+
+#: server_status.php:41
+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."
+
+#: server_status.php:42
+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 "
+"to increase the tmp_table_size value to cause temporary tables to be memory-"
+"based instead of disk-based."
+msgstr ""
+"Il numero delle tabelle temporanee create automaticamente sul disco dal "
+"server mentre esegue i comandi. Se il valore Created_tmp_disk_tables è "
+"grande, potresti voler aumentare il valore tmp_table_size, per fare im modo "
+"che le tabelle temporanee siano memory-based anzichè disk-based."
+
+#: server_status.php:43
+msgid "How many temporary files mysqld has created."
+msgstr "Numero di file temporanei che mysqld ha creato."
+
+#: server_status.php:44
+msgid ""
+"The number of in-memory temporary tables created automatically by the server "
+"while executing statements."
+msgstr ""
+"Il numero di tabelle temporanee create automaticamente in memoria dal server "
+"durante l'esecuzione dei comandi."
+
+#: server_status.php:45
+msgid ""
+"The number of rows written with INSERT DELAYED for which some error occurred "
+"(probably duplicate key)."
+msgstr ""
+"Numero di righe scritte con INSERT DELAYED in cui ci sono stati degli errori "
+"(probabilmete chiave dublicata)."
+
#: server_status.php:46
+msgid ""
+"The number of INSERT DELAYED handler threads in use. Every different table "
+"on which one uses INSERT DELAYED gets its own thread."
+msgstr ""
+"Il numero di processi INSERT DELAYED in uso. Ciascuna tabella su cui è usato "
+"INSERT DELAYED occupa un thread."
+
+#: server_status.php:47
+msgid "The number of INSERT DELAYED rows written."
+msgstr "Il numero di righe INSERT DELAYED scritte."
+
+#: server_status.php:48
+msgid "The number of executed FLUSH statements."
+msgstr "Il numero di comandi FLUSH eseguiti."
+
+#: server_status.php:49
+msgid "The number of internal COMMIT statements."
+msgstr "Il numero di comandi interni COMMIT eseguiti."
+
+#: server_status.php:50
+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."
+
+#: server_status.php:51
+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 ""
+"Il server MySQL può chiedere al motore di storage NDB Cluster se conosce una "
+"tabella sulla base di un nome dato. Questo è chaiamto discovery. "
+"Handler_discover indica il numero di volte che una tabella è stata trovata."
+
+#: server_status.php:52
+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 ""
+"Il numero di volte che il primo valore è stato letto da un indice. Se è "
+"troppo alto è probabile che il server stia facendo molte scansioni complete "
+"degli indici; per esempio, SELECT col1 FROM foo, assumento che col1 sia "
+"indicizzata."
+
+#: server_status.php:53
+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 ""
+"Il numero di richieste per leggere una riga basata su di una chiave. Se è "
+"alta, è un buon indice che le tue query e le tue tabelle sono correttamente "
+"indicizzate."
+
+#: server_status.php:54
+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 ""
+"Il numero di richieste per leggere la riga successiva nell'ordine delle "
+"chiavi. Questo valore è incrementato se stai facendo una query su di una "
+"colonna indice con un range costante, oppure se stai facendo una scansione "
+"degli indici."
+
+#: server_status.php:55
+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 ""
+"Il numero di richieste per leggere la riga precedente nell'ordine delle "
+"chiavi. Questo metodo di lettura è principalmente utilizzato per ottimizzare "
+"ORDER BY ... DESC."
+
+#: server_status.php:56
+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 "
+"probably have a lot of queries that require MySQL to scan whole tables or "
+"you have joins that don't use keys properly."
+msgstr ""
+"Il numero di richieste per leggere una riga basata su una posizione fissa. "
+"Questo valore è alto se stai facendo molte richieste che richiedono un "
+"ordinamento dei risultati. Probabilmente hai molte query che che richiedono "
+"a MySQL di leggere l'intera tabella oppure ci sono dei joins che non usano "
+"le chiavi correttamente."
+
+#: server_status.php:57
+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 "
+"tables are not properly indexed or that your queries are not written to take "
+"advantage of the indexes you have."
+msgstr ""
+"Il numero di richieste per leggere la riga successiva in un file di dati. "
+"Questo valore è alto se stai facendo molte scansioni della tabella. "
+"Generalmente è un segnale che le tue tabelle non sono correttamente "
+"indicizzate, o che le query non sono state scritte per trarre vantaggi dagli "
+"indici che hai."
+
+#: server_status.php:58
+msgid "The number of internal ROLLBACK statements."
+msgstr "Il numero di comandi ROLLBACK interni."
+
+#: server_status.php:59
+msgid "The number of requests to update a row in a table."
+msgstr "Il numero di richieste per aggiornare una riga in una tabella."
+
+#: server_status.php:60
+msgid "The number of requests to insert a row in a table."
+msgstr "Il numero di richieste per inserire una riga in una tabella."
+
+#: server_status.php:61
+msgid "The number of pages containing data (dirty or clean)."
+msgstr "Il numero di pagine che contengono dati (sporchi o puliti)."
+
+#: server_status.php:62
+msgid "The number of pages currently dirty."
+msgstr "Il numero di pagine attualmente sporche."
+
+#: server_status.php:63
+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."
+
+#: server_status.php:64
+msgid "The number of free pages."
+msgstr "Il numero di pagine libere."
+
+#: server_status.php:65
+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 ""
+"Il numero di pagine bloccate in un InnoDB buffer pool. Queste pagine sono "
+"attualmente in lettura o in scittura e non possono essere aggiornate o "
+"rimosse per altre ragioni."
+
+#: server_status.php:66
+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 "
+"be calculated as Innodb_buffer_pool_pages_total - "
+"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data."
+msgstr ""
+"Il numero di pagine occupate perchè sono state allocate per amministrazione, "
+"come row locks o per hash index adattivi. Questo valore può essere calcolato "
+"come Innodb_buffer_pool_pages_total - Innodb_buffer_pool_pages_free - "
+"Innodb_buffer_pool_pages_data."
+
+#: server_status.php:67
+msgid "Total size of buffer pool, in pages."
+msgstr "Il numero totale di buffer pool, in pagine."
+
+#: server_status.php:68
+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 ""
+"Il numero di read-aheads \"random\" InnoDB iniziate. Questo accade quando "
+"una query legge una porzione di una tabella, ma in ordine casuale."
+
+#: server_status.php:69
+msgid ""
+"The number of sequential read-aheads InnoDB initiated. This happens when "
+"InnoDB does a sequential full table scan."
+msgstr ""
+"Il numero di read-aheads InnoDB sequanziali. Questo accade quando InnoDB "
+"esegue una scansione completa sequenziale di una tabella."
+
+#: server_status.php:70
+msgid "The number of logical read requests InnoDB has done."
+msgstr "Il numero di richieste logiche che InnoDb ha fatto."
+
+#: server_status.php:71
+msgid ""
+"The number of logical reads that InnoDB could not satisfy from buffer pool "
+"and had to do a single-page read."
+msgstr ""
+"Il numero di richieste logiche che InnoDB non può soddisfare dal buffer pool "
+"e che devono fare una lettura di una pagina singola."
+
+#: server_status.php:72
+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 "
+"available, it's necessary to wait for pages to be flushed first. This "
+"counter counts instances of these waits. If the buffer pool size was set "
+"properly, this value should be small."
+msgstr ""
+"Normalmente le sritture nel buffer pool InnoDB vengono effettuate in "
+"background. Tuttavia se è necessario leggere o creare una pagina, e non sono "
+"disponibile pagine pulite è necessario attendere che le pagine siano "
+"aggiornate prima. Questo contatore conta le istanze di queste attese. Se la "
+"dimesione del buffer pool è stata settata correttamente questo valore "
+"dovrebbe essere basso."
+
+#: server_status.php:73
+msgid "The number writes done to the InnoDB buffer pool."
+msgstr "Il numero di scritture effettuate nel buffer pool InnoDB."
+
+#: server_status.php:74
+msgid "The number of fsync() operations so far."
+msgstr "Il numero delle operazioni fsync() fino ad ora."
+
+#: server_status.php:75
+msgid "The current number of pending fsync() operations."
+msgstr "Il numero di operazioni fsync() in attesa."
+
+#: server_status.php:76
+msgid "The current number of pending reads."
+msgstr "Il numero di letture in attesa."
+
+#: server_status.php:77
+msgid "The current number of pending writes."
+msgstr "Il numero di scritture in attesa."
+
+#: server_status.php:78
+msgid "The amount of data read so far, in bytes."
+msgstr "La quantità di dati letti fino ad ora, in bytes."
+
+#: server_status.php:79
+msgid "The total number of data reads."
+msgstr "Il numero totale di dati letti."
+
+#: server_status.php:80
+msgid "The total number of data writes."
+msgstr "Il numero totale di dati scritti."
+
+#: server_status.php:81
+msgid "The amount of data written so far, in bytes."
+msgstr "La quantità di dati scritti fino ad ora, in bytes."
+
+#: server_status.php:82
+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."
+
+#: server_status.php:83
+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."
+
+#: server_status.php:84
+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 ""
+"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."
+
+#: server_status.php:85
+msgid "The number of log write requests."
+msgstr "Il numero di richieste di scrittura dei log."
+
+#: server_status.php:86
+msgid "The number of physical writes to the log file."
+msgstr "Il numero scritture fisiche del log file."
+
+#: server_status.php:87
+msgid "The number of fsync() writes done to the log file."
+msgstr "Il numero di scritture fsync fatte sul log file."
+
+#: server_status.php:88
+msgid "The number of pending log file fsyncs."
+msgstr "Il numero degli fsyncs in sospeso sul log file."
+
+#: server_status.php:89
+msgid "Pending log file writes."
+msgstr "Il numero di scritture in sospeso sul log file."
+
+#: server_status.php:90
+msgid "The number of bytes written to the log file."
+msgstr "Il numero di bytes scritti sul log file."
+
+#: server_status.php:91
+msgid "The number of pages created."
+msgstr "Il numero di pagine create."
+
+#: server_status.php:92
+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 ""
+"La dimesione di-compilazione delle pagine InnoDB (default 16KB). Molti "
+"valori sono conteggiati nelle pagine; la dimesione delle pagine permette di "
+"convertirli facilmente in bytes."
+
+#: server_status.php:93
+msgid "The number of pages read."
+msgstr "Il numero di pagine lette."
+
+#: server_status.php:94
+msgid "The number of pages written."
+msgstr "Il numero di pagine scritte."
+
+#: server_status.php:95
+msgid "The number of row locks currently being waited for."
+msgstr "Il numero di row locks attualmente in attesa."
+
+#: server_status.php:96
+msgid "The average time to acquire a row lock, in milliseconds."
+msgstr "Il tempo medio per l'acquisizione di un row lock, in millisecondi."
+
+#: server_status.php:97
+msgid "The total time spent in acquiring row locks, in milliseconds."
+msgstr "Il tempo totale per l'acquisizione di un row locks, in millisecondi."
+
+#: server_status.php:98
+msgid "The maximum time to acquire a row lock, in milliseconds."
+msgstr "Il tempo massimo per l'acquisizione di un row lock, in millisecondi."
+
+#: server_status.php:99
+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."
+
+#: server_status.php:100
+msgid "The number of rows deleted from InnoDB tables."
+msgstr "Il numero di righe cancellate da una tabella InnoDB."
+
+#: server_status.php:101
+msgid "The number of rows inserted in InnoDB tables."
+msgstr "Il numero di righe inserite da una tabella InnoDB."
+
+#: server_status.php:102
+msgid "The number of rows read from InnoDB tables."
+msgstr "Il numero di righe lette da una tabella InnoDB."
+
+#: server_status.php:103
+msgid "The number of rows updated in InnoDB tables."
+msgstr "Il numero di righe aggiornate da una tabella InnoDB."
+
+#: server_status.php:104
+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 ""
+"Il numero di blocchi chaive aggiunti nella cache chiave che sono stati "
+"cambiati, ma che non sono stai aggiornati su disco. E' conosciuto con il "
+"nome di Not_flushed_key_blocks."
+
+#: server_status.php:105
+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 ""
+"Il numero di blocchi non usati nella cache chiave. Puoi usare questo valore "
+"per determinare quanta cache chiave è in uso."
+
+#: server_status.php:106
+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 ""
+"Il numero di blocchi usati nella cache chiave. The number of used blocks in "
+"the key cache. Questo valore è un'importante segnale che indica il numero "
+"massimo di blocchi che sono stati in uso contemporaneamente."
+
+#: server_status.php:107
+msgid "The number of requests to read a key block from the cache."
+msgstr "Il numero di richieste per le ggere un blocco chiave dalla cache."
+
+#: server_status.php:108
+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 ""
+"Il numero di letture fisiche dal disco di un blocco chiave. Se Key_reads è "
+"grande allora il valore key_buffer_size è probabilmente troppo piccolo. IIl "
+"rapporto di cache miss rate può essere calcolato come Key_reads/"
+"Key_read_requests."
+
+#: server_status.php:109
+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."
+
+#: server_status.php:110
+msgid "The number of physical writes of a key block to disk."
+msgstr "Il numero di scritture fisiche di un blocco chiave sul disco."
+
+#: server_status.php:111
+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 ""
+"Il costo totale dell'ultima query compilata così come computato "
+"dall'ottimizzatore delle query. Utile per comparare il costo di differenti "
+"query per la stessa operazione di query. Il valore di default è 0, che "
+"significa che nessuna query è stata ancora compilata."
+
+#: server_status.php:112
+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."
+
+#: server_status.php:113
+msgid ""
+"The number of tables that have been opened. If opened tables is big, your "
+"table cache value is probably too small."
+msgstr ""
+"Il numero di tabelle che sono state aperte. Se il valore opened_tables è "
+"grande, probabilmente il valore di table cache è troppo piccolo."
+
+#: server_status.php:114
+msgid "The number of files that are open."
+msgstr "Il numero di file che sono aperti."
+
+#: server_status.php:115
+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)."
+
+#: server_status.php:116
+msgid "The number of tables that are open."
+msgstr "Il numero di tabelle che sono aperte."
+
+#: server_status.php:117
+msgid "The number of free memory blocks in query cache."
+msgstr "Il numero di blocchi di memoria liberi nella cache delle query."
+
+#: server_status.php:118
+msgid "The amount of free memory for query cache."
+msgstr "L'ammontare di memoria libera nella cache delle query."
+
+#: server_status.php:119
+msgid "The number of cache hits."
+msgstr "Il numero di cache hits."
+
+#: server_status.php:120
+msgid "The number of queries added to the cache."
+msgstr "Il numero di query aggiunte alla cache."
+
+#: server_status.php:121
+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 "
+"cache size. The query cache uses a least recently used (LRU) strategy to "
+"decide which queries to remove from the cache."
+msgstr ""
+"Il numero di query che sono state rimosse dalla cache per liberare memoria "
+"per la cache di nuove query. Questa informazione può aiutarti per "
+"parametrare la dimensione della cache delle query. La cache delle query usa "
+"una strategia di \"meno usate recentemente\" (LRU - least recently used) per "
+"decidere quali query rimuovere dalla cache."
+
+#: server_status.php:122
+msgid ""
+"The number of non-cached queries (not cachable, or not cached due to the "
+"query_cache_type setting)."
+msgstr ""
+"Il numero di query non in cache (impossibilità di inserirle nella cache "
+"oppure non inserite per i settaggi del parametro query_cache_type)."
+
+#: server_status.php:123
+msgid "The number of queries registered in the cache."
+msgstr "Il numero di query registrate nella cache."
+
+#: server_status.php:124
+msgid "The total number of blocks in the query cache."
+msgstr "Il numero totale di blocchi nella cache delle query."
+
+#: server_status.php:125
+msgctxt "$strShowStatusReset"
+msgid "Reset"
+msgstr "Reset"
+
+#: server_status.php:126
+msgid "The status of failsafe replication (not yet implemented)."
+msgstr "Lo sato delle repliche failsafe (non ancora implementato)."
+
+#: server_status.php:127
+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 ""
+"Il numero di joins che non usano gli indici. (Se questo valore non è 0, "
+"dovresti controllare attentamente gli indici delle tue tabelle.)"
+
+#: server_status.php:128
+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."
+
+#: server_status.php:129
+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 ""
+"Il numero di joins senza chiavi che controllano per l'uso di una chiave dopo "
+"ogni riga. (Se questo valore non è 0, dovresti controllare attentamente gli "
+"indici delle tue tabelle.)"
+
+#: server_status.php:130
+msgid ""
+"The number of joins that used ranges on the first table. (It's normally not "
+"critical even if this is big.)"
+msgstr ""
+"Il numero di joins che usano un range sulla prima tabella. (Non è, "
+"solitamente, un valore critico anche se è grande.)"
+
+#: server_status.php:131
+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."
+
+#: server_status.php:132
+msgid "The number of temporary tables currently open by the slave SQL thread."
+msgstr "Il numero di tabelle temporaneamente aperte da processi SQL slave."
+
+#: server_status.php:133
+msgid ""
+"Total (since startup) number of times the replication slave SQL thread has "
+"retried transactions."
+msgstr ""
+"Numero totale di volte (dalla partenza) in cui la replica slave SQL ha "
+"ritentato una transazione."
+
+#: server_status.php:134
+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."
+
+#: server_status.php:135
+msgid ""
+"The number of threads that have taken more than slow_launch_time seconds to "
+"create."
+msgstr ""
+"Numero di processi che hanno impiegato più di \"slow_launch_time\" secondi "
+"per partire."
+
+#: server_status.php:136
+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\" seconds."
+
+#: server_status.php:137
+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 ""
+"Il numero di fusioni passate all'algoritmo di ordianemento che sono state "
+"fatte. Se questo valore è grande, dovresti incrementare la variabile di "
+"sistema sort_buffer_size."
+
+#: server_status.php:138
+msgid "The number of sorts that were done with ranges."
+msgstr "Il numero di ordinamenti che sono stati eseguiti in un intervallo."
+
+#: server_status.php:139
+msgid "The number of sorted rows."
+msgstr "Il numero di righe ordinate."
+
+#: server_status.php:140
+msgid "The number of sorts that were done by scanning the table."
+msgstr "Il numero di ordinamenti che sono stati fatti leggendo la tabella."
+
+#: server_status.php:141
+msgid "The number of times that a table lock was acquired immediately."
+msgstr "Il numero di volte che un table lock è stato eseguito immediatamente."
+
+#: server_status.php:142
+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 "
+"should first optimize your queries, and then either split your table or "
+"tables or use replication."
+msgstr ""
+"Il numero di volte che un table lock è stato eseguito immediatamente ed era "
+"necessaria un'attesa. Se è alto, potresti avere dei problemi con le "
+"performance, dovresti prima ottimizzare le query, oppure sia utilizzare le "
+"repliche, sia dividere le tabelle."
+
+#: server_status.php:143
+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 ""
+"Il numero dei processi nella cache dei processi. L'hit rate della cache può "
+"essere calcolato come processi_creati/connessioni. Se questo valore è rosso "
+"devi aumentare la tua thread_cache_size."
+
+#: server_status.php:144
+msgid "The number of currently open connections."
+msgstr "Il numero di connessioni correntemente aperte."
+
+#: server_status.php:145
+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 "
+"doesn't give a notable performance improvement if you have a good thread "
+"implementation.)"
+msgstr ""
+"Il numero di processi creati per gestire le connessioni. Se Threads_created "
+"è grosso, devi probabilmente aumentare il valore thread_cache_size. "
+"(Normalmente questo non fornisce un significatico incremento delle "
+"performace se hai una buona implementazione dei processi.)"
+
+#: server_status.php:146
+msgid "The number of threads that are not sleeping."
+msgstr "Il numero di processi non in attesa."
+
+#: server_status.php:157
msgid "Runtime Information"
msgstr "Informazioni di Runtime"
-#: server_status.php:250
+#: server_status.php:361
msgid "Handler"
msgstr "Handler"
-#: server_status.php:251
+#: server_status.php:362
msgid "Query cache"
msgstr "Cache delle query"
-#: server_status.php:252
+#: server_status.php:363
msgid "Threads"
msgstr "Processi"
-#: server_status.php:254
+#: server_status.php:365
msgid "Temporary data"
msgstr "Dati temporanei"
-#: server_status.php:255
+#: server_status.php:366
msgid "Delayed inserts"
msgstr "Inserimento ritardato"
-#: server_status.php:256
+#: server_status.php:367
msgid "Key cache"
msgstr "Key cache"
-#: server_status.php:257
+#: server_status.php:368
msgid "Joins"
msgstr "Joins"
-#: server_status.php:259
+#: server_status.php:370
msgid "Sorting"
msgstr "Ordinando"
-#: server_status.php:261
+#: server_status.php:372
msgid "Transaction coordinator"
msgstr "Coordinatore delle transazioni"
-#: server_status.php:271
+#: server_status.php:382
msgid "Flush (close) all tables"
msgstr "Rinfresca (chiudi) tutte le tabelle"
-#: server_status.php:273
+#: server_status.php:384
msgid "Show open tables"
msgstr "Mostra le tabelle aperte"
-#: server_status.php:278
+#: server_status.php:389
msgid "Show slave hosts"
msgstr "Mostra gli hosts slave"
-#: server_status.php:284
+#: server_status.php:395
msgid "Show slave status"
msgstr "Mostra lo stato degli slave"
-#: server_status.php:289
+#: server_status.php:400
msgid "Flush query cache"
msgstr "Rinfresca la cache delle query"
-#: server_status.php:294
+#: server_status.php:405
msgid "Show processes"
msgstr "Visualizza processi in esecuzione"
-#: server_status.php:344
+#: server_status.php:455
#, fuzzy
#| msgid "Reset"
msgctxt "for Show status"
msgid "Reset"
msgstr "Riavvia"
-#: server_status.php:350
+#: server_status.php:461
#, php-format
msgid "This MySQL server has been running for %s. It started up on %s."
msgstr "Questo server MySQL sta girando da %s. E' stato avviato il %s."
-#: server_status.php:360
+#: server_status.php:471
msgid ""
"This MySQL server works as master and slave in replication"
"b> process."
msgstr ""
-#: server_status.php:362
+#: server_status.php:473
msgid "This MySQL server works as master in replication process."
msgstr ""
-#: server_status.php:364
+#: server_status.php:475
msgid "This MySQL server works as slave in replication process."
msgstr ""
-#: server_status.php:366
+#: server_status.php:477
msgid ""
"For further information about replication status on the server, please visit "
"the replication section."
msgstr ""
-#: server_status.php:383
+#: server_status.php:494
msgid ""
"Server traffic: These tables show the network traffic statistics of "
"this MySQL server since its startup."
@@ -5958,11 +5969,11 @@ msgstr ""
"Traffico del server: Queste tabelle mostrano le statistiche del "
"traffico di rete di questo server MySQL dal momento del suo avvio."
-#: server_status.php:388
+#: server_status.php:499
msgid "Traffic"
msgstr "Traffico"
-#: server_status.php:388
+#: server_status.php:499
msgid ""
"On a busy server, the byte counters may overrun, so those statistics as "
"reported by the MySQL server may be incorrect."
@@ -5971,36 +5982,36 @@ msgstr ""
"e per questa ragione le statistiche riportate dal server MySQL potrebbero "
"non essere corrette."
-#: server_status.php:389 server_status.php:434 server_status.php:497
-#: server_status.php:555
+#: server_status.php:500 server_status.php:545 server_status.php:608
+#: server_status.php:666
msgid "per hour"
msgstr "all'ora"
-#: server_status.php:394
+#: server_status.php:505
msgid "Received"
msgstr "Ricevuti"
-#: server_status.php:404
+#: server_status.php:515
msgid "Sent"
msgstr "Spediti"
-#: server_status.php:433
+#: server_status.php:544
msgid "Connections"
msgstr "Connessioni"
-#: server_status.php:440
+#: server_status.php:551
msgid "max. concurrent connections"
msgstr "max. connessioni contemporanee"
-#: server_status.php:447
+#: server_status.php:558
msgid "Failed attempts"
msgstr "Tentativi falliti"
-#: server_status.php:461
+#: server_status.php:572
msgid "Aborted"
msgstr "Fallito"
-#: server_status.php:490
+#: server_status.php:601
#, php-format
msgid ""
"Query statistics: Since its startup, %s queries have been sent to the "
@@ -6009,19 +6020,19 @@ msgstr ""
"Query delle Statistiche: Dall'avvio, %s query sono state effettuate "
"sul server."
-#: server_status.php:498
+#: server_status.php:609
msgid "per minute"
msgstr "al minuto"
-#: server_status.php:499
+#: server_status.php:610
msgid "per second"
msgstr "al secondo"
-#: server_status.php:554
+#: server_status.php:665
msgid "Query type"
msgstr "Tipo di Query"
-#: server_status.php:721
+#: server_status.php:832
#, fuzzy
msgid "Replication status"
msgstr "Replicazione"
diff --git a/po/ja.po b/po/ja.po
index c0ab430f9..4e1a25bce 100755
--- a/po/ja.po
+++ b/po/ja.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-06-04 16:07-0400\n"
+"POT-Creation-Date: 2010-06-08 12:32-0400\n"
"PO-Revision-Date: 2010-03-12 11:22+0200\n"
"Last-Translator: Michal \n"
"Language-Team: japanese \n"
@@ -15,11 +15,11 @@ msgstr ""
"X-Generator: Pootle 2.0.1\n"
#: browse_foreigners.php:38 browse_foreigners.php:59
-#: libraries/display_tbl.lib.php:417 server_privileges.php:1475
+#: libraries/display_tbl.lib.php:417 server_privileges.php:1514
msgid "Show all"
msgstr "すべて表示"
-#: browse_foreigners.php:82 libraries/common.lib.php:2304
+#: browse_foreigners.php:82 libraries/common.lib.php:2313
#: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:394
#: libraries/export/pdf.php:147 pdf_schema.php:283 pdf_schema.php:1123
#: pdf_schema.php:1139
@@ -38,8 +38,8 @@ msgstr ""
#: browse_foreigners.php:150 db_structure.php:79 db_structure.php:80
#: db_structure.php:91 db_structure.php:93 db_structure.php:104
-#: db_structure.php:106 libraries/common.lib.php:2822
-#: libraries/common.lib.php:2829 libraries/db_links.inc.php:75
+#: db_structure.php:106 libraries/common.lib.php:2831
+#: libraries/common.lib.php:2838 libraries/db_links.inc.php:75
#: libraries/tbl_links.inc.php:63
msgid "Search"
msgstr "検索"
@@ -49,7 +49,7 @@ msgstr "検索"
#: db_structure.php:567 js/messages.php:48 libraries/Config.class.php:1046
#: libraries/Theme_Manager.class.php:311
#: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719
-#: libraries/common.lib.php:1333 libraries/common.lib.php:2279
+#: libraries/common.lib.php:1335 libraries/common.lib.php:2288
#: libraries/display_change_password.lib.php:82
#: libraries/display_create_table.lib.php:63
#: libraries/display_export.lib.php:275 libraries/display_import.lib.php:276
@@ -60,9 +60,9 @@ msgstr "検索"
#: libraries/sql_query_form.lib.php:552 libraries/tbl_properties.inc.php:782
#: main.php:128 navigation.php:237 pdf_pages.php:292 pdf_pages.php:328
#: pdf_pages.php:530 pmd_pdf.php:116 server_binlog.php:142
-#: server_privileges.php:625 server_privileges.php:1585
-#: server_privileges.php:1932 server_privileges.php:1979
-#: server_privileges.php:2018 server_replication.php:235
+#: server_privileges.php:664 server_privileges.php:1624
+#: server_privileges.php:1971 server_privileges.php:2018
+#: server_privileges.php:2057 server_replication.php:235
#: server_replication.php:318 server_replication.php:341
#: server_synchronize.php:1209 tbl_change.php:330 tbl_change.php:1174
#: tbl_change.php:1211 tbl_indexes.php:254 tbl_operations.php:265
@@ -80,7 +80,7 @@ msgstr "キー名"
#: browse_foreigners.php:169 browse_foreigners.php:171
#: server_collations.php:55 server_collations.php:67 server_engines.php:59
-#: server_status.php:628
+#: server_status.php:739
msgid "Description"
msgstr "説明"
@@ -121,7 +121,7 @@ msgstr "カラム名"
#: libraries/db_structure.lib.php:60 libraries/export/htmlword.php:245
#: libraries/export/latex.php:360 libraries/export/odt.php:297
#: libraries/export/texytext.php:234 libraries/tbl_properties.inc.php:100
-#: pdf_schema.php:1263 pdf_schema.php:1284 server_privileges.php:2031
+#: pdf_schema.php:1263 pdf_schema.php:1284 server_privileges.php:2070
#: tbl_change.php:287 tbl_change.php:314 tbl_printview.php:143
#: tbl_printview.php:313 tbl_select.php:136 tbl_structure.php:178
#: tbl_structure.php:659 tbl_tracking.php:274 tbl_tracking.php:321
@@ -165,9 +165,9 @@ msgstr "コメント"
#: libraries/Index.class.php:386 libraries/export/htmlword.php:322
#: libraries/export/latex.php:430 libraries/export/odt.php:368
#: libraries/export/texytext.php:311 libraries/mult_submits.inc.php:263
-#: pdf_schema.php:1344 server_privileges.php:1529 server_privileges.php:1540
-#: server_privileges.php:1850 server_privileges.php:1855
-#: server_privileges.php:2148 sql.php:132 sql.php:194 tbl_printview.php:229
+#: pdf_schema.php:1344 server_privileges.php:1568 server_privileges.php:1579
+#: server_privileges.php:1889 server_privileges.php:1894
+#: server_privileges.php:2187 sql.php:132 sql.php:194 tbl_printview.php:229
#: tbl_structure.php:350 tbl_tracking.php:337 tbl_tracking.php:342
msgid "No"
msgstr "いいえ"
@@ -181,9 +181,9 @@ msgstr "いいえ"
#: libraries/mult_submits.inc.php:101 libraries/mult_submits.inc.php:106
#: libraries/mult_submits.inc.php:111 libraries/mult_submits.inc.php:262
#: libraries/mult_submits.inc.php:273 pdf_schema.php:1344
-#: server_databases.php:64 server_privileges.php:1526
-#: server_privileges.php:1540 server_privileges.php:1850
-#: server_privileges.php:1853 server_privileges.php:2148 sql.php:193
+#: server_databases.php:64 server_privileges.php:1565
+#: server_privileges.php:1579 server_privileges.php:1889
+#: server_privileges.php:1892 server_privileges.php:2187 sql.php:193
#: tbl_printview.php:229 tbl_structure.php:40 tbl_structure.php:350
#: tbl_tracking.php:335 tbl_tracking.php:340
msgid "Yes"
@@ -280,7 +280,7 @@ msgstr "コピーしたデータベースに切り替える"
msgid "BLOB Repository"
msgstr ""
-#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1350
+#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1352
#: libraries/server_links.inc.php:49 server_processlist.php:59
#: tbl_tracking.php:596 test/theme.php:101
msgid "Status"
@@ -343,8 +343,8 @@ msgstr "PDF ページを編集する"
#: db_printview.php:104 db_tracking.php:72 db_tracking.php:157
#: libraries/db_structure.lib.php:46 libraries/export/xml.php:328
-#: libraries/header.inc.php:126 pdf_pages.php:424 server_privileges.php:1626
-#: server_privileges.php:1682 server_privileges.php:1946
+#: libraries/header.inc.php:126 pdf_pages.php:424 server_privileges.php:1665
+#: server_privileges.php:1721 server_privileges.php:1985
#: server_synchronize.php:423 server_synchronize.php:866 tbl_tracking.php:592
#: test/theme.php:75
msgid "Table"
@@ -444,7 +444,7 @@ msgstr "削除"
#: db_qbe.php:370 db_qbe.php:451 db_qbe.php:522 db_qbe.php:553
#: libraries/display_import.lib.php:166 libraries/tbl_properties.inc.php:779
-#: server_privileges.php:258 tbl_change.php:1031 tbl_indexes.php:250
+#: server_privileges.php:297 tbl_change.php:1031 tbl_indexes.php:250
#: tbl_select.php:288
msgid "Or"
msgstr "または"
@@ -478,7 +478,7 @@ msgstr "利用するテーブル"
msgid "SQL query on database %s:"
msgstr "データベース %s のSQL:"
-#: db_qbe.php:934 libraries/common.lib.php:1223
+#: db_qbe.php:934 libraries/common.lib.php:1225
msgid "Submit Query"
msgstr "クエリを実行する"
@@ -517,7 +517,7 @@ msgstr "%s 件(テーブル %s)"
#: db_search.php:267 db_structure.php:77 db_structure.php:78
#: db_structure.php:90 db_structure.php:92 db_structure.php:103
-#: db_structure.php:105 libraries/common.lib.php:2824
+#: db_structure.php:105 libraries/common.lib.php:2833
#: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50
#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:467
msgid "Browse"
@@ -564,26 +564,26 @@ msgstr "検索するフィールド:"
#: db_structure.php:81 db_structure.php:82 db_structure.php:94
#: db_structure.php:95 db_structure.php:107 db_structure.php:108
-#: libraries/common.lib.php:2823 libraries/sql_query_form.lib.php:334
+#: libraries/common.lib.php:2832 libraries/sql_query_form.lib.php:334
#: libraries/sql_query_form.lib.php:337 libraries/tbl_links.inc.php:76
msgid "Insert"
msgstr "挿入"
#: db_structure.php:83 db_structure.php:96 db_structure.php:109
-#: libraries/common.lib.php:2820 libraries/common.lib.php:2827
+#: libraries/common.lib.php:2829 libraries/common.lib.php:2836
#: libraries/db_links.inc.php:63 libraries/export/htmlword.php:23
#: libraries/export/latex.php:33 libraries/export/latex.php:337
#: libraries/export/odt.php:32 libraries/export/sql.php:60
#: libraries/export/texytext.php:23 libraries/import.lib.php:1104
#: libraries/tbl_links.inc.php:56 pmd_general.php:134
-#: server_privileges.php:554 server_replication.php:315 tbl_tracking.php:269
+#: server_privileges.php:593 server_replication.php:315 tbl_tracking.php:269
msgid "Structure"
msgstr "構造"
#: db_structure.php:84 db_structure.php:85 db_structure.php:97
#: db_structure.php:98 db_structure.php:110 db_structure.php:111
#: db_structure.php:545 db_structure.php:546 db_tracking.php:91
-#: libraries/Index.class.php:483 libraries/common.lib.php:1654
+#: libraries/Index.class.php:483 libraries/common.lib.php:1656
#: libraries/db_links.inc.php:100 libraries/mult_submits.inc.php:36
#: libraries/mult_submits.inc.php:73 libraries/tbl_links.inc.php:127
#: server_databases.php:352 tbl_structure.php:27 tbl_structure.php:151
@@ -593,7 +593,7 @@ msgstr "削除"
#: db_structure.php:86 db_structure.php:87 db_structure.php:99
#: db_structure.php:100 db_structure.php:112 db_structure.php:113
-#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1653
+#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1655
#: libraries/mult_submits.inc.php:39 libraries/tbl_links.inc.php:105
msgid "Empty"
msgstr "空にする"
@@ -635,7 +635,7 @@ msgstr "ビュー"
#: db_structure.php:485 libraries/db_structure.lib.php:49
#: libraries/server_links.inc.php:70 server_replication.php:33
-#: server_replication.php:164 server_status.php:258
+#: server_replication.php:164 server_status.php:369
msgid "Replication"
msgstr "レプリケーション"
@@ -651,20 +651,20 @@ msgstr "%s はこの MySQL サーバのデフォルトストレージエンジ
#: db_structure.php:524 db_structure.php:541 db_structure.php:542
#: libraries/display_tbl.lib.php:2081 libraries/display_tbl.lib.php:2086
#: libraries/mult_submits.inc.php:16 server_databases.php:346
-#: server_databases.php:351 server_privileges.php:1557 tbl_structure.php:455
+#: server_databases.php:351 server_privileges.php:1596 tbl_structure.php:455
#: tbl_structure.php:464
msgid "With selected:"
msgstr "チェックしたものを:"
#: db_structure.php:527 libraries/display_tbl.lib.php:2076
-#: server_databases.php:348 server_privileges.php:530
-#: server_privileges.php:1560 tbl_structure.php:458
+#: server_databases.php:348 server_privileges.php:569
+#: server_privileges.php:1599 tbl_structure.php:458
msgid "Check All"
msgstr "すべてチェックする"
#: db_structure.php:531 libraries/display_tbl.lib.php:2077
#: libraries/replication_gui.lib.php:33 server_databases.php:350
-#: server_privileges.php:533 server_privileges.php:1564 tbl_structure.php:462
+#: server_privileges.php:572 server_privileges.php:1603 tbl_structure.php:462
msgid "Uncheck All"
msgstr "すべてのチェックを外す"
@@ -702,7 +702,7 @@ msgstr "テーブルを分析する"
#: libraries/display_export.lib.php:83 libraries/display_tbl.lib.php:2094
#: libraries/display_tbl.lib.php:2225 libraries/mult_submits.inc.php:62
#: libraries/server_links.inc.php:84 libraries/tbl_links.inc.php:82
-#: pmd_pdf.php:84 pmd_pdf.php:109 server_privileges.php:1341
+#: pmd_pdf.php:84 pmd_pdf.php:109 server_privileges.php:1380
#: setup/frames/menu.inc.php:22 tbl_row_action.php:59
msgid "Export"
msgstr "エクスポート"
@@ -720,8 +720,8 @@ msgstr ""
#: libraries/export/sql.php:342 libraries/export/texytext.php:84
#: libraries/export/xml.php:255 libraries/header.inc.php:106
#: libraries/header_printview.inc.php:58 server_databases.php:169
-#: server_privileges.php:1621 server_privileges.php:1682
-#: server_privileges.php:1940 server_processlist.php:56
+#: server_privileges.php:1660 server_privileges.php:1721
+#: server_privileges.php:1979 server_processlist.php:56
#: server_synchronize.php:1179 server_synchronize.php:1183
#: tbl_tracking.php:591 test/theme.php:65
msgid "Database"
@@ -741,8 +741,8 @@ msgstr ""
#: db_tracking.php:77 libraries/Index.class.php:440
#: libraries/db_structure.lib.php:53 server_databases.php:203
-#: server_privileges.php:1503 server_privileges.php:1686
-#: server_privileges.php:2034 tbl_structure.php:187
+#: server_privileges.php:1542 server_privileges.php:1725
+#: server_privileges.php:2073 tbl_structure.php:187
msgid "Action"
msgstr "操作"
@@ -944,11 +944,11 @@ msgstr "ホスト名が空です!"
msgid "The user name is empty!"
msgstr "ユーザ名が空です!"
-#: js/messages.php:44 server_privileges.php:1197 user_password.php:70
+#: js/messages.php:44 server_privileges.php:1236 user_password.php:70
msgid "The password is empty!"
msgstr "パスワードが空です!"
-#: js/messages.php:45 server_privileges.php:1195 user_password.php:73
+#: js/messages.php:45 server_privileges.php:1234 user_password.php:73
msgid "The passwords aren't the same!"
msgstr "パスワードが異なっています!"
@@ -1027,8 +1027,8 @@ msgid "Prev"
msgstr "前"
#. l10n: Display text for next month link in calendar
-#: js/messages.php:77 libraries/common.lib.php:2344
-#: libraries/common.lib.php:2347 libraries/display_tbl.lib.php:338
+#: js/messages.php:77 libraries/common.lib.php:2353
+#: libraries/common.lib.php:2356 libraries/display_tbl.lib.php:338
#: server_binlog.php:205 server_binlog.php:207 tbl_printview.php:424
#: tbl_structure.php:801
msgid "Next"
@@ -1099,27 +1099,27 @@ msgid "December"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:97 libraries/common.lib.php:1555
+#: js/messages.php:97 libraries/common.lib.php:1557
msgid "Jan"
msgstr "1 月','2 月','3 月','4 月','5 月','6 月"
#. l10n: Short month name
-#: js/messages.php:99 libraries/common.lib.php:1557
+#: js/messages.php:99 libraries/common.lib.php:1559
msgid "Feb"
msgstr "7 月"
#. l10n: Short month name
-#: js/messages.php:101 libraries/common.lib.php:1559
+#: js/messages.php:101 libraries/common.lib.php:1561
msgid "Mar"
msgstr "8 月"
#. l10n: Short month name
-#: js/messages.php:103 libraries/common.lib.php:1561
+#: js/messages.php:103 libraries/common.lib.php:1563
msgid "Apr"
msgstr "9 月"
#. l10n: Short month name
-#: js/messages.php:105 libraries/common.lib.php:1563
+#: js/messages.php:105 libraries/common.lib.php:1565
#, fuzzy
#| msgid "May"
msgctxt "Short month name"
@@ -1127,38 +1127,38 @@ msgid "May"
msgstr "10 月"
#. l10n: Short month name
-#: js/messages.php:107 libraries/common.lib.php:1565
+#: js/messages.php:107 libraries/common.lib.php:1567
msgid "Jun"
msgstr "11 月"
#. l10n: Short month name
-#: js/messages.php:109 libraries/common.lib.php:1567
+#: js/messages.php:109 libraries/common.lib.php:1569
#, fuzzy
msgid "Jul"
msgstr "日"
#. l10n: Short month name
-#: js/messages.php:111 libraries/common.lib.php:1569
+#: js/messages.php:111 libraries/common.lib.php:1571
msgid "Aug"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:113 libraries/common.lib.php:1571
+#: js/messages.php:113 libraries/common.lib.php:1573
msgid "Sep"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:115 libraries/common.lib.php:1573
+#: js/messages.php:115 libraries/common.lib.php:1575
msgid "Oct"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:117 libraries/common.lib.php:1575
+#: js/messages.php:117 libraries/common.lib.php:1577
msgid "Nov"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:119 libraries/common.lib.php:1577
+#: js/messages.php:119 libraries/common.lib.php:1579
msgid "Dec"
msgstr ""
@@ -1199,37 +1199,37 @@ msgid "Saturday"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:132 libraries/common.lib.php:1580
+#: js/messages.php:132 libraries/common.lib.php:1582
msgid "Sun"
msgstr "日"
#. l10n: Short week day name
-#: js/messages.php:134 libraries/common.lib.php:1582
+#: js/messages.php:134 libraries/common.lib.php:1584
msgid "Mon"
msgstr "月"
#. l10n: Short week day name
-#: js/messages.php:136 libraries/common.lib.php:1584
+#: js/messages.php:136 libraries/common.lib.php:1586
msgid "Tue"
msgstr "火"
#. l10n: Short week day name
-#: js/messages.php:138 libraries/common.lib.php:1586
+#: js/messages.php:138 libraries/common.lib.php:1588
msgid "Wed"
msgstr "水"
#. l10n: Short week day name
-#: js/messages.php:140 libraries/common.lib.php:1588
+#: js/messages.php:140 libraries/common.lib.php:1590
msgid "Thu"
msgstr "木"
#. l10n: Short week day name
-#: js/messages.php:142 libraries/common.lib.php:1590
+#: js/messages.php:142 libraries/common.lib.php:1592
msgid "Fri"
msgstr "金"
#. l10n: Short week day name
-#: js/messages.php:144 libraries/common.lib.php:1592
+#: js/messages.php:144 libraries/common.lib.php:1594
msgid "Sat"
msgstr "土"
@@ -1379,7 +1379,7 @@ msgid "Comment"
msgstr "コメント"
#: libraries/Index.class.php:466 libraries/common.lib.php:616
-#: libraries/common.lib.php:1199 libraries/display_tbl.lib.php:1117
+#: libraries/common.lib.php:1201 libraries/display_tbl.lib.php:1117
#: libraries/import.lib.php:1087 libraries/import.lib.php:1111
#: pdf_pages.php:285 setup/frames/index.inc.php:124
#: setup/lib/messages.inc.php:352 tbl_row_action.php:69
@@ -1405,7 +1405,7 @@ msgstr ""
"れません。"
#: libraries/List_Database.class.php:431 libraries/server_links.inc.php:41
-#: server_databases.php:88 server_privileges.php:1621
+#: server_databases.php:88 server_privileges.php:1660
#: setup/lib/messages.inc.php:110 test/theme.php:93
msgid "Databases"
msgstr "データベース"
@@ -1734,7 +1734,7 @@ msgid "Documentation"
msgstr "ドキュメント"
#: libraries/common.lib.php:595 libraries/header_printview.inc.php:61
-#: server_processlist.php:60 server_status.php:247
+#: server_processlist.php:60 server_status.php:358
msgid "SQL query"
msgstr "実行した SQL"
@@ -1750,130 +1750,130 @@ msgstr "EXPLAIN で確認"
msgid "Skip Explain SQL"
msgstr "SQL の EXPLAIN 解析をスキップ"
-#: libraries/common.lib.php:1212
+#: libraries/common.lib.php:1214
msgid "Without PHP Code"
msgstr "PHP コードを省略"
-#: libraries/common.lib.php:1215 setup/lib/messages.inc.php:355
+#: libraries/common.lib.php:1217 setup/lib/messages.inc.php:355
msgid "Create PHP Code"
msgstr "PHP コードの作成"
-#: libraries/common.lib.php:1233 server_status.php:341
+#: libraries/common.lib.php:1235 server_status.php:452
#: setup/lib/messages.inc.php:354
msgid "Refresh"
msgstr "再描画"
-#: libraries/common.lib.php:1242
+#: libraries/common.lib.php:1244
msgid "Skip Validate SQL"
msgstr "SQL の検証をスキップ"
-#: libraries/common.lib.php:1245 setup/lib/messages.inc.php:356 sql.php:518
+#: libraries/common.lib.php:1247 setup/lib/messages.inc.php:356 sql.php:518
msgid "Validate SQL"
msgstr "SQL の検証"
-#: libraries/common.lib.php:1276
+#: libraries/common.lib.php:1278
msgid "Inline edit of this query"
msgstr ""
-#: libraries/common.lib.php:1278
+#: libraries/common.lib.php:1280
#, fuzzy
#| msgid "Engines"
msgid "Inline"
msgstr "エンジン"
-#: libraries/common.lib.php:1332 libraries/common.lib.php:1347
+#: libraries/common.lib.php:1334 libraries/common.lib.php:1349
msgid "Profiling"
msgstr "プロファイリング"
-#: libraries/common.lib.php:1351 libraries/tbl_triggers.lib.php:28
+#: libraries/common.lib.php:1353 libraries/tbl_triggers.lib.php:28
#: server_processlist.php:58
msgid "Time"
msgstr "時間"
#. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "B"
msgstr "バイト"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "KiB"
msgstr "KiB"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "MiB"
msgstr "MiB"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "GiB"
msgstr "GiB"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "TiB"
msgstr "TiB"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "PiB"
msgstr "PiB"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "EiB"
msgstr "EiB"
#. l10n: Thousands separator
-#: libraries/common.lib.php:1417
+#: libraries/common.lib.php:1419
msgid ","
msgstr ","
#. l10n: Decimal separator
-#: libraries/common.lib.php:1419
+#: libraries/common.lib.php:1421
msgid "."
msgstr "."
#. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string
-#: libraries/common.lib.php:1596
+#: libraries/common.lib.php:1598
#: libraries/transformations/text_plain__dateformat.inc.php:34
msgid "%B %d, %Y at %I:%M %p"
msgstr "%Y 年 %B %d 日 %H:%M"
-#: libraries/common.lib.php:1898
+#: libraries/common.lib.php:1907
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "%s 日 %s 時間 %s 分 %s 秒"
-#: libraries/common.lib.php:2313 libraries/common.lib.php:2316
-#: libraries/display_tbl.lib.php:290 server_status.php:608
+#: libraries/common.lib.php:2322 libraries/common.lib.php:2325
+#: libraries/display_tbl.lib.php:290 server_status.php:719
msgid "Begin"
msgstr "先頭"
-#: libraries/common.lib.php:2314 libraries/common.lib.php:2317
+#: libraries/common.lib.php:2323 libraries/common.lib.php:2326
#: libraries/display_tbl.lib.php:291 server_binlog.php:168
#: server_binlog.php:170
msgid "Previous"
msgstr "前"
-#: libraries/common.lib.php:2345 libraries/common.lib.php:2348
+#: libraries/common.lib.php:2354 libraries/common.lib.php:2357
#: libraries/display_tbl.lib.php:353
msgid "End"
msgstr "最後"
-#: libraries/common.lib.php:2421
+#: libraries/common.lib.php:2430
#, php-format
msgid "Jump to database "%s"."
msgstr ""%s" データベースに移動"
-#: libraries/common.lib.php:2441
+#: libraries/common.lib.php:2450
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr "%s の機能には既知のバグがあります。%s をご覧ください"
-#: libraries/common.lib.php:2821 libraries/common.lib.php:2828
+#: libraries/common.lib.php:2830 libraries/common.lib.php:2837
#: libraries/db_links.inc.php:68 libraries/export/sql.php:25
#: libraries/import/sql.php:18 libraries/server_links.inc.php:45
#: libraries/tbl_links.inc.php:60 querywindow.php:99 test/theme.php:97
msgid "SQL"
msgstr "SQL"
-#: libraries/common.lib.php:2830 libraries/db_links.inc.php:104
+#: libraries/common.lib.php:2839 libraries/db_links.inc.php:104
#: libraries/tbl_links.inc.php:95 libraries/tbl_links.inc.php:117
#: view_operations.php:89
msgid "Operations"
@@ -1929,8 +1929,8 @@ msgid "Import"
msgstr "インポート"
#: libraries/db_links.inc.php:111 libraries/server_links.inc.php:66
-#: server_privileges.php:72 server_privileges.php:1683
-#: server_privileges.php:2032 test/theme.php:117
+#: server_privileges.php:111 server_privileges.php:1722
+#: server_privileges.php:2071 test/theme.php:117
msgid "Privileges"
msgstr "特権"
@@ -1977,22 +1977,22 @@ msgid "Change password"
msgstr "パスワードを変更する"
#: libraries/display_change_password.lib.php:35
-#: libraries/replication_gui.lib.php:345 server_privileges.php:768
+#: libraries/replication_gui.lib.php:345 server_privileges.php:807
msgid "No Password"
msgstr "パスワードなし"
#: libraries/display_change_password.lib.php:41
#: libraries/replication_gui.lib.php:59 libraries/replication_gui.lib.php:60
#: libraries/replication_gui.lib.php:335 libraries/replication_gui.lib.php:339
-#: libraries/replication_gui.lib.php:349 server_privileges.php:757
-#: server_privileges.php:761 server_privileges.php:772
-#: server_privileges.php:1499 server_synchronize.php:1175
+#: libraries/replication_gui.lib.php:349 server_privileges.php:796
+#: server_privileges.php:800 server_privileges.php:811
+#: server_privileges.php:1538 server_synchronize.php:1175
msgid "Password"
msgstr "パスワード"
#: libraries/display_change_password.lib.php:46
#: libraries/replication_gui.lib.php:353 libraries/replication_gui.lib.php:356
-#: server_privileges.php:776 server_privileges.php:779
+#: server_privileges.php:815 server_privileges.php:818
msgid "Re-type"
msgstr "もう一度入力してください"
@@ -2007,12 +2007,12 @@ msgid "MySQL 4.0 compatible"
msgstr "MySQL 4.0 互換"
#: libraries/display_change_password.lib.php:72
-#: libraries/replication_gui.lib.php:360 server_privileges.php:783
+#: libraries/replication_gui.lib.php:360 server_privileges.php:822
msgid "Generate Password"
msgstr "パスワードを生成する"
#: libraries/display_change_password.lib.php:75
-#: libraries/replication_gui.lib.php:363 server_privileges.php:786
+#: libraries/replication_gui.lib.php:363 server_privileges.php:825
msgid "Generate"
msgstr "生成する"
@@ -2025,8 +2025,8 @@ msgstr "新規データベースを作成する"
msgid "Create"
msgstr "作成"
-#: libraries/display_create_database.lib.php:40 server_privileges.php:74
-#: server_privileges.php:1388 server_replication.php:35
+#: libraries/display_create_database.lib.php:40 server_privileges.php:113
+#: server_privileges.php:1427 server_replication.php:35
msgid "No Privileges"
msgstr "特権なし"
@@ -2119,7 +2119,7 @@ msgstr "圧縮"
#: libraries/display_export.lib.php:240 libraries/display_import.lib.php:197
#: libraries/display_import.lib.php:210 libraries/display_tbl.lib.php:530
#: libraries/export/sql.php:868 libraries/tbl_properties.inc.php:575
-#: server_privileges.php:1836 server_processlist.php:75
+#: server_privileges.php:1875 server_processlist.php:75
msgid "None"
msgstr "なし"
@@ -2446,7 +2446,7 @@ msgstr ""
msgid "Buffer Pool"
msgstr "バッファプール"
-#: libraries/engines/innodb.lib.php:145 server_status.php:306
+#: libraries/engines/innodb.lib.php:145 server_status.php:417
msgid "InnoDB Status"
msgstr "InnoDB ステータス"
@@ -2455,8 +2455,8 @@ msgid "Buffer Pool Usage"
msgstr "バッファプールの使用量"
#: libraries/engines/innodb.lib.php:194 server_databases.php:137
-#: server_databases.php:305 server_status.php:414 server_status.php:475
-#: server_status.php:496 tbl_printview.php:351 tbl_structure.php:696
+#: server_databases.php:305 server_status.php:525 server_status.php:586
+#: server_status.php:607 tbl_printview.php:351 tbl_structure.php:696
msgid "Total"
msgstr "合計"
@@ -2811,7 +2811,7 @@ msgstr "Microsoft Word 2000"
#: libraries/export/latex.php:201 libraries/export/odt.php:48
#: libraries/export/sql.php:106 libraries/export/sql.php:868
#: libraries/export/texytext.php:27 server_databases.php:127
-#: server_privileges.php:537 server_replication.php:316 tbl_printview.php:317
+#: server_privileges.php:576 server_replication.php:316 tbl_printview.php:317
#: tbl_structure.php:665
msgid "Data"
msgstr "データ"
@@ -2861,9 +2861,9 @@ msgstr "MIME タイプ"
#: libraries/export/xml.php:102 libraries/header_printview.inc.php:57
#: libraries/replication_gui.lib.php:63 libraries/replication_gui.lib.php:174
#: libraries/replication_gui.lib.php:269 libraries/replication_gui.lib.php:272
-#: libraries/replication_gui.lib.php:329 server_privileges.php:692
-#: server_privileges.php:695 server_privileges.php:751
-#: server_privileges.php:1498 server_privileges.php:2030
+#: libraries/replication_gui.lib.php:329 server_privileges.php:731
+#: server_privileges.php:734 server_privileges.php:790
+#: server_privileges.php:1537 server_privileges.php:2069
#: server_processlist.php:55 server_synchronize.php:1159
msgid "Host"
msgstr "ホスト"
@@ -3216,829 +3216,6 @@ msgstr "なし"
msgid "Convert to Kana"
msgstr "全角カナへ変換する"
-#. l10n: Text direction, use either ltr or rtl
-#: libraries/messages.inc.php:19
-msgid "ltr"
-msgstr "ltr"
-
-#: libraries/messages.inc.php:21
-msgid "Content of table __TABLE__"
-msgstr "テーブル __TABLE__ の内容"
-
-#: libraries/messages.inc.php:22
-msgid "(continued)"
-msgstr "(続き)"
-
-#: libraries/messages.inc.php:23
-msgid "Structure of table __TABLE__"
-msgstr "テーブル __TABLE__ の構造"
-
-#: libraries/messages.inc.php:25 server_privileges.php:227
-msgid "Includes all privileges except GRANT."
-msgstr "GRANT 以外のすべての特権を付与する"
-
-#: libraries/messages.inc.php:26 server_privileges.php:153
-#: server_privileges.php:476
-msgid "Allows altering the structure of existing tables."
-msgstr "既存のテーブル構造の変更を許可する"
-
-#: libraries/messages.inc.php:27 server_privileges.php:169
-#: server_privileges.php:482
-msgid "Allows altering and dropping stored routines."
-msgstr "ストアドルーチンの修正と削除を許可する"
-
-#: libraries/messages.inc.php:28 server_privileges.php:145
-#: server_privileges.php:475
-msgid "Allows creating new databases and tables."
-msgstr "新しいデータベースやテーブルの作成を許可する"
-
-#: libraries/messages.inc.php:29 server_privileges.php:168
-#: server_privileges.php:481
-msgid "Allows creating stored routines."
-msgstr "ストアドルーチンの作成を許可する"
-
-#: libraries/messages.inc.php:30 server_privileges.php:475
-msgid "Allows creating new tables."
-msgstr "新しいテーブルの作成を許可する"
-
-#: libraries/messages.inc.php:31 server_privileges.php:156
-#: server_privileges.php:479
-msgid "Allows creating temporary tables."
-msgstr "一時テーブルの作成を許可する"
-
-#: libraries/messages.inc.php:32 server_privileges.php:170
-#: server_privileges.php:515
-msgid "Allows creating, dropping and renaming user accounts."
-msgstr "ユーザアカウントの作成・削除・リネームを許可する"
-
-#: libraries/messages.inc.php:33 server_privileges.php:160
-#: server_privileges.php:164 server_privileges.php:487
-#: server_privileges.php:491
-msgid "Allows creating new views."
-msgstr "新しいビューの作成を許可する"
-
-#: libraries/messages.inc.php:34 server_privileges.php:144
-#: server_privileges.php:467
-msgid "Allows deleting data."
-msgstr "データの削除を許可する"
-
-#: libraries/messages.inc.php:35 server_privileges.php:146
-#: server_privileges.php:478
-msgid "Allows dropping databases and tables."
-msgstr "データベースとテーブルの削除を許可す"
-
-#: libraries/messages.inc.php:36 server_privileges.php:478
-msgid "Allows dropping tables."
-msgstr "テーブルの削除を許可する"
-
-#: libraries/messages.inc.php:37 server_privileges.php:161
-#: server_privileges.php:495
-msgid "Allows to set up events for the event scheduler"
-msgstr "イベントスケジューラにイベントを設定できるようにする"
-
-#: libraries/messages.inc.php:38 server_privileges.php:171
-#: server_privileges.php:483
-msgid "Allows executing stored routines."
-msgstr "ストアドルーチンの実行を許可する"
-
-#: libraries/messages.inc.php:39 server_privileges.php:150
-#: server_privileges.php:470
-msgid "Allows importing data from and exporting data into files."
-msgstr "データのインポート、エクスポートを許可する"
-
-#: libraries/messages.inc.php:40 server_privileges.php:501
-msgid ""
-"Allows adding users and privileges without reloading the privilege tables."
-msgstr "特権テーブルのリロードなしのユーザ・特権の追加を許可する"
-
-#: libraries/messages.inc.php:41 server_privileges.php:152
-#: server_privileges.php:477
-msgid "Allows creating and dropping indexes."
-msgstr "インデックスの作成、削除を許可する"
-
-#: libraries/messages.inc.php:42 server_privileges.php:142
-#: server_privileges.php:403 server_privileges.php:465
-msgid "Allows inserting and replacing data."
-msgstr "データの挿入、置換を許可する"
-
-#: libraries/messages.inc.php:43 server_privileges.php:157
-#: server_privileges.php:510
-msgid "Allows locking tables for the current thread."
-msgstr "現在のスレッドのテーブルロックを許可する"
-
-#: libraries/messages.inc.php:44 server_privileges.php:607
-#: server_privileges.php:609
-msgid "Limits the number of new connections the user may open per hour."
-msgstr "単位時間内に可能な新規接続回数を制限する"
-
-#: libraries/messages.inc.php:45 server_privileges.php:595
-#: server_privileges.php:597
-msgid "Limits the number of queries the user may send to the server per hour."
-msgstr "単位時間内にサーバに送信可能なクエリ数を制限する"
-
-#: libraries/messages.inc.php:46 server_privileges.php:601
-#: server_privileges.php:603
-msgid ""
-"Limits the number of commands that change any table or database the user may "
-"execute per hour."
-msgstr ""
-"単位時間内に実行可能なテーブルないしデータベースの編集コマンド数を制限する"
-
-#: libraries/messages.inc.php:47 server_privileges.php:613
-#: server_privileges.php:615
-msgid "Limits the number of simultaneous connections the user may have."
-msgstr "ユーザの同時接続数を制限する"
-
-#: libraries/messages.inc.php:48 server_privileges.php:149
-#: server_privileges.php:505
-msgid "Allows viewing processes of all users"
-msgstr "全ユーザのプロセスを閲覧できるようにする"
-
-#: libraries/messages.inc.php:49 server_privileges.php:151
-#: server_privileges.php:409 server_privileges.php:511
-msgid "Has no effect in this MySQL version."
-msgstr "このバージョンの MySQL では無効です"
-
-#: libraries/messages.inc.php:50 server_privileges.php:147
-#: server_privileges.php:506
-msgid "Allows reloading server settings and flushing the server's caches."
-msgstr "サーバ設定のリロード、サーバキャッシュのフラッシュを許可する"
-
-#: libraries/messages.inc.php:51 server_privileges.php:159
-#: server_privileges.php:513
-msgid "Allows the user to ask where the slaves / masters are."
-msgstr "スレーブ/マスターの照会を許可する"
-
-#: libraries/messages.inc.php:52 server_privileges.php:158
-#: server_privileges.php:514
-msgid "Needed for the replication slaves."
-msgstr "レプリケーションスレーブでは有効にする必要があります"
-
-#: libraries/messages.inc.php:53 server_privileges.php:141
-#: server_privileges.php:400 server_privileges.php:464
-msgid "Allows reading data."
-msgstr "データの読み込みを許可する"
-
-#: libraries/messages.inc.php:54 server_privileges.php:154
-#: server_privileges.php:508
-msgid "Gives access to the complete list of databases."
-msgstr "データベース総一覧へのアクセスを許可する"
-
-#: libraries/messages.inc.php:55 server_privileges.php:165
-#: server_privileges.php:167 server_privileges.php:480
-msgid "Allows performing SHOW CREATE VIEW queries."
-msgstr "SHOW CREATE VIEW クエリの実行を許可する"
-
-#: libraries/messages.inc.php:56 server_privileges.php:148
-#: server_privileges.php:507
-msgid "Allows shutting down the server."
-msgstr "サーバのシャットダウンを許可する"
-
-#: libraries/messages.inc.php:57 server_privileges.php:155
-#: server_privileges.php:504
-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/messages.inc.php:58 server_privileges.php:162
-#: server_privileges.php:496
-msgid "Allows creating and dropping triggers"
-msgstr "トリガの作成・削除を許可する"
-
-#: libraries/messages.inc.php:59 server_privileges.php:143
-#: server_privileges.php:406 server_privileges.php:466
-msgid "Allows changing data."
-msgstr "データの修正を許可する"
-
-#: libraries/messages.inc.php:60 server_privileges.php:221
-msgid "No privileges."
-msgstr "特権はありません"
-
-#: libraries/messages.inc.php:62
-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 ""
-"一時バイナリログキャッシュを利用したものの binlog_cache_size の値を超過したた"
-"め一時ファイルにステートメントを保存したトランザクション数"
-
-#: libraries/messages.inc.php:63
-msgid "The number of transactions that used the temporary binary log cache."
-msgstr "一時バイナリログキャッシュを使用したトランザクション数"
-
-#: libraries/messages.inc.php:64
-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 "
-"to increase the tmp_table_size value to cause temporary tables to be memory-"
-"based instead of disk-based."
-msgstr ""
-"ステートメント実行中にサーバがディスク上に自動生成した一時テーブル数。"
-"Created_tmp_disk_tables の値が大きい場合は tmp_table_size の値を増やしてディ"
-"スク上ではなくメモリ上に一時テーブルを構築した方がよいかもしれません"
-
-#: libraries/messages.inc.php:65
-msgid "How many temporary files mysqld has created."
-msgstr "mysqld が生成した一時ファイル数"
-
-#: libraries/messages.inc.php:66
-msgid ""
-"The number of in-memory temporary tables created automatically by the server "
-"while executing statements."
-msgstr "ステートメント実行中にサーバが自動生成したメモリ上の一時テーブル数"
-
-#: libraries/messages.inc.php:67
-msgid ""
-"The number of rows written with INSERT DELAYED for which some error occurred "
-"(probably duplicate key)."
-msgstr ""
-"何らかのエラー (たぶんキーの重複) が発生したため INSERT DELAYED された行数"
-
-#: libraries/messages.inc.php:68
-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 ハンドラのスレッド数。INSERT DELAYED を適用するテーブ"
-"ルの数だけ固有のスレッドが用意されます"
-
-#: libraries/messages.inc.php:69
-msgid "The number of INSERT DELAYED rows written."
-msgstr "INSERT DELAYED で書き込まれた行数"
-
-#: libraries/messages.inc.php:70
-msgid "The number of executed FLUSH statements."
-msgstr "FLUSH 文の実行回数"
-
-#: libraries/messages.inc.php:71
-msgid "The number of internal COMMIT statements."
-msgstr "内部で COMMIT 文を実行した回数"
-
-#: libraries/messages.inc.php:72
-msgid "The number of times a row was deleted from a table."
-msgstr "テーブルから行を削除した回数"
-
-#: libraries/messages.inc.php:73
-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 ""
-"MySQL サーバは NDB クラスタストレージエンジンに特定の名前を持つテーブルについ"
-"ての情報を持っているか問い合わせることができます。これを開示と言いますが、"
-"Handler_discover はその開示されたタイムテーブルの数です"
-
-#: libraries/messages.inc.php:74
-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 ""
-"インデックスの最初のエントリを読み込んだ回数。この値が高い場合はサーバが何度"
-"もインデックスのフルスキャンを実行しているものと思われます。例えば SELECT "
-"col1 FROM foo を実行した場合 (col1 はインデックスに含まれているものとします)"
-
-#: libraries/messages.inc.php:75
-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/messages.inc.php:76
-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/messages.inc.php:77
-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 ""
-"キーの順序通りに前の行を読み込んだリクエストの数。この読み込みは主に ORDER "
-"BY ... DESC の最適化に利用されます"
-
-#: libraries/messages.inc.php:78
-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 "
-"probably have a lot of queries that require MySQL to scan whole tables or "
-"you have joins that don't use keys properly."
-msgstr ""
-"決まった位置を基準に行を読み込んだリクエストの数。この値が高いのは結果をソー"
-"トする必要があるクエリを大量に実行している場合です。おそらくテーブル全体をス"
-"キャンしなければならないクエリを大量に行っているか、結合の際のキーの使い方に"
-"不適切なところがあります"
-
-#: libraries/messages.inc.php:79
-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 "
-"tables are not properly indexed or that your queries are not written to take "
-"advantage of the indexes you have."
-msgstr ""
-"データファイルの次の行を読み込んだリクエストの数。この値が高いのはテーブルス"
-"キャンを大量に実行しているためです。一般にこれはテーブルのインデックスが不適"
-"切か、クエリがインデックスを利用するように書かれていないことを意味します"
-
-#: libraries/messages.inc.php:80
-msgid "The number of internal ROLLBACK statements."
-msgstr "内部で ROLLBACK 文を実行した回数"
-
-#: libraries/messages.inc.php:81
-msgid "The number of requests to update a row in a table."
-msgstr "テーブル内の行を更新したリクエストの数"
-
-#: libraries/messages.inc.php:82
-msgid "The number of requests to insert a row in a table."
-msgstr "テーブル内に行を挿入したリクエストの数"
-
-#: libraries/messages.inc.php:83
-msgid "The number of pages containing data (dirty or clean)."
-msgstr ""
-"データが含まれるページの数 (ダーティページ、クリーンページの別を問わず)"
-
-#: libraries/messages.inc.php:84
-msgid "The number of pages currently dirty."
-msgstr "現在のダーティページの数"
-
-#: libraries/messages.inc.php:85
-msgid "The number of buffer pool pages that have been requested to be flushed."
-msgstr "フラッシュリクエストを受けたバッファプールのページ数"
-
-#: libraries/messages.inc.php:86
-msgid "The number of free pages."
-msgstr "空きページ数"
-
-#: libraries/messages.inc.php:87
-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 ""
-"InnoDBバッファプールでラッチされているページ数。これは現在読み込んでいる、あ"
-"るいは書き込んでいるページ、あるいは他の何らかの理由でフラッシュしたり削除し"
-"たりできなくなっているページの数です"
-
-#: libraries/messages.inc.php:88
-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 "
-"be calculated as Innodb_buffer_pool_pages_total - "
-"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data."
-msgstr ""
-"行ロックやアダプティブハッシュインデックスといった管理オーバヘッドのせいでビ"
-"ジーになっているページ数。この値はInnodb_buffer_pool_pages_total - "
-"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_dataという式でも計算"
-"できます"
-
-#: libraries/messages.inc.php:89
-msgid "Total size of buffer pool, in pages."
-msgstr "ページのバッファプールサイズの合計"
-
-#: libraries/messages.inc.php:90
-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 ""
-"InnoDBが開始したランダム読み込みの回数。これはクエリがテーブルの大部分をラン"
-"ダムな順番でスキャンするときに発生します"
-
-#: libraries/messages.inc.php:91
-msgid ""
-"The number of sequential read-aheads InnoDB initiated. This happens when "
-"InnoDB does a sequential full table scan."
-msgstr ""
-"InnoDBが開始したシーケンシャル読み込みの回数。これはInnoDBがシーケンシャルな"
-"フルテーブルスキャンを行うときに発生します"
-
-#: libraries/messages.inc.php:92
-msgid "The number of logical read requests InnoDB has done."
-msgstr "InnoDB が実行した論理読み込みリクエストの数"
-
-#: libraries/messages.inc.php:93
-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/messages.inc.php:94
-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 "
-"available, it's necessary to wait for pages to be flushed first. This "
-"counter counts instances of these waits. If the buffer pool size was set "
-"properly, this value should be small."
-msgstr ""
-"通常 InnoDB バッファプールへの書き込みはバックグラウンドで行われますが、ペー"
-"ジの読み込みないし作成を行う必要があるのにクリーンなページが得られない場合"
-"は、まずそのページがフラッシュされるのを待つ必要があります。このカウンタは、"
-"そのウェイトの回数をカウントするものです。バッファプールの値が適切に設定され"
-"ていれば、この値は小さいはずです"
-
-#: libraries/messages.inc.php:95
-msgid "The number writes done to the InnoDB buffer pool."
-msgstr "InnoDB バッファプールへの書き込み回数"
-
-#: libraries/messages.inc.php:96
-msgid "The number of fsync() operations so far."
-msgstr "これまでに fsync() を実行した回数"
-
-#: libraries/messages.inc.php:97
-msgid "The current number of pending fsync() operations."
-msgstr "現在保留されている fsync() の回数"
-
-#: libraries/messages.inc.php:98
-msgid "The current number of pending reads."
-msgstr "現在保留されている読み込みの数"
-
-#: libraries/messages.inc.php:99
-msgid "The current number of pending writes."
-msgstr "現在保留されている書き込みの数"
-
-#: libraries/messages.inc.php:100
-msgid "The amount of data read so far, in bytes."
-msgstr "これまでのデータ読み込み量 (単位:バイト)"
-
-#: libraries/messages.inc.php:101
-msgid "The total number of data reads."
-msgstr "データ読み込み回数の合計"
-
-#: libraries/messages.inc.php:102
-msgid "The total number of data writes."
-msgstr "データ書き込み回数の合計"
-
-#: libraries/messages.inc.php:103
-msgid "The amount of data written so far, in bytes."
-msgstr "これまでのデータの書き込み量 (単位:バイト)"
-
-#: libraries/messages.inc.php:104
-msgid "The number of pages that have been written for doublewrite operations."
-msgstr "二重書き込みの実行回数と二重書き込みが発生したページ数"
-
-#: libraries/messages.inc.php:105
-msgid "The number of doublewrite operations that have been performed."
-msgstr "二重書き込みの実行回数と二重書き込みが発生したページ数"
-
-#: libraries/messages.inc.php:106
-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/messages.inc.php:107
-msgid "The number of log write requests."
-msgstr "ログ書き込みリクエストの数"
-
-#: libraries/messages.inc.php:108
-msgid "The number of physical writes to the log file."
-msgstr "ログファイルへの物理書き込みの回数"
-
-#: libraries/messages.inc.php:109
-msgid "The number of fsync() writes done to the log file."
-msgstr "ログファイルへの fsync 書き込みの回数"
-
-#: libraries/messages.inc.php:110
-msgid "The number of pending log file fsyncs."
-msgstr "保留中のログファイルへの fsync 回数"
-
-#: libraries/messages.inc.php:111
-msgid "Pending log file writes."
-msgstr "保留中のログファイルへの書き込み回数"
-
-#: libraries/messages.inc.php:112
-msgid "The number of bytes written to the log file."
-msgstr "ログファイルに書き込んだバイト数"
-
-#: libraries/messages.inc.php:113
-msgid "The number of pages created."
-msgstr "作成されたページ数"
-
-#: libraries/messages.inc.php:114
-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 ""
-"コンパイル時の InnoDB のページサイズ (デフォルト:16KB)。多くの値がページ単位"
-"で計算されますが、この値を使えば簡単にバイト単位に変換できます"
-
-#: libraries/messages.inc.php:115
-msgid "The number of pages read."
-msgstr "読み込んだページ数"
-
-#: libraries/messages.inc.php:116
-msgid "The number of pages written."
-msgstr "書き込んだページ数"
-
-#: libraries/messages.inc.php:117
-msgid "The number of row locks currently being waited for."
-msgstr "現在待機中の行ロックの数"
-
-#: libraries/messages.inc.php:118
-msgid "The average time to acquire a row lock, in milliseconds."
-msgstr "行ロック取得に要する平均時間 (単位:ミリ秒)"
-
-#: libraries/messages.inc.php:119
-msgid "The total time spent in acquiring row locks, in milliseconds."
-msgstr "行ロック取得に要した時間の合計 (単位:ミリ秒)"
-
-#: libraries/messages.inc.php:120
-msgid "The maximum time to acquire a row lock, in milliseconds."
-msgstr "行ロック取得に要した時間の最大値 (単位:ミリ秒)"
-
-#: libraries/messages.inc.php:121
-msgid "The number of times a row lock had to be waited for."
-msgstr "行ロック取得時に待機した回数"
-
-#: libraries/messages.inc.php:122
-msgid "The number of rows deleted from InnoDB tables."
-msgstr "InnoDB テーブルから削除した行数"
-
-#: libraries/messages.inc.php:123
-msgid "The number of rows inserted in InnoDB tables."
-msgstr "InnoDB テーブルに挿入した行数"
-
-#: libraries/messages.inc.php:124
-msgid "The number of rows read from InnoDB tables."
-msgstr "InnoDB テーブルから読み込んだ行数"
-
-#: libraries/messages.inc.php:125
-msgid "The number of rows updated in InnoDB tables."
-msgstr "InnoDB テーブルで更新された行数"
-
-#: libraries/messages.inc.php:126
-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/messages.inc.php:127
-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/messages.inc.php:128
-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/messages.inc.php:129
-msgid "The number of requests to read a key block from the cache."
-msgstr "キャッシュからキーブロックを読み込んだリクエストの数"
-
-#: libraries/messages.inc.php:130
-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 ""
-"ディスクからキーブロックを物理読み込みした回数。Key_reads が大きいのはおそら"
-"く key_buffer_size が小さすぎるためです。キャッシュミスの割合は Key_reads/"
-"Key_read_requests で計算できます"
-
-#: libraries/messages.inc.php:131
-msgid "The number of requests to write a key block to the cache."
-msgstr "キャッシュにキーブロックを書き込んだリクエストの数"
-
-#: libraries/messages.inc.php:132
-msgid "The number of physical writes of a key block to disk."
-msgstr "ディスクにキーブロックを物理書き込みした回数"
-
-#: libraries/messages.inc.php:133
-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 ""
-"クエリオプティマイザーの計算による、最後にコンパイルされたクエリの総コスト。"
-"クエリのプランを変えたときにコストがどう変わるか比較するときに便利です。デ"
-"フォルト値の 0 はまだ一度もクエリをコンパイルしていないという意味です"
-
-#: libraries/messages.inc.php:134
-msgid "The number of rows waiting to be written in INSERT DELAYED queues."
-msgstr "INSERT DELAYED キューの中で書き込まれるのを待っている行数"
-
-#: libraries/messages.inc.php:135
-msgid ""
-"The number of tables that have been opened. If opened tables is big, your "
-"table cache value is probably too small."
-msgstr ""
-"開いているテーブルの数。開いているテーブルが多い場合はおそらくテーブルキャッ"
-"シュの値が小さすぎます"
-
-#: libraries/messages.inc.php:136
-msgid "The number of files that are open."
-msgstr "開いているファイルの数"
-
-#: libraries/messages.inc.php:137
-msgid "The number of streams that are open (used mainly for logging)."
-msgstr "開いているストリームの数 (主にログの記録用です)"
-
-#: libraries/messages.inc.php:138
-msgid "The number of tables that are open."
-msgstr "開いているテーブルの数"
-
-#: libraries/messages.inc.php:139
-msgid "The number of free memory blocks in query cache."
-msgstr "クエリキャッシュ内の空きメモリブロックの数"
-
-#: libraries/messages.inc.php:140
-msgid "The amount of free memory for query cache."
-msgstr "クエリキャッシュの空きメモリ量"
-
-#: libraries/messages.inc.php:141
-msgid "The number of cache hits."
-msgstr "キャッシュのヒット数"
-
-#: libraries/messages.inc.php:142
-msgid "The number of queries added to the cache."
-msgstr "キャッシュに追加されたクエリの数"
-
-#: libraries/messages.inc.php:143
-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 "
-"cache size. The query cache uses a least recently used (LRU) strategy to "
-"decide which queries to remove from the cache."
-msgstr ""
-"新しいクエリをキャッシュするためにメモリを解放するべくキャッシュから削除され"
-"たクエリの数。この情報はクエリキャッシュのサイズを調整するときに便利です。ク"
-"エリキャッシュは最後に使われた時刻が最も古いものから削除する(LRU)戦略に従って"
-"削除するクエリを決めます"
-
-#: libraries/messages.inc.php:144
-msgid ""
-"The number of non-cached queries (not cachable, or not cached due to the "
-"query_cache_type setting)."
-msgstr ""
-"キャッシュされなかった (キャッシュできないか query_cache_type の設定でキャッ"
-"シュしないことになっている) クエリの数"
-
-#: libraries/messages.inc.php:145
-msgid "The number of queries registered in the cache."
-msgstr "キャッシュに登録されているクエリの数"
-
-#: libraries/messages.inc.php:146
-msgid "The total number of blocks in the query cache."
-msgstr "クエリキャッシュの総ブロック数"
-
-#: libraries/messages.inc.php:147
-msgctxt "$strShowStatusReset"
-msgid "Reset"
-msgstr "リセット"
-
-#: libraries/messages.inc.php:148
-msgid "The status of failsafe replication (not yet implemented)."
-msgstr "フェイルセーフレプリケーションの状態 (未実装)"
-
-#: libraries/messages.inc.php:149
-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 ""
-"インデックスを利用しなかった結合の数。この値が 0 でない場合はテーブルのイン"
-"デックスをよく確認してください"
-
-#: libraries/messages.inc.php:150
-msgid "The number of joins that used a range search on a reference table."
-msgstr "参照テーブルで範囲検索をした結合の数"
-
-#: libraries/messages.inc.php:151
-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 ""
-"キーが指定されていなかったため一行ずつキーが使われているか確認した結合の数"
-"(0 でない場合はテーブルのインデックスをよく確認してください)"
-
-#: libraries/messages.inc.php:152
-msgid ""
-"The number of joins that used ranges on the first table. (It's normally not "
-"critical even if this is big.)"
-msgstr ""
-"最初のテーブルで範囲指定された結合の数 (この値は大きくてもふつう問題ありませ"
-"ん)"
-
-#: libraries/messages.inc.php:153
-msgid "The number of joins that did a full scan of the first table."
-msgstr "最初のテーブルをフルスキャンした結合の数"
-
-#: libraries/messages.inc.php:154
-msgid "The number of temporary tables currently open by the slave SQL thread."
-msgstr "スレーブの SQL スレッドが現在開いている一時テーブルの数"
-
-#: libraries/messages.inc.php:155
-msgid ""
-"Total (since startup) number of times the replication slave SQL thread has "
-"retried transactions."
-msgstr ""
-"レプリケーションスレーブの SQL スレッドがトランザクションを再試行した回数(起"
-"動時からの合計)"
-
-#: libraries/messages.inc.php:156
-msgid "This is ON if this server is a slave that is connected to a master."
-msgstr "このサーバがマスターに接続するスレーブである場合は ON になります"
-
-#: libraries/messages.inc.php:157
-msgid ""
-"The number of threads that have taken more than slow_launch_time seconds to "
-"create."
-msgstr "slow_launch_time で指定された秒数以上に作成時間がかかったスレッドの数"
-
-#: libraries/messages.inc.php:158
-msgid ""
-"The number of queries that have taken more than long_query_time seconds."
-msgstr "long_query_time で指定された秒数以上に時間のかかったクエリの数"
-
-#: libraries/messages.inc.php:159
-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 ""
-"ソートアルゴリズムが実行しなければならなかったマージの回数。この値が高い場合"
-"は sort_buffer_size システム変数の値を増やした方がよいでしょう"
-
-#: libraries/messages.inc.php:160
-msgid "The number of sorts that were done with ranges."
-msgstr "範囲指定付きでソートが行われた回数"
-
-#: libraries/messages.inc.php:161
-msgid "The number of sorted rows."
-msgstr "ソート済の行数"
-
-#: libraries/messages.inc.php:162
-msgid "The number of sorts that were done by scanning the table."
-msgstr "テーブルをスキャンしたときに実行されたソートの回数"
-
-#: libraries/messages.inc.php:163
-msgid "The number of times that a table lock was acquired immediately."
-msgstr "テーブルロックをすぐに取得できた回数"
-
-#: libraries/messages.inc.php:164
-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 "
-"should first optimize your queries, and then either split your table or "
-"tables or use replication."
-msgstr ""
-"テーブルロックをすぐに取得できずウェイトが発生した回数。この値が高く、パ"
-"フォーマンスに問題が生じている場合は、まずクエリを最適化してください。それで"
-"もだめならテーブルを分割するか、レプリケーションを利用してください"
-
-#: libraries/messages.inc.php:165
-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 ""
-"スレッドキャッシュ内のスレッド数。キャッシュのヒット率は Threads_created/"
-"Connections で計算できます。この値が赤くなっている場合は thread_cache_size を"
-"大きくしてください"
-
-#: libraries/messages.inc.php:166
-msgid "The number of currently open connections."
-msgstr "現在開いている接続の数"
-
-#: libraries/messages.inc.php:167
-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 "
-"doesn't give a notable performance improvement if you have a good thread "
-"implementation.)"
-msgstr ""
-"接続処理のために作成されたスレッドの数。Threads_created が大きい場合は "
-"thread_cache_size の値を増やした方がよいかもしれません (スレッドの実装に問題"
-"がない場合はふつうあまりパフォーマンスは向上しません)"
-
-#: libraries/messages.inc.php:168
-msgid "The number of threads that are not sleeping."
-msgstr "スリープしていないスレッドの数"
-
#: libraries/mult_submits.inc.php:76 libraries/tbl_properties.inc.php:513
#: tbl_structure.php:29 tbl_structure.php:153 tbl_structure.php:157
#: tbl_structure.php:473
@@ -4355,8 +3532,8 @@ msgstr ""
#: libraries/replication_gui.lib.php:55 libraries/replication_gui.lib.php:56
#: libraries/replication_gui.lib.php:249 libraries/replication_gui.lib.php:252
-#: libraries/replication_gui.lib.php:259 server_privileges.php:672
-#: server_privileges.php:675 server_privileges.php:682
+#: libraries/replication_gui.lib.php:259 server_privileges.php:711
+#: server_privileges.php:714 server_privileges.php:721
#: server_synchronize.php:1171
msgid "User name"
msgstr "ユーザ名"
@@ -4374,11 +3551,11 @@ msgid "Slave status"
msgstr ""
#: libraries/replication_gui.lib.php:114 libraries/sql_query_form.lib.php:445
-#: server_status.php:626 server_variables.php:52
+#: server_status.php:737 server_variables.php:52
msgid "Variable"
msgstr "変数"
-#: libraries/replication_gui.lib.php:115 server_status.php:627
+#: libraries/replication_gui.lib.php:115 server_status.php:738
#: tbl_change.php:324 tbl_printview.php:370 tbl_select.php:139
#: tbl_structure.php:729
msgid "Value"
@@ -4398,41 +3575,58 @@ msgstr ""
msgid "Add slave replication user"
msgstr ""
-#: libraries/replication_gui.lib.php:254 server_privileges.php:677
+#: libraries/replication_gui.lib.php:254 server_privileges.php:716
msgid "Any user"
msgstr "すべてのユーザ"
#: libraries/replication_gui.lib.php:255 libraries/replication_gui.lib.php:323
-#: libraries/replication_gui.lib.php:346 server_privileges.php:678
-#: server_privileges.php:745 server_privileges.php:769
-#: server_privileges.php:1889 server_privileges.php:1919
+#: libraries/replication_gui.lib.php:346 server_privileges.php:717
+#: server_privileges.php:784 server_privileges.php:808
+#: server_privileges.php:1928 server_privileges.php:1958
msgid "Use text field"
msgstr "テキストフィールドの値を利用する"
-#: libraries/replication_gui.lib.php:302 server_privileges.php:725
+#: libraries/replication_gui.lib.php:302 server_privileges.php:764
msgid "Any host"
msgstr "すべてのホスト"
-#: libraries/replication_gui.lib.php:306 server_privileges.php:729
+#: libraries/replication_gui.lib.php:306 server_privileges.php:768
msgid "Local"
msgstr "ローカル"
-#: libraries/replication_gui.lib.php:312 server_privileges.php:734
+#: libraries/replication_gui.lib.php:312 server_privileges.php:773
msgid "This Host"
msgstr "このホスト"
-#: libraries/replication_gui.lib.php:318 server_privileges.php:740
+#: libraries/replication_gui.lib.php:318 server_privileges.php:779
msgid "Use Host Table"
msgstr "ホストテーブルを使う"
-#: libraries/replication_gui.lib.php:331 server_privileges.php:753
+#: libraries/replication_gui.lib.php:331 server_privileges.php:792
msgid ""
"When Host table is used, this field is ignored and values stored in Host "
"table are used instead."
msgstr ""
-#: libraries/select_lang.lib.php:480 libraries/select_lang.lib.php:486
-#: libraries/select_lang.lib.php:492
+#. l10n: Text direction, use either ltr or rtl
+#: libraries/select_lang.lib.php:491
+msgid "ltr"
+msgstr "ltr"
+
+#: libraries/select_lang.lib.php:493
+msgid "Content of table __TABLE__"
+msgstr "テーブル __TABLE__ の内容"
+
+#: libraries/select_lang.lib.php:494
+msgid "(continued)"
+msgstr "(続き)"
+
+#: libraries/select_lang.lib.php:495
+msgid "Structure of table __TABLE__"
+msgstr "テーブル __TABLE__ の構造"
+
+#: libraries/select_lang.lib.php:500 libraries/select_lang.lib.php:506
+#: libraries/select_lang.lib.php:512
#, php-format
msgid "Unknown language: %1$s."
msgstr "言語ファイルが登録されていません: %1$s"
@@ -4443,7 +3637,7 @@ msgid "Servers"
msgstr "サーバ"
#: libraries/server_links.inc.php:53 server_engines.php:112
-#: server_engines.php:116 server_status.php:304 test/theme.php:105
+#: server_engines.php:116 server_status.php:415 test/theme.php:105
msgid "Variables"
msgstr "変数"
@@ -4456,7 +3650,7 @@ msgid "Engines"
msgstr "エンジン"
#: libraries/server_links.inc.php:76 server_binlog.php:110
-#: server_status.php:253 test/theme.php:121
+#: server_status.php:364 test/theme.php:121
msgid "Binary log"
msgstr "バイナリログ"
@@ -4928,8 +4122,8 @@ msgstr "リセット"
msgid "Protocol version"
msgstr "プロトコルバージョン"
-#: main.php:189 server_privileges.php:1350 server_privileges.php:1497
-#: server_privileges.php:1611 server_privileges.php:2029
+#: main.php:189 server_privileges.php:1389 server_privileges.php:1536
+#: server_privileges.php:1650 server_privileges.php:2068
#: server_processlist.php:54
msgid "User"
msgstr "ユーザ"
@@ -5317,7 +4511,7 @@ msgstr "データベース %s を正常に削除しました"
msgid "Databases statistics"
msgstr "データベースの統計"
-#: server_databases.php:117 server_status.php:260
+#: server_databases.php:117 server_status.php:371
#: setup/lib/messages.inc.php:117
msgid "Tables"
msgstr "テーブル"
@@ -5337,6 +4531,16 @@ msgstr ""
msgid "Jump to database"
msgstr "データベースが存在しません"
+#: server_databases.php:267
+msgid "Not replicated"
+msgstr ""
+
+#: server_databases.php:273
+#, fuzzy
+#| msgid "Replication"
+msgid "Replicated"
+msgstr "レプリケーション"
+
#: server_databases.php:289
#, php-format
msgid "Check privileges for database "%s"."
@@ -5370,142 +4574,328 @@ msgstr "ストレージエンジン"
msgid "View dump (schema) of databases"
msgstr "データベースのダンプ(スキーマ)表示"
-#: server_privileges.php:263 server_privileges.php:264
+#: server_privileges.php:24 server_privileges.php:266
+msgid "Includes all privileges except GRANT."
+msgstr "GRANT 以外のすべての特権を付与する"
+
+#: server_privileges.php:25 server_privileges.php:192
+#: server_privileges.php:515
+msgid "Allows altering the structure of existing tables."
+msgstr "既存のテーブル構造の変更を許可する"
+
+#: server_privileges.php:26 server_privileges.php:208
+#: server_privileges.php:521
+msgid "Allows altering and dropping stored routines."
+msgstr "ストアドルーチンの修正と削除を許可する"
+
+#: server_privileges.php:27 server_privileges.php:184
+#: server_privileges.php:514
+msgid "Allows creating new databases and tables."
+msgstr "新しいデータベースやテーブルの作成を許可する"
+
+#: server_privileges.php:28 server_privileges.php:207
+#: server_privileges.php:520
+msgid "Allows creating stored routines."
+msgstr "ストアドルーチンの作成を許可する"
+
+#: server_privileges.php:29 server_privileges.php:514
+msgid "Allows creating new tables."
+msgstr "新しいテーブルの作成を許可する"
+
+#: server_privileges.php:30 server_privileges.php:195
+#: server_privileges.php:518
+msgid "Allows creating temporary tables."
+msgstr "一時テーブルの作成を許可する"
+
+#: server_privileges.php:31 server_privileges.php:209
+#: server_privileges.php:554
+msgid "Allows creating, dropping and renaming user accounts."
+msgstr "ユーザアカウントの作成・削除・リネームを許可する"
+
+#: server_privileges.php:32 server_privileges.php:199
+#: server_privileges.php:203 server_privileges.php:526
+#: server_privileges.php:530
+msgid "Allows creating new views."
+msgstr "新しいビューの作成を許可する"
+
+#: server_privileges.php:33 server_privileges.php:183
+#: server_privileges.php:506
+msgid "Allows deleting data."
+msgstr "データの削除を許可する"
+
+#: server_privileges.php:34 server_privileges.php:185
+#: server_privileges.php:517
+msgid "Allows dropping databases and tables."
+msgstr "データベースとテーブルの削除を許可す"
+
+#: server_privileges.php:35 server_privileges.php:517
+msgid "Allows dropping tables."
+msgstr "テーブルの削除を許可する"
+
+#: server_privileges.php:36 server_privileges.php:200
+#: server_privileges.php:534
+msgid "Allows to set up events for the event scheduler"
+msgstr "イベントスケジューラにイベントを設定できるようにする"
+
+#: server_privileges.php:37 server_privileges.php:210
+#: server_privileges.php:522
+msgid "Allows executing stored routines."
+msgstr "ストアドルーチンの実行を許可する"
+
+#: server_privileges.php:38 server_privileges.php:189
+#: server_privileges.php:509
+msgid "Allows importing data from and exporting data into files."
+msgstr "データのインポート、エクスポートを許可する"
+
+#: server_privileges.php:39 server_privileges.php:540
+msgid ""
+"Allows adding users and privileges without reloading the privilege tables."
+msgstr "特権テーブルのリロードなしのユーザ・特権の追加を許可する"
+
+#: server_privileges.php:40 server_privileges.php:191
+#: server_privileges.php:516
+msgid "Allows creating and dropping indexes."
+msgstr "インデックスの作成、削除を許可する"
+
+#: server_privileges.php:41 server_privileges.php:181
+#: server_privileges.php:442 server_privileges.php:504
+msgid "Allows inserting and replacing data."
+msgstr "データの挿入、置換を許可する"
+
+#: server_privileges.php:42 server_privileges.php:196
+#: server_privileges.php:549
+msgid "Allows locking tables for the current thread."
+msgstr "現在のスレッドのテーブルロックを許可する"
+
+#: server_privileges.php:43 server_privileges.php:646
+#: server_privileges.php:648
+msgid "Limits the number of new connections the user may open per hour."
+msgstr "単位時間内に可能な新規接続回数を制限する"
+
+#: server_privileges.php:44 server_privileges.php:634
+#: server_privileges.php:636
+msgid "Limits the number of queries the user may send to the server per hour."
+msgstr "単位時間内にサーバに送信可能なクエリ数を制限する"
+
+#: server_privileges.php:45 server_privileges.php:640
+#: server_privileges.php:642
+msgid ""
+"Limits the number of commands that change any table or database the user may "
+"execute per hour."
+msgstr ""
+"単位時間内に実行可能なテーブルないしデータベースの編集コマンド数を制限する"
+
+#: server_privileges.php:46 server_privileges.php:652
+#: server_privileges.php:654
+msgid "Limits the number of simultaneous connections the user may have."
+msgstr "ユーザの同時接続数を制限する"
+
+#: server_privileges.php:47 server_privileges.php:188
+#: server_privileges.php:544
+msgid "Allows viewing processes of all users"
+msgstr "全ユーザのプロセスを閲覧できるようにする"
+
+#: server_privileges.php:48 server_privileges.php:190
+#: server_privileges.php:448 server_privileges.php:550
+msgid "Has no effect in this MySQL version."
+msgstr "このバージョンの MySQL では無効です"
+
+#: server_privileges.php:49 server_privileges.php:186
+#: server_privileges.php:545
+msgid "Allows reloading server settings and flushing the server's caches."
+msgstr "サーバ設定のリロード、サーバキャッシュのフラッシュを許可する"
+
+#: server_privileges.php:50 server_privileges.php:198
+#: server_privileges.php:552
+msgid "Allows the user to ask where the slaves / masters are."
+msgstr "スレーブ/マスターの照会を許可する"
+
+#: server_privileges.php:51 server_privileges.php:197
+#: server_privileges.php:553
+msgid "Needed for the replication slaves."
+msgstr "レプリケーションスレーブでは有効にする必要があります"
+
+#: server_privileges.php:52 server_privileges.php:180
+#: server_privileges.php:439 server_privileges.php:503
+msgid "Allows reading data."
+msgstr "データの読み込みを許可する"
+
+#: server_privileges.php:53 server_privileges.php:193
+#: server_privileges.php:547
+msgid "Gives access to the complete list of databases."
+msgstr "データベース総一覧へのアクセスを許可する"
+
+#: server_privileges.php:54 server_privileges.php:204
+#: server_privileges.php:206 server_privileges.php:519
+msgid "Allows performing SHOW CREATE VIEW queries."
+msgstr "SHOW CREATE VIEW クエリの実行を許可する"
+
+#: server_privileges.php:55 server_privileges.php:187
+#: server_privileges.php:546
+msgid "Allows shutting down the server."
+msgstr "サーバのシャットダウンを許可する"
+
+#: server_privileges.php:56 server_privileges.php:194
+#: server_privileges.php:543
+msgid ""
+"Allows connecting, even if maximum number of connections is reached; "
+"required for most administrative operations like setting global variables or "
+"killing threads of other users."
+msgstr ""
+"最大接続数に達しているときでも接続を許可する。グローバル変数の設定や他のユー"
+"ザのスレッドを停止するといった管理操作をする場合はたいていこの設定が必要にな"
+"ります"
+
+#: server_privileges.php:57 server_privileges.php:201
+#: server_privileges.php:535
+msgid "Allows creating and dropping triggers"
+msgstr "トリガの作成・削除を許可する"
+
+#: server_privileges.php:58 server_privileges.php:182
+#: server_privileges.php:445 server_privileges.php:505
+msgid "Allows changing data."
+msgstr "データの修正を許可する"
+
+#: server_privileges.php:59 server_privileges.php:260
+msgid "No privileges."
+msgstr "特権はありません"
+
+#: server_privileges.php:302 server_privileges.php:303
#, fuzzy
#| msgid "None"
msgctxt "None privileges"
msgid "None"
msgstr "なし"
-#: server_privileges.php:392 server_privileges.php:527
-#: server_privileges.php:1679 server_privileges.php:1685
+#: server_privileges.php:431 server_privileges.php:566
+#: server_privileges.php:1718 server_privileges.php:1724
msgid "Table-specific privileges"
msgstr "テーブル固有の特権"
-#: server_privileges.php:393 server_privileges.php:535
-#: server_privileges.php:1501
+#: server_privileges.php:432 server_privileges.php:574
+#: server_privileges.php:1540
msgid " Note: MySQL privilege names are expressed in English "
msgstr "注意: MySQL の特権名は英語で表示されます"
-#: server_privileges.php:524 server_privileges.php:1500
+#: server_privileges.php:563 server_privileges.php:1539
msgid "Global privileges"
msgstr "グローバル特権"
-#: server_privileges.php:526 server_privileges.php:1679
+#: server_privileges.php:565 server_privileges.php:1718
msgid "Database-specific privileges"
msgstr "データベースに固有の特権"
-#: server_privileges.php:571
+#: server_privileges.php:610
msgid "Administration"
msgstr "管理"
-#: server_privileges.php:591
+#: server_privileges.php:630
msgid "Resource limits"
msgstr "リソースの制限"
-#: server_privileges.php:592
+#: server_privileges.php:631
msgid "Note: Setting these options to 0 (zero) removes the limit."
msgstr "注意: オプションを 0 (ゼロ)に設定すると制限を解除します"
-#: server_privileges.php:669
+#: server_privileges.php:708
msgid "Login Information"
msgstr "ログイン情報"
-#: server_privileges.php:763
+#: server_privileges.php:802
msgid "Do not change the password"
msgstr "パスワードは変更しない"
-#: server_privileges.php:804 server_privileges.php:2166
+#: server_privileges.php:843 server_privileges.php:2205
#, fuzzy
#| msgid "No user(s) found."
msgid "No user found."
msgstr "ユーザが存在しません"
-#: server_privileges.php:848
+#: server_privileges.php:887
#, php-format
msgid "The user %s already exists!"
msgstr "ユーザ %s は既に存在します!"
-#: server_privileges.php:931
+#: server_privileges.php:970
msgid "You have added a new user."
msgstr "新しいユーザを追加しました"
-#: server_privileges.php:1152
+#: server_privileges.php:1191
#, php-format
msgid "You have updated the privileges for %s."
msgstr "%s の特権を更新しました"
-#: server_privileges.php:1176
+#: server_privileges.php:1215
#, php-format
msgid "You have revoked the privileges for %s"
msgstr "%s の特権を取り消しました"
-#: server_privileges.php:1212
+#: server_privileges.php:1251
#, php-format
msgid "The password for %s was changed successfully."
msgstr "%s のパスワードは正しく変更されました"
-#: server_privileges.php:1232
+#: server_privileges.php:1271
#, php-format
msgid "Deleting %s"
msgstr "%s を削除中です"
-#: server_privileges.php:1243
+#: server_privileges.php:1282
msgid "No users selected for deleting!"
msgstr "削除するユーザが選択されていません!"
-#: server_privileges.php:1246
+#: server_privileges.php:1285
msgid "Reloading the privileges"
msgstr "特権をリロードしています"
-#: server_privileges.php:1261
+#: server_privileges.php:1300
msgid "The selected users have been deleted successfully."
msgstr "選択したユーザを正しく削除しました"
-#: server_privileges.php:1296
+#: server_privileges.php:1335
msgid "The privileges were reloaded successfully."
msgstr "特権を正常にリロードしました"
-#: server_privileges.php:1324 server_privileges.php:1610
+#: server_privileges.php:1363 server_privileges.php:1649
msgid "Edit Privileges"
msgstr "特権を編集"
-#: server_privileges.php:1333
+#: server_privileges.php:1372
msgid "Revoke"
msgstr "取り消し"
-#: server_privileges.php:1365
+#: server_privileges.php:1404
msgid "User overview"
msgstr "ユーザ概略"
-#: server_privileges.php:1502 server_privileges.php:1684
-#: server_privileges.php:2033
+#: server_privileges.php:1541 server_privileges.php:1723
+#: server_privileges.php:2072
msgid "Grant"
msgstr "権限委譲"
-#: server_privileges.php:1521 server_privileges.php:2123
+#: server_privileges.php:1560 server_privileges.php:2162
msgid "Any"
msgstr "すべて"
-#: server_privileges.php:1570 server_privileges.php:1594
-#: server_privileges.php:1988 server_privileges.php:2177
+#: server_privileges.php:1609 server_privileges.php:1633
+#: server_privileges.php:2027 server_privileges.php:2216
msgid "Add a new User"
msgstr "新しいユーザを追加する"
-#: server_privileges.php:1575
+#: server_privileges.php:1614
msgid "Remove selected users"
msgstr "選択したユーザを削除する"
-#: server_privileges.php:1578
+#: server_privileges.php:1617
msgid "Revoke all active privileges from the users and delete them afterwards."
msgstr "特権をすべて取り消してユーザを削除する"
-#: server_privileges.php:1579 server_privileges.php:1580
-#: server_privileges.php:1581
+#: server_privileges.php:1618 server_privileges.php:1619
+#: server_privileges.php:1620
msgid "Drop the databases that have the same names as the users."
msgstr "ユーザと同名のデータベースを削除する"
-#: server_privileges.php:1597
+#: server_privileges.php:1636
#, php-format
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
@@ -5518,91 +4908,91 @@ msgstr ""
"特権の内容が一致しなくなることがありますので、作業を続ける前に %s特権リロー"
"ド%s をしてください"
-#: server_privileges.php:1645
+#: server_privileges.php:1684
msgid "The selected user was not found in the privilege table."
msgstr "特権テーブルには選択したユーザがいません"
-#: server_privileges.php:1685
+#: server_privileges.php:1724
msgid "Column-specific privileges"
msgstr "このカラムに固有の特権"
-#: server_privileges.php:1886
+#: server_privileges.php:1925
msgid "Add privileges on the following database"
msgstr "データベースに特権を追加"
-#: server_privileges.php:1904
+#: server_privileges.php:1943
msgid "Wildcards % and _ should be escaped with a \\ to use them literally"
msgstr ""
-#: server_privileges.php:1907
+#: server_privileges.php:1946
msgid "Add privileges on the following table"
msgstr "テーブルに特権を追加"
-#: server_privileges.php:1964
+#: server_privileges.php:2003
msgid "Change Login Information / Copy User"
msgstr "ログイン情報の変更 / ユーザの複製"
-#: server_privileges.php:1967
+#: server_privileges.php:2006
msgid "Create a new user with the same privileges and ..."
msgstr "同じ特権を持つ新しいユーザを作る"
-#: server_privileges.php:1969
+#: server_privileges.php:2008
msgid "... keep the old one."
msgstr "元のユーザも残す"
-#: server_privileges.php:1970
+#: server_privileges.php:2009
msgid " ... delete the old one from the user tables."
msgstr "ユーザテーブルから元のユーザを削除する"
-#: server_privileges.php:1971
+#: server_privileges.php:2010
msgid ""
" ... revoke all active privileges from the old one and delete it afterwards."
msgstr "元のユーザの特権をすべて無効にしてから削除する"
-#: server_privileges.php:1972
+#: server_privileges.php:2011
msgid ""
" ... delete the old one from the user tables and reload the privileges "
"afterwards."
msgstr "ユーザテーブルから元のユーザを削除し、特権をリロードする"
-#: server_privileges.php:1994
+#: server_privileges.php:2033
msgid "Database for user"
msgstr "ユーザ専用データベース"
-#: server_privileges.php:1998
+#: server_privileges.php:2037
#, fuzzy
#| msgid "None"
msgctxt "Create none database for user"
msgid "None"
msgstr "なし"
-#: server_privileges.php:1999
+#: server_privileges.php:2038
msgid "Create database with same name and grant all privileges"
msgstr "同名のデータベースを作成してすべての特権を与える"
-#: server_privileges.php:2000
+#: server_privileges.php:2039
msgid "Grant all privileges on wildcard name (username\\_%)"
msgstr "ワイルドカード(ユーザ名_%)に該当するデータベースにすべての特権を与える"
-#: server_privileges.php:2003
+#: server_privileges.php:2042
#, php-format
msgid "Grant all privileges on database "%s""
msgstr ""
-#: server_privileges.php:2026
+#: server_privileges.php:2065
#, php-format
msgid "Users having access to "%s""
msgstr ""%s" にアクセスできるユーザ"
-#: server_privileges.php:2134
+#: server_privileges.php:2173
msgid "global"
msgstr "グローバル"
-#: server_privileges.php:2136
+#: server_privileges.php:2175
msgid "database-specific"
msgstr "データベース固有"
-#: server_privileges.php:2138
+#: server_privileges.php:2177
msgid "wildcard"
msgstr "ワイルドカード"
@@ -5648,7 +5038,7 @@ msgstr ""
msgid "This server is configured as master in a replication process."
msgstr ""
-#: server_replication.php:184 server_status.php:281
+#: server_replication.php:184 server_status.php:392
msgid "Show master status"
msgstr ""
@@ -5784,103 +5174,723 @@ msgid ""
"like to configure it?"
msgstr ""
+#: server_status.php:40
+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 ""
+"一時バイナリログキャッシュを利用したものの binlog_cache_size の値を超過したた"
+"め一時ファイルにステートメントを保存したトランザクション数"
+
+#: server_status.php:41
+msgid "The number of transactions that used the temporary binary log cache."
+msgstr "一時バイナリログキャッシュを使用したトランザクション数"
+
+#: server_status.php:42
+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 "
+"to increase the tmp_table_size value to cause temporary tables to be memory-"
+"based instead of disk-based."
+msgstr ""
+"ステートメント実行中にサーバがディスク上に自動生成した一時テーブル数。"
+"Created_tmp_disk_tables の値が大きい場合は tmp_table_size の値を増やしてディ"
+"スク上ではなくメモリ上に一時テーブルを構築した方がよいかもしれません"
+
+#: server_status.php:43
+msgid "How many temporary files mysqld has created."
+msgstr "mysqld が生成した一時ファイル数"
+
+#: server_status.php:44
+msgid ""
+"The number of in-memory temporary tables created automatically by the server "
+"while executing statements."
+msgstr "ステートメント実行中にサーバが自動生成したメモリ上の一時テーブル数"
+
+#: server_status.php:45
+msgid ""
+"The number of rows written with INSERT DELAYED for which some error occurred "
+"(probably duplicate key)."
+msgstr ""
+"何らかのエラー (たぶんキーの重複) が発生したため INSERT DELAYED された行数"
+
#: server_status.php:46
+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 ハンドラのスレッド数。INSERT DELAYED を適用するテーブ"
+"ルの数だけ固有のスレッドが用意されます"
+
+#: server_status.php:47
+msgid "The number of INSERT DELAYED rows written."
+msgstr "INSERT DELAYED で書き込まれた行数"
+
+#: server_status.php:48
+msgid "The number of executed FLUSH statements."
+msgstr "FLUSH 文の実行回数"
+
+#: server_status.php:49
+msgid "The number of internal COMMIT statements."
+msgstr "内部で COMMIT 文を実行した回数"
+
+#: server_status.php:50
+msgid "The number of times a row was deleted from a table."
+msgstr "テーブルから行を削除した回数"
+
+#: server_status.php:51
+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 ""
+"MySQL サーバは NDB クラスタストレージエンジンに特定の名前を持つテーブルについ"
+"ての情報を持っているか問い合わせることができます。これを開示と言いますが、"
+"Handler_discover はその開示されたタイムテーブルの数です"
+
+#: server_status.php:52
+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 ""
+"インデックスの最初のエントリを読み込んだ回数。この値が高い場合はサーバが何度"
+"もインデックスのフルスキャンを実行しているものと思われます。例えば SELECT "
+"col1 FROM foo を実行した場合 (col1 はインデックスに含まれているものとします)"
+
+#: server_status.php:53
+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 ""
+"キーに基づいて行を読み込んだリクエストの数。この値が高い場合はクエリとテーブ"
+"ルが適切にインデックスされているものと考えられます"
+
+#: server_status.php:54
+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 ""
+"キーの順序通りに次の行を読み込んだリクエストの数。この値はインデックス列のク"
+"エリに範囲指定をしているか、インデックススキャンを行っているときに増加します"
+
+#: server_status.php:55
+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 ""
+"キーの順序通りに前の行を読み込んだリクエストの数。この読み込みは主に ORDER "
+"BY ... DESC の最適化に利用されます"
+
+#: server_status.php:56
+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 "
+"probably have a lot of queries that require MySQL to scan whole tables or "
+"you have joins that don't use keys properly."
+msgstr ""
+"決まった位置を基準に行を読み込んだリクエストの数。この値が高いのは結果をソー"
+"トする必要があるクエリを大量に実行している場合です。おそらくテーブル全体をス"
+"キャンしなければならないクエリを大量に行っているか、結合の際のキーの使い方に"
+"不適切なところがあります"
+
+#: server_status.php:57
+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 "
+"tables are not properly indexed or that your queries are not written to take "
+"advantage of the indexes you have."
+msgstr ""
+"データファイルの次の行を読み込んだリクエストの数。この値が高いのはテーブルス"
+"キャンを大量に実行しているためです。一般にこれはテーブルのインデックスが不適"
+"切か、クエリがインデックスを利用するように書かれていないことを意味します"
+
+#: server_status.php:58
+msgid "The number of internal ROLLBACK statements."
+msgstr "内部で ROLLBACK 文を実行した回数"
+
+#: server_status.php:59
+msgid "The number of requests to update a row in a table."
+msgstr "テーブル内の行を更新したリクエストの数"
+
+#: server_status.php:60
+msgid "The number of requests to insert a row in a table."
+msgstr "テーブル内に行を挿入したリクエストの数"
+
+#: server_status.php:61
+msgid "The number of pages containing data (dirty or clean)."
+msgstr ""
+"データが含まれるページの数 (ダーティページ、クリーンページの別を問わず)"
+
+#: server_status.php:62
+msgid "The number of pages currently dirty."
+msgstr "現在のダーティページの数"
+
+#: server_status.php:63
+msgid "The number of buffer pool pages that have been requested to be flushed."
+msgstr "フラッシュリクエストを受けたバッファプールのページ数"
+
+#: server_status.php:64
+msgid "The number of free pages."
+msgstr "空きページ数"
+
+#: server_status.php:65
+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 ""
+"InnoDBバッファプールでラッチされているページ数。これは現在読み込んでいる、あ"
+"るいは書き込んでいるページ、あるいは他の何らかの理由でフラッシュしたり削除し"
+"たりできなくなっているページの数です"
+
+#: server_status.php:66
+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 "
+"be calculated as Innodb_buffer_pool_pages_total - "
+"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data."
+msgstr ""
+"行ロックやアダプティブハッシュインデックスといった管理オーバヘッドのせいでビ"
+"ジーになっているページ数。この値はInnodb_buffer_pool_pages_total - "
+"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_dataという式でも計算"
+"できます"
+
+#: server_status.php:67
+msgid "Total size of buffer pool, in pages."
+msgstr "ページのバッファプールサイズの合計"
+
+#: server_status.php:68
+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 ""
+"InnoDBが開始したランダム読み込みの回数。これはクエリがテーブルの大部分をラン"
+"ダムな順番でスキャンするときに発生します"
+
+#: server_status.php:69
+msgid ""
+"The number of sequential read-aheads InnoDB initiated. This happens when "
+"InnoDB does a sequential full table scan."
+msgstr ""
+"InnoDBが開始したシーケンシャル読み込みの回数。これはInnoDBがシーケンシャルな"
+"フルテーブルスキャンを行うときに発生します"
+
+#: server_status.php:70
+msgid "The number of logical read requests InnoDB has done."
+msgstr "InnoDB が実行した論理読み込みリクエストの数"
+
+#: server_status.php:71
+msgid ""
+"The number of logical reads that InnoDB could not satisfy from buffer pool "
+"and had to do a single-page read."
+msgstr ""
+"InnoDB がバッファプールの内容を利用できず、シングルページ読み込みを行わなけれ"
+"ばならなかった論理読み込みの回数"
+
+#: server_status.php:72
+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 "
+"available, it's necessary to wait for pages to be flushed first. This "
+"counter counts instances of these waits. If the buffer pool size was set "
+"properly, this value should be small."
+msgstr ""
+"通常 InnoDB バッファプールへの書き込みはバックグラウンドで行われますが、ペー"
+"ジの読み込みないし作成を行う必要があるのにクリーンなページが得られない場合"
+"は、まずそのページがフラッシュされるのを待つ必要があります。このカウンタは、"
+"そのウェイトの回数をカウントするものです。バッファプールの値が適切に設定され"
+"ていれば、この値は小さいはずです"
+
+#: server_status.php:73
+msgid "The number writes done to the InnoDB buffer pool."
+msgstr "InnoDB バッファプールへの書き込み回数"
+
+#: server_status.php:74
+msgid "The number of fsync() operations so far."
+msgstr "これまでに fsync() を実行した回数"
+
+#: server_status.php:75
+msgid "The current number of pending fsync() operations."
+msgstr "現在保留されている fsync() の回数"
+
+#: server_status.php:76
+msgid "The current number of pending reads."
+msgstr "現在保留されている読み込みの数"
+
+#: server_status.php:77
+msgid "The current number of pending writes."
+msgstr "現在保留されている書き込みの数"
+
+#: server_status.php:78
+msgid "The amount of data read so far, in bytes."
+msgstr "これまでのデータ読み込み量 (単位:バイト)"
+
+#: server_status.php:79
+msgid "The total number of data reads."
+msgstr "データ読み込み回数の合計"
+
+#: server_status.php:80
+msgid "The total number of data writes."
+msgstr "データ書き込み回数の合計"
+
+#: server_status.php:81
+msgid "The amount of data written so far, in bytes."
+msgstr "これまでのデータの書き込み量 (単位:バイト)"
+
+#: server_status.php:82
+msgid "The number of pages that have been written for doublewrite operations."
+msgstr "二重書き込みの実行回数と二重書き込みが発生したページ数"
+
+#: server_status.php:83
+msgid "The number of doublewrite operations that have been performed."
+msgstr "二重書き込みの実行回数と二重書き込みが発生したページ数"
+
+#: server_status.php:84
+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 ""
+"ログバッファが小さすぎてフラッシュしないと作業を続行できなくなったために発生"
+"したウェイトの回数"
+
+#: server_status.php:85
+msgid "The number of log write requests."
+msgstr "ログ書き込みリクエストの数"
+
+#: server_status.php:86
+msgid "The number of physical writes to the log file."
+msgstr "ログファイルへの物理書き込みの回数"
+
+#: server_status.php:87
+msgid "The number of fsync() writes done to the log file."
+msgstr "ログファイルへの fsync 書き込みの回数"
+
+#: server_status.php:88
+msgid "The number of pending log file fsyncs."
+msgstr "保留中のログファイルへの fsync 回数"
+
+#: server_status.php:89
+msgid "Pending log file writes."
+msgstr "保留中のログファイルへの書き込み回数"
+
+#: server_status.php:90
+msgid "The number of bytes written to the log file."
+msgstr "ログファイルに書き込んだバイト数"
+
+#: server_status.php:91
+msgid "The number of pages created."
+msgstr "作成されたページ数"
+
+#: server_status.php:92
+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 ""
+"コンパイル時の InnoDB のページサイズ (デフォルト:16KB)。多くの値がページ単位"
+"で計算されますが、この値を使えば簡単にバイト単位に変換できます"
+
+#: server_status.php:93
+msgid "The number of pages read."
+msgstr "読み込んだページ数"
+
+#: server_status.php:94
+msgid "The number of pages written."
+msgstr "書き込んだページ数"
+
+#: server_status.php:95
+msgid "The number of row locks currently being waited for."
+msgstr "現在待機中の行ロックの数"
+
+#: server_status.php:96
+msgid "The average time to acquire a row lock, in milliseconds."
+msgstr "行ロック取得に要する平均時間 (単位:ミリ秒)"
+
+#: server_status.php:97
+msgid "The total time spent in acquiring row locks, in milliseconds."
+msgstr "行ロック取得に要した時間の合計 (単位:ミリ秒)"
+
+#: server_status.php:98
+msgid "The maximum time to acquire a row lock, in milliseconds."
+msgstr "行ロック取得に要した時間の最大値 (単位:ミリ秒)"
+
+#: server_status.php:99
+msgid "The number of times a row lock had to be waited for."
+msgstr "行ロック取得時に待機した回数"
+
+#: server_status.php:100
+msgid "The number of rows deleted from InnoDB tables."
+msgstr "InnoDB テーブルから削除した行数"
+
+#: server_status.php:101
+msgid "The number of rows inserted in InnoDB tables."
+msgstr "InnoDB テーブルに挿入した行数"
+
+#: server_status.php:102
+msgid "The number of rows read from InnoDB tables."
+msgstr "InnoDB テーブルから読み込んだ行数"
+
+#: server_status.php:103
+msgid "The number of rows updated in InnoDB tables."
+msgstr "InnoDB テーブルで更新された行数"
+
+#: server_status.php:104
+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 でした"
+
+#: server_status.php:105
+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 ""
+"キーキャッシュの未使用ブロックの数。キーキャッシュの使用率を調べるときに使え"
+"ます"
+
+#: server_status.php:106
+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 ""
+"キーキャッシュの使用済みブロックの数。この値はこれまで一度に使用されたブロッ"
+"クの最大数です"
+
+#: server_status.php:107
+msgid "The number of requests to read a key block from the cache."
+msgstr "キャッシュからキーブロックを読み込んだリクエストの数"
+
+#: server_status.php:108
+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 ""
+"ディスクからキーブロックを物理読み込みした回数。Key_reads が大きいのはおそら"
+"く key_buffer_size が小さすぎるためです。キャッシュミスの割合は Key_reads/"
+"Key_read_requests で計算できます"
+
+#: server_status.php:109
+msgid "The number of requests to write a key block to the cache."
+msgstr "キャッシュにキーブロックを書き込んだリクエストの数"
+
+#: server_status.php:110
+msgid "The number of physical writes of a key block to disk."
+msgstr "ディスクにキーブロックを物理書き込みした回数"
+
+#: server_status.php:111
+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 ""
+"クエリオプティマイザーの計算による、最後にコンパイルされたクエリの総コスト。"
+"クエリのプランを変えたときにコストがどう変わるか比較するときに便利です。デ"
+"フォルト値の 0 はまだ一度もクエリをコンパイルしていないという意味です"
+
+#: server_status.php:112
+msgid "The number of rows waiting to be written in INSERT DELAYED queues."
+msgstr "INSERT DELAYED キューの中で書き込まれるのを待っている行数"
+
+#: server_status.php:113
+msgid ""
+"The number of tables that have been opened. If opened tables is big, your "
+"table cache value is probably too small."
+msgstr ""
+"開いているテーブルの数。開いているテーブルが多い場合はおそらくテーブルキャッ"
+"シュの値が小さすぎます"
+
+#: server_status.php:114
+msgid "The number of files that are open."
+msgstr "開いているファイルの数"
+
+#: server_status.php:115
+msgid "The number of streams that are open (used mainly for logging)."
+msgstr "開いているストリームの数 (主にログの記録用です)"
+
+#: server_status.php:116
+msgid "The number of tables that are open."
+msgstr "開いているテーブルの数"
+
+#: server_status.php:117
+msgid "The number of free memory blocks in query cache."
+msgstr "クエリキャッシュ内の空きメモリブロックの数"
+
+#: server_status.php:118
+msgid "The amount of free memory for query cache."
+msgstr "クエリキャッシュの空きメモリ量"
+
+#: server_status.php:119
+msgid "The number of cache hits."
+msgstr "キャッシュのヒット数"
+
+#: server_status.php:120
+msgid "The number of queries added to the cache."
+msgstr "キャッシュに追加されたクエリの数"
+
+#: server_status.php:121
+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 "
+"cache size. The query cache uses a least recently used (LRU) strategy to "
+"decide which queries to remove from the cache."
+msgstr ""
+"新しいクエリをキャッシュするためにメモリを解放するべくキャッシュから削除され"
+"たクエリの数。この情報はクエリキャッシュのサイズを調整するときに便利です。ク"
+"エリキャッシュは最後に使われた時刻が最も古いものから削除する(LRU)戦略に従って"
+"削除するクエリを決めます"
+
+#: server_status.php:122
+msgid ""
+"The number of non-cached queries (not cachable, or not cached due to the "
+"query_cache_type setting)."
+msgstr ""
+"キャッシュされなかった (キャッシュできないか query_cache_type の設定でキャッ"
+"シュしないことになっている) クエリの数"
+
+#: server_status.php:123
+msgid "The number of queries registered in the cache."
+msgstr "キャッシュに登録されているクエリの数"
+
+#: server_status.php:124
+msgid "The total number of blocks in the query cache."
+msgstr "クエリキャッシュの総ブロック数"
+
+#: server_status.php:125
+msgctxt "$strShowStatusReset"
+msgid "Reset"
+msgstr "リセット"
+
+#: server_status.php:126
+msgid "The status of failsafe replication (not yet implemented)."
+msgstr "フェイルセーフレプリケーションの状態 (未実装)"
+
+#: server_status.php:127
+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 ""
+"インデックスを利用しなかった結合の数。この値が 0 でない場合はテーブルのイン"
+"デックスをよく確認してください"
+
+#: server_status.php:128
+msgid "The number of joins that used a range search on a reference table."
+msgstr "参照テーブルで範囲検索をした結合の数"
+
+#: server_status.php:129
+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 ""
+"キーが指定されていなかったため一行ずつキーが使われているか確認した結合の数"
+"(0 でない場合はテーブルのインデックスをよく確認してください)"
+
+#: server_status.php:130
+msgid ""
+"The number of joins that used ranges on the first table. (It's normally not "
+"critical even if this is big.)"
+msgstr ""
+"最初のテーブルで範囲指定された結合の数 (この値は大きくてもふつう問題ありませ"
+"ん)"
+
+#: server_status.php:131
+msgid "The number of joins that did a full scan of the first table."
+msgstr "最初のテーブルをフルスキャンした結合の数"
+
+#: server_status.php:132
+msgid "The number of temporary tables currently open by the slave SQL thread."
+msgstr "スレーブの SQL スレッドが現在開いている一時テーブルの数"
+
+#: server_status.php:133
+msgid ""
+"Total (since startup) number of times the replication slave SQL thread has "
+"retried transactions."
+msgstr ""
+"レプリケーションスレーブの SQL スレッドがトランザクションを再試行した回数(起"
+"動時からの合計)"
+
+#: server_status.php:134
+msgid "This is ON if this server is a slave that is connected to a master."
+msgstr "このサーバがマスターに接続するスレーブである場合は ON になります"
+
+#: server_status.php:135
+msgid ""
+"The number of threads that have taken more than slow_launch_time seconds to "
+"create."
+msgstr "slow_launch_time で指定された秒数以上に作成時間がかかったスレッドの数"
+
+#: server_status.php:136
+msgid ""
+"The number of queries that have taken more than long_query_time seconds."
+msgstr "long_query_time で指定された秒数以上に時間のかかったクエリの数"
+
+#: server_status.php:137
+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 ""
+"ソートアルゴリズムが実行しなければならなかったマージの回数。この値が高い場合"
+"は sort_buffer_size システム変数の値を増やした方がよいでしょう"
+
+#: server_status.php:138
+msgid "The number of sorts that were done with ranges."
+msgstr "範囲指定付きでソートが行われた回数"
+
+#: server_status.php:139
+msgid "The number of sorted rows."
+msgstr "ソート済の行数"
+
+#: server_status.php:140
+msgid "The number of sorts that were done by scanning the table."
+msgstr "テーブルをスキャンしたときに実行されたソートの回数"
+
+#: server_status.php:141
+msgid "The number of times that a table lock was acquired immediately."
+msgstr "テーブルロックをすぐに取得できた回数"
+
+#: server_status.php:142
+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 "
+"should first optimize your queries, and then either split your table or "
+"tables or use replication."
+msgstr ""
+"テーブルロックをすぐに取得できずウェイトが発生した回数。この値が高く、パ"
+"フォーマンスに問題が生じている場合は、まずクエリを最適化してください。それで"
+"もだめならテーブルを分割するか、レプリケーションを利用してください"
+
+#: server_status.php:143
+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 ""
+"スレッドキャッシュ内のスレッド数。キャッシュのヒット率は Threads_created/"
+"Connections で計算できます。この値が赤くなっている場合は thread_cache_size を"
+"大きくしてください"
+
+#: server_status.php:144
+msgid "The number of currently open connections."
+msgstr "現在開いている接続の数"
+
+#: server_status.php:145
+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 "
+"doesn't give a notable performance improvement if you have a good thread "
+"implementation.)"
+msgstr ""
+"接続処理のために作成されたスレッドの数。Threads_created が大きい場合は "
+"thread_cache_size の値を増やした方がよいかもしれません (スレッドの実装に問題"
+"がない場合はふつうあまりパフォーマンスは向上しません)"
+
+#: server_status.php:146
+msgid "The number of threads that are not sleeping."
+msgstr "スリープしていないスレッドの数"
+
+#: server_status.php:157
msgid "Runtime Information"
msgstr "ランタイム情報"
-#: server_status.php:250
+#: server_status.php:361
msgid "Handler"
msgstr "ハンドラ"
-#: server_status.php:251
+#: server_status.php:362
msgid "Query cache"
msgstr "クエリキャッシュ"
-#: server_status.php:252
+#: server_status.php:363
msgid "Threads"
msgstr "スレッド"
-#: server_status.php:254
+#: server_status.php:365
msgid "Temporary data"
msgstr "一時データ"
-#: server_status.php:255
+#: server_status.php:366
msgid "Delayed inserts"
msgstr "遅延インサート"
-#: server_status.php:256
+#: server_status.php:367
msgid "Key cache"
msgstr "キーキャッシュ"
-#: server_status.php:257
+#: server_status.php:368
msgid "Joins"
msgstr "結合"
-#: server_status.php:259
+#: server_status.php:370
msgid "Sorting"
msgstr "ソート中"
-#: server_status.php:261
+#: server_status.php:372
msgid "Transaction coordinator"
msgstr "トランザクションコーディネータ"
-#: server_status.php:271
+#: server_status.php:382
msgid "Flush (close) all tables"
msgstr "すべてのテーブルをフラッシュする(閉じる)"
-#: server_status.php:273
+#: server_status.php:384
msgid "Show open tables"
msgstr "開いているテーブルを表示する"
-#: server_status.php:278
+#: server_status.php:389
msgid "Show slave hosts"
msgstr "スレーブホストを表示する"
-#: server_status.php:284
+#: server_status.php:395
msgid "Show slave status"
msgstr "スレーブの状態を表示する"
-#: server_status.php:289
+#: server_status.php:400
msgid "Flush query cache"
msgstr "クエリキャッシュをフラッシュする"
-#: server_status.php:294
+#: server_status.php:405
msgid "Show processes"
msgstr "MySQL プロセスの表示"
-#: server_status.php:344
+#: server_status.php:455
#, fuzzy
#| msgid "Reset"
msgctxt "for Show status"
msgid "Reset"
msgstr "リセット"
-#: server_status.php:350
+#: server_status.php:461
#, php-format
msgid "This MySQL server has been running for %s. It started up on %s."
msgstr "この MySQL サーバの稼働時間: %s (起動時刻: %s)"
-#: server_status.php:360
+#: server_status.php:471
msgid ""
"This MySQL server works as master and slave in replication"
"b> process."
msgstr ""
-#: server_status.php:362
+#: server_status.php:473
msgid "This MySQL server works as master in replication process."
msgstr ""
-#: server_status.php:364
+#: server_status.php:475
msgid "This MySQL server works as slave in replication process."
msgstr ""
-#: server_status.php:366
+#: server_status.php:477
msgid ""
"For further information about replication status on the server, please visit "
"the replication section."
msgstr ""
-#: server_status.php:383
+#: server_status.php:494
msgid ""
"Server traffic: These tables show the network traffic statistics of "
"this MySQL server since its startup."
@@ -5888,11 +5898,11 @@ msgstr ""
"サーバトラフィック: これらの表は MySQL サーバ起動以後のネットワークト"
"ラフィックの統計です"
-#: server_status.php:388
+#: server_status.php:499
msgid "Traffic"
msgstr "トラフィック"
-#: server_status.php:388
+#: server_status.php:499
msgid ""
"On a busy server, the byte counters may overrun, so those statistics as "
"reported by the MySQL server may be incorrect."
@@ -5900,36 +5910,36 @@ msgstr ""
"処理が集中するサーバではバイトカウンタが超過することがあるため、MySQL サーバ"
"が報告してくる統計は不正確なことがあります"
-#: server_status.php:389 server_status.php:434 server_status.php:497
-#: server_status.php:555
+#: server_status.php:500 server_status.php:545 server_status.php:608
+#: server_status.php:666
msgid "per hour"
msgstr "/時"
-#: server_status.php:394
+#: server_status.php:505
msgid "Received"
msgstr "受信済"
-#: server_status.php:404
+#: server_status.php:515
msgid "Sent"
msgstr "送信済"
-#: server_status.php:433
+#: server_status.php:544
msgid "Connections"
msgstr "接続"
-#: server_status.php:440
+#: server_status.php:551
msgid "max. concurrent connections"
msgstr "最大同時接続数"
-#: server_status.php:447
+#: server_status.php:558
msgid "Failed attempts"
msgstr "失敗回数"
-#: server_status.php:461
+#: server_status.php:572
msgid "Aborted"
msgstr "中断"
-#: server_status.php:490
+#: server_status.php:601
#, php-format
msgid ""
"Query statistics: Since its startup, %s queries have been sent to the "
@@ -5937,19 +5947,19 @@ msgid ""
msgstr ""
"クエリ統計: 起動時から数えて %s 個のクエリをサーバに送信しました"
-#: server_status.php:498
+#: server_status.php:609
msgid "per minute"
msgstr "/分"
-#: server_status.php:499
+#: server_status.php:610
msgid "per second"
msgstr "/秒"
-#: server_status.php:554
+#: server_status.php:665
msgid "Query type"
msgstr "クエリ種別"
-#: server_status.php:721
+#: server_status.php:832
msgid "Replication status"
msgstr ""
diff --git a/po/ka.po b/po/ka.po
index 92d9f1e9f..2458c9489 100755
--- a/po/ka.po
+++ b/po/ka.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-06-04 16:07-0400\n"
+"POT-Creation-Date: 2010-06-08 12:32-0400\n"
"PO-Revision-Date: 2010-03-12 09:14+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: georgian \n"
@@ -14,11 +14,11 @@ msgstr ""
"X-Generator: Translate Toolkit 1.5.3\n"
#: browse_foreigners.php:38 browse_foreigners.php:59
-#: libraries/display_tbl.lib.php:417 server_privileges.php:1475
+#: libraries/display_tbl.lib.php:417 server_privileges.php:1514
msgid "Show all"
msgstr "ყველას ჩვენება"
-#: browse_foreigners.php:82 libraries/common.lib.php:2304
+#: browse_foreigners.php:82 libraries/common.lib.php:2313
#: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:394
#: libraries/export/pdf.php:147 pdf_schema.php:283 pdf_schema.php:1123
#: pdf_schema.php:1139
@@ -37,8 +37,8 @@ msgstr ""
#: browse_foreigners.php:150 db_structure.php:79 db_structure.php:80
#: db_structure.php:91 db_structure.php:93 db_structure.php:104
-#: db_structure.php:106 libraries/common.lib.php:2822
-#: libraries/common.lib.php:2829 libraries/db_links.inc.php:75
+#: db_structure.php:106 libraries/common.lib.php:2831
+#: libraries/common.lib.php:2838 libraries/db_links.inc.php:75
#: libraries/tbl_links.inc.php:63
msgid "Search"
msgstr "ძებნა"
@@ -48,7 +48,7 @@ msgstr "ძებნა"
#: db_structure.php:567 js/messages.php:48 libraries/Config.class.php:1046
#: libraries/Theme_Manager.class.php:311
#: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719
-#: libraries/common.lib.php:1333 libraries/common.lib.php:2279
+#: libraries/common.lib.php:1335 libraries/common.lib.php:2288
#: libraries/display_change_password.lib.php:82
#: libraries/display_create_table.lib.php:63
#: libraries/display_export.lib.php:275 libraries/display_import.lib.php:276
@@ -59,9 +59,9 @@ msgstr "ძებნა"
#: libraries/sql_query_form.lib.php:552 libraries/tbl_properties.inc.php:782
#: main.php:128 navigation.php:237 pdf_pages.php:292 pdf_pages.php:328
#: pdf_pages.php:530 pmd_pdf.php:116 server_binlog.php:142
-#: server_privileges.php:625 server_privileges.php:1585
-#: server_privileges.php:1932 server_privileges.php:1979
-#: server_privileges.php:2018 server_replication.php:235
+#: server_privileges.php:664 server_privileges.php:1624
+#: server_privileges.php:1971 server_privileges.php:2018
+#: server_privileges.php:2057 server_replication.php:235
#: server_replication.php:318 server_replication.php:341
#: server_synchronize.php:1209 tbl_change.php:330 tbl_change.php:1174
#: tbl_change.php:1211 tbl_indexes.php:254 tbl_operations.php:265
@@ -79,7 +79,7 @@ msgstr "Keyname"
#: browse_foreigners.php:169 browse_foreigners.php:171
#: server_collations.php:55 server_collations.php:67 server_engines.php:59
-#: server_status.php:628
+#: server_status.php:739
msgid "Description"
msgstr "აღწერილობა"
@@ -120,7 +120,7 @@ msgstr "სვეტების სახელები"
#: libraries/db_structure.lib.php:60 libraries/export/htmlword.php:245
#: libraries/export/latex.php:360 libraries/export/odt.php:297
#: libraries/export/texytext.php:234 libraries/tbl_properties.inc.php:100
-#: pdf_schema.php:1263 pdf_schema.php:1284 server_privileges.php:2031
+#: pdf_schema.php:1263 pdf_schema.php:1284 server_privileges.php:2070
#: tbl_change.php:287 tbl_change.php:314 tbl_printview.php:143
#: tbl_printview.php:313 tbl_select.php:136 tbl_structure.php:178
#: tbl_structure.php:659 tbl_tracking.php:274 tbl_tracking.php:321
@@ -164,9 +164,9 @@ msgstr "კომენტარები"
#: libraries/Index.class.php:386 libraries/export/htmlword.php:322
#: libraries/export/latex.php:430 libraries/export/odt.php:368
#: libraries/export/texytext.php:311 libraries/mult_submits.inc.php:263
-#: pdf_schema.php:1344 server_privileges.php:1529 server_privileges.php:1540
-#: server_privileges.php:1850 server_privileges.php:1855
-#: server_privileges.php:2148 sql.php:132 sql.php:194 tbl_printview.php:229
+#: pdf_schema.php:1344 server_privileges.php:1568 server_privileges.php:1579
+#: server_privileges.php:1889 server_privileges.php:1894
+#: server_privileges.php:2187 sql.php:132 sql.php:194 tbl_printview.php:229
#: tbl_structure.php:350 tbl_tracking.php:337 tbl_tracking.php:342
msgid "No"
msgstr "არა"
@@ -180,9 +180,9 @@ msgstr "არა"
#: libraries/mult_submits.inc.php:101 libraries/mult_submits.inc.php:106
#: libraries/mult_submits.inc.php:111 libraries/mult_submits.inc.php:262
#: libraries/mult_submits.inc.php:273 pdf_schema.php:1344
-#: server_databases.php:64 server_privileges.php:1526
-#: server_privileges.php:1540 server_privileges.php:1850
-#: server_privileges.php:1853 server_privileges.php:2148 sql.php:193
+#: server_databases.php:64 server_privileges.php:1565
+#: server_privileges.php:1579 server_privileges.php:1889
+#: server_privileges.php:1892 server_privileges.php:2187 sql.php:193
#: tbl_printview.php:229 tbl_structure.php:40 tbl_structure.php:350
#: tbl_tracking.php:335 tbl_tracking.php:340
msgid "Yes"
@@ -279,7 +279,7 @@ msgstr "Switch to copied database"
msgid "BLOB Repository"
msgstr "BLOB რეპოზიტორია"
-#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1350
+#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1352
#: libraries/server_links.inc.php:49 server_processlist.php:59
#: tbl_tracking.php:596 test/theme.php:101
msgid "Status"
@@ -342,8 +342,8 @@ msgstr "PDF გვერდების რედაქტირება"
#: db_printview.php:104 db_tracking.php:72 db_tracking.php:157
#: libraries/db_structure.lib.php:46 libraries/export/xml.php:328
-#: libraries/header.inc.php:126 pdf_pages.php:424 server_privileges.php:1626
-#: server_privileges.php:1682 server_privileges.php:1946
+#: libraries/header.inc.php:126 pdf_pages.php:424 server_privileges.php:1665
+#: server_privileges.php:1721 server_privileges.php:1985
#: server_synchronize.php:423 server_synchronize.php:866 tbl_tracking.php:592
#: test/theme.php:75
msgid "Table"
@@ -444,7 +444,7 @@ msgstr "Del"
#: db_qbe.php:370 db_qbe.php:451 db_qbe.php:522 db_qbe.php:553
#: libraries/display_import.lib.php:166 libraries/tbl_properties.inc.php:779
-#: server_privileges.php:258 tbl_change.php:1031 tbl_indexes.php:250
+#: server_privileges.php:297 tbl_change.php:1031 tbl_indexes.php:250
#: tbl_select.php:288
msgid "Or"
msgstr "ან"
@@ -478,7 +478,7 @@ msgstr "გამოიყენე ცხრილები"
msgid "SQL query on database %s:"
msgstr "SQL query on database %s:"
-#: db_qbe.php:934 libraries/common.lib.php:1223
+#: db_qbe.php:934 libraries/common.lib.php:1225
msgid "Submit Query"
msgstr "მოთხოვნის გაგზავნა"
@@ -517,7 +517,7 @@ msgstr "%s match(es) inside table %s"
#: db_search.php:267 db_structure.php:77 db_structure.php:78
#: db_structure.php:90 db_structure.php:92 db_structure.php:103
-#: db_structure.php:105 libraries/common.lib.php:2824
+#: db_structure.php:105 libraries/common.lib.php:2833
#: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50
#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:467
msgid "Browse"
@@ -564,26 +564,26 @@ msgstr "ველში:"
#: db_structure.php:81 db_structure.php:82 db_structure.php:94
#: db_structure.php:95 db_structure.php:107 db_structure.php:108
-#: libraries/common.lib.php:2823 libraries/sql_query_form.lib.php:334
+#: libraries/common.lib.php:2832 libraries/sql_query_form.lib.php:334
#: libraries/sql_query_form.lib.php:337 libraries/tbl_links.inc.php:76
msgid "Insert"
msgstr "ჩასმა"
#: db_structure.php:83 db_structure.php:96 db_structure.php:109
-#: libraries/common.lib.php:2820 libraries/common.lib.php:2827
+#: libraries/common.lib.php:2829 libraries/common.lib.php:2836
#: libraries/db_links.inc.php:63 libraries/export/htmlword.php:23
#: libraries/export/latex.php:33 libraries/export/latex.php:337
#: libraries/export/odt.php:32 libraries/export/sql.php:60
#: libraries/export/texytext.php:23 libraries/import.lib.php:1104
#: libraries/tbl_links.inc.php:56 pmd_general.php:134
-#: server_privileges.php:554 server_replication.php:315 tbl_tracking.php:269
+#: server_privileges.php:593 server_replication.php:315 tbl_tracking.php:269
msgid "Structure"
msgstr "სტრუქტურა"
#: db_structure.php:84 db_structure.php:85 db_structure.php:97
#: db_structure.php:98 db_structure.php:110 db_structure.php:111
#: db_structure.php:545 db_structure.php:546 db_tracking.php:91
-#: libraries/Index.class.php:483 libraries/common.lib.php:1654
+#: libraries/Index.class.php:483 libraries/common.lib.php:1656
#: libraries/db_links.inc.php:100 libraries/mult_submits.inc.php:36
#: libraries/mult_submits.inc.php:73 libraries/tbl_links.inc.php:127
#: server_databases.php:352 tbl_structure.php:27 tbl_structure.php:151
@@ -593,7 +593,7 @@ msgstr "Drop"
#: db_structure.php:86 db_structure.php:87 db_structure.php:99
#: db_structure.php:100 db_structure.php:112 db_structure.php:113
-#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1653
+#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1655
#: libraries/mult_submits.inc.php:39 libraries/tbl_links.inc.php:105
msgid "Empty"
msgstr "ცარიელი"
@@ -637,7 +637,7 @@ msgstr "ხედო"
#: db_structure.php:485 libraries/db_structure.lib.php:49
#: libraries/server_links.inc.php:70 server_replication.php:33
-#: server_replication.php:164 server_status.php:258
+#: server_replication.php:164 server_status.php:369
msgid "Replication"
msgstr "რეპლიკაცია"
@@ -653,20 +653,20 @@ msgstr "%s is the default storage engine on this MySQL server."
#: db_structure.php:524 db_structure.php:541 db_structure.php:542
#: libraries/display_tbl.lib.php:2081 libraries/display_tbl.lib.php:2086
#: libraries/mult_submits.inc.php:16 server_databases.php:346
-#: server_databases.php:351 server_privileges.php:1557 tbl_structure.php:455
+#: server_databases.php:351 server_privileges.php:1596 tbl_structure.php:455
#: tbl_structure.php:464
msgid "With selected:"
msgstr "With selected:"
#: db_structure.php:527 libraries/display_tbl.lib.php:2076
-#: server_databases.php:348 server_privileges.php:530
-#: server_privileges.php:1560 tbl_structure.php:458
+#: server_databases.php:348 server_privileges.php:569
+#: server_privileges.php:1599 tbl_structure.php:458
msgid "Check All"
msgstr "ყველას შემოწმება"
#: db_structure.php:531 libraries/display_tbl.lib.php:2077
#: libraries/replication_gui.lib.php:33 server_databases.php:350
-#: server_privileges.php:533 server_privileges.php:1564 tbl_structure.php:462
+#: server_privileges.php:572 server_privileges.php:1603 tbl_structure.php:462
msgid "Uncheck All"
msgstr "მონიშნვის მოხსნა ყველასთვის"
@@ -704,7 +704,7 @@ msgstr "Analyze table"
#: libraries/display_export.lib.php:83 libraries/display_tbl.lib.php:2094
#: libraries/display_tbl.lib.php:2225 libraries/mult_submits.inc.php:62
#: libraries/server_links.inc.php:84 libraries/tbl_links.inc.php:82
-#: pmd_pdf.php:84 pmd_pdf.php:109 server_privileges.php:1341
+#: pmd_pdf.php:84 pmd_pdf.php:109 server_privileges.php:1380
#: setup/frames/menu.inc.php:22 tbl_row_action.php:59
msgid "Export"
msgstr "ექსპორტი"
@@ -723,8 +723,8 @@ msgstr "დაბლოკილი ცხრილების გამოტ
#: libraries/export/sql.php:342 libraries/export/texytext.php:84
#: libraries/export/xml.php:255 libraries/header.inc.php:106
#: libraries/header_printview.inc.php:58 server_databases.php:169
-#: server_privileges.php:1621 server_privileges.php:1682
-#: server_privileges.php:1940 server_processlist.php:56
+#: server_privileges.php:1660 server_privileges.php:1721
+#: server_privileges.php:1979 server_processlist.php:56
#: server_synchronize.php:1179 server_synchronize.php:1183
#: tbl_tracking.php:591 test/theme.php:65
msgid "Database"
@@ -746,8 +746,8 @@ msgstr ""
#: db_tracking.php:77 libraries/Index.class.php:440
#: libraries/db_structure.lib.php:53 server_databases.php:203
-#: server_privileges.php:1503 server_privileges.php:1686
-#: server_privileges.php:2034 tbl_structure.php:187
+#: server_privileges.php:1542 server_privileges.php:1725
+#: server_privileges.php:2073 tbl_structure.php:187
msgid "Action"
msgstr "მოქმედება"
@@ -951,11 +951,11 @@ msgstr "ჰოსტის სახელი არაა შეყვანი
msgid "The user name is empty!"
msgstr "მომხმარებლის სახელი ცარიელია!"
-#: js/messages.php:44 server_privileges.php:1197 user_password.php:70
+#: js/messages.php:44 server_privileges.php:1236 user_password.php:70
msgid "The password is empty!"
msgstr "პაროლი ცარიელია!"
-#: js/messages.php:45 server_privileges.php:1195 user_password.php:73
+#: js/messages.php:45 server_privileges.php:1234 user_password.php:73
msgid "The passwords aren't the same!"
msgstr "პაროლები არ ემთხვევა!"
@@ -1034,8 +1034,8 @@ msgid "Prev"
msgstr "წინა"
#. l10n: Display text for next month link in calendar
-#: js/messages.php:77 libraries/common.lib.php:2344
-#: libraries/common.lib.php:2347 libraries/display_tbl.lib.php:338
+#: js/messages.php:77 libraries/common.lib.php:2353
+#: libraries/common.lib.php:2356 libraries/display_tbl.lib.php:338
#: server_binlog.php:205 server_binlog.php:207 tbl_printview.php:424
#: tbl_structure.php:801
msgid "Next"
@@ -1111,27 +1111,27 @@ msgid "December"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:97 libraries/common.lib.php:1555
+#: js/messages.php:97 libraries/common.lib.php:1557
msgid "Jan"
msgstr "იან"
#. l10n: Short month name
-#: js/messages.php:99 libraries/common.lib.php:1557
+#: js/messages.php:99 libraries/common.lib.php:1559
msgid "Feb"
msgstr "თებ"
#. l10n: Short month name
-#: js/messages.php:101 libraries/common.lib.php:1559
+#: js/messages.php:101 libraries/common.lib.php:1561
msgid "Mar"
msgstr "მარ"
#. l10n: Short month name
-#: js/messages.php:103 libraries/common.lib.php:1561
+#: js/messages.php:103 libraries/common.lib.php:1563
msgid "Apr"
msgstr "აპრ"
#. l10n: Short month name
-#: js/messages.php:105 libraries/common.lib.php:1563
+#: js/messages.php:105 libraries/common.lib.php:1565
#, fuzzy
#| msgid "May"
msgctxt "Short month name"
@@ -1139,37 +1139,37 @@ msgid "May"
msgstr "მაი"
#. l10n: Short month name
-#: js/messages.php:107 libraries/common.lib.php:1565
+#: js/messages.php:107 libraries/common.lib.php:1567
msgid "Jun"
msgstr "ივნ"
#. l10n: Short month name
-#: js/messages.php:109 libraries/common.lib.php:1567
+#: js/messages.php:109 libraries/common.lib.php:1569
msgid "Jul"
msgstr "ივლ"
#. l10n: Short month name
-#: js/messages.php:111 libraries/common.lib.php:1569
+#: js/messages.php:111 libraries/common.lib.php:1571
msgid "Aug"
msgstr "აგვ"
#. l10n: Short month name
-#: js/messages.php:113 libraries/common.lib.php:1571
+#: js/messages.php:113 libraries/common.lib.php:1573
msgid "Sep"
msgstr "სექ"
#. l10n: Short month name
-#: js/messages.php:115 libraries/common.lib.php:1573
+#: js/messages.php:115 libraries/common.lib.php:1575
msgid "Oct"
msgstr "ოქტ"
#. l10n: Short month name
-#: js/messages.php:117 libraries/common.lib.php:1575
+#: js/messages.php:117 libraries/common.lib.php:1577
msgid "Nov"
msgstr "ნოე"
#. l10n: Short month name
-#: js/messages.php:119 libraries/common.lib.php:1577
+#: js/messages.php:119 libraries/common.lib.php:1579
msgid "Dec"
msgstr "დეკ"
@@ -1210,37 +1210,37 @@ msgid "Saturday"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:132 libraries/common.lib.php:1580
+#: js/messages.php:132 libraries/common.lib.php:1582
msgid "Sun"
msgstr "კვი"
#. l10n: Short week day name
-#: js/messages.php:134 libraries/common.lib.php:1582
+#: js/messages.php:134 libraries/common.lib.php:1584
msgid "Mon"
msgstr "ორშ"
#. l10n: Short week day name
-#: js/messages.php:136 libraries/common.lib.php:1584
+#: js/messages.php:136 libraries/common.lib.php:1586
msgid "Tue"
msgstr "სამ"
#. l10n: Short week day name
-#: js/messages.php:138 libraries/common.lib.php:1586
+#: js/messages.php:138 libraries/common.lib.php:1588
msgid "Wed"
msgstr "ოთხ"
#. l10n: Short week day name
-#: js/messages.php:140 libraries/common.lib.php:1588
+#: js/messages.php:140 libraries/common.lib.php:1590
msgid "Thu"
msgstr "ხუთ"
#. l10n: Short week day name
-#: js/messages.php:142 libraries/common.lib.php:1590
+#: js/messages.php:142 libraries/common.lib.php:1592
msgid "Fri"
msgstr "პარ"
#. l10n: Short week day name
-#: js/messages.php:144 libraries/common.lib.php:1592
+#: js/messages.php:144 libraries/common.lib.php:1594
msgid "Sat"
msgstr "შაბ"
@@ -1390,7 +1390,7 @@ msgid "Comment"
msgstr "კომენტარი"
#: libraries/Index.class.php:466 libraries/common.lib.php:616
-#: libraries/common.lib.php:1199 libraries/display_tbl.lib.php:1117
+#: libraries/common.lib.php:1201 libraries/display_tbl.lib.php:1117
#: libraries/import.lib.php:1087 libraries/import.lib.php:1111
#: pdf_pages.php:285 setup/frames/index.inc.php:124
#: setup/lib/messages.inc.php:352 tbl_row_action.php:69
@@ -1416,7 +1416,7 @@ msgstr ""
"removed."
#: libraries/List_Database.class.php:431 libraries/server_links.inc.php:41
-#: server_databases.php:88 server_privileges.php:1621
+#: server_databases.php:88 server_privileges.php:1660
#: setup/lib/messages.inc.php:110 test/theme.php:93
msgid "Databases"
msgstr "მონაცემთა ბაზები"
@@ -1752,7 +1752,7 @@ msgid "Documentation"
msgstr "დოკუმენტაცია"
#: libraries/common.lib.php:595 libraries/header_printview.inc.php:61
-#: server_processlist.php:60 server_status.php:247
+#: server_processlist.php:60 server_status.php:358
msgid "SQL query"
msgstr "SQL მოთხოვნა"
@@ -1768,130 +1768,130 @@ msgstr "SQL-ის ახსნა"
msgid "Skip Explain SQL"
msgstr "Skip Explain SQL"
-#: libraries/common.lib.php:1212
+#: libraries/common.lib.php:1214
msgid "Without PHP Code"
msgstr "PHP კოდის გარეშე"
-#: libraries/common.lib.php:1215 setup/lib/messages.inc.php:355
+#: libraries/common.lib.php:1217 setup/lib/messages.inc.php:355
msgid "Create PHP Code"
msgstr "PHP კოდის შექმნა"
-#: libraries/common.lib.php:1233 server_status.php:341
+#: libraries/common.lib.php:1235 server_status.php:452
#: setup/lib/messages.inc.php:354
msgid "Refresh"
msgstr "განახლება"
-#: libraries/common.lib.php:1242
+#: libraries/common.lib.php:1244
msgid "Skip Validate SQL"
msgstr "Skip Validate SQL"
-#: libraries/common.lib.php:1245 setup/lib/messages.inc.php:356 sql.php:518
+#: libraries/common.lib.php:1247 setup/lib/messages.inc.php:356 sql.php:518
msgid "Validate SQL"
msgstr "Validate SQL"
-#: libraries/common.lib.php:1276
+#: libraries/common.lib.php:1278
msgid "Inline edit of this query"
msgstr ""
-#: libraries/common.lib.php:1278
+#: libraries/common.lib.php:1280
#, fuzzy
#| msgid "Engines"
msgid "Inline"
msgstr "ძრავები"
-#: libraries/common.lib.php:1332 libraries/common.lib.php:1347
+#: libraries/common.lib.php:1334 libraries/common.lib.php:1349
msgid "Profiling"
msgstr "Profiling"
-#: libraries/common.lib.php:1351 libraries/tbl_triggers.lib.php:28
+#: libraries/common.lib.php:1353 libraries/tbl_triggers.lib.php:28
#: server_processlist.php:58
msgid "Time"
msgstr "დრო"
#. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "B"
msgstr "B"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "KiB"
msgstr "KiB"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "MiB"
msgstr "MiB"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "GiB"
msgstr "GiB"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "TiB"
msgstr "TiB"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "PiB"
msgstr "PiB"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "EiB"
msgstr "EiB"
#. l10n: Thousands separator
-#: libraries/common.lib.php:1417
+#: libraries/common.lib.php:1419
msgid ","
msgstr ","
#. l10n: Decimal separator
-#: libraries/common.lib.php:1419
+#: libraries/common.lib.php:1421
msgid "."
msgstr "."
#. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string
-#: libraries/common.lib.php:1596
+#: libraries/common.lib.php:1598
#: libraries/transformations/text_plain__dateformat.inc.php:34
msgid "%B %d, %Y at %I:%M %p"
msgstr "%B %d, %Y, %I:%M %p"
-#: libraries/common.lib.php:1898
+#: libraries/common.lib.php:1907
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "%s დღე, %s საათი, %s წუთი და %s წამი"
-#: libraries/common.lib.php:2313 libraries/common.lib.php:2316
-#: libraries/display_tbl.lib.php:290 server_status.php:608
+#: libraries/common.lib.php:2322 libraries/common.lib.php:2325
+#: libraries/display_tbl.lib.php:290 server_status.php:719
msgid "Begin"
msgstr "დასაწყისი"
-#: libraries/common.lib.php:2314 libraries/common.lib.php:2317
+#: libraries/common.lib.php:2323 libraries/common.lib.php:2326
#: libraries/display_tbl.lib.php:291 server_binlog.php:168
#: server_binlog.php:170
msgid "Previous"
msgstr "წინა"
-#: libraries/common.lib.php:2345 libraries/common.lib.php:2348
+#: libraries/common.lib.php:2354 libraries/common.lib.php:2357
#: libraries/display_tbl.lib.php:353
msgid "End"
msgstr "დასასრული"
-#: libraries/common.lib.php:2421
+#: libraries/common.lib.php:2430
#, php-format
msgid "Jump to database "%s"."
msgstr "Jump to database "%s"."
-#: libraries/common.lib.php:2441
+#: libraries/common.lib.php:2450
#, 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/common.lib.php:2821 libraries/common.lib.php:2828
+#: libraries/common.lib.php:2830 libraries/common.lib.php:2837
#: libraries/db_links.inc.php:68 libraries/export/sql.php:25
#: libraries/import/sql.php:18 libraries/server_links.inc.php:45
#: libraries/tbl_links.inc.php:60 querywindow.php:99 test/theme.php:97
msgid "SQL"
msgstr "SQL"
-#: libraries/common.lib.php:2830 libraries/db_links.inc.php:104
+#: libraries/common.lib.php:2839 libraries/db_links.inc.php:104
#: libraries/tbl_links.inc.php:95 libraries/tbl_links.inc.php:117
#: view_operations.php:89
msgid "Operations"
@@ -1947,8 +1947,8 @@ msgid "Import"
msgstr "შემოტანა"
#: libraries/db_links.inc.php:111 libraries/server_links.inc.php:66
-#: server_privileges.php:72 server_privileges.php:1683
-#: server_privileges.php:2032 test/theme.php:117
+#: server_privileges.php:111 server_privileges.php:1722
+#: server_privileges.php:2071 test/theme.php:117
msgid "Privileges"
msgstr "პრივილეგიები"
@@ -1996,22 +1996,22 @@ msgid "Change password"
msgstr "პაროლის შეცვლა"
#: libraries/display_change_password.lib.php:35
-#: libraries/replication_gui.lib.php:345 server_privileges.php:768
+#: libraries/replication_gui.lib.php:345 server_privileges.php:807
msgid "No Password"
msgstr "პაროლი არაა"
#: libraries/display_change_password.lib.php:41
#: libraries/replication_gui.lib.php:59 libraries/replication_gui.lib.php:60
#: libraries/replication_gui.lib.php:335 libraries/replication_gui.lib.php:339
-#: libraries/replication_gui.lib.php:349 server_privileges.php:757
-#: server_privileges.php:761 server_privileges.php:772
-#: server_privileges.php:1499 server_synchronize.php:1175
+#: libraries/replication_gui.lib.php:349 server_privileges.php:796
+#: server_privileges.php:800 server_privileges.php:811
+#: server_privileges.php:1538 server_synchronize.php:1175
msgid "Password"
msgstr "პაროლი"
#: libraries/display_change_password.lib.php:46
#: libraries/replication_gui.lib.php:353 libraries/replication_gui.lib.php:356
-#: server_privileges.php:776 server_privileges.php:779
+#: server_privileges.php:815 server_privileges.php:818
msgid "Re-type"
msgstr "Re-type"
@@ -2026,12 +2026,12 @@ msgid "MySQL 4.0 compatible"
msgstr "MySQL 4.0-თან თავსებადი"
#: libraries/display_change_password.lib.php:72
-#: libraries/replication_gui.lib.php:360 server_privileges.php:783
+#: libraries/replication_gui.lib.php:360 server_privileges.php:822
msgid "Generate Password"
msgstr "პაროლის დაგენერირება"
#: libraries/display_change_password.lib.php:75
-#: libraries/replication_gui.lib.php:363 server_privileges.php:786
+#: libraries/replication_gui.lib.php:363 server_privileges.php:825
msgid "Generate"
msgstr "დაგენერირება"
@@ -2044,8 +2044,8 @@ msgstr "ახალი მონაცემთა ბაზის შექმ
msgid "Create"
msgstr "შექმნა"
-#: libraries/display_create_database.lib.php:40 server_privileges.php:74
-#: server_privileges.php:1388 server_replication.php:35
+#: libraries/display_create_database.lib.php:40 server_privileges.php:113
+#: server_privileges.php:1427 server_replication.php:35
msgid "No Privileges"
msgstr "პრივილეგიები არაა"
@@ -2136,7 +2136,7 @@ msgstr "შეკუმშვა"
#: libraries/display_export.lib.php:240 libraries/display_import.lib.php:197
#: libraries/display_import.lib.php:210 libraries/display_tbl.lib.php:530
#: libraries/export/sql.php:868 libraries/tbl_properties.inc.php:575
-#: server_privileges.php:1836 server_processlist.php:75
+#: server_privileges.php:1875 server_processlist.php:75
msgid "None"
msgstr "არაა"
@@ -2464,7 +2464,7 @@ msgstr ""
msgid "Buffer Pool"
msgstr "Buffer Pool"
-#: libraries/engines/innodb.lib.php:145 server_status.php:306
+#: libraries/engines/innodb.lib.php:145 server_status.php:417
msgid "InnoDB Status"
msgstr "InnoDB-ის მდგომარეობა"
@@ -2473,8 +2473,8 @@ msgid "Buffer Pool Usage"
msgstr "Buffer Pool Usage"
#: libraries/engines/innodb.lib.php:194 server_databases.php:137
-#: server_databases.php:305 server_status.php:414 server_status.php:475
-#: server_status.php:496 tbl_printview.php:351 tbl_structure.php:696
+#: server_databases.php:305 server_status.php:525 server_status.php:586
+#: server_status.php:607 tbl_printview.php:351 tbl_structure.php:696
msgid "Total"
msgstr "სულ"
@@ -2831,7 +2831,7 @@ msgstr "Microsoft Word 2000"
#: libraries/export/latex.php:201 libraries/export/odt.php:48
#: libraries/export/sql.php:106 libraries/export/sql.php:868
#: libraries/export/texytext.php:27 server_databases.php:127
-#: server_privileges.php:537 server_replication.php:316 tbl_printview.php:317
+#: server_privileges.php:576 server_replication.php:316 tbl_printview.php:317
#: tbl_structure.php:665
msgid "Data"
msgstr "მონაცემები"
@@ -2881,9 +2881,9 @@ msgstr "MIME-ის ტიპი"
#: libraries/export/xml.php:102 libraries/header_printview.inc.php:57
#: libraries/replication_gui.lib.php:63 libraries/replication_gui.lib.php:174
#: libraries/replication_gui.lib.php:269 libraries/replication_gui.lib.php:272
-#: libraries/replication_gui.lib.php:329 server_privileges.php:692
-#: server_privileges.php:695 server_privileges.php:751
-#: server_privileges.php:1498 server_privileges.php:2030
+#: libraries/replication_gui.lib.php:329 server_privileges.php:731
+#: server_privileges.php:734 server_privileges.php:790
+#: server_privileges.php:1537 server_privileges.php:2069
#: server_processlist.php:55 server_synchronize.php:1159
msgid "Host"
msgstr "ჰოსტი"
@@ -3245,845 +3245,6 @@ msgstr "არაა"
msgid "Convert to Kana"
msgstr ""
-#. l10n: Text direction, use either ltr or rtl
-#: libraries/messages.inc.php:19
-msgid "ltr"
-msgstr "ltr"
-
-#: libraries/messages.inc.php:21
-msgid "Content of table __TABLE__"
-msgstr "Content of table __TABLE__"
-
-#: libraries/messages.inc.php:22
-msgid "(continued)"
-msgstr "(გაგრძელება)"
-
-#: libraries/messages.inc.php:23
-msgid "Structure of table __TABLE__"
-msgstr "Structure of table __TABLE__"
-
-#: libraries/messages.inc.php:25 server_privileges.php:227
-msgid "Includes all privileges except GRANT."
-msgstr "შეიცავს ყველა პრივილეგიას GRANT-ის გამოკლებით."
-
-#: libraries/messages.inc.php:26 server_privileges.php:153
-#: server_privileges.php:476
-msgid "Allows altering the structure of existing tables."
-msgstr "Allows altering the structure of existing tables."
-
-#: libraries/messages.inc.php:27 server_privileges.php:169
-#: server_privileges.php:482
-msgid "Allows altering and dropping stored routines."
-msgstr "Allows altering and dropping stored routines."
-
-#: libraries/messages.inc.php:28 server_privileges.php:145
-#: server_privileges.php:475
-msgid "Allows creating new databases and tables."
-msgstr "Allows creating new databases and tables."
-
-#: libraries/messages.inc.php:29 server_privileges.php:168
-#: server_privileges.php:481
-msgid "Allows creating stored routines."
-msgstr "Allows creating stored routines."
-
-#: libraries/messages.inc.php:30 server_privileges.php:475
-msgid "Allows creating new tables."
-msgstr "Allows creating new tables."
-
-#: libraries/messages.inc.php:31 server_privileges.php:156
-#: server_privileges.php:479
-msgid "Allows creating temporary tables."
-msgstr "Allows creating temporary tables."
-
-#: libraries/messages.inc.php:32 server_privileges.php:170
-#: server_privileges.php:515
-msgid "Allows creating, dropping and renaming user accounts."
-msgstr "Allows creating, dropping and renaming user accounts."
-
-#: libraries/messages.inc.php:33 server_privileges.php:160
-#: server_privileges.php:164 server_privileges.php:487
-#: server_privileges.php:491
-msgid "Allows creating new views."
-msgstr "Allows creating new views."
-
-#: libraries/messages.inc.php:34 server_privileges.php:144
-#: server_privileges.php:467
-msgid "Allows deleting data."
-msgstr "Allows deleting data."
-
-#: libraries/messages.inc.php:35 server_privileges.php:146
-#: server_privileges.php:478
-msgid "Allows dropping databases and tables."
-msgstr "Allows dropping databases and tables."
-
-#: libraries/messages.inc.php:36 server_privileges.php:478
-msgid "Allows dropping tables."
-msgstr "Allows dropping tables."
-
-#: libraries/messages.inc.php:37 server_privileges.php:161
-#: server_privileges.php:495
-msgid "Allows to set up events for the event scheduler"
-msgstr "Allows to set up events for the event scheduler"
-
-#: libraries/messages.inc.php:38 server_privileges.php:171
-#: server_privileges.php:483
-msgid "Allows executing stored routines."
-msgstr "Allows executing stored routines."
-
-#: libraries/messages.inc.php:39 server_privileges.php:150
-#: server_privileges.php:470
-msgid "Allows importing data from and exporting data into files."
-msgstr "Allows importing data from and exporting data into files."
-
-#: libraries/messages.inc.php:40 server_privileges.php:501
-msgid ""
-"Allows adding users and privileges without reloading the privilege tables."
-msgstr ""
-"Allows adding users and privileges without reloading the privilege tables."
-
-#: libraries/messages.inc.php:41 server_privileges.php:152
-#: server_privileges.php:477
-msgid "Allows creating and dropping indexes."
-msgstr "Allows creating and dropping indexes."
-
-#: libraries/messages.inc.php:42 server_privileges.php:142
-#: server_privileges.php:403 server_privileges.php:465
-msgid "Allows inserting and replacing data."
-msgstr "Allows inserting and replacing data."
-
-#: libraries/messages.inc.php:43 server_privileges.php:157
-#: server_privileges.php:510
-msgid "Allows locking tables for the current thread."
-msgstr "Allows locking tables for the current thread."
-
-#: libraries/messages.inc.php:44 server_privileges.php:607
-#: server_privileges.php:609
-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/messages.inc.php:45 server_privileges.php:595
-#: server_privileges.php:597
-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/messages.inc.php:46 server_privileges.php:601
-#: server_privileges.php:603
-msgid ""
-"Limits the number of commands that change any table or database the user may "
-"execute per hour."
-msgstr ""
-"Limits the number of commands that change any table or database the user may "
-"execute per hour."
-
-#: libraries/messages.inc.php:47 server_privileges.php:613
-#: server_privileges.php:615
-msgid "Limits the number of simultaneous connections the user may have."
-msgstr "Limits the number of simultaneous connections the user may have."
-
-#: libraries/messages.inc.php:48 server_privileges.php:149
-#: server_privileges.php:505
-msgid "Allows viewing processes of all users"
-msgstr "Allows viewing processes of all users"
-
-#: libraries/messages.inc.php:49 server_privileges.php:151
-#: server_privileges.php:409 server_privileges.php:511
-msgid "Has no effect in this MySQL version."
-msgstr "Has no effect in this MySQL version."
-
-#: libraries/messages.inc.php:50 server_privileges.php:147
-#: server_privileges.php:506
-msgid "Allows reloading server settings and flushing the server's caches."
-msgstr "Allows reloading server settings and flushing the server's caches."
-
-#: libraries/messages.inc.php:51 server_privileges.php:159
-#: server_privileges.php:513
-msgid "Allows the user to ask where the slaves / masters are."
-msgstr "Allows the user to ask where the slaves / masters are."
-
-#: libraries/messages.inc.php:52 server_privileges.php:158
-#: server_privileges.php:514
-msgid "Needed for the replication slaves."
-msgstr "Needed for the replication slaves."
-
-#: libraries/messages.inc.php:53 server_privileges.php:141
-#: server_privileges.php:400 server_privileges.php:464
-msgid "Allows reading data."
-msgstr "Allows reading data."
-
-#: libraries/messages.inc.php:54 server_privileges.php:154
-#: server_privileges.php:508
-msgid "Gives access to the complete list of databases."
-msgstr "Gives access to the complete list of databases."
-
-#: libraries/messages.inc.php:55 server_privileges.php:165
-#: server_privileges.php:167 server_privileges.php:480
-msgid "Allows performing SHOW CREATE VIEW queries."
-msgstr "Allows performing SHOW CREATE VIEW queries."
-
-#: libraries/messages.inc.php:56 server_privileges.php:148
-#: server_privileges.php:507
-msgid "Allows shutting down the server."
-msgstr "Allows shutting down the server."
-
-#: libraries/messages.inc.php:57 server_privileges.php:155
-#: server_privileges.php:504
-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 ""
-"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."
-
-#: libraries/messages.inc.php:58 server_privileges.php:162
-#: server_privileges.php:496
-msgid "Allows creating and dropping triggers"
-msgstr "Allows creating and dropping triggers"
-
-#: libraries/messages.inc.php:59 server_privileges.php:143
-#: server_privileges.php:406 server_privileges.php:466
-msgid "Allows changing data."
-msgstr "Allows changing data."
-
-#: libraries/messages.inc.php:60 server_privileges.php:221
-msgid "No privileges."
-msgstr "პრივილეგიები არაა."
-
-#: libraries/messages.inc.php:62
-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 ""
-"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."
-
-#: libraries/messages.inc.php:63
-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/messages.inc.php:64
-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 "
-"to increase the tmp_table_size value to cause temporary tables to be memory-"
-"based instead of disk-based."
-msgstr ""
-"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 "
-"to increase the tmp_table_size value to cause temporary tables to be memory-"
-"based instead of disk-based."
-
-#: libraries/messages.inc.php:65
-msgid "How many temporary files mysqld has created."
-msgstr "How many temporary files mysqld has created."
-
-#: libraries/messages.inc.php:66
-msgid ""
-"The number of in-memory temporary tables created automatically by the server "
-"while executing statements."
-msgstr ""
-"The number of in-memory temporary tables created automatically by the server "
-"while executing statements."
-
-#: libraries/messages.inc.php:67
-msgid ""
-"The number of rows written with INSERT DELAYED for which some error occurred "
-"(probably duplicate key)."
-msgstr ""
-"The number of rows written with INSERT DELAYED for which some error occurred "
-"(probably duplicate key)."
-
-#: libraries/messages.inc.php:68
-msgid ""
-"The number of INSERT DELAYED handler threads in use. Every different table "
-"on which one uses INSERT DELAYED gets its own thread."
-msgstr ""
-"The number of INSERT DELAYED handler threads in use. Every different table "
-"on which one uses INSERT DELAYED gets its own thread."
-
-#: libraries/messages.inc.php:69
-msgid "The number of INSERT DELAYED rows written."
-msgstr "The number of INSERT DELAYED rows written."
-
-#: libraries/messages.inc.php:70
-msgid "The number of executed FLUSH statements."
-msgstr "The number of executed FLUSH statements."
-
-#: libraries/messages.inc.php:71
-msgid "The number of internal COMMIT statements."
-msgstr "The number of internal COMMIT statements."
-
-#: libraries/messages.inc.php:72
-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/messages.inc.php:73
-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 ""
-"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."
-
-#: libraries/messages.inc.php:74
-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 ""
-"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."
-
-#: libraries/messages.inc.php:75
-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 ""
-"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/messages.inc.php:76
-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 ""
-"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."
-
-#: libraries/messages.inc.php:77
-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 ""
-"The number of requests to read the previous row in key order. This read "
-"method is mainly used to optimize ORDER BY ... DESC."
-
-#: libraries/messages.inc.php:78
-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 "
-"probably have a lot of queries that require MySQL to scan whole tables or "
-"you have joins that don't use keys properly."
-msgstr ""
-"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 "
-"probably have a lot of queries that require MySQL to scan whole tables or "
-"you have joins that don't use keys properly."
-
-#: libraries/messages.inc.php:79
-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 "
-"tables are not properly indexed or that your queries are not written to take "
-"advantage of the indexes you have."
-msgstr ""
-"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 "
-"tables are not properly indexed or that your queries are not written to take "
-"advantage of the indexes you have."
-
-#: libraries/messages.inc.php:80
-msgid "The number of internal ROLLBACK statements."
-msgstr "The number of internal ROLLBACK statements."
-
-#: libraries/messages.inc.php:81
-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/messages.inc.php:82
-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/messages.inc.php:83
-msgid "The number of pages containing data (dirty or clean)."
-msgstr "The number of pages containing data (dirty or clean)."
-
-#: libraries/messages.inc.php:84
-msgid "The number of pages currently dirty."
-msgstr "The number of pages currently dirty."
-
-#: libraries/messages.inc.php:85
-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/messages.inc.php:86
-msgid "The number of free pages."
-msgstr "The number of free pages."
-
-#: libraries/messages.inc.php:87
-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 ""
-"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."
-
-#: libraries/messages.inc.php:88
-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 "
-"be calculated as Innodb_buffer_pool_pages_total - "
-"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data."
-msgstr ""
-"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 "
-"be calculated as Innodb_buffer_pool_pages_total - "
-"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data."
-
-#: libraries/messages.inc.php:89
-msgid "Total size of buffer pool, in pages."
-msgstr "Total size of buffer pool, in pages."
-
-#: libraries/messages.inc.php:90
-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 ""
-"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/messages.inc.php:91
-msgid ""
-"The number of sequential read-aheads InnoDB initiated. This happens when "
-"InnoDB does a sequential full table scan."
-msgstr ""
-"The number of sequential read-aheads InnoDB initiated. This happens when "
-"InnoDB does a sequential full table scan."
-
-#: libraries/messages.inc.php:92
-msgid "The number of logical read requests InnoDB has done."
-msgstr "The number of logical read requests InnoDB has done."
-
-#: libraries/messages.inc.php:93
-msgid ""
-"The number of logical reads that InnoDB could not satisfy from buffer pool "
-"and had to do a single-page read."
-msgstr ""
-"The number of logical reads that InnoDB could not satisfy from buffer pool "
-"and had to do a single-page read."
-
-#: libraries/messages.inc.php:94
-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 "
-"available, it's necessary to wait for pages to be flushed first. This "
-"counter counts instances of these waits. If the buffer pool size was set "
-"properly, this value should be small."
-msgstr ""
-"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 "
-"available, it's necessary to wait for pages to be flushed first. This "
-"counter counts instances of these waits. If the buffer pool size was set "
-"properly, this value should be small."
-
-#: libraries/messages.inc.php:95
-msgid "The number writes done to the InnoDB buffer pool."
-msgstr "The number writes done to the InnoDB buffer pool."
-
-#: libraries/messages.inc.php:96
-msgid "The number of fsync() operations so far."
-msgstr "The number of fsync() operations so far."
-
-#: libraries/messages.inc.php:97
-msgid "The current number of pending fsync() operations."
-msgstr "The current number of pending fsync() operations."
-
-#: libraries/messages.inc.php:98
-msgid "The current number of pending reads."
-msgstr "The current number of pending reads."
-
-#: libraries/messages.inc.php:99
-msgid "The current number of pending writes."
-msgstr "The current number of pending writes."
-
-#: libraries/messages.inc.php:100
-msgid "The amount of data read so far, in bytes."
-msgstr "The amount of data read so far, in bytes."
-
-#: libraries/messages.inc.php:101
-msgid "The total number of data reads."
-msgstr "The total number of data reads."
-
-#: libraries/messages.inc.php:102
-msgid "The total number of data writes."
-msgstr "The total number of data writes."
-
-#: libraries/messages.inc.php:103
-msgid "The amount of data written so far, in bytes."
-msgstr "The amount of data written so far, in bytes."
-
-#: libraries/messages.inc.php:104
-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/messages.inc.php:105
-msgid "The number of doublewrite operations that have been performed."
-msgstr "The number of doublewrite operations that have been performed."
-
-#: libraries/messages.inc.php:106
-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 ""
-"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/messages.inc.php:107
-msgid "The number of log write requests."
-msgstr "The number of log write requests."
-
-#: libraries/messages.inc.php:108
-msgid "The number of physical writes to the log file."
-msgstr "The number of physical writes to the log file."
-
-#: libraries/messages.inc.php:109
-msgid "The number of fsync() writes done to the log file."
-msgstr "The number of fsync() writes done to the log file."
-
-#: libraries/messages.inc.php:110
-msgid "The number of pending log file fsyncs."
-msgstr "The number of pending log file fsyncs."
-
-#: libraries/messages.inc.php:111
-msgid "Pending log file writes."
-msgstr "Pending log file writes."
-
-#: libraries/messages.inc.php:112
-msgid "The number of bytes written to the log file."
-msgstr "The number of bytes written to the log file."
-
-#: libraries/messages.inc.php:113
-msgid "The number of pages created."
-msgstr "The number of pages created."
-
-#: libraries/messages.inc.php:114
-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 ""
-"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/messages.inc.php:115
-msgid "The number of pages read."
-msgstr "The number of pages read."
-
-#: libraries/messages.inc.php:116
-msgid "The number of pages written."
-msgstr "The number of pages written."
-
-#: libraries/messages.inc.php:117
-msgid "The number of row locks currently being waited for."
-msgstr "The number of row locks currently being waited for."
-
-#: libraries/messages.inc.php:118
-msgid "The average time to acquire a row lock, in milliseconds."
-msgstr "The average time to acquire a row lock, in milliseconds."
-
-#: libraries/messages.inc.php:119
-msgid "The total time spent in acquiring row locks, in milliseconds."
-msgstr "The total time spent in acquiring row locks, in milliseconds."
-
-#: libraries/messages.inc.php:120
-msgid "The maximum time to acquire a row lock, in milliseconds."
-msgstr "The maximum time to acquire a row lock, in milliseconds."
-
-#: libraries/messages.inc.php:121
-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/messages.inc.php:122
-msgid "The number of rows deleted from InnoDB tables."
-msgstr "The number of rows deleted from InnoDB tables."
-
-#: libraries/messages.inc.php:123
-msgid "The number of rows inserted in InnoDB tables."
-msgstr "The number of rows inserted in InnoDB tables."
-
-#: libraries/messages.inc.php:124
-msgid "The number of rows read from InnoDB tables."
-msgstr "The number of rows read from InnoDB tables."
-
-#: libraries/messages.inc.php:125
-msgid "The number of rows updated in InnoDB tables."
-msgstr "The number of rows updated in InnoDB tables."
-
-#: libraries/messages.inc.php:126
-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 ""
-"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/messages.inc.php:127
-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 ""
-"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/messages.inc.php:128
-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 ""
-"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."
-
-#: libraries/messages.inc.php:129
-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/messages.inc.php:130
-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 ""
-"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."
-
-#: libraries/messages.inc.php:131
-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/messages.inc.php:132
-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/messages.inc.php:133
-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 ""
-"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."
-
-#: libraries/messages.inc.php:134
-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/messages.inc.php:135
-msgid ""
-"The number of tables that have been opened. If opened tables is big, your "
-"table cache value is probably too small."
-msgstr ""
-"The number of tables that have been opened. If opened tables is big, your "
-"table cache value is probably too small."
-
-#: libraries/messages.inc.php:136
-msgid "The number of files that are open."
-msgstr "The number of files that are open."
-
-#: libraries/messages.inc.php:137
-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/messages.inc.php:138
-msgid "The number of tables that are open."
-msgstr "The number of tables that are open."
-
-#: libraries/messages.inc.php:139
-msgid "The number of free memory blocks in query cache."
-msgstr "The number of free memory blocks in query cache."
-
-#: libraries/messages.inc.php:140
-msgid "The amount of free memory for query cache."
-msgstr "The amount of free memory for query cache."
-
-#: libraries/messages.inc.php:141
-msgid "The number of cache hits."
-msgstr "The number of cache hits."
-
-#: libraries/messages.inc.php:142
-msgid "The number of queries added to the cache."
-msgstr "The number of queries added to the cache."
-
-#: libraries/messages.inc.php:143
-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 "
-"cache size. The query cache uses a least recently used (LRU) strategy to "
-"decide which queries to remove from the cache."
-msgstr ""
-"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 "
-"cache size. The query cache uses a least recently used (LRU) strategy to "
-"decide which queries to remove from the cache."
-
-#: libraries/messages.inc.php:144
-msgid ""
-"The number of non-cached queries (not cachable, or not cached due to the "
-"query_cache_type setting)."
-msgstr ""
-"The number of non-cached queries (not cachable, or not cached due to the "
-"query_cache_type setting)."
-
-#: libraries/messages.inc.php:145
-msgid "The number of queries registered in the cache."
-msgstr "The number of queries registered in the cache."
-
-#: libraries/messages.inc.php:146
-msgid "The total number of blocks in the query cache."
-msgstr "The total number of blocks in the query cache."
-
-#: libraries/messages.inc.php:147
-msgctxt "$strShowStatusReset"
-msgid "Reset"
-msgstr "Reset"
-
-#: libraries/messages.inc.php:148
-msgid "The status of failsafe replication (not yet implemented)."
-msgstr "The status of failsafe replication (not yet implemented)."
-
-#: libraries/messages.inc.php:149
-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 ""
-"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/messages.inc.php:150
-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/messages.inc.php:151
-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 ""
-"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/messages.inc.php:152
-msgid ""
-"The number of joins that used ranges on the first table. (It's normally not "
-"critical even if this is big.)"
-msgstr ""
-"The number of joins that used ranges on the first table. (It's normally not "
-"critical even if this is big.)"
-
-#: libraries/messages.inc.php:153
-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/messages.inc.php:154
-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/messages.inc.php:155
-msgid ""
-"Total (since startup) number of times the replication slave SQL thread has "
-"retried transactions."
-msgstr ""
-"Total (since startup) number of times the replication slave SQL thread has "
-"retried transactions."
-
-#: libraries/messages.inc.php:156
-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/messages.inc.php:157
-msgid ""
-"The number of threads that have taken more than slow_launch_time seconds to "
-"create."
-msgstr ""
-"The number of threads that have taken more than slow_launch_time seconds to "
-"create."
-
-#: libraries/messages.inc.php:158
-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/messages.inc.php:159
-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 ""
-"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."
-
-#: libraries/messages.inc.php:160
-msgid "The number of sorts that were done with ranges."
-msgstr "The number of sorts that were done with ranges."
-
-#: libraries/messages.inc.php:161
-msgid "The number of sorted rows."
-msgstr "The number of sorted rows."
-
-#: libraries/messages.inc.php:162
-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/messages.inc.php:163
-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/messages.inc.php:164
-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 "
-"should first optimize your queries, and then either split your table or "
-"tables or use replication."
-msgstr ""
-"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 "
-"should first optimize your queries, and then either split your table or "
-"tables or use replication."
-
-#: libraries/messages.inc.php:165
-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 ""
-"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."
-
-#: libraries/messages.inc.php:166
-msgid "The number of currently open connections."
-msgstr "The number of currently open connections."
-
-#: libraries/messages.inc.php:167
-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 "
-"doesn't give a notable performance improvement if you have a good thread "
-"implementation.)"
-msgstr ""
-"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 "
-"doesn't give a notable performance improvement if you have a good thread "
-"implementation.)"
-
-#: libraries/messages.inc.php:168
-msgid "The number of threads that are not sleeping."
-msgstr "The number of threads that are not sleeping."
-
#: libraries/mult_submits.inc.php:76 libraries/tbl_properties.inc.php:513
#: tbl_structure.php:29 tbl_structure.php:153 tbl_structure.php:157
#: tbl_structure.php:473
@@ -4402,8 +3563,8 @@ msgstr ""
#: libraries/replication_gui.lib.php:55 libraries/replication_gui.lib.php:56
#: libraries/replication_gui.lib.php:249 libraries/replication_gui.lib.php:252
-#: libraries/replication_gui.lib.php:259 server_privileges.php:672
-#: server_privileges.php:675 server_privileges.php:682
+#: libraries/replication_gui.lib.php:259 server_privileges.php:711
+#: server_privileges.php:714 server_privileges.php:721
#: server_synchronize.php:1171
msgid "User name"
msgstr "მომხმარებლის სახელი"
@@ -4424,11 +3585,11 @@ msgid "Slave status"
msgstr "Show slave status"
#: libraries/replication_gui.lib.php:114 libraries/sql_query_form.lib.php:445
-#: server_status.php:626 server_variables.php:52
+#: server_status.php:737 server_variables.php:52
msgid "Variable"
msgstr "ცვლადი"
-#: libraries/replication_gui.lib.php:115 server_status.php:627
+#: libraries/replication_gui.lib.php:115 server_status.php:738
#: tbl_change.php:324 tbl_printview.php:370 tbl_select.php:139
#: tbl_structure.php:729
msgid "Value"
@@ -4448,41 +3609,58 @@ msgstr ""
msgid "Add slave replication user"
msgstr ""
-#: libraries/replication_gui.lib.php:254 server_privileges.php:677
+#: libraries/replication_gui.lib.php:254 server_privileges.php:716
msgid "Any user"
msgstr "ნებისმიერი მომხმარებელი"
#: libraries/replication_gui.lib.php:255 libraries/replication_gui.lib.php:323
-#: libraries/replication_gui.lib.php:346 server_privileges.php:678
-#: server_privileges.php:745 server_privileges.php:769
-#: server_privileges.php:1889 server_privileges.php:1919
+#: libraries/replication_gui.lib.php:346 server_privileges.php:717
+#: server_privileges.php:784 server_privileges.php:808
+#: server_privileges.php:1928 server_privileges.php:1958
msgid "Use text field"
msgstr "გამოიყენე ტექსტური ველი"
-#: libraries/replication_gui.lib.php:302 server_privileges.php:725
+#: libraries/replication_gui.lib.php:302 server_privileges.php:764
msgid "Any host"
msgstr "ნებისმიერი ჰოსტი"
-#: libraries/replication_gui.lib.php:306 server_privileges.php:729
+#: libraries/replication_gui.lib.php:306 server_privileges.php:768
msgid "Local"
msgstr "ლოკალური"
-#: libraries/replication_gui.lib.php:312 server_privileges.php:734
+#: libraries/replication_gui.lib.php:312 server_privileges.php:773
msgid "This Host"
msgstr "ეს ჰოსტი"
-#: libraries/replication_gui.lib.php:318 server_privileges.php:740
+#: libraries/replication_gui.lib.php:318 server_privileges.php:779
msgid "Use Host Table"
msgstr "Use Host Table"
-#: libraries/replication_gui.lib.php:331 server_privileges.php:753
+#: libraries/replication_gui.lib.php:331 server_privileges.php:792
msgid ""
"When Host table is used, this field is ignored and values stored in Host "
"table are used instead."
msgstr ""
-#: libraries/select_lang.lib.php:480 libraries/select_lang.lib.php:486
-#: libraries/select_lang.lib.php:492
+#. l10n: Text direction, use either ltr or rtl
+#: libraries/select_lang.lib.php:491
+msgid "ltr"
+msgstr "ltr"
+
+#: libraries/select_lang.lib.php:493
+msgid "Content of table __TABLE__"
+msgstr "Content of table __TABLE__"
+
+#: libraries/select_lang.lib.php:494
+msgid "(continued)"
+msgstr "(გაგრძელება)"
+
+#: libraries/select_lang.lib.php:495
+msgid "Structure of table __TABLE__"
+msgstr "Structure of table __TABLE__"
+
+#: libraries/select_lang.lib.php:500 libraries/select_lang.lib.php:506
+#: libraries/select_lang.lib.php:512
#, php-format
msgid "Unknown language: %1$s."
msgstr "უცნობი ენა: %1$s."
@@ -4493,7 +3671,7 @@ msgid "Servers"
msgstr "სერვერები"
#: libraries/server_links.inc.php:53 server_engines.php:112
-#: server_engines.php:116 server_status.php:304 test/theme.php:105
+#: server_engines.php:116 server_status.php:415 test/theme.php:105
msgid "Variables"
msgstr "ცვლადები"
@@ -4506,7 +3684,7 @@ msgid "Engines"
msgstr "ძრავები"
#: libraries/server_links.inc.php:76 server_binlog.php:110
-#: server_status.php:253 test/theme.php:121
+#: server_status.php:364 test/theme.php:121
msgid "Binary log"
msgstr "ბინარული ჟურნალი"
@@ -4986,8 +4164,8 @@ msgstr "დაბრუნება"
msgid "Protocol version"
msgstr "ოქმის ვერსია"
-#: main.php:189 server_privileges.php:1350 server_privileges.php:1497
-#: server_privileges.php:1611 server_privileges.php:2029
+#: main.php:189 server_privileges.php:1389 server_privileges.php:1536
+#: server_privileges.php:1650 server_privileges.php:2068
#: server_processlist.php:54
msgid "User"
msgstr "მომხმარებელი"
@@ -5382,7 +4560,7 @@ msgstr "%s databases have been dropped successfully."
msgid "Databases statistics"
msgstr "მონაცემთა ბაზების სტატისტიკა"
-#: server_databases.php:117 server_status.php:260
+#: server_databases.php:117 server_status.php:371
#: setup/lib/messages.inc.php:117
msgid "Tables"
msgstr "ცხრილები"
@@ -5403,6 +4581,17 @@ msgstr "სერვერის კონფიგურაცია"
msgid "Jump to database"
msgstr "მონაცემთა ბაზები არაა"
+#: server_databases.php:267
+#, fuzzy
+msgid "Not replicated"
+msgstr "სერვერის კონფიგურაცია"
+
+#: server_databases.php:273
+#, fuzzy
+#| msgid "Replication"
+msgid "Replicated"
+msgstr "რეპლიკაცია"
+
#: server_databases.php:289
#, php-format
msgid "Check privileges for database "%s"."
@@ -5436,143 +4625,331 @@ msgstr "Storage Engines"
msgid "View dump (schema) of databases"
msgstr "View dump (schema) of databases"
-#: server_privileges.php:263 server_privileges.php:264
+#: server_privileges.php:24 server_privileges.php:266
+msgid "Includes all privileges except GRANT."
+msgstr "შეიცავს ყველა პრივილეგიას GRANT-ის გამოკლებით."
+
+#: server_privileges.php:25 server_privileges.php:192
+#: server_privileges.php:515
+msgid "Allows altering the structure of existing tables."
+msgstr "Allows altering the structure of existing tables."
+
+#: server_privileges.php:26 server_privileges.php:208
+#: server_privileges.php:521
+msgid "Allows altering and dropping stored routines."
+msgstr "Allows altering and dropping stored routines."
+
+#: server_privileges.php:27 server_privileges.php:184
+#: server_privileges.php:514
+msgid "Allows creating new databases and tables."
+msgstr "Allows creating new databases and tables."
+
+#: server_privileges.php:28 server_privileges.php:207
+#: server_privileges.php:520
+msgid "Allows creating stored routines."
+msgstr "Allows creating stored routines."
+
+#: server_privileges.php:29 server_privileges.php:514
+msgid "Allows creating new tables."
+msgstr "Allows creating new tables."
+
+#: server_privileges.php:30 server_privileges.php:195
+#: server_privileges.php:518
+msgid "Allows creating temporary tables."
+msgstr "Allows creating temporary tables."
+
+#: server_privileges.php:31 server_privileges.php:209
+#: server_privileges.php:554
+msgid "Allows creating, dropping and renaming user accounts."
+msgstr "Allows creating, dropping and renaming user accounts."
+
+#: server_privileges.php:32 server_privileges.php:199
+#: server_privileges.php:203 server_privileges.php:526
+#: server_privileges.php:530
+msgid "Allows creating new views."
+msgstr "Allows creating new views."
+
+#: server_privileges.php:33 server_privileges.php:183
+#: server_privileges.php:506
+msgid "Allows deleting data."
+msgstr "Allows deleting data."
+
+#: server_privileges.php:34 server_privileges.php:185
+#: server_privileges.php:517
+msgid "Allows dropping databases and tables."
+msgstr "Allows dropping databases and tables."
+
+#: server_privileges.php:35 server_privileges.php:517
+msgid "Allows dropping tables."
+msgstr "Allows dropping tables."
+
+#: server_privileges.php:36 server_privileges.php:200
+#: server_privileges.php:534
+msgid "Allows to set up events for the event scheduler"
+msgstr "Allows to set up events for the event scheduler"
+
+#: server_privileges.php:37 server_privileges.php:210
+#: server_privileges.php:522
+msgid "Allows executing stored routines."
+msgstr "Allows executing stored routines."
+
+#: server_privileges.php:38 server_privileges.php:189
+#: server_privileges.php:509
+msgid "Allows importing data from and exporting data into files."
+msgstr "Allows importing data from and exporting data into files."
+
+#: server_privileges.php:39 server_privileges.php:540
+msgid ""
+"Allows adding users and privileges without reloading the privilege tables."
+msgstr ""
+"Allows adding users and privileges without reloading the privilege tables."
+
+#: server_privileges.php:40 server_privileges.php:191
+#: server_privileges.php:516
+msgid "Allows creating and dropping indexes."
+msgstr "Allows creating and dropping indexes."
+
+#: server_privileges.php:41 server_privileges.php:181
+#: server_privileges.php:442 server_privileges.php:504
+msgid "Allows inserting and replacing data."
+msgstr "Allows inserting and replacing data."
+
+#: server_privileges.php:42 server_privileges.php:196
+#: server_privileges.php:549
+msgid "Allows locking tables for the current thread."
+msgstr "Allows locking tables for the current thread."
+
+#: server_privileges.php:43 server_privileges.php:646
+#: server_privileges.php:648
+msgid "Limits the number of new connections the user may open per hour."
+msgstr "Limits the number of new connections the user may open per hour."
+
+#: server_privileges.php:44 server_privileges.php:634
+#: server_privileges.php:636
+msgid "Limits the number of queries the user may send to the server per hour."
+msgstr "Limits the number of queries the user may send to the server per hour."
+
+#: server_privileges.php:45 server_privileges.php:640
+#: server_privileges.php:642
+msgid ""
+"Limits the number of commands that change any table or database the user may "
+"execute per hour."
+msgstr ""
+"Limits the number of commands that change any table or database the user may "
+"execute per hour."
+
+#: server_privileges.php:46 server_privileges.php:652
+#: server_privileges.php:654
+msgid "Limits the number of simultaneous connections the user may have."
+msgstr "Limits the number of simultaneous connections the user may have."
+
+#: server_privileges.php:47 server_privileges.php:188
+#: server_privileges.php:544
+msgid "Allows viewing processes of all users"
+msgstr "Allows viewing processes of all users"
+
+#: server_privileges.php:48 server_privileges.php:190
+#: server_privileges.php:448 server_privileges.php:550
+msgid "Has no effect in this MySQL version."
+msgstr "Has no effect in this MySQL version."
+
+#: server_privileges.php:49 server_privileges.php:186
+#: server_privileges.php:545
+msgid "Allows reloading server settings and flushing the server's caches."
+msgstr "Allows reloading server settings and flushing the server's caches."
+
+#: server_privileges.php:50 server_privileges.php:198
+#: server_privileges.php:552
+msgid "Allows the user to ask where the slaves / masters are."
+msgstr "Allows the user to ask where the slaves / masters are."
+
+#: server_privileges.php:51 server_privileges.php:197
+#: server_privileges.php:553
+msgid "Needed for the replication slaves."
+msgstr "Needed for the replication slaves."
+
+#: server_privileges.php:52 server_privileges.php:180
+#: server_privileges.php:439 server_privileges.php:503
+msgid "Allows reading data."
+msgstr "Allows reading data."
+
+#: server_privileges.php:53 server_privileges.php:193
+#: server_privileges.php:547
+msgid "Gives access to the complete list of databases."
+msgstr "Gives access to the complete list of databases."
+
+#: server_privileges.php:54 server_privileges.php:204
+#: server_privileges.php:206 server_privileges.php:519
+msgid "Allows performing SHOW CREATE VIEW queries."
+msgstr "Allows performing SHOW CREATE VIEW queries."
+
+#: server_privileges.php:55 server_privileges.php:187
+#: server_privileges.php:546
+msgid "Allows shutting down the server."
+msgstr "Allows shutting down the server."
+
+#: server_privileges.php:56 server_privileges.php:194
+#: server_privileges.php:543
+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 ""
+"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."
+
+#: server_privileges.php:57 server_privileges.php:201
+#: server_privileges.php:535
+msgid "Allows creating and dropping triggers"
+msgstr "Allows creating and dropping triggers"
+
+#: server_privileges.php:58 server_privileges.php:182
+#: server_privileges.php:445 server_privileges.php:505
+msgid "Allows changing data."
+msgstr "Allows changing data."
+
+#: server_privileges.php:59 server_privileges.php:260
+msgid "No privileges."
+msgstr "პრივილეგიები არაა."
+
+#: server_privileges.php:302 server_privileges.php:303
#, fuzzy
#| msgid "None"
msgctxt "None privileges"
msgid "None"
msgstr "არაა"
-#: server_privileges.php:392 server_privileges.php:527
-#: server_privileges.php:1679 server_privileges.php:1685
+#: server_privileges.php:431 server_privileges.php:566
+#: server_privileges.php:1718 server_privileges.php:1724
msgid "Table-specific privileges"
msgstr "Table-specific privileges"
-#: server_privileges.php:393 server_privileges.php:535
-#: server_privileges.php:1501
+#: server_privileges.php:432 server_privileges.php:574
+#: server_privileges.php:1540
msgid " Note: MySQL privilege names are expressed in English "
msgstr " Note: MySQL privilege names are expressed in English "
-#: server_privileges.php:524 server_privileges.php:1500
+#: server_privileges.php:563 server_privileges.php:1539
msgid "Global privileges"
msgstr "გლობალური პრივილეგიები"
-#: server_privileges.php:526 server_privileges.php:1679
+#: server_privileges.php:565 server_privileges.php:1718
msgid "Database-specific privileges"
msgstr "Database-specific privileges"
-#: server_privileges.php:571
+#: server_privileges.php:610
msgid "Administration"
msgstr "ადმინისტრირება"
-#: server_privileges.php:591
+#: server_privileges.php:630
msgid "Resource limits"
msgstr "Resource limits"
-#: server_privileges.php:592
+#: server_privileges.php:631
msgid "Note: Setting these options to 0 (zero) removes the limit."
msgstr "Note: Setting these options to 0 (zero) removes the limit."
-#: server_privileges.php:669
+#: server_privileges.php:708
msgid "Login Information"
msgstr "Login Information"
-#: server_privileges.php:763
+#: server_privileges.php:802
msgid "Do not change the password"
msgstr "არ შეცვალო პაროლი"
-#: server_privileges.php:804 server_privileges.php:2166
+#: server_privileges.php:843 server_privileges.php:2205
#, fuzzy
#| msgid "No user(s) found."
msgid "No user found."
msgstr "მომხმარებლ(ებ)ის პოვნა ვერ მოხერხდა."
-#: server_privileges.php:848
+#: server_privileges.php:887
#, php-format
msgid "The user %s already exists!"
msgstr "მომხმარებელი %s უკვე არსებობს!"
-#: server_privileges.php:931
+#: server_privileges.php:970
msgid "You have added a new user."
msgstr "თქვენ დაამატეთ ახალი მომხმარებელი."
-#: server_privileges.php:1152
+#: server_privileges.php:1191
#, php-format
msgid "You have updated the privileges for %s."
msgstr "You have updated the privileges for %s."
-#: server_privileges.php:1176
+#: server_privileges.php:1215
#, php-format
msgid "You have revoked the privileges for %s"
msgstr "You have revoked the privileges for %s"
-#: server_privileges.php:1212
+#: server_privileges.php:1251
#, php-format
msgid "The password for %s was changed successfully."
msgstr "The password for %s was changed successfully."
-#: server_privileges.php:1232
+#: server_privileges.php:1271
#, php-format
msgid "Deleting %s"
msgstr "%s-ის წაშლა"
-#: server_privileges.php:1243
+#: server_privileges.php:1282
msgid "No users selected for deleting!"
msgstr "No users selected for deleting!"
-#: server_privileges.php:1246
+#: server_privileges.php:1285
msgid "Reloading the privileges"
msgstr "Reloading the privileges"
-#: server_privileges.php:1261
+#: server_privileges.php:1300
msgid "The selected users have been deleted successfully."
msgstr "The selected users have been deleted successfully."
-#: server_privileges.php:1296
+#: server_privileges.php:1335
msgid "The privileges were reloaded successfully."
msgstr "The privileges were reloaded successfully."
-#: server_privileges.php:1324 server_privileges.php:1610
+#: server_privileges.php:1363 server_privileges.php:1649
msgid "Edit Privileges"
msgstr "პრივილეგიების რედაქტირება"
-#: server_privileges.php:1333
+#: server_privileges.php:1372
msgid "Revoke"
msgstr "Revoke"
-#: server_privileges.php:1365
+#: server_privileges.php:1404
msgid "User overview"
msgstr "მომხმარებლის მიმოხილვა"
-#: server_privileges.php:1502 server_privileges.php:1684
-#: server_privileges.php:2033
+#: server_privileges.php:1541 server_privileges.php:1723
+#: server_privileges.php:2072
msgid "Grant"
msgstr "Grant"
-#: server_privileges.php:1521 server_privileges.php:2123
+#: server_privileges.php:1560 server_privileges.php:2162
msgid "Any"
msgstr "ნებისმიერი"
-#: server_privileges.php:1570 server_privileges.php:1594
-#: server_privileges.php:1988 server_privileges.php:2177
+#: server_privileges.php:1609 server_privileges.php:1633
+#: server_privileges.php:2027 server_privileges.php:2216
msgid "Add a new User"
msgstr "ახალი მომხმარებლის დამატება"
-#: server_privileges.php:1575
+#: server_privileges.php:1614
msgid "Remove selected users"
msgstr "Remove selected users"
-#: server_privileges.php:1578
+#: server_privileges.php:1617
msgid "Revoke all active privileges from the users and delete them afterwards."
msgstr ""
"Revoke all active privileges from the users and delete them afterwards."
-#: server_privileges.php:1579 server_privileges.php:1580
-#: server_privileges.php:1581
+#: server_privileges.php:1618 server_privileges.php:1619
+#: server_privileges.php:1620
msgid "Drop the databases that have the same names as the users."
msgstr "Drop the databases that have the same names as the users."
-#: server_privileges.php:1597
+#: server_privileges.php:1636
#, php-format
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
@@ -5585,49 +4962,49 @@ msgstr ""
"server uses, if they have been changed manually. In this case, you should %"
"sreload the privileges%s before you continue."
-#: server_privileges.php:1645
+#: server_privileges.php:1684
msgid "The selected user was not found in the privilege table."
msgstr "The selected user was not found in the privilege table."
-#: server_privileges.php:1685
+#: server_privileges.php:1724
msgid "Column-specific privileges"
msgstr "Column-specific privileges"
-#: server_privileges.php:1886
+#: server_privileges.php:1925
msgid "Add privileges on the following database"
msgstr "პრივილეგიების დამატება შემდეგი მონაცემთა ბაზისათვის"
-#: server_privileges.php:1904
+#: server_privileges.php:1943
msgid "Wildcards % and _ should be escaped with a \\ to use them literally"
msgstr "Wildcards % and _ should be escaped with a \\ to use them literally"
-#: server_privileges.php:1907
+#: server_privileges.php:1946
msgid "Add privileges on the following table"
msgstr "პრივილეგიების დამატება შემდეგი ცხრილისათვის"
-#: server_privileges.php:1964
+#: server_privileges.php:2003
msgid "Change Login Information / Copy User"
msgstr "Change Login Information / Copy User"
-#: server_privileges.php:1967
+#: server_privileges.php:2006
msgid "Create a new user with the same privileges and ..."
msgstr "იგივე პრივილეგიების მქონე ახალი მომხმარებლის შექმნა და ..."
-#: server_privileges.php:1969
+#: server_privileges.php:2008
msgid "... keep the old one."
msgstr "... ძველის შენახვა."
-#: server_privileges.php:1970
+#: server_privileges.php:2009
msgid " ... delete the old one from the user tables."
msgstr " ... ძველი მომხმარებლის მომხმარებლების ცხრილიდან წაშლა."
-#: server_privileges.php:1971
+#: server_privileges.php:2010
msgid ""
" ... revoke all active privileges from the old one and delete it afterwards."
msgstr ""
" ... revoke all active privileges from the old one and delete it afterwards."
-#: server_privileges.php:1972
+#: server_privileges.php:2011
msgid ""
" ... delete the old one from the user tables and reload the privileges "
"afterwards."
@@ -5635,45 +5012,45 @@ msgstr ""
" ... ძველი მომხმარებლის მომხმარებლების სიიდან წაშლა და შემდეგ პრივილეგიების "
"გადატვირთვა."
-#: server_privileges.php:1994
+#: server_privileges.php:2033
msgid "Database for user"
msgstr "მონაცემთა ბაზა მომხმარებლისთვის"
-#: server_privileges.php:1998
+#: server_privileges.php:2037
#, fuzzy
#| msgid "None"
msgctxt "Create none database for user"
msgid "None"
msgstr "არაა"
-#: server_privileges.php:1999
+#: server_privileges.php:2038
msgid "Create database with same name and grant all privileges"
msgstr ""
"იგივე სახელის მქონე მონაცემთა ბაზის შექმნა და ყველა პრივილეგიის მინიჭება"
-#: server_privileges.php:2000
+#: server_privileges.php:2039
msgid "Grant all privileges on wildcard name (username\\_%)"
msgstr "Grant all privileges on wildcard name (username\\_%)"
-#: server_privileges.php:2003
+#: server_privileges.php:2042
#, php-format
msgid "Grant all privileges on database "%s""
msgstr "ყველა პრივილეგიის მინიჭება მონაცემთა ბაზისთვის "%s""
-#: server_privileges.php:2026
+#: server_privileges.php:2065
#, php-format
msgid "Users having access to "%s""
msgstr "Users having access to "%s""
-#: server_privileges.php:2134
+#: server_privileges.php:2173
msgid "global"
msgstr "გლობალულრი"
-#: server_privileges.php:2136
+#: server_privileges.php:2175
msgid "database-specific"
msgstr "database-specific"
-#: server_privileges.php:2138
+#: server_privileges.php:2177
msgid "wildcard"
msgstr "wildcard"
@@ -5720,7 +5097,7 @@ msgstr ""
msgid "This server is configured as master in a replication process."
msgstr ""
-#: server_replication.php:184 server_status.php:281
+#: server_replication.php:184 server_status.php:392
#, fuzzy
msgid "Show master status"
msgstr "Show slave status"
@@ -5862,103 +5239,737 @@ msgid ""
"like to configure it?"
msgstr ""
+#: server_status.php:40
+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 ""
+"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."
+
+#: server_status.php:41
+msgid "The number of transactions that used the temporary binary log cache."
+msgstr "The number of transactions that used the temporary binary log cache."
+
+#: server_status.php:42
+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 "
+"to increase the tmp_table_size value to cause temporary tables to be memory-"
+"based instead of disk-based."
+msgstr ""
+"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 "
+"to increase the tmp_table_size value to cause temporary tables to be memory-"
+"based instead of disk-based."
+
+#: server_status.php:43
+msgid "How many temporary files mysqld has created."
+msgstr "How many temporary files mysqld has created."
+
+#: server_status.php:44
+msgid ""
+"The number of in-memory temporary tables created automatically by the server "
+"while executing statements."
+msgstr ""
+"The number of in-memory temporary tables created automatically by the server "
+"while executing statements."
+
+#: server_status.php:45
+msgid ""
+"The number of rows written with INSERT DELAYED for which some error occurred "
+"(probably duplicate key)."
+msgstr ""
+"The number of rows written with INSERT DELAYED for which some error occurred "
+"(probably duplicate key)."
+
#: server_status.php:46
+msgid ""
+"The number of INSERT DELAYED handler threads in use. Every different table "
+"on which one uses INSERT DELAYED gets its own thread."
+msgstr ""
+"The number of INSERT DELAYED handler threads in use. Every different table "
+"on which one uses INSERT DELAYED gets its own thread."
+
+#: server_status.php:47
+msgid "The number of INSERT DELAYED rows written."
+msgstr "The number of INSERT DELAYED rows written."
+
+#: server_status.php:48
+msgid "The number of executed FLUSH statements."
+msgstr "The number of executed FLUSH statements."
+
+#: server_status.php:49
+msgid "The number of internal COMMIT statements."
+msgstr "The number of internal COMMIT statements."
+
+#: server_status.php:50
+msgid "The number of times a row was deleted from a table."
+msgstr "The number of times a row was deleted from a table."
+
+#: server_status.php:51
+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 ""
+"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."
+
+#: server_status.php:52
+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 ""
+"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."
+
+#: server_status.php:53
+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 ""
+"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."
+
+#: server_status.php:54
+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 ""
+"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."
+
+#: server_status.php:55
+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 ""
+"The number of requests to read the previous row in key order. This read "
+"method is mainly used to optimize ORDER BY ... DESC."
+
+#: server_status.php:56
+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 "
+"probably have a lot of queries that require MySQL to scan whole tables or "
+"you have joins that don't use keys properly."
+msgstr ""
+"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 "
+"probably have a lot of queries that require MySQL to scan whole tables or "
+"you have joins that don't use keys properly."
+
+#: server_status.php:57
+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 "
+"tables are not properly indexed or that your queries are not written to take "
+"advantage of the indexes you have."
+msgstr ""
+"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 "
+"tables are not properly indexed or that your queries are not written to take "
+"advantage of the indexes you have."
+
+#: server_status.php:58
+msgid "The number of internal ROLLBACK statements."
+msgstr "The number of internal ROLLBACK statements."
+
+#: server_status.php:59
+msgid "The number of requests to update a row in a table."
+msgstr "The number of requests to update a row in a table."
+
+#: server_status.php:60
+msgid "The number of requests to insert a row in a table."
+msgstr "The number of requests to insert a row in a table."
+
+#: server_status.php:61
+msgid "The number of pages containing data (dirty or clean)."
+msgstr "The number of pages containing data (dirty or clean)."
+
+#: server_status.php:62
+msgid "The number of pages currently dirty."
+msgstr "The number of pages currently dirty."
+
+#: server_status.php:63
+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."
+
+#: server_status.php:64
+msgid "The number of free pages."
+msgstr "The number of free pages."
+
+#: server_status.php:65
+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 ""
+"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."
+
+#: server_status.php:66
+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 "
+"be calculated as Innodb_buffer_pool_pages_total - "
+"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data."
+msgstr ""
+"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 "
+"be calculated as Innodb_buffer_pool_pages_total - "
+"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data."
+
+#: server_status.php:67
+msgid "Total size of buffer pool, in pages."
+msgstr "Total size of buffer pool, in pages."
+
+#: server_status.php:68
+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 ""
+"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."
+
+#: server_status.php:69
+msgid ""
+"The number of sequential read-aheads InnoDB initiated. This happens when "
+"InnoDB does a sequential full table scan."
+msgstr ""
+"The number of sequential read-aheads InnoDB initiated. This happens when "
+"InnoDB does a sequential full table scan."
+
+#: server_status.php:70
+msgid "The number of logical read requests InnoDB has done."
+msgstr "The number of logical read requests InnoDB has done."
+
+#: server_status.php:71
+msgid ""
+"The number of logical reads that InnoDB could not satisfy from buffer pool "
+"and had to do a single-page read."
+msgstr ""
+"The number of logical reads that InnoDB could not satisfy from buffer pool "
+"and had to do a single-page read."
+
+#: server_status.php:72
+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 "
+"available, it's necessary to wait for pages to be flushed first. This "
+"counter counts instances of these waits. If the buffer pool size was set "
+"properly, this value should be small."
+msgstr ""
+"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 "
+"available, it's necessary to wait for pages to be flushed first. This "
+"counter counts instances of these waits. If the buffer pool size was set "
+"properly, this value should be small."
+
+#: server_status.php:73
+msgid "The number writes done to the InnoDB buffer pool."
+msgstr "The number writes done to the InnoDB buffer pool."
+
+#: server_status.php:74
+msgid "The number of fsync() operations so far."
+msgstr "The number of fsync() operations so far."
+
+#: server_status.php:75
+msgid "The current number of pending fsync() operations."
+msgstr "The current number of pending fsync() operations."
+
+#: server_status.php:76
+msgid "The current number of pending reads."
+msgstr "The current number of pending reads."
+
+#: server_status.php:77
+msgid "The current number of pending writes."
+msgstr "The current number of pending writes."
+
+#: server_status.php:78
+msgid "The amount of data read so far, in bytes."
+msgstr "The amount of data read so far, in bytes."
+
+#: server_status.php:79
+msgid "The total number of data reads."
+msgstr "The total number of data reads."
+
+#: server_status.php:80
+msgid "The total number of data writes."
+msgstr "The total number of data writes."
+
+#: server_status.php:81
+msgid "The amount of data written so far, in bytes."
+msgstr "The amount of data written so far, in bytes."
+
+#: server_status.php:82
+msgid "The number of pages that have been written for doublewrite operations."
+msgstr "The number of pages that have been written for doublewrite operations."
+
+#: server_status.php:83
+msgid "The number of doublewrite operations that have been performed."
+msgstr "The number of doublewrite operations that have been performed."
+
+#: server_status.php:84
+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 ""
+"The number of waits we had because log buffer was too small and we had to "
+"wait for it to be flushed before continuing."
+
+#: server_status.php:85
+msgid "The number of log write requests."
+msgstr "The number of log write requests."
+
+#: server_status.php:86
+msgid "The number of physical writes to the log file."
+msgstr "The number of physical writes to the log file."
+
+#: server_status.php:87
+msgid "The number of fsync() writes done to the log file."
+msgstr "The number of fsync() writes done to the log file."
+
+#: server_status.php:88
+msgid "The number of pending log file fsyncs."
+msgstr "The number of pending log file fsyncs."
+
+#: server_status.php:89
+msgid "Pending log file writes."
+msgstr "Pending log file writes."
+
+#: server_status.php:90
+msgid "The number of bytes written to the log file."
+msgstr "The number of bytes written to the log file."
+
+#: server_status.php:91
+msgid "The number of pages created."
+msgstr "The number of pages created."
+
+#: server_status.php:92
+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 ""
+"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."
+
+#: server_status.php:93
+msgid "The number of pages read."
+msgstr "The number of pages read."
+
+#: server_status.php:94
+msgid "The number of pages written."
+msgstr "The number of pages written."
+
+#: server_status.php:95
+msgid "The number of row locks currently being waited for."
+msgstr "The number of row locks currently being waited for."
+
+#: server_status.php:96
+msgid "The average time to acquire a row lock, in milliseconds."
+msgstr "The average time to acquire a row lock, in milliseconds."
+
+#: server_status.php:97
+msgid "The total time spent in acquiring row locks, in milliseconds."
+msgstr "The total time spent in acquiring row locks, in milliseconds."
+
+#: server_status.php:98
+msgid "The maximum time to acquire a row lock, in milliseconds."
+msgstr "The maximum time to acquire a row lock, in milliseconds."
+
+#: server_status.php:99
+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."
+
+#: server_status.php:100
+msgid "The number of rows deleted from InnoDB tables."
+msgstr "The number of rows deleted from InnoDB tables."
+
+#: server_status.php:101
+msgid "The number of rows inserted in InnoDB tables."
+msgstr "The number of rows inserted in InnoDB tables."
+
+#: server_status.php:102
+msgid "The number of rows read from InnoDB tables."
+msgstr "The number of rows read from InnoDB tables."
+
+#: server_status.php:103
+msgid "The number of rows updated in InnoDB tables."
+msgstr "The number of rows updated in InnoDB tables."
+
+#: server_status.php:104
+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 ""
+"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."
+
+#: server_status.php:105
+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 ""
+"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."
+
+#: server_status.php:106
+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 ""
+"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."
+
+#: server_status.php:107
+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."
+
+#: server_status.php:108
+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 ""
+"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."
+
+#: server_status.php:109
+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."
+
+#: server_status.php:110
+msgid "The number of physical writes of a key block to disk."
+msgstr "The number of physical writes of a key block to disk."
+
+#: server_status.php:111
+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 ""
+"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."
+
+#: server_status.php:112
+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."
+
+#: server_status.php:113
+msgid ""
+"The number of tables that have been opened. If opened tables is big, your "
+"table cache value is probably too small."
+msgstr ""
+"The number of tables that have been opened. If opened tables is big, your "
+"table cache value is probably too small."
+
+#: server_status.php:114
+msgid "The number of files that are open."
+msgstr "The number of files that are open."
+
+#: server_status.php:115
+msgid "The number of streams that are open (used mainly for logging)."
+msgstr "The number of streams that are open (used mainly for logging)."
+
+#: server_status.php:116
+msgid "The number of tables that are open."
+msgstr "The number of tables that are open."
+
+#: server_status.php:117
+msgid "The number of free memory blocks in query cache."
+msgstr "The number of free memory blocks in query cache."
+
+#: server_status.php:118
+msgid "The amount of free memory for query cache."
+msgstr "The amount of free memory for query cache."
+
+#: server_status.php:119
+msgid "The number of cache hits."
+msgstr "The number of cache hits."
+
+#: server_status.php:120
+msgid "The number of queries added to the cache."
+msgstr "The number of queries added to the cache."
+
+#: server_status.php:121
+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 "
+"cache size. The query cache uses a least recently used (LRU) strategy to "
+"decide which queries to remove from the cache."
+msgstr ""
+"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 "
+"cache size. The query cache uses a least recently used (LRU) strategy to "
+"decide which queries to remove from the cache."
+
+#: server_status.php:122
+msgid ""
+"The number of non-cached queries (not cachable, or not cached due to the "
+"query_cache_type setting)."
+msgstr ""
+"The number of non-cached queries (not cachable, or not cached due to the "
+"query_cache_type setting)."
+
+#: server_status.php:123
+msgid "The number of queries registered in the cache."
+msgstr "The number of queries registered in the cache."
+
+#: server_status.php:124
+msgid "The total number of blocks in the query cache."
+msgstr "The total number of blocks in the query cache."
+
+#: server_status.php:125
+msgctxt "$strShowStatusReset"
+msgid "Reset"
+msgstr "Reset"
+
+#: server_status.php:126
+msgid "The status of failsafe replication (not yet implemented)."
+msgstr "The status of failsafe replication (not yet implemented)."
+
+#: server_status.php:127
+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 ""
+"The number of joins that do not use indexes. If this value is not 0, you "
+"should carefully check the indexes of your tables."
+
+#: server_status.php:128
+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."
+
+#: server_status.php:129
+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 ""
+"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.)"
+
+#: server_status.php:130
+msgid ""
+"The number of joins that used ranges on the first table. (It's normally not "
+"critical even if this is big.)"
+msgstr ""
+"The number of joins that used ranges on the first table. (It's normally not "
+"critical even if this is big.)"
+
+#: server_status.php:131
+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."
+
+#: server_status.php:132
+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."
+
+#: server_status.php:133
+msgid ""
+"Total (since startup) number of times the replication slave SQL thread has "
+"retried transactions."
+msgstr ""
+"Total (since startup) number of times the replication slave SQL thread has "
+"retried transactions."
+
+#: server_status.php:134
+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."
+
+#: server_status.php:135
+msgid ""
+"The number of threads that have taken more than slow_launch_time seconds to "
+"create."
+msgstr ""
+"The number of threads that have taken more than slow_launch_time seconds to "
+"create."
+
+#: server_status.php:136
+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."
+
+#: server_status.php:137
+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 ""
+"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."
+
+#: server_status.php:138
+msgid "The number of sorts that were done with ranges."
+msgstr "The number of sorts that were done with ranges."
+
+#: server_status.php:139
+msgid "The number of sorted rows."
+msgstr "The number of sorted rows."
+
+#: server_status.php:140
+msgid "The number of sorts that were done by scanning the table."
+msgstr "The number of sorts that were done by scanning the table."
+
+#: server_status.php:141
+msgid "The number of times that a table lock was acquired immediately."
+msgstr "The number of times that a table lock was acquired immediately."
+
+#: server_status.php:142
+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 "
+"should first optimize your queries, and then either split your table or "
+"tables or use replication."
+msgstr ""
+"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 "
+"should first optimize your queries, and then either split your table or "
+"tables or use replication."
+
+#: server_status.php:143
+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 ""
+"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."
+
+#: server_status.php:144
+msgid "The number of currently open connections."
+msgstr "The number of currently open connections."
+
+#: server_status.php:145
+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 "
+"doesn't give a notable performance improvement if you have a good thread "
+"implementation.)"
+msgstr ""
+"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 "
+"doesn't give a notable performance improvement if you have a good thread "
+"implementation.)"
+
+#: server_status.php:146
+msgid "The number of threads that are not sleeping."
+msgstr "The number of threads that are not sleeping."
+
+#: server_status.php:157
msgid "Runtime Information"
msgstr "Runtime Information"
-#: server_status.php:250
+#: server_status.php:361
msgid "Handler"
msgstr "Handler"
-#: server_status.php:251
+#: server_status.php:362
msgid "Query cache"
msgstr "Query cache"
-#: server_status.php:252
+#: server_status.php:363
msgid "Threads"
msgstr "Threads"
-#: server_status.php:254
+#: server_status.php:365
msgid "Temporary data"
msgstr "დროებითი მონაცემები"
-#: server_status.php:255
+#: server_status.php:366
msgid "Delayed inserts"
msgstr "Delayed inserts"
-#: server_status.php:256
+#: server_status.php:367
msgid "Key cache"
msgstr "Key cache"
-#: server_status.php:257
+#: server_status.php:368
msgid "Joins"
msgstr "Joins"
-#: server_status.php:259
+#: server_status.php:370
msgid "Sorting"
msgstr "დალაგება"
-#: server_status.php:261
+#: server_status.php:372
msgid "Transaction coordinator"
msgstr "Transaction coordinator"
-#: server_status.php:271
+#: server_status.php:382
msgid "Flush (close) all tables"
msgstr "Flush (close) all tables"
-#: server_status.php:273
+#: server_status.php:384
msgid "Show open tables"
msgstr "Show open tables"
-#: server_status.php:278
+#: server_status.php:389
msgid "Show slave hosts"
msgstr "Show slave hosts"
-#: server_status.php:284
+#: server_status.php:395
msgid "Show slave status"
msgstr "Show slave status"
-#: server_status.php:289
+#: server_status.php:400
msgid "Flush query cache"
msgstr "Flush query cache"
-#: server_status.php:294
+#: server_status.php:405
msgid "Show processes"
msgstr "პროცესების ჩვენება"
-#: server_status.php:344
+#: server_status.php:455
#, fuzzy
#| msgid "Reset"
msgctxt "for Show status"
msgid "Reset"
msgstr "დაბრუნება"
-#: server_status.php:350
+#: server_status.php:461
#, php-format
msgid "This MySQL server has been running for %s. It started up on %s."
msgstr "MySQL სერვერის მუშაობის პერიოდი - %s. გაშვების დრო - %s."
-#: server_status.php:360
+#: server_status.php:471
msgid ""
"This MySQL server works as master and slave in replication"
"b> process."
msgstr ""
-#: server_status.php:362
+#: server_status.php:473
msgid "This MySQL server works as master in replication process."
msgstr ""
-#: server_status.php:364
+#: server_status.php:475
msgid "This MySQL server works as slave in replication process."
msgstr ""
-#: server_status.php:366
+#: server_status.php:477
msgid ""
"For further information about replication status on the server, please visit "
"the replication section."
msgstr ""
-#: server_status.php:383
+#: server_status.php:494
msgid ""
"Server traffic: These tables show the network traffic statistics of "
"this MySQL server since its startup."
@@ -5966,11 +5977,11 @@ msgstr ""
"Server traffic: These tables show the network traffic statistics of "
"this MySQL server since its startup."
-#: server_status.php:388
+#: server_status.php:499
msgid "Traffic"
msgstr "ტრაფიკი"
-#: server_status.php:388
+#: server_status.php:499
msgid ""
"On a busy server, the byte counters may overrun, so those statistics as "
"reported by the MySQL server may be incorrect."
@@ -5978,36 +5989,36 @@ msgstr ""
"On a busy server, the byte counters may overrun, so those statistics as "
"reported by the MySQL server may be incorrect."
-#: server_status.php:389 server_status.php:434 server_status.php:497
-#: server_status.php:555
+#: server_status.php:500 server_status.php:545 server_status.php:608
+#: server_status.php:666
msgid "per hour"
msgstr "საათში"
-#: server_status.php:394
+#: server_status.php:505
msgid "Received"
msgstr "მიღებულია"
-#: server_status.php:404
+#: server_status.php:515
msgid "Sent"
msgstr "გაიგზავნა"
-#: server_status.php:433
+#: server_status.php:544
msgid "Connections"
msgstr "კავშირები"
-#: server_status.php:440
+#: server_status.php:551
msgid "max. concurrent connections"
msgstr "max. concurrent connections"
-#: server_status.php:447
+#: server_status.php:558
msgid "Failed attempts"
msgstr "Failed attempts"
-#: server_status.php:461
+#: server_status.php:572
msgid "Aborted"
msgstr "შეწყვეტილია"
-#: server_status.php:490
+#: server_status.php:601
#, php-format
msgid ""
"Query statistics: Since its startup, %s queries have been sent to the "
@@ -6016,19 +6027,19 @@ msgstr ""
"Query statistics: Since its startup, %s queries have been sent to the "
"server."
-#: server_status.php:498
+#: server_status.php:609
msgid "per minute"
msgstr "წუთში"
-#: server_status.php:499
+#: server_status.php:610
msgid "per second"
msgstr "წამში"
-#: server_status.php:554
+#: server_status.php:665
msgid "Query type"
msgstr "მოთხოვნის ტიპი"
-#: server_status.php:721
+#: server_status.php:832
#, fuzzy
msgid "Replication status"
msgstr "რეპლიკაცია"
diff --git a/po/ko.po b/po/ko.po
index 6ee0360d5..d1a6a2950 100755
--- a/po/ko.po
+++ b/po/ko.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-06-04 16:07-0400\n"
+"POT-Creation-Date: 2010-06-08 12:32-0400\n"
"PO-Revision-Date: 2010-03-12 09:16+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: korean \n"
@@ -14,11 +14,11 @@ msgstr ""
"X-Generator: Translate Toolkit 1.5.3\n"
#: browse_foreigners.php:38 browse_foreigners.php:59
-#: libraries/display_tbl.lib.php:417 server_privileges.php:1475
+#: libraries/display_tbl.lib.php:417 server_privileges.php:1514
msgid "Show all"
msgstr "모두 보기"
-#: browse_foreigners.php:82 libraries/common.lib.php:2304
+#: browse_foreigners.php:82 libraries/common.lib.php:2313
#: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:394
#: libraries/export/pdf.php:147 pdf_schema.php:283 pdf_schema.php:1123
#: pdf_schema.php:1139
@@ -34,8 +34,8 @@ msgstr ""
#: browse_foreigners.php:150 db_structure.php:79 db_structure.php:80
#: db_structure.php:91 db_structure.php:93 db_structure.php:104
-#: db_structure.php:106 libraries/common.lib.php:2822
-#: libraries/common.lib.php:2829 libraries/db_links.inc.php:75
+#: db_structure.php:106 libraries/common.lib.php:2831
+#: libraries/common.lib.php:2838 libraries/db_links.inc.php:75
#: libraries/tbl_links.inc.php:63
msgid "Search"
msgstr "검색"
@@ -45,7 +45,7 @@ msgstr "검색"
#: db_structure.php:567 js/messages.php:48 libraries/Config.class.php:1046
#: libraries/Theme_Manager.class.php:311
#: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719
-#: libraries/common.lib.php:1333 libraries/common.lib.php:2279
+#: libraries/common.lib.php:1335 libraries/common.lib.php:2288
#: libraries/display_change_password.lib.php:82
#: libraries/display_create_table.lib.php:63
#: libraries/display_export.lib.php:275 libraries/display_import.lib.php:276
@@ -56,9 +56,9 @@ msgstr "검색"
#: libraries/sql_query_form.lib.php:552 libraries/tbl_properties.inc.php:782
#: main.php:128 navigation.php:237 pdf_pages.php:292 pdf_pages.php:328
#: pdf_pages.php:530 pmd_pdf.php:116 server_binlog.php:142
-#: server_privileges.php:625 server_privileges.php:1585
-#: server_privileges.php:1932 server_privileges.php:1979
-#: server_privileges.php:2018 server_replication.php:235
+#: server_privileges.php:664 server_privileges.php:1624
+#: server_privileges.php:1971 server_privileges.php:2018
+#: server_privileges.php:2057 server_replication.php:235
#: server_replication.php:318 server_replication.php:341
#: server_synchronize.php:1209 tbl_change.php:330 tbl_change.php:1174
#: tbl_change.php:1211 tbl_indexes.php:254 tbl_operations.php:265
@@ -76,7 +76,7 @@ msgstr "키 이름"
#: browse_foreigners.php:169 browse_foreigners.php:171
#: server_collations.php:55 server_collations.php:67 server_engines.php:59
-#: server_status.php:628
+#: server_status.php:739
#, fuzzy
msgid "Description"
msgstr "설명이 없습니다"
@@ -119,7 +119,7 @@ msgstr "열(칼럼) 이름"
#: libraries/db_structure.lib.php:60 libraries/export/htmlword.php:245
#: libraries/export/latex.php:360 libraries/export/odt.php:297
#: libraries/export/texytext.php:234 libraries/tbl_properties.inc.php:100
-#: pdf_schema.php:1263 pdf_schema.php:1284 server_privileges.php:2031
+#: pdf_schema.php:1263 pdf_schema.php:1284 server_privileges.php:2070
#: tbl_change.php:287 tbl_change.php:314 tbl_printview.php:143
#: tbl_printview.php:313 tbl_select.php:136 tbl_structure.php:178
#: tbl_structure.php:659 tbl_tracking.php:274 tbl_tracking.php:321
@@ -163,9 +163,9 @@ msgstr "설명(코멘트)"
#: libraries/Index.class.php:386 libraries/export/htmlword.php:322
#: libraries/export/latex.php:430 libraries/export/odt.php:368
#: libraries/export/texytext.php:311 libraries/mult_submits.inc.php:263
-#: pdf_schema.php:1344 server_privileges.php:1529 server_privileges.php:1540
-#: server_privileges.php:1850 server_privileges.php:1855
-#: server_privileges.php:2148 sql.php:132 sql.php:194 tbl_printview.php:229
+#: pdf_schema.php:1344 server_privileges.php:1568 server_privileges.php:1579
+#: server_privileges.php:1889 server_privileges.php:1894
+#: server_privileges.php:2187 sql.php:132 sql.php:194 tbl_printview.php:229
#: tbl_structure.php:350 tbl_tracking.php:337 tbl_tracking.php:342
msgid "No"
msgstr " 아니오 "
@@ -179,9 +179,9 @@ msgstr " 아니오 "
#: libraries/mult_submits.inc.php:101 libraries/mult_submits.inc.php:106
#: libraries/mult_submits.inc.php:111 libraries/mult_submits.inc.php:262
#: libraries/mult_submits.inc.php:273 pdf_schema.php:1344
-#: server_databases.php:64 server_privileges.php:1526
-#: server_privileges.php:1540 server_privileges.php:1850
-#: server_privileges.php:1853 server_privileges.php:2148 sql.php:193
+#: server_databases.php:64 server_privileges.php:1565
+#: server_privileges.php:1579 server_privileges.php:1889
+#: server_privileges.php:1892 server_privileges.php:2187 sql.php:193
#: tbl_printview.php:229 tbl_structure.php:40 tbl_structure.php:350
#: tbl_tracking.php:335 tbl_tracking.php:340
msgid "Yes"
@@ -283,7 +283,7 @@ msgstr "복사한 테이블로 옮겨감"
msgid "BLOB Repository"
msgstr ""
-#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1350
+#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1352
#: libraries/server_links.inc.php:49 server_processlist.php:59
#: tbl_tracking.php:596 test/theme.php:101
msgid "Status"
@@ -348,8 +348,8 @@ msgstr "PDF 페이지 편집"
#: db_printview.php:104 db_tracking.php:72 db_tracking.php:157
#: libraries/db_structure.lib.php:46 libraries/export/xml.php:328
-#: libraries/header.inc.php:126 pdf_pages.php:424 server_privileges.php:1626
-#: server_privileges.php:1682 server_privileges.php:1946
+#: libraries/header.inc.php:126 pdf_pages.php:424 server_privileges.php:1665
+#: server_privileges.php:1721 server_privileges.php:1985
#: server_synchronize.php:423 server_synchronize.php:866 tbl_tracking.php:592
#: test/theme.php:75
msgid "Table"
@@ -450,7 +450,7 @@ msgstr "삭제"
#: db_qbe.php:370 db_qbe.php:451 db_qbe.php:522 db_qbe.php:553
#: libraries/display_import.lib.php:166 libraries/tbl_properties.inc.php:779
-#: server_privileges.php:258 tbl_change.php:1031 tbl_indexes.php:250
+#: server_privileges.php:297 tbl_change.php:1031 tbl_indexes.php:250
#: tbl_select.php:288
msgid "Or"
msgstr "또는"
@@ -484,7 +484,7 @@ msgstr "사용할 테이블"
msgid "SQL query on database %s:"
msgstr "데이터베이스 %s에 SQL 질의:"
-#: db_qbe.php:934 libraries/common.lib.php:1223
+#: db_qbe.php:934 libraries/common.lib.php:1225
msgid "Submit Query"
msgstr "질의 실행"
@@ -523,7 +523,7 @@ msgstr ""
#: db_search.php:267 db_structure.php:77 db_structure.php:78
#: db_structure.php:90 db_structure.php:92 db_structure.php:103
-#: db_structure.php:105 libraries/common.lib.php:2824
+#: db_structure.php:105 libraries/common.lib.php:2833
#: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50
#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:467
msgid "Browse"
@@ -570,26 +570,26 @@ msgstr "찾을 테이블:"
#: db_structure.php:81 db_structure.php:82 db_structure.php:94
#: db_structure.php:95 db_structure.php:107 db_structure.php:108
-#: libraries/common.lib.php:2823 libraries/sql_query_form.lib.php:334
+#: libraries/common.lib.php:2832 libraries/sql_query_form.lib.php:334
#: libraries/sql_query_form.lib.php:337 libraries/tbl_links.inc.php:76
msgid "Insert"
msgstr "삽입"
#: db_structure.php:83 db_structure.php:96 db_structure.php:109
-#: libraries/common.lib.php:2820 libraries/common.lib.php:2827
+#: libraries/common.lib.php:2829 libraries/common.lib.php:2836
#: libraries/db_links.inc.php:63 libraries/export/htmlword.php:23
#: libraries/export/latex.php:33 libraries/export/latex.php:337
#: libraries/export/odt.php:32 libraries/export/sql.php:60
#: libraries/export/texytext.php:23 libraries/import.lib.php:1104
#: libraries/tbl_links.inc.php:56 pmd_general.php:134
-#: server_privileges.php:554 server_replication.php:315 tbl_tracking.php:269
+#: server_privileges.php:593 server_replication.php:315 tbl_tracking.php:269
msgid "Structure"
msgstr "구조"
#: db_structure.php:84 db_structure.php:85 db_structure.php:97
#: db_structure.php:98 db_structure.php:110 db_structure.php:111
#: db_structure.php:545 db_structure.php:546 db_tracking.php:91
-#: libraries/Index.class.php:483 libraries/common.lib.php:1654
+#: libraries/Index.class.php:483 libraries/common.lib.php:1656
#: libraries/db_links.inc.php:100 libraries/mult_submits.inc.php:36
#: libraries/mult_submits.inc.php:73 libraries/tbl_links.inc.php:127
#: server_databases.php:352 tbl_structure.php:27 tbl_structure.php:151
@@ -599,7 +599,7 @@ msgstr "삭제"
#: db_structure.php:86 db_structure.php:87 db_structure.php:99
#: db_structure.php:100 db_structure.php:112 db_structure.php:113
-#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1653
+#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1655
#: libraries/mult_submits.inc.php:39 libraries/tbl_links.inc.php:105
msgid "Empty"
msgstr "비우기"
@@ -641,7 +641,7 @@ msgstr ""
#: db_structure.php:485 libraries/db_structure.lib.php:49
#: libraries/server_links.inc.php:70 server_replication.php:33
-#: server_replication.php:164 server_status.php:258
+#: server_replication.php:164 server_status.php:369
msgid "Replication"
msgstr ""
@@ -657,20 +657,20 @@ msgstr ""
#: db_structure.php:524 db_structure.php:541 db_structure.php:542
#: libraries/display_tbl.lib.php:2081 libraries/display_tbl.lib.php:2086
#: libraries/mult_submits.inc.php:16 server_databases.php:346
-#: server_databases.php:351 server_privileges.php:1557 tbl_structure.php:455
+#: server_databases.php:351 server_privileges.php:1596 tbl_structure.php:455
#: tbl_structure.php:464
msgid "With selected:"
msgstr "선택한 것을:"
#: db_structure.php:527 libraries/display_tbl.lib.php:2076
-#: server_databases.php:348 server_privileges.php:530
-#: server_privileges.php:1560 tbl_structure.php:458
+#: server_databases.php:348 server_privileges.php:569
+#: server_privileges.php:1599 tbl_structure.php:458
msgid "Check All"
msgstr "모두 체크"
#: db_structure.php:531 libraries/display_tbl.lib.php:2077
#: libraries/replication_gui.lib.php:33 server_databases.php:350
-#: server_privileges.php:533 server_privileges.php:1564 tbl_structure.php:462
+#: server_privileges.php:572 server_privileges.php:1603 tbl_structure.php:462
msgid "Uncheck All"
msgstr "모두 체크안함"
@@ -708,7 +708,7 @@ msgstr "테이블 분석"
#: libraries/display_export.lib.php:83 libraries/display_tbl.lib.php:2094
#: libraries/display_tbl.lib.php:2225 libraries/mult_submits.inc.php:62
#: libraries/server_links.inc.php:84 libraries/tbl_links.inc.php:82
-#: pmd_pdf.php:84 pmd_pdf.php:109 server_privileges.php:1341
+#: pmd_pdf.php:84 pmd_pdf.php:109 server_privileges.php:1380
#: setup/frames/menu.inc.php:22 tbl_row_action.php:59
msgid "Export"
msgstr "내보내기"
@@ -726,8 +726,8 @@ msgstr ""
#: libraries/export/sql.php:342 libraries/export/texytext.php:84
#: libraries/export/xml.php:255 libraries/header.inc.php:106
#: libraries/header_printview.inc.php:58 server_databases.php:169
-#: server_privileges.php:1621 server_privileges.php:1682
-#: server_privileges.php:1940 server_processlist.php:56
+#: server_privileges.php:1660 server_privileges.php:1721
+#: server_privileges.php:1979 server_processlist.php:56
#: server_synchronize.php:1179 server_synchronize.php:1183
#: tbl_tracking.php:591 test/theme.php:65
msgid "Database"
@@ -748,8 +748,8 @@ msgstr ""
#: db_tracking.php:77 libraries/Index.class.php:440
#: libraries/db_structure.lib.php:53 server_databases.php:203
-#: server_privileges.php:1503 server_privileges.php:1686
-#: server_privileges.php:2034 tbl_structure.php:187
+#: server_privileges.php:1542 server_privileges.php:1725
+#: server_privileges.php:2073 tbl_structure.php:187
msgid "Action"
msgstr "실행"
@@ -940,11 +940,11 @@ msgstr "호스트명이 없습니다!"
msgid "The user name is empty!"
msgstr "사용자명이 없습니다!"
-#: js/messages.php:44 server_privileges.php:1197 user_password.php:70
+#: js/messages.php:44 server_privileges.php:1236 user_password.php:70
msgid "The password is empty!"
msgstr "암호가 비었습니다!"
-#: js/messages.php:45 server_privileges.php:1195 user_password.php:73
+#: js/messages.php:45 server_privileges.php:1234 user_password.php:73
msgid "The passwords aren't the same!"
msgstr "암호가 동일하지 않습니다!"
@@ -1023,8 +1023,8 @@ msgid "Prev"
msgstr "이전"
#. l10n: Display text for next month link in calendar
-#: js/messages.php:77 libraries/common.lib.php:2344
-#: libraries/common.lib.php:2347 libraries/display_tbl.lib.php:338
+#: js/messages.php:77 libraries/common.lib.php:2353
+#: libraries/common.lib.php:2356 libraries/display_tbl.lib.php:338
#: server_binlog.php:205 server_binlog.php:207 tbl_printview.php:424
#: tbl_structure.php:801
msgid "Next"
@@ -1100,27 +1100,27 @@ msgid "December"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:97 libraries/common.lib.php:1555
+#: js/messages.php:97 libraries/common.lib.php:1557
msgid "Jan"
msgstr "해오름달"
#. l10n: Short month name
-#: js/messages.php:99 libraries/common.lib.php:1557
+#: js/messages.php:99 libraries/common.lib.php:1559
msgid "Feb"
msgstr "시샘달"
#. l10n: Short month name
-#: js/messages.php:101 libraries/common.lib.php:1559
+#: js/messages.php:101 libraries/common.lib.php:1561
msgid "Mar"
msgstr "물오름달"
#. l10n: Short month name
-#: js/messages.php:103 libraries/common.lib.php:1561
+#: js/messages.php:103 libraries/common.lib.php:1563
msgid "Apr"
msgstr "잎새달"
#. l10n: Short month name
-#: js/messages.php:105 libraries/common.lib.php:1563
+#: js/messages.php:105 libraries/common.lib.php:1565
#, fuzzy
#| msgid "May"
msgctxt "Short month name"
@@ -1128,37 +1128,37 @@ msgid "May"
msgstr "푸른달"
#. l10n: Short month name
-#: js/messages.php:107 libraries/common.lib.php:1565
+#: js/messages.php:107 libraries/common.lib.php:1567
msgid "Jun"
msgstr "누리달"
#. l10n: Short month name
-#: js/messages.php:109 libraries/common.lib.php:1567
+#: js/messages.php:109 libraries/common.lib.php:1569
msgid "Jul"
msgstr "견우직녀달"
#. l10n: Short month name
-#: js/messages.php:111 libraries/common.lib.php:1569
+#: js/messages.php:111 libraries/common.lib.php:1571
msgid "Aug"
msgstr "타오름달"
#. l10n: Short month name
-#: js/messages.php:113 libraries/common.lib.php:1571
+#: js/messages.php:113 libraries/common.lib.php:1573
msgid "Sep"
msgstr "열매달"
#. l10n: Short month name
-#: js/messages.php:115 libraries/common.lib.php:1573
+#: js/messages.php:115 libraries/common.lib.php:1575
msgid "Oct"
msgstr "하늘연달"
#. l10n: Short month name
-#: js/messages.php:117 libraries/common.lib.php:1575
+#: js/messages.php:117 libraries/common.lib.php:1577
msgid "Nov"
msgstr "미틈달"
#. l10n: Short month name
-#: js/messages.php:119 libraries/common.lib.php:1577
+#: js/messages.php:119 libraries/common.lib.php:1579
msgid "Dec"
msgstr "매듭달"
@@ -1199,37 +1199,37 @@ msgid "Saturday"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:132 libraries/common.lib.php:1580
+#: js/messages.php:132 libraries/common.lib.php:1582
msgid "Sun"
msgstr "일"
#. l10n: Short week day name
-#: js/messages.php:134 libraries/common.lib.php:1582
+#: js/messages.php:134 libraries/common.lib.php:1584
msgid "Mon"
msgstr "월"
#. l10n: Short week day name
-#: js/messages.php:136 libraries/common.lib.php:1584
+#: js/messages.php:136 libraries/common.lib.php:1586
msgid "Tue"
msgstr "화"
#. l10n: Short week day name
-#: js/messages.php:138 libraries/common.lib.php:1586
+#: js/messages.php:138 libraries/common.lib.php:1588
msgid "Wed"
msgstr "수"
#. l10n: Short week day name
-#: js/messages.php:140 libraries/common.lib.php:1588
+#: js/messages.php:140 libraries/common.lib.php:1590
msgid "Thu"
msgstr "목"
#. l10n: Short week day name
-#: js/messages.php:142 libraries/common.lib.php:1590
+#: js/messages.php:142 libraries/common.lib.php:1592
msgid "Fri"
msgstr "금"
#. l10n: Short week day name
-#: js/messages.php:144 libraries/common.lib.php:1592
+#: js/messages.php:144 libraries/common.lib.php:1594
msgid "Sat"
msgstr "토"
@@ -1373,7 +1373,7 @@ msgid "Comment"
msgstr "설명(코멘트)"
#: libraries/Index.class.php:466 libraries/common.lib.php:616
-#: libraries/common.lib.php:1199 libraries/display_tbl.lib.php:1117
+#: libraries/common.lib.php:1201 libraries/display_tbl.lib.php:1117
#: libraries/import.lib.php:1087 libraries/import.lib.php:1111
#: pdf_pages.php:285 setup/frames/index.inc.php:124
#: setup/lib/messages.inc.php:352 tbl_row_action.php:69
@@ -1397,7 +1397,7 @@ msgid ""
msgstr ""
#: libraries/List_Database.class.php:431 libraries/server_links.inc.php:41
-#: server_databases.php:88 server_privileges.php:1621
+#: server_databases.php:88 server_privileges.php:1660
#: setup/lib/messages.inc.php:110 test/theme.php:93
msgid "Databases"
msgstr "데이터베이스 "
@@ -1715,7 +1715,7 @@ msgid "Documentation"
msgstr "도움말"
#: libraries/common.lib.php:595 libraries/header_printview.inc.php:61
-#: server_processlist.php:60 server_status.php:247
+#: server_processlist.php:60 server_status.php:358
msgid "SQL query"
msgstr "SQL 질의"
@@ -1731,129 +1731,129 @@ msgstr "SQL 해석"
msgid "Skip Explain SQL"
msgstr "해석(EXPLAIN) 생략"
-#: libraries/common.lib.php:1212
+#: libraries/common.lib.php:1214
msgid "Without PHP Code"
msgstr "PHP 코드 없이 보기"
-#: libraries/common.lib.php:1215 setup/lib/messages.inc.php:355
+#: libraries/common.lib.php:1217 setup/lib/messages.inc.php:355
msgid "Create PHP Code"
msgstr "PHP 코드 보기"
-#: libraries/common.lib.php:1233 server_status.php:341
+#: libraries/common.lib.php:1235 server_status.php:452
#: setup/lib/messages.inc.php:354
msgid "Refresh"
msgstr ""
-#: libraries/common.lib.php:1242
+#: libraries/common.lib.php:1244
#, fuzzy
msgid "Skip Validate SQL"
msgstr "SQL 검사"
-#: libraries/common.lib.php:1245 setup/lib/messages.inc.php:356 sql.php:518
+#: libraries/common.lib.php:1247 setup/lib/messages.inc.php:356 sql.php:518
msgid "Validate SQL"
msgstr "SQL 검사"
-#: libraries/common.lib.php:1276
+#: libraries/common.lib.php:1278
msgid "Inline edit of this query"
msgstr ""
-#: libraries/common.lib.php:1278
+#: libraries/common.lib.php:1280
msgid "Inline"
msgstr ""
-#: libraries/common.lib.php:1332 libraries/common.lib.php:1347
+#: libraries/common.lib.php:1334 libraries/common.lib.php:1349
msgid "Profiling"
msgstr ""
-#: libraries/common.lib.php:1351 libraries/tbl_triggers.lib.php:28
+#: libraries/common.lib.php:1353 libraries/tbl_triggers.lib.php:28
#: server_processlist.php:58
msgid "Time"
msgstr "시간"
#. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "B"
msgstr "B"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "KiB"
msgstr "KB"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "MiB"
msgstr "MB"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "GiB"
msgstr "GB"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "TiB"
msgstr "TB"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "PiB"
msgstr "PB"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "EiB"
msgstr "EB"
#. l10n: Thousands separator
-#: libraries/common.lib.php:1417
+#: libraries/common.lib.php:1419
msgid ","
msgstr ","
#. l10n: Decimal separator
-#: libraries/common.lib.php:1419
+#: libraries/common.lib.php:1421
msgid "."
msgstr "."
#. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string
-#: libraries/common.lib.php:1596
+#: libraries/common.lib.php:1598
#: libraries/transformations/text_plain__dateformat.inc.php:34
msgid "%B %d, %Y at %I:%M %p"
msgstr "%y-%m-%d %H:%M "
-#: libraries/common.lib.php:1898
+#: libraries/common.lib.php:1907
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "%s days, %s hours, %s minutes and %s seconds"
-#: libraries/common.lib.php:2313 libraries/common.lib.php:2316
-#: libraries/display_tbl.lib.php:290 server_status.php:608
+#: libraries/common.lib.php:2322 libraries/common.lib.php:2325
+#: libraries/display_tbl.lib.php:290 server_status.php:719
msgid "Begin"
msgstr "처음"
-#: libraries/common.lib.php:2314 libraries/common.lib.php:2317
+#: libraries/common.lib.php:2323 libraries/common.lib.php:2326
#: libraries/display_tbl.lib.php:291 server_binlog.php:168
#: server_binlog.php:170
msgid "Previous"
msgstr "이전"
-#: libraries/common.lib.php:2345 libraries/common.lib.php:2348
+#: libraries/common.lib.php:2354 libraries/common.lib.php:2357
#: libraries/display_tbl.lib.php:353
msgid "End"
msgstr "마지막"
-#: libraries/common.lib.php:2421
+#: libraries/common.lib.php:2430
#, php-format
msgid "Jump to database "%s"."
msgstr "데이터베이스 "%s" 로 이동."
-#: libraries/common.lib.php:2441
+#: libraries/common.lib.php:2450
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr ""
-#: libraries/common.lib.php:2821 libraries/common.lib.php:2828
+#: libraries/common.lib.php:2830 libraries/common.lib.php:2837
#: libraries/db_links.inc.php:68 libraries/export/sql.php:25
#: libraries/import/sql.php:18 libraries/server_links.inc.php:45
#: libraries/tbl_links.inc.php:60 querywindow.php:99 test/theme.php:97
msgid "SQL"
msgstr "SQL"
-#: libraries/common.lib.php:2830 libraries/db_links.inc.php:104
+#: libraries/common.lib.php:2839 libraries/db_links.inc.php:104
#: libraries/tbl_links.inc.php:95 libraries/tbl_links.inc.php:117
#: view_operations.php:89
msgid "Operations"
@@ -1908,8 +1908,8 @@ msgid "Import"
msgstr "내보내기"
#: libraries/db_links.inc.php:111 libraries/server_links.inc.php:66
-#: server_privileges.php:72 server_privileges.php:1683
-#: server_privileges.php:2032 test/theme.php:117
+#: server_privileges.php:111 server_privileges.php:1722
+#: server_privileges.php:2071 test/theme.php:117
msgid "Privileges"
msgstr "사용권한"
@@ -1955,22 +1955,22 @@ msgid "Change password"
msgstr "암호 변경"
#: libraries/display_change_password.lib.php:35
-#: libraries/replication_gui.lib.php:345 server_privileges.php:768
+#: libraries/replication_gui.lib.php:345 server_privileges.php:807
msgid "No Password"
msgstr "암호 없음"
#: libraries/display_change_password.lib.php:41
#: libraries/replication_gui.lib.php:59 libraries/replication_gui.lib.php:60
#: libraries/replication_gui.lib.php:335 libraries/replication_gui.lib.php:339
-#: libraries/replication_gui.lib.php:349 server_privileges.php:757
-#: server_privileges.php:761 server_privileges.php:772
-#: server_privileges.php:1499 server_synchronize.php:1175
+#: libraries/replication_gui.lib.php:349 server_privileges.php:796
+#: server_privileges.php:800 server_privileges.php:811
+#: server_privileges.php:1538 server_synchronize.php:1175
msgid "Password"
msgstr "암호"
#: libraries/display_change_password.lib.php:46
#: libraries/replication_gui.lib.php:353 libraries/replication_gui.lib.php:356
-#: server_privileges.php:776 server_privileges.php:779
+#: server_privileges.php:815 server_privileges.php:818
msgid "Re-type"
msgstr "재입력"
@@ -1983,12 +1983,12 @@ msgid "MySQL 4.0 compatible"
msgstr ""
#: libraries/display_change_password.lib.php:72
-#: libraries/replication_gui.lib.php:360 server_privileges.php:783
+#: libraries/replication_gui.lib.php:360 server_privileges.php:822
msgid "Generate Password"
msgstr ""
#: libraries/display_change_password.lib.php:75
-#: libraries/replication_gui.lib.php:363 server_privileges.php:786
+#: libraries/replication_gui.lib.php:363 server_privileges.php:825
msgid "Generate"
msgstr ""
@@ -2001,8 +2001,8 @@ msgstr "새 데이터베이스 만들기"
msgid "Create"
msgstr " 만들기 "
-#: libraries/display_create_database.lib.php:40 server_privileges.php:74
-#: server_privileges.php:1388 server_replication.php:35
+#: libraries/display_create_database.lib.php:40 server_privileges.php:113
+#: server_privileges.php:1427 server_replication.php:35
msgid "No Privileges"
msgstr "권한 없음"
@@ -2091,7 +2091,7 @@ msgstr "압축"
#: libraries/display_export.lib.php:240 libraries/display_import.lib.php:197
#: libraries/display_import.lib.php:210 libraries/display_tbl.lib.php:530
#: libraries/export/sql.php:868 libraries/tbl_properties.inc.php:575
-#: server_privileges.php:1836 server_processlist.php:75
+#: server_privileges.php:1875 server_processlist.php:75
msgid "None"
msgstr "없음"
@@ -2410,7 +2410,7 @@ msgstr ""
msgid "Buffer Pool"
msgstr ""
-#: libraries/engines/innodb.lib.php:145 server_status.php:306
+#: libraries/engines/innodb.lib.php:145 server_status.php:417
msgid "InnoDB Status"
msgstr ""
@@ -2419,8 +2419,8 @@ msgid "Buffer Pool Usage"
msgstr ""
#: libraries/engines/innodb.lib.php:194 server_databases.php:137
-#: server_databases.php:305 server_status.php:414 server_status.php:475
-#: server_status.php:496 tbl_printview.php:351 tbl_structure.php:696
+#: server_databases.php:305 server_status.php:525 server_status.php:586
+#: server_status.php:607 tbl_printview.php:351 tbl_structure.php:696
msgid "Total"
msgstr "전체 사용량"
@@ -2738,7 +2738,7 @@ msgstr ""
#: libraries/export/latex.php:201 libraries/export/odt.php:48
#: libraries/export/sql.php:106 libraries/export/sql.php:868
#: libraries/export/texytext.php:27 server_databases.php:127
-#: server_privileges.php:537 server_replication.php:316 tbl_printview.php:317
+#: server_privileges.php:576 server_replication.php:316 tbl_printview.php:317
#: tbl_structure.php:665
msgid "Data"
msgstr "데이터"
@@ -2790,9 +2790,9 @@ msgstr ""
#: libraries/export/xml.php:102 libraries/header_printview.inc.php:57
#: libraries/replication_gui.lib.php:63 libraries/replication_gui.lib.php:174
#: libraries/replication_gui.lib.php:269 libraries/replication_gui.lib.php:272
-#: libraries/replication_gui.lib.php:329 server_privileges.php:692
-#: server_privileges.php:695 server_privileges.php:751
-#: server_privileges.php:1498 server_privileges.php:2030
+#: libraries/replication_gui.lib.php:329 server_privileges.php:731
+#: server_privileges.php:734 server_privileges.php:790
+#: server_privileges.php:1537 server_privileges.php:2069
#: server_processlist.php:55 server_synchronize.php:1159
msgid "Host"
msgstr "호스트"
@@ -3149,744 +3149,6 @@ msgstr "없음"
msgid "Convert to Kana"
msgstr ""
-#. l10n: Text direction, use either ltr or rtl
-#: libraries/messages.inc.php:19
-msgid "ltr"
-msgstr "ltr"
-
-#: libraries/messages.inc.php:21
-msgid "Content of table __TABLE__"
-msgstr ""
-
-#: libraries/messages.inc.php:22
-msgid "(continued)"
-msgstr ""
-
-#: libraries/messages.inc.php:23
-msgid "Structure of table __TABLE__"
-msgstr ""
-
-#: libraries/messages.inc.php:25 server_privileges.php:227
-msgid "Includes all privileges except GRANT."
-msgstr "GRANT 이외의 모든 권한을 포함함."
-
-#: libraries/messages.inc.php:26 server_privileges.php:153
-#: server_privileges.php:476
-msgid "Allows altering the structure of existing tables."
-msgstr "테이블 구조 변경 허용."
-
-#: libraries/messages.inc.php:27 server_privileges.php:169
-#: server_privileges.php:482
-#, fuzzy
-msgid "Allows altering and dropping stored routines."
-msgstr "인덱스 생성 및 삭제 허용."
-
-#: libraries/messages.inc.php:28 server_privileges.php:145
-#: server_privileges.php:475
-msgid "Allows creating new databases and tables."
-msgstr "DB 및 테이블 생성 허용."
-
-#: libraries/messages.inc.php:29 server_privileges.php:168
-#: server_privileges.php:481
-#, fuzzy
-msgid "Allows creating stored routines."
-msgstr "테이블 생성 허용."
-
-#: libraries/messages.inc.php:30 server_privileges.php:475
-msgid "Allows creating new tables."
-msgstr "테이블 생성 허용."
-
-#: libraries/messages.inc.php:31 server_privileges.php:156
-#: server_privileges.php:479
-msgid "Allows creating temporary tables."
-msgstr "임시테이블 생성 허용."
-
-#: libraries/messages.inc.php:32 server_privileges.php:170
-#: server_privileges.php:515
-msgid "Allows creating, dropping and renaming user accounts."
-msgstr ""
-
-#: libraries/messages.inc.php:33 server_privileges.php:160
-#: server_privileges.php:164 server_privileges.php:487
-#: server_privileges.php:491
-#, fuzzy
-msgid "Allows creating new views."
-msgstr "테이블 생성 허용."
-
-#: libraries/messages.inc.php:34 server_privileges.php:144
-#: server_privileges.php:467
-msgid "Allows deleting data."
-msgstr "데이터 삭제 허용."
-
-#: libraries/messages.inc.php:35 server_privileges.php:146
-#: server_privileges.php:478
-msgid "Allows dropping databases and tables."
-msgstr "DB 및 테이블 삭제 허용."
-
-#: libraries/messages.inc.php:36 server_privileges.php:478
-msgid "Allows dropping tables."
-msgstr "테이블 삭제 허용."
-
-#: libraries/messages.inc.php:37 server_privileges.php:161
-#: server_privileges.php:495
-msgid "Allows to set up events for the event scheduler"
-msgstr ""
-
-#: libraries/messages.inc.php:38 server_privileges.php:171
-#: server_privileges.php:483
-msgid "Allows executing stored routines."
-msgstr ""
-
-#: libraries/messages.inc.php:39 server_privileges.php:150
-#: server_privileges.php:470
-msgid "Allows importing data from and exporting data into files."
-msgstr "데이터를 파일에서 가져오기 및 파일로 내보내기 허용."
-
-#: libraries/messages.inc.php:40 server_privileges.php:501
-msgid ""
-"Allows adding users and privileges without reloading the privilege tables."
-msgstr "권한 테이블을 갱신하지 않고 사용자와 권한 추가하기 허용."
-
-#: libraries/messages.inc.php:41 server_privileges.php:152
-#: server_privileges.php:477
-msgid "Allows creating and dropping indexes."
-msgstr "인덱스 생성 및 삭제 허용."
-
-#: libraries/messages.inc.php:42 server_privileges.php:142
-#: server_privileges.php:403 server_privileges.php:465
-msgid "Allows inserting and replacing data."
-msgstr "데이터 추가(insert) 및 변경(replace) 허용."
-
-#: libraries/messages.inc.php:43 server_privileges.php:157
-#: server_privileges.php:510
-msgid "Allows locking tables for the current thread."
-msgstr "현재 쓰레드에 대한 테이블 잠금(lock) 허용."
-
-#: libraries/messages.inc.php:44 server_privileges.php:607
-#: server_privileges.php:609
-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/messages.inc.php:45 server_privileges.php:595
-#: server_privileges.php:597
-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/messages.inc.php:46 server_privileges.php:601
-#: server_privileges.php:603
-msgid ""
-"Limits the number of commands that change any table or database the user may "
-"execute per hour."
-msgstr ""
-"Limits the number of commands that change any table or database the user may "
-"execute per hour."
-
-#: libraries/messages.inc.php:47 server_privileges.php:613
-#: server_privileges.php:615
-#, 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/messages.inc.php:48 server_privileges.php:149
-#: server_privileges.php:505
-msgid "Allows viewing processes of all users"
-msgstr ""
-
-#: libraries/messages.inc.php:49 server_privileges.php:151
-#: server_privileges.php:409 server_privileges.php:511
-msgid "Has no effect in this MySQL version."
-msgstr "이 버전의 MySQL에는 소용이 없습니다."
-
-#: libraries/messages.inc.php:50 server_privileges.php:147
-#: server_privileges.php:506
-msgid "Allows reloading server settings and flushing the server's caches."
-msgstr "캐시를 비우고 서버를 재시동하는 것을 허용."
-
-#: libraries/messages.inc.php:51 server_privileges.php:159
-#: server_privileges.php:513
-msgid "Allows the user to ask where the slaves / masters are."
-msgstr ""
-
-#: libraries/messages.inc.php:52 server_privileges.php:158
-#: server_privileges.php:514
-msgid "Needed for the replication slaves."
-msgstr "복제서버(replication slaves)에 필요합니다."
-
-#: libraries/messages.inc.php:53 server_privileges.php:141
-#: server_privileges.php:400 server_privileges.php:464
-msgid "Allows reading data."
-msgstr "데이터 읽기 허용."
-
-#: libraries/messages.inc.php:54 server_privileges.php:154
-#: server_privileges.php:508
-msgid "Gives access to the complete list of databases."
-msgstr "전체 데이터베이스 목록 접근을 허용"
-
-#: libraries/messages.inc.php:55 server_privileges.php:165
-#: server_privileges.php:167 server_privileges.php:480
-msgid "Allows performing SHOW CREATE VIEW queries."
-msgstr ""
-
-#: libraries/messages.inc.php:56 server_privileges.php:148
-#: server_privileges.php:507
-msgid "Allows shutting down the server."
-msgstr "서버 종료 허용."
-
-#: libraries/messages.inc.php:57 server_privileges.php:155
-#: server_privileges.php:504
-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/messages.inc.php:58 server_privileges.php:162
-#: server_privileges.php:496
-#, fuzzy
-msgid "Allows creating and dropping triggers"
-msgstr "인덱스 생성 및 삭제 허용."
-
-#: libraries/messages.inc.php:59 server_privileges.php:143
-#: server_privileges.php:406 server_privileges.php:466
-msgid "Allows changing data."
-msgstr "데이터 변경 허용."
-
-#: libraries/messages.inc.php:60 server_privileges.php:221
-msgid "No privileges."
-msgstr "권한 없음."
-
-#: libraries/messages.inc.php:62
-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/messages.inc.php:63
-msgid "The number of transactions that used the temporary binary log cache."
-msgstr ""
-
-#: libraries/messages.inc.php:64
-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 "
-"to increase the tmp_table_size value to cause temporary tables to be memory-"
-"based instead of disk-based."
-msgstr ""
-
-#: libraries/messages.inc.php:65
-msgid "How many temporary files mysqld has created."
-msgstr ""
-
-#: libraries/messages.inc.php:66
-msgid ""
-"The number of in-memory temporary tables created automatically by the server "
-"while executing statements."
-msgstr ""
-
-#: libraries/messages.inc.php:67
-msgid ""
-"The number of rows written with INSERT DELAYED for which some error occurred "
-"(probably duplicate key)."
-msgstr ""
-
-#: libraries/messages.inc.php:68
-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/messages.inc.php:69
-msgid "The number of INSERT DELAYED rows written."
-msgstr ""
-
-#: libraries/messages.inc.php:70
-msgid "The number of executed FLUSH statements."
-msgstr ""
-
-#: libraries/messages.inc.php:71
-msgid "The number of internal COMMIT statements."
-msgstr ""
-
-#: libraries/messages.inc.php:72
-msgid "The number of times a row was deleted from a table."
-msgstr ""
-
-#: libraries/messages.inc.php:73
-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/messages.inc.php:74
-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/messages.inc.php:75
-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/messages.inc.php:76
-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/messages.inc.php:77
-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/messages.inc.php:78
-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 "
-"probably have a lot of queries that require MySQL to scan whole tables or "
-"you have joins that don't use keys properly."
-msgstr ""
-
-#: libraries/messages.inc.php:79
-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 "
-"tables are not properly indexed or that your queries are not written to take "
-"advantage of the indexes you have."
-msgstr ""
-
-#: libraries/messages.inc.php:80
-msgid "The number of internal ROLLBACK statements."
-msgstr ""
-
-#: libraries/messages.inc.php:81
-msgid "The number of requests to update a row in a table."
-msgstr ""
-
-#: libraries/messages.inc.php:82
-msgid "The number of requests to insert a row in a table."
-msgstr ""
-
-#: libraries/messages.inc.php:83
-msgid "The number of pages containing data (dirty or clean)."
-msgstr ""
-
-#: libraries/messages.inc.php:84
-msgid "The number of pages currently dirty."
-msgstr ""
-
-#: libraries/messages.inc.php:85
-msgid "The number of buffer pool pages that have been requested to be flushed."
-msgstr ""
-
-#: libraries/messages.inc.php:86
-msgid "The number of free pages."
-msgstr ""
-
-#: libraries/messages.inc.php:87
-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/messages.inc.php:88
-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 "
-"be calculated as Innodb_buffer_pool_pages_total - "
-"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data."
-msgstr ""
-
-#: libraries/messages.inc.php:89
-msgid "Total size of buffer pool, in pages."
-msgstr ""
-
-#: libraries/messages.inc.php:90
-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/messages.inc.php:91
-msgid ""
-"The number of sequential read-aheads InnoDB initiated. This happens when "
-"InnoDB does a sequential full table scan."
-msgstr ""
-
-#: libraries/messages.inc.php:92
-msgid "The number of logical read requests InnoDB has done."
-msgstr ""
-
-#: libraries/messages.inc.php:93
-msgid ""
-"The number of logical reads that InnoDB could not satisfy from buffer pool "
-"and had to do a single-page read."
-msgstr ""
-
-#: libraries/messages.inc.php:94
-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 "
-"available, it's necessary to wait for pages to be flushed first. This "
-"counter counts instances of these waits. If the buffer pool size was set "
-"properly, this value should be small."
-msgstr ""
-
-#: libraries/messages.inc.php:95
-msgid "The number writes done to the InnoDB buffer pool."
-msgstr ""
-
-#: libraries/messages.inc.php:96
-msgid "The number of fsync() operations so far."
-msgstr ""
-
-#: libraries/messages.inc.php:97
-msgid "The current number of pending fsync() operations."
-msgstr ""
-
-#: libraries/messages.inc.php:98
-msgid "The current number of pending reads."
-msgstr ""
-
-#: libraries/messages.inc.php:99
-msgid "The current number of pending writes."
-msgstr ""
-
-#: libraries/messages.inc.php:100
-msgid "The amount of data read so far, in bytes."
-msgstr ""
-
-#: libraries/messages.inc.php:101
-msgid "The total number of data reads."
-msgstr ""
-
-#: libraries/messages.inc.php:102
-msgid "The total number of data writes."
-msgstr ""
-
-#: libraries/messages.inc.php:103
-msgid "The amount of data written so far, in bytes."
-msgstr ""
-
-#: libraries/messages.inc.php:104
-msgid "The number of pages that have been written for doublewrite operations."
-msgstr ""
-
-#: libraries/messages.inc.php:105
-msgid "The number of doublewrite operations that have been performed."
-msgstr ""
-
-#: libraries/messages.inc.php:106
-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/messages.inc.php:107
-msgid "The number of log write requests."
-msgstr ""
-
-#: libraries/messages.inc.php:108
-msgid "The number of physical writes to the log file."
-msgstr ""
-
-#: libraries/messages.inc.php:109
-msgid "The number of fsync() writes done to the log file."
-msgstr ""
-
-#: libraries/messages.inc.php:110
-msgid "The number of pending log file fsyncs."
-msgstr ""
-
-#: libraries/messages.inc.php:111
-msgid "Pending log file writes."
-msgstr ""
-
-#: libraries/messages.inc.php:112
-msgid "The number of bytes written to the log file."
-msgstr ""
-
-#: libraries/messages.inc.php:113
-msgid "The number of pages created."
-msgstr ""
-
-#: libraries/messages.inc.php:114
-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/messages.inc.php:115
-msgid "The number of pages read."
-msgstr ""
-
-#: libraries/messages.inc.php:116
-msgid "The number of pages written."
-msgstr ""
-
-#: libraries/messages.inc.php:117
-msgid "The number of row locks currently being waited for."
-msgstr ""
-
-#: libraries/messages.inc.php:118
-msgid "The average time to acquire a row lock, in milliseconds."
-msgstr ""
-
-#: libraries/messages.inc.php:119
-msgid "The total time spent in acquiring row locks, in milliseconds."
-msgstr ""
-
-#: libraries/messages.inc.php:120
-msgid "The maximum time to acquire a row lock, in milliseconds."
-msgstr ""
-
-#: libraries/messages.inc.php:121
-msgid "The number of times a row lock had to be waited for."
-msgstr ""
-
-#: libraries/messages.inc.php:122
-msgid "The number of rows deleted from InnoDB tables."
-msgstr ""
-
-#: libraries/messages.inc.php:123
-msgid "The number of rows inserted in InnoDB tables."
-msgstr ""
-
-#: libraries/messages.inc.php:124
-msgid "The number of rows read from InnoDB tables."
-msgstr ""
-
-#: libraries/messages.inc.php:125
-msgid "The number of rows updated in InnoDB tables."
-msgstr ""
-
-#: libraries/messages.inc.php:126
-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/messages.inc.php:127
-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/messages.inc.php:128
-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/messages.inc.php:129
-msgid "The number of requests to read a key block from the cache."
-msgstr ""
-
-#: libraries/messages.inc.php:130
-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/messages.inc.php:131
-msgid "The number of requests to write a key block to the cache."
-msgstr ""
-
-#: libraries/messages.inc.php:132
-msgid "The number of physical writes of a key block to disk."
-msgstr ""
-
-#: libraries/messages.inc.php:133
-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/messages.inc.php:134
-msgid "The number of rows waiting to be written in INSERT DELAYED queues."
-msgstr ""
-
-#: libraries/messages.inc.php:135
-msgid ""
-"The number of tables that have been opened. If opened tables is big, your "
-"table cache value is probably too small."
-msgstr ""
-
-#: libraries/messages.inc.php:136
-msgid "The number of files that are open."
-msgstr ""
-
-#: libraries/messages.inc.php:137
-msgid "The number of streams that are open (used mainly for logging)."
-msgstr ""
-
-#: libraries/messages.inc.php:138
-msgid "The number of tables that are open."
-msgstr ""
-
-#: libraries/messages.inc.php:139
-msgid "The number of free memory blocks in query cache."
-msgstr ""
-
-#: libraries/messages.inc.php:140
-msgid "The amount of free memory for query cache."
-msgstr ""
-
-#: libraries/messages.inc.php:141
-msgid "The number of cache hits."
-msgstr ""
-
-#: libraries/messages.inc.php:142
-msgid "The number of queries added to the cache."
-msgstr ""
-
-#: libraries/messages.inc.php:143
-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 "
-"cache size. The query cache uses a least recently used (LRU) strategy to "
-"decide which queries to remove from the cache."
-msgstr ""
-
-#: libraries/messages.inc.php:144
-msgid ""
-"The number of non-cached queries (not cachable, or not cached due to the "
-"query_cache_type setting)."
-msgstr ""
-
-#: libraries/messages.inc.php:145
-msgid "The number of queries registered in the cache."
-msgstr ""
-
-#: libraries/messages.inc.php:146
-msgid "The total number of blocks in the query cache."
-msgstr ""
-
-#: libraries/messages.inc.php:147
-#, fuzzy
-msgctxt "$strShowStatusReset"
-msgid "Reset"
-msgstr "리세트"
-
-#: libraries/messages.inc.php:148
-msgid "The status of failsafe replication (not yet implemented)."
-msgstr ""
-
-#: libraries/messages.inc.php:149
-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/messages.inc.php:150
-msgid "The number of joins that used a range search on a reference table."
-msgstr ""
-
-#: libraries/messages.inc.php:151
-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/messages.inc.php:152
-msgid ""
-"The number of joins that used ranges on the first table. (It's normally not "
-"critical even if this is big.)"
-msgstr ""
-
-#: libraries/messages.inc.php:153
-msgid "The number of joins that did a full scan of the first table."
-msgstr ""
-
-#: libraries/messages.inc.php:154
-msgid "The number of temporary tables currently open by the slave SQL thread."
-msgstr ""
-
-#: libraries/messages.inc.php:155
-msgid ""
-"Total (since startup) number of times the replication slave SQL thread has "
-"retried transactions."
-msgstr ""
-
-#: libraries/messages.inc.php:156
-msgid "This is ON if this server is a slave that is connected to a master."
-msgstr ""
-
-#: libraries/messages.inc.php:157
-msgid ""
-"The number of threads that have taken more than slow_launch_time seconds to "
-"create."
-msgstr ""
-
-#: libraries/messages.inc.php:158
-msgid ""
-"The number of queries that have taken more than long_query_time seconds."
-msgstr ""
-
-#: libraries/messages.inc.php:159
-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/messages.inc.php:160
-msgid "The number of sorts that were done with ranges."
-msgstr ""
-
-#: libraries/messages.inc.php:161
-msgid "The number of sorted rows."
-msgstr ""
-
-#: libraries/messages.inc.php:162
-msgid "The number of sorts that were done by scanning the table."
-msgstr ""
-
-#: libraries/messages.inc.php:163
-msgid "The number of times that a table lock was acquired immediately."
-msgstr ""
-
-#: libraries/messages.inc.php:164
-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 "
-"should first optimize your queries, and then either split your table or "
-"tables or use replication."
-msgstr ""
-
-#: libraries/messages.inc.php:165
-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/messages.inc.php:166
-msgid "The number of currently open connections."
-msgstr ""
-
-#: libraries/messages.inc.php:167
-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 "
-"doesn't give a notable performance improvement if you have a good thread "
-"implementation.)"
-msgstr ""
-
-#: libraries/messages.inc.php:168
-msgid "The number of threads that are not sleeping."
-msgstr ""
-
#: libraries/mult_submits.inc.php:76 libraries/tbl_properties.inc.php:513
#: tbl_structure.php:29 tbl_structure.php:153 tbl_structure.php:157
#: tbl_structure.php:473
@@ -4205,8 +3467,8 @@ msgstr ""
#: libraries/replication_gui.lib.php:55 libraries/replication_gui.lib.php:56
#: libraries/replication_gui.lib.php:249 libraries/replication_gui.lib.php:252
-#: libraries/replication_gui.lib.php:259 server_privileges.php:672
-#: server_privileges.php:675 server_privileges.php:682
+#: libraries/replication_gui.lib.php:259 server_privileges.php:711
+#: server_privileges.php:714 server_privileges.php:721
#: server_synchronize.php:1171
msgid "User name"
msgstr "사용자명"
@@ -4225,11 +3487,11 @@ msgid "Slave status"
msgstr ""
#: libraries/replication_gui.lib.php:114 libraries/sql_query_form.lib.php:445
-#: server_status.php:626 server_variables.php:52
+#: server_status.php:737 server_variables.php:52
msgid "Variable"
msgstr "변수"
-#: libraries/replication_gui.lib.php:115 server_status.php:627
+#: libraries/replication_gui.lib.php:115 server_status.php:738
#: tbl_change.php:324 tbl_printview.php:370 tbl_select.php:139
#: tbl_structure.php:729
msgid "Value"
@@ -4250,41 +3512,58 @@ msgstr ""
msgid "Add slave replication user"
msgstr ""
-#: libraries/replication_gui.lib.php:254 server_privileges.php:677
+#: libraries/replication_gui.lib.php:254 server_privileges.php:716
msgid "Any user"
msgstr "아무나"
#: libraries/replication_gui.lib.php:255 libraries/replication_gui.lib.php:323
-#: libraries/replication_gui.lib.php:346 server_privileges.php:678
-#: server_privileges.php:745 server_privileges.php:769
-#: server_privileges.php:1889 server_privileges.php:1919
+#: libraries/replication_gui.lib.php:346 server_privileges.php:717
+#: server_privileges.php:784 server_privileges.php:808
+#: server_privileges.php:1928 server_privileges.php:1958
msgid "Use text field"
msgstr ""
-#: libraries/replication_gui.lib.php:302 server_privileges.php:725
+#: libraries/replication_gui.lib.php:302 server_privileges.php:764
msgid "Any host"
msgstr "아무데서나"
-#: libraries/replication_gui.lib.php:306 server_privileges.php:729
+#: libraries/replication_gui.lib.php:306 server_privileges.php:768
msgid "Local"
msgstr "Local"
-#: libraries/replication_gui.lib.php:312 server_privileges.php:734
+#: libraries/replication_gui.lib.php:312 server_privileges.php:773
msgid "This Host"
msgstr ""
-#: libraries/replication_gui.lib.php:318 server_privileges.php:740
+#: libraries/replication_gui.lib.php:318 server_privileges.php:779
msgid "Use Host Table"
msgstr ""
-#: libraries/replication_gui.lib.php:331 server_privileges.php:753
+#: libraries/replication_gui.lib.php:331 server_privileges.php:792
msgid ""
"When Host table is used, this field is ignored and values stored in Host "
"table are used instead."
msgstr ""
-#: libraries/select_lang.lib.php:480 libraries/select_lang.lib.php:486
-#: libraries/select_lang.lib.php:492
+#. l10n: Text direction, use either ltr or rtl
+#: libraries/select_lang.lib.php:491
+msgid "ltr"
+msgstr "ltr"
+
+#: libraries/select_lang.lib.php:493
+msgid "Content of table __TABLE__"
+msgstr ""
+
+#: libraries/select_lang.lib.php:494
+msgid "(continued)"
+msgstr ""
+
+#: libraries/select_lang.lib.php:495
+msgid "Structure of table __TABLE__"
+msgstr ""
+
+#: libraries/select_lang.lib.php:500 libraries/select_lang.lib.php:506
+#: libraries/select_lang.lib.php:512
#, php-format
msgid "Unknown language: %1$s."
msgstr ""
@@ -4296,7 +3575,7 @@ msgid "Servers"
msgstr "서버"
#: libraries/server_links.inc.php:53 server_engines.php:112
-#: server_engines.php:116 server_status.php:304 test/theme.php:105
+#: server_engines.php:116 server_status.php:415 test/theme.php:105
msgid "Variables"
msgstr "환경설정값"
@@ -4309,7 +3588,7 @@ msgid "Engines"
msgstr ""
#: libraries/server_links.inc.php:76 server_binlog.php:110
-#: server_status.php:253 test/theme.php:121
+#: server_status.php:364 test/theme.php:121
#, fuzzy
msgid "Binary log"
msgstr "바이너리"
@@ -4693,8 +3972,8 @@ msgstr "리세트"
msgid "Protocol version"
msgstr ""
-#: main.php:189 server_privileges.php:1350 server_privileges.php:1497
-#: server_privileges.php:1611 server_privileges.php:2029
+#: main.php:189 server_privileges.php:1389 server_privileges.php:1536
+#: server_privileges.php:1650 server_privileges.php:2068
#: server_processlist.php:54
msgid "User"
msgstr "사용자"
@@ -5066,7 +4345,7 @@ msgstr "%s 데이터베이스를 삭제했습니다."
msgid "Databases statistics"
msgstr "데이터베이스 사용량 통계"
-#: server_databases.php:117 server_status.php:260
+#: server_databases.php:117 server_status.php:371
#: setup/lib/messages.inc.php:117
msgid "Tables"
msgstr "테이블 수"
@@ -5085,6 +4364,14 @@ msgstr ""
msgid "Jump to database"
msgstr "데이터베이스가 없습니다"
+#: server_databases.php:267
+msgid "Not replicated"
+msgstr ""
+
+#: server_databases.php:273
+msgid "Replicated"
+msgstr ""
+
#: server_databases.php:289
#, php-format
msgid "Check privileges for database "%s"."
@@ -5118,143 +4405,332 @@ msgstr ""
msgid "View dump (schema) of databases"
msgstr "데이터베이스의 덤프(스키마) 데이터 보기"
-#: server_privileges.php:263 server_privileges.php:264
+#: server_privileges.php:24 server_privileges.php:266
+msgid "Includes all privileges except GRANT."
+msgstr "GRANT 이외의 모든 권한을 포함함."
+
+#: server_privileges.php:25 server_privileges.php:192
+#: server_privileges.php:515
+msgid "Allows altering the structure of existing tables."
+msgstr "테이블 구조 변경 허용."
+
+#: server_privileges.php:26 server_privileges.php:208
+#: server_privileges.php:521
+#, fuzzy
+msgid "Allows altering and dropping stored routines."
+msgstr "인덱스 생성 및 삭제 허용."
+
+#: server_privileges.php:27 server_privileges.php:184
+#: server_privileges.php:514
+msgid "Allows creating new databases and tables."
+msgstr "DB 및 테이블 생성 허용."
+
+#: server_privileges.php:28 server_privileges.php:207
+#: server_privileges.php:520
+#, fuzzy
+msgid "Allows creating stored routines."
+msgstr "테이블 생성 허용."
+
+#: server_privileges.php:29 server_privileges.php:514
+msgid "Allows creating new tables."
+msgstr "테이블 생성 허용."
+
+#: server_privileges.php:30 server_privileges.php:195
+#: server_privileges.php:518
+msgid "Allows creating temporary tables."
+msgstr "임시테이블 생성 허용."
+
+#: server_privileges.php:31 server_privileges.php:209
+#: server_privileges.php:554
+msgid "Allows creating, dropping and renaming user accounts."
+msgstr ""
+
+#: server_privileges.php:32 server_privileges.php:199
+#: server_privileges.php:203 server_privileges.php:526
+#: server_privileges.php:530
+#, fuzzy
+msgid "Allows creating new views."
+msgstr "테이블 생성 허용."
+
+#: server_privileges.php:33 server_privileges.php:183
+#: server_privileges.php:506
+msgid "Allows deleting data."
+msgstr "데이터 삭제 허용."
+
+#: server_privileges.php:34 server_privileges.php:185
+#: server_privileges.php:517
+msgid "Allows dropping databases and tables."
+msgstr "DB 및 테이블 삭제 허용."
+
+#: server_privileges.php:35 server_privileges.php:517
+msgid "Allows dropping tables."
+msgstr "테이블 삭제 허용."
+
+#: server_privileges.php:36 server_privileges.php:200
+#: server_privileges.php:534
+msgid "Allows to set up events for the event scheduler"
+msgstr ""
+
+#: server_privileges.php:37 server_privileges.php:210
+#: server_privileges.php:522
+msgid "Allows executing stored routines."
+msgstr ""
+
+#: server_privileges.php:38 server_privileges.php:189
+#: server_privileges.php:509
+msgid "Allows importing data from and exporting data into files."
+msgstr "데이터를 파일에서 가져오기 및 파일로 내보내기 허용."
+
+#: server_privileges.php:39 server_privileges.php:540
+msgid ""
+"Allows adding users and privileges without reloading the privilege tables."
+msgstr "권한 테이블을 갱신하지 않고 사용자와 권한 추가하기 허용."
+
+#: server_privileges.php:40 server_privileges.php:191
+#: server_privileges.php:516
+msgid "Allows creating and dropping indexes."
+msgstr "인덱스 생성 및 삭제 허용."
+
+#: server_privileges.php:41 server_privileges.php:181
+#: server_privileges.php:442 server_privileges.php:504
+msgid "Allows inserting and replacing data."
+msgstr "데이터 추가(insert) 및 변경(replace) 허용."
+
+#: server_privileges.php:42 server_privileges.php:196
+#: server_privileges.php:549
+msgid "Allows locking tables for the current thread."
+msgstr "현재 쓰레드에 대한 테이블 잠금(lock) 허용."
+
+#: server_privileges.php:43 server_privileges.php:646
+#: server_privileges.php:648
+msgid "Limits the number of new connections the user may open per hour."
+msgstr "Limits the number of new connections the user may open per hour."
+
+#: server_privileges.php:44 server_privileges.php:634
+#: server_privileges.php:636
+msgid "Limits the number of queries the user may send to the server per hour."
+msgstr "Limits the number of queries the user may send to the server per hour."
+
+#: server_privileges.php:45 server_privileges.php:640
+#: server_privileges.php:642
+msgid ""
+"Limits the number of commands that change any table or database the user may "
+"execute per hour."
+msgstr ""
+"Limits the number of commands that change any table or database the user may "
+"execute per hour."
+
+#: server_privileges.php:46 server_privileges.php:652
+#: server_privileges.php:654
+#, fuzzy
+msgid "Limits the number of simultaneous connections the user may have."
+msgstr "Limits the number of new connections the user may open per hour."
+
+#: server_privileges.php:47 server_privileges.php:188
+#: server_privileges.php:544
+msgid "Allows viewing processes of all users"
+msgstr ""
+
+#: server_privileges.php:48 server_privileges.php:190
+#: server_privileges.php:448 server_privileges.php:550
+msgid "Has no effect in this MySQL version."
+msgstr "이 버전의 MySQL에는 소용이 없습니다."
+
+#: server_privileges.php:49 server_privileges.php:186
+#: server_privileges.php:545
+msgid "Allows reloading server settings and flushing the server's caches."
+msgstr "캐시를 비우고 서버를 재시동하는 것을 허용."
+
+#: server_privileges.php:50 server_privileges.php:198
+#: server_privileges.php:552
+msgid "Allows the user to ask where the slaves / masters are."
+msgstr ""
+
+#: server_privileges.php:51 server_privileges.php:197
+#: server_privileges.php:553
+msgid "Needed for the replication slaves."
+msgstr "복제서버(replication slaves)에 필요합니다."
+
+#: server_privileges.php:52 server_privileges.php:180
+#: server_privileges.php:439 server_privileges.php:503
+msgid "Allows reading data."
+msgstr "데이터 읽기 허용."
+
+#: server_privileges.php:53 server_privileges.php:193
+#: server_privileges.php:547
+msgid "Gives access to the complete list of databases."
+msgstr "전체 데이터베이스 목록 접근을 허용"
+
+#: server_privileges.php:54 server_privileges.php:204
+#: server_privileges.php:206 server_privileges.php:519
+msgid "Allows performing SHOW CREATE VIEW queries."
+msgstr ""
+
+#: server_privileges.php:55 server_privileges.php:187
+#: server_privileges.php:546
+msgid "Allows shutting down the server."
+msgstr "서버 종료 허용."
+
+#: server_privileges.php:56 server_privileges.php:194
+#: server_privileges.php:543
+msgid ""
+"Allows connecting, even if maximum number of connections is reached; "
+"required for most administrative operations like setting global variables or "
+"killing threads of other users."
+msgstr ""
+
+#: server_privileges.php:57 server_privileges.php:201
+#: server_privileges.php:535
+#, fuzzy
+msgid "Allows creating and dropping triggers"
+msgstr "인덱스 생성 및 삭제 허용."
+
+#: server_privileges.php:58 server_privileges.php:182
+#: server_privileges.php:445 server_privileges.php:505
+msgid "Allows changing data."
+msgstr "데이터 변경 허용."
+
+#: server_privileges.php:59 server_privileges.php:260
+msgid "No privileges."
+msgstr "권한 없음."
+
+#: server_privileges.php:302 server_privileges.php:303
#, fuzzy
#| msgid "None"
msgctxt "None privileges"
msgid "None"
msgstr "없음"
-#: server_privileges.php:392 server_privileges.php:527
-#: server_privileges.php:1679 server_privileges.php:1685
+#: server_privileges.php:431 server_privileges.php:566
+#: server_privileges.php:1718 server_privileges.php:1724
msgid "Table-specific privileges"
msgstr "테이블에 관한 권한"
-#: server_privileges.php:393 server_privileges.php:535
-#: server_privileges.php:1501
+#: server_privileges.php:432 server_privileges.php:574
+#: server_privileges.php:1540
msgid " Note: MySQL privilege names are expressed in English "
msgstr " 주의: MySQL 권한 이름은 영어로 표기되어야 합니다. "
-#: server_privileges.php:524 server_privileges.php:1500
+#: server_privileges.php:563 server_privileges.php:1539
msgid "Global privileges"
msgstr "전체적 권한"
-#: server_privileges.php:526 server_privileges.php:1679
+#: server_privileges.php:565 server_privileges.php:1718
msgid "Database-specific privileges"
msgstr "데이터베이스에 관한 권한"
-#: server_privileges.php:571
+#: server_privileges.php:610
msgid "Administration"
msgstr ""
-#: server_privileges.php:591
+#: server_privileges.php:630
msgid "Resource limits"
msgstr "리소스 제한"
-#: server_privileges.php:592
+#: server_privileges.php:631
msgid "Note: Setting these options to 0 (zero) removes the limit."
msgstr "주의: 이 옵션을 0으로 하면 제한이 없어집니다."
-#: server_privileges.php:669
+#: server_privileges.php:708
msgid "Login Information"
msgstr "로그인 정보"
-#: server_privileges.php:763
+#: server_privileges.php:802
msgid "Do not change the password"
msgstr "암호를 변경하지 않음"
-#: server_privileges.php:804 server_privileges.php:2166
+#: server_privileges.php:843 server_privileges.php:2205
#, fuzzy
#| msgid "No user(s) found."
msgid "No user found."
msgstr "사용자가 없습니다."
-#: server_privileges.php:848
+#: server_privileges.php:887
#, php-format
msgid "The user %s already exists!"
msgstr "사용자 %s 가 이미 존재합니다!"
-#: server_privileges.php:931
+#: server_privileges.php:970
msgid "You have added a new user."
msgstr "새 사용자를 추가했습니다."
-#: server_privileges.php:1152
+#: server_privileges.php:1191
#, php-format
msgid "You have updated the privileges for %s."
msgstr "%s 의 권한을 업데이트했습니다."
-#: server_privileges.php:1176
+#: server_privileges.php:1215
#, php-format
msgid "You have revoked the privileges for %s"
msgstr "%s의 권한을 제거했습니다."
-#: server_privileges.php:1212
+#: server_privileges.php:1251
#, php-format
msgid "The password for %s was changed successfully."
msgstr "%s 의 암호가 바뀌었습니다."
-#: server_privileges.php:1232
+#: server_privileges.php:1271
#, php-format
msgid "Deleting %s"
msgstr " %s 을 삭제합니다"
-#: server_privileges.php:1243
+#: server_privileges.php:1282
msgid "No users selected for deleting!"
msgstr ""
-#: server_privileges.php:1246
+#: server_privileges.php:1285
msgid "Reloading the privileges"
msgstr "사용권한을 갱신합니다(Reloading the privileges)"
-#: server_privileges.php:1261
+#: server_privileges.php:1300
msgid "The selected users have been deleted successfully."
msgstr "선택한 사용자들을 삭제했습니다."
-#: server_privileges.php:1296
+#: server_privileges.php:1335
msgid "The privileges were reloaded successfully."
msgstr "권한을 다시 로딩했습니다."
-#: server_privileges.php:1324 server_privileges.php:1610
+#: server_privileges.php:1363 server_privileges.php:1649
msgid "Edit Privileges"
msgstr "권한 수정"
-#: server_privileges.php:1333
+#: server_privileges.php:1372
msgid "Revoke"
msgstr "제거"
-#: server_privileges.php:1365
+#: server_privileges.php:1404
msgid "User overview"
msgstr "사용자 개요"
-#: server_privileges.php:1502 server_privileges.php:1684
-#: server_privileges.php:2033
+#: server_privileges.php:1541 server_privileges.php:1723
+#: server_privileges.php:2072
#, fuzzy
msgid "Grant"
msgstr "인쇄"
-#: server_privileges.php:1521 server_privileges.php:2123
+#: server_privileges.php:1560 server_privileges.php:2162
msgid "Any"
msgstr "Any"
-#: server_privileges.php:1570 server_privileges.php:1594
-#: server_privileges.php:1988 server_privileges.php:2177
+#: server_privileges.php:1609 server_privileges.php:1633
+#: server_privileges.php:2027 server_privileges.php:2216
msgid "Add a new User"
msgstr "새 사용자 추가"
-#: server_privileges.php:1575
+#: server_privileges.php:1614
msgid "Remove selected users"
msgstr "선택한 사용자를 삭제"
-#: server_privileges.php:1578
+#: server_privileges.php:1617
msgid "Revoke all active privileges from the users and delete them afterwards."
msgstr "모든 활성화된 권한을 박탈하고 사용자를 삭제함."
-#: server_privileges.php:1579 server_privileges.php:1580
-#: server_privileges.php:1581
+#: server_privileges.php:1618 server_privileges.php:1619
+#: server_privileges.php:1620
msgid "Drop the databases that have the same names as the users."
msgstr "사용자명과 같은 이름의 데이터베이스를 삭제"
-#: server_privileges.php:1597
+#: server_privileges.php:1636
#, php-format
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
@@ -5263,94 +4739,94 @@ msgid ""
"sreload the privileges%s before you continue."
msgstr ""
-#: server_privileges.php:1645
+#: server_privileges.php:1684
msgid "The selected user was not found in the privilege table."
msgstr "선택한 사용자는 사용권한 테이블에 존재하지 않습니다."
-#: server_privileges.php:1685
+#: server_privileges.php:1724
msgid "Column-specific privileges"
msgstr "열(칼럼)에 관한 권한"
-#: server_privileges.php:1886
+#: server_privileges.php:1925
msgid "Add privileges on the following database"
msgstr "다음 데이터베이스에 권한 추가하기"
-#: server_privileges.php:1904
+#: server_privileges.php:1943
msgid "Wildcards % and _ should be escaped with a \\ to use them literally"
msgstr ""
-#: server_privileges.php:1907
+#: server_privileges.php:1946
msgid "Add privileges on the following table"
msgstr "다음 테이블에 권한 추가하기"
-#: server_privileges.php:1964
+#: server_privileges.php:2003
msgid "Change Login Information / Copy User"
msgstr ""
-#: server_privileges.php:1967
+#: server_privileges.php:2006
msgid "Create a new user with the same privileges and ..."
msgstr ""
-#: server_privileges.php:1969
+#: server_privileges.php:2008
msgid "... keep the old one."
msgstr ""
-#: server_privileges.php:1970
+#: server_privileges.php:2009
#, fuzzy
msgid " ... delete the old one from the user tables."
msgstr "권한 테이블에서 사용자를 삭제하기만 함."
-#: server_privileges.php:1971
+#: server_privileges.php:2010
#, fuzzy
msgid ""
" ... revoke all active privileges from the old one and delete it afterwards."
msgstr "모든 활성화된 권한을 박탈하고 사용자를 삭제함."
-#: server_privileges.php:1972
+#: server_privileges.php:2011
#, fuzzy
msgid ""
" ... delete the old one from the user tables and reload the privileges "
"afterwards."
msgstr "사용자를 삭제하고 사용권한을 갱신함."
-#: server_privileges.php:1994
+#: server_privileges.php:2033
msgid "Database for user"
msgstr ""
-#: server_privileges.php:1998
+#: server_privileges.php:2037
#, fuzzy
#| msgid "None"
msgctxt "Create none database for user"
msgid "None"
msgstr "없음"
-#: server_privileges.php:1999
+#: server_privileges.php:2038
msgid "Create database with same name and grant all privileges"
msgstr ""
-#: server_privileges.php:2000
+#: server_privileges.php:2039
msgid "Grant all privileges on wildcard name (username\\_%)"
msgstr ""
-#: server_privileges.php:2003
+#: server_privileges.php:2042
#, fuzzy, php-format
msgid "Grant all privileges on database "%s""
msgstr "데이터베이스 "%s" 에 대한 사용권한 검사."
-#: server_privileges.php:2026
+#: server_privileges.php:2065
#, php-format
msgid "Users having access to "%s""
msgstr ""%s" 에 접근할 수 있는 사용자들"
-#: server_privileges.php:2134
+#: server_privileges.php:2173
msgid "global"
msgstr ""
-#: server_privileges.php:2136
+#: server_privileges.php:2175
msgid "database-specific"
msgstr ""
-#: server_privileges.php:2138
+#: server_privileges.php:2177
msgid "wildcard"
msgstr ""
@@ -5396,7 +4872,7 @@ msgstr ""
msgid "This server is configured as master in a replication process."
msgstr ""
-#: server_replication.php:184 server_status.php:281
+#: server_replication.php:184 server_status.php:392
msgid "Show master status"
msgstr ""
@@ -5534,107 +5010,639 @@ msgid ""
"like to configure it?"
msgstr ""
+#: server_status.php:40
+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 ""
+
+#: server_status.php:41
+msgid "The number of transactions that used the temporary binary log cache."
+msgstr ""
+
+#: server_status.php:42
+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 "
+"to increase the tmp_table_size value to cause temporary tables to be memory-"
+"based instead of disk-based."
+msgstr ""
+
+#: server_status.php:43
+msgid "How many temporary files mysqld has created."
+msgstr ""
+
+#: server_status.php:44
+msgid ""
+"The number of in-memory temporary tables created automatically by the server "
+"while executing statements."
+msgstr ""
+
+#: server_status.php:45
+msgid ""
+"The number of rows written with INSERT DELAYED for which some error occurred "
+"(probably duplicate key)."
+msgstr ""
+
#: server_status.php:46
+msgid ""
+"The number of INSERT DELAYED handler threads in use. Every different table "
+"on which one uses INSERT DELAYED gets its own thread."
+msgstr ""
+
+#: server_status.php:47
+msgid "The number of INSERT DELAYED rows written."
+msgstr ""
+
+#: server_status.php:48
+msgid "The number of executed FLUSH statements."
+msgstr ""
+
+#: server_status.php:49
+msgid "The number of internal COMMIT statements."
+msgstr ""
+
+#: server_status.php:50
+msgid "The number of times a row was deleted from a table."
+msgstr ""
+
+#: server_status.php:51
+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 ""
+
+#: server_status.php:52
+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 ""
+
+#: server_status.php:53
+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 ""
+
+#: server_status.php:54
+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 ""
+
+#: server_status.php:55
+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 ""
+
+#: server_status.php:56
+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 "
+"probably have a lot of queries that require MySQL to scan whole tables or "
+"you have joins that don't use keys properly."
+msgstr ""
+
+#: server_status.php:57
+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 "
+"tables are not properly indexed or that your queries are not written to take "
+"advantage of the indexes you have."
+msgstr ""
+
+#: server_status.php:58
+msgid "The number of internal ROLLBACK statements."
+msgstr ""
+
+#: server_status.php:59
+msgid "The number of requests to update a row in a table."
+msgstr ""
+
+#: server_status.php:60
+msgid "The number of requests to insert a row in a table."
+msgstr ""
+
+#: server_status.php:61
+msgid "The number of pages containing data (dirty or clean)."
+msgstr ""
+
+#: server_status.php:62
+msgid "The number of pages currently dirty."
+msgstr ""
+
+#: server_status.php:63
+msgid "The number of buffer pool pages that have been requested to be flushed."
+msgstr ""
+
+#: server_status.php:64
+msgid "The number of free pages."
+msgstr ""
+
+#: server_status.php:65
+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 ""
+
+#: server_status.php:66
+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 "
+"be calculated as Innodb_buffer_pool_pages_total - "
+"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data."
+msgstr ""
+
+#: server_status.php:67
+msgid "Total size of buffer pool, in pages."
+msgstr ""
+
+#: server_status.php:68
+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 ""
+
+#: server_status.php:69
+msgid ""
+"The number of sequential read-aheads InnoDB initiated. This happens when "
+"InnoDB does a sequential full table scan."
+msgstr ""
+
+#: server_status.php:70
+msgid "The number of logical read requests InnoDB has done."
+msgstr ""
+
+#: server_status.php:71
+msgid ""
+"The number of logical reads that InnoDB could not satisfy from buffer pool "
+"and had to do a single-page read."
+msgstr ""
+
+#: server_status.php:72
+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 "
+"available, it's necessary to wait for pages to be flushed first. This "
+"counter counts instances of these waits. If the buffer pool size was set "
+"properly, this value should be small."
+msgstr ""
+
+#: server_status.php:73
+msgid "The number writes done to the InnoDB buffer pool."
+msgstr ""
+
+#: server_status.php:74
+msgid "The number of fsync() operations so far."
+msgstr ""
+
+#: server_status.php:75
+msgid "The current number of pending fsync() operations."
+msgstr ""
+
+#: server_status.php:76
+msgid "The current number of pending reads."
+msgstr ""
+
+#: server_status.php:77
+msgid "The current number of pending writes."
+msgstr ""
+
+#: server_status.php:78
+msgid "The amount of data read so far, in bytes."
+msgstr ""
+
+#: server_status.php:79
+msgid "The total number of data reads."
+msgstr ""
+
+#: server_status.php:80
+msgid "The total number of data writes."
+msgstr ""
+
+#: server_status.php:81
+msgid "The amount of data written so far, in bytes."
+msgstr ""
+
+#: server_status.php:82
+msgid "The number of pages that have been written for doublewrite operations."
+msgstr ""
+
+#: server_status.php:83
+msgid "The number of doublewrite operations that have been performed."
+msgstr ""
+
+#: server_status.php:84
+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 ""
+
+#: server_status.php:85
+msgid "The number of log write requests."
+msgstr ""
+
+#: server_status.php:86
+msgid "The number of physical writes to the log file."
+msgstr ""
+
+#: server_status.php:87
+msgid "The number of fsync() writes done to the log file."
+msgstr ""
+
+#: server_status.php:88
+msgid "The number of pending log file fsyncs."
+msgstr ""
+
+#: server_status.php:89
+msgid "Pending log file writes."
+msgstr ""
+
+#: server_status.php:90
+msgid "The number of bytes written to the log file."
+msgstr ""
+
+#: server_status.php:91
+msgid "The number of pages created."
+msgstr ""
+
+#: server_status.php:92
+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 ""
+
+#: server_status.php:93
+msgid "The number of pages read."
+msgstr ""
+
+#: server_status.php:94
+msgid "The number of pages written."
+msgstr ""
+
+#: server_status.php:95
+msgid "The number of row locks currently being waited for."
+msgstr ""
+
+#: server_status.php:96
+msgid "The average time to acquire a row lock, in milliseconds."
+msgstr ""
+
+#: server_status.php:97
+msgid "The total time spent in acquiring row locks, in milliseconds."
+msgstr ""
+
+#: server_status.php:98
+msgid "The maximum time to acquire a row lock, in milliseconds."
+msgstr ""
+
+#: server_status.php:99
+msgid "The number of times a row lock had to be waited for."
+msgstr ""
+
+#: server_status.php:100
+msgid "The number of rows deleted from InnoDB tables."
+msgstr ""
+
+#: server_status.php:101
+msgid "The number of rows inserted in InnoDB tables."
+msgstr ""
+
+#: server_status.php:102
+msgid "The number of rows read from InnoDB tables."
+msgstr ""
+
+#: server_status.php:103
+msgid "The number of rows updated in InnoDB tables."
+msgstr ""
+
+#: server_status.php:104
+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 ""
+
+#: server_status.php:105
+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 ""
+
+#: server_status.php:106
+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 ""
+
+#: server_status.php:107
+msgid "The number of requests to read a key block from the cache."
+msgstr ""
+
+#: server_status.php:108
+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 ""
+
+#: server_status.php:109
+msgid "The number of requests to write a key block to the cache."
+msgstr ""
+
+#: server_status.php:110
+msgid "The number of physical writes of a key block to disk."
+msgstr ""
+
+#: server_status.php:111
+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 ""
+
+#: server_status.php:112
+msgid "The number of rows waiting to be written in INSERT DELAYED queues."
+msgstr ""
+
+#: server_status.php:113
+msgid ""
+"The number of tables that have been opened. If opened tables is big, your "
+"table cache value is probably too small."
+msgstr ""
+
+#: server_status.php:114
+msgid "The number of files that are open."
+msgstr ""
+
+#: server_status.php:115
+msgid "The number of streams that are open (used mainly for logging)."
+msgstr ""
+
+#: server_status.php:116
+msgid "The number of tables that are open."
+msgstr ""
+
+#: server_status.php:117
+msgid "The number of free memory blocks in query cache."
+msgstr ""
+
+#: server_status.php:118
+msgid "The amount of free memory for query cache."
+msgstr ""
+
+#: server_status.php:119
+msgid "The number of cache hits."
+msgstr ""
+
+#: server_status.php:120
+msgid "The number of queries added to the cache."
+msgstr ""
+
+#: server_status.php:121
+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 "
+"cache size. The query cache uses a least recently used (LRU) strategy to "
+"decide which queries to remove from the cache."
+msgstr ""
+
+#: server_status.php:122
+msgid ""
+"The number of non-cached queries (not cachable, or not cached due to the "
+"query_cache_type setting)."
+msgstr ""
+
+#: server_status.php:123
+msgid "The number of queries registered in the cache."
+msgstr ""
+
+#: server_status.php:124
+msgid "The total number of blocks in the query cache."
+msgstr ""
+
+#: server_status.php:125
+#, fuzzy
+msgctxt "$strShowStatusReset"
+msgid "Reset"
+msgstr "리세트"
+
+#: server_status.php:126
+msgid "The status of failsafe replication (not yet implemented)."
+msgstr ""
+
+#: server_status.php:127
+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 ""
+
+#: server_status.php:128
+msgid "The number of joins that used a range search on a reference table."
+msgstr ""
+
+#: server_status.php:129
+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 ""
+
+#: server_status.php:130
+msgid ""
+"The number of joins that used ranges on the first table. (It's normally not "
+"critical even if this is big.)"
+msgstr ""
+
+#: server_status.php:131
+msgid "The number of joins that did a full scan of the first table."
+msgstr ""
+
+#: server_status.php:132
+msgid "The number of temporary tables currently open by the slave SQL thread."
+msgstr ""
+
+#: server_status.php:133
+msgid ""
+"Total (since startup) number of times the replication slave SQL thread has "
+"retried transactions."
+msgstr ""
+
+#: server_status.php:134
+msgid "This is ON if this server is a slave that is connected to a master."
+msgstr ""
+
+#: server_status.php:135
+msgid ""
+"The number of threads that have taken more than slow_launch_time seconds to "
+"create."
+msgstr ""
+
+#: server_status.php:136
+msgid ""
+"The number of queries that have taken more than long_query_time seconds."
+msgstr ""
+
+#: server_status.php:137
+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 ""
+
+#: server_status.php:138
+msgid "The number of sorts that were done with ranges."
+msgstr ""
+
+#: server_status.php:139
+msgid "The number of sorted rows."
+msgstr ""
+
+#: server_status.php:140
+msgid "The number of sorts that were done by scanning the table."
+msgstr ""
+
+#: server_status.php:141
+msgid "The number of times that a table lock was acquired immediately."
+msgstr ""
+
+#: server_status.php:142
+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 "
+"should first optimize your queries, and then either split your table or "
+"tables or use replication."
+msgstr ""
+
+#: server_status.php:143
+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 ""
+
+#: server_status.php:144
+msgid "The number of currently open connections."
+msgstr ""
+
+#: server_status.php:145
+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 "
+"doesn't give a notable performance improvement if you have a good thread "
+"implementation.)"
+msgstr ""
+
+#: server_status.php:146
+msgid "The number of threads that are not sleeping."
+msgstr ""
+
+#: server_status.php:157
msgid "Runtime Information"
msgstr "런타임 정보"
-#: server_status.php:250
+#: server_status.php:361
msgid "Handler"
msgstr ""
-#: server_status.php:251
+#: server_status.php:362
#, fuzzy
msgid "Query cache"
msgstr "질의 종류"
-#: server_status.php:252
+#: server_status.php:363
msgid "Threads"
msgstr ""
-#: server_status.php:254
+#: server_status.php:365
msgid "Temporary data"
msgstr ""
-#: server_status.php:255
+#: server_status.php:366
#, fuzzy
msgid "Delayed inserts"
msgstr "확장된 inserts"
-#: server_status.php:256
+#: server_status.php:367
msgid "Key cache"
msgstr ""
-#: server_status.php:257
+#: server_status.php:368
msgid "Joins"
msgstr ""
-#: server_status.php:259
+#: server_status.php:370
msgid "Sorting"
msgstr ""
-#: server_status.php:261
+#: server_status.php:372
msgid "Transaction coordinator"
msgstr ""
-#: server_status.php:271
+#: server_status.php:382
msgid "Flush (close) all tables"
msgstr ""
-#: server_status.php:273
+#: server_status.php:384
#, fuzzy
msgid "Show open tables"
msgstr "테이블 보기"
-#: server_status.php:278
+#: server_status.php:389
msgid "Show slave hosts"
msgstr ""
-#: server_status.php:284
+#: server_status.php:395
msgid "Show slave status"
msgstr ""
-#: server_status.php:289
+#: server_status.php:400
msgid "Flush query cache"
msgstr ""
-#: server_status.php:294
+#: server_status.php:405
msgid "Show processes"
msgstr "MySQL 프로세스 보기"
-#: server_status.php:344
+#: server_status.php:455
#, fuzzy
#| msgid "Reset"
msgctxt "for Show status"
msgid "Reset"
msgstr "리세트"
-#: server_status.php:350
+#: server_status.php:461
#, php-format
msgid "This MySQL server has been running for %s. It started up on %s."
msgstr ""
"이 MySQL 서버는 %s 동안 구동되었습니다.
구동 시작날짜는 %s 입니다."
-#: server_status.php:360
+#: server_status.php:471
msgid ""
"This MySQL server works as master and slave in replication"
"b> process."
msgstr ""
-#: server_status.php:362
+#: server_status.php:473
msgid "This MySQL server works as master in replication process."
msgstr ""
-#: server_status.php:364
+#: server_status.php:475
msgid "This MySQL server works as slave in replication process."
msgstr ""
-#: server_status.php:366
+#: server_status.php:477
msgid ""
"For further information about replication status on the server, please visit "
"the replication section."
msgstr ""
-#: server_status.php:383
+#: server_status.php:494
msgid ""
"Server traffic: These tables show the network traffic statistics of "
"this MySQL server since its startup."
@@ -5642,65 +5650,65 @@ msgstr ""
"서버 소통량: 이 테이블은 MySQL서버가 구동된 이래의 네트웍 부하 상태를 "
"보여줍니다."
-#: server_status.php:388
+#: server_status.php:499
msgid "Traffic"
msgstr "소통량"
-#: server_status.php:388
+#: server_status.php:499
msgid ""
"On a busy server, the byte counters may overrun, so those statistics as "
"reported by the MySQL server may be incorrect."
msgstr ""
-#: server_status.php:389 server_status.php:434 server_status.php:497
-#: server_status.php:555
+#: server_status.php:500 server_status.php:545 server_status.php:608
+#: server_status.php:666
msgid "per hour"
msgstr ""
-#: server_status.php:394
+#: server_status.php:505
msgid "Received"
msgstr "받음"
-#: server_status.php:404
+#: server_status.php:515
msgid "Sent"
msgstr "보냄"
-#: server_status.php:433
+#: server_status.php:544
msgid "Connections"
msgstr "연결 수"
-#: server_status.php:440
+#: server_status.php:551
msgid "max. concurrent connections"
msgstr ""
-#: server_status.php:447
+#: server_status.php:558
msgid "Failed attempts"
msgstr "실패한 시도"
-#: server_status.php:461
+#: server_status.php:572
msgid "Aborted"
msgstr ""
-#: server_status.php:490
+#: server_status.php:601
#, php-format
msgid ""
"Query statistics: Since its startup, %s queries have been sent to the "
"server."
msgstr "SQL 질의 통계: 이 서버에 %s 번의 질의가 보내졌습니다."
-#: server_status.php:498
+#: server_status.php:609
msgid "per minute"
msgstr ""
-#: server_status.php:499
+#: server_status.php:610
msgid "per second"
msgstr ""
-#: server_status.php:554
+#: server_status.php:665
msgid "Query type"
msgstr "질의 종류"
-#: server_status.php:721
+#: server_status.php:832
msgid "Replication status"
msgstr ""
diff --git a/po/lt.po b/po/lt.po
index 2eb613d4d..5a7240ba9 100755
--- a/po/lt.po
+++ b/po/lt.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-06-04 16:07-0400\n"
+"POT-Creation-Date: 2010-06-08 12:32-0400\n"
"PO-Revision-Date: 2010-04-16 19:52+0200\n"
"Last-Translator: Rytis \n"
"Language-Team: lithuanian \n"
@@ -16,11 +16,11 @@ msgstr ""
"X-Generator: Pootle 2.0.1\n"
#: browse_foreigners.php:38 browse_foreigners.php:59
-#: libraries/display_tbl.lib.php:417 server_privileges.php:1475
+#: libraries/display_tbl.lib.php:417 server_privileges.php:1514
msgid "Show all"
msgstr "Rodyti viską"
-#: browse_foreigners.php:82 libraries/common.lib.php:2304
+#: browse_foreigners.php:82 libraries/common.lib.php:2313
#: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:394
#: libraries/export/pdf.php:147 pdf_schema.php:283 pdf_schema.php:1123
#: pdf_schema.php:1139
@@ -38,8 +38,8 @@ msgstr ""
#: browse_foreigners.php:150 db_structure.php:79 db_structure.php:80
#: db_structure.php:91 db_structure.php:93 db_structure.php:104
-#: db_structure.php:106 libraries/common.lib.php:2822
-#: libraries/common.lib.php:2829 libraries/db_links.inc.php:75
+#: db_structure.php:106 libraries/common.lib.php:2831
+#: libraries/common.lib.php:2838 libraries/db_links.inc.php:75
#: libraries/tbl_links.inc.php:63
msgid "Search"
msgstr "Paieška"
@@ -49,7 +49,7 @@ msgstr "Paieška"
#: db_structure.php:567 js/messages.php:48 libraries/Config.class.php:1046
#: libraries/Theme_Manager.class.php:311
#: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719
-#: libraries/common.lib.php:1333 libraries/common.lib.php:2279
+#: libraries/common.lib.php:1335 libraries/common.lib.php:2288
#: libraries/display_change_password.lib.php:82
#: libraries/display_create_table.lib.php:63
#: libraries/display_export.lib.php:275 libraries/display_import.lib.php:276
@@ -60,9 +60,9 @@ msgstr "Paieška"
#: libraries/sql_query_form.lib.php:552 libraries/tbl_properties.inc.php:782
#: main.php:128 navigation.php:237 pdf_pages.php:292 pdf_pages.php:328
#: pdf_pages.php:530 pmd_pdf.php:116 server_binlog.php:142
-#: server_privileges.php:625 server_privileges.php:1585
-#: server_privileges.php:1932 server_privileges.php:1979
-#: server_privileges.php:2018 server_replication.php:235
+#: server_privileges.php:664 server_privileges.php:1624
+#: server_privileges.php:1971 server_privileges.php:2018
+#: server_privileges.php:2057 server_replication.php:235
#: server_replication.php:318 server_replication.php:341
#: server_synchronize.php:1209 tbl_change.php:330 tbl_change.php:1174
#: tbl_change.php:1211 tbl_indexes.php:254 tbl_operations.php:265
@@ -80,7 +80,7 @@ msgstr "Raktinis žodis"
#: browse_foreigners.php:169 browse_foreigners.php:171
#: server_collations.php:55 server_collations.php:67 server_engines.php:59
-#: server_status.php:628
+#: server_status.php:739
msgid "Description"
msgstr "Paaiškinimas"
@@ -121,7 +121,7 @@ msgstr "Stulpelių vardai"
#: libraries/db_structure.lib.php:60 libraries/export/htmlword.php:245
#: libraries/export/latex.php:360 libraries/export/odt.php:297
#: libraries/export/texytext.php:234 libraries/tbl_properties.inc.php:100
-#: pdf_schema.php:1263 pdf_schema.php:1284 server_privileges.php:2031
+#: pdf_schema.php:1263 pdf_schema.php:1284 server_privileges.php:2070
#: tbl_change.php:287 tbl_change.php:314 tbl_printview.php:143
#: tbl_printview.php:313 tbl_select.php:136 tbl_structure.php:178
#: tbl_structure.php:659 tbl_tracking.php:274 tbl_tracking.php:321
@@ -165,9 +165,9 @@ msgstr "Komentarai"
#: libraries/Index.class.php:386 libraries/export/htmlword.php:322
#: libraries/export/latex.php:430 libraries/export/odt.php:368
#: libraries/export/texytext.php:311 libraries/mult_submits.inc.php:263
-#: pdf_schema.php:1344 server_privileges.php:1529 server_privileges.php:1540
-#: server_privileges.php:1850 server_privileges.php:1855
-#: server_privileges.php:2148 sql.php:132 sql.php:194 tbl_printview.php:229
+#: pdf_schema.php:1344 server_privileges.php:1568 server_privileges.php:1579
+#: server_privileges.php:1889 server_privileges.php:1894
+#: server_privileges.php:2187 sql.php:132 sql.php:194 tbl_printview.php:229
#: tbl_structure.php:350 tbl_tracking.php:337 tbl_tracking.php:342
msgid "No"
msgstr "Ne"
@@ -181,9 +181,9 @@ msgstr "Ne"
#: libraries/mult_submits.inc.php:101 libraries/mult_submits.inc.php:106
#: libraries/mult_submits.inc.php:111 libraries/mult_submits.inc.php:262
#: libraries/mult_submits.inc.php:273 pdf_schema.php:1344
-#: server_databases.php:64 server_privileges.php:1526
-#: server_privileges.php:1540 server_privileges.php:1850
-#: server_privileges.php:1853 server_privileges.php:2148 sql.php:193
+#: server_databases.php:64 server_privileges.php:1565
+#: server_privileges.php:1579 server_privileges.php:1889
+#: server_privileges.php:1892 server_privileges.php:2187 sql.php:193
#: tbl_printview.php:229 tbl_structure.php:40 tbl_structure.php:350
#: tbl_tracking.php:335 tbl_tracking.php:340
msgid "Yes"
@@ -280,7 +280,7 @@ msgstr "Pereiti į nukopijuotą duombazę"
msgid "BLOB Repository"
msgstr "BLOB saugykla"
-#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1350
+#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1352
#: libraries/server_links.inc.php:49 server_processlist.php:59
#: tbl_tracking.php:596 test/theme.php:101
msgid "Status"
@@ -343,8 +343,8 @@ msgstr "Redaguoti PDF puslapius"
#: db_printview.php:104 db_tracking.php:72 db_tracking.php:157
#: libraries/db_structure.lib.php:46 libraries/export/xml.php:328
-#: libraries/header.inc.php:126 pdf_pages.php:424 server_privileges.php:1626
-#: server_privileges.php:1682 server_privileges.php:1946
+#: libraries/header.inc.php:126 pdf_pages.php:424 server_privileges.php:1665
+#: server_privileges.php:1721 server_privileges.php:1985
#: server_synchronize.php:423 server_synchronize.php:866 tbl_tracking.php:592
#: test/theme.php:75
msgid "Table"
@@ -446,7 +446,7 @@ msgstr "Pakeičiant"
#: db_qbe.php:370 db_qbe.php:451 db_qbe.php:522 db_qbe.php:553
#: libraries/display_import.lib.php:166 libraries/tbl_properties.inc.php:779
-#: server_privileges.php:258 tbl_change.php:1031 tbl_indexes.php:250
+#: server_privileges.php:297 tbl_change.php:1031 tbl_indexes.php:250
#: tbl_select.php:288
msgid "Or"
msgstr "Arba"
@@ -480,7 +480,7 @@ msgstr "Naudoti lenteles"
msgid "SQL query on database %s:"
msgstr "SQL-užklausa duombazėje %s:"
-#: db_qbe.php:934 libraries/common.lib.php:1223
+#: db_qbe.php:934 libraries/common.lib.php:1225
msgid "Submit Query"
msgstr "Vykdyti užklausą"
@@ -519,7 +519,7 @@ msgstr "%s atitikmuo(enys) lentelėje %s"
#: db_search.php:267 db_structure.php:77 db_structure.php:78
#: db_structure.php:90 db_structure.php:92 db_structure.php:103
-#: db_structure.php:105 libraries/common.lib.php:2824
+#: db_structure.php:105 libraries/common.lib.php:2833
#: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50
#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:467
msgid "Browse"
@@ -566,26 +566,26 @@ msgstr "Lentelės(ių) viduje:"
#: db_structure.php:81 db_structure.php:82 db_structure.php:94
#: db_structure.php:95 db_structure.php:107 db_structure.php:108
-#: libraries/common.lib.php:2823 libraries/sql_query_form.lib.php:334
+#: libraries/common.lib.php:2832 libraries/sql_query_form.lib.php:334
#: libraries/sql_query_form.lib.php:337 libraries/tbl_links.inc.php:76
msgid "Insert"
msgstr "Įterpti"
#: db_structure.php:83 db_structure.php:96 db_structure.php:109
-#: libraries/common.lib.php:2820 libraries/common.lib.php:2827
+#: libraries/common.lib.php:2829 libraries/common.lib.php:2836
#: libraries/db_links.inc.php:63 libraries/export/htmlword.php:23
#: libraries/export/latex.php:33 libraries/export/latex.php:337
#: libraries/export/odt.php:32 libraries/export/sql.php:60
#: libraries/export/texytext.php:23 libraries/import.lib.php:1104
#: libraries/tbl_links.inc.php:56 pmd_general.php:134
-#: server_privileges.php:554 server_replication.php:315 tbl_tracking.php:269
+#: server_privileges.php:593 server_replication.php:315 tbl_tracking.php:269
msgid "Structure"
msgstr "Struktūra"
#: db_structure.php:84 db_structure.php:85 db_structure.php:97
#: db_structure.php:98 db_structure.php:110 db_structure.php:111
#: db_structure.php:545 db_structure.php:546 db_tracking.php:91
-#: libraries/Index.class.php:483 libraries/common.lib.php:1654
+#: libraries/Index.class.php:483 libraries/common.lib.php:1656
#: libraries/db_links.inc.php:100 libraries/mult_submits.inc.php:36
#: libraries/mult_submits.inc.php:73 libraries/tbl_links.inc.php:127
#: server_databases.php:352 tbl_structure.php:27 tbl_structure.php:151
@@ -595,7 +595,7 @@ msgstr "Šalinti"
#: db_structure.php:86 db_structure.php:87 db_structure.php:99
#: db_structure.php:100 db_structure.php:112 db_structure.php:113
-#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1653
+#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1655
#: libraries/mult_submits.inc.php:39 libraries/tbl_links.inc.php:105
msgid "Empty"
msgstr "Išvalyti"
@@ -637,7 +637,7 @@ msgstr "View'as"
#: db_structure.php:485 libraries/db_structure.lib.php:49
#: libraries/server_links.inc.php:70 server_replication.php:33
-#: server_replication.php:164 server_status.php:258
+#: server_replication.php:164 server_status.php:369
msgid "Replication"
msgstr "Replikacija"
@@ -653,20 +653,20 @@ msgstr "%s yra standartinis saugojimo variklis šiame MySQL serveryje."
#: db_structure.php:524 db_structure.php:541 db_structure.php:542
#: libraries/display_tbl.lib.php:2081 libraries/display_tbl.lib.php:2086
#: libraries/mult_submits.inc.php:16 server_databases.php:346
-#: server_databases.php:351 server_privileges.php:1557 tbl_structure.php:455
+#: server_databases.php:351 server_privileges.php:1596 tbl_structure.php:455
#: tbl_structure.php:464
msgid "With selected:"
msgstr "Pasirinktus:"
#: db_structure.php:527 libraries/display_tbl.lib.php:2076
-#: server_databases.php:348 server_privileges.php:530
-#: server_privileges.php:1560 tbl_structure.php:458
+#: server_databases.php:348 server_privileges.php:569
+#: server_privileges.php:1599 tbl_structure.php:458
msgid "Check All"
msgstr "Pažymėti visus"
#: db_structure.php:531 libraries/display_tbl.lib.php:2077
#: libraries/replication_gui.lib.php:33 server_databases.php:350
-#: server_privileges.php:533 server_privileges.php:1564 tbl_structure.php:462
+#: server_privileges.php:572 server_privileges.php:1603 tbl_structure.php:462
msgid "Uncheck All"
msgstr "Atžymėti visus"
@@ -704,7 +704,7 @@ msgstr "Analizuoti lentelę"
#: libraries/display_export.lib.php:83 libraries/display_tbl.lib.php:2094
#: libraries/display_tbl.lib.php:2225 libraries/mult_submits.inc.php:62
#: libraries/server_links.inc.php:84 libraries/tbl_links.inc.php:82
-#: pmd_pdf.php:84 pmd_pdf.php:109 server_privileges.php:1341
+#: pmd_pdf.php:84 pmd_pdf.php:109 server_privileges.php:1380
#: setup/frames/menu.inc.php:22 tbl_row_action.php:59
msgid "Export"
msgstr "Eksportuoti"
@@ -723,8 +723,8 @@ msgstr "Patikrinti lentelę"
#: libraries/export/sql.php:342 libraries/export/texytext.php:84
#: libraries/export/xml.php:255 libraries/header.inc.php:106
#: libraries/header_printview.inc.php:58 server_databases.php:169
-#: server_privileges.php:1621 server_privileges.php:1682
-#: server_privileges.php:1940 server_processlist.php:56
+#: server_privileges.php:1660 server_privileges.php:1721
+#: server_privileges.php:1979 server_processlist.php:56
#: server_synchronize.php:1179 server_synchronize.php:1183
#: tbl_tracking.php:591 test/theme.php:65
msgid "Database"
@@ -744,8 +744,8 @@ msgstr "Atnaujinta"
#: db_tracking.php:77 libraries/Index.class.php:440
#: libraries/db_structure.lib.php:53 server_databases.php:203
-#: server_privileges.php:1503 server_privileges.php:1686
-#: server_privileges.php:2034 tbl_structure.php:187
+#: server_privileges.php:1542 server_privileges.php:1725
+#: server_privileges.php:2073 tbl_structure.php:187
msgid "Action"
msgstr "Veiksmas"
@@ -939,11 +939,11 @@ msgstr "Tuščias prisijungimo adresas!"
msgid "The user name is empty!"
msgstr "Tuščias vartotojo vardas!"
-#: js/messages.php:44 server_privileges.php:1197 user_password.php:70
+#: js/messages.php:44 server_privileges.php:1236 user_password.php:70
msgid "The password is empty!"
msgstr "Tuščias slaptažodis!"
-#: js/messages.php:45 server_privileges.php:1195 user_password.php:73
+#: js/messages.php:45 server_privileges.php:1234 user_password.php:73
msgid "The passwords aren't the same!"
msgstr "Slaptažodžiai nesutampa!"
@@ -1024,8 +1024,8 @@ msgid "Prev"
msgstr "Praėjęs"
#. l10n: Display text for next month link in calendar
-#: js/messages.php:77 libraries/common.lib.php:2344
-#: libraries/common.lib.php:2347 libraries/display_tbl.lib.php:338
+#: js/messages.php:77 libraries/common.lib.php:2353
+#: libraries/common.lib.php:2356 libraries/display_tbl.lib.php:338
#: server_binlog.php:205 server_binlog.php:207 tbl_printview.php:424
#: tbl_structure.php:801
msgid "Next"
@@ -1101,27 +1101,27 @@ msgid "December"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:97 libraries/common.lib.php:1555
+#: js/messages.php:97 libraries/common.lib.php:1557
msgid "Jan"
msgstr "sausio"
#. l10n: Short month name
-#: js/messages.php:99 libraries/common.lib.php:1557
+#: js/messages.php:99 libraries/common.lib.php:1559
msgid "Feb"
msgstr "vasario"
#. l10n: Short month name
-#: js/messages.php:101 libraries/common.lib.php:1559
+#: js/messages.php:101 libraries/common.lib.php:1561
msgid "Mar"
msgstr "kovo"
#. l10n: Short month name
-#: js/messages.php:103 libraries/common.lib.php:1561
+#: js/messages.php:103 libraries/common.lib.php:1563
msgid "Apr"
msgstr "balandžio"
#. l10n: Short month name
-#: js/messages.php:105 libraries/common.lib.php:1563
+#: js/messages.php:105 libraries/common.lib.php:1565
#, fuzzy
#| msgid "May"
msgctxt "Short month name"
@@ -1129,37 +1129,37 @@ msgid "May"
msgstr "gegužės"
#. l10n: Short month name
-#: js/messages.php:107 libraries/common.lib.php:1565
+#: js/messages.php:107 libraries/common.lib.php:1567
msgid "Jun"
msgstr "birželio"
#. l10n: Short month name
-#: js/messages.php:109 libraries/common.lib.php:1567
+#: js/messages.php:109 libraries/common.lib.php:1569
msgid "Jul"
msgstr "liepos"
#. l10n: Short month name
-#: js/messages.php:111 libraries/common.lib.php:1569
+#: js/messages.php:111 libraries/common.lib.php:1571
msgid "Aug"
msgstr "rugpjūčio"
#. l10n: Short month name
-#: js/messages.php:113 libraries/common.lib.php:1571
+#: js/messages.php:113 libraries/common.lib.php:1573
msgid "Sep"
msgstr "rugsėjo"
#. l10n: Short month name
-#: js/messages.php:115 libraries/common.lib.php:1573
+#: js/messages.php:115 libraries/common.lib.php:1575
msgid "Oct"
msgstr "spalio"
#. l10n: Short month name
-#: js/messages.php:117 libraries/common.lib.php:1575
+#: js/messages.php:117 libraries/common.lib.php:1577
msgid "Nov"
msgstr "lapkričio"
#. l10n: Short month name
-#: js/messages.php:119 libraries/common.lib.php:1577
+#: js/messages.php:119 libraries/common.lib.php:1579
msgid "Dec"
msgstr "gruodžio"
@@ -1200,37 +1200,37 @@ msgid "Saturday"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:132 libraries/common.lib.php:1580
+#: js/messages.php:132 libraries/common.lib.php:1582
msgid "Sun"
msgstr "Sekmadienis"
#. l10n: Short week day name
-#: js/messages.php:134 libraries/common.lib.php:1582
+#: js/messages.php:134 libraries/common.lib.php:1584
msgid "Mon"
msgstr "Pirmadienis"
#. l10n: Short week day name
-#: js/messages.php:136 libraries/common.lib.php:1584
+#: js/messages.php:136 libraries/common.lib.php:1586
msgid "Tue"
msgstr "Antradienis"
#. l10n: Short week day name
-#: js/messages.php:138 libraries/common.lib.php:1586
+#: js/messages.php:138 libraries/common.lib.php:1588
msgid "Wed"
msgstr "Trečiadienis"
#. l10n: Short week day name
-#: js/messages.php:140 libraries/common.lib.php:1588
+#: js/messages.php:140 libraries/common.lib.php:1590
msgid "Thu"
msgstr "Ketvirtadienis"
#. l10n: Short week day name
-#: js/messages.php:142 libraries/common.lib.php:1590
+#: js/messages.php:142 libraries/common.lib.php:1592
msgid "Fri"
msgstr "Penktadienis"
#. l10n: Short week day name
-#: js/messages.php:144 libraries/common.lib.php:1592
+#: js/messages.php:144 libraries/common.lib.php:1594
msgid "Sat"
msgstr "Šeštadienis"
@@ -1376,7 +1376,7 @@ msgid "Comment"
msgstr "Komentaras"
#: libraries/Index.class.php:466 libraries/common.lib.php:616
-#: libraries/common.lib.php:1199 libraries/display_tbl.lib.php:1117
+#: libraries/common.lib.php:1201 libraries/display_tbl.lib.php:1117
#: libraries/import.lib.php:1087 libraries/import.lib.php:1111
#: pdf_pages.php:285 setup/frames/index.inc.php:124
#: setup/lib/messages.inc.php:352 tbl_row_action.php:69
@@ -1400,7 +1400,7 @@ msgid ""
msgstr ""
#: libraries/List_Database.class.php:431 libraries/server_links.inc.php:41
-#: server_databases.php:88 server_privileges.php:1621
+#: server_databases.php:88 server_privileges.php:1660
#: setup/lib/messages.inc.php:110 test/theme.php:93
msgid "Databases"
msgstr "Duombazės"
@@ -1736,7 +1736,7 @@ msgid "Documentation"
msgstr "?"
#: libraries/common.lib.php:595 libraries/header_printview.inc.php:61
-#: server_processlist.php:60 server_status.php:247
+#: server_processlist.php:60 server_status.php:358
msgid "SQL query"
msgstr "SQL užklausa"
@@ -1752,128 +1752,128 @@ msgstr "Paaiškinti"
msgid "Skip Explain SQL"
msgstr "Praleisti SQL užklausos aiškinimą"
-#: libraries/common.lib.php:1212
+#: libraries/common.lib.php:1214
msgid "Without PHP Code"
msgstr "be PHP kodo"
-#: libraries/common.lib.php:1215 setup/lib/messages.inc.php:355
+#: libraries/common.lib.php:1217 setup/lib/messages.inc.php:355
msgid "Create PHP Code"
msgstr "PHP kodas"
-#: libraries/common.lib.php:1233 server_status.php:341
+#: libraries/common.lib.php:1235 server_status.php:452
#: setup/lib/messages.inc.php:354
msgid "Refresh"
msgstr "Atnaujinti"
-#: libraries/common.lib.php:1242
+#: libraries/common.lib.php:1244
msgid "Skip Validate SQL"
msgstr "Praleisti SQL užklausos tikrinimą"
-#: libraries/common.lib.php:1245 setup/lib/messages.inc.php:356 sql.php:518
+#: libraries/common.lib.php:1247 setup/lib/messages.inc.php:356 sql.php:518
msgid "Validate SQL"
msgstr "Patikrinti SQL užklausą"
-#: libraries/common.lib.php:1276
+#: libraries/common.lib.php:1278
msgid "Inline edit of this query"
msgstr ""
-#: libraries/common.lib.php:1278
+#: libraries/common.lib.php:1280
msgid "Inline"
msgstr ""
-#: libraries/common.lib.php:1332 libraries/common.lib.php:1347
+#: libraries/common.lib.php:1334 libraries/common.lib.php:1349
msgid "Profiling"
msgstr ""
-#: libraries/common.lib.php:1351 libraries/tbl_triggers.lib.php:28
+#: libraries/common.lib.php:1353 libraries/tbl_triggers.lib.php:28
#: server_processlist.php:58
msgid "Time"
msgstr "Laikas"
#. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "B"
msgstr "B"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "KiB"
msgstr "KiB"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "MiB"
msgstr "MiB"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "GiB"
msgstr "GiB"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "TiB"
msgstr "TiB"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "PiB"
msgstr "PiB"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "EiB"
msgstr "EiB"
#. l10n: Thousands separator
-#: libraries/common.lib.php:1417
+#: libraries/common.lib.php:1419
msgid ","
msgstr " "
#. l10n: Decimal separator
-#: libraries/common.lib.php:1419
+#: libraries/common.lib.php:1421
msgid "."
msgstr ","
#. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string
-#: libraries/common.lib.php:1596
+#: libraries/common.lib.php:1598
#: libraries/transformations/text_plain__dateformat.inc.php:34
msgid "%B %d, %Y at %I:%M %p"
msgstr "%Y m. %B %d d. %H:%M"
-#: libraries/common.lib.php:1898
+#: libraries/common.lib.php:1907
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "%s d., %s val., %s min. ir %s s"
-#: libraries/common.lib.php:2313 libraries/common.lib.php:2316
-#: libraries/display_tbl.lib.php:290 server_status.php:608
+#: libraries/common.lib.php:2322 libraries/common.lib.php:2325
+#: libraries/display_tbl.lib.php:290 server_status.php:719
msgid "Begin"
msgstr "Pradžia"
-#: libraries/common.lib.php:2314 libraries/common.lib.php:2317
+#: libraries/common.lib.php:2323 libraries/common.lib.php:2326
#: libraries/display_tbl.lib.php:291 server_binlog.php:168
#: server_binlog.php:170
msgid "Previous"
msgstr "Praėjęs"
-#: libraries/common.lib.php:2345 libraries/common.lib.php:2348
+#: libraries/common.lib.php:2354 libraries/common.lib.php:2357
#: libraries/display_tbl.lib.php:353
msgid "End"
msgstr "Pabaiga"
-#: libraries/common.lib.php:2421
+#: libraries/common.lib.php:2430
#, php-format
msgid "Jump to database "%s"."
msgstr "Pereiti į "%s" duombazę."
-#: libraries/common.lib.php:2441
+#: libraries/common.lib.php:2450
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr ""
-#: libraries/common.lib.php:2821 libraries/common.lib.php:2828
+#: libraries/common.lib.php:2830 libraries/common.lib.php:2837
#: libraries/db_links.inc.php:68 libraries/export/sql.php:25
#: libraries/import/sql.php:18 libraries/server_links.inc.php:45
#: libraries/tbl_links.inc.php:60 querywindow.php:99 test/theme.php:97
msgid "SQL"
msgstr "SQL"
-#: libraries/common.lib.php:2830 libraries/db_links.inc.php:104
+#: libraries/common.lib.php:2839 libraries/db_links.inc.php:104
#: libraries/tbl_links.inc.php:95 libraries/tbl_links.inc.php:117
#: view_operations.php:89
msgid "Operations"
@@ -1930,8 +1930,8 @@ msgid "Import"
msgstr "Importuoti"
#: libraries/db_links.inc.php:111 libraries/server_links.inc.php:66
-#: server_privileges.php:72 server_privileges.php:1683
-#: server_privileges.php:2032 test/theme.php:117
+#: server_privileges.php:111 server_privileges.php:1722
+#: server_privileges.php:2071 test/theme.php:117
msgid "Privileges"
msgstr "Privilegijos"
@@ -1977,22 +1977,22 @@ msgid "Change password"
msgstr "Pakeisti slaptažodį"
#: libraries/display_change_password.lib.php:35
-#: libraries/replication_gui.lib.php:345 server_privileges.php:768
+#: libraries/replication_gui.lib.php:345 server_privileges.php:807
msgid "No Password"
msgstr "Nėra slaptažodžio"
#: libraries/display_change_password.lib.php:41
#: libraries/replication_gui.lib.php:59 libraries/replication_gui.lib.php:60
#: libraries/replication_gui.lib.php:335 libraries/replication_gui.lib.php:339
-#: libraries/replication_gui.lib.php:349 server_privileges.php:757
-#: server_privileges.php:761 server_privileges.php:772
-#: server_privileges.php:1499 server_synchronize.php:1175
+#: libraries/replication_gui.lib.php:349 server_privileges.php:796
+#: server_privileges.php:800 server_privileges.php:811
+#: server_privileges.php:1538 server_synchronize.php:1175
msgid "Password"
msgstr "Slaptažodis"
#: libraries/display_change_password.lib.php:46
#: libraries/replication_gui.lib.php:353 libraries/replication_gui.lib.php:356
-#: server_privileges.php:776 server_privileges.php:779
+#: server_privileges.php:815 server_privileges.php:818
msgid "Re-type"
msgstr "Įveskite dar kartą"
@@ -2007,12 +2007,12 @@ msgid "MySQL 4.0 compatible"
msgstr "Suderinamas sy MySQL 4.0"
#: libraries/display_change_password.lib.php:72
-#: libraries/replication_gui.lib.php:360 server_privileges.php:783
+#: libraries/replication_gui.lib.php:360 server_privileges.php:822
msgid "Generate Password"
msgstr "Generuoti Slaiptažodį"
#: libraries/display_change_password.lib.php:75
-#: libraries/replication_gui.lib.php:363 server_privileges.php:786
+#: libraries/replication_gui.lib.php:363 server_privileges.php:825
msgid "Generate"
msgstr "Generuoti"
@@ -2025,8 +2025,8 @@ msgstr "Sukurti naują duombazę"
msgid "Create"
msgstr "Sukurti"
-#: libraries/display_create_database.lib.php:40 server_privileges.php:74
-#: server_privileges.php:1388 server_replication.php:35
+#: libraries/display_create_database.lib.php:40 server_privileges.php:113
+#: server_privileges.php:1427 server_replication.php:35
msgid "No Privileges"
msgstr "Nėra privilegijų"
@@ -2117,7 +2117,7 @@ msgstr "Kompresija"
#: libraries/display_export.lib.php:240 libraries/display_import.lib.php:197
#: libraries/display_import.lib.php:210 libraries/display_tbl.lib.php:530
#: libraries/export/sql.php:868 libraries/tbl_properties.inc.php:575
-#: server_privileges.php:1836 server_processlist.php:75
+#: server_privileges.php:1875 server_processlist.php:75
msgid "None"
msgstr "Nėra"
@@ -2440,7 +2440,7 @@ msgstr ""
msgid "Buffer Pool"
msgstr "Buferio Pool'as"
-#: libraries/engines/innodb.lib.php:145 server_status.php:306
+#: libraries/engines/innodb.lib.php:145 server_status.php:417
msgid "InnoDB Status"
msgstr "InnoDB būsena"
@@ -2449,8 +2449,8 @@ msgid "Buffer Pool Usage"
msgstr "Buferio Pool'o naudojimas"
#: libraries/engines/innodb.lib.php:194 server_databases.php:137
-#: server_databases.php:305 server_status.php:414 server_status.php:475
-#: server_status.php:496 tbl_printview.php:351 tbl_structure.php:696
+#: server_databases.php:305 server_status.php:525 server_status.php:586
+#: server_status.php:607 tbl_printview.php:351 tbl_structure.php:696
msgid "Total"
msgstr "Viso"
@@ -2779,7 +2779,7 @@ msgstr "Microsoft Word 2000"
#: libraries/export/latex.php:201 libraries/export/odt.php:48
#: libraries/export/sql.php:106 libraries/export/sql.php:868
#: libraries/export/texytext.php:27 server_databases.php:127
-#: server_privileges.php:537 server_replication.php:316 tbl_printview.php:317
+#: server_privileges.php:576 server_replication.php:316 tbl_printview.php:317
#: tbl_structure.php:665
msgid "Data"
msgstr "Duomenys"
@@ -2829,9 +2829,9 @@ msgstr "MIME tipai"
#: libraries/export/xml.php:102 libraries/header_printview.inc.php:57
#: libraries/replication_gui.lib.php:63 libraries/replication_gui.lib.php:174
#: libraries/replication_gui.lib.php:269 libraries/replication_gui.lib.php:272
-#: libraries/replication_gui.lib.php:329 server_privileges.php:692
-#: server_privileges.php:695 server_privileges.php:751
-#: server_privileges.php:1498 server_privileges.php:2030
+#: libraries/replication_gui.lib.php:329 server_privileges.php:731
+#: server_privileges.php:734 server_privileges.php:790
+#: server_privileges.php:1537 server_privileges.php:2069
#: server_processlist.php:55 server_synchronize.php:1159
msgid "Host"
msgstr "Darbinė stotis"
@@ -3189,766 +3189,6 @@ msgstr "Nėra"
msgid "Convert to Kana"
msgstr ""
-#. l10n: Text direction, use either ltr or rtl
-#: libraries/messages.inc.php:19
-msgid "ltr"
-msgstr "ltr"
-
-#: libraries/messages.inc.php:21
-msgid "Content of table __TABLE__"
-msgstr "Lentelės __TABLE__ turinys"
-
-#: libraries/messages.inc.php:22
-msgid "(continued)"
-msgstr "(tęsinys)"
-
-#: libraries/messages.inc.php:23
-msgid "Structure of table __TABLE__"
-msgstr "Lentelės __TABLE__ struktūra"
-
-#: libraries/messages.inc.php:25 server_privileges.php:227
-msgid "Includes all privileges except GRANT."
-msgstr "Įtraukti visas teises, išskyrus GRANT."
-
-#: libraries/messages.inc.php:26 server_privileges.php:153
-#: server_privileges.php:476
-msgid "Allows altering the structure of existing tables."
-msgstr "Leisti keisti jau egzistuojančių lenetelių struktūrą."
-
-#: libraries/messages.inc.php:27 server_privileges.php:169
-#: server_privileges.php:482
-#, fuzzy
-msgid "Allows altering and dropping stored routines."
-msgstr "Leisti įterpti ir modifikuoti indeksus."
-
-#: libraries/messages.inc.php:28 server_privileges.php:145
-#: server_privileges.php:475
-msgid "Allows creating new databases and tables."
-msgstr "Leisti kurti naujas duombazes ir lenteles."
-
-#: libraries/messages.inc.php:29 server_privileges.php:168
-#: server_privileges.php:481
-#, fuzzy
-msgid "Allows creating stored routines."
-msgstr "Leidžia sukurti naujus view'us."
-
-#: libraries/messages.inc.php:30 server_privileges.php:475
-msgid "Allows creating new tables."
-msgstr "Leisti kurti naujas lenteles."
-
-#: libraries/messages.inc.php:31 server_privileges.php:156
-#: server_privileges.php:479
-msgid "Allows creating temporary tables."
-msgstr "Leisti kurti laikinas lenteles."
-
-#: libraries/messages.inc.php:32 server_privileges.php:170
-#: server_privileges.php:515
-msgid "Allows creating, dropping and renaming user accounts."
-msgstr "Leidžia kurti, šalinti ir pervadinti vartotojus."
-
-#: libraries/messages.inc.php:33 server_privileges.php:160
-#: server_privileges.php:164 server_privileges.php:487
-#: server_privileges.php:491
-msgid "Allows creating new views."
-msgstr "Leidžia sukurti naujus view'us."
-
-#: libraries/messages.inc.php:34 server_privileges.php:144
-#: server_privileges.php:467
-msgid "Allows deleting data."
-msgstr "Leisti šalinti duomenis."
-
-#: libraries/messages.inc.php:35 server_privileges.php:146
-#: server_privileges.php:478
-msgid "Allows dropping databases and tables."
-msgstr "Leisti šalinti duombazes ir lenteles."
-
-#: libraries/messages.inc.php:36 server_privileges.php:478
-msgid "Allows dropping tables."
-msgstr "Leisti šalinti lenteles."
-
-#: libraries/messages.inc.php:37 server_privileges.php:161
-#: server_privileges.php:495
-msgid "Allows to set up events for the event scheduler"
-msgstr ""
-
-#: libraries/messages.inc.php:38 server_privileges.php:171
-#: server_privileges.php:483
-#, fuzzy
-msgid "Allows executing stored routines."
-msgstr "Leidžia sukurti naujus view'us."
-
-#: libraries/messages.inc.php:39 server_privileges.php:150
-#: server_privileges.php:470
-msgid "Allows importing data from and exporting data into files."
-msgstr "Leisti įterpti ir eksportuoti duomenis iš failų."
-
-#: libraries/messages.inc.php:40 server_privileges.php:501
-msgid ""
-"Allows adding users and privileges without reloading the privilege tables."
-msgstr ""
-"Leisti įterpti naujus vartotojus, bei prisikirti privilegijas, neperkraunant "
-"privilegijų lentelės."
-
-#: libraries/messages.inc.php:41 server_privileges.php:152
-#: server_privileges.php:477
-msgid "Allows creating and dropping indexes."
-msgstr "Leisti įterpti ir modifikuoti indeksus."
-
-#: libraries/messages.inc.php:42 server_privileges.php:142
-#: server_privileges.php:403 server_privileges.php:465
-msgid "Allows inserting and replacing data."
-msgstr "Leisti įterpti ir modifikuoti duomenis."
-
-#: libraries/messages.inc.php:43 server_privileges.php:157
-#: server_privileges.php:510
-msgid "Allows locking tables for the current thread."
-msgstr "Leisti užrakinti lenteles procesų metu."
-
-#: libraries/messages.inc.php:44 server_privileges.php:607
-#: server_privileges.php:609
-msgid "Limits the number of new connections the user may open per hour."
-msgstr "Riboti prisijungimų kiekį per valandą."
-
-#: libraries/messages.inc.php:45 server_privileges.php:595
-#: server_privileges.php:597
-msgid "Limits the number of queries the user may send to the server per hour."
-msgstr "Riboti užklausų kiekį per valandą"
-
-#: libraries/messages.inc.php:46 server_privileges.php:601
-#: server_privileges.php:603
-msgid ""
-"Limits the number of commands that change any table or database the user may "
-"execute per hour."
-msgstr ""
-"Riboti komandų (kurios vienaip ar kitaip modifikuoja lenteles ar duombazes) "
-"kiekį per valandą."
-
-#: libraries/messages.inc.php:47 server_privileges.php:613
-#: server_privileges.php:615
-#, fuzzy
-msgid "Limits the number of simultaneous connections the user may have."
-msgstr "Riboti prisijungimų kiekį per valandą."
-
-#: libraries/messages.inc.php:48 server_privileges.php:149
-#: server_privileges.php:505
-msgid "Allows viewing processes of all users"
-msgstr ""
-
-#: libraries/messages.inc.php:49 server_privileges.php:151
-#: server_privileges.php:409 server_privileges.php:511
-msgid "Has no effect in this MySQL version."
-msgstr " Negalioja šioje MySQL versijoje."
-
-#: libraries/messages.inc.php:50 server_privileges.php:147
-#: server_privileges.php:506
-msgid "Allows reloading server settings and flushing the server's caches."
-msgstr ""
-"Leisti perkrauti darbinę stotį, bei išvalyti laikinąją atmintį (cache)."
-
-#: libraries/messages.inc.php:51 server_privileges.php:159
-#: server_privileges.php:513
-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/messages.inc.php:52 server_privileges.php:158
-#: server_privileges.php:514
-msgid "Needed for the replication slaves."
-msgstr "Reikalinga atstatyti slave darbinei stočiai"
-
-#: libraries/messages.inc.php:53 server_privileges.php:141
-#: server_privileges.php:400 server_privileges.php:464
-msgid "Allows reading data."
-msgstr "Leisti skaityti duomenis."
-
-#: libraries/messages.inc.php:54 server_privileges.php:154
-#: server_privileges.php:508
-msgid "Gives access to the complete list of databases."
-msgstr "Suteikti prieigą prie visų duombazių."
-
-#: libraries/messages.inc.php:55 server_privileges.php:165
-#: server_privileges.php:167 server_privileges.php:480
-msgid "Allows performing SHOW CREATE VIEW queries."
-msgstr "Leidžia vykdyti SHOW CREATE VIEW užklausas."
-
-#: libraries/messages.inc.php:56 server_privileges.php:148
-#: server_privileges.php:507
-msgid "Allows shutting down the server."
-msgstr "Leisti išjungti serverį."
-
-#: libraries/messages.inc.php:57 server_privileges.php:155
-#: server_privileges.php:504
-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 ""
-"Leisti prisijungti, kai viršytas prisijungimų kiekis; Reikalinga daugumai "
-"administratoriaus darbų, tokių kaip globalių reikšmių modifikavimui ar "
-"vartotojų atjungimui."
-
-#: libraries/messages.inc.php:58 server_privileges.php:162
-#: server_privileges.php:496
-#, fuzzy
-msgid "Allows creating and dropping triggers"
-msgstr "Leisti įterpti ir modifikuoti indeksus."
-
-#: libraries/messages.inc.php:59 server_privileges.php:143
-#: server_privileges.php:406 server_privileges.php:466
-msgid "Allows changing data."
-msgstr "Leisti modifikuoti duomenis."
-
-#: libraries/messages.inc.php:60 server_privileges.php:221
-msgid "No privileges."
-msgstr "Be teisių."
-
-#: libraries/messages.inc.php:62
-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/messages.inc.php:63
-msgid "The number of transactions that used the temporary binary log cache."
-msgstr ""
-
-#: libraries/messages.inc.php:64
-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 "
-"to increase the tmp_table_size value to cause temporary tables to be memory-"
-"based instead of disk-based."
-msgstr ""
-
-#: libraries/messages.inc.php:65
-msgid "How many temporary files mysqld has created."
-msgstr ""
-
-#: libraries/messages.inc.php:66
-msgid ""
-"The number of in-memory temporary tables created automatically by the server "
-"while executing statements."
-msgstr ""
-
-#: libraries/messages.inc.php:67
-msgid ""
-"The number of rows written with INSERT DELAYED for which some error occurred "
-"(probably duplicate key)."
-msgstr ""
-
-#: libraries/messages.inc.php:68
-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/messages.inc.php:69
-msgid "The number of INSERT DELAYED rows written."
-msgstr ""
-
-#: libraries/messages.inc.php:70
-msgid "The number of executed FLUSH statements."
-msgstr "Įvykdytų FLUSH užklausų skaičius."
-
-#: libraries/messages.inc.php:71
-#, fuzzy
-msgid "The number of internal COMMIT statements."
-msgstr "Įvykdytų FLUSH užklausų skaičius."
-
-#: libraries/messages.inc.php:72
-msgid "The number of times a row was deleted from a table."
-msgstr ""
-
-#: libraries/messages.inc.php:73
-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/messages.inc.php:74
-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/messages.inc.php:75
-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/messages.inc.php:76
-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/messages.inc.php:77
-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/messages.inc.php:78
-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 "
-"probably have a lot of queries that require MySQL to scan whole tables or "
-"you have joins that don't use keys properly."
-msgstr ""
-
-#: libraries/messages.inc.php:79
-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 "
-"tables are not properly indexed or that your queries are not written to take "
-"advantage of the indexes you have."
-msgstr ""
-
-#: libraries/messages.inc.php:80
-#, fuzzy
-msgid "The number of internal ROLLBACK statements."
-msgstr "Įvykdytų FLUSH užklausų skaičius."
-
-#: libraries/messages.inc.php:81
-msgid "The number of requests to update a row in a table."
-msgstr ""
-
-#: libraries/messages.inc.php:82
-msgid "The number of requests to insert a row in a table."
-msgstr ""
-
-#: libraries/messages.inc.php:83
-msgid "The number of pages containing data (dirty or clean)."
-msgstr ""
-
-#: libraries/messages.inc.php:84
-#, fuzzy
-msgid "The number of pages currently dirty."
-msgstr "Duomenų nuskaitymų skaičius."
-
-#: libraries/messages.inc.php:85
-msgid "The number of buffer pool pages that have been requested to be flushed."
-msgstr ""
-
-#: libraries/messages.inc.php:86
-#, fuzzy
-msgid "The number of free pages."
-msgstr "Įkeltų eilučių skaičius"
-
-#: libraries/messages.inc.php:87
-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/messages.inc.php:88
-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 "
-"be calculated as Innodb_buffer_pool_pages_total - "
-"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data."
-msgstr ""
-
-#: libraries/messages.inc.php:89
-msgid "Total size of buffer pool, in pages."
-msgstr ""
-
-#: libraries/messages.inc.php:90
-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/messages.inc.php:91
-msgid ""
-"The number of sequential read-aheads InnoDB initiated. This happens when "
-"InnoDB does a sequential full table scan."
-msgstr ""
-
-#: libraries/messages.inc.php:92
-msgid "The number of logical read requests InnoDB has done."
-msgstr ""
-
-#: libraries/messages.inc.php:93
-msgid ""
-"The number of logical reads that InnoDB could not satisfy from buffer pool "
-"and had to do a single-page read."
-msgstr ""
-
-#: libraries/messages.inc.php:94
-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 "
-"available, it's necessary to wait for pages to be flushed first. This "
-"counter counts instances of these waits. If the buffer pool size was set "
-"properly, this value should be small."
-msgstr ""
-
-#: libraries/messages.inc.php:95
-msgid "The number writes done to the InnoDB buffer pool."
-msgstr ""
-
-#: libraries/messages.inc.php:96
-msgid "The number of fsync() operations so far."
-msgstr ""
-
-#: libraries/messages.inc.php:97
-#, fuzzy
-msgid "The current number of pending fsync() operations."
-msgstr "Duomenų nuskaitymų skaičius."
-
-#: libraries/messages.inc.php:98
-#, fuzzy
-msgid "The current number of pending reads."
-msgstr "Duomenų nuskaitymų skaičius."
-
-#: libraries/messages.inc.php:99
-#, fuzzy
-msgid "The current number of pending writes."
-msgstr "Duomenų įrašymų skaičius."
-
-#: libraries/messages.inc.php:100
-msgid "The amount of data read so far, in bytes."
-msgstr ""
-
-#: libraries/messages.inc.php:101
-msgid "The total number of data reads."
-msgstr "Duomenų nuskaitymų skaičius."
-
-#: libraries/messages.inc.php:102
-msgid "The total number of data writes."
-msgstr "Duomenų įrašymų skaičius."
-
-#: libraries/messages.inc.php:103
-msgid "The amount of data written so far, in bytes."
-msgstr ""
-
-#: libraries/messages.inc.php:104
-msgid "The number of pages that have been written for doublewrite operations."
-msgstr ""
-
-#: libraries/messages.inc.php:105
-msgid "The number of doublewrite operations that have been performed."
-msgstr ""
-
-#: libraries/messages.inc.php:106
-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/messages.inc.php:107
-#, fuzzy
-msgid "The number of log write requests."
-msgstr "Įkeltų eilučių skaičius"
-
-#: libraries/messages.inc.php:108
-msgid "The number of physical writes to the log file."
-msgstr ""
-
-#: libraries/messages.inc.php:109
-msgid "The number of fsync() writes done to the log file."
-msgstr ""
-
-#: libraries/messages.inc.php:110
-msgid "The number of pending log file fsyncs."
-msgstr ""
-
-#: libraries/messages.inc.php:111
-msgid "Pending log file writes."
-msgstr ""
-
-#: libraries/messages.inc.php:112
-msgid "The number of bytes written to the log file."
-msgstr ""
-
-#: libraries/messages.inc.php:113
-#, fuzzy
-msgid "The number of pages created."
-msgstr "Duomenų nuskaitymų skaičius."
-
-#: libraries/messages.inc.php:114
-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/messages.inc.php:115
-#, fuzzy
-msgid "The number of pages read."
-msgstr "Duomenų nuskaitymų skaičius."
-
-#: libraries/messages.inc.php:116
-#, fuzzy
-msgid "The number of pages written."
-msgstr "Duomenų įrašymų skaičius."
-
-#: libraries/messages.inc.php:117
-msgid "The number of row locks currently being waited for."
-msgstr ""
-
-#: libraries/messages.inc.php:118
-msgid "The average time to acquire a row lock, in milliseconds."
-msgstr ""
-
-#: libraries/messages.inc.php:119
-msgid "The total time spent in acquiring row locks, in milliseconds."
-msgstr ""
-
-#: libraries/messages.inc.php:120
-msgid "The maximum time to acquire a row lock, in milliseconds."
-msgstr ""
-
-#: libraries/messages.inc.php:121
-msgid "The number of times a row lock had to be waited for."
-msgstr ""
-
-#: libraries/messages.inc.php:122
-msgid "The number of rows deleted from InnoDB tables."
-msgstr ""
-
-#: libraries/messages.inc.php:123
-msgid "The number of rows inserted in InnoDB tables."
-msgstr ""
-
-#: libraries/messages.inc.php:124
-msgid "The number of rows read from InnoDB tables."
-msgstr ""
-
-#: libraries/messages.inc.php:125
-msgid "The number of rows updated in InnoDB tables."
-msgstr ""
-
-#: libraries/messages.inc.php:126
-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/messages.inc.php:127
-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/messages.inc.php:128
-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/messages.inc.php:129
-msgid "The number of requests to read a key block from the cache."
-msgstr ""
-
-#: libraries/messages.inc.php:130
-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/messages.inc.php:131
-msgid "The number of requests to write a key block to the cache."
-msgstr ""
-
-#: libraries/messages.inc.php:132
-msgid "The number of physical writes of a key block to disk."
-msgstr ""
-
-#: libraries/messages.inc.php:133
-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/messages.inc.php:134
-msgid "The number of rows waiting to be written in INSERT DELAYED queues."
-msgstr ""
-
-#: libraries/messages.inc.php:135
-msgid ""
-"The number of tables that have been opened. If opened tables is big, your "
-"table cache value is probably too small."
-msgstr ""
-
-#: libraries/messages.inc.php:136
-#, fuzzy
-msgid "The number of files that are open."
-msgstr "Duomenų įrašymų skaičius."
-
-#: libraries/messages.inc.php:137
-msgid "The number of streams that are open (used mainly for logging)."
-msgstr ""
-
-#: libraries/messages.inc.php:138
-#, fuzzy
-msgid "The number of tables that are open."
-msgstr "Duomenų įrašymų skaičius."
-
-#: libraries/messages.inc.php:139
-msgid "The number of free memory blocks in query cache."
-msgstr ""
-
-#: libraries/messages.inc.php:140
-msgid "The amount of free memory for query cache."
-msgstr ""
-
-#: libraries/messages.inc.php:141
-#, fuzzy
-msgid "The number of cache hits."
-msgstr "Įkeltų eilučių skaičius"
-
-#: libraries/messages.inc.php:142
-msgid "The number of queries added to the cache."
-msgstr ""
-
-#: libraries/messages.inc.php:143
-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 "
-"cache size. The query cache uses a least recently used (LRU) strategy to "
-"decide which queries to remove from the cache."
-msgstr ""
-
-#: libraries/messages.inc.php:144
-msgid ""
-"The number of non-cached queries (not cachable, or not cached due to the "
-"query_cache_type setting)."
-msgstr ""
-
-#: libraries/messages.inc.php:145
-msgid "The number of queries registered in the cache."
-msgstr ""
-
-#: libraries/messages.inc.php:146
-msgid "The total number of blocks in the query cache."
-msgstr ""
-
-#: libraries/messages.inc.php:147
-#, fuzzy
-msgctxt "$strShowStatusReset"
-msgid "Reset"
-msgstr "Atstatyti į pradinę būseną"
-
-#: libraries/messages.inc.php:148
-msgid "The status of failsafe replication (not yet implemented)."
-msgstr ""
-
-#: libraries/messages.inc.php:149
-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/messages.inc.php:150
-msgid "The number of joins that used a range search on a reference table."
-msgstr ""
-
-#: libraries/messages.inc.php:151
-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/messages.inc.php:152
-msgid ""
-"The number of joins that used ranges on the first table. (It's normally not "
-"critical even if this is big.)"
-msgstr ""
-
-#: libraries/messages.inc.php:153
-msgid "The number of joins that did a full scan of the first table."
-msgstr ""
-
-#: libraries/messages.inc.php:154
-msgid "The number of temporary tables currently open by the slave SQL thread."
-msgstr ""
-
-#: libraries/messages.inc.php:155
-msgid ""
-"Total (since startup) number of times the replication slave SQL thread has "
-"retried transactions."
-msgstr ""
-
-#: libraries/messages.inc.php:156
-msgid "This is ON if this server is a slave that is connected to a master."
-msgstr ""
-
-#: libraries/messages.inc.php:157
-msgid ""
-"The number of threads that have taken more than slow_launch_time seconds to "
-"create."
-msgstr ""
-
-#: libraries/messages.inc.php:158
-msgid ""
-"The number of queries that have taken more than long_query_time seconds."
-msgstr ""
-
-#: libraries/messages.inc.php:159
-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/messages.inc.php:160
-msgid "The number of sorts that were done with ranges."
-msgstr ""
-
-#: libraries/messages.inc.php:161
-#, fuzzy
-msgid "The number of sorted rows."
-msgstr "Įkeltų eilučių skaičius"
-
-#: libraries/messages.inc.php:162
-msgid "The number of sorts that were done by scanning the table."
-msgstr ""
-
-#: libraries/messages.inc.php:163
-msgid "The number of times that a table lock was acquired immediately."
-msgstr ""
-
-#: libraries/messages.inc.php:164
-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 "
-"should first optimize your queries, and then either split your table or "
-"tables or use replication."
-msgstr ""
-
-#: libraries/messages.inc.php:165
-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/messages.inc.php:166
-msgid "The number of currently open connections."
-msgstr ""
-
-#: libraries/messages.inc.php:167
-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 "
-"doesn't give a notable performance improvement if you have a good thread "
-"implementation.)"
-msgstr ""
-
-#: libraries/messages.inc.php:168
-msgid "The number of threads that are not sleeping."
-msgstr ""
-
#: libraries/mult_submits.inc.php:76 libraries/tbl_properties.inc.php:513
#: tbl_structure.php:29 tbl_structure.php:153 tbl_structure.php:157
#: tbl_structure.php:473
@@ -4268,8 +3508,8 @@ msgstr ""
#: libraries/replication_gui.lib.php:55 libraries/replication_gui.lib.php:56
#: libraries/replication_gui.lib.php:249 libraries/replication_gui.lib.php:252
-#: libraries/replication_gui.lib.php:259 server_privileges.php:672
-#: server_privileges.php:675 server_privileges.php:682
+#: libraries/replication_gui.lib.php:259 server_privileges.php:711
+#: server_privileges.php:714 server_privileges.php:721
#: server_synchronize.php:1171
msgid "User name"
msgstr "Vartotojo vardas"
@@ -4287,11 +3527,11 @@ msgid "Slave status"
msgstr ""
#: libraries/replication_gui.lib.php:114 libraries/sql_query_form.lib.php:445
-#: server_status.php:626 server_variables.php:52
+#: server_status.php:737 server_variables.php:52
msgid "Variable"
msgstr "Kintamasis"
-#: libraries/replication_gui.lib.php:115 server_status.php:627
+#: libraries/replication_gui.lib.php:115 server_status.php:738
#: tbl_change.php:324 tbl_printview.php:370 tbl_select.php:139
#: tbl_structure.php:729
msgid "Value"
@@ -4311,41 +3551,58 @@ msgstr ""
msgid "Add slave replication user"
msgstr ""
-#: libraries/replication_gui.lib.php:254 server_privileges.php:677
+#: libraries/replication_gui.lib.php:254 server_privileges.php:716
msgid "Any user"
msgstr "Bet kurį vartotoją"
#: libraries/replication_gui.lib.php:255 libraries/replication_gui.lib.php:323
-#: libraries/replication_gui.lib.php:346 server_privileges.php:678
-#: server_privileges.php:745 server_privileges.php:769
-#: server_privileges.php:1889 server_privileges.php:1919
+#: libraries/replication_gui.lib.php:346 server_privileges.php:717
+#: server_privileges.php:784 server_privileges.php:808
+#: server_privileges.php:1928 server_privileges.php:1958
msgid "Use text field"
msgstr "Naudokite teksto įvedimo lauką"
-#: libraries/replication_gui.lib.php:302 server_privileges.php:725
+#: libraries/replication_gui.lib.php:302 server_privileges.php:764
msgid "Any host"
msgstr "Bet kurį prisijungimo adresą"
-#: libraries/replication_gui.lib.php:306 server_privileges.php:729
+#: libraries/replication_gui.lib.php:306 server_privileges.php:768
msgid "Local"
msgstr "Lokali darbinė stotis"
-#: libraries/replication_gui.lib.php:312 server_privileges.php:734
+#: libraries/replication_gui.lib.php:312 server_privileges.php:773
msgid "This Host"
msgstr "Dabartinis serveris"
-#: libraries/replication_gui.lib.php:318 server_privileges.php:740
+#: libraries/replication_gui.lib.php:318 server_privileges.php:779
msgid "Use Host Table"
msgstr "Naudoti Host lentelę"
-#: libraries/replication_gui.lib.php:331 server_privileges.php:753
+#: libraries/replication_gui.lib.php:331 server_privileges.php:792
msgid ""
"When Host table is used, this field is ignored and values stored in Host "
"table are used instead."
msgstr ""
-#: libraries/select_lang.lib.php:480 libraries/select_lang.lib.php:486
-#: libraries/select_lang.lib.php:492
+#. l10n: Text direction, use either ltr or rtl
+#: libraries/select_lang.lib.php:491
+msgid "ltr"
+msgstr "ltr"
+
+#: libraries/select_lang.lib.php:493
+msgid "Content of table __TABLE__"
+msgstr "Lentelės __TABLE__ turinys"
+
+#: libraries/select_lang.lib.php:494
+msgid "(continued)"
+msgstr "(tęsinys)"
+
+#: libraries/select_lang.lib.php:495
+msgid "Structure of table __TABLE__"
+msgstr "Lentelės __TABLE__ struktūra"
+
+#: libraries/select_lang.lib.php:500 libraries/select_lang.lib.php:506
+#: libraries/select_lang.lib.php:512
#, php-format
msgid "Unknown language: %1$s."
msgstr "Nežinoma kalba: %1$s."
@@ -4356,7 +3613,7 @@ msgid "Servers"
msgstr "Serveriai"
#: libraries/server_links.inc.php:53 server_engines.php:112
-#: server_engines.php:116 server_status.php:304 test/theme.php:105
+#: server_engines.php:116 server_status.php:415 test/theme.php:105
msgid "Variables"
msgstr "Kintamieji"
@@ -4369,7 +3626,7 @@ msgid "Engines"
msgstr "Varikliai"
#: libraries/server_links.inc.php:76 server_binlog.php:110
-#: server_status.php:253 test/theme.php:121
+#: server_status.php:364 test/theme.php:121
msgid "Binary log"
msgstr "Binarinis logas"
@@ -4828,8 +4085,8 @@ msgstr "Atstatyti į pradinę būseną"
msgid "Protocol version"
msgstr "Protokolo versija"
-#: main.php:189 server_privileges.php:1350 server_privileges.php:1497
-#: server_privileges.php:1611 server_privileges.php:2029
+#: main.php:189 server_privileges.php:1389 server_privileges.php:1536
+#: server_privileges.php:1650 server_privileges.php:2068
#: server_processlist.php:54
msgid "User"
msgstr "Vartotojas"
@@ -5204,7 +4461,7 @@ msgstr "Sėkmingai pašalintos %s duombazės."
msgid "Databases statistics"
msgstr "Duombazių statistika"
-#: server_databases.php:117 server_status.php:260
+#: server_databases.php:117 server_status.php:371
#: setup/lib/messages.inc.php:117
msgid "Tables"
msgstr "Lentelės"
@@ -5226,6 +4483,17 @@ msgstr "Serverio nustatymai"
msgid "Jump to database"
msgstr "Eiti į duomenų bazę"
+#: server_databases.php:267
+#, fuzzy
+msgid "Not replicated"
+msgstr "Serverio nustatymai"
+
+#: server_databases.php:273
+#, fuzzy
+#| msgid "Replication"
+msgid "Replicated"
+msgstr "Replikacija"
+
#: server_databases.php:289
#, php-format
msgid "Check privileges for database "%s"."
@@ -5259,144 +4527,340 @@ msgstr "Saugojimo varikliai"
msgid "View dump (schema) of databases"
msgstr "Peržiūrėti duombazių išrašą"
-#: server_privileges.php:263 server_privileges.php:264
+#: server_privileges.php:24 server_privileges.php:266
+msgid "Includes all privileges except GRANT."
+msgstr "Įtraukti visas teises, išskyrus GRANT."
+
+#: server_privileges.php:25 server_privileges.php:192
+#: server_privileges.php:515
+msgid "Allows altering the structure of existing tables."
+msgstr "Leisti keisti jau egzistuojančių lenetelių struktūrą."
+
+#: server_privileges.php:26 server_privileges.php:208
+#: server_privileges.php:521
+#, fuzzy
+msgid "Allows altering and dropping stored routines."
+msgstr "Leisti įterpti ir modifikuoti indeksus."
+
+#: server_privileges.php:27 server_privileges.php:184
+#: server_privileges.php:514
+msgid "Allows creating new databases and tables."
+msgstr "Leisti kurti naujas duombazes ir lenteles."
+
+#: server_privileges.php:28 server_privileges.php:207
+#: server_privileges.php:520
+#, fuzzy
+msgid "Allows creating stored routines."
+msgstr "Leidžia sukurti naujus view'us."
+
+#: server_privileges.php:29 server_privileges.php:514
+msgid "Allows creating new tables."
+msgstr "Leisti kurti naujas lenteles."
+
+#: server_privileges.php:30 server_privileges.php:195
+#: server_privileges.php:518
+msgid "Allows creating temporary tables."
+msgstr "Leisti kurti laikinas lenteles."
+
+#: server_privileges.php:31 server_privileges.php:209
+#: server_privileges.php:554
+msgid "Allows creating, dropping and renaming user accounts."
+msgstr "Leidžia kurti, šalinti ir pervadinti vartotojus."
+
+#: server_privileges.php:32 server_privileges.php:199
+#: server_privileges.php:203 server_privileges.php:526
+#: server_privileges.php:530
+msgid "Allows creating new views."
+msgstr "Leidžia sukurti naujus view'us."
+
+#: server_privileges.php:33 server_privileges.php:183
+#: server_privileges.php:506
+msgid "Allows deleting data."
+msgstr "Leisti šalinti duomenis."
+
+#: server_privileges.php:34 server_privileges.php:185
+#: server_privileges.php:517
+msgid "Allows dropping databases and tables."
+msgstr "Leisti šalinti duombazes ir lenteles."
+
+#: server_privileges.php:35 server_privileges.php:517
+msgid "Allows dropping tables."
+msgstr "Leisti šalinti lenteles."
+
+#: server_privileges.php:36 server_privileges.php:200
+#: server_privileges.php:534
+msgid "Allows to set up events for the event scheduler"
+msgstr ""
+
+#: server_privileges.php:37 server_privileges.php:210
+#: server_privileges.php:522
+#, fuzzy
+msgid "Allows executing stored routines."
+msgstr "Leidžia sukurti naujus view'us."
+
+#: server_privileges.php:38 server_privileges.php:189
+#: server_privileges.php:509
+msgid "Allows importing data from and exporting data into files."
+msgstr "Leisti įterpti ir eksportuoti duomenis iš failų."
+
+#: server_privileges.php:39 server_privileges.php:540
+msgid ""
+"Allows adding users and privileges without reloading the privilege tables."
+msgstr ""
+"Leisti įterpti naujus vartotojus, bei prisikirti privilegijas, neperkraunant "
+"privilegijų lentelės."
+
+#: server_privileges.php:40 server_privileges.php:191
+#: server_privileges.php:516
+msgid "Allows creating and dropping indexes."
+msgstr "Leisti įterpti ir modifikuoti indeksus."
+
+#: server_privileges.php:41 server_privileges.php:181
+#: server_privileges.php:442 server_privileges.php:504
+msgid "Allows inserting and replacing data."
+msgstr "Leisti įterpti ir modifikuoti duomenis."
+
+#: server_privileges.php:42 server_privileges.php:196
+#: server_privileges.php:549
+msgid "Allows locking tables for the current thread."
+msgstr "Leisti užrakinti lenteles procesų metu."
+
+#: server_privileges.php:43 server_privileges.php:646
+#: server_privileges.php:648
+msgid "Limits the number of new connections the user may open per hour."
+msgstr "Riboti prisijungimų kiekį per valandą."
+
+#: server_privileges.php:44 server_privileges.php:634
+#: server_privileges.php:636
+msgid "Limits the number of queries the user may send to the server per hour."
+msgstr "Riboti užklausų kiekį per valandą"
+
+#: server_privileges.php:45 server_privileges.php:640
+#: server_privileges.php:642
+msgid ""
+"Limits the number of commands that change any table or database the user may "
+"execute per hour."
+msgstr ""
+"Riboti komandų (kurios vienaip ar kitaip modifikuoja lenteles ar duombazes) "
+"kiekį per valandą."
+
+#: server_privileges.php:46 server_privileges.php:652
+#: server_privileges.php:654
+#, fuzzy
+msgid "Limits the number of simultaneous connections the user may have."
+msgstr "Riboti prisijungimų kiekį per valandą."
+
+#: server_privileges.php:47 server_privileges.php:188
+#: server_privileges.php:544
+msgid "Allows viewing processes of all users"
+msgstr ""
+
+#: server_privileges.php:48 server_privileges.php:190
+#: server_privileges.php:448 server_privileges.php:550
+msgid "Has no effect in this MySQL version."
+msgstr " Negalioja šioje MySQL versijoje."
+
+#: server_privileges.php:49 server_privileges.php:186
+#: server_privileges.php:545
+msgid "Allows reloading server settings and flushing the server's caches."
+msgstr ""
+"Leisti perkrauti darbinę stotį, bei išvalyti laikinąją atmintį (cache)."
+
+#: server_privileges.php:50 server_privileges.php:198
+#: server_privileges.php:552
+msgid "Allows the user to ask where the slaves / masters are."
+msgstr ""
+"Leisti vartotojo užklausas dėl atstatymo master / slave darbinių stočių."
+
+#: server_privileges.php:51 server_privileges.php:197
+#: server_privileges.php:553
+msgid "Needed for the replication slaves."
+msgstr "Reikalinga atstatyti slave darbinei stočiai"
+
+#: server_privileges.php:52 server_privileges.php:180
+#: server_privileges.php:439 server_privileges.php:503
+msgid "Allows reading data."
+msgstr "Leisti skaityti duomenis."
+
+#: server_privileges.php:53 server_privileges.php:193
+#: server_privileges.php:547
+msgid "Gives access to the complete list of databases."
+msgstr "Suteikti prieigą prie visų duombazių."
+
+#: server_privileges.php:54 server_privileges.php:204
+#: server_privileges.php:206 server_privileges.php:519
+msgid "Allows performing SHOW CREATE VIEW queries."
+msgstr "Leidžia vykdyti SHOW CREATE VIEW užklausas."
+
+#: server_privileges.php:55 server_privileges.php:187
+#: server_privileges.php:546
+msgid "Allows shutting down the server."
+msgstr "Leisti išjungti serverį."
+
+#: server_privileges.php:56 server_privileges.php:194
+#: server_privileges.php:543
+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 ""
+"Leisti prisijungti, kai viršytas prisijungimų kiekis; Reikalinga daugumai "
+"administratoriaus darbų, tokių kaip globalių reikšmių modifikavimui ar "
+"vartotojų atjungimui."
+
+#: server_privileges.php:57 server_privileges.php:201
+#: server_privileges.php:535
+#, fuzzy
+msgid "Allows creating and dropping triggers"
+msgstr "Leisti įterpti ir modifikuoti indeksus."
+
+#: server_privileges.php:58 server_privileges.php:182
+#: server_privileges.php:445 server_privileges.php:505
+msgid "Allows changing data."
+msgstr "Leisti modifikuoti duomenis."
+
+#: server_privileges.php:59 server_privileges.php:260
+msgid "No privileges."
+msgstr "Be teisių."
+
+#: server_privileges.php:302 server_privileges.php:303
#, fuzzy
#| msgid "None"
msgctxt "None privileges"
msgid "None"
msgstr "Nėra"
-#: server_privileges.php:392 server_privileges.php:527
-#: server_privileges.php:1679 server_privileges.php:1685
+#: server_privileges.php:431 server_privileges.php:566
+#: server_privileges.php:1718 server_privileges.php:1724
msgid "Table-specific privileges"
msgstr "Specifinės lentelių privilegijos"
-#: server_privileges.php:393 server_privileges.php:535
-#: server_privileges.php:1501
+#: server_privileges.php:432 server_privileges.php:574
+#: server_privileges.php:1540
msgid " Note: MySQL privilege names are expressed in English "
msgstr " Pastaba: MySQL privilegijų pavadinimai pateikiami anglų kalba"
-#: server_privileges.php:524 server_privileges.php:1500
+#: server_privileges.php:563 server_privileges.php:1539
msgid "Global privileges"
msgstr "Globalios teisės"
-#: server_privileges.php:526 server_privileges.php:1679
+#: server_privileges.php:565 server_privileges.php:1718
msgid "Database-specific privileges"
msgstr "Specifinės duombazių privilegijos"
-#: server_privileges.php:571
+#: server_privileges.php:610
msgid "Administration"
msgstr "Administracija"
-#: server_privileges.php:591
+#: server_privileges.php:630
msgid "Resource limits"
msgstr "Išteklių apribojimai"
-#: server_privileges.php:592
+#: server_privileges.php:631
msgid "Note: Setting these options to 0 (zero) removes the limit."
msgstr "Pastaba: nėra jokių apribojimų jeigu reikšmė nurodyta lygi 0 (nuliui)."
-#: server_privileges.php:669
+#: server_privileges.php:708
msgid "Login Information"
msgstr "Prisijungimo informacija"
-#: server_privileges.php:763
+#: server_privileges.php:802
msgid "Do not change the password"
msgstr "Nekeisti slaptažodžio"
-#: server_privileges.php:804 server_privileges.php:2166
+#: server_privileges.php:843 server_privileges.php:2205
#, fuzzy
#| msgid "No user(s) found."
msgid "No user found."
msgstr "Nerasta vartotojo(ų)."
-#: server_privileges.php:848
+#: server_privileges.php:887
#, php-format
msgid "The user %s already exists!"
msgstr "Vartotojas %s jau yra!"
-#: server_privileges.php:931
+#: server_privileges.php:970
msgid "You have added a new user."
msgstr "Jūs sukūrėte naują vartotoją."
-#: server_privileges.php:1152
+#: server_privileges.php:1191
#, php-format
msgid "You have updated the privileges for %s."
msgstr "Jūs pakeitėte privilegijas %s."
-#: server_privileges.php:1176
+#: server_privileges.php:1215
#, php-format
msgid "You have revoked the privileges for %s"
msgstr "Jūs panaikinote privilegijas %s"
-#: server_privileges.php:1212
+#: server_privileges.php:1251
#, php-format
msgid "The password for %s was changed successfully."
msgstr "Vartotojo %s slaptažodis sėkmingai pakeistas."
-#: server_privileges.php:1232
+#: server_privileges.php:1271
#, php-format
msgid "Deleting %s"
msgstr "Šaliname: %s"
-#: server_privileges.php:1243
+#: server_privileges.php:1282
msgid "No users selected for deleting!"
msgstr "Nepasirinta vartotojų trynimui!"
-#: server_privileges.php:1246
+#: server_privileges.php:1285
msgid "Reloading the privileges"
msgstr "Perkraunamos privilegijos"
-#: server_privileges.php:1261
+#: server_privileges.php:1300
msgid "The selected users have been deleted successfully."
msgstr "Pažymėti vartotojai sėkmingai pašalinti."
-#: server_privileges.php:1296
+#: server_privileges.php:1335
msgid "The privileges were reloaded successfully."
msgstr "Teisės sėkmingai perkrautos."
-#: server_privileges.php:1324 server_privileges.php:1610
+#: server_privileges.php:1363 server_privileges.php:1649
msgid "Edit Privileges"
msgstr "Redaguoti privilegijas"
-#: server_privileges.php:1333
+#: server_privileges.php:1372
msgid "Revoke"
msgstr "Panaikinti"
-#: server_privileges.php:1365
+#: server_privileges.php:1404
msgid "User overview"
msgstr "Vartotojų peržiūra"
-#: server_privileges.php:1502 server_privileges.php:1684
-#: server_privileges.php:2033
+#: server_privileges.php:1541 server_privileges.php:1723
+#: server_privileges.php:2072
msgid "Grant"
msgstr "Suteikti"
-#: server_privileges.php:1521 server_privileges.php:2123
+#: server_privileges.php:1560 server_privileges.php:2162
msgid "Any"
msgstr "Bet kurį(ią)"
-#: server_privileges.php:1570 server_privileges.php:1594
-#: server_privileges.php:1988 server_privileges.php:2177
+#: server_privileges.php:1609 server_privileges.php:1633
+#: server_privileges.php:2027 server_privileges.php:2216
msgid "Add a new User"
msgstr "Sukurti naują vartotoją"
-#: server_privileges.php:1575
+#: server_privileges.php:1614
msgid "Remove selected users"
msgstr "Pašalinti pažymėtus vartotojus"
-#: server_privileges.php:1578
+#: server_privileges.php:1617
msgid "Revoke all active privileges from the users and delete them afterwards."
msgstr ""
"Panaikinti visas aktyvias vartotojų privilegijas ir pašalinti vartotojus."
-#: server_privileges.php:1579 server_privileges.php:1580
-#: server_privileges.php:1581
+#: server_privileges.php:1618 server_privileges.php:1619
+#: server_privileges.php:1620
msgid "Drop the databases that have the same names as the users."
msgstr ""
"Pašalinti duombazes, turinčias tokius pačius vardus kaip ir vartotojai."
-#: server_privileges.php:1597
+#: server_privileges.php:1636
#, php-format
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
@@ -5408,49 +4872,49 @@ msgstr ""
"lentelės. Šiose lentelėse nurodytos teisės gali skirtis nuo nustatymų "
"failuose nurodytų teisių. Todėl %sperkraukite teises%s, jeigu norite tęsti. "
-#: server_privileges.php:1645
+#: server_privileges.php:1684
msgid "The selected user was not found in the privilege table."
msgstr "Privilegijų lentelėje pasirinktas vartotojas nerastas."
-#: server_privileges.php:1685
+#: server_privileges.php:1724
msgid "Column-specific privileges"
msgstr "Specifinės stulpelių privilegijos"
-#: server_privileges.php:1886
+#: server_privileges.php:1925
msgid "Add privileges on the following database"
msgstr "Sukurti privilegijas šiai duombazei"
-#: server_privileges.php:1904
+#: server_privileges.php:1943
msgid "Wildcards % and _ should be escaped with a \\ to use them literally"
msgstr "Norint naudoti _ ir % simblius, juos reikėtų eskeipinti su \\"
-#: server_privileges.php:1907
+#: server_privileges.php:1946
msgid "Add privileges on the following table"
msgstr "Sukurti privilegijas šiai lentelei"
-#: server_privileges.php:1964
+#: server_privileges.php:2003
msgid "Change Login Information / Copy User"
msgstr "Pakeisti prisijungimo informaciją / Kopijuoti vartotojo duomenis"
-#: server_privileges.php:1967
+#: server_privileges.php:2006
msgid "Create a new user with the same privileges and ..."
msgstr "Sukurti naują vartotoją su tom pačiom privilegijom ir ..."
-#: server_privileges.php:1969
+#: server_privileges.php:2008
msgid "... keep the old one."
msgstr "... palikti seną vartotoją."
-#: server_privileges.php:1970
+#: server_privileges.php:2009
msgid " ... delete the old one from the user tables."
msgstr " ... pašalinti seną vartotoją iš vartotojų lentelės."
-#: server_privileges.php:1971
+#: server_privileges.php:2010
msgid ""
" ... revoke all active privileges from the old one and delete it afterwards."
msgstr ""
" ... panaikinti visas privilegijas iš seno vartotojo ir poto jį pašalinti."
-#: server_privileges.php:1972
+#: server_privileges.php:2011
msgid ""
" ... delete the old one from the user tables and reload the privileges "
"afterwards."
@@ -5458,44 +4922,44 @@ msgstr ""
" ... pašalinti seną vartotoją iš vartotojų lentelės ir poto perkrauti "
"privilegijas"
-#: server_privileges.php:1994
+#: server_privileges.php:2033
msgid "Database for user"
msgstr ""
-#: server_privileges.php:1998
+#: server_privileges.php:2037
#, fuzzy
#| msgid "None"
msgctxt "Create none database for user"
msgid "None"
msgstr "Nėra"
-#: server_privileges.php:1999
+#: server_privileges.php:2038
msgid "Create database with same name and grant all privileges"
msgstr ""
-#: server_privileges.php:2000
+#: server_privileges.php:2039
msgid "Grant all privileges on wildcard name (username\\_%)"
msgstr ""
-#: server_privileges.php:2003
+#: server_privileges.php:2042
#, fuzzy, php-format
msgid "Grant all privileges on database "%s""
msgstr "Patikrinti duombazės "%s" privilegijas."
-#: server_privileges.php:2026
+#: server_privileges.php:2065
#, php-format
msgid "Users having access to "%s""
msgstr "Vartotojai turintys priėjimą prie "%s""
-#: server_privileges.php:2134
+#: server_privileges.php:2173
msgid "global"
msgstr "globalus"
-#: server_privileges.php:2136
+#: server_privileges.php:2175
msgid "database-specific"
msgstr "priklausantis nuo duombazės tipo"
-#: server_privileges.php:2138
+#: server_privileges.php:2177
msgid "wildcard"
msgstr "pakaitos simbolis"
@@ -5542,7 +5006,7 @@ msgstr ""
msgid "This server is configured as master in a replication process."
msgstr ""
-#: server_replication.php:184 server_status.php:281
+#: server_replication.php:184 server_status.php:392
msgid "Show master status"
msgstr ""
@@ -5683,106 +5147,653 @@ msgid ""
"like to configure it?"
msgstr ""
+#: server_status.php:40
+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 ""
+
+#: server_status.php:41
+msgid "The number of transactions that used the temporary binary log cache."
+msgstr ""
+
+#: server_status.php:42
+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 "
+"to increase the tmp_table_size value to cause temporary tables to be memory-"
+"based instead of disk-based."
+msgstr ""
+
+#: server_status.php:43
+msgid "How many temporary files mysqld has created."
+msgstr ""
+
+#: server_status.php:44
+msgid ""
+"The number of in-memory temporary tables created automatically by the server "
+"while executing statements."
+msgstr ""
+
+#: server_status.php:45
+msgid ""
+"The number of rows written with INSERT DELAYED for which some error occurred "
+"(probably duplicate key)."
+msgstr ""
+
#: server_status.php:46
+msgid ""
+"The number of INSERT DELAYED handler threads in use. Every different table "
+"on which one uses INSERT DELAYED gets its own thread."
+msgstr ""
+
+#: server_status.php:47
+msgid "The number of INSERT DELAYED rows written."
+msgstr ""
+
+#: server_status.php:48
+msgid "The number of executed FLUSH statements."
+msgstr "Įvykdytų FLUSH užklausų skaičius."
+
+#: server_status.php:49
+#, fuzzy
+msgid "The number of internal COMMIT statements."
+msgstr "Įvykdytų FLUSH užklausų skaičius."
+
+#: server_status.php:50
+msgid "The number of times a row was deleted from a table."
+msgstr ""
+
+#: server_status.php:51
+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 ""
+
+#: server_status.php:52
+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 ""
+
+#: server_status.php:53
+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 ""
+
+#: server_status.php:54
+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 ""
+
+#: server_status.php:55
+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 ""
+
+#: server_status.php:56
+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 "
+"probably have a lot of queries that require MySQL to scan whole tables or "
+"you have joins that don't use keys properly."
+msgstr ""
+
+#: server_status.php:57
+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 "
+"tables are not properly indexed or that your queries are not written to take "
+"advantage of the indexes you have."
+msgstr ""
+
+#: server_status.php:58
+#, fuzzy
+msgid "The number of internal ROLLBACK statements."
+msgstr "Įvykdytų FLUSH užklausų skaičius."
+
+#: server_status.php:59
+msgid "The number of requests to update a row in a table."
+msgstr ""
+
+#: server_status.php:60
+msgid "The number of requests to insert a row in a table."
+msgstr ""
+
+#: server_status.php:61
+msgid "The number of pages containing data (dirty or clean)."
+msgstr ""
+
+#: server_status.php:62
+#, fuzzy
+msgid "The number of pages currently dirty."
+msgstr "Duomenų nuskaitymų skaičius."
+
+#: server_status.php:63
+msgid "The number of buffer pool pages that have been requested to be flushed."
+msgstr ""
+
+#: server_status.php:64
+#, fuzzy
+msgid "The number of free pages."
+msgstr "Įkeltų eilučių skaičius"
+
+#: server_status.php:65
+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 ""
+
+#: server_status.php:66
+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 "
+"be calculated as Innodb_buffer_pool_pages_total - "
+"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data."
+msgstr ""
+
+#: server_status.php:67
+msgid "Total size of buffer pool, in pages."
+msgstr ""
+
+#: server_status.php:68
+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 ""
+
+#: server_status.php:69
+msgid ""
+"The number of sequential read-aheads InnoDB initiated. This happens when "
+"InnoDB does a sequential full table scan."
+msgstr ""
+
+#: server_status.php:70
+msgid "The number of logical read requests InnoDB has done."
+msgstr ""
+
+#: server_status.php:71
+msgid ""
+"The number of logical reads that InnoDB could not satisfy from buffer pool "
+"and had to do a single-page read."
+msgstr ""
+
+#: server_status.php:72
+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 "
+"available, it's necessary to wait for pages to be flushed first. This "
+"counter counts instances of these waits. If the buffer pool size was set "
+"properly, this value should be small."
+msgstr ""
+
+#: server_status.php:73
+msgid "The number writes done to the InnoDB buffer pool."
+msgstr ""
+
+#: server_status.php:74
+msgid "The number of fsync() operations so far."
+msgstr ""
+
+#: server_status.php:75
+#, fuzzy
+msgid "The current number of pending fsync() operations."
+msgstr "Duomenų nuskaitymų skaičius."
+
+#: server_status.php:76
+#, fuzzy
+msgid "The current number of pending reads."
+msgstr "Duomenų nuskaitymų skaičius."
+
+#: server_status.php:77
+#, fuzzy
+msgid "The current number of pending writes."
+msgstr "Duomenų įrašymų skaičius."
+
+#: server_status.php:78
+msgid "The amount of data read so far, in bytes."
+msgstr ""
+
+#: server_status.php:79
+msgid "The total number of data reads."
+msgstr "Duomenų nuskaitymų skaičius."
+
+#: server_status.php:80
+msgid "The total number of data writes."
+msgstr "Duomenų įrašymų skaičius."
+
+#: server_status.php:81
+msgid "The amount of data written so far, in bytes."
+msgstr ""
+
+#: server_status.php:82
+msgid "The number of pages that have been written for doublewrite operations."
+msgstr ""
+
+#: server_status.php:83
+msgid "The number of doublewrite operations that have been performed."
+msgstr ""
+
+#: server_status.php:84
+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 ""
+
+#: server_status.php:85
+#, fuzzy
+msgid "The number of log write requests."
+msgstr "Įkeltų eilučių skaičius"
+
+#: server_status.php:86
+msgid "The number of physical writes to the log file."
+msgstr ""
+
+#: server_status.php:87
+msgid "The number of fsync() writes done to the log file."
+msgstr ""
+
+#: server_status.php:88
+msgid "The number of pending log file fsyncs."
+msgstr ""
+
+#: server_status.php:89
+msgid "Pending log file writes."
+msgstr ""
+
+#: server_status.php:90
+msgid "The number of bytes written to the log file."
+msgstr ""
+
+#: server_status.php:91
+#, fuzzy
+msgid "The number of pages created."
+msgstr "Duomenų nuskaitymų skaičius."
+
+#: server_status.php:92
+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 ""
+
+#: server_status.php:93
+#, fuzzy
+msgid "The number of pages read."
+msgstr "Duomenų nuskaitymų skaičius."
+
+#: server_status.php:94
+#, fuzzy
+msgid "The number of pages written."
+msgstr "Duomenų įrašymų skaičius."
+
+#: server_status.php:95
+msgid "The number of row locks currently being waited for."
+msgstr ""
+
+#: server_status.php:96
+msgid "The average time to acquire a row lock, in milliseconds."
+msgstr ""
+
+#: server_status.php:97
+msgid "The total time spent in acquiring row locks, in milliseconds."
+msgstr ""
+
+#: server_status.php:98
+msgid "The maximum time to acquire a row lock, in milliseconds."
+msgstr ""
+
+#: server_status.php:99
+msgid "The number of times a row lock had to be waited for."
+msgstr ""
+
+#: server_status.php:100
+msgid "The number of rows deleted from InnoDB tables."
+msgstr ""
+
+#: server_status.php:101
+msgid "The number of rows inserted in InnoDB tables."
+msgstr ""
+
+#: server_status.php:102
+msgid "The number of rows read from InnoDB tables."
+msgstr ""
+
+#: server_status.php:103
+msgid "The number of rows updated in InnoDB tables."
+msgstr ""
+
+#: server_status.php:104
+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 ""
+
+#: server_status.php:105
+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 ""
+
+#: server_status.php:106
+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 ""
+
+#: server_status.php:107
+msgid "The number of requests to read a key block from the cache."
+msgstr ""
+
+#: server_status.php:108
+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 ""
+
+#: server_status.php:109
+msgid "The number of requests to write a key block to the cache."
+msgstr ""
+
+#: server_status.php:110
+msgid "The number of physical writes of a key block to disk."
+msgstr ""
+
+#: server_status.php:111
+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 ""
+
+#: server_status.php:112
+msgid "The number of rows waiting to be written in INSERT DELAYED queues."
+msgstr ""
+
+#: server_status.php:113
+msgid ""
+"The number of tables that have been opened. If opened tables is big, your "
+"table cache value is probably too small."
+msgstr ""
+
+#: server_status.php:114
+#, fuzzy
+msgid "The number of files that are open."
+msgstr "Duomenų įrašymų skaičius."
+
+#: server_status.php:115
+msgid "The number of streams that are open (used mainly for logging)."
+msgstr ""
+
+#: server_status.php:116
+#, fuzzy
+msgid "The number of tables that are open."
+msgstr "Duomenų įrašymų skaičius."
+
+#: server_status.php:117
+msgid "The number of free memory blocks in query cache."
+msgstr ""
+
+#: server_status.php:118
+msgid "The amount of free memory for query cache."
+msgstr ""
+
+#: server_status.php:119
+#, fuzzy
+msgid "The number of cache hits."
+msgstr "Įkeltų eilučių skaičius"
+
+#: server_status.php:120
+msgid "The number of queries added to the cache."
+msgstr ""
+
+#: server_status.php:121
+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 "
+"cache size. The query cache uses a least recently used (LRU) strategy to "
+"decide which queries to remove from the cache."
+msgstr ""
+
+#: server_status.php:122
+msgid ""
+"The number of non-cached queries (not cachable, or not cached due to the "
+"query_cache_type setting)."
+msgstr ""
+
+#: server_status.php:123
+msgid "The number of queries registered in the cache."
+msgstr ""
+
+#: server_status.php:124
+msgid "The total number of blocks in the query cache."
+msgstr ""
+
+#: server_status.php:125
+#, fuzzy
+msgctxt "$strShowStatusReset"
+msgid "Reset"
+msgstr "Atstatyti į pradinę būseną"
+
+#: server_status.php:126
+msgid "The status of failsafe replication (not yet implemented)."
+msgstr ""
+
+#: server_status.php:127
+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 ""
+
+#: server_status.php:128
+msgid "The number of joins that used a range search on a reference table."
+msgstr ""
+
+#: server_status.php:129
+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 ""
+
+#: server_status.php:130
+msgid ""
+"The number of joins that used ranges on the first table. (It's normally not "
+"critical even if this is big.)"
+msgstr ""
+
+#: server_status.php:131
+msgid "The number of joins that did a full scan of the first table."
+msgstr ""
+
+#: server_status.php:132
+msgid "The number of temporary tables currently open by the slave SQL thread."
+msgstr ""
+
+#: server_status.php:133
+msgid ""
+"Total (since startup) number of times the replication slave SQL thread has "
+"retried transactions."
+msgstr ""
+
+#: server_status.php:134
+msgid "This is ON if this server is a slave that is connected to a master."
+msgstr ""
+
+#: server_status.php:135
+msgid ""
+"The number of threads that have taken more than slow_launch_time seconds to "
+"create."
+msgstr ""
+
+#: server_status.php:136
+msgid ""
+"The number of queries that have taken more than long_query_time seconds."
+msgstr ""
+
+#: server_status.php:137
+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 ""
+
+#: server_status.php:138
+msgid "The number of sorts that were done with ranges."
+msgstr ""
+
+#: server_status.php:139
+#, fuzzy
+msgid "The number of sorted rows."
+msgstr "Įkeltų eilučių skaičius"
+
+#: server_status.php:140
+msgid "The number of sorts that were done by scanning the table."
+msgstr ""
+
+#: server_status.php:141
+msgid "The number of times that a table lock was acquired immediately."
+msgstr ""
+
+#: server_status.php:142
+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 "
+"should first optimize your queries, and then either split your table or "
+"tables or use replication."
+msgstr ""
+
+#: server_status.php:143
+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 ""
+
+#: server_status.php:144
+msgid "The number of currently open connections."
+msgstr ""
+
+#: server_status.php:145
+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 "
+"doesn't give a notable performance improvement if you have a good thread "
+"implementation.)"
+msgstr ""
+
+#: server_status.php:146
+msgid "The number of threads that are not sleeping."
+msgstr ""
+
+#: server_status.php:157
msgid "Runtime Information"
msgstr "Veikimo informacija"
-#: server_status.php:250
+#: server_status.php:361
msgid "Handler"
msgstr ""
-#: server_status.php:251
+#: server_status.php:362
msgid "Query cache"
msgstr "Užklausų saugykla"
-#: server_status.php:252
+#: server_status.php:363
msgid "Threads"
msgstr ""
-#: server_status.php:254
+#: server_status.php:365
msgid "Temporary data"
msgstr ""
-#: server_status.php:255
+#: server_status.php:366
#, fuzzy
msgid "Delayed inserts"
msgstr "Naudoti užlaikytus įterpimus"
-#: server_status.php:256
+#: server_status.php:367
#, fuzzy
msgid "Key cache"
msgstr "Užklausų saugykla"
-#: server_status.php:257
+#: server_status.php:368
msgid "Joins"
msgstr ""
-#: server_status.php:259
+#: server_status.php:370
msgid "Sorting"
msgstr "Rūšiavimas"
-#: server_status.php:261
+#: server_status.php:372
msgid "Transaction coordinator"
msgstr ""
-#: server_status.php:271
+#: server_status.php:382
msgid "Flush (close) all tables"
msgstr ""
-#: server_status.php:273
+#: server_status.php:384
#, fuzzy
msgid "Show open tables"
msgstr "Rodyti lentelės"
-#: server_status.php:278
+#: server_status.php:389
msgid "Show slave hosts"
msgstr ""
-#: server_status.php:284
+#: server_status.php:395
msgid "Show slave status"
msgstr ""
-#: server_status.php:289
+#: server_status.php:400
msgid "Flush query cache"
msgstr ""
-#: server_status.php:294
+#: server_status.php:405
msgid "Show processes"
msgstr "Rodyti procesus"
-#: server_status.php:344
+#: server_status.php:455
#, fuzzy
#| msgid "Reset"
msgctxt "for Show status"
msgid "Reset"
msgstr "Atstatyti į pradinę būseną"
-#: server_status.php:350
+#: server_status.php:461
#, php-format
msgid "This MySQL server has been running for %s. It started up on %s."
msgstr "MySQL serverio veikimo trukmė: %s. Serveris pradėjo veikti: %s."
-#: server_status.php:360
+#: server_status.php:471
msgid ""
"This MySQL server works as master and slave in replication"
"b> process."
msgstr ""
-#: server_status.php:362
+#: server_status.php:473
msgid "This MySQL server works as master in replication process."
msgstr ""
-#: server_status.php:364
+#: server_status.php:475
msgid "This MySQL server works as slave in replication process."
msgstr ""
-#: server_status.php:366
+#: server_status.php:477
msgid ""
"For further information about replication status on the server, please visit "
"the replication section."
msgstr ""
-#: server_status.php:383
+#: server_status.php:494
msgid ""
"Server traffic: These tables show the network traffic statistics of "
"this MySQL server since its startup."
@@ -5790,46 +5801,46 @@ msgstr ""
"Serverio apkrovimas: šiose lentelėse saugoma statistinė informacija "
"apie MySQL serverio apkrovimą nuo paleidimo dienos."
-#: server_status.php:388
+#: server_status.php:499
msgid "Traffic"
msgstr "Apkrovimas"
-#: server_status.php:388
+#: server_status.php:499
msgid ""
"On a busy server, the byte counters may overrun, so those statistics as "
"reported by the MySQL server may be incorrect."
msgstr ""
-#: server_status.php:389 server_status.php:434 server_status.php:497
-#: server_status.php:555
+#: server_status.php:500 server_status.php:545 server_status.php:608
+#: server_status.php:666
msgid "per hour"
msgstr "per valandą"
-#: server_status.php:394
+#: server_status.php:505
msgid "Received"
msgstr "Gauta"
-#: server_status.php:404
+#: server_status.php:515
msgid "Sent"
msgstr "Siųsta"
-#: server_status.php:433
+#: server_status.php:544
msgid "Connections"
msgstr "Prisijungimai"
-#: server_status.php:440
+#: server_status.php:551
msgid "max. concurrent connections"
msgstr ""
-#: server_status.php:447
+#: server_status.php:558
msgid "Failed attempts"
msgstr "Nepavykę bandymai"
-#: server_status.php:461
+#: server_status.php:572
msgid "Aborted"
msgstr "Nutraukta"
-#: server_status.php:490
+#: server_status.php:601
#, php-format
msgid ""
"Query statistics: Since its startup, %s queries have been sent to the "
@@ -5838,19 +5849,19 @@ msgstr ""
"Užklausų statistika: nuo paleidimo dienos buvo išsiųsta %s užklausų į "
"serverį."
-#: server_status.php:498
+#: server_status.php:609
msgid "per minute"
msgstr "per minutę"
-#: server_status.php:499
+#: server_status.php:610
msgid "per second"
msgstr "per sekundę"
-#: server_status.php:554
+#: server_status.php:665
msgid "Query type"
msgstr "Užklausos tipas"
-#: server_status.php:721
+#: server_status.php:832
msgid "Replication status"
msgstr "Replikacijos būsena"
diff --git a/po/lv.po b/po/lv.po
index 6af3dd0f6..1b3544c71 100755
--- a/po/lv.po
+++ b/po/lv.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-06-04 16:07-0400\n"
+"POT-Creation-Date: 2010-06-08 12:32-0400\n"
"PO-Revision-Date: 2010-03-12 09:16+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: latvian \n"
@@ -14,11 +14,11 @@ msgstr ""
"X-Generator: Translate Toolkit 1.5.3\n"
#: browse_foreigners.php:38 browse_foreigners.php:59
-#: libraries/display_tbl.lib.php:417 server_privileges.php:1475
+#: libraries/display_tbl.lib.php:417 server_privileges.php:1514
msgid "Show all"
msgstr "Rādīt visu"
-#: browse_foreigners.php:82 libraries/common.lib.php:2304
+#: browse_foreigners.php:82 libraries/common.lib.php:2313
#: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:394
#: libraries/export/pdf.php:147 pdf_schema.php:283 pdf_schema.php:1123
#: pdf_schema.php:1139
@@ -37,8 +37,8 @@ msgstr ""
#: browse_foreigners.php:150 db_structure.php:79 db_structure.php:80
#: db_structure.php:91 db_structure.php:93 db_structure.php:104
-#: db_structure.php:106 libraries/common.lib.php:2822
-#: libraries/common.lib.php:2829 libraries/db_links.inc.php:75
+#: db_structure.php:106 libraries/common.lib.php:2831
+#: libraries/common.lib.php:2838 libraries/db_links.inc.php:75
#: libraries/tbl_links.inc.php:63
msgid "Search"
msgstr "Meklēt"
@@ -48,7 +48,7 @@ msgstr "Meklēt"
#: db_structure.php:567 js/messages.php:48 libraries/Config.class.php:1046
#: libraries/Theme_Manager.class.php:311
#: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719
-#: libraries/common.lib.php:1333 libraries/common.lib.php:2279
+#: libraries/common.lib.php:1335 libraries/common.lib.php:2288
#: libraries/display_change_password.lib.php:82
#: libraries/display_create_table.lib.php:63
#: libraries/display_export.lib.php:275 libraries/display_import.lib.php:276
@@ -59,9 +59,9 @@ msgstr "Meklēt"
#: libraries/sql_query_form.lib.php:552 libraries/tbl_properties.inc.php:782
#: main.php:128 navigation.php:237 pdf_pages.php:292 pdf_pages.php:328
#: pdf_pages.php:530 pmd_pdf.php:116 server_binlog.php:142
-#: server_privileges.php:625 server_privileges.php:1585
-#: server_privileges.php:1932 server_privileges.php:1979
-#: server_privileges.php:2018 server_replication.php:235
+#: server_privileges.php:664 server_privileges.php:1624
+#: server_privileges.php:1971 server_privileges.php:2018
+#: server_privileges.php:2057 server_replication.php:235
#: server_replication.php:318 server_replication.php:341
#: server_synchronize.php:1209 tbl_change.php:330 tbl_change.php:1174
#: tbl_change.php:1211 tbl_indexes.php:254 tbl_operations.php:265
@@ -79,7 +79,7 @@ msgstr "Atslēgas nosaukums"
#: browse_foreigners.php:169 browse_foreigners.php:171
#: server_collations.php:55 server_collations.php:67 server_engines.php:59
-#: server_status.php:628
+#: server_status.php:739
msgid "Description"
msgstr "Apraksts"
@@ -120,7 +120,7 @@ msgstr "Kolonnu nosaukumi"
#: libraries/db_structure.lib.php:60 libraries/export/htmlword.php:245
#: libraries/export/latex.php:360 libraries/export/odt.php:297
#: libraries/export/texytext.php:234 libraries/tbl_properties.inc.php:100
-#: pdf_schema.php:1263 pdf_schema.php:1284 server_privileges.php:2031
+#: pdf_schema.php:1263 pdf_schema.php:1284 server_privileges.php:2070
#: tbl_change.php:287 tbl_change.php:314 tbl_printview.php:143
#: tbl_printview.php:313 tbl_select.php:136 tbl_structure.php:178
#: tbl_structure.php:659 tbl_tracking.php:274 tbl_tracking.php:321
@@ -164,9 +164,9 @@ msgstr "Komentāri"
#: libraries/Index.class.php:386 libraries/export/htmlword.php:322
#: libraries/export/latex.php:430 libraries/export/odt.php:368
#: libraries/export/texytext.php:311 libraries/mult_submits.inc.php:263
-#: pdf_schema.php:1344 server_privileges.php:1529 server_privileges.php:1540
-#: server_privileges.php:1850 server_privileges.php:1855
-#: server_privileges.php:2148 sql.php:132 sql.php:194 tbl_printview.php:229
+#: pdf_schema.php:1344 server_privileges.php:1568 server_privileges.php:1579
+#: server_privileges.php:1889 server_privileges.php:1894
+#: server_privileges.php:2187 sql.php:132 sql.php:194 tbl_printview.php:229
#: tbl_structure.php:350 tbl_tracking.php:337 tbl_tracking.php:342
msgid "No"
msgstr "Nē"
@@ -180,9 +180,9 @@ msgstr "Nē"
#: libraries/mult_submits.inc.php:101 libraries/mult_submits.inc.php:106
#: libraries/mult_submits.inc.php:111 libraries/mult_submits.inc.php:262
#: libraries/mult_submits.inc.php:273 pdf_schema.php:1344
-#: server_databases.php:64 server_privileges.php:1526
-#: server_privileges.php:1540 server_privileges.php:1850
-#: server_privileges.php:1853 server_privileges.php:2148 sql.php:193
+#: server_databases.php:64 server_privileges.php:1565
+#: server_privileges.php:1579 server_privileges.php:1889
+#: server_privileges.php:1892 server_privileges.php:2187 sql.php:193
#: tbl_printview.php:229 tbl_structure.php:40 tbl_structure.php:350
#: tbl_tracking.php:335 tbl_tracking.php:340
msgid "Yes"
@@ -279,7 +279,7 @@ msgstr "Pārslēgties uz nokopēto datubāzi"
msgid "BLOB Repository"
msgstr ""
-#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1350
+#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1352
#: libraries/server_links.inc.php:49 server_processlist.php:59
#: tbl_tracking.php:596 test/theme.php:101
msgid "Status"
@@ -343,8 +343,8 @@ msgstr "Labot PDF lapas"
#: db_printview.php:104 db_tracking.php:72 db_tracking.php:157
#: libraries/db_structure.lib.php:46 libraries/export/xml.php:328
-#: libraries/header.inc.php:126 pdf_pages.php:424 server_privileges.php:1626
-#: server_privileges.php:1682 server_privileges.php:1946
+#: libraries/header.inc.php:126 pdf_pages.php:424 server_privileges.php:1665
+#: server_privileges.php:1721 server_privileges.php:1985
#: server_synchronize.php:423 server_synchronize.php:866 tbl_tracking.php:592
#: test/theme.php:75
msgid "Table"
@@ -445,7 +445,7 @@ msgstr "Dzēst"
#: db_qbe.php:370 db_qbe.php:451 db_qbe.php:522 db_qbe.php:553
#: libraries/display_import.lib.php:166 libraries/tbl_properties.inc.php:779
-#: server_privileges.php:258 tbl_change.php:1031 tbl_indexes.php:250
+#: server_privileges.php:297 tbl_change.php:1031 tbl_indexes.php:250
#: tbl_select.php:288
msgid "Or"
msgstr "Vai"
@@ -479,7 +479,7 @@ msgstr "Lietot tabulas"
msgid "SQL query on database %s:"
msgstr "SQL vaicājums uz datubāzes %s:"
-#: db_qbe.php:934 libraries/common.lib.php:1223
+#: db_qbe.php:934 libraries/common.lib.php:1225
msgid "Submit Query"
msgstr "Izpildīt vaicājumu"
@@ -518,7 +518,7 @@ msgstr "%s rezultāti tabulā %s"
#: db_search.php:267 db_structure.php:77 db_structure.php:78
#: db_structure.php:90 db_structure.php:92 db_structure.php:103
-#: db_structure.php:105 libraries/common.lib.php:2824
+#: db_structure.php:105 libraries/common.lib.php:2833
#: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50
#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:467
msgid "Browse"
@@ -565,26 +565,26 @@ msgstr "Tabulā(s):"
#: db_structure.php:81 db_structure.php:82 db_structure.php:94
#: db_structure.php:95 db_structure.php:107 db_structure.php:108
-#: libraries/common.lib.php:2823 libraries/sql_query_form.lib.php:334
+#: libraries/common.lib.php:2832 libraries/sql_query_form.lib.php:334
#: libraries/sql_query_form.lib.php:337 libraries/tbl_links.inc.php:76
msgid "Insert"
msgstr "Pievienot"
#: db_structure.php:83 db_structure.php:96 db_structure.php:109
-#: libraries/common.lib.php:2820 libraries/common.lib.php:2827
+#: libraries/common.lib.php:2829 libraries/common.lib.php:2836
#: libraries/db_links.inc.php:63 libraries/export/htmlword.php:23
#: libraries/export/latex.php:33 libraries/export/latex.php:337
#: libraries/export/odt.php:32 libraries/export/sql.php:60
#: libraries/export/texytext.php:23 libraries/import.lib.php:1104
#: libraries/tbl_links.inc.php:56 pmd_general.php:134
-#: server_privileges.php:554 server_replication.php:315 tbl_tracking.php:269
+#: server_privileges.php:593 server_replication.php:315 tbl_tracking.php:269
msgid "Structure"
msgstr "Struktūra"
#: db_structure.php:84 db_structure.php:85 db_structure.php:97
#: db_structure.php:98 db_structure.php:110 db_structure.php:111
#: db_structure.php:545 db_structure.php:546 db_tracking.php:91
-#: libraries/Index.class.php:483 libraries/common.lib.php:1654
+#: libraries/Index.class.php:483 libraries/common.lib.php:1656
#: libraries/db_links.inc.php:100 libraries/mult_submits.inc.php:36
#: libraries/mult_submits.inc.php:73 libraries/tbl_links.inc.php:127
#: server_databases.php:352 tbl_structure.php:27 tbl_structure.php:151
@@ -594,7 +594,7 @@ msgstr "Likvidēt"
#: db_structure.php:86 db_structure.php:87 db_structure.php:99
#: db_structure.php:100 db_structure.php:112 db_structure.php:113
-#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1653
+#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1655
#: libraries/mult_submits.inc.php:39 libraries/tbl_links.inc.php:105
msgid "Empty"
msgstr "Iztukšot"
@@ -636,7 +636,7 @@ msgstr ""
#: db_structure.php:485 libraries/db_structure.lib.php:49
#: libraries/server_links.inc.php:70 server_replication.php:33
-#: server_replication.php:164 server_status.php:258
+#: server_replication.php:164 server_status.php:369
#, fuzzy
msgid "Replication"
msgstr "Relācijas"
@@ -653,20 +653,20 @@ msgstr ""
#: db_structure.php:524 db_structure.php:541 db_structure.php:542
#: libraries/display_tbl.lib.php:2081 libraries/display_tbl.lib.php:2086
#: libraries/mult_submits.inc.php:16 server_databases.php:346
-#: server_databases.php:351 server_privileges.php:1557 tbl_structure.php:455
+#: server_databases.php:351 server_privileges.php:1596 tbl_structure.php:455
#: tbl_structure.php:464
msgid "With selected:"
msgstr "Ar iezīmēto:"
#: db_structure.php:527 libraries/display_tbl.lib.php:2076
-#: server_databases.php:348 server_privileges.php:530
-#: server_privileges.php:1560 tbl_structure.php:458
+#: server_databases.php:348 server_privileges.php:569
+#: server_privileges.php:1599 tbl_structure.php:458
msgid "Check All"
msgstr "Iezīmēt visu"
#: db_structure.php:531 libraries/display_tbl.lib.php:2077
#: libraries/replication_gui.lib.php:33 server_databases.php:350
-#: server_privileges.php:533 server_privileges.php:1564 tbl_structure.php:462
+#: server_privileges.php:572 server_privileges.php:1603 tbl_structure.php:462
msgid "Uncheck All"
msgstr "Neiezīmēt neko"
@@ -704,7 +704,7 @@ msgstr "Analizēt tabulu"
#: libraries/display_export.lib.php:83 libraries/display_tbl.lib.php:2094
#: libraries/display_tbl.lib.php:2225 libraries/mult_submits.inc.php:62
#: libraries/server_links.inc.php:84 libraries/tbl_links.inc.php:82
-#: pmd_pdf.php:84 pmd_pdf.php:109 server_privileges.php:1341
+#: pmd_pdf.php:84 pmd_pdf.php:109 server_privileges.php:1380
#: setup/frames/menu.inc.php:22 tbl_row_action.php:59
msgid "Export"
msgstr "Eksports"
@@ -722,8 +722,8 @@ msgstr ""
#: libraries/export/sql.php:342 libraries/export/texytext.php:84
#: libraries/export/xml.php:255 libraries/header.inc.php:106
#: libraries/header_printview.inc.php:58 server_databases.php:169
-#: server_privileges.php:1621 server_privileges.php:1682
-#: server_privileges.php:1940 server_processlist.php:56
+#: server_privileges.php:1660 server_privileges.php:1721
+#: server_privileges.php:1979 server_processlist.php:56
#: server_synchronize.php:1179 server_synchronize.php:1183
#: tbl_tracking.php:591 test/theme.php:65
msgid "Database"
@@ -744,8 +744,8 @@ msgstr ""
#: db_tracking.php:77 libraries/Index.class.php:440
#: libraries/db_structure.lib.php:53 server_databases.php:203
-#: server_privileges.php:1503 server_privileges.php:1686
-#: server_privileges.php:2034 tbl_structure.php:187
+#: server_privileges.php:1542 server_privileges.php:1725
+#: server_privileges.php:2073 tbl_structure.php:187
msgid "Action"
msgstr "Darbība"
@@ -939,11 +939,11 @@ msgstr "Hosts nav norādīts!"
msgid "The user name is empty!"
msgstr "Lietotāja vārds nav norādīts!"
-#: js/messages.php:44 server_privileges.php:1197 user_password.php:70
+#: js/messages.php:44 server_privileges.php:1236 user_password.php:70
msgid "The password is empty!"
msgstr "Parole nav norādīta!"
-#: js/messages.php:45 server_privileges.php:1195 user_password.php:73
+#: js/messages.php:45 server_privileges.php:1234 user_password.php:73
msgid "The passwords aren't the same!"
msgstr "Paroles nesakrīt!"
@@ -1024,8 +1024,8 @@ msgid "Prev"
msgstr "Iepriekšējie"
#. l10n: Display text for next month link in calendar
-#: js/messages.php:77 libraries/common.lib.php:2344
-#: libraries/common.lib.php:2347 libraries/display_tbl.lib.php:338
+#: js/messages.php:77 libraries/common.lib.php:2353
+#: libraries/common.lib.php:2356 libraries/display_tbl.lib.php:338
#: server_binlog.php:205 server_binlog.php:207 tbl_printview.php:424
#: tbl_structure.php:801
msgid "Next"
@@ -1101,27 +1101,27 @@ msgid "December"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:97 libraries/common.lib.php:1555
+#: js/messages.php:97 libraries/common.lib.php:1557
msgid "Jan"
msgstr "Jan"
#. l10n: Short month name
-#: js/messages.php:99 libraries/common.lib.php:1557
+#: js/messages.php:99 libraries/common.lib.php:1559
msgid "Feb"
msgstr "Feb"
#. l10n: Short month name
-#: js/messages.php:101 libraries/common.lib.php:1559
+#: js/messages.php:101 libraries/common.lib.php:1561
msgid "Mar"
msgstr "Mar"
#. l10n: Short month name
-#: js/messages.php:103 libraries/common.lib.php:1561
+#: js/messages.php:103 libraries/common.lib.php:1563
msgid "Apr"
msgstr "Apr"
#. l10n: Short month name
-#: js/messages.php:105 libraries/common.lib.php:1563
+#: js/messages.php:105 libraries/common.lib.php:1565
#, fuzzy
#| msgid "May"
msgctxt "Short month name"
@@ -1129,37 +1129,37 @@ msgid "May"
msgstr "Mai"
#. l10n: Short month name
-#: js/messages.php:107 libraries/common.lib.php:1565
+#: js/messages.php:107 libraries/common.lib.php:1567
msgid "Jun"
msgstr "Jūn"
#. l10n: Short month name
-#: js/messages.php:109 libraries/common.lib.php:1567
+#: js/messages.php:109 libraries/common.lib.php:1569
msgid "Jul"
msgstr "Jūl"
#. l10n: Short month name
-#: js/messages.php:111 libraries/common.lib.php:1569
+#: js/messages.php:111 libraries/common.lib.php:1571
msgid "Aug"
msgstr "Aug"
#. l10n: Short month name
-#: js/messages.php:113 libraries/common.lib.php:1571
+#: js/messages.php:113 libraries/common.lib.php:1573
msgid "Sep"
msgstr "Sep"
#. l10n: Short month name
-#: js/messages.php:115 libraries/common.lib.php:1573
+#: js/messages.php:115 libraries/common.lib.php:1575
msgid "Oct"
msgstr "Okt"
#. l10n: Short month name
-#: js/messages.php:117 libraries/common.lib.php:1575
+#: js/messages.php:117 libraries/common.lib.php:1577
msgid "Nov"
msgstr "Nov"
#. l10n: Short month name
-#: js/messages.php:119 libraries/common.lib.php:1577
+#: js/messages.php:119 libraries/common.lib.php:1579
msgid "Dec"
msgstr "Dec"
@@ -1200,37 +1200,37 @@ msgid "Saturday"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:132 libraries/common.lib.php:1580
+#: js/messages.php:132 libraries/common.lib.php:1582
msgid "Sun"
msgstr "Sv"
#. l10n: Short week day name
-#: js/messages.php:134 libraries/common.lib.php:1582
+#: js/messages.php:134 libraries/common.lib.php:1584
msgid "Mon"
msgstr "P"
#. l10n: Short week day name
-#: js/messages.php:136 libraries/common.lib.php:1584
+#: js/messages.php:136 libraries/common.lib.php:1586
msgid "Tue"
msgstr "O"
#. l10n: Short week day name
-#: js/messages.php:138 libraries/common.lib.php:1586
+#: js/messages.php:138 libraries/common.lib.php:1588
msgid "Wed"
msgstr "T"
#. l10n: Short week day name
-#: js/messages.php:140 libraries/common.lib.php:1588
+#: js/messages.php:140 libraries/common.lib.php:1590
msgid "Thu"
msgstr "C"
#. l10n: Short week day name
-#: js/messages.php:142 libraries/common.lib.php:1590
+#: js/messages.php:142 libraries/common.lib.php:1592
msgid "Fri"
msgstr "Pk"
#. l10n: Short week day name
-#: js/messages.php:144 libraries/common.lib.php:1592
+#: js/messages.php:144 libraries/common.lib.php:1594
msgid "Sat"
msgstr "S"
@@ -1375,7 +1375,7 @@ msgid "Comment"
msgstr "Komentāri"
#: libraries/Index.class.php:466 libraries/common.lib.php:616
-#: libraries/common.lib.php:1199 libraries/display_tbl.lib.php:1117
+#: libraries/common.lib.php:1201 libraries/display_tbl.lib.php:1117
#: libraries/import.lib.php:1087 libraries/import.lib.php:1111
#: pdf_pages.php:285 setup/frames/index.inc.php:124
#: setup/lib/messages.inc.php:352 tbl_row_action.php:69
@@ -1399,7 +1399,7 @@ msgid ""
msgstr ""
#: libraries/List_Database.class.php:431 libraries/server_links.inc.php:41
-#: server_databases.php:88 server_privileges.php:1621
+#: server_databases.php:88 server_privileges.php:1660
#: setup/lib/messages.inc.php:110 test/theme.php:93
msgid "Databases"
msgstr "Datubāzes"
@@ -1731,7 +1731,7 @@ msgid "Documentation"
msgstr "Dokumentācija"
#: libraries/common.lib.php:595 libraries/header_printview.inc.php:61
-#: server_processlist.php:60 server_status.php:247
+#: server_processlist.php:60 server_status.php:358
msgid "SQL query"
msgstr "SQL vaicājums"
@@ -1747,128 +1747,128 @@ msgstr "Izskaidrot SQL"
msgid "Skip Explain SQL"
msgstr "Neizskaidrot SQL"
-#: libraries/common.lib.php:1212
+#: libraries/common.lib.php:1214
msgid "Without PHP Code"
msgstr "Bez PHP koda"
-#: libraries/common.lib.php:1215 setup/lib/messages.inc.php:355
+#: libraries/common.lib.php:1217 setup/lib/messages.inc.php:355
msgid "Create PHP Code"
msgstr "Izveidot PHP kodu"
-#: libraries/common.lib.php:1233 server_status.php:341
+#: libraries/common.lib.php:1235 server_status.php:452
#: setup/lib/messages.inc.php:354
msgid "Refresh"
msgstr "Atjaunot"
-#: libraries/common.lib.php:1242
+#: libraries/common.lib.php:1244
msgid "Skip Validate SQL"
msgstr "Nepārbaudīt SQL"
-#: libraries/common.lib.php:1245 setup/lib/messages.inc.php:356 sql.php:518
+#: libraries/common.lib.php:1247 setup/lib/messages.inc.php:356 sql.php:518
msgid "Validate SQL"
msgstr "Pārbaudīt SQL"
-#: libraries/common.lib.php:1276
+#: libraries/common.lib.php:1278
msgid "Inline edit of this query"
msgstr ""
-#: libraries/common.lib.php:1278
+#: libraries/common.lib.php:1280
msgid "Inline"
msgstr ""
-#: libraries/common.lib.php:1332 libraries/common.lib.php:1347
+#: libraries/common.lib.php:1334 libraries/common.lib.php:1349
msgid "Profiling"
msgstr ""
-#: libraries/common.lib.php:1351 libraries/tbl_triggers.lib.php:28
+#: libraries/common.lib.php:1353 libraries/tbl_triggers.lib.php:28
#: server_processlist.php:58
msgid "Time"
msgstr "Laiks"
#. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "B"
msgstr "baiti"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "KiB"
msgstr "KB"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "MiB"
msgstr "MB"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "GiB"
msgstr "GB"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "TiB"
msgstr "TB"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "PiB"
msgstr "PB"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "EiB"
msgstr "EB"
#. l10n: Thousands separator
-#: libraries/common.lib.php:1417
+#: libraries/common.lib.php:1419
msgid ","
msgstr " "
#. l10n: Decimal separator
-#: libraries/common.lib.php:1419
+#: libraries/common.lib.php:1421
msgid "."
msgstr "."
#. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string
-#: libraries/common.lib.php:1596
+#: libraries/common.lib.php:1598
#: libraries/transformations/text_plain__dateformat.inc.php:34
msgid "%B %d, %Y at %I:%M %p"
msgstr "%d.%m.%Y %H:%M"
-#: libraries/common.lib.php:1898
+#: libraries/common.lib.php:1907
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "%s dienas, %s stundas, %s minūtes un %s sekundes"
-#: libraries/common.lib.php:2313 libraries/common.lib.php:2316
-#: libraries/display_tbl.lib.php:290 server_status.php:608
+#: libraries/common.lib.php:2322 libraries/common.lib.php:2325
+#: libraries/display_tbl.lib.php:290 server_status.php:719
msgid "Begin"
msgstr "Sākums"
-#: libraries/common.lib.php:2314 libraries/common.lib.php:2317
+#: libraries/common.lib.php:2323 libraries/common.lib.php:2326
#: libraries/display_tbl.lib.php:291 server_binlog.php:168
#: server_binlog.php:170
msgid "Previous"
msgstr "Iepriekšējie"
-#: libraries/common.lib.php:2345 libraries/common.lib.php:2348
+#: libraries/common.lib.php:2354 libraries/common.lib.php:2357
#: libraries/display_tbl.lib.php:353
msgid "End"
msgstr "Beigas"
-#: libraries/common.lib.php:2421
+#: libraries/common.lib.php:2430
#, php-format
msgid "Jump to database "%s"."
msgstr "pāriet pie datubāzes "%s"."
-#: libraries/common.lib.php:2441
+#: libraries/common.lib.php:2450
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr ""
-#: libraries/common.lib.php:2821 libraries/common.lib.php:2828
+#: libraries/common.lib.php:2830 libraries/common.lib.php:2837
#: libraries/db_links.inc.php:68 libraries/export/sql.php:25
#: libraries/import/sql.php:18 libraries/server_links.inc.php:45
#: libraries/tbl_links.inc.php:60 querywindow.php:99 test/theme.php:97
msgid "SQL"
msgstr "SQL"
-#: libraries/common.lib.php:2830 libraries/db_links.inc.php:104
+#: libraries/common.lib.php:2839 libraries/db_links.inc.php:104
#: libraries/tbl_links.inc.php:95 libraries/tbl_links.inc.php:117
#: view_operations.php:89
msgid "Operations"
@@ -1924,8 +1924,8 @@ msgid "Import"
msgstr "Eksports"
#: libraries/db_links.inc.php:111 libraries/server_links.inc.php:66
-#: server_privileges.php:72 server_privileges.php:1683
-#: server_privileges.php:2032 test/theme.php:117
+#: server_privileges.php:111 server_privileges.php:1722
+#: server_privileges.php:2071 test/theme.php:117
msgid "Privileges"
msgstr "Privilēģijas"
@@ -1971,22 +1971,22 @@ msgid "Change password"
msgstr "Mainīt paroli"
#: libraries/display_change_password.lib.php:35
-#: libraries/replication_gui.lib.php:345 server_privileges.php:768
+#: libraries/replication_gui.lib.php:345 server_privileges.php:807
msgid "No Password"
msgstr "Nav paroles"
#: libraries/display_change_password.lib.php:41
#: libraries/replication_gui.lib.php:59 libraries/replication_gui.lib.php:60
#: libraries/replication_gui.lib.php:335 libraries/replication_gui.lib.php:339
-#: libraries/replication_gui.lib.php:349 server_privileges.php:757
-#: server_privileges.php:761 server_privileges.php:772
-#: server_privileges.php:1499 server_synchronize.php:1175
+#: libraries/replication_gui.lib.php:349 server_privileges.php:796
+#: server_privileges.php:800 server_privileges.php:811
+#: server_privileges.php:1538 server_synchronize.php:1175
msgid "Password"
msgstr "Parole"
#: libraries/display_change_password.lib.php:46
#: libraries/replication_gui.lib.php:353 libraries/replication_gui.lib.php:356
-#: server_privileges.php:776 server_privileges.php:779
+#: server_privileges.php:815 server_privileges.php:818
msgid "Re-type"
msgstr "Atkārtojiet"
@@ -2001,12 +2001,12 @@ msgid "MySQL 4.0 compatible"
msgstr "MySQL 4.0 savietojams"
#: libraries/display_change_password.lib.php:72
-#: libraries/replication_gui.lib.php:360 server_privileges.php:783
+#: libraries/replication_gui.lib.php:360 server_privileges.php:822
msgid "Generate Password"
msgstr ""
#: libraries/display_change_password.lib.php:75
-#: libraries/replication_gui.lib.php:363 server_privileges.php:786
+#: libraries/replication_gui.lib.php:363 server_privileges.php:825
#, fuzzy
msgid "Generate"
msgstr "Uzģenerēja"
@@ -2020,8 +2020,8 @@ msgstr "Izveidot jaunu datubāzi"
msgid "Create"
msgstr "Izveidot"
-#: libraries/display_create_database.lib.php:40 server_privileges.php:74
-#: server_privileges.php:1388 server_replication.php:35
+#: libraries/display_create_database.lib.php:40 server_privileges.php:113
+#: server_privileges.php:1427 server_replication.php:35
msgid "No Privileges"
msgstr "Nav privilēģiju"
@@ -2110,7 +2110,7 @@ msgstr "Kompresija"
#: libraries/display_export.lib.php:240 libraries/display_import.lib.php:197
#: libraries/display_import.lib.php:210 libraries/display_tbl.lib.php:530
#: libraries/export/sql.php:868 libraries/tbl_properties.inc.php:575
-#: server_privileges.php:1836 server_processlist.php:75
+#: server_privileges.php:1875 server_processlist.php:75
msgid "None"
msgstr "Nav"
@@ -2431,7 +2431,7 @@ msgstr ""
msgid "Buffer Pool"
msgstr ""
-#: libraries/engines/innodb.lib.php:145 server_status.php:306
+#: libraries/engines/innodb.lib.php:145 server_status.php:417
msgid "InnoDB Status"
msgstr "InnoDB statuss"
@@ -2440,8 +2440,8 @@ msgid "Buffer Pool Usage"
msgstr ""
#: libraries/engines/innodb.lib.php:194 server_databases.php:137
-#: server_databases.php:305 server_status.php:414 server_status.php:475
-#: server_status.php:496 tbl_printview.php:351 tbl_structure.php:696
+#: server_databases.php:305 server_status.php:525 server_status.php:586
+#: server_status.php:607 tbl_printview.php:351 tbl_structure.php:696
msgid "Total"
msgstr "Kopā"
@@ -2759,7 +2759,7 @@ msgstr ""
#: libraries/export/latex.php:201 libraries/export/odt.php:48
#: libraries/export/sql.php:106 libraries/export/sql.php:868
#: libraries/export/texytext.php:27 server_databases.php:127
-#: server_privileges.php:537 server_replication.php:316 tbl_printview.php:317
+#: server_privileges.php:576 server_replication.php:316 tbl_printview.php:317
#: tbl_structure.php:665
msgid "Data"
msgstr "Dati"
@@ -2809,9 +2809,9 @@ msgstr "MIME tips"
#: libraries/export/xml.php:102 libraries/header_printview.inc.php:57
#: libraries/replication_gui.lib.php:63 libraries/replication_gui.lib.php:174
#: libraries/replication_gui.lib.php:269 libraries/replication_gui.lib.php:272
-#: libraries/replication_gui.lib.php:329 server_privileges.php:692
-#: server_privileges.php:695 server_privileges.php:751
-#: server_privileges.php:1498 server_privileges.php:2030
+#: libraries/replication_gui.lib.php:329 server_privileges.php:731
+#: server_privileges.php:734 server_privileges.php:790
+#: server_privileges.php:1537 server_privileges.php:2069
#: server_processlist.php:55 server_synchronize.php:1159
msgid "Host"
msgstr "Hosts"
@@ -3169,753 +3169,6 @@ msgstr "Nav"
msgid "Convert to Kana"
msgstr ""
-#. l10n: Text direction, use either ltr or rtl
-#: libraries/messages.inc.php:19
-msgid "ltr"
-msgstr "ltr"
-
-#: libraries/messages.inc.php:21
-msgid "Content of table __TABLE__"
-msgstr "Tabulas __TABLE__ saturs"
-
-#: libraries/messages.inc.php:22
-msgid "(continued)"
-msgstr "(turpinājums)"
-
-#: libraries/messages.inc.php:23
-msgid "Structure of table __TABLE__"
-msgstr "Tabulas __TABLE__ struktūra"
-
-#: libraries/messages.inc.php:25 server_privileges.php:227
-msgid "Includes all privileges except GRANT."
-msgstr "Iekļauj visas privilēģijas, izņemot GRANT."
-
-#: libraries/messages.inc.php:26 server_privileges.php:153
-#: server_privileges.php:476
-msgid "Allows altering the structure of existing tables."
-msgstr "Ļauj mainīt esošo tabulu struktūru."
-
-#: libraries/messages.inc.php:27 server_privileges.php:169
-#: server_privileges.php:482
-#, fuzzy
-msgid "Allows altering and dropping stored routines."
-msgstr "Ļauj veidot un dzēst indeksus."
-
-#: libraries/messages.inc.php:28 server_privileges.php:145
-#: server_privileges.php:475
-msgid "Allows creating new databases and tables."
-msgstr "Ļauj veidot jaunas datubāzes un tabulas."
-
-#: libraries/messages.inc.php:29 server_privileges.php:168
-#: server_privileges.php:481
-#, fuzzy
-msgid "Allows creating stored routines."
-msgstr "Ļauj veidot jaunas tabulas."
-
-#: libraries/messages.inc.php:30 server_privileges.php:475
-msgid "Allows creating new tables."
-msgstr "Ļauj veidot jaunas tabulas."
-
-#: libraries/messages.inc.php:31 server_privileges.php:156
-#: server_privileges.php:479
-msgid "Allows creating temporary tables."
-msgstr "Ļauj veidot pagaidu tabulas."
-
-#: libraries/messages.inc.php:32 server_privileges.php:170
-#: server_privileges.php:515
-msgid "Allows creating, dropping and renaming user accounts."
-msgstr ""
-
-#: libraries/messages.inc.php:33 server_privileges.php:160
-#: server_privileges.php:164 server_privileges.php:487
-#: server_privileges.php:491
-#, fuzzy
-msgid "Allows creating new views."
-msgstr "Ļauj veidot jaunas tabulas."
-
-#: libraries/messages.inc.php:34 server_privileges.php:144
-#: server_privileges.php:467
-msgid "Allows deleting data."
-msgstr "Ļauj dzēst datus."
-
-#: libraries/messages.inc.php:35 server_privileges.php:146
-#: server_privileges.php:478
-msgid "Allows dropping databases and tables."
-msgstr "Ļauj dzēst datubāzes un tabulas."
-
-#: libraries/messages.inc.php:36 server_privileges.php:478
-msgid "Allows dropping tables."
-msgstr "Ļauj dzēst tabulas."
-
-#: libraries/messages.inc.php:37 server_privileges.php:161
-#: server_privileges.php:495
-msgid "Allows to set up events for the event scheduler"
-msgstr ""
-
-#: libraries/messages.inc.php:38 server_privileges.php:171
-#: server_privileges.php:483
-msgid "Allows executing stored routines."
-msgstr ""
-
-#: libraries/messages.inc.php:39 server_privileges.php:150
-#: server_privileges.php:470
-msgid "Allows importing data from and exporting data into files."
-msgstr "Ļauj importēt/eksportēt datus no/uz failiem."
-
-#: libraries/messages.inc.php:40 server_privileges.php:501
-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/messages.inc.php:41 server_privileges.php:152
-#: server_privileges.php:477
-msgid "Allows creating and dropping indexes."
-msgstr "Ļauj veidot un dzēst indeksus."
-
-#: libraries/messages.inc.php:42 server_privileges.php:142
-#: server_privileges.php:403 server_privileges.php:465
-msgid "Allows inserting and replacing data."
-msgstr "Ļauj ievietot un mainīt datus."
-
-#: libraries/messages.inc.php:43 server_privileges.php:157
-#: server_privileges.php:510
-msgid "Allows locking tables for the current thread."
-msgstr "Ļauj bloķēt tabulas tekošajai darbībai."
-
-#: libraries/messages.inc.php:44 server_privileges.php:607
-#: server_privileges.php:609
-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/messages.inc.php:45 server_privileges.php:595
-#: server_privileges.php:597
-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/messages.inc.php:46 server_privileges.php:601
-#: server_privileges.php:603
-msgid ""
-"Limits the number of commands that change any table or database the user may "
-"execute per hour."
-msgstr ""
-"Ierobežo komandu skaitu, kas maina kas maina tabulas vai datubāzes, ko "
-"lietotājs var izpildīt stundas laikā."
-
-#: libraries/messages.inc.php:47 server_privileges.php:613
-#: server_privileges.php:615
-#, 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/messages.inc.php:48 server_privileges.php:149
-#: server_privileges.php:505
-msgid "Allows viewing processes of all users"
-msgstr ""
-
-#: libraries/messages.inc.php:49 server_privileges.php:151
-#: server_privileges.php:409 server_privileges.php:511
-msgid "Has no effect in this MySQL version."
-msgstr "Nedarbojas šajā MySQL versijā."
-
-#: libraries/messages.inc.php:50 server_privileges.php:147
-#: server_privileges.php:506
-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/messages.inc.php:51 server_privileges.php:159
-#: server_privileges.php:513
-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/messages.inc.php:52 server_privileges.php:158
-#: server_privileges.php:514
-msgid "Needed for the replication slaves."
-msgstr "Nepieciešams replikāciju kopijām."
-
-#: libraries/messages.inc.php:53 server_privileges.php:141
-#: server_privileges.php:400 server_privileges.php:464
-msgid "Allows reading data."
-msgstr "Ļauj lasīt datus."
-
-#: libraries/messages.inc.php:54 server_privileges.php:154
-#: server_privileges.php:508
-msgid "Gives access to the complete list of databases."
-msgstr "Dod pieeju pilnam datubāzu sarakstam."
-
-#: libraries/messages.inc.php:55 server_privileges.php:165
-#: server_privileges.php:167 server_privileges.php:480
-msgid "Allows performing SHOW CREATE VIEW queries."
-msgstr ""
-
-#: libraries/messages.inc.php:56 server_privileges.php:148
-#: server_privileges.php:507
-msgid "Allows shutting down the server."
-msgstr "Ļauj apstādināt serveri."
-
-#: libraries/messages.inc.php:57 server_privileges.php:155
-#: server_privileges.php:504
-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 ""
-"Ļauj pieslēgties pat tad, ja ir sasniegts maksimālais konekciju skaits; "
-"Nepieciešams vairumam administratīvo operāciju, kā globālo mainīgo maiņa vai "
-"citu lietotāju procesu nogalināšana."
-
-#: libraries/messages.inc.php:58 server_privileges.php:162
-#: server_privileges.php:496
-#, fuzzy
-msgid "Allows creating and dropping triggers"
-msgstr "Ļauj veidot un dzēst indeksus."
-
-#: libraries/messages.inc.php:59 server_privileges.php:143
-#: server_privileges.php:406 server_privileges.php:466
-msgid "Allows changing data."
-msgstr "Ļauj mainīt datus."
-
-#: libraries/messages.inc.php:60 server_privileges.php:221
-msgid "No privileges."
-msgstr "Nav privilēģiju."
-
-#: libraries/messages.inc.php:62
-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/messages.inc.php:63
-msgid "The number of transactions that used the temporary binary log cache."
-msgstr ""
-
-#: libraries/messages.inc.php:64
-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 "
-"to increase the tmp_table_size value to cause temporary tables to be memory-"
-"based instead of disk-based."
-msgstr ""
-
-#: libraries/messages.inc.php:65
-msgid "How many temporary files mysqld has created."
-msgstr ""
-
-#: libraries/messages.inc.php:66
-msgid ""
-"The number of in-memory temporary tables created automatically by the server "
-"while executing statements."
-msgstr ""
-
-#: libraries/messages.inc.php:67
-msgid ""
-"The number of rows written with INSERT DELAYED for which some error occurred "
-"(probably duplicate key)."
-msgstr ""
-
-#: libraries/messages.inc.php:68
-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/messages.inc.php:69
-msgid "The number of INSERT DELAYED rows written."
-msgstr ""
-
-#: libraries/messages.inc.php:70
-msgid "The number of executed FLUSH statements."
-msgstr ""
-
-#: libraries/messages.inc.php:71
-msgid "The number of internal COMMIT statements."
-msgstr ""
-
-#: libraries/messages.inc.php:72
-msgid "The number of times a row was deleted from a table."
-msgstr ""
-
-#: libraries/messages.inc.php:73
-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/messages.inc.php:74
-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/messages.inc.php:75
-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/messages.inc.php:76
-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/messages.inc.php:77
-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/messages.inc.php:78
-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 "
-"probably have a lot of queries that require MySQL to scan whole tables or "
-"you have joins that don't use keys properly."
-msgstr ""
-
-#: libraries/messages.inc.php:79
-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 "
-"tables are not properly indexed or that your queries are not written to take "
-"advantage of the indexes you have."
-msgstr ""
-
-#: libraries/messages.inc.php:80
-msgid "The number of internal ROLLBACK statements."
-msgstr ""
-
-#: libraries/messages.inc.php:81
-msgid "The number of requests to update a row in a table."
-msgstr ""
-
-#: libraries/messages.inc.php:82
-msgid "The number of requests to insert a row in a table."
-msgstr ""
-
-#: libraries/messages.inc.php:83
-msgid "The number of pages containing data (dirty or clean)."
-msgstr ""
-
-#: libraries/messages.inc.php:84
-msgid "The number of pages currently dirty."
-msgstr ""
-
-#: libraries/messages.inc.php:85
-msgid "The number of buffer pool pages that have been requested to be flushed."
-msgstr ""
-
-#: libraries/messages.inc.php:86
-msgid "The number of free pages."
-msgstr ""
-
-#: libraries/messages.inc.php:87
-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/messages.inc.php:88
-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 "
-"be calculated as Innodb_buffer_pool_pages_total - "
-"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data."
-msgstr ""
-
-#: libraries/messages.inc.php:89
-msgid "Total size of buffer pool, in pages."
-msgstr ""
-
-#: libraries/messages.inc.php:90
-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/messages.inc.php:91
-msgid ""
-"The number of sequential read-aheads InnoDB initiated. This happens when "
-"InnoDB does a sequential full table scan."
-msgstr ""
-
-#: libraries/messages.inc.php:92
-msgid "The number of logical read requests InnoDB has done."
-msgstr ""
-
-#: libraries/messages.inc.php:93
-msgid ""
-"The number of logical reads that InnoDB could not satisfy from buffer pool "
-"and had to do a single-page read."
-msgstr ""
-
-#: libraries/messages.inc.php:94
-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 "
-"available, it's necessary to wait for pages to be flushed first. This "
-"counter counts instances of these waits. If the buffer pool size was set "
-"properly, this value should be small."
-msgstr ""
-
-#: libraries/messages.inc.php:95
-msgid "The number writes done to the InnoDB buffer pool."
-msgstr ""
-
-#: libraries/messages.inc.php:96
-msgid "The number of fsync() operations so far."
-msgstr ""
-
-#: libraries/messages.inc.php:97
-msgid "The current number of pending fsync() operations."
-msgstr ""
-
-#: libraries/messages.inc.php:98
-msgid "The current number of pending reads."
-msgstr ""
-
-#: libraries/messages.inc.php:99
-msgid "The current number of pending writes."
-msgstr ""
-
-#: libraries/messages.inc.php:100
-msgid "The amount of data read so far, in bytes."
-msgstr ""
-
-#: libraries/messages.inc.php:101
-msgid "The total number of data reads."
-msgstr ""
-
-#: libraries/messages.inc.php:102
-msgid "The total number of data writes."
-msgstr ""
-
-#: libraries/messages.inc.php:103
-msgid "The amount of data written so far, in bytes."
-msgstr ""
-
-#: libraries/messages.inc.php:104
-msgid "The number of pages that have been written for doublewrite operations."
-msgstr ""
-
-#: libraries/messages.inc.php:105
-msgid "The number of doublewrite operations that have been performed."
-msgstr ""
-
-#: libraries/messages.inc.php:106
-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/messages.inc.php:107
-msgid "The number of log write requests."
-msgstr ""
-
-#: libraries/messages.inc.php:108
-msgid "The number of physical writes to the log file."
-msgstr ""
-
-#: libraries/messages.inc.php:109
-msgid "The number of fsync() writes done to the log file."
-msgstr ""
-
-#: libraries/messages.inc.php:110
-msgid "The number of pending log file fsyncs."
-msgstr ""
-
-#: libraries/messages.inc.php:111
-msgid "Pending log file writes."
-msgstr ""
-
-#: libraries/messages.inc.php:112
-msgid "The number of bytes written to the log file."
-msgstr ""
-
-#: libraries/messages.inc.php:113
-msgid "The number of pages created."
-msgstr ""
-
-#: libraries/messages.inc.php:114
-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/messages.inc.php:115
-msgid "The number of pages read."
-msgstr ""
-
-#: libraries/messages.inc.php:116
-msgid "The number of pages written."
-msgstr ""
-
-#: libraries/messages.inc.php:117
-msgid "The number of row locks currently being waited for."
-msgstr ""
-
-#: libraries/messages.inc.php:118
-msgid "The average time to acquire a row lock, in milliseconds."
-msgstr ""
-
-#: libraries/messages.inc.php:119
-msgid "The total time spent in acquiring row locks, in milliseconds."
-msgstr ""
-
-#: libraries/messages.inc.php:120
-msgid "The maximum time to acquire a row lock, in milliseconds."
-msgstr ""
-
-#: libraries/messages.inc.php:121
-msgid "The number of times a row lock had to be waited for."
-msgstr ""
-
-#: libraries/messages.inc.php:122
-msgid "The number of rows deleted from InnoDB tables."
-msgstr ""
-
-#: libraries/messages.inc.php:123
-msgid "The number of rows inserted in InnoDB tables."
-msgstr ""
-
-#: libraries/messages.inc.php:124
-msgid "The number of rows read from InnoDB tables."
-msgstr ""
-
-#: libraries/messages.inc.php:125
-msgid "The number of rows updated in InnoDB tables."
-msgstr ""
-
-#: libraries/messages.inc.php:126
-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/messages.inc.php:127
-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/messages.inc.php:128
-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/messages.inc.php:129
-msgid "The number of requests to read a key block from the cache."
-msgstr ""
-
-#: libraries/messages.inc.php:130
-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/messages.inc.php:131
-msgid "The number of requests to write a key block to the cache."
-msgstr ""
-
-#: libraries/messages.inc.php:132
-msgid "The number of physical writes of a key block to disk."
-msgstr ""
-
-#: libraries/messages.inc.php:133
-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/messages.inc.php:134
-msgid "The number of rows waiting to be written in INSERT DELAYED queues."
-msgstr ""
-
-#: libraries/messages.inc.php:135
-msgid ""
-"The number of tables that have been opened. If opened tables is big, your "
-"table cache value is probably too small."
-msgstr ""
-
-#: libraries/messages.inc.php:136
-msgid "The number of files that are open."
-msgstr ""
-
-#: libraries/messages.inc.php:137
-msgid "The number of streams that are open (used mainly for logging)."
-msgstr ""
-
-#: libraries/messages.inc.php:138
-msgid "The number of tables that are open."
-msgstr ""
-
-#: libraries/messages.inc.php:139
-msgid "The number of free memory blocks in query cache."
-msgstr ""
-
-#: libraries/messages.inc.php:140
-msgid "The amount of free memory for query cache."
-msgstr ""
-
-#: libraries/messages.inc.php:141
-msgid "The number of cache hits."
-msgstr ""
-
-#: libraries/messages.inc.php:142
-msgid "The number of queries added to the cache."
-msgstr ""
-
-#: libraries/messages.inc.php:143
-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 "
-"cache size. The query cache uses a least recently used (LRU) strategy to "
-"decide which queries to remove from the cache."
-msgstr ""
-
-#: libraries/messages.inc.php:144
-msgid ""
-"The number of non-cached queries (not cachable, or not cached due to the "
-"query_cache_type setting)."
-msgstr ""
-
-#: libraries/messages.inc.php:145
-msgid "The number of queries registered in the cache."
-msgstr ""
-
-#: libraries/messages.inc.php:146
-msgid "The total number of blocks in the query cache."
-msgstr ""
-
-#: libraries/messages.inc.php:147
-#, fuzzy
-msgctxt "$strShowStatusReset"
-msgid "Reset"
-msgstr "Atcelt"
-
-#: libraries/messages.inc.php:148
-msgid "The status of failsafe replication (not yet implemented)."
-msgstr ""
-
-#: libraries/messages.inc.php:149
-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/messages.inc.php:150
-msgid "The number of joins that used a range search on a reference table."
-msgstr ""
-
-#: libraries/messages.inc.php:151
-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/messages.inc.php:152
-msgid ""
-"The number of joins that used ranges on the first table. (It's normally not "
-"critical even if this is big.)"
-msgstr ""
-
-#: libraries/messages.inc.php:153
-msgid "The number of joins that did a full scan of the first table."
-msgstr ""
-
-#: libraries/messages.inc.php:154
-msgid "The number of temporary tables currently open by the slave SQL thread."
-msgstr ""
-
-#: libraries/messages.inc.php:155
-msgid ""
-"Total (since startup) number of times the replication slave SQL thread has "
-"retried transactions."
-msgstr ""
-
-#: libraries/messages.inc.php:156
-msgid "This is ON if this server is a slave that is connected to a master."
-msgstr ""
-
-#: libraries/messages.inc.php:157
-msgid ""
-"The number of threads that have taken more than slow_launch_time seconds to "
-"create."
-msgstr ""
-
-#: libraries/messages.inc.php:158
-msgid ""
-"The number of queries that have taken more than long_query_time seconds."
-msgstr ""
-
-#: libraries/messages.inc.php:159
-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/messages.inc.php:160
-msgid "The number of sorts that were done with ranges."
-msgstr ""
-
-#: libraries/messages.inc.php:161
-msgid "The number of sorted rows."
-msgstr ""
-
-#: libraries/messages.inc.php:162
-msgid "The number of sorts that were done by scanning the table."
-msgstr ""
-
-#: libraries/messages.inc.php:163
-msgid "The number of times that a table lock was acquired immediately."
-msgstr ""
-
-#: libraries/messages.inc.php:164
-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 "
-"should first optimize your queries, and then either split your table or "
-"tables or use replication."
-msgstr ""
-
-#: libraries/messages.inc.php:165
-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/messages.inc.php:166
-msgid "The number of currently open connections."
-msgstr ""
-
-#: libraries/messages.inc.php:167
-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 "
-"doesn't give a notable performance improvement if you have a good thread "
-"implementation.)"
-msgstr ""
-
-#: libraries/messages.inc.php:168
-msgid "The number of threads that are not sleeping."
-msgstr ""
-
#: libraries/mult_submits.inc.php:76 libraries/tbl_properties.inc.php:513
#: tbl_structure.php:29 tbl_structure.php:153 tbl_structure.php:157
#: tbl_structure.php:473
@@ -4233,8 +3486,8 @@ msgstr ""
#: libraries/replication_gui.lib.php:55 libraries/replication_gui.lib.php:56
#: libraries/replication_gui.lib.php:249 libraries/replication_gui.lib.php:252
-#: libraries/replication_gui.lib.php:259 server_privileges.php:672
-#: server_privileges.php:675 server_privileges.php:682
+#: libraries/replication_gui.lib.php:259 server_privileges.php:711
+#: server_privileges.php:714 server_privileges.php:721
#: server_synchronize.php:1171
msgid "User name"
msgstr "Lietotājvārds"
@@ -4253,11 +3506,11 @@ msgid "Slave status"
msgstr ""
#: libraries/replication_gui.lib.php:114 libraries/sql_query_form.lib.php:445
-#: server_status.php:626 server_variables.php:52
+#: server_status.php:737 server_variables.php:52
msgid "Variable"
msgstr "Mainīgais"
-#: libraries/replication_gui.lib.php:115 server_status.php:627
+#: libraries/replication_gui.lib.php:115 server_status.php:738
#: tbl_change.php:324 tbl_printview.php:370 tbl_select.php:139
#: tbl_structure.php:729
msgid "Value"
@@ -4277,41 +3530,58 @@ msgstr ""
msgid "Add slave replication user"
msgstr ""
-#: libraries/replication_gui.lib.php:254 server_privileges.php:677
+#: libraries/replication_gui.lib.php:254 server_privileges.php:716
msgid "Any user"
msgstr "Jebkurš lietotājs"
#: libraries/replication_gui.lib.php:255 libraries/replication_gui.lib.php:323
-#: libraries/replication_gui.lib.php:346 server_privileges.php:678
-#: server_privileges.php:745 server_privileges.php:769
-#: server_privileges.php:1889 server_privileges.php:1919
+#: libraries/replication_gui.lib.php:346 server_privileges.php:717
+#: server_privileges.php:784 server_privileges.php:808
+#: server_privileges.php:1928 server_privileges.php:1958
msgid "Use text field"
msgstr "Lietot teksta lauku"
-#: libraries/replication_gui.lib.php:302 server_privileges.php:725
+#: libraries/replication_gui.lib.php:302 server_privileges.php:764
msgid "Any host"
msgstr "Jebkurš hosts"
-#: libraries/replication_gui.lib.php:306 server_privileges.php:729
+#: libraries/replication_gui.lib.php:306 server_privileges.php:768
msgid "Local"
msgstr "Lokāls"
-#: libraries/replication_gui.lib.php:312 server_privileges.php:734
+#: libraries/replication_gui.lib.php:312 server_privileges.php:773
msgid "This Host"
msgstr "Šis hosts"
-#: libraries/replication_gui.lib.php:318 server_privileges.php:740
+#: libraries/replication_gui.lib.php:318 server_privileges.php:779
msgid "Use Host Table"
msgstr "Lietot hostu tabulu"
-#: libraries/replication_gui.lib.php:331 server_privileges.php:753
+#: libraries/replication_gui.lib.php:331 server_privileges.php:792
msgid ""
"When Host table is used, this field is ignored and values stored in Host "
"table are used instead."
msgstr ""
-#: libraries/select_lang.lib.php:480 libraries/select_lang.lib.php:486
-#: libraries/select_lang.lib.php:492
+#. l10n: Text direction, use either ltr or rtl
+#: libraries/select_lang.lib.php:491
+msgid "ltr"
+msgstr "ltr"
+
+#: libraries/select_lang.lib.php:493
+msgid "Content of table __TABLE__"
+msgstr "Tabulas __TABLE__ saturs"
+
+#: libraries/select_lang.lib.php:494
+msgid "(continued)"
+msgstr "(turpinājums)"
+
+#: libraries/select_lang.lib.php:495
+msgid "Structure of table __TABLE__"
+msgstr "Tabulas __TABLE__ struktūra"
+
+#: libraries/select_lang.lib.php:500 libraries/select_lang.lib.php:506
+#: libraries/select_lang.lib.php:512
#, php-format
msgid "Unknown language: %1$s."
msgstr ""
@@ -4323,7 +3593,7 @@ msgid "Servers"
msgstr "Serveris"
#: libraries/server_links.inc.php:53 server_engines.php:112
-#: server_engines.php:116 server_status.php:304 test/theme.php:105
+#: server_engines.php:116 server_status.php:415 test/theme.php:105
msgid "Variables"
msgstr "Mainīgie"
@@ -4336,7 +3606,7 @@ msgid "Engines"
msgstr ""
#: libraries/server_links.inc.php:76 server_binlog.php:110
-#: server_status.php:253 test/theme.php:121
+#: server_status.php:364 test/theme.php:121
msgid "Binary log"
msgstr "Binārais log-fails"
@@ -4792,8 +4062,8 @@ msgstr "Atcelt"
msgid "Protocol version"
msgstr ""
-#: main.php:189 server_privileges.php:1350 server_privileges.php:1497
-#: server_privileges.php:1611 server_privileges.php:2029
+#: main.php:189 server_privileges.php:1389 server_privileges.php:1536
+#: server_privileges.php:1650 server_privileges.php:2068
#: server_processlist.php:54
msgid "User"
msgstr "Lietotājs"
@@ -5166,7 +4436,7 @@ msgstr "%s datubāzes tika veiksmīgi dzēstas."
msgid "Databases statistics"
msgstr "Datubāzu statistika"
-#: server_databases.php:117 server_status.php:260
+#: server_databases.php:117 server_status.php:371
#: setup/lib/messages.inc.php:117
msgid "Tables"
msgstr "Tabulas"
@@ -5185,6 +4455,15 @@ msgstr ""
msgid "Jump to database"
msgstr "Nav datubāzu"
+#: server_databases.php:267
+msgid "Not replicated"
+msgstr ""
+
+#: server_databases.php:273
+#, fuzzy
+msgid "Replicated"
+msgstr "Relācijas"
+
#: server_databases.php:289
#, php-format
msgid "Check privileges for database "%s"."
@@ -5218,142 +4497,340 @@ msgstr ""
msgid "View dump (schema) of databases"
msgstr "Apskatīt datubāzu dampu (shēmu)"
-#: server_privileges.php:263 server_privileges.php:264
+#: server_privileges.php:24 server_privileges.php:266
+msgid "Includes all privileges except GRANT."
+msgstr "Iekļauj visas privilēģijas, izņemot GRANT."
+
+#: server_privileges.php:25 server_privileges.php:192
+#: server_privileges.php:515
+msgid "Allows altering the structure of existing tables."
+msgstr "Ļauj mainīt esošo tabulu struktūru."
+
+#: server_privileges.php:26 server_privileges.php:208
+#: server_privileges.php:521
+#, fuzzy
+msgid "Allows altering and dropping stored routines."
+msgstr "Ļauj veidot un dzēst indeksus."
+
+#: server_privileges.php:27 server_privileges.php:184
+#: server_privileges.php:514
+msgid "Allows creating new databases and tables."
+msgstr "Ļauj veidot jaunas datubāzes un tabulas."
+
+#: server_privileges.php:28 server_privileges.php:207
+#: server_privileges.php:520
+#, fuzzy
+msgid "Allows creating stored routines."
+msgstr "Ļauj veidot jaunas tabulas."
+
+#: server_privileges.php:29 server_privileges.php:514
+msgid "Allows creating new tables."
+msgstr "Ļauj veidot jaunas tabulas."
+
+#: server_privileges.php:30 server_privileges.php:195
+#: server_privileges.php:518
+msgid "Allows creating temporary tables."
+msgstr "Ļauj veidot pagaidu tabulas."
+
+#: server_privileges.php:31 server_privileges.php:209
+#: server_privileges.php:554
+msgid "Allows creating, dropping and renaming user accounts."
+msgstr ""
+
+#: server_privileges.php:32 server_privileges.php:199
+#: server_privileges.php:203 server_privileges.php:526
+#: server_privileges.php:530
+#, fuzzy
+msgid "Allows creating new views."
+msgstr "Ļauj veidot jaunas tabulas."
+
+#: server_privileges.php:33 server_privileges.php:183
+#: server_privileges.php:506
+msgid "Allows deleting data."
+msgstr "Ļauj dzēst datus."
+
+#: server_privileges.php:34 server_privileges.php:185
+#: server_privileges.php:517
+msgid "Allows dropping databases and tables."
+msgstr "Ļauj dzēst datubāzes un tabulas."
+
+#: server_privileges.php:35 server_privileges.php:517
+msgid "Allows dropping tables."
+msgstr "Ļauj dzēst tabulas."
+
+#: server_privileges.php:36 server_privileges.php:200
+#: server_privileges.php:534
+msgid "Allows to set up events for the event scheduler"
+msgstr ""
+
+#: server_privileges.php:37 server_privileges.php:210
+#: server_privileges.php:522
+msgid "Allows executing stored routines."
+msgstr ""
+
+#: server_privileges.php:38 server_privileges.php:189
+#: server_privileges.php:509
+msgid "Allows importing data from and exporting data into files."
+msgstr "Ļauj importēt/eksportēt datus no/uz failiem."
+
+#: server_privileges.php:39 server_privileges.php:540
+msgid ""
+"Allows adding users and privileges without reloading the privilege tables."
+msgstr ""
+"Ļauj pievienot lietotājus un privilēģijas bez privilēģiju tabulu "
+"pārlādēšanas."
+
+#: server_privileges.php:40 server_privileges.php:191
+#: server_privileges.php:516
+msgid "Allows creating and dropping indexes."
+msgstr "Ļauj veidot un dzēst indeksus."
+
+#: server_privileges.php:41 server_privileges.php:181
+#: server_privileges.php:442 server_privileges.php:504
+msgid "Allows inserting and replacing data."
+msgstr "Ļauj ievietot un mainīt datus."
+
+#: server_privileges.php:42 server_privileges.php:196
+#: server_privileges.php:549
+msgid "Allows locking tables for the current thread."
+msgstr "Ļauj bloķēt tabulas tekošajai darbībai."
+
+#: server_privileges.php:43 server_privileges.php:646
+#: server_privileges.php:648
+msgid "Limits the number of new connections the user may open per hour."
+msgstr ""
+"Ierobežo jauno konekciju skaitu, ko lietotājs var atvērt stundas laikā."
+
+#: server_privileges.php:44 server_privileges.php:634
+#: server_privileges.php:636
+msgid "Limits the number of queries the user may send to the server per hour."
+msgstr ""
+"Ierobežo vaicājumu skaitu, ko lietotājs var mosūtīt uz serveri stundas laikā."
+
+#: server_privileges.php:45 server_privileges.php:640
+#: server_privileges.php:642
+msgid ""
+"Limits the number of commands that change any table or database the user may "
+"execute per hour."
+msgstr ""
+"Ierobežo komandu skaitu, kas maina kas maina tabulas vai datubāzes, ko "
+"lietotājs var izpildīt stundas laikā."
+
+#: server_privileges.php:46 server_privileges.php:652
+#: server_privileges.php:654
+#, fuzzy
+msgid "Limits the number of simultaneous connections the user may have."
+msgstr ""
+"Ierobežo jauno konekciju skaitu, ko lietotājs var atvērt stundas laikā."
+
+#: server_privileges.php:47 server_privileges.php:188
+#: server_privileges.php:544
+msgid "Allows viewing processes of all users"
+msgstr ""
+
+#: server_privileges.php:48 server_privileges.php:190
+#: server_privileges.php:448 server_privileges.php:550
+msgid "Has no effect in this MySQL version."
+msgstr "Nedarbojas šajā MySQL versijā."
+
+#: server_privileges.php:49 server_privileges.php:186
+#: server_privileges.php:545
+msgid "Allows reloading server settings and flushing the server's caches."
+msgstr "Ļauj prlādēt servera iestādījumus un iztukšot servera kešu."
+
+#: server_privileges.php:50 server_privileges.php:198
+#: server_privileges.php:552
+msgid "Allows the user to ask where the slaves / masters are."
+msgstr ""
+"Dod lietotājam tiesības jautāt, kur ir replikācijas oriģināli / kopijas."
+
+#: server_privileges.php:51 server_privileges.php:197
+#: server_privileges.php:553
+msgid "Needed for the replication slaves."
+msgstr "Nepieciešams replikāciju kopijām."
+
+#: server_privileges.php:52 server_privileges.php:180
+#: server_privileges.php:439 server_privileges.php:503
+msgid "Allows reading data."
+msgstr "Ļauj lasīt datus."
+
+#: server_privileges.php:53 server_privileges.php:193
+#: server_privileges.php:547
+msgid "Gives access to the complete list of databases."
+msgstr "Dod pieeju pilnam datubāzu sarakstam."
+
+#: server_privileges.php:54 server_privileges.php:204
+#: server_privileges.php:206 server_privileges.php:519
+msgid "Allows performing SHOW CREATE VIEW queries."
+msgstr ""
+
+#: server_privileges.php:55 server_privileges.php:187
+#: server_privileges.php:546
+msgid "Allows shutting down the server."
+msgstr "Ļauj apstādināt serveri."
+
+#: server_privileges.php:56 server_privileges.php:194
+#: server_privileges.php:543
+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 ""
+"Ļauj pieslēgties pat tad, ja ir sasniegts maksimālais konekciju skaits; "
+"Nepieciešams vairumam administratīvo operāciju, kā globālo mainīgo maiņa vai "
+"citu lietotāju procesu nogalināšana."
+
+#: server_privileges.php:57 server_privileges.php:201
+#: server_privileges.php:535
+#, fuzzy
+msgid "Allows creating and dropping triggers"
+msgstr "Ļauj veidot un dzēst indeksus."
+
+#: server_privileges.php:58 server_privileges.php:182
+#: server_privileges.php:445 server_privileges.php:505
+msgid "Allows changing data."
+msgstr "Ļauj mainīt datus."
+
+#: server_privileges.php:59 server_privileges.php:260
+msgid "No privileges."
+msgstr "Nav privilēģiju."
+
+#: server_privileges.php:302 server_privileges.php:303
#, fuzzy
#| msgid "None"
msgctxt "None privileges"
msgid "None"
msgstr "Nav"
-#: server_privileges.php:392 server_privileges.php:527
-#: server_privileges.php:1679 server_privileges.php:1685
+#: server_privileges.php:431 server_privileges.php:566
+#: server_privileges.php:1718 server_privileges.php:1724
msgid "Table-specific privileges"
msgstr "Tabulu specifiskās privilēģijas"
-#: server_privileges.php:393 server_privileges.php:535
-#: server_privileges.php:1501
+#: server_privileges.php:432 server_privileges.php:574
+#: server_privileges.php:1540
msgid " Note: MySQL privilege names are expressed in English "
msgstr " Piezīme: MySQL privilēģiju apzīmējumi tiek rakstīti angļu valodā "
-#: server_privileges.php:524 server_privileges.php:1500
+#: server_privileges.php:563 server_privileges.php:1539
msgid "Global privileges"
msgstr "Globālās privilēģijas"
-#: server_privileges.php:526 server_privileges.php:1679
+#: server_privileges.php:565 server_privileges.php:1718
msgid "Database-specific privileges"
msgstr "Datubāžu specifiskās privilēģijas"
-#: server_privileges.php:571
+#: server_privileges.php:610
msgid "Administration"
msgstr "Administrācija"
-#: server_privileges.php:591
+#: server_privileges.php:630
msgid "Resource limits"
msgstr "Resursu ierobežojumi"
-#: server_privileges.php:592
+#: server_privileges.php:631
msgid "Note: Setting these options to 0 (zero) removes the limit."
msgstr "Piezīme: Šo opciju uzstādīšana uz 0 (nulli) atceļ ierobežojumus."
-#: server_privileges.php:669
+#: server_privileges.php:708
msgid "Login Information"
msgstr "Piekļuves informācija"
-#: server_privileges.php:763
+#: server_privileges.php:802
msgid "Do not change the password"
msgstr "Nemainīt paroli"
-#: server_privileges.php:804 server_privileges.php:2166
+#: server_privileges.php:843 server_privileges.php:2205
#, fuzzy
#| msgid "No user(s) found."
msgid "No user found."
msgstr "Lietotāji netika atrasti."
-#: server_privileges.php:848
+#: server_privileges.php:887
#, php-format
msgid "The user %s already exists!"
msgstr "Lietotājs %s jau eksistē!"
-#: server_privileges.php:931
+#: server_privileges.php:970
msgid "You have added a new user."
msgstr "Jūs pievienojāt jaunu lietotāju."
-#: server_privileges.php:1152
+#: server_privileges.php:1191
#, php-format
msgid "You have updated the privileges for %s."
msgstr "Jūs modificējāt privilēģijas objektam %s."
-#: server_privileges.php:1176
+#: server_privileges.php:1215
#, php-format
msgid "You have revoked the privileges for %s"
msgstr "Jūs atņēmāt privilēgijas lietotājam %s"
-#: server_privileges.php:1212
+#: server_privileges.php:1251
#, php-format
msgid "The password for %s was changed successfully."
msgstr "Lietotāja %s parole tika veiksmīgi mainīta."
-#: server_privileges.php:1232
+#: server_privileges.php:1271
#, php-format
msgid "Deleting %s"
msgstr "Dzēšam %s"
-#: server_privileges.php:1243
+#: server_privileges.php:1282
msgid "No users selected for deleting!"
msgstr ""
-#: server_privileges.php:1246
+#: server_privileges.php:1285
msgid "Reloading the privileges"
msgstr "Pārlādējam privilēģijas"
-#: server_privileges.php:1261
+#: server_privileges.php:1300
msgid "The selected users have been deleted successfully."
msgstr "Izvēlētie lietotāji tika veiksmīgi dzēsti."
-#: server_privileges.php:1296
+#: server_privileges.php:1335
msgid "The privileges were reloaded successfully."
msgstr "Privilēģijas tika veiksmīgi pārlādētas."
-#: server_privileges.php:1324 server_privileges.php:1610
+#: server_privileges.php:1363 server_privileges.php:1649
msgid "Edit Privileges"
msgstr "Mainīt privilēģijas"
-#: server_privileges.php:1333
+#: server_privileges.php:1372
msgid "Revoke"
msgstr "Atsaukt"
-#: server_privileges.php:1365
+#: server_privileges.php:1404
msgid "User overview"
msgstr "Lietotāju pārskats"
-#: server_privileges.php:1502 server_privileges.php:1684
-#: server_privileges.php:2033
+#: server_privileges.php:1541 server_privileges.php:1723
+#: server_privileges.php:2072
msgid "Grant"
msgstr "Piešķirt"
-#: server_privileges.php:1521 server_privileges.php:2123
+#: server_privileges.php:1560 server_privileges.php:2162
msgid "Any"
msgstr "Jebkurš"
-#: server_privileges.php:1570 server_privileges.php:1594
-#: server_privileges.php:1988 server_privileges.php:2177
+#: server_privileges.php:1609 server_privileges.php:1633
+#: server_privileges.php:2027 server_privileges.php:2216
msgid "Add a new User"
msgstr "Pievienot jaunu lietotāju"
-#: server_privileges.php:1575
+#: server_privileges.php:1614
msgid "Remove selected users"
msgstr "Dzēst izvēlētos lietotājus"
-#: server_privileges.php:1578
+#: server_privileges.php:1617
msgid "Revoke all active privileges from the users and delete them afterwards."
msgstr "Atņemt visas aktīvās privilēģijas lietotājiem, un pēc tam dzēst tos."
-#: server_privileges.php:1579 server_privileges.php:1580
-#: server_privileges.php:1581
+#: server_privileges.php:1618 server_privileges.php:1619
+#: server_privileges.php:1620
msgid "Drop the databases that have the same names as the users."
msgstr "Dzēst datubāzes, kurām ir tādi paši vārdi, kā lietotājiem."
-#: server_privileges.php:1597
+#: server_privileges.php:1636
#, php-format
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
@@ -5366,51 +4843,51 @@ msgstr ""
"lieto serveris, ja tur tika veikti labojumi. Šajā gadījumā ir nepieciešams %"
"spārlādēt privilēģijas%s pirms Jūs turpināt."
-#: server_privileges.php:1645
+#: server_privileges.php:1684
msgid "The selected user was not found in the privilege table."
msgstr "Izvēlētais lietotājs nav atrasts privilēģiju tabulā."
-#: server_privileges.php:1685
+#: server_privileges.php:1724
msgid "Column-specific privileges"
msgstr "Kolonnu specifiskās privilēģijas"
-#: server_privileges.php:1886
+#: server_privileges.php:1925
msgid "Add privileges on the following database"
msgstr "Pievienot privilēģijas uz sekojošo datubāzi"
-#: server_privileges.php:1904
+#: server_privileges.php:1943
msgid "Wildcards % and _ should be escaped with a \\ to use them literally"
msgstr ""
"Aizstājējzīmes _ un % jāaizsargā ar \\ priekšā, lai izmantotu tās burtiski"
-#: server_privileges.php:1907
+#: server_privileges.php:1946
msgid "Add privileges on the following table"
msgstr "Pievienot privilēģijas uz sekojošo tabulu"
-#: server_privileges.php:1964
+#: server_privileges.php:2003
msgid "Change Login Information / Copy User"
msgstr "Mainīt piekļuves informāciju / Klonēt lietotāju"
-#: server_privileges.php:1967
+#: server_privileges.php:2006
msgid "Create a new user with the same privileges and ..."
msgstr "Izveidot jaunu lietotāju ar tādām pašām privilēģijām un ..."
-#: server_privileges.php:1969
+#: server_privileges.php:2008
msgid "... keep the old one."
msgstr "... paturēt veco lietotāju."
-#: server_privileges.php:1970
+#: server_privileges.php:2009
msgid " ... delete the old one from the user tables."
msgstr " ... dzēst veco lietotāju no lietotāju tabulas."
-#: server_privileges.php:1971
+#: server_privileges.php:2010
msgid ""
" ... revoke all active privileges from the old one and delete it afterwards."
msgstr ""
" ... atņemt vecajam lietotājam visas aktīvās privilēģijas, un pēc tam dzēst "
"viņu."
-#: server_privileges.php:1972
+#: server_privileges.php:2011
msgid ""
" ... delete the old one from the user tables and reload the privileges "
"afterwards."
@@ -5418,44 +4895,44 @@ msgstr ""
" ... dzēst veco lietotāju no lietotāju tabulas, un pēc tam pārlādēt "
"privilēģijas."
-#: server_privileges.php:1994
+#: server_privileges.php:2033
msgid "Database for user"
msgstr ""
-#: server_privileges.php:1998
+#: server_privileges.php:2037
#, fuzzy
#| msgid "None"
msgctxt "Create none database for user"
msgid "None"
msgstr "Nav"
-#: server_privileges.php:1999
+#: server_privileges.php:2038
msgid "Create database with same name and grant all privileges"
msgstr ""
-#: server_privileges.php:2000
+#: server_privileges.php:2039
msgid "Grant all privileges on wildcard name (username\\_%)"
msgstr ""
-#: server_privileges.php:2003
+#: server_privileges.php:2042
#, fuzzy, php-format
msgid "Grant all privileges on database "%s""
msgstr "Pārbaudīt privilēģijas uz datubāzi "%s"."
-#: server_privileges.php:2026
+#: server_privileges.php:2065
#, php-format
msgid "Users having access to "%s""
msgstr "Lietotāji, kam ir pieja datubāzei "%s""
-#: server_privileges.php:2134
+#: server_privileges.php:2173
msgid "global"
msgstr "globāls"
-#: server_privileges.php:2136
+#: server_privileges.php:2175
msgid "database-specific"
msgstr "datubāzei specifisks"
-#: server_privileges.php:2138
+#: server_privileges.php:2177
msgid "wildcard"
msgstr "aizstājējzīme"
@@ -5503,7 +4980,7 @@ msgstr ""
msgid "This server is configured as master in a replication process."
msgstr ""
-#: server_replication.php:184 server_status.php:281
+#: server_replication.php:184 server_status.php:392
msgid "Show master status"
msgstr ""
@@ -5641,106 +5118,638 @@ msgid ""
"like to configure it?"
msgstr ""
+#: server_status.php:40
+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 ""
+
+#: server_status.php:41
+msgid "The number of transactions that used the temporary binary log cache."
+msgstr ""
+
+#: server_status.php:42
+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 "
+"to increase the tmp_table_size value to cause temporary tables to be memory-"
+"based instead of disk-based."
+msgstr ""
+
+#: server_status.php:43
+msgid "How many temporary files mysqld has created."
+msgstr ""
+
+#: server_status.php:44
+msgid ""
+"The number of in-memory temporary tables created automatically by the server "
+"while executing statements."
+msgstr ""
+
+#: server_status.php:45
+msgid ""
+"The number of rows written with INSERT DELAYED for which some error occurred "
+"(probably duplicate key)."
+msgstr ""
+
#: server_status.php:46
+msgid ""
+"The number of INSERT DELAYED handler threads in use. Every different table "
+"on which one uses INSERT DELAYED gets its own thread."
+msgstr ""
+
+#: server_status.php:47
+msgid "The number of INSERT DELAYED rows written."
+msgstr ""
+
+#: server_status.php:48
+msgid "The number of executed FLUSH statements."
+msgstr ""
+
+#: server_status.php:49
+msgid "The number of internal COMMIT statements."
+msgstr ""
+
+#: server_status.php:50
+msgid "The number of times a row was deleted from a table."
+msgstr ""
+
+#: server_status.php:51
+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 ""
+
+#: server_status.php:52
+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 ""
+
+#: server_status.php:53
+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 ""
+
+#: server_status.php:54
+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 ""
+
+#: server_status.php:55
+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 ""
+
+#: server_status.php:56
+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 "
+"probably have a lot of queries that require MySQL to scan whole tables or "
+"you have joins that don't use keys properly."
+msgstr ""
+
+#: server_status.php:57
+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 "
+"tables are not properly indexed or that your queries are not written to take "
+"advantage of the indexes you have."
+msgstr ""
+
+#: server_status.php:58
+msgid "The number of internal ROLLBACK statements."
+msgstr ""
+
+#: server_status.php:59
+msgid "The number of requests to update a row in a table."
+msgstr ""
+
+#: server_status.php:60
+msgid "The number of requests to insert a row in a table."
+msgstr ""
+
+#: server_status.php:61
+msgid "The number of pages containing data (dirty or clean)."
+msgstr ""
+
+#: server_status.php:62
+msgid "The number of pages currently dirty."
+msgstr ""
+
+#: server_status.php:63
+msgid "The number of buffer pool pages that have been requested to be flushed."
+msgstr ""
+
+#: server_status.php:64
+msgid "The number of free pages."
+msgstr ""
+
+#: server_status.php:65
+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 ""
+
+#: server_status.php:66
+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 "
+"be calculated as Innodb_buffer_pool_pages_total - "
+"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data."
+msgstr ""
+
+#: server_status.php:67
+msgid "Total size of buffer pool, in pages."
+msgstr ""
+
+#: server_status.php:68
+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 ""
+
+#: server_status.php:69
+msgid ""
+"The number of sequential read-aheads InnoDB initiated. This happens when "
+"InnoDB does a sequential full table scan."
+msgstr ""
+
+#: server_status.php:70
+msgid "The number of logical read requests InnoDB has done."
+msgstr ""
+
+#: server_status.php:71
+msgid ""
+"The number of logical reads that InnoDB could not satisfy from buffer pool "
+"and had to do a single-page read."
+msgstr ""
+
+#: server_status.php:72
+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 "
+"available, it's necessary to wait for pages to be flushed first. This "
+"counter counts instances of these waits. If the buffer pool size was set "
+"properly, this value should be small."
+msgstr ""
+
+#: server_status.php:73
+msgid "The number writes done to the InnoDB buffer pool."
+msgstr ""
+
+#: server_status.php:74
+msgid "The number of fsync() operations so far."
+msgstr ""
+
+#: server_status.php:75
+msgid "The current number of pending fsync() operations."
+msgstr ""
+
+#: server_status.php:76
+msgid "The current number of pending reads."
+msgstr ""
+
+#: server_status.php:77
+msgid "The current number of pending writes."
+msgstr ""
+
+#: server_status.php:78
+msgid "The amount of data read so far, in bytes."
+msgstr ""
+
+#: server_status.php:79
+msgid "The total number of data reads."
+msgstr ""
+
+#: server_status.php:80
+msgid "The total number of data writes."
+msgstr ""
+
+#: server_status.php:81
+msgid "The amount of data written so far, in bytes."
+msgstr ""
+
+#: server_status.php:82
+msgid "The number of pages that have been written for doublewrite operations."
+msgstr ""
+
+#: server_status.php:83
+msgid "The number of doublewrite operations that have been performed."
+msgstr ""
+
+#: server_status.php:84
+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 ""
+
+#: server_status.php:85
+msgid "The number of log write requests."
+msgstr ""
+
+#: server_status.php:86
+msgid "The number of physical writes to the log file."
+msgstr ""
+
+#: server_status.php:87
+msgid "The number of fsync() writes done to the log file."
+msgstr ""
+
+#: server_status.php:88
+msgid "The number of pending log file fsyncs."
+msgstr ""
+
+#: server_status.php:89
+msgid "Pending log file writes."
+msgstr ""
+
+#: server_status.php:90
+msgid "The number of bytes written to the log file."
+msgstr ""
+
+#: server_status.php:91
+msgid "The number of pages created."
+msgstr ""
+
+#: server_status.php:92
+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 ""
+
+#: server_status.php:93
+msgid "The number of pages read."
+msgstr ""
+
+#: server_status.php:94
+msgid "The number of pages written."
+msgstr ""
+
+#: server_status.php:95
+msgid "The number of row locks currently being waited for."
+msgstr ""
+
+#: server_status.php:96
+msgid "The average time to acquire a row lock, in milliseconds."
+msgstr ""
+
+#: server_status.php:97
+msgid "The total time spent in acquiring row locks, in milliseconds."
+msgstr ""
+
+#: server_status.php:98
+msgid "The maximum time to acquire a row lock, in milliseconds."
+msgstr ""
+
+#: server_status.php:99
+msgid "The number of times a row lock had to be waited for."
+msgstr ""
+
+#: server_status.php:100
+msgid "The number of rows deleted from InnoDB tables."
+msgstr ""
+
+#: server_status.php:101
+msgid "The number of rows inserted in InnoDB tables."
+msgstr ""
+
+#: server_status.php:102
+msgid "The number of rows read from InnoDB tables."
+msgstr ""
+
+#: server_status.php:103
+msgid "The number of rows updated in InnoDB tables."
+msgstr ""
+
+#: server_status.php:104
+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 ""
+
+#: server_status.php:105
+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 ""
+
+#: server_status.php:106
+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 ""
+
+#: server_status.php:107
+msgid "The number of requests to read a key block from the cache."
+msgstr ""
+
+#: server_status.php:108
+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 ""
+
+#: server_status.php:109
+msgid "The number of requests to write a key block to the cache."
+msgstr ""
+
+#: server_status.php:110
+msgid "The number of physical writes of a key block to disk."
+msgstr ""
+
+#: server_status.php:111
+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 ""
+
+#: server_status.php:112
+msgid "The number of rows waiting to be written in INSERT DELAYED queues."
+msgstr ""
+
+#: server_status.php:113
+msgid ""
+"The number of tables that have been opened. If opened tables is big, your "
+"table cache value is probably too small."
+msgstr ""
+
+#: server_status.php:114
+msgid "The number of files that are open."
+msgstr ""
+
+#: server_status.php:115
+msgid "The number of streams that are open (used mainly for logging)."
+msgstr ""
+
+#: server_status.php:116
+msgid "The number of tables that are open."
+msgstr ""
+
+#: server_status.php:117
+msgid "The number of free memory blocks in query cache."
+msgstr ""
+
+#: server_status.php:118
+msgid "The amount of free memory for query cache."
+msgstr ""
+
+#: server_status.php:119
+msgid "The number of cache hits."
+msgstr ""
+
+#: server_status.php:120
+msgid "The number of queries added to the cache."
+msgstr ""
+
+#: server_status.php:121
+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 "
+"cache size. The query cache uses a least recently used (LRU) strategy to "
+"decide which queries to remove from the cache."
+msgstr ""
+
+#: server_status.php:122
+msgid ""
+"The number of non-cached queries (not cachable, or not cached due to the "
+"query_cache_type setting)."
+msgstr ""
+
+#: server_status.php:123
+msgid "The number of queries registered in the cache."
+msgstr ""
+
+#: server_status.php:124
+msgid "The total number of blocks in the query cache."
+msgstr ""
+
+#: server_status.php:125
+#, fuzzy
+msgctxt "$strShowStatusReset"
+msgid "Reset"
+msgstr "Atcelt"
+
+#: server_status.php:126
+msgid "The status of failsafe replication (not yet implemented)."
+msgstr ""
+
+#: server_status.php:127
+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 ""
+
+#: server_status.php:128
+msgid "The number of joins that used a range search on a reference table."
+msgstr ""
+
+#: server_status.php:129
+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 ""
+
+#: server_status.php:130
+msgid ""
+"The number of joins that used ranges on the first table. (It's normally not "
+"critical even if this is big.)"
+msgstr ""
+
+#: server_status.php:131
+msgid "The number of joins that did a full scan of the first table."
+msgstr ""
+
+#: server_status.php:132
+msgid "The number of temporary tables currently open by the slave SQL thread."
+msgstr ""
+
+#: server_status.php:133
+msgid ""
+"Total (since startup) number of times the replication slave SQL thread has "
+"retried transactions."
+msgstr ""
+
+#: server_status.php:134
+msgid "This is ON if this server is a slave that is connected to a master."
+msgstr ""
+
+#: server_status.php:135
+msgid ""
+"The number of threads that have taken more than slow_launch_time seconds to "
+"create."
+msgstr ""
+
+#: server_status.php:136
+msgid ""
+"The number of queries that have taken more than long_query_time seconds."
+msgstr ""
+
+#: server_status.php:137
+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 ""
+
+#: server_status.php:138
+msgid "The number of sorts that were done with ranges."
+msgstr ""
+
+#: server_status.php:139
+msgid "The number of sorted rows."
+msgstr ""
+
+#: server_status.php:140
+msgid "The number of sorts that were done by scanning the table."
+msgstr ""
+
+#: server_status.php:141
+msgid "The number of times that a table lock was acquired immediately."
+msgstr ""
+
+#: server_status.php:142
+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 "
+"should first optimize your queries, and then either split your table or "
+"tables or use replication."
+msgstr ""
+
+#: server_status.php:143
+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 ""
+
+#: server_status.php:144
+msgid "The number of currently open connections."
+msgstr ""
+
+#: server_status.php:145
+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 "
+"doesn't give a notable performance improvement if you have a good thread "
+"implementation.)"
+msgstr ""
+
+#: server_status.php:146
+msgid "The number of threads that are not sleeping."
+msgstr ""
+
+#: server_status.php:157
msgid "Runtime Information"
msgstr "Izpildes laika informācija"
-#: server_status.php:250
+#: server_status.php:361
msgid "Handler"
msgstr ""
-#: server_status.php:251
+#: server_status.php:362
#, fuzzy
msgid "Query cache"
msgstr "Vaicājuma tips"
-#: server_status.php:252
+#: server_status.php:363
msgid "Threads"
msgstr ""
-#: server_status.php:254
+#: server_status.php:365
msgid "Temporary data"
msgstr ""
-#: server_status.php:255
+#: server_status.php:366
#, fuzzy
msgid "Delayed inserts"
msgstr "Lietot aizturētos INSERT"
-#: server_status.php:256
+#: server_status.php:367
msgid "Key cache"
msgstr ""
-#: server_status.php:257
+#: server_status.php:368
msgid "Joins"
msgstr ""
-#: server_status.php:259
+#: server_status.php:370
msgid "Sorting"
msgstr ""
-#: server_status.php:261
+#: server_status.php:372
msgid "Transaction coordinator"
msgstr ""
-#: server_status.php:271
+#: server_status.php:382
msgid "Flush (close) all tables"
msgstr ""
-#: server_status.php:273
+#: server_status.php:384
#, fuzzy
msgid "Show open tables"
msgstr "Rādīt tabulas"
-#: server_status.php:278
+#: server_status.php:389
msgid "Show slave hosts"
msgstr ""
-#: server_status.php:284
+#: server_status.php:395
msgid "Show slave status"
msgstr ""
-#: server_status.php:289
+#: server_status.php:400
msgid "Flush query cache"
msgstr ""
-#: server_status.php:294
+#: server_status.php:405
msgid "Show processes"
msgstr "Parādīt procesus"
-#: server_status.php:344
+#: server_status.php:455
#, fuzzy
#| msgid "Reset"
msgctxt "for Show status"
msgid "Reset"
msgstr "Atcelt"
-#: server_status.php:350
+#: server_status.php:461
#, php-format
msgid "This MySQL server has been running for %s. It started up on %s."
msgstr "Šis MySQL serveris strādā %s. Tas tika palaists %s."
-#: server_status.php:360
+#: server_status.php:471
msgid ""
"This MySQL server works as master and slave in replication"
"b> process."
msgstr ""
-#: server_status.php:362
+#: server_status.php:473
msgid "This MySQL server works as master in replication process."
msgstr ""
-#: server_status.php:364
+#: server_status.php:475
msgid "This MySQL server works as slave in replication process."
msgstr ""
-#: server_status.php:366
+#: server_status.php:477
msgid ""
"For further information about replication status on the server, please visit "
"the replication section."
msgstr ""
-#: server_status.php:383
+#: server_status.php:494
msgid ""
"Server traffic: These tables show the network traffic statistics of "
"this MySQL server since its startup."
@@ -5748,46 +5757,46 @@ msgstr ""
"Servera trafiks: Šīs tabulas parāda šī MySQL servera tīkla trafika "
"statistiku kopš tā palaišanas."
-#: server_status.php:388
+#: server_status.php:499
msgid "Traffic"
msgstr "Datu apmaiņa"
-#: server_status.php:388
+#: server_status.php:499
msgid ""
"On a busy server, the byte counters may overrun, so those statistics as "
"reported by the MySQL server may be incorrect."
msgstr ""
-#: server_status.php:389 server_status.php:434 server_status.php:497
-#: server_status.php:555
+#: server_status.php:500 server_status.php:545 server_status.php:608
+#: server_status.php:666
msgid "per hour"
msgstr "stundā"
-#: server_status.php:394
+#: server_status.php:505
msgid "Received"
msgstr "Saņemts"
-#: server_status.php:404
+#: server_status.php:515
msgid "Sent"
msgstr "Nosūtīts"
-#: server_status.php:433
+#: server_status.php:544
msgid "Connections"
msgstr "Konekcijas"
-#: server_status.php:440
+#: server_status.php:551
msgid "max. concurrent connections"
msgstr ""
-#: server_status.php:447
+#: server_status.php:558
msgid "Failed attempts"
msgstr "Neveiksmīgi mēģinājumi"
-#: server_status.php:461
+#: server_status.php:572
msgid "Aborted"
msgstr "Pārtraukts"
-#: server_status.php:490
+#: server_status.php:601
#, php-format
msgid ""
"Query statistics: Since its startup, %s queries have been sent to the "
@@ -5796,19 +5805,19 @@ msgstr ""
"Pieprasījumu statistika: %s pieprasījumi tika nosūtīti uz serveri "
"kopš tā palaišanās brīža."
-#: server_status.php:498
+#: server_status.php:609
msgid "per minute"
msgstr "minūtē"
-#: server_status.php:499
+#: server_status.php:610
msgid "per second"
msgstr "sekundē"
-#: server_status.php:554
+#: server_status.php:665
msgid "Query type"
msgstr "Vaicājuma tips"
-#: server_status.php:721
+#: server_status.php:832
msgid "Replication status"
msgstr ""
diff --git a/po/mk.po b/po/mk.po
index 92525e284..acc67b4ca 100755
--- a/po/mk.po
+++ b/po/mk.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-06-04 16:07-0400\n"
+"POT-Creation-Date: 2010-06-08 12:32-0400\n"
"PO-Revision-Date: 2010-03-12 09:16+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: macedonian_cyrillic \n"
@@ -14,11 +14,11 @@ msgstr ""
"X-Generator: Translate Toolkit 1.5.3\n"
#: browse_foreigners.php:38 browse_foreigners.php:59
-#: libraries/display_tbl.lib.php:417 server_privileges.php:1475
+#: libraries/display_tbl.lib.php:417 server_privileges.php:1514
msgid "Show all"
msgstr "прикажи ги сите"
-#: browse_foreigners.php:82 libraries/common.lib.php:2304
+#: browse_foreigners.php:82 libraries/common.lib.php:2313
#: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:394
#: libraries/export/pdf.php:147 pdf_schema.php:283 pdf_schema.php:1123
#: pdf_schema.php:1139
@@ -37,8 +37,8 @@ msgstr ""
#: browse_foreigners.php:150 db_structure.php:79 db_structure.php:80
#: db_structure.php:91 db_structure.php:93 db_structure.php:104
-#: db_structure.php:106 libraries/common.lib.php:2822
-#: libraries/common.lib.php:2829 libraries/db_links.inc.php:75
+#: db_structure.php:106 libraries/common.lib.php:2831
+#: libraries/common.lib.php:2838 libraries/db_links.inc.php:75
#: libraries/tbl_links.inc.php:63
msgid "Search"
msgstr "Пребарување"
@@ -48,7 +48,7 @@ msgstr "Пребарување"
#: db_structure.php:567 js/messages.php:48 libraries/Config.class.php:1046
#: libraries/Theme_Manager.class.php:311
#: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719
-#: libraries/common.lib.php:1333 libraries/common.lib.php:2279
+#: libraries/common.lib.php:1335 libraries/common.lib.php:2288
#: libraries/display_change_password.lib.php:82
#: libraries/display_create_table.lib.php:63
#: libraries/display_export.lib.php:275 libraries/display_import.lib.php:276
@@ -59,9 +59,9 @@ msgstr "Пребарување"
#: libraries/sql_query_form.lib.php:552 libraries/tbl_properties.inc.php:782
#: main.php:128 navigation.php:237 pdf_pages.php:292 pdf_pages.php:328
#: pdf_pages.php:530 pmd_pdf.php:116 server_binlog.php:142
-#: server_privileges.php:625 server_privileges.php:1585
-#: server_privileges.php:1932 server_privileges.php:1979
-#: server_privileges.php:2018 server_replication.php:235
+#: server_privileges.php:664 server_privileges.php:1624
+#: server_privileges.php:1971 server_privileges.php:2018
+#: server_privileges.php:2057 server_replication.php:235
#: server_replication.php:318 server_replication.php:341
#: server_synchronize.php:1209 tbl_change.php:330 tbl_change.php:1174
#: tbl_change.php:1211 tbl_indexes.php:254 tbl_operations.php:265
@@ -79,7 +79,7 @@ msgstr "Име на клуч"
#: browse_foreigners.php:169 browse_foreigners.php:171
#: server_collations.php:55 server_collations.php:67 server_engines.php:59
-#: server_status.php:628
+#: server_status.php:739
msgid "Description"
msgstr "Опис"
@@ -120,7 +120,7 @@ msgstr "Имиња на колони"
#: libraries/db_structure.lib.php:60 libraries/export/htmlword.php:245
#: libraries/export/latex.php:360 libraries/export/odt.php:297
#: libraries/export/texytext.php:234 libraries/tbl_properties.inc.php:100
-#: pdf_schema.php:1263 pdf_schema.php:1284 server_privileges.php:2031
+#: pdf_schema.php:1263 pdf_schema.php:1284 server_privileges.php:2070
#: tbl_change.php:287 tbl_change.php:314 tbl_printview.php:143
#: tbl_printview.php:313 tbl_select.php:136 tbl_structure.php:178
#: tbl_structure.php:659 tbl_tracking.php:274 tbl_tracking.php:321
@@ -164,9 +164,9 @@ msgstr "Коментари"
#: libraries/Index.class.php:386 libraries/export/htmlword.php:322
#: libraries/export/latex.php:430 libraries/export/odt.php:368
#: libraries/export/texytext.php:311 libraries/mult_submits.inc.php:263
-#: pdf_schema.php:1344 server_privileges.php:1529 server_privileges.php:1540
-#: server_privileges.php:1850 server_privileges.php:1855
-#: server_privileges.php:2148 sql.php:132 sql.php:194 tbl_printview.php:229
+#: pdf_schema.php:1344 server_privileges.php:1568 server_privileges.php:1579
+#: server_privileges.php:1889 server_privileges.php:1894
+#: server_privileges.php:2187 sql.php:132 sql.php:194 tbl_printview.php:229
#: tbl_structure.php:350 tbl_tracking.php:337 tbl_tracking.php:342
msgid "No"
msgstr "Не"
@@ -180,9 +180,9 @@ msgstr "Не"
#: libraries/mult_submits.inc.php:101 libraries/mult_submits.inc.php:106
#: libraries/mult_submits.inc.php:111 libraries/mult_submits.inc.php:262
#: libraries/mult_submits.inc.php:273 pdf_schema.php:1344
-#: server_databases.php:64 server_privileges.php:1526
-#: server_privileges.php:1540 server_privileges.php:1850
-#: server_privileges.php:1853 server_privileges.php:2148 sql.php:193
+#: server_databases.php:64 server_privileges.php:1565
+#: server_privileges.php:1579 server_privileges.php:1889
+#: server_privileges.php:1892 server_privileges.php:2187 sql.php:193
#: tbl_printview.php:229 tbl_structure.php:40 tbl_structure.php:350
#: tbl_tracking.php:335 tbl_tracking.php:340
msgid "Yes"
@@ -279,7 +279,7 @@ msgstr "Префрли се на копираната база на подато
msgid "BLOB Repository"
msgstr ""
-#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1350
+#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1352
#: libraries/server_links.inc.php:49 server_processlist.php:59
#: tbl_tracking.php:596 test/theme.php:101
msgid "Status"
@@ -343,8 +343,8 @@ msgstr "Уредување на PDF страница"
#: db_printview.php:104 db_tracking.php:72 db_tracking.php:157
#: libraries/db_structure.lib.php:46 libraries/export/xml.php:328
-#: libraries/header.inc.php:126 pdf_pages.php:424 server_privileges.php:1626
-#: server_privileges.php:1682 server_privileges.php:1946
+#: libraries/header.inc.php:126 pdf_pages.php:424 server_privileges.php:1665
+#: server_privileges.php:1721 server_privileges.php:1985
#: server_synchronize.php:423 server_synchronize.php:866 tbl_tracking.php:592
#: test/theme.php:75
msgid "Table"
@@ -445,7 +445,7 @@ msgstr "Del"
#: db_qbe.php:370 db_qbe.php:451 db_qbe.php:522 db_qbe.php:553
#: libraries/display_import.lib.php:166 libraries/tbl_properties.inc.php:779
-#: server_privileges.php:258 tbl_change.php:1031 tbl_indexes.php:250
+#: server_privileges.php:297 tbl_change.php:1031 tbl_indexes.php:250
#: tbl_select.php:288
msgid "Or"
msgstr "или"
@@ -479,7 +479,7 @@ msgstr "Користи табели"
msgid "SQL query on database %s:"
msgstr "SQL упит на базата на податоци %s:"
-#: db_qbe.php:934 libraries/common.lib.php:1223
+#: db_qbe.php:934 libraries/common.lib.php:1225
msgid "Submit Query"
msgstr "Изврши SQL"
@@ -518,7 +518,7 @@ msgstr "%s погодоци во табелата %s"
#: db_search.php:267 db_structure.php:77 db_structure.php:78
#: db_structure.php:90 db_structure.php:92 db_structure.php:103
-#: db_structure.php:105 libraries/common.lib.php:2824
+#: db_structure.php:105 libraries/common.lib.php:2833
#: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50
#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:467
msgid "Browse"
@@ -565,26 +565,26 @@ msgstr "во табела(и):"
#: db_structure.php:81 db_structure.php:82 db_structure.php:94
#: db_structure.php:95 db_structure.php:107 db_structure.php:108
-#: libraries/common.lib.php:2823 libraries/sql_query_form.lib.php:334
+#: libraries/common.lib.php:2832 libraries/sql_query_form.lib.php:334
#: libraries/sql_query_form.lib.php:337 libraries/tbl_links.inc.php:76
msgid "Insert"
msgstr "Нов запис"
#: db_structure.php:83 db_structure.php:96 db_structure.php:109
-#: libraries/common.lib.php:2820 libraries/common.lib.php:2827
+#: libraries/common.lib.php:2829 libraries/common.lib.php:2836
#: libraries/db_links.inc.php:63 libraries/export/htmlword.php:23
#: libraries/export/latex.php:33 libraries/export/latex.php:337
#: libraries/export/odt.php:32 libraries/export/sql.php:60
#: libraries/export/texytext.php:23 libraries/import.lib.php:1104
#: libraries/tbl_links.inc.php:56 pmd_general.php:134
-#: server_privileges.php:554 server_replication.php:315 tbl_tracking.php:269
+#: server_privileges.php:593 server_replication.php:315 tbl_tracking.php:269
msgid "Structure"
msgstr "Структура"
#: db_structure.php:84 db_structure.php:85 db_structure.php:97
#: db_structure.php:98 db_structure.php:110 db_structure.php:111
#: db_structure.php:545 db_structure.php:546 db_tracking.php:91
-#: libraries/Index.class.php:483 libraries/common.lib.php:1654
+#: libraries/Index.class.php:483 libraries/common.lib.php:1656
#: libraries/db_links.inc.php:100 libraries/mult_submits.inc.php:36
#: libraries/mult_submits.inc.php:73 libraries/tbl_links.inc.php:127
#: server_databases.php:352 tbl_structure.php:27 tbl_structure.php:151
@@ -594,7 +594,7 @@ msgstr "Бриши"
#: db_structure.php:86 db_structure.php:87 db_structure.php:99
#: db_structure.php:100 db_structure.php:112 db_structure.php:113
-#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1653
+#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1655
#: libraries/mult_submits.inc.php:39 libraries/tbl_links.inc.php:105
msgid "Empty"
msgstr "Испразни"
@@ -636,7 +636,7 @@ msgstr "Поглед"
#: db_structure.php:485 libraries/db_structure.lib.php:49
#: libraries/server_links.inc.php:70 server_replication.php:33
-#: server_replication.php:164 server_status.php:258
+#: server_replication.php:164 server_status.php:369
#, fuzzy
msgid "Replication"
msgstr "Релации"
@@ -653,20 +653,20 @@ msgstr "%s е основно складиште на овој MySQL сервер
#: db_structure.php:524 db_structure.php:541 db_structure.php:542
#: libraries/display_tbl.lib.php:2081 libraries/display_tbl.lib.php:2086
#: libraries/mult_submits.inc.php:16 server_databases.php:346
-#: server_databases.php:351 server_privileges.php:1557 tbl_structure.php:455
+#: server_databases.php:351 server_privileges.php:1596 tbl_structure.php:455
#: tbl_structure.php:464
msgid "With selected:"
msgstr "Обележаното:"
#: db_structure.php:527 libraries/display_tbl.lib.php:2076
-#: server_databases.php:348 server_privileges.php:530
-#: server_privileges.php:1560 tbl_structure.php:458
+#: server_databases.php:348 server_privileges.php:569
+#: server_privileges.php:1599 tbl_structure.php:458
msgid "Check All"
msgstr "обележи ги сите"
#: db_structure.php:531 libraries/display_tbl.lib.php:2077
#: libraries/replication_gui.lib.php:33 server_databases.php:350
-#: server_privileges.php:533 server_privileges.php:1564 tbl_structure.php:462
+#: server_privileges.php:572 server_privileges.php:1603 tbl_structure.php:462
msgid "Uncheck All"
msgstr "ниедно"
@@ -704,7 +704,7 @@ msgstr "Анализа на табелата"
#: libraries/display_export.lib.php:83 libraries/display_tbl.lib.php:2094
#: libraries/display_tbl.lib.php:2225 libraries/mult_submits.inc.php:62
#: libraries/server_links.inc.php:84 libraries/tbl_links.inc.php:82
-#: pmd_pdf.php:84 pmd_pdf.php:109 server_privileges.php:1341
+#: pmd_pdf.php:84 pmd_pdf.php:109 server_privileges.php:1380
#: setup/frames/menu.inc.php:22 tbl_row_action.php:59
msgid "Export"
msgstr "Извоз"
@@ -722,8 +722,8 @@ msgstr ""
#: libraries/export/sql.php:342 libraries/export/texytext.php:84
#: libraries/export/xml.php:255 libraries/header.inc.php:106
#: libraries/header_printview.inc.php:58 server_databases.php:169
-#: server_privileges.php:1621 server_privileges.php:1682
-#: server_privileges.php:1940 server_processlist.php:56
+#: server_privileges.php:1660 server_privileges.php:1721
+#: server_privileges.php:1979 server_processlist.php:56
#: server_synchronize.php:1179 server_synchronize.php:1183
#: tbl_tracking.php:591 test/theme.php:65
msgid "Database"
@@ -744,8 +744,8 @@ msgstr ""
#: db_tracking.php:77 libraries/Index.class.php:440
#: libraries/db_structure.lib.php:53 server_databases.php:203
-#: server_privileges.php:1503 server_privileges.php:1686
-#: server_privileges.php:2034 tbl_structure.php:187
+#: server_privileges.php:1542 server_privileges.php:1725
+#: server_privileges.php:2073 tbl_structure.php:187
msgid "Action"
msgstr "Акција"
@@ -938,11 +938,11 @@ msgstr "Името на host-от е празно!"
msgid "The user name is empty!"
msgstr "Не е внесен назив на корисник!"
-#: js/messages.php:44 server_privileges.php:1197 user_password.php:70
+#: js/messages.php:44 server_privileges.php:1236 user_password.php:70
msgid "The password is empty!"
msgstr "Лозинка е празна!"
-#: js/messages.php:45 server_privileges.php:1195 user_password.php:73
+#: js/messages.php:45 server_privileges.php:1234 user_password.php:73
msgid "The passwords aren't the same!"
msgstr "Лозинките не се идентични!"
@@ -1023,8 +1023,8 @@ msgid "Prev"
msgstr "Претходна"
#. l10n: Display text for next month link in calendar
-#: js/messages.php:77 libraries/common.lib.php:2344
-#: libraries/common.lib.php:2347 libraries/display_tbl.lib.php:338
+#: js/messages.php:77 libraries/common.lib.php:2353
+#: libraries/common.lib.php:2356 libraries/display_tbl.lib.php:338
#: server_binlog.php:205 server_binlog.php:207 tbl_printview.php:424
#: tbl_structure.php:801
msgid "Next"
@@ -1100,27 +1100,27 @@ msgid "December"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:97 libraries/common.lib.php:1555
+#: js/messages.php:97 libraries/common.lib.php:1557
msgid "Jan"
msgstr "јан"
#. l10n: Short month name
-#: js/messages.php:99 libraries/common.lib.php:1557
+#: js/messages.php:99 libraries/common.lib.php:1559
msgid "Feb"
msgstr "феб"
#. l10n: Short month name
-#: js/messages.php:101 libraries/common.lib.php:1559
+#: js/messages.php:101 libraries/common.lib.php:1561
msgid "Mar"
msgstr "мар"
#. l10n: Short month name
-#: js/messages.php:103 libraries/common.lib.php:1561
+#: js/messages.php:103 libraries/common.lib.php:1563
msgid "Apr"
msgstr "апр"
#. l10n: Short month name
-#: js/messages.php:105 libraries/common.lib.php:1563
+#: js/messages.php:105 libraries/common.lib.php:1565
#, fuzzy
#| msgid "May"
msgctxt "Short month name"
@@ -1128,37 +1128,37 @@ msgid "May"
msgstr "мај"
#. l10n: Short month name
-#: js/messages.php:107 libraries/common.lib.php:1565
+#: js/messages.php:107 libraries/common.lib.php:1567
msgid "Jun"
msgstr "јун"
#. l10n: Short month name
-#: js/messages.php:109 libraries/common.lib.php:1567
+#: js/messages.php:109 libraries/common.lib.php:1569
msgid "Jul"
msgstr "јул"
#. l10n: Short month name
-#: js/messages.php:111 libraries/common.lib.php:1569
+#: js/messages.php:111 libraries/common.lib.php:1571
msgid "Aug"
msgstr "авг"
#. l10n: Short month name
-#: js/messages.php:113 libraries/common.lib.php:1571
+#: js/messages.php:113 libraries/common.lib.php:1573
msgid "Sep"
msgstr "сеп"
#. l10n: Short month name
-#: js/messages.php:115 libraries/common.lib.php:1573
+#: js/messages.php:115 libraries/common.lib.php:1575
msgid "Oct"
msgstr "окт"
#. l10n: Short month name
-#: js/messages.php:117 libraries/common.lib.php:1575
+#: js/messages.php:117 libraries/common.lib.php:1577
msgid "Nov"
msgstr "нов"
#. l10n: Short month name
-#: js/messages.php:119 libraries/common.lib.php:1577
+#: js/messages.php:119 libraries/common.lib.php:1579
msgid "Dec"
msgstr "дек"
@@ -1199,37 +1199,37 @@ msgid "Saturday"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:132 libraries/common.lib.php:1580
+#: js/messages.php:132 libraries/common.lib.php:1582
msgid "Sun"
msgstr "Нед"
#. l10n: Short week day name
-#: js/messages.php:134 libraries/common.lib.php:1582
+#: js/messages.php:134 libraries/common.lib.php:1584
msgid "Mon"
msgstr "Пон"
#. l10n: Short week day name
-#: js/messages.php:136 libraries/common.lib.php:1584
+#: js/messages.php:136 libraries/common.lib.php:1586
msgid "Tue"
msgstr "Вто"
#. l10n: Short week day name
-#: js/messages.php:138 libraries/common.lib.php:1586
+#: js/messages.php:138 libraries/common.lib.php:1588
msgid "Wed"
msgstr "Сре"
#. l10n: Short week day name
-#: js/messages.php:140 libraries/common.lib.php:1588
+#: js/messages.php:140 libraries/common.lib.php:1590
msgid "Thu"
msgstr "Чет"
#. l10n: Short week day name
-#: js/messages.php:142 libraries/common.lib.php:1590
+#: js/messages.php:142 libraries/common.lib.php:1592
msgid "Fri"
msgstr "Пет"
#. l10n: Short week day name
-#: js/messages.php:144 libraries/common.lib.php:1592
+#: js/messages.php:144 libraries/common.lib.php:1594
msgid "Sat"
msgstr "Саб"
@@ -1376,7 +1376,7 @@ msgid "Comment"
msgstr "Коментари"
#: libraries/Index.class.php:466 libraries/common.lib.php:616
-#: libraries/common.lib.php:1199 libraries/display_tbl.lib.php:1117
+#: libraries/common.lib.php:1201 libraries/display_tbl.lib.php:1117
#: libraries/import.lib.php:1087 libraries/import.lib.php:1111
#: pdf_pages.php:285 setup/frames/index.inc.php:124
#: setup/lib/messages.inc.php:352 tbl_row_action.php:69
@@ -1400,7 +1400,7 @@ msgid ""
msgstr ""
#: libraries/List_Database.class.php:431 libraries/server_links.inc.php:41
-#: server_databases.php:88 server_privileges.php:1621
+#: server_databases.php:88 server_privileges.php:1660
#: setup/lib/messages.inc.php:110 test/theme.php:93
msgid "Databases"
msgstr "База на податоци"
@@ -1734,7 +1734,7 @@ msgid "Documentation"
msgstr "Документација"
#: libraries/common.lib.php:595 libraries/header_printview.inc.php:61
-#: server_processlist.php:60 server_status.php:247
+#: server_processlist.php:60 server_status.php:358
msgid "SQL query"
msgstr "SQL упит"
@@ -1750,130 +1750,130 @@ msgstr "Објасни SQL"
msgid "Skip Explain SQL"
msgstr "Прескокни ги објаснувањата на SQL-от"
-#: libraries/common.lib.php:1212
+#: libraries/common.lib.php:1214
msgid "Without PHP Code"
msgstr "без PHP код"
-#: libraries/common.lib.php:1215 setup/lib/messages.inc.php:355
+#: libraries/common.lib.php:1217 setup/lib/messages.inc.php:355
msgid "Create PHP Code"
msgstr "Направи PHP код"
-#: libraries/common.lib.php:1233 server_status.php:341
+#: libraries/common.lib.php:1235 server_status.php:452
#: setup/lib/messages.inc.php:354
msgid "Refresh"
msgstr "Освежи"
-#: libraries/common.lib.php:1242
+#: libraries/common.lib.php:1244
msgid "Skip Validate SQL"
msgstr "Прескокни ја проверката на SQL"
-#: libraries/common.lib.php:1245 setup/lib/messages.inc.php:356 sql.php:518
+#: libraries/common.lib.php:1247 setup/lib/messages.inc.php:356 sql.php:518
msgid "Validate SQL"
msgstr "Провери SQL"
-#: libraries/common.lib.php:1276
+#: libraries/common.lib.php:1278
msgid "Inline edit of this query"
msgstr ""
-#: libraries/common.lib.php:1278
+#: libraries/common.lib.php:1280
#, fuzzy
#| msgid "Engines"
msgid "Inline"
msgstr "Складишта"
-#: libraries/common.lib.php:1332 libraries/common.lib.php:1347
+#: libraries/common.lib.php:1334 libraries/common.lib.php:1349
msgid "Profiling"
msgstr ""
-#: libraries/common.lib.php:1351 libraries/tbl_triggers.lib.php:28
+#: libraries/common.lib.php:1353 libraries/tbl_triggers.lib.php:28
#: server_processlist.php:58
msgid "Time"
msgstr "Време"
#. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "B"
msgstr "бајти"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "KiB"
msgstr "KB"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "MiB"
msgstr "MB"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "GiB"
msgstr "GB"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "TiB"
msgstr "TB"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "PiB"
msgstr "PB"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "EiB"
msgstr "EB"
#. l10n: Thousands separator
-#: libraries/common.lib.php:1417
+#: libraries/common.lib.php:1419
msgid ","
msgstr ","
#. l10n: Decimal separator
-#: libraries/common.lib.php:1419
+#: libraries/common.lib.php:1421
msgid "."
msgstr "."
#. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string
-#: libraries/common.lib.php:1596
+#: libraries/common.lib.php:1598
#: libraries/transformations/text_plain__dateformat.inc.php:34
msgid "%B %d, %Y at %I:%M %p"
msgstr "%d. %B %Y. во %H:%M"
-#: libraries/common.lib.php:1898
+#: libraries/common.lib.php:1907
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "%s денови, %s часови, %s минути и %s секунди"
-#: libraries/common.lib.php:2313 libraries/common.lib.php:2316
-#: libraries/display_tbl.lib.php:290 server_status.php:608
+#: libraries/common.lib.php:2322 libraries/common.lib.php:2325
+#: libraries/display_tbl.lib.php:290 server_status.php:719
msgid "Begin"
msgstr "Почеток"
-#: libraries/common.lib.php:2314 libraries/common.lib.php:2317
+#: libraries/common.lib.php:2323 libraries/common.lib.php:2326
#: libraries/display_tbl.lib.php:291 server_binlog.php:168
#: server_binlog.php:170
msgid "Previous"
msgstr "Претходна"
-#: libraries/common.lib.php:2345 libraries/common.lib.php:2348
+#: libraries/common.lib.php:2354 libraries/common.lib.php:2357
#: libraries/display_tbl.lib.php:353
msgid "End"
msgstr "Крај"
-#: libraries/common.lib.php:2421
+#: libraries/common.lib.php:2430
#, php-format
msgid "Jump to database "%s"."
msgstr "Премин на базата "%s"."
-#: libraries/common.lib.php:2441
+#: libraries/common.lib.php:2450
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr ""
-#: libraries/common.lib.php:2821 libraries/common.lib.php:2828
+#: libraries/common.lib.php:2830 libraries/common.lib.php:2837
#: libraries/db_links.inc.php:68 libraries/export/sql.php:25
#: libraries/import/sql.php:18 libraries/server_links.inc.php:45
#: libraries/tbl_links.inc.php:60 querywindow.php:99 test/theme.php:97
msgid "SQL"
msgstr "SQL"
-#: libraries/common.lib.php:2830 libraries/db_links.inc.php:104
+#: libraries/common.lib.php:2839 libraries/db_links.inc.php:104
#: libraries/tbl_links.inc.php:95 libraries/tbl_links.inc.php:117
#: view_operations.php:89
msgid "Operations"
@@ -1930,8 +1930,8 @@ msgid "Import"
msgstr "Извоз"
#: libraries/db_links.inc.php:111 libraries/server_links.inc.php:66
-#: server_privileges.php:72 server_privileges.php:1683
-#: server_privileges.php:2032 test/theme.php:117
+#: server_privileges.php:111 server_privileges.php:1722
+#: server_privileges.php:2071 test/theme.php:117
msgid "Privileges"
msgstr "Привилегии"
@@ -1979,22 +1979,22 @@ msgid "Change password"
msgstr "Промена на лозинка"
#: libraries/display_change_password.lib.php:35
-#: libraries/replication_gui.lib.php:345 server_privileges.php:768
+#: libraries/replication_gui.lib.php:345 server_privileges.php:807
msgid "No Password"
msgstr "Нема лозинка"
#: libraries/display_change_password.lib.php:41
#: libraries/replication_gui.lib.php:59 libraries/replication_gui.lib.php:60
#: libraries/replication_gui.lib.php:335 libraries/replication_gui.lib.php:339
-#: libraries/replication_gui.lib.php:349 server_privileges.php:757
-#: server_privileges.php:761 server_privileges.php:772
-#: server_privileges.php:1499 server_synchronize.php:1175
+#: libraries/replication_gui.lib.php:349 server_privileges.php:796
+#: server_privileges.php:800 server_privileges.php:811
+#: server_privileges.php:1538 server_synchronize.php:1175
msgid "Password"
msgstr "Лозинка"
#: libraries/display_change_password.lib.php:46
#: libraries/replication_gui.lib.php:353 libraries/replication_gui.lib.php:356
-#: server_privileges.php:776 server_privileges.php:779
+#: server_privileges.php:815 server_privileges.php:818
msgid "Re-type"
msgstr "Повтори внес"
@@ -2009,12 +2009,12 @@ msgid "MySQL 4.0 compatible"
msgstr "MySQL 4.0 компатибилно"
#: libraries/display_change_password.lib.php:72
-#: libraries/replication_gui.lib.php:360 server_privileges.php:783
+#: libraries/replication_gui.lib.php:360 server_privileges.php:822
msgid "Generate Password"
msgstr "Генерирање на лозинка"
#: libraries/display_change_password.lib.php:75
-#: libraries/replication_gui.lib.php:363 server_privileges.php:786
+#: libraries/replication_gui.lib.php:363 server_privileges.php:825
msgid "Generate"
msgstr "Генерирај"
@@ -2027,8 +2027,8 @@ msgstr "Креирај нова база на податоци"
msgid "Create"
msgstr "Креирај"
-#: libraries/display_create_database.lib.php:40 server_privileges.php:74
-#: server_privileges.php:1388 server_replication.php:35
+#: libraries/display_create_database.lib.php:40 server_privileges.php:113
+#: server_privileges.php:1427 server_replication.php:35
msgid "No Privileges"
msgstr "Нема привилегии"
@@ -2117,7 +2117,7 @@ msgstr "Компресија"
#: libraries/display_export.lib.php:240 libraries/display_import.lib.php:197
#: libraries/display_import.lib.php:210 libraries/display_tbl.lib.php:530
#: libraries/export/sql.php:868 libraries/tbl_properties.inc.php:575
-#: server_privileges.php:1836 server_processlist.php:75
+#: server_privileges.php:1875 server_processlist.php:75
msgid "None"
msgstr "нема"
@@ -2442,7 +2442,7 @@ msgstr ""
msgid "Buffer Pool"
msgstr "Бафер"
-#: libraries/engines/innodb.lib.php:145 server_status.php:306
+#: libraries/engines/innodb.lib.php:145 server_status.php:417
msgid "InnoDB Status"
msgstr "InnoDB статус"
@@ -2451,8 +2451,8 @@ msgid "Buffer Pool Usage"
msgstr "Искористеност на баферот"
#: libraries/engines/innodb.lib.php:194 server_databases.php:137
-#: server_databases.php:305 server_status.php:414 server_status.php:475
-#: server_status.php:496 tbl_printview.php:351 tbl_structure.php:696
+#: server_databases.php:305 server_status.php:525 server_status.php:586
+#: server_status.php:607 tbl_printview.php:351 tbl_structure.php:696
msgid "Total"
msgstr "Вкупно"
@@ -2786,7 +2786,7 @@ msgstr "Microsoft Word 2000"
#: libraries/export/latex.php:201 libraries/export/odt.php:48
#: libraries/export/sql.php:106 libraries/export/sql.php:868
#: libraries/export/texytext.php:27 server_databases.php:127
-#: server_privileges.php:537 server_replication.php:316 tbl_printview.php:317
+#: server_privileges.php:576 server_replication.php:316 tbl_printview.php:317
#: tbl_structure.php:665
msgid "Data"
msgstr "Податоци"
@@ -2836,9 +2836,9 @@ msgstr "MIME-типови"
#: libraries/export/xml.php:102 libraries/header_printview.inc.php:57
#: libraries/replication_gui.lib.php:63 libraries/replication_gui.lib.php:174
#: libraries/replication_gui.lib.php:269 libraries/replication_gui.lib.php:272
-#: libraries/replication_gui.lib.php:329 server_privileges.php:692
-#: server_privileges.php:695 server_privileges.php:751
-#: server_privileges.php:1498 server_privileges.php:2030
+#: libraries/replication_gui.lib.php:329 server_privileges.php:731
+#: server_privileges.php:734 server_privileges.php:790
+#: server_privileges.php:1537 server_privileges.php:2069
#: server_processlist.php:55 server_synchronize.php:1159
msgid "Host"
msgstr "Host"
@@ -3195,754 +3195,6 @@ msgstr "нема"
msgid "Convert to Kana"
msgstr ""
-#. l10n: Text direction, use either ltr or rtl
-#: libraries/messages.inc.php:19
-msgid "ltr"
-msgstr "ltr"
-
-#: libraries/messages.inc.php:21
-msgid "Content of table __TABLE__"
-msgstr "Содржина на табелата __TABLE__"
-
-#: libraries/messages.inc.php:22
-msgid "(continued)"
-msgstr "(продолжува)"
-
-#: libraries/messages.inc.php:23
-msgid "Structure of table __TABLE__"
-msgstr "Структура на табелата __TABLE__"
-
-#: libraries/messages.inc.php:25 server_privileges.php:227
-msgid "Includes all privileges except GRANT."
-msgstr "Ги вклучува сите привилегии освен GRANT."
-
-#: libraries/messages.inc.php:26 server_privileges.php:153
-#: server_privileges.php:476
-msgid "Allows altering the structure of existing tables."
-msgstr "Дозволува промена на структурата на постоечките табели."
-
-#: libraries/messages.inc.php:27 server_privileges.php:169
-#: server_privileges.php:482
-msgid "Allows altering and dropping stored routines."
-msgstr "Дозволува промена и бришење на stored рутини."
-
-#: libraries/messages.inc.php:28 server_privileges.php:145
-#: server_privileges.php:475
-msgid "Allows creating new databases and tables."
-msgstr "Дозволува креирање на нови бази на податоци и табели."
-
-#: libraries/messages.inc.php:29 server_privileges.php:168
-#: server_privileges.php:481
-msgid "Allows creating stored routines."
-msgstr "Дозволува креирање на stored рутини."
-
-#: libraries/messages.inc.php:30 server_privileges.php:475
-msgid "Allows creating new tables."
-msgstr "Дозволува креирање на нови табела."
-
-#: libraries/messages.inc.php:31 server_privileges.php:156
-#: server_privileges.php:479
-msgid "Allows creating temporary tables."
-msgstr "Дозволува креирање на привремени табели..."
-
-#: libraries/messages.inc.php:32 server_privileges.php:170
-#: server_privileges.php:515
-msgid "Allows creating, dropping and renaming user accounts."
-msgstr "Дозволува креирање, бришење и преименување на корсиничките имиња."
-
-#: libraries/messages.inc.php:33 server_privileges.php:160
-#: server_privileges.php:164 server_privileges.php:487
-#: server_privileges.php:491
-msgid "Allows creating new views."
-msgstr "Дозволува креирање на нови погледи."
-
-#: libraries/messages.inc.php:34 server_privileges.php:144
-#: server_privileges.php:467
-msgid "Allows deleting data."
-msgstr "Дозволува бришење на податоци."
-
-#: libraries/messages.inc.php:35 server_privileges.php:146
-#: server_privileges.php:478
-msgid "Allows dropping databases and tables."
-msgstr "Дозволува бришење на бази на податоци и табели."
-
-#: libraries/messages.inc.php:36 server_privileges.php:478
-msgid "Allows dropping tables."
-msgstr "Дозволува бришење на табели."
-
-#: libraries/messages.inc.php:37 server_privileges.php:161
-#: server_privileges.php:495
-msgid "Allows to set up events for the event scheduler"
-msgstr ""
-
-#: libraries/messages.inc.php:38 server_privileges.php:171
-#: server_privileges.php:483
-msgid "Allows executing stored routines."
-msgstr "Дозволува извршување на stored рутини."
-
-#: libraries/messages.inc.php:39 server_privileges.php:150
-#: server_privileges.php:470
-msgid "Allows importing data from and exporting data into files."
-msgstr "Дозволува увоз на податоци и нивен извоз во податотеки."
-
-#: libraries/messages.inc.php:40 server_privileges.php:501
-msgid ""
-"Allows adding users and privileges without reloading the privilege tables."
-msgstr ""
-"Дозволува додавање на корисници и привилегии без повтроно вчитавање на "
-"табелата на привилегии."
-
-#: libraries/messages.inc.php:41 server_privileges.php:152
-#: server_privileges.php:477
-msgid "Allows creating and dropping indexes."
-msgstr "Дозволува креирање и бришење на клучева."
-
-#: libraries/messages.inc.php:42 server_privileges.php:142
-#: server_privileges.php:403 server_privileges.php:465
-msgid "Allows inserting and replacing data."
-msgstr "Дозволува вметнување и замена на података."
-
-#: libraries/messages.inc.php:43 server_privileges.php:157
-#: server_privileges.php:510
-msgid "Allows locking tables for the current thread."
-msgstr "Дозволува заклучување на табели на тековните процеси."
-
-#: libraries/messages.inc.php:44 server_privileges.php:607
-#: server_privileges.php:609
-msgid "Limits the number of new connections the user may open per hour."
-msgstr ""
-"Го ограничува бројот на нови конекции кои корисникот може да ги отвори за "
-"еден час."
-
-#: libraries/messages.inc.php:45 server_privileges.php:595
-#: server_privileges.php:597
-msgid "Limits the number of queries the user may send to the server per hour."
-msgstr ""
-"Го ограничува бројот на упити кои корисникот може да ги постави на серверот "
-"за еден час."
-
-#: libraries/messages.inc.php:46 server_privileges.php:601
-#: server_privileges.php:603
-msgid ""
-"Limits the number of commands that change any table or database the user may "
-"execute per hour."
-msgstr ""
-"Го ограничува бројот на команди кои ги менуваат табелите или базите на "
-"податоци кои корисникот може да ги изврши за еден час."
-
-#: libraries/messages.inc.php:47 server_privileges.php:613
-#: server_privileges.php:615
-#, fuzzy
-msgid "Limits the number of simultaneous connections the user may have."
-msgstr ""
-"Го ограничува бројот на нови конекции кои корисникот може да ги отвори за "
-"еден час."
-
-#: libraries/messages.inc.php:48 server_privileges.php:149
-#: server_privileges.php:505
-msgid "Allows viewing processes of all users"
-msgstr ""
-
-#: libraries/messages.inc.php:49 server_privileges.php:151
-#: server_privileges.php:409 server_privileges.php:511
-msgid "Has no effect in this MySQL version."
-msgstr "Нема ефект во оваа верзији на MySQL."
-
-#: libraries/messages.inc.php:50 server_privileges.php:147
-#: server_privileges.php:506
-msgid "Allows reloading server settings and flushing the server's caches."
-msgstr ""
-"Дозволува повтоно вчитување на подесувањата на серверот и празнење на кешот "
-"на серверот."
-
-#: libraries/messages.inc.php:51 server_privileges.php:159
-#: server_privileges.php:513
-msgid "Allows the user to ask where the slaves / masters are."
-msgstr "Дава права на кориснику да праша каде се главните/помошни сервери."
-
-#: libraries/messages.inc.php:52 server_privileges.php:158
-#: server_privileges.php:514
-msgid "Needed for the replication slaves."
-msgstr "Потребно заради помошните сервери за репликација."
-
-#: libraries/messages.inc.php:53 server_privileges.php:141
-#: server_privileges.php:400 server_privileges.php:464
-msgid "Allows reading data."
-msgstr "Дозволува читање на податоци."
-
-#: libraries/messages.inc.php:54 server_privileges.php:154
-#: server_privileges.php:508
-msgid "Gives access to the complete list of databases."
-msgstr "Дава пристап на комплетната листа на базите на податоци."
-
-#: libraries/messages.inc.php:55 server_privileges.php:165
-#: server_privileges.php:167 server_privileges.php:480
-msgid "Allows performing SHOW CREATE VIEW queries."
-msgstr "Дозволува извршување на SHOW CREATE VIEW упити."
-
-#: libraries/messages.inc.php:56 server_privileges.php:148
-#: server_privileges.php:507
-msgid "Allows shutting down the server."
-msgstr "Дозволува гасење на серверот."
-
-#: libraries/messages.inc.php:57 server_privileges.php:155
-#: server_privileges.php:504
-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/messages.inc.php:58 server_privileges.php:162
-#: server_privileges.php:496
-#, fuzzy
-msgid "Allows creating and dropping triggers"
-msgstr "Дозволува креирање и бришење на клучева."
-
-#: libraries/messages.inc.php:59 server_privileges.php:143
-#: server_privileges.php:406 server_privileges.php:466
-msgid "Allows changing data."
-msgstr "Дозволува измена на податоци."
-
-#: libraries/messages.inc.php:60 server_privileges.php:221
-msgid "No privileges."
-msgstr "Нема привилегии."
-
-#: libraries/messages.inc.php:62
-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/messages.inc.php:63
-msgid "The number of transactions that used the temporary binary log cache."
-msgstr ""
-
-#: libraries/messages.inc.php:64
-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 "
-"to increase the tmp_table_size value to cause temporary tables to be memory-"
-"based instead of disk-based."
-msgstr ""
-
-#: libraries/messages.inc.php:65
-msgid "How many temporary files mysqld has created."
-msgstr ""
-
-#: libraries/messages.inc.php:66
-msgid ""
-"The number of in-memory temporary tables created automatically by the server "
-"while executing statements."
-msgstr ""
-
-#: libraries/messages.inc.php:67
-msgid ""
-"The number of rows written with INSERT DELAYED for which some error occurred "
-"(probably duplicate key)."
-msgstr ""
-
-#: libraries/messages.inc.php:68
-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/messages.inc.php:69
-msgid "The number of INSERT DELAYED rows written."
-msgstr ""
-
-#: libraries/messages.inc.php:70
-msgid "The number of executed FLUSH statements."
-msgstr ""
-
-#: libraries/messages.inc.php:71
-msgid "The number of internal COMMIT statements."
-msgstr ""
-
-#: libraries/messages.inc.php:72
-msgid "The number of times a row was deleted from a table."
-msgstr ""
-
-#: libraries/messages.inc.php:73
-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/messages.inc.php:74
-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/messages.inc.php:75
-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/messages.inc.php:76
-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/messages.inc.php:77
-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/messages.inc.php:78
-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 "
-"probably have a lot of queries that require MySQL to scan whole tables or "
-"you have joins that don't use keys properly."
-msgstr ""
-
-#: libraries/messages.inc.php:79
-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 "
-"tables are not properly indexed or that your queries are not written to take "
-"advantage of the indexes you have."
-msgstr ""
-
-#: libraries/messages.inc.php:80
-msgid "The number of internal ROLLBACK statements."
-msgstr ""
-
-#: libraries/messages.inc.php:81
-msgid "The number of requests to update a row in a table."
-msgstr ""
-
-#: libraries/messages.inc.php:82
-msgid "The number of requests to insert a row in a table."
-msgstr ""
-
-#: libraries/messages.inc.php:83
-msgid "The number of pages containing data (dirty or clean)."
-msgstr ""
-
-#: libraries/messages.inc.php:84
-msgid "The number of pages currently dirty."
-msgstr ""
-
-#: libraries/messages.inc.php:85
-msgid "The number of buffer pool pages that have been requested to be flushed."
-msgstr ""
-
-#: libraries/messages.inc.php:86
-msgid "The number of free pages."
-msgstr ""
-
-#: libraries/messages.inc.php:87
-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/messages.inc.php:88
-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 "
-"be calculated as Innodb_buffer_pool_pages_total - "
-"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data."
-msgstr ""
-
-#: libraries/messages.inc.php:89
-msgid "Total size of buffer pool, in pages."
-msgstr ""
-
-#: libraries/messages.inc.php:90
-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/messages.inc.php:91
-msgid ""
-"The number of sequential read-aheads InnoDB initiated. This happens when "
-"InnoDB does a sequential full table scan."
-msgstr ""
-
-#: libraries/messages.inc.php:92
-msgid "The number of logical read requests InnoDB has done."
-msgstr ""
-
-#: libraries/messages.inc.php:93
-msgid ""
-"The number of logical reads that InnoDB could not satisfy from buffer pool "
-"and had to do a single-page read."
-msgstr ""
-
-#: libraries/messages.inc.php:94
-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 "
-"available, it's necessary to wait for pages to be flushed first. This "
-"counter counts instances of these waits. If the buffer pool size was set "
-"properly, this value should be small."
-msgstr ""
-
-#: libraries/messages.inc.php:95
-msgid "The number writes done to the InnoDB buffer pool."
-msgstr ""
-
-#: libraries/messages.inc.php:96
-msgid "The number of fsync() operations so far."
-msgstr ""
-
-#: libraries/messages.inc.php:97
-msgid "The current number of pending fsync() operations."
-msgstr ""
-
-#: libraries/messages.inc.php:98
-msgid "The current number of pending reads."
-msgstr ""
-
-#: libraries/messages.inc.php:99
-msgid "The current number of pending writes."
-msgstr ""
-
-#: libraries/messages.inc.php:100
-msgid "The amount of data read so far, in bytes."
-msgstr ""
-
-#: libraries/messages.inc.php:101
-msgid "The total number of data reads."
-msgstr ""
-
-#: libraries/messages.inc.php:102
-msgid "The total number of data writes."
-msgstr ""
-
-#: libraries/messages.inc.php:103
-msgid "The amount of data written so far, in bytes."
-msgstr ""
-
-#: libraries/messages.inc.php:104
-msgid "The number of pages that have been written for doublewrite operations."
-msgstr ""
-
-#: libraries/messages.inc.php:105
-msgid "The number of doublewrite operations that have been performed."
-msgstr ""
-
-#: libraries/messages.inc.php:106
-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/messages.inc.php:107
-msgid "The number of log write requests."
-msgstr ""
-
-#: libraries/messages.inc.php:108
-msgid "The number of physical writes to the log file."
-msgstr ""
-
-#: libraries/messages.inc.php:109
-msgid "The number of fsync() writes done to the log file."
-msgstr ""
-
-#: libraries/messages.inc.php:110
-msgid "The number of pending log file fsyncs."
-msgstr ""
-
-#: libraries/messages.inc.php:111
-msgid "Pending log file writes."
-msgstr ""
-
-#: libraries/messages.inc.php:112
-msgid "The number of bytes written to the log file."
-msgstr ""
-
-#: libraries/messages.inc.php:113
-msgid "The number of pages created."
-msgstr ""
-
-#: libraries/messages.inc.php:114
-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/messages.inc.php:115
-msgid "The number of pages read."
-msgstr ""
-
-#: libraries/messages.inc.php:116
-msgid "The number of pages written."
-msgstr ""
-
-#: libraries/messages.inc.php:117
-msgid "The number of row locks currently being waited for."
-msgstr ""
-
-#: libraries/messages.inc.php:118
-msgid "The average time to acquire a row lock, in milliseconds."
-msgstr ""
-
-#: libraries/messages.inc.php:119
-msgid "The total time spent in acquiring row locks, in milliseconds."
-msgstr ""
-
-#: libraries/messages.inc.php:120
-msgid "The maximum time to acquire a row lock, in milliseconds."
-msgstr ""
-
-#: libraries/messages.inc.php:121
-msgid "The number of times a row lock had to be waited for."
-msgstr ""
-
-#: libraries/messages.inc.php:122
-msgid "The number of rows deleted from InnoDB tables."
-msgstr ""
-
-#: libraries/messages.inc.php:123
-msgid "The number of rows inserted in InnoDB tables."
-msgstr ""
-
-#: libraries/messages.inc.php:124
-msgid "The number of rows read from InnoDB tables."
-msgstr ""
-
-#: libraries/messages.inc.php:125
-msgid "The number of rows updated in InnoDB tables."
-msgstr ""
-
-#: libraries/messages.inc.php:126
-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/messages.inc.php:127
-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/messages.inc.php:128
-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/messages.inc.php:129
-msgid "The number of requests to read a key block from the cache."
-msgstr ""
-
-#: libraries/messages.inc.php:130
-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/messages.inc.php:131
-msgid "The number of requests to write a key block to the cache."
-msgstr ""
-
-#: libraries/messages.inc.php:132
-msgid "The number of physical writes of a key block to disk."
-msgstr ""
-
-#: libraries/messages.inc.php:133
-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/messages.inc.php:134
-msgid "The number of rows waiting to be written in INSERT DELAYED queues."
-msgstr ""
-
-#: libraries/messages.inc.php:135
-msgid ""
-"The number of tables that have been opened. If opened tables is big, your "
-"table cache value is probably too small."
-msgstr ""
-
-#: libraries/messages.inc.php:136
-msgid "The number of files that are open."
-msgstr ""
-
-#: libraries/messages.inc.php:137
-msgid "The number of streams that are open (used mainly for logging)."
-msgstr ""
-
-#: libraries/messages.inc.php:138
-msgid "The number of tables that are open."
-msgstr ""
-
-#: libraries/messages.inc.php:139
-msgid "The number of free memory blocks in query cache."
-msgstr ""
-
-#: libraries/messages.inc.php:140
-msgid "The amount of free memory for query cache."
-msgstr ""
-
-#: libraries/messages.inc.php:141
-msgid "The number of cache hits."
-msgstr ""
-
-#: libraries/messages.inc.php:142
-msgid "The number of queries added to the cache."
-msgstr ""
-
-#: libraries/messages.inc.php:143
-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 "
-"cache size. The query cache uses a least recently used (LRU) strategy to "
-"decide which queries to remove from the cache."
-msgstr ""
-
-#: libraries/messages.inc.php:144
-msgid ""
-"The number of non-cached queries (not cachable, or not cached due to the "
-"query_cache_type setting)."
-msgstr ""
-
-#: libraries/messages.inc.php:145
-msgid "The number of queries registered in the cache."
-msgstr ""
-
-#: libraries/messages.inc.php:146
-msgid "The total number of blocks in the query cache."
-msgstr ""
-
-#: libraries/messages.inc.php:147
-#, fuzzy
-msgctxt "$strShowStatusReset"
-msgid "Reset"
-msgstr "Поништи"
-
-#: libraries/messages.inc.php:148
-msgid "The status of failsafe replication (not yet implemented)."
-msgstr ""
-
-#: libraries/messages.inc.php:149
-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/messages.inc.php:150
-msgid "The number of joins that used a range search on a reference table."
-msgstr ""
-
-#: libraries/messages.inc.php:151
-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/messages.inc.php:152
-msgid ""
-"The number of joins that used ranges on the first table. (It's normally not "
-"critical even if this is big.)"
-msgstr ""
-
-#: libraries/messages.inc.php:153
-msgid "The number of joins that did a full scan of the first table."
-msgstr ""
-
-#: libraries/messages.inc.php:154
-msgid "The number of temporary tables currently open by the slave SQL thread."
-msgstr ""
-
-#: libraries/messages.inc.php:155
-msgid ""
-"Total (since startup) number of times the replication slave SQL thread has "
-"retried transactions."
-msgstr ""
-
-#: libraries/messages.inc.php:156
-msgid "This is ON if this server is a slave that is connected to a master."
-msgstr ""
-
-#: libraries/messages.inc.php:157
-msgid ""
-"The number of threads that have taken more than slow_launch_time seconds to "
-"create."
-msgstr ""
-
-#: libraries/messages.inc.php:158
-msgid ""
-"The number of queries that have taken more than long_query_time seconds."
-msgstr ""
-
-#: libraries/messages.inc.php:159
-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/messages.inc.php:160
-msgid "The number of sorts that were done with ranges."
-msgstr ""
-
-#: libraries/messages.inc.php:161
-msgid "The number of sorted rows."
-msgstr ""
-
-#: libraries/messages.inc.php:162
-msgid "The number of sorts that were done by scanning the table."
-msgstr ""
-
-#: libraries/messages.inc.php:163
-msgid "The number of times that a table lock was acquired immediately."
-msgstr ""
-
-#: libraries/messages.inc.php:164
-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 "
-"should first optimize your queries, and then either split your table or "
-"tables or use replication."
-msgstr ""
-
-#: libraries/messages.inc.php:165
-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/messages.inc.php:166
-msgid "The number of currently open connections."
-msgstr ""
-
-#: libraries/messages.inc.php:167
-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 "
-"doesn't give a notable performance improvement if you have a good thread "
-"implementation.)"
-msgstr ""
-
-#: libraries/messages.inc.php:168
-msgid "The number of threads that are not sleeping."
-msgstr ""
-
#: libraries/mult_submits.inc.php:76 libraries/tbl_properties.inc.php:513
#: tbl_structure.php:29 tbl_structure.php:153 tbl_structure.php:157
#: tbl_structure.php:473
@@ -4261,8 +3513,8 @@ msgstr ""
#: libraries/replication_gui.lib.php:55 libraries/replication_gui.lib.php:56
#: libraries/replication_gui.lib.php:249 libraries/replication_gui.lib.php:252
-#: libraries/replication_gui.lib.php:259 server_privileges.php:672
-#: server_privileges.php:675 server_privileges.php:682
+#: libraries/replication_gui.lib.php:259 server_privileges.php:711
+#: server_privileges.php:714 server_privileges.php:721
#: server_synchronize.php:1171
msgid "User name"
msgstr "Назив на корисник"
@@ -4281,11 +3533,11 @@ msgid "Slave status"
msgstr ""
#: libraries/replication_gui.lib.php:114 libraries/sql_query_form.lib.php:445
-#: server_status.php:626 server_variables.php:52
+#: server_status.php:737 server_variables.php:52
msgid "Variable"
msgstr "Променлива"
-#: libraries/replication_gui.lib.php:115 server_status.php:627
+#: libraries/replication_gui.lib.php:115 server_status.php:738
#: tbl_change.php:324 tbl_printview.php:370 tbl_select.php:139
#: tbl_structure.php:729
msgid "Value"
@@ -4305,41 +3557,58 @@ msgstr ""
msgid "Add slave replication user"
msgstr ""
-#: libraries/replication_gui.lib.php:254 server_privileges.php:677
+#: libraries/replication_gui.lib.php:254 server_privileges.php:716
msgid "Any user"
msgstr "Било кој корисник"
#: libraries/replication_gui.lib.php:255 libraries/replication_gui.lib.php:323
-#: libraries/replication_gui.lib.php:346 server_privileges.php:678
-#: server_privileges.php:745 server_privileges.php:769
-#: server_privileges.php:1889 server_privileges.php:1919
+#: libraries/replication_gui.lib.php:346 server_privileges.php:717
+#: server_privileges.php:784 server_privileges.php:808
+#: server_privileges.php:1928 server_privileges.php:1958
msgid "Use text field"
msgstr "Користи текст поле"
-#: libraries/replication_gui.lib.php:302 server_privileges.php:725
+#: libraries/replication_gui.lib.php:302 server_privileges.php:764
msgid "Any host"
msgstr "Било кој host"
-#: libraries/replication_gui.lib.php:306 server_privileges.php:729
+#: libraries/replication_gui.lib.php:306 server_privileges.php:768
msgid "Local"
msgstr "Локален"
-#: libraries/replication_gui.lib.php:312 server_privileges.php:734
+#: libraries/replication_gui.lib.php:312 server_privileges.php:773
msgid "This Host"
msgstr "Овој host"
-#: libraries/replication_gui.lib.php:318 server_privileges.php:740
+#: libraries/replication_gui.lib.php:318 server_privileges.php:779
msgid "Use Host Table"
msgstr "Користи ја табелата на host-от"
-#: libraries/replication_gui.lib.php:331 server_privileges.php:753
+#: libraries/replication_gui.lib.php:331 server_privileges.php:792
msgid ""
"When Host table is used, this field is ignored and values stored in Host "
"table are used instead."
msgstr ""
-#: libraries/select_lang.lib.php:480 libraries/select_lang.lib.php:486
-#: libraries/select_lang.lib.php:492
+#. l10n: Text direction, use either ltr or rtl
+#: libraries/select_lang.lib.php:491
+msgid "ltr"
+msgstr "ltr"
+
+#: libraries/select_lang.lib.php:493
+msgid "Content of table __TABLE__"
+msgstr "Содржина на табелата __TABLE__"
+
+#: libraries/select_lang.lib.php:494
+msgid "(continued)"
+msgstr "(продолжува)"
+
+#: libraries/select_lang.lib.php:495
+msgid "Structure of table __TABLE__"
+msgstr "Структура на табелата __TABLE__"
+
+#: libraries/select_lang.lib.php:500 libraries/select_lang.lib.php:506
+#: libraries/select_lang.lib.php:512
#, php-format
msgid "Unknown language: %1$s."
msgstr ""
@@ -4351,7 +3620,7 @@ msgid "Servers"
msgstr "Сервер"
#: libraries/server_links.inc.php:53 server_engines.php:112
-#: server_engines.php:116 server_status.php:304 test/theme.php:105
+#: server_engines.php:116 server_status.php:415 test/theme.php:105
msgid "Variables"
msgstr "Променливи"
@@ -4364,7 +3633,7 @@ msgid "Engines"
msgstr "Складишта"
#: libraries/server_links.inc.php:76 server_binlog.php:110
-#: server_status.php:253 test/theme.php:121
+#: server_status.php:364 test/theme.php:121
msgid "Binary log"
msgstr "Бинарен дневник"
@@ -4837,8 +4106,8 @@ msgstr "Поништи"
msgid "Protocol version"
msgstr ""
-#: main.php:189 server_privileges.php:1350 server_privileges.php:1497
-#: server_privileges.php:1611 server_privileges.php:2029
+#: main.php:189 server_privileges.php:1389 server_privileges.php:1536
+#: server_privileges.php:1650 server_privileges.php:2068
#: server_processlist.php:54
msgid "User"
msgstr "Корисник"
@@ -5217,7 +4486,7 @@ msgstr "%s базата на податоци успешно е избришан
msgid "Databases statistics"
msgstr "Статистика на базата на податоци"
-#: server_databases.php:117 server_status.php:260
+#: server_databases.php:117 server_status.php:371
#: setup/lib/messages.inc.php:117
msgid "Tables"
msgstr "Табели"
@@ -5236,6 +4505,15 @@ msgstr ""
msgid "Jump to database"
msgstr "Базата на податоци не постои"
+#: server_databases.php:267
+msgid "Not replicated"
+msgstr ""
+
+#: server_databases.php:273
+#, fuzzy
+msgid "Replicated"
+msgstr "Релации"
+
#: server_databases.php:289
#, php-format
msgid "Check privileges for database "%s"."
@@ -5269,146 +4547,345 @@ msgstr "Видови на складишта"
msgid "View dump (schema) of databases"
msgstr "Прикажи содржина (шема) на базите"
-#: server_privileges.php:263 server_privileges.php:264
+#: server_privileges.php:24 server_privileges.php:266
+msgid "Includes all privileges except GRANT."
+msgstr "Ги вклучува сите привилегии освен GRANT."
+
+#: server_privileges.php:25 server_privileges.php:192
+#: server_privileges.php:515
+msgid "Allows altering the structure of existing tables."
+msgstr "Дозволува промена на структурата на постоечките табели."
+
+#: server_privileges.php:26 server_privileges.php:208
+#: server_privileges.php:521
+msgid "Allows altering and dropping stored routines."
+msgstr "Дозволува промена и бришење на stored рутини."
+
+#: server_privileges.php:27 server_privileges.php:184
+#: server_privileges.php:514
+msgid "Allows creating new databases and tables."
+msgstr "Дозволува креирање на нови бази на податоци и табели."
+
+#: server_privileges.php:28 server_privileges.php:207
+#: server_privileges.php:520
+msgid "Allows creating stored routines."
+msgstr "Дозволува креирање на stored рутини."
+
+#: server_privileges.php:29 server_privileges.php:514
+msgid "Allows creating new tables."
+msgstr "Дозволува креирање на нови табела."
+
+#: server_privileges.php:30 server_privileges.php:195
+#: server_privileges.php:518
+msgid "Allows creating temporary tables."
+msgstr "Дозволува креирање на привремени табели..."
+
+#: server_privileges.php:31 server_privileges.php:209
+#: server_privileges.php:554
+msgid "Allows creating, dropping and renaming user accounts."
+msgstr "Дозволува креирање, бришење и преименување на корсиничките имиња."
+
+#: server_privileges.php:32 server_privileges.php:199
+#: server_privileges.php:203 server_privileges.php:526
+#: server_privileges.php:530
+msgid "Allows creating new views."
+msgstr "Дозволува креирање на нови погледи."
+
+#: server_privileges.php:33 server_privileges.php:183
+#: server_privileges.php:506
+msgid "Allows deleting data."
+msgstr "Дозволува бришење на податоци."
+
+#: server_privileges.php:34 server_privileges.php:185
+#: server_privileges.php:517
+msgid "Allows dropping databases and tables."
+msgstr "Дозволува бришење на бази на податоци и табели."
+
+#: server_privileges.php:35 server_privileges.php:517
+msgid "Allows dropping tables."
+msgstr "Дозволува бришење на табели."
+
+#: server_privileges.php:36 server_privileges.php:200
+#: server_privileges.php:534
+msgid "Allows to set up events for the event scheduler"
+msgstr ""
+
+#: server_privileges.php:37 server_privileges.php:210
+#: server_privileges.php:522
+msgid "Allows executing stored routines."
+msgstr "Дозволува извршување на stored рутини."
+
+#: server_privileges.php:38 server_privileges.php:189
+#: server_privileges.php:509
+msgid "Allows importing data from and exporting data into files."
+msgstr "Дозволува увоз на податоци и нивен извоз во податотеки."
+
+#: server_privileges.php:39 server_privileges.php:540
+msgid ""
+"Allows adding users and privileges without reloading the privilege tables."
+msgstr ""
+"Дозволува додавање на корисници и привилегии без повтроно вчитавање на "
+"табелата на привилегии."
+
+#: server_privileges.php:40 server_privileges.php:191
+#: server_privileges.php:516
+msgid "Allows creating and dropping indexes."
+msgstr "Дозволува креирање и бришење на клучева."
+
+#: server_privileges.php:41 server_privileges.php:181
+#: server_privileges.php:442 server_privileges.php:504
+msgid "Allows inserting and replacing data."
+msgstr "Дозволува вметнување и замена на података."
+
+#: server_privileges.php:42 server_privileges.php:196
+#: server_privileges.php:549
+msgid "Allows locking tables for the current thread."
+msgstr "Дозволува заклучување на табели на тековните процеси."
+
+#: server_privileges.php:43 server_privileges.php:646
+#: server_privileges.php:648
+msgid "Limits the number of new connections the user may open per hour."
+msgstr ""
+"Го ограничува бројот на нови конекции кои корисникот може да ги отвори за "
+"еден час."
+
+#: server_privileges.php:44 server_privileges.php:634
+#: server_privileges.php:636
+msgid "Limits the number of queries the user may send to the server per hour."
+msgstr ""
+"Го ограничува бројот на упити кои корисникот може да ги постави на серверот "
+"за еден час."
+
+#: server_privileges.php:45 server_privileges.php:640
+#: server_privileges.php:642
+msgid ""
+"Limits the number of commands that change any table or database the user may "
+"execute per hour."
+msgstr ""
+"Го ограничува бројот на команди кои ги менуваат табелите или базите на "
+"податоци кои корисникот може да ги изврши за еден час."
+
+#: server_privileges.php:46 server_privileges.php:652
+#: server_privileges.php:654
+#, fuzzy
+msgid "Limits the number of simultaneous connections the user may have."
+msgstr ""
+"Го ограничува бројот на нови конекции кои корисникот може да ги отвори за "
+"еден час."
+
+#: server_privileges.php:47 server_privileges.php:188
+#: server_privileges.php:544
+msgid "Allows viewing processes of all users"
+msgstr ""
+
+#: server_privileges.php:48 server_privileges.php:190
+#: server_privileges.php:448 server_privileges.php:550
+msgid "Has no effect in this MySQL version."
+msgstr "Нема ефект во оваа верзији на MySQL."
+
+#: server_privileges.php:49 server_privileges.php:186
+#: server_privileges.php:545
+msgid "Allows reloading server settings and flushing the server's caches."
+msgstr ""
+"Дозволува повтоно вчитување на подесувањата на серверот и празнење на кешот "
+"на серверот."
+
+#: server_privileges.php:50 server_privileges.php:198
+#: server_privileges.php:552
+msgid "Allows the user to ask where the slaves / masters are."
+msgstr "Дава права на кориснику да праша каде се главните/помошни сервери."
+
+#: server_privileges.php:51 server_privileges.php:197
+#: server_privileges.php:553
+msgid "Needed for the replication slaves."
+msgstr "Потребно заради помошните сервери за репликација."
+
+#: server_privileges.php:52 server_privileges.php:180
+#: server_privileges.php:439 server_privileges.php:503
+msgid "Allows reading data."
+msgstr "Дозволува читање на податоци."
+
+#: server_privileges.php:53 server_privileges.php:193
+#: server_privileges.php:547
+msgid "Gives access to the complete list of databases."
+msgstr "Дава пристап на комплетната листа на базите на податоци."
+
+#: server_privileges.php:54 server_privileges.php:204
+#: server_privileges.php:206 server_privileges.php:519
+msgid "Allows performing SHOW CREATE VIEW queries."
+msgstr "Дозволува извршување на SHOW CREATE VIEW упити."
+
+#: server_privileges.php:55 server_privileges.php:187
+#: server_privileges.php:546
+msgid "Allows shutting down the server."
+msgstr "Дозволува гасење на серверот."
+
+#: server_privileges.php:56 server_privileges.php:194
+#: server_privileges.php:543
+msgid ""
+"Allows connecting, even if maximum number of connections is reached; "
+"required for most administrative operations like setting global variables or "
+"killing threads of other users."
+msgstr ""
+" Дозволува поврзување иако е постигнат макслималниот број на врски; "
+"Неопходно за повеќето административни опции како што е подесување на "
+"глобални променливи или прекин на процеси наостанатите корисници."
+
+#: server_privileges.php:57 server_privileges.php:201
+#: server_privileges.php:535
+#, fuzzy
+msgid "Allows creating and dropping triggers"
+msgstr "Дозволува креирање и бришење на клучева."
+
+#: server_privileges.php:58 server_privileges.php:182
+#: server_privileges.php:445 server_privileges.php:505
+msgid "Allows changing data."
+msgstr "Дозволува измена на податоци."
+
+#: server_privileges.php:59 server_privileges.php:260
+msgid "No privileges."
+msgstr "Нема привилегии."
+
+#: server_privileges.php:302 server_privileges.php:303
#, fuzzy
#| msgid "None"
msgctxt "None privileges"
msgid "None"
msgstr "нема"
-#: server_privileges.php:392 server_privileges.php:527
-#: server_privileges.php:1679 server_privileges.php:1685
+#: server_privileges.php:431 server_privileges.php:566
+#: server_privileges.php:1718 server_privileges.php:1724
msgid "Table-specific privileges"
msgstr "Привилегии поврзани со табелата"
-#: server_privileges.php:393 server_privileges.php:535
-#: server_privileges.php:1501
+#: server_privileges.php:432 server_privileges.php:574
+#: server_privileges.php:1540
msgid " Note: MySQL privilege names are expressed in English "
msgstr ""
" Напомена: MySQL имињата на привилегите мора да бидат со латинични букви "
-#: server_privileges.php:524 server_privileges.php:1500
+#: server_privileges.php:563 server_privileges.php:1539
msgid "Global privileges"
msgstr "Глобални привилегии"
-#: server_privileges.php:526 server_privileges.php:1679
+#: server_privileges.php:565 server_privileges.php:1718
msgid "Database-specific privileges"
msgstr "Привилегии во врска со базата на податоци"
-#: server_privileges.php:571
+#: server_privileges.php:610
msgid "Administration"
msgstr "Администрација"
-#: server_privileges.php:591
+#: server_privileges.php:630
msgid "Resource limits"
msgstr "Ограничување на ресурси"
-#: server_privileges.php:592
+#: server_privileges.php:631
msgid "Note: Setting these options to 0 (zero) removes the limit."
msgstr ""
"Напомена: Поставувањето на овие опции на 0 (нула) ги отстранува "
"ограничувањата."
-#: server_privileges.php:669
+#: server_privileges.php:708
msgid "Login Information"
msgstr "Податоци за најавувањето"
-#: server_privileges.php:763
+#: server_privileges.php:802
msgid "Do not change the password"
msgstr "Немој да ја менуваш лозинката"
-#: server_privileges.php:804 server_privileges.php:2166
+#: server_privileges.php:843 server_privileges.php:2205
#, fuzzy
#| msgid "No user(s) found."
msgid "No user found."
msgstr "Корисникот не е пронајден."
-#: server_privileges.php:848
+#: server_privileges.php:887
#, php-format
msgid "The user %s already exists!"
msgstr "Корисник %s веќе постои!"
-#: server_privileges.php:931
+#: server_privileges.php:970
msgid "You have added a new user."
msgstr "Додадовте нов корисник."
-#: server_privileges.php:1152
+#: server_privileges.php:1191
#, php-format
msgid "You have updated the privileges for %s."
msgstr "Ги ажуриравте привилегиите за %s."
-#: server_privileges.php:1176
+#: server_privileges.php:1215
#, php-format
msgid "You have revoked the privileges for %s"
msgstr "Ги забранивте привилегиите за %s"
-#: server_privileges.php:1212
+#: server_privileges.php:1251
#, php-format
msgid "The password for %s was changed successfully."
msgstr "Лозинката за %s успешно е променета."
-#: server_privileges.php:1232
+#: server_privileges.php:1271
#, php-format
msgid "Deleting %s"
msgstr "Бришам %s"
-#: server_privileges.php:1243
+#: server_privileges.php:1282
msgid "No users selected for deleting!"
msgstr ""
-#: server_privileges.php:1246
+#: server_privileges.php:1285
msgid "Reloading the privileges"
msgstr "Повторно ги вчитувам привилегиите"
-#: server_privileges.php:1261
+#: server_privileges.php:1300
msgid "The selected users have been deleted successfully."
msgstr "Изабраните корисници успешно се избришани."
-#: server_privileges.php:1296
+#: server_privileges.php:1335
msgid "The privileges were reloaded successfully."
msgstr "Привилегиите се успешно вчитани."
-#: server_privileges.php:1324 server_privileges.php:1610
+#: server_privileges.php:1363 server_privileges.php:1649
msgid "Edit Privileges"
msgstr "Промена на привилегии"
-#: server_privileges.php:1333
+#: server_privileges.php:1372
msgid "Revoke"
msgstr "Забрани"
-#: server_privileges.php:1365
+#: server_privileges.php:1404
msgid "User overview"
msgstr "Преглед на корисници"
-#: server_privileges.php:1502 server_privileges.php:1684
-#: server_privileges.php:2033
+#: server_privileges.php:1541 server_privileges.php:1723
+#: server_privileges.php:2072
msgid "Grant"
msgstr "Овозможи"
-#: server_privileges.php:1521 server_privileges.php:2123
+#: server_privileges.php:1560 server_privileges.php:2162
msgid "Any"
msgstr "Било кој"
-#: server_privileges.php:1570 server_privileges.php:1594
-#: server_privileges.php:1988 server_privileges.php:2177
+#: server_privileges.php:1609 server_privileges.php:1633
+#: server_privileges.php:2027 server_privileges.php:2216
msgid "Add a new User"
msgstr "Додади нов корисник"
-#: server_privileges.php:1575
+#: server_privileges.php:1614
msgid "Remove selected users"
msgstr "Избриши ги селектираните корисници"
-#: server_privileges.php:1578
+#: server_privileges.php:1617
msgid "Revoke all active privileges from the users and delete them afterwards."
msgstr "Одземи ги сите привилегии на активните корисници а потоа избриши ги."
-#: server_privileges.php:1579 server_privileges.php:1580
-#: server_privileges.php:1581
+#: server_privileges.php:1618 server_privileges.php:1619
+#: server_privileges.php:1620
msgid "Drop the databases that have the same names as the users."
msgstr ""
"Избриши ги базите на податоци кои се именувани исто како и корисниците."
-#: server_privileges.php:1597
+#: server_privileges.php:1636
#, php-format
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
@@ -5422,49 +4899,49 @@ msgstr ""
"измени. Во тој случај %sповторно вчитајте ги привилегиите%s пред да "
"продолжите со работа."
-#: server_privileges.php:1645
+#: server_privileges.php:1684
msgid "The selected user was not found in the privilege table."
msgstr "Изабраниот корисник не е пронајден во табелата на привилегии."
-#: server_privileges.php:1685
+#: server_privileges.php:1724
msgid "Column-specific privileges"
msgstr "Привилегии врзани за колоните"
-#: server_privileges.php:1886
+#: server_privileges.php:1925
msgid "Add privileges on the following database"
msgstr "Додади привилегии на следната база"
-#: server_privileges.php:1904
+#: server_privileges.php:1943
msgid "Wildcards % and _ should be escaped with a \\ to use them literally"
msgstr ""
"Пред џокер знаците _ и % треба да стои знакот \\ ако ги користите самостојно"
-#: server_privileges.php:1907
+#: server_privileges.php:1946
msgid "Add privileges on the following table"
msgstr "Додади привилегии на следната табела"
-#: server_privileges.php:1964
+#: server_privileges.php:2003
msgid "Change Login Information / Copy User"
msgstr "Промени ги информациите за најавувањето / Копирај го корисникот"
-#: server_privileges.php:1967
+#: server_privileges.php:2006
msgid "Create a new user with the same privileges and ..."
msgstr "Направи нов корисник со исти привилегии и ..."
-#: server_privileges.php:1969
+#: server_privileges.php:2008
msgid "... keep the old one."
msgstr "... сочувај го стариот."
-#: server_privileges.php:1970
+#: server_privileges.php:2009
msgid " ... delete the old one from the user tables."
msgstr " ... избриши ги старите од табелата на корисници."
-#: server_privileges.php:1971
+#: server_privileges.php:2010
msgid ""
" ... revoke all active privileges from the old one and delete it afterwards."
msgstr " ... прво одземи ги сите привилегии на корисниците а потоа избриши ги."
-#: server_privileges.php:1972
+#: server_privileges.php:2011
msgid ""
" ... delete the old one from the user tables and reload the privileges "
"afterwards."
@@ -5472,44 +4949,44 @@ msgstr ""
" ... избриши го стариот корисник од табелата на корисници а потоа повторно "
"вчитај ги привилегиите."
-#: server_privileges.php:1994
+#: server_privileges.php:2033
msgid "Database for user"
msgstr ""
-#: server_privileges.php:1998
+#: server_privileges.php:2037
#, fuzzy
#| msgid "None"
msgctxt "Create none database for user"
msgid "None"
msgstr "нема"
-#: server_privileges.php:1999
+#: server_privileges.php:2038
msgid "Create database with same name and grant all privileges"
msgstr ""
-#: server_privileges.php:2000
+#: server_privileges.php:2039
msgid "Grant all privileges on wildcard name (username\\_%)"
msgstr ""
-#: server_privileges.php:2003
+#: server_privileges.php:2042
#, fuzzy, php-format
msgid "Grant all privileges on database "%s""
msgstr "Провери привилегии за базата на податоци "%s"."
-#: server_privileges.php:2026
+#: server_privileges.php:2065
#, php-format
msgid "Users having access to "%s""
msgstr "Корисници кои имаат пристап "%s""
-#: server_privileges.php:2134
+#: server_privileges.php:2173
msgid "global"
msgstr "глобално"
-#: server_privileges.php:2136
+#: server_privileges.php:2175
msgid "database-specific"
msgstr "Специфично за базата на податоци"
-#: server_privileges.php:2138
+#: server_privileges.php:2177
msgid "wildcard"
msgstr "џокер"
@@ -5556,7 +5033,7 @@ msgstr ""
msgid "This server is configured as master in a replication process."
msgstr ""
-#: server_replication.php:184 server_status.php:281
+#: server_replication.php:184 server_status.php:392
msgid "Show master status"
msgstr ""
@@ -5694,106 +5171,638 @@ msgid ""
"like to configure it?"
msgstr ""
+#: server_status.php:40
+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 ""
+
+#: server_status.php:41
+msgid "The number of transactions that used the temporary binary log cache."
+msgstr ""
+
+#: server_status.php:42
+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 "
+"to increase the tmp_table_size value to cause temporary tables to be memory-"
+"based instead of disk-based."
+msgstr ""
+
+#: server_status.php:43
+msgid "How many temporary files mysqld has created."
+msgstr ""
+
+#: server_status.php:44
+msgid ""
+"The number of in-memory temporary tables created automatically by the server "
+"while executing statements."
+msgstr ""
+
+#: server_status.php:45
+msgid ""
+"The number of rows written with INSERT DELAYED for which some error occurred "
+"(probably duplicate key)."
+msgstr ""
+
#: server_status.php:46
+msgid ""
+"The number of INSERT DELAYED handler threads in use. Every different table "
+"on which one uses INSERT DELAYED gets its own thread."
+msgstr ""
+
+#: server_status.php:47
+msgid "The number of INSERT DELAYED rows written."
+msgstr ""
+
+#: server_status.php:48
+msgid "The number of executed FLUSH statements."
+msgstr ""
+
+#: server_status.php:49
+msgid "The number of internal COMMIT statements."
+msgstr ""
+
+#: server_status.php:50
+msgid "The number of times a row was deleted from a table."
+msgstr ""
+
+#: server_status.php:51
+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 ""
+
+#: server_status.php:52
+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 ""
+
+#: server_status.php:53
+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 ""
+
+#: server_status.php:54
+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 ""
+
+#: server_status.php:55
+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 ""
+
+#: server_status.php:56
+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 "
+"probably have a lot of queries that require MySQL to scan whole tables or "
+"you have joins that don't use keys properly."
+msgstr ""
+
+#: server_status.php:57
+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 "
+"tables are not properly indexed or that your queries are not written to take "
+"advantage of the indexes you have."
+msgstr ""
+
+#: server_status.php:58
+msgid "The number of internal ROLLBACK statements."
+msgstr ""
+
+#: server_status.php:59
+msgid "The number of requests to update a row in a table."
+msgstr ""
+
+#: server_status.php:60
+msgid "The number of requests to insert a row in a table."
+msgstr ""
+
+#: server_status.php:61
+msgid "The number of pages containing data (dirty or clean)."
+msgstr ""
+
+#: server_status.php:62
+msgid "The number of pages currently dirty."
+msgstr ""
+
+#: server_status.php:63
+msgid "The number of buffer pool pages that have been requested to be flushed."
+msgstr ""
+
+#: server_status.php:64
+msgid "The number of free pages."
+msgstr ""
+
+#: server_status.php:65
+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 ""
+
+#: server_status.php:66
+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 "
+"be calculated as Innodb_buffer_pool_pages_total - "
+"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data."
+msgstr ""
+
+#: server_status.php:67
+msgid "Total size of buffer pool, in pages."
+msgstr ""
+
+#: server_status.php:68
+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 ""
+
+#: server_status.php:69
+msgid ""
+"The number of sequential read-aheads InnoDB initiated. This happens when "
+"InnoDB does a sequential full table scan."
+msgstr ""
+
+#: server_status.php:70
+msgid "The number of logical read requests InnoDB has done."
+msgstr ""
+
+#: server_status.php:71
+msgid ""
+"The number of logical reads that InnoDB could not satisfy from buffer pool "
+"and had to do a single-page read."
+msgstr ""
+
+#: server_status.php:72
+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 "
+"available, it's necessary to wait for pages to be flushed first. This "
+"counter counts instances of these waits. If the buffer pool size was set "
+"properly, this value should be small."
+msgstr ""
+
+#: server_status.php:73
+msgid "The number writes done to the InnoDB buffer pool."
+msgstr ""
+
+#: server_status.php:74
+msgid "The number of fsync() operations so far."
+msgstr ""
+
+#: server_status.php:75
+msgid "The current number of pending fsync() operations."
+msgstr ""
+
+#: server_status.php:76
+msgid "The current number of pending reads."
+msgstr ""
+
+#: server_status.php:77
+msgid "The current number of pending writes."
+msgstr ""
+
+#: server_status.php:78
+msgid "The amount of data read so far, in bytes."
+msgstr ""
+
+#: server_status.php:79
+msgid "The total number of data reads."
+msgstr ""
+
+#: server_status.php:80
+msgid "The total number of data writes."
+msgstr ""
+
+#: server_status.php:81
+msgid "The amount of data written so far, in bytes."
+msgstr ""
+
+#: server_status.php:82
+msgid "The number of pages that have been written for doublewrite operations."
+msgstr ""
+
+#: server_status.php:83
+msgid "The number of doublewrite operations that have been performed."
+msgstr ""
+
+#: server_status.php:84
+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 ""
+
+#: server_status.php:85
+msgid "The number of log write requests."
+msgstr ""
+
+#: server_status.php:86
+msgid "The number of physical writes to the log file."
+msgstr ""
+
+#: server_status.php:87
+msgid "The number of fsync() writes done to the log file."
+msgstr ""
+
+#: server_status.php:88
+msgid "The number of pending log file fsyncs."
+msgstr ""
+
+#: server_status.php:89
+msgid "Pending log file writes."
+msgstr ""
+
+#: server_status.php:90
+msgid "The number of bytes written to the log file."
+msgstr ""
+
+#: server_status.php:91
+msgid "The number of pages created."
+msgstr ""
+
+#: server_status.php:92
+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 ""
+
+#: server_status.php:93
+msgid "The number of pages read."
+msgstr ""
+
+#: server_status.php:94
+msgid "The number of pages written."
+msgstr ""
+
+#: server_status.php:95
+msgid "The number of row locks currently being waited for."
+msgstr ""
+
+#: server_status.php:96
+msgid "The average time to acquire a row lock, in milliseconds."
+msgstr ""
+
+#: server_status.php:97
+msgid "The total time spent in acquiring row locks, in milliseconds."
+msgstr ""
+
+#: server_status.php:98
+msgid "The maximum time to acquire a row lock, in milliseconds."
+msgstr ""
+
+#: server_status.php:99
+msgid "The number of times a row lock had to be waited for."
+msgstr ""
+
+#: server_status.php:100
+msgid "The number of rows deleted from InnoDB tables."
+msgstr ""
+
+#: server_status.php:101
+msgid "The number of rows inserted in InnoDB tables."
+msgstr ""
+
+#: server_status.php:102
+msgid "The number of rows read from InnoDB tables."
+msgstr ""
+
+#: server_status.php:103
+msgid "The number of rows updated in InnoDB tables."
+msgstr ""
+
+#: server_status.php:104
+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 ""
+
+#: server_status.php:105
+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 ""
+
+#: server_status.php:106
+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 ""
+
+#: server_status.php:107
+msgid "The number of requests to read a key block from the cache."
+msgstr ""
+
+#: server_status.php:108
+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 ""
+
+#: server_status.php:109
+msgid "The number of requests to write a key block to the cache."
+msgstr ""
+
+#: server_status.php:110
+msgid "The number of physical writes of a key block to disk."
+msgstr ""
+
+#: server_status.php:111
+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 ""
+
+#: server_status.php:112
+msgid "The number of rows waiting to be written in INSERT DELAYED queues."
+msgstr ""
+
+#: server_status.php:113
+msgid ""
+"The number of tables that have been opened. If opened tables is big, your "
+"table cache value is probably too small."
+msgstr ""
+
+#: server_status.php:114
+msgid "The number of files that are open."
+msgstr ""
+
+#: server_status.php:115
+msgid "The number of streams that are open (used mainly for logging)."
+msgstr ""
+
+#: server_status.php:116
+msgid "The number of tables that are open."
+msgstr ""
+
+#: server_status.php:117
+msgid "The number of free memory blocks in query cache."
+msgstr ""
+
+#: server_status.php:118
+msgid "The amount of free memory for query cache."
+msgstr ""
+
+#: server_status.php:119
+msgid "The number of cache hits."
+msgstr ""
+
+#: server_status.php:120
+msgid "The number of queries added to the cache."
+msgstr ""
+
+#: server_status.php:121
+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 "
+"cache size. The query cache uses a least recently used (LRU) strategy to "
+"decide which queries to remove from the cache."
+msgstr ""
+
+#: server_status.php:122
+msgid ""
+"The number of non-cached queries (not cachable, or not cached due to the "
+"query_cache_type setting)."
+msgstr ""
+
+#: server_status.php:123
+msgid "The number of queries registered in the cache."
+msgstr ""
+
+#: server_status.php:124
+msgid "The total number of blocks in the query cache."
+msgstr ""
+
+#: server_status.php:125
+#, fuzzy
+msgctxt "$strShowStatusReset"
+msgid "Reset"
+msgstr "Поништи"
+
+#: server_status.php:126
+msgid "The status of failsafe replication (not yet implemented)."
+msgstr ""
+
+#: server_status.php:127
+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 ""
+
+#: server_status.php:128
+msgid "The number of joins that used a range search on a reference table."
+msgstr ""
+
+#: server_status.php:129
+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 ""
+
+#: server_status.php:130
+msgid ""
+"The number of joins that used ranges on the first table. (It's normally not "
+"critical even if this is big.)"
+msgstr ""
+
+#: server_status.php:131
+msgid "The number of joins that did a full scan of the first table."
+msgstr ""
+
+#: server_status.php:132
+msgid "The number of temporary tables currently open by the slave SQL thread."
+msgstr ""
+
+#: server_status.php:133
+msgid ""
+"Total (since startup) number of times the replication slave SQL thread has "
+"retried transactions."
+msgstr ""
+
+#: server_status.php:134
+msgid "This is ON if this server is a slave that is connected to a master."
+msgstr ""
+
+#: server_status.php:135
+msgid ""
+"The number of threads that have taken more than slow_launch_time seconds to "
+"create."
+msgstr ""
+
+#: server_status.php:136
+msgid ""
+"The number of queries that have taken more than long_query_time seconds."
+msgstr ""
+
+#: server_status.php:137
+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 ""
+
+#: server_status.php:138
+msgid "The number of sorts that were done with ranges."
+msgstr ""
+
+#: server_status.php:139
+msgid "The number of sorted rows."
+msgstr ""
+
+#: server_status.php:140
+msgid "The number of sorts that were done by scanning the table."
+msgstr ""
+
+#: server_status.php:141
+msgid "The number of times that a table lock was acquired immediately."
+msgstr ""
+
+#: server_status.php:142
+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 "
+"should first optimize your queries, and then either split your table or "
+"tables or use replication."
+msgstr ""
+
+#: server_status.php:143
+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 ""
+
+#: server_status.php:144
+msgid "The number of currently open connections."
+msgstr ""
+
+#: server_status.php:145
+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 "
+"doesn't give a notable performance improvement if you have a good thread "
+"implementation.)"
+msgstr ""
+
+#: server_status.php:146
+msgid "The number of threads that are not sleeping."
+msgstr ""
+
+#: server_status.php:157
msgid "Runtime Information"
msgstr "Информации за работата"
-#: server_status.php:250
+#: server_status.php:361
msgid "Handler"
msgstr ""
-#: server_status.php:251
+#: server_status.php:362
#, fuzzy
msgid "Query cache"
msgstr "Вид на упит"
-#: server_status.php:252
+#: server_status.php:363
msgid "Threads"
msgstr ""
-#: server_status.php:254
+#: server_status.php:365
msgid "Temporary data"
msgstr ""
-#: server_status.php:255
+#: server_status.php:366
#, fuzzy
msgid "Delayed inserts"
msgstr "Користи одложен внес"
-#: server_status.php:256
+#: server_status.php:367
msgid "Key cache"
msgstr ""
-#: server_status.php:257
+#: server_status.php:368
msgid "Joins"
msgstr ""
-#: server_status.php:259
+#: server_status.php:370
msgid "Sorting"
msgstr ""
-#: server_status.php:261
+#: server_status.php:372
msgid "Transaction coordinator"
msgstr ""
-#: server_status.php:271
+#: server_status.php:382
msgid "Flush (close) all tables"
msgstr ""
-#: server_status.php:273
+#: server_status.php:384
#, fuzzy
msgid "Show open tables"
msgstr "Прикажи табели"
-#: server_status.php:278
+#: server_status.php:389
msgid "Show slave hosts"
msgstr ""
-#: server_status.php:284
+#: server_status.php:395
msgid "Show slave status"
msgstr ""
-#: server_status.php:289
+#: server_status.php:400
msgid "Flush query cache"
msgstr ""
-#: server_status.php:294
+#: server_status.php:405
msgid "Show processes"
msgstr "Прикажи листа на процеси"
-#: server_status.php:344
+#: server_status.php:455
#, fuzzy
#| msgid "Reset"
msgctxt "for Show status"
msgid "Reset"
msgstr "Поништи"
-#: server_status.php:350
+#: server_status.php:461
#, php-format
msgid "This MySQL server has been running for %s. It started up on %s."
msgstr "Овој MySQL сервер работи %s. Стартуван е на %s."
-#: server_status.php:360
+#: server_status.php:471
msgid ""
"This MySQL server works as master and slave in replication"
"b> process."
msgstr ""
-#: server_status.php:362
+#: server_status.php:473
msgid "This MySQL server works as master in replication process."
msgstr ""
-#: server_status.php:364
+#: server_status.php:475
msgid "This MySQL server works as slave in replication process."
msgstr ""
-#: server_status.php:366
+#: server_status.php:477
msgid ""
"For further information about replication status on the server, please visit "
"the replication section."
msgstr ""
-#: server_status.php:383
+#: server_status.php:494
msgid ""
"Server traffic: These tables show the network traffic statistics of "
"this MySQL server since its startup."
@@ -5801,46 +5810,46 @@ msgstr ""
"Сообраќај на серверот: Во табелите прикажан е мрежниот сообраќај на "
"овој MySQL сервер од моментот на неговото стартување."
-#: server_status.php:388
+#: server_status.php:499
msgid "Traffic"
msgstr "Сообраќај"
-#: server_status.php:388
+#: server_status.php:499
msgid ""
"On a busy server, the byte counters may overrun, so those statistics as "
"reported by the MySQL server may be incorrect."
msgstr ""
-#: server_status.php:389 server_status.php:434 server_status.php:497
-#: server_status.php:555
+#: server_status.php:500 server_status.php:545 server_status.php:608
+#: server_status.php:666
msgid "per hour"
msgstr "на час"
-#: server_status.php:394
+#: server_status.php:505
msgid "Received"
msgstr "Примено"
-#: server_status.php:404
+#: server_status.php:515
msgid "Sent"
msgstr "Пратено"
-#: server_status.php:433
+#: server_status.php:544
msgid "Connections"
msgstr "Конекции"
-#: server_status.php:440
+#: server_status.php:551
msgid "max. concurrent connections"
msgstr ""
-#: server_status.php:447
+#: server_status.php:558
msgid "Failed attempts"
msgstr "Неуспешни обиди"
-#: server_status.php:461
+#: server_status.php:572
msgid "Aborted"
msgstr "Прекинато"
-#: server_status.php:490
+#: server_status.php:601
#, php-format
msgid ""
"Query statistics: Since its startup, %s queries have been sent to the "
@@ -5849,19 +5858,19 @@ msgstr ""
"Статистики на упити: %s упити се поставени на серверот од времето на "
"неговото стартување."
-#: server_status.php:498
+#: server_status.php:609
msgid "per minute"
msgstr "во минута"
-#: server_status.php:499
+#: server_status.php:610
msgid "per second"
msgstr "во секунда"
-#: server_status.php:554
+#: server_status.php:665
msgid "Query type"
msgstr "Вид на упит"
-#: server_status.php:721
+#: server_status.php:832
msgid "Replication status"
msgstr ""
diff --git a/po/mn.po b/po/mn.po
index 4b03e2c32..20b77ba03 100755
--- a/po/mn.po
+++ b/po/mn.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-06-04 16:07-0400\n"
+"POT-Creation-Date: 2010-06-08 12:32-0400\n"
"PO-Revision-Date: 2010-03-12 09:17+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: mongolian \n"
@@ -14,11 +14,11 @@ msgstr ""
"X-Generator: Translate Toolkit 1.5.3\n"
#: browse_foreigners.php:38 browse_foreigners.php:59
-#: libraries/display_tbl.lib.php:417 server_privileges.php:1475
+#: libraries/display_tbl.lib.php:417 server_privileges.php:1514
msgid "Show all"
msgstr "Бүгдийг харах"
-#: browse_foreigners.php:82 libraries/common.lib.php:2304
+#: browse_foreigners.php:82 libraries/common.lib.php:2313
#: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:394
#: libraries/export/pdf.php:147 pdf_schema.php:283 pdf_schema.php:1123
#: pdf_schema.php:1139
@@ -36,8 +36,8 @@ msgstr ""
#: browse_foreigners.php:150 db_structure.php:79 db_structure.php:80
#: db_structure.php:91 db_structure.php:93 db_structure.php:104
-#: db_structure.php:106 libraries/common.lib.php:2822
-#: libraries/common.lib.php:2829 libraries/db_links.inc.php:75
+#: db_structure.php:106 libraries/common.lib.php:2831
+#: libraries/common.lib.php:2838 libraries/db_links.inc.php:75
#: libraries/tbl_links.inc.php:63
msgid "Search"
msgstr "Хайх"
@@ -47,7 +47,7 @@ msgstr "Хайх"
#: db_structure.php:567 js/messages.php:48 libraries/Config.class.php:1046
#: libraries/Theme_Manager.class.php:311
#: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719
-#: libraries/common.lib.php:1333 libraries/common.lib.php:2279
+#: libraries/common.lib.php:1335 libraries/common.lib.php:2288
#: libraries/display_change_password.lib.php:82
#: libraries/display_create_table.lib.php:63
#: libraries/display_export.lib.php:275 libraries/display_import.lib.php:276
@@ -58,9 +58,9 @@ msgstr "Хайх"
#: libraries/sql_query_form.lib.php:552 libraries/tbl_properties.inc.php:782
#: main.php:128 navigation.php:237 pdf_pages.php:292 pdf_pages.php:328
#: pdf_pages.php:530 pmd_pdf.php:116 server_binlog.php:142
-#: server_privileges.php:625 server_privileges.php:1585
-#: server_privileges.php:1932 server_privileges.php:1979
-#: server_privileges.php:2018 server_replication.php:235
+#: server_privileges.php:664 server_privileges.php:1624
+#: server_privileges.php:1971 server_privileges.php:2018
+#: server_privileges.php:2057 server_replication.php:235
#: server_replication.php:318 server_replication.php:341
#: server_synchronize.php:1209 tbl_change.php:330 tbl_change.php:1174
#: tbl_change.php:1211 tbl_indexes.php:254 tbl_operations.php:265
@@ -78,7 +78,7 @@ msgstr "Түлхүүрийн нэр"
#: browse_foreigners.php:169 browse_foreigners.php:171
#: server_collations.php:55 server_collations.php:67 server_engines.php:59
-#: server_status.php:628
+#: server_status.php:739
msgid "Description"
msgstr "Тайлбар"
@@ -119,7 +119,7 @@ msgstr "Баганын нэрс"
#: libraries/db_structure.lib.php:60 libraries/export/htmlword.php:245
#: libraries/export/latex.php:360 libraries/export/odt.php:297
#: libraries/export/texytext.php:234 libraries/tbl_properties.inc.php:100
-#: pdf_schema.php:1263 pdf_schema.php:1284 server_privileges.php:2031
+#: pdf_schema.php:1263 pdf_schema.php:1284 server_privileges.php:2070
#: tbl_change.php:287 tbl_change.php:314 tbl_printview.php:143
#: tbl_printview.php:313 tbl_select.php:136 tbl_structure.php:178
#: tbl_structure.php:659 tbl_tracking.php:274 tbl_tracking.php:321
@@ -163,9 +163,9 @@ msgstr "Тайлбар"
#: libraries/Index.class.php:386 libraries/export/htmlword.php:322
#: libraries/export/latex.php:430 libraries/export/odt.php:368
#: libraries/export/texytext.php:311 libraries/mult_submits.inc.php:263
-#: pdf_schema.php:1344 server_privileges.php:1529 server_privileges.php:1540
-#: server_privileges.php:1850 server_privileges.php:1855
-#: server_privileges.php:2148 sql.php:132 sql.php:194 tbl_printview.php:229
+#: pdf_schema.php:1344 server_privileges.php:1568 server_privileges.php:1579
+#: server_privileges.php:1889 server_privileges.php:1894
+#: server_privileges.php:2187 sql.php:132 sql.php:194 tbl_printview.php:229
#: tbl_structure.php:350 tbl_tracking.php:337 tbl_tracking.php:342
msgid "No"
msgstr "Үгүй"
@@ -179,9 +179,9 @@ msgstr "Үгүй"
#: libraries/mult_submits.inc.php:101 libraries/mult_submits.inc.php:106
#: libraries/mult_submits.inc.php:111 libraries/mult_submits.inc.php:262
#: libraries/mult_submits.inc.php:273 pdf_schema.php:1344
-#: server_databases.php:64 server_privileges.php:1526
-#: server_privileges.php:1540 server_privileges.php:1850
-#: server_privileges.php:1853 server_privileges.php:2148 sql.php:193
+#: server_databases.php:64 server_privileges.php:1565
+#: server_privileges.php:1579 server_privileges.php:1889
+#: server_privileges.php:1892 server_privileges.php:2187 sql.php:193
#: tbl_printview.php:229 tbl_structure.php:40 tbl_structure.php:350
#: tbl_tracking.php:335 tbl_tracking.php:340
msgid "Yes"
@@ -278,7 +278,7 @@ msgstr "Хуулагдсан ӨС руу шилжих"
msgid "BLOB Repository"
msgstr ""
-#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1350
+#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1352
#: libraries/server_links.inc.php:49 server_processlist.php:59
#: tbl_tracking.php:596 test/theme.php:101
msgid "Status"
@@ -341,8 +341,8 @@ msgstr "PDF-хуудаснуудыг засах"
#: db_printview.php:104 db_tracking.php:72 db_tracking.php:157
#: libraries/db_structure.lib.php:46 libraries/export/xml.php:328
-#: libraries/header.inc.php:126 pdf_pages.php:424 server_privileges.php:1626
-#: server_privileges.php:1682 server_privileges.php:1946
+#: libraries/header.inc.php:126 pdf_pages.php:424 server_privileges.php:1665
+#: server_privileges.php:1721 server_privileges.php:1985
#: server_synchronize.php:423 server_synchronize.php:866 tbl_tracking.php:592
#: test/theme.php:75
msgid "Table"
@@ -443,7 +443,7 @@ msgstr "Устгах"
#: db_qbe.php:370 db_qbe.php:451 db_qbe.php:522 db_qbe.php:553
#: libraries/display_import.lib.php:166 libraries/tbl_properties.inc.php:779
-#: server_privileges.php:258 tbl_change.php:1031 tbl_indexes.php:250
+#: server_privileges.php:297 tbl_change.php:1031 tbl_indexes.php:250
#: tbl_select.php:288
msgid "Or"
msgstr "Эсвэл"
@@ -477,7 +477,7 @@ msgstr "Хүснэгт хэрэглэх"
msgid "SQL query on database %s:"
msgstr "ӨС %s дахь SQL-асуулт:"
-#: db_qbe.php:934 libraries/common.lib.php:1223
+#: db_qbe.php:934 libraries/common.lib.php:1225
msgid "Submit Query"
msgstr "Асуултыг илгээх"
@@ -516,7 +516,7 @@ msgstr "%s олдоц(ууд) хүснэгт %s-д"
#: db_search.php:267 db_structure.php:77 db_structure.php:78
#: db_structure.php:90 db_structure.php:92 db_structure.php:103
-#: db_structure.php:105 libraries/common.lib.php:2824
+#: db_structure.php:105 libraries/common.lib.php:2833
#: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50
#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:467
msgid "Browse"
@@ -563,26 +563,26 @@ msgstr "Хүснэгт(үүд) дотор:"
#: db_structure.php:81 db_structure.php:82 db_structure.php:94
#: db_structure.php:95 db_structure.php:107 db_structure.php:108
-#: libraries/common.lib.php:2823 libraries/sql_query_form.lib.php:334
+#: libraries/common.lib.php:2832 libraries/sql_query_form.lib.php:334
#: libraries/sql_query_form.lib.php:337 libraries/tbl_links.inc.php:76
msgid "Insert"
msgstr "Оруулах"
#: db_structure.php:83 db_structure.php:96 db_structure.php:109
-#: libraries/common.lib.php:2820 libraries/common.lib.php:2827
+#: libraries/common.lib.php:2829 libraries/common.lib.php:2836
#: libraries/db_links.inc.php:63 libraries/export/htmlword.php:23
#: libraries/export/latex.php:33 libraries/export/latex.php:337
#: libraries/export/odt.php:32 libraries/export/sql.php:60
#: libraries/export/texytext.php:23 libraries/import.lib.php:1104
#: libraries/tbl_links.inc.php:56 pmd_general.php:134
-#: server_privileges.php:554 server_replication.php:315 tbl_tracking.php:269
+#: server_privileges.php:593 server_replication.php:315 tbl_tracking.php:269
msgid "Structure"
msgstr "Бүтэц"
#: db_structure.php:84 db_structure.php:85 db_structure.php:97
#: db_structure.php:98 db_structure.php:110 db_structure.php:111
#: db_structure.php:545 db_structure.php:546 db_tracking.php:91
-#: libraries/Index.class.php:483 libraries/common.lib.php:1654
+#: libraries/Index.class.php:483 libraries/common.lib.php:1656
#: libraries/db_links.inc.php:100 libraries/mult_submits.inc.php:36
#: libraries/mult_submits.inc.php:73 libraries/tbl_links.inc.php:127
#: server_databases.php:352 tbl_structure.php:27 tbl_structure.php:151
@@ -592,7 +592,7 @@ msgstr "Устгах"
#: db_structure.php:86 db_structure.php:87 db_structure.php:99
#: db_structure.php:100 db_structure.php:112 db_structure.php:113
-#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1653
+#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1655
#: libraries/mult_submits.inc.php:39 libraries/tbl_links.inc.php:105
msgid "Empty"
msgstr "Хоосон"
@@ -634,7 +634,7 @@ msgstr "Харц"
#: db_structure.php:485 libraries/db_structure.lib.php:49
#: libraries/server_links.inc.php:70 server_replication.php:33
-#: server_replication.php:164 server_status.php:258
+#: server_replication.php:164 server_status.php:369
msgid "Replication"
msgstr "Олшруулалт"
@@ -650,20 +650,20 @@ msgstr "%s нь уг MySQL сервэрийн анхдагч агуулах хө
#: db_structure.php:524 db_structure.php:541 db_structure.php:542
#: libraries/display_tbl.lib.php:2081 libraries/display_tbl.lib.php:2086
#: libraries/mult_submits.inc.php:16 server_databases.php:346
-#: server_databases.php:351 server_privileges.php:1557 tbl_structure.php:455
+#: server_databases.php:351 server_privileges.php:1596 tbl_structure.php:455
#: tbl_structure.php:464
msgid "With selected:"
msgstr "Сонгогдсонтой:"
#: db_structure.php:527 libraries/display_tbl.lib.php:2076
-#: server_databases.php:348 server_privileges.php:530
-#: server_privileges.php:1560 tbl_structure.php:458
+#: server_databases.php:348 server_privileges.php:569
+#: server_privileges.php:1599 tbl_structure.php:458
msgid "Check All"
msgstr "Бүгдийг чагтлах"
#: db_structure.php:531 libraries/display_tbl.lib.php:2077
#: libraries/replication_gui.lib.php:33 server_databases.php:350
-#: server_privileges.php:533 server_privileges.php:1564 tbl_structure.php:462
+#: server_privileges.php:572 server_privileges.php:1603 tbl_structure.php:462
msgid "Uncheck All"
msgstr "Бүх чагтыг болих"
@@ -701,7 +701,7 @@ msgstr "Хүснэгтийг задлах"
#: libraries/display_export.lib.php:83 libraries/display_tbl.lib.php:2094
#: libraries/display_tbl.lib.php:2225 libraries/mult_submits.inc.php:62
#: libraries/server_links.inc.php:84 libraries/tbl_links.inc.php:82
-#: pmd_pdf.php:84 pmd_pdf.php:109 server_privileges.php:1341
+#: pmd_pdf.php:84 pmd_pdf.php:109 server_privileges.php:1380
#: setup/frames/menu.inc.php:22 tbl_row_action.php:59
msgid "Export"
msgstr "Гаргах"
@@ -719,8 +719,8 @@ msgstr ""
#: libraries/export/sql.php:342 libraries/export/texytext.php:84
#: libraries/export/xml.php:255 libraries/header.inc.php:106
#: libraries/header_printview.inc.php:58 server_databases.php:169
-#: server_privileges.php:1621 server_privileges.php:1682
-#: server_privileges.php:1940 server_processlist.php:56
+#: server_privileges.php:1660 server_privileges.php:1721
+#: server_privileges.php:1979 server_processlist.php:56
#: server_synchronize.php:1179 server_synchronize.php:1183
#: tbl_tracking.php:591 test/theme.php:65
msgid "Database"
@@ -740,8 +740,8 @@ msgstr ""
#: db_tracking.php:77 libraries/Index.class.php:440
#: libraries/db_structure.lib.php:53 server_databases.php:203
-#: server_privileges.php:1503 server_privileges.php:1686
-#: server_privileges.php:2034 tbl_structure.php:187
+#: server_privileges.php:1542 server_privileges.php:1725
+#: server_privileges.php:2073 tbl_structure.php:187
msgid "Action"
msgstr "Үйлдэл"
@@ -929,11 +929,11 @@ msgstr "Хостын нэр хоосон!"
msgid "The user name is empty!"
msgstr "Хэрэглэгчийн нэр хоосон!"
-#: js/messages.php:44 server_privileges.php:1197 user_password.php:70
+#: js/messages.php:44 server_privileges.php:1236 user_password.php:70
msgid "The password is empty!"
msgstr "Нууц үг хоосон байна!"
-#: js/messages.php:45 server_privileges.php:1195 user_password.php:73
+#: js/messages.php:45 server_privileges.php:1234 user_password.php:73
msgid "The passwords aren't the same!"
msgstr "Нууц їгнїїд ялгаатай байна!"
@@ -1012,8 +1012,8 @@ msgid "Prev"
msgstr "Өмнөх"
#. l10n: Display text for next month link in calendar
-#: js/messages.php:77 libraries/common.lib.php:2344
-#: libraries/common.lib.php:2347 libraries/display_tbl.lib.php:338
+#: js/messages.php:77 libraries/common.lib.php:2353
+#: libraries/common.lib.php:2356 libraries/display_tbl.lib.php:338
#: server_binlog.php:205 server_binlog.php:207 tbl_printview.php:424
#: tbl_structure.php:801
msgid "Next"
@@ -1089,27 +1089,27 @@ msgid "December"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:97 libraries/common.lib.php:1555
+#: js/messages.php:97 libraries/common.lib.php:1557
msgid "Jan"
msgstr "1-р"
#. l10n: Short month name
-#: js/messages.php:99 libraries/common.lib.php:1557
+#: js/messages.php:99 libraries/common.lib.php:1559
msgid "Feb"
msgstr "2-р"
#. l10n: Short month name
-#: js/messages.php:101 libraries/common.lib.php:1559
+#: js/messages.php:101 libraries/common.lib.php:1561
msgid "Mar"
msgstr "3-р"
#. l10n: Short month name
-#: js/messages.php:103 libraries/common.lib.php:1561
+#: js/messages.php:103 libraries/common.lib.php:1563
msgid "Apr"
msgstr "4-р"
#. l10n: Short month name
-#: js/messages.php:105 libraries/common.lib.php:1563
+#: js/messages.php:105 libraries/common.lib.php:1565
#, fuzzy
#| msgid "May"
msgctxt "Short month name"
@@ -1117,37 +1117,37 @@ msgid "May"
msgstr "5-р"
#. l10n: Short month name
-#: js/messages.php:107 libraries/common.lib.php:1565
+#: js/messages.php:107 libraries/common.lib.php:1567
msgid "Jun"
msgstr "6-р"
#. l10n: Short month name
-#: js/messages.php:109 libraries/common.lib.php:1567
+#: js/messages.php:109 libraries/common.lib.php:1569
msgid "Jul"
msgstr "7-р"
#. l10n: Short month name
-#: js/messages.php:111 libraries/common.lib.php:1569
+#: js/messages.php:111 libraries/common.lib.php:1571
msgid "Aug"
msgstr "8-р"
#. l10n: Short month name
-#: js/messages.php:113 libraries/common.lib.php:1571
+#: js/messages.php:113 libraries/common.lib.php:1573
msgid "Sep"
msgstr "9-р"
#. l10n: Short month name
-#: js/messages.php:115 libraries/common.lib.php:1573
+#: js/messages.php:115 libraries/common.lib.php:1575
msgid "Oct"
msgstr "10р"
#. l10n: Short month name
-#: js/messages.php:117 libraries/common.lib.php:1575
+#: js/messages.php:117 libraries/common.lib.php:1577
msgid "Nov"
msgstr "11р"
#. l10n: Short month name
-#: js/messages.php:119 libraries/common.lib.php:1577
+#: js/messages.php:119 libraries/common.lib.php:1579
msgid "Dec"
msgstr "12р"
@@ -1188,37 +1188,37 @@ msgid "Saturday"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:132 libraries/common.lib.php:1580
+#: js/messages.php:132 libraries/common.lib.php:1582
msgid "Sun"
msgstr "Ня"
#. l10n: Short week day name
-#: js/messages.php:134 libraries/common.lib.php:1582
+#: js/messages.php:134 libraries/common.lib.php:1584
msgid "Mon"
msgstr "Да"
#. l10n: Short week day name
-#: js/messages.php:136 libraries/common.lib.php:1584
+#: js/messages.php:136 libraries/common.lib.php:1586
msgid "Tue"
msgstr "Мя"
#. l10n: Short week day name
-#: js/messages.php:138 libraries/common.lib.php:1586
+#: js/messages.php:138 libraries/common.lib.php:1588
msgid "Wed"
msgstr "Лх"
#. l10n: Short week day name
-#: js/messages.php:140 libraries/common.lib.php:1588
+#: js/messages.php:140 libraries/common.lib.php:1590
msgid "Thu"
msgstr "Пү"
#. l10n: Short week day name
-#: js/messages.php:142 libraries/common.lib.php:1590
+#: js/messages.php:142 libraries/common.lib.php:1592
msgid "Fri"
msgstr "Ба"
#. l10n: Short week day name
-#: js/messages.php:144 libraries/common.lib.php:1592
+#: js/messages.php:144 libraries/common.lib.php:1594
msgid "Sat"
msgstr "Бя"
@@ -1361,7 +1361,7 @@ msgid "Comment"
msgstr ""
#: libraries/Index.class.php:466 libraries/common.lib.php:616
-#: libraries/common.lib.php:1199 libraries/display_tbl.lib.php:1117
+#: libraries/common.lib.php:1201 libraries/display_tbl.lib.php:1117
#: libraries/import.lib.php:1087 libraries/import.lib.php:1111
#: pdf_pages.php:285 setup/frames/index.inc.php:124
#: setup/lib/messages.inc.php:352 tbl_row_action.php:69
@@ -1385,7 +1385,7 @@ msgid ""
msgstr ""
#: libraries/List_Database.class.php:431 libraries/server_links.inc.php:41
-#: server_databases.php:88 server_privileges.php:1621
+#: server_databases.php:88 server_privileges.php:1660
#: setup/lib/messages.inc.php:110 test/theme.php:93
msgid "Databases"
msgstr "Өгөгдлийн сангууд"
@@ -1714,7 +1714,7 @@ msgid "Documentation"
msgstr "Баримт"
#: libraries/common.lib.php:595 libraries/header_printview.inc.php:61
-#: server_processlist.php:60 server_status.php:247
+#: server_processlist.php:60 server_status.php:358
msgid "SQL query"
msgstr "SQL-асуулт"
@@ -1730,130 +1730,130 @@ msgstr "SQL тайлбар"
msgid "Skip Explain SQL"
msgstr "SQL тайлбарлахыг орхих"
-#: libraries/common.lib.php:1212
+#: libraries/common.lib.php:1214
msgid "Without PHP Code"
msgstr "PHP-кодгүй"
-#: libraries/common.lib.php:1215 setup/lib/messages.inc.php:355
+#: libraries/common.lib.php:1217 setup/lib/messages.inc.php:355
msgid "Create PHP Code"
msgstr "PHP-код үүсгэх"
-#: libraries/common.lib.php:1233 server_status.php:341
+#: libraries/common.lib.php:1235 server_status.php:452
#: setup/lib/messages.inc.php:354
msgid "Refresh"
msgstr "Да.дуудах"
-#: libraries/common.lib.php:1242
+#: libraries/common.lib.php:1244
msgid "Skip Validate SQL"
msgstr "SQL шалгалтыг алгасах"
-#: libraries/common.lib.php:1245 setup/lib/messages.inc.php:356 sql.php:518
+#: libraries/common.lib.php:1247 setup/lib/messages.inc.php:356 sql.php:518
msgid "Validate SQL"
msgstr "SQL-ийг батлах"
-#: libraries/common.lib.php:1276
+#: libraries/common.lib.php:1278
msgid "Inline edit of this query"
msgstr ""
-#: libraries/common.lib.php:1278
+#: libraries/common.lib.php:1280
#, fuzzy
#| msgid "Engines"
msgid "Inline"
msgstr "Хөдөлгүүрүүд"
-#: libraries/common.lib.php:1332 libraries/common.lib.php:1347
+#: libraries/common.lib.php:1334 libraries/common.lib.php:1349
msgid "Profiling"
msgstr ""
-#: libraries/common.lib.php:1351 libraries/tbl_triggers.lib.php:28
+#: libraries/common.lib.php:1353 libraries/tbl_triggers.lib.php:28
#: server_processlist.php:58
msgid "Time"
msgstr "Цаг"
#. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "B"
msgstr "Байт"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "KiB"
msgstr "кБ"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "MiB"
msgstr "МБ"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "GiB"
msgstr "ГБ"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "TiB"
msgstr "TB"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "PiB"
msgstr "PB"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "EiB"
msgstr "EB"
#. l10n: Thousands separator
-#: libraries/common.lib.php:1417
+#: libraries/common.lib.php:1419
msgid ","
msgstr ","
#. l10n: Decimal separator
-#: libraries/common.lib.php:1419
+#: libraries/common.lib.php:1421
msgid "."
msgstr "."
#. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string
-#: libraries/common.lib.php:1596
+#: libraries/common.lib.php:1598
#: libraries/transformations/text_plain__dateformat.inc.php:34
msgid "%B %d, %Y at %I:%M %p"
msgstr "%Y оны %B сарын %d., %H:%M"
-#: libraries/common.lib.php:1898
+#: libraries/common.lib.php:1907
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "%s өдөр, %s цаг, %s минут, %s секунд"
-#: libraries/common.lib.php:2313 libraries/common.lib.php:2316
-#: libraries/display_tbl.lib.php:290 server_status.php:608
+#: libraries/common.lib.php:2322 libraries/common.lib.php:2325
+#: libraries/display_tbl.lib.php:290 server_status.php:719
msgid "Begin"
msgstr "Эхлэл"
-#: libraries/common.lib.php:2314 libraries/common.lib.php:2317
+#: libraries/common.lib.php:2323 libraries/common.lib.php:2326
#: libraries/display_tbl.lib.php:291 server_binlog.php:168
#: server_binlog.php:170
msgid "Previous"
msgstr "Өмнөх"
-#: libraries/common.lib.php:2345 libraries/common.lib.php:2348
+#: libraries/common.lib.php:2354 libraries/common.lib.php:2357
#: libraries/display_tbl.lib.php:353
msgid "End"
msgstr "Төгс"
-#: libraries/common.lib.php:2421
+#: libraries/common.lib.php:2430
#, php-format
msgid "Jump to database "%s"."
msgstr ""%s" өгөгдлийн сан руу үсрэх."
-#: libraries/common.lib.php:2441
+#: libraries/common.lib.php:2450
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr ""
-#: libraries/common.lib.php:2821 libraries/common.lib.php:2828
+#: libraries/common.lib.php:2830 libraries/common.lib.php:2837
#: libraries/db_links.inc.php:68 libraries/export/sql.php:25
#: libraries/import/sql.php:18 libraries/server_links.inc.php:45
#: libraries/tbl_links.inc.php:60 querywindow.php:99 test/theme.php:97
msgid "SQL"
msgstr "SQL"
-#: libraries/common.lib.php:2830 libraries/db_links.inc.php:104
+#: libraries/common.lib.php:2839 libraries/db_links.inc.php:104
#: libraries/tbl_links.inc.php:95 libraries/tbl_links.inc.php:117
#: view_operations.php:89
msgid "Operations"
@@ -1907,8 +1907,8 @@ msgid "Import"
msgstr "Оруулах"
#: libraries/db_links.inc.php:111 libraries/server_links.inc.php:66
-#: server_privileges.php:72 server_privileges.php:1683
-#: server_privileges.php:2032 test/theme.php:117
+#: server_privileges.php:111 server_privileges.php:1722
+#: server_privileges.php:2071 test/theme.php:117
msgid "Privileges"
msgstr "Онцгой эрхүүд"
@@ -1954,22 +1954,22 @@ msgid "Change password"
msgstr "Нууц үг солих"
#: libraries/display_change_password.lib.php:35
-#: libraries/replication_gui.lib.php:345 server_privileges.php:768
+#: libraries/replication_gui.lib.php:345 server_privileges.php:807
msgid "No Password"
msgstr "Нууц үггүй"
#: libraries/display_change_password.lib.php:41
#: libraries/replication_gui.lib.php:59 libraries/replication_gui.lib.php:60
#: libraries/replication_gui.lib.php:335 libraries/replication_gui.lib.php:339
-#: libraries/replication_gui.lib.php:349 server_privileges.php:757
-#: server_privileges.php:761 server_privileges.php:772
-#: server_privileges.php:1499 server_synchronize.php:1175
+#: libraries/replication_gui.lib.php:349 server_privileges.php:796
+#: server_privileges.php:800 server_privileges.php:811
+#: server_privileges.php:1538 server_synchronize.php:1175
msgid "Password"
msgstr "Нууц үг"
#: libraries/display_change_password.lib.php:46
#: libraries/replication_gui.lib.php:353 libraries/replication_gui.lib.php:356
-#: server_privileges.php:776 server_privileges.php:779
+#: server_privileges.php:815 server_privileges.php:818
msgid "Re-type"
msgstr "Дахин бич"
@@ -1984,12 +1984,12 @@ msgid "MySQL 4.0 compatible"
msgstr "MySQL 4.0 compatible"
#: libraries/display_change_password.lib.php:72
-#: libraries/replication_gui.lib.php:360 server_privileges.php:783
+#: libraries/replication_gui.lib.php:360 server_privileges.php:822
msgid "Generate Password"
msgstr "Нууц үг бий болгох"
#: libraries/display_change_password.lib.php:75
-#: libraries/replication_gui.lib.php:363 server_privileges.php:786
+#: libraries/replication_gui.lib.php:363 server_privileges.php:825
msgid "Generate"
msgstr "Бий болгох"
@@ -2002,8 +2002,8 @@ msgstr "Шинэ ӨС үүсгэх"
msgid "Create"
msgstr "Үүсгэх"
-#: libraries/display_create_database.lib.php:40 server_privileges.php:74
-#: server_privileges.php:1388 server_replication.php:35
+#: libraries/display_create_database.lib.php:40 server_privileges.php:113
+#: server_privileges.php:1427 server_replication.php:35
msgid "No Privileges"
msgstr "Онцгой эрхгүй"
@@ -2094,7 +2094,7 @@ msgstr "Шахалт"
#: libraries/display_export.lib.php:240 libraries/display_import.lib.php:197
#: libraries/display_import.lib.php:210 libraries/display_tbl.lib.php:530
#: libraries/export/sql.php:868 libraries/tbl_properties.inc.php:575
-#: server_privileges.php:1836 server_processlist.php:75
+#: server_privileges.php:1875 server_processlist.php:75
msgid "None"
msgstr "Байхгүй"
@@ -2418,7 +2418,7 @@ msgstr ""
msgid "Buffer Pool"
msgstr "Буффер Pool"
-#: libraries/engines/innodb.lib.php:145 server_status.php:306
+#: libraries/engines/innodb.lib.php:145 server_status.php:417
msgid "InnoDB Status"
msgstr "InnoDB байдал"
@@ -2427,8 +2427,8 @@ msgid "Buffer Pool Usage"
msgstr "Буффер Pool Хэрэглээ"
#: libraries/engines/innodb.lib.php:194 server_databases.php:137
-#: server_databases.php:305 server_status.php:414 server_status.php:475
-#: server_status.php:496 tbl_printview.php:351 tbl_structure.php:696
+#: server_databases.php:305 server_status.php:525 server_status.php:586
+#: server_status.php:607 tbl_printview.php:351 tbl_structure.php:696
msgid "Total"
msgstr "Нийт"
@@ -2758,7 +2758,7 @@ msgstr "Microsoft Word 2000"
#: libraries/export/latex.php:201 libraries/export/odt.php:48
#: libraries/export/sql.php:106 libraries/export/sql.php:868
#: libraries/export/texytext.php:27 server_databases.php:127
-#: server_privileges.php:537 server_replication.php:316 tbl_printview.php:317
+#: server_privileges.php:576 server_replication.php:316 tbl_printview.php:317
#: tbl_structure.php:665
msgid "Data"
msgstr "Өгөгдөл"
@@ -2808,9 +2808,9 @@ msgstr "MIME-төрөл"
#: libraries/export/xml.php:102 libraries/header_printview.inc.php:57
#: libraries/replication_gui.lib.php:63 libraries/replication_gui.lib.php:174
#: libraries/replication_gui.lib.php:269 libraries/replication_gui.lib.php:272
-#: libraries/replication_gui.lib.php:329 server_privileges.php:692
-#: server_privileges.php:695 server_privileges.php:751
-#: server_privileges.php:1498 server_privileges.php:2030
+#: libraries/replication_gui.lib.php:329 server_privileges.php:731
+#: server_privileges.php:734 server_privileges.php:790
+#: server_privileges.php:1537 server_privileges.php:2069
#: server_processlist.php:55 server_synchronize.php:1159
msgid "Host"
msgstr "Хост"
@@ -3161,789 +3161,6 @@ msgstr "Байхгүй"
msgid "Convert to Kana"
msgstr ""
-#. l10n: Text direction, use either ltr or rtl
-#: libraries/messages.inc.php:19
-msgid "ltr"
-msgstr "ltr"
-
-#: libraries/messages.inc.php:21
-msgid "Content of table __TABLE__"
-msgstr "__TABLE__ хүснэгтийн агуулга"
-
-#: libraries/messages.inc.php:22
-msgid "(continued)"
-msgstr "(үргэлжилнэ)"
-
-#: libraries/messages.inc.php:23
-msgid "Structure of table __TABLE__"
-msgstr "__TABLE__ хүснэгтийн бүтэц"
-
-#: libraries/messages.inc.php:25 server_privileges.php:227
-msgid "Includes all privileges except GRANT."
-msgstr "Includes all privileges except GRANT."
-
-#: libraries/messages.inc.php:26 server_privileges.php:153
-#: server_privileges.php:476
-msgid "Allows altering the structure of existing tables."
-msgstr "Байгаа хүснэгтийн бүтцийг өөрчлөхийг зөвшөөрөх."
-
-#: libraries/messages.inc.php:27 server_privileges.php:169
-#: server_privileges.php:482
-msgid "Allows altering and dropping stored routines."
-msgstr "Хадгалагдсан заншил устгах, өөрчлөхийг зөвшөөрөх."
-
-#: libraries/messages.inc.php:28 server_privileges.php:145
-#: server_privileges.php:475
-msgid "Allows creating new databases and tables."
-msgstr "Шинэ өгөгдлийн сан, хүснэгт үүсгэхийг зөвшөөрөх."
-
-#: libraries/messages.inc.php:29 server_privileges.php:168
-#: server_privileges.php:481
-msgid "Allows creating stored routines."
-msgstr "Хадгалагдсан заншил үүсгэхийг зөвшөөрөх."
-
-#: libraries/messages.inc.php:30 server_privileges.php:475
-msgid "Allows creating new tables."
-msgstr "Шинэ хүснэгт үүсгэхийг зөвшөөрөх."
-
-#: libraries/messages.inc.php:31 server_privileges.php:156
-#: server_privileges.php:479
-msgid "Allows creating temporary tables."
-msgstr "Завсрын хүснэгт үүсгэхийг зөвшөөрөх."
-
-#: libraries/messages.inc.php:32 server_privileges.php:170
-#: server_privileges.php:515
-msgid "Allows creating, dropping and renaming user accounts."
-msgstr "Хэрэглэгчийн эрхийг үүсгэх, устгах, да.нэрлэхийг зөвшөөрөх."
-
-#: libraries/messages.inc.php:33 server_privileges.php:160
-#: server_privileges.php:164 server_privileges.php:487
-#: server_privileges.php:491
-msgid "Allows creating new views."
-msgstr "Шинэ харц үүсгэхийг зөвшөөрөх."
-
-#: libraries/messages.inc.php:34 server_privileges.php:144
-#: server_privileges.php:467
-msgid "Allows deleting data."
-msgstr "Өгөгдөл устгахыг зөвшөөрөх."
-
-#: libraries/messages.inc.php:35 server_privileges.php:146
-#: server_privileges.php:478
-msgid "Allows dropping databases and tables."
-msgstr "ӨС, хүснэгт устгахыг зөвшөөрөх "
-
-#: libraries/messages.inc.php:36 server_privileges.php:478
-msgid "Allows dropping tables."
-msgstr "Хүснэгт устгахыг зөвшөөрөх."
-
-#: libraries/messages.inc.php:37 server_privileges.php:161
-#: server_privileges.php:495
-msgid "Allows to set up events for the event scheduler"
-msgstr ""
-
-#: libraries/messages.inc.php:38 server_privileges.php:171
-#: server_privileges.php:483
-msgid "Allows executing stored routines."
-msgstr "Хадгалагдсан заншлыг ажиллуулахыг зөвшөөрөх."
-
-#: libraries/messages.inc.php:39 server_privileges.php:150
-#: server_privileges.php:470
-msgid "Allows importing data from and exporting data into files."
-msgstr "Өгөгдөл оруулах, файл руу гаргахыг зөвшөөрөх."
-
-#: libraries/messages.inc.php:40 server_privileges.php:501
-msgid ""
-"Allows adding users and privileges without reloading the privilege tables."
-msgstr ""
-"Хэрэглэгч болон онцгой эрхийг онцгой эрхийн хүснэгтийг дуудалгүй нэмэхийг "
-"зөвшөөрөх."
-
-#: libraries/messages.inc.php:41 server_privileges.php:152
-#: server_privileges.php:477
-msgid "Allows creating and dropping indexes."
-msgstr "Индекс үүсгэх, устгахыг зөвшөөрөх."
-
-#: libraries/messages.inc.php:42 server_privileges.php:142
-#: server_privileges.php:403 server_privileges.php:465
-msgid "Allows inserting and replacing data."
-msgstr "Өгөгдөл нэмэх, солихыг зөвшөөрөх."
-
-#: libraries/messages.inc.php:43 server_privileges.php:157
-#: server_privileges.php:510
-msgid "Allows locking tables for the current thread."
-msgstr "Тухайн процесст хүснэгт түгжихийг зөвшөөрөх."
-
-#: libraries/messages.inc.php:44 server_privileges.php:607
-#: server_privileges.php:609
-msgid "Limits the number of new connections the user may open per hour."
-msgstr "Цаг тутамд шинээр холбогдох хэрэглэгчийн тоог хязгаарлах."
-
-#: libraries/messages.inc.php:45 server_privileges.php:595
-#: server_privileges.php:597
-msgid "Limits the number of queries the user may send to the server per hour."
-msgstr "Цаг тутамд хэрэглэгчийн асуулт (query) илгээхийг хязгаарлах."
-
-#: libraries/messages.inc.php:46 server_privileges.php:601
-#: server_privileges.php:603
-msgid ""
-"Limits the number of commands that change any table or database the user may "
-"execute per hour."
-msgstr ""
-"Цаг тутамд хэрэглэгчийн хүснэгт эсвэл өгөгдлийн сан солих командыг "
-"хязгаарлах."
-
-#: libraries/messages.inc.php:47 server_privileges.php:613
-#: server_privileges.php:615
-msgid "Limits the number of simultaneous connections the user may have."
-msgstr "Хэрэглэгчдэд байх зэрэг холболтын хязгаарлах тоо."
-
-#: libraries/messages.inc.php:48 server_privileges.php:149
-#: server_privileges.php:505
-msgid "Allows viewing processes of all users"
-msgstr ""
-
-#: libraries/messages.inc.php:49 server_privileges.php:151
-#: server_privileges.php:409 server_privileges.php:511
-msgid "Has no effect in this MySQL version."
-msgstr "MySQL-ын энэ хувилбарт үйлчлэлгүй."
-
-#: libraries/messages.inc.php:50 server_privileges.php:147
-#: server_privileges.php:506
-msgid "Allows reloading server settings and flushing the server's caches."
-msgstr "Сервэрийн тохиргоог дахин дуудахыг зөвшөөрөх."
-
-#: libraries/messages.inc.php:51 server_privileges.php:159
-#: server_privileges.php:513
-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/messages.inc.php:52 server_privileges.php:158
-#: server_privileges.php:514
-msgid "Needed for the replication slaves."
-msgstr "Needed for the replication slaves."
-
-#: libraries/messages.inc.php:53 server_privileges.php:141
-#: server_privileges.php:400 server_privileges.php:464
-msgid "Allows reading data."
-msgstr "Өгөгдөл уншихыг зөвшөөрөх."
-
-#: libraries/messages.inc.php:54 server_privileges.php:154
-#: server_privileges.php:508
-msgid "Gives access to the complete list of databases."
-msgstr "Өгөгдлийн сангийн бүрэн жагсаалт руу хандахыг өгөх."
-
-#: libraries/messages.inc.php:55 server_privileges.php:165
-#: server_privileges.php:167 server_privileges.php:480
-msgid "Allows performing SHOW CREATE VIEW queries."
-msgstr "SHOW CREATE VIEW асуултыг хийхийг зөвшөөрөх."
-
-#: libraries/messages.inc.php:56 server_privileges.php:148
-#: server_privileges.php:507
-msgid "Allows shutting down the server."
-msgstr "Сервэрийг унтраахыг зөвшөөрөх."
-
-#: libraries/messages.inc.php:57 server_privileges.php:155
-#: server_privileges.php:504
-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/messages.inc.php:58 server_privileges.php:162
-#: server_privileges.php:496
-msgid "Allows creating and dropping triggers"
-msgstr ""
-
-#: libraries/messages.inc.php:59 server_privileges.php:143
-#: server_privileges.php:406 server_privileges.php:466
-msgid "Allows changing data."
-msgstr "Өгөгдөл солихыг зөвшөөрөх."
-
-#: libraries/messages.inc.php:60 server_privileges.php:221
-msgid "No privileges."
-msgstr "Онцгой эрхгүй."
-
-#: libraries/messages.inc.php:62
-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/messages.inc.php:63
-msgid "The number of transactions that used the temporary binary log cache."
-msgstr "Завсрын хоёртын тэмдэглэлийн нөөцөлөлт хэрэглэгдэх хэлэлцээрийн тоо."
-
-#: libraries/messages.inc.php:64
-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 "
-"to increase the tmp_table_size value to cause temporary tables to be memory-"
-"based instead of disk-based."
-msgstr ""
-"Сервэрийн ажиллуулсан хэлэлцээрийн үед диск дээр үүссэн завсрын хүснэгтийн "
-"тоо. Хэрэв tmp дискийн хүснэгтүүд том бол, магадгүй та дискэнд суурилсны "
-"оронд санах ойд суурилсан завсрын хүснэгтийн tmp хүснэгтийн хэмжээн утгыг "
-"нэмэгдүүлэхийг хүсэж байж болно."
-
-#: libraries/messages.inc.php:65
-msgid "How many temporary files mysqld has created."
-msgstr "Хичнээн завсрын файл mysqld-д үүсгэгдэв."
-
-#: libraries/messages.inc.php:66
-msgid ""
-"The number of in-memory temporary tables created automatically by the server "
-"while executing statements."
-msgstr ""
-"Сервэрийн ажиллуулсан хэлэлцээрийн үед автоматаар үүссэн санах ойн "
-"хүснэгтүүдийн тоо."
-
-#: libraries/messages.inc.php:67
-msgid ""
-"The number of rows written with INSERT DELAYED for which some error occurred "
-"(probably duplicate key)."
-msgstr ""
-"Ижил алдаа өгөх (түлхүүр давхардсан байж болзошгүй) бүрт ДАВТАЛТТАЙ ОРУУЛАЛТ-"
-"аар бичигдсэн мөрүүдийн тоо."
-
-#: libraries/messages.inc.php:68
-msgid ""
-"The number of INSERT DELAYED handler threads in use. Every different table "
-"on which one uses INSERT DELAYED gets its own thread."
-msgstr ""
-"Хэрэглэгдэж буй ДАВТАЛТТАЙ ОРУУЛАЛТ-ын thread баригчийн тоо. Ялгаатай "
-"хүснэгт бүр ДАВТАЛТТАЙ ОРУУЛАЛТ-д өөрийн thread-ийг хэрэглэнэ."
-
-#: libraries/messages.inc.php:69
-msgid "The number of INSERT DELAYED rows written."
-msgstr "ДАВТАЛТТАЙ ОРУУЛАЛТ-аар бичигдсэн мөрийн тоо."
-
-#: libraries/messages.inc.php:70
-msgid "The number of executed FLUSH statements."
-msgstr "ЦЭВЭРЛЭХ хэлэлцээрийн ажилласан тоо."
-
-#: libraries/messages.inc.php:71
-msgid "The number of internal COMMIT statements."
-msgstr "дотоод COMMIT хэлэлцээриийн тоо."
-
-#: libraries/messages.inc.php:72
-msgid "The number of times a row was deleted from a table."
-msgstr "Хүснэгтээс мөр устгасан тоо."
-
-#: libraries/messages.inc.php:73
-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 ""
-"Хэрэв энэ нь өгсөн нэр бүхий хүснэгтийн талаар мэдэж байвал MySQL сервэр нь "
-"NDB Кластер хадгалуурын хөдөлгүүрийг асууж чадна. Үүнийг ололт гэж нэрлэнэ. "
-"Ололтын баригч нь ололт хийгдсэн хүснэгтийн хичнээн удааг илэрхийлэх тоо юм."
-
-#: libraries/messages.inc.php:74
-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 ""
-"Индексээс уншсан эхний агууламжийн хичнээн тоо. Хэрэв энэ нь өндөр бол, "
-"бүтэн индекс шалгалтыг энэ сервэр хийснийг илтгэнэ; Жишээлбэл, SELECT col1 "
-"FROM foo, энд col1 индекслэгдсэн байна."
-
-#: libraries/messages.inc.php:75
-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/messages.inc.php:76
-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/messages.inc.php:77
-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 ""
-"Түлхүүрийн дараалал дахь өмнөх мөрийг унших хүсэлтийн тоо. Энэ унших арга нь "
-"голчлон ORDER BY ... DESC-д хэрэглэгддэг."
-
-#: libraries/messages.inc.php:78
-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 "
-"probably have a lot of queries that require MySQL to scan whole tables or "
-"you have joins that don't use keys properly."
-msgstr ""
-"Тогтсон байрлалд суурилсан мөрийг унших хүсэлтийн тоо. Хэрэв то үр дүнг "
-"эрэмбэлэх шаардлагатай асуудлийг цөөнхгүй хийсэн бол энэ утга өндөр байна. "
-"Та магадгүй хүснэгтийг бүрэн шалгахыг MySQL-ээс цөөнгүй хүссэн эсвэл нэгдэлд "
-"түлхүүрийг зөв ашиглаагүй байх."
-
-#: libraries/messages.inc.php:79
-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 "
-"tables are not properly indexed or that your queries are not written to take "
-"advantage of the indexes you have."
-msgstr ""
-"Өгөгдлийн файл дахь дараагийн мөрийг унших хүсэлтийн тоо. Хэрэв та "
-"хүснэгтийн шалгалтийг цөөнгүй хийсэн бол энэ утга өндөр байна. Энэ нь "
-"ерөнхийдөө, таны хүснэгтүүд зөв индекслэгдээгүй эсвэл индексүүд чинь "
-"асуудалд зөв бичигдээгүйг илтгэнэ."
-
-#: libraries/messages.inc.php:80
-msgid "The number of internal ROLLBACK statements."
-msgstr "Дотоод ROLLBACK хэлэлцээрийн тоо."
-
-#: libraries/messages.inc.php:81
-msgid "The number of requests to update a row in a table."
-msgstr "Хүснэгт дэх мөрийг шинэчлэх хүсэлтийн тоо."
-
-#: libraries/messages.inc.php:82
-msgid "The number of requests to insert a row in a table."
-msgstr "Хүснэгтэд мөр оруулах хүсэлтийн тоо."
-
-#: libraries/messages.inc.php:83
-msgid "The number of pages containing data (dirty or clean)."
-msgstr "Өгөгдөл агуулж буй (бохир, цэвэр) хуудсын тоо."
-
-#: libraries/messages.inc.php:84
-msgid "The number of pages currently dirty."
-msgstr "Одоогоор бохир байгаа хуудсын тоо."
-
-#: libraries/messages.inc.php:85
-msgid "The number of buffer pool pages that have been requested to be flushed."
-msgstr "Цэвэрлэх хүсэлт дэх буфферийн хуудсын тоо."
-
-#: libraries/messages.inc.php:86
-msgid "The number of free pages."
-msgstr "Чөлөөтэй байгаа хуудсуудын тоо."
-
-#: libraries/messages.inc.php:87
-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 ""
-"InnoDB буфферийн нөөц дэх түгжигдсэн хуудсын тоо. Эдгээр хуудсууд нь "
-"одоогоор унших, бичих эсвэл цэвэрлэгдэж чадаагүй, мөн бусад шалгааны улмаас "
-"хасагдсан."
-
-#: libraries/messages.inc.php:88
-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 "
-"be calculated as Innodb_buffer_pool_pages_total - "
-"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data."
-msgstr ""
-"Мөр цоожилдог шиг зохион байгуулалтад хуваарилагдсан эсвэл холилдсон "
-"индексийн зохицуулгын улмаас завгүй байгаа хуудсын тоо. Энэ утга нь мөн "
-"InndoDB буфферийн нөөцийн нийт хуудас - Innodb_буфферийн нөөцийн чөлөөт "
-"хуудас - Innodb_буфферийн нөөцийн хуудсын өгөгдөл зэргээс бодогддог."
-
-#: libraries/messages.inc.php:89
-msgid "Total size of buffer pool, in pages."
-msgstr "Хуудас дахь буфферийн нөөцийн хэмжээ."
-
-#: libraries/messages.inc.php:90
-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 ""
-"InnoDB үүсгэсэн \"санамсаргүй\" өмнөх уншилтын тоо. Замбараагүй "
-"эрэмбэлэгдсэн хүснэгтийн нилээд хувийг шалгасан асуудлыг илэрхийлнэ."
-
-#: libraries/messages.inc.php:91
-msgid ""
-"The number of sequential read-aheads InnoDB initiated. This happens when "
-"InnoDB does a sequential full table scan."
-msgstr ""
-"InnoDB үүсгэсэн дараалсан өмнөх уншилтын тоо. Хүснэгтийн дараалсан бүтэн "
-"шалгалтыг InnoDB хийснийг илэрхийлнэ."
-
-#: libraries/messages.inc.php:92
-msgid "The number of logical read requests InnoDB has done."
-msgstr "InndoDB-ийн хийсэн логик уншилтын хүсэлтийн тоо."
-
-#: libraries/messages.inc.php:93
-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/messages.inc.php:94
-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 "
-"available, it's necessary to wait for pages to be flushed first. This "
-"counter counts instances of these waits. If the buffer pool size was set "
-"properly, this value should be small."
-msgstr ""
-
-#: libraries/messages.inc.php:95
-msgid "The number writes done to the InnoDB buffer pool."
-msgstr "InnoDB буфферийн нөөц рүү бичигдэж дууссан тоо."
-
-#: libraries/messages.inc.php:96
-msgid "The number of fsync() operations so far."
-msgstr "fsync() үйлдлийн ойрхон хийгдсэн тоо."
-
-#: libraries/messages.inc.php:97
-msgid "The current number of pending fsync() operations."
-msgstr "fsync() үйлдлийн хүлээгдэж буй тухайн тоо."
-
-#: libraries/messages.inc.php:98
-msgid "The current number of pending reads."
-msgstr "Уншихаар хүлээгдэж буй тухайн тоо."
-
-#: libraries/messages.inc.php:99
-msgid "The current number of pending writes."
-msgstr "Бичихээр хүлээгдэж буй тухайн тоо."
-
-#: libraries/messages.inc.php:100
-msgid "The amount of data read so far, in bytes."
-msgstr "Өгөгдөл ойрхон уншсан дүн, байтаар."
-
-#: libraries/messages.inc.php:101
-msgid "The total number of data reads."
-msgstr "Өгөгдөл уншилтийн нийт тоо."
-
-#: libraries/messages.inc.php:102
-msgid "The total number of data writes."
-msgstr "Өгөгдөл бичилтийн нийт тоо."
-
-#: libraries/messages.inc.php:103
-msgid "The amount of data written so far, in bytes."
-msgstr "Өгөгдөл ойрхон бичсэн дүн, байтаар."
-
-#: libraries/messages.inc.php:104
-msgid "The number of pages that have been written for doublewrite operations."
-msgstr ""
-
-#: libraries/messages.inc.php:105
-msgid "The number of doublewrite operations that have been performed."
-msgstr ""
-
-#: libraries/messages.inc.php:106
-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/messages.inc.php:107
-msgid "The number of log write requests."
-msgstr "Тэмдэглэл бичих хүсэлтийн тоо."
-
-#: libraries/messages.inc.php:108
-msgid "The number of physical writes to the log file."
-msgstr "Тэмдэглэлийн файлын физик бичилтийн тоо."
-
-#: libraries/messages.inc.php:109
-msgid "The number of fsync() writes done to the log file."
-msgstr ""
-
-#: libraries/messages.inc.php:110
-msgid "The number of pending log file fsyncs."
-msgstr ""
-
-#: libraries/messages.inc.php:111
-msgid "Pending log file writes."
-msgstr "Тэмдэглэлийн файл руу бичих хүлээлт."
-
-#: libraries/messages.inc.php:112
-msgid "The number of bytes written to the log file."
-msgstr ""
-
-#: libraries/messages.inc.php:113
-msgid "The number of pages created."
-msgstr ""
-
-#: libraries/messages.inc.php:114
-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/messages.inc.php:115
-msgid "The number of pages read."
-msgstr ""
-
-#: libraries/messages.inc.php:116
-msgid "The number of pages written."
-msgstr ""
-
-#: libraries/messages.inc.php:117
-msgid "The number of row locks currently being waited for."
-msgstr ""
-
-#: libraries/messages.inc.php:118
-msgid "The average time to acquire a row lock, in milliseconds."
-msgstr ""
-
-#: libraries/messages.inc.php:119
-msgid "The total time spent in acquiring row locks, in milliseconds."
-msgstr ""
-
-#: libraries/messages.inc.php:120
-msgid "The maximum time to acquire a row lock, in milliseconds."
-msgstr ""
-
-#: libraries/messages.inc.php:121
-msgid "The number of times a row lock had to be waited for."
-msgstr ""
-
-#: libraries/messages.inc.php:122
-msgid "The number of rows deleted from InnoDB tables."
-msgstr ""
-
-#: libraries/messages.inc.php:123
-msgid "The number of rows inserted in InnoDB tables."
-msgstr ""
-
-#: libraries/messages.inc.php:124
-msgid "The number of rows read from InnoDB tables."
-msgstr ""
-
-#: libraries/messages.inc.php:125
-msgid "The number of rows updated in InnoDB tables."
-msgstr ""
-
-#: libraries/messages.inc.php:126
-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/messages.inc.php:127
-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/messages.inc.php:128
-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/messages.inc.php:129
-msgid "The number of requests to read a key block from the cache."
-msgstr ""
-
-#: libraries/messages.inc.php:130
-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/messages.inc.php:131
-msgid "The number of requests to write a key block to the cache."
-msgstr ""
-
-#: libraries/messages.inc.php:132
-msgid "The number of physical writes of a key block to disk."
-msgstr ""
-
-#: libraries/messages.inc.php:133
-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/messages.inc.php:134
-msgid "The number of rows waiting to be written in INSERT DELAYED queues."
-msgstr ""
-
-#: libraries/messages.inc.php:135
-msgid ""
-"The number of tables that have been opened. If opened tables is big, your "
-"table cache value is probably too small."
-msgstr ""
-
-#: libraries/messages.inc.php:136
-msgid "The number of files that are open."
-msgstr ""
-
-#: libraries/messages.inc.php:137
-msgid "The number of streams that are open (used mainly for logging)."
-msgstr ""
-
-#: libraries/messages.inc.php:138
-msgid "The number of tables that are open."
-msgstr ""
-
-#: libraries/messages.inc.php:139
-msgid "The number of free memory blocks in query cache."
-msgstr ""
-
-#: libraries/messages.inc.php:140
-msgid "The amount of free memory for query cache."
-msgstr ""
-
-#: libraries/messages.inc.php:141
-msgid "The number of cache hits."
-msgstr ""
-
-#: libraries/messages.inc.php:142
-msgid "The number of queries added to the cache."
-msgstr ""
-
-#: libraries/messages.inc.php:143
-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 "
-"cache size. The query cache uses a least recently used (LRU) strategy to "
-"decide which queries to remove from the cache."
-msgstr ""
-
-#: libraries/messages.inc.php:144
-msgid ""
-"The number of non-cached queries (not cachable, or not cached due to the "
-"query_cache_type setting)."
-msgstr ""
-
-#: libraries/messages.inc.php:145
-msgid "The number of queries registered in the cache."
-msgstr ""
-
-#: libraries/messages.inc.php:146
-msgid "The total number of blocks in the query cache."
-msgstr ""
-
-#: libraries/messages.inc.php:147
-msgctxt "$strShowStatusReset"
-msgid "Reset"
-msgstr "Дахих"
-
-#: libraries/messages.inc.php:148
-msgid "The status of failsafe replication (not yet implemented)."
-msgstr ""
-
-#: libraries/messages.inc.php:149
-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/messages.inc.php:150
-msgid "The number of joins that used a range search on a reference table."
-msgstr ""
-
-#: libraries/messages.inc.php:151
-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/messages.inc.php:152
-msgid ""
-"The number of joins that used ranges on the first table. (It's normally not "
-"critical even if this is big.)"
-msgstr ""
-
-#: libraries/messages.inc.php:153
-msgid "The number of joins that did a full scan of the first table."
-msgstr ""
-
-#: libraries/messages.inc.php:154
-msgid "The number of temporary tables currently open by the slave SQL thread."
-msgstr ""
-
-#: libraries/messages.inc.php:155
-msgid ""
-"Total (since startup) number of times the replication slave SQL thread has "
-"retried transactions."
-msgstr ""
-
-#: libraries/messages.inc.php:156
-msgid "This is ON if this server is a slave that is connected to a master."
-msgstr ""
-
-#: libraries/messages.inc.php:157
-msgid ""
-"The number of threads that have taken more than slow_launch_time seconds to "
-"create."
-msgstr ""
-
-#: libraries/messages.inc.php:158
-msgid ""
-"The number of queries that have taken more than long_query_time seconds."
-msgstr ""
-
-#: libraries/messages.inc.php:159
-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/messages.inc.php:160
-msgid "The number of sorts that were done with ranges."
-msgstr ""
-
-#: libraries/messages.inc.php:161
-msgid "The number of sorted rows."
-msgstr "Эрэмбэлэгдсэн мөрийн тоо."
-
-#: libraries/messages.inc.php:162
-msgid "The number of sorts that were done by scanning the table."
-msgstr ""
-
-#: libraries/messages.inc.php:163
-msgid "The number of times that a table lock was acquired immediately."
-msgstr ""
-
-#: libraries/messages.inc.php:164
-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 "
-"should first optimize your queries, and then either split your table or "
-"tables or use replication."
-msgstr ""
-
-#: libraries/messages.inc.php:165
-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/messages.inc.php:166
-msgid "The number of currently open connections."
-msgstr ""
-
-#: libraries/messages.inc.php:167
-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 "
-"doesn't give a notable performance improvement if you have a good thread "
-"implementation.)"
-msgstr ""
-
-#: libraries/messages.inc.php:168
-msgid "The number of threads that are not sleeping."
-msgstr ""
-
#: libraries/mult_submits.inc.php:76 libraries/tbl_properties.inc.php:513
#: tbl_structure.php:29 tbl_structure.php:153 tbl_structure.php:157
#: tbl_structure.php:473
@@ -4261,8 +3478,8 @@ msgstr ""
#: libraries/replication_gui.lib.php:55 libraries/replication_gui.lib.php:56
#: libraries/replication_gui.lib.php:249 libraries/replication_gui.lib.php:252
-#: libraries/replication_gui.lib.php:259 server_privileges.php:672
-#: server_privileges.php:675 server_privileges.php:682
+#: libraries/replication_gui.lib.php:259 server_privileges.php:711
+#: server_privileges.php:714 server_privileges.php:721
#: server_synchronize.php:1171
msgid "User name"
msgstr "Хэрэглэгчийн нэр"
@@ -4280,11 +3497,11 @@ msgid "Slave status"
msgstr ""
#: libraries/replication_gui.lib.php:114 libraries/sql_query_form.lib.php:445
-#: server_status.php:626 server_variables.php:52
+#: server_status.php:737 server_variables.php:52
msgid "Variable"
msgstr "Хувьсагч"
-#: libraries/replication_gui.lib.php:115 server_status.php:627
+#: libraries/replication_gui.lib.php:115 server_status.php:738
#: tbl_change.php:324 tbl_printview.php:370 tbl_select.php:139
#: tbl_structure.php:729
msgid "Value"
@@ -4304,41 +3521,58 @@ msgstr ""
msgid "Add slave replication user"
msgstr ""
-#: libraries/replication_gui.lib.php:254 server_privileges.php:677
+#: libraries/replication_gui.lib.php:254 server_privileges.php:716
msgid "Any user"
msgstr "Дурын хэрэглэгч"
#: libraries/replication_gui.lib.php:255 libraries/replication_gui.lib.php:323
-#: libraries/replication_gui.lib.php:346 server_privileges.php:678
-#: server_privileges.php:745 server_privileges.php:769
-#: server_privileges.php:1889 server_privileges.php:1919
+#: libraries/replication_gui.lib.php:346 server_privileges.php:717
+#: server_privileges.php:784 server_privileges.php:808
+#: server_privileges.php:1928 server_privileges.php:1958
msgid "Use text field"
msgstr "Бичвэр талбар хэрэглэх"
-#: libraries/replication_gui.lib.php:302 server_privileges.php:725
+#: libraries/replication_gui.lib.php:302 server_privileges.php:764
msgid "Any host"
msgstr "Дурын хост"
-#: libraries/replication_gui.lib.php:306 server_privileges.php:729
+#: libraries/replication_gui.lib.php:306 server_privileges.php:768
msgid "Local"
msgstr "Local"
-#: libraries/replication_gui.lib.php:312 server_privileges.php:734
+#: libraries/replication_gui.lib.php:312 server_privileges.php:773
msgid "This Host"
msgstr "Энэ хост"
-#: libraries/replication_gui.lib.php:318 server_privileges.php:740
+#: libraries/replication_gui.lib.php:318 server_privileges.php:779
msgid "Use Host Table"
msgstr "Хост хүснэгт хэрэглэх"
-#: libraries/replication_gui.lib.php:331 server_privileges.php:753
+#: libraries/replication_gui.lib.php:331 server_privileges.php:792
msgid ""
"When Host table is used, this field is ignored and values stored in Host "
"table are used instead."
msgstr ""
-#: libraries/select_lang.lib.php:480 libraries/select_lang.lib.php:486
-#: libraries/select_lang.lib.php:492
+#. l10n: Text direction, use either ltr or rtl
+#: libraries/select_lang.lib.php:491
+msgid "ltr"
+msgstr "ltr"
+
+#: libraries/select_lang.lib.php:493
+msgid "Content of table __TABLE__"
+msgstr "__TABLE__ хүснэгтийн агуулга"
+
+#: libraries/select_lang.lib.php:494
+msgid "(continued)"
+msgstr "(үргэлжилнэ)"
+
+#: libraries/select_lang.lib.php:495
+msgid "Structure of table __TABLE__"
+msgstr "__TABLE__ хүснэгтийн бүтэц"
+
+#: libraries/select_lang.lib.php:500 libraries/select_lang.lib.php:506
+#: libraries/select_lang.lib.php:512
#, php-format
msgid "Unknown language: %1$s."
msgstr "Үл мэдэгдэх хэл: %1$s."
@@ -4349,7 +3583,7 @@ msgid "Servers"
msgstr "Сервэрүүд"
#: libraries/server_links.inc.php:53 server_engines.php:112
-#: server_engines.php:116 server_status.php:304 test/theme.php:105
+#: server_engines.php:116 server_status.php:415 test/theme.php:105
msgid "Variables"
msgstr "Утгууд"
@@ -4362,7 +3596,7 @@ msgid "Engines"
msgstr "Хөдөлгүүрүүд"
#: libraries/server_links.inc.php:76 server_binlog.php:110
-#: server_status.php:253 test/theme.php:121
+#: server_status.php:364 test/theme.php:121
msgid "Binary log"
msgstr "Хоёртын log"
@@ -4815,8 +4049,8 @@ msgstr "Да.эхлэх"
msgid "Protocol version"
msgstr "Протоколын хувилбар"
-#: main.php:189 server_privileges.php:1350 server_privileges.php:1497
-#: server_privileges.php:1611 server_privileges.php:2029
+#: main.php:189 server_privileges.php:1389 server_privileges.php:1536
+#: server_privileges.php:1650 server_privileges.php:2068
#: server_processlist.php:54
msgid "User"
msgstr "Хэрэглэгч"
@@ -5188,7 +4422,7 @@ msgstr "%s ӨС амжилттай устгагдлаа."
msgid "Databases statistics"
msgstr "Өгөгдлийн сангийн статистик"
-#: server_databases.php:117 server_status.php:260
+#: server_databases.php:117 server_status.php:371
#: setup/lib/messages.inc.php:117
msgid "Tables"
msgstr "Хүснэгт"
@@ -5208,6 +4442,16 @@ msgstr ""
msgid "Jump to database"
msgstr "ӨС байхгүй"
+#: server_databases.php:267
+msgid "Not replicated"
+msgstr ""
+
+#: server_databases.php:273
+#, fuzzy
+#| msgid "Replication"
+msgid "Replicated"
+msgstr "Олшруулалт"
+
#: server_databases.php:289
#, php-format
msgid "Check privileges for database "%s"."
@@ -5240,144 +4484,332 @@ msgstr "Агуулах хөдөлгүүрүүд"
msgid "View dump (schema) of databases"
msgstr "ӨС-ийн схем харах"
-#: server_privileges.php:263 server_privileges.php:264
+#: server_privileges.php:24 server_privileges.php:266
+msgid "Includes all privileges except GRANT."
+msgstr "Includes all privileges except GRANT."
+
+#: server_privileges.php:25 server_privileges.php:192
+#: server_privileges.php:515
+msgid "Allows altering the structure of existing tables."
+msgstr "Байгаа хүснэгтийн бүтцийг өөрчлөхийг зөвшөөрөх."
+
+#: server_privileges.php:26 server_privileges.php:208
+#: server_privileges.php:521
+msgid "Allows altering and dropping stored routines."
+msgstr "Хадгалагдсан заншил устгах, өөрчлөхийг зөвшөөрөх."
+
+#: server_privileges.php:27 server_privileges.php:184
+#: server_privileges.php:514
+msgid "Allows creating new databases and tables."
+msgstr "Шинэ өгөгдлийн сан, хүснэгт үүсгэхийг зөвшөөрөх."
+
+#: server_privileges.php:28 server_privileges.php:207
+#: server_privileges.php:520
+msgid "Allows creating stored routines."
+msgstr "Хадгалагдсан заншил үүсгэхийг зөвшөөрөх."
+
+#: server_privileges.php:29 server_privileges.php:514
+msgid "Allows creating new tables."
+msgstr "Шинэ хүснэгт үүсгэхийг зөвшөөрөх."
+
+#: server_privileges.php:30 server_privileges.php:195
+#: server_privileges.php:518
+msgid "Allows creating temporary tables."
+msgstr "Завсрын хүснэгт үүсгэхийг зөвшөөрөх."
+
+#: server_privileges.php:31 server_privileges.php:209
+#: server_privileges.php:554
+msgid "Allows creating, dropping and renaming user accounts."
+msgstr "Хэрэглэгчийн эрхийг үүсгэх, устгах, да.нэрлэхийг зөвшөөрөх."
+
+#: server_privileges.php:32 server_privileges.php:199
+#: server_privileges.php:203 server_privileges.php:526
+#: server_privileges.php:530
+msgid "Allows creating new views."
+msgstr "Шинэ харц үүсгэхийг зөвшөөрөх."
+
+#: server_privileges.php:33 server_privileges.php:183
+#: server_privileges.php:506
+msgid "Allows deleting data."
+msgstr "Өгөгдөл устгахыг зөвшөөрөх."
+
+#: server_privileges.php:34 server_privileges.php:185
+#: server_privileges.php:517
+msgid "Allows dropping databases and tables."
+msgstr "ӨС, хүснэгт устгахыг зөвшөөрөх "
+
+#: server_privileges.php:35 server_privileges.php:517
+msgid "Allows dropping tables."
+msgstr "Хүснэгт устгахыг зөвшөөрөх."
+
+#: server_privileges.php:36 server_privileges.php:200
+#: server_privileges.php:534
+msgid "Allows to set up events for the event scheduler"
+msgstr ""
+
+#: server_privileges.php:37 server_privileges.php:210
+#: server_privileges.php:522
+msgid "Allows executing stored routines."
+msgstr "Хадгалагдсан заншлыг ажиллуулахыг зөвшөөрөх."
+
+#: server_privileges.php:38 server_privileges.php:189
+#: server_privileges.php:509
+msgid "Allows importing data from and exporting data into files."
+msgstr "Өгөгдөл оруулах, файл руу гаргахыг зөвшөөрөх."
+
+#: server_privileges.php:39 server_privileges.php:540
+msgid ""
+"Allows adding users and privileges without reloading the privilege tables."
+msgstr ""
+"Хэрэглэгч болон онцгой эрхийг онцгой эрхийн хүснэгтийг дуудалгүй нэмэхийг "
+"зөвшөөрөх."
+
+#: server_privileges.php:40 server_privileges.php:191
+#: server_privileges.php:516
+msgid "Allows creating and dropping indexes."
+msgstr "Индекс үүсгэх, устгахыг зөвшөөрөх."
+
+#: server_privileges.php:41 server_privileges.php:181
+#: server_privileges.php:442 server_privileges.php:504
+msgid "Allows inserting and replacing data."
+msgstr "Өгөгдөл нэмэх, солихыг зөвшөөрөх."
+
+#: server_privileges.php:42 server_privileges.php:196
+#: server_privileges.php:549
+msgid "Allows locking tables for the current thread."
+msgstr "Тухайн процесст хүснэгт түгжихийг зөвшөөрөх."
+
+#: server_privileges.php:43 server_privileges.php:646
+#: server_privileges.php:648
+msgid "Limits the number of new connections the user may open per hour."
+msgstr "Цаг тутамд шинээр холбогдох хэрэглэгчийн тоог хязгаарлах."
+
+#: server_privileges.php:44 server_privileges.php:634
+#: server_privileges.php:636
+msgid "Limits the number of queries the user may send to the server per hour."
+msgstr "Цаг тутамд хэрэглэгчийн асуулт (query) илгээхийг хязгаарлах."
+
+#: server_privileges.php:45 server_privileges.php:640
+#: server_privileges.php:642
+msgid ""
+"Limits the number of commands that change any table or database the user may "
+"execute per hour."
+msgstr ""
+"Цаг тутамд хэрэглэгчийн хүснэгт эсвэл өгөгдлийн сан солих командыг "
+"хязгаарлах."
+
+#: server_privileges.php:46 server_privileges.php:652
+#: server_privileges.php:654
+msgid "Limits the number of simultaneous connections the user may have."
+msgstr "Хэрэглэгчдэд байх зэрэг холболтын хязгаарлах тоо."
+
+#: server_privileges.php:47 server_privileges.php:188
+#: server_privileges.php:544
+msgid "Allows viewing processes of all users"
+msgstr ""
+
+#: server_privileges.php:48 server_privileges.php:190
+#: server_privileges.php:448 server_privileges.php:550
+msgid "Has no effect in this MySQL version."
+msgstr "MySQL-ын энэ хувилбарт үйлчлэлгүй."
+
+#: server_privileges.php:49 server_privileges.php:186
+#: server_privileges.php:545
+msgid "Allows reloading server settings and flushing the server's caches."
+msgstr "Сервэрийн тохиргоог дахин дуудахыг зөвшөөрөх."
+
+#: server_privileges.php:50 server_privileges.php:198
+#: server_privileges.php:552
+msgid "Allows the user to ask where the slaves / masters are."
+msgstr "Gives the right to the user to ask where the slaves / masters are."
+
+#: server_privileges.php:51 server_privileges.php:197
+#: server_privileges.php:553
+msgid "Needed for the replication slaves."
+msgstr "Needed for the replication slaves."
+
+#: server_privileges.php:52 server_privileges.php:180
+#: server_privileges.php:439 server_privileges.php:503
+msgid "Allows reading data."
+msgstr "Өгөгдөл уншихыг зөвшөөрөх."
+
+#: server_privileges.php:53 server_privileges.php:193
+#: server_privileges.php:547
+msgid "Gives access to the complete list of databases."
+msgstr "Өгөгдлийн сангийн бүрэн жагсаалт руу хандахыг өгөх."
+
+#: server_privileges.php:54 server_privileges.php:204
+#: server_privileges.php:206 server_privileges.php:519
+msgid "Allows performing SHOW CREATE VIEW queries."
+msgstr "SHOW CREATE VIEW асуултыг хийхийг зөвшөөрөх."
+
+#: server_privileges.php:55 server_privileges.php:187
+#: server_privileges.php:546
+msgid "Allows shutting down the server."
+msgstr "Сервэрийг унтраахыг зөвшөөрөх."
+
+#: server_privileges.php:56 server_privileges.php:194
+#: server_privileges.php:543
+msgid ""
+"Allows connecting, even if maximum number of connections is reached; "
+"required for most administrative operations like setting global variables or "
+"killing threads of other users."
+msgstr ""
+"Хэрэв ХИ холболтын тоо гүйцсэн ч холбогдохыг зөвшөөрөх. Бусад хэрэглэгчийн "
+"процессыг үгүй хийх эсвэл глобал утгыг өөрчлөх шаардлагатай болно."
+
+#: server_privileges.php:57 server_privileges.php:201
+#: server_privileges.php:535
+msgid "Allows creating and dropping triggers"
+msgstr ""
+
+#: server_privileges.php:58 server_privileges.php:182
+#: server_privileges.php:445 server_privileges.php:505
+msgid "Allows changing data."
+msgstr "Өгөгдөл солихыг зөвшөөрөх."
+
+#: server_privileges.php:59 server_privileges.php:260
+msgid "No privileges."
+msgstr "Онцгой эрхгүй."
+
+#: server_privileges.php:302 server_privileges.php:303
#, fuzzy
#| msgid "None"
msgctxt "None privileges"
msgid "None"
msgstr "Байхгүй"
-#: server_privileges.php:392 server_privileges.php:527
-#: server_privileges.php:1679 server_privileges.php:1685
+#: server_privileges.php:431 server_privileges.php:566
+#: server_privileges.php:1718 server_privileges.php:1724
msgid "Table-specific privileges"
msgstr " Хүснэгтийн тусгай онцгой эрхүүд"
-#: server_privileges.php:393 server_privileges.php:535
-#: server_privileges.php:1501
+#: server_privileges.php:432 server_privileges.php:574
+#: server_privileges.php:1540
msgid " Note: MySQL privilege names are expressed in English "
msgstr " Тэмдэглэл: MySQL онцгой эрхийн нэр нь англиар илэрхийлэгдсэн "
-#: server_privileges.php:524 server_privileges.php:1500
+#: server_privileges.php:563 server_privileges.php:1539
msgid "Global privileges"
msgstr "Глобал онцгой эрх"
-#: server_privileges.php:526 server_privileges.php:1679
+#: server_privileges.php:565 server_privileges.php:1718
msgid "Database-specific privileges"
msgstr " Онцгой эрх, өгөгдлийн сангийн эрх"
-#: server_privileges.php:571
+#: server_privileges.php:610
msgid "Administration"
msgstr "Зохион байгуулалт"
-#: server_privileges.php:591
+#: server_privileges.php:630
msgid "Resource limits"
msgstr "Нөөцийн хязгаар"
-#: server_privileges.php:592
+#: server_privileges.php:631
msgid "Note: Setting these options to 0 (zero) removes the limit."
msgstr "Тэмдэглэл: Тохируулгын сонголтыг 0 (тэг) болговол хязгаарыг хасна."
-#: server_privileges.php:669
+#: server_privileges.php:708
msgid "Login Information"
msgstr "Нэвтрэх мэдээлэл"
-#: server_privileges.php:763
+#: server_privileges.php:802
msgid "Do not change the password"
msgstr "Нууц үгийг солихгүй"
-#: server_privileges.php:804 server_privileges.php:2166
+#: server_privileges.php:843 server_privileges.php:2205
#, fuzzy
#| msgid "No user(s) found."
msgid "No user found."
msgstr "Хэрэглэгч олдсонгүй."
-#: server_privileges.php:848
+#: server_privileges.php:887
#, php-format
msgid "The user %s already exists!"
msgstr "Хэрэглэгч %s оршин байна!"
-#: server_privileges.php:931
+#: server_privileges.php:970
msgid "You have added a new user."
msgstr "Шинэ хэрэглэгч нэмэгдлээ."
-#: server_privileges.php:1152
+#: server_privileges.php:1191
#, fuzzy, php-format
msgid "You have updated the privileges for %s."
msgstr "Онцгой эрх шинэчлэгдлээ"
-#: server_privileges.php:1176
+#: server_privileges.php:1215
#, php-format
msgid "You have revoked the privileges for %s"
msgstr "Онцгой эрх %s -ыг хүчингүй болголоо"
-#: server_privileges.php:1212
+#: server_privileges.php:1251
#, php-format
msgid "The password for %s was changed successfully."
msgstr "%s-ы нууц үг солигдлоо."
-#: server_privileges.php:1232
+#: server_privileges.php:1271
#, php-format
msgid "Deleting %s"
msgstr "%s-г устгаж байна"
-#: server_privileges.php:1243
+#: server_privileges.php:1282
msgid "No users selected for deleting!"
msgstr "Устгахаар хэрэглэгч сонгогдсонгүй!"
-#: server_privileges.php:1246
+#: server_privileges.php:1285
msgid "Reloading the privileges"
msgstr "Онцгой эрхийг дахин дуудаж байна"
-#: server_privileges.php:1261
+#: server_privileges.php:1300
msgid "The selected users have been deleted successfully."
msgstr "Сонгогдсон хэрэглэгч устгагдлаа."
-#: server_privileges.php:1296
+#: server_privileges.php:1335
msgid "The privileges were reloaded successfully."
msgstr "Онцгой эрхүүд дахин дуудагдлаа."
-#: server_privileges.php:1324 server_privileges.php:1610
+#: server_privileges.php:1363 server_privileges.php:1649
msgid "Edit Privileges"
msgstr "Онцгой эрхүүдийг засах"
-#: server_privileges.php:1333
+#: server_privileges.php:1372
msgid "Revoke"
msgstr "Хүчингүй"
-#: server_privileges.php:1365
+#: server_privileges.php:1404
msgid "User overview"
msgstr "User overview"
-#: server_privileges.php:1502 server_privileges.php:1684
-#: server_privileges.php:2033
+#: server_privileges.php:1541 server_privileges.php:1723
+#: server_privileges.php:2072
msgid "Grant"
msgstr "Хандив"
-#: server_privileges.php:1521 server_privileges.php:2123
+#: server_privileges.php:1560 server_privileges.php:2162
msgid "Any"
msgstr "Дурын"
-#: server_privileges.php:1570 server_privileges.php:1594
-#: server_privileges.php:1988 server_privileges.php:2177
+#: server_privileges.php:1609 server_privileges.php:1633
+#: server_privileges.php:2027 server_privileges.php:2216
msgid "Add a new User"
msgstr "Шинэ хэрэглэгч нэмэх"
-#: server_privileges.php:1575
+#: server_privileges.php:1614
msgid "Remove selected users"
msgstr "Сонгогдсон хэрэглэгчдийг хасах"
-#: server_privileges.php:1578
+#: server_privileges.php:1617
msgid "Revoke all active privileges from the users and delete them afterwards."
msgstr ""
"Устгахын төгсгөлд нь хэрэглэгчдээс идэвхтэй бүх онцгой эрхийг хүчингүй "
"болгох."
-#: server_privileges.php:1579 server_privileges.php:1580
-#: server_privileges.php:1581
+#: server_privileges.php:1618 server_privileges.php:1619
+#: server_privileges.php:1620
msgid "Drop the databases that have the same names as the users."
msgstr "Хэрэглэгчтэй адил нэртэй өгөгдлийн санг устгах."
-#: server_privileges.php:1597
+#: server_privileges.php:1636
#, php-format
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
@@ -5390,48 +4822,48 @@ msgstr ""
"агуулга нь сервэрт хэрэглэгдэж буйгаас өөр байна. Энэ тохиолдолд %sдахин "
"дуудаж%s үргэлжлүүлнэ үү."
-#: server_privileges.php:1645
+#: server_privileges.php:1684
msgid "The selected user was not found in the privilege table."
msgstr "Сонгогдсон хэрэглэгч онцгой эрхийн хүснэгтэд алга байна."
-#: server_privileges.php:1685
+#: server_privileges.php:1724
msgid "Column-specific privileges"
msgstr "Онцгой эрх, баганын эрх"
-#: server_privileges.php:1886
+#: server_privileges.php:1925
msgid "Add privileges on the following database"
msgstr "Дараах өгөгдлийн санд онцгой эрх нэмэх"
-#: server_privileges.php:1904
+#: server_privileges.php:1943
msgid "Wildcards % and _ should be escaped with a \\ to use them literally"
msgstr ""
-#: server_privileges.php:1907
+#: server_privileges.php:1946
msgid "Add privileges on the following table"
msgstr "Дараах хүснэгтэд онцгой эрх нэмэх"
-#: server_privileges.php:1964
+#: server_privileges.php:2003
msgid "Change Login Information / Copy User"
msgstr "Нэвтрэх мэдээллийг солих/ Хэрэглэгч хуулах"
-#: server_privileges.php:1967
+#: server_privileges.php:2006
msgid "Create a new user with the same privileges and ..."
msgstr "Адил онцгой эрхтэй хэрэглэгч үүсгэх ба ..."
-#: server_privileges.php:1969
+#: server_privileges.php:2008
msgid "... keep the old one."
msgstr "... хуучныг үлдээх."
-#: server_privileges.php:1970
+#: server_privileges.php:2009
msgid " ... delete the old one from the user tables."
msgstr " ... хэрэглэгчийн хүснэгтүүдээс устгах."
-#: server_privileges.php:1971
+#: server_privileges.php:2010
msgid ""
" ... revoke all active privileges from the old one and delete it afterwards."
msgstr " ... хуучнаас бүх онцгой эрхийг хүчингүй болгоод дараа нь устга."
-#: server_privileges.php:1972
+#: server_privileges.php:2011
msgid ""
" ... delete the old one from the user tables and reload the privileges "
"afterwards."
@@ -5439,44 +4871,44 @@ msgstr ""
" ... хэрэглэгчийн хүснэгтүүдээс нэгийг устгаад дараа нь онцгой эрхийг дахин "
"дууд."
-#: server_privileges.php:1994
+#: server_privileges.php:2033
msgid "Database for user"
msgstr "Хэрэглэгчийн өгөгдлийн сан"
-#: server_privileges.php:1998
+#: server_privileges.php:2037
#, fuzzy
#| msgid "None"
msgctxt "Create none database for user"
msgid "None"
msgstr "Байхгүй"
-#: server_privileges.php:1999
+#: server_privileges.php:2038
msgid "Create database with same name and grant all privileges"
msgstr ""
-#: server_privileges.php:2000
+#: server_privileges.php:2039
msgid "Grant all privileges on wildcard name (username\\_%)"
msgstr ""
-#: server_privileges.php:2003
+#: server_privileges.php:2042
#, php-format
msgid "Grant all privileges on database "%s""
msgstr ""
-#: server_privileges.php:2026
+#: server_privileges.php:2065
#, php-format
msgid "Users having access to "%s""
msgstr "Хэрэглэгчдийн хандсан нь "%s""
-#: server_privileges.php:2134
+#: server_privileges.php:2173
msgid "global"
msgstr "global"
-#: server_privileges.php:2136
+#: server_privileges.php:2175
msgid "database-specific"
msgstr "Өгөгдлийн сангийн эрх"
-#: server_privileges.php:2138
+#: server_privileges.php:2177
msgid "wildcard"
msgstr "загвар"
@@ -5523,7 +4955,7 @@ msgstr ""
msgid "This server is configured as master in a replication process."
msgstr ""
-#: server_replication.php:184 server_status.php:281
+#: server_replication.php:184 server_status.php:392
msgid "Show master status"
msgstr ""
@@ -5658,103 +5090,681 @@ msgid ""
"like to configure it?"
msgstr ""
+#: server_status.php:40
+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 ""
+"Хоёртын тэмдэглэлийн нөөцлөлийн хэмжээ болон хэлэлцээрийн баримтжуулалтад "
+"хэрэглэгдэх завсрын файлын утгаас хэтэрсэн хоёртын тэмдэглэлийн нөөцлөлд "
+"хэрэглэгдэх хэлэлцээрийн тоо."
+
+#: server_status.php:41
+msgid "The number of transactions that used the temporary binary log cache."
+msgstr "Завсрын хоёртын тэмдэглэлийн нөөцөлөлт хэрэглэгдэх хэлэлцээрийн тоо."
+
+#: server_status.php:42
+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 "
+"to increase the tmp_table_size value to cause temporary tables to be memory-"
+"based instead of disk-based."
+msgstr ""
+"Сервэрийн ажиллуулсан хэлэлцээрийн үед диск дээр үүссэн завсрын хүснэгтийн "
+"тоо. Хэрэв tmp дискийн хүснэгтүүд том бол, магадгүй та дискэнд суурилсны "
+"оронд санах ойд суурилсан завсрын хүснэгтийн tmp хүснэгтийн хэмжээн утгыг "
+"нэмэгдүүлэхийг хүсэж байж болно."
+
+#: server_status.php:43
+msgid "How many temporary files mysqld has created."
+msgstr "Хичнээн завсрын файл mysqld-д үүсгэгдэв."
+
+#: server_status.php:44
+msgid ""
+"The number of in-memory temporary tables created automatically by the server "
+"while executing statements."
+msgstr ""
+"Сервэрийн ажиллуулсан хэлэлцээрийн үед автоматаар үүссэн санах ойн "
+"хүснэгтүүдийн тоо."
+
+#: server_status.php:45
+msgid ""
+"The number of rows written with INSERT DELAYED for which some error occurred "
+"(probably duplicate key)."
+msgstr ""
+"Ижил алдаа өгөх (түлхүүр давхардсан байж болзошгүй) бүрт ДАВТАЛТТАЙ ОРУУЛАЛТ-"
+"аар бичигдсэн мөрүүдийн тоо."
+
#: server_status.php:46
+msgid ""
+"The number of INSERT DELAYED handler threads in use. Every different table "
+"on which one uses INSERT DELAYED gets its own thread."
+msgstr ""
+"Хэрэглэгдэж буй ДАВТАЛТТАЙ ОРУУЛАЛТ-ын thread баригчийн тоо. Ялгаатай "
+"хүснэгт бүр ДАВТАЛТТАЙ ОРУУЛАЛТ-д өөрийн thread-ийг хэрэглэнэ."
+
+#: server_status.php:47
+msgid "The number of INSERT DELAYED rows written."
+msgstr "ДАВТАЛТТАЙ ОРУУЛАЛТ-аар бичигдсэн мөрийн тоо."
+
+#: server_status.php:48
+msgid "The number of executed FLUSH statements."
+msgstr "ЦЭВЭРЛЭХ хэлэлцээрийн ажилласан тоо."
+
+#: server_status.php:49
+msgid "The number of internal COMMIT statements."
+msgstr "дотоод COMMIT хэлэлцээриийн тоо."
+
+#: server_status.php:50
+msgid "The number of times a row was deleted from a table."
+msgstr "Хүснэгтээс мөр устгасан тоо."
+
+#: server_status.php:51
+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 ""
+"Хэрэв энэ нь өгсөн нэр бүхий хүснэгтийн талаар мэдэж байвал MySQL сервэр нь "
+"NDB Кластер хадгалуурын хөдөлгүүрийг асууж чадна. Үүнийг ололт гэж нэрлэнэ. "
+"Ололтын баригч нь ололт хийгдсэн хүснэгтийн хичнээн удааг илэрхийлэх тоо юм."
+
+#: server_status.php:52
+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 ""
+"Индексээс уншсан эхний агууламжийн хичнээн тоо. Хэрэв энэ нь өндөр бол, "
+"бүтэн индекс шалгалтыг энэ сервэр хийснийг илтгэнэ; Жишээлбэл, SELECT col1 "
+"FROM foo, энд col1 индекслэгдсэн байна."
+
+#: server_status.php:53
+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 ""
+"Түлхүүрт суурилсан мөр унших хүсэлтийн тоо. Хэрэв энэ нь өндөр бол, таны "
+"асуудлууд болон хүснэгтүүд зөв индекслэгдсэнийг илтгэнэ."
+
+#: server_status.php:54
+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 ""
+"Түлхүүрийн дараалал дахь дараагийн мөрийг унших хүсэлтийн тоо. Энэ нь хэрэв "
+"та мужийн нөхцөлтэйгээр баганын индекс шаардах эсвэл индекс шалгалтыг хийхэд "
+"нэмэгдэж байдаг."
+
+#: server_status.php:55
+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 ""
+"Түлхүүрийн дараалал дахь өмнөх мөрийг унших хүсэлтийн тоо. Энэ унших арга нь "
+"голчлон ORDER BY ... DESC-д хэрэглэгддэг."
+
+#: server_status.php:56
+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 "
+"probably have a lot of queries that require MySQL to scan whole tables or "
+"you have joins that don't use keys properly."
+msgstr ""
+"Тогтсон байрлалд суурилсан мөрийг унших хүсэлтийн тоо. Хэрэв то үр дүнг "
+"эрэмбэлэх шаардлагатай асуудлийг цөөнхгүй хийсэн бол энэ утга өндөр байна. "
+"Та магадгүй хүснэгтийг бүрэн шалгахыг MySQL-ээс цөөнгүй хүссэн эсвэл нэгдэлд "
+"түлхүүрийг зөв ашиглаагүй байх."
+
+#: server_status.php:57
+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 "
+"tables are not properly indexed or that your queries are not written to take "
+"advantage of the indexes you have."
+msgstr ""
+"Өгөгдлийн файл дахь дараагийн мөрийг унших хүсэлтийн тоо. Хэрэв та "
+"хүснэгтийн шалгалтийг цөөнгүй хийсэн бол энэ утга өндөр байна. Энэ нь "
+"ерөнхийдөө, таны хүснэгтүүд зөв индекслэгдээгүй эсвэл индексүүд чинь "
+"асуудалд зөв бичигдээгүйг илтгэнэ."
+
+#: server_status.php:58
+msgid "The number of internal ROLLBACK statements."
+msgstr "Дотоод ROLLBACK хэлэлцээрийн тоо."
+
+#: server_status.php:59
+msgid "The number of requests to update a row in a table."
+msgstr "Хүснэгт дэх мөрийг шинэчлэх хүсэлтийн тоо."
+
+#: server_status.php:60
+msgid "The number of requests to insert a row in a table."
+msgstr "Хүснэгтэд мөр оруулах хүсэлтийн тоо."
+
+#: server_status.php:61
+msgid "The number of pages containing data (dirty or clean)."
+msgstr "Өгөгдөл агуулж буй (бохир, цэвэр) хуудсын тоо."
+
+#: server_status.php:62
+msgid "The number of pages currently dirty."
+msgstr "Одоогоор бохир байгаа хуудсын тоо."
+
+#: server_status.php:63
+msgid "The number of buffer pool pages that have been requested to be flushed."
+msgstr "Цэвэрлэх хүсэлт дэх буфферийн хуудсын тоо."
+
+#: server_status.php:64
+msgid "The number of free pages."
+msgstr "Чөлөөтэй байгаа хуудсуудын тоо."
+
+#: server_status.php:65
+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 ""
+"InnoDB буфферийн нөөц дэх түгжигдсэн хуудсын тоо. Эдгээр хуудсууд нь "
+"одоогоор унших, бичих эсвэл цэвэрлэгдэж чадаагүй, мөн бусад шалгааны улмаас "
+"хасагдсан."
+
+#: server_status.php:66
+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 "
+"be calculated as Innodb_buffer_pool_pages_total - "
+"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data."
+msgstr ""
+"Мөр цоожилдог шиг зохион байгуулалтад хуваарилагдсан эсвэл холилдсон "
+"индексийн зохицуулгын улмаас завгүй байгаа хуудсын тоо. Энэ утга нь мөн "
+"InndoDB буфферийн нөөцийн нийт хуудас - Innodb_буфферийн нөөцийн чөлөөт "
+"хуудас - Innodb_буфферийн нөөцийн хуудсын өгөгдөл зэргээс бодогддог."
+
+#: server_status.php:67
+msgid "Total size of buffer pool, in pages."
+msgstr "Хуудас дахь буфферийн нөөцийн хэмжээ."
+
+#: server_status.php:68
+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 ""
+"InnoDB үүсгэсэн \"санамсаргүй\" өмнөх уншилтын тоо. Замбараагүй "
+"эрэмбэлэгдсэн хүснэгтийн нилээд хувийг шалгасан асуудлыг илэрхийлнэ."
+
+#: server_status.php:69
+msgid ""
+"The number of sequential read-aheads InnoDB initiated. This happens when "
+"InnoDB does a sequential full table scan."
+msgstr ""
+"InnoDB үүсгэсэн дараалсан өмнөх уншилтын тоо. Хүснэгтийн дараалсан бүтэн "
+"шалгалтыг InnoDB хийснийг илэрхийлнэ."
+
+#: server_status.php:70
+msgid "The number of logical read requests InnoDB has done."
+msgstr "InndoDB-ийн хийсэн логик уншилтын хүсэлтийн тоо."
+
+#: server_status.php:71
+msgid ""
+"The number of logical reads that InnoDB could not satisfy from buffer pool "
+"and had to do a single-page read."
+msgstr ""
+"InnoDB буфферийн нөөцөөс нийцэмжгүй ба ганц хуудас уншилт хийсэн логик "
+"уншилтын тоо."
+
+#: server_status.php:72
+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 "
+"available, it's necessary to wait for pages to be flushed first. This "
+"counter counts instances of these waits. If the buffer pool size was set "
+"properly, this value should be small."
+msgstr ""
+
+#: server_status.php:73
+msgid "The number writes done to the InnoDB buffer pool."
+msgstr "InnoDB буфферийн нөөц рүү бичигдэж дууссан тоо."
+
+#: server_status.php:74
+msgid "The number of fsync() operations so far."
+msgstr "fsync() үйлдлийн ойрхон хийгдсэн тоо."
+
+#: server_status.php:75
+msgid "The current number of pending fsync() operations."
+msgstr "fsync() үйлдлийн хүлээгдэж буй тухайн тоо."
+
+#: server_status.php:76
+msgid "The current number of pending reads."
+msgstr "Уншихаар хүлээгдэж буй тухайн тоо."
+
+#: server_status.php:77
+msgid "The current number of pending writes."
+msgstr "Бичихээр хүлээгдэж буй тухайн тоо."
+
+#: server_status.php:78
+msgid "The amount of data read so far, in bytes."
+msgstr "Өгөгдөл ойрхон уншсан дүн, байтаар."
+
+#: server_status.php:79
+msgid "The total number of data reads."
+msgstr "Өгөгдөл уншилтийн нийт тоо."
+
+#: server_status.php:80
+msgid "The total number of data writes."
+msgstr "Өгөгдөл бичилтийн нийт тоо."
+
+#: server_status.php:81
+msgid "The amount of data written so far, in bytes."
+msgstr "Өгөгдөл ойрхон бичсэн дүн, байтаар."
+
+#: server_status.php:82
+msgid "The number of pages that have been written for doublewrite operations."
+msgstr ""
+
+#: server_status.php:83
+msgid "The number of doublewrite operations that have been performed."
+msgstr ""
+
+#: server_status.php:84
+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 ""
+
+#: server_status.php:85
+msgid "The number of log write requests."
+msgstr "Тэмдэглэл бичих хүсэлтийн тоо."
+
+#: server_status.php:86
+msgid "The number of physical writes to the log file."
+msgstr "Тэмдэглэлийн файлын физик бичилтийн тоо."
+
+#: server_status.php:87
+msgid "The number of fsync() writes done to the log file."
+msgstr ""
+
+#: server_status.php:88
+msgid "The number of pending log file fsyncs."
+msgstr ""
+
+#: server_status.php:89
+msgid "Pending log file writes."
+msgstr "Тэмдэглэлийн файл руу бичих хүлээлт."
+
+#: server_status.php:90
+msgid "The number of bytes written to the log file."
+msgstr ""
+
+#: server_status.php:91
+msgid "The number of pages created."
+msgstr ""
+
+#: server_status.php:92
+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 ""
+
+#: server_status.php:93
+msgid "The number of pages read."
+msgstr ""
+
+#: server_status.php:94
+msgid "The number of pages written."
+msgstr ""
+
+#: server_status.php:95
+msgid "The number of row locks currently being waited for."
+msgstr ""
+
+#: server_status.php:96
+msgid "The average time to acquire a row lock, in milliseconds."
+msgstr ""
+
+#: server_status.php:97
+msgid "The total time spent in acquiring row locks, in milliseconds."
+msgstr ""
+
+#: server_status.php:98
+msgid "The maximum time to acquire a row lock, in milliseconds."
+msgstr ""
+
+#: server_status.php:99
+msgid "The number of times a row lock had to be waited for."
+msgstr ""
+
+#: server_status.php:100
+msgid "The number of rows deleted from InnoDB tables."
+msgstr ""
+
+#: server_status.php:101
+msgid "The number of rows inserted in InnoDB tables."
+msgstr ""
+
+#: server_status.php:102
+msgid "The number of rows read from InnoDB tables."
+msgstr ""
+
+#: server_status.php:103
+msgid "The number of rows updated in InnoDB tables."
+msgstr ""
+
+#: server_status.php:104
+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 ""
+
+#: server_status.php:105
+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 ""
+
+#: server_status.php:106
+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 ""
+
+#: server_status.php:107
+msgid "The number of requests to read a key block from the cache."
+msgstr ""
+
+#: server_status.php:108
+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 ""
+
+#: server_status.php:109
+msgid "The number of requests to write a key block to the cache."
+msgstr ""
+
+#: server_status.php:110
+msgid "The number of physical writes of a key block to disk."
+msgstr ""
+
+#: server_status.php:111
+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 ""
+
+#: server_status.php:112
+msgid "The number of rows waiting to be written in INSERT DELAYED queues."
+msgstr ""
+
+#: server_status.php:113
+msgid ""
+"The number of tables that have been opened. If opened tables is big, your "
+"table cache value is probably too small."
+msgstr ""
+
+#: server_status.php:114
+msgid "The number of files that are open."
+msgstr ""
+
+#: server_status.php:115
+msgid "The number of streams that are open (used mainly for logging)."
+msgstr ""
+
+#: server_status.php:116
+msgid "The number of tables that are open."
+msgstr ""
+
+#: server_status.php:117
+msgid "The number of free memory blocks in query cache."
+msgstr ""
+
+#: server_status.php:118
+msgid "The amount of free memory for query cache."
+msgstr ""
+
+#: server_status.php:119
+msgid "The number of cache hits."
+msgstr ""
+
+#: server_status.php:120
+msgid "The number of queries added to the cache."
+msgstr ""
+
+#: server_status.php:121
+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 "
+"cache size. The query cache uses a least recently used (LRU) strategy to "
+"decide which queries to remove from the cache."
+msgstr ""
+
+#: server_status.php:122
+msgid ""
+"The number of non-cached queries (not cachable, or not cached due to the "
+"query_cache_type setting)."
+msgstr ""
+
+#: server_status.php:123
+msgid "The number of queries registered in the cache."
+msgstr ""
+
+#: server_status.php:124
+msgid "The total number of blocks in the query cache."
+msgstr ""
+
+#: server_status.php:125
+msgctxt "$strShowStatusReset"
+msgid "Reset"
+msgstr "Дахих"
+
+#: server_status.php:126
+msgid "The status of failsafe replication (not yet implemented)."
+msgstr ""
+
+#: server_status.php:127
+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 ""
+
+#: server_status.php:128
+msgid "The number of joins that used a range search on a reference table."
+msgstr ""
+
+#: server_status.php:129
+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 ""
+
+#: server_status.php:130
+msgid ""
+"The number of joins that used ranges on the first table. (It's normally not "
+"critical even if this is big.)"
+msgstr ""
+
+#: server_status.php:131
+msgid "The number of joins that did a full scan of the first table."
+msgstr ""
+
+#: server_status.php:132
+msgid "The number of temporary tables currently open by the slave SQL thread."
+msgstr ""
+
+#: server_status.php:133
+msgid ""
+"Total (since startup) number of times the replication slave SQL thread has "
+"retried transactions."
+msgstr ""
+
+#: server_status.php:134
+msgid "This is ON if this server is a slave that is connected to a master."
+msgstr ""
+
+#: server_status.php:135
+msgid ""
+"The number of threads that have taken more than slow_launch_time seconds to "
+"create."
+msgstr ""
+
+#: server_status.php:136
+msgid ""
+"The number of queries that have taken more than long_query_time seconds."
+msgstr ""
+
+#: server_status.php:137
+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 ""
+
+#: server_status.php:138
+msgid "The number of sorts that were done with ranges."
+msgstr ""
+
+#: server_status.php:139
+msgid "The number of sorted rows."
+msgstr "Эрэмбэлэгдсэн мөрийн тоо."
+
+#: server_status.php:140
+msgid "The number of sorts that were done by scanning the table."
+msgstr ""
+
+#: server_status.php:141
+msgid "The number of times that a table lock was acquired immediately."
+msgstr ""
+
+#: server_status.php:142
+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 "
+"should first optimize your queries, and then either split your table or "
+"tables or use replication."
+msgstr ""
+
+#: server_status.php:143
+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 ""
+
+#: server_status.php:144
+msgid "The number of currently open connections."
+msgstr ""
+
+#: server_status.php:145
+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 "
+"doesn't give a notable performance improvement if you have a good thread "
+"implementation.)"
+msgstr ""
+
+#: server_status.php:146
+msgid "The number of threads that are not sleeping."
+msgstr ""
+
+#: server_status.php:157
msgid "Runtime Information"
msgstr "Ажиллах үеийн мэдээлэл"
-#: server_status.php:250
+#: server_status.php:361
msgid "Handler"
msgstr "Баригч"
-#: server_status.php:251
+#: server_status.php:362
msgid "Query cache"
msgstr "Асуудлын нөөцлөл"
-#: server_status.php:252
+#: server_status.php:363
msgid "Threads"
msgstr "Thread-үүд"
-#: server_status.php:254
+#: server_status.php:365
msgid "Temporary data"
msgstr "Завсрын өгөгдөл"
-#: server_status.php:255
+#: server_status.php:366
msgid "Delayed inserts"
msgstr "Давталттай оруулалт"
-#: server_status.php:256
+#: server_status.php:367
msgid "Key cache"
msgstr "Түлхүүрийн нөөцлөл"
-#: server_status.php:257
+#: server_status.php:368
msgid "Joins"
msgstr "Нэгдэл"
-#: server_status.php:259
+#: server_status.php:370
msgid "Sorting"
msgstr "Эрэмбэлж байна"
-#: server_status.php:261
+#: server_status.php:372
msgid "Transaction coordinator"
msgstr "Хэлэлцээр зохицуулагч"
-#: server_status.php:271
+#: server_status.php:382
msgid "Flush (close) all tables"
msgstr "Бүх хүснэгтийг цэвэрлэх (хаах)"
-#: server_status.php:273
+#: server_status.php:384
msgid "Show open tables"
msgstr "Нээлттэй хүснэгтүүдийг харуулах"
-#: server_status.php:278
+#: server_status.php:389
msgid "Show slave hosts"
msgstr "Дагавар хостыг харуулах"
-#: server_status.php:284
+#: server_status.php:395
msgid "Show slave status"
msgstr "Дагавар төлвийг харуулах"
-#: server_status.php:289
+#: server_status.php:400
msgid "Flush query cache"
msgstr "Асуудлын утгыг цэвэрлэх"
-#: server_status.php:294
+#: server_status.php:405
msgid "Show processes"
msgstr "Процесууд харах"
-#: server_status.php:344
+#: server_status.php:455
#, fuzzy
#| msgid "Reset"
msgctxt "for Show status"
msgid "Reset"
msgstr "Да.эхлэх"
-#: server_status.php:350
+#: server_status.php:461
#, php-format
msgid "This MySQL server has been running for %s. It started up on %s."
msgstr "Энэ MySQL сервэр %s-д ажиллаж байна. Эхэлсэн нь %s."
-#: server_status.php:360
+#: server_status.php:471
msgid ""
"This MySQL server works as master and slave in replication"
"b> process."
msgstr ""
-#: server_status.php:362
+#: server_status.php:473
msgid "This MySQL server works as master in replication process."
msgstr ""
-#: server_status.php:364
+#: server_status.php:475
msgid "This MySQL server works as slave in replication process."
msgstr ""
-#: server_status.php:366
+#: server_status.php:477
msgid ""
"For further information about replication status on the server, please visit "
"the replication section."
msgstr ""
-#: server_status.php:383
+#: server_status.php:494
msgid ""
"Server traffic: These tables show the network traffic statistics of "
"this MySQL server since its startup."
@@ -5762,46 +5772,46 @@ msgstr ""
"Гуйвуулга: Эдгээр хүснэгтүүд нь MySQL сервэр эхэлсэн үеэс сүлжээний "
"гуйвуулгыг харуулна."
-#: server_status.php:388
+#: server_status.php:499
msgid "Traffic"
msgstr "Гуйвуулга"
-#: server_status.php:388
+#: server_status.php:499
msgid ""
"On a busy server, the byte counters may overrun, so those statistics as "
"reported by the MySQL server may be incorrect."
msgstr ""
-#: server_status.php:389 server_status.php:434 server_status.php:497
-#: server_status.php:555
+#: server_status.php:500 server_status.php:545 server_status.php:608
+#: server_status.php:666
msgid "per hour"
msgstr "цагт"
-#: server_status.php:394
+#: server_status.php:505
msgid "Received"
msgstr "Ирсэн"
-#: server_status.php:404
+#: server_status.php:515
msgid "Sent"
msgstr "Илгээгдэв"
-#: server_status.php:433
+#: server_status.php:544
msgid "Connections"
msgstr "Холболт"
-#: server_status.php:440
+#: server_status.php:551
msgid "max. concurrent connections"
msgstr "ХИ. давхацсан холболтууд"
-#: server_status.php:447
+#: server_status.php:558
msgid "Failed attempts"
msgstr "Бүтэлгүйтсэн оролдлого"
-#: server_status.php:461
+#: server_status.php:572
msgid "Aborted"
msgstr "Таслагдсан"
-#: server_status.php:490
+#: server_status.php:601
#, php-format
msgid ""
"Query statistics: Since its startup, %s queries have been sent to the "
@@ -5809,19 +5819,19 @@ msgid ""
msgstr ""
"Асуултын статистик: Эхэлснээс хойш, %s асуулт сервэр рүү илгээгдсэн."
-#: server_status.php:498
+#: server_status.php:609
msgid "per minute"
msgstr "минутад"
-#: server_status.php:499
+#: server_status.php:610
msgid "per second"
msgstr "секундэд"
-#: server_status.php:554
+#: server_status.php:665
msgid "Query type"
msgstr "Асуултын төрөл"
-#: server_status.php:721
+#: server_status.php:832
msgid "Replication status"
msgstr ""
diff --git a/po/ms.po b/po/ms.po
index fc159d492..9a34e43df 100755
--- a/po/ms.po
+++ b/po/ms.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-06-04 16:07-0400\n"
+"POT-Creation-Date: 2010-06-08 12:32-0400\n"
"PO-Revision-Date: 2010-03-12 09:17+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: malay \n"
@@ -14,11 +14,11 @@ msgstr ""
"X-Generator: Translate Toolkit 1.5.3\n"
#: browse_foreigners.php:38 browse_foreigners.php:59
-#: libraries/display_tbl.lib.php:417 server_privileges.php:1475
+#: libraries/display_tbl.lib.php:417 server_privileges.php:1514
msgid "Show all"
msgstr "Papar semua"
-#: browse_foreigners.php:82 libraries/common.lib.php:2304
+#: browse_foreigners.php:82 libraries/common.lib.php:2313
#: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:394
#: libraries/export/pdf.php:147 pdf_schema.php:283 pdf_schema.php:1123
#: pdf_schema.php:1139
@@ -34,8 +34,8 @@ msgstr ""
#: browse_foreigners.php:150 db_structure.php:79 db_structure.php:80
#: db_structure.php:91 db_structure.php:93 db_structure.php:104
-#: db_structure.php:106 libraries/common.lib.php:2822
-#: libraries/common.lib.php:2829 libraries/db_links.inc.php:75
+#: db_structure.php:106 libraries/common.lib.php:2831
+#: libraries/common.lib.php:2838 libraries/db_links.inc.php:75
#: libraries/tbl_links.inc.php:63
msgid "Search"
msgstr "Cari"
@@ -45,7 +45,7 @@ msgstr "Cari"
#: db_structure.php:567 js/messages.php:48 libraries/Config.class.php:1046
#: libraries/Theme_Manager.class.php:311
#: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719
-#: libraries/common.lib.php:1333 libraries/common.lib.php:2279
+#: libraries/common.lib.php:1335 libraries/common.lib.php:2288
#: libraries/display_change_password.lib.php:82
#: libraries/display_create_table.lib.php:63
#: libraries/display_export.lib.php:275 libraries/display_import.lib.php:276
@@ -56,9 +56,9 @@ msgstr "Cari"
#: libraries/sql_query_form.lib.php:552 libraries/tbl_properties.inc.php:782
#: main.php:128 navigation.php:237 pdf_pages.php:292 pdf_pages.php:328
#: pdf_pages.php:530 pmd_pdf.php:116 server_binlog.php:142
-#: server_privileges.php:625 server_privileges.php:1585
-#: server_privileges.php:1932 server_privileges.php:1979
-#: server_privileges.php:2018 server_replication.php:235
+#: server_privileges.php:664 server_privileges.php:1624
+#: server_privileges.php:1971 server_privileges.php:2018
+#: server_privileges.php:2057 server_replication.php:235
#: server_replication.php:318 server_replication.php:341
#: server_synchronize.php:1209 tbl_change.php:330 tbl_change.php:1174
#: tbl_change.php:1211 tbl_indexes.php:254 tbl_operations.php:265
@@ -76,7 +76,7 @@ msgstr "Nama Kekunci"
#: browse_foreigners.php:169 browse_foreigners.php:171
#: server_collations.php:55 server_collations.php:67 server_engines.php:59
-#: server_status.php:628
+#: server_status.php:739
#, fuzzy
msgid "Description"
msgstr "tiada keterangan"
@@ -119,7 +119,7 @@ msgstr "Nama Kolum"
#: libraries/db_structure.lib.php:60 libraries/export/htmlword.php:245
#: libraries/export/latex.php:360 libraries/export/odt.php:297
#: libraries/export/texytext.php:234 libraries/tbl_properties.inc.php:100
-#: pdf_schema.php:1263 pdf_schema.php:1284 server_privileges.php:2031
+#: pdf_schema.php:1263 pdf_schema.php:1284 server_privileges.php:2070
#: tbl_change.php:287 tbl_change.php:314 tbl_printview.php:143
#: tbl_printview.php:313 tbl_select.php:136 tbl_structure.php:178
#: tbl_structure.php:659 tbl_tracking.php:274 tbl_tracking.php:321
@@ -163,9 +163,9 @@ msgstr "Komen"
#: libraries/Index.class.php:386 libraries/export/htmlword.php:322
#: libraries/export/latex.php:430 libraries/export/odt.php:368
#: libraries/export/texytext.php:311 libraries/mult_submits.inc.php:263
-#: pdf_schema.php:1344 server_privileges.php:1529 server_privileges.php:1540
-#: server_privileges.php:1850 server_privileges.php:1855
-#: server_privileges.php:2148 sql.php:132 sql.php:194 tbl_printview.php:229
+#: pdf_schema.php:1344 server_privileges.php:1568 server_privileges.php:1579
+#: server_privileges.php:1889 server_privileges.php:1894
+#: server_privileges.php:2187 sql.php:132 sql.php:194 tbl_printview.php:229
#: tbl_structure.php:350 tbl_tracking.php:337 tbl_tracking.php:342
msgid "No"
msgstr "Tidak"
@@ -179,9 +179,9 @@ msgstr "Tidak"
#: libraries/mult_submits.inc.php:101 libraries/mult_submits.inc.php:106
#: libraries/mult_submits.inc.php:111 libraries/mult_submits.inc.php:262
#: libraries/mult_submits.inc.php:273 pdf_schema.php:1344
-#: server_databases.php:64 server_privileges.php:1526
-#: server_privileges.php:1540 server_privileges.php:1850
-#: server_privileges.php:1853 server_privileges.php:2148 sql.php:193
+#: server_databases.php:64 server_privileges.php:1565
+#: server_privileges.php:1579 server_privileges.php:1889
+#: server_privileges.php:1892 server_privileges.php:2187 sql.php:193
#: tbl_printview.php:229 tbl_structure.php:40 tbl_structure.php:350
#: tbl_tracking.php:335 tbl_tracking.php:340
msgid "Yes"
@@ -281,7 +281,7 @@ msgstr ""
msgid "BLOB Repository"
msgstr ""
-#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1350
+#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1352
#: libraries/server_links.inc.php:49 server_processlist.php:59
#: tbl_tracking.php:596 test/theme.php:101
msgid "Status"
@@ -345,8 +345,8 @@ msgstr "Ubah Halaman PDF"
#: db_printview.php:104 db_tracking.php:72 db_tracking.php:157
#: libraries/db_structure.lib.php:46 libraries/export/xml.php:328
-#: libraries/header.inc.php:126 pdf_pages.php:424 server_privileges.php:1626
-#: server_privileges.php:1682 server_privileges.php:1946
+#: libraries/header.inc.php:126 pdf_pages.php:424 server_privileges.php:1665
+#: server_privileges.php:1721 server_privileges.php:1985
#: server_synchronize.php:423 server_synchronize.php:866 tbl_tracking.php:592
#: test/theme.php:75
msgid "Table"
@@ -448,7 +448,7 @@ msgstr "Del"
#: db_qbe.php:370 db_qbe.php:451 db_qbe.php:522 db_qbe.php:553
#: libraries/display_import.lib.php:166 libraries/tbl_properties.inc.php:779
-#: server_privileges.php:258 tbl_change.php:1031 tbl_indexes.php:250
+#: server_privileges.php:297 tbl_change.php:1031 tbl_indexes.php:250
#: tbl_select.php:288
msgid "Or"
msgstr "Atau"
@@ -482,7 +482,7 @@ msgstr "Guna Jadual"
msgid "SQL query on database %s:"
msgstr "SQL- kueri pada pangkalan data %s:"
-#: db_qbe.php:934 libraries/common.lib.php:1223
+#: db_qbe.php:934 libraries/common.lib.php:1225
msgid "Submit Query"
msgstr "Hantar Kueri"
@@ -521,7 +521,7 @@ msgstr "%s padanan di dalam jadual %s"
#: db_search.php:267 db_structure.php:77 db_structure.php:78
#: db_structure.php:90 db_structure.php:92 db_structure.php:103
-#: db_structure.php:105 libraries/common.lib.php:2824
+#: db_structure.php:105 libraries/common.lib.php:2833
#: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50
#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:467
msgid "Browse"
@@ -568,26 +568,26 @@ msgstr "Di dalam jadual:"
#: db_structure.php:81 db_structure.php:82 db_structure.php:94
#: db_structure.php:95 db_structure.php:107 db_structure.php:108
-#: libraries/common.lib.php:2823 libraries/sql_query_form.lib.php:334
+#: libraries/common.lib.php:2832 libraries/sql_query_form.lib.php:334
#: libraries/sql_query_form.lib.php:337 libraries/tbl_links.inc.php:76
msgid "Insert"
msgstr "Selit"
#: db_structure.php:83 db_structure.php:96 db_structure.php:109
-#: libraries/common.lib.php:2820 libraries/common.lib.php:2827
+#: libraries/common.lib.php:2829 libraries/common.lib.php:2836
#: libraries/db_links.inc.php:63 libraries/export/htmlword.php:23
#: libraries/export/latex.php:33 libraries/export/latex.php:337
#: libraries/export/odt.php:32 libraries/export/sql.php:60
#: libraries/export/texytext.php:23 libraries/import.lib.php:1104
#: libraries/tbl_links.inc.php:56 pmd_general.php:134
-#: server_privileges.php:554 server_replication.php:315 tbl_tracking.php:269
+#: server_privileges.php:593 server_replication.php:315 tbl_tracking.php:269
msgid "Structure"
msgstr "Struktur"
#: db_structure.php:84 db_structure.php:85 db_structure.php:97
#: db_structure.php:98 db_structure.php:110 db_structure.php:111
#: db_structure.php:545 db_structure.php:546 db_tracking.php:91
-#: libraries/Index.class.php:483 libraries/common.lib.php:1654
+#: libraries/Index.class.php:483 libraries/common.lib.php:1656
#: libraries/db_links.inc.php:100 libraries/mult_submits.inc.php:36
#: libraries/mult_submits.inc.php:73 libraries/tbl_links.inc.php:127
#: server_databases.php:352 tbl_structure.php:27 tbl_structure.php:151
@@ -597,7 +597,7 @@ msgstr "Gugur"
#: db_structure.php:86 db_structure.php:87 db_structure.php:99
#: db_structure.php:100 db_structure.php:112 db_structure.php:113
-#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1653
+#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1655
#: libraries/mult_submits.inc.php:39 libraries/tbl_links.inc.php:105
msgid "Empty"
msgstr "Kosong"
@@ -639,7 +639,7 @@ msgstr ""
#: db_structure.php:485 libraries/db_structure.lib.php:49
#: libraries/server_links.inc.php:70 server_replication.php:33
-#: server_replication.php:164 server_status.php:258
+#: server_replication.php:164 server_status.php:369
msgid "Replication"
msgstr ""
@@ -655,20 +655,20 @@ msgstr ""
#: db_structure.php:524 db_structure.php:541 db_structure.php:542
#: libraries/display_tbl.lib.php:2081 libraries/display_tbl.lib.php:2086
#: libraries/mult_submits.inc.php:16 server_databases.php:346
-#: server_databases.php:351 server_privileges.php:1557 tbl_structure.php:455
+#: server_databases.php:351 server_privileges.php:1596 tbl_structure.php:455
#: tbl_structure.php:464
msgid "With selected:"
msgstr "Dengan pilihan:"
#: db_structure.php:527 libraries/display_tbl.lib.php:2076
-#: server_databases.php:348 server_privileges.php:530
-#: server_privileges.php:1560 tbl_structure.php:458
+#: server_databases.php:348 server_privileges.php:569
+#: server_privileges.php:1599 tbl_structure.php:458
msgid "Check All"
msgstr "Tanda Semua"
#: db_structure.php:531 libraries/display_tbl.lib.php:2077
#: libraries/replication_gui.lib.php:33 server_databases.php:350
-#: server_privileges.php:533 server_privileges.php:1564 tbl_structure.php:462
+#: server_privileges.php:572 server_privileges.php:1603 tbl_structure.php:462
msgid "Uncheck All"
msgstr "Nyahtanda Semua"
@@ -706,7 +706,7 @@ msgstr "Analyze table"
#: libraries/display_export.lib.php:83 libraries/display_tbl.lib.php:2094
#: libraries/display_tbl.lib.php:2225 libraries/mult_submits.inc.php:62
#: libraries/server_links.inc.php:84 libraries/tbl_links.inc.php:82
-#: pmd_pdf.php:84 pmd_pdf.php:109 server_privileges.php:1341
+#: pmd_pdf.php:84 pmd_pdf.php:109 server_privileges.php:1380
#: setup/frames/menu.inc.php:22 tbl_row_action.php:59
msgid "Export"
msgstr "Eksport"
@@ -724,8 +724,8 @@ msgstr ""
#: libraries/export/sql.php:342 libraries/export/texytext.php:84
#: libraries/export/xml.php:255 libraries/header.inc.php:106
#: libraries/header_printview.inc.php:58 server_databases.php:169
-#: server_privileges.php:1621 server_privileges.php:1682
-#: server_privileges.php:1940 server_processlist.php:56
+#: server_privileges.php:1660 server_privileges.php:1721
+#: server_privileges.php:1979 server_processlist.php:56
#: server_synchronize.php:1179 server_synchronize.php:1183
#: tbl_tracking.php:591 test/theme.php:65
msgid "Database"
@@ -746,8 +746,8 @@ msgstr ""
#: db_tracking.php:77 libraries/Index.class.php:440
#: libraries/db_structure.lib.php:53 server_databases.php:203
-#: server_privileges.php:1503 server_privileges.php:1686
-#: server_privileges.php:2034 tbl_structure.php:187
+#: server_privileges.php:1542 server_privileges.php:1725
+#: server_privileges.php:2073 tbl_structure.php:187
msgid "Action"
msgstr "Aksi"
@@ -940,11 +940,11 @@ msgstr "Nama hos adalah kosong!"
msgid "The user name is empty!"
msgstr "Kata Pengenalan kosong!"
-#: js/messages.php:44 server_privileges.php:1197 user_password.php:70
+#: js/messages.php:44 server_privileges.php:1236 user_password.php:70
msgid "The password is empty!"
msgstr "Katalaluan adalah kosong!"
-#: js/messages.php:45 server_privileges.php:1195 user_password.php:73
+#: js/messages.php:45 server_privileges.php:1234 user_password.php:73
msgid "The passwords aren't the same!"
msgstr "Katalaluan tidak sama!"
@@ -1025,8 +1025,8 @@ msgid "Prev"
msgstr "Terdahulu"
#. l10n: Display text for next month link in calendar
-#: js/messages.php:77 libraries/common.lib.php:2344
-#: libraries/common.lib.php:2347 libraries/display_tbl.lib.php:338
+#: js/messages.php:77 libraries/common.lib.php:2353
+#: libraries/common.lib.php:2356 libraries/display_tbl.lib.php:338
#: server_binlog.php:205 server_binlog.php:207 tbl_printview.php:424
#: tbl_structure.php:801
msgid "Next"
@@ -1102,27 +1102,27 @@ msgid "December"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:97 libraries/common.lib.php:1555
+#: js/messages.php:97 libraries/common.lib.php:1557
msgid "Jan"
msgstr "Jan"
#. l10n: Short month name
-#: js/messages.php:99 libraries/common.lib.php:1557
+#: js/messages.php:99 libraries/common.lib.php:1559
msgid "Feb"
msgstr "Feb"
#. l10n: Short month name
-#: js/messages.php:101 libraries/common.lib.php:1559
+#: js/messages.php:101 libraries/common.lib.php:1561
msgid "Mar"
msgstr "Mac"
#. l10n: Short month name
-#: js/messages.php:103 libraries/common.lib.php:1561
+#: js/messages.php:103 libraries/common.lib.php:1563
msgid "Apr"
msgstr "Apr"
#. l10n: Short month name
-#: js/messages.php:105 libraries/common.lib.php:1563
+#: js/messages.php:105 libraries/common.lib.php:1565
#, fuzzy
#| msgid "May"
msgctxt "Short month name"
@@ -1130,37 +1130,37 @@ msgid "May"
msgstr "Mei"
#. l10n: Short month name
-#: js/messages.php:107 libraries/common.lib.php:1565
+#: js/messages.php:107 libraries/common.lib.php:1567
msgid "Jun"
msgstr "Jun"
#. l10n: Short month name
-#: js/messages.php:109 libraries/common.lib.php:1567
+#: js/messages.php:109 libraries/common.lib.php:1569
msgid "Jul"
msgstr "Jul"
#. l10n: Short month name
-#: js/messages.php:111 libraries/common.lib.php:1569
+#: js/messages.php:111 libraries/common.lib.php:1571
msgid "Aug"
msgstr "Ogos"
#. l10n: Short month name
-#: js/messages.php:113 libraries/common.lib.php:1571
+#: js/messages.php:113 libraries/common.lib.php:1573
msgid "Sep"
msgstr "Sept"
#. l10n: Short month name
-#: js/messages.php:115 libraries/common.lib.php:1573
+#: js/messages.php:115 libraries/common.lib.php:1575
msgid "Oct"
msgstr "Okt"
#. l10n: Short month name
-#: js/messages.php:117 libraries/common.lib.php:1575
+#: js/messages.php:117 libraries/common.lib.php:1577
msgid "Nov"
msgstr "Nov"
#. l10n: Short month name
-#: js/messages.php:119 libraries/common.lib.php:1577
+#: js/messages.php:119 libraries/common.lib.php:1579
msgid "Dec"
msgstr "Dis"
@@ -1201,37 +1201,37 @@ msgid "Saturday"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:132 libraries/common.lib.php:1580
+#: js/messages.php:132 libraries/common.lib.php:1582
msgid "Sun"
msgstr "Aha"
#. l10n: Short week day name
-#: js/messages.php:134 libraries/common.lib.php:1582
+#: js/messages.php:134 libraries/common.lib.php:1584
msgid "Mon"
msgstr "Isn"
#. l10n: Short week day name
-#: js/messages.php:136 libraries/common.lib.php:1584
+#: js/messages.php:136 libraries/common.lib.php:1586
msgid "Tue"
msgstr "Sel"
#. l10n: Short week day name
-#: js/messages.php:138 libraries/common.lib.php:1586
+#: js/messages.php:138 libraries/common.lib.php:1588
msgid "Wed"
msgstr "Rab"
#. l10n: Short week day name
-#: js/messages.php:140 libraries/common.lib.php:1588
+#: js/messages.php:140 libraries/common.lib.php:1590
msgid "Thu"
msgstr "Kha"
#. l10n: Short week day name
-#: js/messages.php:142 libraries/common.lib.php:1590
+#: js/messages.php:142 libraries/common.lib.php:1592
msgid "Fri"
msgstr "Jum"
#. l10n: Short week day name
-#: js/messages.php:144 libraries/common.lib.php:1592
+#: js/messages.php:144 libraries/common.lib.php:1594
msgid "Sat"
msgstr "Sab"
@@ -1375,7 +1375,7 @@ msgid "Comment"
msgstr "Komen"
#: libraries/Index.class.php:466 libraries/common.lib.php:616
-#: libraries/common.lib.php:1199 libraries/display_tbl.lib.php:1117
+#: libraries/common.lib.php:1201 libraries/display_tbl.lib.php:1117
#: libraries/import.lib.php:1087 libraries/import.lib.php:1111
#: pdf_pages.php:285 setup/frames/index.inc.php:124
#: setup/lib/messages.inc.php:352 tbl_row_action.php:69
@@ -1399,7 +1399,7 @@ msgid ""
msgstr ""
#: libraries/List_Database.class.php:431 libraries/server_links.inc.php:41
-#: server_databases.php:88 server_privileges.php:1621
+#: server_databases.php:88 server_privileges.php:1660
#: setup/lib/messages.inc.php:110 test/theme.php:93
msgid "Databases"
msgstr "pangkalan data"
@@ -1723,7 +1723,7 @@ msgid "Documentation"
msgstr "Dokumentasi"
#: libraries/common.lib.php:595 libraries/header_printview.inc.php:61
-#: server_processlist.php:60 server_status.php:247
+#: server_processlist.php:60 server_status.php:358
msgid "SQL query"
msgstr "kueri-SQL"
@@ -1739,128 +1739,128 @@ msgstr "Terangkan Kod SQL"
msgid "Skip Explain SQL"
msgstr "Skip Explain SQL"
-#: libraries/common.lib.php:1212
+#: libraries/common.lib.php:1214
msgid "Without PHP Code"
msgstr "Tanpa Kod PHP"
-#: libraries/common.lib.php:1215 setup/lib/messages.inc.php:355
+#: libraries/common.lib.php:1217 setup/lib/messages.inc.php:355
msgid "Create PHP Code"
msgstr "Cipta Kod PHP"
-#: libraries/common.lib.php:1233 server_status.php:341
+#: libraries/common.lib.php:1235 server_status.php:452
#: setup/lib/messages.inc.php:354
msgid "Refresh"
msgstr ""
-#: libraries/common.lib.php:1242
+#: libraries/common.lib.php:1244
msgid "Skip Validate SQL"
msgstr "Melangkau Pengesahan SQL"
-#: libraries/common.lib.php:1245 setup/lib/messages.inc.php:356 sql.php:518
+#: libraries/common.lib.php:1247 setup/lib/messages.inc.php:356 sql.php:518
msgid "Validate SQL"
msgstr "Mengesahkan SQL"
-#: libraries/common.lib.php:1276
+#: libraries/common.lib.php:1278
msgid "Inline edit of this query"
msgstr ""
-#: libraries/common.lib.php:1278
+#: libraries/common.lib.php:1280
msgid "Inline"
msgstr ""
-#: libraries/common.lib.php:1332 libraries/common.lib.php:1347
+#: libraries/common.lib.php:1334 libraries/common.lib.php:1349
msgid "Profiling"
msgstr ""
-#: libraries/common.lib.php:1351 libraries/tbl_triggers.lib.php:28
+#: libraries/common.lib.php:1353 libraries/tbl_triggers.lib.php:28
#: server_processlist.php:58
msgid "Time"
msgstr "Masa"
#. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "B"
msgstr "Bytes"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "KiB"
msgstr "KB"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "MiB"
msgstr "MB"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "GiB"
msgstr "GB"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "TiB"
msgstr "TB"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "PiB"
msgstr "PB"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "EiB"
msgstr "EB"
#. l10n: Thousands separator
-#: libraries/common.lib.php:1417
+#: libraries/common.lib.php:1419
msgid ","
msgstr ","
#. l10n: Decimal separator
-#: libraries/common.lib.php:1419
+#: libraries/common.lib.php:1421
msgid "."
msgstr "."
#. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string
-#: libraries/common.lib.php:1596
+#: libraries/common.lib.php:1598
#: libraries/transformations/text_plain__dateformat.inc.php:34
msgid "%B %d, %Y at %I:%M %p"
msgstr "%B %d, %Y at %I:%M %p"
-#: libraries/common.lib.php:1898
+#: libraries/common.lib.php:1907
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "%s hari, %s jam, %s minit dan %s saat"
-#: libraries/common.lib.php:2313 libraries/common.lib.php:2316
-#: libraries/display_tbl.lib.php:290 server_status.php:608
+#: libraries/common.lib.php:2322 libraries/common.lib.php:2325
+#: libraries/display_tbl.lib.php:290 server_status.php:719
msgid "Begin"
msgstr "Mula"
-#: libraries/common.lib.php:2314 libraries/common.lib.php:2317
+#: libraries/common.lib.php:2323 libraries/common.lib.php:2326
#: libraries/display_tbl.lib.php:291 server_binlog.php:168
#: server_binlog.php:170
msgid "Previous"
msgstr "Terdahulu"
-#: libraries/common.lib.php:2345 libraries/common.lib.php:2348
+#: libraries/common.lib.php:2354 libraries/common.lib.php:2357
#: libraries/display_tbl.lib.php:353
msgid "End"
msgstr "Tamat"
-#: libraries/common.lib.php:2421
+#: libraries/common.lib.php:2430
#, php-format
msgid "Jump to database "%s"."
msgstr ""
-#: libraries/common.lib.php:2441
+#: libraries/common.lib.php:2450
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr ""
-#: libraries/common.lib.php:2821 libraries/common.lib.php:2828
+#: libraries/common.lib.php:2830 libraries/common.lib.php:2837
#: libraries/db_links.inc.php:68 libraries/export/sql.php:25
#: libraries/import/sql.php:18 libraries/server_links.inc.php:45
#: libraries/tbl_links.inc.php:60 querywindow.php:99 test/theme.php:97
msgid "SQL"
msgstr "SQL"
-#: libraries/common.lib.php:2830 libraries/db_links.inc.php:104
+#: libraries/common.lib.php:2839 libraries/db_links.inc.php:104
#: libraries/tbl_links.inc.php:95 libraries/tbl_links.inc.php:117
#: view_operations.php:89
msgid "Operations"
@@ -1915,8 +1915,8 @@ msgid "Import"
msgstr "Eksport"
#: libraries/db_links.inc.php:111 libraries/server_links.inc.php:66
-#: server_privileges.php:72 server_privileges.php:1683
-#: server_privileges.php:2032 test/theme.php:117
+#: server_privileges.php:111 server_privileges.php:1722
+#: server_privileges.php:2071 test/theme.php:117
msgid "Privileges"
msgstr "Privilej"
@@ -1962,22 +1962,22 @@ msgid "Change password"
msgstr "Ubah Katalaluan"
#: libraries/display_change_password.lib.php:35
-#: libraries/replication_gui.lib.php:345 server_privileges.php:768
+#: libraries/replication_gui.lib.php:345 server_privileges.php:807
msgid "No Password"
msgstr "Tiada Katalaluan"
#: libraries/display_change_password.lib.php:41
#: libraries/replication_gui.lib.php:59 libraries/replication_gui.lib.php:60
#: libraries/replication_gui.lib.php:335 libraries/replication_gui.lib.php:339
-#: libraries/replication_gui.lib.php:349 server_privileges.php:757
-#: server_privileges.php:761 server_privileges.php:772
-#: server_privileges.php:1499 server_synchronize.php:1175
+#: libraries/replication_gui.lib.php:349 server_privileges.php:796
+#: server_privileges.php:800 server_privileges.php:811
+#: server_privileges.php:1538 server_synchronize.php:1175
msgid "Password"
msgstr "Katalaluan"
#: libraries/display_change_password.lib.php:46
#: libraries/replication_gui.lib.php:353 libraries/replication_gui.lib.php:356
-#: server_privileges.php:776 server_privileges.php:779
+#: server_privileges.php:815 server_privileges.php:818
msgid "Re-type"
msgstr "Ulang-taip"
@@ -1990,12 +1990,12 @@ msgid "MySQL 4.0 compatible"
msgstr ""
#: libraries/display_change_password.lib.php:72
-#: libraries/replication_gui.lib.php:360 server_privileges.php:783
+#: libraries/replication_gui.lib.php:360 server_privileges.php:822
msgid "Generate Password"
msgstr ""
#: libraries/display_change_password.lib.php:75
-#: libraries/replication_gui.lib.php:363 server_privileges.php:786
+#: libraries/replication_gui.lib.php:363 server_privileges.php:825
#, fuzzy
msgid "Generate"
msgstr "Dijana oleh"
@@ -2009,8 +2009,8 @@ msgstr "Cipta pangkalan data baru"
msgid "Create"
msgstr "Cipta"
-#: libraries/display_create_database.lib.php:40 server_privileges.php:74
-#: server_privileges.php:1388 server_replication.php:35
+#: libraries/display_create_database.lib.php:40 server_privileges.php:113
+#: server_privileges.php:1427 server_replication.php:35
msgid "No Privileges"
msgstr "Tiada Privilej"
@@ -2099,7 +2099,7 @@ msgstr "Mampatan"
#: libraries/display_export.lib.php:240 libraries/display_import.lib.php:197
#: libraries/display_import.lib.php:210 libraries/display_tbl.lib.php:530
#: libraries/export/sql.php:868 libraries/tbl_properties.inc.php:575
-#: server_privileges.php:1836 server_processlist.php:75
+#: server_privileges.php:1875 server_processlist.php:75
msgid "None"
msgstr "Tiada"
@@ -2420,7 +2420,7 @@ msgstr ""
msgid "Buffer Pool"
msgstr ""
-#: libraries/engines/innodb.lib.php:145 server_status.php:306
+#: libraries/engines/innodb.lib.php:145 server_status.php:417
msgid "InnoDB Status"
msgstr ""
@@ -2429,8 +2429,8 @@ msgid "Buffer Pool Usage"
msgstr ""
#: libraries/engines/innodb.lib.php:194 server_databases.php:137
-#: server_databases.php:305 server_status.php:414 server_status.php:475
-#: server_status.php:496 tbl_printview.php:351 tbl_structure.php:696
+#: server_databases.php:305 server_status.php:525 server_status.php:586
+#: server_status.php:607 tbl_printview.php:351 tbl_structure.php:696
msgid "Total"
msgstr "Jumlah"
@@ -2748,7 +2748,7 @@ msgstr ""
#: libraries/export/latex.php:201 libraries/export/odt.php:48
#: libraries/export/sql.php:106 libraries/export/sql.php:868
#: libraries/export/texytext.php:27 server_databases.php:127
-#: server_privileges.php:537 server_replication.php:316 tbl_printview.php:317
+#: server_privileges.php:576 server_replication.php:316 tbl_printview.php:317
#: tbl_structure.php:665
msgid "Data"
msgstr "Data"
@@ -2799,9 +2799,9 @@ msgstr ""
#: libraries/export/xml.php:102 libraries/header_printview.inc.php:57
#: libraries/replication_gui.lib.php:63 libraries/replication_gui.lib.php:174
#: libraries/replication_gui.lib.php:269 libraries/replication_gui.lib.php:272
-#: libraries/replication_gui.lib.php:329 server_privileges.php:692
-#: server_privileges.php:695 server_privileges.php:751
-#: server_privileges.php:1498 server_privileges.php:2030
+#: libraries/replication_gui.lib.php:329 server_privileges.php:731
+#: server_privileges.php:734 server_privileges.php:790
+#: server_privileges.php:1537 server_privileges.php:2069
#: server_processlist.php:55 server_synchronize.php:1159
msgid "Host"
msgstr "Hos"
@@ -3158,741 +3158,6 @@ msgstr "Tiada"
msgid "Convert to Kana"
msgstr ""
-#. l10n: Text direction, use either ltr or rtl
-#: libraries/messages.inc.php:19
-msgid "ltr"
-msgstr "ltr"
-
-#: libraries/messages.inc.php:21
-msgid "Content of table __TABLE__"
-msgstr ""
-
-#: libraries/messages.inc.php:22
-msgid "(continued)"
-msgstr ""
-
-#: libraries/messages.inc.php:23
-msgid "Structure of table __TABLE__"
-msgstr ""
-
-#: libraries/messages.inc.php:25 server_privileges.php:227
-msgid "Includes all privileges except GRANT."
-msgstr ""
-
-#: libraries/messages.inc.php:26 server_privileges.php:153
-#: server_privileges.php:476
-msgid "Allows altering the structure of existing tables."
-msgstr ""
-
-#: libraries/messages.inc.php:27 server_privileges.php:169
-#: server_privileges.php:482
-msgid "Allows altering and dropping stored routines."
-msgstr ""
-
-#: libraries/messages.inc.php:28 server_privileges.php:145
-#: server_privileges.php:475
-msgid "Allows creating new databases and tables."
-msgstr ""
-
-#: libraries/messages.inc.php:29 server_privileges.php:168
-#: server_privileges.php:481
-msgid "Allows creating stored routines."
-msgstr ""
-
-#: libraries/messages.inc.php:30 server_privileges.php:475
-msgid "Allows creating new tables."
-msgstr ""
-
-#: libraries/messages.inc.php:31 server_privileges.php:156
-#: server_privileges.php:479
-msgid "Allows creating temporary tables."
-msgstr ""
-
-#: libraries/messages.inc.php:32 server_privileges.php:170
-#: server_privileges.php:515
-msgid "Allows creating, dropping and renaming user accounts."
-msgstr ""
-
-#: libraries/messages.inc.php:33 server_privileges.php:160
-#: server_privileges.php:164 server_privileges.php:487
-#: server_privileges.php:491
-msgid "Allows creating new views."
-msgstr ""
-
-#: libraries/messages.inc.php:34 server_privileges.php:144
-#: server_privileges.php:467
-msgid "Allows deleting data."
-msgstr ""
-
-#: libraries/messages.inc.php:35 server_privileges.php:146
-#: server_privileges.php:478
-msgid "Allows dropping databases and tables."
-msgstr ""
-
-#: libraries/messages.inc.php:36 server_privileges.php:478
-msgid "Allows dropping tables."
-msgstr ""
-
-#: libraries/messages.inc.php:37 server_privileges.php:161
-#: server_privileges.php:495
-msgid "Allows to set up events for the event scheduler"
-msgstr ""
-
-#: libraries/messages.inc.php:38 server_privileges.php:171
-#: server_privileges.php:483
-msgid "Allows executing stored routines."
-msgstr ""
-
-#: libraries/messages.inc.php:39 server_privileges.php:150
-#: server_privileges.php:470
-msgid "Allows importing data from and exporting data into files."
-msgstr ""
-
-#: libraries/messages.inc.php:40 server_privileges.php:501
-msgid ""
-"Allows adding users and privileges without reloading the privilege tables."
-msgstr ""
-
-#: libraries/messages.inc.php:41 server_privileges.php:152
-#: server_privileges.php:477
-msgid "Allows creating and dropping indexes."
-msgstr ""
-
-#: libraries/messages.inc.php:42 server_privileges.php:142
-#: server_privileges.php:403 server_privileges.php:465
-msgid "Allows inserting and replacing data."
-msgstr ""
-
-#: libraries/messages.inc.php:43 server_privileges.php:157
-#: server_privileges.php:510
-msgid "Allows locking tables for the current thread."
-msgstr ""
-
-#: libraries/messages.inc.php:44 server_privileges.php:607
-#: server_privileges.php:609
-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/messages.inc.php:45 server_privileges.php:595
-#: server_privileges.php:597
-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/messages.inc.php:46 server_privileges.php:601
-#: server_privileges.php:603
-msgid ""
-"Limits the number of commands that change any table or database the user may "
-"execute per hour."
-msgstr ""
-"Limits the number of commands that change any table or database the user may "
-"execute per hour."
-
-#: libraries/messages.inc.php:47 server_privileges.php:613
-#: server_privileges.php:615
-#, 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/messages.inc.php:48 server_privileges.php:149
-#: server_privileges.php:505
-msgid "Allows viewing processes of all users"
-msgstr ""
-
-#: libraries/messages.inc.php:49 server_privileges.php:151
-#: server_privileges.php:409 server_privileges.php:511
-msgid "Has no effect in this MySQL version."
-msgstr ""
-
-#: libraries/messages.inc.php:50 server_privileges.php:147
-#: server_privileges.php:506
-msgid "Allows reloading server settings and flushing the server's caches."
-msgstr ""
-
-#: libraries/messages.inc.php:51 server_privileges.php:159
-#: server_privileges.php:513
-msgid "Allows the user to ask where the slaves / masters are."
-msgstr ""
-
-#: libraries/messages.inc.php:52 server_privileges.php:158
-#: server_privileges.php:514
-msgid "Needed for the replication slaves."
-msgstr ""
-
-#: libraries/messages.inc.php:53 server_privileges.php:141
-#: server_privileges.php:400 server_privileges.php:464
-msgid "Allows reading data."
-msgstr ""
-
-#: libraries/messages.inc.php:54 server_privileges.php:154
-#: server_privileges.php:508
-msgid "Gives access to the complete list of databases."
-msgstr ""
-
-#: libraries/messages.inc.php:55 server_privileges.php:165
-#: server_privileges.php:167 server_privileges.php:480
-msgid "Allows performing SHOW CREATE VIEW queries."
-msgstr ""
-
-#: libraries/messages.inc.php:56 server_privileges.php:148
-#: server_privileges.php:507
-msgid "Allows shutting down the server."
-msgstr ""
-
-#: libraries/messages.inc.php:57 server_privileges.php:155
-#: server_privileges.php:504
-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/messages.inc.php:58 server_privileges.php:162
-#: server_privileges.php:496
-msgid "Allows creating and dropping triggers"
-msgstr ""
-
-#: libraries/messages.inc.php:59 server_privileges.php:143
-#: server_privileges.php:406 server_privileges.php:466
-msgid "Allows changing data."
-msgstr ""
-
-#: libraries/messages.inc.php:60 server_privileges.php:221
-#, fuzzy
-msgid "No privileges."
-msgstr "Tiada Privilej"
-
-#: libraries/messages.inc.php:62
-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/messages.inc.php:63
-msgid "The number of transactions that used the temporary binary log cache."
-msgstr ""
-
-#: libraries/messages.inc.php:64
-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 "
-"to increase the tmp_table_size value to cause temporary tables to be memory-"
-"based instead of disk-based."
-msgstr ""
-
-#: libraries/messages.inc.php:65
-msgid "How many temporary files mysqld has created."
-msgstr ""
-
-#: libraries/messages.inc.php:66
-msgid ""
-"The number of in-memory temporary tables created automatically by the server "
-"while executing statements."
-msgstr ""
-
-#: libraries/messages.inc.php:67
-msgid ""
-"The number of rows written with INSERT DELAYED for which some error occurred "
-"(probably duplicate key)."
-msgstr ""
-
-#: libraries/messages.inc.php:68
-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/messages.inc.php:69
-msgid "The number of INSERT DELAYED rows written."
-msgstr ""
-
-#: libraries/messages.inc.php:70
-msgid "The number of executed FLUSH statements."
-msgstr ""
-
-#: libraries/messages.inc.php:71
-msgid "The number of internal COMMIT statements."
-msgstr ""
-
-#: libraries/messages.inc.php:72
-msgid "The number of times a row was deleted from a table."
-msgstr ""
-
-#: libraries/messages.inc.php:73
-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/messages.inc.php:74
-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/messages.inc.php:75
-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/messages.inc.php:76
-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/messages.inc.php:77
-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/messages.inc.php:78
-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 "
-"probably have a lot of queries that require MySQL to scan whole tables or "
-"you have joins that don't use keys properly."
-msgstr ""
-
-#: libraries/messages.inc.php:79
-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 "
-"tables are not properly indexed or that your queries are not written to take "
-"advantage of the indexes you have."
-msgstr ""
-
-#: libraries/messages.inc.php:80
-msgid "The number of internal ROLLBACK statements."
-msgstr ""
-
-#: libraries/messages.inc.php:81
-msgid "The number of requests to update a row in a table."
-msgstr ""
-
-#: libraries/messages.inc.php:82
-msgid "The number of requests to insert a row in a table."
-msgstr ""
-
-#: libraries/messages.inc.php:83
-msgid "The number of pages containing data (dirty or clean)."
-msgstr ""
-
-#: libraries/messages.inc.php:84
-msgid "The number of pages currently dirty."
-msgstr ""
-
-#: libraries/messages.inc.php:85
-msgid "The number of buffer pool pages that have been requested to be flushed."
-msgstr ""
-
-#: libraries/messages.inc.php:86
-msgid "The number of free pages."
-msgstr ""
-
-#: libraries/messages.inc.php:87
-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/messages.inc.php:88
-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 "
-"be calculated as Innodb_buffer_pool_pages_total - "
-"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data."
-msgstr ""
-
-#: libraries/messages.inc.php:89
-msgid "Total size of buffer pool, in pages."
-msgstr ""
-
-#: libraries/messages.inc.php:90
-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/messages.inc.php:91
-msgid ""
-"The number of sequential read-aheads InnoDB initiated. This happens when "
-"InnoDB does a sequential full table scan."
-msgstr ""
-
-#: libraries/messages.inc.php:92
-msgid "The number of logical read requests InnoDB has done."
-msgstr ""
-
-#: libraries/messages.inc.php:93
-msgid ""
-"The number of logical reads that InnoDB could not satisfy from buffer pool "
-"and had to do a single-page read."
-msgstr ""
-
-#: libraries/messages.inc.php:94
-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 "
-"available, it's necessary to wait for pages to be flushed first. This "
-"counter counts instances of these waits. If the buffer pool size was set "
-"properly, this value should be small."
-msgstr ""
-
-#: libraries/messages.inc.php:95
-msgid "The number writes done to the InnoDB buffer pool."
-msgstr ""
-
-#: libraries/messages.inc.php:96
-msgid "The number of fsync() operations so far."
-msgstr ""
-
-#: libraries/messages.inc.php:97
-msgid "The current number of pending fsync() operations."
-msgstr ""
-
-#: libraries/messages.inc.php:98
-msgid "The current number of pending reads."
-msgstr ""
-
-#: libraries/messages.inc.php:99
-msgid "The current number of pending writes."
-msgstr ""
-
-#: libraries/messages.inc.php:100
-msgid "The amount of data read so far, in bytes."
-msgstr ""
-
-#: libraries/messages.inc.php:101
-msgid "The total number of data reads."
-msgstr ""
-
-#: libraries/messages.inc.php:102
-msgid "The total number of data writes."
-msgstr ""
-
-#: libraries/messages.inc.php:103
-msgid "The amount of data written so far, in bytes."
-msgstr ""
-
-#: libraries/messages.inc.php:104
-msgid "The number of pages that have been written for doublewrite operations."
-msgstr ""
-
-#: libraries/messages.inc.php:105
-msgid "The number of doublewrite operations that have been performed."
-msgstr ""
-
-#: libraries/messages.inc.php:106
-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/messages.inc.php:107
-msgid "The number of log write requests."
-msgstr ""
-
-#: libraries/messages.inc.php:108
-msgid "The number of physical writes to the log file."
-msgstr ""
-
-#: libraries/messages.inc.php:109
-msgid "The number of fsync() writes done to the log file."
-msgstr ""
-
-#: libraries/messages.inc.php:110
-msgid "The number of pending log file fsyncs."
-msgstr ""
-
-#: libraries/messages.inc.php:111
-msgid "Pending log file writes."
-msgstr ""
-
-#: libraries/messages.inc.php:112
-msgid "The number of bytes written to the log file."
-msgstr ""
-
-#: libraries/messages.inc.php:113
-msgid "The number of pages created."
-msgstr ""
-
-#: libraries/messages.inc.php:114
-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/messages.inc.php:115
-msgid "The number of pages read."
-msgstr ""
-
-#: libraries/messages.inc.php:116
-msgid "The number of pages written."
-msgstr ""
-
-#: libraries/messages.inc.php:117
-msgid "The number of row locks currently being waited for."
-msgstr ""
-
-#: libraries/messages.inc.php:118
-msgid "The average time to acquire a row lock, in milliseconds."
-msgstr ""
-
-#: libraries/messages.inc.php:119
-msgid "The total time spent in acquiring row locks, in milliseconds."
-msgstr ""
-
-#: libraries/messages.inc.php:120
-msgid "The maximum time to acquire a row lock, in milliseconds."
-msgstr ""
-
-#: libraries/messages.inc.php:121
-msgid "The number of times a row lock had to be waited for."
-msgstr ""
-
-#: libraries/messages.inc.php:122
-msgid "The number of rows deleted from InnoDB tables."
-msgstr ""
-
-#: libraries/messages.inc.php:123
-msgid "The number of rows inserted in InnoDB tables."
-msgstr ""
-
-#: libraries/messages.inc.php:124
-msgid "The number of rows read from InnoDB tables."
-msgstr ""
-
-#: libraries/messages.inc.php:125
-msgid "The number of rows updated in InnoDB tables."
-msgstr ""
-
-#: libraries/messages.inc.php:126
-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/messages.inc.php:127
-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/messages.inc.php:128
-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/messages.inc.php:129
-msgid "The number of requests to read a key block from the cache."
-msgstr ""
-
-#: libraries/messages.inc.php:130
-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/messages.inc.php:131
-msgid "The number of requests to write a key block to the cache."
-msgstr ""
-
-#: libraries/messages.inc.php:132
-msgid "The number of physical writes of a key block to disk."
-msgstr ""
-
-#: libraries/messages.inc.php:133
-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/messages.inc.php:134
-msgid "The number of rows waiting to be written in INSERT DELAYED queues."
-msgstr ""
-
-#: libraries/messages.inc.php:135
-msgid ""
-"The number of tables that have been opened. If opened tables is big, your "
-"table cache value is probably too small."
-msgstr ""
-
-#: libraries/messages.inc.php:136
-msgid "The number of files that are open."
-msgstr ""
-
-#: libraries/messages.inc.php:137
-msgid "The number of streams that are open (used mainly for logging)."
-msgstr ""
-
-#: libraries/messages.inc.php:138
-msgid "The number of tables that are open."
-msgstr ""
-
-#: libraries/messages.inc.php:139
-msgid "The number of free memory blocks in query cache."
-msgstr ""
-
-#: libraries/messages.inc.php:140
-msgid "The amount of free memory for query cache."
-msgstr ""
-
-#: libraries/messages.inc.php:141
-msgid "The number of cache hits."
-msgstr ""
-
-#: libraries/messages.inc.php:142
-msgid "The number of queries added to the cache."
-msgstr ""
-
-#: libraries/messages.inc.php:143
-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 "
-"cache size. The query cache uses a least recently used (LRU) strategy to "
-"decide which queries to remove from the cache."
-msgstr ""
-
-#: libraries/messages.inc.php:144
-msgid ""
-"The number of non-cached queries (not cachable, or not cached due to the "
-"query_cache_type setting)."
-msgstr ""
-
-#: libraries/messages.inc.php:145
-msgid "The number of queries registered in the cache."
-msgstr ""
-
-#: libraries/messages.inc.php:146
-msgid "The total number of blocks in the query cache."
-msgstr ""
-
-#: libraries/messages.inc.php:147
-#, fuzzy
-msgctxt "$strShowStatusReset"
-msgid "Reset"
-msgstr "Ulangtetap"
-
-#: libraries/messages.inc.php:148
-msgid "The status of failsafe replication (not yet implemented)."
-msgstr ""
-
-#: libraries/messages.inc.php:149
-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/messages.inc.php:150
-msgid "The number of joins that used a range search on a reference table."
-msgstr ""
-
-#: libraries/messages.inc.php:151
-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/messages.inc.php:152
-msgid ""
-"The number of joins that used ranges on the first table. (It's normally not "
-"critical even if this is big.)"
-msgstr ""
-
-#: libraries/messages.inc.php:153
-msgid "The number of joins that did a full scan of the first table."
-msgstr ""
-
-#: libraries/messages.inc.php:154
-msgid "The number of temporary tables currently open by the slave SQL thread."
-msgstr ""
-
-#: libraries/messages.inc.php:155
-msgid ""
-"Total (since startup) number of times the replication slave SQL thread has "
-"retried transactions."
-msgstr ""
-
-#: libraries/messages.inc.php:156
-msgid "This is ON if this server is a slave that is connected to a master."
-msgstr ""
-
-#: libraries/messages.inc.php:157
-msgid ""
-"The number of threads that have taken more than slow_launch_time seconds to "
-"create."
-msgstr ""
-
-#: libraries/messages.inc.php:158
-msgid ""
-"The number of queries that have taken more than long_query_time seconds."
-msgstr ""
-
-#: libraries/messages.inc.php:159
-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/messages.inc.php:160
-msgid "The number of sorts that were done with ranges."
-msgstr ""
-
-#: libraries/messages.inc.php:161
-msgid "The number of sorted rows."
-msgstr ""
-
-#: libraries/messages.inc.php:162
-msgid "The number of sorts that were done by scanning the table."
-msgstr ""
-
-#: libraries/messages.inc.php:163
-msgid "The number of times that a table lock was acquired immediately."
-msgstr ""
-
-#: libraries/messages.inc.php:164
-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 "
-"should first optimize your queries, and then either split your table or "
-"tables or use replication."
-msgstr ""
-
-#: libraries/messages.inc.php:165
-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/messages.inc.php:166
-msgid "The number of currently open connections."
-msgstr ""
-
-#: libraries/messages.inc.php:167
-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 "
-"doesn't give a notable performance improvement if you have a good thread "
-"implementation.)"
-msgstr ""
-
-#: libraries/messages.inc.php:168
-msgid "The number of threads that are not sleeping."
-msgstr ""
-
#: libraries/mult_submits.inc.php:76 libraries/tbl_properties.inc.php:513
#: tbl_structure.php:29 tbl_structure.php:153 tbl_structure.php:157
#: tbl_structure.php:473
@@ -4210,8 +3475,8 @@ msgstr ""
#: libraries/replication_gui.lib.php:55 libraries/replication_gui.lib.php:56
#: libraries/replication_gui.lib.php:249 libraries/replication_gui.lib.php:252
-#: libraries/replication_gui.lib.php:259 server_privileges.php:672
-#: server_privileges.php:675 server_privileges.php:682
+#: libraries/replication_gui.lib.php:259 server_privileges.php:711
+#: server_privileges.php:714 server_privileges.php:721
#: server_synchronize.php:1171
msgid "User name"
msgstr "Kata Pengenalan"
@@ -4230,11 +3495,11 @@ msgid "Slave status"
msgstr ""
#: libraries/replication_gui.lib.php:114 libraries/sql_query_form.lib.php:445
-#: server_status.php:626 server_variables.php:52
+#: server_status.php:737 server_variables.php:52
msgid "Variable"
msgstr "Pembolehubah"
-#: libraries/replication_gui.lib.php:115 server_status.php:627
+#: libraries/replication_gui.lib.php:115 server_status.php:738
#: tbl_change.php:324 tbl_printview.php:370 tbl_select.php:139
#: tbl_structure.php:729
msgid "Value"
@@ -4255,41 +3520,58 @@ msgstr ""
msgid "Add slave replication user"
msgstr ""
-#: libraries/replication_gui.lib.php:254 server_privileges.php:677
+#: libraries/replication_gui.lib.php:254 server_privileges.php:716
msgid "Any user"
msgstr "Sebarang pengguna"
#: libraries/replication_gui.lib.php:255 libraries/replication_gui.lib.php:323
-#: libraries/replication_gui.lib.php:346 server_privileges.php:678
-#: server_privileges.php:745 server_privileges.php:769
-#: server_privileges.php:1889 server_privileges.php:1919
+#: libraries/replication_gui.lib.php:346 server_privileges.php:717
+#: server_privileges.php:784 server_privileges.php:808
+#: server_privileges.php:1928 server_privileges.php:1958
msgid "Use text field"
msgstr ""
-#: libraries/replication_gui.lib.php:302 server_privileges.php:725
+#: libraries/replication_gui.lib.php:302 server_privileges.php:764
msgid "Any host"
msgstr "Sebarang hos"
-#: libraries/replication_gui.lib.php:306 server_privileges.php:729
+#: libraries/replication_gui.lib.php:306 server_privileges.php:768
msgid "Local"
msgstr "Local"
-#: libraries/replication_gui.lib.php:312 server_privileges.php:734
+#: libraries/replication_gui.lib.php:312 server_privileges.php:773
msgid "This Host"
msgstr ""
-#: libraries/replication_gui.lib.php:318 server_privileges.php:740
+#: libraries/replication_gui.lib.php:318 server_privileges.php:779
msgid "Use Host Table"
msgstr ""
-#: libraries/replication_gui.lib.php:331 server_privileges.php:753
+#: libraries/replication_gui.lib.php:331 server_privileges.php:792
msgid ""
"When Host table is used, this field is ignored and values stored in Host "
"table are used instead."
msgstr ""
-#: libraries/select_lang.lib.php:480 libraries/select_lang.lib.php:486
-#: libraries/select_lang.lib.php:492
+#. l10n: Text direction, use either ltr or rtl
+#: libraries/select_lang.lib.php:491
+msgid "ltr"
+msgstr "ltr"
+
+#: libraries/select_lang.lib.php:493
+msgid "Content of table __TABLE__"
+msgstr ""
+
+#: libraries/select_lang.lib.php:494
+msgid "(continued)"
+msgstr ""
+
+#: libraries/select_lang.lib.php:495
+msgid "Structure of table __TABLE__"
+msgstr ""
+
+#: libraries/select_lang.lib.php:500 libraries/select_lang.lib.php:506
+#: libraries/select_lang.lib.php:512
#, php-format
msgid "Unknown language: %1$s."
msgstr ""
@@ -4301,7 +3583,7 @@ msgid "Servers"
msgstr "Pelayan"
#: libraries/server_links.inc.php:53 server_engines.php:112
-#: server_engines.php:116 server_status.php:304 test/theme.php:105
+#: server_engines.php:116 server_status.php:415 test/theme.php:105
msgid "Variables"
msgstr "Pemboleh-pembolehubah"
@@ -4314,7 +3596,7 @@ msgid "Engines"
msgstr ""
#: libraries/server_links.inc.php:76 server_binlog.php:110
-#: server_status.php:253 test/theme.php:121
+#: server_status.php:364 test/theme.php:121
#, fuzzy
msgid "Binary log"
msgstr "Binari"
@@ -4710,8 +3992,8 @@ msgstr "Ulangtetap"
msgid "Protocol version"
msgstr ""
-#: main.php:189 server_privileges.php:1350 server_privileges.php:1497
-#: server_privileges.php:1611 server_privileges.php:2029
+#: main.php:189 server_privileges.php:1389 server_privileges.php:1536
+#: server_privileges.php:1650 server_privileges.php:2068
#: server_processlist.php:54
msgid "User"
msgstr "Pengguna"
@@ -5081,7 +4363,7 @@ msgstr ""
msgid "Databases statistics"
msgstr "Statistik pangkalan data"
-#: server_databases.php:117 server_status.php:260
+#: server_databases.php:117 server_status.php:371
#: setup/lib/messages.inc.php:117
msgid "Tables"
msgstr "Jadual-jadual"
@@ -5100,6 +4382,14 @@ msgstr ""
msgid "Jump to database"
msgstr "Tiada pangkalan data"
+#: server_databases.php:267
+msgid "Not replicated"
+msgstr ""
+
+#: server_databases.php:273
+msgid "Replicated"
+msgstr ""
+
#: server_databases.php:289
#, php-format
msgid "Check privileges for database "%s"."
@@ -5135,145 +4425,331 @@ msgstr ""
msgid "View dump (schema) of databases"
msgstr "Lihat longgokan (skema) pangkalan data"
-#: server_privileges.php:263 server_privileges.php:264
+#: server_privileges.php:24 server_privileges.php:266
+msgid "Includes all privileges except GRANT."
+msgstr ""
+
+#: server_privileges.php:25 server_privileges.php:192
+#: server_privileges.php:515
+msgid "Allows altering the structure of existing tables."
+msgstr ""
+
+#: server_privileges.php:26 server_privileges.php:208
+#: server_privileges.php:521
+msgid "Allows altering and dropping stored routines."
+msgstr ""
+
+#: server_privileges.php:27 server_privileges.php:184
+#: server_privileges.php:514
+msgid "Allows creating new databases and tables."
+msgstr ""
+
+#: server_privileges.php:28 server_privileges.php:207
+#: server_privileges.php:520
+msgid "Allows creating stored routines."
+msgstr ""
+
+#: server_privileges.php:29 server_privileges.php:514
+msgid "Allows creating new tables."
+msgstr ""
+
+#: server_privileges.php:30 server_privileges.php:195
+#: server_privileges.php:518
+msgid "Allows creating temporary tables."
+msgstr ""
+
+#: server_privileges.php:31 server_privileges.php:209
+#: server_privileges.php:554
+msgid "Allows creating, dropping and renaming user accounts."
+msgstr ""
+
+#: server_privileges.php:32 server_privileges.php:199
+#: server_privileges.php:203 server_privileges.php:526
+#: server_privileges.php:530
+msgid "Allows creating new views."
+msgstr ""
+
+#: server_privileges.php:33 server_privileges.php:183
+#: server_privileges.php:506
+msgid "Allows deleting data."
+msgstr ""
+
+#: server_privileges.php:34 server_privileges.php:185
+#: server_privileges.php:517
+msgid "Allows dropping databases and tables."
+msgstr ""
+
+#: server_privileges.php:35 server_privileges.php:517
+msgid "Allows dropping tables."
+msgstr ""
+
+#: server_privileges.php:36 server_privileges.php:200
+#: server_privileges.php:534
+msgid "Allows to set up events for the event scheduler"
+msgstr ""
+
+#: server_privileges.php:37 server_privileges.php:210
+#: server_privileges.php:522
+msgid "Allows executing stored routines."
+msgstr ""
+
+#: server_privileges.php:38 server_privileges.php:189
+#: server_privileges.php:509
+msgid "Allows importing data from and exporting data into files."
+msgstr ""
+
+#: server_privileges.php:39 server_privileges.php:540
+msgid ""
+"Allows adding users and privileges without reloading the privilege tables."
+msgstr ""
+
+#: server_privileges.php:40 server_privileges.php:191
+#: server_privileges.php:516
+msgid "Allows creating and dropping indexes."
+msgstr ""
+
+#: server_privileges.php:41 server_privileges.php:181
+#: server_privileges.php:442 server_privileges.php:504
+msgid "Allows inserting and replacing data."
+msgstr ""
+
+#: server_privileges.php:42 server_privileges.php:196
+#: server_privileges.php:549
+msgid "Allows locking tables for the current thread."
+msgstr ""
+
+#: server_privileges.php:43 server_privileges.php:646
+#: server_privileges.php:648
+msgid "Limits the number of new connections the user may open per hour."
+msgstr "Limits the number of new connections the user may open per hour."
+
+#: server_privileges.php:44 server_privileges.php:634
+#: server_privileges.php:636
+msgid "Limits the number of queries the user may send to the server per hour."
+msgstr "Limits the number of queries the user may send to the server per hour."
+
+#: server_privileges.php:45 server_privileges.php:640
+#: server_privileges.php:642
+msgid ""
+"Limits the number of commands that change any table or database the user may "
+"execute per hour."
+msgstr ""
+"Limits the number of commands that change any table or database the user may "
+"execute per hour."
+
+#: server_privileges.php:46 server_privileges.php:652
+#: server_privileges.php:654
+#, fuzzy
+msgid "Limits the number of simultaneous connections the user may have."
+msgstr "Limits the number of new connections the user may open per hour."
+
+#: server_privileges.php:47 server_privileges.php:188
+#: server_privileges.php:544
+msgid "Allows viewing processes of all users"
+msgstr ""
+
+#: server_privileges.php:48 server_privileges.php:190
+#: server_privileges.php:448 server_privileges.php:550
+msgid "Has no effect in this MySQL version."
+msgstr ""
+
+#: server_privileges.php:49 server_privileges.php:186
+#: server_privileges.php:545
+msgid "Allows reloading server settings and flushing the server's caches."
+msgstr ""
+
+#: server_privileges.php:50 server_privileges.php:198
+#: server_privileges.php:552
+msgid "Allows the user to ask where the slaves / masters are."
+msgstr ""
+
+#: server_privileges.php:51 server_privileges.php:197
+#: server_privileges.php:553
+msgid "Needed for the replication slaves."
+msgstr ""
+
+#: server_privileges.php:52 server_privileges.php:180
+#: server_privileges.php:439 server_privileges.php:503
+msgid "Allows reading data."
+msgstr ""
+
+#: server_privileges.php:53 server_privileges.php:193
+#: server_privileges.php:547
+msgid "Gives access to the complete list of databases."
+msgstr ""
+
+#: server_privileges.php:54 server_privileges.php:204
+#: server_privileges.php:206 server_privileges.php:519
+msgid "Allows performing SHOW CREATE VIEW queries."
+msgstr ""
+
+#: server_privileges.php:55 server_privileges.php:187
+#: server_privileges.php:546
+msgid "Allows shutting down the server."
+msgstr ""
+
+#: server_privileges.php:56 server_privileges.php:194
+#: server_privileges.php:543
+msgid ""
+"Allows connecting, even if maximum number of connections is reached; "
+"required for most administrative operations like setting global variables or "
+"killing threads of other users."
+msgstr ""
+
+#: server_privileges.php:57 server_privileges.php:201
+#: server_privileges.php:535
+msgid "Allows creating and dropping triggers"
+msgstr ""
+
+#: server_privileges.php:58 server_privileges.php:182
+#: server_privileges.php:445 server_privileges.php:505
+msgid "Allows changing data."
+msgstr ""
+
+#: server_privileges.php:59 server_privileges.php:260
+#, fuzzy
+msgid "No privileges."
+msgstr "Tiada Privilej"
+
+#: server_privileges.php:302 server_privileges.php:303
#, fuzzy
#| msgid "None"
msgctxt "None privileges"
msgid "None"
msgstr "Tiada"
-#: server_privileges.php:392 server_privileges.php:527
-#: server_privileges.php:1679 server_privileges.php:1685
+#: server_privileges.php:431 server_privileges.php:566
+#: server_privileges.php:1718 server_privileges.php:1724
msgid "Table-specific privileges"
msgstr ""
-#: server_privileges.php:393 server_privileges.php:535
-#: server_privileges.php:1501
+#: server_privileges.php:432 server_privileges.php:574
+#: server_privileges.php:1540
msgid " Note: MySQL privilege names are expressed in English "
msgstr " Nota: Nama privilej MySQL adalah dinyatakan dalam B.Inggeris "
-#: server_privileges.php:524 server_privileges.php:1500
+#: server_privileges.php:563 server_privileges.php:1539
#, fuzzy
msgid "Global privileges"
msgstr "Tiada Privilej"
-#: server_privileges.php:526 server_privileges.php:1679
+#: server_privileges.php:565 server_privileges.php:1718
msgid "Database-specific privileges"
msgstr ""
-#: server_privileges.php:571
+#: server_privileges.php:610
msgid "Administration"
msgstr ""
-#: server_privileges.php:591
+#: server_privileges.php:630
msgid "Resource limits"
msgstr ""
-#: server_privileges.php:592
+#: server_privileges.php:631
msgid "Note: Setting these options to 0 (zero) removes the limit."
msgstr ""
-#: server_privileges.php:669
+#: server_privileges.php:708
#, fuzzy
msgid "Login Information"
msgstr "Informasi MasaJana"
-#: server_privileges.php:763
+#: server_privileges.php:802
msgid "Do not change the password"
msgstr "Jangan tukar katalaluan"
-#: server_privileges.php:804 server_privileges.php:2166
+#: server_privileges.php:843 server_privileges.php:2205
#, fuzzy
#| msgid "No user(s) found."
msgid "No user found."
msgstr "Tiada pengguna dijumpai."
-#: server_privileges.php:848
+#: server_privileges.php:887
#, php-format
msgid "The user %s already exists!"
msgstr ""
-#: server_privileges.php:931
+#: server_privileges.php:970
msgid "You have added a new user."
msgstr "Anda telah menambah pengguna baru."
-#: server_privileges.php:1152
+#: server_privileges.php:1191
#, php-format
msgid "You have updated the privileges for %s."
msgstr "Anda telah mengemaskini privilej bagi %s."
-#: server_privileges.php:1176
+#: server_privileges.php:1215
#, php-format
msgid "You have revoked the privileges for %s"
msgstr "Anda telah menarikbalik privilej Keistimewaan untuk %s"
-#: server_privileges.php:1212
+#: server_privileges.php:1251
#, php-format
msgid "The password for %s was changed successfully."
msgstr ""
-#: server_privileges.php:1232
+#: server_privileges.php:1271
#, php-format
msgid "Deleting %s"
msgstr ""
-#: server_privileges.php:1243
+#: server_privileges.php:1282
msgid "No users selected for deleting!"
msgstr ""
-#: server_privileges.php:1246
+#: server_privileges.php:1285
msgid "Reloading the privileges"
msgstr ""
-#: server_privileges.php:1261
+#: server_privileges.php:1300
msgid "The selected users have been deleted successfully."
msgstr ""
-#: server_privileges.php:1296
+#: server_privileges.php:1335
msgid "The privileges were reloaded successfully."
msgstr ""
-#: server_privileges.php:1324 server_privileges.php:1610
+#: server_privileges.php:1363 server_privileges.php:1649
msgid "Edit Privileges"
msgstr "Ubah Privilej"
-#: server_privileges.php:1333
+#: server_privileges.php:1372
msgid "Revoke"
msgstr "TarikBalik"
-#: server_privileges.php:1365
+#: server_privileges.php:1404
msgid "User overview"
msgstr ""
-#: server_privileges.php:1502 server_privileges.php:1684
-#: server_privileges.php:2033
+#: server_privileges.php:1541 server_privileges.php:1723
+#: server_privileges.php:2072
#, fuzzy
msgid "Grant"
msgstr "Cetak"
-#: server_privileges.php:1521 server_privileges.php:2123
+#: server_privileges.php:1560 server_privileges.php:2162
msgid "Any"
msgstr "Sebarang"
-#: server_privileges.php:1570 server_privileges.php:1594
-#: server_privileges.php:1988 server_privileges.php:2177
+#: server_privileges.php:1609 server_privileges.php:1633
+#: server_privileges.php:2027 server_privileges.php:2216
msgid "Add a new User"
msgstr "Tambah Pengguna Baru"
-#: server_privileges.php:1575
+#: server_privileges.php:1614
msgid "Remove selected users"
msgstr ""
-#: server_privileges.php:1578
+#: server_privileges.php:1617
msgid "Revoke all active privileges from the users and delete them afterwards."
msgstr ""
-#: server_privileges.php:1579 server_privileges.php:1580
-#: server_privileges.php:1581
+#: server_privileges.php:1618 server_privileges.php:1619
+#: server_privileges.php:1620
msgid "Drop the databases that have the same names as the users."
msgstr ""
-#: server_privileges.php:1597
+#: server_privileges.php:1636
#, php-format
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
@@ -5282,91 +4758,91 @@ msgid ""
"sreload the privileges%s before you continue."
msgstr ""
-#: server_privileges.php:1645
+#: server_privileges.php:1684
msgid "The selected user was not found in the privilege table."
msgstr ""
-#: server_privileges.php:1685
+#: server_privileges.php:1724
msgid "Column-specific privileges"
msgstr ""
-#: server_privileges.php:1886
+#: server_privileges.php:1925
msgid "Add privileges on the following database"
msgstr ""
-#: server_privileges.php:1904
+#: server_privileges.php:1943
msgid "Wildcards % and _ should be escaped with a \\ to use them literally"
msgstr ""
-#: server_privileges.php:1907
+#: server_privileges.php:1946
msgid "Add privileges on the following table"
msgstr ""
-#: server_privileges.php:1964
+#: server_privileges.php:2003
msgid "Change Login Information / Copy User"
msgstr ""
-#: server_privileges.php:1967
+#: server_privileges.php:2006
msgid "Create a new user with the same privileges and ..."
msgstr ""
-#: server_privileges.php:1969
+#: server_privileges.php:2008
msgid "... keep the old one."
msgstr ""
-#: server_privileges.php:1970
+#: server_privileges.php:2009
msgid " ... delete the old one from the user tables."
msgstr ""
-#: server_privileges.php:1971
+#: server_privileges.php:2010
msgid ""
" ... revoke all active privileges from the old one and delete it afterwards."
msgstr ""
-#: server_privileges.php:1972
+#: server_privileges.php:2011
msgid ""
" ... delete the old one from the user tables and reload the privileges "
"afterwards."
msgstr ""
-#: server_privileges.php:1994
+#: server_privileges.php:2033
msgid "Database for user"
msgstr ""
-#: server_privileges.php:1998
+#: server_privileges.php:2037
#, fuzzy
#| msgid "None"
msgctxt "Create none database for user"
msgid "None"
msgstr "Tiada"
-#: server_privileges.php:1999
+#: server_privileges.php:2038
msgid "Create database with same name and grant all privileges"
msgstr ""
-#: server_privileges.php:2000
+#: server_privileges.php:2039
msgid "Grant all privileges on wildcard name (username\\_%)"
msgstr ""
-#: server_privileges.php:2003
+#: server_privileges.php:2042
#, php-format
msgid "Grant all privileges on database "%s""
msgstr ""
-#: server_privileges.php:2026
+#: server_privileges.php:2065
#, php-format
msgid "Users having access to "%s""
msgstr ""
-#: server_privileges.php:2134
+#: server_privileges.php:2173
msgid "global"
msgstr ""
-#: server_privileges.php:2136
+#: server_privileges.php:2175
msgid "database-specific"
msgstr ""
-#: server_privileges.php:2138
+#: server_privileges.php:2177
msgid "wildcard"
msgstr ""
@@ -5413,7 +4889,7 @@ msgstr ""
msgid "This server is configured as master in a replication process."
msgstr ""
-#: server_replication.php:184 server_status.php:281
+#: server_replication.php:184 server_status.php:392
msgid "Show master status"
msgstr ""
@@ -5551,106 +5027,638 @@ msgid ""
"like to configure it?"
msgstr ""
+#: server_status.php:40
+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 ""
+
+#: server_status.php:41
+msgid "The number of transactions that used the temporary binary log cache."
+msgstr ""
+
+#: server_status.php:42
+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 "
+"to increase the tmp_table_size value to cause temporary tables to be memory-"
+"based instead of disk-based."
+msgstr ""
+
+#: server_status.php:43
+msgid "How many temporary files mysqld has created."
+msgstr ""
+
+#: server_status.php:44
+msgid ""
+"The number of in-memory temporary tables created automatically by the server "
+"while executing statements."
+msgstr ""
+
+#: server_status.php:45
+msgid ""
+"The number of rows written with INSERT DELAYED for which some error occurred "
+"(probably duplicate key)."
+msgstr ""
+
#: server_status.php:46
+msgid ""
+"The number of INSERT DELAYED handler threads in use. Every different table "
+"on which one uses INSERT DELAYED gets its own thread."
+msgstr ""
+
+#: server_status.php:47
+msgid "The number of INSERT DELAYED rows written."
+msgstr ""
+
+#: server_status.php:48
+msgid "The number of executed FLUSH statements."
+msgstr ""
+
+#: server_status.php:49
+msgid "The number of internal COMMIT statements."
+msgstr ""
+
+#: server_status.php:50
+msgid "The number of times a row was deleted from a table."
+msgstr ""
+
+#: server_status.php:51
+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 ""
+
+#: server_status.php:52
+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 ""
+
+#: server_status.php:53
+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 ""
+
+#: server_status.php:54
+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 ""
+
+#: server_status.php:55
+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 ""
+
+#: server_status.php:56
+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 "
+"probably have a lot of queries that require MySQL to scan whole tables or "
+"you have joins that don't use keys properly."
+msgstr ""
+
+#: server_status.php:57
+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 "
+"tables are not properly indexed or that your queries are not written to take "
+"advantage of the indexes you have."
+msgstr ""
+
+#: server_status.php:58
+msgid "The number of internal ROLLBACK statements."
+msgstr ""
+
+#: server_status.php:59
+msgid "The number of requests to update a row in a table."
+msgstr ""
+
+#: server_status.php:60
+msgid "The number of requests to insert a row in a table."
+msgstr ""
+
+#: server_status.php:61
+msgid "The number of pages containing data (dirty or clean)."
+msgstr ""
+
+#: server_status.php:62
+msgid "The number of pages currently dirty."
+msgstr ""
+
+#: server_status.php:63
+msgid "The number of buffer pool pages that have been requested to be flushed."
+msgstr ""
+
+#: server_status.php:64
+msgid "The number of free pages."
+msgstr ""
+
+#: server_status.php:65
+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 ""
+
+#: server_status.php:66
+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 "
+"be calculated as Innodb_buffer_pool_pages_total - "
+"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data."
+msgstr ""
+
+#: server_status.php:67
+msgid "Total size of buffer pool, in pages."
+msgstr ""
+
+#: server_status.php:68
+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 ""
+
+#: server_status.php:69
+msgid ""
+"The number of sequential read-aheads InnoDB initiated. This happens when "
+"InnoDB does a sequential full table scan."
+msgstr ""
+
+#: server_status.php:70
+msgid "The number of logical read requests InnoDB has done."
+msgstr ""
+
+#: server_status.php:71
+msgid ""
+"The number of logical reads that InnoDB could not satisfy from buffer pool "
+"and had to do a single-page read."
+msgstr ""
+
+#: server_status.php:72
+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 "
+"available, it's necessary to wait for pages to be flushed first. This "
+"counter counts instances of these waits. If the buffer pool size was set "
+"properly, this value should be small."
+msgstr ""
+
+#: server_status.php:73
+msgid "The number writes done to the InnoDB buffer pool."
+msgstr ""
+
+#: server_status.php:74
+msgid "The number of fsync() operations so far."
+msgstr ""
+
+#: server_status.php:75
+msgid "The current number of pending fsync() operations."
+msgstr ""
+
+#: server_status.php:76
+msgid "The current number of pending reads."
+msgstr ""
+
+#: server_status.php:77
+msgid "The current number of pending writes."
+msgstr ""
+
+#: server_status.php:78
+msgid "The amount of data read so far, in bytes."
+msgstr ""
+
+#: server_status.php:79
+msgid "The total number of data reads."
+msgstr ""
+
+#: server_status.php:80
+msgid "The total number of data writes."
+msgstr ""
+
+#: server_status.php:81
+msgid "The amount of data written so far, in bytes."
+msgstr ""
+
+#: server_status.php:82
+msgid "The number of pages that have been written for doublewrite operations."
+msgstr ""
+
+#: server_status.php:83
+msgid "The number of doublewrite operations that have been performed."
+msgstr ""
+
+#: server_status.php:84
+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 ""
+
+#: server_status.php:85
+msgid "The number of log write requests."
+msgstr ""
+
+#: server_status.php:86
+msgid "The number of physical writes to the log file."
+msgstr ""
+
+#: server_status.php:87
+msgid "The number of fsync() writes done to the log file."
+msgstr ""
+
+#: server_status.php:88
+msgid "The number of pending log file fsyncs."
+msgstr ""
+
+#: server_status.php:89
+msgid "Pending log file writes."
+msgstr ""
+
+#: server_status.php:90
+msgid "The number of bytes written to the log file."
+msgstr ""
+
+#: server_status.php:91
+msgid "The number of pages created."
+msgstr ""
+
+#: server_status.php:92
+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 ""
+
+#: server_status.php:93
+msgid "The number of pages read."
+msgstr ""
+
+#: server_status.php:94
+msgid "The number of pages written."
+msgstr ""
+
+#: server_status.php:95
+msgid "The number of row locks currently being waited for."
+msgstr ""
+
+#: server_status.php:96
+msgid "The average time to acquire a row lock, in milliseconds."
+msgstr ""
+
+#: server_status.php:97
+msgid "The total time spent in acquiring row locks, in milliseconds."
+msgstr ""
+
+#: server_status.php:98
+msgid "The maximum time to acquire a row lock, in milliseconds."
+msgstr ""
+
+#: server_status.php:99
+msgid "The number of times a row lock had to be waited for."
+msgstr ""
+
+#: server_status.php:100
+msgid "The number of rows deleted from InnoDB tables."
+msgstr ""
+
+#: server_status.php:101
+msgid "The number of rows inserted in InnoDB tables."
+msgstr ""
+
+#: server_status.php:102
+msgid "The number of rows read from InnoDB tables."
+msgstr ""
+
+#: server_status.php:103
+msgid "The number of rows updated in InnoDB tables."
+msgstr ""
+
+#: server_status.php:104
+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 ""
+
+#: server_status.php:105
+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 ""
+
+#: server_status.php:106
+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 ""
+
+#: server_status.php:107
+msgid "The number of requests to read a key block from the cache."
+msgstr ""
+
+#: server_status.php:108
+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 ""
+
+#: server_status.php:109
+msgid "The number of requests to write a key block to the cache."
+msgstr ""
+
+#: server_status.php:110
+msgid "The number of physical writes of a key block to disk."
+msgstr ""
+
+#: server_status.php:111
+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 ""
+
+#: server_status.php:112
+msgid "The number of rows waiting to be written in INSERT DELAYED queues."
+msgstr ""
+
+#: server_status.php:113
+msgid ""
+"The number of tables that have been opened. If opened tables is big, your "
+"table cache value is probably too small."
+msgstr ""
+
+#: server_status.php:114
+msgid "The number of files that are open."
+msgstr ""
+
+#: server_status.php:115
+msgid "The number of streams that are open (used mainly for logging)."
+msgstr ""
+
+#: server_status.php:116
+msgid "The number of tables that are open."
+msgstr ""
+
+#: server_status.php:117
+msgid "The number of free memory blocks in query cache."
+msgstr ""
+
+#: server_status.php:118
+msgid "The amount of free memory for query cache."
+msgstr ""
+
+#: server_status.php:119
+msgid "The number of cache hits."
+msgstr ""
+
+#: server_status.php:120
+msgid "The number of queries added to the cache."
+msgstr ""
+
+#: server_status.php:121
+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 "
+"cache size. The query cache uses a least recently used (LRU) strategy to "
+"decide which queries to remove from the cache."
+msgstr ""
+
+#: server_status.php:122
+msgid ""
+"The number of non-cached queries (not cachable, or not cached due to the "
+"query_cache_type setting)."
+msgstr ""
+
+#: server_status.php:123
+msgid "The number of queries registered in the cache."
+msgstr ""
+
+#: server_status.php:124
+msgid "The total number of blocks in the query cache."
+msgstr ""
+
+#: server_status.php:125
+#, fuzzy
+msgctxt "$strShowStatusReset"
+msgid "Reset"
+msgstr "Ulangtetap"
+
+#: server_status.php:126
+msgid "The status of failsafe replication (not yet implemented)."
+msgstr ""
+
+#: server_status.php:127
+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 ""
+
+#: server_status.php:128
+msgid "The number of joins that used a range search on a reference table."
+msgstr ""
+
+#: server_status.php:129
+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 ""
+
+#: server_status.php:130
+msgid ""
+"The number of joins that used ranges on the first table. (It's normally not "
+"critical even if this is big.)"
+msgstr ""
+
+#: server_status.php:131
+msgid "The number of joins that did a full scan of the first table."
+msgstr ""
+
+#: server_status.php:132
+msgid "The number of temporary tables currently open by the slave SQL thread."
+msgstr ""
+
+#: server_status.php:133
+msgid ""
+"Total (since startup) number of times the replication slave SQL thread has "
+"retried transactions."
+msgstr ""
+
+#: server_status.php:134
+msgid "This is ON if this server is a slave that is connected to a master."
+msgstr ""
+
+#: server_status.php:135
+msgid ""
+"The number of threads that have taken more than slow_launch_time seconds to "
+"create."
+msgstr ""
+
+#: server_status.php:136
+msgid ""
+"The number of queries that have taken more than long_query_time seconds."
+msgstr ""
+
+#: server_status.php:137
+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 ""
+
+#: server_status.php:138
+msgid "The number of sorts that were done with ranges."
+msgstr ""
+
+#: server_status.php:139
+msgid "The number of sorted rows."
+msgstr ""
+
+#: server_status.php:140
+msgid "The number of sorts that were done by scanning the table."
+msgstr ""
+
+#: server_status.php:141
+msgid "The number of times that a table lock was acquired immediately."
+msgstr ""
+
+#: server_status.php:142
+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 "
+"should first optimize your queries, and then either split your table or "
+"tables or use replication."
+msgstr ""
+
+#: server_status.php:143
+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 ""
+
+#: server_status.php:144
+msgid "The number of currently open connections."
+msgstr ""
+
+#: server_status.php:145
+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 "
+"doesn't give a notable performance improvement if you have a good thread "
+"implementation.)"
+msgstr ""
+
+#: server_status.php:146
+msgid "The number of threads that are not sleeping."
+msgstr ""
+
+#: server_status.php:157
msgid "Runtime Information"
msgstr "Informasi MasaJana"
-#: server_status.php:250
+#: server_status.php:361
msgid "Handler"
msgstr ""
-#: server_status.php:251
+#: server_status.php:362
#, fuzzy
msgid "Query cache"
msgstr "Jenis Kueri"
-#: server_status.php:252
+#: server_status.php:363
msgid "Threads"
msgstr ""
-#: server_status.php:254
+#: server_status.php:365
msgid "Temporary data"
msgstr ""
-#: server_status.php:255
+#: server_status.php:366
#, fuzzy
msgid "Delayed inserts"
msgstr "Penyelitan Lanjutan"
-#: server_status.php:256
+#: server_status.php:367
msgid "Key cache"
msgstr ""
-#: server_status.php:257
+#: server_status.php:368
msgid "Joins"
msgstr ""
-#: server_status.php:259
+#: server_status.php:370
msgid "Sorting"
msgstr ""
-#: server_status.php:261
+#: server_status.php:372
msgid "Transaction coordinator"
msgstr ""
-#: server_status.php:271
+#: server_status.php:382
msgid "Flush (close) all tables"
msgstr ""
-#: server_status.php:273
+#: server_status.php:384
#, fuzzy
msgid "Show open tables"
msgstr "Papar jadual"
-#: server_status.php:278
+#: server_status.php:389
msgid "Show slave hosts"
msgstr ""
-#: server_status.php:284
+#: server_status.php:395
msgid "Show slave status"
msgstr ""
-#: server_status.php:289
+#: server_status.php:400
msgid "Flush query cache"
msgstr ""
-#: server_status.php:294
+#: server_status.php:405
msgid "Show processes"
msgstr "Papar proses"
-#: server_status.php:344
+#: server_status.php:455
#, fuzzy
#| msgid "Reset"
msgctxt "for Show status"
msgid "Reset"
msgstr "Ulangtetap"
-#: server_status.php:350
+#: server_status.php:461
#, php-format
msgid "This MySQL server has been running for %s. It started up on %s."
msgstr "Pelayan MySQL ini telah berjalan selama %s. Ia dihidupkan pada %s."
-#: server_status.php:360
+#: server_status.php:471
msgid ""
"This MySQL server works as master and slave in replication"
"b> process."
msgstr ""
-#: server_status.php:362
+#: server_status.php:473
msgid "This MySQL server works as master in replication process."
msgstr ""
-#: server_status.php:364
+#: server_status.php:475
msgid "This MySQL server works as slave in replication process."
msgstr ""
-#: server_status.php:366
+#: server_status.php:477
msgid ""
"For further information about replication status on the server, please visit "
"the replication section."
msgstr ""
-#: server_status.php:383
+#: server_status.php:494
msgid ""
"Server traffic: These tables show the network traffic statistics of "
"this MySQL server since its startup."
@@ -5658,46 +5666,46 @@ msgstr ""
"Kesibukan Pelayan: Jadual menunjukkan statistik kesibukan rangkaian "
"pada pelayan MySQL server semenjak ia dihidupkan."
-#: server_status.php:388
+#: server_status.php:499
msgid "Traffic"
msgstr "Kesibukan"
-#: server_status.php:388
+#: server_status.php:499
msgid ""
"On a busy server, the byte counters may overrun, so those statistics as "
"reported by the MySQL server may be incorrect."
msgstr ""
-#: server_status.php:389 server_status.php:434 server_status.php:497
-#: server_status.php:555
+#: server_status.php:500 server_status.php:545 server_status.php:608
+#: server_status.php:666
msgid "per hour"
msgstr "per jam"
-#: server_status.php:394
+#: server_status.php:505
msgid "Received"
msgstr "DiTerima"
-#: server_status.php:404
+#: server_status.php:515
msgid "Sent"
msgstr "Hantar"
-#: server_status.php:433
+#: server_status.php:544
msgid "Connections"
msgstr "Hubungan"
-#: server_status.php:440
+#: server_status.php:551
msgid "max. concurrent connections"
msgstr ""
-#: server_status.php:447
+#: server_status.php:558
msgid "Failed attempts"
msgstr "Percubaan Gagal"
-#: server_status.php:461
+#: server_status.php:572
msgid "Aborted"
msgstr "DiBatalkan"
-#: server_status.php:490
+#: server_status.php:601
#, php-format
msgid ""
"Query statistics: Since its startup, %s queries have been sent to the "
@@ -5706,19 +5714,19 @@ msgstr ""
"Kueri Statistik: Sejak ia dijalankan, %s kueri telah dihantar kepada "
"pelayan."
-#: server_status.php:498
+#: server_status.php:609
msgid "per minute"
msgstr ""
-#: server_status.php:499
+#: server_status.php:610
msgid "per second"
msgstr ""
-#: server_status.php:554
+#: server_status.php:665
msgid "Query type"
msgstr "Jenis Kueri"
-#: server_status.php:721
+#: server_status.php:832
msgid "Replication status"
msgstr ""
diff --git a/po/nb.po b/po/nb.po
index f697230d5..6da72596c 100755
--- a/po/nb.po
+++ b/po/nb.po
@@ -3,23 +3,23 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-06-04 16:07-0400\n"
-"PO-Revision-Date: 2010-06-01 09:52+0200\n"
+"POT-Creation-Date: 2010-06-08 12:32-0400\n"
+"PO-Revision-Date: 2010-06-09 14:17+0200\n"
"Last-Translator: \n"
"Language-Team: norwegian \n"
+"Language: nb\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: nb\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.0.1\n"
#: browse_foreigners.php:38 browse_foreigners.php:59
-#: libraries/display_tbl.lib.php:417 server_privileges.php:1475
+#: libraries/display_tbl.lib.php:417 server_privileges.php:1514
msgid "Show all"
msgstr "Vis alle"
-#: browse_foreigners.php:82 libraries/common.lib.php:2304
+#: browse_foreigners.php:82 libraries/common.lib.php:2313
#: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:394
#: libraries/export/pdf.php:147 pdf_schema.php:283 pdf_schema.php:1123
#: pdf_schema.php:1139
@@ -37,8 +37,8 @@ msgstr ""
#: browse_foreigners.php:150 db_structure.php:79 db_structure.php:80
#: db_structure.php:91 db_structure.php:93 db_structure.php:104
-#: db_structure.php:106 libraries/common.lib.php:2822
-#: libraries/common.lib.php:2829 libraries/db_links.inc.php:75
+#: db_structure.php:106 libraries/common.lib.php:2831
+#: libraries/common.lib.php:2838 libraries/db_links.inc.php:75
#: libraries/tbl_links.inc.php:63
msgid "Search"
msgstr "Søk"
@@ -48,7 +48,7 @@ msgstr "Søk"
#: db_structure.php:567 js/messages.php:48 libraries/Config.class.php:1046
#: libraries/Theme_Manager.class.php:311
#: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719
-#: libraries/common.lib.php:1333 libraries/common.lib.php:2279
+#: libraries/common.lib.php:1335 libraries/common.lib.php:2288
#: libraries/display_change_password.lib.php:82
#: libraries/display_create_table.lib.php:63
#: libraries/display_export.lib.php:275 libraries/display_import.lib.php:276
@@ -59,9 +59,9 @@ msgstr "Søk"
#: libraries/sql_query_form.lib.php:552 libraries/tbl_properties.inc.php:782
#: main.php:128 navigation.php:237 pdf_pages.php:292 pdf_pages.php:328
#: pdf_pages.php:530 pmd_pdf.php:116 server_binlog.php:142
-#: server_privileges.php:625 server_privileges.php:1585
-#: server_privileges.php:1932 server_privileges.php:1979
-#: server_privileges.php:2018 server_replication.php:235
+#: server_privileges.php:664 server_privileges.php:1624
+#: server_privileges.php:1971 server_privileges.php:2018
+#: server_privileges.php:2057 server_replication.php:235
#: server_replication.php:318 server_replication.php:341
#: server_synchronize.php:1209 tbl_change.php:330 tbl_change.php:1174
#: tbl_change.php:1211 tbl_indexes.php:254 tbl_operations.php:265
@@ -79,7 +79,7 @@ msgstr "Nøkkel"
#: browse_foreigners.php:169 browse_foreigners.php:171
#: server_collations.php:55 server_collations.php:67 server_engines.php:59
-#: server_status.php:628
+#: server_status.php:739
msgid "Description"
msgstr "Beskrivelse"
@@ -118,7 +118,7 @@ msgstr "Kolonne"
#: libraries/db_structure.lib.php:60 libraries/export/htmlword.php:245
#: libraries/export/latex.php:360 libraries/export/odt.php:297
#: libraries/export/texytext.php:234 libraries/tbl_properties.inc.php:100
-#: pdf_schema.php:1263 pdf_schema.php:1284 server_privileges.php:2031
+#: pdf_schema.php:1263 pdf_schema.php:1284 server_privileges.php:2070
#: tbl_change.php:287 tbl_change.php:314 tbl_printview.php:143
#: tbl_printview.php:313 tbl_select.php:136 tbl_structure.php:178
#: tbl_structure.php:659 tbl_tracking.php:274 tbl_tracking.php:321
@@ -162,9 +162,9 @@ msgstr "Kommentarer"
#: libraries/Index.class.php:386 libraries/export/htmlword.php:322
#: libraries/export/latex.php:430 libraries/export/odt.php:368
#: libraries/export/texytext.php:311 libraries/mult_submits.inc.php:263
-#: pdf_schema.php:1344 server_privileges.php:1529 server_privileges.php:1540
-#: server_privileges.php:1850 server_privileges.php:1855
-#: server_privileges.php:2148 sql.php:132 sql.php:194 tbl_printview.php:229
+#: pdf_schema.php:1344 server_privileges.php:1568 server_privileges.php:1579
+#: server_privileges.php:1889 server_privileges.php:1894
+#: server_privileges.php:2187 sql.php:132 sql.php:194 tbl_printview.php:229
#: tbl_structure.php:350 tbl_tracking.php:337 tbl_tracking.php:342
msgid "No"
msgstr "Nei"
@@ -178,9 +178,9 @@ msgstr "Nei"
#: libraries/mult_submits.inc.php:101 libraries/mult_submits.inc.php:106
#: libraries/mult_submits.inc.php:111 libraries/mult_submits.inc.php:262
#: libraries/mult_submits.inc.php:273 pdf_schema.php:1344
-#: server_databases.php:64 server_privileges.php:1526
-#: server_privileges.php:1540 server_privileges.php:1850
-#: server_privileges.php:1853 server_privileges.php:2148 sql.php:193
+#: server_databases.php:64 server_privileges.php:1565
+#: server_privileges.php:1579 server_privileges.php:1889
+#: server_privileges.php:1892 server_privileges.php:2187 sql.php:193
#: tbl_printview.php:229 tbl_structure.php:40 tbl_structure.php:350
#: tbl_tracking.php:335 tbl_tracking.php:340
msgid "Yes"
@@ -277,7 +277,7 @@ msgstr "Bytt til kopiert database"
msgid "BLOB Repository"
msgstr "BLOB lager"
-#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1350
+#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1352
#: libraries/server_links.inc.php:49 server_processlist.php:59
#: tbl_tracking.php:596 test/theme.php:101
msgid "Status"
@@ -334,8 +334,8 @@ msgstr "Rediger PDF-sider"
#: db_printview.php:104 db_tracking.php:72 db_tracking.php:157
#: libraries/db_structure.lib.php:46 libraries/export/xml.php:328
-#: libraries/header.inc.php:126 pdf_pages.php:424 server_privileges.php:1626
-#: server_privileges.php:1682 server_privileges.php:1946
+#: libraries/header.inc.php:126 pdf_pages.php:424 server_privileges.php:1665
+#: server_privileges.php:1721 server_privileges.php:1985
#: server_synchronize.php:423 server_synchronize.php:866 tbl_tracking.php:592
#: test/theme.php:75
msgid "Table"
@@ -435,7 +435,7 @@ msgstr "Slett"
#: db_qbe.php:370 db_qbe.php:451 db_qbe.php:522 db_qbe.php:553
#: libraries/display_import.lib.php:166 libraries/tbl_properties.inc.php:779
-#: server_privileges.php:258 tbl_change.php:1031 tbl_indexes.php:250
+#: server_privileges.php:297 tbl_change.php:1031 tbl_indexes.php:250
#: tbl_select.php:288
msgid "Or"
msgstr "Eller"
@@ -465,7 +465,7 @@ msgstr "Bruk tabeller"
msgid "SQL query on database %s:"
msgstr "SQL-spørring i database %s:"
-#: db_qbe.php:934 libraries/common.lib.php:1223
+#: db_qbe.php:934 libraries/common.lib.php:1225
msgid "Submit Query"
msgstr "Kjør spørring"
@@ -504,7 +504,7 @@ msgstr "%s treff i tabell %s"
#: db_search.php:267 db_structure.php:77 db_structure.php:78
#: db_structure.php:90 db_structure.php:92 db_structure.php:103
-#: db_structure.php:105 libraries/common.lib.php:2824
+#: db_structure.php:105 libraries/common.lib.php:2833
#: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50
#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:467
msgid "Browse"
@@ -549,26 +549,26 @@ msgstr "I kolonne:"
#: db_structure.php:81 db_structure.php:82 db_structure.php:94
#: db_structure.php:95 db_structure.php:107 db_structure.php:108
-#: libraries/common.lib.php:2823 libraries/sql_query_form.lib.php:334
+#: libraries/common.lib.php:2832 libraries/sql_query_form.lib.php:334
#: libraries/sql_query_form.lib.php:337 libraries/tbl_links.inc.php:76
msgid "Insert"
msgstr "Sett inn"
#: db_structure.php:83 db_structure.php:96 db_structure.php:109
-#: libraries/common.lib.php:2820 libraries/common.lib.php:2827
+#: libraries/common.lib.php:2829 libraries/common.lib.php:2836
#: libraries/db_links.inc.php:63 libraries/export/htmlword.php:23
#: libraries/export/latex.php:33 libraries/export/latex.php:337
#: libraries/export/odt.php:32 libraries/export/sql.php:60
#: libraries/export/texytext.php:23 libraries/import.lib.php:1104
#: libraries/tbl_links.inc.php:56 pmd_general.php:134
-#: server_privileges.php:554 server_replication.php:315 tbl_tracking.php:269
+#: server_privileges.php:593 server_replication.php:315 tbl_tracking.php:269
msgid "Structure"
msgstr "Struktur"
#: db_structure.php:84 db_structure.php:85 db_structure.php:97
#: db_structure.php:98 db_structure.php:110 db_structure.php:111
#: db_structure.php:545 db_structure.php:546 db_tracking.php:91
-#: libraries/Index.class.php:483 libraries/common.lib.php:1654
+#: libraries/Index.class.php:483 libraries/common.lib.php:1656
#: libraries/db_links.inc.php:100 libraries/mult_submits.inc.php:36
#: libraries/mult_submits.inc.php:73 libraries/tbl_links.inc.php:127
#: server_databases.php:352 tbl_structure.php:27 tbl_structure.php:151
@@ -578,7 +578,7 @@ msgstr "Slett"
#: db_structure.php:86 db_structure.php:87 db_structure.php:99
#: db_structure.php:100 db_structure.php:112 db_structure.php:113
-#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1653
+#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1655
#: libraries/mult_submits.inc.php:39 libraries/tbl_links.inc.php:105
msgid "Empty"
msgstr "Tøm"
@@ -620,7 +620,7 @@ msgstr "Vis"
#: db_structure.php:485 libraries/db_structure.lib.php:49
#: libraries/server_links.inc.php:70 server_replication.php:33
-#: server_replication.php:164 server_status.php:258
+#: server_replication.php:164 server_status.php:369
msgid "Replication"
msgstr "Replikering"
@@ -636,20 +636,20 @@ msgstr "%s er standard lagringsmotor for denne MySQL tjeneren."
#: db_structure.php:524 db_structure.php:541 db_structure.php:542
#: libraries/display_tbl.lib.php:2081 libraries/display_tbl.lib.php:2086
#: libraries/mult_submits.inc.php:16 server_databases.php:346
-#: server_databases.php:351 server_privileges.php:1557 tbl_structure.php:455
+#: server_databases.php:351 server_privileges.php:1596 tbl_structure.php:455
#: tbl_structure.php:464
msgid "With selected:"
msgstr "Med avkrysset:"
#: db_structure.php:527 libraries/display_tbl.lib.php:2076
-#: server_databases.php:348 server_privileges.php:530
-#: server_privileges.php:1560 tbl_structure.php:458
+#: server_databases.php:348 server_privileges.php:569
+#: server_privileges.php:1599 tbl_structure.php:458
msgid "Check All"
msgstr "Merk alle"
#: db_structure.php:531 libraries/display_tbl.lib.php:2077
#: libraries/replication_gui.lib.php:33 server_databases.php:350
-#: server_privileges.php:533 server_privileges.php:1564 tbl_structure.php:462
+#: server_privileges.php:572 server_privileges.php:1603 tbl_structure.php:462
msgid "Uncheck All"
msgstr "Fjern merking"
@@ -687,7 +687,7 @@ msgstr "Analyser tabell"
#: libraries/display_export.lib.php:83 libraries/display_tbl.lib.php:2094
#: libraries/display_tbl.lib.php:2225 libraries/mult_submits.inc.php:62
#: libraries/server_links.inc.php:84 libraries/tbl_links.inc.php:82
-#: pmd_pdf.php:84 pmd_pdf.php:109 server_privileges.php:1341
+#: pmd_pdf.php:84 pmd_pdf.php:109 server_privileges.php:1380
#: setup/frames/menu.inc.php:22 tbl_row_action.php:59
msgid "Export"
msgstr "Eksporter"
@@ -705,8 +705,8 @@ msgstr "Overvåkede tabeller"
#: libraries/export/sql.php:342 libraries/export/texytext.php:84
#: libraries/export/xml.php:255 libraries/header.inc.php:106
#: libraries/header_printview.inc.php:58 server_databases.php:169
-#: server_privileges.php:1621 server_privileges.php:1682
-#: server_privileges.php:1940 server_processlist.php:56
+#: server_privileges.php:1660 server_privileges.php:1721
+#: server_privileges.php:1979 server_processlist.php:56
#: server_synchronize.php:1179 server_synchronize.php:1183
#: tbl_tracking.php:591 test/theme.php:65
msgid "Database"
@@ -726,8 +726,8 @@ msgstr "Oppdatert"
#: db_tracking.php:77 libraries/Index.class.php:440
#: libraries/db_structure.lib.php:53 server_databases.php:203
-#: server_privileges.php:1503 server_privileges.php:1686
-#: server_privileges.php:2034 tbl_structure.php:187
+#: server_privileges.php:1542 server_privileges.php:1725
+#: server_privileges.php:2073 tbl_structure.php:187
msgid "Action"
msgstr "Handling"
@@ -930,11 +930,11 @@ msgstr "Vertsnavnet er tomt!"
msgid "The user name is empty!"
msgstr "Brukernavnet er tomt!"
-#: js/messages.php:44 server_privileges.php:1197 user_password.php:70
+#: js/messages.php:44 server_privileges.php:1236 user_password.php:70
msgid "The password is empty!"
msgstr "Passordet er blankt!"
-#: js/messages.php:45 server_privileges.php:1195 user_password.php:73
+#: js/messages.php:45 server_privileges.php:1234 user_password.php:73
msgid "The passwords aren't the same!"
msgstr "Passordene er ikke like!"
@@ -1007,8 +1007,8 @@ msgid "Prev"
msgstr "Forrige"
#. l10n: Display text for next month link in calendar
-#: js/messages.php:77 libraries/common.lib.php:2344
-#: libraries/common.lib.php:2347 libraries/display_tbl.lib.php:338
+#: js/messages.php:77 libraries/common.lib.php:2353
+#: libraries/common.lib.php:2356 libraries/display_tbl.lib.php:338
#: server_binlog.php:205 server_binlog.php:207 tbl_printview.php:424
#: tbl_structure.php:801
msgid "Next"
@@ -1068,63 +1068,63 @@ msgid "December"
msgstr "Desember"
#. l10n: Short month name
-#: js/messages.php:97 libraries/common.lib.php:1555
+#: js/messages.php:97 libraries/common.lib.php:1557
msgid "Jan"
msgstr "Jan"
#. l10n: Short month name
-#: js/messages.php:99 libraries/common.lib.php:1557
+#: js/messages.php:99 libraries/common.lib.php:1559
msgid "Feb"
msgstr "Feb"
#. l10n: Short month name
-#: js/messages.php:101 libraries/common.lib.php:1559
+#: js/messages.php:101 libraries/common.lib.php:1561
msgid "Mar"
msgstr "Mar"
#. l10n: Short month name
-#: js/messages.php:103 libraries/common.lib.php:1561
+#: js/messages.php:103 libraries/common.lib.php:1563
msgid "Apr"
msgstr "Apr"
#. l10n: Short month name
-#: js/messages.php:105 libraries/common.lib.php:1563
+#: js/messages.php:105 libraries/common.lib.php:1565
msgctxt "Short month name"
msgid "May"
msgstr "Mai"
#. l10n: Short month name
-#: js/messages.php:107 libraries/common.lib.php:1565
+#: js/messages.php:107 libraries/common.lib.php:1567
msgid "Jun"
msgstr "Jun"
#. l10n: Short month name
-#: js/messages.php:109 libraries/common.lib.php:1567
+#: js/messages.php:109 libraries/common.lib.php:1569
msgid "Jul"
msgstr "Jul"
#. l10n: Short month name
-#: js/messages.php:111 libraries/common.lib.php:1569
+#: js/messages.php:111 libraries/common.lib.php:1571
msgid "Aug"
msgstr "Aug"
#. l10n: Short month name
-#: js/messages.php:113 libraries/common.lib.php:1571
+#: js/messages.php:113 libraries/common.lib.php:1573
msgid "Sep"
msgstr "Sep"
#. l10n: Short month name
-#: js/messages.php:115 libraries/common.lib.php:1573
+#: js/messages.php:115 libraries/common.lib.php:1575
msgid "Oct"
msgstr "Okt"
#. l10n: Short month name
-#: js/messages.php:117 libraries/common.lib.php:1575
+#: js/messages.php:117 libraries/common.lib.php:1577
msgid "Nov"
msgstr "Nov"
#. l10n: Short month name
-#: js/messages.php:119 libraries/common.lib.php:1577
+#: js/messages.php:119 libraries/common.lib.php:1579
msgid "Dec"
msgstr "Des"
@@ -1157,37 +1157,37 @@ msgid "Saturday"
msgstr "Lørdag"
#. l10n: Short week day name
-#: js/messages.php:132 libraries/common.lib.php:1580
+#: js/messages.php:132 libraries/common.lib.php:1582
msgid "Sun"
msgstr "Søn"
#. l10n: Short week day name
-#: js/messages.php:134 libraries/common.lib.php:1582
+#: js/messages.php:134 libraries/common.lib.php:1584
msgid "Mon"
msgstr "Man"
#. l10n: Short week day name
-#: js/messages.php:136 libraries/common.lib.php:1584
+#: js/messages.php:136 libraries/common.lib.php:1586
msgid "Tue"
msgstr "Tir"
#. l10n: Short week day name
-#: js/messages.php:138 libraries/common.lib.php:1586
+#: js/messages.php:138 libraries/common.lib.php:1588
msgid "Wed"
msgstr "Ons"
#. l10n: Short week day name
-#: js/messages.php:140 libraries/common.lib.php:1588
+#: js/messages.php:140 libraries/common.lib.php:1590
msgid "Thu"
msgstr "Tor"
#. l10n: Short week day name
-#: js/messages.php:142 libraries/common.lib.php:1590
+#: js/messages.php:142 libraries/common.lib.php:1592
msgid "Fri"
msgstr "Fre"
#. l10n: Short week day name
-#: js/messages.php:144 libraries/common.lib.php:1592
+#: js/messages.php:144 libraries/common.lib.php:1594
msgid "Sat"
msgstr "Lør"
@@ -1317,7 +1317,7 @@ msgid "Comment"
msgstr "Kommentar"
#: libraries/Index.class.php:466 libraries/common.lib.php:616
-#: libraries/common.lib.php:1199 libraries/display_tbl.lib.php:1117
+#: libraries/common.lib.php:1201 libraries/display_tbl.lib.php:1117
#: libraries/import.lib.php:1087 libraries/import.lib.php:1111
#: pdf_pages.php:285 setup/frames/index.inc.php:124
#: setup/lib/messages.inc.php:352 tbl_row_action.php:69
@@ -1343,7 +1343,7 @@ msgstr ""
"fjernes."
#: libraries/List_Database.class.php:431 libraries/server_links.inc.php:41
-#: server_databases.php:88 server_privileges.php:1621
+#: server_databases.php:88 server_privileges.php:1660
#: setup/lib/messages.inc.php:110 test/theme.php:93
msgid "Databases"
msgstr "Databaser"
@@ -1673,7 +1673,7 @@ msgid "Documentation"
msgstr "Dokumentasjon"
#: libraries/common.lib.php:595 libraries/header_printview.inc.php:61
-#: server_processlist.php:60 server_status.php:247
+#: server_processlist.php:60 server_status.php:358
msgid "SQL query"
msgstr "SQL-spørring"
@@ -1689,128 +1689,128 @@ msgstr "Forklar SQL"
msgid "Skip Explain SQL"
msgstr "Ikke forklar SQL"
-#: libraries/common.lib.php:1212
+#: libraries/common.lib.php:1214
msgid "Without PHP Code"
msgstr "uten PHP kode"
-#: libraries/common.lib.php:1215 setup/lib/messages.inc.php:355
+#: libraries/common.lib.php:1217 setup/lib/messages.inc.php:355
msgid "Create PHP Code"
msgstr "Lag PHP kode"
-#: libraries/common.lib.php:1233 server_status.php:341
+#: libraries/common.lib.php:1235 server_status.php:452
#: setup/lib/messages.inc.php:354
msgid "Refresh"
msgstr "Oppdater"
-#: libraries/common.lib.php:1242
+#: libraries/common.lib.php:1244
msgid "Skip Validate SQL"
msgstr "Ikke teste SQL"
-#: libraries/common.lib.php:1245 setup/lib/messages.inc.php:356 sql.php:518
+#: libraries/common.lib.php:1247 setup/lib/messages.inc.php:356 sql.php:518
msgid "Validate SQL"
msgstr "Test SQL"
-#: libraries/common.lib.php:1276
+#: libraries/common.lib.php:1278
msgid "Inline edit of this query"
msgstr "Inline redigering av denne spørringa"
-#: libraries/common.lib.php:1278
+#: libraries/common.lib.php:1280
msgid "Inline"
msgstr "Inline"
-#: libraries/common.lib.php:1332 libraries/common.lib.php:1347
+#: libraries/common.lib.php:1334 libraries/common.lib.php:1349
msgid "Profiling"
msgstr "Profilering"
-#: libraries/common.lib.php:1351 libraries/tbl_triggers.lib.php:28
+#: libraries/common.lib.php:1353 libraries/tbl_triggers.lib.php:28
#: server_processlist.php:58
msgid "Time"
msgstr "Tid"
#. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "B"
msgstr "B"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "KiB"
msgstr "KiB"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "MiB"
msgstr "MiB"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "GiB"
msgstr "GiB"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "TiB"
msgstr "TiB"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "PiB"
msgstr "PiB"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "EiB"
msgstr "EiB"
#. l10n: Thousands separator
-#: libraries/common.lib.php:1417
+#: libraries/common.lib.php:1419
msgid ","
msgstr "."
#. l10n: Decimal separator
-#: libraries/common.lib.php:1419
+#: libraries/common.lib.php:1421
msgid "."
msgstr ","
#. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string
-#: libraries/common.lib.php:1596
+#: libraries/common.lib.php:1598
#: libraries/transformations/text_plain__dateformat.inc.php:34
msgid "%B %d, %Y at %I:%M %p"
msgstr "%d. %B, %Y %H:%M %p"
-#: libraries/common.lib.php:1898
+#: libraries/common.lib.php:1907
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "%s dager, %s timer, %s minutter og %s sekunder"
-#: libraries/common.lib.php:2313 libraries/common.lib.php:2316
-#: libraries/display_tbl.lib.php:290 server_status.php:608
+#: libraries/common.lib.php:2322 libraries/common.lib.php:2325
+#: libraries/display_tbl.lib.php:290 server_status.php:719
msgid "Begin"
msgstr "Start"
-#: libraries/common.lib.php:2314 libraries/common.lib.php:2317
+#: libraries/common.lib.php:2323 libraries/common.lib.php:2326
#: libraries/display_tbl.lib.php:291 server_binlog.php:168
#: server_binlog.php:170
msgid "Previous"
msgstr "Forrige"
-#: libraries/common.lib.php:2345 libraries/common.lib.php:2348
+#: libraries/common.lib.php:2354 libraries/common.lib.php:2357
#: libraries/display_tbl.lib.php:353
msgid "End"
msgstr "Slutt"
-#: libraries/common.lib.php:2421
+#: libraries/common.lib.php:2430
#, php-format
msgid "Jump to database "%s"."
msgstr "Hopp til databasen "%s"."
-#: libraries/common.lib.php:2441
+#: libraries/common.lib.php:2450
#, 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/common.lib.php:2821 libraries/common.lib.php:2828
+#: libraries/common.lib.php:2830 libraries/common.lib.php:2837
#: libraries/db_links.inc.php:68 libraries/export/sql.php:25
#: libraries/import/sql.php:18 libraries/server_links.inc.php:45
#: libraries/tbl_links.inc.php:60 querywindow.php:99 test/theme.php:97
msgid "SQL"
msgstr "SQL"
-#: libraries/common.lib.php:2830 libraries/db_links.inc.php:104
+#: libraries/common.lib.php:2839 libraries/db_links.inc.php:104
#: libraries/tbl_links.inc.php:95 libraries/tbl_links.inc.php:117
#: view_operations.php:89
msgid "Operations"
@@ -1865,8 +1865,8 @@ msgid "Import"
msgstr "Importer"
#: libraries/db_links.inc.php:111 libraries/server_links.inc.php:66
-#: server_privileges.php:72 server_privileges.php:1683
-#: server_privileges.php:2032 test/theme.php:117
+#: server_privileges.php:111 server_privileges.php:1722
+#: server_privileges.php:2071 test/theme.php:117
msgid "Privileges"
msgstr "Privilegier"
@@ -1913,22 +1913,22 @@ msgid "Change password"
msgstr "Endre passord"
#: libraries/display_change_password.lib.php:35
-#: libraries/replication_gui.lib.php:345 server_privileges.php:768
+#: libraries/replication_gui.lib.php:345 server_privileges.php:807
msgid "No Password"
msgstr "Intet passord"
#: libraries/display_change_password.lib.php:41
#: libraries/replication_gui.lib.php:59 libraries/replication_gui.lib.php:60
#: libraries/replication_gui.lib.php:335 libraries/replication_gui.lib.php:339
-#: libraries/replication_gui.lib.php:349 server_privileges.php:757
-#: server_privileges.php:761 server_privileges.php:772
-#: server_privileges.php:1499 server_synchronize.php:1175
+#: libraries/replication_gui.lib.php:349 server_privileges.php:796
+#: server_privileges.php:800 server_privileges.php:811
+#: server_privileges.php:1538 server_synchronize.php:1175
msgid "Password"
msgstr "Passord"
#: libraries/display_change_password.lib.php:46
#: libraries/replication_gui.lib.php:353 libraries/replication_gui.lib.php:356
-#: server_privileges.php:776 server_privileges.php:779
+#: server_privileges.php:815 server_privileges.php:818
msgid "Re-type"
msgstr "Gjenta"
@@ -1941,12 +1941,12 @@ msgid "MySQL 4.0 compatible"
msgstr "MySQL 4.0 kompatibel"
#: libraries/display_change_password.lib.php:72
-#: libraries/replication_gui.lib.php:360 server_privileges.php:783
+#: libraries/replication_gui.lib.php:360 server_privileges.php:822
msgid "Generate Password"
msgstr "Generer passord"
#: libraries/display_change_password.lib.php:75
-#: libraries/replication_gui.lib.php:363 server_privileges.php:786
+#: libraries/replication_gui.lib.php:363 server_privileges.php:825
msgid "Generate"
msgstr "Generer"
@@ -1959,8 +1959,8 @@ msgstr "Opprett ny database"
msgid "Create"
msgstr "Opprett"
-#: libraries/display_create_database.lib.php:40 server_privileges.php:74
-#: server_privileges.php:1388 server_replication.php:35
+#: libraries/display_create_database.lib.php:40 server_privileges.php:113
+#: server_privileges.php:1427 server_replication.php:35
msgid "No Privileges"
msgstr "Ingen privilegier"
@@ -2046,7 +2046,7 @@ msgstr "Kompresjon"
#: libraries/display_export.lib.php:240 libraries/display_import.lib.php:197
#: libraries/display_import.lib.php:210 libraries/display_tbl.lib.php:530
#: libraries/export/sql.php:868 libraries/tbl_properties.inc.php:575
-#: server_privileges.php:1836 server_processlist.php:75
+#: server_privileges.php:1875 server_processlist.php:75
msgid "None"
msgstr "Ingen"
@@ -2372,7 +2372,7 @@ msgstr ""
msgid "Buffer Pool"
msgstr "Mellomlager"
-#: libraries/engines/innodb.lib.php:145 server_status.php:306
+#: libraries/engines/innodb.lib.php:145 server_status.php:417
msgid "InnoDB Status"
msgstr "InnoDB status"
@@ -2381,8 +2381,8 @@ msgid "Buffer Pool Usage"
msgstr "Mellomlagerbruk"
#: libraries/engines/innodb.lib.php:194 server_databases.php:137
-#: server_databases.php:305 server_status.php:414 server_status.php:475
-#: server_status.php:496 tbl_printview.php:351 tbl_structure.php:696
+#: server_databases.php:305 server_status.php:525 server_status.php:586
+#: server_status.php:607 tbl_printview.php:351 tbl_structure.php:696
msgid "Total"
msgstr "Totalt"
@@ -2731,7 +2731,7 @@ msgstr "Microsoft Word 2000"
#: libraries/export/latex.php:201 libraries/export/odt.php:48
#: libraries/export/sql.php:106 libraries/export/sql.php:868
#: libraries/export/texytext.php:27 server_databases.php:127
-#: server_privileges.php:537 server_replication.php:316 tbl_printview.php:317
+#: server_privileges.php:576 server_replication.php:316 tbl_printview.php:317
#: tbl_structure.php:665
msgid "Data"
msgstr "Data"
@@ -2781,9 +2781,9 @@ msgstr "MIME-type"
#: libraries/export/xml.php:102 libraries/header_printview.inc.php:57
#: libraries/replication_gui.lib.php:63 libraries/replication_gui.lib.php:174
#: libraries/replication_gui.lib.php:269 libraries/replication_gui.lib.php:272
-#: libraries/replication_gui.lib.php:329 server_privileges.php:692
-#: server_privileges.php:695 server_privileges.php:751
-#: server_privileges.php:1498 server_privileges.php:2030
+#: libraries/replication_gui.lib.php:329 server_privileges.php:731
+#: server_privileges.php:734 server_privileges.php:790
+#: server_privileges.php:1537 server_privileges.php:2069
#: server_processlist.php:55 server_synchronize.php:1159
msgid "Host"
msgstr "Vert"
@@ -3134,858 +3134,6 @@ msgstr "Ingen"
msgid "Convert to Kana"
msgstr "Konverter til Kana"
-#. l10n: Text direction, use either ltr or rtl
-#: libraries/messages.inc.php:19
-msgid "ltr"
-msgstr "ltr"
-
-#: libraries/messages.inc.php:21
-msgid "Content of table __TABLE__"
-msgstr "Innhold i tabell __TABLE__"
-
-#: libraries/messages.inc.php:22
-msgid "(continued)"
-msgstr "(fortsettet)"
-
-#: libraries/messages.inc.php:23
-msgid "Structure of table __TABLE__"
-msgstr "Struktur i tabell __TABLE__"
-
-#: libraries/messages.inc.php:25 server_privileges.php:227
-msgid "Includes all privileges except GRANT."
-msgstr "Inkluder alle privilegier unntatt GRANT."
-
-#: libraries/messages.inc.php:26 server_privileges.php:153
-#: server_privileges.php:476
-msgid "Allows altering the structure of existing tables."
-msgstr "Tillater endring av struktur på eksisterende tabeller."
-
-#: libraries/messages.inc.php:27 server_privileges.php:169
-#: server_privileges.php:482
-msgid "Allows altering and dropping stored routines."
-msgstr "Tillater endring og sletting av lagrede rutiner."
-
-#: libraries/messages.inc.php:28 server_privileges.php:145
-#: server_privileges.php:475
-msgid "Allows creating new databases and tables."
-msgstr "Tillater oppretting av nye databaser og tabeller."
-
-#: libraries/messages.inc.php:29 server_privileges.php:168
-#: server_privileges.php:481
-msgid "Allows creating stored routines."
-msgstr "Tillater oppreting av lagrede rutiner."
-
-#: libraries/messages.inc.php:30 server_privileges.php:475
-msgid "Allows creating new tables."
-msgstr "Tillater oppretting av nye tabeller."
-
-#: libraries/messages.inc.php:31 server_privileges.php:156
-#: server_privileges.php:479
-msgid "Allows creating temporary tables."
-msgstr "Tillater oppretting av midlertidige tabeller."
-
-#: libraries/messages.inc.php:32 server_privileges.php:170
-#: server_privileges.php:515
-msgid "Allows creating, dropping and renaming user accounts."
-msgstr "Tillater oppretting, sletting og navneendring av brukerkontoer."
-
-#: libraries/messages.inc.php:33 server_privileges.php:160
-#: server_privileges.php:164 server_privileges.php:487
-#: server_privileges.php:491
-msgid "Allows creating new views."
-msgstr "Tillater oppretting av nye visninger."
-
-#: libraries/messages.inc.php:34 server_privileges.php:144
-#: server_privileges.php:467
-msgid "Allows deleting data."
-msgstr "Tillater sletting av data."
-
-#: libraries/messages.inc.php:35 server_privileges.php:146
-#: server_privileges.php:478
-msgid "Allows dropping databases and tables."
-msgstr "Tillater sletting av databaser og tabeller."
-
-#: libraries/messages.inc.php:36 server_privileges.php:478
-msgid "Allows dropping tables."
-msgstr "Tillater sletting av tabeller."
-
-#: libraries/messages.inc.php:37 server_privileges.php:161
-#: server_privileges.php:495
-msgid "Allows to set up events for the event scheduler"
-msgstr "Tillater å sette opp hendelser for hendelseskalenderen"
-
-#: libraries/messages.inc.php:38 server_privileges.php:171
-#: server_privileges.php:483
-msgid "Allows executing stored routines."
-msgstr "Tillater utføring av lagrede rutiner."
-
-#: libraries/messages.inc.php:39 server_privileges.php:150
-#: server_privileges.php:470
-msgid "Allows importing data from and exporting data into files."
-msgstr "Tillater import og eksport av data til og fra filer."
-
-#: libraries/messages.inc.php:40 server_privileges.php:501
-msgid ""
-"Allows adding users and privileges without reloading the privilege tables."
-msgstr ""
-"Tillater å legge til brukere og privilegier uten å oppfriske "
-"privilegietabellene."
-
-#: libraries/messages.inc.php:41 server_privileges.php:152
-#: server_privileges.php:477
-msgid "Allows creating and dropping indexes."
-msgstr "Tillater oppretting og sletting av indekser."
-
-#: libraries/messages.inc.php:42 server_privileges.php:142
-#: server_privileges.php:403 server_privileges.php:465
-msgid "Allows inserting and replacing data."
-msgstr "Tillater å legge til og erstatte data."
-
-#: libraries/messages.inc.php:43 server_privileges.php:157
-#: server_privileges.php:510
-msgid "Allows locking tables for the current thread."
-msgstr "Tillater låsing av tabeller for den kjørende tråden."
-
-#: libraries/messages.inc.php:44 server_privileges.php:607
-#: server_privileges.php:609
-msgid "Limits the number of new connections the user may open per hour."
-msgstr "Begrenser antall nye tilkoblinger brukeren kan åpne per time."
-
-#: libraries/messages.inc.php:45 server_privileges.php:595
-#: server_privileges.php:597
-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/messages.inc.php:46 server_privileges.php:601
-#: server_privileges.php:603
-msgid ""
-"Limits the number of commands that change any table or database the user may "
-"execute per hour."
-msgstr ""
-"Begrenser antall kommandoer som kan endre tabeller eller databaser brukeren "
-"kan utføre per time."
-
-#: libraries/messages.inc.php:47 server_privileges.php:613
-#: server_privileges.php:615
-msgid "Limits the number of simultaneous connections the user may have."
-msgstr "Begrens antall samtidige tilkoblinger brukeren kan ha."
-
-#: libraries/messages.inc.php:48 server_privileges.php:149
-#: server_privileges.php:505
-msgid "Allows viewing processes of all users"
-msgstr "Tillater visning av prosessene til alle brukere"
-
-#: libraries/messages.inc.php:49 server_privileges.php:151
-#: server_privileges.php:409 server_privileges.php:511
-msgid "Has no effect in this MySQL version."
-msgstr "har ingen effekt i denne versjonen av MySQL."
-
-#: libraries/messages.inc.php:50 server_privileges.php:147
-#: server_privileges.php:506
-msgid "Allows reloading server settings and flushing the server's caches."
-msgstr ""
-"Tillater oppfrisking av tjenerinnstillinger og oppfrisking av mellomlager."
-
-#: libraries/messages.inc.php:51 server_privileges.php:159
-#: server_privileges.php:513
-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/messages.inc.php:52 server_privileges.php:158
-#: server_privileges.php:514
-msgid "Needed for the replication slaves."
-msgstr "Trenges av replikasjonsslavene."
-
-#: libraries/messages.inc.php:53 server_privileges.php:141
-#: server_privileges.php:400 server_privileges.php:464
-msgid "Allows reading data."
-msgstr "Tillater lesing av data."
-
-#: libraries/messages.inc.php:54 server_privileges.php:154
-#: server_privileges.php:508
-msgid "Gives access to the complete list of databases."
-msgstr "Gir adgang til komplett liste over databaser."
-
-#: libraries/messages.inc.php:55 server_privileges.php:165
-#: server_privileges.php:167 server_privileges.php:480
-msgid "Allows performing SHOW CREATE VIEW queries."
-msgstr "Tillater utføring av SHOW CREATE VIEW spørringer."
-
-#: libraries/messages.inc.php:56 server_privileges.php:148
-#: server_privileges.php:507
-msgid "Allows shutting down the server."
-msgstr "Tillater avslutting av tjener."
-
-#: libraries/messages.inc.php:57 server_privileges.php:155
-#: server_privileges.php:504
-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 ""
-"Tillater tilkobling, selv om maksimum tilkoblinger er nådd. Behøves for de "
-"fleste administrative operasjoner som å sette globale variabler eller "
-"avslutting av andre brukeres tråder."
-
-#: libraries/messages.inc.php:58 server_privileges.php:162
-#: server_privileges.php:496
-msgid "Allows creating and dropping triggers"
-msgstr "Tillater opprettelse og sletting av triggere"
-
-#: libraries/messages.inc.php:59 server_privileges.php:143
-#: server_privileges.php:406 server_privileges.php:466
-msgid "Allows changing data."
-msgstr "Tillater endring av data."
-
-#: libraries/messages.inc.php:60 server_privileges.php:221
-msgid "No privileges."
-msgstr "Ingen privilegier."
-
-#: libraries/messages.inc.php:62
-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 ""
-"Antall transaksjoner som brukte den midlertidige binærloggmellomlageret men "
-"som overskred verdien av binlog_size og brukte en midlertidig fil for å "
-"lagre spørringer fra transaksjonen."
-
-#: libraries/messages.inc.php:63
-msgid "The number of transactions that used the temporary binary log cache."
-msgstr ""
-"Antall transaksjoner som brukte den midlertidige binærloggmellomlageret."
-
-#: libraries/messages.inc.php:64
-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 "
-"to increase the tmp_table_size value to cause temporary tables to be memory-"
-"based instead of disk-based."
-msgstr ""
-"Antall midlertidige tabeller lagret på harddisken automatisk opprettet av "
-"tjeneren mens den utførte spørringer. Hvis Created_tmp_disk_tables er stor "
-"bør du vurdere å øke tmp_table_size verdien slik at midlertidige tabeller "
-"blir lagret i minnet og ikke på harddisken."
-
-#: libraries/messages.inc.php:65
-msgid "How many temporary files mysqld has created."
-msgstr "Antall midlertidige filer mysqld har opprettet."
-
-#: libraries/messages.inc.php:66
-msgid ""
-"The number of in-memory temporary tables created automatically by the server "
-"while executing statements."
-msgstr ""
-"Antall midlertidige tabeller i minnet automatisk opprettet av tjeneren under "
-"utføriing av spørringer."
-
-#: libraries/messages.inc.php:67
-msgid ""
-"The number of rows written with INSERT DELAYED for which some error occurred "
-"(probably duplicate key)."
-msgstr ""
-"Antall rader skrevet med INSERT DELAYED hvor en eller annen form for feil "
-"oppstod (mest sannsynlig duplisert nøkkel)."
-
-#: libraries/messages.inc.php:68
-msgid ""
-"The number of INSERT DELAYED handler threads in use. Every different table "
-"on which one uses INSERT DELAYED gets its own thread."
-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/messages.inc.php:69
-msgid "The number of INSERT DELAYED rows written."
-msgstr "Antall INSERT DELAYED rader skrevet."
-
-#: libraries/messages.inc.php:70
-msgid "The number of executed FLUSH statements."
-msgstr "Antall utførte FLUSH uttrykk."
-
-#: libraries/messages.inc.php:71
-msgid "The number of internal COMMIT statements."
-msgstr "Antall interne COMMIT uttrykk."
-
-#: libraries/messages.inc.php:72
-msgid "The number of times a row was deleted from a table."
-msgstr "Antall ganger en rad ble slettet fra en tabell."
-
-#: libraries/messages.inc.php:73
-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 ""
-"MySQL tjeneren kan spørre NDB Cluster lagringsmotoren om den kjenner til en "
-"tabell med et gitt navn. Dette blir kalt oppdaging (discovery). "
-"Handler_discover indikerer antall ganger tabeller har blitt oppdaget."
-
-#: libraries/messages.inc.php:74
-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 ""
-"Antall ganger det første innlegget ble lest fra en index. Hvis dette tallet "
-"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/messages.inc.php:75
-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 ""
-"Antall forespørsler for å lese en rad basert på en nøkkel. Hvis dette tallet "
-"er høyt gir dette en god indikasjon på at dine spørringer og tabeller er "
-"riktig indeksert."
-
-#: libraries/messages.inc.php:76
-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 ""
-"Antall forespørsler for å lese en rad basert på en fast posisjon. Denne er "
-"høy hvis du utører mange spørringer som behøver sortering av resultatet. Du "
-"har sansynligvis mange spørringer som krever at MySQL leser hele tabeller "
-"eller du har joins som ikke bruker nøkler korrekt."
-
-#: libraries/messages.inc.php:77
-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 ""
-"Antall forespørsler for å lese den forrige raden i nøkkelrekkefølge. Denne "
-"lesemetoden er hovedsakelig brukt for å optimalisere ORDER BY ... DESC."
-
-#: libraries/messages.inc.php:78
-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 "
-"probably have a lot of queries that require MySQL to scan whole tables or "
-"you have joins that don't use keys properly."
-msgstr ""
-"Antall forespørsler for å lese en rad basert på en fast posisjon. Denne er "
-"høy om du utfører mange spørringer som behøver sorteringer av resultatet. Du "
-"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/messages.inc.php:79
-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 "
-"tables are not properly indexed or that your queries are not written to take "
-"advantage of the indexes you have."
-msgstr ""
-"Antall forespørsler for å lese neste rad i datafila. Dette tallet er høyt "
-"hvis du utfører mange tabellskanninger. Vanligvis betyr dette at dine "
-"tabeller ikke er rett indeksert eller at dine spørringer ikke er skrevet for "
-"å utnytte de indeksene du har."
-
-#: libraries/messages.inc.php:80
-msgid "The number of internal ROLLBACK statements."
-msgstr "Antall interne ROLLBACK kommandoer."
-
-#: libraries/messages.inc.php:81
-msgid "The number of requests to update a row in a table."
-msgstr "Antall forespørsler for å oppdatere en rad i en tabell."
-
-#: libraries/messages.inc.php:82
-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/messages.inc.php:83
-msgid "The number of pages containing data (dirty or clean)."
-msgstr "Antall sider som inneholder data (endret eller uendret)."
-
-#: libraries/messages.inc.php:84
-msgid "The number of pages currently dirty."
-msgstr "Antall sider for tiden endret."
-
-#: libraries/messages.inc.php:85
-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/messages.inc.php:86
-msgid "The number of free pages."
-msgstr "Antall tomme sider."
-
-#: libraries/messages.inc.php:87
-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 ""
-"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/messages.inc.php:88
-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 "
-"be calculated as Innodb_buffer_pool_pages_total - "
-"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data."
-msgstr ""
-"Antall sider som er opptatt fordi de har blitt allokert for administrative "
-"oppgaver slik som radlåsing eller adaptiv nøkkelindeksering. Denne verdien "
-"kan også regnes ut som Innodb_buffer_pool_pages_total - "
-"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data."
-
-#: libraries/messages.inc.php:89
-msgid "Total size of buffer pool, in pages."
-msgstr "Total størrelse på midlertidig mellomlager i sider."
-
-#: libraries/messages.inc.php:90
-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 ""
-"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/messages.inc.php:91
-msgid ""
-"The number of sequential read-aheads InnoDB initiated. This happens when "
-"InnoDB does a sequential full table scan."
-msgstr ""
-"Antall sekvensielle \"read-aheads\" InnoDB startet. Denne skjer når InnoDB "
-"utfører en sekvensiell full tabellskanning."
-
-#: libraries/messages.inc.php:92
-msgid "The number of logical read requests InnoDB has done."
-msgstr "Antall logiske leseforespørsler InnoDB har utført."
-
-#: libraries/messages.inc.php:93
-msgid ""
-"The number of logical reads that InnoDB could not satisfy from buffer pool "
-"and had to do a single-page read."
-msgstr ""
-"Antall logiske lesninger som InnoDN ikke kunne tilfredsstille fra "
-"mellomlageret og måtte utføre en enkelsidelesnining."
-
-#: libraries/messages.inc.php:94
-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 "
-"available, it's necessary to wait for pages to be flushed first. This "
-"counter counts instances of these waits. If the buffer pool size was set "
-"properly, this value should be small."
-msgstr ""
-"Normalt vil skrivinger til InnoDBs mellomlager skje i bakgrunnen. Men, hvis "
-"det er behov for å lese eller opprette en side og ingen rene/tomme sider er "
-"tilgjengelig så er det nødvendig å vente på at sider blir tømt først. Denne "
-"telleren viser antall slike ventinger. Hvis mellomlagerstørrelsen er godt "
-"innstilt så vil denne verdien være liten."
-
-#: libraries/messages.inc.php:95
-msgid "The number writes done to the InnoDB buffer pool."
-msgstr "Antall skrivinger til InnoDBs midlertidig mellomlager."
-
-#: libraries/messages.inc.php:96
-msgid "The number of fsync() operations so far."
-msgstr "Antall fsync() operasjoner så langt."
-
-#: libraries/messages.inc.php:97
-msgid "The current number of pending fsync() operations."
-msgstr "Antall ventende fsync() operasjoner."
-
-#: libraries/messages.inc.php:98
-msgid "The current number of pending reads."
-msgstr "Antall ventende lesinger."
-
-#: libraries/messages.inc.php:99
-msgid "The current number of pending writes."
-msgstr "Antall ventende skrivinger."
-
-#: libraries/messages.inc.php:100
-msgid "The amount of data read so far, in bytes."
-msgstr "Mengden data lest så langt, i bytes."
-
-#: libraries/messages.inc.php:101
-msgid "The total number of data reads."
-msgstr "Antall utførte lesninger."
-
-#: libraries/messages.inc.php:102
-msgid "The total number of data writes."
-msgstr "Antall utførte skrivinger."
-
-#: libraries/messages.inc.php:103
-msgid "The amount of data written so far, in bytes."
-msgstr "Mengden data skrevet så langt, i bytes."
-
-#: libraries/messages.inc.php:104
-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/messages.inc.php:105
-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/messages.inc.php:106
-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 ""
-"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/messages.inc.php:107
-msgid "The number of log write requests."
-msgstr "Antall loggskrivingsforespørsler."
-
-#: libraries/messages.inc.php:108
-msgid "The number of physical writes to the log file."
-msgstr "Antall fysiske skrivinger til loggfila."
-
-#: libraries/messages.inc.php:109
-msgid "The number of fsync() writes done to the log file."
-msgstr "Antall fsync-skrivinger utført på loggfila."
-
-#: libraries/messages.inc.php:110
-msgid "The number of pending log file fsyncs."
-msgstr "Antall ventende loggfil-fsyncs."
-
-#: libraries/messages.inc.php:111
-msgid "Pending log file writes."
-msgstr "Ventende loggfilskrivinger."
-
-#: libraries/messages.inc.php:112
-msgid "The number of bytes written to the log file."
-msgstr "Antall bytes skrevet til loggfila."
-
-#: libraries/messages.inc.php:113
-msgid "The number of pages created."
-msgstr "Antall sider opprettet."
-
-#: libraries/messages.inc.php:114
-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 ""
-"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/messages.inc.php:115
-msgid "The number of pages read."
-msgstr "Antall sidelesninger."
-
-#: libraries/messages.inc.php:116
-msgid "The number of pages written."
-msgstr "Antall sideskrivinger."
-
-#: libraries/messages.inc.php:117
-msgid "The number of row locks currently being waited for."
-msgstr "Antall ventende radlåsinger."
-
-#: libraries/messages.inc.php:118
-msgid "The average time to acquire a row lock, in milliseconds."
-msgstr "Gjennomsnittlig tid for å oppnå radlåsing, i millisekunder."
-
-#: libraries/messages.inc.php:119
-msgid "The total time spent in acquiring row locks, in milliseconds."
-msgstr "Total tid brukt for å få radlåsinger, i millisekunder."
-
-#: libraries/messages.inc.php:120
-msgid "The maximum time to acquire a row lock, in milliseconds."
-msgstr "Maksimum tid brukt for å oppnå en radlåsing, i millisekunder."
-
-#: libraries/messages.inc.php:121
-msgid "The number of times a row lock had to be waited for."
-msgstr "Antall ganger en radlås måtte ventes på."
-
-#: libraries/messages.inc.php:122
-msgid "The number of rows deleted from InnoDB tables."
-msgstr "Antall rader slettet fra InnoDB tabeller."
-
-#: libraries/messages.inc.php:123
-msgid "The number of rows inserted in InnoDB tables."
-msgstr "Antall rader satt inn i InnoDB tabeller."
-
-#: libraries/messages.inc.php:124
-msgid "The number of rows read from InnoDB tables."
-msgstr "Antall rader lest fra InnoDB tabeller."
-
-#: libraries/messages.inc.php:125
-msgid "The number of rows updated in InnoDB tables."
-msgstr "Antall rader oppdatert i InnoDB tabeller."
-
-#: libraries/messages.inc.php:126
-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 ""
-"Antall nøkkelblokker i nøkkelmellomlageret som har blitt endret men som ikke "
-"ennå har blitt skrevet til harddisken. Dette var tidligere kjent som "
-"Not_flushed_key_blocks."
-
-#: libraries/messages.inc.php:127
-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 ""
-"Antall ubrukte blokker i nøkkelmellomlageret. Du kan bruke denne verdien til "
-"å bestemme hvor mye av nøkkelmellomlageret som er i bruk."
-
-#: libraries/messages.inc.php:128
-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 ""
-"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/messages.inc.php:129
-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/messages.inc.php:130
-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 ""
-"Antall fysiske lesninger av en nøkkelblokk fra harddisk. Hvis Key_reads er "
-"stor er nok din key_buffer_size verdi for liten. Mellomlagertreffraten kan "
-"kalkuleres med Key_reads/Key_read_requests."
-
-#: libraries/messages.inc.php:131
-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/messages.inc.php:132
-msgid "The number of physical writes of a key block to disk."
-msgstr "Antall fysiske skrivinger av en nøkkelblokk til disk."
-
-#: libraries/messages.inc.php:133
-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 ""
-"Den totale kostnad ved siste kompilerte spørring slik den ble utregnet av "
-"spørringsoptimisereren. Nyttig for å kunne sammenligne kostnader ved "
-"forskjellige spørringsplaner for den samme spørringen. Standardverdien på 0 "
-"betyr at ingen spørring har blitt kompilert ennå."
-
-#: libraries/messages.inc.php:134
-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/messages.inc.php:135
-msgid ""
-"The number of tables that have been opened. If opened tables is big, your "
-"table cache value is probably too small."
-msgstr ""
-"Antall tabeller som har blitt åpnet. Hvis denne er stor er nok din "
-"tabellmellomlagerverdi for liten."
-
-#: libraries/messages.inc.php:136
-msgid "The number of files that are open."
-msgstr "Antall åpne filer."
-
-#: libraries/messages.inc.php:137
-msgid "The number of streams that are open (used mainly for logging)."
-msgstr "Antall åpne dataflyter (hovedsaklig brukt til logging)."
-
-#: libraries/messages.inc.php:138
-msgid "The number of tables that are open."
-msgstr "Antall åpne tabeller."
-
-#: libraries/messages.inc.php:139
-msgid "The number of free memory blocks in query cache."
-msgstr "Antall ledige minneblokker i spørringsmellomlager."
-
-#: libraries/messages.inc.php:140
-msgid "The amount of free memory for query cache."
-msgstr "Mengden ledig minne i spørringsmellomlager."
-
-#: libraries/messages.inc.php:141
-msgid "The number of cache hits."
-msgstr "Antall mellomlagertreff."
-
-#: libraries/messages.inc.php:142
-msgid "The number of queries added to the cache."
-msgstr "Antall spørringer lagt til i mellomlageret."
-
-#: libraries/messages.inc.php:143
-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 "
-"cache size. The query cache uses a least recently used (LRU) strategy to "
-"decide which queries to remove from the cache."
-msgstr ""
-"Antall spørringer som har blitt fjernet fra mellomlageret for å frigjøre "
-"minne for nye spørringer. Denne informasjonen kan hjelpe deg å fininnstille "
-"størrelsen på spørringsmellomlageret. Spørringsmellomlageret bruker en minst "
-"og sist brukt (least recently used (LRU)) strategi for å finne hvilke "
-"spørringer som skal fjernes fra mellomlageret."
-
-#: libraries/messages.inc.php:144
-msgid ""
-"The number of non-cached queries (not cachable, or not cached due to the "
-"query_cache_type setting)."
-msgstr ""
-"Antallet ikkelagrede spørringer (kan ikke lagres, eller ikke lagret p.g.a. "
-"query_cache_type innstillingen)."
-
-#: libraries/messages.inc.php:145
-msgid "The number of queries registered in the cache."
-msgstr "Antall spørringer registrert i mellomlageret."
-
-#: libraries/messages.inc.php:146
-msgid "The total number of blocks in the query cache."
-msgstr "Totale antall blokker i spørringsmellomlageret."
-
-#: libraries/messages.inc.php:147
-msgctxt "$strShowStatusReset"
-msgid "Reset"
-msgstr "Tilbakestill"
-
-#: libraries/messages.inc.php:148
-msgid "The status of failsafe replication (not yet implemented)."
-msgstr "Failsafe replikasjonsstatus (ikke implementert ennå)."
-
-#: libraries/messages.inc.php:149
-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 ""
-"Antall joins som ikke bruker indekser. Hvis denne verdien ikke er 0 bør du "
-"nøye sjekke indeksene til dine tabeller."
-
-#: libraries/messages.inc.php:150
-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/messages.inc.php:151
-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 ""
-"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/messages.inc.php:152
-msgid ""
-"The number of joins that used ranges on the first table. (It's normally not "
-"critical even if this is big.)"
-msgstr ""
-"Antall joins som brukte rekkefølger på den første tabellen. (Det er normalt "
-"ikke kritisk selv om denne verdien er stor.)"
-
-#: libraries/messages.inc.php:153
-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/messages.inc.php:154
-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/messages.inc.php:155
-msgid ""
-"Total (since startup) number of times the replication slave SQL thread has "
-"retried transactions."
-msgstr ""
-"Det totale antall ganger (siden oppstart) replikasjonsslave-SQL-tråden har "
-"gjentatt transaksjoner."
-
-#: libraries/messages.inc.php:156
-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/messages.inc.php:157
-msgid ""
-"The number of threads that have taken more than slow_launch_time seconds to "
-"create."
-msgstr ""
-"Antall tråder som har brukt mer enn slow_launch_time sekunder under "
-"opprettelse."
-
-#: libraries/messages.inc.php:158
-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/messages.inc.php:159
-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 ""
-"Antall sammenslåingspasseringer sorteringsalgoritmen har måttet utføre. Hvis "
-"denne verdien er stor bør du vurdere å øke verdien av sort_buffer_size "
-"systemvariabelen."
-
-#: libraries/messages.inc.php:160
-msgid "The number of sorts that were done with ranges."
-msgstr "Antall sorteringer som ble utført med rekkefølger."
-
-#: libraries/messages.inc.php:161
-msgid "The number of sorted rows."
-msgstr "Antall sorterte rader."
-
-#: libraries/messages.inc.php:162
-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/messages.inc.php:163
-msgid "The number of times that a table lock was acquired immediately."
-msgstr "Antall ganger en tabellåsing ble utført umiddelbart."
-
-#: libraries/messages.inc.php:164
-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 "
-"should first optimize your queries, and then either split your table or "
-"tables or use replication."
-msgstr ""
-"Antall ganger en tabellås ikke har kunnet blitt opprettet umiddelbart og en "
-"venting ble nødvendig. Hvis denne er høy og du har ytelsesproblemer bør du "
-"først optimalisere dine spørringer, og deretter enten splitte din tabell "
-"eller tabeller eller bruke replikasjon."
-
-#: libraries/messages.inc.php:165
-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 ""
-"Antall tråder i trådmellomlageret. Mellomlagertreffraten kan regnes ut som "
-"Threads_created/Connections. Hvis denne verdien er rød bør du øke din "
-"thread_cache_size."
-
-#: libraries/messages.inc.php:166
-msgid "The number of currently open connections."
-msgstr "Antall åpne tilkoblinger."
-
-#: libraries/messages.inc.php:167
-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 "
-"doesn't give a notable performance improvement if you have a good thread "
-"implementation.)"
-msgstr ""
-"Antall tråder opprettet for å handtere tilkoblinger. Hvis Threads_created er "
-"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/messages.inc.php:168
-msgid "The number of threads that are not sleeping."
-msgstr "Antall tråder som ikke sover."
-
#: libraries/mult_submits.inc.php:76 libraries/tbl_properties.inc.php:513
#: tbl_structure.php:29 tbl_structure.php:153 tbl_structure.php:157
#: tbl_structure.php:473
@@ -4307,8 +3455,8 @@ msgstr ""
#: libraries/replication_gui.lib.php:55 libraries/replication_gui.lib.php:56
#: libraries/replication_gui.lib.php:249 libraries/replication_gui.lib.php:252
-#: libraries/replication_gui.lib.php:259 server_privileges.php:672
-#: server_privileges.php:675 server_privileges.php:682
+#: libraries/replication_gui.lib.php:259 server_privileges.php:711
+#: server_privileges.php:714 server_privileges.php:721
#: server_synchronize.php:1171
msgid "User name"
msgstr "Brukernavn"
@@ -4326,11 +3474,11 @@ msgid "Slave status"
msgstr "Slavestatus"
#: libraries/replication_gui.lib.php:114 libraries/sql_query_form.lib.php:445
-#: server_status.php:626 server_variables.php:52
+#: server_status.php:737 server_variables.php:52
msgid "Variable"
msgstr "Variabler"
-#: libraries/replication_gui.lib.php:115 server_status.php:627
+#: libraries/replication_gui.lib.php:115 server_status.php:738
#: tbl_change.php:324 tbl_printview.php:370 tbl_select.php:139
#: tbl_structure.php:729
msgid "Value"
@@ -4352,34 +3500,34 @@ msgstr ""
msgid "Add slave replication user"
msgstr "Legg til slavereplikasjonsbruker"
-#: libraries/replication_gui.lib.php:254 server_privileges.php:677
+#: libraries/replication_gui.lib.php:254 server_privileges.php:716
msgid "Any user"
msgstr "Alle brukere"
#: libraries/replication_gui.lib.php:255 libraries/replication_gui.lib.php:323
-#: libraries/replication_gui.lib.php:346 server_privileges.php:678
-#: server_privileges.php:745 server_privileges.php:769
-#: server_privileges.php:1889 server_privileges.php:1919
+#: libraries/replication_gui.lib.php:346 server_privileges.php:717
+#: server_privileges.php:784 server_privileges.php:808
+#: server_privileges.php:1928 server_privileges.php:1958
msgid "Use text field"
msgstr "Bruk tekstfelt"
-#: libraries/replication_gui.lib.php:302 server_privileges.php:725
+#: libraries/replication_gui.lib.php:302 server_privileges.php:764
msgid "Any host"
msgstr "Alle verter"
-#: libraries/replication_gui.lib.php:306 server_privileges.php:729
+#: libraries/replication_gui.lib.php:306 server_privileges.php:768
msgid "Local"
msgstr "Lokal"
-#: libraries/replication_gui.lib.php:312 server_privileges.php:734
+#: libraries/replication_gui.lib.php:312 server_privileges.php:773
msgid "This Host"
msgstr "Denne vert"
-#: libraries/replication_gui.lib.php:318 server_privileges.php:740
+#: libraries/replication_gui.lib.php:318 server_privileges.php:779
msgid "Use Host Table"
msgstr "Vis vert tabell"
-#: libraries/replication_gui.lib.php:331 server_privileges.php:753
+#: libraries/replication_gui.lib.php:331 server_privileges.php:792
msgid ""
"When Host table is used, this field is ignored and values stored in Host "
"table are used instead."
@@ -4387,8 +3535,25 @@ msgstr ""
"Når vertstabellen er brukt så ignoreres dette feltet og verdier lagret i "
"vertstabellen blir brukt istedet."
-#: libraries/select_lang.lib.php:480 libraries/select_lang.lib.php:486
-#: libraries/select_lang.lib.php:492
+#. l10n: Text direction, use either ltr or rtl
+#: libraries/select_lang.lib.php:491
+msgid "ltr"
+msgstr "ltr"
+
+#: libraries/select_lang.lib.php:493
+msgid "Content of table __TABLE__"
+msgstr "Innhold i tabell __TABLE__"
+
+#: libraries/select_lang.lib.php:494
+msgid "(continued)"
+msgstr "(fortsettet)"
+
+#: libraries/select_lang.lib.php:495
+msgid "Structure of table __TABLE__"
+msgstr "Struktur i tabell __TABLE__"
+
+#: libraries/select_lang.lib.php:500 libraries/select_lang.lib.php:506
+#: libraries/select_lang.lib.php:512
#, php-format
msgid "Unknown language: %1$s."
msgstr "Ukjent språk: %1$s."
@@ -4399,7 +3564,7 @@ msgid "Servers"
msgstr "Tjenere"
#: libraries/server_links.inc.php:53 server_engines.php:112
-#: server_engines.php:116 server_status.php:304 test/theme.php:105
+#: server_engines.php:116 server_status.php:415 test/theme.php:105
msgid "Variables"
msgstr "Variabler"
@@ -4412,7 +3577,7 @@ msgid "Engines"
msgstr "Motorer"
#: libraries/server_links.inc.php:76 server_binlog.php:110
-#: server_status.php:253 test/theme.php:121
+#: server_status.php:364 test/theme.php:121
msgid "Binary log"
msgstr "Binærlogg"
@@ -4837,8 +4002,8 @@ msgstr "Tilbakestill"
msgid "Protocol version"
msgstr "Protokollversjon"
-#: main.php:189 server_privileges.php:1350 server_privileges.php:1497
-#: server_privileges.php:1611 server_privileges.php:2029
+#: main.php:189 server_privileges.php:1389 server_privileges.php:1536
+#: server_privileges.php:1650 server_privileges.php:2068
#: server_processlist.php:54
msgid "User"
msgstr "Bruker"
@@ -5221,7 +4386,7 @@ msgstr "%s databasene har blitt slettet."
msgid "Databases statistics"
msgstr "Statistikk for databaser"
-#: server_databases.php:117 server_status.php:260
+#: server_databases.php:117 server_status.php:371
#: setup/lib/messages.inc.php:117
msgid "Tables"
msgstr "Tabeller"
@@ -5239,6 +4404,16 @@ msgstr "Slavereplikasjon"
msgid "Jump to database"
msgstr "Gå til database"
+#: server_databases.php:267
+#| msgid "Master replication"
+msgid "Not replicated"
+msgstr "Ikke replikert"
+
+#: server_databases.php:273
+#| msgid "Replication"
+msgid "Replicated"
+msgstr "Replikert"
+
#: server_databases.php:289
#, php-format
msgid "Check privileges for database "%s"."
@@ -5272,138 +4447,330 @@ msgstr "Lagringsmotorer"
msgid "View dump (schema) of databases"
msgstr "Vis dumpet skjema av databaser"
-#: server_privileges.php:263 server_privileges.php:264
+#: server_privileges.php:24 server_privileges.php:266
+msgid "Includes all privileges except GRANT."
+msgstr "Inkluder alle privilegier unntatt GRANT."
+
+#: server_privileges.php:25 server_privileges.php:192
+#: server_privileges.php:515
+msgid "Allows altering the structure of existing tables."
+msgstr "Tillater endring av struktur på eksisterende tabeller."
+
+#: server_privileges.php:26 server_privileges.php:208
+#: server_privileges.php:521
+msgid "Allows altering and dropping stored routines."
+msgstr "Tillater endring og sletting av lagrede rutiner."
+
+#: server_privileges.php:27 server_privileges.php:184
+#: server_privileges.php:514
+msgid "Allows creating new databases and tables."
+msgstr "Tillater oppretting av nye databaser og tabeller."
+
+#: server_privileges.php:28 server_privileges.php:207
+#: server_privileges.php:520
+msgid "Allows creating stored routines."
+msgstr "Tillater oppreting av lagrede rutiner."
+
+#: server_privileges.php:29 server_privileges.php:514
+msgid "Allows creating new tables."
+msgstr "Tillater oppretting av nye tabeller."
+
+#: server_privileges.php:30 server_privileges.php:195
+#: server_privileges.php:518
+msgid "Allows creating temporary tables."
+msgstr "Tillater oppretting av midlertidige tabeller."
+
+#: server_privileges.php:31 server_privileges.php:209
+#: server_privileges.php:554
+msgid "Allows creating, dropping and renaming user accounts."
+msgstr "Tillater oppretting, sletting og navneendring av brukerkontoer."
+
+#: server_privileges.php:32 server_privileges.php:199
+#: server_privileges.php:203 server_privileges.php:526
+#: server_privileges.php:530
+msgid "Allows creating new views."
+msgstr "Tillater oppretting av nye visninger."
+
+#: server_privileges.php:33 server_privileges.php:183
+#: server_privileges.php:506
+msgid "Allows deleting data."
+msgstr "Tillater sletting av data."
+
+#: server_privileges.php:34 server_privileges.php:185
+#: server_privileges.php:517
+msgid "Allows dropping databases and tables."
+msgstr "Tillater sletting av databaser og tabeller."
+
+#: server_privileges.php:35 server_privileges.php:517
+msgid "Allows dropping tables."
+msgstr "Tillater sletting av tabeller."
+
+#: server_privileges.php:36 server_privileges.php:200
+#: server_privileges.php:534
+msgid "Allows to set up events for the event scheduler"
+msgstr "Tillater å sette opp hendelser for hendelseskalenderen"
+
+#: server_privileges.php:37 server_privileges.php:210
+#: server_privileges.php:522
+msgid "Allows executing stored routines."
+msgstr "Tillater utføring av lagrede rutiner."
+
+#: server_privileges.php:38 server_privileges.php:189
+#: server_privileges.php:509
+msgid "Allows importing data from and exporting data into files."
+msgstr "Tillater import og eksport av data til og fra filer."
+
+#: server_privileges.php:39 server_privileges.php:540
+msgid ""
+"Allows adding users and privileges without reloading the privilege tables."
+msgstr ""
+"Tillater å legge til brukere og privilegier uten å oppfriske "
+"privilegietabellene."
+
+#: server_privileges.php:40 server_privileges.php:191
+#: server_privileges.php:516
+msgid "Allows creating and dropping indexes."
+msgstr "Tillater oppretting og sletting av indekser."
+
+#: server_privileges.php:41 server_privileges.php:181
+#: server_privileges.php:442 server_privileges.php:504
+msgid "Allows inserting and replacing data."
+msgstr "Tillater å legge til og erstatte data."
+
+#: server_privileges.php:42 server_privileges.php:196
+#: server_privileges.php:549
+msgid "Allows locking tables for the current thread."
+msgstr "Tillater låsing av tabeller for den kjørende tråden."
+
+#: server_privileges.php:43 server_privileges.php:646
+#: server_privileges.php:648
+msgid "Limits the number of new connections the user may open per hour."
+msgstr "Begrenser antall nye tilkoblinger brukeren kan åpne per time."
+
+#: server_privileges.php:44 server_privileges.php:634
+#: server_privileges.php:636
+msgid "Limits the number of queries the user may send to the server per hour."
+msgstr "Begrenser antall spørringer brukeren kan sende til tjeneren per time."
+
+#: server_privileges.php:45 server_privileges.php:640
+#: server_privileges.php:642
+msgid ""
+"Limits the number of commands that change any table or database the user may "
+"execute per hour."
+msgstr ""
+"Begrenser antall kommandoer som kan endre tabeller eller databaser brukeren "
+"kan utføre per time."
+
+#: server_privileges.php:46 server_privileges.php:652
+#: server_privileges.php:654
+msgid "Limits the number of simultaneous connections the user may have."
+msgstr "Begrens antall samtidige tilkoblinger brukeren kan ha."
+
+#: server_privileges.php:47 server_privileges.php:188
+#: server_privileges.php:544
+msgid "Allows viewing processes of all users"
+msgstr "Tillater visning av prosessene til alle brukere"
+
+#: server_privileges.php:48 server_privileges.php:190
+#: server_privileges.php:448 server_privileges.php:550
+msgid "Has no effect in this MySQL version."
+msgstr "har ingen effekt i denne versjonen av MySQL."
+
+#: server_privileges.php:49 server_privileges.php:186
+#: server_privileges.php:545
+msgid "Allows reloading server settings and flushing the server's caches."
+msgstr ""
+"Tillater oppfrisking av tjenerinnstillinger og oppfrisking av mellomlager."
+
+#: server_privileges.php:50 server_privileges.php:198
+#: server_privileges.php:552
+msgid "Allows the user to ask where the slaves / masters are."
+msgstr ""
+"Gir tillatelse til brukeren til å spørre hvor replikasjonsslaver eller -"
+"tjenere er."
+
+#: server_privileges.php:51 server_privileges.php:197
+#: server_privileges.php:553
+msgid "Needed for the replication slaves."
+msgstr "Trenges av replikasjonsslavene."
+
+#: server_privileges.php:52 server_privileges.php:180
+#: server_privileges.php:439 server_privileges.php:503
+msgid "Allows reading data."
+msgstr "Tillater lesing av data."
+
+#: server_privileges.php:53 server_privileges.php:193
+#: server_privileges.php:547
+msgid "Gives access to the complete list of databases."
+msgstr "Gir adgang til komplett liste over databaser."
+
+#: server_privileges.php:54 server_privileges.php:204
+#: server_privileges.php:206 server_privileges.php:519
+msgid "Allows performing SHOW CREATE VIEW queries."
+msgstr "Tillater utføring av SHOW CREATE VIEW spørringer."
+
+#: server_privileges.php:55 server_privileges.php:187
+#: server_privileges.php:546
+msgid "Allows shutting down the server."
+msgstr "Tillater avslutting av tjener."
+
+#: server_privileges.php:56 server_privileges.php:194
+#: server_privileges.php:543
+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 ""
+"Tillater tilkobling, selv om maksimum tilkoblinger er nådd. Behøves for de "
+"fleste administrative operasjoner som å sette globale variabler eller "
+"avslutting av andre brukeres tråder."
+
+#: server_privileges.php:57 server_privileges.php:201
+#: server_privileges.php:535
+msgid "Allows creating and dropping triggers"
+msgstr "Tillater opprettelse og sletting av triggere"
+
+#: server_privileges.php:58 server_privileges.php:182
+#: server_privileges.php:445 server_privileges.php:505
+msgid "Allows changing data."
+msgstr "Tillater endring av data."
+
+#: server_privileges.php:59 server_privileges.php:260
+msgid "No privileges."
+msgstr "Ingen privilegier."
+
+#: server_privileges.php:302 server_privileges.php:303
msgctxt "None privileges"
msgid "None"
msgstr "Ingen"
-#: server_privileges.php:392 server_privileges.php:527
-#: server_privileges.php:1679 server_privileges.php:1685
+#: server_privileges.php:431 server_privileges.php:566
+#: server_privileges.php:1718 server_privileges.php:1724
msgid "Table-specific privileges"
msgstr "Tabell-spesifikke privilegier"
-#: server_privileges.php:393 server_privileges.php:535
-#: server_privileges.php:1501
+#: server_privileges.php:432 server_privileges.php:574
+#: server_privileges.php:1540
msgid " Note: MySQL privilege names are expressed in English "
msgstr "OBS: MySQL privilegiumnavn er på engelsk"
-#: server_privileges.php:524 server_privileges.php:1500
+#: server_privileges.php:563 server_privileges.php:1539
msgid "Global privileges"
msgstr "Globale privilegier"
-#: server_privileges.php:526 server_privileges.php:1679
+#: server_privileges.php:565 server_privileges.php:1718
msgid "Database-specific privileges"
msgstr "Databasespesifikke privilegier"
-#: server_privileges.php:571
+#: server_privileges.php:610
msgid "Administration"
msgstr "Administrasjon"
-#: server_privileges.php:591
+#: server_privileges.php:630
msgid "Resource limits"
msgstr "Ressursbegrensninger"
-#: server_privileges.php:592
+#: server_privileges.php:631
msgid "Note: Setting these options to 0 (zero) removes the limit."
msgstr "Merk: Ved å sette disse til 0 (null) fjernes begrensningen."
-#: server_privileges.php:669
+#: server_privileges.php:708
msgid "Login Information"
msgstr "Innlogingsinformasjon"
-#: server_privileges.php:763
+#: server_privileges.php:802
msgid "Do not change the password"
msgstr "Ikke endre passordet"
-#: server_privileges.php:804 server_privileges.php:2166
+#: server_privileges.php:843 server_privileges.php:2205
msgid "No user found."
msgstr "Ingen bruker(e) funnet."
-#: server_privileges.php:848
+#: server_privileges.php:887
#, php-format
msgid "The user %s already exists!"
msgstr "Brukeren %s finnes fra før!"
-#: server_privileges.php:931
+#: server_privileges.php:970
msgid "You have added a new user."
msgstr "Du har lagt til en ny bruker."
-#: server_privileges.php:1152
+#: server_privileges.php:1191
#, php-format
msgid "You have updated the privileges for %s."
msgstr "Du har oppdatert privilegiene til %s."
-#: server_privileges.php:1176
+#: server_privileges.php:1215
#, php-format
msgid "You have revoked the privileges for %s"
msgstr "Du har fjernet privilegiene til %s"
-#: server_privileges.php:1212
+#: server_privileges.php:1251
#, php-format
msgid "The password for %s was changed successfully."
msgstr "Passordet til %s er endret."
-#: server_privileges.php:1232
+#: server_privileges.php:1271
#, php-format
msgid "Deleting %s"
msgstr "Sletter %s"
-#: server_privileges.php:1243
+#: server_privileges.php:1282
msgid "No users selected for deleting!"
msgstr "Ingen brukere merket for sletting!"
-#: server_privileges.php:1246
+#: server_privileges.php:1285
msgid "Reloading the privileges"
msgstr "Oppfrisker privilegiene"
-#: server_privileges.php:1261
+#: server_privileges.php:1300
msgid "The selected users have been deleted successfully."
msgstr "De valgte brukerne har blitt slettet."
-#: server_privileges.php:1296
+#: server_privileges.php:1335
msgid "The privileges were reloaded successfully."
msgstr "Oppfriskingen av privilegiene lyktes."
-#: server_privileges.php:1324 server_privileges.php:1610
+#: server_privileges.php:1363 server_privileges.php:1649
msgid "Edit Privileges"
msgstr "Rediger privilegier"
-#: server_privileges.php:1333
+#: server_privileges.php:1372
msgid "Revoke"
msgstr "Tilbakekall"
-#: server_privileges.php:1365
+#: server_privileges.php:1404
msgid "User overview"
msgstr "Brukeroversikt"
-#: server_privileges.php:1502 server_privileges.php:1684
-#: server_privileges.php:2033
+#: server_privileges.php:1541 server_privileges.php:1723
+#: server_privileges.php:2072
msgid "Grant"
msgstr "Rettighet"
-#: server_privileges.php:1521 server_privileges.php:2123
+#: server_privileges.php:1560 server_privileges.php:2162
msgid "Any"
msgstr "Alle"
-#: server_privileges.php:1570 server_privileges.php:1594
-#: server_privileges.php:1988 server_privileges.php:2177
+#: server_privileges.php:1609 server_privileges.php:1633
+#: server_privileges.php:2027 server_privileges.php:2216
msgid "Add a new User"
msgstr "Legg til en ny bruker"
-#: server_privileges.php:1575
+#: server_privileges.php:1614
msgid "Remove selected users"
msgstr "Fjern valgte brukere"
-#: server_privileges.php:1578
+#: server_privileges.php:1617
msgid "Revoke all active privileges from the users and delete them afterwards."
msgstr "Tilbakekall alle aktive privilegier fra brukerne og slett dem etterpå."
-#: server_privileges.php:1579 server_privileges.php:1580
-#: server_privileges.php:1581
+#: server_privileges.php:1618 server_privileges.php:1619
+#: server_privileges.php:1620
msgid "Drop the databases that have the same names as the users."
msgstr "Slett databasene som har det samme navnet som brukerne."
-#: server_privileges.php:1597
+#: server_privileges.php:1636
#, php-format
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
@@ -5416,91 +4783,91 @@ msgstr ""
"privilegiene tjeneren bruker hvis det er utført manuelle endringer på den. I "
"så fall bør du %soppfriske privilegiene%s før du fortsetter."
-#: server_privileges.php:1645
+#: server_privileges.php:1684
msgid "The selected user was not found in the privilege table."
msgstr "Den valgte brukeren ble ikke funnet i privilegietabellen."
-#: server_privileges.php:1685
+#: server_privileges.php:1724
msgid "Column-specific privileges"
msgstr "Kolonne-spesifikke privilegier"
-#: server_privileges.php:1886
+#: server_privileges.php:1925
msgid "Add privileges on the following database"
msgstr "Legg til privilegier til følgende database"
-#: server_privileges.php:1904
+#: server_privileges.php:1943
msgid "Wildcards % and _ should be escaped with a \\ to use them literally"
msgstr "Jokertegnene _ og % må beskyttes med en \\ for å bruke dem direkte"
-#: server_privileges.php:1907
+#: server_privileges.php:1946
msgid "Add privileges on the following table"
msgstr "Legg til privilegier til følgende tabell"
-#: server_privileges.php:1964
+#: server_privileges.php:2003
msgid "Change Login Information / Copy User"
msgstr "Endre innloggingsinformasjon / kopiere bruker"
-#: server_privileges.php:1967
+#: server_privileges.php:2006
msgid "Create a new user with the same privileges and ..."
msgstr "Opprett ny bruker med de samme privilegier og ..."
-#: server_privileges.php:1969
+#: server_privileges.php:2008
msgid "... keep the old one."
msgstr "... behold den gamle."
-#: server_privileges.php:1970
+#: server_privileges.php:2009
msgid " ... delete the old one from the user tables."
msgstr " ... slett den gamle fra brukertabellene."
-#: server_privileges.php:1971
+#: server_privileges.php:2010
msgid ""
" ... revoke all active privileges from the old one and delete it afterwards."
msgstr ""
" ... tilbakekall alle aktive privilegier fra den gamle og slett den etterpå."
-#: server_privileges.php:1972
+#: server_privileges.php:2011
msgid ""
" ... delete the old one from the user tables and reload the privileges "
"afterwards."
msgstr ""
" ... slett den gamle fra brukertabellene og deretter oppfrisk privilegiene."
-#: server_privileges.php:1994
+#: server_privileges.php:2033
msgid "Database for user"
msgstr "Brukerdatabase"
-#: server_privileges.php:1998
+#: server_privileges.php:2037
msgctxt "Create none database for user"
msgid "None"
msgstr "Ingen"
-#: server_privileges.php:1999
+#: server_privileges.php:2038
msgid "Create database with same name and grant all privileges"
msgstr "Opprett database med samme navn og gi alle rettigheter"
-#: server_privileges.php:2000
+#: server_privileges.php:2039
msgid "Grant all privileges on wildcard name (username\\_%)"
msgstr "Gi alle rettigheter på jokertegnavn (username\\_%)"
-#: server_privileges.php:2003
+#: server_privileges.php:2042
#, php-format
msgid "Grant all privileges on database "%s""
msgstr "Gi alle privilegier for databasen "%s""
-#: server_privileges.php:2026
+#: server_privileges.php:2065
#, php-format
msgid "Users having access to "%s""
msgstr "Brukere som har adgang til "%s""
-#: server_privileges.php:2134
+#: server_privileges.php:2173
msgid "global"
msgstr "global"
-#: server_privileges.php:2136
+#: server_privileges.php:2175
msgid "database-specific"
msgstr "databasespesifikk"
-#: server_privileges.php:2138
+#: server_privileges.php:2177
msgid "wildcard"
msgstr "jokertegn"
@@ -5548,7 +4915,7 @@ msgstr "Mastertjener endret til %s"
msgid "This server is configured as master in a replication process."
msgstr "Denne tjeneren er konfigurert som master i en replikasjonsprosess."
-#: server_replication.php:184 server_status.php:281
+#: server_replication.php:184 server_status.php:392
msgid "Show master status"
msgstr "Vis masterstatus"
@@ -5697,81 +5064,724 @@ msgstr ""
"Denne tjeneren er ikke konfigurert som master i en replikasjonsprosess. "
"Ønsker du å konfigurere den?"
+#: server_status.php:40
+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 ""
+"Antall transaksjoner som brukte den midlertidige binærloggmellomlageret men "
+"som overskred verdien av binlog_size og brukte en midlertidig fil for å "
+"lagre spørringer fra transaksjonen."
+
+#: server_status.php:41
+msgid "The number of transactions that used the temporary binary log cache."
+msgstr ""
+"Antall transaksjoner som brukte den midlertidige binærloggmellomlageret."
+
+#: server_status.php:42
+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 "
+"to increase the tmp_table_size value to cause temporary tables to be memory-"
+"based instead of disk-based."
+msgstr ""
+"Antall midlertidige tabeller lagret på harddisken automatisk opprettet av "
+"tjeneren mens den utførte spørringer. Hvis Created_tmp_disk_tables er stor "
+"bør du vurdere å øke tmp_table_size verdien slik at midlertidige tabeller "
+"blir lagret i minnet og ikke på harddisken."
+
+#: server_status.php:43
+msgid "How many temporary files mysqld has created."
+msgstr "Antall midlertidige filer mysqld har opprettet."
+
+#: server_status.php:44
+msgid ""
+"The number of in-memory temporary tables created automatically by the server "
+"while executing statements."
+msgstr ""
+"Antall midlertidige tabeller i minnet automatisk opprettet av tjeneren under "
+"utføriing av spørringer."
+
+#: server_status.php:45
+msgid ""
+"The number of rows written with INSERT DELAYED for which some error occurred "
+"(probably duplicate key)."
+msgstr ""
+"Antall rader skrevet med INSERT DELAYED hvor en eller annen form for feil "
+"oppstod (mest sannsynlig duplisert nøkkel)."
+
#: server_status.php:46
+msgid ""
+"The number of INSERT DELAYED handler threads in use. Every different table "
+"on which one uses INSERT DELAYED gets its own thread."
+msgstr ""
+"Antall INSERT DELAYED håndterertråder i bruk. Hver eneste tabell hvor det "
+"blir brukt INSERT DELAYE får sin egen tråd."
+
+#: server_status.php:47
+msgid "The number of INSERT DELAYED rows written."
+msgstr "Antall INSERT DELAYED rader skrevet."
+
+#: server_status.php:48
+msgid "The number of executed FLUSH statements."
+msgstr "Antall utførte FLUSH uttrykk."
+
+#: server_status.php:49
+msgid "The number of internal COMMIT statements."
+msgstr "Antall interne COMMIT uttrykk."
+
+#: server_status.php:50
+msgid "The number of times a row was deleted from a table."
+msgstr "Antall ganger en rad ble slettet fra en tabell."
+
+#: server_status.php:51
+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 ""
+"MySQL tjeneren kan spørre NDB Cluster lagringsmotoren om den kjenner til en "
+"tabell med et gitt navn. Dette blir kalt oppdaging (discovery). "
+"Handler_discover indikerer antall ganger tabeller har blitt oppdaget."
+
+#: server_status.php:52
+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 ""
+"Antall ganger det første innlegget ble lest fra en index. Hvis dette tallet "
+"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."
+
+#: server_status.php:53
+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 ""
+"Antall forespørsler for å lese en rad basert på en nøkkel. Hvis dette tallet "
+"er høyt gir dette en god indikasjon på at dine spørringer og tabeller er "
+"riktig indeksert."
+
+#: server_status.php:54
+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 ""
+"Antall forespørsler for å lese en rad basert på en fast posisjon. Denne er "
+"høy hvis du utører mange spørringer som behøver sortering av resultatet. Du "
+"har sansynligvis mange spørringer som krever at MySQL leser hele tabeller "
+"eller du har joins som ikke bruker nøkler korrekt."
+
+#: server_status.php:55
+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 ""
+"Antall forespørsler for å lese den forrige raden i nøkkelrekkefølge. Denne "
+"lesemetoden er hovedsakelig brukt for å optimalisere ORDER BY ... DESC."
+
+#: server_status.php:56
+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 "
+"probably have a lot of queries that require MySQL to scan whole tables or "
+"you have joins that don't use keys properly."
+msgstr ""
+"Antall forespørsler for å lese en rad basert på en fast posisjon. Denne er "
+"høy om du utfører mange spørringer som behøver sorteringer av resultatet. Du "
+"har mest sansynlig mange spørringer som krever at MySQL leser hele tabeller "
+"eller du har joins som som ikke bruker nøkler korrekt."
+
+#: server_status.php:57
+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 "
+"tables are not properly indexed or that your queries are not written to take "
+"advantage of the indexes you have."
+msgstr ""
+"Antall forespørsler for å lese neste rad i datafila. Dette tallet er høyt "
+"hvis du utfører mange tabellskanninger. Vanligvis betyr dette at dine "
+"tabeller ikke er rett indeksert eller at dine spørringer ikke er skrevet for "
+"å utnytte de indeksene du har."
+
+#: server_status.php:58
+msgid "The number of internal ROLLBACK statements."
+msgstr "Antall interne ROLLBACK kommandoer."
+
+#: server_status.php:59
+msgid "The number of requests to update a row in a table."
+msgstr "Antall forespørsler for å oppdatere en rad i en tabell."
+
+#: server_status.php:60
+msgid "The number of requests to insert a row in a table."
+msgstr "Antall forespørsler for å sette inn en rad i en tabell."
+
+#: server_status.php:61
+msgid "The number of pages containing data (dirty or clean)."
+msgstr "Antall sider som inneholder data (endret eller uendret)."
+
+#: server_status.php:62
+msgid "The number of pages currently dirty."
+msgstr "Antall sider for tiden endret."
+
+#: server_status.php:63
+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å."
+
+#: server_status.php:64
+msgid "The number of free pages."
+msgstr "Antall tomme sider."
+
+#: server_status.php:65
+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 ""
+"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."
+
+#: server_status.php:66
+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 "
+"be calculated as Innodb_buffer_pool_pages_total - "
+"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data."
+msgstr ""
+"Antall sider som er opptatt fordi de har blitt allokert for administrative "
+"oppgaver slik som radlåsing eller adaptiv nøkkelindeksering. Denne verdien "
+"kan også regnes ut som Innodb_buffer_pool_pages_total - "
+"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data."
+
+#: server_status.php:67
+msgid "Total size of buffer pool, in pages."
+msgstr "Total størrelse på midlertidig mellomlager i sider."
+
+#: server_status.php:68
+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 ""
+"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."
+
+#: server_status.php:69
+msgid ""
+"The number of sequential read-aheads InnoDB initiated. This happens when "
+"InnoDB does a sequential full table scan."
+msgstr ""
+"Antall sekvensielle \"read-aheads\" InnoDB startet. Denne skjer når InnoDB "
+"utfører en sekvensiell full tabellskanning."
+
+#: server_status.php:70
+msgid "The number of logical read requests InnoDB has done."
+msgstr "Antall logiske leseforespørsler InnoDB har utført."
+
+#: server_status.php:71
+msgid ""
+"The number of logical reads that InnoDB could not satisfy from buffer pool "
+"and had to do a single-page read."
+msgstr ""
+"Antall logiske lesninger som InnoDN ikke kunne tilfredsstille fra "
+"mellomlageret og måtte utføre en enkelsidelesnining."
+
+#: server_status.php:72
+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 "
+"available, it's necessary to wait for pages to be flushed first. This "
+"counter counts instances of these waits. If the buffer pool size was set "
+"properly, this value should be small."
+msgstr ""
+"Normalt vil skrivinger til InnoDBs mellomlager skje i bakgrunnen. Men, hvis "
+"det er behov for å lese eller opprette en side og ingen rene/tomme sider er "
+"tilgjengelig så er det nødvendig å vente på at sider blir tømt først. Denne "
+"telleren viser antall slike ventinger. Hvis mellomlagerstørrelsen er godt "
+"innstilt så vil denne verdien være liten."
+
+#: server_status.php:73
+msgid "The number writes done to the InnoDB buffer pool."
+msgstr "Antall skrivinger til InnoDBs midlertidig mellomlager."
+
+#: server_status.php:74
+msgid "The number of fsync() operations so far."
+msgstr "Antall fsync() operasjoner så langt."
+
+#: server_status.php:75
+msgid "The current number of pending fsync() operations."
+msgstr "Antall ventende fsync() operasjoner."
+
+#: server_status.php:76
+msgid "The current number of pending reads."
+msgstr "Antall ventende lesinger."
+
+#: server_status.php:77
+msgid "The current number of pending writes."
+msgstr "Antall ventende skrivinger."
+
+#: server_status.php:78
+msgid "The amount of data read so far, in bytes."
+msgstr "Mengden data lest så langt, i bytes."
+
+#: server_status.php:79
+msgid "The total number of data reads."
+msgstr "Antall utførte lesninger."
+
+#: server_status.php:80
+msgid "The total number of data writes."
+msgstr "Antall utførte skrivinger."
+
+#: server_status.php:81
+msgid "The amount of data written so far, in bytes."
+msgstr "Mengden data skrevet så langt, i bytes."
+
+#: server_status.php:82
+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."
+
+#: server_status.php:83
+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."
+
+#: server_status.php:84
+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 ""
+"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."
+
+#: server_status.php:85
+msgid "The number of log write requests."
+msgstr "Antall loggskrivingsforespørsler."
+
+#: server_status.php:86
+msgid "The number of physical writes to the log file."
+msgstr "Antall fysiske skrivinger til loggfila."
+
+#: server_status.php:87
+msgid "The number of fsync() writes done to the log file."
+msgstr "Antall fsync-skrivinger utført på loggfila."
+
+#: server_status.php:88
+msgid "The number of pending log file fsyncs."
+msgstr "Antall ventende loggfil-fsyncs."
+
+#: server_status.php:89
+msgid "Pending log file writes."
+msgstr "Ventende loggfilskrivinger."
+
+#: server_status.php:90
+msgid "The number of bytes written to the log file."
+msgstr "Antall bytes skrevet til loggfila."
+
+#: server_status.php:91
+msgid "The number of pages created."
+msgstr "Antall sider opprettet."
+
+#: server_status.php:92
+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 ""
+"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."
+
+#: server_status.php:93
+msgid "The number of pages read."
+msgstr "Antall sidelesninger."
+
+#: server_status.php:94
+msgid "The number of pages written."
+msgstr "Antall sideskrivinger."
+
+#: server_status.php:95
+msgid "The number of row locks currently being waited for."
+msgstr "Antall ventende radlåsinger."
+
+#: server_status.php:96
+msgid "The average time to acquire a row lock, in milliseconds."
+msgstr "Gjennomsnittlig tid for å oppnå radlåsing, i millisekunder."
+
+#: server_status.php:97
+msgid "The total time spent in acquiring row locks, in milliseconds."
+msgstr "Total tid brukt for å få radlåsinger, i millisekunder."
+
+#: server_status.php:98
+msgid "The maximum time to acquire a row lock, in milliseconds."
+msgstr "Maksimum tid brukt for å oppnå en radlåsing, i millisekunder."
+
+#: server_status.php:99
+msgid "The number of times a row lock had to be waited for."
+msgstr "Antall ganger en radlås måtte ventes på."
+
+#: server_status.php:100
+msgid "The number of rows deleted from InnoDB tables."
+msgstr "Antall rader slettet fra InnoDB tabeller."
+
+#: server_status.php:101
+msgid "The number of rows inserted in InnoDB tables."
+msgstr "Antall rader satt inn i InnoDB tabeller."
+
+#: server_status.php:102
+msgid "The number of rows read from InnoDB tables."
+msgstr "Antall rader lest fra InnoDB tabeller."
+
+#: server_status.php:103
+msgid "The number of rows updated in InnoDB tables."
+msgstr "Antall rader oppdatert i InnoDB tabeller."
+
+#: server_status.php:104
+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 ""
+"Antall nøkkelblokker i nøkkelmellomlageret som har blitt endret men som ikke "
+"ennå har blitt skrevet til harddisken. Dette var tidligere kjent som "
+"Not_flushed_key_blocks."
+
+#: server_status.php:105
+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 ""
+"Antall ubrukte blokker i nøkkelmellomlageret. Du kan bruke denne verdien til "
+"å bestemme hvor mye av nøkkelmellomlageret som er i bruk."
+
+#: server_status.php:106
+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 ""
+"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."
+
+#: server_status.php:107
+msgid "The number of requests to read a key block from the cache."
+msgstr "Antall forespørsler for å lese en nøkkelblokk fra mellomlageret."
+
+#: server_status.php:108
+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 ""
+"Antall fysiske lesninger av en nøkkelblokk fra harddisk. Hvis Key_reads er "
+"stor er nok din key_buffer_size verdi for liten. Mellomlagertreffraten kan "
+"kalkuleres med Key_reads/Key_read_requests."
+
+#: server_status.php:109
+msgid "The number of requests to write a key block to the cache."
+msgstr "Antall forespørsler for å skrive en nøkkelblokk til mellomlageret."
+
+#: server_status.php:110
+msgid "The number of physical writes of a key block to disk."
+msgstr "Antall fysiske skrivinger av en nøkkelblokk til disk."
+
+#: server_status.php:111
+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 ""
+"Den totale kostnad ved siste kompilerte spørring slik den ble utregnet av "
+"spørringsoptimisereren. Nyttig for å kunne sammenligne kostnader ved "
+"forskjellige spørringsplaner for den samme spørringen. Standardverdien på 0 "
+"betyr at ingen spørring har blitt kompilert ennå."
+
+#: server_status.php:112
+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."
+
+#: server_status.php:113
+msgid ""
+"The number of tables that have been opened. If opened tables is big, your "
+"table cache value is probably too small."
+msgstr ""
+"Antall tabeller som har blitt åpnet. Hvis denne er stor er nok din "
+"tabellmellomlagerverdi for liten."
+
+#: server_status.php:114
+msgid "The number of files that are open."
+msgstr "Antall åpne filer."
+
+#: server_status.php:115
+msgid "The number of streams that are open (used mainly for logging)."
+msgstr "Antall åpne dataflyter (hovedsaklig brukt til logging)."
+
+#: server_status.php:116
+msgid "The number of tables that are open."
+msgstr "Antall åpne tabeller."
+
+#: server_status.php:117
+msgid "The number of free memory blocks in query cache."
+msgstr "Antall ledige minneblokker i spørringsmellomlager."
+
+#: server_status.php:118
+msgid "The amount of free memory for query cache."
+msgstr "Mengden ledig minne i spørringsmellomlager."
+
+#: server_status.php:119
+msgid "The number of cache hits."
+msgstr "Antall mellomlagertreff."
+
+#: server_status.php:120
+msgid "The number of queries added to the cache."
+msgstr "Antall spørringer lagt til i mellomlageret."
+
+#: server_status.php:121
+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 "
+"cache size. The query cache uses a least recently used (LRU) strategy to "
+"decide which queries to remove from the cache."
+msgstr ""
+"Antall spørringer som har blitt fjernet fra mellomlageret for å frigjøre "
+"minne for nye spørringer. Denne informasjonen kan hjelpe deg å fininnstille "
+"størrelsen på spørringsmellomlageret. Spørringsmellomlageret bruker en minst "
+"og sist brukt (least recently used (LRU)) strategi for å finne hvilke "
+"spørringer som skal fjernes fra mellomlageret."
+
+#: server_status.php:122
+msgid ""
+"The number of non-cached queries (not cachable, or not cached due to the "
+"query_cache_type setting)."
+msgstr ""
+"Antallet ikkelagrede spørringer (kan ikke lagres, eller ikke lagret p.g.a. "
+"query_cache_type innstillingen)."
+
+#: server_status.php:123
+msgid "The number of queries registered in the cache."
+msgstr "Antall spørringer registrert i mellomlageret."
+
+#: server_status.php:124
+msgid "The total number of blocks in the query cache."
+msgstr "Totale antall blokker i spørringsmellomlageret."
+
+#: server_status.php:125
+msgctxt "$strShowStatusReset"
+msgid "Reset"
+msgstr "Tilbakestill"
+
+#: server_status.php:126
+msgid "The status of failsafe replication (not yet implemented)."
+msgstr "Failsafe replikasjonsstatus (ikke implementert ennå)."
+
+#: server_status.php:127
+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 ""
+"Antall joins som ikke bruker indekser. Hvis denne verdien ikke er 0 bør du "
+"nøye sjekke indeksene til dine tabeller."
+
+#: server_status.php:128
+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."
+
+#: server_status.php:129
+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 ""
+"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.)"
+
+#: server_status.php:130
+msgid ""
+"The number of joins that used ranges on the first table. (It's normally not "
+"critical even if this is big.)"
+msgstr ""
+"Antall joins som brukte rekkefølger på den første tabellen. (Det er normalt "
+"ikke kritisk selv om denne verdien er stor.)"
+
+#: server_status.php:131
+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."
+
+#: server_status.php:132
+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."
+
+#: server_status.php:133
+msgid ""
+"Total (since startup) number of times the replication slave SQL thread has "
+"retried transactions."
+msgstr ""
+"Det totale antall ganger (siden oppstart) replikasjonsslave-SQL-tråden har "
+"gjentatt transaksjoner."
+
+#: server_status.php:134
+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."
+
+#: server_status.php:135
+msgid ""
+"The number of threads that have taken more than slow_launch_time seconds to "
+"create."
+msgstr ""
+"Antall tråder som har brukt mer enn slow_launch_time sekunder under "
+"opprettelse."
+
+#: server_status.php:136
+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."
+
+#: server_status.php:137
+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 ""
+"Antall sammenslåingspasseringer sorteringsalgoritmen har måttet utføre. Hvis "
+"denne verdien er stor bør du vurdere å øke verdien av sort_buffer_size "
+"systemvariabelen."
+
+#: server_status.php:138
+msgid "The number of sorts that were done with ranges."
+msgstr "Antall sorteringer som ble utført med rekkefølger."
+
+#: server_status.php:139
+msgid "The number of sorted rows."
+msgstr "Antall sorterte rader."
+
+#: server_status.php:140
+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."
+
+#: server_status.php:141
+msgid "The number of times that a table lock was acquired immediately."
+msgstr "Antall ganger en tabellåsing ble utført umiddelbart."
+
+#: server_status.php:142
+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 "
+"should first optimize your queries, and then either split your table or "
+"tables or use replication."
+msgstr ""
+"Antall ganger en tabellås ikke har kunnet blitt opprettet umiddelbart og en "
+"venting ble nødvendig. Hvis denne er høy og du har ytelsesproblemer bør du "
+"først optimalisere dine spørringer, og deretter enten splitte din tabell "
+"eller tabeller eller bruke replikasjon."
+
+#: server_status.php:143
+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 ""
+"Antall tråder i trådmellomlageret. Mellomlagertreffraten kan regnes ut som "
+"Threads_created/Connections. Hvis denne verdien er rød bør du øke din "
+"thread_cache_size."
+
+#: server_status.php:144
+msgid "The number of currently open connections."
+msgstr "Antall åpne tilkoblinger."
+
+#: server_status.php:145
+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 "
+"doesn't give a notable performance improvement if you have a good thread "
+"implementation.)"
+msgstr ""
+"Antall tråder opprettet for å handtere tilkoblinger. Hvis Threads_created er "
+"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.)"
+
+#: server_status.php:146
+msgid "The number of threads that are not sleeping."
+msgstr "Antall tråder som ikke sover."
+
+#: server_status.php:157
msgid "Runtime Information"
msgstr "Kjøringsinformasjon"
-#: server_status.php:250
+#: server_status.php:361
msgid "Handler"
msgstr "Handler"
-#: server_status.php:251
+#: server_status.php:362
msgid "Query cache"
msgstr "Spørringsmellomlager"
-#: server_status.php:252
+#: server_status.php:363
msgid "Threads"
msgstr "Tråder"
-#: server_status.php:254
+#: server_status.php:365
msgid "Temporary data"
msgstr "Midlertidige data"
-#: server_status.php:255
+#: server_status.php:366
msgid "Delayed inserts"
msgstr "Forsinkede innsettinger"
-#: server_status.php:256
+#: server_status.php:367
msgid "Key cache"
msgstr "Nøkkelmellomlager"
-#: server_status.php:257
+#: server_status.php:368
msgid "Joins"
msgstr "Sammenføyninger"
-#: server_status.php:259
+#: server_status.php:370
msgid "Sorting"
msgstr "Sortering"
-#: server_status.php:261
+#: server_status.php:372
msgid "Transaction coordinator"
msgstr "Transaksjonskoordinator"
-#: server_status.php:271
+#: server_status.php:382
msgid "Flush (close) all tables"
msgstr "Flush (close) all tables"
-#: server_status.php:273
+#: server_status.php:384
msgid "Show open tables"
msgstr "Vis åpne tabeller"
-#: server_status.php:278
+#: server_status.php:389
msgid "Show slave hosts"
msgstr "Vis slaveverter"
-#: server_status.php:284
+#: server_status.php:395
msgid "Show slave status"
msgstr "Vis slavestatus"
-#: server_status.php:289
+#: server_status.php:400
msgid "Flush query cache"
msgstr "Flush query cache"
-#: server_status.php:294
+#: server_status.php:405
msgid "Show processes"
msgstr "Vis prosesser"
-#: server_status.php:344
+#: server_status.php:455
msgctxt "for Show status"
msgid "Reset"
msgstr "Tilbakestill"
-#: server_status.php:350
+#: server_status.php:461
#, php-format
msgid "This MySQL server has been running for %s. It started up on %s."
msgstr "Denne MySQL tjeneren har kjørt i %s. Den startet opp den %s."
-#: server_status.php:360
+#: server_status.php:471
msgid ""
"This MySQL server works as master and slave in replication"
"b> process."
@@ -5779,19 +5789,19 @@ msgstr ""
"Denne tjeneren jobber både som tjener og slave i "
"replikasjonsprosessen."
-#: server_status.php:362
+#: server_status.php:473
msgid "This MySQL server works as master in replication process."
msgstr ""
"Denne tjeneren er konfigurert som tjener i en replikasjons"
"b>prosess."
-#: server_status.php:364
+#: server_status.php:475
msgid "This MySQL server works as slave in replication process."
msgstr ""
"Denne tjeneren er konfigurert som slave i en replikasjons"
"b>prosess."
-#: server_status.php:366
+#: server_status.php:477
msgid ""
"For further information about replication status on the server, please visit "
"the replication section."
@@ -5799,7 +5809,7 @@ msgstr ""
"For mer informasjon om replikasjonsstatusen for tjeneren, gå til replikasjonsseksjonen."
-#: server_status.php:383
+#: server_status.php:494
msgid ""
"Server traffic: These tables show the network traffic statistics of "
"this MySQL server since its startup."
@@ -5807,11 +5817,11 @@ msgstr ""
"Tjenertraffikk: Disse tabellene viser statistikk over "
"nettverkstrafikken for denne MySQL-tjeneren siden dens oppstart."
-#: server_status.php:388
+#: server_status.php:499
msgid "Traffic"
msgstr "Trafikk"
-#: server_status.php:388
+#: server_status.php:499
msgid ""
"On a busy server, the byte counters may overrun, so those statistics as "
"reported by the MySQL server may be incorrect."
@@ -5819,36 +5829,36 @@ msgstr ""
"På en travel tjener så kan byte-tellerene overflyte, så denne statistikken "
"som rapportert av MySQL tjeneren kan være unøyaktig."
-#: server_status.php:389 server_status.php:434 server_status.php:497
-#: server_status.php:555
+#: server_status.php:500 server_status.php:545 server_status.php:608
+#: server_status.php:666
msgid "per hour"
msgstr "per time"
-#: server_status.php:394
+#: server_status.php:505
msgid "Received"
msgstr "Mottatt"
-#: server_status.php:404
+#: server_status.php:515
msgid "Sent"
msgstr "Sendt"
-#: server_status.php:433
+#: server_status.php:544
msgid "Connections"
msgstr "tilkoblinger"
-#: server_status.php:440
+#: server_status.php:551
msgid "max. concurrent connections"
msgstr "maks. samtidige tilkoblinger"
-#: server_status.php:447
+#: server_status.php:558
msgid "Failed attempts"
msgstr "Feilede forsøk"
-#: server_status.php:461
+#: server_status.php:572
msgid "Aborted"
msgstr "Avbrutt"
-#: server_status.php:490
+#: server_status.php:601
#, php-format
msgid ""
"Query statistics: Since its startup, %s queries have been sent to the "
@@ -5857,19 +5867,19 @@ msgstr ""
"Spørrings statistikk: Siden oppstart, har %s spørringer blitt sendt "
"til tjeneren."
-#: server_status.php:498
+#: server_status.php:609
msgid "per minute"
msgstr "per minutt"
-#: server_status.php:499
+#: server_status.php:610
msgid "per second"
msgstr "per sekund"
-#: server_status.php:554
+#: server_status.php:665
msgid "Query type"
msgstr "Spørringstype"
-#: server_status.php:721
+#: server_status.php:832
msgid "Replication status"
msgstr "Replikasjonsstatus"
@@ -8132,8 +8142,6 @@ msgid "Propose table structure"
msgstr "Foreslå tabellstruktur"
#: tbl_structure.php:540
-#, fuzzy
-#| msgid "Add column(s)"
msgid "Add column"
msgstr "Legg til kolonne(r)"
@@ -8344,122 +8352,3 @@ msgstr "VIEW navn"
#: view_operations.php:93
msgid "Rename view to"
msgstr "Endre tabellens navn"
-
-#~| msgid "Add new field"
-#~ msgid "Add field"
-#~ msgstr "Legg til felt"
-
-#~ msgid "Field"
-#~ msgstr "Felt"
-
-#~ msgid "Records"
-#~ msgstr "Rader"
-
-#~ msgid "Fields terminated by"
-#~ msgstr "Felter avsluttet med"
-
-#~ msgid "Fields"
-#~ msgstr "Felter"
-
-#~ msgid "Add %s field(s)"
-#~ msgstr "Legg til %s felt(er)"
-
-#~ msgid "Field %s has been dropped"
-#~ msgstr "Feltet %s har blitt slettet"
-
-#~ msgid "See image/jpeg: inline"
-#~ msgstr "Se image/jpeg: inline"
-
-#~ msgid "zipped"
-#~ msgstr "Komprimert (zip)"
-
-#~ msgid "gzipped"
-#~ msgstr "Komprimert (gz)"
-
-#~ msgid "bzipped"
-#~ msgstr "Komprimert (bz2)"
-
-#~ msgid ""
-#~ "Add custom comment into header (\n"
-#~ " splits lines)"
-#~ msgstr ""
-#~ "Legg til egen kommentar i hodet (\n"
-#~ " lager linjeskift)"
-
-#~ msgid "and"
-#~ msgstr "og"
-
-#~ msgctxt "$strBLOBRepositoryDisabled"
-#~ msgid "Disabled"
-#~ msgstr "Avslått"
-
-#~ msgctxt "$strBLOBRepositoryEnabled"
-#~ msgid "Enabled"
-#~ msgstr "Påslått"
-
-#~ msgctxt "$strBLOBRepositoryRepair"
-#~ msgid "Repair"
-#~ msgstr "Reparer"
-
-#~ msgid "Calendar"
-#~ msgstr "Kalender"
-
-#~ msgid "MySQL 4.0 compatible"
-#~ msgstr "MySQL 4.0 kompatibel"
-
-#~ msgid "Could not load default configuration from: \"%1$s\""
-#~ msgstr "Kunne ikke laste standard konfigurasjonsfil fra: \"%1$s\""
-
-#~ msgid "Create an index on %s columns"
-#~ msgstr "Lag en indeks på %s kolonner"
-
-#~ msgctxt "$strCreateTableShort"
-#~ msgid "Create table"
-#~ msgstr "Opprett tabell"
-
-#~ msgctxt "$strCreateUserDatabaseNone"
-#~ msgid "None"
-#~ msgstr "Ingen"
-
-#~ msgid "Flush the table (\"FLUSH\")"
-#~ msgstr "Oppfrisk tabellen (\"FLUSH\")"
-
-#~ msgid "Invalid server index: \"%s\""
-#~ msgstr "Ugyldig tjenerindeks: \"%s\""
-
-#~ msgctxt "$strMIME_description"
-#~ msgid "Description"
-#~ msgstr "Beskrivelse"
-
-#~ msgctxt "$strNoneDefault"
-#~ msgid "None"
-#~ msgstr "Ingen"
-
-#~ msgid "Schema of the \"%s\" database - Page %s"
-#~ msgstr "Skjema for \"%s\"-databasen - Side %s"
-
-#~ msgid "The \"%s\" table doesn't exist!"
-#~ msgstr "Tabellen \"%s\" eksisterer ikke!"
-
-#~ msgid ""
-#~ "This MySQL server works as %s in replication process. For further "
-#~ "information about replication status on the server, please visit the replication section."
-#~ msgstr ""
-#~ "Denne MySQL tjeneren som %s i replikasjonsprosess. For mer "
-#~ "informasjon om replikasjonsstatusen for tjeneren, gå til replikasjonsseksjonen."
-
-#~ msgid "running on %s"
-#~ msgstr "som kjører på %s"
-
-#~ msgid "The scale factor is too small to fit the schema on one page"
-#~ msgstr "Skaleringsfaktoren er for liten til å romme alt på en side"
-
-#~ msgid ""
-#~ "Cannot start session without errors, please check errors given in your "
-#~ "PHP and/or webserver log file and configure your PHP installation "
-#~ "properly."
-#~ msgstr ""
-#~ "Kan ikke starte sessjonen uten feil, kontroller feilmeldinger i din PHP "
-#~ "og/eller webtjenerloggfil og konfigurer din PHP innstallasjon korrekt."
diff --git a/po/nl.po b/po/nl.po
index 116e24836..8c3f2f367 100755
--- a/po/nl.po
+++ b/po/nl.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-06-04 16:07-0400\n"
+"POT-Creation-Date: 2010-06-08 12:32-0400\n"
"PO-Revision-Date: 2010-05-31 01:06+0200\n"
"Last-Translator: Bjorn \n"
"Language-Team: dutch \n"
@@ -15,11 +15,11 @@ msgstr ""
"X-Generator: Pootle 2.0.1\n"
#: browse_foreigners.php:38 browse_foreigners.php:59
-#: libraries/display_tbl.lib.php:417 server_privileges.php:1475
+#: libraries/display_tbl.lib.php:417 server_privileges.php:1514
msgid "Show all"
msgstr "Toon alles"
-#: browse_foreigners.php:82 libraries/common.lib.php:2304
+#: browse_foreigners.php:82 libraries/common.lib.php:2313
#: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:394
#: libraries/export/pdf.php:147 pdf_schema.php:283 pdf_schema.php:1123
#: pdf_schema.php:1139
@@ -37,8 +37,8 @@ msgstr ""
#: browse_foreigners.php:150 db_structure.php:79 db_structure.php:80
#: db_structure.php:91 db_structure.php:93 db_structure.php:104
-#: db_structure.php:106 libraries/common.lib.php:2822
-#: libraries/common.lib.php:2829 libraries/db_links.inc.php:75
+#: db_structure.php:106 libraries/common.lib.php:2831
+#: libraries/common.lib.php:2838 libraries/db_links.inc.php:75
#: libraries/tbl_links.inc.php:63
msgid "Search"
msgstr "Zoeken"
@@ -48,7 +48,7 @@ msgstr "Zoeken"
#: db_structure.php:567 js/messages.php:48 libraries/Config.class.php:1046
#: libraries/Theme_Manager.class.php:311
#: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719
-#: libraries/common.lib.php:1333 libraries/common.lib.php:2279
+#: libraries/common.lib.php:1335 libraries/common.lib.php:2288
#: libraries/display_change_password.lib.php:82
#: libraries/display_create_table.lib.php:63
#: libraries/display_export.lib.php:275 libraries/display_import.lib.php:276
@@ -59,9 +59,9 @@ msgstr "Zoeken"
#: libraries/sql_query_form.lib.php:552 libraries/tbl_properties.inc.php:782
#: main.php:128 navigation.php:237 pdf_pages.php:292 pdf_pages.php:328
#: pdf_pages.php:530 pmd_pdf.php:116 server_binlog.php:142
-#: server_privileges.php:625 server_privileges.php:1585
-#: server_privileges.php:1932 server_privileges.php:1979
-#: server_privileges.php:2018 server_replication.php:235
+#: server_privileges.php:664 server_privileges.php:1624
+#: server_privileges.php:1971 server_privileges.php:2018
+#: server_privileges.php:2057 server_replication.php:235
#: server_replication.php:318 server_replication.php:341
#: server_synchronize.php:1209 tbl_change.php:330 tbl_change.php:1174
#: tbl_change.php:1211 tbl_indexes.php:254 tbl_operations.php:265
@@ -79,7 +79,7 @@ msgstr "Sleutelnaam"
#: browse_foreigners.php:169 browse_foreigners.php:171
#: server_collations.php:55 server_collations.php:67 server_engines.php:59
-#: server_status.php:628
+#: server_status.php:739
msgid "Description"
msgstr "Beschrijving"
@@ -120,7 +120,7 @@ msgstr "Kolom namen"
#: libraries/db_structure.lib.php:60 libraries/export/htmlword.php:245
#: libraries/export/latex.php:360 libraries/export/odt.php:297
#: libraries/export/texytext.php:234 libraries/tbl_properties.inc.php:100
-#: pdf_schema.php:1263 pdf_schema.php:1284 server_privileges.php:2031
+#: pdf_schema.php:1263 pdf_schema.php:1284 server_privileges.php:2070
#: tbl_change.php:287 tbl_change.php:314 tbl_printview.php:143
#: tbl_printview.php:313 tbl_select.php:136 tbl_structure.php:178
#: tbl_structure.php:659 tbl_tracking.php:274 tbl_tracking.php:321
@@ -164,9 +164,9 @@ msgstr "Commentaar"
#: libraries/Index.class.php:386 libraries/export/htmlword.php:322
#: libraries/export/latex.php:430 libraries/export/odt.php:368
#: libraries/export/texytext.php:311 libraries/mult_submits.inc.php:263
-#: pdf_schema.php:1344 server_privileges.php:1529 server_privileges.php:1540
-#: server_privileges.php:1850 server_privileges.php:1855
-#: server_privileges.php:2148 sql.php:132 sql.php:194 tbl_printview.php:229
+#: pdf_schema.php:1344 server_privileges.php:1568 server_privileges.php:1579
+#: server_privileges.php:1889 server_privileges.php:1894
+#: server_privileges.php:2187 sql.php:132 sql.php:194 tbl_printview.php:229
#: tbl_structure.php:350 tbl_tracking.php:337 tbl_tracking.php:342
msgid "No"
msgstr "Nee"
@@ -180,9 +180,9 @@ msgstr "Nee"
#: libraries/mult_submits.inc.php:101 libraries/mult_submits.inc.php:106
#: libraries/mult_submits.inc.php:111 libraries/mult_submits.inc.php:262
#: libraries/mult_submits.inc.php:273 pdf_schema.php:1344
-#: server_databases.php:64 server_privileges.php:1526
-#: server_privileges.php:1540 server_privileges.php:1850
-#: server_privileges.php:1853 server_privileges.php:2148 sql.php:193
+#: server_databases.php:64 server_privileges.php:1565
+#: server_privileges.php:1579 server_privileges.php:1889
+#: server_privileges.php:1892 server_privileges.php:2187 sql.php:193
#: tbl_printview.php:229 tbl_structure.php:40 tbl_structure.php:350
#: tbl_tracking.php:335 tbl_tracking.php:340
msgid "Yes"
@@ -279,7 +279,7 @@ msgstr "Schakel naar de gekopieerde database"
msgid "BLOB Repository"
msgstr "BLOB Bewaarplaats"
-#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1350
+#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1352
#: libraries/server_links.inc.php:49 server_processlist.php:59
#: tbl_tracking.php:596 test/theme.php:101
msgid "Status"
@@ -340,8 +340,8 @@ msgstr "PDF Pagina's aanpassen"
#: db_printview.php:104 db_tracking.php:72 db_tracking.php:157
#: libraries/db_structure.lib.php:46 libraries/export/xml.php:328
-#: libraries/header.inc.php:126 pdf_pages.php:424 server_privileges.php:1626
-#: server_privileges.php:1682 server_privileges.php:1946
+#: libraries/header.inc.php:126 pdf_pages.php:424 server_privileges.php:1665
+#: server_privileges.php:1721 server_privileges.php:1985
#: server_synchronize.php:423 server_synchronize.php:866 tbl_tracking.php:592
#: test/theme.php:75
msgid "Table"
@@ -442,7 +442,7 @@ msgstr "Verwijder"
#: db_qbe.php:370 db_qbe.php:451 db_qbe.php:522 db_qbe.php:553
#: libraries/display_import.lib.php:166 libraries/tbl_properties.inc.php:779
-#: server_privileges.php:258 tbl_change.php:1031 tbl_indexes.php:250
+#: server_privileges.php:297 tbl_change.php:1031 tbl_indexes.php:250
#: tbl_select.php:288
msgid "Or"
msgstr "Of"
@@ -476,7 +476,7 @@ msgstr "Gebruik tabellen"
msgid "SQL query on database %s:"
msgstr "SQL-query op database %s:"
-#: db_qbe.php:934 libraries/common.lib.php:1223
+#: db_qbe.php:934 libraries/common.lib.php:1225
msgid "Submit Query"
msgstr "Query uitvoeren"
@@ -515,7 +515,7 @@ msgstr "%s overeenkomst(en) in de tabel %s"
#: db_search.php:267 db_structure.php:77 db_structure.php:78
#: db_structure.php:90 db_structure.php:92 db_structure.php:103
-#: db_structure.php:105 libraries/common.lib.php:2824
+#: db_structure.php:105 libraries/common.lib.php:2833
#: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50
#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:467
msgid "Browse"
@@ -562,26 +562,26 @@ msgstr "In het veld:"
#: db_structure.php:81 db_structure.php:82 db_structure.php:94
#: db_structure.php:95 db_structure.php:107 db_structure.php:108
-#: libraries/common.lib.php:2823 libraries/sql_query_form.lib.php:334
+#: libraries/common.lib.php:2832 libraries/sql_query_form.lib.php:334
#: libraries/sql_query_form.lib.php:337 libraries/tbl_links.inc.php:76
msgid "Insert"
msgstr "Invoegen"
#: db_structure.php:83 db_structure.php:96 db_structure.php:109
-#: libraries/common.lib.php:2820 libraries/common.lib.php:2827
+#: libraries/common.lib.php:2829 libraries/common.lib.php:2836
#: libraries/db_links.inc.php:63 libraries/export/htmlword.php:23
#: libraries/export/latex.php:33 libraries/export/latex.php:337
#: libraries/export/odt.php:32 libraries/export/sql.php:60
#: libraries/export/texytext.php:23 libraries/import.lib.php:1104
#: libraries/tbl_links.inc.php:56 pmd_general.php:134
-#: server_privileges.php:554 server_replication.php:315 tbl_tracking.php:269
+#: server_privileges.php:593 server_replication.php:315 tbl_tracking.php:269
msgid "Structure"
msgstr "Structuur"
#: db_structure.php:84 db_structure.php:85 db_structure.php:97
#: db_structure.php:98 db_structure.php:110 db_structure.php:111
#: db_structure.php:545 db_structure.php:546 db_tracking.php:91
-#: libraries/Index.class.php:483 libraries/common.lib.php:1654
+#: libraries/Index.class.php:483 libraries/common.lib.php:1656
#: libraries/db_links.inc.php:100 libraries/mult_submits.inc.php:36
#: libraries/mult_submits.inc.php:73 libraries/tbl_links.inc.php:127
#: server_databases.php:352 tbl_structure.php:27 tbl_structure.php:151
@@ -591,7 +591,7 @@ msgstr "Verwijderen"
#: db_structure.php:86 db_structure.php:87 db_structure.php:99
#: db_structure.php:100 db_structure.php:112 db_structure.php:113
-#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1653
+#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1655
#: libraries/mult_submits.inc.php:39 libraries/tbl_links.inc.php:105
msgid "Empty"
msgstr "Legen"
@@ -634,7 +634,7 @@ msgstr "View"
#: db_structure.php:485 libraries/db_structure.lib.php:49
#: libraries/server_links.inc.php:70 server_replication.php:33
-#: server_replication.php:164 server_status.php:258
+#: server_replication.php:164 server_status.php:369
msgid "Replication"
msgstr "Replicatie"
@@ -650,20 +650,20 @@ msgstr "%s is de standaard storage engine op deze MySQL-server."
#: db_structure.php:524 db_structure.php:541 db_structure.php:542
#: libraries/display_tbl.lib.php:2081 libraries/display_tbl.lib.php:2086
#: libraries/mult_submits.inc.php:16 server_databases.php:346
-#: server_databases.php:351 server_privileges.php:1557 tbl_structure.php:455
+#: server_databases.php:351 server_privileges.php:1596 tbl_structure.php:455
#: tbl_structure.php:464
msgid "With selected:"
msgstr "Met geselecteerd:"
#: db_structure.php:527 libraries/display_tbl.lib.php:2076
-#: server_databases.php:348 server_privileges.php:530
-#: server_privileges.php:1560 tbl_structure.php:458
+#: server_databases.php:348 server_privileges.php:569
+#: server_privileges.php:1599 tbl_structure.php:458
msgid "Check All"
msgstr "Selecteer alles"
#: db_structure.php:531 libraries/display_tbl.lib.php:2077
#: libraries/replication_gui.lib.php:33 server_databases.php:350
-#: server_privileges.php:533 server_privileges.php:1564 tbl_structure.php:462
+#: server_privileges.php:572 server_privileges.php:1603 tbl_structure.php:462
msgid "Uncheck All"
msgstr "Deselecteer alles"
@@ -701,7 +701,7 @@ msgstr "Analyseer tabel"
#: libraries/display_export.lib.php:83 libraries/display_tbl.lib.php:2094
#: libraries/display_tbl.lib.php:2225 libraries/mult_submits.inc.php:62
#: libraries/server_links.inc.php:84 libraries/tbl_links.inc.php:82
-#: pmd_pdf.php:84 pmd_pdf.php:109 server_privileges.php:1341
+#: pmd_pdf.php:84 pmd_pdf.php:109 server_privileges.php:1380
#: setup/frames/menu.inc.php:22 tbl_row_action.php:59
msgid "Export"
msgstr "Exporteer"
@@ -719,8 +719,8 @@ msgstr "Tabellen met tracker"
#: libraries/export/sql.php:342 libraries/export/texytext.php:84
#: libraries/export/xml.php:255 libraries/header.inc.php:106
#: libraries/header_printview.inc.php:58 server_databases.php:169
-#: server_privileges.php:1621 server_privileges.php:1682
-#: server_privileges.php:1940 server_processlist.php:56
+#: server_privileges.php:1660 server_privileges.php:1721
+#: server_privileges.php:1979 server_processlist.php:56
#: server_synchronize.php:1179 server_synchronize.php:1183
#: tbl_tracking.php:591 test/theme.php:65
msgid "Database"
@@ -740,8 +740,8 @@ msgstr "Bijgewerkt"
#: db_tracking.php:77 libraries/Index.class.php:440
#: libraries/db_structure.lib.php:53 server_databases.php:203
-#: server_privileges.php:1503 server_privileges.php:1686
-#: server_privileges.php:2034 tbl_structure.php:187
+#: server_privileges.php:1542 server_privileges.php:1725
+#: server_privileges.php:2073 tbl_structure.php:187
msgid "Action"
msgstr "Actie"
@@ -951,11 +951,11 @@ msgstr "De machinenaam is leeg!"
msgid "The user name is empty!"
msgstr "De gebruikersnaam is leeg!"
-#: js/messages.php:44 server_privileges.php:1197 user_password.php:70
+#: js/messages.php:44 server_privileges.php:1236 user_password.php:70
msgid "The password is empty!"
msgstr "Het wachtwoord is leeg!"
-#: js/messages.php:45 server_privileges.php:1195 user_password.php:73
+#: js/messages.php:45 server_privileges.php:1234 user_password.php:73
msgid "The passwords aren't the same!"
msgstr "De wachtwoorden zijn niet gelijk!"
@@ -1032,8 +1032,8 @@ msgid "Prev"
msgstr "Vorige"
#. l10n: Display text for next month link in calendar
-#: js/messages.php:77 libraries/common.lib.php:2344
-#: libraries/common.lib.php:2347 libraries/display_tbl.lib.php:338
+#: js/messages.php:77 libraries/common.lib.php:2353
+#: libraries/common.lib.php:2356 libraries/display_tbl.lib.php:338
#: server_binlog.php:205 server_binlog.php:207 tbl_printview.php:424
#: tbl_structure.php:801
msgid "Next"
@@ -1093,27 +1093,27 @@ msgid "December"
msgstr "December"
#. l10n: Short month name
-#: js/messages.php:97 libraries/common.lib.php:1555
+#: js/messages.php:97 libraries/common.lib.php:1557
msgid "Jan"
msgstr "Jan"
#. l10n: Short month name
-#: js/messages.php:99 libraries/common.lib.php:1557
+#: js/messages.php:99 libraries/common.lib.php:1559
msgid "Feb"
msgstr "Feb"
#. l10n: Short month name
-#: js/messages.php:101 libraries/common.lib.php:1559
+#: js/messages.php:101 libraries/common.lib.php:1561
msgid "Mar"
msgstr "Mar"
#. l10n: Short month name
-#: js/messages.php:103 libraries/common.lib.php:1561
+#: js/messages.php:103 libraries/common.lib.php:1563
msgid "Apr"
msgstr "Apr"
#. l10n: Short month name
-#: js/messages.php:105 libraries/common.lib.php:1563
+#: js/messages.php:105 libraries/common.lib.php:1565
#, fuzzy
#| msgid "May"
msgctxt "Short month name"
@@ -1121,37 +1121,37 @@ msgid "May"
msgstr "Mei"
#. l10n: Short month name
-#: js/messages.php:107 libraries/common.lib.php:1565
+#: js/messages.php:107 libraries/common.lib.php:1567
msgid "Jun"
msgstr "Jun"
#. l10n: Short month name
-#: js/messages.php:109 libraries/common.lib.php:1567
+#: js/messages.php:109 libraries/common.lib.php:1569
msgid "Jul"
msgstr "Jul"
#. l10n: Short month name
-#: js/messages.php:111 libraries/common.lib.php:1569
+#: js/messages.php:111 libraries/common.lib.php:1571
msgid "Aug"
msgstr "Aug"
#. l10n: Short month name
-#: js/messages.php:113 libraries/common.lib.php:1571
+#: js/messages.php:113 libraries/common.lib.php:1573
msgid "Sep"
msgstr "Sept"
#. l10n: Short month name
-#: js/messages.php:115 libraries/common.lib.php:1573
+#: js/messages.php:115 libraries/common.lib.php:1575
msgid "Oct"
msgstr "Oct"
#. l10n: Short month name
-#: js/messages.php:117 libraries/common.lib.php:1575
+#: js/messages.php:117 libraries/common.lib.php:1577
msgid "Nov"
msgstr "Nov"
#. l10n: Short month name
-#: js/messages.php:119 libraries/common.lib.php:1577
+#: js/messages.php:119 libraries/common.lib.php:1579
msgid "Dec"
msgstr "Dec"
@@ -1184,37 +1184,37 @@ msgid "Saturday"
msgstr "Zaterdag"
#. l10n: Short week day name
-#: js/messages.php:132 libraries/common.lib.php:1580
+#: js/messages.php:132 libraries/common.lib.php:1582
msgid "Sun"
msgstr "Zo"
#. l10n: Short week day name
-#: js/messages.php:134 libraries/common.lib.php:1582
+#: js/messages.php:134 libraries/common.lib.php:1584
msgid "Mon"
msgstr "Ma"
#. l10n: Short week day name
-#: js/messages.php:136 libraries/common.lib.php:1584
+#: js/messages.php:136 libraries/common.lib.php:1586
msgid "Tue"
msgstr "Di"
#. l10n: Short week day name
-#: js/messages.php:138 libraries/common.lib.php:1586
+#: js/messages.php:138 libraries/common.lib.php:1588
msgid "Wed"
msgstr "Wo"
#. l10n: Short week day name
-#: js/messages.php:140 libraries/common.lib.php:1588
+#: js/messages.php:140 libraries/common.lib.php:1590
msgid "Thu"
msgstr "Do"
#. l10n: Short week day name
-#: js/messages.php:142 libraries/common.lib.php:1590
+#: js/messages.php:142 libraries/common.lib.php:1592
msgid "Fri"
msgstr "Vr"
#. l10n: Short week day name
-#: js/messages.php:144 libraries/common.lib.php:1592
+#: js/messages.php:144 libraries/common.lib.php:1594
msgid "Sat"
msgstr "Za"
@@ -1355,7 +1355,7 @@ msgid "Comment"
msgstr "Opmerking"
#: libraries/Index.class.php:466 libraries/common.lib.php:616
-#: libraries/common.lib.php:1199 libraries/display_tbl.lib.php:1117
+#: libraries/common.lib.php:1201 libraries/display_tbl.lib.php:1117
#: libraries/import.lib.php:1087 libraries/import.lib.php:1111
#: pdf_pages.php:285 setup/frames/index.inc.php:124
#: setup/lib/messages.inc.php:352 tbl_row_action.php:69
@@ -1381,7 +1381,7 @@ msgstr ""
"verwijderd."
#: libraries/List_Database.class.php:431 libraries/server_links.inc.php:41
-#: server_databases.php:88 server_privileges.php:1621
+#: server_databases.php:88 server_privileges.php:1660
#: setup/lib/messages.inc.php:110 test/theme.php:93
msgid "Databases"
msgstr "Databases"
@@ -1721,7 +1721,7 @@ msgid "Documentation"
msgstr "Documentatie"
#: libraries/common.lib.php:595 libraries/header_printview.inc.php:61
-#: server_processlist.php:60 server_status.php:247
+#: server_processlist.php:60 server_status.php:358
msgid "SQL query"
msgstr "SQL-query"
@@ -1737,129 +1737,129 @@ msgstr "Verklaar SQL"
msgid "Skip Explain SQL"
msgstr "Uitleg SQL overslaan"
-#: libraries/common.lib.php:1212
+#: libraries/common.lib.php:1214
msgid "Without PHP Code"
msgstr "zonder PHP-Code"
-#: libraries/common.lib.php:1215 setup/lib/messages.inc.php:355
+#: libraries/common.lib.php:1217 setup/lib/messages.inc.php:355
msgid "Create PHP Code"
msgstr "Genereer PHP-Code"
-#: libraries/common.lib.php:1233 server_status.php:341
+#: libraries/common.lib.php:1235 server_status.php:452
#: setup/lib/messages.inc.php:354
msgid "Refresh"
msgstr "Vernieuw"
-#: libraries/common.lib.php:1242
+#: libraries/common.lib.php:1244
msgid "Skip Validate SQL"
msgstr "SQL-validatie overslaan"
-#: libraries/common.lib.php:1245 setup/lib/messages.inc.php:356 sql.php:518
+#: libraries/common.lib.php:1247 setup/lib/messages.inc.php:356 sql.php:518
msgid "Validate SQL"
msgstr "Valideer SQL"
-#: libraries/common.lib.php:1276
+#: libraries/common.lib.php:1278
msgid "Inline edit of this query"
msgstr "Rechtstreekse bewerking van deze query"
# "Inline" vertaalt naar "rechtstreeks in het document", als het ware binnen iets anders.
-#: libraries/common.lib.php:1278
+#: libraries/common.lib.php:1280
msgid "Inline"
msgstr "Rechtstreeks"
-#: libraries/common.lib.php:1332 libraries/common.lib.php:1347
+#: libraries/common.lib.php:1334 libraries/common.lib.php:1349
msgid "Profiling"
msgstr "Profiling"
-#: libraries/common.lib.php:1351 libraries/tbl_triggers.lib.php:28
+#: libraries/common.lib.php:1353 libraries/tbl_triggers.lib.php:28
#: server_processlist.php:58
msgid "Time"
msgstr "Tijd"
#. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "B"
msgstr "Bytes"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "KiB"
msgstr "KB"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "MiB"
msgstr "MB"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "GiB"
msgstr "GB"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "TiB"
msgstr "TB"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "PiB"
msgstr "PB"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "EiB"
msgstr "EB"
#. l10n: Thousands separator
-#: libraries/common.lib.php:1417
+#: libraries/common.lib.php:1419
msgid ","
msgstr "."
#. l10n: Decimal separator
-#: libraries/common.lib.php:1419
+#: libraries/common.lib.php:1421
msgid "."
msgstr ","
#. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string
-#: libraries/common.lib.php:1596
+#: libraries/common.lib.php:1598
#: libraries/transformations/text_plain__dateformat.inc.php:34
msgid "%B %d, %Y at %I:%M %p"
msgstr "%d %B %Y om %H:%M"
-#: libraries/common.lib.php:1898
+#: libraries/common.lib.php:1907
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "%s dagen, %s uren, %s minuten en %s seconden"
-#: libraries/common.lib.php:2313 libraries/common.lib.php:2316
-#: libraries/display_tbl.lib.php:290 server_status.php:608
+#: libraries/common.lib.php:2322 libraries/common.lib.php:2325
+#: libraries/display_tbl.lib.php:290 server_status.php:719
msgid "Begin"
msgstr "Begin"
-#: libraries/common.lib.php:2314 libraries/common.lib.php:2317
+#: libraries/common.lib.php:2323 libraries/common.lib.php:2326
#: libraries/display_tbl.lib.php:291 server_binlog.php:168
#: server_binlog.php:170
msgid "Previous"
msgstr "Vorige"
-#: libraries/common.lib.php:2345 libraries/common.lib.php:2348
+#: libraries/common.lib.php:2354 libraries/common.lib.php:2357
#: libraries/display_tbl.lib.php:353
msgid "End"
msgstr "Einde"
-#: libraries/common.lib.php:2421
+#: libraries/common.lib.php:2430
#, php-format
msgid "Jump to database "%s"."
msgstr "Ga naar database "%s"."
-#: libraries/common.lib.php:2441
+#: libraries/common.lib.php:2450
#, 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/common.lib.php:2821 libraries/common.lib.php:2828
+#: libraries/common.lib.php:2830 libraries/common.lib.php:2837
#: libraries/db_links.inc.php:68 libraries/export/sql.php:25
#: libraries/import/sql.php:18 libraries/server_links.inc.php:45
#: libraries/tbl_links.inc.php:60 querywindow.php:99 test/theme.php:97
msgid "SQL"
msgstr "SQL"
-#: libraries/common.lib.php:2830 libraries/db_links.inc.php:104
+#: libraries/common.lib.php:2839 libraries/db_links.inc.php:104
#: libraries/tbl_links.inc.php:95 libraries/tbl_links.inc.php:117
#: view_operations.php:89
msgid "Operations"
@@ -1915,8 +1915,8 @@ msgid "Import"
msgstr "Importeer"
#: libraries/db_links.inc.php:111 libraries/server_links.inc.php:66
-#: server_privileges.php:72 server_privileges.php:1683
-#: server_privileges.php:2032 test/theme.php:117
+#: server_privileges.php:111 server_privileges.php:1722
+#: server_privileges.php:2071 test/theme.php:117
msgid "Privileges"
msgstr "Rechten"
@@ -1966,22 +1966,22 @@ msgid "Change password"
msgstr "Wijzig wachtwoord"
#: libraries/display_change_password.lib.php:35
-#: libraries/replication_gui.lib.php:345 server_privileges.php:768
+#: libraries/replication_gui.lib.php:345 server_privileges.php:807
msgid "No Password"
msgstr "Geen wachtwoord"
#: libraries/display_change_password.lib.php:41
#: libraries/replication_gui.lib.php:59 libraries/replication_gui.lib.php:60
#: libraries/replication_gui.lib.php:335 libraries/replication_gui.lib.php:339
-#: libraries/replication_gui.lib.php:349 server_privileges.php:757
-#: server_privileges.php:761 server_privileges.php:772
-#: server_privileges.php:1499 server_synchronize.php:1175
+#: libraries/replication_gui.lib.php:349 server_privileges.php:796
+#: server_privileges.php:800 server_privileges.php:811
+#: server_privileges.php:1538 server_synchronize.php:1175
msgid "Password"
msgstr "Wachtwoord"
#: libraries/display_change_password.lib.php:46
#: libraries/replication_gui.lib.php:353 libraries/replication_gui.lib.php:356
-#: server_privileges.php:776 server_privileges.php:779
+#: server_privileges.php:815 server_privileges.php:818
msgid "Re-type"
msgstr "Type opnieuw"
@@ -1995,12 +1995,12 @@ msgid "MySQL 4.0 compatible"
msgstr "Compatibel met MySQL 4.0"
#: libraries/display_change_password.lib.php:72
-#: libraries/replication_gui.lib.php:360 server_privileges.php:783
+#: libraries/replication_gui.lib.php:360 server_privileges.php:822
msgid "Generate Password"
msgstr "Genereer wachtwoord"
#: libraries/display_change_password.lib.php:75
-#: libraries/replication_gui.lib.php:363 server_privileges.php:786
+#: libraries/replication_gui.lib.php:363 server_privileges.php:825
msgid "Generate"
msgstr "Genereer"
@@ -2013,8 +2013,8 @@ msgstr "Nieuwe database aanmaken"
msgid "Create"
msgstr "Aanmaken"
-#: libraries/display_create_database.lib.php:40 server_privileges.php:74
-#: server_privileges.php:1388 server_replication.php:35
+#: libraries/display_create_database.lib.php:40 server_privileges.php:113
+#: server_privileges.php:1427 server_replication.php:35
msgid "No Privileges"
msgstr "Geen rechten"
@@ -2107,7 +2107,7 @@ msgstr "Compressie"
#: libraries/display_export.lib.php:240 libraries/display_import.lib.php:197
#: libraries/display_import.lib.php:210 libraries/display_tbl.lib.php:530
#: libraries/export/sql.php:868 libraries/tbl_properties.inc.php:575
-#: server_privileges.php:1836 server_processlist.php:75
+#: server_privileges.php:1875 server_processlist.php:75
msgid "None"
msgstr "Geen"
@@ -2443,7 +2443,7 @@ msgstr ""
msgid "Buffer Pool"
msgstr "Buffer Pool"
-#: libraries/engines/innodb.lib.php:145 server_status.php:306
+#: libraries/engines/innodb.lib.php:145 server_status.php:417
msgid "InnoDB Status"
msgstr "InnoDB Status"
@@ -2452,8 +2452,8 @@ msgid "Buffer Pool Usage"
msgstr "Buffer Pool Gebruik"
#: libraries/engines/innodb.lib.php:194 server_databases.php:137
-#: server_databases.php:305 server_status.php:414 server_status.php:475
-#: server_status.php:496 tbl_printview.php:351 tbl_structure.php:696
+#: server_databases.php:305 server_status.php:525 server_status.php:586
+#: server_status.php:607 tbl_printview.php:351 tbl_structure.php:696
msgid "Total"
msgstr "Totaal"
@@ -2817,7 +2817,7 @@ msgstr "Microsoft Word 2000"
#: libraries/export/latex.php:201 libraries/export/odt.php:48
#: libraries/export/sql.php:106 libraries/export/sql.php:868
#: libraries/export/texytext.php:27 server_databases.php:127
-#: server_privileges.php:537 server_replication.php:316 tbl_printview.php:317
+#: server_privileges.php:576 server_replication.php:316 tbl_printview.php:317
#: tbl_structure.php:665
msgid "Data"
msgstr "Data"
@@ -2867,9 +2867,9 @@ msgstr "MIME-type"
#: libraries/export/xml.php:102 libraries/header_printview.inc.php:57
#: libraries/replication_gui.lib.php:63 libraries/replication_gui.lib.php:174
#: libraries/replication_gui.lib.php:269 libraries/replication_gui.lib.php:272
-#: libraries/replication_gui.lib.php:329 server_privileges.php:692
-#: server_privileges.php:695 server_privileges.php:751
-#: server_privileges.php:1498 server_privileges.php:2030
+#: libraries/replication_gui.lib.php:329 server_privileges.php:731
+#: server_privileges.php:734 server_privileges.php:790
+#: server_privileges.php:1537 server_privileges.php:2069
#: server_processlist.php:55 server_synchronize.php:1159
msgid "Host"
msgstr "Machine"
@@ -3225,880 +3225,6 @@ msgstr "Geen"
msgid "Convert to Kana"
msgstr "Zet om naar Kana"
-#. l10n: Text direction, use either ltr or rtl
-#: libraries/messages.inc.php:19
-msgid "ltr"
-msgstr "ltr"
-
-#: libraries/messages.inc.php:21
-msgid "Content of table __TABLE__"
-msgstr "Content van tabel __TABLE__"
-
-#: libraries/messages.inc.php:22
-msgid "(continued)"
-msgstr "(vervolgd)"
-
-#: libraries/messages.inc.php:23
-msgid "Structure of table __TABLE__"
-msgstr "Structuur van de tabel __TABLE__"
-
-#: libraries/messages.inc.php:25 server_privileges.php:227
-msgid "Includes all privileges except GRANT."
-msgstr "Bevat alle privileges behalve GRANT."
-
-#: libraries/messages.inc.php:26 server_privileges.php:153
-#: server_privileges.php:476
-msgid "Allows altering the structure of existing tables."
-msgstr "Maakt het mogelijk de structuur van bestaande tabellen aan te passen."
-
-#: libraries/messages.inc.php:27 server_privileges.php:169
-#: server_privileges.php:482
-msgid "Allows altering and dropping stored routines."
-msgstr "Maakt het mogelijk om stored routines te bewerken en te verwijderen."
-
-#: libraries/messages.inc.php:28 server_privileges.php:145
-#: server_privileges.php:475
-msgid "Allows creating new databases and tables."
-msgstr "Maakt het mogelijk om nieuwe databases en tabellen te maken."
-
-#: libraries/messages.inc.php:29 server_privileges.php:168
-#: server_privileges.php:481
-msgid "Allows creating stored routines."
-msgstr "Maakt het mogelijk om stored routines aan te maken."
-
-#: libraries/messages.inc.php:30 server_privileges.php:475
-msgid "Allows creating new tables."
-msgstr "Maakt het mogelijk nieuwe tabellen te maken."
-
-#: libraries/messages.inc.php:31 server_privileges.php:156
-#: server_privileges.php:479
-msgid "Allows creating temporary tables."
-msgstr "Maakt het mogelijk om tijdelijke tabellen te maken."
-
-#: libraries/messages.inc.php:32 server_privileges.php:170
-#: server_privileges.php:515
-msgid "Allows creating, dropping and renaming user accounts."
-msgstr ""
-"Maakt het mogelijk om gebruikersaccounts te maken, hernoemen en verwijderen."
-
-#: libraries/messages.inc.php:33 server_privileges.php:160
-#: server_privileges.php:164 server_privileges.php:487
-#: server_privileges.php:491
-msgid "Allows creating new views."
-msgstr "Maakt het mogelijk om nieuwe views te maken."
-
-#: libraries/messages.inc.php:34 server_privileges.php:144
-#: server_privileges.php:467
-msgid "Allows deleting data."
-msgstr "Maakt het mogelijk om data te verwijderen."
-
-#: libraries/messages.inc.php:35 server_privileges.php:146
-#: server_privileges.php:478
-msgid "Allows dropping databases and tables."
-msgstr "Maakt het mogelijk om databases en tabellen te verwijderen."
-
-#: libraries/messages.inc.php:36 server_privileges.php:478
-msgid "Allows dropping tables."
-msgstr "Maakt het mogelijk tabellen te verwijderen."
-
-#: libraries/messages.inc.php:37 server_privileges.php:161
-#: server_privileges.php:495
-msgid "Allows to set up events for the event scheduler"
-msgstr "Maakt het mogelijk om gebeurtenissen in de planner te zetten"
-
-#: libraries/messages.inc.php:38 server_privileges.php:171
-#: server_privileges.php:483
-msgid "Allows executing stored routines."
-msgstr "Maakt het mogelijk om stored routines uit te voeren."
-
-#: libraries/messages.inc.php:39 server_privileges.php:150
-#: server_privileges.php:470
-msgid "Allows importing data from and exporting data into files."
-msgstr ""
-"Maakt het mogelijk om data te importeren en te exporteren van en naar "
-"bestanden."
-
-#: libraries/messages.inc.php:40 server_privileges.php:501
-msgid ""
-"Allows adding users and privileges without reloading the privilege tables."
-msgstr ""
-"Maakt het mogelijk dat gebruikers en privileges toe te voegen zonder de "
-"privilegestabel opnieuw op te vragen."
-
-#: libraries/messages.inc.php:41 server_privileges.php:152
-#: server_privileges.php:477
-msgid "Allows creating and dropping indexes."
-msgstr "Maakt het mogelijk om indexen te creëren en te verwijderen."
-
-#: libraries/messages.inc.php:42 server_privileges.php:142
-#: server_privileges.php:403 server_privileges.php:465
-msgid "Allows inserting and replacing data."
-msgstr "Maakt het mogelijk om data in te voegen en te vervangen."
-
-#: libraries/messages.inc.php:43 server_privileges.php:157
-#: server_privileges.php:510
-msgid "Allows locking tables for the current thread."
-msgstr "Maakt het mogelijk tabellen op slot te zetten voor de huidige thread."
-
-#: libraries/messages.inc.php:44 server_privileges.php:607
-#: server_privileges.php:609
-msgid "Limits the number of new connections the user may open per hour."
-msgstr ""
-"Limiteert het aantal nieuwe connecties die een gebruiker per uur mag openen."
-
-#: libraries/messages.inc.php:45 server_privileges.php:595
-#: server_privileges.php:597
-msgid "Limits the number of queries the user may send to the server per hour."
-msgstr "Limiteert het aantal queries dat een gebruiker mag versturen per uur."
-
-#: libraries/messages.inc.php:46 server_privileges.php:601
-#: server_privileges.php:603
-msgid ""
-"Limits the number of commands that change any table or database the user may "
-"execute per hour."
-msgstr ""
-"Limiteert het aantal commando's, welke een database of tabel veranderen, die "
-"een gebruiker per uur mag uitvoeren."
-
-#: libraries/messages.inc.php:47 server_privileges.php:613
-#: server_privileges.php:615
-msgid "Limits the number of simultaneous connections the user may have."
-msgstr ""
-"Limiteert het aantal gelijktijdige verbindingen dat de gebruiker open kan "
-"hebben."
-
-#: libraries/messages.inc.php:48 server_privileges.php:149
-#: server_privileges.php:505
-msgid "Allows viewing processes of all users"
-msgstr "Maakt het mogelijk om processen van alle gebruikers te zien"
-
-#: libraries/messages.inc.php:49 server_privileges.php:151
-#: server_privileges.php:409 server_privileges.php:511
-msgid "Has no effect in this MySQL version."
-msgstr "Heeft geen effect in deze MySQL versie."
-
-#: libraries/messages.inc.php:50 server_privileges.php:147
-#: server_privileges.php:506
-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/messages.inc.php:51 server_privileges.php:159
-#: server_privileges.php:513
-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/messages.inc.php:52 server_privileges.php:158
-#: server_privileges.php:514
-msgid "Needed for the replication slaves."
-msgstr "Nodig om 'slaves' te repliceren."
-
-#: libraries/messages.inc.php:53 server_privileges.php:141
-#: server_privileges.php:400 server_privileges.php:464
-msgid "Allows reading data."
-msgstr "Maakt het lezen van data mogelijk."
-
-#: libraries/messages.inc.php:54 server_privileges.php:154
-#: server_privileges.php:508
-msgid "Gives access to the complete list of databases."
-msgstr "Geeft toegang tot de complete lijst van databases."
-
-#: libraries/messages.inc.php:55 server_privileges.php:165
-#: server_privileges.php:167 server_privileges.php:480
-msgid "Allows performing SHOW CREATE VIEW queries."
-msgstr "Maakt het mogelijk om SHOW CREATE VIEW queries uit te voeren."
-
-#: libraries/messages.inc.php:56 server_privileges.php:148
-#: server_privileges.php:507
-msgid "Allows shutting down the server."
-msgstr "Maakt het mogelijk om de server te stoppen."
-
-#: libraries/messages.inc.php:57 server_privileges.php:155
-#: server_privileges.php:504
-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 ""
-"Maakt het mogelijk verbinding te maken, zelfs als het maximale aantal "
-"verbindingen al is bereikt; Dit is vereist voor de meeste administratieve "
-"opties zoals het instellen van globale variabelen of het stoppen van threads "
-"van andere gebruikers."
-
-#: libraries/messages.inc.php:58 server_privileges.php:162
-#: server_privileges.php:496
-msgid "Allows creating and dropping triggers"
-msgstr "Maakt het mogelijk om triggers maken en te verwijderen"
-
-#: libraries/messages.inc.php:59 server_privileges.php:143
-#: server_privileges.php:406 server_privileges.php:466
-msgid "Allows changing data."
-msgstr "Maakt het mogelijk data aan te passen."
-
-#: libraries/messages.inc.php:60 server_privileges.php:221
-msgid "No privileges."
-msgstr "Geen privileges."
-
-#: libraries/messages.inc.php:62
-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 ""
-"Het aantal transacties dat gebruik heeft gemaakt van het tijdelijke binaire "
-"log cache, maar die groter waren dan binlog_cache_size en daarom gebruik "
-"hebben gemaakt van een tijdelijkbestand om opdrachten uit de transactie op "
-"te slaan."
-
-#: libraries/messages.inc.php:63
-msgid "The number of transactions that used the temporary binary log cache."
-msgstr ""
-"Het aantal transactie dat gebruik maakte van het tijdelijke binaire log "
-"cache."
-
-#: libraries/messages.inc.php:64
-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 "
-"to increase the tmp_table_size value to cause temporary tables to be memory-"
-"based instead of disk-based."
-msgstr ""
-"Het aantal tijdelijke tabellen op schijf dat automatisch werd aangemaakt bij "
-"het uitvoeren van opdrachten. Indien Created_tmp_disk_tables groot is, kan "
-"het de moeite waard zijn om de waarde van tmp_table_size te verhogen, "
-"waardoor meer tijdelijke tabellen in het geheugen blijven in plaats van op "
-"schijf."
-
-#: libraries/messages.inc.php:65
-msgid "How many temporary files mysqld has created."
-msgstr "Het aantal tijdelijke bestanden dat door MySQL werd aangemaakt."
-
-#: libraries/messages.inc.php:66
-msgid ""
-"The number of in-memory temporary tables created automatically by the server "
-"while executing statements."
-msgstr ""
-"Het aantal in het geheugen geplaatste tijdelijke tabellen dat automatisch "
-"door de server werd aangemaakt tijdens het uitvoeren van opdrachten."
-
-#: libraries/messages.inc.php:67
-msgid ""
-"The number of rows written with INSERT DELAYED for which some error occurred "
-"(probably duplicate key)."
-msgstr ""
-"Het aantal met INSERT DELAYED opgeslagen rijen waarbij er een fout optrad "
-"(mogelijk een reeds bestaande sleutel)."
-
-#: libraries/messages.inc.php:68
-msgid ""
-"The number of INSERT DELAYED handler threads in use. Every different table "
-"on which one uses INSERT DELAYED gets its own thread."
-msgstr ""
-"Het aantal INSERT DELAYED afhandelings-threads in gebruik. Elke "
-"afzonderlijke tabel waarop INSERT DELAYED wordt toegepast krijgt een eigen "
-"thread."
-
-#: libraries/messages.inc.php:69
-msgid "The number of INSERT DELAYED rows written."
-msgstr "Het aantal met INSERT DELAYED opgeslagen rijen."
-
-#: libraries/messages.inc.php:70
-msgid "The number of executed FLUSH statements."
-msgstr "Het aantal uitgevoerde FLUSH opdrachten."
-
-#: libraries/messages.inc.php:71
-msgid "The number of internal COMMIT statements."
-msgstr "Het aantal interne COMMIT opdrachten."
-
-#: libraries/messages.inc.php:72
-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/messages.inc.php:73
-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 ""
-"De MySQL-server kan aan de NDB Cluster opslag engine vragen naar een tabel "
-"met een bepaalde naam. Dit wordt discovery genoemd. Handler_discover geeft "
-"aan hoeveel tabellen met discovery werden opgezocht."
-
-#: libraries/messages.inc.php:74
-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 ""
-"Het aantal keer dat de eerste eenheid uit een index werd gelezen. Indien "
-"hoog geeft dit een indicatie dat de server veel scans doet op de volledige "
-"index; bijvoorbeeld SELECT kolom1 FROM foo, waarbij kolom een is geïndexeerd."
-
-#: libraries/messages.inc.php:75
-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 ""
-"Het aantal opdrachten om een rij te lezen op basis van de sleutel. Indien "
-"hoog is dit een indicatie dat er goed gebruik wordt gemaakt van de aanwezige "
-"indexen."
-
-#: libraries/messages.inc.php:76
-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 ""
-"Het aantal leesopdrachten voor de volgende rij in de sleutel volgorde.\tDit "
-"wordt verhoogd wanneer u een index kolom raadpleegt met een bereik beperking "
-"of bij het doen van een index scan."
-
-#: libraries/messages.inc.php:77
-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 ""
-"Het aantal leesopdrachten voor de voorgaande rij in de sleutel volgorde. Dit "
-"wordt hoofdzakelijk gebruikt voor het optimaliseren van ORDER BY ... DESC."
-
-#: libraries/messages.inc.php:78
-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 "
-"probably have a lot of queries that require MySQL to scan whole tables or "
-"you have joins that don't use keys properly."
-msgstr ""
-"Het aantal leesopdrachten voor een rij op een vaste positie. Dit is hoog "
-"wanneer er veel gebruik wordt gemaakt van queries waarbij het resultaat "
-"gesorteerd moet worden. U gebruikt mogelijk veel queries waarvoor MySQL een "
-"gehele tabel moet scannen of er worden joins toegepast die niet goed "
-"gebruikmaken van sleutels."
-
-#: libraries/messages.inc.php:79
-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 "
-"tables are not properly indexed or that your queries are not written to take "
-"advantage of the indexes you have."
-msgstr ""
-"Het aantal leesopdrachten voor de volgende rij uit het data bestand. Dit is "
-"hoog wanneer er voor gebruik wordt gemaakt van table scans. Over het "
-"algemeen betekend dit dat de gebruikte tabellen niet optimaal van indexen "
-"zijn voorzien of dat de toegepaste queries hier niet optimaal gebruik van "
-"maken."
-
-#: libraries/messages.inc.php:80
-msgid "The number of internal ROLLBACK statements."
-msgstr "Het aantal interne ROLLBACK opdrachten."
-
-#: libraries/messages.inc.php:81
-msgid "The number of requests to update a row in a table."
-msgstr "Het aantal update opdrachten voor een tabel rij."
-
-#: libraries/messages.inc.php:82
-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/messages.inc.php:83
-msgid "The number of pages containing data (dirty or clean)."
-msgstr "Het aantal pages dat data bevat (dirty en clean)."
-
-#: libraries/messages.inc.php:84
-msgid "The number of pages currently dirty."
-msgstr "Het aantal pages dat momenteel dirty is."
-
-#: libraries/messages.inc.php:85
-msgid "The number of buffer pool pages that have been requested to be flushed."
-msgstr "Het aantal buffer pool pages dat is geschoond."
-
-#: libraries/messages.inc.php:86
-msgid "The number of free pages."
-msgstr "Het aantal vrije pages."
-
-#: libraries/messages.inc.php:87
-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 ""
-"Het aantal latched pages in de InnoDB buffer pool. Dit zijn pages waarin "
-"momenteel wordt gelezen of geschreven, of die om een andere reden niet "
-"geschoond of verwijderd kunnen worden."
-
-#: libraries/messages.inc.php:88
-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 "
-"be calculated as Innodb_buffer_pool_pages_total - "
-"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data."
-msgstr ""
-"Het aantal pages dat in gebruik is voor administratieve doeleinden, zoals "
-"rij locks of hash indexen. Deze waarde kan worden berekend als "
-"Innodb_buffer_pool_pages_total - Innodb_buffer_pool_pages_free - "
-"Innodb_buffer_pool_pages_data."
-
-#: libraries/messages.inc.php:89
-msgid "Total size of buffer pool, in pages."
-msgstr "Totale formaat van de buffer pool, in pages."
-
-#: libraries/messages.inc.php:90
-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 ""
-"Het aantal \"random\" read-aheads dat door InnoDB werd geïnitieerd. Dit "
-"gebeurd wanneer een query een groot deel van een tabel laat scannen, maar in "
-"willekeurige volgorde."
-
-#: libraries/messages.inc.php:91
-msgid ""
-"The number of sequential read-aheads InnoDB initiated. This happens when "
-"InnoDB does a sequential full table scan."
-msgstr ""
-"Het aantal sequentiele read-aheads dat door InnoDB werd geïnitieerd. Dit "
-"gebeurd wanneer er een volledige tabelscan wordt uitgevoerd."
-
-#: libraries/messages.inc.php:92
-msgid "The number of logical read requests InnoDB has done."
-msgstr "Het aantal logische read requests dat door InnoDB werd uitgevoerd."
-
-#: libraries/messages.inc.php:93
-msgid ""
-"The number of logical reads that InnoDB could not satisfy from buffer pool "
-"and had to do a single-page read."
-msgstr ""
-"Het aantal logische lees operaties dat InnoDB niet kon doen vanuit de buffer "
-"pool maar waarvoor een extra page ingeladen moest worden."
-
-#: libraries/messages.inc.php:94
-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 "
-"available, it's necessary to wait for pages to be flushed first. This "
-"counter counts instances of these waits. If the buffer pool size was set "
-"properly, this value should be small."
-msgstr ""
-"Normaal gesproken gebeurd het schrijven naar de InnoDB buffer pool in de "
-"achtergrond. Echter wanneer er geen vrije pages beschikbaar zijn voor het "
-"inlezen van een nieuwe page moet er worden gewacht tot enkele pages zijn "
-"geschoond. Deze teller houd bij hoe vaak dit voorkomt. Indien het buffer "
-"pool formaat goed is ingesteld hoort deze waarde laag te zijn."
-
-#: libraries/messages.inc.php:95
-msgid "The number writes done to the InnoDB buffer pool."
-msgstr "Het aantal schrijf operaties uitgevoerd op de InnoDB buffer pool."
-
-#: libraries/messages.inc.php:96
-msgid "The number of fsync() operations so far."
-msgstr "Het aantal fsync() operaties."
-
-#: libraries/messages.inc.php:97
-msgid "The current number of pending fsync() operations."
-msgstr "Het aantal momenteel openstaande fsync() operaties."
-
-#: libraries/messages.inc.php:98
-msgid "The current number of pending reads."
-msgstr "Het aantal momenteel openstaande lees operaties."
-
-#: libraries/messages.inc.php:99
-msgid "The current number of pending writes."
-msgstr "Het aantal momenteel openstaande schrijf operaties."
-
-#: libraries/messages.inc.php:100
-msgid "The amount of data read so far, in bytes."
-msgstr "De hoeveelheid gelezen data, in bytes."
-
-#: libraries/messages.inc.php:101
-msgid "The total number of data reads."
-msgstr "Het totale aantal data lees operaties."
-
-#: libraries/messages.inc.php:102
-msgid "The total number of data writes."
-msgstr "Het totale aantal data schrijf operaties."
-
-#: libraries/messages.inc.php:103
-msgid "The amount of data written so far, in bytes."
-msgstr "De hoeveelheid geschreven data, in bytes."
-
-#: libraries/messages.inc.php:104
-msgid "The number of pages that have been written for doublewrite operations."
-msgstr "Het aantal pages dat werd geschreven voor doublewrite operaties"
-
-#: libraries/messages.inc.php:105
-msgid "The number of doublewrite operations that have been performed."
-msgstr "Het aantal uitgevoerde doublewrite operaties"
-
-#: libraries/messages.inc.php:106
-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 log buffer."
-
-#: libraries/messages.inc.php:107
-msgid "The number of log write requests."
-msgstr "Het aantal log schrijf opdrachten."
-
-#: libraries/messages.inc.php:108
-msgid "The number of physical writes to the log file."
-msgstr "Het aantal fysieke schrijf operaties op het log bestand."
-
-#: libraries/messages.inc.php:109
-msgid "The number of fsync() writes done to the log file."
-msgstr "Het aantal fsync() schrijf operaties uitgevoerd op het log bestand."
-
-#: libraries/messages.inc.php:110
-msgid "The number of pending log file fsyncs."
-msgstr "Het aantal momenteel openstaande fsync() operaties op het logbestand."
-
-#: libraries/messages.inc.php:111
-msgid "Pending log file writes."
-msgstr "Het aantal momenteel openstaande schrijf operaties op het logbestand."
-
-#: libraries/messages.inc.php:112
-msgid "The number of bytes written to the log file."
-msgstr "Het aantal bytes dat naar het logbestand werd geschreven."
-
-#: libraries/messages.inc.php:113
-msgid "The number of pages created."
-msgstr "Het aantal pages dat werd aangemaakt."
-
-#: libraries/messages.inc.php:114
-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 ""
-"De tijdens het compileren ingestelde InnoDB page grootte (standaard 16KB). "
-"Veel waarden worden geteld in pages. Een vaste page grootte maakt het "
-"eenvoudig deze te converteren naar bytes."
-
-#: libraries/messages.inc.php:115
-msgid "The number of pages read."
-msgstr "Het aantal gelezen pages."
-
-#: libraries/messages.inc.php:116
-msgid "The number of pages written."
-msgstr "Het aantal geschreven pages."
-
-#: libraries/messages.inc.php:117
-msgid "The number of row locks currently being waited for."
-msgstr "Het aantal gelockte rijen waar momenteel op wordt gewacht."
-
-#: libraries/messages.inc.php:118
-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/messages.inc.php:119
-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/messages.inc.php:120
-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/messages.inc.php:121
-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/messages.inc.php:122
-msgid "The number of rows deleted from InnoDB tables."
-msgstr "Het aantal rijen dat werd verwijderd uit InnoDB tabellen."
-
-#: libraries/messages.inc.php:123
-msgid "The number of rows inserted in InnoDB tables."
-msgstr "Het aantal rijen dat werd ingevoegd in InnoDB tabellen."
-
-#: libraries/messages.inc.php:124
-msgid "The number of rows read from InnoDB tables."
-msgstr "Het aantal rijen dat werd gelezen uit InnoDB tabellen."
-
-#: libraries/messages.inc.php:125
-msgid "The number of rows updated in InnoDB tables."
-msgstr "Het aantal rijen dat werd bijgewerkt in InnoDB tabellen."
-
-#: libraries/messages.inc.php:126
-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 ""
-"Het aantal sleutelblokken in het sleutelcache welke zijn bijgewerkt maar nog "
-"niet naar disk zijn geschreven. Dit stond voorheen bekend als "
-"Not_flushed_key_blocks."
-
-#: libraries/messages.inc.php:127
-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/messages.inc.php:128
-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 ""
-"Het aantal gebruikte blokken in het sleutelcache. Dit is de maximaal "
-"behaalde waarde sinds het starten van de server."
-
-#: libraries/messages.inc.php:129
-msgid "The number of requests to read a key block from the cache."
-msgstr "Het aantal leesopdrachten voor een sleutelblok uit het cache."
-
-#: libraries/messages.inc.php:130
-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 ""
-"Het aantal fysieke leesoperaties van een sleutelblok van schrijf. Indien "
-"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/messages.inc.php:131
-msgid "The number of requests to write a key block to the cache."
-msgstr "Het aantal schrijf opdrachten voor een sleutelblok naar het cache."
-
-#: libraries/messages.inc.php:132
-msgid "The number of physical writes of a key block to disk."
-msgstr "Het aantal fysieke schrijf opdrachten voor een sleutelblok naar disk."
-
-#: libraries/messages.inc.php:133
-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 ""
-"De totale kosten voor de laatst gecompileerde query zoals berekend door de "
-"query optimizer. Dit kan nuttig zijn voor het vergelijken van de kosten van "
-"verschillende query plans voor dezelfde query. De standaardwaarde 0 betekend "
-"dat er nog geen query is gecompiled."
-
-#: libraries/messages.inc.php:134
-msgid "The number of rows waiting to be written in INSERT DELAYED queues."
-msgstr ""
-"Het aantal rijen dat klaar staan om te worden geschreven in INSERT DELAYED "
-"wachtrijen."
-
-#: libraries/messages.inc.php:135
-msgid ""
-"The number of tables that have been opened. If opened tables is big, your "
-"table cache value is probably too small."
-msgstr ""
-"Het aantal tabellen dat werd geopend. Indien hoog, is mogelijk de table "
-"cache waarde te laag."
-
-#: libraries/messages.inc.php:136
-msgid "The number of files that are open."
-msgstr "Het totaal aantal geopende bestanden."
-
-#: libraries/messages.inc.php:137
-msgid "The number of streams that are open (used mainly for logging)."
-msgstr ""
-"Het aantal open streams (hoofdzakelijk gebruikt voor het schrijven van log)."
-
-#: libraries/messages.inc.php:138
-msgid "The number of tables that are open."
-msgstr "Het totaal aantal open tabellen."
-
-#: libraries/messages.inc.php:139
-msgid "The number of free memory blocks in query cache."
-msgstr "Het aantal vrije geheugen blokken in het query cache."
-
-#: libraries/messages.inc.php:140
-msgid "The amount of free memory for query cache."
-msgstr "De hoeveelheid vrij geheugen voor het query cache."
-
-#: libraries/messages.inc.php:141
-msgid "The number of cache hits."
-msgstr "Het aantal cache hits."
-
-#: libraries/messages.inc.php:142
-msgid "The number of queries added to the cache."
-msgstr "Het aantal queries dat aan het cache werd toegevoegd."
-
-#: libraries/messages.inc.php:143
-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 "
-"cache size. The query cache uses a least recently used (LRU) strategy to "
-"decide which queries to remove from the cache."
-msgstr ""
-"Het aantal queries dat uit het cache werd verwijderd om plaats te maken voor "
-"nieuwe queries. Deze informatie kan worden gebruikt bij het instellen van de "
-"grootte van het query cache. Het query cache maakt gebruik van een minst "
-"recent gebruikt (least recently used, LRU) strategie om te bepalen welke "
-"queries worden verwijderd."
-
-#: libraries/messages.inc.php:144
-msgid ""
-"The number of non-cached queries (not cachable, or not cached due to the "
-"query_cache_type setting)."
-msgstr ""
-"Het aantal niet gecachte queries (niet cachebaar, danwel niet gecached "
-"vanwege de query_cache_type instelling)."
-
-#: libraries/messages.inc.php:145
-msgid "The number of queries registered in the cache."
-msgstr "Het aantal queries dat in het cache staat."
-
-#: libraries/messages.inc.php:146
-msgid "The total number of blocks in the query cache."
-msgstr "Het totaal aantal blokken in het query cache."
-
-#: libraries/messages.inc.php:147
-msgctxt "$strShowStatusReset"
-msgid "Reset"
-msgstr "Herstel"
-
-#: libraries/messages.inc.php:148
-msgid "The status of failsafe replication (not yet implemented)."
-msgstr "De status van failsafe replicatie (nog niet geïmplementeerd)."
-
-#: libraries/messages.inc.php:149
-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 ""
-"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/messages.inc.php:150
-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/messages.inc.php:151
-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 ""
-"Het aantal joins zonder sleutel, dat na elke rij controleert op het gebruik "
-"van een sleutel. Indien dit geen 0 is, is het aan te raden om het gebruik "
-"van indexen te controleren."
-
-#: libraries/messages.inc.php:152
-msgid ""
-"The number of joins that used ranges on the first table. (It's normally not "
-"critical even if this is big.)"
-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/messages.inc.php:153
-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/messages.inc.php:154
-msgid "The number of temporary tables currently open by the slave SQL thread."
-msgstr ""
-"Het aantal momenteel openstaande tijdelijke tabellen voor de slave SQL "
-"threas."
-
-#: libraries/messages.inc.php:155
-msgid ""
-"Total (since startup) number of times the replication slave SQL thread has "
-"retried transactions."
-msgstr ""
-"Het totaal aantal transacties dat moest worden herhaald door de replicatie "
-"slave SQL thread, sinds het opstarten van de server."
-
-#: libraries/messages.inc.php:156
-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 master server."
-
-#: libraries/messages.inc.php:157
-msgid ""
-"The number of threads that have taken more than slow_launch_time seconds to "
-"create."
-msgstr ""
-"Het aantal threads waarvoor het opstarten langer dan slow_launch_time "
-"seconden duurde."
-
-#: libraries/messages.inc.php:158
-msgid ""
-"The number of queries that have taken more than long_query_time seconds."
-msgstr ""
-"Het aantal queries waarvan het uitvoeren langer dan long_query_time seconden "
-"duurde."
-
-#: libraries/messages.inc.php:159
-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 ""
-"Het aantal samenvoegings-ronden dat het sorteer algoritme heeft moeten "
-"uitvoeren. Indien deze waarde hoog is, is het een optie om de systeem "
-"variabele sort_buffer_size te vergroten."
-
-#: libraries/messages.inc.php:160
-msgid "The number of sorts that were done with ranges."
-msgstr "Het aantal sorteringen dat werd uitgevoerd met een bereikbeperking."
-
-#: libraries/messages.inc.php:161
-msgid "The number of sorted rows."
-msgstr "Het aantal gesorteerde rijen."
-
-#: libraries/messages.inc.php:162
-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/messages.inc.php:163
-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/messages.inc.php:164
-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 "
-"should first optimize your queries, and then either split your table or "
-"tables or use replication."
-msgstr ""
-"Het aantal keer dat een tabel lock niet direct kon worden verkregen, en er "
-"dus moest worden gewacht. Indien dit hoog is, en u last heeft van prestatie "
-"problemen, kunt u het beste eerst uw queries optimalizeren. Daarna kunt u "
-"nog kijken naar het splitsen van tabellen en het gebruik van replicatie."
-
-#: libraries/messages.inc.php:165
-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 ""
-"Het aantal threads in het thread cache. De cache hit rate kan worden "
-"berekend met Threads_created/Connections. Indien deze waarde rood staat "
-"aangegeven is het aan te raden om thread_cache_size te vergroten."
-
-#: libraries/messages.inc.php:166
-msgid "The number of currently open connections."
-msgstr "Het aantal momenteel openstaande verbindingen."
-
-#: libraries/messages.inc.php:167
-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 "
-"doesn't give a notable performance improvement if you have a good thread "
-"implementation.)"
-msgstr ""
-"Het aantal threads dat werd aangemaakt om verbindingen af te handelen. "
-"Indien deze waarde hoog is, kan het een optie zijn om thread_cache_size te "
-"verhogen. Dit geeft echter in de meeste gevallen, bij gebruik van een goede "
-"thead implementatie, geen noemenswaardige prestatie verbetering."
-
-#: libraries/messages.inc.php:168
-msgid "The number of threads that are not sleeping."
-msgstr "Het aantal threads dat actief bezig is."
-
#: libraries/mult_submits.inc.php:76 libraries/tbl_properties.inc.php:513
#: tbl_structure.php:29 tbl_structure.php:153 tbl_structure.php:157
#: tbl_structure.php:473
@@ -4425,8 +3551,8 @@ msgstr ""
#: libraries/replication_gui.lib.php:55 libraries/replication_gui.lib.php:56
#: libraries/replication_gui.lib.php:249 libraries/replication_gui.lib.php:252
-#: libraries/replication_gui.lib.php:259 server_privileges.php:672
-#: server_privileges.php:675 server_privileges.php:682
+#: libraries/replication_gui.lib.php:259 server_privileges.php:711
+#: server_privileges.php:714 server_privileges.php:721
#: server_synchronize.php:1171
msgid "User name"
msgstr "Gebruikersnaam"
@@ -4444,11 +3570,11 @@ msgid "Slave status"
msgstr "Slave status"
#: libraries/replication_gui.lib.php:114 libraries/sql_query_form.lib.php:445
-#: server_status.php:626 server_variables.php:52
+#: server_status.php:737 server_variables.php:52
msgid "Variable"
msgstr "Variabelen"
-#: libraries/replication_gui.lib.php:115 server_status.php:627
+#: libraries/replication_gui.lib.php:115 server_status.php:738
#: tbl_change.php:324 tbl_printview.php:370 tbl_select.php:139
#: tbl_structure.php:729
msgid "Value"
@@ -4470,34 +3596,34 @@ msgstr ""
msgid "Add slave replication user"
msgstr "Voeg slave replicatie gebruiker toe"
-#: libraries/replication_gui.lib.php:254 server_privileges.php:677
+#: libraries/replication_gui.lib.php:254 server_privileges.php:716
msgid "Any user"
msgstr "Een willekeurige gebruiker"
#: libraries/replication_gui.lib.php:255 libraries/replication_gui.lib.php:323
-#: libraries/replication_gui.lib.php:346 server_privileges.php:678
-#: server_privileges.php:745 server_privileges.php:769
-#: server_privileges.php:1889 server_privileges.php:1919
+#: libraries/replication_gui.lib.php:346 server_privileges.php:717
+#: server_privileges.php:784 server_privileges.php:808
+#: server_privileges.php:1928 server_privileges.php:1958
msgid "Use text field"
msgstr "Gebruik tekstveld"
-#: libraries/replication_gui.lib.php:302 server_privileges.php:725
+#: libraries/replication_gui.lib.php:302 server_privileges.php:764
msgid "Any host"
msgstr "Een willekeurige machine"
-#: libraries/replication_gui.lib.php:306 server_privileges.php:729
+#: libraries/replication_gui.lib.php:306 server_privileges.php:768
msgid "Local"
msgstr "lokaal"
-#: libraries/replication_gui.lib.php:312 server_privileges.php:734
+#: libraries/replication_gui.lib.php:312 server_privileges.php:773
msgid "This Host"
msgstr "Deze machine"
-#: libraries/replication_gui.lib.php:318 server_privileges.php:740
+#: libraries/replication_gui.lib.php:318 server_privileges.php:779
msgid "Use Host Table"
msgstr "Gebruik Host Tabel"
-#: libraries/replication_gui.lib.php:331 server_privileges.php:753
+#: libraries/replication_gui.lib.php:331 server_privileges.php:792
msgid ""
"When Host table is used, this field is ignored and values stored in Host "
"table are used instead."
@@ -4505,8 +3631,25 @@ msgstr ""
"Indien er gebruik wordt gemaakt van de Host tabel is dit veld niet van "
"toepassing."
-#: libraries/select_lang.lib.php:480 libraries/select_lang.lib.php:486
-#: libraries/select_lang.lib.php:492
+#. l10n: Text direction, use either ltr or rtl
+#: libraries/select_lang.lib.php:491
+msgid "ltr"
+msgstr "ltr"
+
+#: libraries/select_lang.lib.php:493
+msgid "Content of table __TABLE__"
+msgstr "Content van tabel __TABLE__"
+
+#: libraries/select_lang.lib.php:494
+msgid "(continued)"
+msgstr "(vervolgd)"
+
+#: libraries/select_lang.lib.php:495
+msgid "Structure of table __TABLE__"
+msgstr "Structuur van de tabel __TABLE__"
+
+#: libraries/select_lang.lib.php:500 libraries/select_lang.lib.php:506
+#: libraries/select_lang.lib.php:512
#, php-format
msgid "Unknown language: %1$s."
msgstr "Onbekende taal: %1$s."
@@ -4517,7 +3660,7 @@ msgid "Servers"
msgstr "Servers"
#: libraries/server_links.inc.php:53 server_engines.php:112
-#: server_engines.php:116 server_status.php:304 test/theme.php:105
+#: server_engines.php:116 server_status.php:415 test/theme.php:105
msgid "Variables"
msgstr "Variabelen"
@@ -4530,7 +3673,7 @@ msgid "Engines"
msgstr "Engines"
#: libraries/server_links.inc.php:76 server_binlog.php:110
-#: server_status.php:253 test/theme.php:121
+#: server_status.php:364 test/theme.php:121
msgid "Binary log"
msgstr "Binaire log"
@@ -5011,8 +4154,8 @@ msgstr "Herstel"
msgid "Protocol version"
msgstr "Protocolversie"
-#: main.php:189 server_privileges.php:1350 server_privileges.php:1497
-#: server_privileges.php:1611 server_privileges.php:2029
+#: main.php:189 server_privileges.php:1389 server_privileges.php:1536
+#: server_privileges.php:1650 server_privileges.php:2068
#: server_processlist.php:54
msgid "User"
msgstr "Gebruiker"
@@ -5411,7 +4554,7 @@ msgstr "%s databases zijn succesvol verwijderd."
msgid "Databases statistics"
msgstr "Database statistieken"
-#: server_databases.php:117 server_status.php:260
+#: server_databases.php:117 server_status.php:371
#: setup/lib/messages.inc.php:117
msgid "Tables"
msgstr "Tabellen"
@@ -5429,6 +4572,18 @@ msgstr "Slave replicatie"
msgid "Jump to database"
msgstr "Ga naar database"
+#: server_databases.php:267
+#, fuzzy
+#| msgid "Master replication"
+msgid "Not replicated"
+msgstr "Master replicatie"
+
+#: server_databases.php:273
+#, fuzzy
+#| msgid "Replication"
+msgid "Replicated"
+msgstr "Replicatie"
+
#: server_databases.php:289
#, php-format
msgid "Check privileges for database "%s"."
@@ -5462,142 +4617,342 @@ msgstr "Opslag Engines"
msgid "View dump (schema) of databases"
msgstr "Bekijk dump (schema) van de databases"
-#: server_privileges.php:263 server_privileges.php:264
+#: server_privileges.php:24 server_privileges.php:266
+msgid "Includes all privileges except GRANT."
+msgstr "Bevat alle privileges behalve GRANT."
+
+#: server_privileges.php:25 server_privileges.php:192
+#: server_privileges.php:515
+msgid "Allows altering the structure of existing tables."
+msgstr "Maakt het mogelijk de structuur van bestaande tabellen aan te passen."
+
+#: server_privileges.php:26 server_privileges.php:208
+#: server_privileges.php:521
+msgid "Allows altering and dropping stored routines."
+msgstr "Maakt het mogelijk om stored routines te bewerken en te verwijderen."
+
+#: server_privileges.php:27 server_privileges.php:184
+#: server_privileges.php:514
+msgid "Allows creating new databases and tables."
+msgstr "Maakt het mogelijk om nieuwe databases en tabellen te maken."
+
+#: server_privileges.php:28 server_privileges.php:207
+#: server_privileges.php:520
+msgid "Allows creating stored routines."
+msgstr "Maakt het mogelijk om stored routines aan te maken."
+
+#: server_privileges.php:29 server_privileges.php:514
+msgid "Allows creating new tables."
+msgstr "Maakt het mogelijk nieuwe tabellen te maken."
+
+#: server_privileges.php:30 server_privileges.php:195
+#: server_privileges.php:518
+msgid "Allows creating temporary tables."
+msgstr "Maakt het mogelijk om tijdelijke tabellen te maken."
+
+#: server_privileges.php:31 server_privileges.php:209
+#: server_privileges.php:554
+msgid "Allows creating, dropping and renaming user accounts."
+msgstr ""
+"Maakt het mogelijk om gebruikersaccounts te maken, hernoemen en verwijderen."
+
+#: server_privileges.php:32 server_privileges.php:199
+#: server_privileges.php:203 server_privileges.php:526
+#: server_privileges.php:530
+msgid "Allows creating new views."
+msgstr "Maakt het mogelijk om nieuwe views te maken."
+
+#: server_privileges.php:33 server_privileges.php:183
+#: server_privileges.php:506
+msgid "Allows deleting data."
+msgstr "Maakt het mogelijk om data te verwijderen."
+
+#: server_privileges.php:34 server_privileges.php:185
+#: server_privileges.php:517
+msgid "Allows dropping databases and tables."
+msgstr "Maakt het mogelijk om databases en tabellen te verwijderen."
+
+#: server_privileges.php:35 server_privileges.php:517
+msgid "Allows dropping tables."
+msgstr "Maakt het mogelijk tabellen te verwijderen."
+
+#: server_privileges.php:36 server_privileges.php:200
+#: server_privileges.php:534
+msgid "Allows to set up events for the event scheduler"
+msgstr "Maakt het mogelijk om gebeurtenissen in de planner te zetten"
+
+#: server_privileges.php:37 server_privileges.php:210
+#: server_privileges.php:522
+msgid "Allows executing stored routines."
+msgstr "Maakt het mogelijk om stored routines uit te voeren."
+
+#: server_privileges.php:38 server_privileges.php:189
+#: server_privileges.php:509
+msgid "Allows importing data from and exporting data into files."
+msgstr ""
+"Maakt het mogelijk om data te importeren en te exporteren van en naar "
+"bestanden."
+
+#: server_privileges.php:39 server_privileges.php:540
+msgid ""
+"Allows adding users and privileges without reloading the privilege tables."
+msgstr ""
+"Maakt het mogelijk dat gebruikers en privileges toe te voegen zonder de "
+"privilegestabel opnieuw op te vragen."
+
+#: server_privileges.php:40 server_privileges.php:191
+#: server_privileges.php:516
+msgid "Allows creating and dropping indexes."
+msgstr "Maakt het mogelijk om indexen te creëren en te verwijderen."
+
+#: server_privileges.php:41 server_privileges.php:181
+#: server_privileges.php:442 server_privileges.php:504
+msgid "Allows inserting and replacing data."
+msgstr "Maakt het mogelijk om data in te voegen en te vervangen."
+
+#: server_privileges.php:42 server_privileges.php:196
+#: server_privileges.php:549
+msgid "Allows locking tables for the current thread."
+msgstr "Maakt het mogelijk tabellen op slot te zetten voor de huidige thread."
+
+#: server_privileges.php:43 server_privileges.php:646
+#: server_privileges.php:648
+msgid "Limits the number of new connections the user may open per hour."
+msgstr ""
+"Limiteert het aantal nieuwe connecties die een gebruiker per uur mag openen."
+
+#: server_privileges.php:44 server_privileges.php:634
+#: server_privileges.php:636
+msgid "Limits the number of queries the user may send to the server per hour."
+msgstr "Limiteert het aantal queries dat een gebruiker mag versturen per uur."
+
+#: server_privileges.php:45 server_privileges.php:640
+#: server_privileges.php:642
+msgid ""
+"Limits the number of commands that change any table or database the user may "
+"execute per hour."
+msgstr ""
+"Limiteert het aantal commando's, welke een database of tabel veranderen, die "
+"een gebruiker per uur mag uitvoeren."
+
+#: server_privileges.php:46 server_privileges.php:652
+#: server_privileges.php:654
+msgid "Limits the number of simultaneous connections the user may have."
+msgstr ""
+"Limiteert het aantal gelijktijdige verbindingen dat de gebruiker open kan "
+"hebben."
+
+#: server_privileges.php:47 server_privileges.php:188
+#: server_privileges.php:544
+msgid "Allows viewing processes of all users"
+msgstr "Maakt het mogelijk om processen van alle gebruikers te zien"
+
+#: server_privileges.php:48 server_privileges.php:190
+#: server_privileges.php:448 server_privileges.php:550
+msgid "Has no effect in this MySQL version."
+msgstr "Heeft geen effect in deze MySQL versie."
+
+#: server_privileges.php:49 server_privileges.php:186
+#: server_privileges.php:545
+msgid "Allows reloading server settings and flushing the server's caches."
+msgstr ""
+"Maakt het mogelijk om de serverinstellingen opnieuw op te vragen en de cache "
+"van de server leeg te maken."
+
+#: server_privileges.php:50 server_privileges.php:198
+#: server_privileges.php:552
+msgid "Allows the user to ask where the slaves / masters are."
+msgstr ""
+"Geeft het recht aan de gebruiker om te vragen waar de 'slaves' / 'masters' "
+"zijn."
+
+#: server_privileges.php:51 server_privileges.php:197
+#: server_privileges.php:553
+msgid "Needed for the replication slaves."
+msgstr "Nodig om 'slaves' te repliceren."
+
+#: server_privileges.php:52 server_privileges.php:180
+#: server_privileges.php:439 server_privileges.php:503
+msgid "Allows reading data."
+msgstr "Maakt het lezen van data mogelijk."
+
+#: server_privileges.php:53 server_privileges.php:193
+#: server_privileges.php:547
+msgid "Gives access to the complete list of databases."
+msgstr "Geeft toegang tot de complete lijst van databases."
+
+#: server_privileges.php:54 server_privileges.php:204
+#: server_privileges.php:206 server_privileges.php:519
+msgid "Allows performing SHOW CREATE VIEW queries."
+msgstr "Maakt het mogelijk om SHOW CREATE VIEW queries uit te voeren."
+
+#: server_privileges.php:55 server_privileges.php:187
+#: server_privileges.php:546
+msgid "Allows shutting down the server."
+msgstr "Maakt het mogelijk om de server te stoppen."
+
+#: server_privileges.php:56 server_privileges.php:194
+#: server_privileges.php:543
+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 ""
+"Maakt het mogelijk verbinding te maken, zelfs als het maximale aantal "
+"verbindingen al is bereikt; Dit is vereist voor de meeste administratieve "
+"opties zoals het instellen van globale variabelen of het stoppen van threads "
+"van andere gebruikers."
+
+#: server_privileges.php:57 server_privileges.php:201
+#: server_privileges.php:535
+msgid "Allows creating and dropping triggers"
+msgstr "Maakt het mogelijk om triggers maken en te verwijderen"
+
+#: server_privileges.php:58 server_privileges.php:182
+#: server_privileges.php:445 server_privileges.php:505
+msgid "Allows changing data."
+msgstr "Maakt het mogelijk data aan te passen."
+
+#: server_privileges.php:59 server_privileges.php:260
+msgid "No privileges."
+msgstr "Geen privileges."
+
+#: server_privileges.php:302 server_privileges.php:303
msgctxt "None privileges"
msgid "None"
msgstr "Geen"
-#: server_privileges.php:392 server_privileges.php:527
-#: server_privileges.php:1679 server_privileges.php:1685
+#: server_privileges.php:431 server_privileges.php:566
+#: server_privileges.php:1718 server_privileges.php:1724
msgid "Table-specific privileges"
msgstr "Tabel-specifieke privileges"
-#: server_privileges.php:393 server_privileges.php:535
-#: server_privileges.php:1501
+#: server_privileges.php:432 server_privileges.php:574
+#: server_privileges.php:1540
msgid " Note: MySQL privilege names are expressed in English "
msgstr ""
" Aantekening: de namen van de MySQL rechten zijn uitgedrukt in het Engels "
-#: server_privileges.php:524 server_privileges.php:1500
+#: server_privileges.php:563 server_privileges.php:1539
msgid "Global privileges"
msgstr "Globale privileges"
-#: server_privileges.php:526 server_privileges.php:1679
+#: server_privileges.php:565 server_privileges.php:1718
msgid "Database-specific privileges"
msgstr "Database-specifieke privileges"
-#: server_privileges.php:571
+#: server_privileges.php:610
msgid "Administration"
msgstr "Administratie"
-#: server_privileges.php:591
+#: server_privileges.php:630
msgid "Resource limits"
msgstr "Resource-beperkingen"
-#: server_privileges.php:592
+#: server_privileges.php:631
msgid "Note: Setting these options to 0 (zero) removes the limit."
msgstr ""
"Opmerking: Het instellen van deze waarden op 0 (nul) verwijdert de limiet."
-#: server_privileges.php:669
+#: server_privileges.php:708
msgid "Login Information"
msgstr "Inloginformatie"
-#: server_privileges.php:763
+#: server_privileges.php:802
msgid "Do not change the password"
msgstr "Wijzig het wachtwoord niet"
# Enkelvoud.
-#: server_privileges.php:804 server_privileges.php:2166
+#: server_privileges.php:843 server_privileges.php:2205
msgid "No user found."
msgstr "Geen gebruiker gevonden."
-#: server_privileges.php:848
+#: server_privileges.php:887
#, php-format
msgid "The user %s already exists!"
msgstr "De gebruiker %s bestaat al!"
-#: server_privileges.php:931
+#: server_privileges.php:970
msgid "You have added a new user."
msgstr "U heeft een nieuwe gebruiker toegevoegd."
-#: server_privileges.php:1152
+#: server_privileges.php:1191
#, php-format
msgid "You have updated the privileges for %s."
msgstr "U heeft de rechten aangepast voor %s."
-#: server_privileges.php:1176
+#: server_privileges.php:1215
#, php-format
msgid "You have revoked the privileges for %s"
msgstr "U heeft de rechten ingetrokken voor %s"
-#: server_privileges.php:1212
+#: server_privileges.php:1251
#, php-format
msgid "The password for %s was changed successfully."
msgstr "Het wachtwoord voor %s is succesvol veranderd."
-#: server_privileges.php:1232
+#: server_privileges.php:1271
#, php-format
msgid "Deleting %s"
msgstr "Verwijderen van %s"
-#: server_privileges.php:1243
+#: server_privileges.php:1282
msgid "No users selected for deleting!"
msgstr "Geen gebruikers geselecteerd om te verwijderen!"
-#: server_privileges.php:1246
+#: server_privileges.php:1285
msgid "Reloading the privileges"
msgstr "Bezig de privileges te verversen"
-#: server_privileges.php:1261
+#: server_privileges.php:1300
msgid "The selected users have been deleted successfully."
msgstr "De geselecteerde gebruikers zijn met succes verwijderd."
-#: server_privileges.php:1296
+#: server_privileges.php:1335
msgid "The privileges were reloaded successfully."
msgstr "De privileges zijn succesvol vernieuwd"
-#: server_privileges.php:1324 server_privileges.php:1610
+#: server_privileges.php:1363 server_privileges.php:1649
msgid "Edit Privileges"
msgstr "Wijzig rechten"
-#: server_privileges.php:1333
+#: server_privileges.php:1372
msgid "Revoke"
msgstr "Ongedaan maken"
-#: server_privileges.php:1365
+#: server_privileges.php:1404
msgid "User overview"
msgstr "Gebruikers Overzicht"
-#: server_privileges.php:1502 server_privileges.php:1684
-#: server_privileges.php:2033
+#: server_privileges.php:1541 server_privileges.php:1723
+#: server_privileges.php:2072
msgid "Grant"
msgstr "Toekennen"
-#: server_privileges.php:1521 server_privileges.php:2123
+#: server_privileges.php:1560 server_privileges.php:2162
msgid "Any"
msgstr "Elke"
-#: server_privileges.php:1570 server_privileges.php:1594
-#: server_privileges.php:1988 server_privileges.php:2177
+#: server_privileges.php:1609 server_privileges.php:1633
+#: server_privileges.php:2027 server_privileges.php:2216
msgid "Add a new User"
msgstr "Voeg een nieuwe gebruiker toe"
-#: server_privileges.php:1575
+#: server_privileges.php:1614
msgid "Remove selected users"
msgstr "Verwijder de geselecteerde gebruikers"
-#: server_privileges.php:1578
+#: server_privileges.php:1617
msgid "Revoke all active privileges from the users and delete them afterwards."
msgstr ""
"Trek alle actieve privileges in van alle gebruikers en verwijder deze daarna."
-#: server_privileges.php:1579 server_privileges.php:1580
-#: server_privileges.php:1581
+#: server_privileges.php:1618 server_privileges.php:1619
+#: server_privileges.php:1620
msgid "Drop the databases that have the same names as the users."
msgstr "Verwijder de databases die dezelfde naam hebben als de gebruikers."
-#: server_privileges.php:1597
+#: server_privileges.php:1636
#, php-format
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
@@ -5611,52 +4966,52 @@ msgstr ""
"geval zijn dan moet men %sde privilege tabel vernieuwen%s voordat men verder "
"gaat."
-#: server_privileges.php:1645
+#: server_privileges.php:1684
msgid "The selected user was not found in the privilege table."
msgstr ""
"De geselecteerde gebruiker werd niet aangetroffen in de privileges tabel"
-#: server_privileges.php:1685
+#: server_privileges.php:1724
msgid "Column-specific privileges"
msgstr "Kolom-specifieke privileges"
-#: server_privileges.php:1886
+#: server_privileges.php:1925
msgid "Add privileges on the following database"
msgstr "Voeg privileges toe aan de volgende database"
-#: server_privileges.php:1904
+#: server_privileges.php:1943
msgid "Wildcards % and _ should be escaped with a \\ to use them literally"
msgstr ""
"Wildcards _ en % moeten worden ge-escaped met een \\ om ze letterlijk te "
"gebruiken"
-#: server_privileges.php:1907
+#: server_privileges.php:1946
msgid "Add privileges on the following table"
msgstr "Voeg privileges toe aan de volgende tabel"
-#: server_privileges.php:1964
+#: server_privileges.php:2003
msgid "Change Login Information / Copy User"
msgstr "Wijzig de Inlog Informatie / Kopieer gebruiker"
-#: server_privileges.php:1967
+#: server_privileges.php:2006
msgid "Create a new user with the same privileges and ..."
msgstr "Maak een nieuwe gebruiker aan met dezelfde privileges en ..."
-#: server_privileges.php:1969
+#: server_privileges.php:2008
msgid "... keep the old one."
msgstr "... behoud de oude."
-#: server_privileges.php:1970
+#: server_privileges.php:2009
msgid " ... delete the old one from the user tables."
msgstr " ... verwijder de oude van de user tabellen."
-#: server_privileges.php:1971
+#: server_privileges.php:2010
msgid ""
" ... revoke all active privileges from the old one and delete it afterwards."
msgstr ""
" ... herstel alle actieve privileges van de oude en verwijder deze daarna."
-#: server_privileges.php:1972
+#: server_privileges.php:2011
msgid ""
" ... delete the old one from the user tables and reload the privileges "
"afterwards."
@@ -5664,44 +5019,44 @@ msgstr ""
" ... verwijder de oude van de gebruikerstabellen en vernieuw de privileges "
"achteraf."
-#: server_privileges.php:1994
+#: server_privileges.php:2033
msgid "Database for user"
msgstr "Database voor gebruiker"
-#: server_privileges.php:1998
+#: server_privileges.php:2037
#, fuzzy
#| msgid "None"
msgctxt "Create none database for user"
msgid "None"
msgstr "Geen"
-#: server_privileges.php:1999
+#: server_privileges.php:2038
msgid "Create database with same name and grant all privileges"
msgstr "Maak een database met dezelfde naam en geef alle rechten hierop"
-#: server_privileges.php:2000
+#: server_privileges.php:2039
msgid "Grant all privileges on wildcard name (username\\_%)"
msgstr "Geef alle rechten op de wildcard naam (gebruikersnaam\\_%)"
-#: server_privileges.php:2003
+#: server_privileges.php:2042
#, php-format
msgid "Grant all privileges on database "%s""
msgstr "Geef alle rechten op de database "%s""
-#: server_privileges.php:2026
+#: server_privileges.php:2065
#, php-format
msgid "Users having access to "%s""
msgstr "Gebruikers die toegang hebben tot "%s""
-#: server_privileges.php:2134
+#: server_privileges.php:2173
msgid "global"
msgstr "globaal"
-#: server_privileges.php:2136
+#: server_privileges.php:2175
msgid "database-specific"
msgstr "database-specifiek"
-#: server_privileges.php:2138
+#: server_privileges.php:2177
msgid "wildcard"
msgstr "jokerteken"
@@ -5751,7 +5106,7 @@ msgstr "Master server gewijzigd in %s"
msgid "This server is configured as master in a replication process."
msgstr "Deze server is ingesteld als master in een replicatie proces."
-#: server_replication.php:184 server_status.php:281
+#: server_replication.php:184 server_status.php:392
msgid "Show master status"
msgstr "Toon master status"
@@ -5902,83 +5257,740 @@ msgstr ""
"Deze server is niet ingesteld als slave in een replicatie proces. Wilt u dit "
"nu instellen?"
+#: server_status.php:40
+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 ""
+"Het aantal transacties dat gebruik heeft gemaakt van het tijdelijke binaire "
+"log cache, maar die groter waren dan binlog_cache_size en daarom gebruik "
+"hebben gemaakt van een tijdelijkbestand om opdrachten uit de transactie op "
+"te slaan."
+
+#: server_status.php:41
+msgid "The number of transactions that used the temporary binary log cache."
+msgstr ""
+"Het aantal transactie dat gebruik maakte van het tijdelijke binaire log "
+"cache."
+
+#: server_status.php:42
+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 "
+"to increase the tmp_table_size value to cause temporary tables to be memory-"
+"based instead of disk-based."
+msgstr ""
+"Het aantal tijdelijke tabellen op schijf dat automatisch werd aangemaakt bij "
+"het uitvoeren van opdrachten. Indien Created_tmp_disk_tables groot is, kan "
+"het de moeite waard zijn om de waarde van tmp_table_size te verhogen, "
+"waardoor meer tijdelijke tabellen in het geheugen blijven in plaats van op "
+"schijf."
+
+#: server_status.php:43
+msgid "How many temporary files mysqld has created."
+msgstr "Het aantal tijdelijke bestanden dat door MySQL werd aangemaakt."
+
+#: server_status.php:44
+msgid ""
+"The number of in-memory temporary tables created automatically by the server "
+"while executing statements."
+msgstr ""
+"Het aantal in het geheugen geplaatste tijdelijke tabellen dat automatisch "
+"door de server werd aangemaakt tijdens het uitvoeren van opdrachten."
+
+#: server_status.php:45
+msgid ""
+"The number of rows written with INSERT DELAYED for which some error occurred "
+"(probably duplicate key)."
+msgstr ""
+"Het aantal met INSERT DELAYED opgeslagen rijen waarbij er een fout optrad "
+"(mogelijk een reeds bestaande sleutel)."
+
#: server_status.php:46
+msgid ""
+"The number of INSERT DELAYED handler threads in use. Every different table "
+"on which one uses INSERT DELAYED gets its own thread."
+msgstr ""
+"Het aantal INSERT DELAYED afhandelings-threads in gebruik. Elke "
+"afzonderlijke tabel waarop INSERT DELAYED wordt toegepast krijgt een eigen "
+"thread."
+
+#: server_status.php:47
+msgid "The number of INSERT DELAYED rows written."
+msgstr "Het aantal met INSERT DELAYED opgeslagen rijen."
+
+#: server_status.php:48
+msgid "The number of executed FLUSH statements."
+msgstr "Het aantal uitgevoerde FLUSH opdrachten."
+
+#: server_status.php:49
+msgid "The number of internal COMMIT statements."
+msgstr "Het aantal interne COMMIT opdrachten."
+
+#: server_status.php:50
+msgid "The number of times a row was deleted from a table."
+msgstr "Het aantal keer dat een rij werd verwijderd uit een tabel."
+
+#: server_status.php:51
+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 ""
+"De MySQL-server kan aan de NDB Cluster opslag engine vragen naar een tabel "
+"met een bepaalde naam. Dit wordt discovery genoemd. Handler_discover geeft "
+"aan hoeveel tabellen met discovery werden opgezocht."
+
+#: server_status.php:52
+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 ""
+"Het aantal keer dat de eerste eenheid uit een index werd gelezen. Indien "
+"hoog geeft dit een indicatie dat de server veel scans doet op de volledige "
+"index; bijvoorbeeld SELECT kolom1 FROM foo, waarbij kolom een is geïndexeerd."
+
+#: server_status.php:53
+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 ""
+"Het aantal opdrachten om een rij te lezen op basis van de sleutel. Indien "
+"hoog is dit een indicatie dat er goed gebruik wordt gemaakt van de aanwezige "
+"indexen."
+
+#: server_status.php:54
+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 ""
+"Het aantal leesopdrachten voor de volgende rij in de sleutel volgorde.\tDit "
+"wordt verhoogd wanneer u een index kolom raadpleegt met een bereik beperking "
+"of bij het doen van een index scan."
+
+#: server_status.php:55
+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 ""
+"Het aantal leesopdrachten voor de voorgaande rij in de sleutel volgorde. Dit "
+"wordt hoofdzakelijk gebruikt voor het optimaliseren van ORDER BY ... DESC."
+
+#: server_status.php:56
+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 "
+"probably have a lot of queries that require MySQL to scan whole tables or "
+"you have joins that don't use keys properly."
+msgstr ""
+"Het aantal leesopdrachten voor een rij op een vaste positie. Dit is hoog "
+"wanneer er veel gebruik wordt gemaakt van queries waarbij het resultaat "
+"gesorteerd moet worden. U gebruikt mogelijk veel queries waarvoor MySQL een "
+"gehele tabel moet scannen of er worden joins toegepast die niet goed "
+"gebruikmaken van sleutels."
+
+#: server_status.php:57
+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 "
+"tables are not properly indexed or that your queries are not written to take "
+"advantage of the indexes you have."
+msgstr ""
+"Het aantal leesopdrachten voor de volgende rij uit het data bestand. Dit is "
+"hoog wanneer er voor gebruik wordt gemaakt van table scans. Over het "
+"algemeen betekend dit dat de gebruikte tabellen niet optimaal van indexen "
+"zijn voorzien of dat de toegepaste queries hier niet optimaal gebruik van "
+"maken."
+
+#: server_status.php:58
+msgid "The number of internal ROLLBACK statements."
+msgstr "Het aantal interne ROLLBACK opdrachten."
+
+#: server_status.php:59
+msgid "The number of requests to update a row in a table."
+msgstr "Het aantal update opdrachten voor een tabel rij."
+
+#: server_status.php:60
+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."
+
+#: server_status.php:61
+msgid "The number of pages containing data (dirty or clean)."
+msgstr "Het aantal pages dat data bevat (dirty en clean)."
+
+#: server_status.php:62
+msgid "The number of pages currently dirty."
+msgstr "Het aantal pages dat momenteel dirty is."
+
+#: server_status.php:63
+msgid "The number of buffer pool pages that have been requested to be flushed."
+msgstr "Het aantal buffer pool pages dat is geschoond."
+
+#: server_status.php:64
+msgid "The number of free pages."
+msgstr "Het aantal vrije pages."
+
+#: server_status.php:65
+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 ""
+"Het aantal latched pages in de InnoDB buffer pool. Dit zijn pages waarin "
+"momenteel wordt gelezen of geschreven, of die om een andere reden niet "
+"geschoond of verwijderd kunnen worden."
+
+#: server_status.php:66
+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 "
+"be calculated as Innodb_buffer_pool_pages_total - "
+"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data."
+msgstr ""
+"Het aantal pages dat in gebruik is voor administratieve doeleinden, zoals "
+"rij locks of hash indexen. Deze waarde kan worden berekend als "
+"Innodb_buffer_pool_pages_total - Innodb_buffer_pool_pages_free - "
+"Innodb_buffer_pool_pages_data."
+
+#: server_status.php:67
+msgid "Total size of buffer pool, in pages."
+msgstr "Totale formaat van de buffer pool, in pages."
+
+#: server_status.php:68
+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 ""
+"Het aantal \"random\" read-aheads dat door InnoDB werd geïnitieerd. Dit "
+"gebeurd wanneer een query een groot deel van een tabel laat scannen, maar in "
+"willekeurige volgorde."
+
+#: server_status.php:69
+msgid ""
+"The number of sequential read-aheads InnoDB initiated. This happens when "
+"InnoDB does a sequential full table scan."
+msgstr ""
+"Het aantal sequentiele read-aheads dat door InnoDB werd geïnitieerd. Dit "
+"gebeurd wanneer er een volledige tabelscan wordt uitgevoerd."
+
+#: server_status.php:70
+msgid "The number of logical read requests InnoDB has done."
+msgstr "Het aantal logische read requests dat door InnoDB werd uitgevoerd."
+
+#: server_status.php:71
+msgid ""
+"The number of logical reads that InnoDB could not satisfy from buffer pool "
+"and had to do a single-page read."
+msgstr ""
+"Het aantal logische lees operaties dat InnoDB niet kon doen vanuit de buffer "
+"pool maar waarvoor een extra page ingeladen moest worden."
+
+#: server_status.php:72
+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 "
+"available, it's necessary to wait for pages to be flushed first. This "
+"counter counts instances of these waits. If the buffer pool size was set "
+"properly, this value should be small."
+msgstr ""
+"Normaal gesproken gebeurd het schrijven naar de InnoDB buffer pool in de "
+"achtergrond. Echter wanneer er geen vrije pages beschikbaar zijn voor het "
+"inlezen van een nieuwe page moet er worden gewacht tot enkele pages zijn "
+"geschoond. Deze teller houd bij hoe vaak dit voorkomt. Indien het buffer "
+"pool formaat goed is ingesteld hoort deze waarde laag te zijn."
+
+#: server_status.php:73
+msgid "The number writes done to the InnoDB buffer pool."
+msgstr "Het aantal schrijf operaties uitgevoerd op de InnoDB buffer pool."
+
+#: server_status.php:74
+msgid "The number of fsync() operations so far."
+msgstr "Het aantal fsync() operaties."
+
+#: server_status.php:75
+msgid "The current number of pending fsync() operations."
+msgstr "Het aantal momenteel openstaande fsync() operaties."
+
+#: server_status.php:76
+msgid "The current number of pending reads."
+msgstr "Het aantal momenteel openstaande lees operaties."
+
+#: server_status.php:77
+msgid "The current number of pending writes."
+msgstr "Het aantal momenteel openstaande schrijf operaties."
+
+#: server_status.php:78
+msgid "The amount of data read so far, in bytes."
+msgstr "De hoeveelheid gelezen data, in bytes."
+
+#: server_status.php:79
+msgid "The total number of data reads."
+msgstr "Het totale aantal data lees operaties."
+
+#: server_status.php:80
+msgid "The total number of data writes."
+msgstr "Het totale aantal data schrijf operaties."
+
+#: server_status.php:81
+msgid "The amount of data written so far, in bytes."
+msgstr "De hoeveelheid geschreven data, in bytes."
+
+#: server_status.php:82
+msgid "The number of pages that have been written for doublewrite operations."
+msgstr "Het aantal pages dat werd geschreven voor doublewrite operaties"
+
+#: server_status.php:83
+msgid "The number of doublewrite operations that have been performed."
+msgstr "Het aantal uitgevoerde doublewrite operaties"
+
+#: server_status.php:84
+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 log buffer."
+
+#: server_status.php:85
+msgid "The number of log write requests."
+msgstr "Het aantal log schrijf opdrachten."
+
+#: server_status.php:86
+msgid "The number of physical writes to the log file."
+msgstr "Het aantal fysieke schrijf operaties op het log bestand."
+
+#: server_status.php:87
+msgid "The number of fsync() writes done to the log file."
+msgstr "Het aantal fsync() schrijf operaties uitgevoerd op het log bestand."
+
+#: server_status.php:88
+msgid "The number of pending log file fsyncs."
+msgstr "Het aantal momenteel openstaande fsync() operaties op het logbestand."
+
+#: server_status.php:89
+msgid "Pending log file writes."
+msgstr "Het aantal momenteel openstaande schrijf operaties op het logbestand."
+
+#: server_status.php:90
+msgid "The number of bytes written to the log file."
+msgstr "Het aantal bytes dat naar het logbestand werd geschreven."
+
+#: server_status.php:91
+msgid "The number of pages created."
+msgstr "Het aantal pages dat werd aangemaakt."
+
+#: server_status.php:92
+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 ""
+"De tijdens het compileren ingestelde InnoDB page grootte (standaard 16KB). "
+"Veel waarden worden geteld in pages. Een vaste page grootte maakt het "
+"eenvoudig deze te converteren naar bytes."
+
+#: server_status.php:93
+msgid "The number of pages read."
+msgstr "Het aantal gelezen pages."
+
+#: server_status.php:94
+msgid "The number of pages written."
+msgstr "Het aantal geschreven pages."
+
+#: server_status.php:95
+msgid "The number of row locks currently being waited for."
+msgstr "Het aantal gelockte rijen waar momenteel op wordt gewacht."
+
+#: server_status.php:96
+msgid "The average time to acquire a row lock, in milliseconds."
+msgstr ""
+"De gemiddelde tijd nodig om een rij lock te verkrijgen, in milliseconden."
+
+#: server_status.php:97
+msgid "The total time spent in acquiring row locks, in milliseconds."
+msgstr ""
+"De totale tijd besteed aan het verkrijgen van rij locks, in milliseconden."
+
+#: server_status.php:98
+msgid "The maximum time to acquire a row lock, in milliseconds."
+msgstr ""
+"De maximale tijd nodig om een rij lock te verkrijgen, in milliseconden."
+
+#: server_status.php:99
+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."
+
+#: server_status.php:100
+msgid "The number of rows deleted from InnoDB tables."
+msgstr "Het aantal rijen dat werd verwijderd uit InnoDB tabellen."
+
+#: server_status.php:101
+msgid "The number of rows inserted in InnoDB tables."
+msgstr "Het aantal rijen dat werd ingevoegd in InnoDB tabellen."
+
+#: server_status.php:102
+msgid "The number of rows read from InnoDB tables."
+msgstr "Het aantal rijen dat werd gelezen uit InnoDB tabellen."
+
+#: server_status.php:103
+msgid "The number of rows updated in InnoDB tables."
+msgstr "Het aantal rijen dat werd bijgewerkt in InnoDB tabellen."
+
+#: server_status.php:104
+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 ""
+"Het aantal sleutelblokken in het sleutelcache welke zijn bijgewerkt maar nog "
+"niet naar disk zijn geschreven. Dit stond voorheen bekend als "
+"Not_flushed_key_blocks."
+
+#: server_status.php:105
+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."
+
+#: server_status.php:106
+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 ""
+"Het aantal gebruikte blokken in het sleutelcache. Dit is de maximaal "
+"behaalde waarde sinds het starten van de server."
+
+#: server_status.php:107
+msgid "The number of requests to read a key block from the cache."
+msgstr "Het aantal leesopdrachten voor een sleutelblok uit het cache."
+
+#: server_status.php:108
+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 ""
+"Het aantal fysieke leesoperaties van een sleutelblok van schrijf. Indien "
+"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."
+
+#: server_status.php:109
+msgid "The number of requests to write a key block to the cache."
+msgstr "Het aantal schrijf opdrachten voor een sleutelblok naar het cache."
+
+#: server_status.php:110
+msgid "The number of physical writes of a key block to disk."
+msgstr "Het aantal fysieke schrijf opdrachten voor een sleutelblok naar disk."
+
+#: server_status.php:111
+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 ""
+"De totale kosten voor de laatst gecompileerde query zoals berekend door de "
+"query optimizer. Dit kan nuttig zijn voor het vergelijken van de kosten van "
+"verschillende query plans voor dezelfde query. De standaardwaarde 0 betekend "
+"dat er nog geen query is gecompiled."
+
+#: server_status.php:112
+msgid "The number of rows waiting to be written in INSERT DELAYED queues."
+msgstr ""
+"Het aantal rijen dat klaar staan om te worden geschreven in INSERT DELAYED "
+"wachtrijen."
+
+#: server_status.php:113
+msgid ""
+"The number of tables that have been opened. If opened tables is big, your "
+"table cache value is probably too small."
+msgstr ""
+"Het aantal tabellen dat werd geopend. Indien hoog, is mogelijk de table "
+"cache waarde te laag."
+
+#: server_status.php:114
+msgid "The number of files that are open."
+msgstr "Het totaal aantal geopende bestanden."
+
+#: server_status.php:115
+msgid "The number of streams that are open (used mainly for logging)."
+msgstr ""
+"Het aantal open streams (hoofdzakelijk gebruikt voor het schrijven van log)."
+
+#: server_status.php:116
+msgid "The number of tables that are open."
+msgstr "Het totaal aantal open tabellen."
+
+#: server_status.php:117
+msgid "The number of free memory blocks in query cache."
+msgstr "Het aantal vrije geheugen blokken in het query cache."
+
+#: server_status.php:118
+msgid "The amount of free memory for query cache."
+msgstr "De hoeveelheid vrij geheugen voor het query cache."
+
+#: server_status.php:119
+msgid "The number of cache hits."
+msgstr "Het aantal cache hits."
+
+#: server_status.php:120
+msgid "The number of queries added to the cache."
+msgstr "Het aantal queries dat aan het cache werd toegevoegd."
+
+#: server_status.php:121
+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 "
+"cache size. The query cache uses a least recently used (LRU) strategy to "
+"decide which queries to remove from the cache."
+msgstr ""
+"Het aantal queries dat uit het cache werd verwijderd om plaats te maken voor "
+"nieuwe queries. Deze informatie kan worden gebruikt bij het instellen van de "
+"grootte van het query cache. Het query cache maakt gebruik van een minst "
+"recent gebruikt (least recently used, LRU) strategie om te bepalen welke "
+"queries worden verwijderd."
+
+#: server_status.php:122
+msgid ""
+"The number of non-cached queries (not cachable, or not cached due to the "
+"query_cache_type setting)."
+msgstr ""
+"Het aantal niet gecachte queries (niet cachebaar, danwel niet gecached "
+"vanwege de query_cache_type instelling)."
+
+#: server_status.php:123
+msgid "The number of queries registered in the cache."
+msgstr "Het aantal queries dat in het cache staat."
+
+#: server_status.php:124
+msgid "The total number of blocks in the query cache."
+msgstr "Het totaal aantal blokken in het query cache."
+
+#: server_status.php:125
+msgctxt "$strShowStatusReset"
+msgid "Reset"
+msgstr "Herstel"
+
+#: server_status.php:126
+msgid "The status of failsafe replication (not yet implemented)."
+msgstr "De status van failsafe replicatie (nog niet geïmplementeerd)."
+
+#: server_status.php:127
+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 ""
+"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."
+
+#: server_status.php:128
+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."
+
+#: server_status.php:129
+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 ""
+"Het aantal joins zonder sleutel, dat na elke rij controleert op het gebruik "
+"van een sleutel. Indien dit geen 0 is, is het aan te raden om het gebruik "
+"van indexen te controleren."
+
+#: server_status.php:130
+msgid ""
+"The number of joins that used ranges on the first table. (It's normally not "
+"critical even if this is big.)"
+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.)"
+
+#: server_status.php:131
+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."
+
+#: server_status.php:132
+msgid "The number of temporary tables currently open by the slave SQL thread."
+msgstr ""
+"Het aantal momenteel openstaande tijdelijke tabellen voor de slave SQL "
+"threas."
+
+#: server_status.php:133
+msgid ""
+"Total (since startup) number of times the replication slave SQL thread has "
+"retried transactions."
+msgstr ""
+"Het totaal aantal transacties dat moest worden herhaald door de replicatie "
+"slave SQL thread, sinds het opstarten van de server."
+
+#: server_status.php:134
+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 master server."
+
+#: server_status.php:135
+msgid ""
+"The number of threads that have taken more than slow_launch_time seconds to "
+"create."
+msgstr ""
+"Het aantal threads waarvoor het opstarten langer dan slow_launch_time "
+"seconden duurde."
+
+#: server_status.php:136
+msgid ""
+"The number of queries that have taken more than long_query_time seconds."
+msgstr ""
+"Het aantal queries waarvan het uitvoeren langer dan long_query_time seconden "
+"duurde."
+
+#: server_status.php:137
+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 ""
+"Het aantal samenvoegings-ronden dat het sorteer algoritme heeft moeten "
+"uitvoeren. Indien deze waarde hoog is, is het een optie om de systeem "
+"variabele sort_buffer_size te vergroten."
+
+#: server_status.php:138
+msgid "The number of sorts that were done with ranges."
+msgstr "Het aantal sorteringen dat werd uitgevoerd met een bereikbeperking."
+
+#: server_status.php:139
+msgid "The number of sorted rows."
+msgstr "Het aantal gesorteerde rijen."
+
+#: server_status.php:140
+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."
+
+#: server_status.php:141
+msgid "The number of times that a table lock was acquired immediately."
+msgstr "Het aantal keer dat een tabel lock direct kon worden verkregen."
+
+#: server_status.php:142
+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 "
+"should first optimize your queries, and then either split your table or "
+"tables or use replication."
+msgstr ""
+"Het aantal keer dat een tabel lock niet direct kon worden verkregen, en er "
+"dus moest worden gewacht. Indien dit hoog is, en u last heeft van prestatie "
+"problemen, kunt u het beste eerst uw queries optimalizeren. Daarna kunt u "
+"nog kijken naar het splitsen van tabellen en het gebruik van replicatie."
+
+#: server_status.php:143
+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 ""
+"Het aantal threads in het thread cache. De cache hit rate kan worden "
+"berekend met Threads_created/Connections. Indien deze waarde rood staat "
+"aangegeven is het aan te raden om thread_cache_size te vergroten."
+
+#: server_status.php:144
+msgid "The number of currently open connections."
+msgstr "Het aantal momenteel openstaande verbindingen."
+
+#: server_status.php:145
+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 "
+"doesn't give a notable performance improvement if you have a good thread "
+"implementation.)"
+msgstr ""
+"Het aantal threads dat werd aangemaakt om verbindingen af te handelen. "
+"Indien deze waarde hoog is, kan het een optie zijn om thread_cache_size te "
+"verhogen. Dit geeft echter in de meeste gevallen, bij gebruik van een goede "
+"thead implementatie, geen noemenswaardige prestatie verbetering."
+
+#: server_status.php:146
+msgid "The number of threads that are not sleeping."
+msgstr "Het aantal threads dat actief bezig is."
+
+#: server_status.php:157
msgid "Runtime Information"
msgstr "Runtime-informatie"
-#: server_status.php:250
+#: server_status.php:361
msgid "Handler"
msgstr "Handler"
-#: server_status.php:251
+#: server_status.php:362
msgid "Query cache"
msgstr "Query cache"
-#: server_status.php:252
+#: server_status.php:363
msgid "Threads"
msgstr "Threads"
-#: server_status.php:254
+#: server_status.php:365
msgid "Temporary data"
msgstr "Tijdelijke data"
-#: server_status.php:255
+#: server_status.php:366
msgid "Delayed inserts"
msgstr "Vertraagde inserts"
-#: server_status.php:256
+#: server_status.php:367
msgid "Key cache"
msgstr "Sleutelcache"
-#: server_status.php:257
+#: server_status.php:368
msgid "Joins"
msgstr "Joins"
-#: server_status.php:259
+#: server_status.php:370
msgid "Sorting"
msgstr "Sortering"
-#: server_status.php:261
+#: server_status.php:372
msgid "Transaction coordinator"
msgstr "Transactie coördinator"
-#: server_status.php:271
+#: server_status.php:382
msgid "Flush (close) all tables"
msgstr "Schoon (sluit) alle tabellen"
-#: server_status.php:273
+#: server_status.php:384
msgid "Show open tables"
msgstr "Toon open tabellen"
-#: server_status.php:278
+#: server_status.php:389
msgid "Show slave hosts"
msgstr "Toon slave hosts"
-#: server_status.php:284
+#: server_status.php:395
msgid "Show slave status"
msgstr "Toon slave status"
-#: server_status.php:289
+#: server_status.php:400
msgid "Flush query cache"
msgstr "Schoon query cache"
-#: server_status.php:294
+#: server_status.php:405
msgid "Show processes"
msgstr "Laat processen zien"
-#: server_status.php:344
+#: server_status.php:455
#, fuzzy
#| msgid "Reset"
msgctxt "for Show status"
msgid "Reset"
msgstr "Herstel"
-#: server_status.php:350
+#: server_status.php:461
#, php-format
msgid "This MySQL server has been running for %s. It started up on %s."
msgstr "Deze MySQL-server draait inmiddels %s. Hij is gestart op %s."
-#: server_status.php:360
+#: server_status.php:471
#, fuzzy
#| msgid "This server is configured as master in a replication process."
msgid ""
@@ -5986,13 +5998,13 @@ msgid ""
"b> process."
msgstr "Deze server is ingesteld als master in een replicatie proces."
-#: server_status.php:362
+#: server_status.php:473
#, fuzzy
#| msgid "This server is configured as master in a replication process."
msgid "This MySQL server works as master in replication process."
msgstr "Deze server is ingesteld als master in een replicatie proces."
-#: server_status.php:364
+#: server_status.php:475
#, fuzzy
#| msgid "This server is configured as master in a replication process."
msgid "This MySQL server works as slave in replication process."
@@ -6000,7 +6012,7 @@ msgstr "Deze server is ingesteld als master in een replicatie proces."
# Er moet een betere vertaling voor "replication" zijn. "Nadoen"?
# "Deze MySQL-server functioneert als %s in een replicatie proces." weggehaald.
-#: server_status.php:366
+#: server_status.php:477
msgid ""
"For further information about replication status on the server, please visit "
"the replication section."
@@ -6008,7 +6020,7 @@ msgstr ""
"Kijk voor meer informatie over de replicatiestatus op deze server in de replicatiestatus sectie."
-#: server_status.php:383
+#: server_status.php:494
msgid ""
"Server traffic: These tables show the network traffic statistics of "
"this MySQL server since its startup."
@@ -6016,11 +6028,11 @@ msgstr ""
"Serververkeer: Netwerkverkeer van deze MySQL-server, sinds deze is "
"gestart"
-#: server_status.php:388
+#: server_status.php:499
msgid "Traffic"
msgstr "Verkeer"
-#: server_status.php:388
+#: server_status.php:499
msgid ""
"On a busy server, the byte counters may overrun, so those statistics as "
"reported by the MySQL server may be incorrect."
@@ -6028,36 +6040,36 @@ msgstr ""
"Op drukke servers kunnen de byte-tellers over hun maximum heengaan. Hierdoor "
"kunnen de gerapporteerde statistieken afwijken."
-#: server_status.php:389 server_status.php:434 server_status.php:497
-#: server_status.php:555
+#: server_status.php:500 server_status.php:545 server_status.php:608
+#: server_status.php:666
msgid "per hour"
msgstr "per uur"
-#: server_status.php:394
+#: server_status.php:505
msgid "Received"
msgstr "Ontvangen"
-#: server_status.php:404
+#: server_status.php:515
msgid "Sent"
msgstr "Verzonden"
-#: server_status.php:433
+#: server_status.php:544
msgid "Connections"
msgstr "Connecties"
-#: server_status.php:440
+#: server_status.php:551
msgid "max. concurrent connections"
msgstr "Max. gelijktijdige verbindingen"
-#: server_status.php:447
+#: server_status.php:558
msgid "Failed attempts"
msgstr "Mislukte pogingen"
-#: server_status.php:461
+#: server_status.php:572
msgid "Aborted"
msgstr "Afgehaakte"
-#: server_status.php:490
+#: server_status.php:601
#, php-format
msgid ""
"Query statistics: Since its startup, %s queries have been sent to the "
@@ -6066,19 +6078,19 @@ msgstr ""
"Query-statistieken: Sinds het opstarten zijn er %s queries gestuurd "
"naar de server."
-#: server_status.php:498
+#: server_status.php:609
msgid "per minute"
msgstr "per minuut"
-#: server_status.php:499
+#: server_status.php:610
msgid "per second"
msgstr "per seconde"
-#: server_status.php:554
+#: server_status.php:665
msgid "Query type"
msgstr "Query-type"
-#: server_status.php:721
+#: server_status.php:832
msgid "Replication status"
msgstr "Replicatie status"
diff --git a/po/phpmyadmin.pot b/po/phpmyadmin.pot
index f721a2ec2..8399b7f1c 100755
--- a/po/phpmyadmin.pot
+++ b/po/phpmyadmin.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-06-04 16:07-0400\n"
+"POT-Creation-Date: 2010-06-08 12:32-0400\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME \n"
"Language-Team: LANGUAGE \n"
@@ -18,11 +18,11 @@ msgstr ""
"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
#: browse_foreigners.php:38 browse_foreigners.php:59
-#: libraries/display_tbl.lib.php:417 server_privileges.php:1475
+#: libraries/display_tbl.lib.php:417 server_privileges.php:1514
msgid "Show all"
msgstr ""
-#: browse_foreigners.php:82 libraries/common.lib.php:2304
+#: browse_foreigners.php:82 libraries/common.lib.php:2313
#: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:394
#: libraries/export/pdf.php:147 pdf_schema.php:283 pdf_schema.php:1123
#: pdf_schema.php:1139
@@ -38,8 +38,8 @@ msgstr ""
#: browse_foreigners.php:150 db_structure.php:79 db_structure.php:80
#: db_structure.php:91 db_structure.php:93 db_structure.php:104
-#: db_structure.php:106 libraries/common.lib.php:2822
-#: libraries/common.lib.php:2829 libraries/db_links.inc.php:75
+#: db_structure.php:106 libraries/common.lib.php:2831
+#: libraries/common.lib.php:2838 libraries/db_links.inc.php:75
#: libraries/tbl_links.inc.php:63
msgid "Search"
msgstr ""
@@ -49,7 +49,7 @@ msgstr ""
#: db_structure.php:567 js/messages.php:48 libraries/Config.class.php:1046
#: libraries/Theme_Manager.class.php:311
#: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719
-#: libraries/common.lib.php:1333 libraries/common.lib.php:2279
+#: libraries/common.lib.php:1335 libraries/common.lib.php:2288
#: libraries/display_change_password.lib.php:82
#: libraries/display_create_table.lib.php:63
#: libraries/display_export.lib.php:275 libraries/display_import.lib.php:276
@@ -60,9 +60,9 @@ msgstr ""
#: libraries/sql_query_form.lib.php:552 libraries/tbl_properties.inc.php:782
#: main.php:128 navigation.php:237 pdf_pages.php:292 pdf_pages.php:328
#: pdf_pages.php:530 pmd_pdf.php:116 server_binlog.php:142
-#: server_privileges.php:625 server_privileges.php:1585
-#: server_privileges.php:1932 server_privileges.php:1979
-#: server_privileges.php:2018 server_replication.php:235
+#: server_privileges.php:664 server_privileges.php:1624
+#: server_privileges.php:1971 server_privileges.php:2018
+#: server_privileges.php:2057 server_replication.php:235
#: server_replication.php:318 server_replication.php:341
#: server_synchronize.php:1209 tbl_change.php:330 tbl_change.php:1174
#: tbl_change.php:1211 tbl_indexes.php:254 tbl_operations.php:265
@@ -80,7 +80,7 @@ msgstr ""
#: browse_foreigners.php:169 browse_foreigners.php:171
#: server_collations.php:55 server_collations.php:67 server_engines.php:59
-#: server_status.php:628
+#: server_status.php:739
msgid "Description"
msgstr ""
@@ -119,7 +119,7 @@ msgstr ""
#: libraries/db_structure.lib.php:60 libraries/export/htmlword.php:245
#: libraries/export/latex.php:360 libraries/export/odt.php:297
#: libraries/export/texytext.php:234 libraries/tbl_properties.inc.php:100
-#: pdf_schema.php:1263 pdf_schema.php:1284 server_privileges.php:2031
+#: pdf_schema.php:1263 pdf_schema.php:1284 server_privileges.php:2070
#: tbl_change.php:287 tbl_change.php:314 tbl_printview.php:143
#: tbl_printview.php:313 tbl_select.php:136 tbl_structure.php:178
#: tbl_structure.php:659 tbl_tracking.php:274 tbl_tracking.php:321
@@ -163,9 +163,9 @@ msgstr ""
#: libraries/Index.class.php:386 libraries/export/htmlword.php:322
#: libraries/export/latex.php:430 libraries/export/odt.php:368
#: libraries/export/texytext.php:311 libraries/mult_submits.inc.php:263
-#: pdf_schema.php:1344 server_privileges.php:1529 server_privileges.php:1540
-#: server_privileges.php:1850 server_privileges.php:1855
-#: server_privileges.php:2148 sql.php:132 sql.php:194 tbl_printview.php:229
+#: pdf_schema.php:1344 server_privileges.php:1568 server_privileges.php:1579
+#: server_privileges.php:1889 server_privileges.php:1894
+#: server_privileges.php:2187 sql.php:132 sql.php:194 tbl_printview.php:229
#: tbl_structure.php:350 tbl_tracking.php:337 tbl_tracking.php:342
msgid "No"
msgstr ""
@@ -179,9 +179,9 @@ msgstr ""
#: libraries/mult_submits.inc.php:101 libraries/mult_submits.inc.php:106
#: libraries/mult_submits.inc.php:111 libraries/mult_submits.inc.php:262
#: libraries/mult_submits.inc.php:273 pdf_schema.php:1344
-#: server_databases.php:64 server_privileges.php:1526
-#: server_privileges.php:1540 server_privileges.php:1850
-#: server_privileges.php:1853 server_privileges.php:2148 sql.php:193
+#: server_databases.php:64 server_privileges.php:1565
+#: server_privileges.php:1579 server_privileges.php:1889
+#: server_privileges.php:1892 server_privileges.php:2187 sql.php:193
#: tbl_printview.php:229 tbl_structure.php:40 tbl_structure.php:350
#: tbl_tracking.php:335 tbl_tracking.php:340
msgid "Yes"
@@ -278,7 +278,7 @@ msgstr ""
msgid "BLOB Repository"
msgstr ""
-#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1350
+#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1352
#: libraries/server_links.inc.php:49 server_processlist.php:59
#: tbl_tracking.php:596 test/theme.php:101
msgid "Status"
@@ -333,8 +333,8 @@ msgstr ""
#: db_printview.php:104 db_tracking.php:72 db_tracking.php:157
#: libraries/db_structure.lib.php:46 libraries/export/xml.php:328
-#: libraries/header.inc.php:126 pdf_pages.php:424 server_privileges.php:1626
-#: server_privileges.php:1682 server_privileges.php:1946
+#: libraries/header.inc.php:126 pdf_pages.php:424 server_privileges.php:1665
+#: server_privileges.php:1721 server_privileges.php:1985
#: server_synchronize.php:423 server_synchronize.php:866 tbl_tracking.php:592
#: test/theme.php:75
msgid "Table"
@@ -434,7 +434,7 @@ msgstr ""
#: db_qbe.php:370 db_qbe.php:451 db_qbe.php:522 db_qbe.php:553
#: libraries/display_import.lib.php:166 libraries/tbl_properties.inc.php:779
-#: server_privileges.php:258 tbl_change.php:1031 tbl_indexes.php:250
+#: server_privileges.php:297 tbl_change.php:1031 tbl_indexes.php:250
#: tbl_select.php:288
msgid "Or"
msgstr ""
@@ -464,7 +464,7 @@ msgstr ""
msgid "SQL query on database %s:"
msgstr ""
-#: db_qbe.php:934 libraries/common.lib.php:1223
+#: db_qbe.php:934 libraries/common.lib.php:1225
msgid "Submit Query"
msgstr ""
@@ -503,7 +503,7 @@ msgstr ""
#: db_search.php:267 db_structure.php:77 db_structure.php:78
#: db_structure.php:90 db_structure.php:92 db_structure.php:103
-#: db_structure.php:105 libraries/common.lib.php:2824
+#: db_structure.php:105 libraries/common.lib.php:2833
#: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50
#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:467
msgid "Browse"
@@ -548,26 +548,26 @@ msgstr ""
#: db_structure.php:81 db_structure.php:82 db_structure.php:94
#: db_structure.php:95 db_structure.php:107 db_structure.php:108
-#: libraries/common.lib.php:2823 libraries/sql_query_form.lib.php:334
+#: libraries/common.lib.php:2832 libraries/sql_query_form.lib.php:334
#: libraries/sql_query_form.lib.php:337 libraries/tbl_links.inc.php:76
msgid "Insert"
msgstr ""
#: db_structure.php:83 db_structure.php:96 db_structure.php:109
-#: libraries/common.lib.php:2820 libraries/common.lib.php:2827
+#: libraries/common.lib.php:2829 libraries/common.lib.php:2836
#: libraries/db_links.inc.php:63 libraries/export/htmlword.php:23
#: libraries/export/latex.php:33 libraries/export/latex.php:337
#: libraries/export/odt.php:32 libraries/export/sql.php:60
#: libraries/export/texytext.php:23 libraries/import.lib.php:1104
#: libraries/tbl_links.inc.php:56 pmd_general.php:134
-#: server_privileges.php:554 server_replication.php:315 tbl_tracking.php:269
+#: server_privileges.php:593 server_replication.php:315 tbl_tracking.php:269
msgid "Structure"
msgstr ""
#: db_structure.php:84 db_structure.php:85 db_structure.php:97
#: db_structure.php:98 db_structure.php:110 db_structure.php:111
#: db_structure.php:545 db_structure.php:546 db_tracking.php:91
-#: libraries/Index.class.php:483 libraries/common.lib.php:1654
+#: libraries/Index.class.php:483 libraries/common.lib.php:1656
#: libraries/db_links.inc.php:100 libraries/mult_submits.inc.php:36
#: libraries/mult_submits.inc.php:73 libraries/tbl_links.inc.php:127
#: server_databases.php:352 tbl_structure.php:27 tbl_structure.php:151
@@ -577,7 +577,7 @@ msgstr ""
#: db_structure.php:86 db_structure.php:87 db_structure.php:99
#: db_structure.php:100 db_structure.php:112 db_structure.php:113
-#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1653
+#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1655
#: libraries/mult_submits.inc.php:39 libraries/tbl_links.inc.php:105
msgid "Empty"
msgstr ""
@@ -619,7 +619,7 @@ msgstr ""
#: db_structure.php:485 libraries/db_structure.lib.php:49
#: libraries/server_links.inc.php:70 server_replication.php:33
-#: server_replication.php:164 server_status.php:258
+#: server_replication.php:164 server_status.php:369
msgid "Replication"
msgstr ""
@@ -635,20 +635,20 @@ msgstr ""
#: db_structure.php:524 db_structure.php:541 db_structure.php:542
#: libraries/display_tbl.lib.php:2081 libraries/display_tbl.lib.php:2086
#: libraries/mult_submits.inc.php:16 server_databases.php:346
-#: server_databases.php:351 server_privileges.php:1557 tbl_structure.php:455
+#: server_databases.php:351 server_privileges.php:1596 tbl_structure.php:455
#: tbl_structure.php:464
msgid "With selected:"
msgstr ""
#: db_structure.php:527 libraries/display_tbl.lib.php:2076
-#: server_databases.php:348 server_privileges.php:530
-#: server_privileges.php:1560 tbl_structure.php:458
+#: server_databases.php:348 server_privileges.php:569
+#: server_privileges.php:1599 tbl_structure.php:458
msgid "Check All"
msgstr ""
#: db_structure.php:531 libraries/display_tbl.lib.php:2077
#: libraries/replication_gui.lib.php:33 server_databases.php:350
-#: server_privileges.php:533 server_privileges.php:1564 tbl_structure.php:462
+#: server_privileges.php:572 server_privileges.php:1603 tbl_structure.php:462
msgid "Uncheck All"
msgstr ""
@@ -686,7 +686,7 @@ msgstr ""
#: libraries/display_export.lib.php:83 libraries/display_tbl.lib.php:2094
#: libraries/display_tbl.lib.php:2225 libraries/mult_submits.inc.php:62
#: libraries/server_links.inc.php:84 libraries/tbl_links.inc.php:82
-#: pmd_pdf.php:84 pmd_pdf.php:109 server_privileges.php:1341
+#: pmd_pdf.php:84 pmd_pdf.php:109 server_privileges.php:1380
#: setup/frames/menu.inc.php:22 tbl_row_action.php:59
msgid "Export"
msgstr ""
@@ -704,8 +704,8 @@ msgstr ""
#: libraries/export/sql.php:342 libraries/export/texytext.php:84
#: libraries/export/xml.php:255 libraries/header.inc.php:106
#: libraries/header_printview.inc.php:58 server_databases.php:169
-#: server_privileges.php:1621 server_privileges.php:1682
-#: server_privileges.php:1940 server_processlist.php:56
+#: server_privileges.php:1660 server_privileges.php:1721
+#: server_privileges.php:1979 server_processlist.php:56
#: server_synchronize.php:1179 server_synchronize.php:1183
#: tbl_tracking.php:591 test/theme.php:65
msgid "Database"
@@ -725,8 +725,8 @@ msgstr ""
#: db_tracking.php:77 libraries/Index.class.php:440
#: libraries/db_structure.lib.php:53 server_databases.php:203
-#: server_privileges.php:1503 server_privileges.php:1686
-#: server_privileges.php:2034 tbl_structure.php:187
+#: server_privileges.php:1542 server_privileges.php:1725
+#: server_privileges.php:2073 tbl_structure.php:187
msgid "Action"
msgstr ""
@@ -913,11 +913,11 @@ msgstr ""
msgid "The user name is empty!"
msgstr ""
-#: js/messages.php:44 server_privileges.php:1197 user_password.php:70
+#: js/messages.php:44 server_privileges.php:1236 user_password.php:70
msgid "The password is empty!"
msgstr ""
-#: js/messages.php:45 server_privileges.php:1195 user_password.php:73
+#: js/messages.php:45 server_privileges.php:1234 user_password.php:73
msgid "The passwords aren't the same!"
msgstr ""
@@ -990,8 +990,8 @@ msgid "Prev"
msgstr ""
#. l10n: Display text for next month link in calendar
-#: js/messages.php:77 libraries/common.lib.php:2344
-#: libraries/common.lib.php:2347 libraries/display_tbl.lib.php:338
+#: js/messages.php:77 libraries/common.lib.php:2353
+#: libraries/common.lib.php:2356 libraries/display_tbl.lib.php:338
#: server_binlog.php:205 server_binlog.php:207 tbl_printview.php:424
#: tbl_structure.php:801
msgid "Next"
@@ -1051,63 +1051,63 @@ msgid "December"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:97 libraries/common.lib.php:1555
+#: js/messages.php:97 libraries/common.lib.php:1557
msgid "Jan"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:99 libraries/common.lib.php:1557
+#: js/messages.php:99 libraries/common.lib.php:1559
msgid "Feb"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:101 libraries/common.lib.php:1559
+#: js/messages.php:101 libraries/common.lib.php:1561
msgid "Mar"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:103 libraries/common.lib.php:1561
+#: js/messages.php:103 libraries/common.lib.php:1563
msgid "Apr"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:105 libraries/common.lib.php:1563
+#: js/messages.php:105 libraries/common.lib.php:1565
msgctxt "Short month name"
msgid "May"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:107 libraries/common.lib.php:1565
+#: js/messages.php:107 libraries/common.lib.php:1567
msgid "Jun"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:109 libraries/common.lib.php:1567
+#: js/messages.php:109 libraries/common.lib.php:1569
msgid "Jul"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:111 libraries/common.lib.php:1569
+#: js/messages.php:111 libraries/common.lib.php:1571
msgid "Aug"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:113 libraries/common.lib.php:1571
+#: js/messages.php:113 libraries/common.lib.php:1573
msgid "Sep"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:115 libraries/common.lib.php:1573
+#: js/messages.php:115 libraries/common.lib.php:1575
msgid "Oct"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:117 libraries/common.lib.php:1575
+#: js/messages.php:117 libraries/common.lib.php:1577
msgid "Nov"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:119 libraries/common.lib.php:1577
+#: js/messages.php:119 libraries/common.lib.php:1579
msgid "Dec"
msgstr ""
@@ -1140,37 +1140,37 @@ msgid "Saturday"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:132 libraries/common.lib.php:1580
+#: js/messages.php:132 libraries/common.lib.php:1582
msgid "Sun"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:134 libraries/common.lib.php:1582
+#: js/messages.php:134 libraries/common.lib.php:1584
msgid "Mon"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:136 libraries/common.lib.php:1584
+#: js/messages.php:136 libraries/common.lib.php:1586
msgid "Tue"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:138 libraries/common.lib.php:1586
+#: js/messages.php:138 libraries/common.lib.php:1588
msgid "Wed"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:140 libraries/common.lib.php:1588
+#: js/messages.php:140 libraries/common.lib.php:1590
msgid "Thu"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:142 libraries/common.lib.php:1590
+#: js/messages.php:142 libraries/common.lib.php:1592
msgid "Fri"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:144 libraries/common.lib.php:1592
+#: js/messages.php:144 libraries/common.lib.php:1594
msgid "Sat"
msgstr ""
@@ -1295,7 +1295,7 @@ msgid "Comment"
msgstr ""
#: libraries/Index.class.php:466 libraries/common.lib.php:616
-#: libraries/common.lib.php:1199 libraries/display_tbl.lib.php:1117
+#: libraries/common.lib.php:1201 libraries/display_tbl.lib.php:1117
#: libraries/import.lib.php:1087 libraries/import.lib.php:1111
#: pdf_pages.php:285 setup/frames/index.inc.php:124
#: setup/lib/messages.inc.php:352 tbl_row_action.php:69
@@ -1319,7 +1319,7 @@ msgid ""
msgstr ""
#: libraries/List_Database.class.php:431 libraries/server_links.inc.php:41
-#: server_databases.php:88 server_privileges.php:1621
+#: server_databases.php:88 server_privileges.php:1660
#: setup/lib/messages.inc.php:110 test/theme.php:93
msgid "Databases"
msgstr ""
@@ -1629,7 +1629,7 @@ msgid "Documentation"
msgstr ""
#: libraries/common.lib.php:595 libraries/header_printview.inc.php:61
-#: server_processlist.php:60 server_status.php:247
+#: server_processlist.php:60 server_status.php:358
msgid "SQL query"
msgstr ""
@@ -1645,128 +1645,128 @@ msgstr ""
msgid "Skip Explain SQL"
msgstr ""
-#: libraries/common.lib.php:1212
+#: libraries/common.lib.php:1214
msgid "Without PHP Code"
msgstr ""
-#: libraries/common.lib.php:1215 setup/lib/messages.inc.php:355
+#: libraries/common.lib.php:1217 setup/lib/messages.inc.php:355
msgid "Create PHP Code"
msgstr ""
-#: libraries/common.lib.php:1233 server_status.php:341
+#: libraries/common.lib.php:1235 server_status.php:452
#: setup/lib/messages.inc.php:354
msgid "Refresh"
msgstr ""
-#: libraries/common.lib.php:1242
+#: libraries/common.lib.php:1244
msgid "Skip Validate SQL"
msgstr ""
-#: libraries/common.lib.php:1245 setup/lib/messages.inc.php:356 sql.php:518
+#: libraries/common.lib.php:1247 setup/lib/messages.inc.php:356 sql.php:518
msgid "Validate SQL"
msgstr ""
-#: libraries/common.lib.php:1276
+#: libraries/common.lib.php:1278
msgid "Inline edit of this query"
msgstr ""
-#: libraries/common.lib.php:1278
+#: libraries/common.lib.php:1280
msgid "Inline"
msgstr ""
-#: libraries/common.lib.php:1332 libraries/common.lib.php:1347
+#: libraries/common.lib.php:1334 libraries/common.lib.php:1349
msgid "Profiling"
msgstr ""
-#: libraries/common.lib.php:1351 libraries/tbl_triggers.lib.php:28
+#: libraries/common.lib.php:1353 libraries/tbl_triggers.lib.php:28
#: server_processlist.php:58
msgid "Time"
msgstr ""
#. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "B"
msgstr ""
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "KiB"
msgstr ""
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "MiB"
msgstr ""
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "GiB"
msgstr ""
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "TiB"
msgstr ""
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "PiB"
msgstr ""
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "EiB"
msgstr ""
#. l10n: Thousands separator
-#: libraries/common.lib.php:1417
+#: libraries/common.lib.php:1419
msgid ","
msgstr ""
#. l10n: Decimal separator
-#: libraries/common.lib.php:1419
+#: libraries/common.lib.php:1421
msgid "."
msgstr ""
#. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string
-#: libraries/common.lib.php:1596
+#: libraries/common.lib.php:1598
#: libraries/transformations/text_plain__dateformat.inc.php:34
msgid "%B %d, %Y at %I:%M %p"
msgstr ""
-#: libraries/common.lib.php:1898
+#: libraries/common.lib.php:1907
#, possible-php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr ""
-#: libraries/common.lib.php:2313 libraries/common.lib.php:2316
-#: libraries/display_tbl.lib.php:290 server_status.php:608
+#: libraries/common.lib.php:2322 libraries/common.lib.php:2325
+#: libraries/display_tbl.lib.php:290 server_status.php:719
msgid "Begin"
msgstr ""
-#: libraries/common.lib.php:2314 libraries/common.lib.php:2317
+#: libraries/common.lib.php:2323 libraries/common.lib.php:2326
#: libraries/display_tbl.lib.php:291 server_binlog.php:168
#: server_binlog.php:170
msgid "Previous"
msgstr ""
-#: libraries/common.lib.php:2345 libraries/common.lib.php:2348
+#: libraries/common.lib.php:2354 libraries/common.lib.php:2357
#: libraries/display_tbl.lib.php:353
msgid "End"
msgstr ""
-#: libraries/common.lib.php:2421
+#: libraries/common.lib.php:2430
#, possible-php-format
msgid "Jump to database "%s"."
msgstr ""
-#: libraries/common.lib.php:2441
+#: libraries/common.lib.php:2450
#, possible-php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr ""
-#: libraries/common.lib.php:2821 libraries/common.lib.php:2828
+#: libraries/common.lib.php:2830 libraries/common.lib.php:2837
#: libraries/db_links.inc.php:68 libraries/export/sql.php:25
#: libraries/import/sql.php:18 libraries/server_links.inc.php:45
#: libraries/tbl_links.inc.php:60 querywindow.php:99 test/theme.php:97
msgid "SQL"
msgstr ""
-#: libraries/common.lib.php:2830 libraries/db_links.inc.php:104
+#: libraries/common.lib.php:2839 libraries/db_links.inc.php:104
#: libraries/tbl_links.inc.php:95 libraries/tbl_links.inc.php:117
#: view_operations.php:89
msgid "Operations"
@@ -1820,8 +1820,8 @@ msgid "Import"
msgstr ""
#: libraries/db_links.inc.php:111 libraries/server_links.inc.php:66
-#: server_privileges.php:72 server_privileges.php:1683
-#: server_privileges.php:2032 test/theme.php:117
+#: server_privileges.php:111 server_privileges.php:1722
+#: server_privileges.php:2071 test/theme.php:117
msgid "Privileges"
msgstr ""
@@ -1867,22 +1867,22 @@ msgid "Change password"
msgstr ""
#: libraries/display_change_password.lib.php:35
-#: libraries/replication_gui.lib.php:345 server_privileges.php:768
+#: libraries/replication_gui.lib.php:345 server_privileges.php:807
msgid "No Password"
msgstr ""
#: libraries/display_change_password.lib.php:41
#: libraries/replication_gui.lib.php:59 libraries/replication_gui.lib.php:60
#: libraries/replication_gui.lib.php:335 libraries/replication_gui.lib.php:339
-#: libraries/replication_gui.lib.php:349 server_privileges.php:757
-#: server_privileges.php:761 server_privileges.php:772
-#: server_privileges.php:1499 server_synchronize.php:1175
+#: libraries/replication_gui.lib.php:349 server_privileges.php:796
+#: server_privileges.php:800 server_privileges.php:811
+#: server_privileges.php:1538 server_synchronize.php:1175
msgid "Password"
msgstr ""
#: libraries/display_change_password.lib.php:46
#: libraries/replication_gui.lib.php:353 libraries/replication_gui.lib.php:356
-#: server_privileges.php:776 server_privileges.php:779
+#: server_privileges.php:815 server_privileges.php:818
msgid "Re-type"
msgstr ""
@@ -1895,12 +1895,12 @@ msgid "MySQL 4.0 compatible"
msgstr ""
#: libraries/display_change_password.lib.php:72
-#: libraries/replication_gui.lib.php:360 server_privileges.php:783
+#: libraries/replication_gui.lib.php:360 server_privileges.php:822
msgid "Generate Password"
msgstr ""
#: libraries/display_change_password.lib.php:75
-#: libraries/replication_gui.lib.php:363 server_privileges.php:786
+#: libraries/replication_gui.lib.php:363 server_privileges.php:825
msgid "Generate"
msgstr ""
@@ -1913,8 +1913,8 @@ msgstr ""
msgid "Create"
msgstr ""
-#: libraries/display_create_database.lib.php:40 server_privileges.php:74
-#: server_privileges.php:1388 server_replication.php:35
+#: libraries/display_create_database.lib.php:40 server_privileges.php:113
+#: server_privileges.php:1427 server_replication.php:35
msgid "No Privileges"
msgstr ""
@@ -1997,7 +1997,7 @@ msgstr ""
#: libraries/display_export.lib.php:240 libraries/display_import.lib.php:197
#: libraries/display_import.lib.php:210 libraries/display_tbl.lib.php:530
#: libraries/export/sql.php:868 libraries/tbl_properties.inc.php:575
-#: server_privileges.php:1836 server_processlist.php:75
+#: server_privileges.php:1875 server_processlist.php:75
msgid "None"
msgstr ""
@@ -2310,7 +2310,7 @@ msgstr ""
msgid "Buffer Pool"
msgstr ""
-#: libraries/engines/innodb.lib.php:145 server_status.php:306
+#: libraries/engines/innodb.lib.php:145 server_status.php:417
msgid "InnoDB Status"
msgstr ""
@@ -2319,8 +2319,8 @@ msgid "Buffer Pool Usage"
msgstr ""
#: libraries/engines/innodb.lib.php:194 server_databases.php:137
-#: server_databases.php:305 server_status.php:414 server_status.php:475
-#: server_status.php:496 tbl_printview.php:351 tbl_structure.php:696
+#: server_databases.php:305 server_status.php:525 server_status.php:586
+#: server_status.php:607 tbl_printview.php:351 tbl_structure.php:696
msgid "Total"
msgstr ""
@@ -2629,7 +2629,7 @@ msgstr ""
#: libraries/export/latex.php:201 libraries/export/odt.php:48
#: libraries/export/sql.php:106 libraries/export/sql.php:868
#: libraries/export/texytext.php:27 server_databases.php:127
-#: server_privileges.php:537 server_replication.php:316 tbl_printview.php:317
+#: server_privileges.php:576 server_replication.php:316 tbl_printview.php:317
#: tbl_structure.php:665
msgid "Data"
msgstr ""
@@ -2679,9 +2679,9 @@ msgstr ""
#: libraries/export/xml.php:102 libraries/header_printview.inc.php:57
#: libraries/replication_gui.lib.php:63 libraries/replication_gui.lib.php:174
#: libraries/replication_gui.lib.php:269 libraries/replication_gui.lib.php:272
-#: libraries/replication_gui.lib.php:329 server_privileges.php:692
-#: server_privileges.php:695 server_privileges.php:751
-#: server_privileges.php:1498 server_privileges.php:2030
+#: libraries/replication_gui.lib.php:329 server_privileges.php:731
+#: server_privileges.php:734 server_privileges.php:790
+#: server_privileges.php:1537 server_privileges.php:2069
#: server_processlist.php:55 server_synchronize.php:1159
msgid "Host"
msgstr ""
@@ -3027,736 +3027,6 @@ msgstr ""
msgid "Convert to Kana"
msgstr ""
-#. l10n: Text direction, use either ltr or rtl
-#: libraries/messages.inc.php:19
-msgid "ltr"
-msgstr ""
-
-#: libraries/messages.inc.php:21
-msgid "Content of table __TABLE__"
-msgstr ""
-
-#: libraries/messages.inc.php:22
-msgid "(continued)"
-msgstr ""
-
-#: libraries/messages.inc.php:23
-msgid "Structure of table __TABLE__"
-msgstr ""
-
-#: libraries/messages.inc.php:25 server_privileges.php:227
-msgid "Includes all privileges except GRANT."
-msgstr ""
-
-#: libraries/messages.inc.php:26 server_privileges.php:153
-#: server_privileges.php:476
-msgid "Allows altering the structure of existing tables."
-msgstr ""
-
-#: libraries/messages.inc.php:27 server_privileges.php:169
-#: server_privileges.php:482
-msgid "Allows altering and dropping stored routines."
-msgstr ""
-
-#: libraries/messages.inc.php:28 server_privileges.php:145
-#: server_privileges.php:475
-msgid "Allows creating new databases and tables."
-msgstr ""
-
-#: libraries/messages.inc.php:29 server_privileges.php:168
-#: server_privileges.php:481
-msgid "Allows creating stored routines."
-msgstr ""
-
-#: libraries/messages.inc.php:30 server_privileges.php:475
-msgid "Allows creating new tables."
-msgstr ""
-
-#: libraries/messages.inc.php:31 server_privileges.php:156
-#: server_privileges.php:479
-msgid "Allows creating temporary tables."
-msgstr ""
-
-#: libraries/messages.inc.php:32 server_privileges.php:170
-#: server_privileges.php:515
-msgid "Allows creating, dropping and renaming user accounts."
-msgstr ""
-
-#: libraries/messages.inc.php:33 server_privileges.php:160
-#: server_privileges.php:164 server_privileges.php:487
-#: server_privileges.php:491
-msgid "Allows creating new views."
-msgstr ""
-
-#: libraries/messages.inc.php:34 server_privileges.php:144
-#: server_privileges.php:467
-msgid "Allows deleting data."
-msgstr ""
-
-#: libraries/messages.inc.php:35 server_privileges.php:146
-#: server_privileges.php:478
-msgid "Allows dropping databases and tables."
-msgstr ""
-
-#: libraries/messages.inc.php:36 server_privileges.php:478
-msgid "Allows dropping tables."
-msgstr ""
-
-#: libraries/messages.inc.php:37 server_privileges.php:161
-#: server_privileges.php:495
-msgid "Allows to set up events for the event scheduler"
-msgstr ""
-
-#: libraries/messages.inc.php:38 server_privileges.php:171
-#: server_privileges.php:483
-msgid "Allows executing stored routines."
-msgstr ""
-
-#: libraries/messages.inc.php:39 server_privileges.php:150
-#: server_privileges.php:470
-msgid "Allows importing data from and exporting data into files."
-msgstr ""
-
-#: libraries/messages.inc.php:40 server_privileges.php:501
-msgid ""
-"Allows adding users and privileges without reloading the privilege tables."
-msgstr ""
-
-#: libraries/messages.inc.php:41 server_privileges.php:152
-#: server_privileges.php:477
-msgid "Allows creating and dropping indexes."
-msgstr ""
-
-#: libraries/messages.inc.php:42 server_privileges.php:142
-#: server_privileges.php:403 server_privileges.php:465
-msgid "Allows inserting and replacing data."
-msgstr ""
-
-#: libraries/messages.inc.php:43 server_privileges.php:157
-#: server_privileges.php:510
-msgid "Allows locking tables for the current thread."
-msgstr ""
-
-#: libraries/messages.inc.php:44 server_privileges.php:607
-#: server_privileges.php:609
-msgid "Limits the number of new connections the user may open per hour."
-msgstr ""
-
-#: libraries/messages.inc.php:45 server_privileges.php:595
-#: server_privileges.php:597
-msgid "Limits the number of queries the user may send to the server per hour."
-msgstr ""
-
-#: libraries/messages.inc.php:46 server_privileges.php:601
-#: server_privileges.php:603
-msgid ""
-"Limits the number of commands that change any table or database the user may "
-"execute per hour."
-msgstr ""
-
-#: libraries/messages.inc.php:47 server_privileges.php:613
-#: server_privileges.php:615
-msgid "Limits the number of simultaneous connections the user may have."
-msgstr ""
-
-#: libraries/messages.inc.php:48 server_privileges.php:149
-#: server_privileges.php:505
-msgid "Allows viewing processes of all users"
-msgstr ""
-
-#: libraries/messages.inc.php:49 server_privileges.php:151
-#: server_privileges.php:409 server_privileges.php:511
-msgid "Has no effect in this MySQL version."
-msgstr ""
-
-#: libraries/messages.inc.php:50 server_privileges.php:147
-#: server_privileges.php:506
-msgid "Allows reloading server settings and flushing the server's caches."
-msgstr ""
-
-#: libraries/messages.inc.php:51 server_privileges.php:159
-#: server_privileges.php:513
-msgid "Allows the user to ask where the slaves / masters are."
-msgstr ""
-
-#: libraries/messages.inc.php:52 server_privileges.php:158
-#: server_privileges.php:514
-msgid "Needed for the replication slaves."
-msgstr ""
-
-#: libraries/messages.inc.php:53 server_privileges.php:141
-#: server_privileges.php:400 server_privileges.php:464
-msgid "Allows reading data."
-msgstr ""
-
-#: libraries/messages.inc.php:54 server_privileges.php:154
-#: server_privileges.php:508
-msgid "Gives access to the complete list of databases."
-msgstr ""
-
-#: libraries/messages.inc.php:55 server_privileges.php:165
-#: server_privileges.php:167 server_privileges.php:480
-msgid "Allows performing SHOW CREATE VIEW queries."
-msgstr ""
-
-#: libraries/messages.inc.php:56 server_privileges.php:148
-#: server_privileges.php:507
-msgid "Allows shutting down the server."
-msgstr ""
-
-#: libraries/messages.inc.php:57 server_privileges.php:155
-#: server_privileges.php:504
-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/messages.inc.php:58 server_privileges.php:162
-#: server_privileges.php:496
-msgid "Allows creating and dropping triggers"
-msgstr ""
-
-#: libraries/messages.inc.php:59 server_privileges.php:143
-#: server_privileges.php:406 server_privileges.php:466
-msgid "Allows changing data."
-msgstr ""
-
-#: libraries/messages.inc.php:60 server_privileges.php:221
-msgid "No privileges."
-msgstr ""
-
-#: libraries/messages.inc.php:62
-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/messages.inc.php:63
-msgid "The number of transactions that used the temporary binary log cache."
-msgstr ""
-
-#: libraries/messages.inc.php:64
-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 "
-"to increase the tmp_table_size value to cause temporary tables to be memory-"
-"based instead of disk-based."
-msgstr ""
-
-#: libraries/messages.inc.php:65
-msgid "How many temporary files mysqld has created."
-msgstr ""
-
-#: libraries/messages.inc.php:66
-msgid ""
-"The number of in-memory temporary tables created automatically by the server "
-"while executing statements."
-msgstr ""
-
-#: libraries/messages.inc.php:67
-msgid ""
-"The number of rows written with INSERT DELAYED for which some error occurred "
-"(probably duplicate key)."
-msgstr ""
-
-#: libraries/messages.inc.php:68
-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/messages.inc.php:69
-msgid "The number of INSERT DELAYED rows written."
-msgstr ""
-
-#: libraries/messages.inc.php:70
-msgid "The number of executed FLUSH statements."
-msgstr ""
-
-#: libraries/messages.inc.php:71
-msgid "The number of internal COMMIT statements."
-msgstr ""
-
-#: libraries/messages.inc.php:72
-msgid "The number of times a row was deleted from a table."
-msgstr ""
-
-#: libraries/messages.inc.php:73
-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/messages.inc.php:74
-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/messages.inc.php:75
-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/messages.inc.php:76
-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/messages.inc.php:77
-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/messages.inc.php:78
-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 "
-"probably have a lot of queries that require MySQL to scan whole tables or "
-"you have joins that don't use keys properly."
-msgstr ""
-
-#: libraries/messages.inc.php:79
-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 "
-"tables are not properly indexed or that your queries are not written to take "
-"advantage of the indexes you have."
-msgstr ""
-
-#: libraries/messages.inc.php:80
-msgid "The number of internal ROLLBACK statements."
-msgstr ""
-
-#: libraries/messages.inc.php:81
-msgid "The number of requests to update a row in a table."
-msgstr ""
-
-#: libraries/messages.inc.php:82
-msgid "The number of requests to insert a row in a table."
-msgstr ""
-
-#: libraries/messages.inc.php:83
-msgid "The number of pages containing data (dirty or clean)."
-msgstr ""
-
-#: libraries/messages.inc.php:84
-msgid "The number of pages currently dirty."
-msgstr ""
-
-#: libraries/messages.inc.php:85
-msgid "The number of buffer pool pages that have been requested to be flushed."
-msgstr ""
-
-#: libraries/messages.inc.php:86
-msgid "The number of free pages."
-msgstr ""
-
-#: libraries/messages.inc.php:87
-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/messages.inc.php:88
-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 "
-"be calculated as Innodb_buffer_pool_pages_total - "
-"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data."
-msgstr ""
-
-#: libraries/messages.inc.php:89
-msgid "Total size of buffer pool, in pages."
-msgstr ""
-
-#: libraries/messages.inc.php:90
-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/messages.inc.php:91
-msgid ""
-"The number of sequential read-aheads InnoDB initiated. This happens when "
-"InnoDB does a sequential full table scan."
-msgstr ""
-
-#: libraries/messages.inc.php:92
-msgid "The number of logical read requests InnoDB has done."
-msgstr ""
-
-#: libraries/messages.inc.php:93
-msgid ""
-"The number of logical reads that InnoDB could not satisfy from buffer pool "
-"and had to do a single-page read."
-msgstr ""
-
-#: libraries/messages.inc.php:94
-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 "
-"available, it's necessary to wait for pages to be flushed first. This "
-"counter counts instances of these waits. If the buffer pool size was set "
-"properly, this value should be small."
-msgstr ""
-
-#: libraries/messages.inc.php:95
-msgid "The number writes done to the InnoDB buffer pool."
-msgstr ""
-
-#: libraries/messages.inc.php:96
-msgid "The number of fsync() operations so far."
-msgstr ""
-
-#: libraries/messages.inc.php:97
-msgid "The current number of pending fsync() operations."
-msgstr ""
-
-#: libraries/messages.inc.php:98
-msgid "The current number of pending reads."
-msgstr ""
-
-#: libraries/messages.inc.php:99
-msgid "The current number of pending writes."
-msgstr ""
-
-#: libraries/messages.inc.php:100
-msgid "The amount of data read so far, in bytes."
-msgstr ""
-
-#: libraries/messages.inc.php:101
-msgid "The total number of data reads."
-msgstr ""
-
-#: libraries/messages.inc.php:102
-msgid "The total number of data writes."
-msgstr ""
-
-#: libraries/messages.inc.php:103
-msgid "The amount of data written so far, in bytes."
-msgstr ""
-
-#: libraries/messages.inc.php:104
-msgid "The number of pages that have been written for doublewrite operations."
-msgstr ""
-
-#: libraries/messages.inc.php:105
-msgid "The number of doublewrite operations that have been performed."
-msgstr ""
-
-#: libraries/messages.inc.php:106
-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/messages.inc.php:107
-msgid "The number of log write requests."
-msgstr ""
-
-#: libraries/messages.inc.php:108
-msgid "The number of physical writes to the log file."
-msgstr ""
-
-#: libraries/messages.inc.php:109
-msgid "The number of fsync() writes done to the log file."
-msgstr ""
-
-#: libraries/messages.inc.php:110
-msgid "The number of pending log file fsyncs."
-msgstr ""
-
-#: libraries/messages.inc.php:111
-msgid "Pending log file writes."
-msgstr ""
-
-#: libraries/messages.inc.php:112
-msgid "The number of bytes written to the log file."
-msgstr ""
-
-#: libraries/messages.inc.php:113
-msgid "The number of pages created."
-msgstr ""
-
-#: libraries/messages.inc.php:114
-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/messages.inc.php:115
-msgid "The number of pages read."
-msgstr ""
-
-#: libraries/messages.inc.php:116
-msgid "The number of pages written."
-msgstr ""
-
-#: libraries/messages.inc.php:117
-msgid "The number of row locks currently being waited for."
-msgstr ""
-
-#: libraries/messages.inc.php:118
-msgid "The average time to acquire a row lock, in milliseconds."
-msgstr ""
-
-#: libraries/messages.inc.php:119
-msgid "The total time spent in acquiring row locks, in milliseconds."
-msgstr ""
-
-#: libraries/messages.inc.php:120
-msgid "The maximum time to acquire a row lock, in milliseconds."
-msgstr ""
-
-#: libraries/messages.inc.php:121
-msgid "The number of times a row lock had to be waited for."
-msgstr ""
-
-#: libraries/messages.inc.php:122
-msgid "The number of rows deleted from InnoDB tables."
-msgstr ""
-
-#: libraries/messages.inc.php:123
-msgid "The number of rows inserted in InnoDB tables."
-msgstr ""
-
-#: libraries/messages.inc.php:124
-msgid "The number of rows read from InnoDB tables."
-msgstr ""
-
-#: libraries/messages.inc.php:125
-msgid "The number of rows updated in InnoDB tables."
-msgstr ""
-
-#: libraries/messages.inc.php:126
-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/messages.inc.php:127
-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/messages.inc.php:128
-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/messages.inc.php:129
-msgid "The number of requests to read a key block from the cache."
-msgstr ""
-
-#: libraries/messages.inc.php:130
-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/messages.inc.php:131
-msgid "The number of requests to write a key block to the cache."
-msgstr ""
-
-#: libraries/messages.inc.php:132
-msgid "The number of physical writes of a key block to disk."
-msgstr ""
-
-#: libraries/messages.inc.php:133
-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/messages.inc.php:134
-msgid "The number of rows waiting to be written in INSERT DELAYED queues."
-msgstr ""
-
-#: libraries/messages.inc.php:135
-msgid ""
-"The number of tables that have been opened. If opened tables is big, your "
-"table cache value is probably too small."
-msgstr ""
-
-#: libraries/messages.inc.php:136
-msgid "The number of files that are open."
-msgstr ""
-
-#: libraries/messages.inc.php:137
-msgid "The number of streams that are open (used mainly for logging)."
-msgstr ""
-
-#: libraries/messages.inc.php:138
-msgid "The number of tables that are open."
-msgstr ""
-
-#: libraries/messages.inc.php:139
-msgid "The number of free memory blocks in query cache."
-msgstr ""
-
-#: libraries/messages.inc.php:140
-msgid "The amount of free memory for query cache."
-msgstr ""
-
-#: libraries/messages.inc.php:141
-msgid "The number of cache hits."
-msgstr ""
-
-#: libraries/messages.inc.php:142
-msgid "The number of queries added to the cache."
-msgstr ""
-
-#: libraries/messages.inc.php:143
-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 "
-"cache size. The query cache uses a least recently used (LRU) strategy to "
-"decide which queries to remove from the cache."
-msgstr ""
-
-#: libraries/messages.inc.php:144
-msgid ""
-"The number of non-cached queries (not cachable, or not cached due to the "
-"query_cache_type setting)."
-msgstr ""
-
-#: libraries/messages.inc.php:145
-msgid "The number of queries registered in the cache."
-msgstr ""
-
-#: libraries/messages.inc.php:146
-msgid "The total number of blocks in the query cache."
-msgstr ""
-
-#: libraries/messages.inc.php:147
-msgctxt "$strShowStatusReset"
-msgid "Reset"
-msgstr ""
-
-#: libraries/messages.inc.php:148
-msgid "The status of failsafe replication (not yet implemented)."
-msgstr ""
-
-#: libraries/messages.inc.php:149
-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/messages.inc.php:150
-msgid "The number of joins that used a range search on a reference table."
-msgstr ""
-
-#: libraries/messages.inc.php:151
-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/messages.inc.php:152
-msgid ""
-"The number of joins that used ranges on the first table. (It's normally not "
-"critical even if this is big.)"
-msgstr ""
-
-#: libraries/messages.inc.php:153
-msgid "The number of joins that did a full scan of the first table."
-msgstr ""
-
-#: libraries/messages.inc.php:154
-msgid "The number of temporary tables currently open by the slave SQL thread."
-msgstr ""
-
-#: libraries/messages.inc.php:155
-msgid ""
-"Total (since startup) number of times the replication slave SQL thread has "
-"retried transactions."
-msgstr ""
-
-#: libraries/messages.inc.php:156
-msgid "This is ON if this server is a slave that is connected to a master."
-msgstr ""
-
-#: libraries/messages.inc.php:157
-msgid ""
-"The number of threads that have taken more than slow_launch_time seconds to "
-"create."
-msgstr ""
-
-#: libraries/messages.inc.php:158
-msgid ""
-"The number of queries that have taken more than long_query_time seconds."
-msgstr ""
-
-#: libraries/messages.inc.php:159
-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/messages.inc.php:160
-msgid "The number of sorts that were done with ranges."
-msgstr ""
-
-#: libraries/messages.inc.php:161
-msgid "The number of sorted rows."
-msgstr ""
-
-#: libraries/messages.inc.php:162
-msgid "The number of sorts that were done by scanning the table."
-msgstr ""
-
-#: libraries/messages.inc.php:163
-msgid "The number of times that a table lock was acquired immediately."
-msgstr ""
-
-#: libraries/messages.inc.php:164
-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 "
-"should first optimize your queries, and then either split your table or "
-"tables or use replication."
-msgstr ""
-
-#: libraries/messages.inc.php:165
-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/messages.inc.php:166
-msgid "The number of currently open connections."
-msgstr ""
-
-#: libraries/messages.inc.php:167
-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 "
-"doesn't give a notable performance improvement if you have a good thread "
-"implementation.)"
-msgstr ""
-
-#: libraries/messages.inc.php:168
-msgid "The number of threads that are not sleeping."
-msgstr ""
-
#: libraries/mult_submits.inc.php:76 libraries/tbl_properties.inc.php:513
#: tbl_structure.php:29 tbl_structure.php:153 tbl_structure.php:157
#: tbl_structure.php:473
@@ -4073,8 +3343,8 @@ msgstr ""
#: libraries/replication_gui.lib.php:55 libraries/replication_gui.lib.php:56
#: libraries/replication_gui.lib.php:249 libraries/replication_gui.lib.php:252
-#: libraries/replication_gui.lib.php:259 server_privileges.php:672
-#: server_privileges.php:675 server_privileges.php:682
+#: libraries/replication_gui.lib.php:259 server_privileges.php:711
+#: server_privileges.php:714 server_privileges.php:721
#: server_synchronize.php:1171
msgid "User name"
msgstr ""
@@ -4092,11 +3362,11 @@ msgid "Slave status"
msgstr ""
#: libraries/replication_gui.lib.php:114 libraries/sql_query_form.lib.php:445
-#: server_status.php:626 server_variables.php:52
+#: server_status.php:737 server_variables.php:52
msgid "Variable"
msgstr ""
-#: libraries/replication_gui.lib.php:115 server_status.php:627
+#: libraries/replication_gui.lib.php:115 server_status.php:738
#: tbl_change.php:324 tbl_printview.php:370 tbl_select.php:139
#: tbl_structure.php:729
msgid "Value"
@@ -4116,41 +3386,58 @@ msgstr ""
msgid "Add slave replication user"
msgstr ""
-#: libraries/replication_gui.lib.php:254 server_privileges.php:677
+#: libraries/replication_gui.lib.php:254 server_privileges.php:716
msgid "Any user"
msgstr ""
#: libraries/replication_gui.lib.php:255 libraries/replication_gui.lib.php:323
-#: libraries/replication_gui.lib.php:346 server_privileges.php:678
-#: server_privileges.php:745 server_privileges.php:769
-#: server_privileges.php:1889 server_privileges.php:1919
+#: libraries/replication_gui.lib.php:346 server_privileges.php:717
+#: server_privileges.php:784 server_privileges.php:808
+#: server_privileges.php:1928 server_privileges.php:1958
msgid "Use text field"
msgstr ""
-#: libraries/replication_gui.lib.php:302 server_privileges.php:725
+#: libraries/replication_gui.lib.php:302 server_privileges.php:764
msgid "Any host"
msgstr ""
-#: libraries/replication_gui.lib.php:306 server_privileges.php:729
+#: libraries/replication_gui.lib.php:306 server_privileges.php:768
msgid "Local"
msgstr ""
-#: libraries/replication_gui.lib.php:312 server_privileges.php:734
+#: libraries/replication_gui.lib.php:312 server_privileges.php:773
msgid "This Host"
msgstr ""
-#: libraries/replication_gui.lib.php:318 server_privileges.php:740
+#: libraries/replication_gui.lib.php:318 server_privileges.php:779
msgid "Use Host Table"
msgstr ""
-#: libraries/replication_gui.lib.php:331 server_privileges.php:753
+#: libraries/replication_gui.lib.php:331 server_privileges.php:792
msgid ""
"When Host table is used, this field is ignored and values stored in Host "
"table are used instead."
msgstr ""
-#: libraries/select_lang.lib.php:480 libraries/select_lang.lib.php:486
-#: libraries/select_lang.lib.php:492
+#. l10n: Text direction, use either ltr or rtl
+#: libraries/select_lang.lib.php:491
+msgid "ltr"
+msgstr ""
+
+#: libraries/select_lang.lib.php:493
+msgid "Content of table __TABLE__"
+msgstr ""
+
+#: libraries/select_lang.lib.php:494
+msgid "(continued)"
+msgstr ""
+
+#: libraries/select_lang.lib.php:495
+msgid "Structure of table __TABLE__"
+msgstr ""
+
+#: libraries/select_lang.lib.php:500 libraries/select_lang.lib.php:506
+#: libraries/select_lang.lib.php:512
#, possible-php-format
msgid "Unknown language: %1$s."
msgstr ""
@@ -4161,7 +3448,7 @@ msgid "Servers"
msgstr ""
#: libraries/server_links.inc.php:53 server_engines.php:112
-#: server_engines.php:116 server_status.php:304 test/theme.php:105
+#: server_engines.php:116 server_status.php:415 test/theme.php:105
msgid "Variables"
msgstr ""
@@ -4174,7 +3461,7 @@ msgid "Engines"
msgstr ""
#: libraries/server_links.inc.php:76 server_binlog.php:110
-#: server_status.php:253 test/theme.php:121
+#: server_status.php:364 test/theme.php:121
msgid "Binary log"
msgstr ""
@@ -4530,8 +3817,8 @@ msgstr ""
msgid "Protocol version"
msgstr ""
-#: main.php:189 server_privileges.php:1350 server_privileges.php:1497
-#: server_privileges.php:1611 server_privileges.php:2029
+#: main.php:189 server_privileges.php:1389 server_privileges.php:1536
+#: server_privileges.php:1650 server_privileges.php:2068
#: server_processlist.php:54
msgid "User"
msgstr ""
@@ -4885,7 +4172,7 @@ msgstr ""
msgid "Databases statistics"
msgstr ""
-#: server_databases.php:117 server_status.php:260
+#: server_databases.php:117 server_status.php:371
#: setup/lib/messages.inc.php:117
msgid "Tables"
msgstr ""
@@ -4903,6 +4190,14 @@ msgstr ""
msgid "Jump to database"
msgstr ""
+#: server_databases.php:267
+msgid "Not replicated"
+msgstr ""
+
+#: server_databases.php:273
+msgid "Replicated"
+msgstr ""
+
#: server_databases.php:289
#, possible-php-format
msgid "Check privileges for database "%s"."
@@ -4934,138 +4229,320 @@ msgstr ""
msgid "View dump (schema) of databases"
msgstr ""
-#: server_privileges.php:263 server_privileges.php:264
+#: server_privileges.php:24 server_privileges.php:266
+msgid "Includes all privileges except GRANT."
+msgstr ""
+
+#: server_privileges.php:25 server_privileges.php:192
+#: server_privileges.php:515
+msgid "Allows altering the structure of existing tables."
+msgstr ""
+
+#: server_privileges.php:26 server_privileges.php:208
+#: server_privileges.php:521
+msgid "Allows altering and dropping stored routines."
+msgstr ""
+
+#: server_privileges.php:27 server_privileges.php:184
+#: server_privileges.php:514
+msgid "Allows creating new databases and tables."
+msgstr ""
+
+#: server_privileges.php:28 server_privileges.php:207
+#: server_privileges.php:520
+msgid "Allows creating stored routines."
+msgstr ""
+
+#: server_privileges.php:29 server_privileges.php:514
+msgid "Allows creating new tables."
+msgstr ""
+
+#: server_privileges.php:30 server_privileges.php:195
+#: server_privileges.php:518
+msgid "Allows creating temporary tables."
+msgstr ""
+
+#: server_privileges.php:31 server_privileges.php:209
+#: server_privileges.php:554
+msgid "Allows creating, dropping and renaming user accounts."
+msgstr ""
+
+#: server_privileges.php:32 server_privileges.php:199
+#: server_privileges.php:203 server_privileges.php:526
+#: server_privileges.php:530
+msgid "Allows creating new views."
+msgstr ""
+
+#: server_privileges.php:33 server_privileges.php:183
+#: server_privileges.php:506
+msgid "Allows deleting data."
+msgstr ""
+
+#: server_privileges.php:34 server_privileges.php:185
+#: server_privileges.php:517
+msgid "Allows dropping databases and tables."
+msgstr ""
+
+#: server_privileges.php:35 server_privileges.php:517
+msgid "Allows dropping tables."
+msgstr ""
+
+#: server_privileges.php:36 server_privileges.php:200
+#: server_privileges.php:534
+msgid "Allows to set up events for the event scheduler"
+msgstr ""
+
+#: server_privileges.php:37 server_privileges.php:210
+#: server_privileges.php:522
+msgid "Allows executing stored routines."
+msgstr ""
+
+#: server_privileges.php:38 server_privileges.php:189
+#: server_privileges.php:509
+msgid "Allows importing data from and exporting data into files."
+msgstr ""
+
+#: server_privileges.php:39 server_privileges.php:540
+msgid ""
+"Allows adding users and privileges without reloading the privilege tables."
+msgstr ""
+
+#: server_privileges.php:40 server_privileges.php:191
+#: server_privileges.php:516
+msgid "Allows creating and dropping indexes."
+msgstr ""
+
+#: server_privileges.php:41 server_privileges.php:181
+#: server_privileges.php:442 server_privileges.php:504
+msgid "Allows inserting and replacing data."
+msgstr ""
+
+#: server_privileges.php:42 server_privileges.php:196
+#: server_privileges.php:549
+msgid "Allows locking tables for the current thread."
+msgstr ""
+
+#: server_privileges.php:43 server_privileges.php:646
+#: server_privileges.php:648
+msgid "Limits the number of new connections the user may open per hour."
+msgstr ""
+
+#: server_privileges.php:44 server_privileges.php:634
+#: server_privileges.php:636
+msgid "Limits the number of queries the user may send to the server per hour."
+msgstr ""
+
+#: server_privileges.php:45 server_privileges.php:640
+#: server_privileges.php:642
+msgid ""
+"Limits the number of commands that change any table or database the user may "
+"execute per hour."
+msgstr ""
+
+#: server_privileges.php:46 server_privileges.php:652
+#: server_privileges.php:654
+msgid "Limits the number of simultaneous connections the user may have."
+msgstr ""
+
+#: server_privileges.php:47 server_privileges.php:188
+#: server_privileges.php:544
+msgid "Allows viewing processes of all users"
+msgstr ""
+
+#: server_privileges.php:48 server_privileges.php:190
+#: server_privileges.php:448 server_privileges.php:550
+msgid "Has no effect in this MySQL version."
+msgstr ""
+
+#: server_privileges.php:49 server_privileges.php:186
+#: server_privileges.php:545
+msgid "Allows reloading server settings and flushing the server's caches."
+msgstr ""
+
+#: server_privileges.php:50 server_privileges.php:198
+#: server_privileges.php:552
+msgid "Allows the user to ask where the slaves / masters are."
+msgstr ""
+
+#: server_privileges.php:51 server_privileges.php:197
+#: server_privileges.php:553
+msgid "Needed for the replication slaves."
+msgstr ""
+
+#: server_privileges.php:52 server_privileges.php:180
+#: server_privileges.php:439 server_privileges.php:503
+msgid "Allows reading data."
+msgstr ""
+
+#: server_privileges.php:53 server_privileges.php:193
+#: server_privileges.php:547
+msgid "Gives access to the complete list of databases."
+msgstr ""
+
+#: server_privileges.php:54 server_privileges.php:204
+#: server_privileges.php:206 server_privileges.php:519
+msgid "Allows performing SHOW CREATE VIEW queries."
+msgstr ""
+
+#: server_privileges.php:55 server_privileges.php:187
+#: server_privileges.php:546
+msgid "Allows shutting down the server."
+msgstr ""
+
+#: server_privileges.php:56 server_privileges.php:194
+#: server_privileges.php:543
+msgid ""
+"Allows connecting, even if maximum number of connections is reached; "
+"required for most administrative operations like setting global variables or "
+"killing threads of other users."
+msgstr ""
+
+#: server_privileges.php:57 server_privileges.php:201
+#: server_privileges.php:535
+msgid "Allows creating and dropping triggers"
+msgstr ""
+
+#: server_privileges.php:58 server_privileges.php:182
+#: server_privileges.php:445 server_privileges.php:505
+msgid "Allows changing data."
+msgstr ""
+
+#: server_privileges.php:59 server_privileges.php:260
+msgid "No privileges."
+msgstr ""
+
+#: server_privileges.php:302 server_privileges.php:303
msgctxt "None privileges"
msgid "None"
msgstr ""
-#: server_privileges.php:392 server_privileges.php:527
-#: server_privileges.php:1679 server_privileges.php:1685
+#: server_privileges.php:431 server_privileges.php:566
+#: server_privileges.php:1718 server_privileges.php:1724
msgid "Table-specific privileges"
msgstr ""
-#: server_privileges.php:393 server_privileges.php:535
-#: server_privileges.php:1501
+#: server_privileges.php:432 server_privileges.php:574
+#: server_privileges.php:1540
msgid " Note: MySQL privilege names are expressed in English "
msgstr ""
-#: server_privileges.php:524 server_privileges.php:1500
+#: server_privileges.php:563 server_privileges.php:1539
msgid "Global privileges"
msgstr ""
-#: server_privileges.php:526 server_privileges.php:1679
+#: server_privileges.php:565 server_privileges.php:1718
msgid "Database-specific privileges"
msgstr ""
-#: server_privileges.php:571
+#: server_privileges.php:610
msgid "Administration"
msgstr ""
-#: server_privileges.php:591
+#: server_privileges.php:630
msgid "Resource limits"
msgstr ""
-#: server_privileges.php:592
+#: server_privileges.php:631
msgid "Note: Setting these options to 0 (zero) removes the limit."
msgstr ""
-#: server_privileges.php:669
+#: server_privileges.php:708
msgid "Login Information"
msgstr ""
-#: server_privileges.php:763
+#: server_privileges.php:802
msgid "Do not change the password"
msgstr ""
-#: server_privileges.php:804 server_privileges.php:2166
+#: server_privileges.php:843 server_privileges.php:2205
msgid "No user found."
msgstr ""
-#: server_privileges.php:848
+#: server_privileges.php:887
#, possible-php-format
msgid "The user %s already exists!"
msgstr ""
-#: server_privileges.php:931
+#: server_privileges.php:970
msgid "You have added a new user."
msgstr ""
-#: server_privileges.php:1152
+#: server_privileges.php:1191
#, possible-php-format
msgid "You have updated the privileges for %s."
msgstr ""
-#: server_privileges.php:1176
+#: server_privileges.php:1215
#, possible-php-format
msgid "You have revoked the privileges for %s"
msgstr ""
-#: server_privileges.php:1212
+#: server_privileges.php:1251
#, possible-php-format
msgid "The password for %s was changed successfully."
msgstr ""
-#: server_privileges.php:1232
+#: server_privileges.php:1271
#, possible-php-format
msgid "Deleting %s"
msgstr ""
-#: server_privileges.php:1243
+#: server_privileges.php:1282
msgid "No users selected for deleting!"
msgstr ""
-#: server_privileges.php:1246
+#: server_privileges.php:1285
msgid "Reloading the privileges"
msgstr ""
-#: server_privileges.php:1261
+#: server_privileges.php:1300
msgid "The selected users have been deleted successfully."
msgstr ""
-#: server_privileges.php:1296
+#: server_privileges.php:1335
msgid "The privileges were reloaded successfully."
msgstr ""
-#: server_privileges.php:1324 server_privileges.php:1610
+#: server_privileges.php:1363 server_privileges.php:1649
msgid "Edit Privileges"
msgstr ""
-#: server_privileges.php:1333
+#: server_privileges.php:1372
msgid "Revoke"
msgstr ""
-#: server_privileges.php:1365
+#: server_privileges.php:1404
msgid "User overview"
msgstr ""
-#: server_privileges.php:1502 server_privileges.php:1684
-#: server_privileges.php:2033
+#: server_privileges.php:1541 server_privileges.php:1723
+#: server_privileges.php:2072
msgid "Grant"
msgstr ""
-#: server_privileges.php:1521 server_privileges.php:2123
+#: server_privileges.php:1560 server_privileges.php:2162
msgid "Any"
msgstr ""
-#: server_privileges.php:1570 server_privileges.php:1594
-#: server_privileges.php:1988 server_privileges.php:2177
+#: server_privileges.php:1609 server_privileges.php:1633
+#: server_privileges.php:2027 server_privileges.php:2216
msgid "Add a new User"
msgstr ""
-#: server_privileges.php:1575
+#: server_privileges.php:1614
msgid "Remove selected users"
msgstr ""
-#: server_privileges.php:1578
+#: server_privileges.php:1617
msgid "Revoke all active privileges from the users and delete them afterwards."
msgstr ""
-#: server_privileges.php:1579 server_privileges.php:1580
-#: server_privileges.php:1581
+#: server_privileges.php:1618 server_privileges.php:1619
+#: server_privileges.php:1620
msgid "Drop the databases that have the same names as the users."
msgstr ""
-#: server_privileges.php:1597
+#: server_privileges.php:1636
#, possible-php-format
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
@@ -5074,89 +4551,89 @@ msgid ""
"sreload the privileges%s before you continue."
msgstr ""
-#: server_privileges.php:1645
+#: server_privileges.php:1684
msgid "The selected user was not found in the privilege table."
msgstr ""
-#: server_privileges.php:1685
+#: server_privileges.php:1724
msgid "Column-specific privileges"
msgstr ""
-#: server_privileges.php:1886
+#: server_privileges.php:1925
msgid "Add privileges on the following database"
msgstr ""
-#: server_privileges.php:1904
+#: server_privileges.php:1943
msgid "Wildcards % and _ should be escaped with a \\ to use them literally"
msgstr ""
-#: server_privileges.php:1907
+#: server_privileges.php:1946
msgid "Add privileges on the following table"
msgstr ""
-#: server_privileges.php:1964
+#: server_privileges.php:2003
msgid "Change Login Information / Copy User"
msgstr ""
-#: server_privileges.php:1967
+#: server_privileges.php:2006
msgid "Create a new user with the same privileges and ..."
msgstr ""
-#: server_privileges.php:1969
+#: server_privileges.php:2008
msgid "... keep the old one."
msgstr ""
-#: server_privileges.php:1970
+#: server_privileges.php:2009
msgid " ... delete the old one from the user tables."
msgstr ""
-#: server_privileges.php:1971
+#: server_privileges.php:2010
msgid ""
" ... revoke all active privileges from the old one and delete it afterwards."
msgstr ""
-#: server_privileges.php:1972
+#: server_privileges.php:2011
msgid ""
" ... delete the old one from the user tables and reload the privileges "
"afterwards."
msgstr ""
-#: server_privileges.php:1994
+#: server_privileges.php:2033
msgid "Database for user"
msgstr ""
-#: server_privileges.php:1998
+#: server_privileges.php:2037
msgctxt "Create none database for user"
msgid "None"
msgstr ""
-#: server_privileges.php:1999
+#: server_privileges.php:2038
msgid "Create database with same name and grant all privileges"
msgstr ""
-#: server_privileges.php:2000
+#: server_privileges.php:2039
msgid "Grant all privileges on wildcard name (username\\_%)"
msgstr ""
-#: server_privileges.php:2003
+#: server_privileges.php:2042
#, possible-php-format
msgid "Grant all privileges on database "%s""
msgstr ""
-#: server_privileges.php:2026
+#: server_privileges.php:2065
#, possible-php-format
msgid "Users having access to "%s""
msgstr ""
-#: server_privileges.php:2134
+#: server_privileges.php:2173
msgid "global"
msgstr ""
-#: server_privileges.php:2136
+#: server_privileges.php:2175
msgid "database-specific"
msgstr ""
-#: server_privileges.php:2138
+#: server_privileges.php:2177
msgid "wildcard"
msgstr ""
@@ -5202,7 +4679,7 @@ msgstr ""
msgid "This server is configured as master in a replication process."
msgstr ""
-#: server_replication.php:184 server_status.php:281
+#: server_replication.php:184 server_status.php:392
msgid "Show master status"
msgstr ""
@@ -5337,165 +4814,696 @@ msgid ""
"like to configure it?"
msgstr ""
+#: server_status.php:40
+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 ""
+
+#: server_status.php:41
+msgid "The number of transactions that used the temporary binary log cache."
+msgstr ""
+
+#: server_status.php:42
+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 "
+"to increase the tmp_table_size value to cause temporary tables to be memory-"
+"based instead of disk-based."
+msgstr ""
+
+#: server_status.php:43
+msgid "How many temporary files mysqld has created."
+msgstr ""
+
+#: server_status.php:44
+msgid ""
+"The number of in-memory temporary tables created automatically by the server "
+"while executing statements."
+msgstr ""
+
+#: server_status.php:45
+msgid ""
+"The number of rows written with INSERT DELAYED for which some error occurred "
+"(probably duplicate key)."
+msgstr ""
+
#: server_status.php:46
+msgid ""
+"The number of INSERT DELAYED handler threads in use. Every different table "
+"on which one uses INSERT DELAYED gets its own thread."
+msgstr ""
+
+#: server_status.php:47
+msgid "The number of INSERT DELAYED rows written."
+msgstr ""
+
+#: server_status.php:48
+msgid "The number of executed FLUSH statements."
+msgstr ""
+
+#: server_status.php:49
+msgid "The number of internal COMMIT statements."
+msgstr ""
+
+#: server_status.php:50
+msgid "The number of times a row was deleted from a table."
+msgstr ""
+
+#: server_status.php:51
+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 ""
+
+#: server_status.php:52
+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 ""
+
+#: server_status.php:53
+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 ""
+
+#: server_status.php:54
+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 ""
+
+#: server_status.php:55
+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 ""
+
+#: server_status.php:56
+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 "
+"probably have a lot of queries that require MySQL to scan whole tables or "
+"you have joins that don't use keys properly."
+msgstr ""
+
+#: server_status.php:57
+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 "
+"tables are not properly indexed or that your queries are not written to take "
+"advantage of the indexes you have."
+msgstr ""
+
+#: server_status.php:58
+msgid "The number of internal ROLLBACK statements."
+msgstr ""
+
+#: server_status.php:59
+msgid "The number of requests to update a row in a table."
+msgstr ""
+
+#: server_status.php:60
+msgid "The number of requests to insert a row in a table."
+msgstr ""
+
+#: server_status.php:61
+msgid "The number of pages containing data (dirty or clean)."
+msgstr ""
+
+#: server_status.php:62
+msgid "The number of pages currently dirty."
+msgstr ""
+
+#: server_status.php:63
+msgid "The number of buffer pool pages that have been requested to be flushed."
+msgstr ""
+
+#: server_status.php:64
+msgid "The number of free pages."
+msgstr ""
+
+#: server_status.php:65
+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 ""
+
+#: server_status.php:66
+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 "
+"be calculated as Innodb_buffer_pool_pages_total - "
+"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data."
+msgstr ""
+
+#: server_status.php:67
+msgid "Total size of buffer pool, in pages."
+msgstr ""
+
+#: server_status.php:68
+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 ""
+
+#: server_status.php:69
+msgid ""
+"The number of sequential read-aheads InnoDB initiated. This happens when "
+"InnoDB does a sequential full table scan."
+msgstr ""
+
+#: server_status.php:70
+msgid "The number of logical read requests InnoDB has done."
+msgstr ""
+
+#: server_status.php:71
+msgid ""
+"The number of logical reads that InnoDB could not satisfy from buffer pool "
+"and had to do a single-page read."
+msgstr ""
+
+#: server_status.php:72
+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 "
+"available, it's necessary to wait for pages to be flushed first. This "
+"counter counts instances of these waits. If the buffer pool size was set "
+"properly, this value should be small."
+msgstr ""
+
+#: server_status.php:73
+msgid "The number writes done to the InnoDB buffer pool."
+msgstr ""
+
+#: server_status.php:74
+msgid "The number of fsync() operations so far."
+msgstr ""
+
+#: server_status.php:75
+msgid "The current number of pending fsync() operations."
+msgstr ""
+
+#: server_status.php:76
+msgid "The current number of pending reads."
+msgstr ""
+
+#: server_status.php:77
+msgid "The current number of pending writes."
+msgstr ""
+
+#: server_status.php:78
+msgid "The amount of data read so far, in bytes."
+msgstr ""
+
+#: server_status.php:79
+msgid "The total number of data reads."
+msgstr ""
+
+#: server_status.php:80
+msgid "The total number of data writes."
+msgstr ""
+
+#: server_status.php:81
+msgid "The amount of data written so far, in bytes."
+msgstr ""
+
+#: server_status.php:82
+msgid "The number of pages that have been written for doublewrite operations."
+msgstr ""
+
+#: server_status.php:83
+msgid "The number of doublewrite operations that have been performed."
+msgstr ""
+
+#: server_status.php:84
+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 ""
+
+#: server_status.php:85
+msgid "The number of log write requests."
+msgstr ""
+
+#: server_status.php:86
+msgid "The number of physical writes to the log file."
+msgstr ""
+
+#: server_status.php:87
+msgid "The number of fsync() writes done to the log file."
+msgstr ""
+
+#: server_status.php:88
+msgid "The number of pending log file fsyncs."
+msgstr ""
+
+#: server_status.php:89
+msgid "Pending log file writes."
+msgstr ""
+
+#: server_status.php:90
+msgid "The number of bytes written to the log file."
+msgstr ""
+
+#: server_status.php:91
+msgid "The number of pages created."
+msgstr ""
+
+#: server_status.php:92
+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 ""
+
+#: server_status.php:93
+msgid "The number of pages read."
+msgstr ""
+
+#: server_status.php:94
+msgid "The number of pages written."
+msgstr ""
+
+#: server_status.php:95
+msgid "The number of row locks currently being waited for."
+msgstr ""
+
+#: server_status.php:96
+msgid "The average time to acquire a row lock, in milliseconds."
+msgstr ""
+
+#: server_status.php:97
+msgid "The total time spent in acquiring row locks, in milliseconds."
+msgstr ""
+
+#: server_status.php:98
+msgid "The maximum time to acquire a row lock, in milliseconds."
+msgstr ""
+
+#: server_status.php:99
+msgid "The number of times a row lock had to be waited for."
+msgstr ""
+
+#: server_status.php:100
+msgid "The number of rows deleted from InnoDB tables."
+msgstr ""
+
+#: server_status.php:101
+msgid "The number of rows inserted in InnoDB tables."
+msgstr ""
+
+#: server_status.php:102
+msgid "The number of rows read from InnoDB tables."
+msgstr ""
+
+#: server_status.php:103
+msgid "The number of rows updated in InnoDB tables."
+msgstr ""
+
+#: server_status.php:104
+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 ""
+
+#: server_status.php:105
+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 ""
+
+#: server_status.php:106
+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 ""
+
+#: server_status.php:107
+msgid "The number of requests to read a key block from the cache."
+msgstr ""
+
+#: server_status.php:108
+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 ""
+
+#: server_status.php:109
+msgid "The number of requests to write a key block to the cache."
+msgstr ""
+
+#: server_status.php:110
+msgid "The number of physical writes of a key block to disk."
+msgstr ""
+
+#: server_status.php:111
+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 ""
+
+#: server_status.php:112
+msgid "The number of rows waiting to be written in INSERT DELAYED queues."
+msgstr ""
+
+#: server_status.php:113
+msgid ""
+"The number of tables that have been opened. If opened tables is big, your "
+"table cache value is probably too small."
+msgstr ""
+
+#: server_status.php:114
+msgid "The number of files that are open."
+msgstr ""
+
+#: server_status.php:115
+msgid "The number of streams that are open (used mainly for logging)."
+msgstr ""
+
+#: server_status.php:116
+msgid "The number of tables that are open."
+msgstr ""
+
+#: server_status.php:117
+msgid "The number of free memory blocks in query cache."
+msgstr ""
+
+#: server_status.php:118
+msgid "The amount of free memory for query cache."
+msgstr ""
+
+#: server_status.php:119
+msgid "The number of cache hits."
+msgstr ""
+
+#: server_status.php:120
+msgid "The number of queries added to the cache."
+msgstr ""
+
+#: server_status.php:121
+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 "
+"cache size. The query cache uses a least recently used (LRU) strategy to "
+"decide which queries to remove from the cache."
+msgstr ""
+
+#: server_status.php:122
+msgid ""
+"The number of non-cached queries (not cachable, or not cached due to the "
+"query_cache_type setting)."
+msgstr ""
+
+#: server_status.php:123
+msgid "The number of queries registered in the cache."
+msgstr ""
+
+#: server_status.php:124
+msgid "The total number of blocks in the query cache."
+msgstr ""
+
+#: server_status.php:125
+msgctxt "$strShowStatusReset"
+msgid "Reset"
+msgstr ""
+
+#: server_status.php:126
+msgid "The status of failsafe replication (not yet implemented)."
+msgstr ""
+
+#: server_status.php:127
+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 ""
+
+#: server_status.php:128
+msgid "The number of joins that used a range search on a reference table."
+msgstr ""
+
+#: server_status.php:129
+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 ""
+
+#: server_status.php:130
+msgid ""
+"The number of joins that used ranges on the first table. (It's normally not "
+"critical even if this is big.)"
+msgstr ""
+
+#: server_status.php:131
+msgid "The number of joins that did a full scan of the first table."
+msgstr ""
+
+#: server_status.php:132
+msgid "The number of temporary tables currently open by the slave SQL thread."
+msgstr ""
+
+#: server_status.php:133
+msgid ""
+"Total (since startup) number of times the replication slave SQL thread has "
+"retried transactions."
+msgstr ""
+
+#: server_status.php:134
+msgid "This is ON if this server is a slave that is connected to a master."
+msgstr ""
+
+#: server_status.php:135
+msgid ""
+"The number of threads that have taken more than slow_launch_time seconds to "
+"create."
+msgstr ""
+
+#: server_status.php:136
+msgid ""
+"The number of queries that have taken more than long_query_time seconds."
+msgstr ""
+
+#: server_status.php:137
+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 ""
+
+#: server_status.php:138
+msgid "The number of sorts that were done with ranges."
+msgstr ""
+
+#: server_status.php:139
+msgid "The number of sorted rows."
+msgstr ""
+
+#: server_status.php:140
+msgid "The number of sorts that were done by scanning the table."
+msgstr ""
+
+#: server_status.php:141
+msgid "The number of times that a table lock was acquired immediately."
+msgstr ""
+
+#: server_status.php:142
+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 "
+"should first optimize your queries, and then either split your table or "
+"tables or use replication."
+msgstr ""
+
+#: server_status.php:143
+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 ""
+
+#: server_status.php:144
+msgid "The number of currently open connections."
+msgstr ""
+
+#: server_status.php:145
+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 "
+"doesn't give a notable performance improvement if you have a good thread "
+"implementation.)"
+msgstr ""
+
+#: server_status.php:146
+msgid "The number of threads that are not sleeping."
+msgstr ""
+
+#: server_status.php:157
msgid "Runtime Information"
msgstr ""
-#: server_status.php:250
+#: server_status.php:361
msgid "Handler"
msgstr ""
-#: server_status.php:251
+#: server_status.php:362
msgid "Query cache"
msgstr ""
-#: server_status.php:252
+#: server_status.php:363
msgid "Threads"
msgstr ""
-#: server_status.php:254
+#: server_status.php:365
msgid "Temporary data"
msgstr ""
-#: server_status.php:255
+#: server_status.php:366
msgid "Delayed inserts"
msgstr ""
-#: server_status.php:256
+#: server_status.php:367
msgid "Key cache"
msgstr ""
-#: server_status.php:257
+#: server_status.php:368
msgid "Joins"
msgstr ""
-#: server_status.php:259
+#: server_status.php:370
msgid "Sorting"
msgstr ""
-#: server_status.php:261
+#: server_status.php:372
msgid "Transaction coordinator"
msgstr ""
-#: server_status.php:271
+#: server_status.php:382
msgid "Flush (close) all tables"
msgstr ""
-#: server_status.php:273
+#: server_status.php:384
msgid "Show open tables"
msgstr ""
-#: server_status.php:278
+#: server_status.php:389
msgid "Show slave hosts"
msgstr ""
-#: server_status.php:284
+#: server_status.php:395
msgid "Show slave status"
msgstr ""
-#: server_status.php:289
+#: server_status.php:400
msgid "Flush query cache"
msgstr ""
-#: server_status.php:294
+#: server_status.php:405
msgid "Show processes"
msgstr ""
-#: server_status.php:344
+#: server_status.php:455
msgctxt "for Show status"
msgid "Reset"
msgstr ""
-#: server_status.php:350
+#: server_status.php:461
#, possible-php-format
msgid "This MySQL server has been running for %s. It started up on %s."
msgstr ""
-#: server_status.php:360
+#: server_status.php:471
msgid ""
"This MySQL server works as master and slave in replication"
"b> process."
msgstr ""
-#: server_status.php:362
+#: server_status.php:473
msgid "This MySQL server works as master in replication process."
msgstr ""
-#: server_status.php:364
+#: server_status.php:475
msgid "This MySQL server works as slave in replication process."
msgstr ""
-#: server_status.php:366
+#: server_status.php:477
msgid ""
"For further information about replication status on the server, please visit "
"the replication section."
msgstr ""
-#: server_status.php:383
+#: server_status.php:494
msgid ""
"Server traffic: These tables show the network traffic statistics of "
"this MySQL server since its startup."
msgstr ""
-#: server_status.php:388
+#: server_status.php:499
msgid "Traffic"
msgstr ""
-#: server_status.php:388
+#: server_status.php:499
msgid ""
"On a busy server, the byte counters may overrun, so those statistics as "
"reported by the MySQL server may be incorrect."
msgstr ""
-#: server_status.php:389 server_status.php:434 server_status.php:497
-#: server_status.php:555
+#: server_status.php:500 server_status.php:545 server_status.php:608
+#: server_status.php:666
msgid "per hour"
msgstr ""
-#: server_status.php:394
+#: server_status.php:505
msgid "Received"
msgstr ""
-#: server_status.php:404
+#: server_status.php:515
msgid "Sent"
msgstr ""
-#: server_status.php:433
+#: server_status.php:544
msgid "Connections"
msgstr ""
-#: server_status.php:440
+#: server_status.php:551
msgid "max. concurrent connections"
msgstr ""
-#: server_status.php:447
+#: server_status.php:558
msgid "Failed attempts"
msgstr ""
-#: server_status.php:461
+#: server_status.php:572
msgid "Aborted"
msgstr ""
-#: server_status.php:490
+#: server_status.php:601
#, possible-php-format
msgid ""
"Query statistics: Since its startup, %s queries have been sent to the "
"server."
msgstr ""
-#: server_status.php:498
+#: server_status.php:609
msgid "per minute"
msgstr ""
-#: server_status.php:499
+#: server_status.php:610
msgid "per second"
msgstr ""
-#: server_status.php:554
+#: server_status.php:665
msgid "Query type"
msgstr ""
-#: server_status.php:721
+#: server_status.php:832
msgid "Replication status"
msgstr ""
diff --git a/po/pl.po b/po/pl.po
index b005fabcb..d2b8aa834 100755
--- a/po/pl.po
+++ b/po/pl.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-06-04 16:07-0400\n"
+"POT-Creation-Date: 2010-06-08 12:32-0400\n"
"PO-Revision-Date: 2010-03-12 09:17+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: polish \n"
@@ -14,11 +14,11 @@ msgstr ""
"X-Generator: Translate Toolkit 1.5.3\n"
#: browse_foreigners.php:38 browse_foreigners.php:59
-#: libraries/display_tbl.lib.php:417 server_privileges.php:1475
+#: libraries/display_tbl.lib.php:417 server_privileges.php:1514
msgid "Show all"
msgstr "Pokaż wszystko"
-#: browse_foreigners.php:82 libraries/common.lib.php:2304
+#: browse_foreigners.php:82 libraries/common.lib.php:2313
#: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:394
#: libraries/export/pdf.php:147 pdf_schema.php:283 pdf_schema.php:1123
#: pdf_schema.php:1139
@@ -37,8 +37,8 @@ msgstr ""
#: browse_foreigners.php:150 db_structure.php:79 db_structure.php:80
#: db_structure.php:91 db_structure.php:93 db_structure.php:104
-#: db_structure.php:106 libraries/common.lib.php:2822
-#: libraries/common.lib.php:2829 libraries/db_links.inc.php:75
+#: db_structure.php:106 libraries/common.lib.php:2831
+#: libraries/common.lib.php:2838 libraries/db_links.inc.php:75
#: libraries/tbl_links.inc.php:63
msgid "Search"
msgstr "Szukaj"
@@ -48,7 +48,7 @@ msgstr "Szukaj"
#: db_structure.php:567 js/messages.php:48 libraries/Config.class.php:1046
#: libraries/Theme_Manager.class.php:311
#: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719
-#: libraries/common.lib.php:1333 libraries/common.lib.php:2279
+#: libraries/common.lib.php:1335 libraries/common.lib.php:2288
#: libraries/display_change_password.lib.php:82
#: libraries/display_create_table.lib.php:63
#: libraries/display_export.lib.php:275 libraries/display_import.lib.php:276
@@ -59,9 +59,9 @@ msgstr "Szukaj"
#: libraries/sql_query_form.lib.php:552 libraries/tbl_properties.inc.php:782
#: main.php:128 navigation.php:237 pdf_pages.php:292 pdf_pages.php:328
#: pdf_pages.php:530 pmd_pdf.php:116 server_binlog.php:142
-#: server_privileges.php:625 server_privileges.php:1585
-#: server_privileges.php:1932 server_privileges.php:1979
-#: server_privileges.php:2018 server_replication.php:235
+#: server_privileges.php:664 server_privileges.php:1624
+#: server_privileges.php:1971 server_privileges.php:2018
+#: server_privileges.php:2057 server_replication.php:235
#: server_replication.php:318 server_replication.php:341
#: server_synchronize.php:1209 tbl_change.php:330 tbl_change.php:1174
#: tbl_change.php:1211 tbl_indexes.php:254 tbl_operations.php:265
@@ -79,7 +79,7 @@ msgstr "Nazwa klucza"
#: browse_foreigners.php:169 browse_foreigners.php:171
#: server_collations.php:55 server_collations.php:67 server_engines.php:59
-#: server_status.php:628
+#: server_status.php:739
msgid "Description"
msgstr "Opis"
@@ -120,7 +120,7 @@ msgstr "Nazwy kolumn"
#: libraries/db_structure.lib.php:60 libraries/export/htmlword.php:245
#: libraries/export/latex.php:360 libraries/export/odt.php:297
#: libraries/export/texytext.php:234 libraries/tbl_properties.inc.php:100
-#: pdf_schema.php:1263 pdf_schema.php:1284 server_privileges.php:2031
+#: pdf_schema.php:1263 pdf_schema.php:1284 server_privileges.php:2070
#: tbl_change.php:287 tbl_change.php:314 tbl_printview.php:143
#: tbl_printview.php:313 tbl_select.php:136 tbl_structure.php:178
#: tbl_structure.php:659 tbl_tracking.php:274 tbl_tracking.php:321
@@ -164,9 +164,9 @@ msgstr "Komentarze"
#: libraries/Index.class.php:386 libraries/export/htmlword.php:322
#: libraries/export/latex.php:430 libraries/export/odt.php:368
#: libraries/export/texytext.php:311 libraries/mult_submits.inc.php:263
-#: pdf_schema.php:1344 server_privileges.php:1529 server_privileges.php:1540
-#: server_privileges.php:1850 server_privileges.php:1855
-#: server_privileges.php:2148 sql.php:132 sql.php:194 tbl_printview.php:229
+#: pdf_schema.php:1344 server_privileges.php:1568 server_privileges.php:1579
+#: server_privileges.php:1889 server_privileges.php:1894
+#: server_privileges.php:2187 sql.php:132 sql.php:194 tbl_printview.php:229
#: tbl_structure.php:350 tbl_tracking.php:337 tbl_tracking.php:342
msgid "No"
msgstr "Nie"
@@ -180,9 +180,9 @@ msgstr "Nie"
#: libraries/mult_submits.inc.php:101 libraries/mult_submits.inc.php:106
#: libraries/mult_submits.inc.php:111 libraries/mult_submits.inc.php:262
#: libraries/mult_submits.inc.php:273 pdf_schema.php:1344
-#: server_databases.php:64 server_privileges.php:1526
-#: server_privileges.php:1540 server_privileges.php:1850
-#: server_privileges.php:1853 server_privileges.php:2148 sql.php:193
+#: server_databases.php:64 server_privileges.php:1565
+#: server_privileges.php:1579 server_privileges.php:1889
+#: server_privileges.php:1892 server_privileges.php:2187 sql.php:193
#: tbl_printview.php:229 tbl_structure.php:40 tbl_structure.php:350
#: tbl_tracking.php:335 tbl_tracking.php:340
msgid "Yes"
@@ -279,7 +279,7 @@ msgstr "Przełącz do skopiowanej bazy danych"
msgid "BLOB Repository"
msgstr "Repozytorium BLOBów"
-#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1350
+#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1352
#: libraries/server_links.inc.php:49 server_processlist.php:59
#: tbl_tracking.php:596 test/theme.php:101
msgid "Status"
@@ -342,8 +342,8 @@ msgstr "Edytuj strony PDF"
#: db_printview.php:104 db_tracking.php:72 db_tracking.php:157
#: libraries/db_structure.lib.php:46 libraries/export/xml.php:328
-#: libraries/header.inc.php:126 pdf_pages.php:424 server_privileges.php:1626
-#: server_privileges.php:1682 server_privileges.php:1946
+#: libraries/header.inc.php:126 pdf_pages.php:424 server_privileges.php:1665
+#: server_privileges.php:1721 server_privileges.php:1985
#: server_synchronize.php:423 server_synchronize.php:866 tbl_tracking.php:592
#: test/theme.php:75
msgid "Table"
@@ -444,7 +444,7 @@ msgstr "Usuń"
#: db_qbe.php:370 db_qbe.php:451 db_qbe.php:522 db_qbe.php:553
#: libraries/display_import.lib.php:166 libraries/tbl_properties.inc.php:779
-#: server_privileges.php:258 tbl_change.php:1031 tbl_indexes.php:250
+#: server_privileges.php:297 tbl_change.php:1031 tbl_indexes.php:250
#: tbl_select.php:288
msgid "Or"
msgstr "lub"
@@ -478,7 +478,7 @@ msgstr "Użyj tabel"
msgid "SQL query on database %s:"
msgstr "Zapytanie SQL dla bazy danych %s:"
-#: db_qbe.php:934 libraries/common.lib.php:1223
+#: db_qbe.php:934 libraries/common.lib.php:1225
msgid "Submit Query"
msgstr "Wykonaj zapytania"
@@ -517,7 +517,7 @@ msgstr "%s trafień wewnątrz tabeli %s"
#: db_search.php:267 db_structure.php:77 db_structure.php:78
#: db_structure.php:90 db_structure.php:92 db_structure.php:103
-#: db_structure.php:105 libraries/common.lib.php:2824
+#: db_structure.php:105 libraries/common.lib.php:2833
#: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50
#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:467
msgid "Browse"
@@ -564,26 +564,26 @@ msgstr "Wewnątrz pola:"
#: db_structure.php:81 db_structure.php:82 db_structure.php:94
#: db_structure.php:95 db_structure.php:107 db_structure.php:108
-#: libraries/common.lib.php:2823 libraries/sql_query_form.lib.php:334
+#: libraries/common.lib.php:2832 libraries/sql_query_form.lib.php:334
#: libraries/sql_query_form.lib.php:337 libraries/tbl_links.inc.php:76
msgid "Insert"
msgstr "Dodaj"
#: db_structure.php:83 db_structure.php:96 db_structure.php:109
-#: libraries/common.lib.php:2820 libraries/common.lib.php:2827
+#: libraries/common.lib.php:2829 libraries/common.lib.php:2836
#: libraries/db_links.inc.php:63 libraries/export/htmlword.php:23
#: libraries/export/latex.php:33 libraries/export/latex.php:337
#: libraries/export/odt.php:32 libraries/export/sql.php:60
#: libraries/export/texytext.php:23 libraries/import.lib.php:1104
#: libraries/tbl_links.inc.php:56 pmd_general.php:134
-#: server_privileges.php:554 server_replication.php:315 tbl_tracking.php:269
+#: server_privileges.php:593 server_replication.php:315 tbl_tracking.php:269
msgid "Structure"
msgstr "Struktura"
#: db_structure.php:84 db_structure.php:85 db_structure.php:97
#: db_structure.php:98 db_structure.php:110 db_structure.php:111
#: db_structure.php:545 db_structure.php:546 db_tracking.php:91
-#: libraries/Index.class.php:483 libraries/common.lib.php:1654
+#: libraries/Index.class.php:483 libraries/common.lib.php:1656
#: libraries/db_links.inc.php:100 libraries/mult_submits.inc.php:36
#: libraries/mult_submits.inc.php:73 libraries/tbl_links.inc.php:127
#: server_databases.php:352 tbl_structure.php:27 tbl_structure.php:151
@@ -593,7 +593,7 @@ msgstr "Usuń"
#: db_structure.php:86 db_structure.php:87 db_structure.php:99
#: db_structure.php:100 db_structure.php:112 db_structure.php:113
-#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1653
+#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1655
#: libraries/mult_submits.inc.php:39 libraries/tbl_links.inc.php:105
msgid "Empty"
msgstr "Wyczyść"
@@ -637,7 +637,7 @@ msgstr "Perspektywa"
#: db_structure.php:485 libraries/db_structure.lib.php:49
#: libraries/server_links.inc.php:70 server_replication.php:33
-#: server_replication.php:164 server_status.php:258
+#: server_replication.php:164 server_status.php:369
msgid "Replication"
msgstr "Replikacja"
@@ -653,20 +653,20 @@ msgstr "%s to domyślny mechanizm składowania tego serwera MySQL."
#: db_structure.php:524 db_structure.php:541 db_structure.php:542
#: libraries/display_tbl.lib.php:2081 libraries/display_tbl.lib.php:2086
#: libraries/mult_submits.inc.php:16 server_databases.php:346
-#: server_databases.php:351 server_privileges.php:1557 tbl_structure.php:455
+#: server_databases.php:351 server_privileges.php:1596 tbl_structure.php:455
#: tbl_structure.php:464
msgid "With selected:"
msgstr "Zaznaczone:"
#: db_structure.php:527 libraries/display_tbl.lib.php:2076
-#: server_databases.php:348 server_privileges.php:530
-#: server_privileges.php:1560 tbl_structure.php:458
+#: server_databases.php:348 server_privileges.php:569
+#: server_privileges.php:1599 tbl_structure.php:458
msgid "Check All"
msgstr "Zaznacz wszystkie"
#: db_structure.php:531 libraries/display_tbl.lib.php:2077
#: libraries/replication_gui.lib.php:33 server_databases.php:350
-#: server_privileges.php:533 server_privileges.php:1564 tbl_structure.php:462
+#: server_privileges.php:572 server_privileges.php:1603 tbl_structure.php:462
msgid "Uncheck All"
msgstr "Odznacz wszystkie"
@@ -704,7 +704,7 @@ msgstr "Analizuj tabelę"
#: libraries/display_export.lib.php:83 libraries/display_tbl.lib.php:2094
#: libraries/display_tbl.lib.php:2225 libraries/mult_submits.inc.php:62
#: libraries/server_links.inc.php:84 libraries/tbl_links.inc.php:82
-#: pmd_pdf.php:84 pmd_pdf.php:109 server_privileges.php:1341
+#: pmd_pdf.php:84 pmd_pdf.php:109 server_privileges.php:1380
#: setup/frames/menu.inc.php:22 tbl_row_action.php:59
msgid "Export"
msgstr "Eksport"
@@ -723,8 +723,8 @@ msgstr "Pomiń zablokowane tabele"
#: libraries/export/sql.php:342 libraries/export/texytext.php:84
#: libraries/export/xml.php:255 libraries/header.inc.php:106
#: libraries/header_printview.inc.php:58 server_databases.php:169
-#: server_privileges.php:1621 server_privileges.php:1682
-#: server_privileges.php:1940 server_processlist.php:56
+#: server_privileges.php:1660 server_privileges.php:1721
+#: server_privileges.php:1979 server_processlist.php:56
#: server_synchronize.php:1179 server_synchronize.php:1183
#: tbl_tracking.php:591 test/theme.php:65
msgid "Database"
@@ -746,8 +746,8 @@ msgstr ""
#: db_tracking.php:77 libraries/Index.class.php:440
#: libraries/db_structure.lib.php:53 server_databases.php:203
-#: server_privileges.php:1503 server_privileges.php:1686
-#: server_privileges.php:2034 tbl_structure.php:187
+#: server_privileges.php:1542 server_privileges.php:1725
+#: server_privileges.php:2073 tbl_structure.php:187
msgid "Action"
msgstr "Działanie"
@@ -955,11 +955,11 @@ msgstr "Brak nazwy hosta!"
msgid "The user name is empty!"
msgstr "Brak nazwy użytkownika!"
-#: js/messages.php:44 server_privileges.php:1197 user_password.php:70
+#: js/messages.php:44 server_privileges.php:1236 user_password.php:70
msgid "The password is empty!"
msgstr "Puste hasło!"
-#: js/messages.php:45 server_privileges.php:1195 user_password.php:73
+#: js/messages.php:45 server_privileges.php:1234 user_password.php:73
msgid "The passwords aren't the same!"
msgstr "Hasła nie są identyczne!"
@@ -1038,8 +1038,8 @@ msgid "Prev"
msgstr "Poprzednie"
#. l10n: Display text for next month link in calendar
-#: js/messages.php:77 libraries/common.lib.php:2344
-#: libraries/common.lib.php:2347 libraries/display_tbl.lib.php:338
+#: js/messages.php:77 libraries/common.lib.php:2353
+#: libraries/common.lib.php:2356 libraries/display_tbl.lib.php:338
#: server_binlog.php:205 server_binlog.php:207 tbl_printview.php:424
#: tbl_structure.php:801
msgid "Next"
@@ -1115,27 +1115,27 @@ msgid "December"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:97 libraries/common.lib.php:1555
+#: js/messages.php:97 libraries/common.lib.php:1557
msgid "Jan"
msgstr "Sty"
#. l10n: Short month name
-#: js/messages.php:99 libraries/common.lib.php:1557
+#: js/messages.php:99 libraries/common.lib.php:1559
msgid "Feb"
msgstr "Lut"
#. l10n: Short month name
-#: js/messages.php:101 libraries/common.lib.php:1559
+#: js/messages.php:101 libraries/common.lib.php:1561
msgid "Mar"
msgstr "Mar"
#. l10n: Short month name
-#: js/messages.php:103 libraries/common.lib.php:1561
+#: js/messages.php:103 libraries/common.lib.php:1563
msgid "Apr"
msgstr "Kwi"
#. l10n: Short month name
-#: js/messages.php:105 libraries/common.lib.php:1563
+#: js/messages.php:105 libraries/common.lib.php:1565
#, fuzzy
#| msgid "May"
msgctxt "Short month name"
@@ -1143,37 +1143,37 @@ msgid "May"
msgstr "Maj"
#. l10n: Short month name
-#: js/messages.php:107 libraries/common.lib.php:1565
+#: js/messages.php:107 libraries/common.lib.php:1567
msgid "Jun"
msgstr "Cze"
#. l10n: Short month name
-#: js/messages.php:109 libraries/common.lib.php:1567
+#: js/messages.php:109 libraries/common.lib.php:1569
msgid "Jul"
msgstr "Lip"
#. l10n: Short month name
-#: js/messages.php:111 libraries/common.lib.php:1569
+#: js/messages.php:111 libraries/common.lib.php:1571
msgid "Aug"
msgstr "Sie"
#. l10n: Short month name
-#: js/messages.php:113 libraries/common.lib.php:1571
+#: js/messages.php:113 libraries/common.lib.php:1573
msgid "Sep"
msgstr "Wrz"
#. l10n: Short month name
-#: js/messages.php:115 libraries/common.lib.php:1573
+#: js/messages.php:115 libraries/common.lib.php:1575
msgid "Oct"
msgstr "Paź"
#. l10n: Short month name
-#: js/messages.php:117 libraries/common.lib.php:1575
+#: js/messages.php:117 libraries/common.lib.php:1577
msgid "Nov"
msgstr "Lis"
#. l10n: Short month name
-#: js/messages.php:119 libraries/common.lib.php:1577
+#: js/messages.php:119 libraries/common.lib.php:1579
msgid "Dec"
msgstr "Gru"
@@ -1214,37 +1214,37 @@ msgid "Saturday"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:132 libraries/common.lib.php:1580
+#: js/messages.php:132 libraries/common.lib.php:1582
msgid "Sun"
msgstr "Nie"
#. l10n: Short week day name
-#: js/messages.php:134 libraries/common.lib.php:1582
+#: js/messages.php:134 libraries/common.lib.php:1584
msgid "Mon"
msgstr "Pon"
#. l10n: Short week day name
-#: js/messages.php:136 libraries/common.lib.php:1584
+#: js/messages.php:136 libraries/common.lib.php:1586
msgid "Tue"
msgstr "Wto"
#. l10n: Short week day name
-#: js/messages.php:138 libraries/common.lib.php:1586
+#: js/messages.php:138 libraries/common.lib.php:1588
msgid "Wed"
msgstr "Śro"
#. l10n: Short week day name
-#: js/messages.php:140 libraries/common.lib.php:1588
+#: js/messages.php:140 libraries/common.lib.php:1590
msgid "Thu"
msgstr "Czw"
#. l10n: Short week day name
-#: js/messages.php:142 libraries/common.lib.php:1590
+#: js/messages.php:142 libraries/common.lib.php:1592
msgid "Fri"
msgstr "Pią"
#. l10n: Short week day name
-#: js/messages.php:144 libraries/common.lib.php:1592
+#: js/messages.php:144 libraries/common.lib.php:1594
msgid "Sat"
msgstr "Sob"
@@ -1393,7 +1393,7 @@ msgid "Comment"
msgstr "Komentarz"
#: libraries/Index.class.php:466 libraries/common.lib.php:616
-#: libraries/common.lib.php:1199 libraries/display_tbl.lib.php:1117
+#: libraries/common.lib.php:1201 libraries/display_tbl.lib.php:1117
#: libraries/import.lib.php:1087 libraries/import.lib.php:1111
#: pdf_pages.php:285 setup/frames/index.inc.php:124
#: setup/lib/messages.inc.php:352 tbl_row_action.php:69
@@ -1419,7 +1419,7 @@ msgstr ""
"usunięty."
#: libraries/List_Database.class.php:431 libraries/server_links.inc.php:41
-#: server_databases.php:88 server_privileges.php:1621
+#: server_databases.php:88 server_privileges.php:1660
#: setup/lib/messages.inc.php:110 test/theme.php:93
msgid "Databases"
msgstr "Bazy danych"
@@ -1758,7 +1758,7 @@ msgid "Documentation"
msgstr "Dokumentacja"
#: libraries/common.lib.php:595 libraries/header_printview.inc.php:61
-#: server_processlist.php:60 server_status.php:247
+#: server_processlist.php:60 server_status.php:358
msgid "SQL query"
msgstr "Zapytanie SQL"
@@ -1774,130 +1774,130 @@ msgstr "Wyjaśnij SQL"
msgid "Skip Explain SQL"
msgstr "Pomiń wyjaśnienie SQL"
-#: libraries/common.lib.php:1212
+#: libraries/common.lib.php:1214
msgid "Without PHP Code"
msgstr "bez kodu PHP"
-#: libraries/common.lib.php:1215 setup/lib/messages.inc.php:355
+#: libraries/common.lib.php:1217 setup/lib/messages.inc.php:355
msgid "Create PHP Code"
msgstr "Utwórz kod PHP"
-#: libraries/common.lib.php:1233 server_status.php:341
+#: libraries/common.lib.php:1235 server_status.php:452
#: setup/lib/messages.inc.php:354
msgid "Refresh"
msgstr "Odśwież"
-#: libraries/common.lib.php:1242
+#: libraries/common.lib.php:1244
msgid "Skip Validate SQL"
msgstr "Pomiń sprawdzanie poprawności SQL"
-#: libraries/common.lib.php:1245 setup/lib/messages.inc.php:356 sql.php:518
+#: libraries/common.lib.php:1247 setup/lib/messages.inc.php:356 sql.php:518
msgid "Validate SQL"
msgstr "Sprawdź poprawność SQL"
-#: libraries/common.lib.php:1276
+#: libraries/common.lib.php:1278
msgid "Inline edit of this query"
msgstr ""
-#: libraries/common.lib.php:1278
+#: libraries/common.lib.php:1280
#, fuzzy
#| msgid "Engines"
msgid "Inline"
msgstr "Mechanizmy"
-#: libraries/common.lib.php:1332 libraries/common.lib.php:1347
+#: libraries/common.lib.php:1334 libraries/common.lib.php:1349
msgid "Profiling"
msgstr "Profilowanie"
-#: libraries/common.lib.php:1351 libraries/tbl_triggers.lib.php:28
+#: libraries/common.lib.php:1353 libraries/tbl_triggers.lib.php:28
#: server_processlist.php:58
msgid "Time"
msgstr "Czas"
#. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "B"
msgstr "bajtów"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "KiB"
msgstr "KB"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "MiB"
msgstr "MB"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "GiB"
msgstr "GB"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "TiB"
msgstr "TB"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "PiB"
msgstr "PB"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "EiB"
msgstr "EB"
#. l10n: Thousands separator
-#: libraries/common.lib.php:1417
+#: libraries/common.lib.php:1419
msgid ","
msgstr " "
#. l10n: Decimal separator
-#: libraries/common.lib.php:1419
+#: libraries/common.lib.php:1421
msgid "."
msgstr ","
#. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string
-#: libraries/common.lib.php:1596
+#: libraries/common.lib.php:1598
#: libraries/transformations/text_plain__dateformat.inc.php:34
msgid "%B %d, %Y at %I:%M %p"
msgstr "%d %B %Y, %H:%M"
-#: libraries/common.lib.php:1898
+#: libraries/common.lib.php:1907
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "%s dni, %s godzin, %s minut i %s sekund"
-#: libraries/common.lib.php:2313 libraries/common.lib.php:2316
-#: libraries/display_tbl.lib.php:290 server_status.php:608
+#: libraries/common.lib.php:2322 libraries/common.lib.php:2325
+#: libraries/display_tbl.lib.php:290 server_status.php:719
msgid "Begin"
msgstr "Początek"
-#: libraries/common.lib.php:2314 libraries/common.lib.php:2317
+#: libraries/common.lib.php:2323 libraries/common.lib.php:2326
#: libraries/display_tbl.lib.php:291 server_binlog.php:168
#: server_binlog.php:170
msgid "Previous"
msgstr "Poprzednie"
-#: libraries/common.lib.php:2345 libraries/common.lib.php:2348
+#: libraries/common.lib.php:2354 libraries/common.lib.php:2357
#: libraries/display_tbl.lib.php:353
msgid "End"
msgstr "Koniec"
-#: libraries/common.lib.php:2421
+#: libraries/common.lib.php:2430
#, php-format
msgid "Jump to database "%s"."
msgstr "Skok do bazy danych "%s"."
-#: libraries/common.lib.php:2441
+#: libraries/common.lib.php:2450
#, 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/common.lib.php:2821 libraries/common.lib.php:2828
+#: libraries/common.lib.php:2830 libraries/common.lib.php:2837
#: libraries/db_links.inc.php:68 libraries/export/sql.php:25
#: libraries/import/sql.php:18 libraries/server_links.inc.php:45
#: libraries/tbl_links.inc.php:60 querywindow.php:99 test/theme.php:97
msgid "SQL"
msgstr "SQL"
-#: libraries/common.lib.php:2830 libraries/db_links.inc.php:104
+#: libraries/common.lib.php:2839 libraries/db_links.inc.php:104
#: libraries/tbl_links.inc.php:95 libraries/tbl_links.inc.php:117
#: view_operations.php:89
msgid "Operations"
@@ -1952,8 +1952,8 @@ msgid "Import"
msgstr "Import"
#: libraries/db_links.inc.php:111 libraries/server_links.inc.php:66
-#: server_privileges.php:72 server_privileges.php:1683
-#: server_privileges.php:2032 test/theme.php:117
+#: server_privileges.php:111 server_privileges.php:1722
+#: server_privileges.php:2071 test/theme.php:117
msgid "Privileges"
msgstr "Uprawnienia"
@@ -2002,22 +2002,22 @@ msgid "Change password"
msgstr "Zmień hasło"
#: libraries/display_change_password.lib.php:35
-#: libraries/replication_gui.lib.php:345 server_privileges.php:768
+#: libraries/replication_gui.lib.php:345 server_privileges.php:807
msgid "No Password"
msgstr "Brak hasła"
#: libraries/display_change_password.lib.php:41
#: libraries/replication_gui.lib.php:59 libraries/replication_gui.lib.php:60
#: libraries/replication_gui.lib.php:335 libraries/replication_gui.lib.php:339
-#: libraries/replication_gui.lib.php:349 server_privileges.php:757
-#: server_privileges.php:761 server_privileges.php:772
-#: server_privileges.php:1499 server_synchronize.php:1175
+#: libraries/replication_gui.lib.php:349 server_privileges.php:796
+#: server_privileges.php:800 server_privileges.php:811
+#: server_privileges.php:1538 server_synchronize.php:1175
msgid "Password"
msgstr "Hasło"
#: libraries/display_change_password.lib.php:46
#: libraries/replication_gui.lib.php:353 libraries/replication_gui.lib.php:356
-#: server_privileges.php:776 server_privileges.php:779
+#: server_privileges.php:815 server_privileges.php:818
msgid "Re-type"
msgstr "Ponownie"
@@ -2032,12 +2032,12 @@ msgid "MySQL 4.0 compatible"
msgstr "Kompatybilny z MySQL-em 4.0"
#: libraries/display_change_password.lib.php:72
-#: libraries/replication_gui.lib.php:360 server_privileges.php:783
+#: libraries/replication_gui.lib.php:360 server_privileges.php:822
msgid "Generate Password"
msgstr "Generuj hasło"
#: libraries/display_change_password.lib.php:75
-#: libraries/replication_gui.lib.php:363 server_privileges.php:786
+#: libraries/replication_gui.lib.php:363 server_privileges.php:825
msgid "Generate"
msgstr "Generuj"
@@ -2050,8 +2050,8 @@ msgstr "Utwórz nową bazę danych"
msgid "Create"
msgstr "Utwórz"
-#: libraries/display_create_database.lib.php:40 server_privileges.php:74
-#: server_privileges.php:1388 server_replication.php:35
+#: libraries/display_create_database.lib.php:40 server_privileges.php:113
+#: server_privileges.php:1427 server_replication.php:35
msgid "No Privileges"
msgstr "Brak uprawnień"
@@ -2142,7 +2142,7 @@ msgstr "Typ kompresji"
#: libraries/display_export.lib.php:240 libraries/display_import.lib.php:197
#: libraries/display_import.lib.php:210 libraries/display_tbl.lib.php:530
#: libraries/export/sql.php:868 libraries/tbl_properties.inc.php:575
-#: server_privileges.php:1836 server_processlist.php:75
+#: server_privileges.php:1875 server_processlist.php:75
msgid "None"
msgstr "Brak"
@@ -2472,7 +2472,7 @@ msgstr ""
msgid "Buffer Pool"
msgstr "Rezerwy buforowe"
-#: libraries/engines/innodb.lib.php:145 server_status.php:306
+#: libraries/engines/innodb.lib.php:145 server_status.php:417
msgid "InnoDB Status"
msgstr "Status InnoDB"
@@ -2481,8 +2481,8 @@ msgid "Buffer Pool Usage"
msgstr "Użycie rezerw buforowych"
#: libraries/engines/innodb.lib.php:194 server_databases.php:137
-#: server_databases.php:305 server_status.php:414 server_status.php:475
-#: server_status.php:496 tbl_printview.php:351 tbl_structure.php:696
+#: server_databases.php:305 server_status.php:525 server_status.php:586
+#: server_status.php:607 tbl_printview.php:351 tbl_structure.php:696
msgid "Total"
msgstr "Sumarycznie"
@@ -2832,7 +2832,7 @@ msgstr "Microsoft Word 2000"
#: libraries/export/latex.php:201 libraries/export/odt.php:48
#: libraries/export/sql.php:106 libraries/export/sql.php:868
#: libraries/export/texytext.php:27 server_databases.php:127
-#: server_privileges.php:537 server_replication.php:316 tbl_printview.php:317
+#: server_privileges.php:576 server_replication.php:316 tbl_printview.php:317
#: tbl_structure.php:665
msgid "Data"
msgstr "Dane"
@@ -2882,9 +2882,9 @@ msgstr "Typ MIME"
#: libraries/export/xml.php:102 libraries/header_printview.inc.php:57
#: libraries/replication_gui.lib.php:63 libraries/replication_gui.lib.php:174
#: libraries/replication_gui.lib.php:269 libraries/replication_gui.lib.php:272
-#: libraries/replication_gui.lib.php:329 server_privileges.php:692
-#: server_privileges.php:695 server_privileges.php:751
-#: server_privileges.php:1498 server_privileges.php:2030
+#: libraries/replication_gui.lib.php:329 server_privileges.php:731
+#: server_privileges.php:734 server_privileges.php:790
+#: server_privileges.php:1537 server_privileges.php:2069
#: server_processlist.php:55 server_synchronize.php:1159
msgid "Host"
msgstr "Host"
@@ -3248,863 +3248,6 @@ msgstr "Brak"
msgid "Convert to Kana"
msgstr ""
-#. l10n: Text direction, use either ltr or rtl
-#: libraries/messages.inc.php:19
-msgid "ltr"
-msgstr "ltr"
-
-#: libraries/messages.inc.php:21
-msgid "Content of table __TABLE__"
-msgstr "Zawartość tabeli __TABLE__"
-
-#: libraries/messages.inc.php:22
-msgid "(continued)"
-msgstr "(kontynuacja)"
-
-#: libraries/messages.inc.php:23
-msgid "Structure of table __TABLE__"
-msgstr "Struktura tabeli __TABLE__"
-
-#: libraries/messages.inc.php:25 server_privileges.php:227
-msgid "Includes all privileges except GRANT."
-msgstr "Wszystkie uprawnienia, oprócz GRANT."
-
-#: libraries/messages.inc.php:26 server_privileges.php:153
-#: server_privileges.php:476
-msgid "Allows altering the structure of existing tables."
-msgstr "Pozwól zmieniać strukturę istniejących tabel."
-
-#: libraries/messages.inc.php:27 server_privileges.php:169
-#: server_privileges.php:482
-msgid "Allows altering and dropping stored routines."
-msgstr "Pozwól modyfikować i usuwać procedury składowane."
-
-#: libraries/messages.inc.php:28 server_privileges.php:145
-#: server_privileges.php:475
-msgid "Allows creating new databases and tables."
-msgstr "Pozwól tworzyć nowe bazy danych i tabele."
-
-#: libraries/messages.inc.php:29 server_privileges.php:168
-#: server_privileges.php:481
-msgid "Allows creating stored routines."
-msgstr "Pozwól tworzyć procedury składowane."
-
-#: libraries/messages.inc.php:30 server_privileges.php:475
-msgid "Allows creating new tables."
-msgstr "Pozwól tworzyć nowe tabele."
-
-#: libraries/messages.inc.php:31 server_privileges.php:156
-#: server_privileges.php:479
-msgid "Allows creating temporary tables."
-msgstr "Pozwala tworzyć tabele tymczasowe."
-
-#: libraries/messages.inc.php:32 server_privileges.php:170
-#: server_privileges.php:515
-msgid "Allows creating, dropping and renaming user accounts."
-msgstr "Pozwól tworzyć, usuwać i zmieniać nazwy kont użytkowników."
-
-#: libraries/messages.inc.php:33 server_privileges.php:160
-#: server_privileges.php:164 server_privileges.php:487
-#: server_privileges.php:491
-msgid "Allows creating new views."
-msgstr "Pozwól tworzyć perspektywy."
-
-#: libraries/messages.inc.php:34 server_privileges.php:144
-#: server_privileges.php:467
-msgid "Allows deleting data."
-msgstr "Pozwól usuwać dane."
-
-#: libraries/messages.inc.php:35 server_privileges.php:146
-#: server_privileges.php:478
-msgid "Allows dropping databases and tables."
-msgstr "Pozwól usuwać bazy danych i tabele."
-
-#: libraries/messages.inc.php:36 server_privileges.php:478
-msgid "Allows dropping tables."
-msgstr "Pozwól usuwać tabele."
-
-#: libraries/messages.inc.php:37 server_privileges.php:161
-#: server_privileges.php:495
-msgid "Allows to set up events for the event scheduler"
-msgstr "Pozwól ustawiać zdarzenia w harmonogramie zdarzeń"
-
-#: libraries/messages.inc.php:38 server_privileges.php:171
-#: server_privileges.php:483
-msgid "Allows executing stored routines."
-msgstr "Pozwól wykonywać procedury składowane."
-
-#: libraries/messages.inc.php:39 server_privileges.php:150
-#: server_privileges.php:470
-msgid "Allows importing data from and exporting data into files."
-msgstr "Pozwól importować i eksportować dane z/do plików."
-
-#: libraries/messages.inc.php:40 server_privileges.php:501
-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/messages.inc.php:41 server_privileges.php:152
-#: server_privileges.php:477
-msgid "Allows creating and dropping indexes."
-msgstr "Pozwól tworzyć i usuwać indeksy."
-
-#: libraries/messages.inc.php:42 server_privileges.php:142
-#: server_privileges.php:403 server_privileges.php:465
-msgid "Allows inserting and replacing data."
-msgstr "Pozwól dodawać i zamieniać dane."
-
-#: libraries/messages.inc.php:43 server_privileges.php:157
-#: server_privileges.php:510
-msgid "Allows locking tables for the current thread."
-msgstr "Pozwól blokować tabele dla aktualnego wątku."
-
-#: libraries/messages.inc.php:44 server_privileges.php:607
-#: server_privileges.php:609
-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/messages.inc.php:45 server_privileges.php:595
-#: server_privileges.php:597
-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/messages.inc.php:46 server_privileges.php:601
-#: server_privileges.php:603
-msgid ""
-"Limits the number of commands that change any table or database the user may "
-"execute per hour."
-msgstr ""
-"Ogranicz liczbę poleceń zmieniających jakąkolwiek tabelę lub bazę danych, "
-"które może wykonać użytkownik w ciągu godziny."
-
-#: libraries/messages.inc.php:47 server_privileges.php:613
-#: server_privileges.php:615
-msgid "Limits the number of simultaneous connections the user may have."
-msgstr "Ogranicz liczbę jednoczesnych połączeń, które może użytkownik."
-
-#: libraries/messages.inc.php:48 server_privileges.php:149
-#: server_privileges.php:505
-msgid "Allows viewing processes of all users"
-msgstr "Pozwól oglądać procesy wszystkich użytkowyników"
-
-#: libraries/messages.inc.php:49 server_privileges.php:151
-#: server_privileges.php:409 server_privileges.php:511
-msgid "Has no effect in this MySQL version."
-msgstr "Nie ma żadnych skutków w tej wersji MySQL."
-
-#: libraries/messages.inc.php:50 server_privileges.php:147
-#: server_privileges.php:506
-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/messages.inc.php:51 server_privileges.php:159
-#: server_privileges.php:513
-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/messages.inc.php:52 server_privileges.php:158
-#: server_privileges.php:514
-msgid "Needed for the replication slaves."
-msgstr "Potrzebne dla replikacji serwera podrzędnego."
-
-#: libraries/messages.inc.php:53 server_privileges.php:141
-#: server_privileges.php:400 server_privileges.php:464
-msgid "Allows reading data."
-msgstr "Pozwól czytać dane."
-
-#: libraries/messages.inc.php:54 server_privileges.php:154
-#: server_privileges.php:508
-msgid "Gives access to the complete list of databases."
-msgstr "Daj dostęp do pełnej listy baz danych."
-
-#: libraries/messages.inc.php:55 server_privileges.php:165
-#: server_privileges.php:167 server_privileges.php:480
-msgid "Allows performing SHOW CREATE VIEW queries."
-msgstr "Pozwól wykonywać zapytania SHOW CREATE VIEW."
-
-#: libraries/messages.inc.php:56 server_privileges.php:148
-#: server_privileges.php:507
-msgid "Allows shutting down the server."
-msgstr "Pozwól wyłączyć serwer."
-
-#: libraries/messages.inc.php:57 server_privileges.php:155
-#: server_privileges.php:504
-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 ""
-"Pozwól na połączenie, nawet jeśli osiągnięta została maksymalna ilość "
-"połączeń; Wymagane dla większość operacji administracyjnych, takich jak "
-"ustawianie zmiennych globalnych czy unicestwianie wątków innych użytkowników."
-
-#: libraries/messages.inc.php:58 server_privileges.php:162
-#: server_privileges.php:496
-msgid "Allows creating and dropping triggers"
-msgstr "Pozwól tworzyć i usuwać wyzwalacze."
-
-#: libraries/messages.inc.php:59 server_privileges.php:143
-#: server_privileges.php:406 server_privileges.php:466
-msgid "Allows changing data."
-msgstr "Pozwól zmieniać dane."
-
-#: libraries/messages.inc.php:60 server_privileges.php:221
-msgid "No privileges."
-msgstr "Brak uprawnień."
-
-#: libraries/messages.inc.php:62
-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 ""
-"Liczba transakcji, które używały pamięci podręcznej tymczasowego dziennika "
-"binarnego, które przekroczyły wartość binlog_cache_size i do zapisania "
-"instrukcji transakcji został użyty plik tymczasowy."
-
-#: libraries/messages.inc.php:63
-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/messages.inc.php:64
-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 "
-"to increase the tmp_table_size value to cause temporary tables to be memory-"
-"based instead of disk-based."
-msgstr ""
-"Liczba tabel tymczasowych na dysku utworzonych automatycznie przez serwer "
-"podczas wykonywanie instrukcji. Przy dużej wartości Created_tmp_disk_tables, "
-"zwiększenie wartości tmp_table_size spowoduje tworzenie tymczasowych tabel w "
-"pamięci, a nie na dysku."
-
-#: libraries/messages.inc.php:65
-msgid "How many temporary files mysqld has created."
-msgstr "Ile plików tymczasowych utworzył mysqld."
-
-#: libraries/messages.inc.php:66
-msgid ""
-"The number of in-memory temporary tables created automatically by the server "
-"while executing statements."
-msgstr ""
-"Liczba tabel tymczasowych w pamięci, utworzonych automatycznie przez serwer "
-"podczas wykonywania instrukcji."
-
-#: libraries/messages.inc.php:67
-msgid ""
-"The number of rows written with INSERT DELAYED for which some error occurred "
-"(probably duplicate key)."
-msgstr ""
-"Liczba rekordów zapisanych przy pomocy INSERT DELAYED, dla których wystąpił "
-"jakiś błąd (prawdopodobnie zdublowany klucz)."
-
-#: libraries/messages.inc.php:68
-msgid ""
-"The number of INSERT DELAYED handler threads in use. Every different table "
-"on which one uses INSERT DELAYED gets its own thread."
-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/messages.inc.php:69
-msgid "The number of INSERT DELAYED rows written."
-msgstr "Liczba rekordów zapisanych poprzez INSERT DELAYED."
-
-#: libraries/messages.inc.php:70
-msgid "The number of executed FLUSH statements."
-msgstr "Liczba wykonanych instrukcji FLUSH."
-
-#: libraries/messages.inc.php:71
-msgid "The number of internal COMMIT statements."
-msgstr "Liczba wewnętrznych intrukcji COMMIT."
-
-#: libraries/messages.inc.php:72
-msgid "The number of times a row was deleted from a table."
-msgstr "Ile razy rekord został usunięty z tabeli."
-
-#: libraries/messages.inc.php:73
-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 ""
-"Serwer MySQL może zapytać mechanizm składowania Cluster NDB, czy ma "
-"informacje o tabeli o zadanej nazwie. Nazywamy to odkryciem (discovery"
-"i>). Handler_discover wskazuje, ile razy tabela została odkryta."
-
-#: libraries/messages.inc.php:74
-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 ""
-"Ile razy z indeksu została odczytana pierwsza pozycja. Duża wartość "
-"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/messages.inc.php:75
-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 ""
-"Liczba żądań odczytu rekordu na podstawie indeksu. Duża wartość to dobra "
-"oznaka tego, że zapytania i tabele są właściwie zindeksowane."
-
-#: libraries/messages.inc.php:76
-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 ""
-"Liczba żądań odczytu następnego rekordu w porządku indeksowym. Ta wartość "
-"jest zwiększana przy odpytywaniu o zindeksowaną kolumnę na ograniczonym "
-"przedziale lub przy przeszukiwaniu indeksu."
-
-#: libraries/messages.inc.php:77
-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 ""
-"Liczba żądań odczytu poprzedniego rekordu w porządku indeksowym. Metoda "
-"używana głównie do optymalizacji ORDER BY … DESC."
-
-#: libraries/messages.inc.php:78
-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 "
-"probably have a lot of queries that require MySQL to scan whole tables or "
-"you have joins that don't use keys properly."
-msgstr ""
-"Liczba żądań odczytu następnego rekordu na podstawie stałego położenia. "
-"Wartość jest duża przy wykonywaniu dużej ilości zapytań wymagających "
-"sortowania rezultatu. Prawdopodobnie wykonano wiele zapytań wymagających "
-"przeszukania całej tabeli lub złączeń, które nie używają poprawnie indeksów."
-
-#: libraries/messages.inc.php:79
-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 "
-"tables are not properly indexed or that your queries are not written to take "
-"advantage of the indexes you have."
-msgstr ""
-"Liczba żądań odczytu następnego rekord w pliku z danymi. Wartość jest duża "
-"przy wykonywania wielu przeszukiwań tabeli. Ogólnie sugeruje to, że tabele "
-"nie są poprawnie zindeksowane lub że zapytania nie są napisane w sposób "
-"pozwalający skorzystać z istniejących indeksów."
-
-#: libraries/messages.inc.php:80
-msgid "The number of internal ROLLBACK statements."
-msgstr "Liczba wewnętrznych instrukcji ROLLBACK."
-
-#: libraries/messages.inc.php:81
-msgid "The number of requests to update a row in a table."
-msgstr "Liczba żądań zmiany rekordu w tabeli."
-
-#: libraries/messages.inc.php:82
-msgid "The number of requests to insert a row in a table."
-msgstr "Liczba żądań dodania rekordu do tabeli."
-
-#: libraries/messages.inc.php:83
-msgid "The number of pages containing data (dirty or clean)."
-msgstr "Liczba stron zawierających dane (brudnych lub czystych)."
-
-#: libraries/messages.inc.php:84
-msgid "The number of pages currently dirty."
-msgstr "Liczba aktualnie brudnych stron."
-
-#: libraries/messages.inc.php:85
-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/messages.inc.php:86
-msgid "The number of free pages."
-msgstr "Liczba wolnych stron."
-
-#: libraries/messages.inc.php:87
-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 ""
-"Liczba stron zatrzaśniętych w puli bufora InnoDB. Są to strony aktualnie "
-"odczytywane lub zapisywane lub takie, które nie mogą zostać wymiecione lub "
-"usunięte z jakiegoś innego powodu."
-
-#: libraries/messages.inc.php:88
-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 "
-"be calculated as Innodb_buffer_pool_pages_total - "
-"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data."
-msgstr ""
-"Liczba strony stron zajętych z powodu ich alokacji dla celów "
-"administracyjnych takich jak blokady rekordu lub adaptacyjny indeks "
-"haszujący. Wartość ta może też zostać policzona jako "
-"Innodb_buffer_pool_pages_total - Innodb_buffer_pool_pages_free - "
-"Innodb_buffer_pool_pages_data."
-
-#: libraries/messages.inc.php:89
-msgid "Total size of buffer pool, in pages."
-msgstr "Łączny rozmiar puli bufora, w stronach."
-
-#: libraries/messages.inc.php:90
-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 ""
-"Liczba \"losowych\" odczytów z wyprzedzeniem zainicjowanych przez InnoDB. "
-"Występuje gdy zapytane przeszukiwałoby duże fragmenty tabeli, ale w dowolnej "
-"kolejności."
-
-#: libraries/messages.inc.php:91
-msgid ""
-"The number of sequential read-aheads InnoDB initiated. This happens when "
-"InnoDB does a sequential full table scan."
-msgstr ""
-"Liczba sekwencyjnych odczytów z wyprzedzeniem zainicjowanych przez InnoDB. "
-"Występuje gdy InnoDB wykonuje sekwencyjne pełne przeszukiwanie tabeli."
-
-#: libraries/messages.inc.php:92
-msgid "The number of logical read requests InnoDB has done."
-msgstr "Liczba żądań logicznych odczytów które wykonał InnoDB."
-
-#: libraries/messages.inc.php:93
-msgid ""
-"The number of logical reads that InnoDB could not satisfy from buffer pool "
-"and had to do a single-page read."
-msgstr ""
-"Liczba logicznych odczytów, których InnoDB nie mógł zaspokoić pulą bufora i "
-"musiał wykonać odczyt pojedynczej strony."
-
-#: libraries/messages.inc.php:94
-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 "
-"available, it's necessary to wait for pages to be flushed first. This "
-"counter counts instances of these waits. If the buffer pool size was set "
-"properly, this value should be small."
-msgstr ""
-"Zwykle zapis do puli bufora InnoDB obywa się w tle. Jednakże, jeśli "
-"niezbędny jest odczyt lub utworzenie strony a brak jest czystych stron, "
-"konieczne jest najpierw oczekiwanie na wymiecienie stron. Ten licznik "
-"wskazuje liczbę wystąpień takich oczekiwań. Jeżeli rozmiar puli bufora był "
-"ustawiony właściwie, wartość ta powinna być mała."
-
-#: libraries/messages.inc.php:95
-msgid "The number writes done to the InnoDB buffer pool."
-msgstr "Liczba wykonanych zapisów do puli bufora InnoDB."
-
-#: libraries/messages.inc.php:96
-msgid "The number of fsync() operations so far."
-msgstr "Liczba dotąd wykonanych operacji fsync()."
-
-#: libraries/messages.inc.php:97
-msgid "The current number of pending fsync() operations."
-msgstr "Aktualna liczba operacji fsync() w toku."
-
-#: libraries/messages.inc.php:98
-msgid "The current number of pending reads."
-msgstr "Aktualna liczba odczytów w toku."
-
-#: libraries/messages.inc.php:99
-msgid "The current number of pending writes."
-msgstr "Aktualna liczba zapisów w toku."
-
-#: libraries/messages.inc.php:100
-msgid "The amount of data read so far, in bytes."
-msgstr "Ilość dotąd odczytanych danych, w bajtach."
-
-#: libraries/messages.inc.php:101
-msgid "The total number of data reads."
-msgstr "Łączna liczba odczytów danych."
-
-#: libraries/messages.inc.php:102
-msgid "The total number of data writes."
-msgstr "Łączna liczba zapisów danych."
-
-#: libraries/messages.inc.php:103
-msgid "The amount of data written so far, in bytes."
-msgstr "Ilość dotąd zapisanych danych, w bajtach."
-
-#: libraries/messages.inc.php:104
-msgid "The number of pages that have been written for doublewrite operations."
-msgstr "Liczba przeprowadzonych zapisów typu doublewrite."
-
-#: libraries/messages.inc.php:105
-msgid "The number of doublewrite operations that have been performed."
-msgstr "Liczba stron zapisanych przy zapisie typu doublewrite."
-
-#: libraries/messages.inc.php:106
-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 ""
-"Ile razy czekano, bo bufor dziennika był zbyt mały i przed wznowieniem pracy "
-"oczekiwano na jego opróżnienie."
-
-#: libraries/messages.inc.php:107
-msgid "The number of log write requests."
-msgstr "Liczba żądań zapisów do dziennika."
-
-#: libraries/messages.inc.php:108
-msgid "The number of physical writes to the log file."
-msgstr "Liczba fizycznych zapisów do pliku dziennika."
-
-#: libraries/messages.inc.php:109
-msgid "The number of fsync() writes done to the log file."
-msgstr "Liczba synchronicznych zapisów do pliku dziennika."
-
-#: libraries/messages.inc.php:110
-msgid "The number of pending log file fsyncs."
-msgstr "Liczba wywołań fsync dla pliku dziennika w toku."
-
-#: libraries/messages.inc.php:111
-msgid "Pending log file writes."
-msgstr "Liczba zapisów do pliku dziennika w toku."
-
-#: libraries/messages.inc.php:112
-msgid "The number of bytes written to the log file."
-msgstr "Liczba bajtów zapisanych do pliku dziennika."
-
-#: libraries/messages.inc.php:113
-msgid "The number of pages created."
-msgstr "Liczba utworzonych stron."
-
-#: libraries/messages.inc.php:114
-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 ""
-"Wkompilowana wielkość strony InnoDB (domyślnie 16KB). Wiele wartości jest "
-"mierzonych w stronach; znajomość wielkości strony pozwala na ich łatwą "
-"konwersję na bajty."
-
-#: libraries/messages.inc.php:115
-msgid "The number of pages read."
-msgstr "Liczba odczytanych stron."
-
-#: libraries/messages.inc.php:116
-msgid "The number of pages written."
-msgstr "Liczba zapisanych stron."
-
-#: libraries/messages.inc.php:117
-msgid "The number of row locks currently being waited for."
-msgstr "Liczba blokad rekordów na które aktualnie się czeka."
-
-#: libraries/messages.inc.php:118
-msgid "The average time to acquire a row lock, in milliseconds."
-msgstr "Średni czas uzyskania blokady rekordu, w milisekundach."
-
-#: libraries/messages.inc.php:119
-msgid "The total time spent in acquiring row locks, in milliseconds."
-msgstr "Całkowity czas zużyty na uzyskiwanie blokad rekordów, w milisekundach."
-
-#: libraries/messages.inc.php:120
-msgid "The maximum time to acquire a row lock, in milliseconds."
-msgstr "Maksymalny czas uzyskania blokady rekordu, w milisekundach."
-
-#: libraries/messages.inc.php:121
-msgid "The number of times a row lock had to be waited for."
-msgstr "Ile razy czekano na blokadę rekordu."
-
-#: libraries/messages.inc.php:122
-msgid "The number of rows deleted from InnoDB tables."
-msgstr "Liczba rekordów usuniętych z tabel InnoDB."
-
-#: libraries/messages.inc.php:123
-msgid "The number of rows inserted in InnoDB tables."
-msgstr "Liczba rekordów dodanych do tabel InnoDB."
-
-#: libraries/messages.inc.php:124
-msgid "The number of rows read from InnoDB tables."
-msgstr "Liczba rekordów odczytanych z tabel InnoDB."
-
-#: libraries/messages.inc.php:125
-msgid "The number of rows updated in InnoDB tables."
-msgstr "Liczba rekordów zmienionych w tabelach InnoDB."
-
-#: libraries/messages.inc.php:126
-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 ""
-"Liczba bloków w buforze podręcznym indeksów, które zostały zmodyfikowane ale "
-"jeszcze nie wymiecione na dysk. Wcześniej zmienna miała nazwę "
-"Not_flushed_key_blocks."
-
-#: libraries/messages.inc.php:127
-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 ""
-"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/messages.inc.php:128
-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 ""
-"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/messages.inc.php:129
-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/messages.inc.php:130
-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 ""
-"Liczba fizycznych odczytów bloków indeksów z dysku. Duża wartość key_reads "
-"oznacza, że prawdopodobnie wartość key_buffer_size jest zbyt mała. "
-"Współczynnik chybień bufora podręcznego można policzyć ze wzoru Key_reads/"
-"Key_read_requests."
-
-#: libraries/messages.inc.php:131
-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/messages.inc.php:132
-msgid "The number of physical writes of a key block to disk."
-msgstr "Liczba fizycznych zapisów bloków indeksów na dysk."
-
-#: libraries/messages.inc.php:133
-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 ""
-"Całkowity koszta ostatnio skompilowanego zapytania, wyliczony przez "
-"optymalizator zapytań. Przydatny do porównań kosztów różnych planów "
-"wykonania tego samego zapytania. Domyślna wartość 0 oznacza, że jeszcze "
-"żadne zapytanie nie zostało skompilowane."
-
-#: libraries/messages.inc.php:134
-msgid "The number of rows waiting to be written in INSERT DELAYED queues."
-msgstr "Liczba rekordów oczekujących na zapisanie w kolejkach INSERT DELAYED."
-
-#: libraries/messages.inc.php:135
-msgid ""
-"The number of tables that have been opened. If opened tables is big, your "
-"table cache value is probably too small."
-msgstr ""
-"Liczba kiedykolwiek otwartych tabel. Jeśli ta wartość jest duża, "
-"prawdopodobnie wielkość pamięci podręcznej tabel jest zbyt mała."
-
-#: libraries/messages.inc.php:136
-msgid "The number of files that are open."
-msgstr "Liczba otwartych plików."
-
-#: libraries/messages.inc.php:137
-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/messages.inc.php:138
-msgid "The number of tables that are open."
-msgstr "Liczba otwartych tabel."
-
-#: libraries/messages.inc.php:139
-msgid "The number of free memory blocks in query cache."
-msgstr "Liczba wolnych bloków pamięci w podręcznym buforze zapytań."
-
-#: libraries/messages.inc.php:140
-msgid "The amount of free memory for query cache."
-msgstr "Ilość dostępnej pamięci w podręcznym buforze zapytań."
-
-#: libraries/messages.inc.php:141
-msgid "The number of cache hits."
-msgstr "Liczba trafień pamięci podręcznej."
-
-#: libraries/messages.inc.php:142
-msgid "The number of queries added to the cache."
-msgstr "Liczba zapytań dodanych do pamięci podręcznej."
-
-#: libraries/messages.inc.php:143
-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 "
-"cache size. The query cache uses a least recently used (LRU) strategy to "
-"decide which queries to remove from the cache."
-msgstr ""
-"Liczba zapytań, które zostały usunięte z pamięci podręcznej, by zwolnic "
-"pamięć do buforowania nowych zapytań. Ta informacje może pomóc dostroić "
-"wielkość bufora podręcznego. Do decydowania o tym, które zapytania usunąć z "
-"bufora podręcznego używana jest strategia \"najpierw najdłużej nieużywany"
-"\" (least recently used - LRU)."
-
-#: libraries/messages.inc.php:144
-msgid ""
-"The number of non-cached queries (not cachable, or not cached due to the "
-"query_cache_type setting)."
-msgstr ""
-"Liczba niezbuforowanych zapytań (nie dających się zbuforować lub "
-"niezbuforowanych z powodu ustawienia query_cache_type)."
-
-#: libraries/messages.inc.php:145
-msgid "The number of queries registered in the cache."
-msgstr "Liczba zapytań zarejestrowanych w buforze podręcznym."
-
-#: libraries/messages.inc.php:146
-msgid "The total number of blocks in the query cache."
-msgstr "Całkowita liczba bloków w buforze podręcznym zapytań."
-
-#: libraries/messages.inc.php:147
-msgctxt "$strShowStatusReset"
-msgid "Reset"
-msgstr "Zresetuj"
-
-#: libraries/messages.inc.php:148
-msgid "The status of failsafe replication (not yet implemented)."
-msgstr "Stan replikacji zabezpieczającej (jeszcze nie zaimplementowane)."
-
-#: libraries/messages.inc.php:149
-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 ""
-"Liczba złączeń nie używających indeksów. Wartość różna od 0 sugeruje "
-"staranne przyjrzenie się indeksom tabel."
-
-#: libraries/messages.inc.php:150
-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/messages.inc.php:151
-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 ""
-"Liczba złączeń bez użycia indeksów gdy możliwość ich użycia była sprawdzana "
-"dla każdego rekordu. (Wartość różna od 0 sugeruje staranne przyjrzenie się "
-"indeksom tabel.)"
-
-#: libraries/messages.inc.php:152
-msgid ""
-"The number of joins that used ranges on the first table. (It's normally not "
-"critical even if this is big.)"
-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/messages.inc.php:153
-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/messages.inc.php:154
-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/messages.inc.php:155
-msgid ""
-"Total (since startup) number of times the replication slave SQL thread has "
-"retried transactions."
-msgstr ""
-"Ile raz łącznie (od startu) podrzędny wątek SQL replikacji ponawiał "
-"transakcje."
-
-#: libraries/messages.inc.php:156
-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/messages.inc.php:157
-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/messages.inc.php:158
-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/messages.inc.php:159
-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 ""
-"Liczba przebiegów scalania, które musiał wykonać algorytm sortujący. Przy "
-"dużej wartości, warto wziąć pod uwagę zwiększenie wartości zmiennej "
-"systemowej sort_buffer_size."
-
-#: libraries/messages.inc.php:160
-msgid "The number of sorts that were done with ranges."
-msgstr "Liczba sortowań wykonanych przy użyciu zakresów."
-
-#: libraries/messages.inc.php:161
-msgid "The number of sorted rows."
-msgstr "Liczba posortowanych rekordów."
-
-#: libraries/messages.inc.php:162
-msgid "The number of sorts that were done by scanning the table."
-msgstr "Liczba sortowań wykonanych poprzez przeszukiwanie tabeli."
-
-#: libraries/messages.inc.php:163
-msgid "The number of times that a table lock was acquired immediately."
-msgstr "Ile razy blokada tabeli została uzyskana natychmiastowo."
-
-#: libraries/messages.inc.php:164
-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 "
-"should first optimize your queries, and then either split your table or "
-"tables or use replication."
-msgstr ""
-"Ile razy blokada tabeli nie mogła zostać uzyskana natychmiastowo i niezbędne "
-"było oczekiwanie. Przy wysoka wartość oraz problemach z wydajnością powinno "
-"się najpierw zoptymalizować zapytania, a następnie podzielić tabelę (tabele) "
-"lub użyć replikacji."
-
-#: libraries/messages.inc.php:165
-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 ""
-"Liczba wątków w buforze podręcznym wątków. Współczynnik trafienia w bufor "
-"może być wyliczony ze wzoru Threads_created/Connections. Kolor czerwony "
-"oznacza, że powinno się zwiększyć thread_cache_size."
-
-#: libraries/messages.inc.php:166
-msgid "The number of currently open connections."
-msgstr "Liczba aktualnie otwartych połączeń."
-
-#: libraries/messages.inc.php:167
-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 "
-"doesn't give a notable performance improvement if you have a good thread "
-"implementation.)"
-msgstr ""
-"Liczba wątków utworzonych by obsłużyć połączenia. Jeżeli wartość "
-"Threads_created jest duża, można chcieć zwiększyć wartość thread_cache_size. "
-"(W przypadku dobrej implementacja wątków zwykle nie daje to zauważalnego "
-"polepszenia wydajności.)"
-
-#: libraries/messages.inc.php:168
-msgid "The number of threads that are not sleeping."
-msgstr "Liczba nieuśpionych wątków."
-
#: libraries/mult_submits.inc.php:76 libraries/tbl_properties.inc.php:513
#: tbl_structure.php:29 tbl_structure.php:153 tbl_structure.php:157
#: tbl_structure.php:473
@@ -4424,8 +3567,8 @@ msgstr ""
#: libraries/replication_gui.lib.php:55 libraries/replication_gui.lib.php:56
#: libraries/replication_gui.lib.php:249 libraries/replication_gui.lib.php:252
-#: libraries/replication_gui.lib.php:259 server_privileges.php:672
-#: server_privileges.php:675 server_privileges.php:682
+#: libraries/replication_gui.lib.php:259 server_privileges.php:711
+#: server_privileges.php:714 server_privileges.php:721
#: server_synchronize.php:1171
msgid "User name"
msgstr "Nazwa użytkownika"
@@ -4446,11 +3589,11 @@ msgid "Slave status"
msgstr "Status serwera podrzędnego"
#: libraries/replication_gui.lib.php:114 libraries/sql_query_form.lib.php:445
-#: server_status.php:626 server_variables.php:52
+#: server_status.php:737 server_variables.php:52
msgid "Variable"
msgstr "Zmienna"
-#: libraries/replication_gui.lib.php:115 server_status.php:627
+#: libraries/replication_gui.lib.php:115 server_status.php:738
#: tbl_change.php:324 tbl_printview.php:370 tbl_select.php:139
#: tbl_structure.php:729
msgid "Value"
@@ -4470,41 +3613,58 @@ msgstr ""
msgid "Add slave replication user"
msgstr ""
-#: libraries/replication_gui.lib.php:254 server_privileges.php:677
+#: libraries/replication_gui.lib.php:254 server_privileges.php:716
msgid "Any user"
msgstr "Dowolny użytkownik"
#: libraries/replication_gui.lib.php:255 libraries/replication_gui.lib.php:323
-#: libraries/replication_gui.lib.php:346 server_privileges.php:678
-#: server_privileges.php:745 server_privileges.php:769
-#: server_privileges.php:1889 server_privileges.php:1919
+#: libraries/replication_gui.lib.php:346 server_privileges.php:717
+#: server_privileges.php:784 server_privileges.php:808
+#: server_privileges.php:1928 server_privileges.php:1958
msgid "Use text field"
msgstr "Użyj pola tekstowego"
-#: libraries/replication_gui.lib.php:302 server_privileges.php:725
+#: libraries/replication_gui.lib.php:302 server_privileges.php:764
msgid "Any host"
msgstr "Dowolny host"
-#: libraries/replication_gui.lib.php:306 server_privileges.php:729
+#: libraries/replication_gui.lib.php:306 server_privileges.php:768
msgid "Local"
msgstr "Host lokalny"
-#: libraries/replication_gui.lib.php:312 server_privileges.php:734
+#: libraries/replication_gui.lib.php:312 server_privileges.php:773
msgid "This Host"
msgstr "Ten host"
-#: libraries/replication_gui.lib.php:318 server_privileges.php:740
+#: libraries/replication_gui.lib.php:318 server_privileges.php:779
msgid "Use Host Table"
msgstr "Użyj tabeli hostów"
-#: libraries/replication_gui.lib.php:331 server_privileges.php:753
+#: libraries/replication_gui.lib.php:331 server_privileges.php:792
msgid ""
"When Host table is used, this field is ignored and values stored in Host "
"table are used instead."
msgstr ""
-#: libraries/select_lang.lib.php:480 libraries/select_lang.lib.php:486
-#: libraries/select_lang.lib.php:492
+#. l10n: Text direction, use either ltr or rtl
+#: libraries/select_lang.lib.php:491
+msgid "ltr"
+msgstr "ltr"
+
+#: libraries/select_lang.lib.php:493
+msgid "Content of table __TABLE__"
+msgstr "Zawartość tabeli __TABLE__"
+
+#: libraries/select_lang.lib.php:494
+msgid "(continued)"
+msgstr "(kontynuacja)"
+
+#: libraries/select_lang.lib.php:495
+msgid "Structure of table __TABLE__"
+msgstr "Struktura tabeli __TABLE__"
+
+#: libraries/select_lang.lib.php:500 libraries/select_lang.lib.php:506
+#: libraries/select_lang.lib.php:512
#, php-format
msgid "Unknown language: %1$s."
msgstr "Nieznany język: %1$s."
@@ -4515,7 +3675,7 @@ msgid "Servers"
msgstr "Serwery"
#: libraries/server_links.inc.php:53 server_engines.php:112
-#: server_engines.php:116 server_status.php:304 test/theme.php:105
+#: server_engines.php:116 server_status.php:415 test/theme.php:105
msgid "Variables"
msgstr "Zmienne"
@@ -4528,7 +3688,7 @@ msgid "Engines"
msgstr "Mechanizmy"
#: libraries/server_links.inc.php:76 server_binlog.php:110
-#: server_status.php:253 test/theme.php:121
+#: server_status.php:364 test/theme.php:121
msgid "Binary log"
msgstr "Dziennik binarny"
@@ -5008,8 +4168,8 @@ msgstr "Resetuj"
msgid "Protocol version"
msgstr "Wersja protokołu"
-#: main.php:189 server_privileges.php:1350 server_privileges.php:1497
-#: server_privileges.php:1611 server_privileges.php:2029
+#: main.php:189 server_privileges.php:1389 server_privileges.php:1536
+#: server_privileges.php:1650 server_privileges.php:2068
#: server_processlist.php:54
msgid "User"
msgstr "Użytkownik"
@@ -5391,7 +4551,7 @@ msgstr "%s baz danych zostało pomyślnie usuniętych."
msgid "Databases statistics"
msgstr "Statystyki baz danych"
-#: server_databases.php:117 server_status.php:260
+#: server_databases.php:117 server_status.php:371
#: setup/lib/messages.inc.php:117
msgid "Tables"
msgstr "Tabele"
@@ -5412,6 +4572,17 @@ msgstr "Konfiguracja serwera"
msgid "Jump to database"
msgstr "Brak baz danych"
+#: server_databases.php:267
+#, fuzzy
+msgid "Not replicated"
+msgstr "Konfiguracja serwera"
+
+#: server_databases.php:273
+#, fuzzy
+#| msgid "Replication"
+msgid "Replicated"
+msgstr "Replikacja"
+
#: server_databases.php:289
#, php-format
msgid "Check privileges for database "%s"."
@@ -5445,143 +4616,336 @@ msgstr "Mechanizmy składowania"
msgid "View dump (schema) of databases"
msgstr "Zrzut baz danych"
-#: server_privileges.php:263 server_privileges.php:264
+#: server_privileges.php:24 server_privileges.php:266
+msgid "Includes all privileges except GRANT."
+msgstr "Wszystkie uprawnienia, oprócz GRANT."
+
+#: server_privileges.php:25 server_privileges.php:192
+#: server_privileges.php:515
+msgid "Allows altering the structure of existing tables."
+msgstr "Pozwól zmieniać strukturę istniejących tabel."
+
+#: server_privileges.php:26 server_privileges.php:208
+#: server_privileges.php:521
+msgid "Allows altering and dropping stored routines."
+msgstr "Pozwól modyfikować i usuwać procedury składowane."
+
+#: server_privileges.php:27 server_privileges.php:184
+#: server_privileges.php:514
+msgid "Allows creating new databases and tables."
+msgstr "Pozwól tworzyć nowe bazy danych i tabele."
+
+#: server_privileges.php:28 server_privileges.php:207
+#: server_privileges.php:520
+msgid "Allows creating stored routines."
+msgstr "Pozwól tworzyć procedury składowane."
+
+#: server_privileges.php:29 server_privileges.php:514
+msgid "Allows creating new tables."
+msgstr "Pozwól tworzyć nowe tabele."
+
+#: server_privileges.php:30 server_privileges.php:195
+#: server_privileges.php:518
+msgid "Allows creating temporary tables."
+msgstr "Pozwala tworzyć tabele tymczasowe."
+
+#: server_privileges.php:31 server_privileges.php:209
+#: server_privileges.php:554
+msgid "Allows creating, dropping and renaming user accounts."
+msgstr "Pozwól tworzyć, usuwać i zmieniać nazwy kont użytkowników."
+
+#: server_privileges.php:32 server_privileges.php:199
+#: server_privileges.php:203 server_privileges.php:526
+#: server_privileges.php:530
+msgid "Allows creating new views."
+msgstr "Pozwól tworzyć perspektywy."
+
+#: server_privileges.php:33 server_privileges.php:183
+#: server_privileges.php:506
+msgid "Allows deleting data."
+msgstr "Pozwól usuwać dane."
+
+#: server_privileges.php:34 server_privileges.php:185
+#: server_privileges.php:517
+msgid "Allows dropping databases and tables."
+msgstr "Pozwól usuwać bazy danych i tabele."
+
+#: server_privileges.php:35 server_privileges.php:517
+msgid "Allows dropping tables."
+msgstr "Pozwól usuwać tabele."
+
+#: server_privileges.php:36 server_privileges.php:200
+#: server_privileges.php:534
+msgid "Allows to set up events for the event scheduler"
+msgstr "Pozwól ustawiać zdarzenia w harmonogramie zdarzeń"
+
+#: server_privileges.php:37 server_privileges.php:210
+#: server_privileges.php:522
+msgid "Allows executing stored routines."
+msgstr "Pozwól wykonywać procedury składowane."
+
+#: server_privileges.php:38 server_privileges.php:189
+#: server_privileges.php:509
+msgid "Allows importing data from and exporting data into files."
+msgstr "Pozwól importować i eksportować dane z/do plików."
+
+#: server_privileges.php:39 server_privileges.php:540
+msgid ""
+"Allows adding users and privileges without reloading the privilege tables."
+msgstr ""
+"Pozwól dodawać użytkowników i nadawać uprawnienia bez przeładowywania tabeli "
+"uprawnień."
+
+#: server_privileges.php:40 server_privileges.php:191
+#: server_privileges.php:516
+msgid "Allows creating and dropping indexes."
+msgstr "Pozwól tworzyć i usuwać indeksy."
+
+#: server_privileges.php:41 server_privileges.php:181
+#: server_privileges.php:442 server_privileges.php:504
+msgid "Allows inserting and replacing data."
+msgstr "Pozwól dodawać i zamieniać dane."
+
+#: server_privileges.php:42 server_privileges.php:196
+#: server_privileges.php:549
+msgid "Allows locking tables for the current thread."
+msgstr "Pozwól blokować tabele dla aktualnego wątku."
+
+#: server_privileges.php:43 server_privileges.php:646
+#: server_privileges.php:648
+msgid "Limits the number of new connections the user may open per hour."
+msgstr ""
+"Ogranicz liczbę nowych połączeń, które może otworzyć użytkownik w ciągu "
+"godziny."
+
+#: server_privileges.php:44 server_privileges.php:634
+#: server_privileges.php:636
+msgid "Limits the number of queries the user may send to the server per hour."
+msgstr "Ogranicz liczbę zapytań, które może wysłać użytkownik w ciągu godziny."
+
+#: server_privileges.php:45 server_privileges.php:640
+#: server_privileges.php:642
+msgid ""
+"Limits the number of commands that change any table or database the user may "
+"execute per hour."
+msgstr ""
+"Ogranicz liczbę poleceń zmieniających jakąkolwiek tabelę lub bazę danych, "
+"które może wykonać użytkownik w ciągu godziny."
+
+#: server_privileges.php:46 server_privileges.php:652
+#: server_privileges.php:654
+msgid "Limits the number of simultaneous connections the user may have."
+msgstr "Ogranicz liczbę jednoczesnych połączeń, które może użytkownik."
+
+#: server_privileges.php:47 server_privileges.php:188
+#: server_privileges.php:544
+msgid "Allows viewing processes of all users"
+msgstr "Pozwól oglądać procesy wszystkich użytkowyników"
+
+#: server_privileges.php:48 server_privileges.php:190
+#: server_privileges.php:448 server_privileges.php:550
+msgid "Has no effect in this MySQL version."
+msgstr "Nie ma żadnych skutków w tej wersji MySQL."
+
+#: server_privileges.php:49 server_privileges.php:186
+#: server_privileges.php:545
+msgid "Allows reloading server settings and flushing the server's caches."
+msgstr ""
+"Pozwól przeładowywać ustawienia serwera i opróżniać pamięć podręczną serwera."
+
+#: server_privileges.php:50 server_privileges.php:198
+#: server_privileges.php:552
+msgid "Allows the user to ask where the slaves / masters are."
+msgstr ""
+"Nadaj użytkownikowi prawo, by zapytać gdzie są serwery podrzędne / nadrzędne."
+
+#: server_privileges.php:51 server_privileges.php:197
+#: server_privileges.php:553
+msgid "Needed for the replication slaves."
+msgstr "Potrzebne dla replikacji serwera podrzędnego."
+
+#: server_privileges.php:52 server_privileges.php:180
+#: server_privileges.php:439 server_privileges.php:503
+msgid "Allows reading data."
+msgstr "Pozwól czytać dane."
+
+#: server_privileges.php:53 server_privileges.php:193
+#: server_privileges.php:547
+msgid "Gives access to the complete list of databases."
+msgstr "Daj dostęp do pełnej listy baz danych."
+
+#: server_privileges.php:54 server_privileges.php:204
+#: server_privileges.php:206 server_privileges.php:519
+msgid "Allows performing SHOW CREATE VIEW queries."
+msgstr "Pozwól wykonywać zapytania SHOW CREATE VIEW."
+
+#: server_privileges.php:55 server_privileges.php:187
+#: server_privileges.php:546
+msgid "Allows shutting down the server."
+msgstr "Pozwól wyłączyć serwer."
+
+#: server_privileges.php:56 server_privileges.php:194
+#: server_privileges.php:543
+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 ""
+"Pozwól na połączenie, nawet jeśli osiągnięta została maksymalna ilość "
+"połączeń; Wymagane dla większość operacji administracyjnych, takich jak "
+"ustawianie zmiennych globalnych czy unicestwianie wątków innych użytkowników."
+
+#: server_privileges.php:57 server_privileges.php:201
+#: server_privileges.php:535
+msgid "Allows creating and dropping triggers"
+msgstr "Pozwól tworzyć i usuwać wyzwalacze."
+
+#: server_privileges.php:58 server_privileges.php:182
+#: server_privileges.php:445 server_privileges.php:505
+msgid "Allows changing data."
+msgstr "Pozwól zmieniać dane."
+
+#: server_privileges.php:59 server_privileges.php:260
+msgid "No privileges."
+msgstr "Brak uprawnień."
+
+#: server_privileges.php:302 server_privileges.php:303
#, fuzzy
#| msgid "None"
msgctxt "None privileges"
msgid "None"
msgstr "Brak"
-#: server_privileges.php:392 server_privileges.php:527
-#: server_privileges.php:1679 server_privileges.php:1685
+#: server_privileges.php:431 server_privileges.php:566
+#: server_privileges.php:1718 server_privileges.php:1724
msgid "Table-specific privileges"
msgstr "Uprawnienia specyficzne dla tabel"
-#: server_privileges.php:393 server_privileges.php:535
-#: server_privileges.php:1501
+#: server_privileges.php:432 server_privileges.php:574
+#: server_privileges.php:1540
msgid " Note: MySQL privilege names are expressed in English "
msgstr " Uwaga: Uprawnienia MySQL są oznaczone w języku angielskim "
-#: server_privileges.php:524 server_privileges.php:1500
+#: server_privileges.php:563 server_privileges.php:1539
msgid "Global privileges"
msgstr "Globalne uprawnienia"
-#: server_privileges.php:526 server_privileges.php:1679
+#: server_privileges.php:565 server_privileges.php:1718
msgid "Database-specific privileges"
msgstr "Uprawnienia specyficzne dla baz danych"
-#: server_privileges.php:571
+#: server_privileges.php:610
msgid "Administration"
msgstr "Administracja"
-#: server_privileges.php:591
+#: server_privileges.php:630
msgid "Resource limits"
msgstr "Ograniczenia zasobów"
-#: server_privileges.php:592
+#: server_privileges.php:631
msgid "Note: Setting these options to 0 (zero) removes the limit."
msgstr "Uwaga: Ustawienie tych opcji na 0 (zero) usuwa ograniczenie."
-#: server_privileges.php:669
+#: server_privileges.php:708
msgid "Login Information"
msgstr "Dane użytkownika"
-#: server_privileges.php:763
+#: server_privileges.php:802
msgid "Do not change the password"
msgstr "Nie zmieniaj hasła"
-#: server_privileges.php:804 server_privileges.php:2166
+#: server_privileges.php:843 server_privileges.php:2205
#, fuzzy
#| msgid "No user(s) found."
msgid "No user found."
msgstr "Nie znaleziono użytkownika(ów)."
-#: server_privileges.php:848
+#: server_privileges.php:887
#, php-format
msgid "The user %s already exists!"
msgstr "Użytkownik %s już istnieje!"
-#: server_privileges.php:931
+#: server_privileges.php:970
msgid "You have added a new user."
msgstr "Nowy użytkownik został dodany."
-#: server_privileges.php:1152
+#: server_privileges.php:1191
#, php-format
msgid "You have updated the privileges for %s."
msgstr "Uaktualniłeś uprawnienia dla %s."
-#: server_privileges.php:1176
+#: server_privileges.php:1215
#, php-format
msgid "You have revoked the privileges for %s"
msgstr "Uprawnienia dla %s zostały cofnięte"
-#: server_privileges.php:1212
+#: server_privileges.php:1251
#, php-format
msgid "The password for %s was changed successfully."
msgstr "Hasło dla %s zostało pomyślnie zmienione."
-#: server_privileges.php:1232
+#: server_privileges.php:1271
#, php-format
msgid "Deleting %s"
msgstr "Usuwanie %s"
-#: server_privileges.php:1243
+#: server_privileges.php:1282
msgid "No users selected for deleting!"
msgstr "Żaden użytkownik ze został zaznaczony do usunięcia!"
-#: server_privileges.php:1246
+#: server_privileges.php:1285
msgid "Reloading the privileges"
msgstr "Przeładuj uprawnienia"
-#: server_privileges.php:1261
+#: server_privileges.php:1300
msgid "The selected users have been deleted successfully."
msgstr "Wybrani użytkownicy zostali pomyślnie usunięci."
-#: server_privileges.php:1296
+#: server_privileges.php:1335
msgid "The privileges were reloaded successfully."
msgstr "Uprawnienia zostały pomyślnie przeładowane."
-#: server_privileges.php:1324 server_privileges.php:1610
+#: server_privileges.php:1363 server_privileges.php:1649
msgid "Edit Privileges"
msgstr "Edytuj uprawnienia"
-#: server_privileges.php:1333
+#: server_privileges.php:1372
msgid "Revoke"
msgstr "Cofnij"
-#: server_privileges.php:1365
+#: server_privileges.php:1404
msgid "User overview"
msgstr "Opis użytkownika"
-#: server_privileges.php:1502 server_privileges.php:1684
-#: server_privileges.php:2033
+#: server_privileges.php:1541 server_privileges.php:1723
+#: server_privileges.php:2072
msgid "Grant"
msgstr "Nadawanie"
-#: server_privileges.php:1521 server_privileges.php:2123
+#: server_privileges.php:1560 server_privileges.php:2162
msgid "Any"
msgstr "Dowolny"
-#: server_privileges.php:1570 server_privileges.php:1594
-#: server_privileges.php:1988 server_privileges.php:2177
+#: server_privileges.php:1609 server_privileges.php:1633
+#: server_privileges.php:2027 server_privileges.php:2216
msgid "Add a new User"
msgstr "Dodaj nowego użytkownika"
-#: server_privileges.php:1575
+#: server_privileges.php:1614
msgid "Remove selected users"
msgstr "Usuń zaznaczonych użytkowników"
-#: server_privileges.php:1578
+#: server_privileges.php:1617
msgid "Revoke all active privileges from the users and delete them afterwards."
msgstr ""
"Cofnij wszystkie aktywne uprawnienia użytkownikom, a następnie usuń ich."
-#: server_privileges.php:1579 server_privileges.php:1580
-#: server_privileges.php:1581
+#: server_privileges.php:1618 server_privileges.php:1619
+#: server_privileges.php:1620
msgid "Drop the databases that have the same names as the users."
msgstr "Usuń bazy danych o takich samych nazwach jak użytkownicy."
-#: server_privileges.php:1597
+#: server_privileges.php:1636
#, php-format
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
@@ -5594,96 +4958,96 @@ msgstr ""
"może się różnić od uprawnień jakich faktycznie używa serwer. W takim "
"przypadku powinieneś przed dalszą pracą %sprzeładować uprawnienia%s."
-#: server_privileges.php:1645
+#: server_privileges.php:1684
msgid "The selected user was not found in the privilege table."
msgstr "Wybrany użytkownik nie został znaleziony w tabeli uprawnień."
-#: server_privileges.php:1685
+#: server_privileges.php:1724
msgid "Column-specific privileges"
msgstr "Uprawnienia specyficzne dla kolumn"
-#: server_privileges.php:1886
+#: server_privileges.php:1925
msgid "Add privileges on the following database"
msgstr "Dodaj uprawnienia dla następującej bazy danych"
-#: server_privileges.php:1904
+#: server_privileges.php:1943
msgid "Wildcards % and _ should be escaped with a \\ to use them literally"
msgstr ""
"Aby użyć symboli wieloznacznych _ i % w znaczeniu dosłownym, należy je "
"poprzedzić znakiem \\ "
-#: server_privileges.php:1907
+#: server_privileges.php:1946
msgid "Add privileges on the following table"
msgstr "Dodaj uprawnienia dla następującej tabeli"
-#: server_privileges.php:1964
+#: server_privileges.php:2003
msgid "Change Login Information / Copy User"
msgstr "Zmień dane użytkownika / Skopiuj użytkownika"
-#: server_privileges.php:1967
+#: server_privileges.php:2006
msgid "Create a new user with the same privileges and ..."
msgstr "Utwórz nowego użytkownika z takimi samymi uprawnieniami i …"
-#: server_privileges.php:1969
+#: server_privileges.php:2008
msgid "... keep the old one."
msgstr "… pozostaw starego."
-#: server_privileges.php:1970
+#: server_privileges.php:2009
msgid " ... delete the old one from the user tables."
msgstr " … usuń starego z tabel użytkowników."
-#: server_privileges.php:1971
+#: server_privileges.php:2010
msgid ""
" ... revoke all active privileges from the old one and delete it afterwards."
msgstr " … odbierz wszystkie aktywne uprawnienia staremu, a następnie go usuń."
-#: server_privileges.php:1972
+#: server_privileges.php:2011
msgid ""
" ... delete the old one from the user tables and reload the privileges "
"afterwards."
msgstr ""
" … usuń starego z tabel użytkowników, a następnie przeładuj uprawnienia."
-#: server_privileges.php:1994
+#: server_privileges.php:2033
msgid "Database for user"
msgstr "Baza danych dla użytkownika"
-#: server_privileges.php:1998
+#: server_privileges.php:2037
#, fuzzy
#| msgid "None"
msgctxt "Create none database for user"
msgid "None"
msgstr "Brak"
-#: server_privileges.php:1999
+#: server_privileges.php:2038
msgid "Create database with same name and grant all privileges"
msgstr "Utwórz bazę danych z taką samą nazwą i przyznaj wszystkie uprawnienia"
-#: server_privileges.php:2000
+#: server_privileges.php:2039
msgid "Grant all privileges on wildcard name (username\\_%)"
msgstr ""
"Przyznaj wszystkie uprawienia do baz danych o nazwach pasujących do maski "
"(nazwaużytkownika_%)"
-#: server_privileges.php:2003
+#: server_privileges.php:2042
#, fuzzy, php-format
msgid "Grant all privileges on database "%s""
msgstr "Sprawdź uprawnienia bazy danych "%s"."
-#: server_privileges.php:2026
+#: server_privileges.php:2065
#, php-format
msgid "Users having access to "%s""
msgstr "Użytkownicy mający dostęp do "%s""
-#: server_privileges.php:2134
+#: server_privileges.php:2173
msgid "global"
msgstr "globalnie"
-#: server_privileges.php:2136
+#: server_privileges.php:2175
msgid "database-specific"
msgstr "specyficzne dla bazy danych"
-#: server_privileges.php:2138
+#: server_privileges.php:2177
msgid "wildcard"
msgstr "znak wieloznaczny"
@@ -5731,7 +5095,7 @@ msgstr ""
msgid "This server is configured as master in a replication process."
msgstr ""
-#: server_replication.php:184 server_status.php:281
+#: server_replication.php:184 server_status.php:392
#, fuzzy
msgid "Show master status"
msgstr "Status serwera podrzędnego"
@@ -5872,103 +5236,750 @@ msgid ""
"like to configure it?"
msgstr ""
+#: server_status.php:40
+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 ""
+"Liczba transakcji, które używały pamięci podręcznej tymczasowego dziennika "
+"binarnego, które przekroczyły wartość binlog_cache_size i do zapisania "
+"instrukcji transakcji został użyty plik tymczasowy."
+
+#: server_status.php:41
+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."
+
+#: server_status.php:42
+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 "
+"to increase the tmp_table_size value to cause temporary tables to be memory-"
+"based instead of disk-based."
+msgstr ""
+"Liczba tabel tymczasowych na dysku utworzonych automatycznie przez serwer "
+"podczas wykonywanie instrukcji. Przy dużej wartości Created_tmp_disk_tables, "
+"zwiększenie wartości tmp_table_size spowoduje tworzenie tymczasowych tabel w "
+"pamięci, a nie na dysku."
+
+#: server_status.php:43
+msgid "How many temporary files mysqld has created."
+msgstr "Ile plików tymczasowych utworzył mysqld."
+
+#: server_status.php:44
+msgid ""
+"The number of in-memory temporary tables created automatically by the server "
+"while executing statements."
+msgstr ""
+"Liczba tabel tymczasowych w pamięci, utworzonych automatycznie przez serwer "
+"podczas wykonywania instrukcji."
+
+#: server_status.php:45
+msgid ""
+"The number of rows written with INSERT DELAYED for which some error occurred "
+"(probably duplicate key)."
+msgstr ""
+"Liczba rekordów zapisanych przy pomocy INSERT DELAYED, dla których wystąpił "
+"jakiś błąd (prawdopodobnie zdublowany klucz)."
+
#: server_status.php:46
+msgid ""
+"The number of INSERT DELAYED handler threads in use. Every different table "
+"on which one uses INSERT DELAYED gets its own thread."
+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."
+
+#: server_status.php:47
+msgid "The number of INSERT DELAYED rows written."
+msgstr "Liczba rekordów zapisanych poprzez INSERT DELAYED."
+
+#: server_status.php:48
+msgid "The number of executed FLUSH statements."
+msgstr "Liczba wykonanych instrukcji FLUSH."
+
+#: server_status.php:49
+msgid "The number of internal COMMIT statements."
+msgstr "Liczba wewnętrznych intrukcji COMMIT."
+
+#: server_status.php:50
+msgid "The number of times a row was deleted from a table."
+msgstr "Ile razy rekord został usunięty z tabeli."
+
+#: server_status.php:51
+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 ""
+"Serwer MySQL może zapytać mechanizm składowania Cluster NDB, czy ma "
+"informacje o tabeli o zadanej nazwie. Nazywamy to odkryciem (discovery"
+"i>). Handler_discover wskazuje, ile razy tabela została odkryta."
+
+#: server_status.php:52
+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 ""
+"Ile razy z indeksu została odczytana pierwsza pozycja. Duża wartość "
+"sugeruje, że serwer wykonuje pełnych przeszukań indeksów; na przykład SELECT "
+"col1 FROM foo, przy założeniu, że col1 jest zindeksowane."
+
+#: server_status.php:53
+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 ""
+"Liczba żądań odczytu rekordu na podstawie indeksu. Duża wartość to dobra "
+"oznaka tego, że zapytania i tabele są właściwie zindeksowane."
+
+#: server_status.php:54
+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 ""
+"Liczba żądań odczytu następnego rekordu w porządku indeksowym. Ta wartość "
+"jest zwiększana przy odpytywaniu o zindeksowaną kolumnę na ograniczonym "
+"przedziale lub przy przeszukiwaniu indeksu."
+
+#: server_status.php:55
+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 ""
+"Liczba żądań odczytu poprzedniego rekordu w porządku indeksowym. Metoda "
+"używana głównie do optymalizacji ORDER BY … DESC."
+
+#: server_status.php:56
+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 "
+"probably have a lot of queries that require MySQL to scan whole tables or "
+"you have joins that don't use keys properly."
+msgstr ""
+"Liczba żądań odczytu następnego rekordu na podstawie stałego położenia. "
+"Wartość jest duża przy wykonywaniu dużej ilości zapytań wymagających "
+"sortowania rezultatu. Prawdopodobnie wykonano wiele zapytań wymagających "
+"przeszukania całej tabeli lub złączeń, które nie używają poprawnie indeksów."
+
+#: server_status.php:57
+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 "
+"tables are not properly indexed or that your queries are not written to take "
+"advantage of the indexes you have."
+msgstr ""
+"Liczba żądań odczytu następnego rekord w pliku z danymi. Wartość jest duża "
+"przy wykonywania wielu przeszukiwań tabeli. Ogólnie sugeruje to, że tabele "
+"nie są poprawnie zindeksowane lub że zapytania nie są napisane w sposób "
+"pozwalający skorzystać z istniejących indeksów."
+
+#: server_status.php:58
+msgid "The number of internal ROLLBACK statements."
+msgstr "Liczba wewnętrznych instrukcji ROLLBACK."
+
+#: server_status.php:59
+msgid "The number of requests to update a row in a table."
+msgstr "Liczba żądań zmiany rekordu w tabeli."
+
+#: server_status.php:60
+msgid "The number of requests to insert a row in a table."
+msgstr "Liczba żądań dodania rekordu do tabeli."
+
+#: server_status.php:61
+msgid "The number of pages containing data (dirty or clean)."
+msgstr "Liczba stron zawierających dane (brudnych lub czystych)."
+
+#: server_status.php:62
+msgid "The number of pages currently dirty."
+msgstr "Liczba aktualnie brudnych stron."
+
+#: server_status.php:63
+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."
+
+#: server_status.php:64
+msgid "The number of free pages."
+msgstr "Liczba wolnych stron."
+
+#: server_status.php:65
+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 ""
+"Liczba stron zatrzaśniętych w puli bufora InnoDB. Są to strony aktualnie "
+"odczytywane lub zapisywane lub takie, które nie mogą zostać wymiecione lub "
+"usunięte z jakiegoś innego powodu."
+
+#: server_status.php:66
+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 "
+"be calculated as Innodb_buffer_pool_pages_total - "
+"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data."
+msgstr ""
+"Liczba strony stron zajętych z powodu ich alokacji dla celów "
+"administracyjnych takich jak blokady rekordu lub adaptacyjny indeks "
+"haszujący. Wartość ta może też zostać policzona jako "
+"Innodb_buffer_pool_pages_total - Innodb_buffer_pool_pages_free - "
+"Innodb_buffer_pool_pages_data."
+
+#: server_status.php:67
+msgid "Total size of buffer pool, in pages."
+msgstr "Łączny rozmiar puli bufora, w stronach."
+
+#: server_status.php:68
+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 ""
+"Liczba \"losowych\" odczytów z wyprzedzeniem zainicjowanych przez InnoDB. "
+"Występuje gdy zapytane przeszukiwałoby duże fragmenty tabeli, ale w dowolnej "
+"kolejności."
+
+#: server_status.php:69
+msgid ""
+"The number of sequential read-aheads InnoDB initiated. This happens when "
+"InnoDB does a sequential full table scan."
+msgstr ""
+"Liczba sekwencyjnych odczytów z wyprzedzeniem zainicjowanych przez InnoDB. "
+"Występuje gdy InnoDB wykonuje sekwencyjne pełne przeszukiwanie tabeli."
+
+#: server_status.php:70
+msgid "The number of logical read requests InnoDB has done."
+msgstr "Liczba żądań logicznych odczytów które wykonał InnoDB."
+
+#: server_status.php:71
+msgid ""
+"The number of logical reads that InnoDB could not satisfy from buffer pool "
+"and had to do a single-page read."
+msgstr ""
+"Liczba logicznych odczytów, których InnoDB nie mógł zaspokoić pulą bufora i "
+"musiał wykonać odczyt pojedynczej strony."
+
+#: server_status.php:72
+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 "
+"available, it's necessary to wait for pages to be flushed first. This "
+"counter counts instances of these waits. If the buffer pool size was set "
+"properly, this value should be small."
+msgstr ""
+"Zwykle zapis do puli bufora InnoDB obywa się w tle. Jednakże, jeśli "
+"niezbędny jest odczyt lub utworzenie strony a brak jest czystych stron, "
+"konieczne jest najpierw oczekiwanie na wymiecienie stron. Ten licznik "
+"wskazuje liczbę wystąpień takich oczekiwań. Jeżeli rozmiar puli bufora był "
+"ustawiony właściwie, wartość ta powinna być mała."
+
+#: server_status.php:73
+msgid "The number writes done to the InnoDB buffer pool."
+msgstr "Liczba wykonanych zapisów do puli bufora InnoDB."
+
+#: server_status.php:74
+msgid "The number of fsync() operations so far."
+msgstr "Liczba dotąd wykonanych operacji fsync()."
+
+#: server_status.php:75
+msgid "The current number of pending fsync() operations."
+msgstr "Aktualna liczba operacji fsync() w toku."
+
+#: server_status.php:76
+msgid "The current number of pending reads."
+msgstr "Aktualna liczba odczytów w toku."
+
+#: server_status.php:77
+msgid "The current number of pending writes."
+msgstr "Aktualna liczba zapisów w toku."
+
+#: server_status.php:78
+msgid "The amount of data read so far, in bytes."
+msgstr "Ilość dotąd odczytanych danych, w bajtach."
+
+#: server_status.php:79
+msgid "The total number of data reads."
+msgstr "Łączna liczba odczytów danych."
+
+#: server_status.php:80
+msgid "The total number of data writes."
+msgstr "Łączna liczba zapisów danych."
+
+#: server_status.php:81
+msgid "The amount of data written so far, in bytes."
+msgstr "Ilość dotąd zapisanych danych, w bajtach."
+
+#: server_status.php:82
+msgid "The number of pages that have been written for doublewrite operations."
+msgstr "Liczba przeprowadzonych zapisów typu doublewrite."
+
+#: server_status.php:83
+msgid "The number of doublewrite operations that have been performed."
+msgstr "Liczba stron zapisanych przy zapisie typu doublewrite."
+
+#: server_status.php:84
+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 ""
+"Ile razy czekano, bo bufor dziennika był zbyt mały i przed wznowieniem pracy "
+"oczekiwano na jego opróżnienie."
+
+#: server_status.php:85
+msgid "The number of log write requests."
+msgstr "Liczba żądań zapisów do dziennika."
+
+#: server_status.php:86
+msgid "The number of physical writes to the log file."
+msgstr "Liczba fizycznych zapisów do pliku dziennika."
+
+#: server_status.php:87
+msgid "The number of fsync() writes done to the log file."
+msgstr "Liczba synchronicznych zapisów do pliku dziennika."
+
+#: server_status.php:88
+msgid "The number of pending log file fsyncs."
+msgstr "Liczba wywołań fsync dla pliku dziennika w toku."
+
+#: server_status.php:89
+msgid "Pending log file writes."
+msgstr "Liczba zapisów do pliku dziennika w toku."
+
+#: server_status.php:90
+msgid "The number of bytes written to the log file."
+msgstr "Liczba bajtów zapisanych do pliku dziennika."
+
+#: server_status.php:91
+msgid "The number of pages created."
+msgstr "Liczba utworzonych stron."
+
+#: server_status.php:92
+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 ""
+"Wkompilowana wielkość strony InnoDB (domyślnie 16KB). Wiele wartości jest "
+"mierzonych w stronach; znajomość wielkości strony pozwala na ich łatwą "
+"konwersję na bajty."
+
+#: server_status.php:93
+msgid "The number of pages read."
+msgstr "Liczba odczytanych stron."
+
+#: server_status.php:94
+msgid "The number of pages written."
+msgstr "Liczba zapisanych stron."
+
+#: server_status.php:95
+msgid "The number of row locks currently being waited for."
+msgstr "Liczba blokad rekordów na które aktualnie się czeka."
+
+#: server_status.php:96
+msgid "The average time to acquire a row lock, in milliseconds."
+msgstr "Średni czas uzyskania blokady rekordu, w milisekundach."
+
+#: server_status.php:97
+msgid "The total time spent in acquiring row locks, in milliseconds."
+msgstr "Całkowity czas zużyty na uzyskiwanie blokad rekordów, w milisekundach."
+
+#: server_status.php:98
+msgid "The maximum time to acquire a row lock, in milliseconds."
+msgstr "Maksymalny czas uzyskania blokady rekordu, w milisekundach."
+
+#: server_status.php:99
+msgid "The number of times a row lock had to be waited for."
+msgstr "Ile razy czekano na blokadę rekordu."
+
+#: server_status.php:100
+msgid "The number of rows deleted from InnoDB tables."
+msgstr "Liczba rekordów usuniętych z tabel InnoDB."
+
+#: server_status.php:101
+msgid "The number of rows inserted in InnoDB tables."
+msgstr "Liczba rekordów dodanych do tabel InnoDB."
+
+#: server_status.php:102
+msgid "The number of rows read from InnoDB tables."
+msgstr "Liczba rekordów odczytanych z tabel InnoDB."
+
+#: server_status.php:103
+msgid "The number of rows updated in InnoDB tables."
+msgstr "Liczba rekordów zmienionych w tabelach InnoDB."
+
+#: server_status.php:104
+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 ""
+"Liczba bloków w buforze podręcznym indeksów, które zostały zmodyfikowane ale "
+"jeszcze nie wymiecione na dysk. Wcześniej zmienna miała nazwę "
+"Not_flushed_key_blocks."
+
+#: server_status.php:105
+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 ""
+"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."
+
+#: server_status.php:106
+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 ""
+"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."
+
+#: server_status.php:107
+msgid "The number of requests to read a key block from the cache."
+msgstr "Liczba żądań odczytu bloku z bufora podręcznego indeksów."
+
+#: server_status.php:108
+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 ""
+"Liczba fizycznych odczytów bloków indeksów z dysku. Duża wartość key_reads "
+"oznacza, że prawdopodobnie wartość key_buffer_size jest zbyt mała. "
+"Współczynnik chybień bufora podręcznego można policzyć ze wzoru Key_reads/"
+"Key_read_requests."
+
+#: server_status.php:109
+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."
+
+#: server_status.php:110
+msgid "The number of physical writes of a key block to disk."
+msgstr "Liczba fizycznych zapisów bloków indeksów na dysk."
+
+#: server_status.php:111
+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 ""
+"Całkowity koszta ostatnio skompilowanego zapytania, wyliczony przez "
+"optymalizator zapytań. Przydatny do porównań kosztów różnych planów "
+"wykonania tego samego zapytania. Domyślna wartość 0 oznacza, że jeszcze "
+"żadne zapytanie nie zostało skompilowane."
+
+#: server_status.php:112
+msgid "The number of rows waiting to be written in INSERT DELAYED queues."
+msgstr "Liczba rekordów oczekujących na zapisanie w kolejkach INSERT DELAYED."
+
+#: server_status.php:113
+msgid ""
+"The number of tables that have been opened. If opened tables is big, your "
+"table cache value is probably too small."
+msgstr ""
+"Liczba kiedykolwiek otwartych tabel. Jeśli ta wartość jest duża, "
+"prawdopodobnie wielkość pamięci podręcznej tabel jest zbyt mała."
+
+#: server_status.php:114
+msgid "The number of files that are open."
+msgstr "Liczba otwartych plików."
+
+#: server_status.php:115
+msgid "The number of streams that are open (used mainly for logging)."
+msgstr ""
+"Liczba otwartych strumieni (używanych głownie do rejestracji w dzienniku)."
+
+#: server_status.php:116
+msgid "The number of tables that are open."
+msgstr "Liczba otwartych tabel."
+
+#: server_status.php:117
+msgid "The number of free memory blocks in query cache."
+msgstr "Liczba wolnych bloków pamięci w podręcznym buforze zapytań."
+
+#: server_status.php:118
+msgid "The amount of free memory for query cache."
+msgstr "Ilość dostępnej pamięci w podręcznym buforze zapytań."
+
+#: server_status.php:119
+msgid "The number of cache hits."
+msgstr "Liczba trafień pamięci podręcznej."
+
+#: server_status.php:120
+msgid "The number of queries added to the cache."
+msgstr "Liczba zapytań dodanych do pamięci podręcznej."
+
+#: server_status.php:121
+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 "
+"cache size. The query cache uses a least recently used (LRU) strategy to "
+"decide which queries to remove from the cache."
+msgstr ""
+"Liczba zapytań, które zostały usunięte z pamięci podręcznej, by zwolnic "
+"pamięć do buforowania nowych zapytań. Ta informacje może pomóc dostroić "
+"wielkość bufora podręcznego. Do decydowania o tym, które zapytania usunąć z "
+"bufora podręcznego używana jest strategia \"najpierw najdłużej nieużywany"
+"\" (least recently used - LRU)."
+
+#: server_status.php:122
+msgid ""
+"The number of non-cached queries (not cachable, or not cached due to the "
+"query_cache_type setting)."
+msgstr ""
+"Liczba niezbuforowanych zapytań (nie dających się zbuforować lub "
+"niezbuforowanych z powodu ustawienia query_cache_type)."
+
+#: server_status.php:123
+msgid "The number of queries registered in the cache."
+msgstr "Liczba zapytań zarejestrowanych w buforze podręcznym."
+
+#: server_status.php:124
+msgid "The total number of blocks in the query cache."
+msgstr "Całkowita liczba bloków w buforze podręcznym zapytań."
+
+#: server_status.php:125
+msgctxt "$strShowStatusReset"
+msgid "Reset"
+msgstr "Zresetuj"
+
+#: server_status.php:126
+msgid "The status of failsafe replication (not yet implemented)."
+msgstr "Stan replikacji zabezpieczającej (jeszcze nie zaimplementowane)."
+
+#: server_status.php:127
+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 ""
+"Liczba złączeń nie używających indeksów. Wartość różna od 0 sugeruje "
+"staranne przyjrzenie się indeksom tabel."
+
+#: server_status.php:128
+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."
+
+#: server_status.php:129
+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 ""
+"Liczba złączeń bez użycia indeksów gdy możliwość ich użycia była sprawdzana "
+"dla każdego rekordu. (Wartość różna od 0 sugeruje staranne przyjrzenie się "
+"indeksom tabel.)"
+
+#: server_status.php:130
+msgid ""
+"The number of joins that used ranges on the first table. (It's normally not "
+"critical even if this is big.)"
+msgstr ""
+"Liczba złączeń w których użyto zakresów w stosunku do pierwszej tabeli. "
+"(Nawet duża wartość nie ma kluczowego znaczenia.)"
+
+#: server_status.php:131
+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ę."
+
+#: server_status.php:132
+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."
+
+#: server_status.php:133
+msgid ""
+"Total (since startup) number of times the replication slave SQL thread has "
+"retried transactions."
+msgstr ""
+"Ile raz łącznie (od startu) podrzędny wątek SQL replikacji ponawiał "
+"transakcje."
+
+#: server_status.php:134
+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."
+
+#: server_status.php:135
+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."
+
+#: server_status.php:136
+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."
+
+#: server_status.php:137
+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 ""
+"Liczba przebiegów scalania, które musiał wykonać algorytm sortujący. Przy "
+"dużej wartości, warto wziąć pod uwagę zwiększenie wartości zmiennej "
+"systemowej sort_buffer_size."
+
+#: server_status.php:138
+msgid "The number of sorts that were done with ranges."
+msgstr "Liczba sortowań wykonanych przy użyciu zakresów."
+
+#: server_status.php:139
+msgid "The number of sorted rows."
+msgstr "Liczba posortowanych rekordów."
+
+#: server_status.php:140
+msgid "The number of sorts that were done by scanning the table."
+msgstr "Liczba sortowań wykonanych poprzez przeszukiwanie tabeli."
+
+#: server_status.php:141
+msgid "The number of times that a table lock was acquired immediately."
+msgstr "Ile razy blokada tabeli została uzyskana natychmiastowo."
+
+#: server_status.php:142
+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 "
+"should first optimize your queries, and then either split your table or "
+"tables or use replication."
+msgstr ""
+"Ile razy blokada tabeli nie mogła zostać uzyskana natychmiastowo i niezbędne "
+"było oczekiwanie. Przy wysoka wartość oraz problemach z wydajnością powinno "
+"się najpierw zoptymalizować zapytania, a następnie podzielić tabelę (tabele) "
+"lub użyć replikacji."
+
+#: server_status.php:143
+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 ""
+"Liczba wątków w buforze podręcznym wątków. Współczynnik trafienia w bufor "
+"może być wyliczony ze wzoru Threads_created/Connections. Kolor czerwony "
+"oznacza, że powinno się zwiększyć thread_cache_size."
+
+#: server_status.php:144
+msgid "The number of currently open connections."
+msgstr "Liczba aktualnie otwartych połączeń."
+
+#: server_status.php:145
+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 "
+"doesn't give a notable performance improvement if you have a good thread "
+"implementation.)"
+msgstr ""
+"Liczba wątków utworzonych by obsłużyć połączenia. Jeżeli wartość "
+"Threads_created jest duża, można chcieć zwiększyć wartość thread_cache_size. "
+"(W przypadku dobrej implementacja wątków zwykle nie daje to zauważalnego "
+"polepszenia wydajności.)"
+
+#: server_status.php:146
+msgid "The number of threads that are not sleeping."
+msgstr "Liczba nieuśpionych wątków."
+
+#: server_status.php:157
msgid "Runtime Information"
msgstr "Informacje o działaniu serwera"
-#: server_status.php:250
+#: server_status.php:361
msgid "Handler"
msgstr "Obsługa"
-#: server_status.php:251
+#: server_status.php:362
msgid "Query cache"
msgstr "Pamięć podręczna zapytań"
-#: server_status.php:252
+#: server_status.php:363
msgid "Threads"
msgstr "Wątki"
-#: server_status.php:254
+#: server_status.php:365
msgid "Temporary data"
msgstr "Dane tymczasowe"
-#: server_status.php:255
+#: server_status.php:366
msgid "Delayed inserts"
msgstr "Opóźnione dodania"
-#: server_status.php:256
+#: server_status.php:367
msgid "Key cache"
msgstr "Bufor podręczny indeksów"
-#: server_status.php:257
+#: server_status.php:368
msgid "Joins"
msgstr "Złączenia"
-#: server_status.php:259
+#: server_status.php:370
msgid "Sorting"
msgstr "Sortowanie"
-#: server_status.php:261
+#: server_status.php:372
msgid "Transaction coordinator"
msgstr "Koordynator transakcji"
-#: server_status.php:271
+#: server_status.php:382
msgid "Flush (close) all tables"
msgstr "Przeładuj (zamknij) wszystkie tabele"
-#: server_status.php:273
+#: server_status.php:384
msgid "Show open tables"
msgstr "Pokaż otwarte tabele"
-#: server_status.php:278
+#: server_status.php:389
msgid "Show slave hosts"
msgstr "Pokaż podrzędne hosty"
-#: server_status.php:284
+#: server_status.php:395
msgid "Show slave status"
msgstr "Status serwera podrzędnego"
-#: server_status.php:289
+#: server_status.php:400
msgid "Flush query cache"
msgstr "Opróżnij bufor podręczny zapytań"
-#: server_status.php:294
+#: server_status.php:405
msgid "Show processes"
msgstr "Pokaż procesy"
-#: server_status.php:344
+#: server_status.php:455
#, fuzzy
#| msgid "Reset"
msgctxt "for Show status"
msgid "Reset"
msgstr "Resetuj"
-#: server_status.php:350
+#: server_status.php:461
#, php-format
msgid "This MySQL server has been running for %s. It started up on %s."
msgstr "Serwer MySQL działa przez %s. Początek pracy: %s."
-#: server_status.php:360
+#: server_status.php:471
msgid ""
"This MySQL server works as master and slave in replication"
"b> process."
msgstr ""
-#: server_status.php:362
+#: server_status.php:473
msgid "This MySQL server works as master in replication process."
msgstr ""
-#: server_status.php:364
+#: server_status.php:475
msgid "This MySQL server works as slave in replication process."
msgstr ""
-#: server_status.php:366
+#: server_status.php:477
msgid ""
"For further information about replication status on the server, please visit "
"the replication section."
msgstr ""
-#: server_status.php:383
+#: server_status.php:494
msgid ""
"Server traffic: These tables show the network traffic statistics of "
"this MySQL server since its startup."
@@ -5976,11 +5987,11 @@ msgstr ""
"Ruch na serwerze: Poniższe tabele pokazują statystyki ruchu na tym "
"serwerze MySQL od rozpoczęcia jego pracy."
-#: server_status.php:388
+#: server_status.php:499
msgid "Traffic"
msgstr "Ruch"
-#: server_status.php:388
+#: server_status.php:499
msgid ""
"On a busy server, the byte counters may overrun, so those statistics as "
"reported by the MySQL server may be incorrect."
@@ -5988,36 +5999,36 @@ msgstr ""
"Na aktywnym serwerze liczniki bajtów mogą się przekręcić, więc statystyki "
"jakich dostarcza serwer MySQL nie są wiarygodne."
-#: server_status.php:389 server_status.php:434 server_status.php:497
-#: server_status.php:555
+#: server_status.php:500 server_status.php:545 server_status.php:608
+#: server_status.php:666
msgid "per hour"
msgstr "na godzinę"
-#: server_status.php:394
+#: server_status.php:505
msgid "Received"
msgstr "Otrzymane"
-#: server_status.php:404
+#: server_status.php:515
msgid "Sent"
msgstr "Wysłane"
-#: server_status.php:433
+#: server_status.php:544
msgid "Connections"
msgstr "Połączenia"
-#: server_status.php:440
+#: server_status.php:551
msgid "max. concurrent connections"
msgstr "Maks. jednoczesnych połączeń"
-#: server_status.php:447
+#: server_status.php:558
msgid "Failed attempts"
msgstr "Nieudane próby"
-#: server_status.php:461
+#: server_status.php:572
msgid "Aborted"
msgstr "Przerwane"
-#: server_status.php:490
+#: server_status.php:601
#, php-format
msgid ""
"Query statistics: Since its startup, %s queries have been sent to the "
@@ -6026,19 +6037,19 @@ msgstr ""
"Statystyki zapytań: Od rozpoczęcia jego pracy, do serwera zostało "
"wysłanych %s zapytań."
-#: server_status.php:498
+#: server_status.php:609
msgid "per minute"
msgstr "na minutę"
-#: server_status.php:499
+#: server_status.php:610
msgid "per second"
msgstr "na sekundę"
-#: server_status.php:554
+#: server_status.php:665
msgid "Query type"
msgstr "Rodzaj zapytania"
-#: server_status.php:721
+#: server_status.php:832
#, fuzzy
msgid "Replication status"
msgstr "Replikacja"
diff --git a/po/pt.po b/po/pt.po
index 9b1d72a9c..7ab79929f 100755
--- a/po/pt.po
+++ b/po/pt.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-06-04 16:07-0400\n"
+"POT-Creation-Date: 2010-06-08 12:32-0400\n"
"PO-Revision-Date: 2010-03-12 09:17+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: portuguese \n"
@@ -14,11 +14,11 @@ msgstr ""
"X-Generator: Translate Toolkit 1.5.3\n"
#: browse_foreigners.php:38 browse_foreigners.php:59
-#: libraries/display_tbl.lib.php:417 server_privileges.php:1475
+#: libraries/display_tbl.lib.php:417 server_privileges.php:1514
msgid "Show all"
msgstr "Mostrar tudo"
-#: browse_foreigners.php:82 libraries/common.lib.php:2304
+#: browse_foreigners.php:82 libraries/common.lib.php:2313
#: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:394
#: libraries/export/pdf.php:147 pdf_schema.php:283 pdf_schema.php:1123
#: pdf_schema.php:1139
@@ -34,8 +34,8 @@ msgstr ""
#: browse_foreigners.php:150 db_structure.php:79 db_structure.php:80
#: db_structure.php:91 db_structure.php:93 db_structure.php:104
-#: db_structure.php:106 libraries/common.lib.php:2822
-#: libraries/common.lib.php:2829 libraries/db_links.inc.php:75
+#: db_structure.php:106 libraries/common.lib.php:2831
+#: libraries/common.lib.php:2838 libraries/db_links.inc.php:75
#: libraries/tbl_links.inc.php:63
msgid "Search"
msgstr "Pesquisar"
@@ -45,7 +45,7 @@ msgstr "Pesquisar"
#: db_structure.php:567 js/messages.php:48 libraries/Config.class.php:1046
#: libraries/Theme_Manager.class.php:311
#: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719
-#: libraries/common.lib.php:1333 libraries/common.lib.php:2279
+#: libraries/common.lib.php:1335 libraries/common.lib.php:2288
#: libraries/display_change_password.lib.php:82
#: libraries/display_create_table.lib.php:63
#: libraries/display_export.lib.php:275 libraries/display_import.lib.php:276
@@ -56,9 +56,9 @@ msgstr "Pesquisar"
#: libraries/sql_query_form.lib.php:552 libraries/tbl_properties.inc.php:782
#: main.php:128 navigation.php:237 pdf_pages.php:292 pdf_pages.php:328
#: pdf_pages.php:530 pmd_pdf.php:116 server_binlog.php:142
-#: server_privileges.php:625 server_privileges.php:1585
-#: server_privileges.php:1932 server_privileges.php:1979
-#: server_privileges.php:2018 server_replication.php:235
+#: server_privileges.php:664 server_privileges.php:1624
+#: server_privileges.php:1971 server_privileges.php:2018
+#: server_privileges.php:2057 server_replication.php:235
#: server_replication.php:318 server_replication.php:341
#: server_synchronize.php:1209 tbl_change.php:330 tbl_change.php:1174
#: tbl_change.php:1211 tbl_indexes.php:254 tbl_operations.php:265
@@ -76,7 +76,7 @@ msgstr "Nome do Índice"
#: browse_foreigners.php:169 browse_foreigners.php:171
#: server_collations.php:55 server_collations.php:67 server_engines.php:59
-#: server_status.php:628
+#: server_status.php:739
msgid "Description"
msgstr "Descrição"
@@ -117,7 +117,7 @@ msgstr "Nome dos Campos"
#: libraries/db_structure.lib.php:60 libraries/export/htmlword.php:245
#: libraries/export/latex.php:360 libraries/export/odt.php:297
#: libraries/export/texytext.php:234 libraries/tbl_properties.inc.php:100
-#: pdf_schema.php:1263 pdf_schema.php:1284 server_privileges.php:2031
+#: pdf_schema.php:1263 pdf_schema.php:1284 server_privileges.php:2070
#: tbl_change.php:287 tbl_change.php:314 tbl_printview.php:143
#: tbl_printview.php:313 tbl_select.php:136 tbl_structure.php:178
#: tbl_structure.php:659 tbl_tracking.php:274 tbl_tracking.php:321
@@ -161,9 +161,9 @@ msgstr "Comentários"
#: libraries/Index.class.php:386 libraries/export/htmlword.php:322
#: libraries/export/latex.php:430 libraries/export/odt.php:368
#: libraries/export/texytext.php:311 libraries/mult_submits.inc.php:263
-#: pdf_schema.php:1344 server_privileges.php:1529 server_privileges.php:1540
-#: server_privileges.php:1850 server_privileges.php:1855
-#: server_privileges.php:2148 sql.php:132 sql.php:194 tbl_printview.php:229
+#: pdf_schema.php:1344 server_privileges.php:1568 server_privileges.php:1579
+#: server_privileges.php:1889 server_privileges.php:1894
+#: server_privileges.php:2187 sql.php:132 sql.php:194 tbl_printview.php:229
#: tbl_structure.php:350 tbl_tracking.php:337 tbl_tracking.php:342
msgid "No"
msgstr "Não"
@@ -177,9 +177,9 @@ msgstr "Não"
#: libraries/mult_submits.inc.php:101 libraries/mult_submits.inc.php:106
#: libraries/mult_submits.inc.php:111 libraries/mult_submits.inc.php:262
#: libraries/mult_submits.inc.php:273 pdf_schema.php:1344
-#: server_databases.php:64 server_privileges.php:1526
-#: server_privileges.php:1540 server_privileges.php:1850
-#: server_privileges.php:1853 server_privileges.php:2148 sql.php:193
+#: server_databases.php:64 server_privileges.php:1565
+#: server_privileges.php:1579 server_privileges.php:1889
+#: server_privileges.php:1892 server_privileges.php:2187 sql.php:193
#: tbl_printview.php:229 tbl_structure.php:40 tbl_structure.php:350
#: tbl_tracking.php:335 tbl_tracking.php:340
msgid "Yes"
@@ -280,7 +280,7 @@ msgstr "Mudar para a tabela copiada"
msgid "BLOB Repository"
msgstr ""
-#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1350
+#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1352
#: libraries/server_links.inc.php:49 server_processlist.php:59
#: tbl_tracking.php:596 test/theme.php:101
msgid "Status"
@@ -345,8 +345,8 @@ msgstr "Editar páginas PDF"
#: db_printview.php:104 db_tracking.php:72 db_tracking.php:157
#: libraries/db_structure.lib.php:46 libraries/export/xml.php:328
-#: libraries/header.inc.php:126 pdf_pages.php:424 server_privileges.php:1626
-#: server_privileges.php:1682 server_privileges.php:1946
+#: libraries/header.inc.php:126 pdf_pages.php:424 server_privileges.php:1665
+#: server_privileges.php:1721 server_privileges.php:1985
#: server_synchronize.php:423 server_synchronize.php:866 tbl_tracking.php:592
#: test/theme.php:75
msgid "Table"
@@ -447,7 +447,7 @@ msgstr "Elim."
#: db_qbe.php:370 db_qbe.php:451 db_qbe.php:522 db_qbe.php:553
#: libraries/display_import.lib.php:166 libraries/tbl_properties.inc.php:779
-#: server_privileges.php:258 tbl_change.php:1031 tbl_indexes.php:250
+#: server_privileges.php:297 tbl_change.php:1031 tbl_indexes.php:250
#: tbl_select.php:288
msgid "Or"
msgstr "Ou"
@@ -481,7 +481,7 @@ msgstr "Usar Tabelas"
msgid "SQL query on database %s:"
msgstr "Comando SQL na base de dados %s:"
-#: db_qbe.php:934 libraries/common.lib.php:1223
+#: db_qbe.php:934 libraries/common.lib.php:1225
msgid "Submit Query"
msgstr "Executa Comando SQL"
@@ -520,7 +520,7 @@ msgstr "%s resultado(s) na tabela %s"
#: db_search.php:267 db_structure.php:77 db_structure.php:78
#: db_structure.php:90 db_structure.php:92 db_structure.php:103
-#: db_structure.php:105 libraries/common.lib.php:2824
+#: db_structure.php:105 libraries/common.lib.php:2833
#: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50
#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:467
msgid "Browse"
@@ -567,26 +567,26 @@ msgstr "Dentro de Tabela(s):"
#: db_structure.php:81 db_structure.php:82 db_structure.php:94
#: db_structure.php:95 db_structure.php:107 db_structure.php:108
-#: libraries/common.lib.php:2823 libraries/sql_query_form.lib.php:334
+#: libraries/common.lib.php:2832 libraries/sql_query_form.lib.php:334
#: libraries/sql_query_form.lib.php:337 libraries/tbl_links.inc.php:76
msgid "Insert"
msgstr "Insere"
#: db_structure.php:83 db_structure.php:96 db_structure.php:109
-#: libraries/common.lib.php:2820 libraries/common.lib.php:2827
+#: libraries/common.lib.php:2829 libraries/common.lib.php:2836
#: libraries/db_links.inc.php:63 libraries/export/htmlword.php:23
#: libraries/export/latex.php:33 libraries/export/latex.php:337
#: libraries/export/odt.php:32 libraries/export/sql.php:60
#: libraries/export/texytext.php:23 libraries/import.lib.php:1104
#: libraries/tbl_links.inc.php:56 pmd_general.php:134
-#: server_privileges.php:554 server_replication.php:315 tbl_tracking.php:269
+#: server_privileges.php:593 server_replication.php:315 tbl_tracking.php:269
msgid "Structure"
msgstr "Estrutura"
#: db_structure.php:84 db_structure.php:85 db_structure.php:97
#: db_structure.php:98 db_structure.php:110 db_structure.php:111
#: db_structure.php:545 db_structure.php:546 db_tracking.php:91
-#: libraries/Index.class.php:483 libraries/common.lib.php:1654
+#: libraries/Index.class.php:483 libraries/common.lib.php:1656
#: libraries/db_links.inc.php:100 libraries/mult_submits.inc.php:36
#: libraries/mult_submits.inc.php:73 libraries/tbl_links.inc.php:127
#: server_databases.php:352 tbl_structure.php:27 tbl_structure.php:151
@@ -596,7 +596,7 @@ msgstr "Elimina"
#: db_structure.php:86 db_structure.php:87 db_structure.php:99
#: db_structure.php:100 db_structure.php:112 db_structure.php:113
-#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1653
+#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1655
#: libraries/mult_submits.inc.php:39 libraries/tbl_links.inc.php:105
msgid "Empty"
msgstr "Limpa"
@@ -638,7 +638,7 @@ msgstr ""
#: db_structure.php:485 libraries/db_structure.lib.php:49
#: libraries/server_links.inc.php:70 server_replication.php:33
-#: server_replication.php:164 server_status.php:258
+#: server_replication.php:164 server_status.php:369
#, fuzzy
msgid "Replication"
msgstr "Relações"
@@ -655,20 +655,20 @@ msgstr ""
#: db_structure.php:524 db_structure.php:541 db_structure.php:542
#: libraries/display_tbl.lib.php:2081 libraries/display_tbl.lib.php:2086
#: libraries/mult_submits.inc.php:16 server_databases.php:346
-#: server_databases.php:351 server_privileges.php:1557 tbl_structure.php:455
+#: server_databases.php:351 server_privileges.php:1596 tbl_structure.php:455
#: tbl_structure.php:464
msgid "With selected:"
msgstr "Com os seleccionados:"
#: db_structure.php:527 libraries/display_tbl.lib.php:2076
-#: server_databases.php:348 server_privileges.php:530
-#: server_privileges.php:1560 tbl_structure.php:458
+#: server_databases.php:348 server_privileges.php:569
+#: server_privileges.php:1599 tbl_structure.php:458
msgid "Check All"
msgstr "Todos"
#: db_structure.php:531 libraries/display_tbl.lib.php:2077
#: libraries/replication_gui.lib.php:33 server_databases.php:350
-#: server_privileges.php:533 server_privileges.php:1564 tbl_structure.php:462
+#: server_privileges.php:572 server_privileges.php:1603 tbl_structure.php:462
msgid "Uncheck All"
msgstr "Nenhum"
@@ -706,7 +706,7 @@ msgstr "Analizar tabela"
#: libraries/display_export.lib.php:83 libraries/display_tbl.lib.php:2094
#: libraries/display_tbl.lib.php:2225 libraries/mult_submits.inc.php:62
#: libraries/server_links.inc.php:84 libraries/tbl_links.inc.php:82
-#: pmd_pdf.php:84 pmd_pdf.php:109 server_privileges.php:1341
+#: pmd_pdf.php:84 pmd_pdf.php:109 server_privileges.php:1380
#: setup/frames/menu.inc.php:22 tbl_row_action.php:59
msgid "Export"
msgstr "Exportar"
@@ -725,8 +725,8 @@ msgstr "Verificar tabela"
#: libraries/export/sql.php:342 libraries/export/texytext.php:84
#: libraries/export/xml.php:255 libraries/header.inc.php:106
#: libraries/header_printview.inc.php:58 server_databases.php:169
-#: server_privileges.php:1621 server_privileges.php:1682
-#: server_privileges.php:1940 server_processlist.php:56
+#: server_privileges.php:1660 server_privileges.php:1721
+#: server_privileges.php:1979 server_processlist.php:56
#: server_synchronize.php:1179 server_synchronize.php:1183
#: tbl_tracking.php:591 test/theme.php:65
msgid "Database"
@@ -748,8 +748,8 @@ msgstr ""
#: db_tracking.php:77 libraries/Index.class.php:440
#: libraries/db_structure.lib.php:53 server_databases.php:203
-#: server_privileges.php:1503 server_privileges.php:1686
-#: server_privileges.php:2034 tbl_structure.php:187
+#: server_privileges.php:1542 server_privileges.php:1725
+#: server_privileges.php:2073 tbl_structure.php:187
msgid "Action"
msgstr "Acções"
@@ -945,11 +945,11 @@ msgstr "O nome da máquina está vazio!"
msgid "The user name is empty!"
msgstr "O nome do utilizador está vazio!"
-#: js/messages.php:44 server_privileges.php:1197 user_password.php:70
+#: js/messages.php:44 server_privileges.php:1236 user_password.php:70
msgid "The password is empty!"
msgstr "Indique a palavras-passe!"
-#: js/messages.php:45 server_privileges.php:1195 user_password.php:73
+#: js/messages.php:45 server_privileges.php:1234 user_password.php:73
msgid "The passwords aren't the same!"
msgstr ""
"As palavras-passe são diferentes!\\nLembre-se de confirmar a palavra-passe!"
@@ -1030,8 +1030,8 @@ msgid "Prev"
msgstr "Anterior"
#. l10n: Display text for next month link in calendar
-#: js/messages.php:77 libraries/common.lib.php:2344
-#: libraries/common.lib.php:2347 libraries/display_tbl.lib.php:338
+#: js/messages.php:77 libraries/common.lib.php:2353
+#: libraries/common.lib.php:2356 libraries/display_tbl.lib.php:338
#: server_binlog.php:205 server_binlog.php:207 tbl_printview.php:424
#: tbl_structure.php:801
msgid "Next"
@@ -1107,27 +1107,27 @@ msgid "December"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:97 libraries/common.lib.php:1555
+#: js/messages.php:97 libraries/common.lib.php:1557
msgid "Jan"
msgstr "Jan"
#. l10n: Short month name
-#: js/messages.php:99 libraries/common.lib.php:1557
+#: js/messages.php:99 libraries/common.lib.php:1559
msgid "Feb"
msgstr "Fev"
#. l10n: Short month name
-#: js/messages.php:101 libraries/common.lib.php:1559
+#: js/messages.php:101 libraries/common.lib.php:1561
msgid "Mar"
msgstr "Mar"
#. l10n: Short month name
-#: js/messages.php:103 libraries/common.lib.php:1561
+#: js/messages.php:103 libraries/common.lib.php:1563
msgid "Apr"
msgstr "Abr"
#. l10n: Short month name
-#: js/messages.php:105 libraries/common.lib.php:1563
+#: js/messages.php:105 libraries/common.lib.php:1565
#, fuzzy
#| msgid "May"
msgctxt "Short month name"
@@ -1135,37 +1135,37 @@ msgid "May"
msgstr "Mai"
#. l10n: Short month name
-#: js/messages.php:107 libraries/common.lib.php:1565
+#: js/messages.php:107 libraries/common.lib.php:1567
msgid "Jun"
msgstr "Jun"
#. l10n: Short month name
-#: js/messages.php:109 libraries/common.lib.php:1567
+#: js/messages.php:109 libraries/common.lib.php:1569
msgid "Jul"
msgstr "Jul"
#. l10n: Short month name
-#: js/messages.php:111 libraries/common.lib.php:1569
+#: js/messages.php:111 libraries/common.lib.php:1571
msgid "Aug"
msgstr "Ago"
#. l10n: Short month name
-#: js/messages.php:113 libraries/common.lib.php:1571
+#: js/messages.php:113 libraries/common.lib.php:1573
msgid "Sep"
msgstr "Set"
#. l10n: Short month name
-#: js/messages.php:115 libraries/common.lib.php:1573
+#: js/messages.php:115 libraries/common.lib.php:1575
msgid "Oct"
msgstr "Out"
#. l10n: Short month name
-#: js/messages.php:117 libraries/common.lib.php:1575
+#: js/messages.php:117 libraries/common.lib.php:1577
msgid "Nov"
msgstr "Nov"
#. l10n: Short month name
-#: js/messages.php:119 libraries/common.lib.php:1577
+#: js/messages.php:119 libraries/common.lib.php:1579
msgid "Dec"
msgstr "Dez"
@@ -1206,37 +1206,37 @@ msgid "Saturday"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:132 libraries/common.lib.php:1580
+#: js/messages.php:132 libraries/common.lib.php:1582
msgid "Sun"
msgstr "Dom"
#. l10n: Short week day name
-#: js/messages.php:134 libraries/common.lib.php:1582
+#: js/messages.php:134 libraries/common.lib.php:1584
msgid "Mon"
msgstr "Seg"
#. l10n: Short week day name
-#: js/messages.php:136 libraries/common.lib.php:1584
+#: js/messages.php:136 libraries/common.lib.php:1586
msgid "Tue"
msgstr "Ter"
#. l10n: Short week day name
-#: js/messages.php:138 libraries/common.lib.php:1586
+#: js/messages.php:138 libraries/common.lib.php:1588
msgid "Wed"
msgstr "Qua"
#. l10n: Short week day name
-#: js/messages.php:140 libraries/common.lib.php:1588
+#: js/messages.php:140 libraries/common.lib.php:1590
msgid "Thu"
msgstr "Qui"
#. l10n: Short week day name
-#: js/messages.php:142 libraries/common.lib.php:1590
+#: js/messages.php:142 libraries/common.lib.php:1592
msgid "Fri"
msgstr "Sex"
#. l10n: Short week day name
-#: js/messages.php:144 libraries/common.lib.php:1592
+#: js/messages.php:144 libraries/common.lib.php:1594
msgid "Sat"
msgstr "Sab"
@@ -1380,7 +1380,7 @@ msgid "Comment"
msgstr "Comentários"
#: libraries/Index.class.php:466 libraries/common.lib.php:616
-#: libraries/common.lib.php:1199 libraries/display_tbl.lib.php:1117
+#: libraries/common.lib.php:1201 libraries/display_tbl.lib.php:1117
#: libraries/import.lib.php:1087 libraries/import.lib.php:1111
#: pdf_pages.php:285 setup/frames/index.inc.php:124
#: setup/lib/messages.inc.php:352 tbl_row_action.php:69
@@ -1404,7 +1404,7 @@ msgid ""
msgstr ""
#: libraries/List_Database.class.php:431 libraries/server_links.inc.php:41
-#: server_databases.php:88 server_privileges.php:1621
+#: server_databases.php:88 server_privileges.php:1660
#: setup/lib/messages.inc.php:110 test/theme.php:93
msgid "Databases"
msgstr "Base de Dados"
@@ -1735,7 +1735,7 @@ msgid "Documentation"
msgstr "Documentação"
#: libraries/common.lib.php:595 libraries/header_printview.inc.php:61
-#: server_processlist.php:60 server_status.php:247
+#: server_processlist.php:60 server_status.php:358
msgid "SQL query"
msgstr "Comando SQL"
@@ -1751,128 +1751,128 @@ msgstr "Explicar SQL"
msgid "Skip Explain SQL"
msgstr "Saltar Explicar SQL"
-#: libraries/common.lib.php:1212
+#: libraries/common.lib.php:1214
msgid "Without PHP Code"
msgstr "sem código PHP"
-#: libraries/common.lib.php:1215 setup/lib/messages.inc.php:355
+#: libraries/common.lib.php:1217 setup/lib/messages.inc.php:355
msgid "Create PHP Code"
msgstr "Criar código PHP"
-#: libraries/common.lib.php:1233 server_status.php:341
+#: libraries/common.lib.php:1235 server_status.php:452
#: setup/lib/messages.inc.php:354
msgid "Refresh"
msgstr ""
-#: libraries/common.lib.php:1242
+#: libraries/common.lib.php:1244
msgid "Skip Validate SQL"
msgstr "Saltar a validação SQL"
-#: libraries/common.lib.php:1245 setup/lib/messages.inc.php:356 sql.php:518
+#: libraries/common.lib.php:1247 setup/lib/messages.inc.php:356 sql.php:518
msgid "Validate SQL"
msgstr "Validar SQL"
-#: libraries/common.lib.php:1276
+#: libraries/common.lib.php:1278
msgid "Inline edit of this query"
msgstr ""
-#: libraries/common.lib.php:1278
+#: libraries/common.lib.php:1280
msgid "Inline"
msgstr ""
-#: libraries/common.lib.php:1332 libraries/common.lib.php:1347
+#: libraries/common.lib.php:1334 libraries/common.lib.php:1349
msgid "Profiling"
msgstr ""
-#: libraries/common.lib.php:1351 libraries/tbl_triggers.lib.php:28
+#: libraries/common.lib.php:1353 libraries/tbl_triggers.lib.php:28
#: server_processlist.php:58
msgid "Time"
msgstr "Tempo"
#. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "B"
msgstr "Bytes"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "KiB"
msgstr "KB"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "MiB"
msgstr "MB"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "GiB"
msgstr "GB"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "TiB"
msgstr "TB"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "PiB"
msgstr "PB"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "EiB"
msgstr "EB"
#. l10n: Thousands separator
-#: libraries/common.lib.php:1417
+#: libraries/common.lib.php:1419
msgid ","
msgstr ","
#. l10n: Decimal separator
-#: libraries/common.lib.php:1419
+#: libraries/common.lib.php:1421
msgid "."
msgstr "."
#. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string
-#: libraries/common.lib.php:1596
+#: libraries/common.lib.php:1598
#: libraries/transformations/text_plain__dateformat.inc.php:34
msgid "%B %d, %Y at %I:%M %p"
msgstr "%d-%B-%Y às %H:%M"
-#: libraries/common.lib.php:1898
+#: libraries/common.lib.php:1907
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "%s dias, %s horas, %s minutos e %s segundos"
-#: libraries/common.lib.php:2313 libraries/common.lib.php:2316
-#: libraries/display_tbl.lib.php:290 server_status.php:608
+#: libraries/common.lib.php:2322 libraries/common.lib.php:2325
+#: libraries/display_tbl.lib.php:290 server_status.php:719
msgid "Begin"
msgstr "Inicio"
-#: libraries/common.lib.php:2314 libraries/common.lib.php:2317
+#: libraries/common.lib.php:2323 libraries/common.lib.php:2326
#: libraries/display_tbl.lib.php:291 server_binlog.php:168
#: server_binlog.php:170
msgid "Previous"
msgstr "Anterior"
-#: libraries/common.lib.php:2345 libraries/common.lib.php:2348
+#: libraries/common.lib.php:2354 libraries/common.lib.php:2357
#: libraries/display_tbl.lib.php:353
msgid "End"
msgstr "Fim"
-#: libraries/common.lib.php:2421
+#: libraries/common.lib.php:2430
#, php-format
msgid "Jump to database "%s"."
msgstr "Saltar para a Base de Dados "%s"."
-#: libraries/common.lib.php:2441
+#: libraries/common.lib.php:2450
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr ""
-#: libraries/common.lib.php:2821 libraries/common.lib.php:2828
+#: libraries/common.lib.php:2830 libraries/common.lib.php:2837
#: libraries/db_links.inc.php:68 libraries/export/sql.php:25
#: libraries/import/sql.php:18 libraries/server_links.inc.php:45
#: libraries/tbl_links.inc.php:60 querywindow.php:99 test/theme.php:97
msgid "SQL"
msgstr "SQL"
-#: libraries/common.lib.php:2830 libraries/db_links.inc.php:104
+#: libraries/common.lib.php:2839 libraries/db_links.inc.php:104
#: libraries/tbl_links.inc.php:95 libraries/tbl_links.inc.php:117
#: view_operations.php:89
msgid "Operations"
@@ -1930,8 +1930,8 @@ msgid "Import"
msgstr "Exportar"
#: libraries/db_links.inc.php:111 libraries/server_links.inc.php:66
-#: server_privileges.php:72 server_privileges.php:1683
-#: server_privileges.php:2032 test/theme.php:117
+#: server_privileges.php:111 server_privileges.php:1722
+#: server_privileges.php:2071 test/theme.php:117
msgid "Privileges"
msgstr "Privilégios"
@@ -1977,22 +1977,22 @@ msgid "Change password"
msgstr "Alterar a palavra-passe"
#: libraries/display_change_password.lib.php:35
-#: libraries/replication_gui.lib.php:345 server_privileges.php:768
+#: libraries/replication_gui.lib.php:345 server_privileges.php:807
msgid "No Password"
msgstr "Sem palavra-passe"
#: libraries/display_change_password.lib.php:41
#: libraries/replication_gui.lib.php:59 libraries/replication_gui.lib.php:60
#: libraries/replication_gui.lib.php:335 libraries/replication_gui.lib.php:339
-#: libraries/replication_gui.lib.php:349 server_privileges.php:757
-#: server_privileges.php:761 server_privileges.php:772
-#: server_privileges.php:1499 server_synchronize.php:1175
+#: libraries/replication_gui.lib.php:349 server_privileges.php:796
+#: server_privileges.php:800 server_privileges.php:811
+#: server_privileges.php:1538 server_synchronize.php:1175
msgid "Password"
msgstr "Palavra-passe"
#: libraries/display_change_password.lib.php:46
#: libraries/replication_gui.lib.php:353 libraries/replication_gui.lib.php:356
-#: server_privileges.php:776 server_privileges.php:779
+#: server_privileges.php:815 server_privileges.php:818
msgid "Re-type"
msgstr "Confirma"
@@ -2005,12 +2005,12 @@ msgid "MySQL 4.0 compatible"
msgstr ""
#: libraries/display_change_password.lib.php:72
-#: libraries/replication_gui.lib.php:360 server_privileges.php:783
+#: libraries/replication_gui.lib.php:360 server_privileges.php:822
msgid "Generate Password"
msgstr ""
#: libraries/display_change_password.lib.php:75
-#: libraries/replication_gui.lib.php:363 server_privileges.php:786
+#: libraries/replication_gui.lib.php:363 server_privileges.php:825
#, fuzzy
msgid "Generate"
msgstr "Gerado por"
@@ -2024,8 +2024,8 @@ msgstr "Criar nova base de dados"
msgid "Create"
msgstr "Criar"
-#: libraries/display_create_database.lib.php:40 server_privileges.php:74
-#: server_privileges.php:1388 server_replication.php:35
+#: libraries/display_create_database.lib.php:40 server_privileges.php:113
+#: server_privileges.php:1427 server_replication.php:35
msgid "No Privileges"
msgstr "Sem Privilégios"
@@ -2115,7 +2115,7 @@ msgstr "Compressão"
#: libraries/display_export.lib.php:240 libraries/display_import.lib.php:197
#: libraries/display_import.lib.php:210 libraries/display_tbl.lib.php:530
#: libraries/export/sql.php:868 libraries/tbl_properties.inc.php:575
-#: server_privileges.php:1836 server_processlist.php:75
+#: server_privileges.php:1875 server_processlist.php:75
msgid "None"
msgstr "Nenhum"
@@ -2436,7 +2436,7 @@ msgstr ""
msgid "Buffer Pool"
msgstr ""
-#: libraries/engines/innodb.lib.php:145 server_status.php:306
+#: libraries/engines/innodb.lib.php:145 server_status.php:417
msgid "InnoDB Status"
msgstr "Estado da InnoDB"
@@ -2445,8 +2445,8 @@ msgid "Buffer Pool Usage"
msgstr ""
#: libraries/engines/innodb.lib.php:194 server_databases.php:137
-#: server_databases.php:305 server_status.php:414 server_status.php:475
-#: server_status.php:496 tbl_printview.php:351 tbl_structure.php:696
+#: server_databases.php:305 server_status.php:525 server_status.php:586
+#: server_status.php:607 tbl_printview.php:351 tbl_structure.php:696
msgid "Total"
msgstr "Total"
@@ -2764,7 +2764,7 @@ msgstr ""
#: libraries/export/latex.php:201 libraries/export/odt.php:48
#: libraries/export/sql.php:106 libraries/export/sql.php:868
#: libraries/export/texytext.php:27 server_databases.php:127
-#: server_privileges.php:537 server_replication.php:316 tbl_printview.php:317
+#: server_privileges.php:576 server_replication.php:316 tbl_printview.php:317
#: tbl_structure.php:665
msgid "Data"
msgstr "Dados"
@@ -2814,9 +2814,9 @@ msgstr "MIME-type"
#: libraries/export/xml.php:102 libraries/header_printview.inc.php:57
#: libraries/replication_gui.lib.php:63 libraries/replication_gui.lib.php:174
#: libraries/replication_gui.lib.php:269 libraries/replication_gui.lib.php:272
-#: libraries/replication_gui.lib.php:329 server_privileges.php:692
-#: server_privileges.php:695 server_privileges.php:751
-#: server_privileges.php:1498 server_privileges.php:2030
+#: libraries/replication_gui.lib.php:329 server_privileges.php:731
+#: server_privileges.php:734 server_privileges.php:790
+#: server_privileges.php:1537 server_privileges.php:2069
#: server_processlist.php:55 server_synchronize.php:1159
msgid "Host"
msgstr "Máquina"
@@ -3181,747 +3181,6 @@ msgstr "Nenhum"
msgid "Convert to Kana"
msgstr ""
-#. l10n: Text direction, use either ltr or rtl
-#: libraries/messages.inc.php:19
-msgid "ltr"
-msgstr "ltr"
-
-#: libraries/messages.inc.php:21
-msgid "Content of table __TABLE__"
-msgstr "Conteúdo da tabela __TABLE__"
-
-#: libraries/messages.inc.php:22
-msgid "(continued)"
-msgstr "(continuação)"
-
-#: libraries/messages.inc.php:23
-msgid "Structure of table __TABLE__"
-msgstr "estructura da tabela __TABLE__"
-
-#: libraries/messages.inc.php:25 server_privileges.php:227
-msgid "Includes all privileges except GRANT."
-msgstr "inclui todos os privilégios excepto Conceção - GRANT."
-
-#: libraries/messages.inc.php:26 server_privileges.php:153
-#: server_privileges.php:476
-msgid "Allows altering the structure of existing tables."
-msgstr "Permite alterar a estrutura de tabelas existentes."
-
-#: libraries/messages.inc.php:27 server_privileges.php:169
-#: server_privileges.php:482
-#, fuzzy
-msgid "Allows altering and dropping stored routines."
-msgstr "Permite criar e apagar indexes."
-
-#: libraries/messages.inc.php:28 server_privileges.php:145
-#: server_privileges.php:475
-msgid "Allows creating new databases and tables."
-msgstr "Permite criar novas Bases de Dados e tabelas."
-
-#: libraries/messages.inc.php:29 server_privileges.php:168
-#: server_privileges.php:481
-#, fuzzy
-msgid "Allows creating stored routines."
-msgstr "Permite criar novas tabelas."
-
-#: libraries/messages.inc.php:30 server_privileges.php:475
-msgid "Allows creating new tables."
-msgstr "Permite criar novas tabelas."
-
-#: libraries/messages.inc.php:31 server_privileges.php:156
-#: server_privileges.php:479
-msgid "Allows creating temporary tables."
-msgstr "Permite criar tabelas temporárias."
-
-#: libraries/messages.inc.php:32 server_privileges.php:170
-#: server_privileges.php:515
-msgid "Allows creating, dropping and renaming user accounts."
-msgstr ""
-
-#: libraries/messages.inc.php:33 server_privileges.php:160
-#: server_privileges.php:164 server_privileges.php:487
-#: server_privileges.php:491
-#, fuzzy
-msgid "Allows creating new views."
-msgstr "Permite criar novas tabelas."
-
-#: libraries/messages.inc.php:34 server_privileges.php:144
-#: server_privileges.php:467
-msgid "Allows deleting data."
-msgstr "Permite apagar dados."
-
-#: libraries/messages.inc.php:35 server_privileges.php:146
-#: server_privileges.php:478
-msgid "Allows dropping databases and tables."
-msgstr "Permite apagar Bases de Dados e tabelas."
-
-#: libraries/messages.inc.php:36 server_privileges.php:478
-msgid "Allows dropping tables."
-msgstr "Permite apagar Bases de Dados."
-
-#: libraries/messages.inc.php:37 server_privileges.php:161
-#: server_privileges.php:495
-msgid "Allows to set up events for the event scheduler"
-msgstr ""
-
-#: libraries/messages.inc.php:38 server_privileges.php:171
-#: server_privileges.php:483
-#, fuzzy
-msgid "Allows executing stored routines."
-msgstr "Permite criar novas tabelas."
-
-#: libraries/messages.inc.php:39 server_privileges.php:150
-#: server_privileges.php:470
-msgid "Allows importing data from and exporting data into files."
-msgstr "Permite importar dados de... e exportar dados para ficheiros."
-
-#: libraries/messages.inc.php:40 server_privileges.php:501
-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/messages.inc.php:41 server_privileges.php:152
-#: server_privileges.php:477
-msgid "Allows creating and dropping indexes."
-msgstr "Permite criar e apagar indexes."
-
-#: libraries/messages.inc.php:42 server_privileges.php:142
-#: server_privileges.php:403 server_privileges.php:465
-msgid "Allows inserting and replacing data."
-msgstr "Permite inserir e substituir dados."
-
-#: libraries/messages.inc.php:43 server_privileges.php:157
-#: server_privileges.php:510
-msgid "Allows locking tables for the current thread."
-msgstr ""
-
-#: libraries/messages.inc.php:44 server_privileges.php:607
-#: server_privileges.php:609
-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/messages.inc.php:45 server_privileges.php:595
-#: server_privileges.php:597
-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/messages.inc.php:46 server_privileges.php:601
-#: server_privileges.php:603
-msgid ""
-"Limits the number of commands that change any table or database the user may "
-"execute per hour."
-msgstr ""
-"Limits the number of commands that change any table or database the user may "
-"execute per hour."
-
-#: libraries/messages.inc.php:47 server_privileges.php:613
-#: server_privileges.php:615
-#, 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/messages.inc.php:48 server_privileges.php:149
-#: server_privileges.php:505
-msgid "Allows viewing processes of all users"
-msgstr ""
-
-#: libraries/messages.inc.php:49 server_privileges.php:151
-#: server_privileges.php:409 server_privileges.php:511
-msgid "Has no effect in this MySQL version."
-msgstr "Não tem efeito nesta versão do MySQL."
-
-#: libraries/messages.inc.php:50 server_privileges.php:147
-#: server_privileges.php:506
-msgid "Allows reloading server settings and flushing the server's caches."
-msgstr ""
-
-#: libraries/messages.inc.php:51 server_privileges.php:159
-#: server_privileges.php:513
-msgid "Allows the user to ask where the slaves / masters are."
-msgstr ""
-
-#: libraries/messages.inc.php:52 server_privileges.php:158
-#: server_privileges.php:514
-msgid "Needed for the replication slaves."
-msgstr ""
-
-#: libraries/messages.inc.php:53 server_privileges.php:141
-#: server_privileges.php:400 server_privileges.php:464
-msgid "Allows reading data."
-msgstr "Permite ler dados."
-
-#: libraries/messages.inc.php:54 server_privileges.php:154
-#: server_privileges.php:508
-msgid "Gives access to the complete list of databases."
-msgstr "Dá acesso à lista de bases de dados completa."
-
-#: libraries/messages.inc.php:55 server_privileges.php:165
-#: server_privileges.php:167 server_privileges.php:480
-msgid "Allows performing SHOW CREATE VIEW queries."
-msgstr ""
-
-#: libraries/messages.inc.php:56 server_privileges.php:148
-#: server_privileges.php:507
-msgid "Allows shutting down the server."
-msgstr "Permite desligar o servidor."
-
-#: libraries/messages.inc.php:57 server_privileges.php:155
-#: server_privileges.php:504
-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/messages.inc.php:58 server_privileges.php:162
-#: server_privileges.php:496
-#, fuzzy
-msgid "Allows creating and dropping triggers"
-msgstr "Permite criar e apagar indexes."
-
-#: libraries/messages.inc.php:59 server_privileges.php:143
-#: server_privileges.php:406 server_privileges.php:466
-msgid "Allows changing data."
-msgstr "Permite alterar dados."
-
-#: libraries/messages.inc.php:60 server_privileges.php:221
-msgid "No privileges."
-msgstr "Sem privilégios."
-
-#: libraries/messages.inc.php:62
-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/messages.inc.php:63
-msgid "The number of transactions that used the temporary binary log cache."
-msgstr ""
-
-#: libraries/messages.inc.php:64
-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 "
-"to increase the tmp_table_size value to cause temporary tables to be memory-"
-"based instead of disk-based."
-msgstr ""
-
-#: libraries/messages.inc.php:65
-msgid "How many temporary files mysqld has created."
-msgstr ""
-
-#: libraries/messages.inc.php:66
-msgid ""
-"The number of in-memory temporary tables created automatically by the server "
-"while executing statements."
-msgstr ""
-
-#: libraries/messages.inc.php:67
-msgid ""
-"The number of rows written with INSERT DELAYED for which some error occurred "
-"(probably duplicate key)."
-msgstr ""
-
-#: libraries/messages.inc.php:68
-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/messages.inc.php:69
-msgid "The number of INSERT DELAYED rows written."
-msgstr ""
-
-#: libraries/messages.inc.php:70
-msgid "The number of executed FLUSH statements."
-msgstr ""
-
-#: libraries/messages.inc.php:71
-msgid "The number of internal COMMIT statements."
-msgstr ""
-
-#: libraries/messages.inc.php:72
-msgid "The number of times a row was deleted from a table."
-msgstr ""
-
-#: libraries/messages.inc.php:73
-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/messages.inc.php:74
-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/messages.inc.php:75
-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/messages.inc.php:76
-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/messages.inc.php:77
-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/messages.inc.php:78
-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 "
-"probably have a lot of queries that require MySQL to scan whole tables or "
-"you have joins that don't use keys properly."
-msgstr ""
-
-#: libraries/messages.inc.php:79
-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 "
-"tables are not properly indexed or that your queries are not written to take "
-"advantage of the indexes you have."
-msgstr ""
-
-#: libraries/messages.inc.php:80
-msgid "The number of internal ROLLBACK statements."
-msgstr ""
-
-#: libraries/messages.inc.php:81
-msgid "The number of requests to update a row in a table."
-msgstr ""
-
-#: libraries/messages.inc.php:82
-msgid "The number of requests to insert a row in a table."
-msgstr ""
-
-#: libraries/messages.inc.php:83
-msgid "The number of pages containing data (dirty or clean)."
-msgstr ""
-
-#: libraries/messages.inc.php:84
-msgid "The number of pages currently dirty."
-msgstr ""
-
-#: libraries/messages.inc.php:85
-msgid "The number of buffer pool pages that have been requested to be flushed."
-msgstr ""
-
-#: libraries/messages.inc.php:86
-msgid "The number of free pages."
-msgstr ""
-
-#: libraries/messages.inc.php:87
-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/messages.inc.php:88
-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 "
-"be calculated as Innodb_buffer_pool_pages_total - "
-"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data."
-msgstr ""
-
-#: libraries/messages.inc.php:89
-msgid "Total size of buffer pool, in pages."
-msgstr ""
-
-#: libraries/messages.inc.php:90
-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/messages.inc.php:91
-msgid ""
-"The number of sequential read-aheads InnoDB initiated. This happens when "
-"InnoDB does a sequential full table scan."
-msgstr ""
-
-#: libraries/messages.inc.php:92
-msgid "The number of logical read requests InnoDB has done."
-msgstr ""
-
-#: libraries/messages.inc.php:93
-msgid ""
-"The number of logical reads that InnoDB could not satisfy from buffer pool "
-"and had to do a single-page read."
-msgstr ""
-
-#: libraries/messages.inc.php:94
-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 "
-"available, it's necessary to wait for pages to be flushed first. This "
-"counter counts instances of these waits. If the buffer pool size was set "
-"properly, this value should be small."
-msgstr ""
-
-#: libraries/messages.inc.php:95
-msgid "The number writes done to the InnoDB buffer pool."
-msgstr ""
-
-#: libraries/messages.inc.php:96
-msgid "The number of fsync() operations so far."
-msgstr ""
-
-#: libraries/messages.inc.php:97
-msgid "The current number of pending fsync() operations."
-msgstr ""
-
-#: libraries/messages.inc.php:98
-msgid "The current number of pending reads."
-msgstr ""
-
-#: libraries/messages.inc.php:99
-msgid "The current number of pending writes."
-msgstr ""
-
-#: libraries/messages.inc.php:100
-msgid "The amount of data read so far, in bytes."
-msgstr ""
-
-#: libraries/messages.inc.php:101
-msgid "The total number of data reads."
-msgstr ""
-
-#: libraries/messages.inc.php:102
-msgid "The total number of data writes."
-msgstr ""
-
-#: libraries/messages.inc.php:103
-msgid "The amount of data written so far, in bytes."
-msgstr ""
-
-#: libraries/messages.inc.php:104
-msgid "The number of pages that have been written for doublewrite operations."
-msgstr ""
-
-#: libraries/messages.inc.php:105
-msgid "The number of doublewrite operations that have been performed."
-msgstr ""
-
-#: libraries/messages.inc.php:106
-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/messages.inc.php:107
-msgid "The number of log write requests."
-msgstr ""
-
-#: libraries/messages.inc.php:108
-msgid "The number of physical writes to the log file."
-msgstr ""
-
-#: libraries/messages.inc.php:109
-msgid "The number of fsync() writes done to the log file."
-msgstr ""
-
-#: libraries/messages.inc.php:110
-msgid "The number of pending log file fsyncs."
-msgstr ""
-
-#: libraries/messages.inc.php:111
-msgid "Pending log file writes."
-msgstr ""
-
-#: libraries/messages.inc.php:112
-msgid "The number of bytes written to the log file."
-msgstr ""
-
-#: libraries/messages.inc.php:113
-msgid "The number of pages created."
-msgstr ""
-
-#: libraries/messages.inc.php:114
-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/messages.inc.php:115
-msgid "The number of pages read."
-msgstr ""
-
-#: libraries/messages.inc.php:116
-msgid "The number of pages written."
-msgstr ""
-
-#: libraries/messages.inc.php:117
-msgid "The number of row locks currently being waited for."
-msgstr ""
-
-#: libraries/messages.inc.php:118
-msgid "The average time to acquire a row lock, in milliseconds."
-msgstr ""
-
-#: libraries/messages.inc.php:119
-msgid "The total time spent in acquiring row locks, in milliseconds."
-msgstr ""
-
-#: libraries/messages.inc.php:120
-msgid "The maximum time to acquire a row lock, in milliseconds."
-msgstr ""
-
-#: libraries/messages.inc.php:121
-msgid "The number of times a row lock had to be waited for."
-msgstr ""
-
-#: libraries/messages.inc.php:122
-msgid "The number of rows deleted from InnoDB tables."
-msgstr ""
-
-#: libraries/messages.inc.php:123
-msgid "The number of rows inserted in InnoDB tables."
-msgstr ""
-
-#: libraries/messages.inc.php:124
-msgid "The number of rows read from InnoDB tables."
-msgstr ""
-
-#: libraries/messages.inc.php:125
-msgid "The number of rows updated in InnoDB tables."
-msgstr ""
-
-#: libraries/messages.inc.php:126
-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/messages.inc.php:127
-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/messages.inc.php:128
-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/messages.inc.php:129
-msgid "The number of requests to read a key block from the cache."
-msgstr ""
-
-#: libraries/messages.inc.php:130
-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/messages.inc.php:131
-msgid "The number of requests to write a key block to the cache."
-msgstr ""
-
-#: libraries/messages.inc.php:132
-msgid "The number of physical writes of a key block to disk."
-msgstr ""
-
-#: libraries/messages.inc.php:133
-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/messages.inc.php:134
-msgid "The number of rows waiting to be written in INSERT DELAYED queues."
-msgstr ""
-
-#: libraries/messages.inc.php:135
-msgid ""
-"The number of tables that have been opened. If opened tables is big, your "
-"table cache value is probably too small."
-msgstr ""
-
-#: libraries/messages.inc.php:136
-msgid "The number of files that are open."
-msgstr ""
-
-#: libraries/messages.inc.php:137
-msgid "The number of streams that are open (used mainly for logging)."
-msgstr ""
-
-#: libraries/messages.inc.php:138
-msgid "The number of tables that are open."
-msgstr ""
-
-#: libraries/messages.inc.php:139
-msgid "The number of free memory blocks in query cache."
-msgstr ""
-
-#: libraries/messages.inc.php:140
-msgid "The amount of free memory for query cache."
-msgstr ""
-
-#: libraries/messages.inc.php:141
-msgid "The number of cache hits."
-msgstr ""
-
-#: libraries/messages.inc.php:142
-msgid "The number of queries added to the cache."
-msgstr ""
-
-#: libraries/messages.inc.php:143
-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 "
-"cache size. The query cache uses a least recently used (LRU) strategy to "
-"decide which queries to remove from the cache."
-msgstr ""
-
-#: libraries/messages.inc.php:144
-msgid ""
-"The number of non-cached queries (not cachable, or not cached due to the "
-"query_cache_type setting)."
-msgstr ""
-
-#: libraries/messages.inc.php:145
-msgid "The number of queries registered in the cache."
-msgstr ""
-
-#: libraries/messages.inc.php:146
-msgid "The total number of blocks in the query cache."
-msgstr ""
-
-#: libraries/messages.inc.php:147
-#, fuzzy
-msgctxt "$strShowStatusReset"
-msgid "Reset"
-msgstr "Limpa"
-
-#: libraries/messages.inc.php:148
-msgid "The status of failsafe replication (not yet implemented)."
-msgstr ""
-
-#: libraries/messages.inc.php:149
-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/messages.inc.php:150
-msgid "The number of joins that used a range search on a reference table."
-msgstr ""
-
-#: libraries/messages.inc.php:151
-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/messages.inc.php:152
-msgid ""
-"The number of joins that used ranges on the first table. (It's normally not "
-"critical even if this is big.)"
-msgstr ""
-
-#: libraries/messages.inc.php:153
-msgid "The number of joins that did a full scan of the first table."
-msgstr ""
-
-#: libraries/messages.inc.php:154
-msgid "The number of temporary tables currently open by the slave SQL thread."
-msgstr ""
-
-#: libraries/messages.inc.php:155
-msgid ""
-"Total (since startup) number of times the replication slave SQL thread has "
-"retried transactions."
-msgstr ""
-
-#: libraries/messages.inc.php:156
-msgid "This is ON if this server is a slave that is connected to a master."
-msgstr ""
-
-#: libraries/messages.inc.php:157
-msgid ""
-"The number of threads that have taken more than slow_launch_time seconds to "
-"create."
-msgstr ""
-
-#: libraries/messages.inc.php:158
-msgid ""
-"The number of queries that have taken more than long_query_time seconds."
-msgstr ""
-
-#: libraries/messages.inc.php:159
-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/messages.inc.php:160
-msgid "The number of sorts that were done with ranges."
-msgstr ""
-
-#: libraries/messages.inc.php:161
-msgid "The number of sorted rows."
-msgstr ""
-
-#: libraries/messages.inc.php:162
-msgid "The number of sorts that were done by scanning the table."
-msgstr ""
-
-#: libraries/messages.inc.php:163
-msgid "The number of times that a table lock was acquired immediately."
-msgstr ""
-
-#: libraries/messages.inc.php:164
-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 "
-"should first optimize your queries, and then either split your table or "
-"tables or use replication."
-msgstr ""
-
-#: libraries/messages.inc.php:165
-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/messages.inc.php:166
-msgid "The number of currently open connections."
-msgstr ""
-
-#: libraries/messages.inc.php:167
-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 "
-"doesn't give a notable performance improvement if you have a good thread "
-"implementation.)"
-msgstr ""
-
-#: libraries/messages.inc.php:168
-msgid "The number of threads that are not sleeping."
-msgstr ""
-
#: libraries/mult_submits.inc.php:76 libraries/tbl_properties.inc.php:513
#: tbl_structure.php:29 tbl_structure.php:153 tbl_structure.php:157
#: tbl_structure.php:473
@@ -4243,8 +3502,8 @@ msgstr ""
#: libraries/replication_gui.lib.php:55 libraries/replication_gui.lib.php:56
#: libraries/replication_gui.lib.php:249 libraries/replication_gui.lib.php:252
-#: libraries/replication_gui.lib.php:259 server_privileges.php:672
-#: server_privileges.php:675 server_privileges.php:682
+#: libraries/replication_gui.lib.php:259 server_privileges.php:711
+#: server_privileges.php:714 server_privileges.php:721
#: server_synchronize.php:1171
msgid "User name"
msgstr "Nome do Utilizador"
@@ -4263,11 +3522,11 @@ msgid "Slave status"
msgstr ""
#: libraries/replication_gui.lib.php:114 libraries/sql_query_form.lib.php:445
-#: server_status.php:626 server_variables.php:52
+#: server_status.php:737 server_variables.php:52
msgid "Variable"
msgstr "Variável"
-#: libraries/replication_gui.lib.php:115 server_status.php:627
+#: libraries/replication_gui.lib.php:115 server_status.php:738
#: tbl_change.php:324 tbl_printview.php:370 tbl_select.php:139
#: tbl_structure.php:729
msgid "Value"
@@ -4288,41 +3547,58 @@ msgstr ""
msgid "Add slave replication user"
msgstr ""
-#: libraries/replication_gui.lib.php:254 server_privileges.php:677
+#: libraries/replication_gui.lib.php:254 server_privileges.php:716
msgid "Any user"
msgstr "Qualquer utilizador"
#: libraries/replication_gui.lib.php:255 libraries/replication_gui.lib.php:323
-#: libraries/replication_gui.lib.php:346 server_privileges.php:678
-#: server_privileges.php:745 server_privileges.php:769
-#: server_privileges.php:1889 server_privileges.php:1919
+#: libraries/replication_gui.lib.php:346 server_privileges.php:717
+#: server_privileges.php:784 server_privileges.php:808
+#: server_privileges.php:1928 server_privileges.php:1958
msgid "Use text field"
msgstr "Usar campo de texto"
-#: libraries/replication_gui.lib.php:302 server_privileges.php:725
+#: libraries/replication_gui.lib.php:302 server_privileges.php:764
msgid "Any host"
msgstr "Qualquer máquina"
-#: libraries/replication_gui.lib.php:306 server_privileges.php:729
+#: libraries/replication_gui.lib.php:306 server_privileges.php:768
msgid "Local"
msgstr "Local"
-#: libraries/replication_gui.lib.php:312 server_privileges.php:734
+#: libraries/replication_gui.lib.php:312 server_privileges.php:773
msgid "This Host"
msgstr "Este Anfitrião"
-#: libraries/replication_gui.lib.php:318 server_privileges.php:740
+#: libraries/replication_gui.lib.php:318 server_privileges.php:779
msgid "Use Host Table"
msgstr "Usar a tabela do anfitrião"
-#: libraries/replication_gui.lib.php:331 server_privileges.php:753
+#: libraries/replication_gui.lib.php:331 server_privileges.php:792
msgid ""
"When Host table is used, this field is ignored and values stored in Host "
"table are used instead."
msgstr ""
-#: libraries/select_lang.lib.php:480 libraries/select_lang.lib.php:486
-#: libraries/select_lang.lib.php:492
+#. l10n: Text direction, use either ltr or rtl
+#: libraries/select_lang.lib.php:491
+msgid "ltr"
+msgstr "ltr"
+
+#: libraries/select_lang.lib.php:493
+msgid "Content of table __TABLE__"
+msgstr "Conteúdo da tabela __TABLE__"
+
+#: libraries/select_lang.lib.php:494
+msgid "(continued)"
+msgstr "(continuação)"
+
+#: libraries/select_lang.lib.php:495
+msgid "Structure of table __TABLE__"
+msgstr "estructura da tabela __TABLE__"
+
+#: libraries/select_lang.lib.php:500 libraries/select_lang.lib.php:506
+#: libraries/select_lang.lib.php:512
#, php-format
msgid "Unknown language: %1$s."
msgstr ""
@@ -4334,7 +3610,7 @@ msgid "Servers"
msgstr "Servidor"
#: libraries/server_links.inc.php:53 server_engines.php:112
-#: server_engines.php:116 server_status.php:304 test/theme.php:105
+#: server_engines.php:116 server_status.php:415 test/theme.php:105
msgid "Variables"
msgstr "Variáveis"
@@ -4347,7 +3623,7 @@ msgid "Engines"
msgstr ""
#: libraries/server_links.inc.php:76 server_binlog.php:110
-#: server_status.php:253 test/theme.php:121
+#: server_status.php:364 test/theme.php:121
#, fuzzy
msgid "Binary log"
msgstr " Binário "
@@ -4751,8 +4027,8 @@ msgstr "Limpa"
msgid "Protocol version"
msgstr ""
-#: main.php:189 server_privileges.php:1350 server_privileges.php:1497
-#: server_privileges.php:1611 server_privileges.php:2029
+#: main.php:189 server_privileges.php:1389 server_privileges.php:1536
+#: server_privileges.php:1650 server_privileges.php:2068
#: server_processlist.php:54
msgid "User"
msgstr "Utilizador"
@@ -5128,7 +4404,7 @@ msgstr "As Bases de Dados %s foram apagadas com sucesso."
msgid "Databases statistics"
msgstr "Estatísticas das bases de dados"
-#: server_databases.php:117 server_status.php:260
+#: server_databases.php:117 server_status.php:371
#: setup/lib/messages.inc.php:117
msgid "Tables"
msgstr "Tabelas"
@@ -5147,6 +4423,15 @@ msgstr ""
msgid "Jump to database"
msgstr "Sem bases de dados"
+#: server_databases.php:267
+msgid "Not replicated"
+msgstr ""
+
+#: server_databases.php:273
+#, fuzzy
+msgid "Replicated"
+msgstr "Relações"
+
#: server_databases.php:289
#, php-format
msgid "Check privileges for database "%s"."
@@ -5181,143 +4466,335 @@ msgstr ""
msgid "View dump (schema) of databases"
msgstr "Ver o esquema da base de dados"
-#: server_privileges.php:263 server_privileges.php:264
+#: server_privileges.php:24 server_privileges.php:266
+msgid "Includes all privileges except GRANT."
+msgstr "inclui todos os privilégios excepto Conceção - GRANT."
+
+#: server_privileges.php:25 server_privileges.php:192
+#: server_privileges.php:515
+msgid "Allows altering the structure of existing tables."
+msgstr "Permite alterar a estrutura de tabelas existentes."
+
+#: server_privileges.php:26 server_privileges.php:208
+#: server_privileges.php:521
+#, fuzzy
+msgid "Allows altering and dropping stored routines."
+msgstr "Permite criar e apagar indexes."
+
+#: server_privileges.php:27 server_privileges.php:184
+#: server_privileges.php:514
+msgid "Allows creating new databases and tables."
+msgstr "Permite criar novas Bases de Dados e tabelas."
+
+#: server_privileges.php:28 server_privileges.php:207
+#: server_privileges.php:520
+#, fuzzy
+msgid "Allows creating stored routines."
+msgstr "Permite criar novas tabelas."
+
+#: server_privileges.php:29 server_privileges.php:514
+msgid "Allows creating new tables."
+msgstr "Permite criar novas tabelas."
+
+#: server_privileges.php:30 server_privileges.php:195
+#: server_privileges.php:518
+msgid "Allows creating temporary tables."
+msgstr "Permite criar tabelas temporárias."
+
+#: server_privileges.php:31 server_privileges.php:209
+#: server_privileges.php:554
+msgid "Allows creating, dropping and renaming user accounts."
+msgstr ""
+
+#: server_privileges.php:32 server_privileges.php:199
+#: server_privileges.php:203 server_privileges.php:526
+#: server_privileges.php:530
+#, fuzzy
+msgid "Allows creating new views."
+msgstr "Permite criar novas tabelas."
+
+#: server_privileges.php:33 server_privileges.php:183
+#: server_privileges.php:506
+msgid "Allows deleting data."
+msgstr "Permite apagar dados."
+
+#: server_privileges.php:34 server_privileges.php:185
+#: server_privileges.php:517
+msgid "Allows dropping databases and tables."
+msgstr "Permite apagar Bases de Dados e tabelas."
+
+#: server_privileges.php:35 server_privileges.php:517
+msgid "Allows dropping tables."
+msgstr "Permite apagar Bases de Dados."
+
+#: server_privileges.php:36 server_privileges.php:200
+#: server_privileges.php:534
+msgid "Allows to set up events for the event scheduler"
+msgstr ""
+
+#: server_privileges.php:37 server_privileges.php:210
+#: server_privileges.php:522
+#, fuzzy
+msgid "Allows executing stored routines."
+msgstr "Permite criar novas tabelas."
+
+#: server_privileges.php:38 server_privileges.php:189
+#: server_privileges.php:509
+msgid "Allows importing data from and exporting data into files."
+msgstr "Permite importar dados de... e exportar dados para ficheiros."
+
+#: server_privileges.php:39 server_privileges.php:540
+msgid ""
+"Allows adding users and privileges without reloading the privilege tables."
+msgstr ""
+"Permite adicionar utilizadores e privilégios sem recarregar a tabela de "
+"privilégios."
+
+#: server_privileges.php:40 server_privileges.php:191
+#: server_privileges.php:516
+msgid "Allows creating and dropping indexes."
+msgstr "Permite criar e apagar indexes."
+
+#: server_privileges.php:41 server_privileges.php:181
+#: server_privileges.php:442 server_privileges.php:504
+msgid "Allows inserting and replacing data."
+msgstr "Permite inserir e substituir dados."
+
+#: server_privileges.php:42 server_privileges.php:196
+#: server_privileges.php:549
+msgid "Allows locking tables for the current thread."
+msgstr ""
+
+#: server_privileges.php:43 server_privileges.php:646
+#: server_privileges.php:648
+msgid "Limits the number of new connections the user may open per hour."
+msgstr "Limits the number of new connections the user may open per hour."
+
+#: server_privileges.php:44 server_privileges.php:634
+#: server_privileges.php:636
+msgid "Limits the number of queries the user may send to the server per hour."
+msgstr "Limits the number of queries the user may send to the server per hour."
+
+#: server_privileges.php:45 server_privileges.php:640
+#: server_privileges.php:642
+msgid ""
+"Limits the number of commands that change any table or database the user may "
+"execute per hour."
+msgstr ""
+"Limits the number of commands that change any table or database the user may "
+"execute per hour."
+
+#: server_privileges.php:46 server_privileges.php:652
+#: server_privileges.php:654
+#, fuzzy
+msgid "Limits the number of simultaneous connections the user may have."
+msgstr "Limits the number of new connections the user may open per hour."
+
+#: server_privileges.php:47 server_privileges.php:188
+#: server_privileges.php:544
+msgid "Allows viewing processes of all users"
+msgstr ""
+
+#: server_privileges.php:48 server_privileges.php:190
+#: server_privileges.php:448 server_privileges.php:550
+msgid "Has no effect in this MySQL version."
+msgstr "Não tem efeito nesta versão do MySQL."
+
+#: server_privileges.php:49 server_privileges.php:186
+#: server_privileges.php:545
+msgid "Allows reloading server settings and flushing the server's caches."
+msgstr ""
+
+#: server_privileges.php:50 server_privileges.php:198
+#: server_privileges.php:552
+msgid "Allows the user to ask where the slaves / masters are."
+msgstr ""
+
+#: server_privileges.php:51 server_privileges.php:197
+#: server_privileges.php:553
+msgid "Needed for the replication slaves."
+msgstr ""
+
+#: server_privileges.php:52 server_privileges.php:180
+#: server_privileges.php:439 server_privileges.php:503
+msgid "Allows reading data."
+msgstr "Permite ler dados."
+
+#: server_privileges.php:53 server_privileges.php:193
+#: server_privileges.php:547
+msgid "Gives access to the complete list of databases."
+msgstr "Dá acesso à lista de bases de dados completa."
+
+#: server_privileges.php:54 server_privileges.php:204
+#: server_privileges.php:206 server_privileges.php:519
+msgid "Allows performing SHOW CREATE VIEW queries."
+msgstr ""
+
+#: server_privileges.php:55 server_privileges.php:187
+#: server_privileges.php:546
+msgid "Allows shutting down the server."
+msgstr "Permite desligar o servidor."
+
+#: server_privileges.php:56 server_privileges.php:194
+#: server_privileges.php:543
+msgid ""
+"Allows connecting, even if maximum number of connections is reached; "
+"required for most administrative operations like setting global variables or "
+"killing threads of other users."
+msgstr ""
+
+#: server_privileges.php:57 server_privileges.php:201
+#: server_privileges.php:535
+#, fuzzy
+msgid "Allows creating and dropping triggers"
+msgstr "Permite criar e apagar indexes."
+
+#: server_privileges.php:58 server_privileges.php:182
+#: server_privileges.php:445 server_privileges.php:505
+msgid "Allows changing data."
+msgstr "Permite alterar dados."
+
+#: server_privileges.php:59 server_privileges.php:260
+msgid "No privileges."
+msgstr "Sem privilégios."
+
+#: server_privileges.php:302 server_privileges.php:303
#, fuzzy
#| msgid "None"
msgctxt "None privileges"
msgid "None"
msgstr "Nenhum"
-#: server_privileges.php:392 server_privileges.php:527
-#: server_privileges.php:1679 server_privileges.php:1685
+#: server_privileges.php:431 server_privileges.php:566
+#: server_privileges.php:1718 server_privileges.php:1724
msgid "Table-specific privileges"
msgstr "Privilégios específicos da tabela"
-#: server_privileges.php:393 server_privileges.php:535
-#: server_privileges.php:1501
+#: server_privileges.php:432 server_privileges.php:574
+#: server_privileges.php:1540
msgid " Note: MySQL privilege names are expressed in English "
msgstr " Nota: os nomes dos privilégios do MySQL são em Inglês "
-#: server_privileges.php:524 server_privileges.php:1500
+#: server_privileges.php:563 server_privileges.php:1539
msgid "Global privileges"
msgstr "Privilégios Globais"
-#: server_privileges.php:526 server_privileges.php:1679
+#: server_privileges.php:565 server_privileges.php:1718
msgid "Database-specific privileges"
msgstr "Privilégios específicos da Base de Dados"
-#: server_privileges.php:571
+#: server_privileges.php:610
msgid "Administration"
msgstr "Administração"
-#: server_privileges.php:591
+#: server_privileges.php:630
msgid "Resource limits"
msgstr "Limites do recurso"
-#: server_privileges.php:592
+#: server_privileges.php:631
msgid "Note: Setting these options to 0 (zero) removes the limit."
msgstr "Nota: Configurar estas opções para 0 (zero) remove o limite."
-#: server_privileges.php:669
+#: server_privileges.php:708
msgid "Login Information"
msgstr "Informação de Login "
-#: server_privileges.php:763
+#: server_privileges.php:802
msgid "Do not change the password"
msgstr "Mantendo a palavra-passe "
-#: server_privileges.php:804 server_privileges.php:2166
+#: server_privileges.php:843 server_privileges.php:2205
#, fuzzy
#| msgid "No user(s) found."
msgid "No user found."
msgstr "Nenhum utilizador encontrado."
-#: server_privileges.php:848
+#: server_privileges.php:887
#, php-format
msgid "The user %s already exists!"
msgstr "O utilizador %s já existe!"
-#: server_privileges.php:931
+#: server_privileges.php:970
msgid "You have added a new user."
msgstr "Acrescentou um novo utilizador."
-#: server_privileges.php:1152
+#: server_privileges.php:1191
#, php-format
msgid "You have updated the privileges for %s."
msgstr "Actualizou os privilégios de %s."
-#: server_privileges.php:1176
+#: server_privileges.php:1215
#, php-format
msgid "You have revoked the privileges for %s"
msgstr "Anulou os privilégios para %s"
-#: server_privileges.php:1212
+#: server_privileges.php:1251
#, php-format
msgid "The password for %s was changed successfully."
msgstr "A palavra-passe para %s foi alterada com sucesso."
-#: server_privileges.php:1232
+#: server_privileges.php:1271
#, php-format
msgid "Deleting %s"
msgstr "A apagar %s"
-#: server_privileges.php:1243
+#: server_privileges.php:1282
msgid "No users selected for deleting!"
msgstr ""
-#: server_privileges.php:1246
+#: server_privileges.php:1285
msgid "Reloading the privileges"
msgstr "A recarregar privilégios"
-#: server_privileges.php:1261
+#: server_privileges.php:1300
msgid "The selected users have been deleted successfully."
msgstr "Os utilizadores selecionado foram apagados com sucesso."
-#: server_privileges.php:1296
+#: server_privileges.php:1335
msgid "The privileges were reloaded successfully."
msgstr "O privilégios foram recarregados com sucesso."
-#: server_privileges.php:1324 server_privileges.php:1610
+#: server_privileges.php:1363 server_privileges.php:1649
msgid "Edit Privileges"
msgstr "Alterar Privilegios"
-#: server_privileges.php:1333
+#: server_privileges.php:1372
msgid "Revoke"
msgstr "Anula"
-#: server_privileges.php:1365
+#: server_privileges.php:1404
msgid "User overview"
msgstr ""
-#: server_privileges.php:1502 server_privileges.php:1684
-#: server_privileges.php:2033
+#: server_privileges.php:1541 server_privileges.php:1723
+#: server_privileges.php:2072
msgid "Grant"
msgstr "Conceder/Grant"
-#: server_privileges.php:1521 server_privileges.php:2123
+#: server_privileges.php:1560 server_privileges.php:2162
msgid "Any"
msgstr "Todos"
-#: server_privileges.php:1570 server_privileges.php:1594
-#: server_privileges.php:1988 server_privileges.php:2177
+#: server_privileges.php:1609 server_privileges.php:1633
+#: server_privileges.php:2027 server_privileges.php:2216
msgid "Add a new User"
msgstr "Acrescenta um utilizador"
-#: server_privileges.php:1575
+#: server_privileges.php:1614
msgid "Remove selected users"
msgstr "Remover utilizadores seleccionados"
-#: server_privileges.php:1578
+#: server_privileges.php:1617
msgid "Revoke all active privileges from the users and delete them afterwards."
msgstr "Revogar todos os privilégios dos utilizadores e apagá-los a seguir."
-#: server_privileges.php:1579 server_privileges.php:1580
-#: server_privileges.php:1581
+#: server_privileges.php:1618 server_privileges.php:1619
+#: server_privileges.php:1620
msgid "Drop the databases that have the same names as the users."
msgstr ""
"Apagar as Bases de Dados que tenham os mesmos nomes que os utilizadores."
-#: server_privileges.php:1597
+#: server_privileges.php:1636
#, php-format
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
@@ -5330,49 +4807,49 @@ msgstr ""
"privilégios que o servidor usa se alterações manuais nele forem feitas. "
"Neste caso, deve %sreload the privileges%s antes de continuar."
-#: server_privileges.php:1645
+#: server_privileges.php:1684
msgid "The selected user was not found in the privilege table."
msgstr "O utilizador selecionado não se encontra na tabela de privilégios."
-#: server_privileges.php:1685
+#: server_privileges.php:1724
msgid "Column-specific privileges"
msgstr "Privilégios específicos da Coluna"
-#: server_privileges.php:1886
+#: server_privileges.php:1925
msgid "Add privileges on the following database"
msgstr "Adicionar privilégios na base de dados seguinte"
-#: server_privileges.php:1904
+#: server_privileges.php:1943
msgid "Wildcards % and _ should be escaped with a \\ to use them literally"
msgstr ""
-#: server_privileges.php:1907
+#: server_privileges.php:1946
msgid "Add privileges on the following table"
msgstr "Todos privilégios na tabela seguinte"
-#: server_privileges.php:1964
+#: server_privileges.php:2003
msgid "Change Login Information / Copy User"
msgstr "Mudar a informação de login / Copiar Utilizador"
-#: server_privileges.php:1967
+#: server_privileges.php:2006
msgid "Create a new user with the same privileges and ..."
msgstr "Criar um novo utilizador com os mesmo privilégios e ..."
-#: server_privileges.php:1969
+#: server_privileges.php:2008
msgid "... keep the old one."
msgstr "... manter o antigo."
-#: server_privileges.php:1970
+#: server_privileges.php:2009
msgid " ... delete the old one from the user tables."
msgstr " ... apagar o antigo das tabelas do utilizador."
-#: server_privileges.php:1971
+#: server_privileges.php:2010
msgid ""
" ... revoke all active privileges from the old one and delete it afterwards."
msgstr ""
" ... revogar todos os privilégios activos do antigo e a seguir apagá-lo."
-#: server_privileges.php:1972
+#: server_privileges.php:2011
msgid ""
" ... delete the old one from the user tables and reload the privileges "
"afterwards."
@@ -5380,44 +4857,44 @@ msgstr ""
" ... apagar o antigo das tabelas do utilizador e depois recarregue os "
"privilégios."
-#: server_privileges.php:1994
+#: server_privileges.php:2033
msgid "Database for user"
msgstr ""
-#: server_privileges.php:1998
+#: server_privileges.php:2037
#, fuzzy
#| msgid "None"
msgctxt "Create none database for user"
msgid "None"
msgstr "Nenhum"
-#: server_privileges.php:1999
+#: server_privileges.php:2038
msgid "Create database with same name and grant all privileges"
msgstr ""
-#: server_privileges.php:2000
+#: server_privileges.php:2039
msgid "Grant all privileges on wildcard name (username\\_%)"
msgstr ""
-#: server_privileges.php:2003
+#: server_privileges.php:2042
#, fuzzy, php-format
msgid "Grant all privileges on database "%s""
msgstr "Verificar Privilégios para a Base de Dados "%s"."
-#: server_privileges.php:2026
+#: server_privileges.php:2065
#, php-format
msgid "Users having access to "%s""
msgstr "Utilizadores que tem acesso a "%s""
-#: server_privileges.php:2134
+#: server_privileges.php:2173
msgid "global"
msgstr "global"
-#: server_privileges.php:2136
+#: server_privileges.php:2175
msgid "database-specific"
msgstr "Especifico da Base de Dados"
-#: server_privileges.php:2138
+#: server_privileges.php:2177
msgid "wildcard"
msgstr ""
@@ -5463,7 +4940,7 @@ msgstr ""
msgid "This server is configured as master in a replication process."
msgstr ""
-#: server_replication.php:184 server_status.php:281
+#: server_replication.php:184 server_status.php:392
msgid "Show master status"
msgstr ""
@@ -5602,107 +5079,639 @@ msgid ""
"like to configure it?"
msgstr ""
+#: server_status.php:40
+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 ""
+
+#: server_status.php:41
+msgid "The number of transactions that used the temporary binary log cache."
+msgstr ""
+
+#: server_status.php:42
+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 "
+"to increase the tmp_table_size value to cause temporary tables to be memory-"
+"based instead of disk-based."
+msgstr ""
+
+#: server_status.php:43
+msgid "How many temporary files mysqld has created."
+msgstr ""
+
+#: server_status.php:44
+msgid ""
+"The number of in-memory temporary tables created automatically by the server "
+"while executing statements."
+msgstr ""
+
+#: server_status.php:45
+msgid ""
+"The number of rows written with INSERT DELAYED for which some error occurred "
+"(probably duplicate key)."
+msgstr ""
+
#: server_status.php:46
+msgid ""
+"The number of INSERT DELAYED handler threads in use. Every different table "
+"on which one uses INSERT DELAYED gets its own thread."
+msgstr ""
+
+#: server_status.php:47
+msgid "The number of INSERT DELAYED rows written."
+msgstr ""
+
+#: server_status.php:48
+msgid "The number of executed FLUSH statements."
+msgstr ""
+
+#: server_status.php:49
+msgid "The number of internal COMMIT statements."
+msgstr ""
+
+#: server_status.php:50
+msgid "The number of times a row was deleted from a table."
+msgstr ""
+
+#: server_status.php:51
+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 ""
+
+#: server_status.php:52
+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 ""
+
+#: server_status.php:53
+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 ""
+
+#: server_status.php:54
+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 ""
+
+#: server_status.php:55
+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 ""
+
+#: server_status.php:56
+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 "
+"probably have a lot of queries that require MySQL to scan whole tables or "
+"you have joins that don't use keys properly."
+msgstr ""
+
+#: server_status.php:57
+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 "
+"tables are not properly indexed or that your queries are not written to take "
+"advantage of the indexes you have."
+msgstr ""
+
+#: server_status.php:58
+msgid "The number of internal ROLLBACK statements."
+msgstr ""
+
+#: server_status.php:59
+msgid "The number of requests to update a row in a table."
+msgstr ""
+
+#: server_status.php:60
+msgid "The number of requests to insert a row in a table."
+msgstr ""
+
+#: server_status.php:61
+msgid "The number of pages containing data (dirty or clean)."
+msgstr ""
+
+#: server_status.php:62
+msgid "The number of pages currently dirty."
+msgstr ""
+
+#: server_status.php:63
+msgid "The number of buffer pool pages that have been requested to be flushed."
+msgstr ""
+
+#: server_status.php:64
+msgid "The number of free pages."
+msgstr ""
+
+#: server_status.php:65
+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 ""
+
+#: server_status.php:66
+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 "
+"be calculated as Innodb_buffer_pool_pages_total - "
+"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data."
+msgstr ""
+
+#: server_status.php:67
+msgid "Total size of buffer pool, in pages."
+msgstr ""
+
+#: server_status.php:68
+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 ""
+
+#: server_status.php:69
+msgid ""
+"The number of sequential read-aheads InnoDB initiated. This happens when "
+"InnoDB does a sequential full table scan."
+msgstr ""
+
+#: server_status.php:70
+msgid "The number of logical read requests InnoDB has done."
+msgstr ""
+
+#: server_status.php:71
+msgid ""
+"The number of logical reads that InnoDB could not satisfy from buffer pool "
+"and had to do a single-page read."
+msgstr ""
+
+#: server_status.php:72
+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 "
+"available, it's necessary to wait for pages to be flushed first. This "
+"counter counts instances of these waits. If the buffer pool size was set "
+"properly, this value should be small."
+msgstr ""
+
+#: server_status.php:73
+msgid "The number writes done to the InnoDB buffer pool."
+msgstr ""
+
+#: server_status.php:74
+msgid "The number of fsync() operations so far."
+msgstr ""
+
+#: server_status.php:75
+msgid "The current number of pending fsync() operations."
+msgstr ""
+
+#: server_status.php:76
+msgid "The current number of pending reads."
+msgstr ""
+
+#: server_status.php:77
+msgid "The current number of pending writes."
+msgstr ""
+
+#: server_status.php:78
+msgid "The amount of data read so far, in bytes."
+msgstr ""
+
+#: server_status.php:79
+msgid "The total number of data reads."
+msgstr ""
+
+#: server_status.php:80
+msgid "The total number of data writes."
+msgstr ""
+
+#: server_status.php:81
+msgid "The amount of data written so far, in bytes."
+msgstr ""
+
+#: server_status.php:82
+msgid "The number of pages that have been written for doublewrite operations."
+msgstr ""
+
+#: server_status.php:83
+msgid "The number of doublewrite operations that have been performed."
+msgstr ""
+
+#: server_status.php:84
+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 ""
+
+#: server_status.php:85
+msgid "The number of log write requests."
+msgstr ""
+
+#: server_status.php:86
+msgid "The number of physical writes to the log file."
+msgstr ""
+
+#: server_status.php:87
+msgid "The number of fsync() writes done to the log file."
+msgstr ""
+
+#: server_status.php:88
+msgid "The number of pending log file fsyncs."
+msgstr ""
+
+#: server_status.php:89
+msgid "Pending log file writes."
+msgstr ""
+
+#: server_status.php:90
+msgid "The number of bytes written to the log file."
+msgstr ""
+
+#: server_status.php:91
+msgid "The number of pages created."
+msgstr ""
+
+#: server_status.php:92
+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 ""
+
+#: server_status.php:93
+msgid "The number of pages read."
+msgstr ""
+
+#: server_status.php:94
+msgid "The number of pages written."
+msgstr ""
+
+#: server_status.php:95
+msgid "The number of row locks currently being waited for."
+msgstr ""
+
+#: server_status.php:96
+msgid "The average time to acquire a row lock, in milliseconds."
+msgstr ""
+
+#: server_status.php:97
+msgid "The total time spent in acquiring row locks, in milliseconds."
+msgstr ""
+
+#: server_status.php:98
+msgid "The maximum time to acquire a row lock, in milliseconds."
+msgstr ""
+
+#: server_status.php:99
+msgid "The number of times a row lock had to be waited for."
+msgstr ""
+
+#: server_status.php:100
+msgid "The number of rows deleted from InnoDB tables."
+msgstr ""
+
+#: server_status.php:101
+msgid "The number of rows inserted in InnoDB tables."
+msgstr ""
+
+#: server_status.php:102
+msgid "The number of rows read from InnoDB tables."
+msgstr ""
+
+#: server_status.php:103
+msgid "The number of rows updated in InnoDB tables."
+msgstr ""
+
+#: server_status.php:104
+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 ""
+
+#: server_status.php:105
+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 ""
+
+#: server_status.php:106
+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 ""
+
+#: server_status.php:107
+msgid "The number of requests to read a key block from the cache."
+msgstr ""
+
+#: server_status.php:108
+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 ""
+
+#: server_status.php:109
+msgid "The number of requests to write a key block to the cache."
+msgstr ""
+
+#: server_status.php:110
+msgid "The number of physical writes of a key block to disk."
+msgstr ""
+
+#: server_status.php:111
+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 ""
+
+#: server_status.php:112
+msgid "The number of rows waiting to be written in INSERT DELAYED queues."
+msgstr ""
+
+#: server_status.php:113
+msgid ""
+"The number of tables that have been opened. If opened tables is big, your "
+"table cache value is probably too small."
+msgstr ""
+
+#: server_status.php:114
+msgid "The number of files that are open."
+msgstr ""
+
+#: server_status.php:115
+msgid "The number of streams that are open (used mainly for logging)."
+msgstr ""
+
+#: server_status.php:116
+msgid "The number of tables that are open."
+msgstr ""
+
+#: server_status.php:117
+msgid "The number of free memory blocks in query cache."
+msgstr ""
+
+#: server_status.php:118
+msgid "The amount of free memory for query cache."
+msgstr ""
+
+#: server_status.php:119
+msgid "The number of cache hits."
+msgstr ""
+
+#: server_status.php:120
+msgid "The number of queries added to the cache."
+msgstr ""
+
+#: server_status.php:121
+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 "
+"cache size. The query cache uses a least recently used (LRU) strategy to "
+"decide which queries to remove from the cache."
+msgstr ""
+
+#: server_status.php:122
+msgid ""
+"The number of non-cached queries (not cachable, or not cached due to the "
+"query_cache_type setting)."
+msgstr ""
+
+#: server_status.php:123
+msgid "The number of queries registered in the cache."
+msgstr ""
+
+#: server_status.php:124
+msgid "The total number of blocks in the query cache."
+msgstr ""
+
+#: server_status.php:125
+#, fuzzy
+msgctxt "$strShowStatusReset"
+msgid "Reset"
+msgstr "Limpa"
+
+#: server_status.php:126
+msgid "The status of failsafe replication (not yet implemented)."
+msgstr ""
+
+#: server_status.php:127
+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 ""
+
+#: server_status.php:128
+msgid "The number of joins that used a range search on a reference table."
+msgstr ""
+
+#: server_status.php:129
+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 ""
+
+#: server_status.php:130
+msgid ""
+"The number of joins that used ranges on the first table. (It's normally not "
+"critical even if this is big.)"
+msgstr ""
+
+#: server_status.php:131
+msgid "The number of joins that did a full scan of the first table."
+msgstr ""
+
+#: server_status.php:132
+msgid "The number of temporary tables currently open by the slave SQL thread."
+msgstr ""
+
+#: server_status.php:133
+msgid ""
+"Total (since startup) number of times the replication slave SQL thread has "
+"retried transactions."
+msgstr ""
+
+#: server_status.php:134
+msgid "This is ON if this server is a slave that is connected to a master."
+msgstr ""
+
+#: server_status.php:135
+msgid ""
+"The number of threads that have taken more than slow_launch_time seconds to "
+"create."
+msgstr ""
+
+#: server_status.php:136
+msgid ""
+"The number of queries that have taken more than long_query_time seconds."
+msgstr ""
+
+#: server_status.php:137
+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 ""
+
+#: server_status.php:138
+msgid "The number of sorts that were done with ranges."
+msgstr ""
+
+#: server_status.php:139
+msgid "The number of sorted rows."
+msgstr ""
+
+#: server_status.php:140
+msgid "The number of sorts that were done by scanning the table."
+msgstr ""
+
+#: server_status.php:141
+msgid "The number of times that a table lock was acquired immediately."
+msgstr ""
+
+#: server_status.php:142
+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 "
+"should first optimize your queries, and then either split your table or "
+"tables or use replication."
+msgstr ""
+
+#: server_status.php:143
+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 ""
+
+#: server_status.php:144
+msgid "The number of currently open connections."
+msgstr ""
+
+#: server_status.php:145
+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 "
+"doesn't give a notable performance improvement if you have a good thread "
+"implementation.)"
+msgstr ""
+
+#: server_status.php:146
+msgid "The number of threads that are not sleeping."
+msgstr ""
+
+#: server_status.php:157
msgid "Runtime Information"
msgstr "Informação de Runtime"
-#: server_status.php:250
+#: server_status.php:361
msgid "Handler"
msgstr ""
-#: server_status.php:251
+#: server_status.php:362
#, fuzzy
msgid "Query cache"
msgstr "Tipo de Query"
-#: server_status.php:252
+#: server_status.php:363
msgid "Threads"
msgstr ""
-#: server_status.php:254
+#: server_status.php:365
msgid "Temporary data"
msgstr ""
-#: server_status.php:255
+#: server_status.php:366
#, fuzzy
msgid "Delayed inserts"
msgstr "Instrucções de inserção múltiplas"
-#: server_status.php:256
+#: server_status.php:367
#, fuzzy
msgid "Key cache"
msgstr "Tipo de Query"
-#: server_status.php:257
+#: server_status.php:368
msgid "Joins"
msgstr ""
-#: server_status.php:259
+#: server_status.php:370
msgid "Sorting"
msgstr ""
-#: server_status.php:261
+#: server_status.php:372
msgid "Transaction coordinator"
msgstr ""
-#: server_status.php:271
+#: server_status.php:382
msgid "Flush (close) all tables"
msgstr ""
-#: server_status.php:273
+#: server_status.php:384
#, fuzzy
msgid "Show open tables"
msgstr "Mostra tabelas"
-#: server_status.php:278
+#: server_status.php:389
msgid "Show slave hosts"
msgstr ""
-#: server_status.php:284
+#: server_status.php:395
msgid "Show slave status"
msgstr ""
-#: server_status.php:289
+#: server_status.php:400
msgid "Flush query cache"
msgstr ""
-#: server_status.php:294
+#: server_status.php:405
msgid "Show processes"
msgstr "Mostra os Processos"
-#: server_status.php:344
+#: server_status.php:455
#, fuzzy
#| msgid "Reset"
msgctxt "for Show status"
msgid "Reset"
msgstr "Limpa"
-#: server_status.php:350
+#: server_status.php:461
#, php-format
msgid "This MySQL server has been running for %s. It started up on %s."
msgstr "Este servidor de mySQL estar a correr há %s. Foi iniciado em/a %s."
-#: server_status.php:360
+#: server_status.php:471
msgid ""
"This MySQL server works as master and slave in replication"
"b> process."
msgstr ""
-#: server_status.php:362
+#: server_status.php:473
msgid "This MySQL server works as master in replication process."
msgstr ""
-#: server_status.php:364
+#: server_status.php:475
msgid "This MySQL server works as slave in replication process."
msgstr ""
-#: server_status.php:366
+#: server_status.php:477
msgid ""
"For further information about replication status on the server, please visit "
"the replication section."
msgstr ""
-#: server_status.php:383
+#: server_status.php:494
msgid ""
"Server traffic: These tables show the network traffic statistics of "
"this MySQL server since its startup."
@@ -5710,46 +5719,46 @@ msgstr ""
"Server traffic: These tables show the network traffic statistics of "
"this MySQL server since its startup."
-#: server_status.php:388
+#: server_status.php:499
msgid "Traffic"
msgstr "Tráfego"
-#: server_status.php:388
+#: server_status.php:499
msgid ""
"On a busy server, the byte counters may overrun, so those statistics as "
"reported by the MySQL server may be incorrect."
msgstr ""
-#: server_status.php:389 server_status.php:434 server_status.php:497
-#: server_status.php:555
+#: server_status.php:500 server_status.php:545 server_status.php:608
+#: server_status.php:666
msgid "per hour"
msgstr "por hora"
-#: server_status.php:394
+#: server_status.php:505
msgid "Received"
msgstr "Recebido"
-#: server_status.php:404
+#: server_status.php:515
msgid "Sent"
msgstr "Enviado"
-#: server_status.php:433
+#: server_status.php:544
msgid "Connections"
msgstr "Ligações"
-#: server_status.php:440
+#: server_status.php:551
msgid "max. concurrent connections"
msgstr ""
-#: server_status.php:447
+#: server_status.php:558
msgid "Failed attempts"
msgstr "Tentativas falhadas"
-#: server_status.php:461
+#: server_status.php:572
msgid "Aborted"
msgstr "Abortado"
-#: server_status.php:490
+#: server_status.php:601
#, php-format
msgid ""
"Query statistics: Since its startup, %s queries have been sent to the "
@@ -5758,19 +5767,19 @@ msgstr ""
"Query statistics: Since its startup, %s queries have been sent to the "
"server."
-#: server_status.php:498
+#: server_status.php:609
msgid "per minute"
msgstr "por minuto"
-#: server_status.php:499
+#: server_status.php:610
msgid "per second"
msgstr "por segundo"
-#: server_status.php:554
+#: server_status.php:665
msgid "Query type"
msgstr "Tipo de Query"
-#: server_status.php:721
+#: server_status.php:832
#, fuzzy
msgid "Replication status"
msgstr "Relações"
diff --git a/po/pt_BR.po b/po/pt_BR.po
index 549d1003d..3a9d18580 100755
--- a/po/pt_BR.po
+++ b/po/pt_BR.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-06-04 16:07-0400\n"
+"POT-Creation-Date: 2010-06-08 12:32-0400\n"
"PO-Revision-Date: 2010-03-21 05:17+0200\n"
"Last-Translator: Maurício Meneghini Fauth \n"
"Language-Team: brazilian_portuguese \n"
@@ -15,11 +15,11 @@ msgstr ""
"X-Generator: Pootle 2.0.1\n"
#: browse_foreigners.php:38 browse_foreigners.php:59
-#: libraries/display_tbl.lib.php:417 server_privileges.php:1475
+#: libraries/display_tbl.lib.php:417 server_privileges.php:1514
msgid "Show all"
msgstr "Mostrar todos"
-#: browse_foreigners.php:82 libraries/common.lib.php:2304
+#: browse_foreigners.php:82 libraries/common.lib.php:2313
#: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:394
#: libraries/export/pdf.php:147 pdf_schema.php:283 pdf_schema.php:1123
#: pdf_schema.php:1139
@@ -38,8 +38,8 @@ msgstr ""
#: browse_foreigners.php:150 db_structure.php:79 db_structure.php:80
#: db_structure.php:91 db_structure.php:93 db_structure.php:104
-#: db_structure.php:106 libraries/common.lib.php:2822
-#: libraries/common.lib.php:2829 libraries/db_links.inc.php:75
+#: db_structure.php:106 libraries/common.lib.php:2831
+#: libraries/common.lib.php:2838 libraries/db_links.inc.php:75
#: libraries/tbl_links.inc.php:63
msgid "Search"
msgstr "Procurar"
@@ -49,7 +49,7 @@ msgstr "Procurar"
#: db_structure.php:567 js/messages.php:48 libraries/Config.class.php:1046
#: libraries/Theme_Manager.class.php:311
#: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719
-#: libraries/common.lib.php:1333 libraries/common.lib.php:2279
+#: libraries/common.lib.php:1335 libraries/common.lib.php:2288
#: libraries/display_change_password.lib.php:82
#: libraries/display_create_table.lib.php:63
#: libraries/display_export.lib.php:275 libraries/display_import.lib.php:276
@@ -60,9 +60,9 @@ msgstr "Procurar"
#: libraries/sql_query_form.lib.php:552 libraries/tbl_properties.inc.php:782
#: main.php:128 navigation.php:237 pdf_pages.php:292 pdf_pages.php:328
#: pdf_pages.php:530 pmd_pdf.php:116 server_binlog.php:142
-#: server_privileges.php:625 server_privileges.php:1585
-#: server_privileges.php:1932 server_privileges.php:1979
-#: server_privileges.php:2018 server_replication.php:235
+#: server_privileges.php:664 server_privileges.php:1624
+#: server_privileges.php:1971 server_privileges.php:2018
+#: server_privileges.php:2057 server_replication.php:235
#: server_replication.php:318 server_replication.php:341
#: server_synchronize.php:1209 tbl_change.php:330 tbl_change.php:1174
#: tbl_change.php:1211 tbl_indexes.php:254 tbl_operations.php:265
@@ -80,7 +80,7 @@ msgstr "Nome chave"
#: browse_foreigners.php:169 browse_foreigners.php:171
#: server_collations.php:55 server_collations.php:67 server_engines.php:59
-#: server_status.php:628
+#: server_status.php:739
msgid "Description"
msgstr "Descrição"
@@ -121,7 +121,7 @@ msgstr "Nome das colunas"
#: libraries/db_structure.lib.php:60 libraries/export/htmlword.php:245
#: libraries/export/latex.php:360 libraries/export/odt.php:297
#: libraries/export/texytext.php:234 libraries/tbl_properties.inc.php:100
-#: pdf_schema.php:1263 pdf_schema.php:1284 server_privileges.php:2031
+#: pdf_schema.php:1263 pdf_schema.php:1284 server_privileges.php:2070
#: tbl_change.php:287 tbl_change.php:314 tbl_printview.php:143
#: tbl_printview.php:313 tbl_select.php:136 tbl_structure.php:178
#: tbl_structure.php:659 tbl_tracking.php:274 tbl_tracking.php:321
@@ -165,9 +165,9 @@ msgstr "Comentários"
#: libraries/Index.class.php:386 libraries/export/htmlword.php:322
#: libraries/export/latex.php:430 libraries/export/odt.php:368
#: libraries/export/texytext.php:311 libraries/mult_submits.inc.php:263
-#: pdf_schema.php:1344 server_privileges.php:1529 server_privileges.php:1540
-#: server_privileges.php:1850 server_privileges.php:1855
-#: server_privileges.php:2148 sql.php:132 sql.php:194 tbl_printview.php:229
+#: pdf_schema.php:1344 server_privileges.php:1568 server_privileges.php:1579
+#: server_privileges.php:1889 server_privileges.php:1894
+#: server_privileges.php:2187 sql.php:132 sql.php:194 tbl_printview.php:229
#: tbl_structure.php:350 tbl_tracking.php:337 tbl_tracking.php:342
msgid "No"
msgstr "Não"
@@ -181,9 +181,9 @@ msgstr "Não"
#: libraries/mult_submits.inc.php:101 libraries/mult_submits.inc.php:106
#: libraries/mult_submits.inc.php:111 libraries/mult_submits.inc.php:262
#: libraries/mult_submits.inc.php:273 pdf_schema.php:1344
-#: server_databases.php:64 server_privileges.php:1526
-#: server_privileges.php:1540 server_privileges.php:1850
-#: server_privileges.php:1853 server_privileges.php:2148 sql.php:193
+#: server_databases.php:64 server_privileges.php:1565
+#: server_privileges.php:1579 server_privileges.php:1889
+#: server_privileges.php:1892 server_privileges.php:2187 sql.php:193
#: tbl_printview.php:229 tbl_structure.php:40 tbl_structure.php:350
#: tbl_tracking.php:335 tbl_tracking.php:340
msgid "Yes"
@@ -280,7 +280,7 @@ msgstr "Mudar para o Banco de Dados copiado"
msgid "BLOB Repository"
msgstr ""
-#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1350
+#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1352
#: libraries/server_links.inc.php:49 server_processlist.php:59
#: tbl_tracking.php:596 test/theme.php:101
msgid "Status"
@@ -343,8 +343,8 @@ msgstr "Editar Páginas PDF"
#: db_printview.php:104 db_tracking.php:72 db_tracking.php:157
#: libraries/db_structure.lib.php:46 libraries/export/xml.php:328
-#: libraries/header.inc.php:126 pdf_pages.php:424 server_privileges.php:1626
-#: server_privileges.php:1682 server_privileges.php:1946
+#: libraries/header.inc.php:126 pdf_pages.php:424 server_privileges.php:1665
+#: server_privileges.php:1721 server_privileges.php:1985
#: server_synchronize.php:423 server_synchronize.php:866 tbl_tracking.php:592
#: test/theme.php:75
msgid "Table"
@@ -445,7 +445,7 @@ msgstr "Del"
#: db_qbe.php:370 db_qbe.php:451 db_qbe.php:522 db_qbe.php:553
#: libraries/display_import.lib.php:166 libraries/tbl_properties.inc.php:779
-#: server_privileges.php:258 tbl_change.php:1031 tbl_indexes.php:250
+#: server_privileges.php:297 tbl_change.php:1031 tbl_indexes.php:250
#: tbl_select.php:288
msgid "Or"
msgstr "Ou"
@@ -479,7 +479,7 @@ msgstr "Usar tabelas"
msgid "SQL query on database %s:"
msgstr "Consulta no Banco de Dados %s:"
-#: db_qbe.php:934 libraries/common.lib.php:1223
+#: db_qbe.php:934 libraries/common.lib.php:1225
msgid "Submit Query"
msgstr "Enviar consulta SQL"
@@ -518,7 +518,7 @@ msgstr "%s resultado(s) dentro da tabela %s"
#: db_search.php:267 db_structure.php:77 db_structure.php:78
#: db_structure.php:90 db_structure.php:92 db_structure.php:103
-#: db_structure.php:105 libraries/common.lib.php:2824
+#: db_structure.php:105 libraries/common.lib.php:2833
#: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50
#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:467
msgid "Browse"
@@ -565,26 +565,26 @@ msgstr "Dentro do campo:"
#: db_structure.php:81 db_structure.php:82 db_structure.php:94
#: db_structure.php:95 db_structure.php:107 db_structure.php:108
-#: libraries/common.lib.php:2823 libraries/sql_query_form.lib.php:334
+#: libraries/common.lib.php:2832 libraries/sql_query_form.lib.php:334
#: libraries/sql_query_form.lib.php:337 libraries/tbl_links.inc.php:76
msgid "Insert"
msgstr "Inserir"
#: db_structure.php:83 db_structure.php:96 db_structure.php:109
-#: libraries/common.lib.php:2820 libraries/common.lib.php:2827
+#: libraries/common.lib.php:2829 libraries/common.lib.php:2836
#: libraries/db_links.inc.php:63 libraries/export/htmlword.php:23
#: libraries/export/latex.php:33 libraries/export/latex.php:337
#: libraries/export/odt.php:32 libraries/export/sql.php:60
#: libraries/export/texytext.php:23 libraries/import.lib.php:1104
#: libraries/tbl_links.inc.php:56 pmd_general.php:134
-#: server_privileges.php:554 server_replication.php:315 tbl_tracking.php:269
+#: server_privileges.php:593 server_replication.php:315 tbl_tracking.php:269
msgid "Structure"
msgstr "Estrutura"
#: db_structure.php:84 db_structure.php:85 db_structure.php:97
#: db_structure.php:98 db_structure.php:110 db_structure.php:111
#: db_structure.php:545 db_structure.php:546 db_tracking.php:91
-#: libraries/Index.class.php:483 libraries/common.lib.php:1654
+#: libraries/Index.class.php:483 libraries/common.lib.php:1656
#: libraries/db_links.inc.php:100 libraries/mult_submits.inc.php:36
#: libraries/mult_submits.inc.php:73 libraries/tbl_links.inc.php:127
#: server_databases.php:352 tbl_structure.php:27 tbl_structure.php:151
@@ -594,7 +594,7 @@ msgstr "Eliminar"
#: db_structure.php:86 db_structure.php:87 db_structure.php:99
#: db_structure.php:100 db_structure.php:112 db_structure.php:113
-#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1653
+#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1655
#: libraries/mult_submits.inc.php:39 libraries/tbl_links.inc.php:105
msgid "Empty"
msgstr "Limpar"
@@ -636,7 +636,7 @@ msgstr "Visão"
#: db_structure.php:485 libraries/db_structure.lib.php:49
#: libraries/server_links.inc.php:70 server_replication.php:33
-#: server_replication.php:164 server_status.php:258
+#: server_replication.php:164 server_status.php:369
msgid "Replication"
msgstr "Replicação"
@@ -652,20 +652,20 @@ msgstr "%s é o stored engine padrão neste servidor MySQL."
#: db_structure.php:524 db_structure.php:541 db_structure.php:542
#: libraries/display_tbl.lib.php:2081 libraries/display_tbl.lib.php:2086
#: libraries/mult_submits.inc.php:16 server_databases.php:346
-#: server_databases.php:351 server_privileges.php:1557 tbl_structure.php:455
+#: server_databases.php:351 server_privileges.php:1596 tbl_structure.php:455
#: tbl_structure.php:464
msgid "With selected:"
msgstr "Com marcados:"
#: db_structure.php:527 libraries/display_tbl.lib.php:2076
-#: server_databases.php:348 server_privileges.php:530
-#: server_privileges.php:1560 tbl_structure.php:458
+#: server_databases.php:348 server_privileges.php:569
+#: server_privileges.php:1599 tbl_structure.php:458
msgid "Check All"
msgstr "Marcar todos"
#: db_structure.php:531 libraries/display_tbl.lib.php:2077
#: libraries/replication_gui.lib.php:33 server_databases.php:350
-#: server_privileges.php:533 server_privileges.php:1564 tbl_structure.php:462
+#: server_privileges.php:572 server_privileges.php:1603 tbl_structure.php:462
msgid "Uncheck All"
msgstr "Desmarcar todos"
@@ -703,7 +703,7 @@ msgstr "Analizar tabela"
#: libraries/display_export.lib.php:83 libraries/display_tbl.lib.php:2094
#: libraries/display_tbl.lib.php:2225 libraries/mult_submits.inc.php:62
#: libraries/server_links.inc.php:84 libraries/tbl_links.inc.php:82
-#: pmd_pdf.php:84 pmd_pdf.php:109 server_privileges.php:1341
+#: pmd_pdf.php:84 pmd_pdf.php:109 server_privileges.php:1380
#: setup/frames/menu.inc.php:22 tbl_row_action.php:59
msgid "Export"
msgstr "Exportar"
@@ -722,8 +722,8 @@ msgstr "Verificar tabela"
#: libraries/export/sql.php:342 libraries/export/texytext.php:84
#: libraries/export/xml.php:255 libraries/header.inc.php:106
#: libraries/header_printview.inc.php:58 server_databases.php:169
-#: server_privileges.php:1621 server_privileges.php:1682
-#: server_privileges.php:1940 server_processlist.php:56
+#: server_privileges.php:1660 server_privileges.php:1721
+#: server_privileges.php:1979 server_processlist.php:56
#: server_synchronize.php:1179 server_synchronize.php:1183
#: tbl_tracking.php:591 test/theme.php:65
msgid "Database"
@@ -745,8 +745,8 @@ msgstr ""
#: db_tracking.php:77 libraries/Index.class.php:440
#: libraries/db_structure.lib.php:53 server_databases.php:203
-#: server_privileges.php:1503 server_privileges.php:1686
-#: server_privileges.php:2034 tbl_structure.php:187
+#: server_privileges.php:1542 server_privileges.php:1725
+#: server_privileges.php:2073 tbl_structure.php:187
msgid "Action"
msgstr "Ação"
@@ -954,11 +954,11 @@ msgstr "O nome do servidor está vazio!"
msgid "The user name is empty!"
msgstr "O nome do usuário está em branco!"
-#: js/messages.php:44 server_privileges.php:1197 user_password.php:70
+#: js/messages.php:44 server_privileges.php:1236 user_password.php:70
msgid "The password is empty!"
msgstr "A senhas está em branco!"
-#: js/messages.php:45 server_privileges.php:1195 user_password.php:73
+#: js/messages.php:45 server_privileges.php:1234 user_password.php:73
msgid "The passwords aren't the same!"
msgstr "As senhas não são iguais!"
@@ -1036,8 +1036,8 @@ msgid "Prev"
msgstr "Anterior"
#. l10n: Display text for next month link in calendar
-#: js/messages.php:77 libraries/common.lib.php:2344
-#: libraries/common.lib.php:2347 libraries/display_tbl.lib.php:338
+#: js/messages.php:77 libraries/common.lib.php:2353
+#: libraries/common.lib.php:2356 libraries/display_tbl.lib.php:338
#: server_binlog.php:205 server_binlog.php:207 tbl_printview.php:424
#: tbl_structure.php:801
msgid "Next"
@@ -1113,27 +1113,27 @@ msgid "December"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:97 libraries/common.lib.php:1555
+#: js/messages.php:97 libraries/common.lib.php:1557
msgid "Jan"
msgstr "Jan"
#. l10n: Short month name
-#: js/messages.php:99 libraries/common.lib.php:1557
+#: js/messages.php:99 libraries/common.lib.php:1559
msgid "Feb"
msgstr "Fev"
#. l10n: Short month name
-#: js/messages.php:101 libraries/common.lib.php:1559
+#: js/messages.php:101 libraries/common.lib.php:1561
msgid "Mar"
msgstr "Mar"
#. l10n: Short month name
-#: js/messages.php:103 libraries/common.lib.php:1561
+#: js/messages.php:103 libraries/common.lib.php:1563
msgid "Apr"
msgstr "Abr"
#. l10n: Short month name
-#: js/messages.php:105 libraries/common.lib.php:1563
+#: js/messages.php:105 libraries/common.lib.php:1565
#, fuzzy
#| msgid "May"
msgctxt "Short month name"
@@ -1141,37 +1141,37 @@ msgid "May"
msgstr "Mai"
#. l10n: Short month name
-#: js/messages.php:107 libraries/common.lib.php:1565
+#: js/messages.php:107 libraries/common.lib.php:1567
msgid "Jun"
msgstr "Jun"
#. l10n: Short month name
-#: js/messages.php:109 libraries/common.lib.php:1567
+#: js/messages.php:109 libraries/common.lib.php:1569
msgid "Jul"
msgstr "Jul"
#. l10n: Short month name
-#: js/messages.php:111 libraries/common.lib.php:1569
+#: js/messages.php:111 libraries/common.lib.php:1571
msgid "Aug"
msgstr "Ago"
#. l10n: Short month name
-#: js/messages.php:113 libraries/common.lib.php:1571
+#: js/messages.php:113 libraries/common.lib.php:1573
msgid "Sep"
msgstr "Set"
#. l10n: Short month name
-#: js/messages.php:115 libraries/common.lib.php:1573
+#: js/messages.php:115 libraries/common.lib.php:1575
msgid "Oct"
msgstr "Out"
#. l10n: Short month name
-#: js/messages.php:117 libraries/common.lib.php:1575
+#: js/messages.php:117 libraries/common.lib.php:1577
msgid "Nov"
msgstr "Nov"
#. l10n: Short month name
-#: js/messages.php:119 libraries/common.lib.php:1577
+#: js/messages.php:119 libraries/common.lib.php:1579
msgid "Dec"
msgstr "Dez"
@@ -1212,37 +1212,37 @@ msgid "Saturday"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:132 libraries/common.lib.php:1580
+#: js/messages.php:132 libraries/common.lib.php:1582
msgid "Sun"
msgstr "Dom"
#. l10n: Short week day name
-#: js/messages.php:134 libraries/common.lib.php:1582
+#: js/messages.php:134 libraries/common.lib.php:1584
msgid "Mon"
msgstr "Seg"
#. l10n: Short week day name
-#: js/messages.php:136 libraries/common.lib.php:1584
+#: js/messages.php:136 libraries/common.lib.php:1586
msgid "Tue"
msgstr "Ter"
#. l10n: Short week day name
-#: js/messages.php:138 libraries/common.lib.php:1586
+#: js/messages.php:138 libraries/common.lib.php:1588
msgid "Wed"
msgstr "Qua"
#. l10n: Short week day name
-#: js/messages.php:140 libraries/common.lib.php:1588
+#: js/messages.php:140 libraries/common.lib.php:1590
msgid "Thu"
msgstr "Qui"
#. l10n: Short week day name
-#: js/messages.php:142 libraries/common.lib.php:1590
+#: js/messages.php:142 libraries/common.lib.php:1592
msgid "Fri"
msgstr "Sex"
#. l10n: Short week day name
-#: js/messages.php:144 libraries/common.lib.php:1592
+#: js/messages.php:144 libraries/common.lib.php:1594
msgid "Sat"
msgstr "Sab"
@@ -1389,7 +1389,7 @@ msgid "Comment"
msgstr "Cometário"
#: libraries/Index.class.php:466 libraries/common.lib.php:616
-#: libraries/common.lib.php:1199 libraries/display_tbl.lib.php:1117
+#: libraries/common.lib.php:1201 libraries/display_tbl.lib.php:1117
#: libraries/import.lib.php:1087 libraries/import.lib.php:1111
#: pdf_pages.php:285 setup/frames/index.inc.php:124
#: setup/lib/messages.inc.php:352 tbl_row_action.php:69
@@ -1415,7 +1415,7 @@ msgstr ""
"removida."
#: libraries/List_Database.class.php:431 libraries/server_links.inc.php:41
-#: server_databases.php:88 server_privileges.php:1621
+#: server_databases.php:88 server_privileges.php:1660
#: setup/lib/messages.inc.php:110 test/theme.php:93
msgid "Databases"
msgstr "Banco de Dados"
@@ -1752,7 +1752,7 @@ msgid "Documentation"
msgstr "Documentação"
#: libraries/common.lib.php:595 libraries/header_printview.inc.php:61
-#: server_processlist.php:60 server_status.php:247
+#: server_processlist.php:60 server_status.php:358
msgid "SQL query"
msgstr "consulta SQL"
@@ -1768,130 +1768,130 @@ msgstr "Explicar SQL"
msgid "Skip Explain SQL"
msgstr "Pular Explicação SQL"
-#: libraries/common.lib.php:1212
+#: libraries/common.lib.php:1214
msgid "Without PHP Code"
msgstr "sem código PHP"
-#: libraries/common.lib.php:1215 setup/lib/messages.inc.php:355
+#: libraries/common.lib.php:1217 setup/lib/messages.inc.php:355
msgid "Create PHP Code"
msgstr "Criar código PHP"
-#: libraries/common.lib.php:1233 server_status.php:341
+#: libraries/common.lib.php:1235 server_status.php:452
#: setup/lib/messages.inc.php:354
msgid "Refresh"
msgstr "Atualizar"
-#: libraries/common.lib.php:1242
+#: libraries/common.lib.php:1244
msgid "Skip Validate SQL"
msgstr "Pular validação SQL"
-#: libraries/common.lib.php:1245 setup/lib/messages.inc.php:356 sql.php:518
+#: libraries/common.lib.php:1247 setup/lib/messages.inc.php:356 sql.php:518
msgid "Validate SQL"
msgstr "Validar SQL"
-#: libraries/common.lib.php:1276
+#: libraries/common.lib.php:1278
msgid "Inline edit of this query"
msgstr ""
-#: libraries/common.lib.php:1278
+#: libraries/common.lib.php:1280
#, fuzzy
#| msgid "Engines"
msgid "Inline"
msgstr "Engines"
-#: libraries/common.lib.php:1332 libraries/common.lib.php:1347
+#: libraries/common.lib.php:1334 libraries/common.lib.php:1349
msgid "Profiling"
msgstr "Perfil"
-#: libraries/common.lib.php:1351 libraries/tbl_triggers.lib.php:28
+#: libraries/common.lib.php:1353 libraries/tbl_triggers.lib.php:28
#: server_processlist.php:58
msgid "Time"
msgstr "Tempo"
#. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "B"
msgstr "Bytes"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "KiB"
msgstr "KB"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "MiB"
msgstr "MB"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "GiB"
msgstr "GB"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "TiB"
msgstr "TB"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "PiB"
msgstr "PB"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "EiB"
msgstr "EB"
#. l10n: Thousands separator
-#: libraries/common.lib.php:1417
+#: libraries/common.lib.php:1419
msgid ","
msgstr ","
#. l10n: Decimal separator
-#: libraries/common.lib.php:1419
+#: libraries/common.lib.php:1421
msgid "."
msgstr "."
#. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string
-#: libraries/common.lib.php:1596
+#: libraries/common.lib.php:1598
#: libraries/transformations/text_plain__dateformat.inc.php:34
msgid "%B %d, %Y at %I:%M %p"
msgstr "%d/%m/%Y às %Hh%Mmin"
-#: libraries/common.lib.php:1898
+#: libraries/common.lib.php:1907
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "%s dias, %s horas, %s minutos e %s segundos"
-#: libraries/common.lib.php:2313 libraries/common.lib.php:2316
-#: libraries/display_tbl.lib.php:290 server_status.php:608
+#: libraries/common.lib.php:2322 libraries/common.lib.php:2325
+#: libraries/display_tbl.lib.php:290 server_status.php:719
msgid "Begin"
msgstr "Início"
-#: libraries/common.lib.php:2314 libraries/common.lib.php:2317
+#: libraries/common.lib.php:2323 libraries/common.lib.php:2326
#: libraries/display_tbl.lib.php:291 server_binlog.php:168
#: server_binlog.php:170
msgid "Previous"
msgstr "Anterior"
-#: libraries/common.lib.php:2345 libraries/common.lib.php:2348
+#: libraries/common.lib.php:2354 libraries/common.lib.php:2357
#: libraries/display_tbl.lib.php:353
msgid "End"
msgstr "Fim"
-#: libraries/common.lib.php:2421
+#: libraries/common.lib.php:2430
#, php-format
msgid "Jump to database "%s"."
msgstr "Ir para o Banco de Dados "%s"."
-#: libraries/common.lib.php:2441
+#: libraries/common.lib.php:2450
#, 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/common.lib.php:2821 libraries/common.lib.php:2828
+#: libraries/common.lib.php:2830 libraries/common.lib.php:2837
#: libraries/db_links.inc.php:68 libraries/export/sql.php:25
#: libraries/import/sql.php:18 libraries/server_links.inc.php:45
#: libraries/tbl_links.inc.php:60 querywindow.php:99 test/theme.php:97
msgid "SQL"
msgstr "SQL"
-#: libraries/common.lib.php:2830 libraries/db_links.inc.php:104
+#: libraries/common.lib.php:2839 libraries/db_links.inc.php:104
#: libraries/tbl_links.inc.php:95 libraries/tbl_links.inc.php:117
#: view_operations.php:89
msgid "Operations"
@@ -1945,8 +1945,8 @@ msgid "Import"
msgstr "Importar"
#: libraries/db_links.inc.php:111 libraries/server_links.inc.php:66
-#: server_privileges.php:72 server_privileges.php:1683
-#: server_privileges.php:2032 test/theme.php:117
+#: server_privileges.php:111 server_privileges.php:1722
+#: server_privileges.php:2071 test/theme.php:117
msgid "Privileges"
msgstr "Privilégios"
@@ -1994,22 +1994,22 @@ msgid "Change password"
msgstr "Alterar a senha"
#: libraries/display_change_password.lib.php:35
-#: libraries/replication_gui.lib.php:345 server_privileges.php:768
+#: libraries/replication_gui.lib.php:345 server_privileges.php:807
msgid "No Password"
msgstr "Sem senha"
#: libraries/display_change_password.lib.php:41
#: libraries/replication_gui.lib.php:59 libraries/replication_gui.lib.php:60
#: libraries/replication_gui.lib.php:335 libraries/replication_gui.lib.php:339
-#: libraries/replication_gui.lib.php:349 server_privileges.php:757
-#: server_privileges.php:761 server_privileges.php:772
-#: server_privileges.php:1499 server_synchronize.php:1175
+#: libraries/replication_gui.lib.php:349 server_privileges.php:796
+#: server_privileges.php:800 server_privileges.php:811
+#: server_privileges.php:1538 server_synchronize.php:1175
msgid "Password"
msgstr "Senha"
#: libraries/display_change_password.lib.php:46
#: libraries/replication_gui.lib.php:353 libraries/replication_gui.lib.php:356
-#: server_privileges.php:776 server_privileges.php:779
+#: server_privileges.php:815 server_privileges.php:818
msgid "Re-type"
msgstr "Re-digite"
@@ -2024,12 +2024,12 @@ msgid "MySQL 4.0 compatible"
msgstr "Compatível com MySQL 4.0"
#: libraries/display_change_password.lib.php:72
-#: libraries/replication_gui.lib.php:360 server_privileges.php:783
+#: libraries/replication_gui.lib.php:360 server_privileges.php:822
msgid "Generate Password"
msgstr "Gerar Senha"
#: libraries/display_change_password.lib.php:75
-#: libraries/replication_gui.lib.php:363 server_privileges.php:786
+#: libraries/replication_gui.lib.php:363 server_privileges.php:825
msgid "Generate"
msgstr "Gerar"
@@ -2042,8 +2042,8 @@ msgstr "Criar novo Banco de Dados"
msgid "Create"
msgstr "Criar"
-#: libraries/display_create_database.lib.php:40 server_privileges.php:74
-#: server_privileges.php:1388 server_replication.php:35
+#: libraries/display_create_database.lib.php:40 server_privileges.php:113
+#: server_privileges.php:1427 server_replication.php:35
msgid "No Privileges"
msgstr "Sem privilégios"
@@ -2134,7 +2134,7 @@ msgstr "Compressão"
#: libraries/display_export.lib.php:240 libraries/display_import.lib.php:197
#: libraries/display_import.lib.php:210 libraries/display_tbl.lib.php:530
#: libraries/export/sql.php:868 libraries/tbl_properties.inc.php:575
-#: server_privileges.php:1836 server_processlist.php:75
+#: server_privileges.php:1875 server_processlist.php:75
msgid "None"
msgstr "Nenhum"
@@ -2465,7 +2465,7 @@ msgstr ""
msgid "Buffer Pool"
msgstr "Buffer Pool"
-#: libraries/engines/innodb.lib.php:145 server_status.php:306
+#: libraries/engines/innodb.lib.php:145 server_status.php:417
msgid "InnoDB Status"
msgstr "Status do InnoDB"
@@ -2474,8 +2474,8 @@ msgid "Buffer Pool Usage"
msgstr "Uso do Buffer Pool"
#: libraries/engines/innodb.lib.php:194 server_databases.php:137
-#: server_databases.php:305 server_status.php:414 server_status.php:475
-#: server_status.php:496 tbl_printview.php:351 tbl_structure.php:696
+#: server_databases.php:305 server_status.php:525 server_status.php:586
+#: server_status.php:607 tbl_printview.php:351 tbl_structure.php:696
msgid "Total"
msgstr "Total"
@@ -2809,7 +2809,7 @@ msgstr "Microsoft Word 2000"
#: libraries/export/latex.php:201 libraries/export/odt.php:48
#: libraries/export/sql.php:106 libraries/export/sql.php:868
#: libraries/export/texytext.php:27 server_databases.php:127
-#: server_privileges.php:537 server_replication.php:316 tbl_printview.php:317
+#: server_privileges.php:576 server_replication.php:316 tbl_printview.php:317
#: tbl_structure.php:665
msgid "Data"
msgstr "Dados"
@@ -2859,9 +2859,9 @@ msgstr "MIME-type"
#: libraries/export/xml.php:102 libraries/header_printview.inc.php:57
#: libraries/replication_gui.lib.php:63 libraries/replication_gui.lib.php:174
#: libraries/replication_gui.lib.php:269 libraries/replication_gui.lib.php:272
-#: libraries/replication_gui.lib.php:329 server_privileges.php:692
-#: server_privileges.php:695 server_privileges.php:751
-#: server_privileges.php:1498 server_privileges.php:2030
+#: libraries/replication_gui.lib.php:329 server_privileges.php:731
+#: server_privileges.php:734 server_privileges.php:790
+#: server_privileges.php:1537 server_privileges.php:2069
#: server_processlist.php:55 server_synchronize.php:1159
msgid "Host"
msgstr "Servidor"
@@ -3220,867 +3220,6 @@ msgstr "Nenhum"
msgid "Convert to Kana"
msgstr ""
-#. l10n: Text direction, use either ltr or rtl
-#: libraries/messages.inc.php:19
-msgid "ltr"
-msgstr "ltr"
-
-#: libraries/messages.inc.php:21
-msgid "Content of table __TABLE__"
-msgstr "Conteúdo da tabela __TABLE__"
-
-#: libraries/messages.inc.php:22
-msgid "(continued)"
-msgstr "(continuação)"
-
-#: libraries/messages.inc.php:23
-msgid "Structure of table __TABLE__"
-msgstr "Estrutura da tabela __TABLE__"
-
-#: libraries/messages.inc.php:25 server_privileges.php:227
-msgid "Includes all privileges except GRANT."
-msgstr "Incluir todos os privilégios, exceto GRANT."
-
-#: libraries/messages.inc.php:26 server_privileges.php:153
-#: server_privileges.php:476
-msgid "Allows altering the structure of existing tables."
-msgstr "Permitir alterar a estrutura das tabelas existentes."
-
-#: libraries/messages.inc.php:27 server_privileges.php:169
-#: server_privileges.php:482
-msgid "Allows altering and dropping stored routines."
-msgstr "Permitir alterar e apagar stored routines."
-
-#: libraries/messages.inc.php:28 server_privileges.php:145
-#: server_privileges.php:475
-msgid "Allows creating new databases and tables."
-msgstr "Permitir criar novas tabelas e Banco de Dados."
-
-#: libraries/messages.inc.php:29 server_privileges.php:168
-#: server_privileges.php:481
-msgid "Allows creating stored routines."
-msgstr "Permitir criar stored routines."
-
-#: libraries/messages.inc.php:30 server_privileges.php:475
-msgid "Allows creating new tables."
-msgstr "Permitir criar novas tabelas."
-
-#: libraries/messages.inc.php:31 server_privileges.php:156
-#: server_privileges.php:479
-msgid "Allows creating temporary tables."
-msgstr "Permitir criar tabelas temporárias."
-
-#: libraries/messages.inc.php:32 server_privileges.php:170
-#: server_privileges.php:515
-msgid "Allows creating, dropping and renaming user accounts."
-msgstr "Permitir criar, apagar e renomear contas dos usuários."
-
-#: libraries/messages.inc.php:33 server_privileges.php:160
-#: server_privileges.php:164 server_privileges.php:487
-#: server_privileges.php:491
-msgid "Allows creating new views."
-msgstr "Permitir criar novas visões."
-
-#: libraries/messages.inc.php:34 server_privileges.php:144
-#: server_privileges.php:467
-msgid "Allows deleting data."
-msgstr "Permitir apagar dados."
-
-#: libraries/messages.inc.php:35 server_privileges.php:146
-#: server_privileges.php:478
-msgid "Allows dropping databases and tables."
-msgstr "Permitir eliminar Banco de Dados e tabelas."
-
-#: libraries/messages.inc.php:36 server_privileges.php:478
-msgid "Allows dropping tables."
-msgstr "Permitir eliminar tabelas."
-
-#: libraries/messages.inc.php:37 server_privileges.php:161
-#: server_privileges.php:495
-msgid "Allows to set up events for the event scheduler"
-msgstr "Permitir iniciar eventos no cronograma de eventos"
-
-#: libraries/messages.inc.php:38 server_privileges.php:171
-#: server_privileges.php:483
-msgid "Allows executing stored routines."
-msgstr "Permitir executar stored routines."
-
-#: libraries/messages.inc.php:39 server_privileges.php:150
-#: server_privileges.php:470
-msgid "Allows importing data from and exporting data into files."
-msgstr "Permitir importar dados e exportar dados em arquivos."
-
-#: libraries/messages.inc.php:40 server_privileges.php:501
-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/messages.inc.php:41 server_privileges.php:152
-#: server_privileges.php:477
-msgid "Allows creating and dropping indexes."
-msgstr "Permitir criar e eliminar índices."
-
-#: libraries/messages.inc.php:42 server_privileges.php:142
-#: server_privileges.php:403 server_privileges.php:465
-msgid "Allows inserting and replacing data."
-msgstr "Permitir inserir e substituir dados."
-
-#: libraries/messages.inc.php:43 server_privileges.php:157
-#: server_privileges.php:510
-msgid "Allows locking tables for the current thread."
-msgstr "Permitir bloquear tabelas para a processo atual."
-
-#: libraries/messages.inc.php:44 server_privileges.php:607
-#: server_privileges.php:609
-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/messages.inc.php:45 server_privileges.php:595
-#: server_privileges.php:597
-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/messages.inc.php:46 server_privileges.php:601
-#: server_privileges.php:603
-msgid ""
-"Limits the number of commands that change any table or database the user may "
-"execute per hour."
-msgstr ""
-"Limitar o número de comandos que alteram Bancos de Dados ou tabelas que o "
-"usuário pode executar por hora."
-
-#: libraries/messages.inc.php:47 server_privileges.php:613
-#: server_privileges.php:615
-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/messages.inc.php:48 server_privileges.php:149
-#: server_privileges.php:505
-msgid "Allows viewing processes of all users"
-msgstr "Permitir visualizar processos de todos os usuários"
-
-#: libraries/messages.inc.php:49 server_privileges.php:151
-#: server_privileges.php:409 server_privileges.php:511
-msgid "Has no effect in this MySQL version."
-msgstr "Sem efeitos nesta versão do MySQL."
-
-#: libraries/messages.inc.php:50 server_privileges.php:147
-#: server_privileges.php:506
-msgid "Allows reloading server settings and flushing the server's caches."
-msgstr ""
-"Permitir recarregar configurações do servidor e descarregar o cache do "
-"servidor."
-
-#: libraries/messages.inc.php:51 server_privileges.php:159
-#: server_privileges.php:513
-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/messages.inc.php:52 server_privileges.php:158
-#: server_privileges.php:514
-msgid "Needed for the replication slaves."
-msgstr "Precisar dos escravos de replicação."
-
-#: libraries/messages.inc.php:53 server_privileges.php:141
-#: server_privileges.php:400 server_privileges.php:464
-msgid "Allows reading data."
-msgstr "Permitir leitura dos dados."
-
-#: libraries/messages.inc.php:54 server_privileges.php:154
-#: server_privileges.php:508
-msgid "Gives access to the complete list of databases."
-msgstr "Permitir acesso completo à lista de Bancos de Dados."
-
-#: libraries/messages.inc.php:55 server_privileges.php:165
-#: server_privileges.php:167 server_privileges.php:480
-msgid "Allows performing SHOW CREATE VIEW queries."
-msgstr "Permitir executar consultas SHOW CREATE VIEW."
-
-#: libraries/messages.inc.php:56 server_privileges.php:148
-#: server_privileges.php:507
-msgid "Allows shutting down the server."
-msgstr "Permitir desligar o servidor."
-
-#: libraries/messages.inc.php:57 server_privileges.php:155
-#: server_privileges.php:504
-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 ""
-"Permitir conectar, se o numero máximo de conexões for alcançado; Necessário "
-"para muitas operações administrativas, como setar variáveis globais e matar "
-"processos de outros usuários."
-
-#: libraries/messages.inc.php:58 server_privileges.php:162
-#: server_privileges.php:496
-msgid "Allows creating and dropping triggers"
-msgstr "Permitir criar e e largar em cadeia"
-
-#: libraries/messages.inc.php:59 server_privileges.php:143
-#: server_privileges.php:406 server_privileges.php:466
-msgid "Allows changing data."
-msgstr "Permitir modificar dados."
-
-#: libraries/messages.inc.php:60 server_privileges.php:221
-msgid "No privileges."
-msgstr "Sem privilégios."
-
-#: libraries/messages.inc.php:62
-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 ""
-"O número de transações que usaram o cache do log binário temporário mas que "
-"excederam o valor do binlog_cache_size e usaram o arquivo temporário para "
-"armazenar enunciados da transação."
-
-#: libraries/messages.inc.php:63
-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/messages.inc.php:64
-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 "
-"to increase the tmp_table_size value to cause temporary tables to be memory-"
-"based instead of disk-based."
-msgstr ""
-"O número de tabelas temporárias no disco criadas automaticamente pelo "
-"servidor enquanto executava os enunciados. Se Created_tmp_disk_tables é "
-"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/messages.inc.php:65
-msgid "How many temporary files mysqld has created."
-msgstr "Quantos arquivos temporários o MySQL tinha criado."
-
-#: libraries/messages.inc.php:66
-msgid ""
-"The number of in-memory temporary tables created automatically by the server "
-"while executing statements."
-msgstr ""
-"O número de tabelas temporárias na memória criadas automaticamente pelo "
-"servidor enquanto executava os enunciados."
-
-#: libraries/messages.inc.php:67
-msgid ""
-"The number of rows written with INSERT DELAYED for which some error occurred "
-"(probably duplicate key)."
-msgstr ""
-"O número de linhas escritas com INSERT DELAYED para cada erro ocorrido "
-"(provavelmente chave duplicada)."
-
-#: libraries/messages.inc.php:68
-msgid ""
-"The number of INSERT DELAYED handler threads in use. Every different table "
-"on which one uses INSERT DELAYED gets its own thread."
-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/messages.inc.php:69
-msgid "The number of INSERT DELAYED rows written."
-msgstr "O número de linhas INSERT DELAYED escritas."
-
-#: libraries/messages.inc.php:70
-msgid "The number of executed FLUSH statements."
-msgstr "O número de enunciados FLUSH executados."
-
-#: libraries/messages.inc.php:71
-msgid "The number of internal COMMIT statements."
-msgstr "O número de enunciados COMMIT internos."
-
-#: libraries/messages.inc.php:72
-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/messages.inc.php:73
-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 ""
-"O servidor MySQL pode perguntar ao motor de armazenamento do NDB Cluster se "
-"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/messages.inc.php:74
-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 ""
-"O número de vezes que a primeira entrada foi lida de um índice. Se isto for "
-"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/messages.inc.php:75
-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 ""
-"O número de requisições para ler uma linha baseada em uma chave. Se isto for "
-"alto, é uma boa indicação de que suas consultas e tabelas estejam "
-"corretamente indexadas."
-
-#: libraries/messages.inc.php:76
-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 ""
-"O número de requisições para ler a linha seguinte na ordem da chave. Isto é "
-"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/messages.inc.php:77
-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 ""
-"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 B"
-
-#: libraries/messages.inc.php:78
-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 "
-"probably have a lot of queries that require MySQL to scan whole tables or "
-"you have joins that don't use keys properly."
-msgstr ""
-"O número de requisições pra ler uma linha baseada em uma posição fixa. Isto "
-"é alto se você estiver fazendo muitas consultas que requerem a ordenação do "
-"resultado. Você tem provavelmente muitas consultas que requerem que o MySQL "
-"faça a varredura de tabelas inteiras ou você tem junções que não usam as "
-"chaves corretamente."
-
-#: libraries/messages.inc.php:79
-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 "
-"tables are not properly indexed or that your queries are not written to take "
-"advantage of the indexes you have."
-msgstr ""
-"O número de requisições para ler a linha seguinte no arquivo de dados. Isto "
-"é alto se você estiver fazendo muitas varreduras da tabela. Geralmente isto "
-"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/messages.inc.php:80
-msgid "The number of internal ROLLBACK statements."
-msgstr "O número de enunciados ROLLBACK internos."
-
-#: libraries/messages.inc.php:81
-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/messages.inc.php:82
-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/messages.inc.php:83
-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/messages.inc.php:84
-msgid "The number of pages currently dirty."
-msgstr "O número de páginas atualmente sujas."
-
-#: libraries/messages.inc.php:85
-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/messages.inc.php:86
-msgid "The number of free pages."
-msgstr "O número de páginas livres."
-
-#: libraries/messages.inc.php:87
-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 ""
-"O número de páginas trancadas no buffer pool do InnoDB. Estas são páginas "
-"que estão sendo lidas ou escritas atualmente ou aquela não pode ser nivelada "
-"ou removido por alguma outra razão."
-
-#: libraries/messages.inc.php:88
-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 "
-"be calculated as Innodb_buffer_pool_pages_total - "
-"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data."
-msgstr ""
-"O número de páginas ocupadas porque foram alocados para rotinas "
-"administrativas tais como trancamento de linhas ou índice hash adaptável. "
-"Este valor pode também ser calculado como Innodb_buffer_pool_pages_total - "
-"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data."
-
-#: libraries/messages.inc.php:89
-msgid "Total size of buffer pool, in pages."
-msgstr "Tamanho total do buffer pool, em páginas."
-
-#: libraries/messages.inc.php:90
-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 ""
-"O número de ler-adiante \"aleatórios\" InnoDB iniciado. Isto acontece quando "
-"uma consulta faz a varredura de uma parcela grande de uma tabela mas na "
-"ordem aleatória."
-
-#: libraries/messages.inc.php:91
-msgid ""
-"The number of sequential read-aheads InnoDB initiated. This happens when "
-"InnoDB does a sequential full table scan."
-msgstr ""
-"O número de ler-adiante sequenciais InnoDB iniciado. Isto acontece quando o "
-"InnoDB faz uma varredura sequencial completa da tabela."
-
-#: libraries/messages.inc.php:92
-msgid "The number of logical read requests InnoDB has done."
-msgstr "O número de requisições de leitura lógica InnoDB que foram feitas."
-
-#: libraries/messages.inc.php:93
-msgid ""
-"The number of logical reads that InnoDB could not satisfy from buffer pool "
-"and had to do a single-page read."
-msgstr ""
-"O número de leituras lógicas que o InnoDB não pode satisfer do buffer pool e "
-"teria que fazer uma leitura de página simples"
-
-#: libraries/messages.inc.php:94
-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 "
-"available, it's necessary to wait for pages to be flushed first. This "
-"counter counts instances of these waits. If the buffer pool size was set "
-"properly, this value should be small."
-msgstr ""
-"Normalmente, escreve para o buffer pool do InnoDB rodando em segundo plano. "
-"Entretanto, se for necessário ler ou criar uma página e nenhuma página limpa "
-"estiver disponível, é necessário esperar as páginas serem niveladas "
-"primeiramente. Este contador conta instâncias dessas esperas. Se o tamanho "
-"do buffer pool for ajustado corretamente, este valor deve ser pequeno."
-
-#: libraries/messages.inc.php:95
-msgid "The number writes done to the InnoDB buffer pool."
-msgstr "O número de escritas feitas para o buffer pool do InnoDB."
-
-#: libraries/messages.inc.php:96
-msgid "The number of fsync() operations so far."
-msgstr "O número de operações fsync() à fazer."
-
-#: libraries/messages.inc.php:97
-msgid "The current number of pending fsync() operations."
-msgstr "O número atual de operações fsync() pendentes."
-
-#: libraries/messages.inc.php:98
-msgid "The current number of pending reads."
-msgstr "O número atual de leituras pendentes."
-
-#: libraries/messages.inc.php:99
-msgid "The current number of pending writes."
-msgstr "O número atual de escritas pendentes."
-
-#: libraries/messages.inc.php:100
-msgid "The amount of data read so far, in bytes."
-msgstr "O montante de leitura de dados à fazer, em bytes."
-
-#: libraries/messages.inc.php:101
-msgid "The total number of data reads."
-msgstr "O número total de dados lidos."
-
-#: libraries/messages.inc.php:102
-msgid "The total number of data writes."
-msgstr "O número total de dados escritos."
-
-#: libraries/messages.inc.php:103
-msgid "The amount of data written so far, in bytes."
-msgstr "O montante de escrita de dados à fazer, em bytes."
-
-#: libraries/messages.inc.php:104
-msgid "The number of pages that have been written for doublewrite operations."
-msgstr ""
-"O número de escritas doublewrite que foram executadas e o número de páginas "
-"que foram escritas para esta finalidade."
-
-#: libraries/messages.inc.php:105
-msgid "The number of doublewrite operations that have been performed."
-msgstr ""
-"O número de escritas doublewrite que foram executadas e o número de páginas "
-"que foram escritas para esta finalidade."
-
-#: libraries/messages.inc.php:106
-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 ""
-"O número de esperas geradas porque o buffer do log era muito pequeno e teve "
-"que esperar que fosse nivelada antes de continuar."
-
-#: libraries/messages.inc.php:107
-msgid "The number of log write requests."
-msgstr "O número de requisições de escrita de log."
-
-#: libraries/messages.inc.php:108
-msgid "The number of physical writes to the log file."
-msgstr "O número de escritas físicas para o arquivo de log."
-
-#: libraries/messages.inc.php:109
-msgid "The number of fsync() writes done to the log file."
-msgstr "O número de escritas fsyncs feitas no arquivo de log."
-
-#: libraries/messages.inc.php:110
-msgid "The number of pending log file fsyncs."
-msgstr "O número de arquivos de log fsyncs pendentes."
-
-#: libraries/messages.inc.php:111
-msgid "Pending log file writes."
-msgstr "Escrita de arquivos de log pendentes."
-
-#: libraries/messages.inc.php:112
-msgid "The number of bytes written to the log file."
-msgstr "O número de bytes escritos para o arquivo de log."
-
-#: libraries/messages.inc.php:113
-msgid "The number of pages created."
-msgstr "O número de páginas criadas."
-
-#: libraries/messages.inc.php:114
-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 ""
-"O tamanho de página compilada do InnoDB (padrão 16KB). Muitos valores são "
-"contados em páginas; o tamanho de página permite que sejam facilmente "
-"convertidos em bytes."
-
-#: libraries/messages.inc.php:115
-msgid "The number of pages read."
-msgstr "O número de páginas lidas."
-
-#: libraries/messages.inc.php:116
-msgid "The number of pages written."
-msgstr "O número de páginas escritas."
-
-#: libraries/messages.inc.php:117
-msgid "The number of row locks currently being waited for."
-msgstr "O número de linhas trancadas que estão esperando atualmente."
-
-#: libraries/messages.inc.php:118
-msgid "The average time to acquire a row lock, in milliseconds."
-msgstr "O tempo médio para recuperar uma linha trancada, em milísegundo."
-
-#: libraries/messages.inc.php:119
-msgid "The total time spent in acquiring row locks, in milliseconds."
-msgstr "O tempo total gasto para recuperar linhas trancadas, em milísegundo."
-
-#: libraries/messages.inc.php:120
-msgid "The maximum time to acquire a row lock, in milliseconds."
-msgstr "O máximo de tempo para recuperar uma linha trancada, em milísegundo."
-
-#: libraries/messages.inc.php:121
-msgid "The number of times a row lock had to be waited for."
-msgstr ""
-"O número de vezes que uma linhas trancada teve que esperar para ser escrita."
-
-#: libraries/messages.inc.php:122
-msgid "The number of rows deleted from InnoDB tables."
-msgstr "O número de linhas deletadas de tabelas InnoDB."
-
-#: libraries/messages.inc.php:123
-msgid "The number of rows inserted in InnoDB tables."
-msgstr "O número de linhas inseridas em tabelas InnoDB."
-
-#: libraries/messages.inc.php:124
-msgid "The number of rows read from InnoDB tables."
-msgstr "O número de linhas lidas de tabelas InnoDB."
-
-#: libraries/messages.inc.php:125
-msgid "The number of rows updated in InnoDB tables."
-msgstr "O número de linhas atualizadas em tabelas InnoDB."
-
-#: libraries/messages.inc.php:126
-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 ""
-"O número de blocos chave no cache chave que mudaram mas não foram nivelados "
-"ainda ao disco. Antes era chamado de Not_flushed_key_blocks."
-
-#: libraries/messages.inc.php:127
-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 ""
-"O número de blocos não usados no cache chave. Você pode usar este valor para "
-"determinar quanto do cache chave está no uso."
-
-#: libraries/messages.inc.php:128
-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 ""
-"O número de blocos usados no cache chave. Este valor é uma marca d'água que "
-"indica o número máximo de blocos que estiveram sempre em uso em algum "
-"momento."
-
-#: libraries/messages.inc.php:129
-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/messages.inc.php:130
-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 ""
-"O número de leituras físicas de um bloco chave do disco. Se Key_reads for "
-"alto, então seu valor do key_buffer_size é provavelmente muito baixo. A taxa "
-"de falta de cache pode ser calculada como Key_reads/Key_read_requests."
-
-#: libraries/messages.inc.php:131
-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/messages.inc.php:132
-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/messages.inc.php:133
-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 ""
-"O custo total da última consulta compilada como computado pelo otimizador de "
-"consultas. Útil para comparar o custo de diferentes planos de consulta para "
-"a mesma consulta. O valor padrão 0 significa que nenhuma consulta foi "
-"compilada ainda."
-
-#: libraries/messages.inc.php:134
-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/messages.inc.php:135
-msgid ""
-"The number of tables that have been opened. If opened tables is big, your "
-"table cache value is probably too small."
-msgstr ""
-"O número de tabelas que devem estar abertas. Se aberta, as tabelas são "
-"grandes, o valor do cache de suas tabelas é provavelmente muito pequeno."
-
-#: libraries/messages.inc.php:136
-msgid "The number of files that are open."
-msgstr "O número de arquivos que estão abertos."
-
-#: libraries/messages.inc.php:137
-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/messages.inc.php:138
-msgid "The number of tables that are open."
-msgstr "O número de tabelas que estão abertas."
-
-#: libraries/messages.inc.php:139
-msgid "The number of free memory blocks in query cache."
-msgstr "O número de blocos de memória livre na consulta do cache."
-
-#: libraries/messages.inc.php:140
-msgid "The amount of free memory for query cache."
-msgstr "O montante de memória livre para a consulta do cache."
-
-#: libraries/messages.inc.php:141
-msgid "The number of cache hits."
-msgstr "O número de hits do cache."
-
-#: libraries/messages.inc.php:142
-msgid "The number of queries added to the cache."
-msgstr "O número de consultas adicionadas no cache."
-
-#: libraries/messages.inc.php:143
-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 "
-"cache size. The query cache uses a least recently used (LRU) strategy to "
-"decide which queries to remove from the cache."
-msgstr ""
-"O número de consultas que foram removidas do cache para liberar memória para "
-"novas consultas. Essa informação pode ajudar você a ajustar o tamanho da "
-"consulta do cache. A consulta do cache usa a estratégia do \"usado menos "
-"recentemente\" (LRU - least recently used) para decidir qual consulta "
-"remover do cache."
-
-#: libraries/messages.inc.php:144
-msgid ""
-"The number of non-cached queries (not cachable, or not cached due to the "
-"query_cache_type setting)."
-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/messages.inc.php:145
-msgid "The number of queries registered in the cache."
-msgstr "O número de consultas registradas no cache."
-
-#: libraries/messages.inc.php:146
-msgid "The total number of blocks in the query cache."
-msgstr "O número total de blocos na consulta do cache."
-
-#: libraries/messages.inc.php:147
-msgctxt "$strShowStatusReset"
-msgid "Reset"
-msgstr "Resetar"
-
-#: libraries/messages.inc.php:148
-msgid "The status of failsafe replication (not yet implemented)."
-msgstr "O status da replicação à prova de falhas (não implementado)."
-
-#: libraries/messages.inc.php:149
-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 ""
-"O número de junções que não usaram índices. Se este valor não for 0, você "
-"deve cuidadosamente verificar os índices de suas tabelas."
-
-#: libraries/messages.inc.php:150
-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 na tabela de "
-"referência."
-
-#: libraries/messages.inc.php:151
-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 ""
-"O número de junções sem chaves que verificam para ver se há o uso da chave "
-"após cada linha. (Se este não for 0, você deve cuidadosamente verificar os "
-"índices de suas tabelas.)"
-
-#: libraries/messages.inc.php:152
-msgid ""
-"The number of joins that used ranges on the first table. (It's normally not "
-"critical even if this is big.)"
-msgstr ""
-"O número de junções que usaram escalas na primeira tabela. (Não é "
-"normalmente crítico mesmo se este for grande.)"
-
-#: libraries/messages.inc.php:153
-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/messages.inc.php:154
-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/messages.inc.php:155
-msgid ""
-"Total (since startup) number of times the replication slave SQL thread has "
-"retried transactions."
-msgstr ""
-"Número total (desde o início) de vezes que o processo SQL escravo de "
-"replicação teve que tentar transações."
-
-#: libraries/messages.inc.php:156
-msgid "This is ON if this server is a slave that is connected to a master."
-msgstr "Isto é ON se este servidor é um escravo conectado à um mestre."
-
-#: libraries/messages.inc.php:157
-msgid ""
-"The number of threads that have taken more than slow_launch_time seconds to "
-"create."
-msgstr ""
-"O número de processos que levaram mais que slow_launch_time segundos para "
-"serem criadas."
-
-#: libraries/messages.inc.php:158
-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/messages.inc.php:159
-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 ""
-"O número de fusões que o algoritmo de ordenação teve que fazer. Se este "
-"valor for alto, você deve considerar aumentar o valor da variável "
-"sort_buffer_size do sistema."
-
-#: libraries/messages.inc.php:160
-msgid "The number of sorts that were done with ranges."
-msgstr "O número de ordenações que foram feitas com escalas."
-
-#: libraries/messages.inc.php:161
-msgid "The number of sorted rows."
-msgstr "O número de linhas ordenadas."
-
-#: libraries/messages.inc.php:162
-msgid "The number of sorts that were done by scanning the table."
-msgstr "O número de ordenações que foram feitas scaneando a tabela."
-
-#: libraries/messages.inc.php:163
-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/messages.inc.php:164
-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 "
-"should first optimize your queries, and then either split your table or "
-"tables or use replication."
-msgstr ""
-"O número de vezes que uma tabela trancada não foi recuperada imediatamente e "
-"uma espera foi necessária. Se isso foi alto e você tem problemas de "
-"performance, você precisa primeiramente otimizar suas consultas e então, ou "
-"dividir sua tabela ou usar replicação."
-
-#: libraries/messages.inc.php:165
-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 ""
-"O número de processos no cache de processos. A taxa de hits do cache pode "
-"ser calculada como Threads_created/conexões. Se este valor for vermelho você "
-"deve aumentar seu thread_cache_size"
-
-#: libraries/messages.inc.php:166
-msgid "The number of currently open connections."
-msgstr "O número de conexões atualmente abertas."
-
-#: libraries/messages.inc.php:167
-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 "
-"doesn't give a notable performance improvement if you have a good thread "
-"implementation.)"
-msgstr ""
-"O número de processos criadas para manipular conexões. Se Threads_created é "
-"grande, você deveria aumentar o valor de thread_cache_size. (Normalmente "
-"isso não da um aumento notável de performance se você tem uma boa "
-"implementação de processos.)"
-
-#: libraries/messages.inc.php:168
-msgid "The number of threads that are not sleeping."
-msgstr "O número de processos que não estão dormindo."
-
#: libraries/mult_submits.inc.php:76 libraries/tbl_properties.inc.php:513
#: tbl_structure.php:29 tbl_structure.php:153 tbl_structure.php:157
#: tbl_structure.php:473
@@ -4398,8 +3537,8 @@ msgstr ""
#: libraries/replication_gui.lib.php:55 libraries/replication_gui.lib.php:56
#: libraries/replication_gui.lib.php:249 libraries/replication_gui.lib.php:252
-#: libraries/replication_gui.lib.php:259 server_privileges.php:672
-#: server_privileges.php:675 server_privileges.php:682
+#: libraries/replication_gui.lib.php:259 server_privileges.php:711
+#: server_privileges.php:714 server_privileges.php:721
#: server_synchronize.php:1171
msgid "User name"
msgstr "Nome do usuário"
@@ -4419,11 +3558,11 @@ msgid "Slave status"
msgstr "Exibir status dos escravos"
#: libraries/replication_gui.lib.php:114 libraries/sql_query_form.lib.php:445
-#: server_status.php:626 server_variables.php:52
+#: server_status.php:737 server_variables.php:52
msgid "Variable"
msgstr "Variáveis"
-#: libraries/replication_gui.lib.php:115 server_status.php:627
+#: libraries/replication_gui.lib.php:115 server_status.php:738
#: tbl_change.php:324 tbl_printview.php:370 tbl_select.php:139
#: tbl_structure.php:729
msgid "Value"
@@ -4443,41 +3582,58 @@ msgstr ""
msgid "Add slave replication user"
msgstr ""
-#: libraries/replication_gui.lib.php:254 server_privileges.php:677
+#: libraries/replication_gui.lib.php:254 server_privileges.php:716
msgid "Any user"
msgstr "Qualquer usuário"
#: libraries/replication_gui.lib.php:255 libraries/replication_gui.lib.php:323
-#: libraries/replication_gui.lib.php:346 server_privileges.php:678
-#: server_privileges.php:745 server_privileges.php:769
-#: server_privileges.php:1889 server_privileges.php:1919
+#: libraries/replication_gui.lib.php:346 server_privileges.php:717
+#: server_privileges.php:784 server_privileges.php:808
+#: server_privileges.php:1928 server_privileges.php:1958
msgid "Use text field"
msgstr "Usar campo texto"
-#: libraries/replication_gui.lib.php:302 server_privileges.php:725
+#: libraries/replication_gui.lib.php:302 server_privileges.php:764
msgid "Any host"
msgstr "Qualquer servidor"
-#: libraries/replication_gui.lib.php:306 server_privileges.php:729
+#: libraries/replication_gui.lib.php:306 server_privileges.php:768
msgid "Local"
msgstr "Local"
-#: libraries/replication_gui.lib.php:312 server_privileges.php:734
+#: libraries/replication_gui.lib.php:312 server_privileges.php:773
msgid "This Host"
msgstr "Esse Servidor"
-#: libraries/replication_gui.lib.php:318 server_privileges.php:740
+#: libraries/replication_gui.lib.php:318 server_privileges.php:779
msgid "Use Host Table"
msgstr "Usar Tabela do Servidor"
-#: libraries/replication_gui.lib.php:331 server_privileges.php:753
+#: libraries/replication_gui.lib.php:331 server_privileges.php:792
msgid ""
"When Host table is used, this field is ignored and values stored in Host "
"table are used instead."
msgstr ""
-#: libraries/select_lang.lib.php:480 libraries/select_lang.lib.php:486
-#: libraries/select_lang.lib.php:492
+#. l10n: Text direction, use either ltr or rtl
+#: libraries/select_lang.lib.php:491
+msgid "ltr"
+msgstr "ltr"
+
+#: libraries/select_lang.lib.php:493
+msgid "Content of table __TABLE__"
+msgstr "Conteúdo da tabela __TABLE__"
+
+#: libraries/select_lang.lib.php:494
+msgid "(continued)"
+msgstr "(continuação)"
+
+#: libraries/select_lang.lib.php:495
+msgid "Structure of table __TABLE__"
+msgstr "Estrutura da tabela __TABLE__"
+
+#: libraries/select_lang.lib.php:500 libraries/select_lang.lib.php:506
+#: libraries/select_lang.lib.php:512
#, php-format
msgid "Unknown language: %1$s."
msgstr "Linguagem desconhecida: %1$s."
@@ -4488,7 +3644,7 @@ msgid "Servers"
msgstr "Servidores"
#: libraries/server_links.inc.php:53 server_engines.php:112
-#: server_engines.php:116 server_status.php:304 test/theme.php:105
+#: server_engines.php:116 server_status.php:415 test/theme.php:105
msgid "Variables"
msgstr "Variáveis"
@@ -4501,7 +3657,7 @@ msgid "Engines"
msgstr "Engines"
#: libraries/server_links.inc.php:76 server_binlog.php:110
-#: server_status.php:253 test/theme.php:121
+#: server_status.php:364 test/theme.php:121
msgid "Binary log"
msgstr "Log binário"
@@ -4979,8 +4135,8 @@ msgstr "Restaurar"
msgid "Protocol version"
msgstr "Versão do Protocolo"
-#: main.php:189 server_privileges.php:1350 server_privileges.php:1497
-#: server_privileges.php:1611 server_privileges.php:2029
+#: main.php:189 server_privileges.php:1389 server_privileges.php:1536
+#: server_privileges.php:1650 server_privileges.php:2068
#: server_processlist.php:54
msgid "User"
msgstr "Usuário"
@@ -5368,7 +4524,7 @@ msgstr "Banco de Dados %s foi eliminado com sucesso!"
msgid "Databases statistics"
msgstr "Estatísticas do Banco de Dados"
-#: server_databases.php:117 server_status.php:260
+#: server_databases.php:117 server_status.php:371
#: setup/lib/messages.inc.php:117
msgid "Tables"
msgstr "Tabelas"
@@ -5387,6 +4543,16 @@ msgstr ""
msgid "Jump to database"
msgstr "Sem bases"
+#: server_databases.php:267
+msgid "Not replicated"
+msgstr ""
+
+#: server_databases.php:273
+#, fuzzy
+#| msgid "Replication"
+msgid "Replicated"
+msgstr "Replicação"
+
#: server_databases.php:289
#, php-format
msgid "Check privileges for database "%s"."
@@ -5420,142 +4586,334 @@ msgstr "Storage Engines"
msgid "View dump (schema) of databases"
msgstr "Ver dump (esquema) dos Bancos de Dados"
-#: server_privileges.php:263 server_privileges.php:264
+#: server_privileges.php:24 server_privileges.php:266
+msgid "Includes all privileges except GRANT."
+msgstr "Incluir todos os privilégios, exceto GRANT."
+
+#: server_privileges.php:25 server_privileges.php:192
+#: server_privileges.php:515
+msgid "Allows altering the structure of existing tables."
+msgstr "Permitir alterar a estrutura das tabelas existentes."
+
+#: server_privileges.php:26 server_privileges.php:208
+#: server_privileges.php:521
+msgid "Allows altering and dropping stored routines."
+msgstr "Permitir alterar e apagar stored routines."
+
+#: server_privileges.php:27 server_privileges.php:184
+#: server_privileges.php:514
+msgid "Allows creating new databases and tables."
+msgstr "Permitir criar novas tabelas e Banco de Dados."
+
+#: server_privileges.php:28 server_privileges.php:207
+#: server_privileges.php:520
+msgid "Allows creating stored routines."
+msgstr "Permitir criar stored routines."
+
+#: server_privileges.php:29 server_privileges.php:514
+msgid "Allows creating new tables."
+msgstr "Permitir criar novas tabelas."
+
+#: server_privileges.php:30 server_privileges.php:195
+#: server_privileges.php:518
+msgid "Allows creating temporary tables."
+msgstr "Permitir criar tabelas temporárias."
+
+#: server_privileges.php:31 server_privileges.php:209
+#: server_privileges.php:554
+msgid "Allows creating, dropping and renaming user accounts."
+msgstr "Permitir criar, apagar e renomear contas dos usuários."
+
+#: server_privileges.php:32 server_privileges.php:199
+#: server_privileges.php:203 server_privileges.php:526
+#: server_privileges.php:530
+msgid "Allows creating new views."
+msgstr "Permitir criar novas visões."
+
+#: server_privileges.php:33 server_privileges.php:183
+#: server_privileges.php:506
+msgid "Allows deleting data."
+msgstr "Permitir apagar dados."
+
+#: server_privileges.php:34 server_privileges.php:185
+#: server_privileges.php:517
+msgid "Allows dropping databases and tables."
+msgstr "Permitir eliminar Banco de Dados e tabelas."
+
+#: server_privileges.php:35 server_privileges.php:517
+msgid "Allows dropping tables."
+msgstr "Permitir eliminar tabelas."
+
+#: server_privileges.php:36 server_privileges.php:200
+#: server_privileges.php:534
+msgid "Allows to set up events for the event scheduler"
+msgstr "Permitir iniciar eventos no cronograma de eventos"
+
+#: server_privileges.php:37 server_privileges.php:210
+#: server_privileges.php:522
+msgid "Allows executing stored routines."
+msgstr "Permitir executar stored routines."
+
+#: server_privileges.php:38 server_privileges.php:189
+#: server_privileges.php:509
+msgid "Allows importing data from and exporting data into files."
+msgstr "Permitir importar dados e exportar dados em arquivos."
+
+#: server_privileges.php:39 server_privileges.php:540
+msgid ""
+"Allows adding users and privileges without reloading the privilege tables."
+msgstr ""
+"Permitir adicionar usuários e privilégios sem recarregar a tabela de "
+"privilégios."
+
+#: server_privileges.php:40 server_privileges.php:191
+#: server_privileges.php:516
+msgid "Allows creating and dropping indexes."
+msgstr "Permitir criar e eliminar índices."
+
+#: server_privileges.php:41 server_privileges.php:181
+#: server_privileges.php:442 server_privileges.php:504
+msgid "Allows inserting and replacing data."
+msgstr "Permitir inserir e substituir dados."
+
+#: server_privileges.php:42 server_privileges.php:196
+#: server_privileges.php:549
+msgid "Allows locking tables for the current thread."
+msgstr "Permitir bloquear tabelas para a processo atual."
+
+#: server_privileges.php:43 server_privileges.php:646
+#: server_privileges.php:648
+msgid "Limits the number of new connections the user may open per hour."
+msgstr "Limitar o numero de novas conexões que o usuário pode abrir por hora."
+
+#: server_privileges.php:44 server_privileges.php:634
+#: server_privileges.php:636
+msgid "Limits the number of queries the user may send to the server per hour."
+msgstr ""
+"Limitar o número de consultas que podem ser enviadas ao servidor por hora."
+
+#: server_privileges.php:45 server_privileges.php:640
+#: server_privileges.php:642
+msgid ""
+"Limits the number of commands that change any table or database the user may "
+"execute per hour."
+msgstr ""
+"Limitar o número de comandos que alteram Bancos de Dados ou tabelas que o "
+"usuário pode executar por hora."
+
+#: server_privileges.php:46 server_privileges.php:652
+#: server_privileges.php:654
+msgid "Limits the number of simultaneous connections the user may have."
+msgstr "Limitar o número de conexões simultâneas que o usuário pode ter."
+
+#: server_privileges.php:47 server_privileges.php:188
+#: server_privileges.php:544
+msgid "Allows viewing processes of all users"
+msgstr "Permitir visualizar processos de todos os usuários"
+
+#: server_privileges.php:48 server_privileges.php:190
+#: server_privileges.php:448 server_privileges.php:550
+msgid "Has no effect in this MySQL version."
+msgstr "Sem efeitos nesta versão do MySQL."
+
+#: server_privileges.php:49 server_privileges.php:186
+#: server_privileges.php:545
+msgid "Allows reloading server settings and flushing the server's caches."
+msgstr ""
+"Permitir recarregar configurações do servidor e descarregar o cache do "
+"servidor."
+
+#: server_privileges.php:50 server_privileges.php:198
+#: server_privileges.php:552
+msgid "Allows the user to ask where the slaves / masters are."
+msgstr "Permitir que o usuário pergunte onde estão os escravos / mestres."
+
+#: server_privileges.php:51 server_privileges.php:197
+#: server_privileges.php:553
+msgid "Needed for the replication slaves."
+msgstr "Precisar dos escravos de replicação."
+
+#: server_privileges.php:52 server_privileges.php:180
+#: server_privileges.php:439 server_privileges.php:503
+msgid "Allows reading data."
+msgstr "Permitir leitura dos dados."
+
+#: server_privileges.php:53 server_privileges.php:193
+#: server_privileges.php:547
+msgid "Gives access to the complete list of databases."
+msgstr "Permitir acesso completo à lista de Bancos de Dados."
+
+#: server_privileges.php:54 server_privileges.php:204
+#: server_privileges.php:206 server_privileges.php:519
+msgid "Allows performing SHOW CREATE VIEW queries."
+msgstr "Permitir executar consultas SHOW CREATE VIEW."
+
+#: server_privileges.php:55 server_privileges.php:187
+#: server_privileges.php:546
+msgid "Allows shutting down the server."
+msgstr "Permitir desligar o servidor."
+
+#: server_privileges.php:56 server_privileges.php:194
+#: server_privileges.php:543
+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 ""
+"Permitir conectar, se o numero máximo de conexões for alcançado; Necessário "
+"para muitas operações administrativas, como setar variáveis globais e matar "
+"processos de outros usuários."
+
+#: server_privileges.php:57 server_privileges.php:201
+#: server_privileges.php:535
+msgid "Allows creating and dropping triggers"
+msgstr "Permitir criar e e largar em cadeia"
+
+#: server_privileges.php:58 server_privileges.php:182
+#: server_privileges.php:445 server_privileges.php:505
+msgid "Allows changing data."
+msgstr "Permitir modificar dados."
+
+#: server_privileges.php:59 server_privileges.php:260
+msgid "No privileges."
+msgstr "Sem privilégios."
+
+#: server_privileges.php:302 server_privileges.php:303
#, fuzzy
#| msgid "None"
msgctxt "None privileges"
msgid "None"
msgstr "Nenhum"
-#: server_privileges.php:392 server_privileges.php:527
-#: server_privileges.php:1679 server_privileges.php:1685
+#: server_privileges.php:431 server_privileges.php:566
+#: server_privileges.php:1718 server_privileges.php:1724
msgid "Table-specific privileges"
msgstr "Privilégios específicos da tabela"
-#: server_privileges.php:393 server_privileges.php:535
-#: server_privileges.php:1501
+#: server_privileges.php:432 server_privileges.php:574
+#: server_privileges.php:1540
msgid " Note: MySQL privilege names are expressed in English "
msgstr " Nota: nomes de privilégios do MySQL são expressos em inglês "
-#: server_privileges.php:524 server_privileges.php:1500
+#: server_privileges.php:563 server_privileges.php:1539
msgid "Global privileges"
msgstr "Privilégios globais"
-#: server_privileges.php:526 server_privileges.php:1679
+#: server_privileges.php:565 server_privileges.php:1718
msgid "Database-specific privileges"
msgstr "Privilégios específicos do Banco de Dados"
-#: server_privileges.php:571
+#: server_privileges.php:610
msgid "Administration"
msgstr "Administração"
-#: server_privileges.php:591
+#: server_privileges.php:630
msgid "Resource limits"
msgstr "Limite dos recursos"
-#: server_privileges.php:592
+#: server_privileges.php:631
msgid "Note: Setting these options to 0 (zero) removes the limit."
msgstr "Nota: Ajustar essa opção para 0 (zero) remove os limites."
-#: server_privileges.php:669
+#: server_privileges.php:708
msgid "Login Information"
msgstr "Informação de login"
-#: server_privileges.php:763
+#: server_privileges.php:802
msgid "Do not change the password"
msgstr "Não mudar a senha"
-#: server_privileges.php:804 server_privileges.php:2166
+#: server_privileges.php:843 server_privileges.php:2205
#, fuzzy
#| msgid "No user(s) found."
msgid "No user found."
msgstr "Nenhum usuário(s) encontrado."
-#: server_privileges.php:848
+#: server_privileges.php:887
#, php-format
msgid "The user %s already exists!"
msgstr "O usuário %s já existe!"
-#: server_privileges.php:931
+#: server_privileges.php:970
msgid "You have added a new user."
msgstr "Adicionado usuário"
-#: server_privileges.php:1152
+#: server_privileges.php:1191
#, php-format
msgid "You have updated the privileges for %s."
msgstr "Você mudou os priviléios para %s."
-#: server_privileges.php:1176
+#: server_privileges.php:1215
#, php-format
msgid "You have revoked the privileges for %s"
msgstr "Você revogou os privilégios para %s"
-#: server_privileges.php:1212
+#: server_privileges.php:1251
#, php-format
msgid "The password for %s was changed successfully."
msgstr "A senha para %s foi modificada com sucesso."
-#: server_privileges.php:1232
+#: server_privileges.php:1271
#, php-format
msgid "Deleting %s"
msgstr "Eliminando %s"
-#: server_privileges.php:1243
+#: server_privileges.php:1282
msgid "No users selected for deleting!"
msgstr "Nenhum usuário selecionado para exclusão!"
-#: server_privileges.php:1246
+#: server_privileges.php:1285
msgid "Reloading the privileges"
msgstr "Recarregando os privilégios"
-#: server_privileges.php:1261
+#: server_privileges.php:1300
msgid "The selected users have been deleted successfully."
msgstr "Os usuários selecionados foram apagados com sucesso."
-#: server_privileges.php:1296
+#: server_privileges.php:1335
msgid "The privileges were reloaded successfully."
msgstr "Os privilégios foram recarregados com sucesso."
-#: server_privileges.php:1324 server_privileges.php:1610
+#: server_privileges.php:1363 server_privileges.php:1649
msgid "Edit Privileges"
msgstr "Editar Privilégios"
-#: server_privileges.php:1333
+#: server_privileges.php:1372
msgid "Revoke"
msgstr "Revogar"
-#: server_privileges.php:1365
+#: server_privileges.php:1404
msgid "User overview"
msgstr "Avaliação dos usuários"
-#: server_privileges.php:1502 server_privileges.php:1684
-#: server_privileges.php:2033
+#: server_privileges.php:1541 server_privileges.php:1723
+#: server_privileges.php:2072
msgid "Grant"
msgstr "Conceder/Grant"
-#: server_privileges.php:1521 server_privileges.php:2123
+#: server_privileges.php:1560 server_privileges.php:2162
msgid "Any"
msgstr "Qualquer"
-#: server_privileges.php:1570 server_privileges.php:1594
-#: server_privileges.php:1988 server_privileges.php:2177
+#: server_privileges.php:1609 server_privileges.php:1633
+#: server_privileges.php:2027 server_privileges.php:2216
msgid "Add a new User"
msgstr "Adicionar novo usuário"
-#: server_privileges.php:1575
+#: server_privileges.php:1614
msgid "Remove selected users"
msgstr "Remover os usuários selecionados"
-#: server_privileges.php:1578
+#: server_privileges.php:1617
msgid "Revoke all active privileges from the users and delete them afterwards."
msgstr "Revogar todos os privilégios ativos dos usuarios e depois apagar eles."
-#: server_privileges.php:1579 server_privileges.php:1580
-#: server_privileges.php:1581
+#: server_privileges.php:1618 server_privileges.php:1619
+#: server_privileges.php:1620
msgid "Drop the databases that have the same names as the users."
msgstr "Eliminar o Banco de Dados que possui o mesmo nome dos usuários."
-#: server_privileges.php:1597
+#: server_privileges.php:1636
#, php-format
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
@@ -5568,50 +4926,50 @@ msgstr ""
"privilégios que o servidor usa se alterações manuais forem feitas nele. "
"Neste caso, você deve usar %sRELOAD PRIVILEGES%s antes de continuar.."
-#: server_privileges.php:1645
+#: server_privileges.php:1684
msgid "The selected user was not found in the privilege table."
msgstr "O usuário selecionado não foi encontrado na tabela de privilégios."
-#: server_privileges.php:1685
+#: server_privileges.php:1724
msgid "Column-specific privileges"
msgstr "Privilégios específicos da coluna"
-#: server_privileges.php:1886
+#: server_privileges.php:1925
msgid "Add privileges on the following database"
msgstr "Adicionar privilégios nas seguintes Banco de Dados"
-#: server_privileges.php:1904
+#: server_privileges.php:1943
msgid "Wildcards % and _ should be escaped with a \\ to use them literally"
msgstr ""
"Coringas _ e % precisam ser precedidos com uma \\ para serem usados "
"literalmente"
-#: server_privileges.php:1907
+#: server_privileges.php:1946
msgid "Add privileges on the following table"
msgstr "Adicionar privilégios nas seguintes tabelas"
-#: server_privileges.php:1964
+#: server_privileges.php:2003
msgid "Change Login Information / Copy User"
msgstr "Mudar informações de login / Copiar usuário"
-#: server_privileges.php:1967
+#: server_privileges.php:2006
msgid "Create a new user with the same privileges and ..."
msgstr "Criar um novo usuário com os mesmos privilégios e ..."
-#: server_privileges.php:1969
+#: server_privileges.php:2008
msgid "... keep the old one."
msgstr "... manter o antigo."
-#: server_privileges.php:1970
+#: server_privileges.php:2009
msgid " ... delete the old one from the user tables."
msgstr " ... apagar o antigo da tabela de usuários."
-#: server_privileges.php:1971
+#: server_privileges.php:2010
msgid ""
" ... revoke all active privileges from the old one and delete it afterwards."
msgstr " ... revogar todos privilégios do usuário antigo e depois apagar ele."
-#: server_privileges.php:1972
+#: server_privileges.php:2011
msgid ""
" ... delete the old one from the user tables and reload the privileges "
"afterwards."
@@ -5619,44 +4977,44 @@ msgstr ""
" ... apagar o antigo da tabela de usuários e depois recarregar os "
"privilégios."
-#: server_privileges.php:1994
+#: server_privileges.php:2033
msgid "Database for user"
msgstr "Banco de Dados para usuário"
-#: server_privileges.php:1998
+#: server_privileges.php:2037
#, fuzzy
#| msgid "None"
msgctxt "Create none database for user"
msgid "None"
msgstr "Nenhum"
-#: server_privileges.php:1999
+#: server_privileges.php:2038
msgid "Create database with same name and grant all privileges"
msgstr "Criar Banco de Dados com o mesmo nome e conceder todos os privilégios"
-#: server_privileges.php:2000
+#: server_privileges.php:2039
msgid "Grant all privileges on wildcard name (username\\_%)"
msgstr "Conceder todos os privilégios no nome coringa (nome_do_usuário_%)"
-#: server_privileges.php:2003
+#: server_privileges.php:2042
#, php-format
msgid "Grant all privileges on database "%s""
msgstr "Conceder todos os privilégios no banco de dados "%s""
-#: server_privileges.php:2026
+#: server_privileges.php:2065
#, php-format
msgid "Users having access to "%s""
msgstr "Usuários que têm acesso à "%s""
-#: server_privileges.php:2134
+#: server_privileges.php:2173
msgid "global"
msgstr "global"
-#: server_privileges.php:2136
+#: server_privileges.php:2175
msgid "database-specific"
msgstr "Específico do Banco de Dados"
-#: server_privileges.php:2138
+#: server_privileges.php:2177
msgid "wildcard"
msgstr "coringa"
@@ -5704,7 +5062,7 @@ msgstr ""
msgid "This server is configured as master in a replication process."
msgstr ""
-#: server_replication.php:184 server_status.php:281
+#: server_replication.php:184 server_status.php:392
#, fuzzy
msgid "Show master status"
msgstr "Exibir status dos escravos"
@@ -5844,103 +5202,755 @@ msgid ""
"like to configure it?"
msgstr ""
+#: server_status.php:40
+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 ""
+"O número de transações que usaram o cache do log binário temporário mas que "
+"excederam o valor do binlog_cache_size e usaram o arquivo temporário para "
+"armazenar enunciados da transação."
+
+#: server_status.php:41
+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."
+
+#: server_status.php:42
+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 "
+"to increase the tmp_table_size value to cause temporary tables to be memory-"
+"based instead of disk-based."
+msgstr ""
+"O número de tabelas temporárias no disco criadas automaticamente pelo "
+"servidor enquanto executava os enunciados. Se Created_tmp_disk_tables é "
+"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"
+
+#: server_status.php:43
+msgid "How many temporary files mysqld has created."
+msgstr "Quantos arquivos temporários o MySQL tinha criado."
+
+#: server_status.php:44
+msgid ""
+"The number of in-memory temporary tables created automatically by the server "
+"while executing statements."
+msgstr ""
+"O número de tabelas temporárias na memória criadas automaticamente pelo "
+"servidor enquanto executava os enunciados."
+
+#: server_status.php:45
+msgid ""
+"The number of rows written with INSERT DELAYED for which some error occurred "
+"(probably duplicate key)."
+msgstr ""
+"O número de linhas escritas com INSERT DELAYED para cada erro ocorrido "
+"(provavelmente chave duplicada)."
+
#: server_status.php:46
+msgid ""
+"The number of INSERT DELAYED handler threads in use. Every different table "
+"on which one uses INSERT DELAYED gets its own thread."
+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."
+
+#: server_status.php:47
+msgid "The number of INSERT DELAYED rows written."
+msgstr "O número de linhas INSERT DELAYED escritas."
+
+#: server_status.php:48
+msgid "The number of executed FLUSH statements."
+msgstr "O número de enunciados FLUSH executados."
+
+#: server_status.php:49
+msgid "The number of internal COMMIT statements."
+msgstr "O número de enunciados COMMIT internos."
+
+#: server_status.php:50
+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."
+
+#: server_status.php:51
+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 ""
+"O servidor MySQL pode perguntar ao motor de armazenamento do NDB Cluster se "
+"ele sabe sobre uma tabela com um nome dado. Isto é chamado descoberta. "
+"Handler_discover indica o número de vezes que tabelas foram descobertas."
+
+#: server_status.php:52
+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 ""
+"O número de vezes que a primeira entrada foi lida de um índice. Se isto for "
+"alto, sugere que o usuário está fazendo muitas varreduras completas do "
+"índice; por exemplo, SELECT col1 FROM foo, supondo que col1 é um índice."
+
+#: server_status.php:53
+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 ""
+"O número de requisições para ler uma linha baseada em uma chave. Se isto for "
+"alto, é uma boa indicação de que suas consultas e tabelas estejam "
+"corretamente indexadas."
+
+#: server_status.php:54
+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 ""
+"O número de requisições para ler a linha seguinte na ordem da chave. Isto é "
+"incrementado se você estiver consultando uma coluna do índice com uma "
+"restrição da escala ou se você estiver fazendo uma varredura do índice."
+
+#: server_status.php:55
+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 ""
+"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 B"
+
+#: server_status.php:56
+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 "
+"probably have a lot of queries that require MySQL to scan whole tables or "
+"you have joins that don't use keys properly."
+msgstr ""
+"O número de requisições pra ler uma linha baseada em uma posição fixa. Isto "
+"é alto se você estiver fazendo muitas consultas que requerem a ordenação do "
+"resultado. Você tem provavelmente muitas consultas que requerem que o MySQL "
+"faça a varredura de tabelas inteiras ou você tem junções que não usam as "
+"chaves corretamente."
+
+#: server_status.php:57
+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 "
+"tables are not properly indexed or that your queries are not written to take "
+"advantage of the indexes you have."
+msgstr ""
+"O número de requisições para ler a linha seguinte no arquivo de dados. Isto "
+"é alto se você estiver fazendo muitas varreduras da tabela. Geralmente isto "
+"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."
+
+#: server_status.php:58
+msgid "The number of internal ROLLBACK statements."
+msgstr "O número de enunciados ROLLBACK internos."
+
+#: server_status.php:59
+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."
+
+#: server_status.php:60
+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."
+
+#: server_status.php:61
+msgid "The number of pages containing data (dirty or clean)."
+msgstr "O número de páginas que contém dados (sujos ou limpos)."
+
+#: server_status.php:62
+msgid "The number of pages currently dirty."
+msgstr "O número de páginas atualmente sujas."
+
+#: server_status.php:63
+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."
+
+#: server_status.php:64
+msgid "The number of free pages."
+msgstr "O número de páginas livres."
+
+#: server_status.php:65
+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 ""
+"O número de páginas trancadas no buffer pool do InnoDB. Estas são páginas "
+"que estão sendo lidas ou escritas atualmente ou aquela não pode ser nivelada "
+"ou removido por alguma outra razão."
+
+#: server_status.php:66
+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 "
+"be calculated as Innodb_buffer_pool_pages_total - "
+"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data."
+msgstr ""
+"O número de páginas ocupadas porque foram alocados para rotinas "
+"administrativas tais como trancamento de linhas ou índice hash adaptável. "
+"Este valor pode também ser calculado como Innodb_buffer_pool_pages_total - "
+"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data."
+
+#: server_status.php:67
+msgid "Total size of buffer pool, in pages."
+msgstr "Tamanho total do buffer pool, em páginas."
+
+#: server_status.php:68
+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 ""
+"O número de ler-adiante \"aleatórios\" InnoDB iniciado. Isto acontece quando "
+"uma consulta faz a varredura de uma parcela grande de uma tabela mas na "
+"ordem aleatória."
+
+#: server_status.php:69
+msgid ""
+"The number of sequential read-aheads InnoDB initiated. This happens when "
+"InnoDB does a sequential full table scan."
+msgstr ""
+"O número de ler-adiante sequenciais InnoDB iniciado. Isto acontece quando o "
+"InnoDB faz uma varredura sequencial completa da tabela."
+
+#: server_status.php:70
+msgid "The number of logical read requests InnoDB has done."
+msgstr "O número de requisições de leitura lógica InnoDB que foram feitas."
+
+#: server_status.php:71
+msgid ""
+"The number of logical reads that InnoDB could not satisfy from buffer pool "
+"and had to do a single-page read."
+msgstr ""
+"O número de leituras lógicas que o InnoDB não pode satisfer do buffer pool e "
+"teria que fazer uma leitura de página simples"
+
+#: server_status.php:72
+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 "
+"available, it's necessary to wait for pages to be flushed first. This "
+"counter counts instances of these waits. If the buffer pool size was set "
+"properly, this value should be small."
+msgstr ""
+"Normalmente, escreve para o buffer pool do InnoDB rodando em segundo plano. "
+"Entretanto, se for necessário ler ou criar uma página e nenhuma página limpa "
+"estiver disponível, é necessário esperar as páginas serem niveladas "
+"primeiramente. Este contador conta instâncias dessas esperas. Se o tamanho "
+"do buffer pool for ajustado corretamente, este valor deve ser pequeno."
+
+#: server_status.php:73
+msgid "The number writes done to the InnoDB buffer pool."
+msgstr "O número de escritas feitas para o buffer pool do InnoDB."
+
+#: server_status.php:74
+msgid "The number of fsync() operations so far."
+msgstr "O número de operações fsync() à fazer."
+
+#: server_status.php:75
+msgid "The current number of pending fsync() operations."
+msgstr "O número atual de operações fsync() pendentes."
+
+#: server_status.php:76
+msgid "The current number of pending reads."
+msgstr "O número atual de leituras pendentes."
+
+#: server_status.php:77
+msgid "The current number of pending writes."
+msgstr "O número atual de escritas pendentes."
+
+#: server_status.php:78
+msgid "The amount of data read so far, in bytes."
+msgstr "O montante de leitura de dados à fazer, em bytes."
+
+#: server_status.php:79
+msgid "The total number of data reads."
+msgstr "O número total de dados lidos."
+
+#: server_status.php:80
+msgid "The total number of data writes."
+msgstr "O número total de dados escritos."
+
+#: server_status.php:81
+msgid "The amount of data written so far, in bytes."
+msgstr "O montante de escrita de dados à fazer, em bytes."
+
+#: server_status.php:82
+msgid "The number of pages that have been written for doublewrite operations."
+msgstr ""
+"O número de escritas doublewrite que foram executadas e o número de páginas "
+"que foram escritas para esta finalidade."
+
+#: server_status.php:83
+msgid "The number of doublewrite operations that have been performed."
+msgstr ""
+"O número de escritas doublewrite que foram executadas e o número de páginas "
+"que foram escritas para esta finalidade."
+
+#: server_status.php:84
+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 ""
+"O número de esperas geradas porque o buffer do log era muito pequeno e teve "
+"que esperar que fosse nivelada antes de continuar."
+
+#: server_status.php:85
+msgid "The number of log write requests."
+msgstr "O número de requisições de escrita de log."
+
+#: server_status.php:86
+msgid "The number of physical writes to the log file."
+msgstr "O número de escritas físicas para o arquivo de log."
+
+#: server_status.php:87
+msgid "The number of fsync() writes done to the log file."
+msgstr "O número de escritas fsyncs feitas no arquivo de log."
+
+#: server_status.php:88
+msgid "The number of pending log file fsyncs."
+msgstr "O número de arquivos de log fsyncs pendentes."
+
+#: server_status.php:89
+msgid "Pending log file writes."
+msgstr "Escrita de arquivos de log pendentes."
+
+#: server_status.php:90
+msgid "The number of bytes written to the log file."
+msgstr "O número de bytes escritos para o arquivo de log."
+
+#: server_status.php:91
+msgid "The number of pages created."
+msgstr "O número de páginas criadas."
+
+#: server_status.php:92
+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 ""
+"O tamanho de página compilada do InnoDB (padrão 16KB). Muitos valores são "
+"contados em páginas; o tamanho de página permite que sejam facilmente "
+"convertidos em bytes."
+
+#: server_status.php:93
+msgid "The number of pages read."
+msgstr "O número de páginas lidas."
+
+#: server_status.php:94
+msgid "The number of pages written."
+msgstr "O número de páginas escritas."
+
+#: server_status.php:95
+msgid "The number of row locks currently being waited for."
+msgstr "O número de linhas trancadas que estão esperando atualmente."
+
+#: server_status.php:96
+msgid "The average time to acquire a row lock, in milliseconds."
+msgstr "O tempo médio para recuperar uma linha trancada, em milísegundo."
+
+#: server_status.php:97
+msgid "The total time spent in acquiring row locks, in milliseconds."
+msgstr "O tempo total gasto para recuperar linhas trancadas, em milísegundo."
+
+#: server_status.php:98
+msgid "The maximum time to acquire a row lock, in milliseconds."
+msgstr "O máximo de tempo para recuperar uma linha trancada, em milísegundo."
+
+#: server_status.php:99
+msgid "The number of times a row lock had to be waited for."
+msgstr ""
+"O número de vezes que uma linhas trancada teve que esperar para ser escrita."
+
+#: server_status.php:100
+msgid "The number of rows deleted from InnoDB tables."
+msgstr "O número de linhas deletadas de tabelas InnoDB."
+
+#: server_status.php:101
+msgid "The number of rows inserted in InnoDB tables."
+msgstr "O número de linhas inseridas em tabelas InnoDB."
+
+#: server_status.php:102
+msgid "The number of rows read from InnoDB tables."
+msgstr "O número de linhas lidas de tabelas InnoDB."
+
+#: server_status.php:103
+msgid "The number of rows updated in InnoDB tables."
+msgstr "O número de linhas atualizadas em tabelas InnoDB."
+
+#: server_status.php:104
+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 ""
+"O número de blocos chave no cache chave que mudaram mas não foram nivelados "
+"ainda ao disco. Antes era chamado de Not_flushed_key_blocks."
+
+#: server_status.php:105
+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 ""
+"O número de blocos não usados no cache chave. Você pode usar este valor para "
+"determinar quanto do cache chave está no uso."
+
+#: server_status.php:106
+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 ""
+"O número de blocos usados no cache chave. Este valor é uma marca d'água que "
+"indica o número máximo de blocos que estiveram sempre em uso em algum "
+"momento."
+
+#: server_status.php:107
+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."
+
+#: server_status.php:108
+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 ""
+"O número de leituras físicas de um bloco chave do disco. Se Key_reads for "
+"alto, então seu valor do key_buffer_size é provavelmente muito baixo. A taxa "
+"de falta de cache pode ser calculada como Key_reads/Key_read_requests."
+
+#: server_status.php:109
+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."
+
+#: server_status.php:110
+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."
+
+#: server_status.php:111
+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 ""
+"O custo total da última consulta compilada como computado pelo otimizador de "
+"consultas. Útil para comparar o custo de diferentes planos de consulta para "
+"a mesma consulta. O valor padrão 0 significa que nenhuma consulta foi "
+"compilada ainda."
+
+#: server_status.php:112
+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."
+
+#: server_status.php:113
+msgid ""
+"The number of tables that have been opened. If opened tables is big, your "
+"table cache value is probably too small."
+msgstr ""
+"O número de tabelas que devem estar abertas. Se aberta, as tabelas são "
+"grandes, o valor do cache de suas tabelas é provavelmente muito pequeno."
+
+#: server_status.php:114
+msgid "The number of files that are open."
+msgstr "O número de arquivos que estão abertos."
+
+#: server_status.php:115
+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)."
+
+#: server_status.php:116
+msgid "The number of tables that are open."
+msgstr "O número de tabelas que estão abertas."
+
+#: server_status.php:117
+msgid "The number of free memory blocks in query cache."
+msgstr "O número de blocos de memória livre na consulta do cache."
+
+#: server_status.php:118
+msgid "The amount of free memory for query cache."
+msgstr "O montante de memória livre para a consulta do cache."
+
+#: server_status.php:119
+msgid "The number of cache hits."
+msgstr "O número de hits do cache."
+
+#: server_status.php:120
+msgid "The number of queries added to the cache."
+msgstr "O número de consultas adicionadas no cache."
+
+#: server_status.php:121
+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 "
+"cache size. The query cache uses a least recently used (LRU) strategy to "
+"decide which queries to remove from the cache."
+msgstr ""
+"O número de consultas que foram removidas do cache para liberar memória para "
+"novas consultas. Essa informação pode ajudar você a ajustar o tamanho da "
+"consulta do cache. A consulta do cache usa a estratégia do \"usado menos "
+"recentemente\" (LRU - least recently used) para decidir qual consulta "
+"remover do cache."
+
+#: server_status.php:122
+msgid ""
+"The number of non-cached queries (not cachable, or not cached due to the "
+"query_cache_type setting)."
+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)."
+
+#: server_status.php:123
+msgid "The number of queries registered in the cache."
+msgstr "O número de consultas registradas no cache."
+
+#: server_status.php:124
+msgid "The total number of blocks in the query cache."
+msgstr "O número total de blocos na consulta do cache."
+
+#: server_status.php:125
+msgctxt "$strShowStatusReset"
+msgid "Reset"
+msgstr "Resetar"
+
+#: server_status.php:126
+msgid "The status of failsafe replication (not yet implemented)."
+msgstr "O status da replicação à prova de falhas (não implementado)."
+
+#: server_status.php:127
+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 ""
+"O número de junções que não usaram índices. Se este valor não for 0, você "
+"deve cuidadosamente verificar os índices de suas tabelas."
+
+#: server_status.php:128
+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 na tabela de "
+"referência."
+
+#: server_status.php:129
+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 ""
+"O número de junções sem chaves que verificam para ver se há o uso da chave "
+"após cada linha. (Se este não for 0, você deve cuidadosamente verificar os "
+"índices de suas tabelas.)"
+
+#: server_status.php:130
+msgid ""
+"The number of joins that used ranges on the first table. (It's normally not "
+"critical even if this is big.)"
+msgstr ""
+"O número de junções que usaram escalas na primeira tabela. (Não é "
+"normalmente crítico mesmo se este for grande.)"
+
+#: server_status.php:131
+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."
+
+#: server_status.php:132
+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."
+
+#: server_status.php:133
+msgid ""
+"Total (since startup) number of times the replication slave SQL thread has "
+"retried transactions."
+msgstr ""
+"Número total (desde o início) de vezes que o processo SQL escravo de "
+"replicação teve que tentar transações."
+
+#: server_status.php:134
+msgid "This is ON if this server is a slave that is connected to a master."
+msgstr "Isto é ON se este servidor é um escravo conectado à um mestre."
+
+#: server_status.php:135
+msgid ""
+"The number of threads that have taken more than slow_launch_time seconds to "
+"create."
+msgstr ""
+"O número de processos que levaram mais que slow_launch_time segundos para "
+"serem criadas."
+
+#: server_status.php:136
+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."
+
+#: server_status.php:137
+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 ""
+"O número de fusões que o algoritmo de ordenação teve que fazer. Se este "
+"valor for alto, você deve considerar aumentar o valor da variável "
+"sort_buffer_size do sistema."
+
+#: server_status.php:138
+msgid "The number of sorts that were done with ranges."
+msgstr "O número de ordenações que foram feitas com escalas."
+
+#: server_status.php:139
+msgid "The number of sorted rows."
+msgstr "O número de linhas ordenadas."
+
+#: server_status.php:140
+msgid "The number of sorts that were done by scanning the table."
+msgstr "O número de ordenações que foram feitas scaneando a tabela."
+
+#: server_status.php:141
+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."
+
+#: server_status.php:142
+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 "
+"should first optimize your queries, and then either split your table or "
+"tables or use replication."
+msgstr ""
+"O número de vezes que uma tabela trancada não foi recuperada imediatamente e "
+"uma espera foi necessária. Se isso foi alto e você tem problemas de "
+"performance, você precisa primeiramente otimizar suas consultas e então, ou "
+"dividir sua tabela ou usar replicação."
+
+#: server_status.php:143
+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 ""
+"O número de processos no cache de processos. A taxa de hits do cache pode "
+"ser calculada como Threads_created/conexões. Se este valor for vermelho você "
+"deve aumentar seu thread_cache_size"
+
+#: server_status.php:144
+msgid "The number of currently open connections."
+msgstr "O número de conexões atualmente abertas."
+
+#: server_status.php:145
+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 "
+"doesn't give a notable performance improvement if you have a good thread "
+"implementation.)"
+msgstr ""
+"O número de processos criadas para manipular conexões. Se Threads_created é "
+"grande, você deveria aumentar o valor de thread_cache_size. (Normalmente "
+"isso não da um aumento notável de performance se você tem uma boa "
+"implementação de processos.)"
+
+#: server_status.php:146
+msgid "The number of threads that are not sleeping."
+msgstr "O número de processos que não estão dormindo."
+
+#: server_status.php:157
msgid "Runtime Information"
msgstr "Informações de Runtime"
-#: server_status.php:250
+#: server_status.php:361
msgid "Handler"
msgstr "Alimentador"
-#: server_status.php:251
+#: server_status.php:362
msgid "Query cache"
msgstr "Consulta do cache"
-#: server_status.php:252
+#: server_status.php:363
msgid "Threads"
msgstr "Processos"
-#: server_status.php:254
+#: server_status.php:365
msgid "Temporary data"
msgstr "Dados temporários"
-#: server_status.php:255
+#: server_status.php:366
msgid "Delayed inserts"
msgstr "Inserções demoradas"
-#: server_status.php:256
+#: server_status.php:367
msgid "Key cache"
msgstr "Chave do cache"
-#: server_status.php:257
+#: server_status.php:368
msgid "Joins"
msgstr "Junções"
-#: server_status.php:259
+#: server_status.php:370
msgid "Sorting"
msgstr "Ordenando"
-#: server_status.php:261
+#: server_status.php:372
msgid "Transaction coordinator"
msgstr "Coordenador da transação"
-#: server_status.php:271
+#: server_status.php:382
msgid "Flush (close) all tables"
msgstr "Nivelar (fechar) todas as tabelas"
-#: server_status.php:273
+#: server_status.php:384
msgid "Show open tables"
msgstr "Exibir tabelas abertas"
-#: server_status.php:278
+#: server_status.php:389
msgid "Show slave hosts"
msgstr "Exibir servidores escravos"
-#: server_status.php:284
+#: server_status.php:395
msgid "Show slave status"
msgstr "Exibir status dos escravos"
-#: server_status.php:289
+#: server_status.php:400
msgid "Flush query cache"
msgstr "Nivelar cache da consulta"
-#: server_status.php:294
+#: server_status.php:405
msgid "Show processes"
msgstr "Mostrar os Processos"
-#: server_status.php:344
+#: server_status.php:455
#, fuzzy
#| msgid "Reset"
msgctxt "for Show status"
msgid "Reset"
msgstr "Restaurar"
-#: server_status.php:350
+#: server_status.php:461
#, php-format
msgid "This MySQL server has been running for %s. It started up on %s."
msgstr "Esse servidor MySQL está rodando por %s. Ele foi iniciado em %s."
-#: server_status.php:360
+#: server_status.php:471
msgid ""
"This MySQL server works as master and slave in replication"
"b> process."
msgstr ""
-#: server_status.php:362
+#: server_status.php:473
msgid "This MySQL server works as master in replication process."
msgstr ""
-#: server_status.php:364
+#: server_status.php:475
msgid "This MySQL server works as slave in replication process."
msgstr ""
-#: server_status.php:366
+#: server_status.php:477
msgid ""
"For further information about replication status on the server, please visit "
"the replication section."
msgstr ""
-#: server_status.php:383
+#: server_status.php:494
msgid ""
"Server traffic: These tables show the network traffic statistics of "
"this MySQL server since its startup."
@@ -5948,11 +5958,11 @@ msgstr ""
"Tráfico do servidor: Essas tabelas mostram as estatísticas do tráfico "
"da rede neste servidor MySQL desde o início."
-#: server_status.php:388
+#: server_status.php:499
msgid "Traffic"
msgstr "Tráfego"
-#: server_status.php:388
+#: server_status.php:499
msgid ""
"On a busy server, the byte counters may overrun, so those statistics as "
"reported by the MySQL server may be incorrect."
@@ -5960,36 +5970,36 @@ msgstr ""
"Em servidores ocupados, os contadores de byte podem sobrecarregar, então as "
"estatísticas como relatadas pelo servidor MySQL podem estar incorretas."
-#: server_status.php:389 server_status.php:434 server_status.php:497
-#: server_status.php:555
+#: server_status.php:500 server_status.php:545 server_status.php:608
+#: server_status.php:666
msgid "per hour"
msgstr "por hora"
-#: server_status.php:394
+#: server_status.php:505
msgid "Received"
msgstr "Recebido"
-#: server_status.php:404
+#: server_status.php:515
msgid "Sent"
msgstr "Enviar"
-#: server_status.php:433
+#: server_status.php:544
msgid "Connections"
msgstr "Conexões"
-#: server_status.php:440
+#: server_status.php:551
msgid "max. concurrent connections"
msgstr "máx. de conexões concorrentes"
-#: server_status.php:447
+#: server_status.php:558
msgid "Failed attempts"
msgstr "Tentativas falharam"
-#: server_status.php:461
+#: server_status.php:572
msgid "Aborted"
msgstr "Abortado"
-#: server_status.php:490
+#: server_status.php:601
#, php-format
msgid ""
"Query statistics: Since its startup, %s queries have been sent to the "
@@ -5998,19 +6008,19 @@ msgstr ""
"Estatísticas das consultas: Desde o início, %s consultas foram "
"enviadas para o servidor."
-#: server_status.php:498
+#: server_status.php:609
msgid "per minute"
msgstr "por minuto"
-#: server_status.php:499
+#: server_status.php:610
msgid "per second"
msgstr "por segundo"
-#: server_status.php:554
+#: server_status.php:665
msgid "Query type"
msgstr "Tipo de consulta"
-#: server_status.php:721
+#: server_status.php:832
#, fuzzy
msgid "Replication status"
msgstr "Replicação"
diff --git a/po/ro.po b/po/ro.po
index 0da022d2e..6c3ebaaf8 100755
--- a/po/ro.po
+++ b/po/ro.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-06-04 16:07-0400\n"
+"POT-Creation-Date: 2010-06-08 12:32-0400\n"
"PO-Revision-Date: 2010-05-16 01:40+0200\n"
"Last-Translator: \n"
"Language-Team: romanian \n"
@@ -16,11 +16,11 @@ msgstr ""
"X-Generator: Pootle 2.0.1\n"
#: browse_foreigners.php:38 browse_foreigners.php:59
-#: libraries/display_tbl.lib.php:417 server_privileges.php:1475
+#: libraries/display_tbl.lib.php:417 server_privileges.php:1514
msgid "Show all"
msgstr "Arată toate"
-#: browse_foreigners.php:82 libraries/common.lib.php:2304
+#: browse_foreigners.php:82 libraries/common.lib.php:2313
#: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:394
#: libraries/export/pdf.php:147 pdf_schema.php:283 pdf_schema.php:1123
#: pdf_schema.php:1139
@@ -39,8 +39,8 @@ msgstr ""
#: browse_foreigners.php:150 db_structure.php:79 db_structure.php:80
#: db_structure.php:91 db_structure.php:93 db_structure.php:104
-#: db_structure.php:106 libraries/common.lib.php:2822
-#: libraries/common.lib.php:2829 libraries/db_links.inc.php:75
+#: db_structure.php:106 libraries/common.lib.php:2831
+#: libraries/common.lib.php:2838 libraries/db_links.inc.php:75
#: libraries/tbl_links.inc.php:63
msgid "Search"
msgstr "Caută"
@@ -50,7 +50,7 @@ msgstr "Caută"
#: db_structure.php:567 js/messages.php:48 libraries/Config.class.php:1046
#: libraries/Theme_Manager.class.php:311
#: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719
-#: libraries/common.lib.php:1333 libraries/common.lib.php:2279
+#: libraries/common.lib.php:1335 libraries/common.lib.php:2288
#: libraries/display_change_password.lib.php:82
#: libraries/display_create_table.lib.php:63
#: libraries/display_export.lib.php:275 libraries/display_import.lib.php:276
@@ -61,9 +61,9 @@ msgstr "Caută"
#: libraries/sql_query_form.lib.php:552 libraries/tbl_properties.inc.php:782
#: main.php:128 navigation.php:237 pdf_pages.php:292 pdf_pages.php:328
#: pdf_pages.php:530 pmd_pdf.php:116 server_binlog.php:142
-#: server_privileges.php:625 server_privileges.php:1585
-#: server_privileges.php:1932 server_privileges.php:1979
-#: server_privileges.php:2018 server_replication.php:235
+#: server_privileges.php:664 server_privileges.php:1624
+#: server_privileges.php:1971 server_privileges.php:2018
+#: server_privileges.php:2057 server_replication.php:235
#: server_replication.php:318 server_replication.php:341
#: server_synchronize.php:1209 tbl_change.php:330 tbl_change.php:1174
#: tbl_change.php:1211 tbl_indexes.php:254 tbl_operations.php:265
@@ -81,7 +81,7 @@ msgstr "Nume cheie"
#: browse_foreigners.php:169 browse_foreigners.php:171
#: server_collations.php:55 server_collations.php:67 server_engines.php:59
-#: server_status.php:628
+#: server_status.php:739
msgid "Description"
msgstr "Descriere"
@@ -122,7 +122,7 @@ msgstr "Denumirile coloanelor"
#: libraries/db_structure.lib.php:60 libraries/export/htmlword.php:245
#: libraries/export/latex.php:360 libraries/export/odt.php:297
#: libraries/export/texytext.php:234 libraries/tbl_properties.inc.php:100
-#: pdf_schema.php:1263 pdf_schema.php:1284 server_privileges.php:2031
+#: pdf_schema.php:1263 pdf_schema.php:1284 server_privileges.php:2070
#: tbl_change.php:287 tbl_change.php:314 tbl_printview.php:143
#: tbl_printview.php:313 tbl_select.php:136 tbl_structure.php:178
#: tbl_structure.php:659 tbl_tracking.php:274 tbl_tracking.php:321
@@ -166,9 +166,9 @@ msgstr "Comentarii"
#: libraries/Index.class.php:386 libraries/export/htmlword.php:322
#: libraries/export/latex.php:430 libraries/export/odt.php:368
#: libraries/export/texytext.php:311 libraries/mult_submits.inc.php:263
-#: pdf_schema.php:1344 server_privileges.php:1529 server_privileges.php:1540
-#: server_privileges.php:1850 server_privileges.php:1855
-#: server_privileges.php:2148 sql.php:132 sql.php:194 tbl_printview.php:229
+#: pdf_schema.php:1344 server_privileges.php:1568 server_privileges.php:1579
+#: server_privileges.php:1889 server_privileges.php:1894
+#: server_privileges.php:2187 sql.php:132 sql.php:194 tbl_printview.php:229
#: tbl_structure.php:350 tbl_tracking.php:337 tbl_tracking.php:342
msgid "No"
msgstr "Nu"
@@ -182,9 +182,9 @@ msgstr "Nu"
#: libraries/mult_submits.inc.php:101 libraries/mult_submits.inc.php:106
#: libraries/mult_submits.inc.php:111 libraries/mult_submits.inc.php:262
#: libraries/mult_submits.inc.php:273 pdf_schema.php:1344
-#: server_databases.php:64 server_privileges.php:1526
-#: server_privileges.php:1540 server_privileges.php:1850
-#: server_privileges.php:1853 server_privileges.php:2148 sql.php:193
+#: server_databases.php:64 server_privileges.php:1565
+#: server_privileges.php:1579 server_privileges.php:1889
+#: server_privileges.php:1892 server_privileges.php:2187 sql.php:193
#: tbl_printview.php:229 tbl_structure.php:40 tbl_structure.php:350
#: tbl_tracking.php:335 tbl_tracking.php:340
msgid "Yes"
@@ -281,7 +281,7 @@ msgstr "Schimbă la tabela copiată"
msgid "BLOB Repository"
msgstr "BLOB Repository"
-#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1350
+#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1352
#: libraries/server_links.inc.php:49 server_processlist.php:59
#: tbl_tracking.php:596 test/theme.php:101
msgid "Status"
@@ -340,8 +340,8 @@ msgstr "Editează paginile PDF"
#: db_printview.php:104 db_tracking.php:72 db_tracking.php:157
#: libraries/db_structure.lib.php:46 libraries/export/xml.php:328
-#: libraries/header.inc.php:126 pdf_pages.php:424 server_privileges.php:1626
-#: server_privileges.php:1682 server_privileges.php:1946
+#: libraries/header.inc.php:126 pdf_pages.php:424 server_privileges.php:1665
+#: server_privileges.php:1721 server_privileges.php:1985
#: server_synchronize.php:423 server_synchronize.php:866 tbl_tracking.php:592
#: test/theme.php:75
msgid "Table"
@@ -443,7 +443,7 @@ msgstr "Del"
#: db_qbe.php:370 db_qbe.php:451 db_qbe.php:522 db_qbe.php:553
#: libraries/display_import.lib.php:166 libraries/tbl_properties.inc.php:779
-#: server_privileges.php:258 tbl_change.php:1031 tbl_indexes.php:250
+#: server_privileges.php:297 tbl_change.php:1031 tbl_indexes.php:250
#: tbl_select.php:288
msgid "Or"
msgstr "Sau"
@@ -477,7 +477,7 @@ msgstr "Utilizare tabele"
msgid "SQL query on database %s:"
msgstr "Comandă SQL pe baza de date %s:"
-#: db_qbe.php:934 libraries/common.lib.php:1223
+#: db_qbe.php:934 libraries/common.lib.php:1225
msgid "Submit Query"
msgstr "Trimite comanda"
@@ -516,7 +516,7 @@ msgstr "%s rezultat(e) în interiorul tabelului %s"
#: db_search.php:267 db_structure.php:77 db_structure.php:78
#: db_structure.php:90 db_structure.php:92 db_structure.php:103
-#: db_structure.php:105 libraries/common.lib.php:2824
+#: db_structure.php:105 libraries/common.lib.php:2833
#: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50
#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:467
msgid "Browse"
@@ -563,26 +563,26 @@ msgstr "În cîmpul:"
#: db_structure.php:81 db_structure.php:82 db_structure.php:94
#: db_structure.php:95 db_structure.php:107 db_structure.php:108
-#: libraries/common.lib.php:2823 libraries/sql_query_form.lib.php:334
+#: libraries/common.lib.php:2832 libraries/sql_query_form.lib.php:334
#: libraries/sql_query_form.lib.php:337 libraries/tbl_links.inc.php:76
msgid "Insert"
msgstr "Inserare"
#: db_structure.php:83 db_structure.php:96 db_structure.php:109
-#: libraries/common.lib.php:2820 libraries/common.lib.php:2827
+#: libraries/common.lib.php:2829 libraries/common.lib.php:2836
#: libraries/db_links.inc.php:63 libraries/export/htmlword.php:23
#: libraries/export/latex.php:33 libraries/export/latex.php:337
#: libraries/export/odt.php:32 libraries/export/sql.php:60
#: libraries/export/texytext.php:23 libraries/import.lib.php:1104
#: libraries/tbl_links.inc.php:56 pmd_general.php:134
-#: server_privileges.php:554 server_replication.php:315 tbl_tracking.php:269
+#: server_privileges.php:593 server_replication.php:315 tbl_tracking.php:269
msgid "Structure"
msgstr "Structură"
#: db_structure.php:84 db_structure.php:85 db_structure.php:97
#: db_structure.php:98 db_structure.php:110 db_structure.php:111
#: db_structure.php:545 db_structure.php:546 db_tracking.php:91
-#: libraries/Index.class.php:483 libraries/common.lib.php:1654
+#: libraries/Index.class.php:483 libraries/common.lib.php:1656
#: libraries/db_links.inc.php:100 libraries/mult_submits.inc.php:36
#: libraries/mult_submits.inc.php:73 libraries/tbl_links.inc.php:127
#: server_databases.php:352 tbl_structure.php:27 tbl_structure.php:151
@@ -592,7 +592,7 @@ msgstr "Aruncă"
#: db_structure.php:86 db_structure.php:87 db_structure.php:99
#: db_structure.php:100 db_structure.php:112 db_structure.php:113
-#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1653
+#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1655
#: libraries/mult_submits.inc.php:39 libraries/tbl_links.inc.php:105
msgid "Empty"
msgstr "Golește"
@@ -635,7 +635,7 @@ msgstr "Vizualizare"
#: db_structure.php:485 libraries/db_structure.lib.php:49
#: libraries/server_links.inc.php:70 server_replication.php:33
-#: server_replication.php:164 server_status.php:258
+#: server_replication.php:164 server_status.php:369
msgid "Replication"
msgstr "Replicare"
@@ -651,20 +651,20 @@ msgstr "%s este motorul de stocare stabilit implicit pe acest server MySQL."
#: db_structure.php:524 db_structure.php:541 db_structure.php:542
#: libraries/display_tbl.lib.php:2081 libraries/display_tbl.lib.php:2086
#: libraries/mult_submits.inc.php:16 server_databases.php:346
-#: server_databases.php:351 server_privileges.php:1557 tbl_structure.php:455
+#: server_databases.php:351 server_privileges.php:1596 tbl_structure.php:455
#: tbl_structure.php:464
msgid "With selected:"
msgstr "Cele bifate:"
#: db_structure.php:527 libraries/display_tbl.lib.php:2076
-#: server_databases.php:348 server_privileges.php:530
-#: server_privileges.php:1560 tbl_structure.php:458
+#: server_databases.php:348 server_privileges.php:569
+#: server_privileges.php:1599 tbl_structure.php:458
msgid "Check All"
msgstr "Marchează toate"
#: db_structure.php:531 libraries/display_tbl.lib.php:2077
#: libraries/replication_gui.lib.php:33 server_databases.php:350
-#: server_privileges.php:533 server_privileges.php:1564 tbl_structure.php:462
+#: server_privileges.php:572 server_privileges.php:1603 tbl_structure.php:462
msgid "Uncheck All"
msgstr "Demarchează toate"
@@ -702,7 +702,7 @@ msgstr "Analizare tabel"
#: libraries/display_export.lib.php:83 libraries/display_tbl.lib.php:2094
#: libraries/display_tbl.lib.php:2225 libraries/mult_submits.inc.php:62
#: libraries/server_links.inc.php:84 libraries/tbl_links.inc.php:82
-#: pmd_pdf.php:84 pmd_pdf.php:109 server_privileges.php:1341
+#: pmd_pdf.php:84 pmd_pdf.php:109 server_privileges.php:1380
#: setup/frames/menu.inc.php:22 tbl_row_action.php:59
msgid "Export"
msgstr "Exportă"
@@ -721,8 +721,8 @@ msgstr "Tabelele urmărite"
#: libraries/export/sql.php:342 libraries/export/texytext.php:84
#: libraries/export/xml.php:255 libraries/header.inc.php:106
#: libraries/header_printview.inc.php:58 server_databases.php:169
-#: server_privileges.php:1621 server_privileges.php:1682
-#: server_privileges.php:1940 server_processlist.php:56
+#: server_privileges.php:1660 server_privileges.php:1721
+#: server_privileges.php:1979 server_processlist.php:56
#: server_synchronize.php:1179 server_synchronize.php:1183
#: tbl_tracking.php:591 test/theme.php:65
msgid "Database"
@@ -742,8 +742,8 @@ msgstr "Actualizat(ă)"
#: db_tracking.php:77 libraries/Index.class.php:440
#: libraries/db_structure.lib.php:53 server_databases.php:203
-#: server_privileges.php:1503 server_privileges.php:1686
-#: server_privileges.php:2034 tbl_structure.php:187
+#: server_privileges.php:1542 server_privileges.php:1725
+#: server_privileges.php:2073 tbl_structure.php:187
msgid "Action"
msgstr "Acțiune"
@@ -955,11 +955,11 @@ msgstr "Numele gazdei este gol!"
msgid "The user name is empty!"
msgstr "Numele de utilizator este gol!"
-#: js/messages.php:44 server_privileges.php:1197 user_password.php:70
+#: js/messages.php:44 server_privileges.php:1236 user_password.php:70
msgid "The password is empty!"
msgstr "Parola este goală!"
-#: js/messages.php:45 server_privileges.php:1195 user_password.php:73
+#: js/messages.php:45 server_privileges.php:1234 user_password.php:73
msgid "The passwords aren't the same!"
msgstr "Parolele nu corespund!"
@@ -1037,8 +1037,8 @@ msgid "Prev"
msgstr "Anterior"
#. l10n: Display text for next month link in calendar
-#: js/messages.php:77 libraries/common.lib.php:2344
-#: libraries/common.lib.php:2347 libraries/display_tbl.lib.php:338
+#: js/messages.php:77 libraries/common.lib.php:2353
+#: libraries/common.lib.php:2356 libraries/display_tbl.lib.php:338
#: server_binlog.php:205 server_binlog.php:207 tbl_printview.php:424
#: tbl_structure.php:801
msgid "Next"
@@ -1114,27 +1114,27 @@ msgid "December"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:97 libraries/common.lib.php:1555
+#: js/messages.php:97 libraries/common.lib.php:1557
msgid "Jan"
msgstr "Ian"
#. l10n: Short month name
-#: js/messages.php:99 libraries/common.lib.php:1557
+#: js/messages.php:99 libraries/common.lib.php:1559
msgid "Feb"
msgstr "Feb"
#. l10n: Short month name
-#: js/messages.php:101 libraries/common.lib.php:1559
+#: js/messages.php:101 libraries/common.lib.php:1561
msgid "Mar"
msgstr "Mar"
#. l10n: Short month name
-#: js/messages.php:103 libraries/common.lib.php:1561
+#: js/messages.php:103 libraries/common.lib.php:1563
msgid "Apr"
msgstr "Apr"
#. l10n: Short month name
-#: js/messages.php:105 libraries/common.lib.php:1563
+#: js/messages.php:105 libraries/common.lib.php:1565
#, fuzzy
#| msgid "May"
msgctxt "Short month name"
@@ -1142,37 +1142,37 @@ msgid "May"
msgstr "Mai"
#. l10n: Short month name
-#: js/messages.php:107 libraries/common.lib.php:1565
+#: js/messages.php:107 libraries/common.lib.php:1567
msgid "Jun"
msgstr "Iun"
#. l10n: Short month name
-#: js/messages.php:109 libraries/common.lib.php:1567
+#: js/messages.php:109 libraries/common.lib.php:1569
msgid "Jul"
msgstr "Iul"
#. l10n: Short month name
-#: js/messages.php:111 libraries/common.lib.php:1569
+#: js/messages.php:111 libraries/common.lib.php:1571
msgid "Aug"
msgstr "Aug"
#. l10n: Short month name
-#: js/messages.php:113 libraries/common.lib.php:1571
+#: js/messages.php:113 libraries/common.lib.php:1573
msgid "Sep"
msgstr "Sep"
#. l10n: Short month name
-#: js/messages.php:115 libraries/common.lib.php:1573
+#: js/messages.php:115 libraries/common.lib.php:1575
msgid "Oct"
msgstr "Oct"
#. l10n: Short month name
-#: js/messages.php:117 libraries/common.lib.php:1575
+#: js/messages.php:117 libraries/common.lib.php:1577
msgid "Nov"
msgstr "Noi"
#. l10n: Short month name
-#: js/messages.php:119 libraries/common.lib.php:1577
+#: js/messages.php:119 libraries/common.lib.php:1579
msgid "Dec"
msgstr "Dec"
@@ -1213,37 +1213,37 @@ msgid "Saturday"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:132 libraries/common.lib.php:1580
+#: js/messages.php:132 libraries/common.lib.php:1582
msgid "Sun"
msgstr "Dum"
#. l10n: Short week day name
-#: js/messages.php:134 libraries/common.lib.php:1582
+#: js/messages.php:134 libraries/common.lib.php:1584
msgid "Mon"
msgstr "Lun"
#. l10n: Short week day name
-#: js/messages.php:136 libraries/common.lib.php:1584
+#: js/messages.php:136 libraries/common.lib.php:1586
msgid "Tue"
msgstr "Mar"
#. l10n: Short week day name
-#: js/messages.php:138 libraries/common.lib.php:1586
+#: js/messages.php:138 libraries/common.lib.php:1588
msgid "Wed"
msgstr "Mie"
#. l10n: Short week day name
-#: js/messages.php:140 libraries/common.lib.php:1588
+#: js/messages.php:140 libraries/common.lib.php:1590
msgid "Thu"
msgstr "Joi"
#. l10n: Short week day name
-#: js/messages.php:142 libraries/common.lib.php:1590
+#: js/messages.php:142 libraries/common.lib.php:1592
msgid "Fri"
msgstr "Vin"
#. l10n: Short week day name
-#: js/messages.php:144 libraries/common.lib.php:1592
+#: js/messages.php:144 libraries/common.lib.php:1594
msgid "Sat"
msgstr "Sâm"
@@ -1390,7 +1390,7 @@ msgid "Comment"
msgstr "Comentariu"
#: libraries/Index.class.php:466 libraries/common.lib.php:616
-#: libraries/common.lib.php:1199 libraries/display_tbl.lib.php:1117
+#: libraries/common.lib.php:1201 libraries/display_tbl.lib.php:1117
#: libraries/import.lib.php:1087 libraries/import.lib.php:1111
#: pdf_pages.php:285 setup/frames/index.inc.php:124
#: setup/lib/messages.inc.php:352 tbl_row_action.php:69
@@ -1414,7 +1414,7 @@ msgid ""
msgstr "Indecșii %1$s și %2$s par a fi egali și unul din ei poate fi șters."
#: libraries/List_Database.class.php:431 libraries/server_links.inc.php:41
-#: server_databases.php:88 server_privileges.php:1621
+#: server_databases.php:88 server_privileges.php:1660
#: setup/lib/messages.inc.php:110 test/theme.php:93
msgid "Databases"
msgstr "Baze de date"
@@ -1759,7 +1759,7 @@ msgid "Documentation"
msgstr "Documentație"
#: libraries/common.lib.php:595 libraries/header_printview.inc.php:61
-#: server_processlist.php:60 server_status.php:247
+#: server_processlist.php:60 server_status.php:358
msgid "SQL query"
msgstr "Comanda SQL"
@@ -1775,130 +1775,130 @@ msgstr "Explică SQL"
msgid "Skip Explain SQL"
msgstr "Sari peste explicarea SQL"
-#: libraries/common.lib.php:1212
+#: libraries/common.lib.php:1214
msgid "Without PHP Code"
msgstr "fără cod PHP"
-#: libraries/common.lib.php:1215 setup/lib/messages.inc.php:355
+#: libraries/common.lib.php:1217 setup/lib/messages.inc.php:355
msgid "Create PHP Code"
msgstr "Creează cod PHP"
-#: libraries/common.lib.php:1233 server_status.php:341
+#: libraries/common.lib.php:1235 server_status.php:452
#: setup/lib/messages.inc.php:354
msgid "Refresh"
msgstr "Reîncarcă"
-#: libraries/common.lib.php:1242
+#: libraries/common.lib.php:1244
msgid "Skip Validate SQL"
msgstr "Sari peste validarea SQL"
-#: libraries/common.lib.php:1245 setup/lib/messages.inc.php:356 sql.php:518
+#: libraries/common.lib.php:1247 setup/lib/messages.inc.php:356 sql.php:518
msgid "Validate SQL"
msgstr "Validează SQL"
-#: libraries/common.lib.php:1276
+#: libraries/common.lib.php:1278
msgid "Inline edit of this query"
msgstr ""
-#: libraries/common.lib.php:1278
+#: libraries/common.lib.php:1280
#, fuzzy
#| msgid "Engines"
msgid "Inline"
msgstr "Motoare"
-#: libraries/common.lib.php:1332 libraries/common.lib.php:1347
+#: libraries/common.lib.php:1334 libraries/common.lib.php:1349
msgid "Profiling"
msgstr "Creare profil"
-#: libraries/common.lib.php:1351 libraries/tbl_triggers.lib.php:28
+#: libraries/common.lib.php:1353 libraries/tbl_triggers.lib.php:28
#: server_processlist.php:58
msgid "Time"
msgstr "Timp"
#. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "B"
msgstr "octeți"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "KiB"
msgstr "KiO"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "MiB"
msgstr "MiO"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "GiB"
msgstr "GiO"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "TiB"
msgstr "TiO"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "PiB"
msgstr "PiO"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "EiB"
msgstr "EiO"
#. l10n: Thousands separator
-#: libraries/common.lib.php:1417
+#: libraries/common.lib.php:1419
msgid ","
msgstr ","
#. l10n: Decimal separator
-#: libraries/common.lib.php:1419
+#: libraries/common.lib.php:1421
msgid "."
msgstr "."
#. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string
-#: libraries/common.lib.php:1596
+#: libraries/common.lib.php:1598
#: libraries/transformations/text_plain__dateformat.inc.php:34
msgid "%B %d, %Y at %I:%M %p"
msgstr "%d %B %Y la %H:%M"
-#: libraries/common.lib.php:1898
+#: libraries/common.lib.php:1907
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "%s zile, %s ore, %s minute și %s secunde"
-#: libraries/common.lib.php:2313 libraries/common.lib.php:2316
-#: libraries/display_tbl.lib.php:290 server_status.php:608
+#: libraries/common.lib.php:2322 libraries/common.lib.php:2325
+#: libraries/display_tbl.lib.php:290 server_status.php:719
msgid "Begin"
msgstr "Începe"
-#: libraries/common.lib.php:2314 libraries/common.lib.php:2317
+#: libraries/common.lib.php:2323 libraries/common.lib.php:2326
#: libraries/display_tbl.lib.php:291 server_binlog.php:168
#: server_binlog.php:170
msgid "Previous"
msgstr "Anterior"
-#: libraries/common.lib.php:2345 libraries/common.lib.php:2348
+#: libraries/common.lib.php:2354 libraries/common.lib.php:2357
#: libraries/display_tbl.lib.php:353
msgid "End"
msgstr "Sfîrșit"
-#: libraries/common.lib.php:2421
+#: libraries/common.lib.php:2430
#, php-format
msgid "Jump to database "%s"."
msgstr "Sari la baza de date "%s"."
-#: libraries/common.lib.php:2441
+#: libraries/common.lib.php:2450
#, 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/common.lib.php:2821 libraries/common.lib.php:2828
+#: libraries/common.lib.php:2830 libraries/common.lib.php:2837
#: libraries/db_links.inc.php:68 libraries/export/sql.php:25
#: libraries/import/sql.php:18 libraries/server_links.inc.php:45
#: libraries/tbl_links.inc.php:60 querywindow.php:99 test/theme.php:97
msgid "SQL"
msgstr "SQL"
-#: libraries/common.lib.php:2830 libraries/db_links.inc.php:104
+#: libraries/common.lib.php:2839 libraries/db_links.inc.php:104
#: libraries/tbl_links.inc.php:95 libraries/tbl_links.inc.php:117
#: view_operations.php:89
msgid "Operations"
@@ -1954,8 +1954,8 @@ msgid "Import"
msgstr "Importă"
#: libraries/db_links.inc.php:111 libraries/server_links.inc.php:66
-#: server_privileges.php:72 server_privileges.php:1683
-#: server_privileges.php:2032 test/theme.php:117
+#: server_privileges.php:111 server_privileges.php:1722
+#: server_privileges.php:2071 test/theme.php:117
msgid "Privileges"
msgstr "Drepturi de acces"
@@ -2001,22 +2001,22 @@ msgid "Change password"
msgstr "Schimbare parolă"
#: libraries/display_change_password.lib.php:35
-#: libraries/replication_gui.lib.php:345 server_privileges.php:768
+#: libraries/replication_gui.lib.php:345 server_privileges.php:807
msgid "No Password"
msgstr "Nu există parolă"
#: libraries/display_change_password.lib.php:41
#: libraries/replication_gui.lib.php:59 libraries/replication_gui.lib.php:60
#: libraries/replication_gui.lib.php:335 libraries/replication_gui.lib.php:339
-#: libraries/replication_gui.lib.php:349 server_privileges.php:757
-#: server_privileges.php:761 server_privileges.php:772
-#: server_privileges.php:1499 server_synchronize.php:1175
+#: libraries/replication_gui.lib.php:349 server_privileges.php:796
+#: server_privileges.php:800 server_privileges.php:811
+#: server_privileges.php:1538 server_synchronize.php:1175
msgid "Password"
msgstr "Parola"
#: libraries/display_change_password.lib.php:46
#: libraries/replication_gui.lib.php:353 libraries/replication_gui.lib.php:356
-#: server_privileges.php:776 server_privileges.php:779
+#: server_privileges.php:815 server_privileges.php:818
msgid "Re-type"
msgstr "Re-tastează"
@@ -2031,12 +2031,12 @@ msgid "MySQL 4.0 compatible"
msgstr "Compatibil MySQL 4.0"
#: libraries/display_change_password.lib.php:72
-#: libraries/replication_gui.lib.php:360 server_privileges.php:783
+#: libraries/replication_gui.lib.php:360 server_privileges.php:822
msgid "Generate Password"
msgstr "Generează parolă"
#: libraries/display_change_password.lib.php:75
-#: libraries/replication_gui.lib.php:363 server_privileges.php:786
+#: libraries/replication_gui.lib.php:363 server_privileges.php:825
msgid "Generate"
msgstr "Generează"
@@ -2049,8 +2049,8 @@ msgstr "Creează bază de date nouă"
msgid "Create"
msgstr "Creează"
-#: libraries/display_create_database.lib.php:40 server_privileges.php:74
-#: server_privileges.php:1388 server_replication.php:35
+#: libraries/display_create_database.lib.php:40 server_privileges.php:113
+#: server_privileges.php:1427 server_replication.php:35
msgid "No Privileges"
msgstr "Nu există drepturi de acces"
@@ -2143,7 +2143,7 @@ msgstr "Compresie"
#: libraries/display_export.lib.php:240 libraries/display_import.lib.php:197
#: libraries/display_import.lib.php:210 libraries/display_tbl.lib.php:530
#: libraries/export/sql.php:868 libraries/tbl_properties.inc.php:575
-#: server_privileges.php:1836 server_processlist.php:75
+#: server_privileges.php:1875 server_processlist.php:75
msgid "None"
msgstr "Nici unul(a)"
@@ -2470,7 +2470,7 @@ msgstr ""
msgid "Buffer Pool"
msgstr "Buffer Pool"
-#: libraries/engines/innodb.lib.php:145 server_status.php:306
+#: libraries/engines/innodb.lib.php:145 server_status.php:417
msgid "InnoDB Status"
msgstr "Stare InnoDB"
@@ -2479,8 +2479,8 @@ msgid "Buffer Pool Usage"
msgstr "Buffer Pool Usage"
#: libraries/engines/innodb.lib.php:194 server_databases.php:137
-#: server_databases.php:305 server_status.php:414 server_status.php:475
-#: server_status.php:496 tbl_printview.php:351 tbl_structure.php:696
+#: server_databases.php:305 server_status.php:525 server_status.php:586
+#: server_status.php:607 tbl_printview.php:351 tbl_structure.php:696
msgid "Total"
msgstr "Total"
@@ -2839,7 +2839,7 @@ msgstr "Microsoft Word 2000"
#: libraries/export/latex.php:201 libraries/export/odt.php:48
#: libraries/export/sql.php:106 libraries/export/sql.php:868
#: libraries/export/texytext.php:27 server_databases.php:127
-#: server_privileges.php:537 server_replication.php:316 tbl_printview.php:317
+#: server_privileges.php:576 server_replication.php:316 tbl_printview.php:317
#: tbl_structure.php:665
msgid "Data"
msgstr "Date"
@@ -2889,9 +2889,9 @@ msgstr "Tip MIME"
#: libraries/export/xml.php:102 libraries/header_printview.inc.php:57
#: libraries/replication_gui.lib.php:63 libraries/replication_gui.lib.php:174
#: libraries/replication_gui.lib.php:269 libraries/replication_gui.lib.php:272
-#: libraries/replication_gui.lib.php:329 server_privileges.php:692
-#: server_privileges.php:695 server_privileges.php:751
-#: server_privileges.php:1498 server_privileges.php:2030
+#: libraries/replication_gui.lib.php:329 server_privileges.php:731
+#: server_privileges.php:734 server_privileges.php:790
+#: server_privileges.php:1537 server_privileges.php:2069
#: server_processlist.php:55 server_synchronize.php:1159
msgid "Host"
msgstr "Gazda"
@@ -3251,858 +3251,6 @@ msgstr "Nici unul(a)"
msgid "Convert to Kana"
msgstr ""
-#. l10n: Text direction, use either ltr or rtl
-#: libraries/messages.inc.php:19
-msgid "ltr"
-msgstr "ltr"
-
-#: libraries/messages.inc.php:21
-msgid "Content of table __TABLE__"
-msgstr "Conținutul tabelului __TABLE__"
-
-#: libraries/messages.inc.php:22
-msgid "(continued)"
-msgstr "(continuare)"
-
-#: libraries/messages.inc.php:23
-msgid "Structure of table __TABLE__"
-msgstr "Structura tabelului __TABLE__"
-
-#: libraries/messages.inc.php:25 server_privileges.php:227
-msgid "Includes all privileges except GRANT."
-msgstr "Include toate privilegiile, excluzand GRANT."
-
-#: libraries/messages.inc.php:26 server_privileges.php:153
-#: server_privileges.php:476
-msgid "Allows altering the structure of existing tables."
-msgstr "Permite alterarea structurii la tabelele deja existente."
-
-#: libraries/messages.inc.php:27 server_privileges.php:169
-#: server_privileges.php:482
-msgid "Allows altering and dropping stored routines."
-msgstr "Permite alterarea și aruncarea rutinelor stocate."
-
-#: libraries/messages.inc.php:28 server_privileges.php:145
-#: server_privileges.php:475
-msgid "Allows creating new databases and tables."
-msgstr "Permite crearea de noi baze de date și tabele."
-
-#: libraries/messages.inc.php:29 server_privileges.php:168
-#: server_privileges.php:481
-msgid "Allows creating stored routines."
-msgstr "Permite crearea rutinelor stocate."
-
-#: libraries/messages.inc.php:30 server_privileges.php:475
-msgid "Allows creating new tables."
-msgstr "Permite crearea de noi tabele."
-
-#: libraries/messages.inc.php:31 server_privileges.php:156
-#: server_privileges.php:479
-msgid "Allows creating temporary tables."
-msgstr "Permite crearea de tabele temporare."
-
-#: libraries/messages.inc.php:32 server_privileges.php:170
-#: server_privileges.php:515
-msgid "Allows creating, dropping and renaming user accounts."
-msgstr "Permite crearea, aruncarea și redenumirea conturilor de utilizator."
-
-#: libraries/messages.inc.php:33 server_privileges.php:160
-#: server_privileges.php:164 server_privileges.php:487
-#: server_privileges.php:491
-msgid "Allows creating new views."
-msgstr "Permite crearea noilor viziuni."
-
-#: libraries/messages.inc.php:34 server_privileges.php:144
-#: server_privileges.php:467
-msgid "Allows deleting data."
-msgstr "Permite stergere de date."
-
-#: libraries/messages.inc.php:35 server_privileges.php:146
-#: server_privileges.php:478
-msgid "Allows dropping databases and tables."
-msgstr "Permite stergerea unei baze de date sau a unor tabele."
-
-#: libraries/messages.inc.php:36 server_privileges.php:478
-msgid "Allows dropping tables."
-msgstr "Permite aruncarea a unei baze de date."
-
-#: libraries/messages.inc.php:37 server_privileges.php:161
-#: server_privileges.php:495
-msgid "Allows to set up events for the event scheduler"
-msgstr "Permite configurarea evenimentelor pentru planificatorul de evenimente"
-
-#: libraries/messages.inc.php:38 server_privileges.php:171
-#: server_privileges.php:483
-msgid "Allows executing stored routines."
-msgstr "Permite executarea rutinelor stocate."
-
-#: libraries/messages.inc.php:39 server_privileges.php:150
-#: server_privileges.php:470
-msgid "Allows importing data from and exporting data into files."
-msgstr ""
-"Permite importarea datelor in fisiere și exportarea acestora din fisiere."
-
-#: libraries/messages.inc.php:40 server_privileges.php:501
-msgid ""
-"Allows adding users and privileges without reloading the privilege tables."
-msgstr ""
-"Permite adaugarea utilizatorilor și drepturilor fara reincarcarea tabelelor "
-"de drepturi."
-
-#: libraries/messages.inc.php:41 server_privileges.php:152
-#: server_privileges.php:477
-msgid "Allows creating and dropping indexes."
-msgstr "Permite crearea și stergerea indexurilor."
-
-#: libraries/messages.inc.php:42 server_privileges.php:142
-#: server_privileges.php:403 server_privileges.php:465
-msgid "Allows inserting and replacing data."
-msgstr "Permite inserarea și înlocuirea datelor."
-
-#: libraries/messages.inc.php:43 server_privileges.php:157
-#: server_privileges.php:510
-msgid "Allows locking tables for the current thread."
-msgstr "Permite blocarea tabelelor din firul curent de execuție."
-
-#: libraries/messages.inc.php:44 server_privileges.php:607
-#: server_privileges.php:609
-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/messages.inc.php:45 server_privileges.php:595
-#: server_privileges.php:597
-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/messages.inc.php:46 server_privileges.php:601
-#: server_privileges.php:603
-msgid ""
-"Limits the number of commands that change any table or database the user may "
-"execute per hour."
-msgstr ""
-"Limitează numărul de comenzi pentru schimbarea vreunui tabel sau vreunei "
-"baze de date executabile de utilizator într-o oră."
-
-#: libraries/messages.inc.php:47 server_privileges.php:613
-#: server_privileges.php:615
-msgid "Limits the number of simultaneous connections the user may have."
-msgstr ""
-"Limitează numărul conexiunilor simultane pe care le poate avea utilizatorul."
-
-#: libraries/messages.inc.php:48 server_privileges.php:149
-#: server_privileges.php:505
-msgid "Allows viewing processes of all users"
-msgstr "Permite vizualizarea proceselor tuturor utilizatorilor"
-
-#: libraries/messages.inc.php:49 server_privileges.php:151
-#: server_privileges.php:409 server_privileges.php:511
-msgid "Has no effect in this MySQL version."
-msgstr "Nu are efect în această versiune MySQL."
-
-#: libraries/messages.inc.php:50 server_privileges.php:147
-#: server_privileges.php:506
-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/messages.inc.php:51 server_privileges.php:159
-#: server_privileges.php:513
-msgid "Allows the user to ask where the slaves / masters are."
-msgstr "Permite utilizatorului de a interoga locația slave/master."
-
-#: libraries/messages.inc.php:52 server_privileges.php:158
-#: server_privileges.php:514
-msgid "Needed for the replication slaves."
-msgstr "Necesară pentru „slave replication”."
-
-#: libraries/messages.inc.php:53 server_privileges.php:141
-#: server_privileges.php:400 server_privileges.php:464
-msgid "Allows reading data."
-msgstr "Permite citirea datelor."
-
-#: libraries/messages.inc.php:54 server_privileges.php:154
-#: server_privileges.php:508
-msgid "Gives access to the complete list of databases."
-msgstr "Permite accesul la lista completă a bazelor de date."
-
-#: libraries/messages.inc.php:55 server_privileges.php:165
-#: server_privileges.php:167 server_privileges.php:480
-msgid "Allows performing SHOW CREATE VIEW queries."
-msgstr "Permite executarea interogărilor SHOW CREATE VIEW."
-
-#: libraries/messages.inc.php:56 server_privileges.php:148
-#: server_privileges.php:507
-msgid "Allows shutting down the server."
-msgstr "Permite oprirea serverului."
-
-#: libraries/messages.inc.php:57 server_privileges.php:155
-#: server_privileges.php:504
-msgid ""
-"Allows connecting, even if maximum number of connections is reached; "
-"required for most administrative operations like setting global variables or "
-"killing threads of other users."
-msgstr ""
-"Permite conexiuni, chiar dacă s-a atins numărul maxim de conexiuni; Necesară "
-"pentru majoritatea operațiunilor administrative, cum ar fi setarea "
-"variabilelor globale sau oprirea firelor de execuție a altor utilizatori."
-
-#: libraries/messages.inc.php:58 server_privileges.php:162
-#: server_privileges.php:496
-msgid "Allows creating and dropping triggers"
-msgstr "Permite crearea și eliminarea declanșatorilor"
-
-#: libraries/messages.inc.php:59 server_privileges.php:143
-#: server_privileges.php:406 server_privileges.php:466
-msgid "Allows changing data."
-msgstr "Permite schimbarea datelor."
-
-#: libraries/messages.inc.php:60 server_privileges.php:221
-msgid "No privileges."
-msgstr "Fără drepturi."
-
-#: libraries/messages.inc.php:62
-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 ""
-"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."
-
-#: libraries/messages.inc.php:63
-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/messages.inc.php:64
-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 "
-"to increase the tmp_table_size value to cause temporary tables to be memory-"
-"based instead of disk-based."
-msgstr ""
-"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 "
-"to increase the tmp_table_size value to cause temporary tables to be memory-"
-"based instead of disk-based."
-
-#: libraries/messages.inc.php:65
-msgid "How many temporary files mysqld has created."
-msgstr "Cîte fișiere temporare a creat mysqld."
-
-#: libraries/messages.inc.php:66
-msgid ""
-"The number of in-memory temporary tables created automatically by the server "
-"while executing statements."
-msgstr ""
-"The number of in-memory temporary tables created automatically by the server "
-"while executing statements."
-
-#: libraries/messages.inc.php:67
-msgid ""
-"The number of rows written with INSERT DELAYED for which some error occurred "
-"(probably duplicate key)."
-msgstr ""
-"The number of rows written with INSERT DELAYED for which some error occurred "
-"(probably duplicate key)."
-
-#: libraries/messages.inc.php:68
-msgid ""
-"The number of INSERT DELAYED handler threads in use. Every different table "
-"on which one uses INSERT DELAYED gets its own thread."
-msgstr ""
-"The number of INSERT DELAYED handler threads in use. Every different table "
-"on which one uses INSERT DELAYED gets its own thread."
-
-#: libraries/messages.inc.php:69
-msgid "The number of INSERT DELAYED rows written."
-msgstr "The number of INSERT DELAYED rows written."
-
-#: libraries/messages.inc.php:70
-msgid "The number of executed FLUSH statements."
-msgstr "The number of executed FLUSH statements."
-
-#: libraries/messages.inc.php:71
-msgid "The number of internal COMMIT statements."
-msgstr "The number of internal COMMIT statements."
-
-#: libraries/messages.inc.php:72
-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/messages.inc.php:73
-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 ""
-"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."
-
-#: libraries/messages.inc.php:74
-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 ""
-"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."
-
-#: libraries/messages.inc.php:75
-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 ""
-"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/messages.inc.php:76
-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 ""
-"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."
-
-#: libraries/messages.inc.php:77
-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 ""
-"The number of requests to read the previous row in key order. This read "
-"method is mainly used to optimize ORDER BY ... DESC."
-
-#: libraries/messages.inc.php:78
-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 "
-"probably have a lot of queries that require MySQL to scan whole tables or "
-"you have joins that don't use keys properly."
-msgstr ""
-"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 "
-"probably have a lot of queries that require MySQL to scan whole tables or "
-"you have joins that don't use keys properly."
-
-#: libraries/messages.inc.php:79
-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 "
-"tables are not properly indexed or that your queries are not written to take "
-"advantage of the indexes you have."
-msgstr ""
-"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 "
-"tables are not properly indexed or that your queries are not written to take "
-"advantage of the indexes you have."
-
-#: libraries/messages.inc.php:80
-msgid "The number of internal ROLLBACK statements."
-msgstr "The number of internal ROLLBACK statements."
-
-#: libraries/messages.inc.php:81
-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/messages.inc.php:82
-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/messages.inc.php:83
-msgid "The number of pages containing data (dirty or clean)."
-msgstr "Numărul de pagini conținînd date (curate sau murdare)."
-
-#: libraries/messages.inc.php:84
-msgid "The number of pages currently dirty."
-msgstr "Numărul de pagini actualmente murdare."
-
-#: libraries/messages.inc.php:85
-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/messages.inc.php:86
-msgid "The number of free pages."
-msgstr "Numărul de pagini libere."
-
-#: libraries/messages.inc.php:87
-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 ""
-"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."
-
-#: libraries/messages.inc.php:88
-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 "
-"be calculated as Innodb_buffer_pool_pages_total - "
-"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data."
-msgstr ""
-"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 "
-"be calculated as Innodb_buffer_pool_pages_total - "
-"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data."
-
-#: libraries/messages.inc.php:89
-msgid "Total size of buffer pool, in pages."
-msgstr "Total size of buffer pool, in pages."
-
-#: libraries/messages.inc.php:90
-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 ""
-"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/messages.inc.php:91
-msgid ""
-"The number of sequential read-aheads InnoDB initiated. This happens when "
-"InnoDB does a sequential full table scan."
-msgstr ""
-"The number of sequential read-aheads InnoDB initiated. This happens when "
-"InnoDB does a sequential full table scan."
-
-#: libraries/messages.inc.php:92
-msgid "The number of logical read requests InnoDB has done."
-msgstr "The number of logical read requests InnoDB has done."
-
-#: libraries/messages.inc.php:93
-msgid ""
-"The number of logical reads that InnoDB could not satisfy from buffer pool "
-"and had to do a single-page read."
-msgstr ""
-"The number of logical reads that InnoDB could not satisfy from buffer pool "
-"and had to do a single-page read."
-
-#: libraries/messages.inc.php:94
-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 "
-"available, it's necessary to wait for pages to be flushed first. This "
-"counter counts instances of these waits. If the buffer pool size was set "
-"properly, this value should be small."
-msgstr ""
-"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 "
-"available, it's necessary to wait for pages to be flushed first. This "
-"counter counts instances of these waits. If the buffer pool size was set "
-"properly, this value should be small."
-
-#: libraries/messages.inc.php:95
-msgid "The number writes done to the InnoDB buffer pool."
-msgstr "The number writes done to the InnoDB buffer pool."
-
-#: libraries/messages.inc.php:96
-msgid "The number of fsync() operations so far."
-msgstr "The number of fsync() operations so far."
-
-#: libraries/messages.inc.php:97
-msgid "The current number of pending fsync() operations."
-msgstr "The current number of pending fsync() operations."
-
-#: libraries/messages.inc.php:98
-msgid "The current number of pending reads."
-msgstr "The current number of pending reads."
-
-#: libraries/messages.inc.php:99
-msgid "The current number of pending writes."
-msgstr "The current number of pending writes."
-
-#: libraries/messages.inc.php:100
-msgid "The amount of data read so far, in bytes."
-msgstr "The amount of data read so far, in bytes."
-
-#: libraries/messages.inc.php:101
-msgid "The total number of data reads."
-msgstr "The total number of data reads."
-
-#: libraries/messages.inc.php:102
-msgid "The total number of data writes."
-msgstr "The total number of data writes."
-
-#: libraries/messages.inc.php:103
-msgid "The amount of data written so far, in bytes."
-msgstr "The amount of data written so far, in bytes."
-
-#: libraries/messages.inc.php:104
-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/messages.inc.php:105
-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/messages.inc.php:106
-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 ""
-"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/messages.inc.php:107
-msgid "The number of log write requests."
-msgstr "The number of log write requests."
-
-#: libraries/messages.inc.php:108
-msgid "The number of physical writes to the log file."
-msgstr "The number of physical writes to the log file."
-
-#: libraries/messages.inc.php:109
-msgid "The number of fsync() writes done to the log file."
-msgstr "The number of fsyncs writes done to the log file."
-
-#: libraries/messages.inc.php:110
-msgid "The number of pending log file fsyncs."
-msgstr "The number of pending log file fsyncs."
-
-#: libraries/messages.inc.php:111
-msgid "Pending log file writes."
-msgstr "Pending log file writes."
-
-#: libraries/messages.inc.php:112
-msgid "The number of bytes written to the log file."
-msgstr "The number of bytes written to the log file."
-
-#: libraries/messages.inc.php:113
-msgid "The number of pages created."
-msgstr "Numărul de pagini create."
-
-#: libraries/messages.inc.php:114
-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 ""
-"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/messages.inc.php:115
-msgid "The number of pages read."
-msgstr "Numărul de pagini citite."
-
-#: libraries/messages.inc.php:116
-msgid "The number of pages written."
-msgstr "Numărul de pagini scrise."
-
-#: libraries/messages.inc.php:117
-msgid "The number of row locks currently being waited for."
-msgstr "The number of row locks currently being waited for."
-
-#: libraries/messages.inc.php:118
-msgid "The average time to acquire a row lock, in milliseconds."
-msgstr "The average time to acquire a row lock, in milliseconds."
-
-#: libraries/messages.inc.php:119
-msgid "The total time spent in acquiring row locks, in milliseconds."
-msgstr "The total time spent in acquiring row locks, in milliseconds."
-
-#: libraries/messages.inc.php:120
-msgid "The maximum time to acquire a row lock, in milliseconds."
-msgstr "The maximum time to acquire a row lock, in milliseconds."
-
-#: libraries/messages.inc.php:121
-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/messages.inc.php:122
-msgid "The number of rows deleted from InnoDB tables."
-msgstr "The number of rows deleted from InnoDB tables."
-
-#: libraries/messages.inc.php:123
-msgid "The number of rows inserted in InnoDB tables."
-msgstr "The number of rows inserted in InnoDB tables."
-
-#: libraries/messages.inc.php:124
-msgid "The number of rows read from InnoDB tables."
-msgstr "Numărul de rînduri citite din tabelele InnoDB."
-
-#: libraries/messages.inc.php:125
-msgid "The number of rows updated in InnoDB tables."
-msgstr "Numărul de rînduri actualizate în tabelele InnoDB."
-
-#: libraries/messages.inc.php:126
-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 ""
-"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/messages.inc.php:127
-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 ""
-"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/messages.inc.php:128
-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 ""
-"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."
-
-#: libraries/messages.inc.php:129
-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/messages.inc.php:130
-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 ""
-"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."
-
-#: libraries/messages.inc.php:131
-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/messages.inc.php:132
-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/messages.inc.php:133
-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 ""
-"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."
-
-#: libraries/messages.inc.php:134
-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/messages.inc.php:135
-msgid ""
-"The number of tables that have been opened. If opened tables is big, your "
-"table cache value is probably too small."
-msgstr ""
-"The number of tables that have been opened. If opened tables is big, your "
-"table cache value is probably too small."
-
-#: libraries/messages.inc.php:136
-msgid "The number of files that are open."
-msgstr "The number of files that are open."
-
-#: libraries/messages.inc.php:137
-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/messages.inc.php:138
-msgid "The number of tables that are open."
-msgstr "Numărul de tabele ce sînt deschise."
-
-#: libraries/messages.inc.php:139
-msgid "The number of free memory blocks in query cache."
-msgstr "The number of free memory blocks in query cache."
-
-#: libraries/messages.inc.php:140
-msgid "The amount of free memory for query cache."
-msgstr "The amount of free memory for query cache."
-
-#: libraries/messages.inc.php:141
-msgid "The number of cache hits."
-msgstr "Numărul de nimeriri în cache."
-
-#: libraries/messages.inc.php:142
-msgid "The number of queries added to the cache."
-msgstr "Numărul de interogări adăugate la cache."
-
-#: libraries/messages.inc.php:143
-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 "
-"cache size. The query cache uses a least recently used (LRU) strategy to "
-"decide which queries to remove from the cache."
-msgstr ""
-"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 "
-"cache size. The query cache uses a least recently used (LRU) strategy to "
-"decide which queries to remove from the cache."
-
-#: libraries/messages.inc.php:144
-msgid ""
-"The number of non-cached queries (not cachable, or not cached due to the "
-"query_cache_type setting)."
-msgstr ""
-"The number of non-cached queries (not cachable, or not cached due to the "
-"query_cache_type setting)."
-
-#: libraries/messages.inc.php:145
-msgid "The number of queries registered in the cache."
-msgstr "Numărul de interogări înregistrate în cache."
-
-#: libraries/messages.inc.php:146
-msgid "The total number of blocks in the query cache."
-msgstr "Numărul total de blocuri în cache-ul interogării."
-
-#: libraries/messages.inc.php:147
-msgctxt "$strShowStatusReset"
-msgid "Reset"
-msgstr "Reinițializare"
-
-#: libraries/messages.inc.php:148
-msgid "The status of failsafe replication (not yet implemented)."
-msgstr "The status of failsafe replication (not yet implemented)."
-
-#: libraries/messages.inc.php:149
-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 ""
-"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/messages.inc.php:150
-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/messages.inc.php:151
-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 ""
-"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/messages.inc.php:152
-msgid ""
-"The number of joins that used ranges on the first table. (It's normally not "
-"critical even if this is big.)"
-msgstr ""
-"The number of joins that used ranges on the first table. (It's normally not "
-"critical even if this is big.)"
-
-#: libraries/messages.inc.php:153
-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/messages.inc.php:154
-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/messages.inc.php:155
-msgid ""
-"Total (since startup) number of times the replication slave SQL thread has "
-"retried transactions."
-msgstr ""
-"Total (since startup) number of times the replication slave SQL thread has "
-"retried transactions."
-
-#: libraries/messages.inc.php:156
-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/messages.inc.php:157
-msgid ""
-"The number of threads that have taken more than slow_launch_time seconds to "
-"create."
-msgstr ""
-"The number of threads that have taken more than slow_launch_time seconds to "
-"create."
-
-#: libraries/messages.inc.php:158
-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/messages.inc.php:159
-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 ""
-"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."
-
-#: libraries/messages.inc.php:160
-msgid "The number of sorts that were done with ranges."
-msgstr "The number of sorts that were done with ranges."
-
-#: libraries/messages.inc.php:161
-msgid "The number of sorted rows."
-msgstr "Numărul de rînduri sortate."
-
-#: libraries/messages.inc.php:162
-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/messages.inc.php:163
-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/messages.inc.php:164
-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 "
-"should first optimize your queries, and then either split your table or "
-"tables or use replication."
-msgstr ""
-"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 "
-"should first optimize your queries, and then either split your table or "
-"tables or use replication."
-
-#: libraries/messages.inc.php:165
-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 ""
-"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."
-
-#: libraries/messages.inc.php:166
-msgid "The number of currently open connections."
-msgstr "Numărul de conexiuni deschise momentan."
-
-#: libraries/messages.inc.php:167
-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 "
-"doesn't give a notable performance improvement if you have a good thread "
-"implementation.)"
-msgstr ""
-"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 "
-"doesn't give a notable performance improvement if you have a good thread "
-"implementation.)"
-
-#: libraries/messages.inc.php:168
-msgid "The number of threads that are not sleeping."
-msgstr "The number of threads that are not sleeping."
-
#: libraries/mult_submits.inc.php:76 libraries/tbl_properties.inc.php:513
#: tbl_structure.php:29 tbl_structure.php:153 tbl_structure.php:157
#: tbl_structure.php:473
@@ -4420,8 +3568,8 @@ msgstr ""
#: libraries/replication_gui.lib.php:55 libraries/replication_gui.lib.php:56
#: libraries/replication_gui.lib.php:249 libraries/replication_gui.lib.php:252
-#: libraries/replication_gui.lib.php:259 server_privileges.php:672
-#: server_privileges.php:675 server_privileges.php:682
+#: libraries/replication_gui.lib.php:259 server_privileges.php:711
+#: server_privileges.php:714 server_privileges.php:721
#: server_synchronize.php:1171
msgid "User name"
msgstr "Nume utilizator"
@@ -4442,11 +3590,11 @@ msgid "Slave status"
msgstr "Afișează stare sclav"
#: libraries/replication_gui.lib.php:114 libraries/sql_query_form.lib.php:445
-#: server_status.php:626 server_variables.php:52
+#: server_status.php:737 server_variables.php:52
msgid "Variable"
msgstr "Variabil"
-#: libraries/replication_gui.lib.php:115 server_status.php:627
+#: libraries/replication_gui.lib.php:115 server_status.php:738
#: tbl_change.php:324 tbl_printview.php:370 tbl_select.php:139
#: tbl_structure.php:729
msgid "Value"
@@ -4466,41 +3614,58 @@ msgstr ""
msgid "Add slave replication user"
msgstr ""
-#: libraries/replication_gui.lib.php:254 server_privileges.php:677
+#: libraries/replication_gui.lib.php:254 server_privileges.php:716
msgid "Any user"
msgstr "Oricare utilizator"
#: libraries/replication_gui.lib.php:255 libraries/replication_gui.lib.php:323
-#: libraries/replication_gui.lib.php:346 server_privileges.php:678
-#: server_privileges.php:745 server_privileges.php:769
-#: server_privileges.php:1889 server_privileges.php:1919
+#: libraries/replication_gui.lib.php:346 server_privileges.php:717
+#: server_privileges.php:784 server_privileges.php:808
+#: server_privileges.php:1928 server_privileges.php:1958
msgid "Use text field"
msgstr "Utilizare cîmp text"
-#: libraries/replication_gui.lib.php:302 server_privileges.php:725
+#: libraries/replication_gui.lib.php:302 server_privileges.php:764
msgid "Any host"
msgstr "Oricare gazdă"
-#: libraries/replication_gui.lib.php:306 server_privileges.php:729
+#: libraries/replication_gui.lib.php:306 server_privileges.php:768
msgid "Local"
msgstr "Local"
-#: libraries/replication_gui.lib.php:312 server_privileges.php:734
+#: libraries/replication_gui.lib.php:312 server_privileges.php:773
msgid "This Host"
msgstr "Această gazdă"
-#: libraries/replication_gui.lib.php:318 server_privileges.php:740
+#: libraries/replication_gui.lib.php:318 server_privileges.php:779
msgid "Use Host Table"
msgstr "Utilizare tabel gazde"
-#: libraries/replication_gui.lib.php:331 server_privileges.php:753
+#: libraries/replication_gui.lib.php:331 server_privileges.php:792
msgid ""
"When Host table is used, this field is ignored and values stored in Host "
"table are used instead."
msgstr ""
-#: libraries/select_lang.lib.php:480 libraries/select_lang.lib.php:486
-#: libraries/select_lang.lib.php:492
+#. l10n: Text direction, use either ltr or rtl
+#: libraries/select_lang.lib.php:491
+msgid "ltr"
+msgstr "ltr"
+
+#: libraries/select_lang.lib.php:493
+msgid "Content of table __TABLE__"
+msgstr "Conținutul tabelului __TABLE__"
+
+#: libraries/select_lang.lib.php:494
+msgid "(continued)"
+msgstr "(continuare)"
+
+#: libraries/select_lang.lib.php:495
+msgid "Structure of table __TABLE__"
+msgstr "Structura tabelului __TABLE__"
+
+#: libraries/select_lang.lib.php:500 libraries/select_lang.lib.php:506
+#: libraries/select_lang.lib.php:512
#, php-format
msgid "Unknown language: %1$s."
msgstr "Limbă necunoscută: %1$s."
@@ -4511,7 +3676,7 @@ msgid "Servers"
msgstr "Servere"
#: libraries/server_links.inc.php:53 server_engines.php:112
-#: server_engines.php:116 server_status.php:304 test/theme.php:105
+#: server_engines.php:116 server_status.php:415 test/theme.php:105
msgid "Variables"
msgstr "Variabile"
@@ -4524,7 +3689,7 @@ msgid "Engines"
msgstr "Motoare"
#: libraries/server_links.inc.php:76 server_binlog.php:110
-#: server_status.php:253 test/theme.php:121
+#: server_status.php:364 test/theme.php:121
msgid "Binary log"
msgstr "Jurnal binar"
@@ -5002,8 +4167,8 @@ msgstr "Resetare"
msgid "Protocol version"
msgstr "Versiune protocol"
-#: main.php:189 server_privileges.php:1350 server_privileges.php:1497
-#: server_privileges.php:1611 server_privileges.php:2029
+#: main.php:189 server_privileges.php:1389 server_privileges.php:1536
+#: server_privileges.php:1650 server_privileges.php:2068
#: server_processlist.php:54
msgid "User"
msgstr "Utilizator"
@@ -5394,7 +4559,7 @@ msgstr "%s baza(ele) de data(e) au fost aruncate."
msgid "Databases statistics"
msgstr "Statisticile bazelor de date"
-#: server_databases.php:117 server_status.php:260
+#: server_databases.php:117 server_status.php:371
#: setup/lib/messages.inc.php:117
msgid "Tables"
msgstr "Tabele"
@@ -5413,6 +4578,16 @@ msgstr ""
msgid "Jump to database"
msgstr "Nu sînt baze de date"
+#: server_databases.php:267
+msgid "Not replicated"
+msgstr ""
+
+#: server_databases.php:273
+#, fuzzy
+#| msgid "Replication"
+msgid "Replicated"
+msgstr "Replicare"
+
#: server_databases.php:289
#, php-format
msgid "Check privileges for database "%s"."
@@ -5446,146 +4621,343 @@ msgstr "Motoare de stocare"
msgid "View dump (schema) of databases"
msgstr "Vizualizarea schemei bazei de date"
-#: server_privileges.php:263 server_privileges.php:264
+#: server_privileges.php:24 server_privileges.php:266
+msgid "Includes all privileges except GRANT."
+msgstr "Include toate privilegiile, excluzand GRANT."
+
+#: server_privileges.php:25 server_privileges.php:192
+#: server_privileges.php:515
+msgid "Allows altering the structure of existing tables."
+msgstr "Permite alterarea structurii la tabelele deja existente."
+
+#: server_privileges.php:26 server_privileges.php:208
+#: server_privileges.php:521
+msgid "Allows altering and dropping stored routines."
+msgstr "Permite alterarea și aruncarea rutinelor stocate."
+
+#: server_privileges.php:27 server_privileges.php:184
+#: server_privileges.php:514
+msgid "Allows creating new databases and tables."
+msgstr "Permite crearea de noi baze de date și tabele."
+
+#: server_privileges.php:28 server_privileges.php:207
+#: server_privileges.php:520
+msgid "Allows creating stored routines."
+msgstr "Permite crearea rutinelor stocate."
+
+#: server_privileges.php:29 server_privileges.php:514
+msgid "Allows creating new tables."
+msgstr "Permite crearea de noi tabele."
+
+#: server_privileges.php:30 server_privileges.php:195
+#: server_privileges.php:518
+msgid "Allows creating temporary tables."
+msgstr "Permite crearea de tabele temporare."
+
+#: server_privileges.php:31 server_privileges.php:209
+#: server_privileges.php:554
+msgid "Allows creating, dropping and renaming user accounts."
+msgstr "Permite crearea, aruncarea și redenumirea conturilor de utilizator."
+
+#: server_privileges.php:32 server_privileges.php:199
+#: server_privileges.php:203 server_privileges.php:526
+#: server_privileges.php:530
+msgid "Allows creating new views."
+msgstr "Permite crearea noilor viziuni."
+
+#: server_privileges.php:33 server_privileges.php:183
+#: server_privileges.php:506
+msgid "Allows deleting data."
+msgstr "Permite stergere de date."
+
+#: server_privileges.php:34 server_privileges.php:185
+#: server_privileges.php:517
+msgid "Allows dropping databases and tables."
+msgstr "Permite stergerea unei baze de date sau a unor tabele."
+
+#: server_privileges.php:35 server_privileges.php:517
+msgid "Allows dropping tables."
+msgstr "Permite aruncarea a unei baze de date."
+
+#: server_privileges.php:36 server_privileges.php:200
+#: server_privileges.php:534
+msgid "Allows to set up events for the event scheduler"
+msgstr "Permite configurarea evenimentelor pentru planificatorul de evenimente"
+
+#: server_privileges.php:37 server_privileges.php:210
+#: server_privileges.php:522
+msgid "Allows executing stored routines."
+msgstr "Permite executarea rutinelor stocate."
+
+#: server_privileges.php:38 server_privileges.php:189
+#: server_privileges.php:509
+msgid "Allows importing data from and exporting data into files."
+msgstr ""
+"Permite importarea datelor in fisiere și exportarea acestora din fisiere."
+
+#: server_privileges.php:39 server_privileges.php:540
+msgid ""
+"Allows adding users and privileges without reloading the privilege tables."
+msgstr ""
+"Permite adaugarea utilizatorilor și drepturilor fara reincarcarea tabelelor "
+"de drepturi."
+
+#: server_privileges.php:40 server_privileges.php:191
+#: server_privileges.php:516
+msgid "Allows creating and dropping indexes."
+msgstr "Permite crearea și stergerea indexurilor."
+
+#: server_privileges.php:41 server_privileges.php:181
+#: server_privileges.php:442 server_privileges.php:504
+msgid "Allows inserting and replacing data."
+msgstr "Permite inserarea și înlocuirea datelor."
+
+#: server_privileges.php:42 server_privileges.php:196
+#: server_privileges.php:549
+msgid "Allows locking tables for the current thread."
+msgstr "Permite blocarea tabelelor din firul curent de execuție."
+
+#: server_privileges.php:43 server_privileges.php:646
+#: server_privileges.php:648
+msgid "Limits the number of new connections the user may open per hour."
+msgstr ""
+"Limitează numărul de noi conexiuni care pot fi deschise de utilizator într-o "
+"oră."
+
+#: server_privileges.php:44 server_privileges.php:634
+#: server_privileges.php:636
+msgid "Limits the number of queries the user may send to the server per hour."
+msgstr ""
+"Limiteaza numarul de comenzi care pot fi trimise de utilizator către server "
+"într-o oră."
+
+#: server_privileges.php:45 server_privileges.php:640
+#: server_privileges.php:642
+msgid ""
+"Limits the number of commands that change any table or database the user may "
+"execute per hour."
+msgstr ""
+"Limitează numărul de comenzi pentru schimbarea vreunui tabel sau vreunei "
+"baze de date executabile de utilizator într-o oră."
+
+#: server_privileges.php:46 server_privileges.php:652
+#: server_privileges.php:654
+msgid "Limits the number of simultaneous connections the user may have."
+msgstr ""
+"Limitează numărul conexiunilor simultane pe care le poate avea utilizatorul."
+
+#: server_privileges.php:47 server_privileges.php:188
+#: server_privileges.php:544
+msgid "Allows viewing processes of all users"
+msgstr "Permite vizualizarea proceselor tuturor utilizatorilor"
+
+#: server_privileges.php:48 server_privileges.php:190
+#: server_privileges.php:448 server_privileges.php:550
+msgid "Has no effect in this MySQL version."
+msgstr "Nu are efect în această versiune MySQL."
+
+#: server_privileges.php:49 server_privileges.php:186
+#: server_privileges.php:545
+msgid "Allows reloading server settings and flushing the server's caches."
+msgstr ""
+"Permite reîncărcarea setărilor de server și golirea memoriei cache a "
+"serverului."
+
+#: server_privileges.php:50 server_privileges.php:198
+#: server_privileges.php:552
+msgid "Allows the user to ask where the slaves / masters are."
+msgstr "Permite utilizatorului de a interoga locația slave/master."
+
+#: server_privileges.php:51 server_privileges.php:197
+#: server_privileges.php:553
+msgid "Needed for the replication slaves."
+msgstr "Necesară pentru „slave replication”."
+
+#: server_privileges.php:52 server_privileges.php:180
+#: server_privileges.php:439 server_privileges.php:503
+msgid "Allows reading data."
+msgstr "Permite citirea datelor."
+
+#: server_privileges.php:53 server_privileges.php:193
+#: server_privileges.php:547
+msgid "Gives access to the complete list of databases."
+msgstr "Permite accesul la lista completă a bazelor de date."
+
+#: server_privileges.php:54 server_privileges.php:204
+#: server_privileges.php:206 server_privileges.php:519
+msgid "Allows performing SHOW CREATE VIEW queries."
+msgstr "Permite executarea interogărilor SHOW CREATE VIEW."
+
+#: server_privileges.php:55 server_privileges.php:187
+#: server_privileges.php:546
+msgid "Allows shutting down the server."
+msgstr "Permite oprirea serverului."
+
+#: server_privileges.php:56 server_privileges.php:194
+#: server_privileges.php:543
+msgid ""
+"Allows connecting, even if maximum number of connections is reached; "
+"required for most administrative operations like setting global variables or "
+"killing threads of other users."
+msgstr ""
+"Permite conexiuni, chiar dacă s-a atins numărul maxim de conexiuni; Necesară "
+"pentru majoritatea operațiunilor administrative, cum ar fi setarea "
+"variabilelor globale sau oprirea firelor de execuție a altor utilizatori."
+
+#: server_privileges.php:57 server_privileges.php:201
+#: server_privileges.php:535
+msgid "Allows creating and dropping triggers"
+msgstr "Permite crearea și eliminarea declanșatorilor"
+
+#: server_privileges.php:58 server_privileges.php:182
+#: server_privileges.php:445 server_privileges.php:505
+msgid "Allows changing data."
+msgstr "Permite schimbarea datelor."
+
+#: server_privileges.php:59 server_privileges.php:260
+msgid "No privileges."
+msgstr "Fără drepturi."
+
+#: server_privileges.php:302 server_privileges.php:303
#, fuzzy
#| msgid "None"
msgctxt "None privileges"
msgid "None"
msgstr "Nici unul(a)"
-#: server_privileges.php:392 server_privileges.php:527
-#: server_privileges.php:1679 server_privileges.php:1685
+#: server_privileges.php:431 server_privileges.php:566
+#: server_privileges.php:1718 server_privileges.php:1724
msgid "Table-specific privileges"
msgstr "Drepturi specifice de tabele"
-#: server_privileges.php:393 server_privileges.php:535
-#: server_privileges.php:1501
+#: server_privileges.php:432 server_privileges.php:574
+#: server_privileges.php:1540
msgid " Note: MySQL privilege names are expressed in English "
msgstr " Important: numele drepturilor de acces MySQL apar în engleză"
-#: server_privileges.php:524 server_privileges.php:1500
+#: server_privileges.php:563 server_privileges.php:1539
msgid "Global privileges"
msgstr "Privilegii globale"
-#: server_privileges.php:526 server_privileges.php:1679
+#: server_privileges.php:565 server_privileges.php:1718
msgid "Database-specific privileges"
msgstr "Drepturi specifice bazei de date"
-#: server_privileges.php:571
+#: server_privileges.php:610
msgid "Administration"
msgstr "Administrare"
-#: server_privileges.php:591
+#: server_privileges.php:630
msgid "Resource limits"
msgstr "Limitare de resurse"
-#: server_privileges.php:592
+#: server_privileges.php:631
msgid "Note: Setting these options to 0 (zero) removes the limit."
msgstr ""
"Observație: Prin stabilirea acestor opțiuni la 0 (zero) se elimină "
"restricția."
-#: server_privileges.php:669
+#: server_privileges.php:708
msgid "Login Information"
msgstr "Informații de autentificare"
-#: server_privileges.php:763
+#: server_privileges.php:802
msgid "Do not change the password"
msgstr "Nu schimbați parola"
-#: server_privileges.php:804 server_privileges.php:2166
+#: server_privileges.php:843 server_privileges.php:2205
#, fuzzy
#| msgid "No user(s) found."
msgid "No user found."
msgstr "Nu s-a găsit nici un utilizator."
-#: server_privileges.php:848
+#: server_privileges.php:887
#, php-format
msgid "The user %s already exists!"
msgstr "Utilizatorul %s există deja!"
-#: server_privileges.php:931
+#: server_privileges.php:970
msgid "You have added a new user."
msgstr "Ați adăugat un nou utilizator."
-#: server_privileges.php:1152
+#: server_privileges.php:1191
#, php-format
msgid "You have updated the privileges for %s."
msgstr "Ați actualizat privilegiile pentru %s."
-#: server_privileges.php:1176
+#: server_privileges.php:1215
#, php-format
msgid "You have revoked the privileges for %s"
msgstr "Drepturile tale au fost revocate pentru %s"
-#: server_privileges.php:1212
+#: server_privileges.php:1251
#, php-format
msgid "The password for %s was changed successfully."
msgstr "Parola pentru %s a fost schimbată cu succes."
-#: server_privileges.php:1232
+#: server_privileges.php:1271
#, php-format
msgid "Deleting %s"
msgstr "Șterge %s"
-#: server_privileges.php:1243
+#: server_privileges.php:1282
msgid "No users selected for deleting!"
msgstr "Nici un utilizator ales pentru ștergere!"
-#: server_privileges.php:1246
+#: server_privileges.php:1285
msgid "Reloading the privileges"
msgstr "Reîncărcarea drepturilor"
-#: server_privileges.php:1261
+#: server_privileges.php:1300
msgid "The selected users have been deleted successfully."
msgstr "Utilizatorii selectați au fost eliminați."
-#: server_privileges.php:1296
+#: server_privileges.php:1335
msgid "The privileges were reloaded successfully."
msgstr "Drepturile au fost reîncarcate cu succes."
-#: server_privileges.php:1324 server_privileges.php:1610
+#: server_privileges.php:1363 server_privileges.php:1649
msgid "Edit Privileges"
msgstr "Editează drepturile de acces"
-#: server_privileges.php:1333
+#: server_privileges.php:1372
msgid "Revoke"
msgstr "Revocare"
-#: server_privileges.php:1365
+#: server_privileges.php:1404
msgid "User overview"
msgstr "Descriere utilizator"
-#: server_privileges.php:1502 server_privileges.php:1684
-#: server_privileges.php:2033
+#: server_privileges.php:1541 server_privileges.php:1723
+#: server_privileges.php:2072
msgid "Grant"
msgstr "Permite"
-#: server_privileges.php:1521 server_privileges.php:2123
+#: server_privileges.php:1560 server_privileges.php:2162
msgid "Any"
msgstr "Oricare"
-#: server_privileges.php:1570 server_privileges.php:1594
-#: server_privileges.php:1988 server_privileges.php:2177
+#: server_privileges.php:1609 server_privileges.php:1633
+#: server_privileges.php:2027 server_privileges.php:2216
msgid "Add a new User"
msgstr "Adaugă un utilizator nou"
-#: server_privileges.php:1575
+#: server_privileges.php:1614
msgid "Remove selected users"
msgstr "Eliminarea utilizatorilor selectați"
-#: server_privileges.php:1578
+#: server_privileges.php:1617
msgid "Revoke all active privileges from the users and delete them afterwards."
msgstr ""
"Revocarea tuturor drepturilor active ale utilizatorilor și stergerea "
"acestora."
-#: server_privileges.php:1579 server_privileges.php:1580
-#: server_privileges.php:1581
+#: server_privileges.php:1618 server_privileges.php:1619
+#: server_privileges.php:1620
msgid "Drop the databases that have the same names as the users."
msgstr "Aruncă baza de date care are același nume ca utilizatorul."
-#: server_privileges.php:1597
+#: server_privileges.php:1636
#, php-format
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
@@ -5598,94 +4970,94 @@ msgstr ""
"În acest caz, reîncărcați de aici înainte de a continua %sreîncărcarea "
"drepturilor%s."
-#: server_privileges.php:1645
+#: server_privileges.php:1684
msgid "The selected user was not found in the privilege table."
msgstr "Utilizatorul selectat nu a fost găsit în tabelul de drepturi."
-#: server_privileges.php:1685
+#: server_privileges.php:1724
msgid "Column-specific privileges"
msgstr "Drepturi specifice coloanei"
-#: server_privileges.php:1886
+#: server_privileges.php:1925
msgid "Add privileges on the following database"
msgstr "Adaugă drepturi la baza de date următoare"
-#: server_privileges.php:1904
+#: server_privileges.php:1943
msgid "Wildcards % and _ should be escaped with a \\ to use them literally"
msgstr "Metacaracterele _ și % trebuiesc însoțite de \\ pentru a le aplica"
-#: server_privileges.php:1907
+#: server_privileges.php:1946
msgid "Add privileges on the following table"
msgstr "Adaugă drepturi la următorul tabel"
-#: server_privileges.php:1964
+#: server_privileges.php:2003
msgid "Change Login Information / Copy User"
msgstr "Schimbă informațiile de autentificare/Copiază utilizator"
-#: server_privileges.php:1967
+#: server_privileges.php:2006
msgid "Create a new user with the same privileges and ..."
msgstr "Creează un utilizator nou cu aceleași privilegii și..."
-#: server_privileges.php:1969
+#: server_privileges.php:2008
msgid "... keep the old one."
msgstr "... menține cel vechi."
-#: server_privileges.php:1970
+#: server_privileges.php:2009
msgid " ... delete the old one from the user tables."
msgstr " ... șterge cel vechi din tabelul de utilizatori."
-#: server_privileges.php:1971
+#: server_privileges.php:2010
msgid ""
" ... revoke all active privileges from the old one and delete it afterwards."
msgstr ""
" ...revocă toate privilegiile active de la utilizatorul vechi și șterge-l "
"după aceea."
-#: server_privileges.php:1972
+#: server_privileges.php:2011
msgid ""
" ... delete the old one from the user tables and reload the privileges "
"afterwards."
msgstr ""
" ... șterge cel vechi din tabelul de utilizatori și reîncarcă privilegiile."
-#: server_privileges.php:1994
+#: server_privileges.php:2033
msgid "Database for user"
msgstr "Bază de date pentru utilizatorul"
-#: server_privileges.php:1998
+#: server_privileges.php:2037
#, fuzzy
#| msgid "None"
msgctxt "Create none database for user"
msgid "None"
msgstr "Nici unul(a)"
-#: server_privileges.php:1999
+#: server_privileges.php:2038
msgid "Create database with same name and grant all privileges"
msgstr "Creează o bază de date cu același nume și acordă toate privilegiile"
-#: server_privileges.php:2000
+#: server_privileges.php:2039
msgid "Grant all privileges on wildcard name (username\\_%)"
msgstr "Grant all privileges on wildcard name (username\\_%)"
-#: server_privileges.php:2003
+#: server_privileges.php:2042
#, fuzzy, php-format
msgid "Grant all privileges on database "%s""
msgstr "Verifică privilegiile pentru baza de date "%s"."
-#: server_privileges.php:2026
+#: server_privileges.php:2065
#, php-format
msgid "Users having access to "%s""
msgstr "Utilizatorul are acces la "%s""
-#: server_privileges.php:2134
+#: server_privileges.php:2173
msgid "global"
msgstr "global"
-#: server_privileges.php:2136
+#: server_privileges.php:2175
msgid "database-specific"
msgstr "specific bazei de date"
-#: server_privileges.php:2138
+#: server_privileges.php:2177
msgid "wildcard"
msgstr "Metacaracter"
@@ -5733,7 +5105,7 @@ msgstr ""
msgid "This server is configured as master in a replication process."
msgstr ""
-#: server_replication.php:184 server_status.php:281
+#: server_replication.php:184 server_status.php:392
#, fuzzy
msgid "Show master status"
msgstr "Afișează stare sclav"
@@ -5873,103 +5245,741 @@ msgid ""
"like to configure it?"
msgstr ""
+#: server_status.php:40
+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 ""
+"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."
+
+#: server_status.php:41
+msgid "The number of transactions that used the temporary binary log cache."
+msgstr "The number of transactions that used the temporary binary log cache."
+
+#: server_status.php:42
+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 "
+"to increase the tmp_table_size value to cause temporary tables to be memory-"
+"based instead of disk-based."
+msgstr ""
+"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 "
+"to increase the tmp_table_size value to cause temporary tables to be memory-"
+"based instead of disk-based."
+
+#: server_status.php:43
+msgid "How many temporary files mysqld has created."
+msgstr "Cîte fișiere temporare a creat mysqld."
+
+#: server_status.php:44
+msgid ""
+"The number of in-memory temporary tables created automatically by the server "
+"while executing statements."
+msgstr ""
+"The number of in-memory temporary tables created automatically by the server "
+"while executing statements."
+
+#: server_status.php:45
+msgid ""
+"The number of rows written with INSERT DELAYED for which some error occurred "
+"(probably duplicate key)."
+msgstr ""
+"The number of rows written with INSERT DELAYED for which some error occurred "
+"(probably duplicate key)."
+
#: server_status.php:46
+msgid ""
+"The number of INSERT DELAYED handler threads in use. Every different table "
+"on which one uses INSERT DELAYED gets its own thread."
+msgstr ""
+"The number of INSERT DELAYED handler threads in use. Every different table "
+"on which one uses INSERT DELAYED gets its own thread."
+
+#: server_status.php:47
+msgid "The number of INSERT DELAYED rows written."
+msgstr "The number of INSERT DELAYED rows written."
+
+#: server_status.php:48
+msgid "The number of executed FLUSH statements."
+msgstr "The number of executed FLUSH statements."
+
+#: server_status.php:49
+msgid "The number of internal COMMIT statements."
+msgstr "The number of internal COMMIT statements."
+
+#: server_status.php:50
+msgid "The number of times a row was deleted from a table."
+msgstr "The number of times a row was deleted from a table."
+
+#: server_status.php:51
+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 ""
+"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."
+
+#: server_status.php:52
+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 ""
+"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."
+
+#: server_status.php:53
+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 ""
+"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."
+
+#: server_status.php:54
+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 ""
+"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."
+
+#: server_status.php:55
+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 ""
+"The number of requests to read the previous row in key order. This read "
+"method is mainly used to optimize ORDER BY ... DESC."
+
+#: server_status.php:56
+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 "
+"probably have a lot of queries that require MySQL to scan whole tables or "
+"you have joins that don't use keys properly."
+msgstr ""
+"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 "
+"probably have a lot of queries that require MySQL to scan whole tables or "
+"you have joins that don't use keys properly."
+
+#: server_status.php:57
+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 "
+"tables are not properly indexed or that your queries are not written to take "
+"advantage of the indexes you have."
+msgstr ""
+"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 "
+"tables are not properly indexed or that your queries are not written to take "
+"advantage of the indexes you have."
+
+#: server_status.php:58
+msgid "The number of internal ROLLBACK statements."
+msgstr "The number of internal ROLLBACK statements."
+
+#: server_status.php:59
+msgid "The number of requests to update a row in a table."
+msgstr "The number of requests to update a row in a table."
+
+#: server_status.php:60
+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."
+
+#: server_status.php:61
+msgid "The number of pages containing data (dirty or clean)."
+msgstr "Numărul de pagini conținînd date (curate sau murdare)."
+
+#: server_status.php:62
+msgid "The number of pages currently dirty."
+msgstr "Numărul de pagini actualmente murdare."
+
+#: server_status.php:63
+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."
+
+#: server_status.php:64
+msgid "The number of free pages."
+msgstr "Numărul de pagini libere."
+
+#: server_status.php:65
+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 ""
+"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."
+
+#: server_status.php:66
+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 "
+"be calculated as Innodb_buffer_pool_pages_total - "
+"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data."
+msgstr ""
+"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 "
+"be calculated as Innodb_buffer_pool_pages_total - "
+"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data."
+
+#: server_status.php:67
+msgid "Total size of buffer pool, in pages."
+msgstr "Total size of buffer pool, in pages."
+
+#: server_status.php:68
+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 ""
+"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."
+
+#: server_status.php:69
+msgid ""
+"The number of sequential read-aheads InnoDB initiated. This happens when "
+"InnoDB does a sequential full table scan."
+msgstr ""
+"The number of sequential read-aheads InnoDB initiated. This happens when "
+"InnoDB does a sequential full table scan."
+
+#: server_status.php:70
+msgid "The number of logical read requests InnoDB has done."
+msgstr "The number of logical read requests InnoDB has done."
+
+#: server_status.php:71
+msgid ""
+"The number of logical reads that InnoDB could not satisfy from buffer pool "
+"and had to do a single-page read."
+msgstr ""
+"The number of logical reads that InnoDB could not satisfy from buffer pool "
+"and had to do a single-page read."
+
+#: server_status.php:72
+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 "
+"available, it's necessary to wait for pages to be flushed first. This "
+"counter counts instances of these waits. If the buffer pool size was set "
+"properly, this value should be small."
+msgstr ""
+"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 "
+"available, it's necessary to wait for pages to be flushed first. This "
+"counter counts instances of these waits. If the buffer pool size was set "
+"properly, this value should be small."
+
+#: server_status.php:73
+msgid "The number writes done to the InnoDB buffer pool."
+msgstr "The number writes done to the InnoDB buffer pool."
+
+#: server_status.php:74
+msgid "The number of fsync() operations so far."
+msgstr "The number of fsync() operations so far."
+
+#: server_status.php:75
+msgid "The current number of pending fsync() operations."
+msgstr "The current number of pending fsync() operations."
+
+#: server_status.php:76
+msgid "The current number of pending reads."
+msgstr "The current number of pending reads."
+
+#: server_status.php:77
+msgid "The current number of pending writes."
+msgstr "The current number of pending writes."
+
+#: server_status.php:78
+msgid "The amount of data read so far, in bytes."
+msgstr "The amount of data read so far, in bytes."
+
+#: server_status.php:79
+msgid "The total number of data reads."
+msgstr "The total number of data reads."
+
+#: server_status.php:80
+msgid "The total number of data writes."
+msgstr "The total number of data writes."
+
+#: server_status.php:81
+msgid "The amount of data written so far, in bytes."
+msgstr "The amount of data written so far, in bytes."
+
+#: server_status.php:82
+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."
+
+#: server_status.php:83
+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."
+
+#: server_status.php:84
+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 ""
+"The number of waits we had because log buffer was too small and we had to "
+"wait for it to be flushed before continuing."
+
+#: server_status.php:85
+msgid "The number of log write requests."
+msgstr "The number of log write requests."
+
+#: server_status.php:86
+msgid "The number of physical writes to the log file."
+msgstr "The number of physical writes to the log file."
+
+#: server_status.php:87
+msgid "The number of fsync() writes done to the log file."
+msgstr "The number of fsyncs writes done to the log file."
+
+#: server_status.php:88
+msgid "The number of pending log file fsyncs."
+msgstr "The number of pending log file fsyncs."
+
+#: server_status.php:89
+msgid "Pending log file writes."
+msgstr "Pending log file writes."
+
+#: server_status.php:90
+msgid "The number of bytes written to the log file."
+msgstr "The number of bytes written to the log file."
+
+#: server_status.php:91
+msgid "The number of pages created."
+msgstr "Numărul de pagini create."
+
+#: server_status.php:92
+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 ""
+"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."
+
+#: server_status.php:93
+msgid "The number of pages read."
+msgstr "Numărul de pagini citite."
+
+#: server_status.php:94
+msgid "The number of pages written."
+msgstr "Numărul de pagini scrise."
+
+#: server_status.php:95
+msgid "The number of row locks currently being waited for."
+msgstr "The number of row locks currently being waited for."
+
+#: server_status.php:96
+msgid "The average time to acquire a row lock, in milliseconds."
+msgstr "The average time to acquire a row lock, in milliseconds."
+
+#: server_status.php:97
+msgid "The total time spent in acquiring row locks, in milliseconds."
+msgstr "The total time spent in acquiring row locks, in milliseconds."
+
+#: server_status.php:98
+msgid "The maximum time to acquire a row lock, in milliseconds."
+msgstr "The maximum time to acquire a row lock, in milliseconds."
+
+#: server_status.php:99
+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."
+
+#: server_status.php:100
+msgid "The number of rows deleted from InnoDB tables."
+msgstr "The number of rows deleted from InnoDB tables."
+
+#: server_status.php:101
+msgid "The number of rows inserted in InnoDB tables."
+msgstr "The number of rows inserted in InnoDB tables."
+
+#: server_status.php:102
+msgid "The number of rows read from InnoDB tables."
+msgstr "Numărul de rînduri citite din tabelele InnoDB."
+
+#: server_status.php:103
+msgid "The number of rows updated in InnoDB tables."
+msgstr "Numărul de rînduri actualizate în tabelele InnoDB."
+
+#: server_status.php:104
+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 ""
+"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."
+
+#: server_status.php:105
+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 ""
+"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."
+
+#: server_status.php:106
+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 ""
+"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."
+
+#: server_status.php:107
+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."
+
+#: server_status.php:108
+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 ""
+"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."
+
+#: server_status.php:109
+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."
+
+#: server_status.php:110
+msgid "The number of physical writes of a key block to disk."
+msgstr "The number of physical writes of a key block to disk."
+
+#: server_status.php:111
+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 ""
+"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."
+
+#: server_status.php:112
+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."
+
+#: server_status.php:113
+msgid ""
+"The number of tables that have been opened. If opened tables is big, your "
+"table cache value is probably too small."
+msgstr ""
+"The number of tables that have been opened. If opened tables is big, your "
+"table cache value is probably too small."
+
+#: server_status.php:114
+msgid "The number of files that are open."
+msgstr "The number of files that are open."
+
+#: server_status.php:115
+msgid "The number of streams that are open (used mainly for logging)."
+msgstr "The number of streams that are open (used mainly for logging)."
+
+#: server_status.php:116
+msgid "The number of tables that are open."
+msgstr "Numărul de tabele ce sînt deschise."
+
+#: server_status.php:117
+msgid "The number of free memory blocks in query cache."
+msgstr "The number of free memory blocks in query cache."
+
+#: server_status.php:118
+msgid "The amount of free memory for query cache."
+msgstr "The amount of free memory for query cache."
+
+#: server_status.php:119
+msgid "The number of cache hits."
+msgstr "Numărul de nimeriri în cache."
+
+#: server_status.php:120
+msgid "The number of queries added to the cache."
+msgstr "Numărul de interogări adăugate la cache."
+
+#: server_status.php:121
+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 "
+"cache size. The query cache uses a least recently used (LRU) strategy to "
+"decide which queries to remove from the cache."
+msgstr ""
+"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 "
+"cache size. The query cache uses a least recently used (LRU) strategy to "
+"decide which queries to remove from the cache."
+
+#: server_status.php:122
+msgid ""
+"The number of non-cached queries (not cachable, or not cached due to the "
+"query_cache_type setting)."
+msgstr ""
+"The number of non-cached queries (not cachable, or not cached due to the "
+"query_cache_type setting)."
+
+#: server_status.php:123
+msgid "The number of queries registered in the cache."
+msgstr "Numărul de interogări înregistrate în cache."
+
+#: server_status.php:124
+msgid "The total number of blocks in the query cache."
+msgstr "Numărul total de blocuri în cache-ul interogării."
+
+#: server_status.php:125
+msgctxt "$strShowStatusReset"
+msgid "Reset"
+msgstr "Reinițializare"
+
+#: server_status.php:126
+msgid "The status of failsafe replication (not yet implemented)."
+msgstr "The status of failsafe replication (not yet implemented)."
+
+#: server_status.php:127
+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 ""
+"The number of joins that do not use indexes. If this value is not 0, you "
+"should carefully check the indexes of your tables."
+
+#: server_status.php:128
+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."
+
+#: server_status.php:129
+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 ""
+"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.)"
+
+#: server_status.php:130
+msgid ""
+"The number of joins that used ranges on the first table. (It's normally not "
+"critical even if this is big.)"
+msgstr ""
+"The number of joins that used ranges on the first table. (It's normally not "
+"critical even if this is big.)"
+
+#: server_status.php:131
+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."
+
+#: server_status.php:132
+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."
+
+#: server_status.php:133
+msgid ""
+"Total (since startup) number of times the replication slave SQL thread has "
+"retried transactions."
+msgstr ""
+"Total (since startup) number of times the replication slave SQL thread has "
+"retried transactions."
+
+#: server_status.php:134
+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."
+
+#: server_status.php:135
+msgid ""
+"The number of threads that have taken more than slow_launch_time seconds to "
+"create."
+msgstr ""
+"The number of threads that have taken more than slow_launch_time seconds to "
+"create."
+
+#: server_status.php:136
+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."
+
+#: server_status.php:137
+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 ""
+"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."
+
+#: server_status.php:138
+msgid "The number of sorts that were done with ranges."
+msgstr "The number of sorts that were done with ranges."
+
+#: server_status.php:139
+msgid "The number of sorted rows."
+msgstr "Numărul de rînduri sortate."
+
+#: server_status.php:140
+msgid "The number of sorts that were done by scanning the table."
+msgstr "The number of sorts that were done by scanning the table."
+
+#: server_status.php:141
+msgid "The number of times that a table lock was acquired immediately."
+msgstr "The number of times that a table lock was acquired immediately."
+
+#: server_status.php:142
+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 "
+"should first optimize your queries, and then either split your table or "
+"tables or use replication."
+msgstr ""
+"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 "
+"should first optimize your queries, and then either split your table or "
+"tables or use replication."
+
+#: server_status.php:143
+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 ""
+"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."
+
+#: server_status.php:144
+msgid "The number of currently open connections."
+msgstr "Numărul de conexiuni deschise momentan."
+
+#: server_status.php:145
+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 "
+"doesn't give a notable performance improvement if you have a good thread "
+"implementation.)"
+msgstr ""
+"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 "
+"doesn't give a notable performance improvement if you have a good thread "
+"implementation.)"
+
+#: server_status.php:146
+msgid "The number of threads that are not sleeping."
+msgstr "The number of threads that are not sleeping."
+
+#: server_status.php:157
msgid "Runtime Information"
msgstr "Informații rulare"
-#: server_status.php:250
+#: server_status.php:361
msgid "Handler"
msgstr "Gestionar"
-#: server_status.php:251
+#: server_status.php:362
msgid "Query cache"
msgstr "Cache interogări"
-#: server_status.php:252
+#: server_status.php:363
msgid "Threads"
msgstr "Fire"
-#: server_status.php:254
+#: server_status.php:365
msgid "Temporary data"
msgstr "Date temporare"
-#: server_status.php:255
+#: server_status.php:366
msgid "Delayed inserts"
msgstr "Inserări întîrziate"
-#: server_status.php:256
+#: server_status.php:367
msgid "Key cache"
msgstr "Key cache"
-#: server_status.php:257
+#: server_status.php:368
msgid "Joins"
msgstr "Joncțiuni"
-#: server_status.php:259
+#: server_status.php:370
msgid "Sorting"
msgstr "Sortare"
-#: server_status.php:261
+#: server_status.php:372
msgid "Transaction coordinator"
msgstr "Coordonator tranzacție"
-#: server_status.php:271
+#: server_status.php:382
msgid "Flush (close) all tables"
msgstr "Flush (close) all tables"
-#: server_status.php:273
+#: server_status.php:384
msgid "Show open tables"
msgstr "Afișează tabele deschise"
-#: server_status.php:278
+#: server_status.php:389
msgid "Show slave hosts"
msgstr "Afișează gazde sclavi"
-#: server_status.php:284
+#: server_status.php:395
msgid "Show slave status"
msgstr "Afișează stare sclav"
-#: server_status.php:289
+#: server_status.php:400
msgid "Flush query cache"
msgstr "Reinițializare cache interogare"
-#: server_status.php:294
+#: server_status.php:405
msgid "Show processes"
msgstr "Afișează procesele"
-#: server_status.php:344
+#: server_status.php:455
#, fuzzy
#| msgid "Reset"
msgctxt "for Show status"
msgid "Reset"
msgstr "Resetare"
-#: server_status.php:350
+#: server_status.php:461
#, php-format
msgid "This MySQL server has been running for %s. It started up on %s."
msgstr "Acest server MySQL rulează de %s. S-a lansat la %s."
-#: server_status.php:360
+#: server_status.php:471
msgid ""
"This MySQL server works as master and slave in replication"
"b> process."
msgstr ""
-#: server_status.php:362
+#: server_status.php:473
msgid "This MySQL server works as master in replication process."
msgstr ""
-#: server_status.php:364
+#: server_status.php:475
msgid "This MySQL server works as slave in replication process."
msgstr ""
-#: server_status.php:366
+#: server_status.php:477
msgid ""
"For further information about replication status on the server, please visit "
"the replication section."
msgstr ""
-#: server_status.php:383
+#: server_status.php:494
msgid ""
"Server traffic: These tables show the network traffic statistics of "
"this MySQL server since its startup."
@@ -5977,11 +5987,11 @@ msgstr ""
"Trafic server: Aceste tabele arată statistica de trafic în retea a "
"acestui server MySQL de la lansare."
-#: server_status.php:388
+#: server_status.php:499
msgid "Traffic"
msgstr "Trafic"
-#: server_status.php:388
+#: server_status.php:499
msgid ""
"On a busy server, the byte counters may overrun, so those statistics as "
"reported by the MySQL server may be incorrect."
@@ -5989,36 +5999,36 @@ msgstr ""
"On a busy server, the byte counters may overrun, so those statistics as "
"reported by the MySQL server may be incorrect."
-#: server_status.php:389 server_status.php:434 server_status.php:497
-#: server_status.php:555
+#: server_status.php:500 server_status.php:545 server_status.php:608
+#: server_status.php:666
msgid "per hour"
msgstr "pe oră"
-#: server_status.php:394
+#: server_status.php:505
msgid "Received"
msgstr "Recepționat"
-#: server_status.php:404
+#: server_status.php:515
msgid "Sent"
msgstr "Trimis"
-#: server_status.php:433
+#: server_status.php:544
msgid "Connections"
msgstr "Conexiuni"
-#: server_status.php:440
+#: server_status.php:551
msgid "max. concurrent connections"
msgstr "conexiuni concurente (maxim)"
-#: server_status.php:447
+#: server_status.php:558
msgid "Failed attempts"
msgstr "Încercări nereușite"
-#: server_status.php:461
+#: server_status.php:572
msgid "Aborted"
msgstr "Întrerupt"
-#: server_status.php:490
+#: server_status.php:601
#, php-format
msgid ""
"Query statistics: Since its startup, %s queries have been sent to the "
@@ -6027,19 +6037,19 @@ msgstr ""
"Statistică interogări: De la început, s-au trimis %s interogări la "
"server."
-#: server_status.php:498
+#: server_status.php:609
msgid "per minute"
msgstr "pe minut"
-#: server_status.php:499
+#: server_status.php:610
msgid "per second"
msgstr "pe secundă"
-#: server_status.php:554
+#: server_status.php:665
msgid "Query type"
msgstr "Tip interogare"
-#: server_status.php:721
+#: server_status.php:832
#, fuzzy
msgid "Replication status"
msgstr "Replicare"
diff --git a/po/ru.po b/po/ru.po
index aa323f72c..afbdac665 100755
--- a/po/ru.po
+++ b/po/ru.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-06-04 16:07-0400\n"
+"POT-Creation-Date: 2010-06-08 12:32-0400\n"
"PO-Revision-Date: 2010-03-30 23:23+0200\n"
"Last-Translator: Michal \n"
"Language-Team: russian \n"
@@ -16,11 +16,11 @@ msgstr ""
"X-Generator: Pootle 2.0.1\n"
#: browse_foreigners.php:38 browse_foreigners.php:59
-#: libraries/display_tbl.lib.php:417 server_privileges.php:1475
+#: libraries/display_tbl.lib.php:417 server_privileges.php:1514
msgid "Show all"
msgstr "Показать все"
-#: browse_foreigners.php:82 libraries/common.lib.php:2304
+#: browse_foreigners.php:82 libraries/common.lib.php:2313
#: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:394
#: libraries/export/pdf.php:147 pdf_schema.php:283 pdf_schema.php:1123
#: pdf_schema.php:1139
@@ -39,8 +39,8 @@ msgstr ""
#: browse_foreigners.php:150 db_structure.php:79 db_structure.php:80
#: db_structure.php:91 db_structure.php:93 db_structure.php:104
-#: db_structure.php:106 libraries/common.lib.php:2822
-#: libraries/common.lib.php:2829 libraries/db_links.inc.php:75
+#: db_structure.php:106 libraries/common.lib.php:2831
+#: libraries/common.lib.php:2838 libraries/db_links.inc.php:75
#: libraries/tbl_links.inc.php:63
msgid "Search"
msgstr "Поиск"
@@ -50,7 +50,7 @@ msgstr "Поиск"
#: db_structure.php:567 js/messages.php:48 libraries/Config.class.php:1046
#: libraries/Theme_Manager.class.php:311
#: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719
-#: libraries/common.lib.php:1333 libraries/common.lib.php:2279
+#: libraries/common.lib.php:1335 libraries/common.lib.php:2288
#: libraries/display_change_password.lib.php:82
#: libraries/display_create_table.lib.php:63
#: libraries/display_export.lib.php:275 libraries/display_import.lib.php:276
@@ -61,9 +61,9 @@ msgstr "Поиск"
#: libraries/sql_query_form.lib.php:552 libraries/tbl_properties.inc.php:782
#: main.php:128 navigation.php:237 pdf_pages.php:292 pdf_pages.php:328
#: pdf_pages.php:530 pmd_pdf.php:116 server_binlog.php:142
-#: server_privileges.php:625 server_privileges.php:1585
-#: server_privileges.php:1932 server_privileges.php:1979
-#: server_privileges.php:2018 server_replication.php:235
+#: server_privileges.php:664 server_privileges.php:1624
+#: server_privileges.php:1971 server_privileges.php:2018
+#: server_privileges.php:2057 server_replication.php:235
#: server_replication.php:318 server_replication.php:341
#: server_synchronize.php:1209 tbl_change.php:330 tbl_change.php:1174
#: tbl_change.php:1211 tbl_indexes.php:254 tbl_operations.php:265
@@ -81,7 +81,7 @@ msgstr "Имя индекса"
#: browse_foreigners.php:169 browse_foreigners.php:171
#: server_collations.php:55 server_collations.php:67 server_engines.php:59
-#: server_status.php:628
+#: server_status.php:739
msgid "Description"
msgstr "Описание"
@@ -122,7 +122,7 @@ msgstr "Названия столбцов"
#: libraries/db_structure.lib.php:60 libraries/export/htmlword.php:245
#: libraries/export/latex.php:360 libraries/export/odt.php:297
#: libraries/export/texytext.php:234 libraries/tbl_properties.inc.php:100
-#: pdf_schema.php:1263 pdf_schema.php:1284 server_privileges.php:2031
+#: pdf_schema.php:1263 pdf_schema.php:1284 server_privileges.php:2070
#: tbl_change.php:287 tbl_change.php:314 tbl_printview.php:143
#: tbl_printview.php:313 tbl_select.php:136 tbl_structure.php:178
#: tbl_structure.php:659 tbl_tracking.php:274 tbl_tracking.php:321
@@ -166,9 +166,9 @@ msgstr "Комментарии"
#: libraries/Index.class.php:386 libraries/export/htmlword.php:322
#: libraries/export/latex.php:430 libraries/export/odt.php:368
#: libraries/export/texytext.php:311 libraries/mult_submits.inc.php:263
-#: pdf_schema.php:1344 server_privileges.php:1529 server_privileges.php:1540
-#: server_privileges.php:1850 server_privileges.php:1855
-#: server_privileges.php:2148 sql.php:132 sql.php:194 tbl_printview.php:229
+#: pdf_schema.php:1344 server_privileges.php:1568 server_privileges.php:1579
+#: server_privileges.php:1889 server_privileges.php:1894
+#: server_privileges.php:2187 sql.php:132 sql.php:194 tbl_printview.php:229
#: tbl_structure.php:350 tbl_tracking.php:337 tbl_tracking.php:342
msgid "No"
msgstr "Нет"
@@ -182,9 +182,9 @@ msgstr "Нет"
#: libraries/mult_submits.inc.php:101 libraries/mult_submits.inc.php:106
#: libraries/mult_submits.inc.php:111 libraries/mult_submits.inc.php:262
#: libraries/mult_submits.inc.php:273 pdf_schema.php:1344
-#: server_databases.php:64 server_privileges.php:1526
-#: server_privileges.php:1540 server_privileges.php:1850
-#: server_privileges.php:1853 server_privileges.php:2148 sql.php:193
+#: server_databases.php:64 server_privileges.php:1565
+#: server_privileges.php:1579 server_privileges.php:1889
+#: server_privileges.php:1892 server_privileges.php:2187 sql.php:193
#: tbl_printview.php:229 tbl_structure.php:40 tbl_structure.php:350
#: tbl_tracking.php:335 tbl_tracking.php:340
msgid "Yes"
@@ -281,7 +281,7 @@ msgstr "Переключиться на скопированную базу да
msgid "BLOB Repository"
msgstr "Хранилище данных типа BLOB"
-#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1350
+#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1352
#: libraries/server_links.inc.php:49 server_processlist.php:59
#: tbl_tracking.php:596 test/theme.php:101
msgid "Status"
@@ -344,8 +344,8 @@ msgstr "Редактирование PDF-страниц"
#: db_printview.php:104 db_tracking.php:72 db_tracking.php:157
#: libraries/db_structure.lib.php:46 libraries/export/xml.php:328
-#: libraries/header.inc.php:126 pdf_pages.php:424 server_privileges.php:1626
-#: server_privileges.php:1682 server_privileges.php:1946
+#: libraries/header.inc.php:126 pdf_pages.php:424 server_privileges.php:1665
+#: server_privileges.php:1721 server_privileges.php:1985
#: server_synchronize.php:423 server_synchronize.php:866 tbl_tracking.php:592
#: test/theme.php:75
msgid "Table"
@@ -448,7 +448,7 @@ msgstr "Удалить"
#: db_qbe.php:370 db_qbe.php:451 db_qbe.php:522 db_qbe.php:553
#: libraries/display_import.lib.php:166 libraries/tbl_properties.inc.php:779
-#: server_privileges.php:258 tbl_change.php:1031 tbl_indexes.php:250
+#: server_privileges.php:297 tbl_change.php:1031 tbl_indexes.php:250
#: tbl_select.php:288
msgid "Or"
msgstr "Или"
@@ -482,7 +482,7 @@ msgstr "Использовать таблицы"
msgid "SQL query on database %s:"
msgstr "SQL-запрос к базе данных %s:"
-#: db_qbe.php:934 libraries/common.lib.php:1223
+#: db_qbe.php:934 libraries/common.lib.php:1225
msgid "Submit Query"
msgstr "Выполнить запрос"
@@ -521,7 +521,7 @@ msgstr "%s вхождения(ий) в таблице %s"
#: db_search.php:267 db_structure.php:77 db_structure.php:78
#: db_structure.php:90 db_structure.php:92 db_structure.php:103
-#: db_structure.php:105 libraries/common.lib.php:2824
+#: db_structure.php:105 libraries/common.lib.php:2833
#: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50
#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:467
msgid "Browse"
@@ -568,26 +568,26 @@ msgstr "Внутри поля:"
#: db_structure.php:81 db_structure.php:82 db_structure.php:94
#: db_structure.php:95 db_structure.php:107 db_structure.php:108
-#: libraries/common.lib.php:2823 libraries/sql_query_form.lib.php:334
+#: libraries/common.lib.php:2832 libraries/sql_query_form.lib.php:334
#: libraries/sql_query_form.lib.php:337 libraries/tbl_links.inc.php:76
msgid "Insert"
msgstr "Вставить"
#: db_structure.php:83 db_structure.php:96 db_structure.php:109
-#: libraries/common.lib.php:2820 libraries/common.lib.php:2827
+#: libraries/common.lib.php:2829 libraries/common.lib.php:2836
#: libraries/db_links.inc.php:63 libraries/export/htmlword.php:23
#: libraries/export/latex.php:33 libraries/export/latex.php:337
#: libraries/export/odt.php:32 libraries/export/sql.php:60
#: libraries/export/texytext.php:23 libraries/import.lib.php:1104
#: libraries/tbl_links.inc.php:56 pmd_general.php:134
-#: server_privileges.php:554 server_replication.php:315 tbl_tracking.php:269
+#: server_privileges.php:593 server_replication.php:315 tbl_tracking.php:269
msgid "Structure"
msgstr "Структура"
#: db_structure.php:84 db_structure.php:85 db_structure.php:97
#: db_structure.php:98 db_structure.php:110 db_structure.php:111
#: db_structure.php:545 db_structure.php:546 db_tracking.php:91
-#: libraries/Index.class.php:483 libraries/common.lib.php:1654
+#: libraries/Index.class.php:483 libraries/common.lib.php:1656
#: libraries/db_links.inc.php:100 libraries/mult_submits.inc.php:36
#: libraries/mult_submits.inc.php:73 libraries/tbl_links.inc.php:127
#: server_databases.php:352 tbl_structure.php:27 tbl_structure.php:151
@@ -597,7 +597,7 @@ msgstr "Удалить"
#: db_structure.php:86 db_structure.php:87 db_structure.php:99
#: db_structure.php:100 db_structure.php:112 db_structure.php:113
-#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1653
+#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1655
#: libraries/mult_submits.inc.php:39 libraries/tbl_links.inc.php:105
msgid "Empty"
msgstr "Очистить"
@@ -641,7 +641,7 @@ msgstr "Представление"
#: db_structure.php:485 libraries/db_structure.lib.php:49
#: libraries/server_links.inc.php:70 server_replication.php:33
-#: server_replication.php:164 server_status.php:258
+#: server_replication.php:164 server_status.php:369
msgid "Replication"
msgstr "Репликация"
@@ -657,20 +657,20 @@ msgstr "%s - тип таблиц данного MySQL сервера устан
#: db_structure.php:524 db_structure.php:541 db_structure.php:542
#: libraries/display_tbl.lib.php:2081 libraries/display_tbl.lib.php:2086
#: libraries/mult_submits.inc.php:16 server_databases.php:346
-#: server_databases.php:351 server_privileges.php:1557 tbl_structure.php:455
+#: server_databases.php:351 server_privileges.php:1596 tbl_structure.php:455
#: tbl_structure.php:464
msgid "With selected:"
msgstr "С отмеченными:"
#: db_structure.php:527 libraries/display_tbl.lib.php:2076
-#: server_databases.php:348 server_privileges.php:530
-#: server_privileges.php:1560 tbl_structure.php:458
+#: server_databases.php:348 server_privileges.php:569
+#: server_privileges.php:1599 tbl_structure.php:458
msgid "Check All"
msgstr "Отметить все"
#: db_structure.php:531 libraries/display_tbl.lib.php:2077
#: libraries/replication_gui.lib.php:33 server_databases.php:350
-#: server_privileges.php:533 server_privileges.php:1564 tbl_structure.php:462
+#: server_privileges.php:572 server_privileges.php:1603 tbl_structure.php:462
msgid "Uncheck All"
msgstr "Снять выделение"
@@ -708,7 +708,7 @@ msgstr "Анализ таблицы"
#: libraries/display_export.lib.php:83 libraries/display_tbl.lib.php:2094
#: libraries/display_tbl.lib.php:2225 libraries/mult_submits.inc.php:62
#: libraries/server_links.inc.php:84 libraries/tbl_links.inc.php:82
-#: pmd_pdf.php:84 pmd_pdf.php:109 server_privileges.php:1341
+#: pmd_pdf.php:84 pmd_pdf.php:109 server_privileges.php:1380
#: setup/frames/menu.inc.php:22 tbl_row_action.php:59
msgid "Export"
msgstr "Экспорт"
@@ -726,8 +726,8 @@ msgstr "Отслеживаемые таблицы"
#: libraries/export/sql.php:342 libraries/export/texytext.php:84
#: libraries/export/xml.php:255 libraries/header.inc.php:106
#: libraries/header_printview.inc.php:58 server_databases.php:169
-#: server_privileges.php:1621 server_privileges.php:1682
-#: server_privileges.php:1940 server_processlist.php:56
+#: server_privileges.php:1660 server_privileges.php:1721
+#: server_privileges.php:1979 server_processlist.php:56
#: server_synchronize.php:1179 server_synchronize.php:1183
#: tbl_tracking.php:591 test/theme.php:65
msgid "Database"
@@ -747,8 +747,8 @@ msgstr "Обновлён"
#: db_tracking.php:77 libraries/Index.class.php:440
#: libraries/db_structure.lib.php:53 server_databases.php:203
-#: server_privileges.php:1503 server_privileges.php:1686
-#: server_privileges.php:2034 tbl_structure.php:187
+#: server_privileges.php:1542 server_privileges.php:1725
+#: server_privileges.php:2073 tbl_structure.php:187
msgid "Action"
msgstr "Действие"
@@ -953,11 +953,11 @@ msgstr "Пустое имя хоста!"
msgid "The user name is empty!"
msgstr "Не задано имя пользователя!"
-#: js/messages.php:44 server_privileges.php:1197 user_password.php:70
+#: js/messages.php:44 server_privileges.php:1236 user_password.php:70
msgid "The password is empty!"
msgstr "Пароль не задан!"
-#: js/messages.php:45 server_privileges.php:1195 user_password.php:73
+#: js/messages.php:45 server_privileges.php:1234 user_password.php:73
msgid "The passwords aren't the same!"
msgstr "Некорректное подтверждение пароля!"
@@ -1038,8 +1038,8 @@ msgid "Prev"
msgstr "Назад"
#. l10n: Display text for next month link in calendar
-#: js/messages.php:77 libraries/common.lib.php:2344
-#: libraries/common.lib.php:2347 libraries/display_tbl.lib.php:338
+#: js/messages.php:77 libraries/common.lib.php:2353
+#: libraries/common.lib.php:2356 libraries/display_tbl.lib.php:338
#: server_binlog.php:205 server_binlog.php:207 tbl_printview.php:424
#: tbl_structure.php:801
msgid "Next"
@@ -1115,27 +1115,27 @@ msgid "December"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:97 libraries/common.lib.php:1555
+#: js/messages.php:97 libraries/common.lib.php:1557
msgid "Jan"
msgstr "Янв"
#. l10n: Short month name
-#: js/messages.php:99 libraries/common.lib.php:1557
+#: js/messages.php:99 libraries/common.lib.php:1559
msgid "Feb"
msgstr "Фев"
#. l10n: Short month name
-#: js/messages.php:101 libraries/common.lib.php:1559
+#: js/messages.php:101 libraries/common.lib.php:1561
msgid "Mar"
msgstr "Мар"
#. l10n: Short month name
-#: js/messages.php:103 libraries/common.lib.php:1561
+#: js/messages.php:103 libraries/common.lib.php:1563
msgid "Apr"
msgstr "Апр"
#. l10n: Short month name
-#: js/messages.php:105 libraries/common.lib.php:1563
+#: js/messages.php:105 libraries/common.lib.php:1565
#, fuzzy
#| msgid "May"
msgctxt "Short month name"
@@ -1143,37 +1143,37 @@ msgid "May"
msgstr "Май"
#. l10n: Short month name
-#: js/messages.php:107 libraries/common.lib.php:1565
+#: js/messages.php:107 libraries/common.lib.php:1567
msgid "Jun"
msgstr "Июн"
#. l10n: Short month name
-#: js/messages.php:109 libraries/common.lib.php:1567
+#: js/messages.php:109 libraries/common.lib.php:1569
msgid "Jul"
msgstr "Июл"
#. l10n: Short month name
-#: js/messages.php:111 libraries/common.lib.php:1569
+#: js/messages.php:111 libraries/common.lib.php:1571
msgid "Aug"
msgstr "Авг"
#. l10n: Short month name
-#: js/messages.php:113 libraries/common.lib.php:1571
+#: js/messages.php:113 libraries/common.lib.php:1573
msgid "Sep"
msgstr "Сен"
#. l10n: Short month name
-#: js/messages.php:115 libraries/common.lib.php:1573
+#: js/messages.php:115 libraries/common.lib.php:1575
msgid "Oct"
msgstr "Окт"
#. l10n: Short month name
-#: js/messages.php:117 libraries/common.lib.php:1575
+#: js/messages.php:117 libraries/common.lib.php:1577
msgid "Nov"
msgstr "Ноя"
#. l10n: Short month name
-#: js/messages.php:119 libraries/common.lib.php:1577
+#: js/messages.php:119 libraries/common.lib.php:1579
msgid "Dec"
msgstr "Дек"
@@ -1214,37 +1214,37 @@ msgid "Saturday"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:132 libraries/common.lib.php:1580
+#: js/messages.php:132 libraries/common.lib.php:1582
msgid "Sun"
msgstr "Вс"
#. l10n: Short week day name
-#: js/messages.php:134 libraries/common.lib.php:1582
+#: js/messages.php:134 libraries/common.lib.php:1584
msgid "Mon"
msgstr "Пн"
#. l10n: Short week day name
-#: js/messages.php:136 libraries/common.lib.php:1584
+#: js/messages.php:136 libraries/common.lib.php:1586
msgid "Tue"
msgstr "Вт"
#. l10n: Short week day name
-#: js/messages.php:138 libraries/common.lib.php:1586
+#: js/messages.php:138 libraries/common.lib.php:1588
msgid "Wed"
msgstr "Ср"
#. l10n: Short week day name
-#: js/messages.php:140 libraries/common.lib.php:1588
+#: js/messages.php:140 libraries/common.lib.php:1590
msgid "Thu"
msgstr "Чт"
#. l10n: Short week day name
-#: js/messages.php:142 libraries/common.lib.php:1590
+#: js/messages.php:142 libraries/common.lib.php:1592
msgid "Fri"
msgstr "Пт"
#. l10n: Short week day name
-#: js/messages.php:144 libraries/common.lib.php:1592
+#: js/messages.php:144 libraries/common.lib.php:1594
msgid "Sat"
msgstr "Сб"
@@ -1393,7 +1393,7 @@ msgid "Comment"
msgstr "Комментарий"
#: libraries/Index.class.php:466 libraries/common.lib.php:616
-#: libraries/common.lib.php:1199 libraries/display_tbl.lib.php:1117
+#: libraries/common.lib.php:1201 libraries/display_tbl.lib.php:1117
#: libraries/import.lib.php:1087 libraries/import.lib.php:1111
#: pdf_pages.php:285 setup/frames/index.inc.php:124
#: setup/lib/messages.inc.php:352 tbl_row_action.php:69
@@ -1417,7 +1417,7 @@ msgid ""
msgstr "Индексы %1$s и %2$s равнозначны и один из них может быть удалён."
#: libraries/List_Database.class.php:431 libraries/server_links.inc.php:41
-#: server_databases.php:88 server_privileges.php:1621
+#: server_databases.php:88 server_privileges.php:1660
#: setup/lib/messages.inc.php:110 test/theme.php:93
msgid "Databases"
msgstr "Базы данных"
@@ -1756,7 +1756,7 @@ msgid "Documentation"
msgstr "Документация"
#: libraries/common.lib.php:595 libraries/header_printview.inc.php:61
-#: server_processlist.php:60 server_status.php:247
+#: server_processlist.php:60 server_status.php:358
msgid "SQL query"
msgstr "SQL-запрос"
@@ -1772,131 +1772,131 @@ msgstr "Анализ запроса"
msgid "Skip Explain SQL"
msgstr "Убрать анализ"
-#: libraries/common.lib.php:1212
+#: libraries/common.lib.php:1214
msgid "Without PHP Code"
msgstr "Убрать PHP-код"
-#: libraries/common.lib.php:1215 setup/lib/messages.inc.php:355
+#: libraries/common.lib.php:1217 setup/lib/messages.inc.php:355
msgid "Create PHP Code"
msgstr "PHP-код"
-#: libraries/common.lib.php:1233 server_status.php:341
+#: libraries/common.lib.php:1235 server_status.php:452
#: setup/lib/messages.inc.php:354
msgid "Refresh"
msgstr "Обновить"
-#: libraries/common.lib.php:1242
+#: libraries/common.lib.php:1244
msgid "Skip Validate SQL"
msgstr "Убрать проверку синтаксиса SQL"
-#: libraries/common.lib.php:1245 setup/lib/messages.inc.php:356 sql.php:518
+#: libraries/common.lib.php:1247 setup/lib/messages.inc.php:356 sql.php:518
msgid "Validate SQL"
msgstr "Проверка синтаксиса"
-#: libraries/common.lib.php:1276
+#: libraries/common.lib.php:1278
msgid "Inline edit of this query"
msgstr ""
-#: libraries/common.lib.php:1278
+#: libraries/common.lib.php:1280
#, fuzzy
#| msgid "Engines"
msgid "Inline"
msgstr "Типы таблиц"
-#: libraries/common.lib.php:1332 libraries/common.lib.php:1347
+#: libraries/common.lib.php:1334 libraries/common.lib.php:1349
msgid "Profiling"
msgstr "Профилирование"
-#: libraries/common.lib.php:1351 libraries/tbl_triggers.lib.php:28
+#: libraries/common.lib.php:1353 libraries/tbl_triggers.lib.php:28
#: server_processlist.php:58
msgid "Time"
msgstr "Время"
#. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "B"
msgstr "Байт"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "KiB"
msgstr "КБ"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "MiB"
msgstr "МБ"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "GiB"
msgstr "ГБ"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "TiB"
msgstr "ТБ"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "PiB"
msgstr "ПБ"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "EiB"
msgstr "ЭБ"
#. l10n: Thousands separator
-#: libraries/common.lib.php:1417
+#: libraries/common.lib.php:1419
msgid ","
msgstr ","
#. l10n: Decimal separator
-#: libraries/common.lib.php:1419
+#: libraries/common.lib.php:1421
msgid "."
msgstr "."
#. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string
-#: libraries/common.lib.php:1596
+#: libraries/common.lib.php:1598
#: libraries/transformations/text_plain__dateformat.inc.php:34
msgid "%B %d, %Y at %I:%M %p"
msgstr "%B %d %Y г., %H:%M"
-#: libraries/common.lib.php:1898
+#: libraries/common.lib.php:1907
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "%s дней, %s часов, %s минут и %s секунд"
-#: libraries/common.lib.php:2313 libraries/common.lib.php:2316
-#: libraries/display_tbl.lib.php:290 server_status.php:608
+#: libraries/common.lib.php:2322 libraries/common.lib.php:2325
+#: libraries/display_tbl.lib.php:290 server_status.php:719
msgid "Begin"
msgstr "Начало"
-#: libraries/common.lib.php:2314 libraries/common.lib.php:2317
+#: libraries/common.lib.php:2323 libraries/common.lib.php:2326
#: libraries/display_tbl.lib.php:291 server_binlog.php:168
#: server_binlog.php:170
msgid "Previous"
msgstr "Назад"
-#: libraries/common.lib.php:2345 libraries/common.lib.php:2348
+#: libraries/common.lib.php:2354 libraries/common.lib.php:2357
#: libraries/display_tbl.lib.php:353
msgid "End"
msgstr "Конец"
-#: libraries/common.lib.php:2421
+#: libraries/common.lib.php:2430
#, php-format
msgid "Jump to database "%s"."
msgstr "Перейти к базе данных "%s""
-#: libraries/common.lib.php:2441
+#: libraries/common.lib.php:2450
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr ""
"Работа параметра "%s" подвержена ошибке, описание смотрите на %s"
-#: libraries/common.lib.php:2821 libraries/common.lib.php:2828
+#: libraries/common.lib.php:2830 libraries/common.lib.php:2837
#: libraries/db_links.inc.php:68 libraries/export/sql.php:25
#: libraries/import/sql.php:18 libraries/server_links.inc.php:45
#: libraries/tbl_links.inc.php:60 querywindow.php:99 test/theme.php:97
msgid "SQL"
msgstr "SQL"
-#: libraries/common.lib.php:2830 libraries/db_links.inc.php:104
+#: libraries/common.lib.php:2839 libraries/db_links.inc.php:104
#: libraries/tbl_links.inc.php:95 libraries/tbl_links.inc.php:117
#: view_operations.php:89
msgid "Operations"
@@ -1952,8 +1952,8 @@ msgid "Import"
msgstr "Импорт"
#: libraries/db_links.inc.php:111 libraries/server_links.inc.php:66
-#: server_privileges.php:72 server_privileges.php:1683
-#: server_privileges.php:2032 test/theme.php:117
+#: server_privileges.php:111 server_privileges.php:1722
+#: server_privileges.php:2071 test/theme.php:117
msgid "Privileges"
msgstr "Привилегии"
@@ -2002,22 +2002,22 @@ msgid "Change password"
msgstr "Изменить пароль"
#: libraries/display_change_password.lib.php:35
-#: libraries/replication_gui.lib.php:345 server_privileges.php:768
+#: libraries/replication_gui.lib.php:345 server_privileges.php:807
msgid "No Password"
msgstr "Без пароля"
#: libraries/display_change_password.lib.php:41
#: libraries/replication_gui.lib.php:59 libraries/replication_gui.lib.php:60
#: libraries/replication_gui.lib.php:335 libraries/replication_gui.lib.php:339
-#: libraries/replication_gui.lib.php:349 server_privileges.php:757
-#: server_privileges.php:761 server_privileges.php:772
-#: server_privileges.php:1499 server_synchronize.php:1175
+#: libraries/replication_gui.lib.php:349 server_privileges.php:796
+#: server_privileges.php:800 server_privileges.php:811
+#: server_privileges.php:1538 server_synchronize.php:1175
msgid "Password"
msgstr "Пароль"
#: libraries/display_change_password.lib.php:46
#: libraries/replication_gui.lib.php:353 libraries/replication_gui.lib.php:356
-#: server_privileges.php:776 server_privileges.php:779
+#: server_privileges.php:815 server_privileges.php:818
msgid "Re-type"
msgstr "Подтверждение"
@@ -2032,12 +2032,12 @@ msgid "MySQL 4.0 compatible"
msgstr "MySQL 4.0 совместимо"
#: libraries/display_change_password.lib.php:72
-#: libraries/replication_gui.lib.php:360 server_privileges.php:783
+#: libraries/replication_gui.lib.php:360 server_privileges.php:822
msgid "Generate Password"
msgstr "Создать пароль"
#: libraries/display_change_password.lib.php:75
-#: libraries/replication_gui.lib.php:363 server_privileges.php:786
+#: libraries/replication_gui.lib.php:363 server_privileges.php:825
msgid "Generate"
msgstr "Генерировать"
@@ -2050,8 +2050,8 @@ msgstr "Новая база данных"
msgid "Create"
msgstr "Создать"
-#: libraries/display_create_database.lib.php:40 server_privileges.php:74
-#: server_privileges.php:1388 server_replication.php:35
+#: libraries/display_create_database.lib.php:40 server_privileges.php:113
+#: server_privileges.php:1427 server_replication.php:35
msgid "No Privileges"
msgstr "Нет привилегий"
@@ -2144,7 +2144,7 @@ msgstr "Упаковать"
#: libraries/display_export.lib.php:240 libraries/display_import.lib.php:197
#: libraries/display_import.lib.php:210 libraries/display_tbl.lib.php:530
#: libraries/export/sql.php:868 libraries/tbl_properties.inc.php:575
-#: server_privileges.php:1836 server_processlist.php:75
+#: server_privileges.php:1875 server_processlist.php:75
msgid "None"
msgstr "Нет"
@@ -2474,7 +2474,7 @@ msgstr ""
msgid "Buffer Pool"
msgstr "Буферный пул"
-#: libraries/engines/innodb.lib.php:145 server_status.php:306
+#: libraries/engines/innodb.lib.php:145 server_status.php:417
msgid "InnoDB Status"
msgstr "Состояние InnoDB"
@@ -2483,8 +2483,8 @@ msgid "Buffer Pool Usage"
msgstr "Использование"
#: libraries/engines/innodb.lib.php:194 server_databases.php:137
-#: server_databases.php:305 server_status.php:414 server_status.php:475
-#: server_status.php:496 tbl_printview.php:351 tbl_structure.php:696
+#: server_databases.php:305 server_status.php:525 server_status.php:586
+#: server_status.php:607 tbl_printview.php:351 tbl_structure.php:696
msgid "Total"
msgstr "Всего"
@@ -2850,7 +2850,7 @@ msgstr "Microsoft Word 2000"
#: libraries/export/latex.php:201 libraries/export/odt.php:48
#: libraries/export/sql.php:106 libraries/export/sql.php:868
#: libraries/export/texytext.php:27 server_databases.php:127
-#: server_privileges.php:537 server_replication.php:316 tbl_printview.php:317
+#: server_privileges.php:576 server_replication.php:316 tbl_printview.php:317
#: tbl_structure.php:665
msgid "Data"
msgstr "Данные"
@@ -2900,9 +2900,9 @@ msgstr "MIME-тип"
#: libraries/export/xml.php:102 libraries/header_printview.inc.php:57
#: libraries/replication_gui.lib.php:63 libraries/replication_gui.lib.php:174
#: libraries/replication_gui.lib.php:269 libraries/replication_gui.lib.php:272
-#: libraries/replication_gui.lib.php:329 server_privileges.php:692
-#: server_privileges.php:695 server_privileges.php:751
-#: server_privileges.php:1498 server_privileges.php:2030
+#: libraries/replication_gui.lib.php:329 server_privileges.php:731
+#: server_privileges.php:734 server_privileges.php:790
+#: server_privileges.php:1537 server_privileges.php:2069
#: server_processlist.php:55 server_synchronize.php:1159
msgid "Host"
msgstr "Хост"
@@ -3258,884 +3258,6 @@ msgstr "Нет"
msgid "Convert to Kana"
msgstr ""
-#. l10n: Text direction, use either ltr or rtl
-#: libraries/messages.inc.php:19
-msgid "ltr"
-msgstr "ltr"
-
-#: libraries/messages.inc.php:21
-msgid "Content of table __TABLE__"
-msgstr "Содержимое таблицы __TABLE__"
-
-#: libraries/messages.inc.php:22
-msgid "(continued)"
-msgstr "(продолжение)"
-
-#: libraries/messages.inc.php:23
-msgid "Structure of table __TABLE__"
-msgstr "Структура таблицы __TABLE__"
-
-#: libraries/messages.inc.php:25 server_privileges.php:227
-msgid "Includes all privileges except GRANT."
-msgstr "Содержит все привилегии, за исключением GRANT"
-
-#: libraries/messages.inc.php:26 server_privileges.php:153
-#: server_privileges.php:476
-msgid "Allows altering the structure of existing tables."
-msgstr "Разрешает изменение структуры существующих таблиц"
-
-#: libraries/messages.inc.php:27 server_privileges.php:169
-#: server_privileges.php:482
-msgid "Allows altering and dropping stored routines."
-msgstr "Разрешает изменение и удаление хранимых процедур"
-
-#: libraries/messages.inc.php:28 server_privileges.php:145
-#: server_privileges.php:475
-msgid "Allows creating new databases and tables."
-msgstr "Разрешает создание новых баз данных и таблиц"
-
-#: libraries/messages.inc.php:29 server_privileges.php:168
-#: server_privileges.php:481
-msgid "Allows creating stored routines."
-msgstr "Разрешает создание хранимых процедур"
-
-#: libraries/messages.inc.php:30 server_privileges.php:475
-msgid "Allows creating new tables."
-msgstr "Разрешает создание новых таблиц"
-
-#: libraries/messages.inc.php:31 server_privileges.php:156
-#: server_privileges.php:479
-msgid "Allows creating temporary tables."
-msgstr "Разрешает создание временных таблиц"
-
-#: libraries/messages.inc.php:32 server_privileges.php:170
-#: server_privileges.php:515
-msgid "Allows creating, dropping and renaming user accounts."
-msgstr ""
-"Разрешает создание, удаление и переименование учетных записей пользователей"
-
-#: libraries/messages.inc.php:33 server_privileges.php:160
-#: server_privileges.php:164 server_privileges.php:487
-#: server_privileges.php:491
-msgid "Allows creating new views."
-msgstr "Разрешает создание новых представлений (CREATE VIEW)"
-
-#: libraries/messages.inc.php:34 server_privileges.php:144
-#: server_privileges.php:467
-msgid "Allows deleting data."
-msgstr "Разрешает удаление данных"
-
-#: libraries/messages.inc.php:35 server_privileges.php:146
-#: server_privileges.php:478
-msgid "Allows dropping databases and tables."
-msgstr "Разрешает удаление баз данных и таблиц"
-
-#: libraries/messages.inc.php:36 server_privileges.php:478
-msgid "Allows dropping tables."
-msgstr "Разрешает удаление таблиц"
-
-#: libraries/messages.inc.php:37 server_privileges.php:161
-#: server_privileges.php:495
-msgid "Allows to set up events for the event scheduler"
-msgstr "Разрешает настройку отложенных событий"
-
-#: libraries/messages.inc.php:38 server_privileges.php:171
-#: server_privileges.php:483
-msgid "Allows executing stored routines."
-msgstr "Разрешает выполнение хранимых процедур"
-
-#: libraries/messages.inc.php:39 server_privileges.php:150
-#: server_privileges.php:470
-msgid "Allows importing data from and exporting data into files."
-msgstr "Разрешает импорт и экспорт данных в файлы"
-
-#: libraries/messages.inc.php:40 server_privileges.php:501
-msgid ""
-"Allows adding users and privileges without reloading the privilege tables."
-msgstr ""
-"Разрешает добавление пользователей и привилегий без перезагрузки таблиц "
-"привилегий"
-
-#: libraries/messages.inc.php:41 server_privileges.php:152
-#: server_privileges.php:477
-msgid "Allows creating and dropping indexes."
-msgstr "Разрешает создание и удаление индексов"
-
-#: libraries/messages.inc.php:42 server_privileges.php:142
-#: server_privileges.php:403 server_privileges.php:465
-msgid "Allows inserting and replacing data."
-msgstr "Разрешает вставку и замену данных"
-
-#: libraries/messages.inc.php:43 server_privileges.php:157
-#: server_privileges.php:510
-msgid "Allows locking tables for the current thread."
-msgstr "Разрешает блокировку таблиц для текущего потока"
-
-#: libraries/messages.inc.php:44 server_privileges.php:607
-#: server_privileges.php:609
-msgid "Limits the number of new connections the user may open per hour."
-msgstr ""
-"Максимальное количество новых подключений, которые пользователь может "
-"установить в течение часа"
-
-#: libraries/messages.inc.php:45 server_privileges.php:595
-#: server_privileges.php:597
-msgid "Limits the number of queries the user may send to the server per hour."
-msgstr ""
-"Максимальное количество запросов, которые пользователь может отправить в "
-"течение часа"
-
-#: libraries/messages.inc.php:46 server_privileges.php:601
-#: server_privileges.php:603
-msgid ""
-"Limits the number of commands that change any table or database the user may "
-"execute per hour."
-msgstr ""
-"Максимальное количество команд изменяющих какую-либо таблицу или базу "
-"данных, которые пользователь может выполнить в течение часа"
-
-#: libraries/messages.inc.php:47 server_privileges.php:613
-#: server_privileges.php:615
-msgid "Limits the number of simultaneous connections the user may have."
-msgstr "Максимальное количество одновременных подключений одного пользователя"
-
-#: libraries/messages.inc.php:48 server_privileges.php:149
-#: server_privileges.php:505
-msgid "Allows viewing processes of all users"
-msgstr "Разрешает просмотр процессов всех пользователей"
-
-#: libraries/messages.inc.php:49 server_privileges.php:151
-#: server_privileges.php:409 server_privileges.php:511
-msgid "Has no effect in this MySQL version."
-msgstr "Не доступно в данной версии MySQL!"
-
-#: libraries/messages.inc.php:50 server_privileges.php:147
-#: server_privileges.php:506
-msgid "Allows reloading server settings and flushing the server's caches."
-msgstr "Разрешает перезагрузку настроек сервера и очистку его кешей"
-
-#: libraries/messages.inc.php:51 server_privileges.php:159
-#: server_privileges.php:513
-msgid "Allows the user to ask where the slaves / masters are."
-msgstr "Разрешает запрашивать местонахождение головного и подчиненных серверов"
-
-#: libraries/messages.inc.php:52 server_privileges.php:158
-#: server_privileges.php:514
-msgid "Needed for the replication slaves."
-msgstr "Необходимо для подчиненных серверов при репликации"
-
-#: libraries/messages.inc.php:53 server_privileges.php:141
-#: server_privileges.php:400 server_privileges.php:464
-msgid "Allows reading data."
-msgstr "Разрешает выборку данных"
-
-#: libraries/messages.inc.php:54 server_privileges.php:154
-#: server_privileges.php:508
-msgid "Gives access to the complete list of databases."
-msgstr "Разрешает доступ к полному списку баз данных"
-
-#: libraries/messages.inc.php:55 server_privileges.php:165
-#: server_privileges.php:167 server_privileges.php:480
-msgid "Allows performing SHOW CREATE VIEW queries."
-msgstr "Разрешает вывод запроса создающего представление (SHOW CREATE VIEW)"
-
-#: libraries/messages.inc.php:56 server_privileges.php:148
-#: server_privileges.php:507
-msgid "Allows shutting down the server."
-msgstr "Разрешает остановку сервера"
-
-#: libraries/messages.inc.php:57 server_privileges.php:155
-#: server_privileges.php:504
-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/messages.inc.php:58 server_privileges.php:162
-#: server_privileges.php:496
-msgid "Allows creating and dropping triggers"
-msgstr "Разрешает создание и удаление триггеров"
-
-#: libraries/messages.inc.php:59 server_privileges.php:143
-#: server_privileges.php:406 server_privileges.php:466
-msgid "Allows changing data."
-msgstr "Разрешает изменение данных"
-
-#: libraries/messages.inc.php:60 server_privileges.php:221
-msgid "No privileges."
-msgstr "Нет привилегий"
-
-#: libraries/messages.inc.php:62
-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 ""
-"Количество транзакций, использовавших кеш бинарного журнала и превысивших "
-"значение binlog_cache_size, вследствие чего содержащиеся в них SQL-выражения "
-"были сохранены во временном файле."
-
-#: libraries/messages.inc.php:63
-msgid "The number of transactions that used the temporary binary log cache."
-msgstr "Количество транзакций, использовавших кеш бинарного журнала."
-
-#: libraries/messages.inc.php:64
-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 "
-"to increase the tmp_table_size value to cause temporary tables to be memory-"
-"based instead of disk-based."
-msgstr ""
-"Количество временных таблиц, автоматически созданных сервером на диске, во "
-"время выполнения SQL-выражений. Если значение Created_tmp_disk_tables "
-"велико, следует увеличить значение переменной tmp_table_size, чтобы "
-"временные таблицы располагались в памяти, а не на жестком диске."
-
-#: libraries/messages.inc.php:65
-msgid "How many temporary files mysqld has created."
-msgstr "Количество временных файлов, созданных MySQL-сервером (mysqld)."
-
-#: libraries/messages.inc.php:66
-msgid ""
-"The number of in-memory temporary tables created automatically by the server "
-"while executing statements."
-msgstr ""
-"Количество временных таблиц в памяти, созданных сервером автоматически в "
-"процессе выполнения SQL-выражений."
-
-#: libraries/messages.inc.php:67
-msgid ""
-"The number of rows written with INSERT DELAYED for which some error occurred "
-"(probably duplicate key)."
-msgstr ""
-"Количество ошибок, возникших в процессе обработки запросов INSERT DELAYED, "
-"например, из-за дублирования ключей."
-
-#: libraries/messages.inc.php:68
-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/messages.inc.php:69
-msgid "The number of INSERT DELAYED rows written."
-msgstr ""
-"Количество строк записанных в режиме отложенной вставки данных (INSERT "
-"DELAYED)."
-
-#: libraries/messages.inc.php:70
-msgid "The number of executed FLUSH statements."
-msgstr "Количество выполненных команд FLUSH."
-
-#: libraries/messages.inc.php:71
-msgid "The number of internal COMMIT statements."
-msgstr "Количество внутренних команд COMMIT."
-
-#: libraries/messages.inc.php:72
-msgid "The number of times a row was deleted from a table."
-msgstr "Количество запросов на удаление строк из таблицы."
-
-#: libraries/messages.inc.php:73
-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 ""
-"MySQL-сервер может запрашивать NDB Cluster о существовании таблиц с "
-"определенным именем. Этот процесс называется обнаружением. Handler_discover "
-"- число обнаружений таблиц."
-
-#: libraries/messages.inc.php:74
-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 ""
-"Количество запросов на чтение первой записи из индекса. При большом значении "
-"переменной, скорее всего, сервер многократно выполняет полное сканирование "
-"индекса. Например, SELECT col1 FROM foo, при условии, что col1 "
-"проиндексирован."
-
-#: libraries/messages.inc.php:75
-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/messages.inc.php:76
-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/messages.inc.php:77
-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 ""
-"Количество запросов на чтение предыдущей строки при ниспадающей сортировке "
-"индекса. Обычно используется при оптимизации: ORDER BY ... DESC."
-
-#: libraries/messages.inc.php:78
-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 "
-"probably have a lot of queries that require MySQL to scan whole tables or "
-"you have joins that don't use keys properly."
-msgstr ""
-"Количество запросов, на чтение строки, основанных на ее позиции. Большое "
-"значение переменной может быть обусловлено частым выполнением запросов "
-"использующих сортировку результата, выполнением большого числа запросов "
-"требующих полного сканирования таблиц, наличием объединений не использующих "
-"индексы надлежащим образом."
-
-#: libraries/messages.inc.php:79
-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 "
-"tables are not properly indexed or that your queries are not written to take "
-"advantage of the indexes you have."
-msgstr ""
-"Количество запросов на чтение следующей строки из файла данных. Данное "
-"значение будет высоким, при частом сканировании таблиц. Обычно это означает, "
-"что таблицы не проиндексированы надлежащим образом или запросы не используют "
-"преимущества индексов."
-
-#: libraries/messages.inc.php:80
-msgid "The number of internal ROLLBACK statements."
-msgstr "Количество внутренних команд ROLLBACK."
-
-#: libraries/messages.inc.php:81
-msgid "The number of requests to update a row in a table."
-msgstr "Количество запросов на обновление строк в таблице."
-
-#: libraries/messages.inc.php:82
-msgid "The number of requests to insert a row in a table."
-msgstr "Количество запросов на вставку строк в таблицу."
-
-#: libraries/messages.inc.php:83
-msgid "The number of pages containing data (dirty or clean)."
-msgstr ""
-"Количество страниц содержащих данные ("грязные" или ""
-"чистые")."
-
-#: libraries/messages.inc.php:84
-msgid "The number of pages currently dirty."
-msgstr "Текущее количество "грязных" страниц."
-
-#: libraries/messages.inc.php:85
-msgid "The number of buffer pool pages that have been requested to be flushed."
-msgstr ""
-"Количество страниц буферного пула, над которыми был осуществлен процесс "
-"очистки (FLUSH)."
-
-#: libraries/messages.inc.php:86
-msgid "The number of free pages."
-msgstr "Количество свободных страниц."
-
-#: libraries/messages.inc.php:87
-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 ""
-"Количество станиц заблокированных в буферном пуле InnoDB. Над этими "
-"страницами осуществляется процесс чтения или записи, либо они не могут быть "
-"очищены или удалены по какой-либо другой причине."
-
-#: libraries/messages.inc.php:88
-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 "
-"be calculated as Innodb_buffer_pool_pages_total - "
-"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data."
-msgstr ""
-"Количество страниц занятых вследствие выделения под административные "
-"процессы, такие как: блокировка строки или адаптивное хеширование индекса. "
-"Значение можно рассчитать по формуле: Innodb_buffer_pool_pages_total - "
-"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data."
-
-#: libraries/messages.inc.php:89
-msgid "Total size of buffer pool, in pages."
-msgstr "Общий размер буферного пула (в страницах)."
-
-#: libraries/messages.inc.php:90
-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 ""
-"Количество "случайных" опережающих чтений, инициированных InnoDB. "
-"Это происходит, когда запрос сканирует большую часть таблицы в случайном "
-"порядке."
-
-#: libraries/messages.inc.php:91
-msgid ""
-"The number of sequential read-aheads InnoDB initiated. This happens when "
-"InnoDB does a sequential full table scan."
-msgstr ""
-"Количество последовательных опережающих чтений, инициированных InnoDB. Это "
-"происходит, когда InnoDB выполняет полное последовательное сканирование "
-"таблицы."
-
-#: libraries/messages.inc.php:92
-msgid "The number of logical read requests InnoDB has done."
-msgstr "Количество последовательных запросов на чтение, выполненных InnoDB."
-
-#: libraries/messages.inc.php:93
-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/messages.inc.php:94
-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 "
-"available, it's necessary to wait for pages to be flushed first. This "
-"counter counts instances of these waits. If the buffer pool size was set "
-"properly, this value should be small."
-msgstr ""
-"Обычно, записи в буферный пул InnoDB выполняются в фоновом режиме. Однако, "
-"если необходимо чтение или создание страницы при отсутствии чистых таковых, "
-"сперва требуется ожидание их очистки. Данный счетчик показывает число таких "
-"ожиданий. Если размер буферного пула был установлен должным образом, "
-"значение будет небольшим."
-
-#: libraries/messages.inc.php:95
-msgid "The number writes done to the InnoDB buffer pool."
-msgstr "Количество записей, выполненных в буферный пул InnoDB."
-
-#: libraries/messages.inc.php:96
-msgid "The number of fsync() operations so far."
-msgstr "Количество операций fsync(), выполненных на данный момент."
-
-#: libraries/messages.inc.php:97
-msgid "The current number of pending fsync() operations."
-msgstr "Текущее количество незавершенных операций fsync()."
-
-#: libraries/messages.inc.php:98
-msgid "The current number of pending reads."
-msgstr "Текущее количество незавершенных операций чтения."
-
-#: libraries/messages.inc.php:99
-msgid "The current number of pending writes."
-msgstr "Текущее количество незавершенных операций записи."
-
-#: libraries/messages.inc.php:100
-msgid "The amount of data read so far, in bytes."
-msgstr "Сумма данных (в байтах), прочитанных на данный момент."
-
-#: libraries/messages.inc.php:101
-msgid "The total number of data reads."
-msgstr "Общее количество операций чтения данных."
-
-#: libraries/messages.inc.php:102
-msgid "The total number of data writes."
-msgstr "Общее количество операций записи данных."
-
-#: libraries/messages.inc.php:103
-msgid "The amount of data written so far, in bytes."
-msgstr "Сумма данных (в байтах), записанных на данный момент."
-
-#: libraries/messages.inc.php:104
-msgid "The number of pages that have been written for doublewrite operations."
-msgstr ""
-"Количество записей в буфер doublewrite, и количество созданных для этого "
-"страниц."
-
-#: libraries/messages.inc.php:105
-msgid "The number of doublewrite operations that have been performed."
-msgstr ""
-"Количество записей в буфер doublewrite, и количество созданных для этого "
-"страниц."
-
-#: libraries/messages.inc.php:106
-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/messages.inc.php:107
-msgid "The number of log write requests."
-msgstr "Количество запросов на запись в журнал."
-
-#: libraries/messages.inc.php:108
-msgid "The number of physical writes to the log file."
-msgstr "Количество физических записей в файл журнала."
-
-#: libraries/messages.inc.php:109
-msgid "The number of fsync() writes done to the log file."
-msgstr "Количество записей с помощью fsync(), сделанных в файл журнала."
-
-#: libraries/messages.inc.php:110
-msgid "The number of pending log file fsyncs."
-msgstr ""
-"Количество незавершенных попыток синхронизации с помощью операции fsync()."
-
-#: libraries/messages.inc.php:111
-msgid "Pending log file writes."
-msgstr "Количество незавершенных запросов на запись в журнал."
-
-#: libraries/messages.inc.php:112
-msgid "The number of bytes written to the log file."
-msgstr "Объем данных в байтах, записанных в файл журнала."
-
-#: libraries/messages.inc.php:113
-msgid "The number of pages created."
-msgstr "Количество созданных страниц."
-
-#: libraries/messages.inc.php:114
-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 ""
-"Размер страницы, компилируемой в InnoDB (по умолчанию 16Кб). Многие значения "
-"приводятся в страницах, но зная объем страницы, можно перевести эти значения "
-"в байты."
-
-#: libraries/messages.inc.php:115
-msgid "The number of pages read."
-msgstr "Количество прочитанных страниц."
-
-#: libraries/messages.inc.php:116
-msgid "The number of pages written."
-msgstr "Количество записанных страниц."
-
-#: libraries/messages.inc.php:117
-msgid "The number of row locks currently being waited for."
-msgstr "Текущее количество ожиданий блокировок строк."
-
-#: libraries/messages.inc.php:118
-msgid "The average time to acquire a row lock, in milliseconds."
-msgstr "Среднее время ожидания блокировки строк (в миллисекундах)."
-
-#: libraries/messages.inc.php:119
-msgid "The total time spent in acquiring row locks, in milliseconds."
-msgstr "Общее время, ожидания блокировок строк (в миллисекундах)."
-
-#: libraries/messages.inc.php:120
-msgid "The maximum time to acquire a row lock, in milliseconds."
-msgstr "Максимальное время ожидания блокировки строк (в миллисекундах)."
-
-#: libraries/messages.inc.php:121
-msgid "The number of times a row lock had to be waited for."
-msgstr "Общее количество ожиданий блокировки строк."
-
-#: libraries/messages.inc.php:122
-msgid "The number of rows deleted from InnoDB tables."
-msgstr "Количество строк, удаленных из таблиц InnoDB."
-
-#: libraries/messages.inc.php:123
-msgid "The number of rows inserted in InnoDB tables."
-msgstr "Количество строк, добавленных в таблицы InnoDB."
-
-#: libraries/messages.inc.php:124
-msgid "The number of rows read from InnoDB tables."
-msgstr "Количество строк, прочитанных из таблиц InnoDB."
-
-#: libraries/messages.inc.php:125
-msgid "The number of rows updated in InnoDB tables."
-msgstr "Количество строк, обновленных в таблицах InnoDB."
-
-#: libraries/messages.inc.php:126
-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/messages.inc.php:127
-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/messages.inc.php:128
-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/messages.inc.php:129
-msgid "The number of requests to read a key block from the cache."
-msgstr "Количество запросов на чтение блока из кеша индексов."
-
-#: libraries/messages.inc.php:130
-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 ""
-"Количество физических операций чтения блока индексов с диска. Если значение "
-"велико - скорее всего, задано слишком маленькое значение переменной "
-"key_buffer_size. Коэффициент неудачных обращений к кешу может быть рассчитан "
-"как: Key_reads/Key_read_requests."
-
-#: libraries/messages.inc.php:131
-msgid "The number of requests to write a key block to the cache."
-msgstr "Количество запросов на запись блока в кеш индекса."
-
-#: libraries/messages.inc.php:132
-msgid "The number of physical writes of a key block to disk."
-msgstr "Количество физических операций записи блока индексов на диск."
-
-#: libraries/messages.inc.php:133
-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/messages.inc.php:134
-msgid "The number of rows waiting to be written in INSERT DELAYED queues."
-msgstr "Количество строк, ожидающих вставки в запросах INSERT DELAYED."
-
-#: libraries/messages.inc.php:135
-msgid ""
-"The number of tables that have been opened. If opened tables is big, your "
-"table cache value is probably too small."
-msgstr ""
-"Общее количество открывавшихся таблиц. При большом значении переменной "
-"рекомендуется увеличить размер кеша таблиц (table_cache)."
-
-#: libraries/messages.inc.php:136
-msgid "The number of files that are open."
-msgstr "Количество открытых файлов."
-
-#: libraries/messages.inc.php:137
-msgid "The number of streams that are open (used mainly for logging)."
-msgstr ""
-"Количество открытых потоков (применяется к файлам журналов). Потоком "
-"называется файл, открытый с помощью функции fopen()."
-
-#: libraries/messages.inc.php:138
-msgid "The number of tables that are open."
-msgstr "Количество открытых таблиц."
-
-#: libraries/messages.inc.php:139
-msgid "The number of free memory blocks in query cache."
-msgstr "Количество свободных блоков памяти в кеше запросов."
-
-#: libraries/messages.inc.php:140
-msgid "The amount of free memory for query cache."
-msgstr "Объем свободной памяти для кеша запросов."
-
-#: libraries/messages.inc.php:141
-msgid "The number of cache hits."
-msgstr ""
-"Количество "попаданий" в кеш запросов, т.е. сколько запросов было "
-"удовлетворено запросами, находящимися в кеше."
-
-#: libraries/messages.inc.php:142
-msgid "The number of queries added to the cache."
-msgstr "Количество запросов, добавленных в кеш запросов."
-
-#: libraries/messages.inc.php:143
-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 "
-"cache size. The query cache uses a least recently used (LRU) strategy to "
-"decide which queries to remove from the cache."
-msgstr ""
-"Количество запросов, удаленных из кеша для освобождения памяти под "
-"кеширование новых запросов. Эта информация может помочь при настройке "
-"размера кеша запросов. Кеш запросов использует стратегию LRU (дольше всего "
-"не использующиеся страницы заменяются новыми) при принятии решения об "
-"удаления запроса из кеша."
-
-#: libraries/messages.inc.php:144
-msgid ""
-"The number of non-cached queries (not cachable, or not cached due to the "
-"query_cache_type setting)."
-msgstr ""
-"Количество запросов, которые оказались некешируемыми или для которых "
-"кеширование было подавлено с помощью ключевого слова SQL_NO_CACHE."
-
-#: libraries/messages.inc.php:145
-msgid "The number of queries registered in the cache."
-msgstr "Количество запросов, зарегистрированных в кеше."
-
-#: libraries/messages.inc.php:146
-msgid "The total number of blocks in the query cache."
-msgstr "Суммарное количество блоков памяти, отведенных под кеш запросов."
-
-#: libraries/messages.inc.php:147
-msgctxt "$strShowStatusReset"
-msgid "Reset"
-msgstr "Сбросить"
-
-#: libraries/messages.inc.php:148
-msgid "The status of failsafe replication (not yet implemented)."
-msgstr "Состояние отказоустойчивой репликации (пока не реализовано)."
-
-#: libraries/messages.inc.php:149
-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 ""
-"Количество запросов-объединений, выполненных без использования индексов. "
-"Если значение переменной не равно 0, рекомендуется проверить индексы таблиц."
-
-#: libraries/messages.inc.php:150
-msgid "The number of joins that used a range search on a reference table."
-msgstr ""
-"Количество запросов-объединений, выполненных с использованием поиска по "
-"диапазону в таблице, на которую делается ссылка."
-
-#: libraries/messages.inc.php:151
-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 ""
-"Количество запросов-объединений, выполненных с использованием поиска по "
-"диапазону для выборки строк из вторичной таблицы. Если значение переменной "
-"не равно 0, рекомендуется проверить индексы таблиц."
-
-#: libraries/messages.inc.php:152
-msgid ""
-"The number of joins that used ranges on the first table. (It's normally not "
-"critical even if this is big.)"
-msgstr ""
-"Количество запросов-объединений, выполненных с использованием поиска по "
-"диапазону в первой таблице. Обычно значение этой переменной не критично, "
-"даже если оно велико."
-
-#: libraries/messages.inc.php:153
-msgid "The number of joins that did a full scan of the first table."
-msgstr ""
-"Количество запросов-объединений, выполненных с использованием полного поиска "
-"по первой таблице."
-
-#: libraries/messages.inc.php:154
-msgid "The number of temporary tables currently open by the slave SQL thread."
-msgstr ""
-"Количество временных таблиц, открытых в настоящий момент подчиненным потоком."
-
-#: libraries/messages.inc.php:155
-msgid ""
-"Total (since startup) number of times the replication slave SQL thread has "
-"retried transactions."
-msgstr ""
-"Общее количество повторов транзакций подчиненным потоком репликации с "
-"момента запуска."
-
-#: libraries/messages.inc.php:156
-msgid "This is ON if this server is a slave that is connected to a master."
-msgstr ""
-"Присваивается значение ON, если данный сервер функционирует как подчиненный, "
-"подключенный к главному."
-
-#: libraries/messages.inc.php:157
-msgid ""
-"The number of threads that have taken more than slow_launch_time seconds to "
-"create."
-msgstr ""
-"Количество потоков, на создание которых потребовалось более чем "
-"slow_launch_time секунд."
-
-#: libraries/messages.inc.php:158
-msgid ""
-"The number of queries that have taken more than long_query_time seconds."
-msgstr "Количество запросов, выполнявшихся более long_query_time секунд."
-
-#: libraries/messages.inc.php:159
-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 ""
-"Количество проходов, сделанных алгоритмом сортировки. При большом значении "
-"следует увеличить значение переменной sort_buffer_size."
-
-#: libraries/messages.inc.php:160
-msgid "The number of sorts that were done with ranges."
-msgstr ""
-"Количество операций сортировки, выполненных с использованием диапазона."
-
-#: libraries/messages.inc.php:161
-msgid "The number of sorted rows."
-msgstr "Количество отсортированных строк."
-
-#: libraries/messages.inc.php:162
-msgid "The number of sorts that were done by scanning the table."
-msgstr ""
-"Количество операций сортировки, выполненных с использованием полного "
-"сканирования таблицы."
-
-#: libraries/messages.inc.php:163
-msgid "The number of times that a table lock was acquired immediately."
-msgstr ""
-"Количество запросов на блокировку таблицы, которые были удовлетворены "
-"немедленно."
-
-#: libraries/messages.inc.php:164
-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 "
-"should first optimize your queries, and then either split your table or "
-"tables or use replication."
-msgstr ""
-"Количество запросов на блокировку таблицы, которые были удовлетворены только "
-"после определенного периода ожидания. Если значение велико и есть проблемы с "
-"производительностью, необходимо сначала оптимизировать свои запросы, а затем "
-"разбить свою таблицу (или таблицы) или использовать репликацию."
-
-#: libraries/messages.inc.php:165
-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 ""
-"Количество потоков в потоковом кеше. Частоту успешных обращений к кешу можно "
-"вычислить по формуле Threads_created/Connections. Если это значение окрашено "
-"в красный цвет - вам следует увеличить thread_cache_size."
-
-#: libraries/messages.inc.php:166
-msgid "The number of currently open connections."
-msgstr "Количество открытых текущих соединений."
-
-#: libraries/messages.inc.php:167
-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 "
-"doesn't give a notable performance improvement if you have a good thread "
-"implementation.)"
-msgstr ""
-"Полное количество потоков, созданных для поддержания соединений с клиентом. "
-"При большом значении переменной, можно увеличить значение переменной "
-"thread_cache_size (это не даст существенного выигрыша в производительности, "
-"при хорошей реализации потоков)."
-
-#: libraries/messages.inc.php:168
-msgid "The number of threads that are not sleeping."
-msgstr "Количество процессов, находящихся в активном состоянии."
-
#: libraries/mult_submits.inc.php:76 libraries/tbl_properties.inc.php:513
#: tbl_structure.php:29 tbl_structure.php:153 tbl_structure.php:157
#: tbl_structure.php:473
@@ -4455,8 +3577,8 @@ msgstr ""
#: libraries/replication_gui.lib.php:55 libraries/replication_gui.lib.php:56
#: libraries/replication_gui.lib.php:249 libraries/replication_gui.lib.php:252
-#: libraries/replication_gui.lib.php:259 server_privileges.php:672
-#: server_privileges.php:675 server_privileges.php:682
+#: libraries/replication_gui.lib.php:259 server_privileges.php:711
+#: server_privileges.php:714 server_privileges.php:721
#: server_synchronize.php:1171
msgid "User name"
msgstr "Имя пользователя"
@@ -4474,11 +3596,11 @@ msgid "Slave status"
msgstr "Статус Slave"
#: libraries/replication_gui.lib.php:114 libraries/sql_query_form.lib.php:445
-#: server_status.php:626 server_variables.php:52
+#: server_status.php:737 server_variables.php:52
msgid "Variable"
msgstr "Переменная"
-#: libraries/replication_gui.lib.php:115 server_status.php:627
+#: libraries/replication_gui.lib.php:115 server_status.php:738
#: tbl_change.php:324 tbl_printview.php:370 tbl_select.php:139
#: tbl_structure.php:729
msgid "Value"
@@ -4500,34 +3622,34 @@ msgstr ""
msgid "Add slave replication user"
msgstr "Добавьте подчиненного пользователя репликации"
-#: libraries/replication_gui.lib.php:254 server_privileges.php:677
+#: libraries/replication_gui.lib.php:254 server_privileges.php:716
msgid "Any user"
msgstr "Любой пользователь"
#: libraries/replication_gui.lib.php:255 libraries/replication_gui.lib.php:323
-#: libraries/replication_gui.lib.php:346 server_privileges.php:678
-#: server_privileges.php:745 server_privileges.php:769
-#: server_privileges.php:1889 server_privileges.php:1919
+#: libraries/replication_gui.lib.php:346 server_privileges.php:717
+#: server_privileges.php:784 server_privileges.php:808
+#: server_privileges.php:1928 server_privileges.php:1958
msgid "Use text field"
msgstr "Использовать текстовое поле"
-#: libraries/replication_gui.lib.php:302 server_privileges.php:725
+#: libraries/replication_gui.lib.php:302 server_privileges.php:764
msgid "Any host"
msgstr "Любой хост"
-#: libraries/replication_gui.lib.php:306 server_privileges.php:729
+#: libraries/replication_gui.lib.php:306 server_privileges.php:768
msgid "Local"
msgstr "Локальный"
-#: libraries/replication_gui.lib.php:312 server_privileges.php:734
+#: libraries/replication_gui.lib.php:312 server_privileges.php:773
msgid "This Host"
msgstr "Этот хост"
-#: libraries/replication_gui.lib.php:318 server_privileges.php:740
+#: libraries/replication_gui.lib.php:318 server_privileges.php:779
msgid "Use Host Table"
msgstr "Использовать таблицу хостов"
-#: libraries/replication_gui.lib.php:331 server_privileges.php:753
+#: libraries/replication_gui.lib.php:331 server_privileges.php:792
msgid ""
"When Host table is used, this field is ignored and values stored in Host "
"table are used instead."
@@ -4535,8 +3657,25 @@ msgstr ""
"При использовании таблицы хостов, данное поле игнорируется и значения "
"берутся из прописанных при конфигурации."
-#: libraries/select_lang.lib.php:480 libraries/select_lang.lib.php:486
-#: libraries/select_lang.lib.php:492
+#. l10n: Text direction, use either ltr or rtl
+#: libraries/select_lang.lib.php:491
+msgid "ltr"
+msgstr "ltr"
+
+#: libraries/select_lang.lib.php:493
+msgid "Content of table __TABLE__"
+msgstr "Содержимое таблицы __TABLE__"
+
+#: libraries/select_lang.lib.php:494
+msgid "(continued)"
+msgstr "(продолжение)"
+
+#: libraries/select_lang.lib.php:495
+msgid "Structure of table __TABLE__"
+msgstr "Структура таблицы __TABLE__"
+
+#: libraries/select_lang.lib.php:500 libraries/select_lang.lib.php:506
+#: libraries/select_lang.lib.php:512
#, php-format
msgid "Unknown language: %1$s."
msgstr "Неизвестный язык: %1$s."
@@ -4547,7 +3686,7 @@ msgid "Servers"
msgstr "Сервера"
#: libraries/server_links.inc.php:53 server_engines.php:112
-#: server_engines.php:116 server_status.php:304 test/theme.php:105
+#: server_engines.php:116 server_status.php:415 test/theme.php:105
msgid "Variables"
msgstr "Переменные"
@@ -4560,7 +3699,7 @@ msgid "Engines"
msgstr "Типы таблиц"
#: libraries/server_links.inc.php:76 server_binlog.php:110
-#: server_status.php:253 test/theme.php:121
+#: server_status.php:364 test/theme.php:121
msgid "Binary log"
msgstr "Бинарный журнал"
@@ -5038,8 +4177,8 @@ msgstr "Сбросить"
msgid "Protocol version"
msgstr "Версия протокола"
-#: main.php:189 server_privileges.php:1350 server_privileges.php:1497
-#: server_privileges.php:1611 server_privileges.php:2029
+#: main.php:189 server_privileges.php:1389 server_privileges.php:1536
+#: server_privileges.php:1650 server_privileges.php:2068
#: server_processlist.php:54
msgid "User"
msgstr "Пользователь"
@@ -5439,7 +4578,7 @@ msgstr "Удалено баз данных: %s"
msgid "Databases statistics"
msgstr "Статистика баз данных"
-#: server_databases.php:117 server_status.php:260
+#: server_databases.php:117 server_status.php:371
#: setup/lib/messages.inc.php:117
msgid "Tables"
msgstr "Таблицы"
@@ -5459,6 +4598,18 @@ msgstr "Репликация подчинённого сервера"
msgid "Jump to database"
msgstr "Перейти к базе данных"
+#: server_databases.php:267
+#, fuzzy
+#| msgid "Master replication"
+msgid "Not replicated"
+msgstr "Репликация головного сервера"
+
+#: server_databases.php:273
+#, fuzzy
+#| msgid "Replication"
+msgid "Replicated"
+msgstr "Репликация"
+
#: server_databases.php:289
#, php-format
msgid "Check privileges for database "%s"."
@@ -5492,143 +4643,338 @@ msgstr "Типы таблиц"
msgid "View dump (schema) of databases"
msgstr "Отобразить дамп (схему) баз данных"
-#: server_privileges.php:263 server_privileges.php:264
+#: server_privileges.php:24 server_privileges.php:266
+msgid "Includes all privileges except GRANT."
+msgstr "Содержит все привилегии, за исключением GRANT"
+
+#: server_privileges.php:25 server_privileges.php:192
+#: server_privileges.php:515
+msgid "Allows altering the structure of existing tables."
+msgstr "Разрешает изменение структуры существующих таблиц"
+
+#: server_privileges.php:26 server_privileges.php:208
+#: server_privileges.php:521
+msgid "Allows altering and dropping stored routines."
+msgstr "Разрешает изменение и удаление хранимых процедур"
+
+#: server_privileges.php:27 server_privileges.php:184
+#: server_privileges.php:514
+msgid "Allows creating new databases and tables."
+msgstr "Разрешает создание новых баз данных и таблиц"
+
+#: server_privileges.php:28 server_privileges.php:207
+#: server_privileges.php:520
+msgid "Allows creating stored routines."
+msgstr "Разрешает создание хранимых процедур"
+
+#: server_privileges.php:29 server_privileges.php:514
+msgid "Allows creating new tables."
+msgstr "Разрешает создание новых таблиц"
+
+#: server_privileges.php:30 server_privileges.php:195
+#: server_privileges.php:518
+msgid "Allows creating temporary tables."
+msgstr "Разрешает создание временных таблиц"
+
+#: server_privileges.php:31 server_privileges.php:209
+#: server_privileges.php:554
+msgid "Allows creating, dropping and renaming user accounts."
+msgstr ""
+"Разрешает создание, удаление и переименование учетных записей пользователей"
+
+#: server_privileges.php:32 server_privileges.php:199
+#: server_privileges.php:203 server_privileges.php:526
+#: server_privileges.php:530
+msgid "Allows creating new views."
+msgstr "Разрешает создание новых представлений (CREATE VIEW)"
+
+#: server_privileges.php:33 server_privileges.php:183
+#: server_privileges.php:506
+msgid "Allows deleting data."
+msgstr "Разрешает удаление данных"
+
+#: server_privileges.php:34 server_privileges.php:185
+#: server_privileges.php:517
+msgid "Allows dropping databases and tables."
+msgstr "Разрешает удаление баз данных и таблиц"
+
+#: server_privileges.php:35 server_privileges.php:517
+msgid "Allows dropping tables."
+msgstr "Разрешает удаление таблиц"
+
+#: server_privileges.php:36 server_privileges.php:200
+#: server_privileges.php:534
+msgid "Allows to set up events for the event scheduler"
+msgstr "Разрешает настройку отложенных событий"
+
+#: server_privileges.php:37 server_privileges.php:210
+#: server_privileges.php:522
+msgid "Allows executing stored routines."
+msgstr "Разрешает выполнение хранимых процедур"
+
+#: server_privileges.php:38 server_privileges.php:189
+#: server_privileges.php:509
+msgid "Allows importing data from and exporting data into files."
+msgstr "Разрешает импорт и экспорт данных в файлы"
+
+#: server_privileges.php:39 server_privileges.php:540
+msgid ""
+"Allows adding users and privileges without reloading the privilege tables."
+msgstr ""
+"Разрешает добавление пользователей и привилегий без перезагрузки таблиц "
+"привилегий"
+
+#: server_privileges.php:40 server_privileges.php:191
+#: server_privileges.php:516
+msgid "Allows creating and dropping indexes."
+msgstr "Разрешает создание и удаление индексов"
+
+#: server_privileges.php:41 server_privileges.php:181
+#: server_privileges.php:442 server_privileges.php:504
+msgid "Allows inserting and replacing data."
+msgstr "Разрешает вставку и замену данных"
+
+#: server_privileges.php:42 server_privileges.php:196
+#: server_privileges.php:549
+msgid "Allows locking tables for the current thread."
+msgstr "Разрешает блокировку таблиц для текущего потока"
+
+#: server_privileges.php:43 server_privileges.php:646
+#: server_privileges.php:648
+msgid "Limits the number of new connections the user may open per hour."
+msgstr ""
+"Максимальное количество новых подключений, которые пользователь может "
+"установить в течение часа"
+
+#: server_privileges.php:44 server_privileges.php:634
+#: server_privileges.php:636
+msgid "Limits the number of queries the user may send to the server per hour."
+msgstr ""
+"Максимальное количество запросов, которые пользователь может отправить в "
+"течение часа"
+
+#: server_privileges.php:45 server_privileges.php:640
+#: server_privileges.php:642
+msgid ""
+"Limits the number of commands that change any table or database the user may "
+"execute per hour."
+msgstr ""
+"Максимальное количество команд изменяющих какую-либо таблицу или базу "
+"данных, которые пользователь может выполнить в течение часа"
+
+#: server_privileges.php:46 server_privileges.php:652
+#: server_privileges.php:654
+msgid "Limits the number of simultaneous connections the user may have."
+msgstr "Максимальное количество одновременных подключений одного пользователя"
+
+#: server_privileges.php:47 server_privileges.php:188
+#: server_privileges.php:544
+msgid "Allows viewing processes of all users"
+msgstr "Разрешает просмотр процессов всех пользователей"
+
+#: server_privileges.php:48 server_privileges.php:190
+#: server_privileges.php:448 server_privileges.php:550
+msgid "Has no effect in this MySQL version."
+msgstr "Не доступно в данной версии MySQL!"
+
+#: server_privileges.php:49 server_privileges.php:186
+#: server_privileges.php:545
+msgid "Allows reloading server settings and flushing the server's caches."
+msgstr "Разрешает перезагрузку настроек сервера и очистку его кешей"
+
+#: server_privileges.php:50 server_privileges.php:198
+#: server_privileges.php:552
+msgid "Allows the user to ask where the slaves / masters are."
+msgstr "Разрешает запрашивать местонахождение головного и подчиненных серверов"
+
+#: server_privileges.php:51 server_privileges.php:197
+#: server_privileges.php:553
+msgid "Needed for the replication slaves."
+msgstr "Необходимо для подчиненных серверов при репликации"
+
+#: server_privileges.php:52 server_privileges.php:180
+#: server_privileges.php:439 server_privileges.php:503
+msgid "Allows reading data."
+msgstr "Разрешает выборку данных"
+
+#: server_privileges.php:53 server_privileges.php:193
+#: server_privileges.php:547
+msgid "Gives access to the complete list of databases."
+msgstr "Разрешает доступ к полному списку баз данных"
+
+#: server_privileges.php:54 server_privileges.php:204
+#: server_privileges.php:206 server_privileges.php:519
+msgid "Allows performing SHOW CREATE VIEW queries."
+msgstr "Разрешает вывод запроса создающего представление (SHOW CREATE VIEW)"
+
+#: server_privileges.php:55 server_privileges.php:187
+#: server_privileges.php:546
+msgid "Allows shutting down the server."
+msgstr "Разрешает остановку сервера"
+
+#: server_privileges.php:56 server_privileges.php:194
+#: server_privileges.php:543
+msgid ""
+"Allows connecting, even if maximum number of connections is reached; "
+"required for most administrative operations like setting global variables or "
+"killing threads of other users."
+msgstr ""
+"Разрешает установку соединения, даже при достижении максимального количества "
+"соединений. (Требуется для большинства административных задач, таких как "
+"установка глобальных переменных или завершение процессов других "
+"пользователей)"
+
+#: server_privileges.php:57 server_privileges.php:201
+#: server_privileges.php:535
+msgid "Allows creating and dropping triggers"
+msgstr "Разрешает создание и удаление триггеров"
+
+#: server_privileges.php:58 server_privileges.php:182
+#: server_privileges.php:445 server_privileges.php:505
+msgid "Allows changing data."
+msgstr "Разрешает изменение данных"
+
+#: server_privileges.php:59 server_privileges.php:260
+msgid "No privileges."
+msgstr "Нет привилегий"
+
+#: server_privileges.php:302 server_privileges.php:303
#, fuzzy
#| msgid "None"
msgctxt "None privileges"
msgid "None"
msgstr "Нет"
-#: server_privileges.php:392 server_privileges.php:527
-#: server_privileges.php:1679 server_privileges.php:1685
+#: server_privileges.php:431 server_privileges.php:566
+#: server_privileges.php:1718 server_privileges.php:1724
msgid "Table-specific privileges"
msgstr " Привилегии уровня таблицы"
-#: server_privileges.php:393 server_privileges.php:535
-#: server_privileges.php:1501
+#: server_privileges.php:432 server_privileges.php:574
+#: server_privileges.php:1540
msgid " Note: MySQL privilege names are expressed in English "
msgstr "Примечание: типы привилегий MySQL отображаются по-английски."
-#: server_privileges.php:524 server_privileges.php:1500
+#: server_privileges.php:563 server_privileges.php:1539
msgid "Global privileges"
msgstr "Глобальные привилегии"
-#: server_privileges.php:526 server_privileges.php:1679
+#: server_privileges.php:565 server_privileges.php:1718
msgid "Database-specific privileges"
msgstr "Привилегии уровня базы данных"
-#: server_privileges.php:571
+#: server_privileges.php:610
msgid "Administration"
msgstr "Администрирование"
-#: server_privileges.php:591
+#: server_privileges.php:630
msgid "Resource limits"
msgstr "Ограничение на использование ресурсов"
-#: server_privileges.php:592
+#: server_privileges.php:631
msgid "Note: Setting these options to 0 (zero) removes the limit."
msgstr ""
"Замечание: Установка значения параметров в 0 (ноль), снимает ограничения."
-#: server_privileges.php:669
+#: server_privileges.php:708
msgid "Login Information"
msgstr "Информация учетной записи"
-#: server_privileges.php:763
+#: server_privileges.php:802
msgid "Do not change the password"
msgstr "Не менять пароль"
-#: server_privileges.php:804 server_privileges.php:2166
+#: server_privileges.php:843 server_privileges.php:2205
#, fuzzy
#| msgid "No user(s) found."
msgid "No user found."
msgstr "Пользователей не найдено."
-#: server_privileges.php:848
+#: server_privileges.php:887
#, php-format
msgid "The user %s already exists!"
msgstr "Пользователь %s уже существует!"
-#: server_privileges.php:931
+#: server_privileges.php:970
msgid "You have added a new user."
msgstr "Был добавлен новый пользователь."
-#: server_privileges.php:1152
+#: server_privileges.php:1191
#, php-format
msgid "You have updated the privileges for %s."
msgstr "Были изменены привилегии для %s."
-#: server_privileges.php:1176
+#: server_privileges.php:1215
#, php-format
msgid "You have revoked the privileges for %s"
msgstr "Отменены привилегии для %s."
-#: server_privileges.php:1212
+#: server_privileges.php:1251
#, php-format
msgid "The password for %s was changed successfully."
msgstr "Пароль для %s был успешно изменен."
-#: server_privileges.php:1232
+#: server_privileges.php:1271
#, php-format
msgid "Deleting %s"
msgstr "Удаление %s"
-#: server_privileges.php:1243
+#: server_privileges.php:1282
msgid "No users selected for deleting!"
msgstr "Не выбраны пользователи подлежащие удалению!"
-#: server_privileges.php:1246
+#: server_privileges.php:1285
msgid "Reloading the privileges"
msgstr "Перезагрузка привилегий"
-#: server_privileges.php:1261
+#: server_privileges.php:1300
msgid "The selected users have been deleted successfully."
msgstr "Выбранные пользователи были успешно удалены."
-#: server_privileges.php:1296
+#: server_privileges.php:1335
msgid "The privileges were reloaded successfully."
msgstr "Привилегии были успешно перезагружены."
-#: server_privileges.php:1324 server_privileges.php:1610
+#: server_privileges.php:1363 server_privileges.php:1649
msgid "Edit Privileges"
msgstr "Редактирование привилегий"
-#: server_privileges.php:1333
+#: server_privileges.php:1372
msgid "Revoke"
msgstr "Отменить"
-#: server_privileges.php:1365
+#: server_privileges.php:1404
msgid "User overview"
msgstr "Обзор учетных записей"
-#: server_privileges.php:1502 server_privileges.php:1684
-#: server_privileges.php:2033
+#: server_privileges.php:1541 server_privileges.php:1723
+#: server_privileges.php:2072
msgid "Grant"
msgstr "GRANT"
-#: server_privileges.php:1521 server_privileges.php:2123
+#: server_privileges.php:1560 server_privileges.php:2162
msgid "Any"
msgstr "Любой"
-#: server_privileges.php:1570 server_privileges.php:1594
-#: server_privileges.php:1988 server_privileges.php:2177
+#: server_privileges.php:1609 server_privileges.php:1633
+#: server_privileges.php:2027 server_privileges.php:2216
msgid "Add a new User"
msgstr "Добавить нового пользователя"
-#: server_privileges.php:1575
+#: server_privileges.php:1614
msgid "Remove selected users"
msgstr "Удалить выделенных пользователей"
-#: server_privileges.php:1578
+#: server_privileges.php:1617
msgid "Revoke all active privileges from the users and delete them afterwards."
msgstr "Отменить все активные привилегии пользователей и затем удалить их."
-#: server_privileges.php:1579 server_privileges.php:1580
-#: server_privileges.php:1581
+#: server_privileges.php:1618 server_privileges.php:1619
+#: server_privileges.php:1620
msgid "Drop the databases that have the same names as the users."
msgstr "Удалить базы данных, имена которых совпадают с именами пользователей."
-#: server_privileges.php:1597
+#: server_privileges.php:1636
#, php-format
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
@@ -5641,98 +4987,98 @@ msgstr ""
"отличаться от привилегий, используемых сервером, если они были изменены "
"вручную. В таком случае необходимо %sперезагрузить привилегии%s."
-#: server_privileges.php:1645
+#: server_privileges.php:1684
msgid "The selected user was not found in the privilege table."
msgstr "Выделенный пользователь не был найден в таблице привилегий."
-#: server_privileges.php:1685
+#: server_privileges.php:1724
msgid "Column-specific privileges"
msgstr "Привилегии уровня столбца"
-#: server_privileges.php:1886
+#: server_privileges.php:1925
msgid "Add privileges on the following database"
msgstr "Добавить привилегии на следующую базу"
-#: server_privileges.php:1904
+#: server_privileges.php:1943
msgid "Wildcards % and _ should be escaped with a \\ to use them literally"
msgstr ""
"При использовании в имени базы данных символов нижнего подчеркивания (_) и "
"процента (%), необходимо экранировать их символом обратной косой черты (\\), "
"в противном случае они будут интерпретированы как групповые символы"
-#: server_privileges.php:1907
+#: server_privileges.php:1946
msgid "Add privileges on the following table"
msgstr " Добавить привилегии на следующую таблицу"
-#: server_privileges.php:1964
+#: server_privileges.php:2003
msgid "Change Login Information / Copy User"
msgstr "Изменить/Копировать учетную запись"
-#: server_privileges.php:1967
+#: server_privileges.php:2006
msgid "Create a new user with the same privileges and ..."
msgstr "Создать нового пользователя с такими же привилегиями..."
-#: server_privileges.php:1969
+#: server_privileges.php:2008
msgid "... keep the old one."
msgstr "и сохранить старого."
-#: server_privileges.php:1970
+#: server_privileges.php:2009
msgid " ... delete the old one from the user tables."
msgstr "и удалить старого из таблиц пользователей."
-#: server_privileges.php:1971
+#: server_privileges.php:2010
msgid ""
" ... revoke all active privileges from the old one and delete it afterwards."
msgstr ", отменить все активные привилегии старого и затем удалить его."
-#: server_privileges.php:1972
+#: server_privileges.php:2011
msgid ""
" ... delete the old one from the user tables and reload the privileges "
"afterwards."
msgstr ", удалить старого из таблиц пользователей и перезагрузить привилегии."
-#: server_privileges.php:1994
+#: server_privileges.php:2033
msgid "Database for user"
msgstr "База данных для пользователя"
-#: server_privileges.php:1998
+#: server_privileges.php:2037
#, fuzzy
#| msgid "None"
msgctxt "Create none database for user"
msgid "None"
msgstr "Нет"
-#: server_privileges.php:1999
+#: server_privileges.php:2038
msgid "Create database with same name and grant all privileges"
msgstr ""
"Создать базу данных с именем пользователя в названии и предоставить на нее "
"полные привилегии"
-#: server_privileges.php:2000
+#: server_privileges.php:2039
msgid "Grant all privileges on wildcard name (username\\_%)"
msgstr ""
"Предоставить полные привилегии на базы данных подпадающие под шаблон (имя "
"пользователя\\_%)"
-#: server_privileges.php:2003
+#: server_privileges.php:2042
#, php-format
msgid "Grant all privileges on database "%s""
msgstr "Выставить полные привилегии на базу данных "%s""
-#: server_privileges.php:2026
+#: server_privileges.php:2065
#, php-format
msgid "Users having access to "%s""
msgstr "Пользователи с правами доступа к "%s""
-#: server_privileges.php:2134
+#: server_privileges.php:2173
msgid "global"
msgstr "Глобальный уровень"
-#: server_privileges.php:2136
+#: server_privileges.php:2175
msgid "database-specific"
msgstr "Уровень базы данных"
-#: server_privileges.php:2138
+#: server_privileges.php:2177
msgid "wildcard"
msgstr "Групповой символ"
@@ -5782,7 +5128,7 @@ msgstr "Головной сервер успешно изменён на %s"
msgid "This server is configured as master in a replication process."
msgstr "Данный сервер настроен головным в процессе репликации."
-#: server_replication.php:184 server_status.php:281
+#: server_replication.php:184 server_status.php:392
msgid "Show master status"
msgstr "Показать состояние головного сервера"
@@ -5937,83 +5283,749 @@ msgstr ""
"Данный сервер не настроен в качестве подчинённого для процесса репликации. "
"Хотите произвести настройку?"
+#: server_status.php:40
+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 ""
+"Количество транзакций, использовавших кеш бинарного журнала и превысивших "
+"значение binlog_cache_size, вследствие чего содержащиеся в них SQL-выражения "
+"были сохранены во временном файле."
+
+#: server_status.php:41
+msgid "The number of transactions that used the temporary binary log cache."
+msgstr "Количество транзакций, использовавших кеш бинарного журнала."
+
+#: server_status.php:42
+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 "
+"to increase the tmp_table_size value to cause temporary tables to be memory-"
+"based instead of disk-based."
+msgstr ""
+"Количество временных таблиц, автоматически созданных сервером на диске, во "
+"время выполнения SQL-выражений. Если значение Created_tmp_disk_tables "
+"велико, следует увеличить значение переменной tmp_table_size, чтобы "
+"временные таблицы располагались в памяти, а не на жестком диске."
+
+#: server_status.php:43
+msgid "How many temporary files mysqld has created."
+msgstr "Количество временных файлов, созданных MySQL-сервером (mysqld)."
+
+#: server_status.php:44
+msgid ""
+"The number of in-memory temporary tables created automatically by the server "
+"while executing statements."
+msgstr ""
+"Количество временных таблиц в памяти, созданных сервером автоматически в "
+"процессе выполнения SQL-выражений."
+
+#: server_status.php:45
+msgid ""
+"The number of rows written with INSERT DELAYED for which some error occurred "
+"(probably duplicate key)."
+msgstr ""
+"Количество ошибок, возникших в процессе обработки запросов INSERT DELAYED, "
+"например, из-за дублирования ключей."
+
#: server_status.php:46
+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."
+
+#: server_status.php:47
+msgid "The number of INSERT DELAYED rows written."
+msgstr ""
+"Количество строк записанных в режиме отложенной вставки данных (INSERT "
+"DELAYED)."
+
+#: server_status.php:48
+msgid "The number of executed FLUSH statements."
+msgstr "Количество выполненных команд FLUSH."
+
+#: server_status.php:49
+msgid "The number of internal COMMIT statements."
+msgstr "Количество внутренних команд COMMIT."
+
+#: server_status.php:50
+msgid "The number of times a row was deleted from a table."
+msgstr "Количество запросов на удаление строк из таблицы."
+
+#: server_status.php:51
+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 ""
+"MySQL-сервер может запрашивать NDB Cluster о существовании таблиц с "
+"определенным именем. Этот процесс называется обнаружением. Handler_discover "
+"- число обнаружений таблиц."
+
+#: server_status.php:52
+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 ""
+"Количество запросов на чтение первой записи из индекса. При большом значении "
+"переменной, скорее всего, сервер многократно выполняет полное сканирование "
+"индекса. Например, SELECT col1 FROM foo, при условии, что col1 "
+"проиндексирован."
+
+#: server_status.php:53
+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 ""
+"Количество запросов на чтение строк, построенных на значении ключа. Большое "
+"значение переменной говорит о том, что запросы и таблицы проиндексированы "
+"надлежащим образом."
+
+#: server_status.php:54
+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 ""
+"Количество запросов на чтение следующей строки в порядке расположения "
+"индексов. Значение увеличивается при запросе индексного столбца с "
+"ограничением по размеру или при сканировании индекса."
+
+#: server_status.php:55
+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 ""
+"Количество запросов на чтение предыдущей строки при ниспадающей сортировке "
+"индекса. Обычно используется при оптимизации: ORDER BY ... DESC."
+
+#: server_status.php:56
+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 "
+"probably have a lot of queries that require MySQL to scan whole tables or "
+"you have joins that don't use keys properly."
+msgstr ""
+"Количество запросов, на чтение строки, основанных на ее позиции. Большое "
+"значение переменной может быть обусловлено частым выполнением запросов "
+"использующих сортировку результата, выполнением большого числа запросов "
+"требующих полного сканирования таблиц, наличием объединений не использующих "
+"индексы надлежащим образом."
+
+#: server_status.php:57
+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 "
+"tables are not properly indexed or that your queries are not written to take "
+"advantage of the indexes you have."
+msgstr ""
+"Количество запросов на чтение следующей строки из файла данных. Данное "
+"значение будет высоким, при частом сканировании таблиц. Обычно это означает, "
+"что таблицы не проиндексированы надлежащим образом или запросы не используют "
+"преимущества индексов."
+
+#: server_status.php:58
+msgid "The number of internal ROLLBACK statements."
+msgstr "Количество внутренних команд ROLLBACK."
+
+#: server_status.php:59
+msgid "The number of requests to update a row in a table."
+msgstr "Количество запросов на обновление строк в таблице."
+
+#: server_status.php:60
+msgid "The number of requests to insert a row in a table."
+msgstr "Количество запросов на вставку строк в таблицу."
+
+#: server_status.php:61
+msgid "The number of pages containing data (dirty or clean)."
+msgstr ""
+"Количество страниц содержащих данные ("грязные" или ""
+"чистые")."
+
+#: server_status.php:62
+msgid "The number of pages currently dirty."
+msgstr "Текущее количество "грязных" страниц."
+
+#: server_status.php:63
+msgid "The number of buffer pool pages that have been requested to be flushed."
+msgstr ""
+"Количество страниц буферного пула, над которыми был осуществлен процесс "
+"очистки (FLUSH)."
+
+#: server_status.php:64
+msgid "The number of free pages."
+msgstr "Количество свободных страниц."
+
+#: server_status.php:65
+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 ""
+"Количество станиц заблокированных в буферном пуле InnoDB. Над этими "
+"страницами осуществляется процесс чтения или записи, либо они не могут быть "
+"очищены или удалены по какой-либо другой причине."
+
+#: server_status.php:66
+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 "
+"be calculated as Innodb_buffer_pool_pages_total - "
+"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data."
+msgstr ""
+"Количество страниц занятых вследствие выделения под административные "
+"процессы, такие как: блокировка строки или адаптивное хеширование индекса. "
+"Значение можно рассчитать по формуле: Innodb_buffer_pool_pages_total - "
+"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data."
+
+#: server_status.php:67
+msgid "Total size of buffer pool, in pages."
+msgstr "Общий размер буферного пула (в страницах)."
+
+#: server_status.php:68
+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 ""
+"Количество "случайных" опережающих чтений, инициированных InnoDB. "
+"Это происходит, когда запрос сканирует большую часть таблицы в случайном "
+"порядке."
+
+#: server_status.php:69
+msgid ""
+"The number of sequential read-aheads InnoDB initiated. This happens when "
+"InnoDB does a sequential full table scan."
+msgstr ""
+"Количество последовательных опережающих чтений, инициированных InnoDB. Это "
+"происходит, когда InnoDB выполняет полное последовательное сканирование "
+"таблицы."
+
+#: server_status.php:70
+msgid "The number of logical read requests InnoDB has done."
+msgstr "Количество последовательных запросов на чтение, выполненных InnoDB."
+
+#: server_status.php:71
+msgid ""
+"The number of logical reads that InnoDB could not satisfy from buffer pool "
+"and had to do a single-page read."
+msgstr ""
+"Количество последовательных запросов на чтение, которые InnoDB не смог "
+"выполнить из буферного пула и использовал постраничное чтение."
+
+#: server_status.php:72
+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 "
+"available, it's necessary to wait for pages to be flushed first. This "
+"counter counts instances of these waits. If the buffer pool size was set "
+"properly, this value should be small."
+msgstr ""
+"Обычно, записи в буферный пул InnoDB выполняются в фоновом режиме. Однако, "
+"если необходимо чтение или создание страницы при отсутствии чистых таковых, "
+"сперва требуется ожидание их очистки. Данный счетчик показывает число таких "
+"ожиданий. Если размер буферного пула был установлен должным образом, "
+"значение будет небольшим."
+
+#: server_status.php:73
+msgid "The number writes done to the InnoDB buffer pool."
+msgstr "Количество записей, выполненных в буферный пул InnoDB."
+
+#: server_status.php:74
+msgid "The number of fsync() operations so far."
+msgstr "Количество операций fsync(), выполненных на данный момент."
+
+#: server_status.php:75
+msgid "The current number of pending fsync() operations."
+msgstr "Текущее количество незавершенных операций fsync()."
+
+#: server_status.php:76
+msgid "The current number of pending reads."
+msgstr "Текущее количество незавершенных операций чтения."
+
+#: server_status.php:77
+msgid "The current number of pending writes."
+msgstr "Текущее количество незавершенных операций записи."
+
+#: server_status.php:78
+msgid "The amount of data read so far, in bytes."
+msgstr "Сумма данных (в байтах), прочитанных на данный момент."
+
+#: server_status.php:79
+msgid "The total number of data reads."
+msgstr "Общее количество операций чтения данных."
+
+#: server_status.php:80
+msgid "The total number of data writes."
+msgstr "Общее количество операций записи данных."
+
+#: server_status.php:81
+msgid "The amount of data written so far, in bytes."
+msgstr "Сумма данных (в байтах), записанных на данный момент."
+
+#: server_status.php:82
+msgid "The number of pages that have been written for doublewrite operations."
+msgstr ""
+"Количество записей в буфер doublewrite, и количество созданных для этого "
+"страниц."
+
+#: server_status.php:83
+msgid "The number of doublewrite operations that have been performed."
+msgstr ""
+"Количество записей в буфер doublewrite, и количество созданных для этого "
+"страниц."
+
+#: server_status.php:84
+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 ""
+"Количество ожиданий очистки журнального буфера, вследствие малого его "
+"размера."
+
+#: server_status.php:85
+msgid "The number of log write requests."
+msgstr "Количество запросов на запись в журнал."
+
+#: server_status.php:86
+msgid "The number of physical writes to the log file."
+msgstr "Количество физических записей в файл журнала."
+
+#: server_status.php:87
+msgid "The number of fsync() writes done to the log file."
+msgstr "Количество записей с помощью fsync(), сделанных в файл журнала."
+
+#: server_status.php:88
+msgid "The number of pending log file fsyncs."
+msgstr ""
+"Количество незавершенных попыток синхронизации с помощью операции fsync()."
+
+#: server_status.php:89
+msgid "Pending log file writes."
+msgstr "Количество незавершенных запросов на запись в журнал."
+
+#: server_status.php:90
+msgid "The number of bytes written to the log file."
+msgstr "Объем данных в байтах, записанных в файл журнала."
+
+#: server_status.php:91
+msgid "The number of pages created."
+msgstr "Количество созданных страниц."
+
+#: server_status.php:92
+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 ""
+"Размер страницы, компилируемой в InnoDB (по умолчанию 16Кб). Многие значения "
+"приводятся в страницах, но зная объем страницы, можно перевести эти значения "
+"в байты."
+
+#: server_status.php:93
+msgid "The number of pages read."
+msgstr "Количество прочитанных страниц."
+
+#: server_status.php:94
+msgid "The number of pages written."
+msgstr "Количество записанных страниц."
+
+#: server_status.php:95
+msgid "The number of row locks currently being waited for."
+msgstr "Текущее количество ожиданий блокировок строк."
+
+#: server_status.php:96
+msgid "The average time to acquire a row lock, in milliseconds."
+msgstr "Среднее время ожидания блокировки строк (в миллисекундах)."
+
+#: server_status.php:97
+msgid "The total time spent in acquiring row locks, in milliseconds."
+msgstr "Общее время, ожидания блокировок строк (в миллисекундах)."
+
+#: server_status.php:98
+msgid "The maximum time to acquire a row lock, in milliseconds."
+msgstr "Максимальное время ожидания блокировки строк (в миллисекундах)."
+
+#: server_status.php:99
+msgid "The number of times a row lock had to be waited for."
+msgstr "Общее количество ожиданий блокировки строк."
+
+#: server_status.php:100
+msgid "The number of rows deleted from InnoDB tables."
+msgstr "Количество строк, удаленных из таблиц InnoDB."
+
+#: server_status.php:101
+msgid "The number of rows inserted in InnoDB tables."
+msgstr "Количество строк, добавленных в таблицы InnoDB."
+
+#: server_status.php:102
+msgid "The number of rows read from InnoDB tables."
+msgstr "Количество строк, прочитанных из таблиц InnoDB."
+
+#: server_status.php:103
+msgid "The number of rows updated in InnoDB tables."
+msgstr "Количество строк, обновленных в таблицах InnoDB."
+
+#: server_status.php:104
+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."
+
+#: server_status.php:105
+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 ""
+"Количество неиспользуемых блоков в кеше индекса. Данный параметр позволяет "
+"определить как полно используется кеш индекса."
+
+#: server_status.php:106
+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 ""
+"Количество используемых блоков в кеше индекса. Данное значение - "
+"максимальное количество блоков, использованных одновременно."
+
+#: server_status.php:107
+msgid "The number of requests to read a key block from the cache."
+msgstr "Количество запросов на чтение блока из кеша индексов."
+
+#: server_status.php:108
+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 ""
+"Количество физических операций чтения блока индексов с диска. Если значение "
+"велико - скорее всего, задано слишком маленькое значение переменной "
+"key_buffer_size. Коэффициент неудачных обращений к кешу может быть рассчитан "
+"как: Key_reads/Key_read_requests."
+
+#: server_status.php:109
+msgid "The number of requests to write a key block to the cache."
+msgstr "Количество запросов на запись блока в кеш индекса."
+
+#: server_status.php:110
+msgid "The number of physical writes of a key block to disk."
+msgstr "Количество физических операций записи блока индексов на диск."
+
+#: server_status.php:111
+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 ""
+"Общие затраты последнего компилированного запроса, рассчитанные "
+"оптимизатором запросов. Полезно при сравнении эффективности различных схем "
+"одного запроса. Изначальное нулевое значение, означает, что процесса "
+"компиляции запроса еще не было."
+
+#: server_status.php:112
+msgid "The number of rows waiting to be written in INSERT DELAYED queues."
+msgstr "Количество строк, ожидающих вставки в запросах INSERT DELAYED."
+
+#: server_status.php:113
+msgid ""
+"The number of tables that have been opened. If opened tables is big, your "
+"table cache value is probably too small."
+msgstr ""
+"Общее количество открывавшихся таблиц. При большом значении переменной "
+"рекомендуется увеличить размер кеша таблиц (table_cache)."
+
+#: server_status.php:114
+msgid "The number of files that are open."
+msgstr "Количество открытых файлов."
+
+#: server_status.php:115
+msgid "The number of streams that are open (used mainly for logging)."
+msgstr ""
+"Количество открытых потоков (применяется к файлам журналов). Потоком "
+"называется файл, открытый с помощью функции fopen()."
+
+#: server_status.php:116
+msgid "The number of tables that are open."
+msgstr "Количество открытых таблиц."
+
+#: server_status.php:117
+msgid "The number of free memory blocks in query cache."
+msgstr "Количество свободных блоков памяти в кеше запросов."
+
+#: server_status.php:118
+msgid "The amount of free memory for query cache."
+msgstr "Объем свободной памяти для кеша запросов."
+
+#: server_status.php:119
+msgid "The number of cache hits."
+msgstr ""
+"Количество "попаданий" в кеш запросов, т.е. сколько запросов было "
+"удовлетворено запросами, находящимися в кеше."
+
+#: server_status.php:120
+msgid "The number of queries added to the cache."
+msgstr "Количество запросов, добавленных в кеш запросов."
+
+#: server_status.php:121
+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 "
+"cache size. The query cache uses a least recently used (LRU) strategy to "
+"decide which queries to remove from the cache."
+msgstr ""
+"Количество запросов, удаленных из кеша для освобождения памяти под "
+"кеширование новых запросов. Эта информация может помочь при настройке "
+"размера кеша запросов. Кеш запросов использует стратегию LRU (дольше всего "
+"не использующиеся страницы заменяются новыми) при принятии решения об "
+"удаления запроса из кеша."
+
+#: server_status.php:122
+msgid ""
+"The number of non-cached queries (not cachable, or not cached due to the "
+"query_cache_type setting)."
+msgstr ""
+"Количество запросов, которые оказались некешируемыми или для которых "
+"кеширование было подавлено с помощью ключевого слова SQL_NO_CACHE."
+
+#: server_status.php:123
+msgid "The number of queries registered in the cache."
+msgstr "Количество запросов, зарегистрированных в кеше."
+
+#: server_status.php:124
+msgid "The total number of blocks in the query cache."
+msgstr "Суммарное количество блоков памяти, отведенных под кеш запросов."
+
+#: server_status.php:125
+msgctxt "$strShowStatusReset"
+msgid "Reset"
+msgstr "Сбросить"
+
+#: server_status.php:126
+msgid "The status of failsafe replication (not yet implemented)."
+msgstr "Состояние отказоустойчивой репликации (пока не реализовано)."
+
+#: server_status.php:127
+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 ""
+"Количество запросов-объединений, выполненных без использования индексов. "
+"Если значение переменной не равно 0, рекомендуется проверить индексы таблиц."
+
+#: server_status.php:128
+msgid "The number of joins that used a range search on a reference table."
+msgstr ""
+"Количество запросов-объединений, выполненных с использованием поиска по "
+"диапазону в таблице, на которую делается ссылка."
+
+#: server_status.php:129
+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 ""
+"Количество запросов-объединений, выполненных с использованием поиска по "
+"диапазону для выборки строк из вторичной таблицы. Если значение переменной "
+"не равно 0, рекомендуется проверить индексы таблиц."
+
+#: server_status.php:130
+msgid ""
+"The number of joins that used ranges on the first table. (It's normally not "
+"critical even if this is big.)"
+msgstr ""
+"Количество запросов-объединений, выполненных с использованием поиска по "
+"диапазону в первой таблице. Обычно значение этой переменной не критично, "
+"даже если оно велико."
+
+#: server_status.php:131
+msgid "The number of joins that did a full scan of the first table."
+msgstr ""
+"Количество запросов-объединений, выполненных с использованием полного поиска "
+"по первой таблице."
+
+#: server_status.php:132
+msgid "The number of temporary tables currently open by the slave SQL thread."
+msgstr ""
+"Количество временных таблиц, открытых в настоящий момент подчиненным потоком."
+
+#: server_status.php:133
+msgid ""
+"Total (since startup) number of times the replication slave SQL thread has "
+"retried transactions."
+msgstr ""
+"Общее количество повторов транзакций подчиненным потоком репликации с "
+"момента запуска."
+
+#: server_status.php:134
+msgid "This is ON if this server is a slave that is connected to a master."
+msgstr ""
+"Присваивается значение ON, если данный сервер функционирует как подчиненный, "
+"подключенный к главному."
+
+#: server_status.php:135
+msgid ""
+"The number of threads that have taken more than slow_launch_time seconds to "
+"create."
+msgstr ""
+"Количество потоков, на создание которых потребовалось более чем "
+"slow_launch_time секунд."
+
+#: server_status.php:136
+msgid ""
+"The number of queries that have taken more than long_query_time seconds."
+msgstr "Количество запросов, выполнявшихся более long_query_time секунд."
+
+#: server_status.php:137
+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 ""
+"Количество проходов, сделанных алгоритмом сортировки. При большом значении "
+"следует увеличить значение переменной sort_buffer_size."
+
+#: server_status.php:138
+msgid "The number of sorts that were done with ranges."
+msgstr ""
+"Количество операций сортировки, выполненных с использованием диапазона."
+
+#: server_status.php:139
+msgid "The number of sorted rows."
+msgstr "Количество отсортированных строк."
+
+#: server_status.php:140
+msgid "The number of sorts that were done by scanning the table."
+msgstr ""
+"Количество операций сортировки, выполненных с использованием полного "
+"сканирования таблицы."
+
+#: server_status.php:141
+msgid "The number of times that a table lock was acquired immediately."
+msgstr ""
+"Количество запросов на блокировку таблицы, которые были удовлетворены "
+"немедленно."
+
+#: server_status.php:142
+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 "
+"should first optimize your queries, and then either split your table or "
+"tables or use replication."
+msgstr ""
+"Количество запросов на блокировку таблицы, которые были удовлетворены только "
+"после определенного периода ожидания. Если значение велико и есть проблемы с "
+"производительностью, необходимо сначала оптимизировать свои запросы, а затем "
+"разбить свою таблицу (или таблицы) или использовать репликацию."
+
+#: server_status.php:143
+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 ""
+"Количество потоков в потоковом кеше. Частоту успешных обращений к кешу можно "
+"вычислить по формуле Threads_created/Connections. Если это значение окрашено "
+"в красный цвет - вам следует увеличить thread_cache_size."
+
+#: server_status.php:144
+msgid "The number of currently open connections."
+msgstr "Количество открытых текущих соединений."
+
+#: server_status.php:145
+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 "
+"doesn't give a notable performance improvement if you have a good thread "
+"implementation.)"
+msgstr ""
+"Полное количество потоков, созданных для поддержания соединений с клиентом. "
+"При большом значении переменной, можно увеличить значение переменной "
+"thread_cache_size (это не даст существенного выигрыша в производительности, "
+"при хорошей реализации потоков)."
+
+#: server_status.php:146
+msgid "The number of threads that are not sleeping."
+msgstr "Количество процессов, находящихся в активном состоянии."
+
+#: server_status.php:157
msgid "Runtime Information"
msgstr "Текущее состояние MySQL"
-#: server_status.php:250
+#: server_status.php:361
msgid "Handler"
msgstr "Обработчик"
-#: server_status.php:251
+#: server_status.php:362
msgid "Query cache"
msgstr "Кеш запросов"
-#: server_status.php:252
+#: server_status.php:363
msgid "Threads"
msgstr "Потоки"
-#: server_status.php:254
+#: server_status.php:365
msgid "Temporary data"
msgstr "Временные данные"
-#: server_status.php:255
+#: server_status.php:366
msgid "Delayed inserts"
msgstr "Отложенные вставки"
-#: server_status.php:256
+#: server_status.php:367
msgid "Key cache"
msgstr "Кеш индекса"
-#: server_status.php:257
+#: server_status.php:368
msgid "Joins"
msgstr "Объединения"
-#: server_status.php:259
+#: server_status.php:370
msgid "Sorting"
msgstr "Сортировка"
-#: server_status.php:261
+#: server_status.php:372
msgid "Transaction coordinator"
msgstr "Координатор транзакций"
-#: server_status.php:271
+#: server_status.php:382
msgid "Flush (close) all tables"
msgstr "Закрыть все таблицы"
-#: server_status.php:273
+#: server_status.php:384
msgid "Show open tables"
msgstr "Список открытых таблиц"
-#: server_status.php:278
+#: server_status.php:389
msgid "Show slave hosts"
msgstr "Информация о подчиненных серверах"
-#: server_status.php:284
+#: server_status.php:395
msgid "Show slave status"
msgstr "Информация о состоянии сервера репликации"
-#: server_status.php:289
+#: server_status.php:400
msgid "Flush query cache"
msgstr "Дефрагментировать кеш запросов"
-#: server_status.php:294
+#: server_status.php:405
msgid "Show processes"
msgstr "Список процессов"
-#: server_status.php:344
+#: server_status.php:455
#, fuzzy
#| msgid "Reset"
msgctxt "for Show status"
msgid "Reset"
msgstr "Сбросить"
-#: server_status.php:350
+#: server_status.php:461
#, php-format
msgid "This MySQL server has been running for %s. It started up on %s."
msgstr "MySQL сервер работает %s. Время запуска: %s."
-#: server_status.php:360
+#: server_status.php:471
#, fuzzy
#| msgid "This server is configured as master in a replication process."
msgid ""
@@ -6021,19 +6033,19 @@ msgid ""
"b> process."
msgstr "Данный сервер настроен головным в процессе репликации."
-#: server_status.php:362
+#: server_status.php:473
#, fuzzy
#| msgid "This server is configured as master in a replication process."
msgid "This MySQL server works as master in replication process."
msgstr "Данный сервер настроен головным в процессе репликации."
-#: server_status.php:364
+#: server_status.php:475
#, fuzzy
#| msgid "This server is configured as master in a replication process."
msgid "This MySQL server works as slave in replication process."
msgstr "Данный сервер настроен головным в процессе репликации."
-#: server_status.php:366
+#: server_status.php:477
#, fuzzy
#| msgid ""
#| "This MySQL server works as %s in replication process. For further "
@@ -6047,18 +6059,18 @@ msgstr ""
"получения подробной информации о состоянии репликации сервера, пожалуйста, "
"перейдите в раздел репликации."
-#: server_status.php:383
+#: server_status.php:494
msgid ""
"Server traffic: These tables show the network traffic statistics of "
"this MySQL server since its startup."
msgstr ""
"Трафик: статистика по сетевому трафику MySQL-сервера со времени его запуска."
-#: server_status.php:388
+#: server_status.php:499
msgid "Traffic"
msgstr "Трафик"
-#: server_status.php:388
+#: server_status.php:499
msgid ""
"On a busy server, the byte counters may overrun, so those statistics as "
"reported by the MySQL server may be incorrect."
@@ -6066,36 +6078,36 @@ msgstr ""
"На загруженном сервере, побайтовые счетчики могут переполняться, таким "
"образом, статистика, передаваемая MySQL-сервером, может быть некорректной."
-#: server_status.php:389 server_status.php:434 server_status.php:497
-#: server_status.php:555
+#: server_status.php:500 server_status.php:545 server_status.php:608
+#: server_status.php:666
msgid "per hour"
msgstr "в час"
-#: server_status.php:394
+#: server_status.php:505
msgid "Received"
msgstr "Принято"
-#: server_status.php:404
+#: server_status.php:515
msgid "Sent"
msgstr "Отправлено"
-#: server_status.php:433
+#: server_status.php:544
msgid "Connections"
msgstr "Соединения"
-#: server_status.php:440
+#: server_status.php:551
msgid "max. concurrent connections"
msgstr "Максимально одновременных"
-#: server_status.php:447
+#: server_status.php:558
msgid "Failed attempts"
msgstr "Неудачных попыток"
-#: server_status.php:461
+#: server_status.php:572
msgid "Aborted"
msgstr "Прерваны"
-#: server_status.php:490
+#: server_status.php:601
#, php-format
msgid ""
"Query statistics: Since its startup, %s queries have been sent to the "
@@ -6104,19 +6116,19 @@ msgstr ""
"Статистика запросов: со времени запуска, на сервер было отослано запросов - %"
"s."
-#: server_status.php:498
+#: server_status.php:609
msgid "per minute"
msgstr "в минуту"
-#: server_status.php:499
+#: server_status.php:610
msgid "per second"
msgstr "в секунду"
-#: server_status.php:554
+#: server_status.php:665
msgid "Query type"
msgstr "Тип запроса"
-#: server_status.php:721
+#: server_status.php:832
msgid "Replication status"
msgstr "Состояние репликации"
diff --git a/po/si.po b/po/si.po
index a7414ea87..4b2848a85 100755
--- a/po/si.po
+++ b/po/si.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-06-04 16:07-0400\n"
+"POT-Creation-Date: 2010-06-08 12:32-0400\n"
"PO-Revision-Date: 2010-03-30 23:09+0200\n"
"Last-Translator: Michal \n"
"Language-Team: sinhala \n"
@@ -14,11 +14,11 @@ msgstr ""
"X-Generator: Pootle 2.0.1\n"
#: browse_foreigners.php:38 browse_foreigners.php:59
-#: libraries/display_tbl.lib.php:417 server_privileges.php:1475
+#: libraries/display_tbl.lib.php:417 server_privileges.php:1514
msgid "Show all"
msgstr "සියල්ල පෙන්වන්න"
-#: browse_foreigners.php:82 libraries/common.lib.php:2304
+#: browse_foreigners.php:82 libraries/common.lib.php:2313
#: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:394
#: libraries/export/pdf.php:147 pdf_schema.php:283 pdf_schema.php:1123
#: pdf_schema.php:1139
@@ -37,8 +37,8 @@ msgstr ""
#: browse_foreigners.php:150 db_structure.php:79 db_structure.php:80
#: db_structure.php:91 db_structure.php:93 db_structure.php:104
-#: db_structure.php:106 libraries/common.lib.php:2822
-#: libraries/common.lib.php:2829 libraries/db_links.inc.php:75
+#: db_structure.php:106 libraries/common.lib.php:2831
+#: libraries/common.lib.php:2838 libraries/db_links.inc.php:75
#: libraries/tbl_links.inc.php:63
msgid "Search"
msgstr "සෙවීම"
@@ -48,7 +48,7 @@ msgstr "සෙවීම"
#: db_structure.php:567 js/messages.php:48 libraries/Config.class.php:1046
#: libraries/Theme_Manager.class.php:311
#: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719
-#: libraries/common.lib.php:1333 libraries/common.lib.php:2279
+#: libraries/common.lib.php:1335 libraries/common.lib.php:2288
#: libraries/display_change_password.lib.php:82
#: libraries/display_create_table.lib.php:63
#: libraries/display_export.lib.php:275 libraries/display_import.lib.php:276
@@ -59,9 +59,9 @@ msgstr "සෙවීම"
#: libraries/sql_query_form.lib.php:552 libraries/tbl_properties.inc.php:782
#: main.php:128 navigation.php:237 pdf_pages.php:292 pdf_pages.php:328
#: pdf_pages.php:530 pmd_pdf.php:116 server_binlog.php:142
-#: server_privileges.php:625 server_privileges.php:1585
-#: server_privileges.php:1932 server_privileges.php:1979
-#: server_privileges.php:2018 server_replication.php:235
+#: server_privileges.php:664 server_privileges.php:1624
+#: server_privileges.php:1971 server_privileges.php:2018
+#: server_privileges.php:2057 server_replication.php:235
#: server_replication.php:318 server_replication.php:341
#: server_synchronize.php:1209 tbl_change.php:330 tbl_change.php:1174
#: tbl_change.php:1211 tbl_indexes.php:254 tbl_operations.php:265
@@ -79,7 +79,7 @@ msgstr "යතුරු නම"
#: browse_foreigners.php:169 browse_foreigners.php:171
#: server_collations.php:55 server_collations.php:67 server_engines.php:59
-#: server_status.php:628
+#: server_status.php:739
msgid "Description"
msgstr "විස්තරය"
@@ -120,7 +120,7 @@ msgstr "තීර නම්"
#: libraries/db_structure.lib.php:60 libraries/export/htmlword.php:245
#: libraries/export/latex.php:360 libraries/export/odt.php:297
#: libraries/export/texytext.php:234 libraries/tbl_properties.inc.php:100
-#: pdf_schema.php:1263 pdf_schema.php:1284 server_privileges.php:2031
+#: pdf_schema.php:1263 pdf_schema.php:1284 server_privileges.php:2070
#: tbl_change.php:287 tbl_change.php:314 tbl_printview.php:143
#: tbl_printview.php:313 tbl_select.php:136 tbl_structure.php:178
#: tbl_structure.php:659 tbl_tracking.php:274 tbl_tracking.php:321
@@ -164,9 +164,9 @@ msgstr "විස්තරය"
#: libraries/Index.class.php:386 libraries/export/htmlword.php:322
#: libraries/export/latex.php:430 libraries/export/odt.php:368
#: libraries/export/texytext.php:311 libraries/mult_submits.inc.php:263
-#: pdf_schema.php:1344 server_privileges.php:1529 server_privileges.php:1540
-#: server_privileges.php:1850 server_privileges.php:1855
-#: server_privileges.php:2148 sql.php:132 sql.php:194 tbl_printview.php:229
+#: pdf_schema.php:1344 server_privileges.php:1568 server_privileges.php:1579
+#: server_privileges.php:1889 server_privileges.php:1894
+#: server_privileges.php:2187 sql.php:132 sql.php:194 tbl_printview.php:229
#: tbl_structure.php:350 tbl_tracking.php:337 tbl_tracking.php:342
msgid "No"
msgstr "නැත"
@@ -180,9 +180,9 @@ msgstr "නැත"
#: libraries/mult_submits.inc.php:101 libraries/mult_submits.inc.php:106
#: libraries/mult_submits.inc.php:111 libraries/mult_submits.inc.php:262
#: libraries/mult_submits.inc.php:273 pdf_schema.php:1344
-#: server_databases.php:64 server_privileges.php:1526
-#: server_privileges.php:1540 server_privileges.php:1850
-#: server_privileges.php:1853 server_privileges.php:2148 sql.php:193
+#: server_databases.php:64 server_privileges.php:1565
+#: server_privileges.php:1579 server_privileges.php:1889
+#: server_privileges.php:1892 server_privileges.php:2187 sql.php:193
#: tbl_printview.php:229 tbl_structure.php:40 tbl_structure.php:350
#: tbl_tracking.php:335 tbl_tracking.php:340
msgid "Yes"
@@ -279,7 +279,7 @@ msgstr "Switch to copied database"
msgid "BLOB Repository"
msgstr ""
-#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1350
+#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1352
#: libraries/server_links.inc.php:49 server_processlist.php:59
#: tbl_tracking.php:596 test/theme.php:101
msgid "Status"
@@ -343,8 +343,8 @@ msgstr "PDF පිටු සංස්කරණය කරන්න"
#: db_printview.php:104 db_tracking.php:72 db_tracking.php:157
#: libraries/db_structure.lib.php:46 libraries/export/xml.php:328
-#: libraries/header.inc.php:126 pdf_pages.php:424 server_privileges.php:1626
-#: server_privileges.php:1682 server_privileges.php:1946
+#: libraries/header.inc.php:126 pdf_pages.php:424 server_privileges.php:1665
+#: server_privileges.php:1721 server_privileges.php:1985
#: server_synchronize.php:423 server_synchronize.php:866 tbl_tracking.php:592
#: test/theme.php:75
msgid "Table"
@@ -445,7 +445,7 @@ msgstr "Del"
#: db_qbe.php:370 db_qbe.php:451 db_qbe.php:522 db_qbe.php:553
#: libraries/display_import.lib.php:166 libraries/tbl_properties.inc.php:779
-#: server_privileges.php:258 tbl_change.php:1031 tbl_indexes.php:250
+#: server_privileges.php:297 tbl_change.php:1031 tbl_indexes.php:250
#: tbl_select.php:288
msgid "Or"
msgstr "හෝ"
@@ -479,7 +479,7 @@ msgstr "Use Tables"
msgid "SQL query on database %s:"
msgstr "SQL query on database %s:"
-#: db_qbe.php:934 libraries/common.lib.php:1223
+#: db_qbe.php:934 libraries/common.lib.php:1225
msgid "Submit Query"
msgstr "විමසුම ඉදිරිපත් කරන්න"
@@ -518,7 +518,7 @@ msgstr "%s match(es) inside table %s"
#: db_search.php:267 db_structure.php:77 db_structure.php:78
#: db_structure.php:90 db_structure.php:92 db_structure.php:103
-#: db_structure.php:105 libraries/common.lib.php:2824
+#: db_structure.php:105 libraries/common.lib.php:2833
#: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50
#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:467
msgid "Browse"
@@ -565,26 +565,26 @@ msgstr "වගු(ව) තුල:"
#: db_structure.php:81 db_structure.php:82 db_structure.php:94
#: db_structure.php:95 db_structure.php:107 db_structure.php:108
-#: libraries/common.lib.php:2823 libraries/sql_query_form.lib.php:334
+#: libraries/common.lib.php:2832 libraries/sql_query_form.lib.php:334
#: libraries/sql_query_form.lib.php:337 libraries/tbl_links.inc.php:76
msgid "Insert"
msgstr "ඇතුල් කරන්න"
#: db_structure.php:83 db_structure.php:96 db_structure.php:109
-#: libraries/common.lib.php:2820 libraries/common.lib.php:2827
+#: libraries/common.lib.php:2829 libraries/common.lib.php:2836
#: libraries/db_links.inc.php:63 libraries/export/htmlword.php:23
#: libraries/export/latex.php:33 libraries/export/latex.php:337
#: libraries/export/odt.php:32 libraries/export/sql.php:60
#: libraries/export/texytext.php:23 libraries/import.lib.php:1104
#: libraries/tbl_links.inc.php:56 pmd_general.php:134
-#: server_privileges.php:554 server_replication.php:315 tbl_tracking.php:269
+#: server_privileges.php:593 server_replication.php:315 tbl_tracking.php:269
msgid "Structure"
msgstr "සැකිල්ල"
#: db_structure.php:84 db_structure.php:85 db_structure.php:97
#: db_structure.php:98 db_structure.php:110 db_structure.php:111
#: db_structure.php:545 db_structure.php:546 db_tracking.php:91
-#: libraries/Index.class.php:483 libraries/common.lib.php:1654
+#: libraries/Index.class.php:483 libraries/common.lib.php:1656
#: libraries/db_links.inc.php:100 libraries/mult_submits.inc.php:36
#: libraries/mult_submits.inc.php:73 libraries/tbl_links.inc.php:127
#: server_databases.php:352 tbl_structure.php:27 tbl_structure.php:151
@@ -594,7 +594,7 @@ msgstr "හලන්න"
#: db_structure.php:86 db_structure.php:87 db_structure.php:99
#: db_structure.php:100 db_structure.php:112 db_structure.php:113
-#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1653
+#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1655
#: libraries/mult_submits.inc.php:39 libraries/tbl_links.inc.php:105
msgid "Empty"
msgstr "හිස්"
@@ -636,7 +636,7 @@ msgstr "දර්ශනය කරන්න"
#: db_structure.php:485 libraries/db_structure.lib.php:49
#: libraries/server_links.inc.php:70 server_replication.php:33
-#: server_replication.php:164 server_status.php:258
+#: server_replication.php:164 server_status.php:369
msgid "Replication"
msgstr "Replication"
@@ -652,20 +652,20 @@ msgstr "%s is the default storage engine on this MySQL server."
#: db_structure.php:524 db_structure.php:541 db_structure.php:542
#: libraries/display_tbl.lib.php:2081 libraries/display_tbl.lib.php:2086
#: libraries/mult_submits.inc.php:16 server_databases.php:346
-#: server_databases.php:351 server_privileges.php:1557 tbl_structure.php:455
+#: server_databases.php:351 server_privileges.php:1596 tbl_structure.php:455
#: tbl_structure.php:464
msgid "With selected:"
msgstr "තෝරාගත්:"
#: db_structure.php:527 libraries/display_tbl.lib.php:2076
-#: server_databases.php:348 server_privileges.php:530
-#: server_privileges.php:1560 tbl_structure.php:458
+#: server_databases.php:348 server_privileges.php:569
+#: server_privileges.php:1599 tbl_structure.php:458
msgid "Check All"
msgstr "සියල්ල කතිර කොටුගත කරන්න"
#: db_structure.php:531 libraries/display_tbl.lib.php:2077
#: libraries/replication_gui.lib.php:33 server_databases.php:350
-#: server_privileges.php:533 server_privileges.php:1564 tbl_structure.php:462
+#: server_privileges.php:572 server_privileges.php:1603 tbl_structure.php:462
msgid "Uncheck All"
msgstr "කතිර කොටුගත කිරීම ඉවත් කරන්න"
@@ -703,7 +703,7 @@ msgstr "වගුව විශ්ලේෂණය කරන්න"
#: libraries/display_export.lib.php:83 libraries/display_tbl.lib.php:2094
#: libraries/display_tbl.lib.php:2225 libraries/mult_submits.inc.php:62
#: libraries/server_links.inc.php:84 libraries/tbl_links.inc.php:82
-#: pmd_pdf.php:84 pmd_pdf.php:109 server_privileges.php:1341
+#: pmd_pdf.php:84 pmd_pdf.php:109 server_privileges.php:1380
#: setup/frames/menu.inc.php:22 tbl_row_action.php:59
msgid "Export"
msgstr "අපනයනය"
@@ -722,8 +722,8 @@ msgstr "වගුව පරීක්ෂා කරන්න"
#: libraries/export/sql.php:342 libraries/export/texytext.php:84
#: libraries/export/xml.php:255 libraries/header.inc.php:106
#: libraries/header_printview.inc.php:58 server_databases.php:169
-#: server_privileges.php:1621 server_privileges.php:1682
-#: server_privileges.php:1940 server_processlist.php:56
+#: server_privileges.php:1660 server_privileges.php:1721
+#: server_privileges.php:1979 server_processlist.php:56
#: server_synchronize.php:1179 server_synchronize.php:1183
#: tbl_tracking.php:591 test/theme.php:65
msgid "Database"
@@ -745,8 +745,8 @@ msgstr ""
#: db_tracking.php:77 libraries/Index.class.php:440
#: libraries/db_structure.lib.php:53 server_databases.php:203
-#: server_privileges.php:1503 server_privileges.php:1686
-#: server_privileges.php:2034 tbl_structure.php:187
+#: server_privileges.php:1542 server_privileges.php:1725
+#: server_privileges.php:2073 tbl_structure.php:187
msgid "Action"
msgstr "ක්රියාව"
@@ -950,11 +950,11 @@ msgstr "දාරක නම හිස්ව පවතී!"
msgid "The user name is empty!"
msgstr "භාවිත නාමය හිස්ව පවතී!"
-#: js/messages.php:44 server_privileges.php:1197 user_password.php:70
+#: js/messages.php:44 server_privileges.php:1236 user_password.php:70
msgid "The password is empty!"
msgstr "The password is empty!"
-#: js/messages.php:45 server_privileges.php:1195 user_password.php:73
+#: js/messages.php:45 server_privileges.php:1234 user_password.php:73
msgid "The passwords aren't the same!"
msgstr "The passwords aren't the same!"
@@ -1034,8 +1034,8 @@ msgid "Prev"
msgstr "පෙර"
#. l10n: Display text for next month link in calendar
-#: js/messages.php:77 libraries/common.lib.php:2344
-#: libraries/common.lib.php:2347 libraries/display_tbl.lib.php:338
+#: js/messages.php:77 libraries/common.lib.php:2353
+#: libraries/common.lib.php:2356 libraries/display_tbl.lib.php:338
#: server_binlog.php:205 server_binlog.php:207 tbl_printview.php:424
#: tbl_structure.php:801
msgid "Next"
@@ -1111,27 +1111,27 @@ msgid "December"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:97 libraries/common.lib.php:1555
+#: js/messages.php:97 libraries/common.lib.php:1557
msgid "Jan"
msgstr "ජනවාරි"
#. l10n: Short month name
-#: js/messages.php:99 libraries/common.lib.php:1557
+#: js/messages.php:99 libraries/common.lib.php:1559
msgid "Feb"
msgstr "පෙබරවාරි"
#. l10n: Short month name
-#: js/messages.php:101 libraries/common.lib.php:1559
+#: js/messages.php:101 libraries/common.lib.php:1561
msgid "Mar"
msgstr "මාර්තු"
#. l10n: Short month name
-#: js/messages.php:103 libraries/common.lib.php:1561
+#: js/messages.php:103 libraries/common.lib.php:1563
msgid "Apr"
msgstr "අප්රේල්"
#. l10n: Short month name
-#: js/messages.php:105 libraries/common.lib.php:1563
+#: js/messages.php:105 libraries/common.lib.php:1565
#, fuzzy
#| msgid "May"
msgctxt "Short month name"
@@ -1139,37 +1139,37 @@ msgid "May"
msgstr "මැයි"
#. l10n: Short month name
-#: js/messages.php:107 libraries/common.lib.php:1565
+#: js/messages.php:107 libraries/common.lib.php:1567
msgid "Jun"
msgstr "ජූනි"
#. l10n: Short month name
-#: js/messages.php:109 libraries/common.lib.php:1567
+#: js/messages.php:109 libraries/common.lib.php:1569
msgid "Jul"
msgstr "ජූලි"
#. l10n: Short month name
-#: js/messages.php:111 libraries/common.lib.php:1569
+#: js/messages.php:111 libraries/common.lib.php:1571
msgid "Aug"
msgstr "අගෝස්තු"
#. l10n: Short month name
-#: js/messages.php:113 libraries/common.lib.php:1571
+#: js/messages.php:113 libraries/common.lib.php:1573
msgid "Sep"
msgstr "සැප්තැම්බර්"
#. l10n: Short month name
-#: js/messages.php:115 libraries/common.lib.php:1573
+#: js/messages.php:115 libraries/common.lib.php:1575
msgid "Oct"
msgstr "ඔක්තෝම්බර්"
#. l10n: Short month name
-#: js/messages.php:117 libraries/common.lib.php:1575
+#: js/messages.php:117 libraries/common.lib.php:1577
msgid "Nov"
msgstr "නොවැම්බර්"
#. l10n: Short month name
-#: js/messages.php:119 libraries/common.lib.php:1577
+#: js/messages.php:119 libraries/common.lib.php:1579
msgid "Dec"
msgstr "දෙසැම්බර්"
@@ -1210,37 +1210,37 @@ msgid "Saturday"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:132 libraries/common.lib.php:1580
+#: js/messages.php:132 libraries/common.lib.php:1582
msgid "Sun"
msgstr "ඉරිදා"
#. l10n: Short week day name
-#: js/messages.php:134 libraries/common.lib.php:1582
+#: js/messages.php:134 libraries/common.lib.php:1584
msgid "Mon"
msgstr "සදුදා"
#. l10n: Short week day name
-#: js/messages.php:136 libraries/common.lib.php:1584
+#: js/messages.php:136 libraries/common.lib.php:1586
msgid "Tue"
msgstr "අගහරුවදා"
#. l10n: Short week day name
-#: js/messages.php:138 libraries/common.lib.php:1586
+#: js/messages.php:138 libraries/common.lib.php:1588
msgid "Wed"
msgstr "බදාදා"
#. l10n: Short week day name
-#: js/messages.php:140 libraries/common.lib.php:1588
+#: js/messages.php:140 libraries/common.lib.php:1590
msgid "Thu"
msgstr "බ්රහස්පතින්දා"
#. l10n: Short week day name
-#: js/messages.php:142 libraries/common.lib.php:1590
+#: js/messages.php:142 libraries/common.lib.php:1592
msgid "Fri"
msgstr "සිකුරාදා:"
#. l10n: Short week day name
-#: js/messages.php:144 libraries/common.lib.php:1592
+#: js/messages.php:144 libraries/common.lib.php:1594
msgid "Sat"
msgstr "සෙනසුරාදා"
@@ -1385,7 +1385,7 @@ msgid "Comment"
msgstr "විස්තරය"
#: libraries/Index.class.php:466 libraries/common.lib.php:616
-#: libraries/common.lib.php:1199 libraries/display_tbl.lib.php:1117
+#: libraries/common.lib.php:1201 libraries/display_tbl.lib.php:1117
#: libraries/import.lib.php:1087 libraries/import.lib.php:1111
#: pdf_pages.php:285 setup/frames/index.inc.php:124
#: setup/lib/messages.inc.php:352 tbl_row_action.php:69
@@ -1409,7 +1409,7 @@ msgid ""
msgstr ""
#: libraries/List_Database.class.php:431 libraries/server_links.inc.php:41
-#: server_databases.php:88 server_privileges.php:1621
+#: server_databases.php:88 server_privileges.php:1660
#: setup/lib/messages.inc.php:110 test/theme.php:93
msgid "Databases"
msgstr "දත්තගබඩා"
@@ -1743,7 +1743,7 @@ msgid "Documentation"
msgstr "ලියකියවිලි"
#: libraries/common.lib.php:595 libraries/header_printview.inc.php:61
-#: server_processlist.php:60 server_status.php:247
+#: server_processlist.php:60 server_status.php:358
msgid "SQL query"
msgstr "SQL විමසුම"
@@ -1759,130 +1759,130 @@ msgstr "SQL ය පහදන්න "
msgid "Skip Explain SQL"
msgstr "Skip Explain SQL"
-#: libraries/common.lib.php:1212
+#: libraries/common.lib.php:1214
msgid "Without PHP Code"
msgstr "PHP කේත නොමැතිව"
-#: libraries/common.lib.php:1215 setup/lib/messages.inc.php:355
+#: libraries/common.lib.php:1217 setup/lib/messages.inc.php:355
msgid "Create PHP Code"
msgstr "PHP කේත සාදන්න"
-#: libraries/common.lib.php:1233 server_status.php:341
+#: libraries/common.lib.php:1235 server_status.php:452
#: setup/lib/messages.inc.php:354
msgid "Refresh"
msgstr "අලුත් කරන්න"
-#: libraries/common.lib.php:1242
+#: libraries/common.lib.php:1244
msgid "Skip Validate SQL"
msgstr "Skip Validate SQL"
-#: libraries/common.lib.php:1245 setup/lib/messages.inc.php:356 sql.php:518
+#: libraries/common.lib.php:1247 setup/lib/messages.inc.php:356 sql.php:518
msgid "Validate SQL"
msgstr "Validate SQL"
-#: libraries/common.lib.php:1276
+#: libraries/common.lib.php:1278
msgid "Inline edit of this query"
msgstr ""
-#: libraries/common.lib.php:1278
+#: libraries/common.lib.php:1280
#, fuzzy
#| msgid "Engines"
msgid "Inline"
msgstr "යන්ත්රයන්"
-#: libraries/common.lib.php:1332 libraries/common.lib.php:1347
+#: libraries/common.lib.php:1334 libraries/common.lib.php:1349
msgid "Profiling"
msgstr ""
-#: libraries/common.lib.php:1351 libraries/tbl_triggers.lib.php:28
+#: libraries/common.lib.php:1353 libraries/tbl_triggers.lib.php:28
#: server_processlist.php:58
msgid "Time"
msgstr "වේලාව"
#. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "B"
msgstr "B"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "KiB"
msgstr "KiB"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "MiB"
msgstr "MiB"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "GiB"
msgstr "GiB"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "TiB"
msgstr "TiB"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "PiB"
msgstr "PiB"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "EiB"
msgstr "EiB"
#. l10n: Thousands separator
-#: libraries/common.lib.php:1417
+#: libraries/common.lib.php:1419
msgid ","
msgstr ","
#. l10n: Decimal separator
-#: libraries/common.lib.php:1419
+#: libraries/common.lib.php:1421
msgid "."
msgstr "."
#. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string
-#: libraries/common.lib.php:1596
+#: libraries/common.lib.php:1598
#: libraries/transformations/text_plain__dateformat.inc.php:34
msgid "%B %d, %Y at %I:%M %p"
msgstr "%B %d, %Y at %I:%M %p"
-#: libraries/common.lib.php:1898
+#: libraries/common.lib.php:1907
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "දින %s, පැය %s, මිනිත්තු %s සහ තප්පර %s"
-#: libraries/common.lib.php:2313 libraries/common.lib.php:2316
-#: libraries/display_tbl.lib.php:290 server_status.php:608
+#: libraries/common.lib.php:2322 libraries/common.lib.php:2325
+#: libraries/display_tbl.lib.php:290 server_status.php:719
msgid "Begin"
msgstr "Begin"
-#: libraries/common.lib.php:2314 libraries/common.lib.php:2317
+#: libraries/common.lib.php:2323 libraries/common.lib.php:2326
#: libraries/display_tbl.lib.php:291 server_binlog.php:168
#: server_binlog.php:170
msgid "Previous"
msgstr "පෙර"
-#: libraries/common.lib.php:2345 libraries/common.lib.php:2348
+#: libraries/common.lib.php:2354 libraries/common.lib.php:2357
#: libraries/display_tbl.lib.php:353
msgid "End"
msgstr "අවසානය"
-#: libraries/common.lib.php:2421
+#: libraries/common.lib.php:2430
#, php-format
msgid "Jump to database "%s"."
msgstr ""%s" දත්තගබඩාව වෙත යන්න ."
-#: libraries/common.lib.php:2441
+#: libraries/common.lib.php:2450
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr ""
-#: libraries/common.lib.php:2821 libraries/common.lib.php:2828
+#: libraries/common.lib.php:2830 libraries/common.lib.php:2837
#: libraries/db_links.inc.php:68 libraries/export/sql.php:25
#: libraries/import/sql.php:18 libraries/server_links.inc.php:45
#: libraries/tbl_links.inc.php:60 querywindow.php:99 test/theme.php:97
msgid "SQL"
msgstr "SQL"
-#: libraries/common.lib.php:2830 libraries/db_links.inc.php:104
+#: libraries/common.lib.php:2839 libraries/db_links.inc.php:104
#: libraries/tbl_links.inc.php:95 libraries/tbl_links.inc.php:117
#: view_operations.php:89
msgid "Operations"
@@ -1939,8 +1939,8 @@ msgid "Import"
msgstr "ආනයනය"
#: libraries/db_links.inc.php:111 libraries/server_links.inc.php:66
-#: server_privileges.php:72 server_privileges.php:1683
-#: server_privileges.php:2032 test/theme.php:117
+#: server_privileges.php:111 server_privileges.php:1722
+#: server_privileges.php:2071 test/theme.php:117
msgid "Privileges"
msgstr "වරප්රසාද"
@@ -1986,22 +1986,22 @@ msgid "Change password"
msgstr "මුරපදය වෙනස් කරන්න"
#: libraries/display_change_password.lib.php:35
-#: libraries/replication_gui.lib.php:345 server_privileges.php:768
+#: libraries/replication_gui.lib.php:345 server_privileges.php:807
msgid "No Password"
msgstr "මුරපදයක් නැත"
#: libraries/display_change_password.lib.php:41
#: libraries/replication_gui.lib.php:59 libraries/replication_gui.lib.php:60
#: libraries/replication_gui.lib.php:335 libraries/replication_gui.lib.php:339
-#: libraries/replication_gui.lib.php:349 server_privileges.php:757
-#: server_privileges.php:761 server_privileges.php:772
-#: server_privileges.php:1499 server_synchronize.php:1175
+#: libraries/replication_gui.lib.php:349 server_privileges.php:796
+#: server_privileges.php:800 server_privileges.php:811
+#: server_privileges.php:1538 server_synchronize.php:1175
msgid "Password"
msgstr "මුරපදය"
#: libraries/display_change_password.lib.php:46
#: libraries/replication_gui.lib.php:353 libraries/replication_gui.lib.php:356
-#: server_privileges.php:776 server_privileges.php:779
+#: server_privileges.php:815 server_privileges.php:818
msgid "Re-type"
msgstr "නැවත ටයිප් කරන්න"
@@ -2016,12 +2016,12 @@ msgid "MySQL 4.0 compatible"
msgstr "MySQL 4.0 compatible"
#: libraries/display_change_password.lib.php:72
-#: libraries/replication_gui.lib.php:360 server_privileges.php:783
+#: libraries/replication_gui.lib.php:360 server_privileges.php:822
msgid "Generate Password"
msgstr "මුරපදය උත්පාදනය කරන්න"
#: libraries/display_change_password.lib.php:75
-#: libraries/replication_gui.lib.php:363 server_privileges.php:786
+#: libraries/replication_gui.lib.php:363 server_privileges.php:825
msgid "Generate"
msgstr "උත්පාදනය කරන්න"
@@ -2034,8 +2034,8 @@ msgstr "නව දත්තගබඩාවක් සාදන්න"
msgid "Create"
msgstr "සාදන්න"
-#: libraries/display_create_database.lib.php:40 server_privileges.php:74
-#: server_privileges.php:1388 server_replication.php:35
+#: libraries/display_create_database.lib.php:40 server_privileges.php:113
+#: server_privileges.php:1427 server_replication.php:35
msgid "No Privileges"
msgstr "වරප්රසාද නොමැත"
@@ -2126,7 +2126,7 @@ msgstr "Compression"
#: libraries/display_export.lib.php:240 libraries/display_import.lib.php:197
#: libraries/display_import.lib.php:210 libraries/display_tbl.lib.php:530
#: libraries/export/sql.php:868 libraries/tbl_properties.inc.php:575
-#: server_privileges.php:1836 server_processlist.php:75
+#: server_privileges.php:1875 server_processlist.php:75
msgid "None"
msgstr "කිසිවක් නැත"
@@ -2455,7 +2455,7 @@ msgstr ""
msgid "Buffer Pool"
msgstr "Buffer Pool"
-#: libraries/engines/innodb.lib.php:145 server_status.php:306
+#: libraries/engines/innodb.lib.php:145 server_status.php:417
msgid "InnoDB Status"
msgstr "InnoDB Status"
@@ -2464,8 +2464,8 @@ msgid "Buffer Pool Usage"
msgstr "Buffer Pool Usage"
#: libraries/engines/innodb.lib.php:194 server_databases.php:137
-#: server_databases.php:305 server_status.php:414 server_status.php:475
-#: server_status.php:496 tbl_printview.php:351 tbl_structure.php:696
+#: server_databases.php:305 server_status.php:525 server_status.php:586
+#: server_status.php:607 tbl_printview.php:351 tbl_structure.php:696
msgid "Total"
msgstr "මුළු එකතුව"
@@ -2798,7 +2798,7 @@ msgstr "මෛක්රොසොෆ්ට් වර්ඩ් 2000"
#: libraries/export/latex.php:201 libraries/export/odt.php:48
#: libraries/export/sql.php:106 libraries/export/sql.php:868
#: libraries/export/texytext.php:27 server_databases.php:127
-#: server_privileges.php:537 server_replication.php:316 tbl_printview.php:317
+#: server_privileges.php:576 server_replication.php:316 tbl_printview.php:317
#: tbl_structure.php:665
msgid "Data"
msgstr "දත්ත"
@@ -2848,9 +2848,9 @@ msgstr "MIME වර්ගය"
#: libraries/export/xml.php:102 libraries/header_printview.inc.php:57
#: libraries/replication_gui.lib.php:63 libraries/replication_gui.lib.php:174
#: libraries/replication_gui.lib.php:269 libraries/replication_gui.lib.php:272
-#: libraries/replication_gui.lib.php:329 server_privileges.php:692
-#: server_privileges.php:695 server_privileges.php:751
-#: server_privileges.php:1498 server_privileges.php:2030
+#: libraries/replication_gui.lib.php:329 server_privileges.php:731
+#: server_privileges.php:734 server_privileges.php:790
+#: server_privileges.php:1537 server_privileges.php:2069
#: server_processlist.php:55 server_synchronize.php:1159
msgid "Host"
msgstr "දායකයා"
@@ -3213,850 +3213,6 @@ msgstr "කිසිවක් නැත"
msgid "Convert to Kana"
msgstr ""
-#. l10n: Text direction, use either ltr or rtl
-#: libraries/messages.inc.php:19
-msgid "ltr"
-msgstr "ltr"
-
-#: libraries/messages.inc.php:21
-msgid "Content of table __TABLE__"
-msgstr "Content of table __TABLE__"
-
-#: libraries/messages.inc.php:22
-msgid "(continued)"
-msgstr "(ඉදිරියට)"
-
-#: libraries/messages.inc.php:23
-msgid "Structure of table __TABLE__"
-msgstr "Structure of table __TABLE__"
-
-#: libraries/messages.inc.php:25 server_privileges.php:227
-msgid "Includes all privileges except GRANT."
-msgstr "Includes all privileges except GRANT."
-
-#: libraries/messages.inc.php:26 server_privileges.php:153
-#: server_privileges.php:476
-msgid "Allows altering the structure of existing tables."
-msgstr "Allows altering the structure of existing tables."
-
-#: libraries/messages.inc.php:27 server_privileges.php:169
-#: server_privileges.php:482
-msgid "Allows altering and dropping stored routines."
-msgstr "Allows altering and dropping stored routines."
-
-#: libraries/messages.inc.php:28 server_privileges.php:145
-#: server_privileges.php:475
-msgid "Allows creating new databases and tables."
-msgstr "Allows creating new databases and tables."
-
-#: libraries/messages.inc.php:29 server_privileges.php:168
-#: server_privileges.php:481
-msgid "Allows creating stored routines."
-msgstr "Allows creating stored routines."
-
-#: libraries/messages.inc.php:30 server_privileges.php:475
-msgid "Allows creating new tables."
-msgstr "Allows creating new tables."
-
-#: libraries/messages.inc.php:31 server_privileges.php:156
-#: server_privileges.php:479
-msgid "Allows creating temporary tables."
-msgstr "Allows creating temporary tables."
-
-#: libraries/messages.inc.php:32 server_privileges.php:170
-#: server_privileges.php:515
-msgid "Allows creating, dropping and renaming user accounts."
-msgstr "Allows creating, dropping and renaming user accounts."
-
-#: libraries/messages.inc.php:33 server_privileges.php:160
-#: server_privileges.php:164 server_privileges.php:487
-#: server_privileges.php:491
-msgid "Allows creating new views."
-msgstr "Allows creating new views."
-
-#: libraries/messages.inc.php:34 server_privileges.php:144
-#: server_privileges.php:467
-msgid "Allows deleting data."
-msgstr "Allows deleting data."
-
-#: libraries/messages.inc.php:35 server_privileges.php:146
-#: server_privileges.php:478
-msgid "Allows dropping databases and tables."
-msgstr "Allows dropping databases and tables."
-
-#: libraries/messages.inc.php:36 server_privileges.php:478
-msgid "Allows dropping tables."
-msgstr "Allows dropping tables."
-
-#: libraries/messages.inc.php:37 server_privileges.php:161
-#: server_privileges.php:495
-msgid "Allows to set up events for the event scheduler"
-msgstr ""
-
-#: libraries/messages.inc.php:38 server_privileges.php:171
-#: server_privileges.php:483
-msgid "Allows executing stored routines."
-msgstr "Allows executing stored routines."
-
-#: libraries/messages.inc.php:39 server_privileges.php:150
-#: server_privileges.php:470
-msgid "Allows importing data from and exporting data into files."
-msgstr "Allows importing data from and exporting data into files."
-
-#: libraries/messages.inc.php:40 server_privileges.php:501
-msgid ""
-"Allows adding users and privileges without reloading the privilege tables."
-msgstr ""
-"Allows adding users and privileges without reloading the privilege tables."
-
-#: libraries/messages.inc.php:41 server_privileges.php:152
-#: server_privileges.php:477
-msgid "Allows creating and dropping indexes."
-msgstr "Allows creating and dropping indexes."
-
-#: libraries/messages.inc.php:42 server_privileges.php:142
-#: server_privileges.php:403 server_privileges.php:465
-msgid "Allows inserting and replacing data."
-msgstr "Allows inserting and replacing data."
-
-#: libraries/messages.inc.php:43 server_privileges.php:157
-#: server_privileges.php:510
-msgid "Allows locking tables for the current thread."
-msgstr "Allows locking tables for the current thread."
-
-#: libraries/messages.inc.php:44 server_privileges.php:607
-#: server_privileges.php:609
-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/messages.inc.php:45 server_privileges.php:595
-#: server_privileges.php:597
-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/messages.inc.php:46 server_privileges.php:601
-#: server_privileges.php:603
-msgid ""
-"Limits the number of commands that change any table or database the user may "
-"execute per hour."
-msgstr ""
-"Limits the number of commands that change any table or database the user may "
-"execute per hour."
-
-#: libraries/messages.inc.php:47 server_privileges.php:613
-#: server_privileges.php:615
-msgid "Limits the number of simultaneous connections the user may have."
-msgstr "Limits the number of simultaneous connections the user may have."
-
-#: libraries/messages.inc.php:48 server_privileges.php:149
-#: server_privileges.php:505
-msgid "Allows viewing processes of all users"
-msgstr ""
-
-#: libraries/messages.inc.php:49 server_privileges.php:151
-#: server_privileges.php:409 server_privileges.php:511
-msgid "Has no effect in this MySQL version."
-msgstr "Has no effect in this MySQL version."
-
-#: libraries/messages.inc.php:50 server_privileges.php:147
-#: server_privileges.php:506
-msgid "Allows reloading server settings and flushing the server's caches."
-msgstr "Allows reloading server settings and flushing the server's caches."
-
-#: libraries/messages.inc.php:51 server_privileges.php:159
-#: server_privileges.php:513
-msgid "Allows the user to ask where the slaves / masters are."
-msgstr "Allows the user to ask where the slaves / masters are."
-
-#: libraries/messages.inc.php:52 server_privileges.php:158
-#: server_privileges.php:514
-msgid "Needed for the replication slaves."
-msgstr "Needed for the replication slaves."
-
-#: libraries/messages.inc.php:53 server_privileges.php:141
-#: server_privileges.php:400 server_privileges.php:464
-msgid "Allows reading data."
-msgstr "Allows reading data."
-
-#: libraries/messages.inc.php:54 server_privileges.php:154
-#: server_privileges.php:508
-msgid "Gives access to the complete list of databases."
-msgstr "Gives access to the complete list of databases."
-
-#: libraries/messages.inc.php:55 server_privileges.php:165
-#: server_privileges.php:167 server_privileges.php:480
-msgid "Allows performing SHOW CREATE VIEW queries."
-msgstr "Allows performing SHOW CREATE VIEW queries."
-
-#: libraries/messages.inc.php:56 server_privileges.php:148
-#: server_privileges.php:507
-msgid "Allows shutting down the server."
-msgstr "Allows shutting down the server."
-
-#: libraries/messages.inc.php:57 server_privileges.php:155
-#: server_privileges.php:504
-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 ""
-"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."
-
-#: libraries/messages.inc.php:58 server_privileges.php:162
-#: server_privileges.php:496
-#, fuzzy
-msgid "Allows creating and dropping triggers"
-msgstr "Allows creating and dropping indexes."
-
-#: libraries/messages.inc.php:59 server_privileges.php:143
-#: server_privileges.php:406 server_privileges.php:466
-msgid "Allows changing data."
-msgstr "Allows changing data."
-
-#: libraries/messages.inc.php:60 server_privileges.php:221
-msgid "No privileges."
-msgstr "වරප්රසාද නොමැත."
-
-#: libraries/messages.inc.php:62
-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 ""
-"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."
-
-#: libraries/messages.inc.php:63
-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/messages.inc.php:64
-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 "
-"to increase the tmp_table_size value to cause temporary tables to be memory-"
-"based instead of disk-based."
-msgstr ""
-"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 "
-"to increase the tmp_table_size value to cause temporary tables to be memory-"
-"based instead of disk-based."
-
-#: libraries/messages.inc.php:65
-msgid "How many temporary files mysqld has created."
-msgstr "How many temporary files mysqld has created."
-
-#: libraries/messages.inc.php:66
-msgid ""
-"The number of in-memory temporary tables created automatically by the server "
-"while executing statements."
-msgstr ""
-"The number of in-memory temporary tables created automatically by the server "
-"while executing statements."
-
-#: libraries/messages.inc.php:67
-msgid ""
-"The number of rows written with INSERT DELAYED for which some error occurred "
-"(probably duplicate key)."
-msgstr ""
-"The number of rows written with INSERT DELAYED for which some error occurred "
-"(probably duplicate key)."
-
-#: libraries/messages.inc.php:68
-msgid ""
-"The number of INSERT DELAYED handler threads in use. Every different table "
-"on which one uses INSERT DELAYED gets its own thread."
-msgstr ""
-"The number of INSERT DELAYED handler threads in use. Every different table "
-"on which one uses INSERT DELAYED gets its own thread."
-
-#: libraries/messages.inc.php:69
-msgid "The number of INSERT DELAYED rows written."
-msgstr "The number of INSERT DELAYED rows written."
-
-#: libraries/messages.inc.php:70
-msgid "The number of executed FLUSH statements."
-msgstr "The number of executed FLUSH statements."
-
-#: libraries/messages.inc.php:71
-msgid "The number of internal COMMIT statements."
-msgstr "The number of internal COMMIT statements."
-
-#: libraries/messages.inc.php:72
-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/messages.inc.php:73
-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 ""
-"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."
-
-#: libraries/messages.inc.php:74
-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 ""
-"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."
-
-#: libraries/messages.inc.php:75
-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 ""
-"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/messages.inc.php:76
-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 ""
-"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."
-
-#: libraries/messages.inc.php:77
-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 ""
-"The number of requests to read the previous row in key order. This read "
-"method is mainly used to optimize ORDER BY ... DESC."
-
-#: libraries/messages.inc.php:78
-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 "
-"probably have a lot of queries that require MySQL to scan whole tables or "
-"you have joins that don't use keys properly."
-msgstr ""
-"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 "
-"probably have a lot of queries that require MySQL to scan whole tables or "
-"you have joins that don't use keys properly."
-
-#: libraries/messages.inc.php:79
-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 "
-"tables are not properly indexed or that your queries are not written to take "
-"advantage of the indexes you have."
-msgstr ""
-"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 "
-"tables are not properly indexed or that your queries are not written to take "
-"advantage of the indexes you have."
-
-#: libraries/messages.inc.php:80
-msgid "The number of internal ROLLBACK statements."
-msgstr "The number of internal ROLLBACK statements."
-
-#: libraries/messages.inc.php:81
-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/messages.inc.php:82
-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/messages.inc.php:83
-msgid "The number of pages containing data (dirty or clean)."
-msgstr "The number of pages containing data (dirty or clean)."
-
-#: libraries/messages.inc.php:84
-msgid "The number of pages currently dirty."
-msgstr "The number of pages currently dirty."
-
-#: libraries/messages.inc.php:85
-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/messages.inc.php:86
-msgid "The number of free pages."
-msgstr "නිදහස් පිටු ගණන."
-
-#: libraries/messages.inc.php:87
-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 ""
-"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."
-
-#: libraries/messages.inc.php:88
-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 "
-"be calculated as Innodb_buffer_pool_pages_total - "
-"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data."
-msgstr ""
-"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 "
-"be calculated as Innodb_buffer_pool_pages_total - "
-"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data."
-
-#: libraries/messages.inc.php:89
-msgid "Total size of buffer pool, in pages."
-msgstr "Total size of buffer pool, in pages."
-
-#: libraries/messages.inc.php:90
-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 ""
-"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/messages.inc.php:91
-msgid ""
-"The number of sequential read-aheads InnoDB initiated. This happens when "
-"InnoDB does a sequential full table scan."
-msgstr ""
-"The number of sequential read-aheads InnoDB initiated. This happens when "
-"InnoDB does a sequential full table scan."
-
-#: libraries/messages.inc.php:92
-msgid "The number of logical read requests InnoDB has done."
-msgstr "The number of logical read requests InnoDB has done."
-
-#: libraries/messages.inc.php:93
-msgid ""
-"The number of logical reads that InnoDB could not satisfy from buffer pool "
-"and had to do a single-page read."
-msgstr ""
-"The number of logical reads that InnoDB could not satisfy from buffer pool "
-"and had to do a single-page read."
-
-#: libraries/messages.inc.php:94
-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 "
-"available, it's necessary to wait for pages to be flushed first. This "
-"counter counts instances of these waits. If the buffer pool size was set "
-"properly, this value should be small."
-msgstr ""
-"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 "
-"available, it's necessary to wait for pages to be flushed first. This "
-"counter counts instances of these waits. If the buffer pool size was set "
-"properly, this value should be small."
-
-#: libraries/messages.inc.php:95
-msgid "The number writes done to the InnoDB buffer pool."
-msgstr "The number writes done to the InnoDB buffer pool."
-
-#: libraries/messages.inc.php:96
-msgid "The number of fsync() operations so far."
-msgstr "The number of fsync() operations so far."
-
-#: libraries/messages.inc.php:97
-msgid "The current number of pending fsync() operations."
-msgstr "The current number of pending fsync() operations."
-
-#: libraries/messages.inc.php:98
-msgid "The current number of pending reads."
-msgstr "The current number of pending reads."
-
-#: libraries/messages.inc.php:99
-msgid "The current number of pending writes."
-msgstr "The current number of pending writes."
-
-#: libraries/messages.inc.php:100
-msgid "The amount of data read so far, in bytes."
-msgstr "The amount of data read so far, in bytes."
-
-#: libraries/messages.inc.php:101
-msgid "The total number of data reads."
-msgstr "The total number of data reads."
-
-#: libraries/messages.inc.php:102
-msgid "The total number of data writes."
-msgstr "The total number of data writes."
-
-#: libraries/messages.inc.php:103
-msgid "The amount of data written so far, in bytes."
-msgstr "The amount of data written so far, in bytes."
-
-#: libraries/messages.inc.php:104
-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/messages.inc.php:105
-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/messages.inc.php:106
-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 ""
-"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/messages.inc.php:107
-msgid "The number of log write requests."
-msgstr "The number of log write requests."
-
-#: libraries/messages.inc.php:108
-msgid "The number of physical writes to the log file."
-msgstr "The number of physical writes to the log file."
-
-#: libraries/messages.inc.php:109
-msgid "The number of fsync() writes done to the log file."
-msgstr "The number of fsyncs writes done to the log file."
-
-#: libraries/messages.inc.php:110
-msgid "The number of pending log file fsyncs."
-msgstr "The number of pending log file fsyncs."
-
-#: libraries/messages.inc.php:111
-msgid "Pending log file writes."
-msgstr "Pending log file writes."
-
-#: libraries/messages.inc.php:112
-msgid "The number of bytes written to the log file."
-msgstr "The number of bytes written to the log file."
-
-#: libraries/messages.inc.php:113
-msgid "The number of pages created."
-msgstr "The number of pages created."
-
-#: libraries/messages.inc.php:114
-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 ""
-"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/messages.inc.php:115
-msgid "The number of pages read."
-msgstr "කියවන ලද පිටු ගණන."
-
-#: libraries/messages.inc.php:116
-msgid "The number of pages written."
-msgstr "ලියන ලද පිටු ගණන."
-
-#: libraries/messages.inc.php:117
-msgid "The number of row locks currently being waited for."
-msgstr "The number of row locks currently being waited for."
-
-#: libraries/messages.inc.php:118
-msgid "The average time to acquire a row lock, in milliseconds."
-msgstr "The average time to acquire a row lock, in milliseconds."
-
-#: libraries/messages.inc.php:119
-msgid "The total time spent in acquiring row locks, in milliseconds."
-msgstr "The total time spent in acquiring row locks, in milliseconds."
-
-#: libraries/messages.inc.php:120
-msgid "The maximum time to acquire a row lock, in milliseconds."
-msgstr "The maximum time to acquire a row lock, in milliseconds."
-
-#: libraries/messages.inc.php:121
-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/messages.inc.php:122
-msgid "The number of rows deleted from InnoDB tables."
-msgstr "The number of rows deleted from InnoDB tables."
-
-#: libraries/messages.inc.php:123
-msgid "The number of rows inserted in InnoDB tables."
-msgstr "The number of rows inserted in InnoDB tables."
-
-#: libraries/messages.inc.php:124
-msgid "The number of rows read from InnoDB tables."
-msgstr "The number of rows read from InnoDB tables."
-
-#: libraries/messages.inc.php:125
-msgid "The number of rows updated in InnoDB tables."
-msgstr "The number of rows updated in InnoDB tables."
-
-#: libraries/messages.inc.php:126
-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 ""
-"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/messages.inc.php:127
-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 ""
-"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/messages.inc.php:128
-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 ""
-"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."
-
-#: libraries/messages.inc.php:129
-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/messages.inc.php:130
-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 ""
-"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."
-
-#: libraries/messages.inc.php:131
-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/messages.inc.php:132
-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/messages.inc.php:133
-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 ""
-"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."
-
-#: libraries/messages.inc.php:134
-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/messages.inc.php:135
-msgid ""
-"The number of tables that have been opened. If opened tables is big, your "
-"table cache value is probably too small."
-msgstr ""
-"The number of tables that have been opened. If opened tables is big, your "
-"table cache value is probably too small."
-
-#: libraries/messages.inc.php:136
-msgid "The number of files that are open."
-msgstr "The number of files that are open."
-
-#: libraries/messages.inc.php:137
-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/messages.inc.php:138
-msgid "The number of tables that are open."
-msgstr "The number of tables that are open."
-
-#: libraries/messages.inc.php:139
-msgid "The number of free memory blocks in query cache."
-msgstr "The number of free memory blocks in query cache."
-
-#: libraries/messages.inc.php:140
-msgid "The amount of free memory for query cache."
-msgstr "The amount of free memory for query cache."
-
-#: libraries/messages.inc.php:141
-msgid "The number of cache hits."
-msgstr "The number of cache hits."
-
-#: libraries/messages.inc.php:142
-msgid "The number of queries added to the cache."
-msgstr "The number of queries added to the cache."
-
-#: libraries/messages.inc.php:143
-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 "
-"cache size. The query cache uses a least recently used (LRU) strategy to "
-"decide which queries to remove from the cache."
-msgstr ""
-"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 "
-"cache size. The query cache uses a least recently used (LRU) strategy to "
-"decide which queries to remove from the cache."
-
-#: libraries/messages.inc.php:144
-msgid ""
-"The number of non-cached queries (not cachable, or not cached due to the "
-"query_cache_type setting)."
-msgstr ""
-"The number of non-cached queries (not cachable, or not cached due to the "
-"query_cache_type setting)."
-
-#: libraries/messages.inc.php:145
-msgid "The number of queries registered in the cache."
-msgstr "The number of queries registered in the cache."
-
-#: libraries/messages.inc.php:146
-msgid "The total number of blocks in the query cache."
-msgstr "The total number of blocks in the query cache."
-
-#: libraries/messages.inc.php:147
-msgctxt "$strShowStatusReset"
-msgid "Reset"
-msgstr "Reset"
-
-#: libraries/messages.inc.php:148
-msgid "The status of failsafe replication (not yet implemented)."
-msgstr "The status of failsafe replication (not yet implemented)."
-
-#: libraries/messages.inc.php:149
-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 ""
-"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/messages.inc.php:150
-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/messages.inc.php:151
-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 ""
-"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/messages.inc.php:152
-msgid ""
-"The number of joins that used ranges on the first table. (It's normally not "
-"critical even if this is big.)"
-msgstr ""
-"The number of joins that used ranges on the first table. (It's normally not "
-"critical even if this is big.)"
-
-#: libraries/messages.inc.php:153
-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/messages.inc.php:154
-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/messages.inc.php:155
-msgid ""
-"Total (since startup) number of times the replication slave SQL thread has "
-"retried transactions."
-msgstr ""
-"Total (since startup) number of times the replication slave SQL thread has "
-"retried transactions."
-
-#: libraries/messages.inc.php:156
-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/messages.inc.php:157
-msgid ""
-"The number of threads that have taken more than slow_launch_time seconds to "
-"create."
-msgstr ""
-"The number of threads that have taken more than slow_launch_time seconds to "
-"create."
-
-#: libraries/messages.inc.php:158
-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/messages.inc.php:159
-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 ""
-"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."
-
-#: libraries/messages.inc.php:160
-msgid "The number of sorts that were done with ranges."
-msgstr "The number of sorts that were done with ranges."
-
-#: libraries/messages.inc.php:161
-msgid "The number of sorted rows."
-msgstr "The number of sorted rows."
-
-#: libraries/messages.inc.php:162
-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/messages.inc.php:163
-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/messages.inc.php:164
-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 "
-"should first optimize your queries, and then either split your table or "
-"tables or use replication."
-msgstr ""
-"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 "
-"should first optimize your queries, and then either split your table or "
-"tables or use replication."
-
-#: libraries/messages.inc.php:165
-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 ""
-"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."
-
-#: libraries/messages.inc.php:166
-msgid "The number of currently open connections."
-msgstr "The number of currently open connections."
-
-#: libraries/messages.inc.php:167
-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 "
-"doesn't give a notable performance improvement if you have a good thread "
-"implementation.)"
-msgstr ""
-"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 "
-"doesn't give a notable performance improvement if you have a good thread "
-"implementation.)"
-
-#: libraries/messages.inc.php:168
-msgid "The number of threads that are not sleeping."
-msgstr "The number of threads that are not sleeping."
-
#: libraries/mult_submits.inc.php:76 libraries/tbl_properties.inc.php:513
#: tbl_structure.php:29 tbl_structure.php:153 tbl_structure.php:157
#: tbl_structure.php:473
@@ -4374,8 +3530,8 @@ msgstr ""
#: libraries/replication_gui.lib.php:55 libraries/replication_gui.lib.php:56
#: libraries/replication_gui.lib.php:249 libraries/replication_gui.lib.php:252
-#: libraries/replication_gui.lib.php:259 server_privileges.php:672
-#: server_privileges.php:675 server_privileges.php:682
+#: libraries/replication_gui.lib.php:259 server_privileges.php:711
+#: server_privileges.php:714 server_privileges.php:721
#: server_synchronize.php:1171
msgid "User name"
msgstr "භාවිත නාමය"
@@ -4396,11 +3552,11 @@ msgid "Slave status"
msgstr "උපතත්වයන් පෙන්වන්න"
#: libraries/replication_gui.lib.php:114 libraries/sql_query_form.lib.php:445
-#: server_status.php:626 server_variables.php:52
+#: server_status.php:737 server_variables.php:52
msgid "Variable"
msgstr "Variable"
-#: libraries/replication_gui.lib.php:115 server_status.php:627
+#: libraries/replication_gui.lib.php:115 server_status.php:738
#: tbl_change.php:324 tbl_printview.php:370 tbl_select.php:139
#: tbl_structure.php:729
msgid "Value"
@@ -4420,41 +3576,58 @@ msgstr ""
msgid "Add slave replication user"
msgstr ""
-#: libraries/replication_gui.lib.php:254 server_privileges.php:677
+#: libraries/replication_gui.lib.php:254 server_privileges.php:716
msgid "Any user"
msgstr "ඕනෑම භාවිතා කරන්නෙක්"
#: libraries/replication_gui.lib.php:255 libraries/replication_gui.lib.php:323
-#: libraries/replication_gui.lib.php:346 server_privileges.php:678
-#: server_privileges.php:745 server_privileges.php:769
-#: server_privileges.php:1889 server_privileges.php:1919
+#: libraries/replication_gui.lib.php:346 server_privileges.php:717
+#: server_privileges.php:784 server_privileges.php:808
+#: server_privileges.php:1928 server_privileges.php:1958
msgid "Use text field"
msgstr "Use text field"
-#: libraries/replication_gui.lib.php:302 server_privileges.php:725
+#: libraries/replication_gui.lib.php:302 server_privileges.php:764
msgid "Any host"
msgstr "ඕනෑම දායකයෙක්"
-#: libraries/replication_gui.lib.php:306 server_privileges.php:729
+#: libraries/replication_gui.lib.php:306 server_privileges.php:768
msgid "Local"
msgstr "ස්වදේශී"
-#: libraries/replication_gui.lib.php:312 server_privileges.php:734
+#: libraries/replication_gui.lib.php:312 server_privileges.php:773
msgid "This Host"
msgstr "this host"
-#: libraries/replication_gui.lib.php:318 server_privileges.php:740
+#: libraries/replication_gui.lib.php:318 server_privileges.php:779
msgid "Use Host Table"
msgstr "දායක වගුව භාවිතා කරන්න"
-#: libraries/replication_gui.lib.php:331 server_privileges.php:753
+#: libraries/replication_gui.lib.php:331 server_privileges.php:792
msgid ""
"When Host table is used, this field is ignored and values stored in Host "
"table are used instead."
msgstr ""
-#: libraries/select_lang.lib.php:480 libraries/select_lang.lib.php:486
-#: libraries/select_lang.lib.php:492
+#. l10n: Text direction, use either ltr or rtl
+#: libraries/select_lang.lib.php:491
+msgid "ltr"
+msgstr "ltr"
+
+#: libraries/select_lang.lib.php:493
+msgid "Content of table __TABLE__"
+msgstr "Content of table __TABLE__"
+
+#: libraries/select_lang.lib.php:494
+msgid "(continued)"
+msgstr "(ඉදිරියට)"
+
+#: libraries/select_lang.lib.php:495
+msgid "Structure of table __TABLE__"
+msgstr "Structure of table __TABLE__"
+
+#: libraries/select_lang.lib.php:500 libraries/select_lang.lib.php:506
+#: libraries/select_lang.lib.php:512
#, php-format
msgid "Unknown language: %1$s."
msgstr "%1$s නොදන්නා භාෂාවකි."
@@ -4465,7 +3638,7 @@ msgid "Servers"
msgstr "සර්වරයන්"
#: libraries/server_links.inc.php:53 server_engines.php:112
-#: server_engines.php:116 server_status.php:304 test/theme.php:105
+#: server_engines.php:116 server_status.php:415 test/theme.php:105
msgid "Variables"
msgstr "විචල්යනයන්"
@@ -4478,7 +3651,7 @@ msgid "Engines"
msgstr "යන්ත්රයන්"
#: libraries/server_links.inc.php:76 server_binlog.php:110
-#: server_status.php:253 test/theme.php:121
+#: server_status.php:364 test/theme.php:121
msgid "Binary log"
msgstr "ද්වීමය ලොගය"
@@ -4941,8 +4114,8 @@ msgstr "ප්රතිසකසන්න"
msgid "Protocol version"
msgstr "ප්රෝටකෝල සංස්කරණය"
-#: main.php:189 server_privileges.php:1350 server_privileges.php:1497
-#: server_privileges.php:1611 server_privileges.php:2029
+#: main.php:189 server_privileges.php:1389 server_privileges.php:1536
+#: server_privileges.php:1650 server_privileges.php:2068
#: server_processlist.php:54
msgid "User"
msgstr "භාවිතා කරන්නා"
@@ -5325,7 +4498,7 @@ msgstr "%s දත්තගබඩාව සාර්ථකව හලන ලදි
msgid "Databases statistics"
msgstr "දත්තගබඩා සංඛ්යා ලේඛන"
-#: server_databases.php:117 server_status.php:260
+#: server_databases.php:117 server_status.php:371
#: setup/lib/messages.inc.php:117
msgid "Tables"
msgstr "වගු"
@@ -5344,6 +4517,16 @@ msgstr ""
msgid "Jump to database"
msgstr "දත්තගබඩා නොමැත"
+#: server_databases.php:267
+msgid "Not replicated"
+msgstr ""
+
+#: server_databases.php:273
+#, fuzzy
+#| msgid "Replication"
+msgid "Replicated"
+msgstr "Replication"
+
#: server_databases.php:289
#, php-format
msgid "Check privileges for database "%s"."
@@ -5377,143 +4560,332 @@ msgstr "ගබඩා යන්ත්ර"
msgid "View dump (schema) of databases"
msgstr "View dump (schema) of databases"
-#: server_privileges.php:263 server_privileges.php:264
+#: server_privileges.php:24 server_privileges.php:266
+msgid "Includes all privileges except GRANT."
+msgstr "Includes all privileges except GRANT."
+
+#: server_privileges.php:25 server_privileges.php:192
+#: server_privileges.php:515
+msgid "Allows altering the structure of existing tables."
+msgstr "Allows altering the structure of existing tables."
+
+#: server_privileges.php:26 server_privileges.php:208
+#: server_privileges.php:521
+msgid "Allows altering and dropping stored routines."
+msgstr "Allows altering and dropping stored routines."
+
+#: server_privileges.php:27 server_privileges.php:184
+#: server_privileges.php:514
+msgid "Allows creating new databases and tables."
+msgstr "Allows creating new databases and tables."
+
+#: server_privileges.php:28 server_privileges.php:207
+#: server_privileges.php:520
+msgid "Allows creating stored routines."
+msgstr "Allows creating stored routines."
+
+#: server_privileges.php:29 server_privileges.php:514
+msgid "Allows creating new tables."
+msgstr "Allows creating new tables."
+
+#: server_privileges.php:30 server_privileges.php:195
+#: server_privileges.php:518
+msgid "Allows creating temporary tables."
+msgstr "Allows creating temporary tables."
+
+#: server_privileges.php:31 server_privileges.php:209
+#: server_privileges.php:554
+msgid "Allows creating, dropping and renaming user accounts."
+msgstr "Allows creating, dropping and renaming user accounts."
+
+#: server_privileges.php:32 server_privileges.php:199
+#: server_privileges.php:203 server_privileges.php:526
+#: server_privileges.php:530
+msgid "Allows creating new views."
+msgstr "Allows creating new views."
+
+#: server_privileges.php:33 server_privileges.php:183
+#: server_privileges.php:506
+msgid "Allows deleting data."
+msgstr "Allows deleting data."
+
+#: server_privileges.php:34 server_privileges.php:185
+#: server_privileges.php:517
+msgid "Allows dropping databases and tables."
+msgstr "Allows dropping databases and tables."
+
+#: server_privileges.php:35 server_privileges.php:517
+msgid "Allows dropping tables."
+msgstr "Allows dropping tables."
+
+#: server_privileges.php:36 server_privileges.php:200
+#: server_privileges.php:534
+msgid "Allows to set up events for the event scheduler"
+msgstr ""
+
+#: server_privileges.php:37 server_privileges.php:210
+#: server_privileges.php:522
+msgid "Allows executing stored routines."
+msgstr "Allows executing stored routines."
+
+#: server_privileges.php:38 server_privileges.php:189
+#: server_privileges.php:509
+msgid "Allows importing data from and exporting data into files."
+msgstr "Allows importing data from and exporting data into files."
+
+#: server_privileges.php:39 server_privileges.php:540
+msgid ""
+"Allows adding users and privileges without reloading the privilege tables."
+msgstr ""
+"Allows adding users and privileges without reloading the privilege tables."
+
+#: server_privileges.php:40 server_privileges.php:191
+#: server_privileges.php:516
+msgid "Allows creating and dropping indexes."
+msgstr "Allows creating and dropping indexes."
+
+#: server_privileges.php:41 server_privileges.php:181
+#: server_privileges.php:442 server_privileges.php:504
+msgid "Allows inserting and replacing data."
+msgstr "Allows inserting and replacing data."
+
+#: server_privileges.php:42 server_privileges.php:196
+#: server_privileges.php:549
+msgid "Allows locking tables for the current thread."
+msgstr "Allows locking tables for the current thread."
+
+#: server_privileges.php:43 server_privileges.php:646
+#: server_privileges.php:648
+msgid "Limits the number of new connections the user may open per hour."
+msgstr "Limits the number of new connections the user may open per hour."
+
+#: server_privileges.php:44 server_privileges.php:634
+#: server_privileges.php:636
+msgid "Limits the number of queries the user may send to the server per hour."
+msgstr "Limits the number of queries the user may send to the server per hour."
+
+#: server_privileges.php:45 server_privileges.php:640
+#: server_privileges.php:642
+msgid ""
+"Limits the number of commands that change any table or database the user may "
+"execute per hour."
+msgstr ""
+"Limits the number of commands that change any table or database the user may "
+"execute per hour."
+
+#: server_privileges.php:46 server_privileges.php:652
+#: server_privileges.php:654
+msgid "Limits the number of simultaneous connections the user may have."
+msgstr "Limits the number of simultaneous connections the user may have."
+
+#: server_privileges.php:47 server_privileges.php:188
+#: server_privileges.php:544
+msgid "Allows viewing processes of all users"
+msgstr ""
+
+#: server_privileges.php:48 server_privileges.php:190
+#: server_privileges.php:448 server_privileges.php:550
+msgid "Has no effect in this MySQL version."
+msgstr "Has no effect in this MySQL version."
+
+#: server_privileges.php:49 server_privileges.php:186
+#: server_privileges.php:545
+msgid "Allows reloading server settings and flushing the server's caches."
+msgstr "Allows reloading server settings and flushing the server's caches."
+
+#: server_privileges.php:50 server_privileges.php:198
+#: server_privileges.php:552
+msgid "Allows the user to ask where the slaves / masters are."
+msgstr "Allows the user to ask where the slaves / masters are."
+
+#: server_privileges.php:51 server_privileges.php:197
+#: server_privileges.php:553
+msgid "Needed for the replication slaves."
+msgstr "Needed for the replication slaves."
+
+#: server_privileges.php:52 server_privileges.php:180
+#: server_privileges.php:439 server_privileges.php:503
+msgid "Allows reading data."
+msgstr "Allows reading data."
+
+#: server_privileges.php:53 server_privileges.php:193
+#: server_privileges.php:547
+msgid "Gives access to the complete list of databases."
+msgstr "Gives access to the complete list of databases."
+
+#: server_privileges.php:54 server_privileges.php:204
+#: server_privileges.php:206 server_privileges.php:519
+msgid "Allows performing SHOW CREATE VIEW queries."
+msgstr "Allows performing SHOW CREATE VIEW queries."
+
+#: server_privileges.php:55 server_privileges.php:187
+#: server_privileges.php:546
+msgid "Allows shutting down the server."
+msgstr "Allows shutting down the server."
+
+#: server_privileges.php:56 server_privileges.php:194
+#: server_privileges.php:543
+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 ""
+"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."
+
+#: server_privileges.php:57 server_privileges.php:201
+#: server_privileges.php:535
+#, fuzzy
+msgid "Allows creating and dropping triggers"
+msgstr "Allows creating and dropping indexes."
+
+#: server_privileges.php:58 server_privileges.php:182
+#: server_privileges.php:445 server_privileges.php:505
+msgid "Allows changing data."
+msgstr "Allows changing data."
+
+#: server_privileges.php:59 server_privileges.php:260
+msgid "No privileges."
+msgstr "වරප්රසාද නොමැත."
+
+#: server_privileges.php:302 server_privileges.php:303
#, fuzzy
#| msgid "None"
msgctxt "None privileges"
msgid "None"
msgstr "කිසිවක් නැත"
-#: server_privileges.php:392 server_privileges.php:527
-#: server_privileges.php:1679 server_privileges.php:1685
+#: server_privileges.php:431 server_privileges.php:566
+#: server_privileges.php:1718 server_privileges.php:1724
msgid "Table-specific privileges"
msgstr "Table-specific privileges"
-#: server_privileges.php:393 server_privileges.php:535
-#: server_privileges.php:1501
+#: server_privileges.php:432 server_privileges.php:574
+#: server_privileges.php:1540
msgid " Note: MySQL privilege names are expressed in English "
msgstr " Note: MySQL privilege names are expressed in English "
-#: server_privileges.php:524 server_privileges.php:1500
+#: server_privileges.php:563 server_privileges.php:1539
msgid "Global privileges"
msgstr "ගෝලීය වරප්රසාද"
-#: server_privileges.php:526 server_privileges.php:1679
+#: server_privileges.php:565 server_privileges.php:1718
msgid "Database-specific privileges"
msgstr "දත්තගබඩා විශේෂිත වරප්රසාද"
-#: server_privileges.php:571
+#: server_privileges.php:610
msgid "Administration"
msgstr "පරිපාලනය"
-#: server_privileges.php:591
+#: server_privileges.php:630
msgid "Resource limits"
msgstr "සම්පත් සීමා"
-#: server_privileges.php:592
+#: server_privileges.php:631
msgid "Note: Setting these options to 0 (zero) removes the limit."
msgstr "සටහන: මෙම විකල්පය 0 (බිංදුවට) පත් කිරීම මගින්සීමා ඉවත් වනු ලැබේ."
-#: server_privileges.php:669
+#: server_privileges.php:708
msgid "Login Information"
msgstr "ලොගින තොරතුරු"
-#: server_privileges.php:763
+#: server_privileges.php:802
msgid "Do not change the password"
msgstr "මුරපදය වෙනස් නොකරන්න"
-#: server_privileges.php:804 server_privileges.php:2166
+#: server_privileges.php:843 server_privileges.php:2205
#, fuzzy
#| msgid "No user(s) found."
msgid "No user found."
msgstr "No user(s) found."
-#: server_privileges.php:848
+#: server_privileges.php:887
#, php-format
msgid "The user %s already exists!"
msgstr "%s භාවිතා කරන්නා දැනටමත් පවතී!"
-#: server_privileges.php:931
+#: server_privileges.php:970
msgid "You have added a new user."
msgstr "ඔබ නව භාවිතා කරන්නනෙක් එක් කරන ලදි."
-#: server_privileges.php:1152
+#: server_privileges.php:1191
#, php-format
msgid "You have updated the privileges for %s."
msgstr "You have updated the privileges for %s."
-#: server_privileges.php:1176
+#: server_privileges.php:1215
#, php-format
msgid "You have revoked the privileges for %s"
msgstr "You have revoked the privileges for %s"
-#: server_privileges.php:1212
+#: server_privileges.php:1251
#, php-format
msgid "The password for %s was changed successfully."
msgstr "The password for %s was changed successfully."
-#: server_privileges.php:1232
+#: server_privileges.php:1271
#, php-format
msgid "Deleting %s"
msgstr "%s ඉවත් කරමින් පවතී"
-#: server_privileges.php:1243
+#: server_privileges.php:1282
msgid "No users selected for deleting!"
msgstr "ඉවත් කිරීම සඳහා භාවිතා කරන්නන් කිසිවෙක් තෝරාගෙන නොමැත!"
-#: server_privileges.php:1246
+#: server_privileges.php:1285
msgid "Reloading the privileges"
msgstr "Reloading the privileges"
-#: server_privileges.php:1261
+#: server_privileges.php:1300
msgid "The selected users have been deleted successfully."
msgstr "The selected users have been deleted successfully."
-#: server_privileges.php:1296
+#: server_privileges.php:1335
msgid "The privileges were reloaded successfully."
msgstr "The privileges were reloaded successfully."
-#: server_privileges.php:1324 server_privileges.php:1610
+#: server_privileges.php:1363 server_privileges.php:1649
msgid "Edit Privileges"
msgstr "වරප්රසාද සංස්කරණය කරන්න"
-#: server_privileges.php:1333
+#: server_privileges.php:1372
msgid "Revoke"
msgstr "Revoke"
-#: server_privileges.php:1365
+#: server_privileges.php:1404
msgid "User overview"
msgstr "User overview"
-#: server_privileges.php:1502 server_privileges.php:1684
-#: server_privileges.php:2033
+#: server_privileges.php:1541 server_privileges.php:1723
+#: server_privileges.php:2072
msgid "Grant"
msgstr "ප්රදානය කරන්න"
-#: server_privileges.php:1521 server_privileges.php:2123
+#: server_privileges.php:1560 server_privileges.php:2162
msgid "Any"
msgstr "ඕනෑම"
-#: server_privileges.php:1570 server_privileges.php:1594
-#: server_privileges.php:1988 server_privileges.php:2177
+#: server_privileges.php:1609 server_privileges.php:1633
+#: server_privileges.php:2027 server_privileges.php:2216
msgid "Add a new User"
msgstr "නව භාවිතා කරන්නේක් එක් කරන්න"
-#: server_privileges.php:1575
+#: server_privileges.php:1614
msgid "Remove selected users"
msgstr "තෝරාගත් භාවිතා කරන්නන් ඉවත් කරන්න"
-#: server_privileges.php:1578
+#: server_privileges.php:1617
msgid "Revoke all active privileges from the users and delete them afterwards."
msgstr ""
"Revoke all active privileges from the users and delete them afterwards."
-#: server_privileges.php:1579 server_privileges.php:1580
-#: server_privileges.php:1581
+#: server_privileges.php:1618 server_privileges.php:1619
+#: server_privileges.php:1620
msgid "Drop the databases that have the same names as the users."
msgstr "භාවිතා කරන්නන් හා සමාන නම් ඇති දත්තගබඩා හලන්න."
-#: server_privileges.php:1597
+#: server_privileges.php:1636
#, php-format
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
@@ -5526,92 +4898,92 @@ msgstr ""
"server uses, if they have been changed manually. In this case, you should %"
"sreload the privileges%s before you continue."
-#: server_privileges.php:1645
+#: server_privileges.php:1684
msgid "The selected user was not found in the privilege table."
msgstr "The selected user was not found in the privilege table."
-#: server_privileges.php:1685
+#: server_privileges.php:1724
msgid "Column-specific privileges"
msgstr "Column-specific privileges"
-#: server_privileges.php:1886
+#: server_privileges.php:1925
msgid "Add privileges on the following database"
msgstr "පහත දත්තගබඩාවට වරප්රසාද එක් කරන්න"
-#: server_privileges.php:1904
+#: server_privileges.php:1943
msgid "Wildcards % and _ should be escaped with a \\ to use them literally"
msgstr "Wildcards % and _ should be escaped with a \\ to use them literally"
-#: server_privileges.php:1907
+#: server_privileges.php:1946
msgid "Add privileges on the following table"
msgstr "පහත වගුවට වරප්රසාද එක් කරන්න"
-#: server_privileges.php:1964
+#: server_privileges.php:2003
msgid "Change Login Information / Copy User"
msgstr "ලොගින් තොරතුරු වෙනස් කරන්න / භාවිතා කරන්නා පිටපත් කරන්න"
-#: server_privileges.php:1967
+#: server_privileges.php:2006
msgid "Create a new user with the same privileges and ..."
msgstr "සහ එකම වරප්රසාද සහිතව නව භාවිතා කරන්නෙක් එක් කරන්න..."
-#: server_privileges.php:1969
+#: server_privileges.php:2008
msgid "... keep the old one."
msgstr "... පැරණි එක තබා ගන්න."
-#: server_privileges.php:1970
+#: server_privileges.php:2009
msgid " ... delete the old one from the user tables."
msgstr " ... භාවිතා කරන්නන්ගේ වගුවෙන් පැරණි එක ඉවත් කරන්න."
-#: server_privileges.php:1971
+#: server_privileges.php:2010
msgid ""
" ... revoke all active privileges from the old one and delete it afterwards."
msgstr ""
" ... revoke all active privileges from the old one and delete it afterwards."
-#: server_privileges.php:1972
+#: server_privileges.php:2011
msgid ""
" ... delete the old one from the user tables and reload the privileges "
"afterwards."
msgstr ".. භාවිතා කරන්නන්ගේ වගුවෙන් පැරණි එක ඉවත් කර වරප්රසාද නැවත අලුත් කරන්න."
-#: server_privileges.php:1994
+#: server_privileges.php:2033
msgid "Database for user"
msgstr "භාවිතා කරන්නා සඳහා දත්තගබඩාව"
-#: server_privileges.php:1998
+#: server_privileges.php:2037
#, fuzzy
#| msgid "None"
msgctxt "Create none database for user"
msgid "None"
msgstr "කිසිවක් නැත"
-#: server_privileges.php:1999
+#: server_privileges.php:2038
msgid "Create database with same name and grant all privileges"
msgstr "එකම නමින් දත්තගබඩාවක සාදා සියලු වරප්රසාද එයට දෙන්න"
-#: server_privileges.php:2000
+#: server_privileges.php:2039
msgid "Grant all privileges on wildcard name (username\\_%)"
msgstr "අභිමත ආදේශක නාමයන් සඳහා සියලු වරප්රසාද දෙන්න (භාවිත නාමය_%)"
-#: server_privileges.php:2003
+#: server_privileges.php:2042
#, fuzzy, php-format
msgid "Grant all privileges on database "%s""
msgstr ""%s" දත්තගබඩාව සඳහා වරප්රසාද පරීක්ෂා කරන්න."
-#: server_privileges.php:2026
+#: server_privileges.php:2065
#, php-format
msgid "Users having access to "%s""
msgstr "Users having access to "%s""
-#: server_privileges.php:2134
+#: server_privileges.php:2173
msgid "global"
msgstr "ගෝලීම"
-#: server_privileges.php:2136
+#: server_privileges.php:2175
msgid "database-specific"
msgstr "දත්තගබඩා විශේෂිත"
-#: server_privileges.php:2138
+#: server_privileges.php:2177
msgid "wildcard"
msgstr "wildcard"
@@ -5658,7 +5030,7 @@ msgstr ""
msgid "This server is configured as master in a replication process."
msgstr ""
-#: server_replication.php:184 server_status.php:281
+#: server_replication.php:184 server_status.php:392
#, fuzzy
msgid "Show master status"
msgstr "උපතත්වයන් පෙන්වන්න"
@@ -5798,103 +5170,741 @@ msgid ""
"like to configure it?"
msgstr ""
+#: server_status.php:40
+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 ""
+"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."
+
+#: server_status.php:41
+msgid "The number of transactions that used the temporary binary log cache."
+msgstr "The number of transactions that used the temporary binary log cache."
+
+#: server_status.php:42
+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 "
+"to increase the tmp_table_size value to cause temporary tables to be memory-"
+"based instead of disk-based."
+msgstr ""
+"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 "
+"to increase the tmp_table_size value to cause temporary tables to be memory-"
+"based instead of disk-based."
+
+#: server_status.php:43
+msgid "How many temporary files mysqld has created."
+msgstr "How many temporary files mysqld has created."
+
+#: server_status.php:44
+msgid ""
+"The number of in-memory temporary tables created automatically by the server "
+"while executing statements."
+msgstr ""
+"The number of in-memory temporary tables created automatically by the server "
+"while executing statements."
+
+#: server_status.php:45
+msgid ""
+"The number of rows written with INSERT DELAYED for which some error occurred "
+"(probably duplicate key)."
+msgstr ""
+"The number of rows written with INSERT DELAYED for which some error occurred "
+"(probably duplicate key)."
+
#: server_status.php:46
+msgid ""
+"The number of INSERT DELAYED handler threads in use. Every different table "
+"on which one uses INSERT DELAYED gets its own thread."
+msgstr ""
+"The number of INSERT DELAYED handler threads in use. Every different table "
+"on which one uses INSERT DELAYED gets its own thread."
+
+#: server_status.php:47
+msgid "The number of INSERT DELAYED rows written."
+msgstr "The number of INSERT DELAYED rows written."
+
+#: server_status.php:48
+msgid "The number of executed FLUSH statements."
+msgstr "The number of executed FLUSH statements."
+
+#: server_status.php:49
+msgid "The number of internal COMMIT statements."
+msgstr "The number of internal COMMIT statements."
+
+#: server_status.php:50
+msgid "The number of times a row was deleted from a table."
+msgstr "The number of times a row was deleted from a table."
+
+#: server_status.php:51
+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 ""
+"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."
+
+#: server_status.php:52
+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 ""
+"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."
+
+#: server_status.php:53
+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 ""
+"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."
+
+#: server_status.php:54
+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 ""
+"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."
+
+#: server_status.php:55
+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 ""
+"The number of requests to read the previous row in key order. This read "
+"method is mainly used to optimize ORDER BY ... DESC."
+
+#: server_status.php:56
+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 "
+"probably have a lot of queries that require MySQL to scan whole tables or "
+"you have joins that don't use keys properly."
+msgstr ""
+"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 "
+"probably have a lot of queries that require MySQL to scan whole tables or "
+"you have joins that don't use keys properly."
+
+#: server_status.php:57
+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 "
+"tables are not properly indexed or that your queries are not written to take "
+"advantage of the indexes you have."
+msgstr ""
+"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 "
+"tables are not properly indexed or that your queries are not written to take "
+"advantage of the indexes you have."
+
+#: server_status.php:58
+msgid "The number of internal ROLLBACK statements."
+msgstr "The number of internal ROLLBACK statements."
+
+#: server_status.php:59
+msgid "The number of requests to update a row in a table."
+msgstr "The number of requests to update a row in a table."
+
+#: server_status.php:60
+msgid "The number of requests to insert a row in a table."
+msgstr "The number of requests to insert a row in a table."
+
+#: server_status.php:61
+msgid "The number of pages containing data (dirty or clean)."
+msgstr "The number of pages containing data (dirty or clean)."
+
+#: server_status.php:62
+msgid "The number of pages currently dirty."
+msgstr "The number of pages currently dirty."
+
+#: server_status.php:63
+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."
+
+#: server_status.php:64
+msgid "The number of free pages."
+msgstr "නිදහස් පිටු ගණන."
+
+#: server_status.php:65
+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 ""
+"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."
+
+#: server_status.php:66
+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 "
+"be calculated as Innodb_buffer_pool_pages_total - "
+"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data."
+msgstr ""
+"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 "
+"be calculated as Innodb_buffer_pool_pages_total - "
+"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data."
+
+#: server_status.php:67
+msgid "Total size of buffer pool, in pages."
+msgstr "Total size of buffer pool, in pages."
+
+#: server_status.php:68
+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 ""
+"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."
+
+#: server_status.php:69
+msgid ""
+"The number of sequential read-aheads InnoDB initiated. This happens when "
+"InnoDB does a sequential full table scan."
+msgstr ""
+"The number of sequential read-aheads InnoDB initiated. This happens when "
+"InnoDB does a sequential full table scan."
+
+#: server_status.php:70
+msgid "The number of logical read requests InnoDB has done."
+msgstr "The number of logical read requests InnoDB has done."
+
+#: server_status.php:71
+msgid ""
+"The number of logical reads that InnoDB could not satisfy from buffer pool "
+"and had to do a single-page read."
+msgstr ""
+"The number of logical reads that InnoDB could not satisfy from buffer pool "
+"and had to do a single-page read."
+
+#: server_status.php:72
+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 "
+"available, it's necessary to wait for pages to be flushed first. This "
+"counter counts instances of these waits. If the buffer pool size was set "
+"properly, this value should be small."
+msgstr ""
+"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 "
+"available, it's necessary to wait for pages to be flushed first. This "
+"counter counts instances of these waits. If the buffer pool size was set "
+"properly, this value should be small."
+
+#: server_status.php:73
+msgid "The number writes done to the InnoDB buffer pool."
+msgstr "The number writes done to the InnoDB buffer pool."
+
+#: server_status.php:74
+msgid "The number of fsync() operations so far."
+msgstr "The number of fsync() operations so far."
+
+#: server_status.php:75
+msgid "The current number of pending fsync() operations."
+msgstr "The current number of pending fsync() operations."
+
+#: server_status.php:76
+msgid "The current number of pending reads."
+msgstr "The current number of pending reads."
+
+#: server_status.php:77
+msgid "The current number of pending writes."
+msgstr "The current number of pending writes."
+
+#: server_status.php:78
+msgid "The amount of data read so far, in bytes."
+msgstr "The amount of data read so far, in bytes."
+
+#: server_status.php:79
+msgid "The total number of data reads."
+msgstr "The total number of data reads."
+
+#: server_status.php:80
+msgid "The total number of data writes."
+msgstr "The total number of data writes."
+
+#: server_status.php:81
+msgid "The amount of data written so far, in bytes."
+msgstr "The amount of data written so far, in bytes."
+
+#: server_status.php:82
+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."
+
+#: server_status.php:83
+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."
+
+#: server_status.php:84
+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 ""
+"The number of waits we had because log buffer was too small and we had to "
+"wait for it to be flushed before continuing."
+
+#: server_status.php:85
+msgid "The number of log write requests."
+msgstr "The number of log write requests."
+
+#: server_status.php:86
+msgid "The number of physical writes to the log file."
+msgstr "The number of physical writes to the log file."
+
+#: server_status.php:87
+msgid "The number of fsync() writes done to the log file."
+msgstr "The number of fsyncs writes done to the log file."
+
+#: server_status.php:88
+msgid "The number of pending log file fsyncs."
+msgstr "The number of pending log file fsyncs."
+
+#: server_status.php:89
+msgid "Pending log file writes."
+msgstr "Pending log file writes."
+
+#: server_status.php:90
+msgid "The number of bytes written to the log file."
+msgstr "The number of bytes written to the log file."
+
+#: server_status.php:91
+msgid "The number of pages created."
+msgstr "The number of pages created."
+
+#: server_status.php:92
+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 ""
+"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."
+
+#: server_status.php:93
+msgid "The number of pages read."
+msgstr "කියවන ලද පිටු ගණන."
+
+#: server_status.php:94
+msgid "The number of pages written."
+msgstr "ලියන ලද පිටු ගණන."
+
+#: server_status.php:95
+msgid "The number of row locks currently being waited for."
+msgstr "The number of row locks currently being waited for."
+
+#: server_status.php:96
+msgid "The average time to acquire a row lock, in milliseconds."
+msgstr "The average time to acquire a row lock, in milliseconds."
+
+#: server_status.php:97
+msgid "The total time spent in acquiring row locks, in milliseconds."
+msgstr "The total time spent in acquiring row locks, in milliseconds."
+
+#: server_status.php:98
+msgid "The maximum time to acquire a row lock, in milliseconds."
+msgstr "The maximum time to acquire a row lock, in milliseconds."
+
+#: server_status.php:99
+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."
+
+#: server_status.php:100
+msgid "The number of rows deleted from InnoDB tables."
+msgstr "The number of rows deleted from InnoDB tables."
+
+#: server_status.php:101
+msgid "The number of rows inserted in InnoDB tables."
+msgstr "The number of rows inserted in InnoDB tables."
+
+#: server_status.php:102
+msgid "The number of rows read from InnoDB tables."
+msgstr "The number of rows read from InnoDB tables."
+
+#: server_status.php:103
+msgid "The number of rows updated in InnoDB tables."
+msgstr "The number of rows updated in InnoDB tables."
+
+#: server_status.php:104
+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 ""
+"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."
+
+#: server_status.php:105
+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 ""
+"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."
+
+#: server_status.php:106
+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 ""
+"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."
+
+#: server_status.php:107
+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."
+
+#: server_status.php:108
+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 ""
+"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."
+
+#: server_status.php:109
+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."
+
+#: server_status.php:110
+msgid "The number of physical writes of a key block to disk."
+msgstr "The number of physical writes of a key block to disk."
+
+#: server_status.php:111
+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 ""
+"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."
+
+#: server_status.php:112
+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."
+
+#: server_status.php:113
+msgid ""
+"The number of tables that have been opened. If opened tables is big, your "
+"table cache value is probably too small."
+msgstr ""
+"The number of tables that have been opened. If opened tables is big, your "
+"table cache value is probably too small."
+
+#: server_status.php:114
+msgid "The number of files that are open."
+msgstr "The number of files that are open."
+
+#: server_status.php:115
+msgid "The number of streams that are open (used mainly for logging)."
+msgstr "The number of streams that are open (used mainly for logging)."
+
+#: server_status.php:116
+msgid "The number of tables that are open."
+msgstr "The number of tables that are open."
+
+#: server_status.php:117
+msgid "The number of free memory blocks in query cache."
+msgstr "The number of free memory blocks in query cache."
+
+#: server_status.php:118
+msgid "The amount of free memory for query cache."
+msgstr "The amount of free memory for query cache."
+
+#: server_status.php:119
+msgid "The number of cache hits."
+msgstr "The number of cache hits."
+
+#: server_status.php:120
+msgid "The number of queries added to the cache."
+msgstr "The number of queries added to the cache."
+
+#: server_status.php:121
+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 "
+"cache size. The query cache uses a least recently used (LRU) strategy to "
+"decide which queries to remove from the cache."
+msgstr ""
+"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 "
+"cache size. The query cache uses a least recently used (LRU) strategy to "
+"decide which queries to remove from the cache."
+
+#: server_status.php:122
+msgid ""
+"The number of non-cached queries (not cachable, or not cached due to the "
+"query_cache_type setting)."
+msgstr ""
+"The number of non-cached queries (not cachable, or not cached due to the "
+"query_cache_type setting)."
+
+#: server_status.php:123
+msgid "The number of queries registered in the cache."
+msgstr "The number of queries registered in the cache."
+
+#: server_status.php:124
+msgid "The total number of blocks in the query cache."
+msgstr "The total number of blocks in the query cache."
+
+#: server_status.php:125
+msgctxt "$strShowStatusReset"
+msgid "Reset"
+msgstr "Reset"
+
+#: server_status.php:126
+msgid "The status of failsafe replication (not yet implemented)."
+msgstr "The status of failsafe replication (not yet implemented)."
+
+#: server_status.php:127
+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 ""
+"The number of joins that do not use indexes. If this value is not 0, you "
+"should carefully check the indexes of your tables."
+
+#: server_status.php:128
+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."
+
+#: server_status.php:129
+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 ""
+"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.)"
+
+#: server_status.php:130
+msgid ""
+"The number of joins that used ranges on the first table. (It's normally not "
+"critical even if this is big.)"
+msgstr ""
+"The number of joins that used ranges on the first table. (It's normally not "
+"critical even if this is big.)"
+
+#: server_status.php:131
+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."
+
+#: server_status.php:132
+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."
+
+#: server_status.php:133
+msgid ""
+"Total (since startup) number of times the replication slave SQL thread has "
+"retried transactions."
+msgstr ""
+"Total (since startup) number of times the replication slave SQL thread has "
+"retried transactions."
+
+#: server_status.php:134
+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."
+
+#: server_status.php:135
+msgid ""
+"The number of threads that have taken more than slow_launch_time seconds to "
+"create."
+msgstr ""
+"The number of threads that have taken more than slow_launch_time seconds to "
+"create."
+
+#: server_status.php:136
+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."
+
+#: server_status.php:137
+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 ""
+"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."
+
+#: server_status.php:138
+msgid "The number of sorts that were done with ranges."
+msgstr "The number of sorts that were done with ranges."
+
+#: server_status.php:139
+msgid "The number of sorted rows."
+msgstr "The number of sorted rows."
+
+#: server_status.php:140
+msgid "The number of sorts that were done by scanning the table."
+msgstr "The number of sorts that were done by scanning the table."
+
+#: server_status.php:141
+msgid "The number of times that a table lock was acquired immediately."
+msgstr "The number of times that a table lock was acquired immediately."
+
+#: server_status.php:142
+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 "
+"should first optimize your queries, and then either split your table or "
+"tables or use replication."
+msgstr ""
+"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 "
+"should first optimize your queries, and then either split your table or "
+"tables or use replication."
+
+#: server_status.php:143
+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 ""
+"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."
+
+#: server_status.php:144
+msgid "The number of currently open connections."
+msgstr "The number of currently open connections."
+
+#: server_status.php:145
+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 "
+"doesn't give a notable performance improvement if you have a good thread "
+"implementation.)"
+msgstr ""
+"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 "
+"doesn't give a notable performance improvement if you have a good thread "
+"implementation.)"
+
+#: server_status.php:146
+msgid "The number of threads that are not sleeping."
+msgstr "The number of threads that are not sleeping."
+
+#: server_status.php:157
msgid "Runtime Information"
msgstr "ධාවන කාල තොරතුරු"
-#: server_status.php:250
+#: server_status.php:361
msgid "Handler"
msgstr "Handler"
-#: server_status.php:251
+#: server_status.php:362
msgid "Query cache"
msgstr "Query cache"
-#: server_status.php:252
+#: server_status.php:363
msgid "Threads"
msgstr "ත්රෙඩයන්"
-#: server_status.php:254
+#: server_status.php:365
msgid "Temporary data"
msgstr "තාවකාලික දත්ත"
-#: server_status.php:255
+#: server_status.php:366
msgid "Delayed inserts"
msgstr "Delayed inserts"
-#: server_status.php:256
+#: server_status.php:367
msgid "Key cache"
msgstr "යතුරු කෑෂ් කිරීම"
-#: server_status.php:257
+#: server_status.php:368
msgid "Joins"
msgstr "Joins"
-#: server_status.php:259
+#: server_status.php:370
msgid "Sorting"
msgstr "තේරීම"
-#: server_status.php:261
+#: server_status.php:372
msgid "Transaction coordinator"
msgstr "Transaction coordinator"
-#: server_status.php:271
+#: server_status.php:382
msgid "Flush (close) all tables"
msgstr "Flush (close) all tables"
-#: server_status.php:273
+#: server_status.php:384
msgid "Show open tables"
msgstr "විවෘත වගු පෙන්වන්න"
-#: server_status.php:278
+#: server_status.php:389
msgid "Show slave hosts"
msgstr "උපදායකයන් පෙන්වන්න"
-#: server_status.php:284
+#: server_status.php:395
msgid "Show slave status"
msgstr "උපතත්වයන් පෙන්වන්න"
-#: server_status.php:289
+#: server_status.php:400
msgid "Flush query cache"
msgstr "Flush query cache"
-#: server_status.php:294
+#: server_status.php:405
msgid "Show processes"
msgstr "ක්රියාවලිය පෙන්වන්න"
-#: server_status.php:344
+#: server_status.php:455
#, fuzzy
#| msgid "Reset"
msgctxt "for Show status"
msgid "Reset"
msgstr "ප්රතිසකසන්න"
-#: server_status.php:350
+#: server_status.php:461
#, php-format
msgid "This MySQL server has been running for %s. It started up on %s."
msgstr "This MySQL server has been running for %s. It started up on %s."
-#: server_status.php:360
+#: server_status.php:471
msgid ""
"This MySQL server works as master and slave in replication"
"b> process."
msgstr ""
-#: server_status.php:362
+#: server_status.php:473
msgid "This MySQL server works as master in replication process."
msgstr ""
-#: server_status.php:364
+#: server_status.php:475
msgid "This MySQL server works as slave in replication process."
msgstr ""
-#: server_status.php:366
+#: server_status.php:477
msgid ""
"For further information about replication status on the server, please visit "
"the replication section."
msgstr ""
-#: server_status.php:383
+#: server_status.php:494
msgid ""
"Server traffic: These tables show the network traffic statistics of "
"this MySQL server since its startup."
@@ -5902,11 +5912,11 @@ msgstr ""
"Server traffic: These tables show the network traffic statistics of "
"this MySQL server since its startup."
-#: server_status.php:388
+#: server_status.php:499
msgid "Traffic"
msgstr "තදබදය"
-#: server_status.php:388
+#: server_status.php:499
msgid ""
"On a busy server, the byte counters may overrun, so those statistics as "
"reported by the MySQL server may be incorrect."
@@ -5914,36 +5924,36 @@ msgstr ""
"On a busy server, the byte counters may overrun, so those statistics as "
"reported by the MySQL server may be incorrect."
-#: server_status.php:389 server_status.php:434 server_status.php:497
-#: server_status.php:555
+#: server_status.php:500 server_status.php:545 server_status.php:608
+#: server_status.php:666
msgid "per hour"
msgstr "පැයකට"
-#: server_status.php:394
+#: server_status.php:505
msgid "Received"
msgstr "ලබන ලද"
-#: server_status.php:404
+#: server_status.php:515
msgid "Sent"
msgstr "යවන ලද"
-#: server_status.php:433
+#: server_status.php:544
msgid "Connections"
msgstr "සම්බන්ධතා"
-#: server_status.php:440
+#: server_status.php:551
msgid "max. concurrent connections"
msgstr "max. concurrent connections"
-#: server_status.php:447
+#: server_status.php:558
msgid "Failed attempts"
msgstr "අසාර්ථක උත්සාහයන්"
-#: server_status.php:461
+#: server_status.php:572
msgid "Aborted"
msgstr "අත්හැර දමන ලදි"
-#: server_status.php:490
+#: server_status.php:601
#, php-format
msgid ""
"Query statistics: Since its startup, %s queries have been sent to the "
@@ -5952,19 +5962,19 @@ msgstr ""
"Query statistics: Since its startup, %s queries have been sent to the "
"server."
-#: server_status.php:498
+#: server_status.php:609
msgid "per minute"
msgstr "මිනිත්තුවකට"
-#: server_status.php:499
+#: server_status.php:610
msgid "per second"
msgstr "තප්පරයකට"
-#: server_status.php:554
+#: server_status.php:665
msgid "Query type"
msgstr "විමසුම් වර්ගය"
-#: server_status.php:721
+#: server_status.php:832
#, fuzzy
msgid "Replication status"
msgstr "Replication"
diff --git a/po/sk.po b/po/sk.po
index fdee0fcd2..81a2b16f7 100755
--- a/po/sk.po
+++ b/po/sk.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-06-04 16:07-0400\n"
+"POT-Creation-Date: 2010-06-08 12:32-0400\n"
"PO-Revision-Date: 2010-03-30 23:47+0200\n"
"Last-Translator: Michal \n"
"Language-Team: slovak \n"
@@ -15,11 +15,11 @@ msgstr ""
"X-Generator: Pootle 2.0.1\n"
#: browse_foreigners.php:38 browse_foreigners.php:59
-#: libraries/display_tbl.lib.php:417 server_privileges.php:1475
+#: libraries/display_tbl.lib.php:417 server_privileges.php:1514
msgid "Show all"
msgstr "Zobraziť všetko"
-#: browse_foreigners.php:82 libraries/common.lib.php:2304
+#: browse_foreigners.php:82 libraries/common.lib.php:2313
#: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:394
#: libraries/export/pdf.php:147 pdf_schema.php:283 pdf_schema.php:1123
#: pdf_schema.php:1139
@@ -38,8 +38,8 @@ msgstr ""
#: browse_foreigners.php:150 db_structure.php:79 db_structure.php:80
#: db_structure.php:91 db_structure.php:93 db_structure.php:104
-#: db_structure.php:106 libraries/common.lib.php:2822
-#: libraries/common.lib.php:2829 libraries/db_links.inc.php:75
+#: db_structure.php:106 libraries/common.lib.php:2831
+#: libraries/common.lib.php:2838 libraries/db_links.inc.php:75
#: libraries/tbl_links.inc.php:63
msgid "Search"
msgstr "Hľadať"
@@ -49,7 +49,7 @@ msgstr "Hľadať"
#: db_structure.php:567 js/messages.php:48 libraries/Config.class.php:1046
#: libraries/Theme_Manager.class.php:311
#: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719
-#: libraries/common.lib.php:1333 libraries/common.lib.php:2279
+#: libraries/common.lib.php:1335 libraries/common.lib.php:2288
#: libraries/display_change_password.lib.php:82
#: libraries/display_create_table.lib.php:63
#: libraries/display_export.lib.php:275 libraries/display_import.lib.php:276
@@ -60,9 +60,9 @@ msgstr "Hľadať"
#: libraries/sql_query_form.lib.php:552 libraries/tbl_properties.inc.php:782
#: main.php:128 navigation.php:237 pdf_pages.php:292 pdf_pages.php:328
#: pdf_pages.php:530 pmd_pdf.php:116 server_binlog.php:142
-#: server_privileges.php:625 server_privileges.php:1585
-#: server_privileges.php:1932 server_privileges.php:1979
-#: server_privileges.php:2018 server_replication.php:235
+#: server_privileges.php:664 server_privileges.php:1624
+#: server_privileges.php:1971 server_privileges.php:2018
+#: server_privileges.php:2057 server_replication.php:235
#: server_replication.php:318 server_replication.php:341
#: server_synchronize.php:1209 tbl_change.php:330 tbl_change.php:1174
#: tbl_change.php:1211 tbl_indexes.php:254 tbl_operations.php:265
@@ -80,7 +80,7 @@ msgstr "Kľúčový názov"
#: browse_foreigners.php:169 browse_foreigners.php:171
#: server_collations.php:55 server_collations.php:67 server_engines.php:59
-#: server_status.php:628
+#: server_status.php:739
msgid "Description"
msgstr "Popis"
@@ -121,7 +121,7 @@ msgstr "Názvy stĺpcov"
#: libraries/db_structure.lib.php:60 libraries/export/htmlword.php:245
#: libraries/export/latex.php:360 libraries/export/odt.php:297
#: libraries/export/texytext.php:234 libraries/tbl_properties.inc.php:100
-#: pdf_schema.php:1263 pdf_schema.php:1284 server_privileges.php:2031
+#: pdf_schema.php:1263 pdf_schema.php:1284 server_privileges.php:2070
#: tbl_change.php:287 tbl_change.php:314 tbl_printview.php:143
#: tbl_printview.php:313 tbl_select.php:136 tbl_structure.php:178
#: tbl_structure.php:659 tbl_tracking.php:274 tbl_tracking.php:321
@@ -165,9 +165,9 @@ msgstr "Komentáre"
#: libraries/Index.class.php:386 libraries/export/htmlword.php:322
#: libraries/export/latex.php:430 libraries/export/odt.php:368
#: libraries/export/texytext.php:311 libraries/mult_submits.inc.php:263
-#: pdf_schema.php:1344 server_privileges.php:1529 server_privileges.php:1540
-#: server_privileges.php:1850 server_privileges.php:1855
-#: server_privileges.php:2148 sql.php:132 sql.php:194 tbl_printview.php:229
+#: pdf_schema.php:1344 server_privileges.php:1568 server_privileges.php:1579
+#: server_privileges.php:1889 server_privileges.php:1894
+#: server_privileges.php:2187 sql.php:132 sql.php:194 tbl_printview.php:229
#: tbl_structure.php:350 tbl_tracking.php:337 tbl_tracking.php:342
msgid "No"
msgstr "Nie"
@@ -181,9 +181,9 @@ msgstr "Nie"
#: libraries/mult_submits.inc.php:101 libraries/mult_submits.inc.php:106
#: libraries/mult_submits.inc.php:111 libraries/mult_submits.inc.php:262
#: libraries/mult_submits.inc.php:273 pdf_schema.php:1344
-#: server_databases.php:64 server_privileges.php:1526
-#: server_privileges.php:1540 server_privileges.php:1850
-#: server_privileges.php:1853 server_privileges.php:2148 sql.php:193
+#: server_databases.php:64 server_privileges.php:1565
+#: server_privileges.php:1579 server_privileges.php:1889
+#: server_privileges.php:1892 server_privileges.php:2187 sql.php:193
#: tbl_printview.php:229 tbl_structure.php:40 tbl_structure.php:350
#: tbl_tracking.php:335 tbl_tracking.php:340
msgid "Yes"
@@ -280,7 +280,7 @@ msgstr "Prepnúť na skopírovanú databázu"
msgid "BLOB Repository"
msgstr ""
-#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1350
+#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1352
#: libraries/server_links.inc.php:49 server_processlist.php:59
#: tbl_tracking.php:596 test/theme.php:101
msgid "Status"
@@ -345,8 +345,8 @@ msgstr "Upraviť PDF Stránky"
#: db_printview.php:104 db_tracking.php:72 db_tracking.php:157
#: libraries/db_structure.lib.php:46 libraries/export/xml.php:328
-#: libraries/header.inc.php:126 pdf_pages.php:424 server_privileges.php:1626
-#: server_privileges.php:1682 server_privileges.php:1946
+#: libraries/header.inc.php:126 pdf_pages.php:424 server_privileges.php:1665
+#: server_privileges.php:1721 server_privileges.php:1985
#: server_synchronize.php:423 server_synchronize.php:866 tbl_tracking.php:592
#: test/theme.php:75
msgid "Table"
@@ -448,7 +448,7 @@ msgstr "Zmazať"
#: db_qbe.php:370 db_qbe.php:451 db_qbe.php:522 db_qbe.php:553
#: libraries/display_import.lib.php:166 libraries/tbl_properties.inc.php:779
-#: server_privileges.php:258 tbl_change.php:1031 tbl_indexes.php:250
+#: server_privileges.php:297 tbl_change.php:1031 tbl_indexes.php:250
#: tbl_select.php:288
msgid "Or"
msgstr "alebo"
@@ -482,7 +482,7 @@ msgstr "Použiť tabuľky"
msgid "SQL query on database %s:"
msgstr " SQL dopyt v databáze %s:"
-#: db_qbe.php:934 libraries/common.lib.php:1223
+#: db_qbe.php:934 libraries/common.lib.php:1225
msgid "Submit Query"
msgstr "Odošli dopyt"
@@ -521,7 +521,7 @@ msgstr "%s výskyt(ov)v tabuľke %s"
#: db_search.php:267 db_structure.php:77 db_structure.php:78
#: db_structure.php:90 db_structure.php:92 db_structure.php:103
-#: db_structure.php:105 libraries/common.lib.php:2824
+#: db_structure.php:105 libraries/common.lib.php:2833
#: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50
#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:467
msgid "Browse"
@@ -569,26 +569,26 @@ msgstr "V tabuľke(ách):"
#: db_structure.php:81 db_structure.php:82 db_structure.php:94
#: db_structure.php:95 db_structure.php:107 db_structure.php:108
-#: libraries/common.lib.php:2823 libraries/sql_query_form.lib.php:334
+#: libraries/common.lib.php:2832 libraries/sql_query_form.lib.php:334
#: libraries/sql_query_form.lib.php:337 libraries/tbl_links.inc.php:76
msgid "Insert"
msgstr "Vložiť"
#: db_structure.php:83 db_structure.php:96 db_structure.php:109
-#: libraries/common.lib.php:2820 libraries/common.lib.php:2827
+#: libraries/common.lib.php:2829 libraries/common.lib.php:2836
#: libraries/db_links.inc.php:63 libraries/export/htmlword.php:23
#: libraries/export/latex.php:33 libraries/export/latex.php:337
#: libraries/export/odt.php:32 libraries/export/sql.php:60
#: libraries/export/texytext.php:23 libraries/import.lib.php:1104
#: libraries/tbl_links.inc.php:56 pmd_general.php:134
-#: server_privileges.php:554 server_replication.php:315 tbl_tracking.php:269
+#: server_privileges.php:593 server_replication.php:315 tbl_tracking.php:269
msgid "Structure"
msgstr "Štruktúra"
#: db_structure.php:84 db_structure.php:85 db_structure.php:97
#: db_structure.php:98 db_structure.php:110 db_structure.php:111
#: db_structure.php:545 db_structure.php:546 db_tracking.php:91
-#: libraries/Index.class.php:483 libraries/common.lib.php:1654
+#: libraries/Index.class.php:483 libraries/common.lib.php:1656
#: libraries/db_links.inc.php:100 libraries/mult_submits.inc.php:36
#: libraries/mult_submits.inc.php:73 libraries/tbl_links.inc.php:127
#: server_databases.php:352 tbl_structure.php:27 tbl_structure.php:151
@@ -598,7 +598,7 @@ msgstr "Odstrániť"
#: db_structure.php:86 db_structure.php:87 db_structure.php:99
#: db_structure.php:100 db_structure.php:112 db_structure.php:113
-#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1653
+#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1655
#: libraries/mult_submits.inc.php:39 libraries/tbl_links.inc.php:105
msgid "Empty"
msgstr "Vyprázdniť"
@@ -640,7 +640,7 @@ msgstr "Pohľad"
#: db_structure.php:485 libraries/db_structure.lib.php:49
#: libraries/server_links.inc.php:70 server_replication.php:33
-#: server_replication.php:164 server_status.php:258
+#: server_replication.php:164 server_status.php:369
msgid "Replication"
msgstr "Replikácia"
@@ -656,20 +656,20 @@ msgstr "Na tomto MySQL servri je prednastaveným úložným systémom %s."
#: db_structure.php:524 db_structure.php:541 db_structure.php:542
#: libraries/display_tbl.lib.php:2081 libraries/display_tbl.lib.php:2086
#: libraries/mult_submits.inc.php:16 server_databases.php:346
-#: server_databases.php:351 server_privileges.php:1557 tbl_structure.php:455
+#: server_databases.php:351 server_privileges.php:1596 tbl_structure.php:455
#: tbl_structure.php:464
msgid "With selected:"
msgstr "Výber:"
#: db_structure.php:527 libraries/display_tbl.lib.php:2076
-#: server_databases.php:348 server_privileges.php:530
-#: server_privileges.php:1560 tbl_structure.php:458
+#: server_databases.php:348 server_privileges.php:569
+#: server_privileges.php:1599 tbl_structure.php:458
msgid "Check All"
msgstr "Označiť všetko"
#: db_structure.php:531 libraries/display_tbl.lib.php:2077
#: libraries/replication_gui.lib.php:33 server_databases.php:350
-#: server_privileges.php:533 server_privileges.php:1564 tbl_structure.php:462
+#: server_privileges.php:572 server_privileges.php:1603 tbl_structure.php:462
msgid "Uncheck All"
msgstr "Odznačiť všetko"
@@ -707,7 +707,7 @@ msgstr "Analyzovať tabuľku"
#: libraries/display_export.lib.php:83 libraries/display_tbl.lib.php:2094
#: libraries/display_tbl.lib.php:2225 libraries/mult_submits.inc.php:62
#: libraries/server_links.inc.php:84 libraries/tbl_links.inc.php:82
-#: pmd_pdf.php:84 pmd_pdf.php:109 server_privileges.php:1341
+#: pmd_pdf.php:84 pmd_pdf.php:109 server_privileges.php:1380
#: setup/frames/menu.inc.php:22 tbl_row_action.php:59
msgid "Export"
msgstr "Exportovať"
@@ -725,8 +725,8 @@ msgstr ""
#: libraries/export/sql.php:342 libraries/export/texytext.php:84
#: libraries/export/xml.php:255 libraries/header.inc.php:106
#: libraries/header_printview.inc.php:58 server_databases.php:169
-#: server_privileges.php:1621 server_privileges.php:1682
-#: server_privileges.php:1940 server_processlist.php:56
+#: server_privileges.php:1660 server_privileges.php:1721
+#: server_privileges.php:1979 server_processlist.php:56
#: server_synchronize.php:1179 server_synchronize.php:1183
#: tbl_tracking.php:591 test/theme.php:65
msgid "Database"
@@ -747,8 +747,8 @@ msgstr ""
#: db_tracking.php:77 libraries/Index.class.php:440
#: libraries/db_structure.lib.php:53 server_databases.php:203
-#: server_privileges.php:1503 server_privileges.php:1686
-#: server_privileges.php:2034 tbl_structure.php:187
+#: server_privileges.php:1542 server_privileges.php:1725
+#: server_privileges.php:2073 tbl_structure.php:187
msgid "Action"
msgstr "Akcia"
@@ -954,11 +954,11 @@ msgstr "Názov hostiteľa je prázdny!"
msgid "The user name is empty!"
msgstr "Meno používateľa je prázdne!"
-#: js/messages.php:44 server_privileges.php:1197 user_password.php:70
+#: js/messages.php:44 server_privileges.php:1236 user_password.php:70
msgid "The password is empty!"
msgstr "Heslo je prázdne!"
-#: js/messages.php:45 server_privileges.php:1195 user_password.php:73
+#: js/messages.php:45 server_privileges.php:1234 user_password.php:73
msgid "The passwords aren't the same!"
msgstr "Heslá sa nezhodujú!"
@@ -1039,8 +1039,8 @@ msgid "Prev"
msgstr "Predchádzajúci"
#. l10n: Display text for next month link in calendar
-#: js/messages.php:77 libraries/common.lib.php:2344
-#: libraries/common.lib.php:2347 libraries/display_tbl.lib.php:338
+#: js/messages.php:77 libraries/common.lib.php:2353
+#: libraries/common.lib.php:2356 libraries/display_tbl.lib.php:338
#: server_binlog.php:205 server_binlog.php:207 tbl_printview.php:424
#: tbl_structure.php:801
msgid "Next"
@@ -1116,27 +1116,27 @@ msgid "December"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:97 libraries/common.lib.php:1555
+#: js/messages.php:97 libraries/common.lib.php:1557
msgid "Jan"
msgstr "Jan"
#. l10n: Short month name
-#: js/messages.php:99 libraries/common.lib.php:1557
+#: js/messages.php:99 libraries/common.lib.php:1559
msgid "Feb"
msgstr "Feb"
#. l10n: Short month name
-#: js/messages.php:101 libraries/common.lib.php:1559
+#: js/messages.php:101 libraries/common.lib.php:1561
msgid "Mar"
msgstr "Mar"
#. l10n: Short month name
-#: js/messages.php:103 libraries/common.lib.php:1561
+#: js/messages.php:103 libraries/common.lib.php:1563
msgid "Apr"
msgstr "Apr"
#. l10n: Short month name
-#: js/messages.php:105 libraries/common.lib.php:1563
+#: js/messages.php:105 libraries/common.lib.php:1565
#, fuzzy
#| msgid "May"
msgctxt "Short month name"
@@ -1144,37 +1144,37 @@ msgid "May"
msgstr "Máj"
#. l10n: Short month name
-#: js/messages.php:107 libraries/common.lib.php:1565
+#: js/messages.php:107 libraries/common.lib.php:1567
msgid "Jun"
msgstr "Jún"
#. l10n: Short month name
-#: js/messages.php:109 libraries/common.lib.php:1567
+#: js/messages.php:109 libraries/common.lib.php:1569
msgid "Jul"
msgstr "Júl"
#. l10n: Short month name
-#: js/messages.php:111 libraries/common.lib.php:1569
+#: js/messages.php:111 libraries/common.lib.php:1571
msgid "Aug"
msgstr "Aug"
#. l10n: Short month name
-#: js/messages.php:113 libraries/common.lib.php:1571
+#: js/messages.php:113 libraries/common.lib.php:1573
msgid "Sep"
msgstr "Sep"
#. l10n: Short month name
-#: js/messages.php:115 libraries/common.lib.php:1573
+#: js/messages.php:115 libraries/common.lib.php:1575
msgid "Oct"
msgstr "Okt"
#. l10n: Short month name
-#: js/messages.php:117 libraries/common.lib.php:1575
+#: js/messages.php:117 libraries/common.lib.php:1577
msgid "Nov"
msgstr "Nov"
#. l10n: Short month name
-#: js/messages.php:119 libraries/common.lib.php:1577
+#: js/messages.php:119 libraries/common.lib.php:1579
msgid "Dec"
msgstr "Dec"
@@ -1215,37 +1215,37 @@ msgid "Saturday"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:132 libraries/common.lib.php:1580
+#: js/messages.php:132 libraries/common.lib.php:1582
msgid "Sun"
msgstr "Ne"
#. l10n: Short week day name
-#: js/messages.php:134 libraries/common.lib.php:1582
+#: js/messages.php:134 libraries/common.lib.php:1584
msgid "Mon"
msgstr "Po"
#. l10n: Short week day name
-#: js/messages.php:136 libraries/common.lib.php:1584
+#: js/messages.php:136 libraries/common.lib.php:1586
msgid "Tue"
msgstr "Út"
#. l10n: Short week day name
-#: js/messages.php:138 libraries/common.lib.php:1586
+#: js/messages.php:138 libraries/common.lib.php:1588
msgid "Wed"
msgstr "St"
#. l10n: Short week day name
-#: js/messages.php:140 libraries/common.lib.php:1588
+#: js/messages.php:140 libraries/common.lib.php:1590
msgid "Thu"
msgstr "Št"
#. l10n: Short week day name
-#: js/messages.php:142 libraries/common.lib.php:1590
+#: js/messages.php:142 libraries/common.lib.php:1592
msgid "Fri"
msgstr "Pi"
#. l10n: Short week day name
-#: js/messages.php:144 libraries/common.lib.php:1592
+#: js/messages.php:144 libraries/common.lib.php:1594
msgid "Sat"
msgstr "So"
@@ -1390,7 +1390,7 @@ msgid "Comment"
msgstr "Komentár"
#: libraries/Index.class.php:466 libraries/common.lib.php:616
-#: libraries/common.lib.php:1199 libraries/display_tbl.lib.php:1117
+#: libraries/common.lib.php:1201 libraries/display_tbl.lib.php:1117
#: libraries/import.lib.php:1087 libraries/import.lib.php:1111
#: pdf_pages.php:285 setup/frames/index.inc.php:124
#: setup/lib/messages.inc.php:352 tbl_row_action.php:69
@@ -1414,7 +1414,7 @@ msgid ""
msgstr ""
#: libraries/List_Database.class.php:431 libraries/server_links.inc.php:41
-#: server_databases.php:88 server_privileges.php:1621
+#: server_databases.php:88 server_privileges.php:1660
#: setup/lib/messages.inc.php:110 test/theme.php:93
msgid "Databases"
msgstr "Databázy"
@@ -1749,7 +1749,7 @@ msgid "Documentation"
msgstr "Dokumentácia"
#: libraries/common.lib.php:595 libraries/header_printview.inc.php:61
-#: server_processlist.php:60 server_status.php:247
+#: server_processlist.php:60 server_status.php:358
msgid "SQL query"
msgstr "SQL dopyt"
@@ -1765,130 +1765,130 @@ msgstr "Vysvetliť SQL"
msgid "Skip Explain SQL"
msgstr "Preskočiť vysvetlenie SQL"
-#: libraries/common.lib.php:1212
+#: libraries/common.lib.php:1214
msgid "Without PHP Code"
msgstr "bez PHP kódu"
-#: libraries/common.lib.php:1215 setup/lib/messages.inc.php:355
+#: libraries/common.lib.php:1217 setup/lib/messages.inc.php:355
msgid "Create PHP Code"
msgstr "Vytvoriť PHP kód"
-#: libraries/common.lib.php:1233 server_status.php:341
+#: libraries/common.lib.php:1235 server_status.php:452
#: setup/lib/messages.inc.php:354
msgid "Refresh"
msgstr "Obnoviť"
-#: libraries/common.lib.php:1242
+#: libraries/common.lib.php:1244
msgid "Skip Validate SQL"
msgstr "Preskočiť potvrdenie platnosti SQL"
-#: libraries/common.lib.php:1245 setup/lib/messages.inc.php:356 sql.php:518
+#: libraries/common.lib.php:1247 setup/lib/messages.inc.php:356 sql.php:518
msgid "Validate SQL"
msgstr "Potvrdiť platnosť SQL"
-#: libraries/common.lib.php:1276
+#: libraries/common.lib.php:1278
msgid "Inline edit of this query"
msgstr ""
-#: libraries/common.lib.php:1278
+#: libraries/common.lib.php:1280
#, fuzzy
#| msgid "Engines"
msgid "Inline"
msgstr "Systémy"
-#: libraries/common.lib.php:1332 libraries/common.lib.php:1347
+#: libraries/common.lib.php:1334 libraries/common.lib.php:1349
msgid "Profiling"
msgstr ""
-#: libraries/common.lib.php:1351 libraries/tbl_triggers.lib.php:28
+#: libraries/common.lib.php:1353 libraries/tbl_triggers.lib.php:28
#: server_processlist.php:58
msgid "Time"
msgstr "Čas"
#. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "B"
msgstr "Bajtov"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "KiB"
msgstr "KB"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "MiB"
msgstr "MB"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "GiB"
msgstr "GB"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "TiB"
msgstr "TB"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "PiB"
msgstr "PB"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "EiB"
msgstr "EB"
#. l10n: Thousands separator
-#: libraries/common.lib.php:1417
+#: libraries/common.lib.php:1419
msgid ","
msgstr " "
#. l10n: Decimal separator
-#: libraries/common.lib.php:1419
+#: libraries/common.lib.php:1421
msgid "."
msgstr ","
#. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string
-#: libraries/common.lib.php:1596
+#: libraries/common.lib.php:1598
#: libraries/transformations/text_plain__dateformat.inc.php:34
msgid "%B %d, %Y at %I:%M %p"
msgstr "%d.%B, %Y - %H:%M"
-#: libraries/common.lib.php:1898
+#: libraries/common.lib.php:1907
#, 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/common.lib.php:2313 libraries/common.lib.php:2316
-#: libraries/display_tbl.lib.php:290 server_status.php:608
+#: libraries/common.lib.php:2322 libraries/common.lib.php:2325
+#: libraries/display_tbl.lib.php:290 server_status.php:719
msgid "Begin"
msgstr "Začiatok"
-#: libraries/common.lib.php:2314 libraries/common.lib.php:2317
+#: libraries/common.lib.php:2323 libraries/common.lib.php:2326
#: libraries/display_tbl.lib.php:291 server_binlog.php:168
#: server_binlog.php:170
msgid "Previous"
msgstr "Predchádzajúci"
-#: libraries/common.lib.php:2345 libraries/common.lib.php:2348
+#: libraries/common.lib.php:2354 libraries/common.lib.php:2357
#: libraries/display_tbl.lib.php:353
msgid "End"
msgstr "Koniec"
-#: libraries/common.lib.php:2421
+#: libraries/common.lib.php:2430
#, php-format
msgid "Jump to database "%s"."
msgstr "Na databázu "%s"."
-#: libraries/common.lib.php:2441
+#: libraries/common.lib.php:2450
#, 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/common.lib.php:2821 libraries/common.lib.php:2828
+#: libraries/common.lib.php:2830 libraries/common.lib.php:2837
#: libraries/db_links.inc.php:68 libraries/export/sql.php:25
#: libraries/import/sql.php:18 libraries/server_links.inc.php:45
#: libraries/tbl_links.inc.php:60 querywindow.php:99 test/theme.php:97
msgid "SQL"
msgstr "SQL"
-#: libraries/common.lib.php:2830 libraries/db_links.inc.php:104
+#: libraries/common.lib.php:2839 libraries/db_links.inc.php:104
#: libraries/tbl_links.inc.php:95 libraries/tbl_links.inc.php:117
#: view_operations.php:89
msgid "Operations"
@@ -1942,8 +1942,8 @@ msgid "Import"
msgstr "Import"
#: libraries/db_links.inc.php:111 libraries/server_links.inc.php:66
-#: server_privileges.php:72 server_privileges.php:1683
-#: server_privileges.php:2032 test/theme.php:117
+#: server_privileges.php:111 server_privileges.php:1722
+#: server_privileges.php:2071 test/theme.php:117
msgid "Privileges"
msgstr "Oprávnenia"
@@ -1989,22 +1989,22 @@ msgid "Change password"
msgstr "Zmeniť heslo"
#: libraries/display_change_password.lib.php:35
-#: libraries/replication_gui.lib.php:345 server_privileges.php:768
+#: libraries/replication_gui.lib.php:345 server_privileges.php:807
msgid "No Password"
msgstr "Žiadne heslo"
#: libraries/display_change_password.lib.php:41
#: libraries/replication_gui.lib.php:59 libraries/replication_gui.lib.php:60
#: libraries/replication_gui.lib.php:335 libraries/replication_gui.lib.php:339
-#: libraries/replication_gui.lib.php:349 server_privileges.php:757
-#: server_privileges.php:761 server_privileges.php:772
-#: server_privileges.php:1499 server_synchronize.php:1175
+#: libraries/replication_gui.lib.php:349 server_privileges.php:796
+#: server_privileges.php:800 server_privileges.php:811
+#: server_privileges.php:1538 server_synchronize.php:1175
msgid "Password"
msgstr "Heslo"
#: libraries/display_change_password.lib.php:46
#: libraries/replication_gui.lib.php:353 libraries/replication_gui.lib.php:356
-#: server_privileges.php:776 server_privileges.php:779
+#: server_privileges.php:815 server_privileges.php:818
msgid "Re-type"
msgstr "Potvrdiť"
@@ -2019,12 +2019,12 @@ msgid "MySQL 4.0 compatible"
msgstr "Kompatibilné s MySQL 4.0"
#: libraries/display_change_password.lib.php:72
-#: libraries/replication_gui.lib.php:360 server_privileges.php:783
+#: libraries/replication_gui.lib.php:360 server_privileges.php:822
msgid "Generate Password"
msgstr "Vytvoriť Heslo"
#: libraries/display_change_password.lib.php:75
-#: libraries/replication_gui.lib.php:363 server_privileges.php:786
+#: libraries/replication_gui.lib.php:363 server_privileges.php:825
msgid "Generate"
msgstr "Vytvoriť"
@@ -2037,8 +2037,8 @@ msgstr "Vytvoriť novú databázu"
msgid "Create"
msgstr "Vytvoriť"
-#: libraries/display_create_database.lib.php:40 server_privileges.php:74
-#: server_privileges.php:1388 server_replication.php:35
+#: libraries/display_create_database.lib.php:40 server_privileges.php:113
+#: server_privileges.php:1427 server_replication.php:35
msgid "No Privileges"
msgstr "Žiadne oprávnenia"
@@ -2130,7 +2130,7 @@ msgstr "Kompresia"
#: libraries/display_export.lib.php:240 libraries/display_import.lib.php:197
#: libraries/display_import.lib.php:210 libraries/display_tbl.lib.php:530
#: libraries/export/sql.php:868 libraries/tbl_properties.inc.php:575
-#: server_privileges.php:1836 server_processlist.php:75
+#: server_privileges.php:1875 server_processlist.php:75
msgid "None"
msgstr "Žiadny"
@@ -2463,7 +2463,7 @@ msgstr ""
msgid "Buffer Pool"
msgstr "Vyrovnávacia Pamäť"
-#: libraries/engines/innodb.lib.php:145 server_status.php:306
+#: libraries/engines/innodb.lib.php:145 server_status.php:417
msgid "InnoDB Status"
msgstr "Stav InnoDB"
@@ -2472,8 +2472,8 @@ msgid "Buffer Pool Usage"
msgstr "Využitie Vyrovnávacej Pamäte"
#: libraries/engines/innodb.lib.php:194 server_databases.php:137
-#: server_databases.php:305 server_status.php:414 server_status.php:475
-#: server_status.php:496 tbl_printview.php:351 tbl_structure.php:696
+#: server_databases.php:305 server_status.php:525 server_status.php:586
+#: server_status.php:607 tbl_printview.php:351 tbl_structure.php:696
msgid "Total"
msgstr "Celkom"
@@ -2806,7 +2806,7 @@ msgstr "Microsoft Word 2000"
#: libraries/export/latex.php:201 libraries/export/odt.php:48
#: libraries/export/sql.php:106 libraries/export/sql.php:868
#: libraries/export/texytext.php:27 server_databases.php:127
-#: server_privileges.php:537 server_replication.php:316 tbl_printview.php:317
+#: server_privileges.php:576 server_replication.php:316 tbl_printview.php:317
#: tbl_structure.php:665
msgid "Data"
msgstr "Dáta"
@@ -2856,9 +2856,9 @@ msgstr "MIME typ"
#: libraries/export/xml.php:102 libraries/header_printview.inc.php:57
#: libraries/replication_gui.lib.php:63 libraries/replication_gui.lib.php:174
#: libraries/replication_gui.lib.php:269 libraries/replication_gui.lib.php:272
-#: libraries/replication_gui.lib.php:329 server_privileges.php:692
-#: server_privileges.php:695 server_privileges.php:751
-#: server_privileges.php:1498 server_privileges.php:2030
+#: libraries/replication_gui.lib.php:329 server_privileges.php:731
+#: server_privileges.php:734 server_privileges.php:790
+#: server_privileges.php:1537 server_privileges.php:2069
#: server_processlist.php:55 server_synchronize.php:1159
msgid "Host"
msgstr "Hostiteľ"
@@ -3215,858 +3215,6 @@ msgstr "Žiadny"
msgid "Convert to Kana"
msgstr ""
-#. l10n: Text direction, use either ltr or rtl
-#: libraries/messages.inc.php:19
-msgid "ltr"
-msgstr "ltr"
-
-#: libraries/messages.inc.php:21
-msgid "Content of table __TABLE__"
-msgstr "Obsah tabuľky __TABLE__"
-
-#: libraries/messages.inc.php:22
-msgid "(continued)"
-msgstr "(pokračovanie)"
-
-#: libraries/messages.inc.php:23
-msgid "Structure of table __TABLE__"
-msgstr "Štruktúra tabuľky __TABLE__"
-
-#: libraries/messages.inc.php:25 server_privileges.php:227
-msgid "Includes all privileges except GRANT."
-msgstr "Všetky oprávnenia okrem GRANT."
-
-#: libraries/messages.inc.php:26 server_privileges.php:153
-#: server_privileges.php:476
-msgid "Allows altering the structure of existing tables."
-msgstr "Povolí meniť štruktúru existujúcich tabuliek."
-
-#: libraries/messages.inc.php:27 server_privileges.php:169
-#: server_privileges.php:482
-msgid "Allows altering and dropping stored routines."
-msgstr "Umožňuje upravovať a odstraňovať uložené procedúry."
-
-#: libraries/messages.inc.php:28 server_privileges.php:145
-#: server_privileges.php:475
-msgid "Allows creating new databases and tables."
-msgstr "Povolí vytváranie nových databáz a tabuliek."
-
-#: libraries/messages.inc.php:29 server_privileges.php:168
-#: server_privileges.php:481
-msgid "Allows creating stored routines."
-msgstr "Umožňuje vytvárať uložené procedúry."
-
-#: libraries/messages.inc.php:30 server_privileges.php:475
-msgid "Allows creating new tables."
-msgstr "Povolí vytváranie nových tabuliek."
-
-#: libraries/messages.inc.php:31 server_privileges.php:156
-#: server_privileges.php:479
-msgid "Allows creating temporary tables."
-msgstr "Povolí vytváranie dočasných tabuliek."
-
-#: libraries/messages.inc.php:32 server_privileges.php:170
-#: server_privileges.php:515
-msgid "Allows creating, dropping and renaming user accounts."
-msgstr "Umožňuje vytvárať, odstraňovať a premenovávať používateľské kontá."
-
-#: libraries/messages.inc.php:33 server_privileges.php:160
-#: server_privileges.php:164 server_privileges.php:487
-#: server_privileges.php:491
-msgid "Allows creating new views."
-msgstr "Umožňuje vytvárať nové pohľady."
-
-#: libraries/messages.inc.php:34 server_privileges.php:144
-#: server_privileges.php:467
-msgid "Allows deleting data."
-msgstr "Povolí mazanie dát."
-
-#: libraries/messages.inc.php:35 server_privileges.php:146
-#: server_privileges.php:478
-msgid "Allows dropping databases and tables."
-msgstr "Povolí odstraňovanie databáz a tabuliek."
-
-#: libraries/messages.inc.php:36 server_privileges.php:478
-msgid "Allows dropping tables."
-msgstr "Povolí odstraňovanie tabuliek."
-
-#: libraries/messages.inc.php:37 server_privileges.php:161
-#: server_privileges.php:495
-msgid "Allows to set up events for the event scheduler"
-msgstr ""
-
-#: libraries/messages.inc.php:38 server_privileges.php:171
-#: server_privileges.php:483
-msgid "Allows executing stored routines."
-msgstr "Umožňuje spúšťať uložené procedúry."
-
-#: libraries/messages.inc.php:39 server_privileges.php:150
-#: server_privileges.php:470
-msgid "Allows importing data from and exporting data into files."
-msgstr "Povolí importovanie a exportovanie dát zo/do súborov na serveri."
-
-#: libraries/messages.inc.php:40 server_privileges.php:501
-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/messages.inc.php:41 server_privileges.php:152
-#: server_privileges.php:477
-msgid "Allows creating and dropping indexes."
-msgstr "Povolí vytváranie a mazanie indexov."
-
-#: libraries/messages.inc.php:42 server_privileges.php:142
-#: server_privileges.php:403 server_privileges.php:465
-msgid "Allows inserting and replacing data."
-msgstr "Povolí vkladanie a nahradzovanie dát."
-
-#: libraries/messages.inc.php:43 server_privileges.php:157
-#: server_privileges.php:510
-msgid "Allows locking tables for the current thread."
-msgstr "Povolí zmaknutie tabuliek pre aktuálne vlákno."
-
-#: libraries/messages.inc.php:44 server_privileges.php:607
-#: server_privileges.php:609
-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/messages.inc.php:45 server_privileges.php:595
-#: server_privileges.php:597
-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/messages.inc.php:46 server_privileges.php:601
-#: server_privileges.php:603
-msgid ""
-"Limits the number of commands that change any table or database the user may "
-"execute per hour."
-msgstr ""
-"Obmedzí počet príkazov meniacich tabuľku alebo databázu, ktorá môže "
-"používateľ odoslať za hodinu."
-
-#: libraries/messages.inc.php:47 server_privileges.php:613
-#: server_privileges.php:615
-msgid "Limits the number of simultaneous connections the user may have."
-msgstr "Obmedzuje počet simultánnych pripojení používateľa."
-
-#: libraries/messages.inc.php:48 server_privileges.php:149
-#: server_privileges.php:505
-msgid "Allows viewing processes of all users"
-msgstr ""
-
-#: libraries/messages.inc.php:49 server_privileges.php:151
-#: server_privileges.php:409 server_privileges.php:511
-msgid "Has no effect in this MySQL version."
-msgstr "Nefunguje v tejto verzii MySQL."
-
-#: libraries/messages.inc.php:50 server_privileges.php:147
-#: server_privileges.php:506
-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/messages.inc.php:51 server_privileges.php:159
-#: server_privileges.php:513
-msgid "Allows the user to ask where the slaves / masters are."
-msgstr "Povolí používateľovi zistiť kde je hlavný / pomocný server."
-
-#: libraries/messages.inc.php:52 server_privileges.php:158
-#: server_privileges.php:514
-msgid "Needed for the replication slaves."
-msgstr "Potrebné pre replikáciu pomocných serverov."
-
-#: libraries/messages.inc.php:53 server_privileges.php:141
-#: server_privileges.php:400 server_privileges.php:464
-msgid "Allows reading data."
-msgstr "Povolí čítanie dát."
-
-#: libraries/messages.inc.php:54 server_privileges.php:154
-#: server_privileges.php:508
-msgid "Gives access to the complete list of databases."
-msgstr "Povolí prístup ku kompletnému zoznamu databáz."
-
-#: libraries/messages.inc.php:55 server_privileges.php:165
-#: server_privileges.php:167 server_privileges.php:480
-msgid "Allows performing SHOW CREATE VIEW queries."
-msgstr "Umožňuje spúšťať príkazy so SHOW CREATE VIEW."
-
-#: libraries/messages.inc.php:56 server_privileges.php:148
-#: server_privileges.php:507
-msgid "Allows shutting down the server."
-msgstr "Povolí vypnutie serveru."
-
-#: libraries/messages.inc.php:57 server_privileges.php:155
-#: server_privileges.php:504
-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 ""
-"Povolí spojenie aj v prípade, že bol dosiahnutý maximálny počet spojení. "
-"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/messages.inc.php:58 server_privileges.php:162
-#: server_privileges.php:496
-#, fuzzy
-msgid "Allows creating and dropping triggers"
-msgstr "Povolí vytváranie a mazanie indexov."
-
-#: libraries/messages.inc.php:59 server_privileges.php:143
-#: server_privileges.php:406 server_privileges.php:466
-msgid "Allows changing data."
-msgstr "Povolí menenie dát."
-
-#: libraries/messages.inc.php:60 server_privileges.php:221
-msgid "No privileges."
-msgstr "Žiadne práva."
-
-#: libraries/messages.inc.php:62
-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 ""
-"Počet transakcií, ktoré využili dočasnú vyrovnávaciu pamäť binárneho logu, "
-"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/messages.inc.php:63
-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/messages.inc.php:64
-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 "
-"to increase the tmp_table_size value to cause temporary tables to be memory-"
-"based instead of disk-based."
-msgstr ""
-"Počet dočasných tabuliek automaticky vytvorených servrom pri vykonávaní "
-"príkazov. Ak je hodnota Created_tmp_disk_tables príliš vysoká, môžte zvýšiť "
-"hodnotu tmp_table_size, aby boli dočasné tabuľky ukladané do pamäte a nie na "
-"disk."
-
-#: libraries/messages.inc.php:65
-msgid "How many temporary files mysqld has created."
-msgstr "Počet dočasných súborov vytvorených servrom mysqld."
-
-#: libraries/messages.inc.php:66
-msgid ""
-"The number of in-memory temporary tables created automatically by the server "
-"while executing statements."
-msgstr ""
-"Počet dočasných, v pamäti uložených tabuliek, vytvorených servrom pri "
-"vykonávaní príkazov."
-
-#: libraries/messages.inc.php:67
-msgid ""
-"The number of rows written with INSERT DELAYED for which some error occurred "
-"(probably duplicate key)."
-msgstr ""
-"Počet riadkov pridaných príkazom INSERT DELAYED, pri ktorých sa vyskytla "
-"chyba (pravdepodobne opakujúci sa kľúč)."
-
-#: libraries/messages.inc.php:68
-msgid ""
-"The number of INSERT DELAYED handler threads in use. Every different table "
-"on which one uses INSERT DELAYED gets its own thread."
-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/messages.inc.php:69
-msgid "The number of INSERT DELAYED rows written."
-msgstr "Počet riadkov vložených príkazom INSERT DELAYED."
-
-#: libraries/messages.inc.php:70
-msgid "The number of executed FLUSH statements."
-msgstr "Počet vykonaných príkazov FLUSH."
-
-#: libraries/messages.inc.php:71
-msgid "The number of internal COMMIT statements."
-msgstr "Počet interných príkazov COMMIT."
-
-#: libraries/messages.inc.php:72
-msgid "The number of times a row was deleted from a table."
-msgstr "Koľkokrát bol z tabuľky odstránený riadok."
-
-#: libraries/messages.inc.php:73
-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 ""
-"MySQL server môže zaslať požiadavku NDB Clustru, či nevie o existencii "
-"tabuľky s daným menom. Tento proces sa nazýva objavovanie. Handler_discover "
-"zobrazuje počet doposiaľ objavených tabuliek."
-
-#: libraries/messages.inc.php:74
-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 ""
-"Počet prečítaní prvej položky indexu. Ak je táto hodnota príliš vysoká, "
-"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/messages.inc.php:75
-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 ""
-"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/messages.inc.php:76
-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 ""
-"Počet požiadavkov na načítanie nasledujúceho riadku v poradí podľa kľúča. "
-"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/messages.inc.php:77
-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 ""
-"Počet požiadavkov na načítanie predchádzajúceho riadku podľa kľúča. Táto "
-"čítacia metóda sa použiva hlavne na optimalizáciu príkazov typu ORDER BY ... "
-"DESC."
-
-#: libraries/messages.inc.php:78
-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 "
-"probably have a lot of queries that require MySQL to scan whole tables or "
-"you have joins that don't use keys properly."
-msgstr ""
-"Počet požiadavkov na načítanie riadku na základe určitej pozície. Táto "
-"hodnota je vysoká, ak sa vykonáva veľa príkazov, ktoré si vyžadujú zoradenie "
-"výsledku. Pravdepodobne sa použiva veľa príkazov, kvôli ktorým musí MySQL "
-"kompletne prehľadávať tabuľky, alebo sa používajú zjednotenia, ktoré správne "
-"nevyužívajú kľúče."
-
-#: libraries/messages.inc.php:79
-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 "
-"tables are not properly indexed or that your queries are not written to take "
-"advantage of the indexes you have."
-msgstr ""
-"Počet požiadavkov na načítanie nasledujúceho riadku. Táto hodnota je vysoká, "
-"ak sa vykonáva veľa kompletných prehľadávaní tabuliek. Znamená to že buď "
-"tabuľky nie sú správne indexované alebo príkazy nedostatočne využívajú "
-"dostupné indexy."
-
-#: libraries/messages.inc.php:80
-msgid "The number of internal ROLLBACK statements."
-msgstr "Počet interných príkazov ROLLBACK."
-
-#: libraries/messages.inc.php:81
-msgid "The number of requests to update a row in a table."
-msgstr "Počet požiadavkov na zmenu záznamu (riadku) v tabuľke."
-
-#: libraries/messages.inc.php:82
-msgid "The number of requests to insert a row in a table."
-msgstr "Počet požiadavkov na vloženie nového záznamu (riadku) do tabuľky."
-
-#: libraries/messages.inc.php:83
-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/messages.inc.php:84
-msgid "The number of pages currently dirty."
-msgstr "Počet nečistých stránok."
-
-#: libraries/messages.inc.php:85
-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/messages.inc.php:86
-msgid "The number of free pages."
-msgstr "Počet voľných stránok."
-
-#: libraries/messages.inc.php:87
-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 ""
-"Počet uzamknutých stránok v InnoDB vyrovnávacej pamäti. Z týchto stránok sa "
-"momentálne číta alebo zapisuje, prípadne nemôžu byť vyprázdnené ani "
-"odstránené z nejakého iného dôvodu."
-
-#: libraries/messages.inc.php:88
-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 "
-"be calculated as Innodb_buffer_pool_pages_total - "
-"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data."
-msgstr ""
-"Počet momentálne neprístupných stránok z dôvodu účasti na administratívnych "
-"účeloch ako napr. uzamkýnanie riadkov alebo adaptívny hash index. Táto "
-"hodnota sa tiež môže vypočítať ako Innodb_buffer_pool_pages_total - "
-"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data."
-
-#: libraries/messages.inc.php:89
-msgid "Total size of buffer pool, in pages."
-msgstr "Celkový počet stránok vo vyrovnávacej pamäti InnoDB."
-
-#: libraries/messages.inc.php:90
-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 ""
-"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/messages.inc.php:91
-msgid ""
-"The number of sequential read-aheads InnoDB initiated. This happens when "
-"InnoDB does a sequential full table scan."
-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/messages.inc.php:92
-msgid "The number of logical read requests InnoDB has done."
-msgstr "Počet požiadavkov na logické načítavanie."
-
-#: libraries/messages.inc.php:93
-msgid ""
-"The number of logical reads that InnoDB could not satisfy from buffer pool "
-"and had to do a single-page read."
-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/messages.inc.php:94
-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 "
-"available, it's necessary to wait for pages to be flushed first. This "
-"counter counts instances of these waits. If the buffer pool size was set "
-"properly, this value should be small."
-msgstr ""
-"Normálne sa zápis do vyrovnávacej pamäte InnoDB vykonáva v pozadí. Ak však "
-"nie sú pri požiadavke na načítanie alebo vytvorenie stránky dostupné žiadne "
-"čisté stránky, je potrebné počkať na ich vyčistenie. Táto hodnota zobrazuje "
-"počet týchto čakaní a ak bola správne nastavená veľkosť vyrovnávacej pamäte, "
-"mala by byť nízka."
-
-#: libraries/messages.inc.php:95
-msgid "The number writes done to the InnoDB buffer pool."
-msgstr "Počet zápisov do vyrovnávacej pamäte InnoDB."
-
-#: libraries/messages.inc.php:96
-msgid "The number of fsync() operations so far."
-msgstr "Počet vykonaných fsync() operácií."
-
-#: libraries/messages.inc.php:97
-msgid "The current number of pending fsync() operations."
-msgstr "Aktuálny počet prebiehajúcich fsync() operácií."
-
-#: libraries/messages.inc.php:98
-msgid "The current number of pending reads."
-msgstr "Počet aktuálne prebiehajúcich načítavaní."
-
-#: libraries/messages.inc.php:99
-msgid "The current number of pending writes."
-msgstr "Počet aktuálne prebiehajúcich zápisov."
-
-#: libraries/messages.inc.php:100
-msgid "The amount of data read so far, in bytes."
-msgstr "Množstvo už načítaných dát, v bajtoch."
-
-#: libraries/messages.inc.php:101
-msgid "The total number of data reads."
-msgstr "Celkový počet načítaní dát."
-
-#: libraries/messages.inc.php:102
-msgid "The total number of data writes."
-msgstr "Celkový počet zápisov dát."
-
-#: libraries/messages.inc.php:103
-msgid "The amount of data written so far, in bytes."
-msgstr "Množstvo už zapísaných dát, v bajtoch."
-
-#: libraries/messages.inc.php:104
-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/messages.inc.php:105
-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/messages.inc.php:106
-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/messages.inc.php:107
-msgid "The number of log write requests."
-msgstr "Počet požiadaviek na zápis do logovacieho súboru."
-
-#: libraries/messages.inc.php:108
-msgid "The number of physical writes to the log file."
-msgstr "Počet fyzických zápisov do logovacieho súboru."
-
-#: libraries/messages.inc.php:109
-msgid "The number of fsync() writes done to the log file."
-msgstr "Počet fsync zápisov vykonaných na logovacom súbore."
-
-#: libraries/messages.inc.php:110
-msgid "The number of pending log file fsyncs."
-msgstr "Počet prebiehajúcich synchronizácií logovacieho súboru."
-
-#: libraries/messages.inc.php:111
-msgid "Pending log file writes."
-msgstr "Počet prebiehajúcich zápisov do logovacieho súboru."
-
-#: libraries/messages.inc.php:112
-msgid "The number of bytes written to the log file."
-msgstr "Množstvo bajtov zapísaných do logovacieho súboru."
-
-#: libraries/messages.inc.php:113
-msgid "The number of pages created."
-msgstr "Počet vytvorených stránok."
-
-#: libraries/messages.inc.php:114
-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 ""
-"Veľkosť nakompilovanej InnoDB stránky (prednastavených je 16KB). Viacero "
-"hodnôt sa udáva v stránkach; pomocou veľkosti stránky je možné ich premeniť "
-"na bajty."
-
-#: libraries/messages.inc.php:115
-msgid "The number of pages read."
-msgstr "Počet načítaných stránok."
-
-#: libraries/messages.inc.php:116
-msgid "The number of pages written."
-msgstr "Počet zapísaných stránok."
-
-#: libraries/messages.inc.php:117
-msgid "The number of row locks currently being waited for."
-msgstr "Počet zámkov na riadky, na ktoré sa čaká."
-
-#: libraries/messages.inc.php:118
-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/messages.inc.php:119
-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/messages.inc.php:120
-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/messages.inc.php:121
-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/messages.inc.php:122
-msgid "The number of rows deleted from InnoDB tables."
-msgstr "Počet záznamov (riadkov) odstránených z InnoDB tabuliek."
-
-#: libraries/messages.inc.php:123
-msgid "The number of rows inserted in InnoDB tables."
-msgstr "Počet záznamov (riadkov) vložených do InnoDB tabuliek."
-
-#: libraries/messages.inc.php:124
-msgid "The number of rows read from InnoDB tables."
-msgstr "Počet načítaných záznamov (riadkov) z InnoDB tabuliek."
-
-#: libraries/messages.inc.php:125
-msgid "The number of rows updated in InnoDB tables."
-msgstr "Počet upravených záznamov (riadkov) v InnoDB tabuľkách."
-
-#: libraries/messages.inc.php:126
-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 ""
-"Počet zmenených kľúčových blokov vo vyrovnávacej pamäti kľúčov, ktoré ešte "
-"neboli zapísané na disk. Predtým sa táto hodnota nazývala "
-"Not_flushed_key_blocks."
-
-#: libraries/messages.inc.php:127
-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 ""
-"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/messages.inc.php:128
-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 ""
-"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/messages.inc.php:129
-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/messages.inc.php:130
-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 ""
-"Počet načítaní kľúčového bloku priamo z disku. Ak je táto hodnota príliš "
-"veľká, väčšinou to znamená, že veľkosť vyrovnávacej pamäti (key_buffer_size) "
-"je príliš malá. Úspešnosť vyrovnávacej pamäte si môžte vypočítať zo vzťahu "
-"Key_reads/Key_read_requests."
-
-#: libraries/messages.inc.php:131
-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/messages.inc.php:132
-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/messages.inc.php:133
-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 ""
-"Celkové náklady na posledný kompilovaný príkaz, vypočítané optimizérom "
-"príkazov. Užitočné na porovnávanie nákladov na rôzne príkazy pre tú istú "
-"požiadavku. Prednastavená hodnota 0 znamená, že doposiaľ neboli skompilované "
-"žiadne príkazy."
-
-#: libraries/messages.inc.php:134
-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/messages.inc.php:135
-msgid ""
-"The number of tables that have been opened. If opened tables is big, your "
-"table cache value is probably too small."
-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/messages.inc.php:136
-msgid "The number of files that are open."
-msgstr "Počet otvorených súborov."
-
-#: libraries/messages.inc.php:137
-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/messages.inc.php:138
-msgid "The number of tables that are open."
-msgstr "Počet práve otvorených tabuliek."
-
-#: libraries/messages.inc.php:139
-msgid "The number of free memory blocks in query cache."
-msgstr "Množstvo voľných pamäťových blokov vo vyrovnávacej pamäti príkazov."
-
-#: libraries/messages.inc.php:140
-msgid "The amount of free memory for query cache."
-msgstr "Veľkosť voľnej pamäti pre vyrovnávaciu pamäť príkazov."
-
-#: libraries/messages.inc.php:141
-msgid "The number of cache hits."
-msgstr "Počet zásahov vyrovnávacej pamäti."
-
-#: libraries/messages.inc.php:142
-msgid "The number of queries added to the cache."
-msgstr "Počet príkazov pridaných do vyrovnávacej pamäti."
-
-#: libraries/messages.inc.php:143
-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 "
-"cache size. The query cache uses a least recently used (LRU) strategy to "
-"decide which queries to remove from the cache."
-msgstr ""
-"Počet príkazov, ktoré boli odstránené z vyrovnácej pamäti na uvoľnenie "
-"pamäti pre nové príkazy. Táto hodnota vám môže pomôcť pri upravovaní "
-"veľkosti vyrovnávacej pamäti príkazov. Na výber príkazov na odstránenie z "
-"vyrovnávacej pamäti sa používa stratégia LRU (tzn. najdlhšie nepoužité "
-"príkazy budú odstránené ako prvé)."
-
-#: libraries/messages.inc.php:144
-msgid ""
-"The number of non-cached queries (not cachable, or not cached due to the "
-"query_cache_type setting)."
-msgstr ""
-"Počet príkazov neumiestnených do vyrovnávacej pamäti (nie sú cachovateľné "
-"alebo nevyhovujú nastaveniu query_cache_type)."
-
-#: libraries/messages.inc.php:145
-msgid "The number of queries registered in the cache."
-msgstr "Počet príkazov registrovaných vo vyrovnávacej pamäti."
-
-#: libraries/messages.inc.php:146
-msgid "The total number of blocks in the query cache."
-msgstr "Celkové množstvo blokov vo vyrovnávacej pamäti príkazov."
-
-#: libraries/messages.inc.php:147
-msgctxt "$strShowStatusReset"
-msgid "Reset"
-msgstr "Vynulovať"
-
-#: libraries/messages.inc.php:148
-msgid "The status of failsafe replication (not yet implemented)."
-msgstr "Stav failsafe replikácie (zatiaľ neimplementované)."
-
-#: libraries/messages.inc.php:149
-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 ""
-"Počet spojení, ktoré nevyužívajú indexy. Ak sa táto hodnota nerovná 0, mali "
-"by ste starostlivo skontrolovať indexy vašich tabuliek."
-
-#: libraries/messages.inc.php:150
-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/messages.inc.php:151
-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 ""
-"Počet spojení bez kľúčov, ktoré kontrolovali použitie kľúča na každom riadku "
-"(ak táto hodnota nie je 0, mali by ste starostlivo skontrolovať indexy "
-"vašich tabuliek)."
-
-#: libraries/messages.inc.php:152
-msgid ""
-"The number of joins that used ranges on the first table. (It's normally not "
-"critical even if this is big.)"
-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/messages.inc.php:153
-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/messages.inc.php:154
-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/messages.inc.php:155
-msgid ""
-"Total (since startup) number of times the replication slave SQL thread has "
-"retried transactions."
-msgstr ""
-"Celkový počet (od spustenia) pokusov replikačného podriadeného SQL vlákna o "
-"znovuobnovenie transakcie."
-
-#: libraries/messages.inc.php:156
-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/messages.inc.php:157
-msgid ""
-"The number of threads that have taken more than slow_launch_time seconds to "
-"create."
-msgstr ""
-"Počet vlákien, ktorých vytvorenie zabralo viac ako je hodnota "
-"slow_launch_time."
-
-#: libraries/messages.inc.php:158
-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/messages.inc.php:159
-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 ""
-"Počet zlučovacích prechodov, ktoré musel vykonať zoraďovací algoritmus. Ak "
-"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/messages.inc.php:160
-msgid "The number of sorts that were done with ranges."
-msgstr "Počet rozsahom obmedzených zoraďovaní."
-
-#: libraries/messages.inc.php:161
-msgid "The number of sorted rows."
-msgstr "Počet zoradených riadkov."
-
-#: libraries/messages.inc.php:162
-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/messages.inc.php:163
-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/messages.inc.php:164
-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 "
-"should first optimize your queries, and then either split your table or "
-"tables or use replication."
-msgstr ""
-"Počet prípadov keď sa zámok tabuľky nedal získať okamžite a bolo nutné "
-"vyčkať. Ak je táto hodnota vysoká a máte problémy s výkonom, mali by ste "
-"najprv optimalizovať vaše príkazy a potom buď rozdeliť tabuľku/tabuľky alebo "
-"použiť replikáciu."
-
-#: libraries/messages.inc.php:165
-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 ""
-"Počet vlákien vo vyrovnávacej pamäti. Úspešnosť tejto vyrovnávacej pamäti sa "
-"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/messages.inc.php:166
-msgid "The number of currently open connections."
-msgstr "Počet momentálne otvorených spojení."
-
-#: libraries/messages.inc.php:167
-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 "
-"doesn't give a notable performance improvement if you have a good thread "
-"implementation.)"
-msgstr ""
-"Počet vlákien vytvorených na zaobchádzanie so spojeniami. Ak je hodnota "
-"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/messages.inc.php:168
-msgid "The number of threads that are not sleeping."
-msgstr "Počet aktívnych (nespiacich) vlákien."
-
#: libraries/mult_submits.inc.php:76 libraries/tbl_properties.inc.php:513
#: tbl_structure.php:29 tbl_structure.php:153 tbl_structure.php:157
#: tbl_structure.php:473
@@ -4386,8 +3534,8 @@ msgstr ""
#: libraries/replication_gui.lib.php:55 libraries/replication_gui.lib.php:56
#: libraries/replication_gui.lib.php:249 libraries/replication_gui.lib.php:252
-#: libraries/replication_gui.lib.php:259 server_privileges.php:672
-#: server_privileges.php:675 server_privileges.php:682
+#: libraries/replication_gui.lib.php:259 server_privileges.php:711
+#: server_privileges.php:714 server_privileges.php:721
#: server_synchronize.php:1171
msgid "User name"
msgstr "Meno používateľa"
@@ -4407,11 +3555,11 @@ msgid "Slave status"
msgstr "Zobraziť stav podriadených hostov"
#: libraries/replication_gui.lib.php:114 libraries/sql_query_form.lib.php:445
-#: server_status.php:626 server_variables.php:52
+#: server_status.php:737 server_variables.php:52
msgid "Variable"
msgstr "Premenná"
-#: libraries/replication_gui.lib.php:115 server_status.php:627
+#: libraries/replication_gui.lib.php:115 server_status.php:738
#: tbl_change.php:324 tbl_printview.php:370 tbl_select.php:139
#: tbl_structure.php:729
msgid "Value"
@@ -4431,34 +3579,34 @@ msgstr ""
msgid "Add slave replication user"
msgstr "Pridať replikačného užívateľa pre slave"
-#: libraries/replication_gui.lib.php:254 server_privileges.php:677
+#: libraries/replication_gui.lib.php:254 server_privileges.php:716
msgid "Any user"
msgstr "Akýkoľvek používateľ"
#: libraries/replication_gui.lib.php:255 libraries/replication_gui.lib.php:323
-#: libraries/replication_gui.lib.php:346 server_privileges.php:678
-#: server_privileges.php:745 server_privileges.php:769
-#: server_privileges.php:1889 server_privileges.php:1919
+#: libraries/replication_gui.lib.php:346 server_privileges.php:717
+#: server_privileges.php:784 server_privileges.php:808
+#: server_privileges.php:1928 server_privileges.php:1958
msgid "Use text field"
msgstr "Požiť textové pole"
-#: libraries/replication_gui.lib.php:302 server_privileges.php:725
+#: libraries/replication_gui.lib.php:302 server_privileges.php:764
msgid "Any host"
msgstr "Akýkoľvek hostiteľ"
-#: libraries/replication_gui.lib.php:306 server_privileges.php:729
+#: libraries/replication_gui.lib.php:306 server_privileges.php:768
msgid "Local"
msgstr "Lokálny"
-#: libraries/replication_gui.lib.php:312 server_privileges.php:734
+#: libraries/replication_gui.lib.php:312 server_privileges.php:773
msgid "This Host"
msgstr "Tento počítač"
-#: libraries/replication_gui.lib.php:318 server_privileges.php:740
+#: libraries/replication_gui.lib.php:318 server_privileges.php:779
msgid "Use Host Table"
msgstr "Použiť tabuľku s hostiteľmi"
-#: libraries/replication_gui.lib.php:331 server_privileges.php:753
+#: libraries/replication_gui.lib.php:331 server_privileges.php:792
msgid ""
"When Host table is used, this field is ignored and values stored in Host "
"table are used instead."
@@ -4466,8 +3614,25 @@ 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/select_lang.lib.php:480 libraries/select_lang.lib.php:486
-#: libraries/select_lang.lib.php:492
+#. l10n: Text direction, use either ltr or rtl
+#: libraries/select_lang.lib.php:491
+msgid "ltr"
+msgstr "ltr"
+
+#: libraries/select_lang.lib.php:493
+msgid "Content of table __TABLE__"
+msgstr "Obsah tabuľky __TABLE__"
+
+#: libraries/select_lang.lib.php:494
+msgid "(continued)"
+msgstr "(pokračovanie)"
+
+#: libraries/select_lang.lib.php:495
+msgid "Structure of table __TABLE__"
+msgstr "Štruktúra tabuľky __TABLE__"
+
+#: libraries/select_lang.lib.php:500 libraries/select_lang.lib.php:506
+#: libraries/select_lang.lib.php:512
#, php-format
msgid "Unknown language: %1$s."
msgstr "Neznámy jazyk: %1$s."
@@ -4478,7 +3643,7 @@ msgid "Servers"
msgstr "Servery"
#: libraries/server_links.inc.php:53 server_engines.php:112
-#: server_engines.php:116 server_status.php:304 test/theme.php:105
+#: server_engines.php:116 server_status.php:415 test/theme.php:105
msgid "Variables"
msgstr "Premenné"
@@ -4491,7 +3656,7 @@ msgid "Engines"
msgstr "Systémy"
#: libraries/server_links.inc.php:76 server_binlog.php:110
-#: server_status.php:253 test/theme.php:121
+#: server_status.php:364 test/theme.php:121
msgid "Binary log"
msgstr "Binárny log"
@@ -4946,8 +4111,8 @@ msgstr "Vynulovať"
msgid "Protocol version"
msgstr "Verzia protokolu"
-#: main.php:189 server_privileges.php:1350 server_privileges.php:1497
-#: server_privileges.php:1611 server_privileges.php:2029
+#: main.php:189 server_privileges.php:1389 server_privileges.php:1536
+#: server_privileges.php:1650 server_privileges.php:2068
#: server_processlist.php:54
msgid "User"
msgstr "Používateľ"
@@ -5332,7 +4497,7 @@ msgstr "Úspešne zrušených databáz: %s."
msgid "Databases statistics"
msgstr "Štatistiky databázy"
-#: server_databases.php:117 server_status.php:260
+#: server_databases.php:117 server_status.php:371
#: setup/lib/messages.inc.php:117
msgid "Tables"
msgstr "Tabuľky"
@@ -5352,6 +4517,18 @@ msgstr "Slave replikácia"
msgid "Jump to database"
msgstr "Prejsť do databázy"
+#: server_databases.php:267
+#, fuzzy
+#| msgid "Master replication"
+msgid "Not replicated"
+msgstr "Master replikácia"
+
+#: server_databases.php:273
+#, fuzzy
+#| msgid "Replication"
+msgid "Replicated"
+msgstr "Replikácia"
+
#: server_databases.php:289
#, php-format
msgid "Check privileges for database "%s"."
@@ -5385,144 +4562,335 @@ msgstr "Úložné Systémy"
msgid "View dump (schema) of databases"
msgstr "Export databáz"
-#: server_privileges.php:263 server_privileges.php:264
+#: server_privileges.php:24 server_privileges.php:266
+msgid "Includes all privileges except GRANT."
+msgstr "Všetky oprávnenia okrem GRANT."
+
+#: server_privileges.php:25 server_privileges.php:192
+#: server_privileges.php:515
+msgid "Allows altering the structure of existing tables."
+msgstr "Povolí meniť štruktúru existujúcich tabuliek."
+
+#: server_privileges.php:26 server_privileges.php:208
+#: server_privileges.php:521
+msgid "Allows altering and dropping stored routines."
+msgstr "Umožňuje upravovať a odstraňovať uložené procedúry."
+
+#: server_privileges.php:27 server_privileges.php:184
+#: server_privileges.php:514
+msgid "Allows creating new databases and tables."
+msgstr "Povolí vytváranie nových databáz a tabuliek."
+
+#: server_privileges.php:28 server_privileges.php:207
+#: server_privileges.php:520
+msgid "Allows creating stored routines."
+msgstr "Umožňuje vytvárať uložené procedúry."
+
+#: server_privileges.php:29 server_privileges.php:514
+msgid "Allows creating new tables."
+msgstr "Povolí vytváranie nových tabuliek."
+
+#: server_privileges.php:30 server_privileges.php:195
+#: server_privileges.php:518
+msgid "Allows creating temporary tables."
+msgstr "Povolí vytváranie dočasných tabuliek."
+
+#: server_privileges.php:31 server_privileges.php:209
+#: server_privileges.php:554
+msgid "Allows creating, dropping and renaming user accounts."
+msgstr "Umožňuje vytvárať, odstraňovať a premenovávať používateľské kontá."
+
+#: server_privileges.php:32 server_privileges.php:199
+#: server_privileges.php:203 server_privileges.php:526
+#: server_privileges.php:530
+msgid "Allows creating new views."
+msgstr "Umožňuje vytvárať nové pohľady."
+
+#: server_privileges.php:33 server_privileges.php:183
+#: server_privileges.php:506
+msgid "Allows deleting data."
+msgstr "Povolí mazanie dát."
+
+#: server_privileges.php:34 server_privileges.php:185
+#: server_privileges.php:517
+msgid "Allows dropping databases and tables."
+msgstr "Povolí odstraňovanie databáz a tabuliek."
+
+#: server_privileges.php:35 server_privileges.php:517
+msgid "Allows dropping tables."
+msgstr "Povolí odstraňovanie tabuliek."
+
+#: server_privileges.php:36 server_privileges.php:200
+#: server_privileges.php:534
+msgid "Allows to set up events for the event scheduler"
+msgstr ""
+
+#: server_privileges.php:37 server_privileges.php:210
+#: server_privileges.php:522
+msgid "Allows executing stored routines."
+msgstr "Umožňuje spúšťať uložené procedúry."
+
+#: server_privileges.php:38 server_privileges.php:189
+#: server_privileges.php:509
+msgid "Allows importing data from and exporting data into files."
+msgstr "Povolí importovanie a exportovanie dát zo/do súborov na serveri."
+
+#: server_privileges.php:39 server_privileges.php:540
+msgid ""
+"Allows adding users and privileges without reloading the privilege tables."
+msgstr "Povolí pridávanie uživatelov a práv bez znovunačítania tabuliek práv."
+
+#: server_privileges.php:40 server_privileges.php:191
+#: server_privileges.php:516
+msgid "Allows creating and dropping indexes."
+msgstr "Povolí vytváranie a mazanie indexov."
+
+#: server_privileges.php:41 server_privileges.php:181
+#: server_privileges.php:442 server_privileges.php:504
+msgid "Allows inserting and replacing data."
+msgstr "Povolí vkladanie a nahradzovanie dát."
+
+#: server_privileges.php:42 server_privileges.php:196
+#: server_privileges.php:549
+msgid "Allows locking tables for the current thread."
+msgstr "Povolí zmaknutie tabuliek pre aktuálne vlákno."
+
+#: server_privileges.php:43 server_privileges.php:646
+#: server_privileges.php:648
+msgid "Limits the number of new connections the user may open per hour."
+msgstr ""
+"Obmedzí počet nových spojení, ktoré môže používateľ vytvoriť za hodinu."
+
+#: server_privileges.php:44 server_privileges.php:634
+#: server_privileges.php:636
+msgid "Limits the number of queries the user may send to the server per hour."
+msgstr "Obmedzí počet dopytov, ktoré môže používateľ odoslať za hodinu."
+
+#: server_privileges.php:45 server_privileges.php:640
+#: server_privileges.php:642
+msgid ""
+"Limits the number of commands that change any table or database the user may "
+"execute per hour."
+msgstr ""
+"Obmedzí počet príkazov meniacich tabuľku alebo databázu, ktorá môže "
+"používateľ odoslať za hodinu."
+
+#: server_privileges.php:46 server_privileges.php:652
+#: server_privileges.php:654
+msgid "Limits the number of simultaneous connections the user may have."
+msgstr "Obmedzuje počet simultánnych pripojení používateľa."
+
+#: server_privileges.php:47 server_privileges.php:188
+#: server_privileges.php:544
+msgid "Allows viewing processes of all users"
+msgstr ""
+
+#: server_privileges.php:48 server_privileges.php:190
+#: server_privileges.php:448 server_privileges.php:550
+msgid "Has no effect in this MySQL version."
+msgstr "Nefunguje v tejto verzii MySQL."
+
+#: server_privileges.php:49 server_privileges.php:186
+#: server_privileges.php:545
+msgid "Allows reloading server settings and flushing the server's caches."
+msgstr ""
+"Povolí znovunačítanie nastavení a vyprázdňovanie vyrovnávacích pamätí "
+"serveru."
+
+#: server_privileges.php:50 server_privileges.php:198
+#: server_privileges.php:552
+msgid "Allows the user to ask where the slaves / masters are."
+msgstr "Povolí používateľovi zistiť kde je hlavný / pomocný server."
+
+#: server_privileges.php:51 server_privileges.php:197
+#: server_privileges.php:553
+msgid "Needed for the replication slaves."
+msgstr "Potrebné pre replikáciu pomocných serverov."
+
+#: server_privileges.php:52 server_privileges.php:180
+#: server_privileges.php:439 server_privileges.php:503
+msgid "Allows reading data."
+msgstr "Povolí čítanie dát."
+
+#: server_privileges.php:53 server_privileges.php:193
+#: server_privileges.php:547
+msgid "Gives access to the complete list of databases."
+msgstr "Povolí prístup ku kompletnému zoznamu databáz."
+
+#: server_privileges.php:54 server_privileges.php:204
+#: server_privileges.php:206 server_privileges.php:519
+msgid "Allows performing SHOW CREATE VIEW queries."
+msgstr "Umožňuje spúšťať príkazy so SHOW CREATE VIEW."
+
+#: server_privileges.php:55 server_privileges.php:187
+#: server_privileges.php:546
+msgid "Allows shutting down the server."
+msgstr "Povolí vypnutie serveru."
+
+#: server_privileges.php:56 server_privileges.php:194
+#: server_privileges.php:543
+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 ""
+"Povolí spojenie aj v prípade, že bol dosiahnutý maximálny počet spojení. "
+"Potrebné pre väčšinu operácií pri správe serveru ako nastavovanie globálny "
+"premenných alebo zabíjanie procesov iných používateľov."
+
+#: server_privileges.php:57 server_privileges.php:201
+#: server_privileges.php:535
+#, fuzzy
+msgid "Allows creating and dropping triggers"
+msgstr "Povolí vytváranie a mazanie indexov."
+
+#: server_privileges.php:58 server_privileges.php:182
+#: server_privileges.php:445 server_privileges.php:505
+msgid "Allows changing data."
+msgstr "Povolí menenie dát."
+
+#: server_privileges.php:59 server_privileges.php:260
+msgid "No privileges."
+msgstr "Žiadne práva."
+
+#: server_privileges.php:302 server_privileges.php:303
#, fuzzy
#| msgid "None"
msgctxt "None privileges"
msgid "None"
msgstr "Žiadny"
-#: server_privileges.php:392 server_privileges.php:527
-#: server_privileges.php:1679 server_privileges.php:1685
+#: server_privileges.php:431 server_privileges.php:566
+#: server_privileges.php:1718 server_privileges.php:1724
msgid "Table-specific privileges"
msgstr "Oprávnenia pre jednotlivé tabuľky"
-#: server_privileges.php:393 server_privileges.php:535
-#: server_privileges.php:1501
+#: server_privileges.php:432 server_privileges.php:574
+#: server_privileges.php:1540
msgid " Note: MySQL privilege names are expressed in English "
msgstr " Poznámka: názvy MySQL oprávnení sú uvádzané v angličtine. "
-#: server_privileges.php:524 server_privileges.php:1500
+#: server_privileges.php:563 server_privileges.php:1539
msgid "Global privileges"
msgstr "Globálne práva"
-#: server_privileges.php:526 server_privileges.php:1679
+#: server_privileges.php:565 server_privileges.php:1718
msgid "Database-specific privileges"
msgstr "Oprávnenia pre jednotlivé databázy"
-#: server_privileges.php:571
+#: server_privileges.php:610
msgid "Administration"
msgstr "Administrácia"
-#: server_privileges.php:591
+#: server_privileges.php:630
msgid "Resource limits"
msgstr "Obmedzenie zdrojov"
-#: server_privileges.php:592
+#: server_privileges.php:631
msgid "Note: Setting these options to 0 (zero) removes the limit."
msgstr ""
"Poznámka: Nastavenie týchto parametrov na 0 (nulu) odstráni obmedzenia."
-#: server_privileges.php:669
+#: server_privileges.php:708
msgid "Login Information"
msgstr "Prihlásenie"
-#: server_privileges.php:763
+#: server_privileges.php:802
msgid "Do not change the password"
msgstr "Nezmeniť heslo"
-#: server_privileges.php:804 server_privileges.php:2166
+#: server_privileges.php:843 server_privileges.php:2205
#, fuzzy
#| msgid "No user(s) found."
msgid "No user found."
msgstr "Nebol nájdený žiadny používateľ."
-#: server_privileges.php:848
+#: server_privileges.php:887
#, php-format
msgid "The user %s already exists!"
msgstr "Používateľ %s už existuje!"
-#: server_privileges.php:931
+#: server_privileges.php:970
msgid "You have added a new user."
msgstr "Používateľ bol pridaný."
-#: server_privileges.php:1152
+#: server_privileges.php:1191
#, php-format
msgid "You have updated the privileges for %s."
msgstr "Boli aktualizované oprávnenia pre %s."
-#: server_privileges.php:1176
+#: server_privileges.php:1215
#, php-format
msgid "You have revoked the privileges for %s"
msgstr "Boli zrušené oprávnenia pre %s"
-#: server_privileges.php:1212
+#: server_privileges.php:1251
#, php-format
msgid "The password for %s was changed successfully."
msgstr "Heslo pre %s bolo úspešne zmenené."
-#: server_privileges.php:1232
+#: server_privileges.php:1271
#, php-format
msgid "Deleting %s"
msgstr "Odstraňuje sa %s"
-#: server_privileges.php:1243
+#: server_privileges.php:1282
msgid "No users selected for deleting!"
msgstr "Na odstránenie neboli vybraní žiadni používatelia!"
-#: server_privileges.php:1246
+#: server_privileges.php:1285
msgid "Reloading the privileges"
msgstr "Znovunačítanie práv"
-#: server_privileges.php:1261
+#: server_privileges.php:1300
msgid "The selected users have been deleted successfully."
msgstr "Vybraní používatelia bol úspešne odstránený."
-#: server_privileges.php:1296
+#: server_privileges.php:1335
msgid "The privileges were reloaded successfully."
msgstr "Práva boli úspešne znovunačítané."
-#: server_privileges.php:1324 server_privileges.php:1610
+#: server_privileges.php:1363 server_privileges.php:1649
msgid "Edit Privileges"
msgstr "Upraviť oprávnenia"
-#: server_privileges.php:1333
+#: server_privileges.php:1372
msgid "Revoke"
msgstr "Zrušiť"
-#: server_privileges.php:1365
+#: server_privileges.php:1404
msgid "User overview"
msgstr "Prehľad používatelov"
-#: server_privileges.php:1502 server_privileges.php:1684
-#: server_privileges.php:2033
+#: server_privileges.php:1541 server_privileges.php:1723
+#: server_privileges.php:2072
msgid "Grant"
msgstr "Prideliť"
-#: server_privileges.php:1521 server_privileges.php:2123
+#: server_privileges.php:1560 server_privileges.php:2162
msgid "Any"
msgstr "Akýkoľvek"
-#: server_privileges.php:1570 server_privileges.php:1594
-#: server_privileges.php:1988 server_privileges.php:2177
+#: server_privileges.php:1609 server_privileges.php:1633
+#: server_privileges.php:2027 server_privileges.php:2216
msgid "Add a new User"
msgstr "Pridať nového používateľa"
-#: server_privileges.php:1575
+#: server_privileges.php:1614
msgid "Remove selected users"
msgstr "Odstrániť vybraných používateľov"
-#: server_privileges.php:1578
+#: server_privileges.php:1617
msgid "Revoke all active privileges from the users and delete them afterwards."
msgstr ""
"Odobranie všetkých aktívnych práv používateľom a ich následné odstránenie."
-#: server_privileges.php:1579 server_privileges.php:1580
-#: server_privileges.php:1581
+#: server_privileges.php:1618 server_privileges.php:1619
+#: server_privileges.php:1620
msgid "Drop the databases that have the same names as the users."
msgstr "Odstrániť databázy s rovnakým menom ako majú používatelia."
-#: server_privileges.php:1597
+#: server_privileges.php:1636
#, php-format
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
@@ -5535,51 +4903,51 @@ msgstr ""
"tieto tabuľky ručne upravené. V tomto prípade sa odporúča vykonať %"
"sznovunačítanie práv%s predtým ako budete pokračovať."
-#: server_privileges.php:1645
+#: server_privileges.php:1684
msgid "The selected user was not found in the privilege table."
msgstr "Zvolený používateľ nebol nájdený v tabuľke práv."
-#: server_privileges.php:1685
+#: server_privileges.php:1724
msgid "Column-specific privileges"
msgstr "Oprávnenia pre jednotlivé stĺpce"
-#: server_privileges.php:1886
+#: server_privileges.php:1925
msgid "Add privileges on the following database"
msgstr "Pridať oprávnenia pre nasledujúcu databázu"
-#: server_privileges.php:1904
+#: server_privileges.php:1943
msgid "Wildcards % and _ should be escaped with a \\ to use them literally"
msgstr ""
"Náhradzujúcim znakom _ a % by mal predchádzať znak \\, pokiaľ ich nechcete "
"použiť doslovne"
-#: server_privileges.php:1907
+#: server_privileges.php:1946
msgid "Add privileges on the following table"
msgstr "Pridať oprávnenia pre nasledujúcu tabuľku"
-#: server_privileges.php:1964
+#: server_privileges.php:2003
msgid "Change Login Information / Copy User"
msgstr "Zmeniť informácie o používateľovi / Kopírovať používateľa"
-#: server_privileges.php:1967
+#: server_privileges.php:2006
msgid "Create a new user with the same privileges and ..."
msgstr "Vytvoriť používateľa s rovnakými právami a..."
-#: server_privileges.php:1969
+#: server_privileges.php:2008
msgid "... keep the old one."
msgstr "... zachovať pôvodného používateľa."
-#: server_privileges.php:1970
+#: server_privileges.php:2009
msgid " ... delete the old one from the user tables."
msgstr " ... zmazať pôvodného používateľa z tabuliek používateľov."
-#: server_privileges.php:1971
+#: server_privileges.php:2010
msgid ""
" ... revoke all active privileges from the old one and delete it afterwards."
msgstr ""
" ... odobrať všetky oprávnenia pôvodnému používateľovi a následne ho zmazať."
-#: server_privileges.php:1972
+#: server_privileges.php:2011
msgid ""
" ... delete the old one from the user tables and reload the privileges "
"afterwards."
@@ -5587,44 +4955,44 @@ msgstr ""
" ... zmazať pôvodného používateľa z tabuliek používateľov a potom "
"znovunačítať oprávnenia."
-#: server_privileges.php:1994
+#: server_privileges.php:2033
msgid "Database for user"
msgstr "Databáza pre používateľa"
-#: server_privileges.php:1998
+#: server_privileges.php:2037
#, fuzzy
#| msgid "None"
msgctxt "Create none database for user"
msgid "None"
msgstr "Žiadny"
-#: server_privileges.php:1999
+#: server_privileges.php:2038
msgid "Create database with same name and grant all privileges"
msgstr "Vytvoriť databázu s rovnakým menom a prideliť všetky oprávnenia"
-#: server_privileges.php:2000
+#: server_privileges.php:2039
msgid "Grant all privileges on wildcard name (username\\_%)"
msgstr "Prideliť všetky oprávnenia pomocou masky (používateľ_%)"
-#: server_privileges.php:2003
+#: server_privileges.php:2042
#, php-format
msgid "Grant all privileges on database "%s""
msgstr "Prideliť všetky oprávnenia na databázu "%s""
-#: server_privileges.php:2026
+#: server_privileges.php:2065
#, php-format
msgid "Users having access to "%s""
msgstr "Používatelia majúci prístup k "%s""
-#: server_privileges.php:2134
+#: server_privileges.php:2173
msgid "global"
msgstr "globálny"
-#: server_privileges.php:2136
+#: server_privileges.php:2175
msgid "database-specific"
msgstr "závislé na databáze"
-#: server_privileges.php:2138
+#: server_privileges.php:2177
msgid "wildcard"
msgstr "nahradzujúci znak"
@@ -5670,7 +5038,7 @@ msgstr "Master server zmenený úspešne na %s"
msgid "This server is configured as master in a replication process."
msgstr "Tento server je nakonfigurovaný ako master v replikačnom procese."
-#: server_replication.php:184 server_status.php:281
+#: server_replication.php:184 server_status.php:392
msgid "Show master status"
msgstr "Zobraziť stav master replikácie"
@@ -5815,83 +5183,727 @@ msgstr ""
"Tento server nie je nakonfigurovaný ako slave v replikačnom procese. Chceli "
"by ste ho nakonfigurovať?"
+#: server_status.php:40
+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 ""
+"Počet transakcií, ktoré využili dočasnú vyrovnávaciu pamäť binárneho logu, "
+"ale zároveň prekročili hodnotu binlog_cache_size a museli tak použiť dočasný "
+"súbor na uloženie príkazov transakcie."
+
+#: server_status.php:41
+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."
+
+#: server_status.php:42
+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 "
+"to increase the tmp_table_size value to cause temporary tables to be memory-"
+"based instead of disk-based."
+msgstr ""
+"Počet dočasných tabuliek automaticky vytvorených servrom pri vykonávaní "
+"príkazov. Ak je hodnota Created_tmp_disk_tables príliš vysoká, môžte zvýšiť "
+"hodnotu tmp_table_size, aby boli dočasné tabuľky ukladané do pamäte a nie na "
+"disk."
+
+#: server_status.php:43
+msgid "How many temporary files mysqld has created."
+msgstr "Počet dočasných súborov vytvorených servrom mysqld."
+
+#: server_status.php:44
+msgid ""
+"The number of in-memory temporary tables created automatically by the server "
+"while executing statements."
+msgstr ""
+"Počet dočasných, v pamäti uložených tabuliek, vytvorených servrom pri "
+"vykonávaní príkazov."
+
+#: server_status.php:45
+msgid ""
+"The number of rows written with INSERT DELAYED for which some error occurred "
+"(probably duplicate key)."
+msgstr ""
+"Počet riadkov pridaných príkazom INSERT DELAYED, pri ktorých sa vyskytla "
+"chyba (pravdepodobne opakujúci sa kľúč)."
+
#: server_status.php:46
+msgid ""
+"The number of INSERT DELAYED handler threads in use. Every different table "
+"on which one uses INSERT DELAYED gets its own thread."
+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."
+
+#: server_status.php:47
+msgid "The number of INSERT DELAYED rows written."
+msgstr "Počet riadkov vložených príkazom INSERT DELAYED."
+
+#: server_status.php:48
+msgid "The number of executed FLUSH statements."
+msgstr "Počet vykonaných príkazov FLUSH."
+
+#: server_status.php:49
+msgid "The number of internal COMMIT statements."
+msgstr "Počet interných príkazov COMMIT."
+
+#: server_status.php:50
+msgid "The number of times a row was deleted from a table."
+msgstr "Koľkokrát bol z tabuľky odstránený riadok."
+
+#: server_status.php:51
+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 ""
+"MySQL server môže zaslať požiadavku NDB Clustru, či nevie o existencii "
+"tabuľky s daným menom. Tento proces sa nazýva objavovanie. Handler_discover "
+"zobrazuje počet doposiaľ objavených tabuliek."
+
+#: server_status.php:52
+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 ""
+"Počet prečítaní prvej položky indexu. Ak je táto hodnota príliš vysoká, "
+"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ý."
+
+#: server_status.php:53
+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 ""
+"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é."
+
+#: server_status.php:54
+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 ""
+"Počet požiadavkov na načítanie nasledujúceho riadku v poradí podľa kľúča. "
+"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."
+
+#: server_status.php:55
+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 ""
+"Počet požiadavkov na načítanie predchádzajúceho riadku podľa kľúča. Táto "
+"čítacia metóda sa použiva hlavne na optimalizáciu príkazov typu ORDER BY ... "
+"DESC."
+
+#: server_status.php:56
+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 "
+"probably have a lot of queries that require MySQL to scan whole tables or "
+"you have joins that don't use keys properly."
+msgstr ""
+"Počet požiadavkov na načítanie riadku na základe určitej pozície. Táto "
+"hodnota je vysoká, ak sa vykonáva veľa príkazov, ktoré si vyžadujú zoradenie "
+"výsledku. Pravdepodobne sa použiva veľa príkazov, kvôli ktorým musí MySQL "
+"kompletne prehľadávať tabuľky, alebo sa používajú zjednotenia, ktoré správne "
+"nevyužívajú kľúče."
+
+#: server_status.php:57
+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 "
+"tables are not properly indexed or that your queries are not written to take "
+"advantage of the indexes you have."
+msgstr ""
+"Počet požiadavkov na načítanie nasledujúceho riadku. Táto hodnota je vysoká, "
+"ak sa vykonáva veľa kompletných prehľadávaní tabuliek. Znamená to že buď "
+"tabuľky nie sú správne indexované alebo príkazy nedostatočne využívajú "
+"dostupné indexy."
+
+#: server_status.php:58
+msgid "The number of internal ROLLBACK statements."
+msgstr "Počet interných príkazov ROLLBACK."
+
+#: server_status.php:59
+msgid "The number of requests to update a row in a table."
+msgstr "Počet požiadavkov na zmenu záznamu (riadku) v tabuľke."
+
+#: server_status.php:60
+msgid "The number of requests to insert a row in a table."
+msgstr "Počet požiadavkov na vloženie nového záznamu (riadku) do tabuľky."
+
+#: server_status.php:61
+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)."
+
+#: server_status.php:62
+msgid "The number of pages currently dirty."
+msgstr "Počet nečistých stránok."
+
+#: server_status.php:63
+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."
+
+#: server_status.php:64
+msgid "The number of free pages."
+msgstr "Počet voľných stránok."
+
+#: server_status.php:65
+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 ""
+"Počet uzamknutých stránok v InnoDB vyrovnávacej pamäti. Z týchto stránok sa "
+"momentálne číta alebo zapisuje, prípadne nemôžu byť vyprázdnené ani "
+"odstránené z nejakého iného dôvodu."
+
+#: server_status.php:66
+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 "
+"be calculated as Innodb_buffer_pool_pages_total - "
+"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data."
+msgstr ""
+"Počet momentálne neprístupných stránok z dôvodu účasti na administratívnych "
+"účeloch ako napr. uzamkýnanie riadkov alebo adaptívny hash index. Táto "
+"hodnota sa tiež môže vypočítať ako Innodb_buffer_pool_pages_total - "
+"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data."
+
+#: server_status.php:67
+msgid "Total size of buffer pool, in pages."
+msgstr "Celkový počet stránok vo vyrovnávacej pamäti InnoDB."
+
+#: server_status.php:68
+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 ""
+"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í."
+
+#: server_status.php:69
+msgid ""
+"The number of sequential read-aheads InnoDB initiated. This happens when "
+"InnoDB does a sequential full table scan."
+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."
+
+#: server_status.php:70
+msgid "The number of logical read requests InnoDB has done."
+msgstr "Počet požiadavkov na logické načítavanie."
+
+#: server_status.php:71
+msgid ""
+"The number of logical reads that InnoDB could not satisfy from buffer pool "
+"and had to do a single-page read."
+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."
+
+#: server_status.php:72
+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 "
+"available, it's necessary to wait for pages to be flushed first. This "
+"counter counts instances of these waits. If the buffer pool size was set "
+"properly, this value should be small."
+msgstr ""
+"Normálne sa zápis do vyrovnávacej pamäte InnoDB vykonáva v pozadí. Ak však "
+"nie sú pri požiadavke na načítanie alebo vytvorenie stránky dostupné žiadne "
+"čisté stránky, je potrebné počkať na ich vyčistenie. Táto hodnota zobrazuje "
+"počet týchto čakaní a ak bola správne nastavená veľkosť vyrovnávacej pamäte, "
+"mala by byť nízka."
+
+#: server_status.php:73
+msgid "The number writes done to the InnoDB buffer pool."
+msgstr "Počet zápisov do vyrovnávacej pamäte InnoDB."
+
+#: server_status.php:74
+msgid "The number of fsync() operations so far."
+msgstr "Počet vykonaných fsync() operácií."
+
+#: server_status.php:75
+msgid "The current number of pending fsync() operations."
+msgstr "Aktuálny počet prebiehajúcich fsync() operácií."
+
+#: server_status.php:76
+msgid "The current number of pending reads."
+msgstr "Počet aktuálne prebiehajúcich načítavaní."
+
+#: server_status.php:77
+msgid "The current number of pending writes."
+msgstr "Počet aktuálne prebiehajúcich zápisov."
+
+#: server_status.php:78
+msgid "The amount of data read so far, in bytes."
+msgstr "Množstvo už načítaných dát, v bajtoch."
+
+#: server_status.php:79
+msgid "The total number of data reads."
+msgstr "Celkový počet načítaní dát."
+
+#: server_status.php:80
+msgid "The total number of data writes."
+msgstr "Celkový počet zápisov dát."
+
+#: server_status.php:81
+msgid "The amount of data written so far, in bytes."
+msgstr "Množstvo už zapísaných dát, v bajtoch."
+
+#: server_status.php:82
+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."
+
+#: server_status.php:83
+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."
+
+#: server_status.php:84
+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."
+
+#: server_status.php:85
+msgid "The number of log write requests."
+msgstr "Počet požiadaviek na zápis do logovacieho súboru."
+
+#: server_status.php:86
+msgid "The number of physical writes to the log file."
+msgstr "Počet fyzických zápisov do logovacieho súboru."
+
+#: server_status.php:87
+msgid "The number of fsync() writes done to the log file."
+msgstr "Počet fsync zápisov vykonaných na logovacom súbore."
+
+#: server_status.php:88
+msgid "The number of pending log file fsyncs."
+msgstr "Počet prebiehajúcich synchronizácií logovacieho súboru."
+
+#: server_status.php:89
+msgid "Pending log file writes."
+msgstr "Počet prebiehajúcich zápisov do logovacieho súboru."
+
+#: server_status.php:90
+msgid "The number of bytes written to the log file."
+msgstr "Množstvo bajtov zapísaných do logovacieho súboru."
+
+#: server_status.php:91
+msgid "The number of pages created."
+msgstr "Počet vytvorených stránok."
+
+#: server_status.php:92
+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 ""
+"Veľkosť nakompilovanej InnoDB stránky (prednastavených je 16KB). Viacero "
+"hodnôt sa udáva v stránkach; pomocou veľkosti stránky je možné ich premeniť "
+"na bajty."
+
+#: server_status.php:93
+msgid "The number of pages read."
+msgstr "Počet načítaných stránok."
+
+#: server_status.php:94
+msgid "The number of pages written."
+msgstr "Počet zapísaných stránok."
+
+#: server_status.php:95
+msgid "The number of row locks currently being waited for."
+msgstr "Počet zámkov na riadky, na ktoré sa čaká."
+
+#: server_status.php:96
+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."
+
+#: server_status.php:97
+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."
+
+#: server_status.php:98
+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."
+
+#: server_status.php:99
+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."
+
+#: server_status.php:100
+msgid "The number of rows deleted from InnoDB tables."
+msgstr "Počet záznamov (riadkov) odstránených z InnoDB tabuliek."
+
+#: server_status.php:101
+msgid "The number of rows inserted in InnoDB tables."
+msgstr "Počet záznamov (riadkov) vložených do InnoDB tabuliek."
+
+#: server_status.php:102
+msgid "The number of rows read from InnoDB tables."
+msgstr "Počet načítaných záznamov (riadkov) z InnoDB tabuliek."
+
+#: server_status.php:103
+msgid "The number of rows updated in InnoDB tables."
+msgstr "Počet upravených záznamov (riadkov) v InnoDB tabuľkách."
+
+#: server_status.php:104
+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 ""
+"Počet zmenených kľúčových blokov vo vyrovnávacej pamäti kľúčov, ktoré ešte "
+"neboli zapísané na disk. Predtým sa táto hodnota nazývala "
+"Not_flushed_key_blocks."
+
+#: server_status.php:105
+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 ""
+"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."
+
+#: server_status.php:106
+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 ""
+"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é."
+
+#: server_status.php:107
+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."
+
+#: server_status.php:108
+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 ""
+"Počet načítaní kľúčového bloku priamo z disku. Ak je táto hodnota príliš "
+"veľká, väčšinou to znamená, že veľkosť vyrovnávacej pamäti (key_buffer_size) "
+"je príliš malá. Úspešnosť vyrovnávacej pamäte si môžte vypočítať zo vzťahu "
+"Key_reads/Key_read_requests."
+
+#: server_status.php:109
+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."
+
+#: server_status.php:110
+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."
+
+#: server_status.php:111
+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 ""
+"Celkové náklady na posledný kompilovaný príkaz, vypočítané optimizérom "
+"príkazov. Užitočné na porovnávanie nákladov na rôzne príkazy pre tú istú "
+"požiadavku. Prednastavená hodnota 0 znamená, že doposiaľ neboli skompilované "
+"žiadne príkazy."
+
+#: server_status.php:112
+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."
+
+#: server_status.php:113
+msgid ""
+"The number of tables that have been opened. If opened tables is big, your "
+"table cache value is probably too small."
+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á."
+
+#: server_status.php:114
+msgid "The number of files that are open."
+msgstr "Počet otvorených súborov."
+
+#: server_status.php:115
+msgid "The number of streams that are open (used mainly for logging)."
+msgstr "Počet otvorených streamov (väčšinou využívané na logovanie)."
+
+#: server_status.php:116
+msgid "The number of tables that are open."
+msgstr "Počet práve otvorených tabuliek."
+
+#: server_status.php:117
+msgid "The number of free memory blocks in query cache."
+msgstr "Množstvo voľných pamäťových blokov vo vyrovnávacej pamäti príkazov."
+
+#: server_status.php:118
+msgid "The amount of free memory for query cache."
+msgstr "Veľkosť voľnej pamäti pre vyrovnávaciu pamäť príkazov."
+
+#: server_status.php:119
+msgid "The number of cache hits."
+msgstr "Počet zásahov vyrovnávacej pamäti."
+
+#: server_status.php:120
+msgid "The number of queries added to the cache."
+msgstr "Počet príkazov pridaných do vyrovnávacej pamäti."
+
+#: server_status.php:121
+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 "
+"cache size. The query cache uses a least recently used (LRU) strategy to "
+"decide which queries to remove from the cache."
+msgstr ""
+"Počet príkazov, ktoré boli odstránené z vyrovnácej pamäti na uvoľnenie "
+"pamäti pre nové príkazy. Táto hodnota vám môže pomôcť pri upravovaní "
+"veľkosti vyrovnávacej pamäti príkazov. Na výber príkazov na odstránenie z "
+"vyrovnávacej pamäti sa používa stratégia LRU (tzn. najdlhšie nepoužité "
+"príkazy budú odstránené ako prvé)."
+
+#: server_status.php:122
+msgid ""
+"The number of non-cached queries (not cachable, or not cached due to the "
+"query_cache_type setting)."
+msgstr ""
+"Počet príkazov neumiestnených do vyrovnávacej pamäti (nie sú cachovateľné "
+"alebo nevyhovujú nastaveniu query_cache_type)."
+
+#: server_status.php:123
+msgid "The number of queries registered in the cache."
+msgstr "Počet príkazov registrovaných vo vyrovnávacej pamäti."
+
+#: server_status.php:124
+msgid "The total number of blocks in the query cache."
+msgstr "Celkové množstvo blokov vo vyrovnávacej pamäti príkazov."
+
+#: server_status.php:125
+msgctxt "$strShowStatusReset"
+msgid "Reset"
+msgstr "Vynulovať"
+
+#: server_status.php:126
+msgid "The status of failsafe replication (not yet implemented)."
+msgstr "Stav failsafe replikácie (zatiaľ neimplementované)."
+
+#: server_status.php:127
+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 ""
+"Počet spojení, ktoré nevyužívajú indexy. Ak sa táto hodnota nerovná 0, mali "
+"by ste starostlivo skontrolovať indexy vašich tabuliek."
+
+#: server_status.php:128
+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."
+
+#: server_status.php:129
+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 ""
+"Počet spojení bez kľúčov, ktoré kontrolovali použitie kľúča na každom riadku "
+"(ak táto hodnota nie je 0, mali by ste starostlivo skontrolovať indexy "
+"vašich tabuliek)."
+
+#: server_status.php:130
+msgid ""
+"The number of joins that used ranges on the first table. (It's normally not "
+"critical even if this is big.)"
+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á)."
+
+#: server_status.php:131
+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."
+
+#: server_status.php:132
+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."
+
+#: server_status.php:133
+msgid ""
+"Total (since startup) number of times the replication slave SQL thread has "
+"retried transactions."
+msgstr ""
+"Celkový počet (od spustenia) pokusov replikačného podriadeného SQL vlákna o "
+"znovuobnovenie transakcie."
+
+#: server_status.php:134
+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."
+
+#: server_status.php:135
+msgid ""
+"The number of threads that have taken more than slow_launch_time seconds to "
+"create."
+msgstr ""
+"Počet vlákien, ktorých vytvorenie zabralo viac ako je hodnota "
+"slow_launch_time."
+
+#: server_status.php:136
+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."
+
+#: server_status.php:137
+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 ""
+"Počet zlučovacích prechodov, ktoré musel vykonať zoraďovací algoritmus. Ak "
+"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."
+
+#: server_status.php:138
+msgid "The number of sorts that were done with ranges."
+msgstr "Počet rozsahom obmedzených zoraďovaní."
+
+#: server_status.php:139
+msgid "The number of sorted rows."
+msgstr "Počet zoradených riadkov."
+
+#: server_status.php:140
+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."
+
+#: server_status.php:141
+msgid "The number of times that a table lock was acquired immediately."
+msgstr "Počet zámkov tabuliek, ktoré boli získané okamžite."
+
+#: server_status.php:142
+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 "
+"should first optimize your queries, and then either split your table or "
+"tables or use replication."
+msgstr ""
+"Počet prípadov keď sa zámok tabuľky nedal získať okamžite a bolo nutné "
+"vyčkať. Ak je táto hodnota vysoká a máte problémy s výkonom, mali by ste "
+"najprv optimalizovať vaše príkazy a potom buď rozdeliť tabuľku/tabuľky alebo "
+"použiť replikáciu."
+
+#: server_status.php:143
+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 ""
+"Počet vlákien vo vyrovnávacej pamäti. Úspešnosť tejto vyrovnávacej pamäti sa "
+"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."
+
+#: server_status.php:144
+msgid "The number of currently open connections."
+msgstr "Počet momentálne otvorených spojení."
+
+#: server_status.php:145
+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 "
+"doesn't give a notable performance improvement if you have a good thread "
+"implementation.)"
+msgstr ""
+"Počet vlákien vytvorených na zaobchádzanie so spojeniami. Ak je hodnota "
+"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é)."
+
+#: server_status.php:146
+msgid "The number of threads that are not sleeping."
+msgstr "Počet aktívnych (nespiacich) vlákien."
+
+#: server_status.php:157
msgid "Runtime Information"
msgstr "Stav serveru"
-#: server_status.php:250
+#: server_status.php:361
msgid "Handler"
msgstr "Manipulačná Rutina"
-#: server_status.php:251
+#: server_status.php:362
msgid "Query cache"
msgstr "Vyrovnávacia pamäť príkazov"
-#: server_status.php:252
+#: server_status.php:363
msgid "Threads"
msgstr "Počet vlákien"
-#: server_status.php:254
+#: server_status.php:365
msgid "Temporary data"
msgstr "Dočasné dáta"
-#: server_status.php:255
+#: server_status.php:366
msgid "Delayed inserts"
msgstr "Odložené vloženia"
-#: server_status.php:256
+#: server_status.php:367
msgid "Key cache"
msgstr "Vyrovnávacia pamäť kľúčov"
-#: server_status.php:257
+#: server_status.php:368
msgid "Joins"
msgstr "Zjednotenia"
-#: server_status.php:259
+#: server_status.php:370
msgid "Sorting"
msgstr "Zoraďovanie"
-#: server_status.php:261
+#: server_status.php:372
msgid "Transaction coordinator"
msgstr "Koordinátor transakcií"
-#: server_status.php:271
+#: server_status.php:382
msgid "Flush (close) all tables"
msgstr "Vyprázdniť (uzavrieť) všetky tabuľky"
-#: server_status.php:273
+#: server_status.php:384
msgid "Show open tables"
msgstr "Zobraziť otvorené tabuľky"
-#: server_status.php:278
+#: server_status.php:389
msgid "Show slave hosts"
msgstr "Zobraziť podriadené hosty"
-#: server_status.php:284
+#: server_status.php:395
msgid "Show slave status"
msgstr "Zobraziť stav podriadených hostov"
-#: server_status.php:289
+#: server_status.php:400
msgid "Flush query cache"
msgstr "Vyprázdniť vyrovnávaciu pamäť príkazov"
-#: server_status.php:294
+#: server_status.php:405
msgid "Show processes"
msgstr "Zobraziť procesy"
-#: server_status.php:344
+#: server_status.php:455
#, fuzzy
#| msgid "Reset"
msgctxt "for Show status"
msgid "Reset"
msgstr "Vynulovať"
-#: server_status.php:350
+#: server_status.php:461
#, php-format
msgid "This MySQL server has been running for %s. It started up on %s."
msgstr "Tento server beží %s. Bol spustený %s."
-#: server_status.php:360
+#: server_status.php:471
#, fuzzy
#| msgid "This server is configured as master in a replication process."
msgid ""
@@ -5899,19 +5911,19 @@ msgid ""
"b> process."
msgstr "Tento server je nakonfigurovaný ako master v replikačnom procese."
-#: server_status.php:362
+#: server_status.php:473
#, fuzzy
#| msgid "This server is configured as master in a replication process."
msgid "This MySQL server works as master in replication process."
msgstr "Tento server je nakonfigurovaný ako master v replikačnom procese."
-#: server_status.php:364
+#: server_status.php:475
#, fuzzy
#| msgid "This server is configured as master in a replication process."
msgid "This MySQL server works as slave in replication process."
msgstr "Tento server je nakonfigurovaný ako master v replikačnom procese."
-#: server_status.php:366
+#: server_status.php:477
#, fuzzy
#| msgid ""
#| "This MySQL server works as %s in replication process. For further "
@@ -5925,7 +5937,7 @@ msgstr ""
"informácií o stave replikácie na tomto serveri navštívte prosím sekciu replikácie."
-#: server_status.php:383
+#: server_status.php:494
msgid ""
"Server traffic: These tables show the network traffic statistics of "
"this MySQL server since its startup."
@@ -5933,11 +5945,11 @@ msgstr ""
"Traffic serveru: Tieto tabuľky zobrazujú štatistiky sieťového "
"trafficu na tomto MySQL serveri od jeho štartu."
-#: server_status.php:388
+#: server_status.php:499
msgid "Traffic"
msgstr "Prevádzka"
-#: server_status.php:388
+#: server_status.php:499
msgid ""
"On a busy server, the byte counters may overrun, so those statistics as "
"reported by the MySQL server may be incorrect."
@@ -5945,36 +5957,36 @@ msgstr ""
"Na vyťaženom serveri môže dôjsť k pretečeniu počítadiel, takže štatistiky "
"servera môžu byť nepresné."
-#: server_status.php:389 server_status.php:434 server_status.php:497
-#: server_status.php:555
+#: server_status.php:500 server_status.php:545 server_status.php:608
+#: server_status.php:666
msgid "per hour"
msgstr "za hodinu"
-#: server_status.php:394
+#: server_status.php:505
msgid "Received"
msgstr "Prijaté"
-#: server_status.php:404
+#: server_status.php:515
msgid "Sent"
msgstr "Odoslané"
-#: server_status.php:433
+#: server_status.php:544
msgid "Connections"
msgstr "Spojenia"
-#: server_status.php:440
+#: server_status.php:551
msgid "max. concurrent connections"
msgstr "max. súčasných pripojení"
-#: server_status.php:447
+#: server_status.php:558
msgid "Failed attempts"
msgstr "Nepodarených pokusov"
-#: server_status.php:461
+#: server_status.php:572
msgid "Aborted"
msgstr "Prerušené"
-#: server_status.php:490
+#: server_status.php:601
#, php-format
msgid ""
"Query statistics: Since its startup, %s queries have been sent to the "
@@ -5983,19 +5995,19 @@ msgstr ""
"Query statistics: Since its startup, %s queries have been sent to the "
"server."
-#: server_status.php:498
+#: server_status.php:609
msgid "per minute"
msgstr "za minútu"
-#: server_status.php:499
+#: server_status.php:610
msgid "per second"
msgstr "za sekundu"
-#: server_status.php:554
+#: server_status.php:665
msgid "Query type"
msgstr "Typ dopytu"
-#: server_status.php:721
+#: server_status.php:832
msgid "Replication status"
msgstr "Stav replikácie"
diff --git a/po/sl.po b/po/sl.po
index 97b26cc99..3e65588c7 100755
--- a/po/sl.po
+++ b/po/sl.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-06-04 16:07-0400\n"
-"PO-Revision-Date: 2010-06-04 23:39+0200\n"
+"POT-Creation-Date: 2010-06-08 12:32-0400\n"
+"PO-Revision-Date: 2010-06-08 13:43+0200\n"
"Last-Translator: Domen \n"
"Language-Team: slovenian \n"
"MIME-Version: 1.0\n"
@@ -16,11 +16,11 @@ msgstr ""
"X-Generator: Pootle 2.0.1\n"
#: browse_foreigners.php:38 browse_foreigners.php:59
-#: libraries/display_tbl.lib.php:417 server_privileges.php:1475
+#: libraries/display_tbl.lib.php:417 server_privileges.php:1514
msgid "Show all"
msgstr "Pokaži vse"
-#: browse_foreigners.php:82 libraries/common.lib.php:2304
+#: browse_foreigners.php:82 libraries/common.lib.php:2313
#: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:394
#: libraries/export/pdf.php:147 pdf_schema.php:283 pdf_schema.php:1123
#: pdf_schema.php:1139
@@ -38,8 +38,8 @@ msgstr ""
#: browse_foreigners.php:150 db_structure.php:79 db_structure.php:80
#: db_structure.php:91 db_structure.php:93 db_structure.php:104
-#: db_structure.php:106 libraries/common.lib.php:2822
-#: libraries/common.lib.php:2829 libraries/db_links.inc.php:75
+#: db_structure.php:106 libraries/common.lib.php:2831
+#: libraries/common.lib.php:2838 libraries/db_links.inc.php:75
#: libraries/tbl_links.inc.php:63
msgid "Search"
msgstr "Iskanje"
@@ -49,7 +49,7 @@ msgstr "Iskanje"
#: db_structure.php:567 js/messages.php:48 libraries/Config.class.php:1046
#: libraries/Theme_Manager.class.php:311
#: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719
-#: libraries/common.lib.php:1333 libraries/common.lib.php:2279
+#: libraries/common.lib.php:1335 libraries/common.lib.php:2288
#: libraries/display_change_password.lib.php:82
#: libraries/display_create_table.lib.php:63
#: libraries/display_export.lib.php:275 libraries/display_import.lib.php:276
@@ -60,9 +60,9 @@ msgstr "Iskanje"
#: libraries/sql_query_form.lib.php:552 libraries/tbl_properties.inc.php:782
#: main.php:128 navigation.php:237 pdf_pages.php:292 pdf_pages.php:328
#: pdf_pages.php:530 pmd_pdf.php:116 server_binlog.php:142
-#: server_privileges.php:625 server_privileges.php:1585
-#: server_privileges.php:1932 server_privileges.php:1979
-#: server_privileges.php:2018 server_replication.php:235
+#: server_privileges.php:664 server_privileges.php:1624
+#: server_privileges.php:1971 server_privileges.php:2018
+#: server_privileges.php:2057 server_replication.php:235
#: server_replication.php:318 server_replication.php:341
#: server_synchronize.php:1209 tbl_change.php:330 tbl_change.php:1174
#: tbl_change.php:1211 tbl_indexes.php:254 tbl_operations.php:265
@@ -80,7 +80,7 @@ msgstr "Ime ključa"
#: browse_foreigners.php:169 browse_foreigners.php:171
#: server_collations.php:55 server_collations.php:67 server_engines.php:59
-#: server_status.php:628
+#: server_status.php:739
msgid "Description"
msgstr "Opis"
@@ -119,7 +119,7 @@ msgstr "Stolpec"
#: libraries/db_structure.lib.php:60 libraries/export/htmlword.php:245
#: libraries/export/latex.php:360 libraries/export/odt.php:297
#: libraries/export/texytext.php:234 libraries/tbl_properties.inc.php:100
-#: pdf_schema.php:1263 pdf_schema.php:1284 server_privileges.php:2031
+#: pdf_schema.php:1263 pdf_schema.php:1284 server_privileges.php:2070
#: tbl_change.php:287 tbl_change.php:314 tbl_printview.php:143
#: tbl_printview.php:313 tbl_select.php:136 tbl_structure.php:178
#: tbl_structure.php:659 tbl_tracking.php:274 tbl_tracking.php:321
@@ -163,9 +163,9 @@ msgstr "Komentarji"
#: libraries/Index.class.php:386 libraries/export/htmlword.php:322
#: libraries/export/latex.php:430 libraries/export/odt.php:368
#: libraries/export/texytext.php:311 libraries/mult_submits.inc.php:263
-#: pdf_schema.php:1344 server_privileges.php:1529 server_privileges.php:1540
-#: server_privileges.php:1850 server_privileges.php:1855
-#: server_privileges.php:2148 sql.php:132 sql.php:194 tbl_printview.php:229
+#: pdf_schema.php:1344 server_privileges.php:1568 server_privileges.php:1579
+#: server_privileges.php:1889 server_privileges.php:1894
+#: server_privileges.php:2187 sql.php:132 sql.php:194 tbl_printview.php:229
#: tbl_structure.php:350 tbl_tracking.php:337 tbl_tracking.php:342
msgid "No"
msgstr "Ne"
@@ -179,9 +179,9 @@ msgstr "Ne"
#: libraries/mult_submits.inc.php:101 libraries/mult_submits.inc.php:106
#: libraries/mult_submits.inc.php:111 libraries/mult_submits.inc.php:262
#: libraries/mult_submits.inc.php:273 pdf_schema.php:1344
-#: server_databases.php:64 server_privileges.php:1526
-#: server_privileges.php:1540 server_privileges.php:1850
-#: server_privileges.php:1853 server_privileges.php:2148 sql.php:193
+#: server_databases.php:64 server_privileges.php:1565
+#: server_privileges.php:1579 server_privileges.php:1889
+#: server_privileges.php:1892 server_privileges.php:2187 sql.php:193
#: tbl_printview.php:229 tbl_structure.php:40 tbl_structure.php:350
#: tbl_tracking.php:335 tbl_tracking.php:340
msgid "Yes"
@@ -278,7 +278,7 @@ msgstr "Preklopi na kopirano podatkovno zbirko"
msgid "BLOB Repository"
msgstr "Shramba BLOB"
-#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1350
+#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1352
#: libraries/server_links.inc.php:49 server_processlist.php:59
#: tbl_tracking.php:596 test/theme.php:101
msgid "Status"
@@ -335,8 +335,8 @@ msgstr "Uredi PDF strani"
#: db_printview.php:104 db_tracking.php:72 db_tracking.php:157
#: libraries/db_structure.lib.php:46 libraries/export/xml.php:328
-#: libraries/header.inc.php:126 pdf_pages.php:424 server_privileges.php:1626
-#: server_privileges.php:1682 server_privileges.php:1946
+#: libraries/header.inc.php:126 pdf_pages.php:424 server_privileges.php:1665
+#: server_privileges.php:1721 server_privileges.php:1985
#: server_synchronize.php:423 server_synchronize.php:866 tbl_tracking.php:592
#: test/theme.php:75
msgid "Table"
@@ -438,7 +438,7 @@ msgstr "Briši"
#: db_qbe.php:370 db_qbe.php:451 db_qbe.php:522 db_qbe.php:553
#: libraries/display_import.lib.php:166 libraries/tbl_properties.inc.php:779
-#: server_privileges.php:258 tbl_change.php:1031 tbl_indexes.php:250
+#: server_privileges.php:297 tbl_change.php:1031 tbl_indexes.php:250
#: tbl_select.php:288
msgid "Or"
msgstr "Ali"
@@ -468,7 +468,7 @@ msgstr "Uporabi tabele"
msgid "SQL query on database %s:"
msgstr "Poizvedba SQL na zbirki podatkov %s:"
-#: db_qbe.php:934 libraries/common.lib.php:1223
+#: db_qbe.php:934 libraries/common.lib.php:1225
msgid "Submit Query"
msgstr "Izvedi poizvedbo"
@@ -507,7 +507,7 @@ msgstr "%s zadetek(ov) v tabeli %s"
#: db_search.php:267 db_structure.php:77 db_structure.php:78
#: db_structure.php:90 db_structure.php:92 db_structure.php:103
-#: db_structure.php:105 libraries/common.lib.php:2824
+#: db_structure.php:105 libraries/common.lib.php:2833
#: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50
#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:467
msgid "Browse"
@@ -552,26 +552,26 @@ msgstr "V stolpcu:"
#: db_structure.php:81 db_structure.php:82 db_structure.php:94
#: db_structure.php:95 db_structure.php:107 db_structure.php:108
-#: libraries/common.lib.php:2823 libraries/sql_query_form.lib.php:334
+#: libraries/common.lib.php:2832 libraries/sql_query_form.lib.php:334
#: libraries/sql_query_form.lib.php:337 libraries/tbl_links.inc.php:76
msgid "Insert"
msgstr "Vstavi"
#: db_structure.php:83 db_structure.php:96 db_structure.php:109
-#: libraries/common.lib.php:2820 libraries/common.lib.php:2827
+#: libraries/common.lib.php:2829 libraries/common.lib.php:2836
#: libraries/db_links.inc.php:63 libraries/export/htmlword.php:23
#: libraries/export/latex.php:33 libraries/export/latex.php:337
#: libraries/export/odt.php:32 libraries/export/sql.php:60
#: libraries/export/texytext.php:23 libraries/import.lib.php:1104
#: libraries/tbl_links.inc.php:56 pmd_general.php:134
-#: server_privileges.php:554 server_replication.php:315 tbl_tracking.php:269
+#: server_privileges.php:593 server_replication.php:315 tbl_tracking.php:269
msgid "Structure"
msgstr "Struktura"
#: db_structure.php:84 db_structure.php:85 db_structure.php:97
#: db_structure.php:98 db_structure.php:110 db_structure.php:111
#: db_structure.php:545 db_structure.php:546 db_tracking.php:91
-#: libraries/Index.class.php:483 libraries/common.lib.php:1654
+#: libraries/Index.class.php:483 libraries/common.lib.php:1656
#: libraries/db_links.inc.php:100 libraries/mult_submits.inc.php:36
#: libraries/mult_submits.inc.php:73 libraries/tbl_links.inc.php:127
#: server_databases.php:352 tbl_structure.php:27 tbl_structure.php:151
@@ -581,7 +581,7 @@ msgstr "Zavrzi"
#: db_structure.php:86 db_structure.php:87 db_structure.php:99
#: db_structure.php:100 db_structure.php:112 db_structure.php:113
-#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1653
+#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1655
#: libraries/mult_submits.inc.php:39 libraries/tbl_links.inc.php:105
msgid "Empty"
msgstr "Izprazni"
@@ -623,7 +623,7 @@ msgstr "Pogled"
#: db_structure.php:485 libraries/db_structure.lib.php:49
#: libraries/server_links.inc.php:70 server_replication.php:33
-#: server_replication.php:164 server_status.php:258
+#: server_replication.php:164 server_status.php:369
msgid "Replication"
msgstr "Podvojevanje"
@@ -639,20 +639,20 @@ msgstr "%s je privzet skladiščni pogon na tem strežniku MySQL."
#: db_structure.php:524 db_structure.php:541 db_structure.php:542
#: libraries/display_tbl.lib.php:2081 libraries/display_tbl.lib.php:2086
#: libraries/mult_submits.inc.php:16 server_databases.php:346
-#: server_databases.php:351 server_privileges.php:1557 tbl_structure.php:455
+#: server_databases.php:351 server_privileges.php:1596 tbl_structure.php:455
#: tbl_structure.php:464
msgid "With selected:"
msgstr "Z označenim:"
#: db_structure.php:527 libraries/display_tbl.lib.php:2076
-#: server_databases.php:348 server_privileges.php:530
-#: server_privileges.php:1560 tbl_structure.php:458
+#: server_databases.php:348 server_privileges.php:569
+#: server_privileges.php:1599 tbl_structure.php:458
msgid "Check All"
msgstr "Označi vse"
#: db_structure.php:531 libraries/display_tbl.lib.php:2077
#: libraries/replication_gui.lib.php:33 server_databases.php:350
-#: server_privileges.php:533 server_privileges.php:1564 tbl_structure.php:462
+#: server_privileges.php:572 server_privileges.php:1603 tbl_structure.php:462
msgid "Uncheck All"
msgstr "Odznači vse"
@@ -690,7 +690,7 @@ msgstr "Analiziraj tabelo"
#: libraries/display_export.lib.php:83 libraries/display_tbl.lib.php:2094
#: libraries/display_tbl.lib.php:2225 libraries/mult_submits.inc.php:62
#: libraries/server_links.inc.php:84 libraries/tbl_links.inc.php:82
-#: pmd_pdf.php:84 pmd_pdf.php:109 server_privileges.php:1341
+#: pmd_pdf.php:84 pmd_pdf.php:109 server_privileges.php:1380
#: setup/frames/menu.inc.php:22 tbl_row_action.php:59
msgid "Export"
msgstr "Izvozi"
@@ -708,8 +708,8 @@ msgstr "Sledene tabele"
#: libraries/export/sql.php:342 libraries/export/texytext.php:84
#: libraries/export/xml.php:255 libraries/header.inc.php:106
#: libraries/header_printview.inc.php:58 server_databases.php:169
-#: server_privileges.php:1621 server_privileges.php:1682
-#: server_privileges.php:1940 server_processlist.php:56
+#: server_privileges.php:1660 server_privileges.php:1721
+#: server_privileges.php:1979 server_processlist.php:56
#: server_synchronize.php:1179 server_synchronize.php:1183
#: tbl_tracking.php:591 test/theme.php:65
msgid "Database"
@@ -729,8 +729,8 @@ msgstr "Posodobljeno"
#: db_tracking.php:77 libraries/Index.class.php:440
#: libraries/db_structure.lib.php:53 server_databases.php:203
-#: server_privileges.php:1503 server_privileges.php:1686
-#: server_privileges.php:2034 tbl_structure.php:187
+#: server_privileges.php:1542 server_privileges.php:1725
+#: server_privileges.php:2073 tbl_structure.php:187
msgid "Action"
msgstr "Dejanje"
@@ -934,11 +934,11 @@ msgstr "Ime gostitelja je prazno!"
msgid "The user name is empty!"
msgstr "Uporabniško ime je prazno!"
-#: js/messages.php:44 server_privileges.php:1197 user_password.php:70
+#: js/messages.php:44 server_privileges.php:1236 user_password.php:70
msgid "The password is empty!"
msgstr "Geslo je prazno!"
-#: js/messages.php:45 server_privileges.php:1195 user_password.php:73
+#: js/messages.php:45 server_privileges.php:1234 user_password.php:73
msgid "The passwords aren't the same!"
msgstr "Gesli se ne ujemata!"
@@ -1011,8 +1011,8 @@ msgid "Prev"
msgstr "Prejšnji"
#. l10n: Display text for next month link in calendar
-#: js/messages.php:77 libraries/common.lib.php:2344
-#: libraries/common.lib.php:2347 libraries/display_tbl.lib.php:338
+#: js/messages.php:77 libraries/common.lib.php:2353
+#: libraries/common.lib.php:2356 libraries/display_tbl.lib.php:338
#: server_binlog.php:205 server_binlog.php:207 tbl_printview.php:424
#: tbl_structure.php:801
msgid "Next"
@@ -1072,63 +1072,63 @@ msgid "December"
msgstr "december"
#. l10n: Short month name
-#: js/messages.php:97 libraries/common.lib.php:1555
+#: js/messages.php:97 libraries/common.lib.php:1557
msgid "Jan"
msgstr "jan"
#. l10n: Short month name
-#: js/messages.php:99 libraries/common.lib.php:1557
+#: js/messages.php:99 libraries/common.lib.php:1559
msgid "Feb"
msgstr "feb"
#. l10n: Short month name
-#: js/messages.php:101 libraries/common.lib.php:1559
+#: js/messages.php:101 libraries/common.lib.php:1561
msgid "Mar"
msgstr "mar"
#. l10n: Short month name
-#: js/messages.php:103 libraries/common.lib.php:1561
+#: js/messages.php:103 libraries/common.lib.php:1563
msgid "Apr"
msgstr "apr"
#. l10n: Short month name
-#: js/messages.php:105 libraries/common.lib.php:1563
+#: js/messages.php:105 libraries/common.lib.php:1565
msgctxt "Short month name"
msgid "May"
msgstr "maj"
#. l10n: Short month name
-#: js/messages.php:107 libraries/common.lib.php:1565
+#: js/messages.php:107 libraries/common.lib.php:1567
msgid "Jun"
msgstr "jun"
#. l10n: Short month name
-#: js/messages.php:109 libraries/common.lib.php:1567
+#: js/messages.php:109 libraries/common.lib.php:1569
msgid "Jul"
msgstr "jul"
#. l10n: Short month name
-#: js/messages.php:111 libraries/common.lib.php:1569
+#: js/messages.php:111 libraries/common.lib.php:1571
msgid "Aug"
msgstr "avg"
#. l10n: Short month name
-#: js/messages.php:113 libraries/common.lib.php:1571
+#: js/messages.php:113 libraries/common.lib.php:1573
msgid "Sep"
msgstr "sep"
#. l10n: Short month name
-#: js/messages.php:115 libraries/common.lib.php:1573
+#: js/messages.php:115 libraries/common.lib.php:1575
msgid "Oct"
msgstr "okt"
#. l10n: Short month name
-#: js/messages.php:117 libraries/common.lib.php:1575
+#: js/messages.php:117 libraries/common.lib.php:1577
msgid "Nov"
msgstr "nov"
#. l10n: Short month name
-#: js/messages.php:119 libraries/common.lib.php:1577
+#: js/messages.php:119 libraries/common.lib.php:1579
msgid "Dec"
msgstr "dec"
@@ -1161,37 +1161,37 @@ msgid "Saturday"
msgstr "sobota"
#. l10n: Short week day name
-#: js/messages.php:132 libraries/common.lib.php:1580
+#: js/messages.php:132 libraries/common.lib.php:1582
msgid "Sun"
msgstr "ned"
#. l10n: Short week day name
-#: js/messages.php:134 libraries/common.lib.php:1582
+#: js/messages.php:134 libraries/common.lib.php:1584
msgid "Mon"
msgstr "pon"
#. l10n: Short week day name
-#: js/messages.php:136 libraries/common.lib.php:1584
+#: js/messages.php:136 libraries/common.lib.php:1586
msgid "Tue"
msgstr "tor"
#. l10n: Short week day name
-#: js/messages.php:138 libraries/common.lib.php:1586
+#: js/messages.php:138 libraries/common.lib.php:1588
msgid "Wed"
msgstr "sre"
#. l10n: Short week day name
-#: js/messages.php:140 libraries/common.lib.php:1588
+#: js/messages.php:140 libraries/common.lib.php:1590
msgid "Thu"
msgstr "čet"
#. l10n: Short week day name
-#: js/messages.php:142 libraries/common.lib.php:1590
+#: js/messages.php:142 libraries/common.lib.php:1592
msgid "Fri"
msgstr "pet"
#. l10n: Short week day name
-#: js/messages.php:144 libraries/common.lib.php:1592
+#: js/messages.php:144 libraries/common.lib.php:1594
msgid "Sat"
msgstr "sob"
@@ -1320,7 +1320,7 @@ msgid "Comment"
msgstr "Komentar"
#: libraries/Index.class.php:466 libraries/common.lib.php:616
-#: libraries/common.lib.php:1199 libraries/display_tbl.lib.php:1117
+#: libraries/common.lib.php:1201 libraries/display_tbl.lib.php:1117
#: libraries/import.lib.php:1087 libraries/import.lib.php:1111
#: pdf_pages.php:285 setup/frames/index.inc.php:124
#: setup/lib/messages.inc.php:352 tbl_row_action.php:69
@@ -1346,7 +1346,7 @@ msgstr ""
"odstrani."
#: libraries/List_Database.class.php:431 libraries/server_links.inc.php:41
-#: server_databases.php:88 server_privileges.php:1621
+#: server_databases.php:88 server_privileges.php:1660
#: setup/lib/messages.inc.php:110 test/theme.php:93
msgid "Databases"
msgstr "Podatkovne zbirke"
@@ -1684,7 +1684,7 @@ msgid "Documentation"
msgstr "Dokumentacija"
#: libraries/common.lib.php:595 libraries/header_printview.inc.php:61
-#: server_processlist.php:60 server_status.php:247
+#: server_processlist.php:60 server_status.php:358
msgid "SQL query"
msgstr "Poizvedba SQL"
@@ -1700,128 +1700,128 @@ msgstr "Razloži stavek SQL"
msgid "Skip Explain SQL"
msgstr "Preskoči razlago stavka SQL"
-#: libraries/common.lib.php:1212
+#: libraries/common.lib.php:1214
msgid "Without PHP Code"
msgstr "Brez kode PHP"
-#: libraries/common.lib.php:1215 setup/lib/messages.inc.php:355
+#: libraries/common.lib.php:1217 setup/lib/messages.inc.php:355
msgid "Create PHP Code"
msgstr "Ustvari kodo PHP"
-#: libraries/common.lib.php:1233 server_status.php:341
+#: libraries/common.lib.php:1235 server_status.php:452
#: setup/lib/messages.inc.php:354
msgid "Refresh"
msgstr "Osveži"
-#: libraries/common.lib.php:1242
+#: libraries/common.lib.php:1244
msgid "Skip Validate SQL"
msgstr "Preskoči preverjanje pravilnosti SQL stavka"
-#: libraries/common.lib.php:1245 setup/lib/messages.inc.php:356 sql.php:518
+#: libraries/common.lib.php:1247 setup/lib/messages.inc.php:356 sql.php:518
msgid "Validate SQL"
msgstr "Preveri pravilnost stavka SQL"
-#: libraries/common.lib.php:1276
+#: libraries/common.lib.php:1278
msgid "Inline edit of this query"
msgstr "Urejanje te poizvedbe v vrstici"
-#: libraries/common.lib.php:1278
+#: libraries/common.lib.php:1280
msgid "Inline"
msgstr "V vrstici"
-#: libraries/common.lib.php:1332 libraries/common.lib.php:1347
+#: libraries/common.lib.php:1334 libraries/common.lib.php:1349
msgid "Profiling"
msgstr "Profiliranje"
-#: libraries/common.lib.php:1351 libraries/tbl_triggers.lib.php:28
+#: libraries/common.lib.php:1353 libraries/tbl_triggers.lib.php:28
#: server_processlist.php:58
msgid "Time"
msgstr "Čas"
#. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "B"
msgstr "B"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "KiB"
msgstr "KiB"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "MiB"
msgstr "MiB"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "GiB"
msgstr "GiB"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "TiB"
msgstr "TiB"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "PiB"
msgstr "PiB"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "EiB"
msgstr "EiB"
#. l10n: Thousands separator
-#: libraries/common.lib.php:1417
+#: libraries/common.lib.php:1419
msgid ","
msgstr "."
#. l10n: Decimal separator
-#: libraries/common.lib.php:1419
+#: libraries/common.lib.php:1421
msgid "."
msgstr ","
#. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string
-#: libraries/common.lib.php:1596
+#: libraries/common.lib.php:1598
#: libraries/transformations/text_plain__dateformat.inc.php:34
msgid "%B %d, %Y at %I:%M %p"
msgstr "%d %B %Y ob %H.%M"
-#: libraries/common.lib.php:1898
+#: libraries/common.lib.php:1907
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "%s dni, %s ur, %s minut in %s sekund"
-#: libraries/common.lib.php:2313 libraries/common.lib.php:2316
-#: libraries/display_tbl.lib.php:290 server_status.php:608
+#: libraries/common.lib.php:2322 libraries/common.lib.php:2325
+#: libraries/display_tbl.lib.php:290 server_status.php:719
msgid "Begin"
msgstr "Začetek"
-#: libraries/common.lib.php:2314 libraries/common.lib.php:2317
+#: libraries/common.lib.php:2323 libraries/common.lib.php:2326
#: libraries/display_tbl.lib.php:291 server_binlog.php:168
#: server_binlog.php:170
msgid "Previous"
msgstr "Prejšnji"
-#: libraries/common.lib.php:2345 libraries/common.lib.php:2348
+#: libraries/common.lib.php:2354 libraries/common.lib.php:2357
#: libraries/display_tbl.lib.php:353
msgid "End"
msgstr "Konec"
-#: libraries/common.lib.php:2421
+#: libraries/common.lib.php:2430
#, php-format
msgid "Jump to database "%s"."
msgstr "Preskoči na podatkovno zbirko "%s"."
-#: libraries/common.lib.php:2441
+#: libraries/common.lib.php:2450
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr "Na funkcionalnost %s vpliva znan hrošč, glej %s"
-#: libraries/common.lib.php:2821 libraries/common.lib.php:2828
+#: libraries/common.lib.php:2830 libraries/common.lib.php:2837
#: libraries/db_links.inc.php:68 libraries/export/sql.php:25
#: libraries/import/sql.php:18 libraries/server_links.inc.php:45
#: libraries/tbl_links.inc.php:60 querywindow.php:99 test/theme.php:97
msgid "SQL"
msgstr "SQL"
-#: libraries/common.lib.php:2830 libraries/db_links.inc.php:104
+#: libraries/common.lib.php:2839 libraries/db_links.inc.php:104
#: libraries/tbl_links.inc.php:95 libraries/tbl_links.inc.php:117
#: view_operations.php:89
msgid "Operations"
@@ -1877,8 +1877,8 @@ msgid "Import"
msgstr "Uvozi"
#: libraries/db_links.inc.php:111 libraries/server_links.inc.php:66
-#: server_privileges.php:72 server_privileges.php:1683
-#: server_privileges.php:2032 test/theme.php:117
+#: server_privileges.php:111 server_privileges.php:1722
+#: server_privileges.php:2071 test/theme.php:117
msgid "Privileges"
msgstr "Privilegiji"
@@ -1928,22 +1928,22 @@ msgid "Change password"
msgstr "Spremeni geslo"
#: libraries/display_change_password.lib.php:35
-#: libraries/replication_gui.lib.php:345 server_privileges.php:768
+#: libraries/replication_gui.lib.php:345 server_privileges.php:807
msgid "No Password"
msgstr "Brez gesla"
#: libraries/display_change_password.lib.php:41
#: libraries/replication_gui.lib.php:59 libraries/replication_gui.lib.php:60
#: libraries/replication_gui.lib.php:335 libraries/replication_gui.lib.php:339
-#: libraries/replication_gui.lib.php:349 server_privileges.php:757
-#: server_privileges.php:761 server_privileges.php:772
-#: server_privileges.php:1499 server_synchronize.php:1175
+#: libraries/replication_gui.lib.php:349 server_privileges.php:796
+#: server_privileges.php:800 server_privileges.php:811
+#: server_privileges.php:1538 server_synchronize.php:1175
msgid "Password"
msgstr "Geslo"
#: libraries/display_change_password.lib.php:46
#: libraries/replication_gui.lib.php:353 libraries/replication_gui.lib.php:356
-#: server_privileges.php:776 server_privileges.php:779
+#: server_privileges.php:815 server_privileges.php:818
msgid "Re-type"
msgstr "Ponovno vnesi"
@@ -1956,12 +1956,12 @@ msgid "MySQL 4.0 compatible"
msgstr "Združljivo z MySQL 4.0"
#: libraries/display_change_password.lib.php:72
-#: libraries/replication_gui.lib.php:360 server_privileges.php:783
+#: libraries/replication_gui.lib.php:360 server_privileges.php:822
msgid "Generate Password"
msgstr "Ustvari geslo"
#: libraries/display_change_password.lib.php:75
-#: libraries/replication_gui.lib.php:363 server_privileges.php:786
+#: libraries/replication_gui.lib.php:363 server_privileges.php:825
msgid "Generate"
msgstr "Ustvari"
@@ -1974,8 +1974,8 @@ msgstr "Ustvari novo zbirko podatkov"
msgid "Create"
msgstr "Ustvari"
-#: libraries/display_create_database.lib.php:40 server_privileges.php:74
-#: server_privileges.php:1388 server_replication.php:35
+#: libraries/display_create_database.lib.php:40 server_privileges.php:113
+#: server_privileges.php:1427 server_replication.php:35
msgid "No Privileges"
msgstr "Brez privilegijev"
@@ -2062,7 +2062,7 @@ msgstr "Stiskanje"
#: libraries/display_export.lib.php:240 libraries/display_import.lib.php:197
#: libraries/display_import.lib.php:210 libraries/display_tbl.lib.php:530
#: libraries/export/sql.php:868 libraries/tbl_properties.inc.php:575
-#: server_privileges.php:1836 server_processlist.php:75
+#: server_privileges.php:1875 server_processlist.php:75
msgid "None"
msgstr "Brez"
@@ -2389,7 +2389,7 @@ msgstr ""
msgid "Buffer Pool"
msgstr "Zaloga medpomnilnika"
-#: libraries/engines/innodb.lib.php:145 server_status.php:306
+#: libraries/engines/innodb.lib.php:145 server_status.php:417
msgid "InnoDB Status"
msgstr "Stanje InnoDB"
@@ -2398,8 +2398,8 @@ msgid "Buffer Pool Usage"
msgstr "Uporaba zaloge medpomnilnika"
#: libraries/engines/innodb.lib.php:194 server_databases.php:137
-#: server_databases.php:305 server_status.php:414 server_status.php:475
-#: server_status.php:496 tbl_printview.php:351 tbl_structure.php:696
+#: server_databases.php:305 server_status.php:525 server_status.php:586
+#: server_status.php:607 tbl_printview.php:351 tbl_structure.php:696
msgid "Total"
msgstr "Skupaj"
@@ -2750,7 +2750,7 @@ msgstr "Microsoft Word 2000"
#: libraries/export/latex.php:201 libraries/export/odt.php:48
#: libraries/export/sql.php:106 libraries/export/sql.php:868
#: libraries/export/texytext.php:27 server_databases.php:127
-#: server_privileges.php:537 server_replication.php:316 tbl_printview.php:317
+#: server_privileges.php:576 server_replication.php:316 tbl_printview.php:317
#: tbl_structure.php:665
msgid "Data"
msgstr "Podatki"
@@ -2800,9 +2800,9 @@ msgstr "Vrsta MIME"
#: libraries/export/xml.php:102 libraries/header_printview.inc.php:57
#: libraries/replication_gui.lib.php:63 libraries/replication_gui.lib.php:174
#: libraries/replication_gui.lib.php:269 libraries/replication_gui.lib.php:272
-#: libraries/replication_gui.lib.php:329 server_privileges.php:692
-#: server_privileges.php:695 server_privileges.php:751
-#: server_privileges.php:1498 server_privileges.php:2030
+#: libraries/replication_gui.lib.php:329 server_privileges.php:731
+#: server_privileges.php:734 server_privileges.php:790
+#: server_privileges.php:1537 server_privileges.php:2069
#: server_processlist.php:55 server_synchronize.php:1159
msgid "Host"
msgstr "Gostitelj"
@@ -3153,801 +3153,6 @@ msgstr "Nobeno"
msgid "Convert to Kana"
msgstr "Pretvori v kano"
-#. l10n: Text direction, use either ltr or rtl
-#: libraries/messages.inc.php:19
-msgid "ltr"
-msgstr "ltr"
-
-#: libraries/messages.inc.php:21
-msgid "Content of table __TABLE__"
-msgstr "Vsebina tabele __TABLE__"
-
-#: libraries/messages.inc.php:22
-msgid "(continued)"
-msgstr "(nadaljevanje)"
-
-#: libraries/messages.inc.php:23
-msgid "Structure of table __TABLE__"
-msgstr "Struktura tabele __TABLE__"
-
-#: libraries/messages.inc.php:25 server_privileges.php:227
-msgid "Includes all privileges except GRANT."
-msgstr "Vsebuje vse privilegije razen GRANT."
-
-#: libraries/messages.inc.php:26 server_privileges.php:153
-#: server_privileges.php:476
-msgid "Allows altering the structure of existing tables."
-msgstr "Omogoča spreminjanje strukture obstoječih tabel."
-
-#: libraries/messages.inc.php:27 server_privileges.php:169
-#: server_privileges.php:482
-msgid "Allows altering and dropping stored routines."
-msgstr "Omogoča ustvarjanje in brisanje shranjenih rutin."
-
-#: libraries/messages.inc.php:28 server_privileges.php:145
-#: server_privileges.php:475
-msgid "Allows creating new databases and tables."
-msgstr "Omogoča ustvarjanje novih podatkovnih zbirk in tabel."
-
-#: libraries/messages.inc.php:29 server_privileges.php:168
-#: server_privileges.php:481
-msgid "Allows creating stored routines."
-msgstr "Omogoča ustvarjanje shranjenih rutin."
-
-#: libraries/messages.inc.php:30 server_privileges.php:475
-msgid "Allows creating new tables."
-msgstr "Omogoča ustvarjanje novih tabel."
-
-#: libraries/messages.inc.php:31 server_privileges.php:156
-#: server_privileges.php:479
-msgid "Allows creating temporary tables."
-msgstr "Omogoča ustvarjanje začasnih tabel."
-
-#: libraries/messages.inc.php:32 server_privileges.php:170
-#: server_privileges.php:515
-msgid "Allows creating, dropping and renaming user accounts."
-msgstr "Omogoča ustvarjanje, brisanje in preimenovanje uporabniških računov."
-
-#: libraries/messages.inc.php:33 server_privileges.php:160
-#: server_privileges.php:164 server_privileges.php:487
-#: server_privileges.php:491
-msgid "Allows creating new views."
-msgstr "Omogoča ustvarjanje novih pogledov."
-
-#: libraries/messages.inc.php:34 server_privileges.php:144
-#: server_privileges.php:467
-msgid "Allows deleting data."
-msgstr "Omogoča brisanje podatkov."
-
-#: libraries/messages.inc.php:35 server_privileges.php:146
-#: server_privileges.php:478
-msgid "Allows dropping databases and tables."
-msgstr "Omogoča brisanje podatkovnih zbirk in tabel."
-
-#: libraries/messages.inc.php:36 server_privileges.php:478
-msgid "Allows dropping tables."
-msgstr "Omogoča brisanje tabel."
-
-#: libraries/messages.inc.php:37 server_privileges.php:161
-#: server_privileges.php:495
-msgid "Allows to set up events for the event scheduler"
-msgstr "Omogoča določanje dogodkov za načrtovalnik dogodkov"
-
-#: libraries/messages.inc.php:38 server_privileges.php:171
-#: server_privileges.php:483
-msgid "Allows executing stored routines."
-msgstr "Omogoča izvajanje shranjenih rutin."
-
-#: libraries/messages.inc.php:39 server_privileges.php:150
-#: server_privileges.php:470
-msgid "Allows importing data from and exporting data into files."
-msgstr "Omogoča uvažanje in izvažanje podatkov v datoteke."
-
-#: libraries/messages.inc.php:40 server_privileges.php:501
-msgid ""
-"Allows adding users and privileges without reloading the privilege tables."
-msgstr ""
-"Omogoča dodajanje uporabnikov in privilegijev brez osveževanja privilegijev."
-
-#: libraries/messages.inc.php:41 server_privileges.php:152
-#: server_privileges.php:477
-msgid "Allows creating and dropping indexes."
-msgstr "Omogoča ustvarjanje in brisanje indeksov."
-
-#: libraries/messages.inc.php:42 server_privileges.php:142
-#: server_privileges.php:403 server_privileges.php:465
-msgid "Allows inserting and replacing data."
-msgstr "Omogoča vstavljanje in zamenjavo podatkov."
-
-#: libraries/messages.inc.php:43 server_privileges.php:157
-#: server_privileges.php:510
-msgid "Allows locking tables for the current thread."
-msgstr "Omogoča zaklepanje tabel za trenutno temo."
-
-#: libraries/messages.inc.php:44 server_privileges.php:607
-#: server_privileges.php:609
-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/messages.inc.php:45 server_privileges.php:595
-#: server_privileges.php:597
-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/messages.inc.php:46 server_privileges.php:601
-#: server_privileges.php:603
-msgid ""
-"Limits the number of commands that change any table or database the user may "
-"execute per hour."
-msgstr ""
-"Omeji število ukazov za spremembo tabel ali podatkovne zbirke, ki jih "
-"uporabnik lahko izvrši v eni uri."
-
-#: libraries/messages.inc.php:47 server_privileges.php:613
-#: server_privileges.php:615
-msgid "Limits the number of simultaneous connections the user may have."
-msgstr "Omeji število sočasnih povezav, ki jih lahko ima uporabnik."
-
-#: libraries/messages.inc.php:48 server_privileges.php:149
-#: server_privileges.php:505
-msgid "Allows viewing processes of all users"
-msgstr "Omogoča ogled procesov vseh uporabnikov"
-
-#: libraries/messages.inc.php:49 server_privileges.php:151
-#: server_privileges.php:409 server_privileges.php:511
-msgid "Has no effect in this MySQL version."
-msgstr "V tej različici MySQL nima pomena."
-
-#: libraries/messages.inc.php:50 server_privileges.php:147
-#: server_privileges.php:506
-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/messages.inc.php:51 server_privileges.php:159
-#: server_privileges.php:513
-msgid "Allows the user to ask where the slaves / masters are."
-msgstr ""
-"Da uporabniku pravico poizvedovati kje so njegovi nadrejeni / podrjeni "
-"strežniki."
-
-#: libraries/messages.inc.php:52 server_privileges.php:158
-#: server_privileges.php:514
-msgid "Needed for the replication slaves."
-msgstr "Potrebno za podrejene strežnike pri replikaciji."
-
-#: libraries/messages.inc.php:53 server_privileges.php:141
-#: server_privileges.php:400 server_privileges.php:464
-msgid "Allows reading data."
-msgstr "Omogoča branje podatkov."
-
-#: libraries/messages.inc.php:54 server_privileges.php:154
-#: server_privileges.php:508
-msgid "Gives access to the complete list of databases."
-msgstr "Omogoča dostop do popolnega spiska podatkovnih zbirk."
-
-#: libraries/messages.inc.php:55 server_privileges.php:165
-#: server_privileges.php:167 server_privileges.php:480
-msgid "Allows performing SHOW CREATE VIEW queries."
-msgstr "Omogoča izvajanje poizvedb SHOW CREATE VIEW."
-
-#: libraries/messages.inc.php:56 server_privileges.php:148
-#: server_privileges.php:507
-msgid "Allows shutting down the server."
-msgstr "Omogoča ugašanje strežnika."
-
-#: libraries/messages.inc.php:57 server_privileges.php:155
-#: server_privileges.php:504
-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 ""
-"Omogoča priklaplanje tudi če je že doseženo največje dovoljeno število "
-"priklopov; Potrebno za večino administrativnih nalog kot sta postavljanje "
-"globalnih spremenljivk in ukinjanje procesov drugih uporabnikov."
-
-#: libraries/messages.inc.php:58 server_privileges.php:162
-#: server_privileges.php:496
-msgid "Allows creating and dropping triggers"
-msgstr "Omogoča ustvarjanje in brisanje sprožilcev"
-
-#: libraries/messages.inc.php:59 server_privileges.php:143
-#: server_privileges.php:406 server_privileges.php:466
-msgid "Allows changing data."
-msgstr "Omogoča spreminjanje podatkov."
-
-#: libraries/messages.inc.php:60 server_privileges.php:221
-msgid "No privileges."
-msgstr "Brez privilegijev."
-
-#: libraries/messages.inc.php:62
-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 ""
-"Število transakcij, ki so uporabile začasni predpomnilnik dvojiškega "
-"dnevnika, vendar je ta presegel vrednost binlog_cache_size, zato so bile za "
-"shranitev izjav iz transakcije uporabljene začasne datoteke."
-
-#: libraries/messages.inc.php:63
-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/messages.inc.php:64
-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 "
-"to increase the tmp_table_size value to cause temporary tables to be memory-"
-"based instead of disk-based."
-msgstr ""
-"Število začasnih tabel na disku, ki jih je strežnik samodejno ustvaril med "
-"izvajanjem izjav. Če je Created_tmp_disk_tables velika, boste morda želeli "
-"povečati vrednost tmp_table_size, zaradi česar bodo začasne tabele temeljile "
-"na pomnilniku namesto na disku."
-
-#: libraries/messages.inc.php:65
-msgid "How many temporary files mysqld has created."
-msgstr "Koliko začasnih datotek je ustvaril mysqld."
-
-#: libraries/messages.inc.php:66
-msgid ""
-"The number of in-memory temporary tables created automatically by the server "
-"while executing statements."
-msgstr ""
-"Število začasnih tabel v-pomnilniku, ki jih je strežnik samodejno ustvaril "
-"med izvajanjem stavkov."
-
-#: libraries/messages.inc.php:67
-msgid ""
-"The number of rows written with INSERT DELAYED for which some error occurred "
-"(probably duplicate key)."
-msgstr ""
-"Število vrstic zapisanih z INSERT DELAYED, pri katerih je prišlo do neke "
-"napake (najverjetneje podvojen ključ)."
-
-#: libraries/messages.inc.php:68
-msgid ""
-"The number of INSERT DELAYED handler threads in use. Every different table "
-"on which one uses INSERT DELAYED gets its own thread."
-msgstr ""
-"Število upravljalnih niti INSERT DELAYED v uporabi. Vsaka različna tabela, "
-"na kateri se uporabi INSERT DELAYED, dobi svojo lastno nit."
-
-#: libraries/messages.inc.php:69
-msgid "The number of INSERT DELAYED rows written."
-msgstr "Število zapisanih vrstic INSERT DELAYED."
-
-#: libraries/messages.inc.php:70
-msgid "The number of executed FLUSH statements."
-msgstr "Število izvedenih izjav FLUSH."
-
-#: libraries/messages.inc.php:71
-msgid "The number of internal COMMIT statements."
-msgstr "Število notranjih izjav COMMIT."
-
-#: libraries/messages.inc.php:72
-msgid "The number of times a row was deleted from a table."
-msgstr "Število izbrisov vrstice iz tabele."
-
-#: libraries/messages.inc.php:73
-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 ""
-"Strežnik MySQL lahko vpraša skladiščni pogon NDB Cluster, če ve za tabelo z "
-"navedenim imenom. Temu se reče odkritje. Handler_discover kaže koliko krat "
-"so bile tabele odkrite."
-
-#: libraries/messages.inc.php:74
-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 ""
-"Koliko krat je bil prvi vnos prebran iz indeksa. Če je vrednost visoka, "
-"kaže, da strežnik izvaja mnogo pregledov indeksa; na primer: SELECT col1 "
-"FROM foo, pri čemer se predpostavlja, da je col1 indeksiran."
-
-#: libraries/messages.inc.php:75
-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 ""
-"Število zahtev za branje vrstice temelječih na ključu. Če je ta vrednost "
-"visoka, je to dober znak, da so vaše poizvedbe in tabele primerno "
-"indeksirane."
-
-#: libraries/messages.inc.php:76
-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 ""
-"Število zahtev za branje naslednje vrstice v zaporedju ključa. To je "
-"povečano, če poizvedujete po indeksnem stolpcu z omejitvijo obsega ali če "
-"pregledujete indeks."
-
-#: libraries/messages.inc.php:77
-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 ""
-"Število poizvedb za branje prejšnje vrstice v zaporedju ključa. Ta postopek "
-"branja se uporablja predvsem za optimizacijo ORDER BY ... DESC."
-
-#: libraries/messages.inc.php:78
-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 "
-"probably have a lot of queries that require MySQL to scan whole tables or "
-"you have joins that don't use keys properly."
-msgstr ""
-"Število zahtev za branje vrstice temelječih na ustaljenem položaju. To je "
-"visoko, če izvajate veliko poizvedb, ki potrebujejo razvrščanje rezultata. "
-"Najverjetneje imate veliko poizvedb, ki od MySQL zahtevajo pregled celotnih "
-"tabel, ali stike, ki ne uporabljajo ključev pravilno."
-
-#: libraries/messages.inc.php:79
-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 "
-"tables are not properly indexed or that your queries are not written to take "
-"advantage of the indexes you have."
-msgstr ""
-"Število zahtev za branje naslednje vrstice v podatkovni datoteki. To je "
-"visoko, če izvajate veliko pregledov tabel. Na splošno to kaže, da vaše "
-"tabele niso primerno indeksirane ali da vaše poizvedbe ne izkoristijo "
-"prednosti indeksov, ki jih imate."
-
-#: libraries/messages.inc.php:80
-msgid "The number of internal ROLLBACK statements."
-msgstr "Število notranjih izjav ROLLBACK."
-
-#: libraries/messages.inc.php:81
-msgid "The number of requests to update a row in a table."
-msgstr "Število zahtev za posodobitev vrstice v tabeli."
-
-#: libraries/messages.inc.php:82
-msgid "The number of requests to insert a row in a table."
-msgstr "Število zahtev za vstavitev vrstice v tabelo."
-
-#: libraries/messages.inc.php:83
-msgid "The number of pages containing data (dirty or clean)."
-msgstr "Število strani, ki vsebujejo podatke (umazane ali čiste)"
-
-#: libraries/messages.inc.php:84
-msgid "The number of pages currently dirty."
-msgstr "Število trenutno umazanih strani."
-
-#: libraries/messages.inc.php:85
-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/messages.inc.php:86
-msgid "The number of free pages."
-msgstr "Število prostih strani."
-
-#: libraries/messages.inc.php:87
-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/messages.inc.php:88
-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 "
-"be calculated as Innodb_buffer_pool_pages_total - "
-"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data."
-msgstr ""
-
-#: libraries/messages.inc.php:89
-msgid "Total size of buffer pool, in pages."
-msgstr "Skupna velikost zaloge medpomnilnika, v straneh."
-
-#: libraries/messages.inc.php:90
-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/messages.inc.php:91
-msgid ""
-"The number of sequential read-aheads InnoDB initiated. This happens when "
-"InnoDB does a sequential full table scan."
-msgstr ""
-
-#: libraries/messages.inc.php:92
-msgid "The number of logical read requests InnoDB has done."
-msgstr ""
-
-#: libraries/messages.inc.php:93
-msgid ""
-"The number of logical reads that InnoDB could not satisfy from buffer pool "
-"and had to do a single-page read."
-msgstr ""
-
-#: libraries/messages.inc.php:94
-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 "
-"available, it's necessary to wait for pages to be flushed first. This "
-"counter counts instances of these waits. If the buffer pool size was set "
-"properly, this value should be small."
-msgstr ""
-
-#: libraries/messages.inc.php:95
-msgid "The number writes done to the InnoDB buffer pool."
-msgstr "Število zapisov storjenih v zalogi medpomnilnika InnoDB."
-
-#: libraries/messages.inc.php:96
-msgid "The number of fsync() operations so far."
-msgstr "Število dozdajšnjih posegov fsync()."
-
-#: libraries/messages.inc.php:97
-msgid "The current number of pending fsync() operations."
-msgstr "Trenutno število čakajočih posegov fsync()."
-
-#: libraries/messages.inc.php:98
-msgid "The current number of pending reads."
-msgstr "Trenutno število čakajočih branj."
-
-#: libraries/messages.inc.php:99
-msgid "The current number of pending writes."
-msgstr "Trenutno število čakajočih pisanj."
-
-#: libraries/messages.inc.php:100
-msgid "The amount of data read so far, in bytes."
-msgstr "Količina do zdaj prebranih podatkov, v bajtih."
-
-#: libraries/messages.inc.php:101
-msgid "The total number of data reads."
-msgstr "Skupno število branj podatkov."
-
-#: libraries/messages.inc.php:102
-msgid "The total number of data writes."
-msgstr "Skupno število zapisovanj podatkov."
-
-#: libraries/messages.inc.php:103
-msgid "The amount of data written so far, in bytes."
-msgstr "Količina do zdaj zapisanih podatkov, v bajtih."
-
-#: libraries/messages.inc.php:104
-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/messages.inc.php:105
-msgid "The number of doublewrite operations that have been performed."
-msgstr "Število posegov dvojnega pisanja (doublewrite), ki so bili izvedeni."
-
-#: libraries/messages.inc.php:106
-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 ""
-"Število čakanj, ki smo jih imeli, ker je bil medpomnilnik dnevnika premajhen "
-"in je bilo potrebno počakati, da se pred nadaljevanjem izplakne."
-
-#: libraries/messages.inc.php:107
-msgid "The number of log write requests."
-msgstr "Število zahtev pisanja v dnevnik."
-
-#: libraries/messages.inc.php:108
-msgid "The number of physical writes to the log file."
-msgstr "Število fizičnih pisanj v dnevniško datoteko."
-
-#: libraries/messages.inc.php:109
-msgid "The number of fsync() writes done to the log file."
-msgstr "Število pisanj fsync() storjenih v dnevniško datoteko."
-
-#: libraries/messages.inc.php:110
-msgid "The number of pending log file fsyncs."
-msgstr "Število čakajoče dnevniške datoteke fsyncs."
-
-#: libraries/messages.inc.php:111
-msgid "Pending log file writes."
-msgstr "Čakajoča pisanja v dnevniško datoteko."
-
-#: libraries/messages.inc.php:112
-msgid "The number of bytes written to the log file."
-msgstr "Število bajtov zapisanih v dnevniško datoteko."
-
-#: libraries/messages.inc.php:113
-msgid "The number of pages created."
-msgstr "Število ustvarjenih strani."
-
-#: libraries/messages.inc.php:114
-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 ""
-"Vgrajena velikost strani InnoDB (privzeto 16 KB). Veliko vrednosti je štetih "
-"v straneh; velikost strani omogoča preprosto pretvorbo v bajte."
-
-#: libraries/messages.inc.php:115
-msgid "The number of pages read."
-msgstr "Število prebranih strani."
-
-#: libraries/messages.inc.php:116
-msgid "The number of pages written."
-msgstr "Število zapisanih strani."
-
-#: libraries/messages.inc.php:117
-msgid "The number of row locks currently being waited for."
-msgstr "Število zaklepov vrstic, na katere se trenutno čaka."
-
-#: libraries/messages.inc.php:118
-msgid "The average time to acquire a row lock, in milliseconds."
-msgstr "Povprečni čas zagotovitve zaklepa vrstice, v milisekundah."
-
-#: libraries/messages.inc.php:119
-msgid "The total time spent in acquiring row locks, in milliseconds."
-msgstr "Skupni čas zagotavljanja zaklepov vrstic, v milisekundah."
-
-#: libraries/messages.inc.php:120
-msgid "The maximum time to acquire a row lock, in milliseconds."
-msgstr "Najdaljši čas zagotavljanja zaklepa vrstice, v milisekundah."
-
-#: libraries/messages.inc.php:121
-msgid "The number of times a row lock had to be waited for."
-msgstr "Število čakanj na zaklepe vrstic."
-
-#: libraries/messages.inc.php:122
-msgid "The number of rows deleted from InnoDB tables."
-msgstr "Število vrstic izbrisanih iz tabel InnoDB."
-
-#: libraries/messages.inc.php:123
-msgid "The number of rows inserted in InnoDB tables."
-msgstr "Število vrstic vstavljenih v tabele InnoDB."
-
-#: libraries/messages.inc.php:124
-msgid "The number of rows read from InnoDB tables."
-msgstr "Število vrstic prebranih iz tabel InnoDB."
-
-#: libraries/messages.inc.php:125
-msgid "The number of rows updated in InnoDB tables."
-msgstr "Število vrstic posodobljenih v tabelah InnoDB."
-
-#: libraries/messages.inc.php:126
-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/messages.inc.php:127
-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/messages.inc.php:128
-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/messages.inc.php:129
-msgid "The number of requests to read a key block from the cache."
-msgstr ""
-
-#: libraries/messages.inc.php:130
-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/messages.inc.php:131
-msgid "The number of requests to write a key block to the cache."
-msgstr ""
-
-#: libraries/messages.inc.php:132
-msgid "The number of physical writes of a key block to disk."
-msgstr ""
-
-#: libraries/messages.inc.php:133
-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/messages.inc.php:134
-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/messages.inc.php:135
-msgid ""
-"The number of tables that have been opened. If opened tables is big, your "
-"table cache value is probably too small."
-msgstr ""
-"Število odprtih tabel. Če je vrednost velika, je vaš predpomnilnik tabel "
-"najverjetneje premajhen."
-
-#: libraries/messages.inc.php:136
-msgid "The number of files that are open."
-msgstr "Število odprtih datotek."
-
-#: libraries/messages.inc.php:137
-msgid "The number of streams that are open (used mainly for logging)."
-msgstr "Število odprtih tokov (uporabljenih v glavnem za beleženje)."
-
-#: libraries/messages.inc.php:138
-msgid "The number of tables that are open."
-msgstr "Število odprtih tabel."
-
-#: libraries/messages.inc.php:139
-msgid "The number of free memory blocks in query cache."
-msgstr "Število prostih spominskih blokov v predpomnilniku poizvedb."
-
-#: libraries/messages.inc.php:140
-msgid "The amount of free memory for query cache."
-msgstr "Količina prostega spomina za predpomnilnik poizvedb."
-
-#: libraries/messages.inc.php:141
-msgid "The number of cache hits."
-msgstr "Število zadetkov predpomnilnika."
-
-#: libraries/messages.inc.php:142
-msgid "The number of queries added to the cache."
-msgstr "Število poizvedb dodanih v predpomnilnik."
-
-#: libraries/messages.inc.php:143
-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 "
-"cache size. The query cache uses a least recently used (LRU) strategy to "
-"decide which queries to remove from the cache."
-msgstr ""
-"Število poizvedb, ki so bile izbrisane iz predpomnilnika, da se sprosti "
-"spomin za predpomnenje novih poizvedb. Ta informacija lahko pomaga pri "
-"uravnavanju velikosti predpomnilnika poizvedb. Predpomnilnik poizvedb "
-"uporablja strategijo nedavno najmanj uporabljanih (LRU), da odloči, katere "
-"poizvedbe naj odstrani iz predpomnilnika."
-
-#: libraries/messages.inc.php:144
-msgid ""
-"The number of non-cached queries (not cachable, or not cached due to the "
-"query_cache_type setting)."
-msgstr ""
-"Število nepredpomnjenih poizvedb (ne predpomnljive ali ne predpomnjene "
-"zaradi nastavitve query_cache_type)."
-
-#: libraries/messages.inc.php:145
-msgid "The number of queries registered in the cache."
-msgstr "Število zabeleženih poizvedb v predpomnilniku."
-
-#: libraries/messages.inc.php:146
-msgid "The total number of blocks in the query cache."
-msgstr "Skupno število blokov v predpomnilniku poizvedb."
-
-#: libraries/messages.inc.php:147
-msgctxt "$strShowStatusReset"
-msgid "Reset"
-msgstr "Ponastavi"
-
-#: libraries/messages.inc.php:148
-msgid "The status of failsafe replication (not yet implemented)."
-msgstr ""
-
-#: libraries/messages.inc.php:149
-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/messages.inc.php:150
-msgid "The number of joins that used a range search on a reference table."
-msgstr ""
-
-#: libraries/messages.inc.php:151
-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/messages.inc.php:152
-msgid ""
-"The number of joins that used ranges on the first table. (It's normally not "
-"critical even if this is big.)"
-msgstr ""
-
-#: libraries/messages.inc.php:153
-msgid "The number of joins that did a full scan of the first table."
-msgstr ""
-
-#: libraries/messages.inc.php:154
-msgid "The number of temporary tables currently open by the slave SQL thread."
-msgstr ""
-
-#: libraries/messages.inc.php:155
-msgid ""
-"Total (since startup) number of times the replication slave SQL thread has "
-"retried transactions."
-msgstr ""
-
-#: libraries/messages.inc.php:156
-msgid "This is ON if this server is a slave that is connected to a master."
-msgstr ""
-
-#: libraries/messages.inc.php:157
-msgid ""
-"The number of threads that have taken more than slow_launch_time seconds to "
-"create."
-msgstr ""
-"Število niti, ki so za svoje ustvarjanje porabile več kot slow_launch_time "
-"sekund."
-
-#: libraries/messages.inc.php:158
-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/messages.inc.php:159
-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/messages.inc.php:160
-msgid "The number of sorts that were done with ranges."
-msgstr "Število razvrščanj, ki so bila storjena z razponi."
-
-#: libraries/messages.inc.php:161
-msgid "The number of sorted rows."
-msgstr "Število razvrščenih vrstic."
-
-#: libraries/messages.inc.php:162
-msgid "The number of sorts that were done by scanning the table."
-msgstr "Število razvrščanj, ki so bila storjena s pregledovanjem tabele."
-
-#: libraries/messages.inc.php:163
-msgid "The number of times that a table lock was acquired immediately."
-msgstr "Koliko krat je bil zaklep tabele pridobljen takoj."
-
-#: libraries/messages.inc.php:164
-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 "
-"should first optimize your queries, and then either split your table or "
-"tables or use replication."
-msgstr ""
-
-#: libraries/messages.inc.php:165
-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/messages.inc.php:166
-msgid "The number of currently open connections."
-msgstr "Število trenutno odprtih povezav."
-
-#: libraries/messages.inc.php:167
-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 "
-"doesn't give a notable performance improvement if you have a good thread "
-"implementation.)"
-msgstr ""
-
-#: libraries/messages.inc.php:168
-msgid "The number of threads that are not sleeping."
-msgstr "Število niti, ki ne spijo."
-
#: libraries/mult_submits.inc.php:76 libraries/tbl_properties.inc.php:513
#: tbl_structure.php:29 tbl_structure.php:153 tbl_structure.php:157
#: tbl_structure.php:473
@@ -4271,8 +3476,8 @@ msgstr ""
#: libraries/replication_gui.lib.php:55 libraries/replication_gui.lib.php:56
#: libraries/replication_gui.lib.php:249 libraries/replication_gui.lib.php:252
-#: libraries/replication_gui.lib.php:259 server_privileges.php:672
-#: server_privileges.php:675 server_privileges.php:682
+#: libraries/replication_gui.lib.php:259 server_privileges.php:711
+#: server_privileges.php:714 server_privileges.php:721
#: server_synchronize.php:1171
msgid "User name"
msgstr "Uporabniško ime"
@@ -4290,11 +3495,11 @@ msgid "Slave status"
msgstr "Stanje podrejenca"
#: libraries/replication_gui.lib.php:114 libraries/sql_query_form.lib.php:445
-#: server_status.php:626 server_variables.php:52
+#: server_status.php:737 server_variables.php:52
msgid "Variable"
msgstr "Spremenljivka"
-#: libraries/replication_gui.lib.php:115 server_status.php:627
+#: libraries/replication_gui.lib.php:115 server_status.php:738
#: tbl_change.php:324 tbl_printview.php:370 tbl_select.php:139
#: tbl_structure.php:729
msgid "Value"
@@ -4316,34 +3521,34 @@ msgstr ""
msgid "Add slave replication user"
msgstr "Dodaj uporabnika podvojevanja podrejencev"
-#: libraries/replication_gui.lib.php:254 server_privileges.php:677
+#: libraries/replication_gui.lib.php:254 server_privileges.php:716
msgid "Any user"
msgstr "Kateri koli uporabnik"
#: libraries/replication_gui.lib.php:255 libraries/replication_gui.lib.php:323
-#: libraries/replication_gui.lib.php:346 server_privileges.php:678
-#: server_privileges.php:745 server_privileges.php:769
-#: server_privileges.php:1889 server_privileges.php:1919
+#: libraries/replication_gui.lib.php:346 server_privileges.php:717
+#: server_privileges.php:784 server_privileges.php:808
+#: server_privileges.php:1928 server_privileges.php:1958
msgid "Use text field"
msgstr "Uporabi besedilno polje"
-#: libraries/replication_gui.lib.php:302 server_privileges.php:725
+#: libraries/replication_gui.lib.php:302 server_privileges.php:764
msgid "Any host"
msgstr "Kateri koli gostitelj"
-#: libraries/replication_gui.lib.php:306 server_privileges.php:729
+#: libraries/replication_gui.lib.php:306 server_privileges.php:768
msgid "Local"
msgstr "Lokalno"
-#: libraries/replication_gui.lib.php:312 server_privileges.php:734
+#: libraries/replication_gui.lib.php:312 server_privileges.php:773
msgid "This Host"
msgstr "Ta strežnik"
-#: libraries/replication_gui.lib.php:318 server_privileges.php:740
+#: libraries/replication_gui.lib.php:318 server_privileges.php:779
msgid "Use Host Table"
msgstr "Uporabi tabelo gostiteljev"
-#: libraries/replication_gui.lib.php:331 server_privileges.php:753
+#: libraries/replication_gui.lib.php:331 server_privileges.php:792
msgid ""
"When Host table is used, this field is ignored and values stored in Host "
"table are used instead."
@@ -4351,8 +3556,25 @@ msgstr ""
"Ko je uporabljena tabela Host, je to polje prezrto in so namesto njega "
"uporabljene vrednosti shranjene v tabeli Host."
-#: libraries/select_lang.lib.php:480 libraries/select_lang.lib.php:486
-#: libraries/select_lang.lib.php:492
+#. l10n: Text direction, use either ltr or rtl
+#: libraries/select_lang.lib.php:491
+msgid "ltr"
+msgstr "ltr"
+
+#: libraries/select_lang.lib.php:493
+msgid "Content of table __TABLE__"
+msgstr "Vsebina tabele __TABLE__"
+
+#: libraries/select_lang.lib.php:494
+msgid "(continued)"
+msgstr "(nadaljevanje)"
+
+#: libraries/select_lang.lib.php:495
+msgid "Structure of table __TABLE__"
+msgstr "Struktura tabele __TABLE__"
+
+#: libraries/select_lang.lib.php:500 libraries/select_lang.lib.php:506
+#: libraries/select_lang.lib.php:512
#, php-format
msgid "Unknown language: %1$s."
msgstr "Neznani jezik: %1$s."
@@ -4363,7 +3585,7 @@ msgid "Servers"
msgstr "Strežniki"
#: libraries/server_links.inc.php:53 server_engines.php:112
-#: server_engines.php:116 server_status.php:304 test/theme.php:105
+#: server_engines.php:116 server_status.php:415 test/theme.php:105
msgid "Variables"
msgstr "Spremenljivke"
@@ -4376,7 +3598,7 @@ msgid "Engines"
msgstr "Pogoni"
#: libraries/server_links.inc.php:76 server_binlog.php:110
-#: server_status.php:253 test/theme.php:121
+#: server_status.php:364 test/theme.php:121
msgid "Binary log"
msgstr "Dvojiški dnevnik"
@@ -4797,8 +4019,8 @@ msgstr "Ponastavi"
msgid "Protocol version"
msgstr "Različica protokola"
-#: main.php:189 server_privileges.php:1350 server_privileges.php:1497
-#: server_privileges.php:1611 server_privileges.php:2029
+#: main.php:189 server_privileges.php:1389 server_privileges.php:1536
+#: server_privileges.php:1650 server_privileges.php:2068
#: server_processlist.php:54
msgid "User"
msgstr "Uporabnik"
@@ -5182,7 +4404,7 @@ msgstr "%s podatkovne zbirke so uspešno zavržene."
msgid "Databases statistics"
msgstr "Statistika zbirk podatkov"
-#: server_databases.php:117 server_status.php:260
+#: server_databases.php:117 server_status.php:371
#: setup/lib/messages.inc.php:117
msgid "Tables"
msgstr "Tabele"
@@ -5200,6 +4422,14 @@ msgstr "Podvojevanje podrejencev"
msgid "Jump to database"
msgstr "Pojdi v zbirko podatkov"
+#: server_databases.php:267
+msgid "Not replicated"
+msgstr "Ni podvojeno"
+
+#: server_databases.php:273
+msgid "Replicated"
+msgstr "Podvojeno"
+
#: server_databases.php:289
#, php-format
msgid "Check privileges for database "%s"."
@@ -5233,139 +4463,332 @@ msgstr "Pogoni skladiščenja"
msgid "View dump (schema) of databases"
msgstr "Pokaži povzetek stanja podatkovnih baz"
-#: server_privileges.php:263 server_privileges.php:264
+#: server_privileges.php:24 server_privileges.php:266
+msgid "Includes all privileges except GRANT."
+msgstr "Vsebuje vse privilegije razen GRANT."
+
+#: server_privileges.php:25 server_privileges.php:192
+#: server_privileges.php:515
+msgid "Allows altering the structure of existing tables."
+msgstr "Omogoča spreminjanje strukture obstoječih tabel."
+
+#: server_privileges.php:26 server_privileges.php:208
+#: server_privileges.php:521
+msgid "Allows altering and dropping stored routines."
+msgstr "Omogoča ustvarjanje in brisanje shranjenih rutin."
+
+#: server_privileges.php:27 server_privileges.php:184
+#: server_privileges.php:514
+msgid "Allows creating new databases and tables."
+msgstr "Omogoča ustvarjanje novih podatkovnih zbirk in tabel."
+
+#: server_privileges.php:28 server_privileges.php:207
+#: server_privileges.php:520
+msgid "Allows creating stored routines."
+msgstr "Omogoča ustvarjanje shranjenih rutin."
+
+#: server_privileges.php:29 server_privileges.php:514
+msgid "Allows creating new tables."
+msgstr "Omogoča ustvarjanje novih tabel."
+
+#: server_privileges.php:30 server_privileges.php:195
+#: server_privileges.php:518
+msgid "Allows creating temporary tables."
+msgstr "Omogoča ustvarjanje začasnih tabel."
+
+#: server_privileges.php:31 server_privileges.php:209
+#: server_privileges.php:554
+msgid "Allows creating, dropping and renaming user accounts."
+msgstr "Omogoča ustvarjanje, brisanje in preimenovanje uporabniških računov."
+
+#: server_privileges.php:32 server_privileges.php:199
+#: server_privileges.php:203 server_privileges.php:526
+#: server_privileges.php:530
+msgid "Allows creating new views."
+msgstr "Omogoča ustvarjanje novih pogledov."
+
+#: server_privileges.php:33 server_privileges.php:183
+#: server_privileges.php:506
+msgid "Allows deleting data."
+msgstr "Omogoča brisanje podatkov."
+
+#: server_privileges.php:34 server_privileges.php:185
+#: server_privileges.php:517
+msgid "Allows dropping databases and tables."
+msgstr "Omogoča brisanje podatkovnih zbirk in tabel."
+
+#: server_privileges.php:35 server_privileges.php:517
+msgid "Allows dropping tables."
+msgstr "Omogoča brisanje tabel."
+
+#: server_privileges.php:36 server_privileges.php:200
+#: server_privileges.php:534
+msgid "Allows to set up events for the event scheduler"
+msgstr "Omogoča določanje dogodkov za načrtovalnik dogodkov"
+
+#: server_privileges.php:37 server_privileges.php:210
+#: server_privileges.php:522
+msgid "Allows executing stored routines."
+msgstr "Omogoča izvajanje shranjenih rutin."
+
+#: server_privileges.php:38 server_privileges.php:189
+#: server_privileges.php:509
+msgid "Allows importing data from and exporting data into files."
+msgstr "Omogoča uvažanje in izvažanje podatkov v datoteke."
+
+#: server_privileges.php:39 server_privileges.php:540
+msgid ""
+"Allows adding users and privileges without reloading the privilege tables."
+msgstr ""
+"Omogoča dodajanje uporabnikov in privilegijev brez osveževanja privilegijev."
+
+#: server_privileges.php:40 server_privileges.php:191
+#: server_privileges.php:516
+msgid "Allows creating and dropping indexes."
+msgstr "Omogoča ustvarjanje in brisanje indeksov."
+
+#: server_privileges.php:41 server_privileges.php:181
+#: server_privileges.php:442 server_privileges.php:504
+msgid "Allows inserting and replacing data."
+msgstr "Omogoča vstavljanje in zamenjavo podatkov."
+
+#: server_privileges.php:42 server_privileges.php:196
+#: server_privileges.php:549
+msgid "Allows locking tables for the current thread."
+msgstr "Omogoča zaklepanje tabel za trenutno temo."
+
+#: server_privileges.php:43 server_privileges.php:646
+#: server_privileges.php:648
+msgid "Limits the number of new connections the user may open per hour."
+msgstr "Omeji število povezav, ki jih uporabnik lahko odpre v eni uri."
+
+#: server_privileges.php:44 server_privileges.php:634
+#: server_privileges.php:636
+msgid "Limits the number of queries the user may send to the server per hour."
+msgstr ""
+"Omeji število poizved, ki jih uporabnik lahko pošlje strežniku v eni uri."
+
+#: server_privileges.php:45 server_privileges.php:640
+#: server_privileges.php:642
+msgid ""
+"Limits the number of commands that change any table or database the user may "
+"execute per hour."
+msgstr ""
+"Omeji število ukazov za spremembo tabel ali podatkovne zbirke, ki jih "
+"uporabnik lahko izvrši v eni uri."
+
+#: server_privileges.php:46 server_privileges.php:652
+#: server_privileges.php:654
+msgid "Limits the number of simultaneous connections the user may have."
+msgstr "Omeji število sočasnih povezav, ki jih lahko ima uporabnik."
+
+#: server_privileges.php:47 server_privileges.php:188
+#: server_privileges.php:544
+msgid "Allows viewing processes of all users"
+msgstr "Omogoča ogled procesov vseh uporabnikov"
+
+#: server_privileges.php:48 server_privileges.php:190
+#: server_privileges.php:448 server_privileges.php:550
+msgid "Has no effect in this MySQL version."
+msgstr "V tej različici MySQL nima pomena."
+
+#: server_privileges.php:49 server_privileges.php:186
+#: server_privileges.php:545
+msgid "Allows reloading server settings and flushing the server's caches."
+msgstr ""
+"Omogoča osveževanje strežnikovih nastavitev in praznjenje strežnikovih "
+"predpomnilnikov."
+
+#: server_privileges.php:50 server_privileges.php:198
+#: server_privileges.php:552
+msgid "Allows the user to ask where the slaves / masters are."
+msgstr ""
+"Da uporabniku pravico poizvedovati kje so njegovi nadrejeni / podrjeni "
+"strežniki."
+
+#: server_privileges.php:51 server_privileges.php:197
+#: server_privileges.php:553
+msgid "Needed for the replication slaves."
+msgstr "Potrebno za podrejene strežnike pri replikaciji."
+
+#: server_privileges.php:52 server_privileges.php:180
+#: server_privileges.php:439 server_privileges.php:503
+msgid "Allows reading data."
+msgstr "Omogoča branje podatkov."
+
+#: server_privileges.php:53 server_privileges.php:193
+#: server_privileges.php:547
+msgid "Gives access to the complete list of databases."
+msgstr "Omogoča dostop do popolnega spiska podatkovnih zbirk."
+
+#: server_privileges.php:54 server_privileges.php:204
+#: server_privileges.php:206 server_privileges.php:519
+msgid "Allows performing SHOW CREATE VIEW queries."
+msgstr "Omogoča izvajanje poizvedb SHOW CREATE VIEW."
+
+#: server_privileges.php:55 server_privileges.php:187
+#: server_privileges.php:546
+msgid "Allows shutting down the server."
+msgstr "Omogoča ugašanje strežnika."
+
+#: server_privileges.php:56 server_privileges.php:194
+#: server_privileges.php:543
+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 ""
+"Omogoča priklaplanje tudi če je že doseženo največje dovoljeno število "
+"priklopov; Potrebno za večino administrativnih nalog kot sta postavljanje "
+"globalnih spremenljivk in ukinjanje procesov drugih uporabnikov."
+
+#: server_privileges.php:57 server_privileges.php:201
+#: server_privileges.php:535
+msgid "Allows creating and dropping triggers"
+msgstr "Omogoča ustvarjanje in brisanje sprožilcev"
+
+#: server_privileges.php:58 server_privileges.php:182
+#: server_privileges.php:445 server_privileges.php:505
+msgid "Allows changing data."
+msgstr "Omogoča spreminjanje podatkov."
+
+#: server_privileges.php:59 server_privileges.php:260
+msgid "No privileges."
+msgstr "Brez privilegijev."
+
+#: server_privileges.php:302 server_privileges.php:303
msgctxt "None privileges"
msgid "None"
msgstr "Brez"
-#: server_privileges.php:392 server_privileges.php:527
-#: server_privileges.php:1679 server_privileges.php:1685
+#: server_privileges.php:431 server_privileges.php:566
+#: server_privileges.php:1718 server_privileges.php:1724
msgid "Table-specific privileges"
msgstr "Privilegiji tipični za tabelo"
-#: server_privileges.php:393 server_privileges.php:535
-#: server_privileges.php:1501
+#: server_privileges.php:432 server_privileges.php:574
+#: server_privileges.php:1540
msgid " Note: MySQL privilege names are expressed in English "
msgstr " Opomba: Imena privilegijev MySQL so zapisana v angleščini "
-#: server_privileges.php:524 server_privileges.php:1500
+#: server_privileges.php:563 server_privileges.php:1539
msgid "Global privileges"
msgstr "Globalni privilegiji"
-#: server_privileges.php:526 server_privileges.php:1679
+#: server_privileges.php:565 server_privileges.php:1718
msgid "Database-specific privileges"
msgstr "Privilegiji tipični za podatkovno zbirko"
-#: server_privileges.php:571
+#: server_privileges.php:610
msgid "Administration"
msgstr "Administracija"
-#: server_privileges.php:591
+#: server_privileges.php:630
msgid "Resource limits"
msgstr "Omejitve virov"
-#: server_privileges.php:592
+#: server_privileges.php:631
msgid "Note: Setting these options to 0 (zero) removes the limit."
msgstr ""
"Obvestilo: Če postavite vrednost na 0 (nič), boste odstranili omejitev."
-#: server_privileges.php:669
+#: server_privileges.php:708
msgid "Login Information"
msgstr "Podatki o prijavi"
-#: server_privileges.php:763
+#: server_privileges.php:802
msgid "Do not change the password"
msgstr "Ne spreminjaj gesla"
-#: server_privileges.php:804 server_privileges.php:2166
+#: server_privileges.php:843 server_privileges.php:2205
msgid "No user found."
msgstr "Najden ni bil noben uporabnik."
-#: server_privileges.php:848
+#: server_privileges.php:887
#, php-format
msgid "The user %s already exists!"
msgstr "Uporabnik %s že obstaja!"
-#: server_privileges.php:931
+#: server_privileges.php:970
msgid "You have added a new user."
msgstr "Dodali ste novega uporabnika."
-#: server_privileges.php:1152
+#: server_privileges.php:1191
#, php-format
msgid "You have updated the privileges for %s."
msgstr "Posodobili ste privilegije za %s."
-#: server_privileges.php:1176
+#: server_privileges.php:1215
#, php-format
msgid "You have revoked the privileges for %s"
msgstr "Odvzeli ste privilegije za %s"
-#: server_privileges.php:1212
+#: server_privileges.php:1251
#, php-format
msgid "The password for %s was changed successfully."
msgstr "Geslo za %s je uspešno spremenjeno."
-#: server_privileges.php:1232
+#: server_privileges.php:1271
#, php-format
msgid "Deleting %s"
msgstr "Brišem %s"
-#: server_privileges.php:1243
+#: server_privileges.php:1282
msgid "No users selected for deleting!"
msgstr "Ni izbranih uporabnikov za brisanje!"
-#: server_privileges.php:1246
+#: server_privileges.php:1285
msgid "Reloading the privileges"
msgstr "Osvežujem privilegije"
-#: server_privileges.php:1261
+#: server_privileges.php:1300
msgid "The selected users have been deleted successfully."
msgstr "Uspešno sem izbrisal izbrane uporabnike."
-#: server_privileges.php:1296
+#: server_privileges.php:1335
msgid "The privileges were reloaded successfully."
msgstr "Uspešno sem osvežil privilegije."
-#: server_privileges.php:1324 server_privileges.php:1610
+#: server_privileges.php:1363 server_privileges.php:1649
msgid "Edit Privileges"
msgstr "Uredi privilegije"
-#: server_privileges.php:1333
+#: server_privileges.php:1372
msgid "Revoke"
msgstr "Odvzemi"
-#: server_privileges.php:1365
+#: server_privileges.php:1404
msgid "User overview"
msgstr "Pregled uporabnikov"
-#: server_privileges.php:1502 server_privileges.php:1684
-#: server_privileges.php:2033
+#: server_privileges.php:1541 server_privileges.php:1723
+#: server_privileges.php:2072
msgid "Grant"
msgstr "Dovoli"
-#: server_privileges.php:1521 server_privileges.php:2123
+#: server_privileges.php:1560 server_privileges.php:2162
msgid "Any"
msgstr "Kateri koli"
-#: server_privileges.php:1570 server_privileges.php:1594
-#: server_privileges.php:1988 server_privileges.php:2177
+#: server_privileges.php:1609 server_privileges.php:1633
+#: server_privileges.php:2027 server_privileges.php:2216
msgid "Add a new User"
msgstr "Dodaj novega uporabnika"
-#: server_privileges.php:1575
+#: server_privileges.php:1614
msgid "Remove selected users"
msgstr "Izbriši izbrane uporabnike"
-#: server_privileges.php:1578
+#: server_privileges.php:1617
msgid "Revoke all active privileges from the users and delete them afterwards."
msgstr "Odvzemi uporabnikom aktivne privilegije in jih potem izbriši."
-#: server_privileges.php:1579 server_privileges.php:1580
-#: server_privileges.php:1581
+#: server_privileges.php:1618 server_privileges.php:1619
+#: server_privileges.php:1620
msgid "Drop the databases that have the same names as the users."
msgstr "Izbriši podatkovne zbirke, ki imajo enako ime kot uporabniki."
-#: server_privileges.php:1597
+#: server_privileges.php:1636
#, php-format
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
@@ -5378,50 +4801,50 @@ msgstr ""
"jih uporablja strežnik, če so bile tabele ročno spremenjene. V tem primeru "
"morate pred nadaljevanjem %sosvežiti privilegije%s."
-#: server_privileges.php:1645
+#: server_privileges.php:1684
msgid "The selected user was not found in the privilege table."
msgstr "Izbranega uporabnika v tabelah privilegijev nisem našel."
-#: server_privileges.php:1685
+#: server_privileges.php:1724
msgid "Column-specific privileges"
msgstr "Privilegiji tipični za stolpec"
-#: server_privileges.php:1886
+#: server_privileges.php:1925
msgid "Add privileges on the following database"
msgstr "Dodaj privilegije na naslednji podatkovni zbirki"
-#: server_privileges.php:1904
+#: server_privileges.php:1943
msgid "Wildcards % and _ should be escaped with a \\ to use them literally"
msgstr ""
"Pred nadomestna znaka % in _ je potrebno postaviti \\, če ju želite "
"uporabiti dobesedno."
-#: server_privileges.php:1907
+#: server_privileges.php:1946
msgid "Add privileges on the following table"
msgstr "Dodaj privilegije na naslednji tabeli"
-#: server_privileges.php:1964
+#: server_privileges.php:2003
msgid "Change Login Information / Copy User"
msgstr "Spremeni prijavne informacije / Kopiraj uporabnika"
-#: server_privileges.php:1967
+#: server_privileges.php:2006
msgid "Create a new user with the same privileges and ..."
msgstr "Ustvari novega uporabnika z enakimi pravicami in ..."
-#: server_privileges.php:1969
+#: server_privileges.php:2008
msgid "... keep the old one."
msgstr "... obdrži starega."
-#: server_privileges.php:1970
+#: server_privileges.php:2009
msgid " ... delete the old one from the user tables."
msgstr " ... izbriši starega s seznama uporabnikov."
-#: server_privileges.php:1971
+#: server_privileges.php:2010
msgid ""
" ... revoke all active privileges from the old one and delete it afterwards."
msgstr " ... prekliči vse aktivne pravice starega uporabnika ter jih izbriši."
-#: server_privileges.php:1972
+#: server_privileges.php:2011
msgid ""
" ... delete the old one from the user tables and reload the privileges "
"afterwards."
@@ -5429,43 +4852,43 @@ msgstr ""
" ... izbriši starega uporabnika s seznama uporabnikov ter ponovno naloži "
"njegove pravice."
-#: server_privileges.php:1994
+#: server_privileges.php:2033
msgid "Database for user"
msgstr "Podatkovna zbirka za uporabnika"
-#: server_privileges.php:1998
+#: server_privileges.php:2037
msgctxt "Create none database for user"
msgid "None"
msgstr "Nobena"
-#: server_privileges.php:1999
+#: server_privileges.php:2038
msgid "Create database with same name and grant all privileges"
msgstr "Ustvari zbirko podatkov z enakim imenom in dodeli vse privilegije"
-#: server_privileges.php:2000
+#: server_privileges.php:2039
msgid "Grant all privileges on wildcard name (username\\_%)"
msgstr ""
"Dodeli vse privilegije na imenu z nadomestnim znakom (uporabniskoime\\_%)"
-#: server_privileges.php:2003
+#: server_privileges.php:2042
#, php-format
msgid "Grant all privileges on database "%s""
msgstr "Dodeli vse privilegije za podatkovno zbirko "%s""
-#: server_privileges.php:2026
+#: server_privileges.php:2065
#, php-format
msgid "Users having access to "%s""
msgstr "Uporabniški dostop do "%s""
-#: server_privileges.php:2134
+#: server_privileges.php:2173
msgid "global"
msgstr "globalno"
-#: server_privileges.php:2136
+#: server_privileges.php:2175
msgid "database-specific"
msgstr "glede na zbirko podatkov"
-#: server_privileges.php:2138
+#: server_privileges.php:2177
msgid "wildcard"
msgstr "nadomestni znak"
@@ -5514,7 +4937,7 @@ msgid "This server is configured as master in a replication process."
msgstr ""
"Ta strežnik je konfiguriran kot glavni strežnik v postopku podvojevanja."
-#: server_replication.php:184 server_status.php:281
+#: server_replication.php:184 server_status.php:392
msgid "Show master status"
msgstr "Pokaži stanje glavnega strežnika"
@@ -5666,81 +5089,666 @@ msgstr ""
"Ta strežnik ni konfiguriran kot podrejenec v postopku podvojevanja. Ali ga "
"želite konfigurirati?"
+#: server_status.php:40
+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 ""
+"Število transakcij, ki so uporabile začasni predpomnilnik dvojiškega "
+"dnevnika, vendar je ta presegel vrednost binlog_cache_size, zato so bile za "
+"shranitev izjav iz transakcije uporabljene začasne datoteke."
+
+#: server_status.php:41
+msgid "The number of transactions that used the temporary binary log cache."
+msgstr ""
+"Število transakcij, ki so uporabile začasni predpomnilnik dvojiškega "
+"dnevnika."
+
+#: server_status.php:42
+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 "
+"to increase the tmp_table_size value to cause temporary tables to be memory-"
+"based instead of disk-based."
+msgstr ""
+"Število začasnih tabel na disku, ki jih je strežnik samodejno ustvaril med "
+"izvajanjem izjav. Če je Created_tmp_disk_tables velika, boste morda želeli "
+"povečati vrednost tmp_table_size, zaradi česar bodo začasne tabele temeljile "
+"na pomnilniku namesto na disku."
+
+#: server_status.php:43
+msgid "How many temporary files mysqld has created."
+msgstr "Koliko začasnih datotek je ustvaril mysqld."
+
+#: server_status.php:44
+msgid ""
+"The number of in-memory temporary tables created automatically by the server "
+"while executing statements."
+msgstr ""
+"Število začasnih tabel v-pomnilniku, ki jih je strežnik samodejno ustvaril "
+"med izvajanjem stavkov."
+
+#: server_status.php:45
+msgid ""
+"The number of rows written with INSERT DELAYED for which some error occurred "
+"(probably duplicate key)."
+msgstr ""
+"Število vrstic zapisanih z INSERT DELAYED, pri katerih je prišlo do neke "
+"napake (najverjetneje podvojen ključ)."
+
#: server_status.php:46
+msgid ""
+"The number of INSERT DELAYED handler threads in use. Every different table "
+"on which one uses INSERT DELAYED gets its own thread."
+msgstr ""
+"Število upravljalnih niti INSERT DELAYED v uporabi. Vsaka različna tabela, "
+"na kateri se uporabi INSERT DELAYED, dobi svojo lastno nit."
+
+#: server_status.php:47
+msgid "The number of INSERT DELAYED rows written."
+msgstr "Število zapisanih vrstic INSERT DELAYED."
+
+#: server_status.php:48
+msgid "The number of executed FLUSH statements."
+msgstr "Število izvedenih izjav FLUSH."
+
+#: server_status.php:49
+msgid "The number of internal COMMIT statements."
+msgstr "Število notranjih izjav COMMIT."
+
+#: server_status.php:50
+msgid "The number of times a row was deleted from a table."
+msgstr "Število izbrisov vrstice iz tabele."
+
+#: server_status.php:51
+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 ""
+"Strežnik MySQL lahko vpraša skladiščni pogon NDB Cluster, če ve za tabelo z "
+"navedenim imenom. Temu se reče odkritje. Handler_discover kaže koliko krat "
+"so bile tabele odkrite."
+
+#: server_status.php:52
+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 ""
+"Koliko krat je bil prvi vnos prebran iz indeksa. Če je vrednost visoka, "
+"kaže, da strežnik izvaja mnogo pregledov indeksa; na primer: SELECT col1 "
+"FROM foo, pri čemer se predpostavlja, da je col1 indeksiran."
+
+#: server_status.php:53
+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 ""
+"Število zahtev za branje vrstice temelječih na ključu. Če je ta vrednost "
+"visoka, je to dober znak, da so vaše poizvedbe in tabele primerno "
+"indeksirane."
+
+#: server_status.php:54
+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 ""
+"Število zahtev za branje naslednje vrstice v zaporedju ključa. To je "
+"povečano, če poizvedujete po indeksnem stolpcu z omejitvijo obsega ali če "
+"pregledujete indeks."
+
+#: server_status.php:55
+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 ""
+"Število poizvedb za branje prejšnje vrstice v zaporedju ključa. Ta postopek "
+"branja se uporablja predvsem za optimizacijo ORDER BY ... DESC."
+
+#: server_status.php:56
+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 "
+"probably have a lot of queries that require MySQL to scan whole tables or "
+"you have joins that don't use keys properly."
+msgstr ""
+"Število zahtev za branje vrstice temelječih na ustaljenem položaju. To je "
+"visoko, če izvajate veliko poizvedb, ki potrebujejo razvrščanje rezultata. "
+"Najverjetneje imate veliko poizvedb, ki od MySQL zahtevajo pregled celotnih "
+"tabel, ali stike, ki ne uporabljajo ključev pravilno."
+
+#: server_status.php:57
+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 "
+"tables are not properly indexed or that your queries are not written to take "
+"advantage of the indexes you have."
+msgstr ""
+"Število zahtev za branje naslednje vrstice v podatkovni datoteki. To je "
+"visoko, če izvajate veliko pregledov tabel. Na splošno to kaže, da vaše "
+"tabele niso primerno indeksirane ali da vaše poizvedbe ne izkoristijo "
+"prednosti indeksov, ki jih imate."
+
+#: server_status.php:58
+msgid "The number of internal ROLLBACK statements."
+msgstr "Število notranjih izjav ROLLBACK."
+
+#: server_status.php:59
+msgid "The number of requests to update a row in a table."
+msgstr "Število zahtev za posodobitev vrstice v tabeli."
+
+#: server_status.php:60
+msgid "The number of requests to insert a row in a table."
+msgstr "Število zahtev za vstavitev vrstice v tabelo."
+
+#: server_status.php:61
+msgid "The number of pages containing data (dirty or clean)."
+msgstr "Število strani, ki vsebujejo podatke (umazane ali čiste)"
+
+#: server_status.php:62
+msgid "The number of pages currently dirty."
+msgstr "Število trenutno umazanih strani."
+
+#: server_status.php:63
+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."
+
+#: server_status.php:64
+msgid "The number of free pages."
+msgstr "Število prostih strani."
+
+#: server_status.php:65
+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 ""
+
+#: server_status.php:66
+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 "
+"be calculated as Innodb_buffer_pool_pages_total - "
+"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data."
+msgstr ""
+
+#: server_status.php:67
+msgid "Total size of buffer pool, in pages."
+msgstr "Skupna velikost zaloge medpomnilnika, v straneh."
+
+#: server_status.php:68
+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 ""
+
+#: server_status.php:69
+msgid ""
+"The number of sequential read-aheads InnoDB initiated. This happens when "
+"InnoDB does a sequential full table scan."
+msgstr ""
+
+#: server_status.php:70
+msgid "The number of logical read requests InnoDB has done."
+msgstr ""
+
+#: server_status.php:71
+msgid ""
+"The number of logical reads that InnoDB could not satisfy from buffer pool "
+"and had to do a single-page read."
+msgstr ""
+
+#: server_status.php:72
+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 "
+"available, it's necessary to wait for pages to be flushed first. This "
+"counter counts instances of these waits. If the buffer pool size was set "
+"properly, this value should be small."
+msgstr ""
+
+#: server_status.php:73
+msgid "The number writes done to the InnoDB buffer pool."
+msgstr "Število zapisov storjenih v zalogi medpomnilnika InnoDB."
+
+#: server_status.php:74
+msgid "The number of fsync() operations so far."
+msgstr "Število dozdajšnjih posegov fsync()."
+
+#: server_status.php:75
+msgid "The current number of pending fsync() operations."
+msgstr "Trenutno število čakajočih posegov fsync()."
+
+#: server_status.php:76
+msgid "The current number of pending reads."
+msgstr "Trenutno število čakajočih branj."
+
+#: server_status.php:77
+msgid "The current number of pending writes."
+msgstr "Trenutno število čakajočih pisanj."
+
+#: server_status.php:78
+msgid "The amount of data read so far, in bytes."
+msgstr "Količina do zdaj prebranih podatkov, v bajtih."
+
+#: server_status.php:79
+msgid "The total number of data reads."
+msgstr "Skupno število branj podatkov."
+
+#: server_status.php:80
+msgid "The total number of data writes."
+msgstr "Skupno število zapisovanj podatkov."
+
+#: server_status.php:81
+msgid "The amount of data written so far, in bytes."
+msgstr "Količina do zdaj zapisanih podatkov, v bajtih."
+
+#: server_status.php:82
+msgid "The number of pages that have been written for doublewrite operations."
+msgstr ""
+"Število strani, ki so bile zapisane za posege dvojnega pisanja (doublewrite)."
+
+#: server_status.php:83
+msgid "The number of doublewrite operations that have been performed."
+msgstr "Število posegov dvojnega pisanja (doublewrite), ki so bili izvedeni."
+
+#: server_status.php:84
+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 ""
+"Število čakanj, ki smo jih imeli, ker je bil medpomnilnik dnevnika premajhen "
+"in je bilo potrebno počakati, da se pred nadaljevanjem izplakne."
+
+#: server_status.php:85
+msgid "The number of log write requests."
+msgstr "Število zahtev pisanja v dnevnik."
+
+#: server_status.php:86
+msgid "The number of physical writes to the log file."
+msgstr "Število fizičnih pisanj v dnevniško datoteko."
+
+#: server_status.php:87
+msgid "The number of fsync() writes done to the log file."
+msgstr "Število pisanj fsync() storjenih v dnevniško datoteko."
+
+#: server_status.php:88
+msgid "The number of pending log file fsyncs."
+msgstr "Število čakajoče dnevniške datoteke fsyncs."
+
+#: server_status.php:89
+msgid "Pending log file writes."
+msgstr "Čakajoča pisanja v dnevniško datoteko."
+
+#: server_status.php:90
+msgid "The number of bytes written to the log file."
+msgstr "Število bajtov zapisanih v dnevniško datoteko."
+
+#: server_status.php:91
+msgid "The number of pages created."
+msgstr "Število ustvarjenih strani."
+
+#: server_status.php:92
+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 ""
+"Vgrajena velikost strani InnoDB (privzeto 16 KB). Veliko vrednosti je štetih "
+"v straneh; velikost strani omogoča preprosto pretvorbo v bajte."
+
+#: server_status.php:93
+msgid "The number of pages read."
+msgstr "Število prebranih strani."
+
+#: server_status.php:94
+msgid "The number of pages written."
+msgstr "Število zapisanih strani."
+
+#: server_status.php:95
+msgid "The number of row locks currently being waited for."
+msgstr "Število zaklepov vrstic, na katere se trenutno čaka."
+
+#: server_status.php:96
+msgid "The average time to acquire a row lock, in milliseconds."
+msgstr "Povprečni čas zagotovitve zaklepa vrstice, v milisekundah."
+
+#: server_status.php:97
+msgid "The total time spent in acquiring row locks, in milliseconds."
+msgstr "Skupni čas zagotavljanja zaklepov vrstic, v milisekundah."
+
+#: server_status.php:98
+msgid "The maximum time to acquire a row lock, in milliseconds."
+msgstr "Najdaljši čas zagotavljanja zaklepa vrstice, v milisekundah."
+
+#: server_status.php:99
+msgid "The number of times a row lock had to be waited for."
+msgstr "Število čakanj na zaklepe vrstic."
+
+#: server_status.php:100
+msgid "The number of rows deleted from InnoDB tables."
+msgstr "Število vrstic izbrisanih iz tabel InnoDB."
+
+#: server_status.php:101
+msgid "The number of rows inserted in InnoDB tables."
+msgstr "Število vrstic vstavljenih v tabele InnoDB."
+
+#: server_status.php:102
+msgid "The number of rows read from InnoDB tables."
+msgstr "Število vrstic prebranih iz tabel InnoDB."
+
+#: server_status.php:103
+msgid "The number of rows updated in InnoDB tables."
+msgstr "Število vrstic posodobljenih v tabelah InnoDB."
+
+#: server_status.php:104
+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 ""
+
+#: server_status.php:105
+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 ""
+
+#: server_status.php:106
+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 ""
+
+#: server_status.php:107
+msgid "The number of requests to read a key block from the cache."
+msgstr ""
+
+#: server_status.php:108
+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 ""
+
+#: server_status.php:109
+msgid "The number of requests to write a key block to the cache."
+msgstr ""
+
+#: server_status.php:110
+msgid "The number of physical writes of a key block to disk."
+msgstr ""
+
+#: server_status.php:111
+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 ""
+
+#: server_status.php:112
+msgid "The number of rows waiting to be written in INSERT DELAYED queues."
+msgstr "Število vrstic, ki čakajo na zapis v vrsti INSERT DELAYED."
+
+#: server_status.php:113
+msgid ""
+"The number of tables that have been opened. If opened tables is big, your "
+"table cache value is probably too small."
+msgstr ""
+"Število odprtih tabel. Če je vrednost velika, je vaš predpomnilnik tabel "
+"najverjetneje premajhen."
+
+#: server_status.php:114
+msgid "The number of files that are open."
+msgstr "Število odprtih datotek."
+
+#: server_status.php:115
+msgid "The number of streams that are open (used mainly for logging)."
+msgstr "Število odprtih tokov (uporabljenih v glavnem za beleženje)."
+
+#: server_status.php:116
+msgid "The number of tables that are open."
+msgstr "Število odprtih tabel."
+
+#: server_status.php:117
+msgid "The number of free memory blocks in query cache."
+msgstr "Število prostih spominskih blokov v predpomnilniku poizvedb."
+
+#: server_status.php:118
+msgid "The amount of free memory for query cache."
+msgstr "Količina prostega spomina za predpomnilnik poizvedb."
+
+#: server_status.php:119
+msgid "The number of cache hits."
+msgstr "Število zadetkov predpomnilnika."
+
+#: server_status.php:120
+msgid "The number of queries added to the cache."
+msgstr "Število poizvedb dodanih v predpomnilnik."
+
+#: server_status.php:121
+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 "
+"cache size. The query cache uses a least recently used (LRU) strategy to "
+"decide which queries to remove from the cache."
+msgstr ""
+"Število poizvedb, ki so bile izbrisane iz predpomnilnika, da se sprosti "
+"spomin za predpomnenje novih poizvedb. Ta informacija lahko pomaga pri "
+"uravnavanju velikosti predpomnilnika poizvedb. Predpomnilnik poizvedb "
+"uporablja strategijo nedavno najmanj uporabljanih (LRU), da odloči, katere "
+"poizvedbe naj odstrani iz predpomnilnika."
+
+#: server_status.php:122
+msgid ""
+"The number of non-cached queries (not cachable, or not cached due to the "
+"query_cache_type setting)."
+msgstr ""
+"Število nepredpomnjenih poizvedb (ne predpomnljive ali ne predpomnjene "
+"zaradi nastavitve query_cache_type)."
+
+#: server_status.php:123
+msgid "The number of queries registered in the cache."
+msgstr "Število zabeleženih poizvedb v predpomnilniku."
+
+#: server_status.php:124
+msgid "The total number of blocks in the query cache."
+msgstr "Skupno število blokov v predpomnilniku poizvedb."
+
+#: server_status.php:125
+msgctxt "$strShowStatusReset"
+msgid "Reset"
+msgstr "Ponastavi"
+
+#: server_status.php:126
+msgid "The status of failsafe replication (not yet implemented)."
+msgstr ""
+
+#: server_status.php:127
+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 ""
+
+#: server_status.php:128
+msgid "The number of joins that used a range search on a reference table."
+msgstr ""
+
+#: server_status.php:129
+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 ""
+
+#: server_status.php:130
+msgid ""
+"The number of joins that used ranges on the first table. (It's normally not "
+"critical even if this is big.)"
+msgstr ""
+
+#: server_status.php:131
+msgid "The number of joins that did a full scan of the first table."
+msgstr ""
+
+#: server_status.php:132
+msgid "The number of temporary tables currently open by the slave SQL thread."
+msgstr ""
+
+#: server_status.php:133
+msgid ""
+"Total (since startup) number of times the replication slave SQL thread has "
+"retried transactions."
+msgstr ""
+
+#: server_status.php:134
+msgid "This is ON if this server is a slave that is connected to a master."
+msgstr ""
+
+#: server_status.php:135
+msgid ""
+"The number of threads that have taken more than slow_launch_time seconds to "
+"create."
+msgstr ""
+"Število niti, ki so za svoje ustvarjanje porabile več kot slow_launch_time "
+"sekund."
+
+#: server_status.php:136
+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."
+
+#: server_status.php:137
+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 ""
+
+#: server_status.php:138
+msgid "The number of sorts that were done with ranges."
+msgstr "Število razvrščanj, ki so bila storjena z razponi."
+
+#: server_status.php:139
+msgid "The number of sorted rows."
+msgstr "Število razvrščenih vrstic."
+
+#: server_status.php:140
+msgid "The number of sorts that were done by scanning the table."
+msgstr "Število razvrščanj, ki so bila storjena s pregledovanjem tabele."
+
+#: server_status.php:141
+msgid "The number of times that a table lock was acquired immediately."
+msgstr "Koliko krat je bil zaklep tabele pridobljen takoj."
+
+#: server_status.php:142
+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 "
+"should first optimize your queries, and then either split your table or "
+"tables or use replication."
+msgstr ""
+
+#: server_status.php:143
+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 ""
+
+#: server_status.php:144
+msgid "The number of currently open connections."
+msgstr "Število trenutno odprtih povezav."
+
+#: server_status.php:145
+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 "
+"doesn't give a notable performance improvement if you have a good thread "
+"implementation.)"
+msgstr ""
+
+#: server_status.php:146
+msgid "The number of threads that are not sleeping."
+msgstr "Število niti, ki ne spijo."
+
+#: server_status.php:157
msgid "Runtime Information"
msgstr "Podatki o izvajanju"
-#: server_status.php:250
+#: server_status.php:361
msgid "Handler"
msgstr "Upravljavec"
-#: server_status.php:251
+#: server_status.php:362
msgid "Query cache"
msgstr "Predpomnilnik poizvedb"
-#: server_status.php:252
+#: server_status.php:363
msgid "Threads"
msgstr "Niti"
-#: server_status.php:254
+#: server_status.php:365
msgid "Temporary data"
msgstr "Začasni podatki"
-#: server_status.php:255
+#: server_status.php:366
msgid "Delayed inserts"
msgstr "Zakasnjena vstavljanja"
-#: server_status.php:256
+#: server_status.php:367
msgid "Key cache"
msgstr "Predpomnilnik ključev"
-#: server_status.php:257
+#: server_status.php:368
msgid "Joins"
msgstr "Stiki"
-#: server_status.php:259
+#: server_status.php:370
msgid "Sorting"
msgstr "Razvrščanje"
-#: server_status.php:261
+#: server_status.php:372
msgid "Transaction coordinator"
msgstr "Koordinator transakcij"
-#: server_status.php:271
+#: server_status.php:382
msgid "Flush (close) all tables"
msgstr "Izplakni (zapri) vse tabele"
-#: server_status.php:273
+#: server_status.php:384
msgid "Show open tables"
msgstr "Pokaži odprte tabele"
-#: server_status.php:278
+#: server_status.php:389
msgid "Show slave hosts"
msgstr "Prikaži gostitelje podrejencev"
-#: server_status.php:284
+#: server_status.php:395
msgid "Show slave status"
msgstr "Prikaži stanje podrejencev"
-#: server_status.php:289
+#: server_status.php:400
msgid "Flush query cache"
msgstr "Izplakni predpomnilnik poizvedb"
-#: server_status.php:294
+#: server_status.php:405
msgid "Show processes"
msgstr "Pokaži procese"
-#: server_status.php:344
+#: server_status.php:455
msgctxt "for Show status"
msgid "Reset"
msgstr "Ponastavi"
-#: server_status.php:350
+#: server_status.php:461
#, php-format
msgid "This MySQL server has been running for %s. It started up on %s."
msgstr "Strežnik MySQL deluje že %s. Zagnal se je %s."
-#: server_status.php:360
+#: server_status.php:471
msgid ""
"This MySQL server works as master and slave in replication"
"b> process."
@@ -5748,18 +5756,18 @@ msgstr ""
"Strežnik MySQL deluje kot glavni strežnik in podrejenec v "
"postopku podvojevanja."
-#: server_status.php:362
+#: server_status.php:473
msgid "This MySQL server works as master in replication process."
msgstr ""
"Strežnik MySQL deluje kot glavni strežnik v postopku podvojevanja"
"b>."
-#: server_status.php:364
+#: server_status.php:475
msgid "This MySQL server works as slave in replication process."
msgstr ""
"Strežnik MySQL deluje kot podrejenec v postopku podvojevanja."
-#: server_status.php:366
+#: server_status.php:477
msgid ""
"For further information about replication status on the server, please visit "
"the replication section."
@@ -5767,7 +5775,7 @@ msgstr ""
"Za več informacij o stanju podvojevanja na tem strežniku, prosimo obiščite "
"razdelek o podvojevanju."
-#: server_status.php:383
+#: server_status.php:494
msgid ""
"Server traffic: These tables show the network traffic statistics of "
"this MySQL server since its startup."
@@ -5775,11 +5783,11 @@ msgstr ""
"Promet na strežniku: V teh tabelah je prikazana statistika "
"obremenitve omrežja za ta strežnik MySQL, odkar je bil zagnan."
-#: server_status.php:388
+#: server_status.php:499
msgid "Traffic"
msgstr "Promet"
-#: server_status.php:388
+#: server_status.php:499
msgid ""
"On a busy server, the byte counters may overrun, so those statistics as "
"reported by the MySQL server may be incorrect."
@@ -5787,36 +5795,36 @@ msgstr ""
"Na zaposlenem strežniku lahko števci bajtov naštejejo preveč, zato je ta "
"statistika, kot jo poroča strežnik MySQL, morda napačna."
-#: server_status.php:389 server_status.php:434 server_status.php:497
-#: server_status.php:555
+#: server_status.php:500 server_status.php:545 server_status.php:608
+#: server_status.php:666
msgid "per hour"
msgstr "na uro"
-#: server_status.php:394
+#: server_status.php:505
msgid "Received"
msgstr "Prejeto"
-#: server_status.php:404
+#: server_status.php:515
msgid "Sent"
msgstr "Poslano"
-#: server_status.php:433
+#: server_status.php:544
msgid "Connections"
msgstr "Povezave"
-#: server_status.php:440
+#: server_status.php:551
msgid "max. concurrent connections"
msgstr "Največ sočasnih povezav"
-#: server_status.php:447
+#: server_status.php:558
msgid "Failed attempts"
msgstr "Neuspeli poizkusi"
-#: server_status.php:461
+#: server_status.php:572
msgid "Aborted"
msgstr "Prekinjeno"
-#: server_status.php:490
+#: server_status.php:601
#, php-format
msgid ""
"Query statistics: Since its startup, %s queries have been sent to the "
@@ -5825,19 +5833,19 @@ msgstr ""
"Statistika poizvedbe: Od zagona je bilo strežniku poslanih %s "
"poizvedb."
-#: server_status.php:498
+#: server_status.php:609
msgid "per minute"
msgstr "na minuto"
-#: server_status.php:499
+#: server_status.php:610
msgid "per second"
msgstr "na sekundo"
-#: server_status.php:554
+#: server_status.php:665
msgid "Query type"
msgstr "Vrsta poizvedbe"
-#: server_status.php:721
+#: server_status.php:832
msgid "Replication status"
msgstr "Stanje podvojevanja"
@@ -8106,10 +8114,8 @@ msgid "Propose table structure"
msgstr "Predlagaj strukturo tabele"
#: tbl_structure.php:540
-#, fuzzy
-#| msgid "Add column(s)"
msgid "Add column"
-msgstr "Dodaj stolpec(-ce)"
+msgstr "Dodaj stolpec"
#: tbl_structure.php:554
msgid "At End of Table"
@@ -8319,114 +8325,3 @@ msgstr "Ime VIEW"
#: view_operations.php:93
msgid "Rename view to"
msgstr "Preimenuj pogled v"
-
-#~| msgid "Add new field"
-#~ msgid "Add field"
-#~ msgstr "Dodaj polje"
-
-#~ msgid "Field"
-#~ msgstr "Polje"
-
-#~ msgid "Records"
-#~ msgstr "Zapisi"
-
-#~ msgid "Fields terminated by"
-#~ msgstr "Polja zaključena z"
-
-#~ msgid "Fields"
-#~ msgstr "Polja"
-
-#~ msgid "Add %s field(s)"
-#~ msgstr "Dodaj %s polj(e)"
-
-#~ msgid "Field %s has been dropped"
-#~ msgstr "Polje %s je zavrženo"
-
-#~ msgid "See image/jpeg: inline"
-#~ msgstr "Pokaži sliko/jpeg: vključeno"
-
-#~ msgid "zipped"
-#~ msgstr "zipano"
-
-#~ msgid "gzipped"
-#~ msgstr "gzipano"
-
-#~ msgid "bzipped"
-#~ msgstr "bzipano"
-
-#~ msgid ""
-#~ "Add custom comment into header (\n"
-#~ " splits lines)"
-#~ msgstr ""
-#~ "Dodaj prilagojen komentar v glavo (\n"
-#~ " prelomi vrstice)"
-
-#~ msgid "and"
-#~ msgstr "in"
-
-#~ msgctxt "$strBLOBRepositoryDisabled"
-#~ msgid "Disabled"
-#~ msgstr "Onemogočeno"
-
-#~ msgctxt "$strBLOBRepositoryEnabled"
-#~ msgid "Enabled"
-#~ msgstr "Omogočeno"
-
-#~ msgctxt "$strBLOBRepositoryRepair"
-#~ msgid "Repair"
-#~ msgstr "Popravi"
-
-#~ msgid "Calendar"
-#~ msgstr "Koledar"
-
-#~ msgid "MySQL 4.0 compatible"
-#~ msgstr "Združljivo z MySQL 4.0"
-
-#~ msgid "Could not load default configuration from: \"%1$s\""
-#~ msgstr "Ne morem naložiti privzete konfiguracije iz: \"%1$s\""
-
-#~ msgid "Create an index on %s columns"
-#~ msgstr "Ustvari indeks na %s stolpcih"
-
-#~ msgctxt "$strCreateTableShort"
-#~ msgid "Create table"
-#~ msgstr "Ustvari tabelo"
-
-#~ msgctxt "$strCreateUserDatabaseNone"
-#~ msgid "None"
-#~ msgstr "Nobena"
-
-#~ msgid "Flush the table (\"FLUSH\")"
-#~ msgstr "Počisti tabelo (\"FLUSH\")"
-
-#~ msgid "Invalid server index: \"%s\""
-#~ msgstr "Neveljaven indeks strežnika: \"%s\""
-
-#~ msgctxt "$strMIME_description"
-#~ msgid "Description"
-#~ msgstr "Opis"
-
-#~ msgctxt "$strNoneDefault"
-#~ msgid "None"
-#~ msgstr "Brez"
-
-#~ msgid "Schema of the \"%s\" database - Page %s"
-#~ msgstr "Shema podatkovne zbirke \"%s\" - Stran %s"
-
-#~ msgid "The \"%s\" table doesn't exist!"
-#~ msgstr "Tabela \"%s\" ne obstaja!"
-
-#~ msgid "running on %s"
-#~ msgstr "teče na %s"
-
-#~ msgid "The scale factor is too small to fit the schema on one page"
-#~ msgstr "Faktor povečava je premajhen, da bi spravili shemo na eno stran"
-
-#~ msgid ""
-#~ "Cannot start session without errors, please check errors given in your "
-#~ "PHP and/or webserver log file and configure your PHP installation "
-#~ "properly."
-#~ msgstr ""
-#~ "Ne morem začeti seje brez napak; prosimo, preverite napake v vaši PHP in/"
-#~ "ali strežnikovi dneviški datoteki in primerno konfigurirajte vašo "
-#~ "namestitev PHP."
diff --git a/po/sq.po b/po/sq.po
index 0e761cc58..cc8d0b9ae 100755
--- a/po/sq.po
+++ b/po/sq.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-06-04 16:07-0400\n"
+"POT-Creation-Date: 2010-06-08 12:32-0400\n"
"PO-Revision-Date: 2010-05-19 13:02+0200\n"
"Last-Translator: Laurent \n"
"Language-Team: albanian \n"
@@ -15,11 +15,11 @@ msgstr ""
"X-Generator: Pootle 2.0.1\n"
#: browse_foreigners.php:38 browse_foreigners.php:59
-#: libraries/display_tbl.lib.php:417 server_privileges.php:1475
+#: libraries/display_tbl.lib.php:417 server_privileges.php:1514
msgid "Show all"
msgstr "Shfaqi të gjithë"
-#: browse_foreigners.php:82 libraries/common.lib.php:2304
+#: browse_foreigners.php:82 libraries/common.lib.php:2313
#: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:394
#: libraries/export/pdf.php:147 pdf_schema.php:283 pdf_schema.php:1123
#: pdf_schema.php:1139
@@ -38,8 +38,8 @@ msgstr ""
#: browse_foreigners.php:150 db_structure.php:79 db_structure.php:80
#: db_structure.php:91 db_structure.php:93 db_structure.php:104
-#: db_structure.php:106 libraries/common.lib.php:2822
-#: libraries/common.lib.php:2829 libraries/db_links.inc.php:75
+#: db_structure.php:106 libraries/common.lib.php:2831
+#: libraries/common.lib.php:2838 libraries/db_links.inc.php:75
#: libraries/tbl_links.inc.php:63
msgid "Search"
msgstr "Kërko"
@@ -49,7 +49,7 @@ msgstr "Kërko"
#: db_structure.php:567 js/messages.php:48 libraries/Config.class.php:1046
#: libraries/Theme_Manager.class.php:311
#: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719
-#: libraries/common.lib.php:1333 libraries/common.lib.php:2279
+#: libraries/common.lib.php:1335 libraries/common.lib.php:2288
#: libraries/display_change_password.lib.php:82
#: libraries/display_create_table.lib.php:63
#: libraries/display_export.lib.php:275 libraries/display_import.lib.php:276
@@ -60,9 +60,9 @@ msgstr "Kërko"
#: libraries/sql_query_form.lib.php:552 libraries/tbl_properties.inc.php:782
#: main.php:128 navigation.php:237 pdf_pages.php:292 pdf_pages.php:328
#: pdf_pages.php:530 pmd_pdf.php:116 server_binlog.php:142
-#: server_privileges.php:625 server_privileges.php:1585
-#: server_privileges.php:1932 server_privileges.php:1979
-#: server_privileges.php:2018 server_replication.php:235
+#: server_privileges.php:664 server_privileges.php:1624
+#: server_privileges.php:1971 server_privileges.php:2018
+#: server_privileges.php:2057 server_replication.php:235
#: server_replication.php:318 server_replication.php:341
#: server_synchronize.php:1209 tbl_change.php:330 tbl_change.php:1174
#: tbl_change.php:1211 tbl_indexes.php:254 tbl_operations.php:265
@@ -80,7 +80,7 @@ msgstr "Emri i kyçit"
#: browse_foreigners.php:169 browse_foreigners.php:171
#: server_collations.php:55 server_collations.php:67 server_engines.php:59
-#: server_status.php:628
+#: server_status.php:739
msgid "Description"
msgstr "Përshkrimi"
@@ -121,7 +121,7 @@ msgstr "Emrat e kollonave"
#: libraries/db_structure.lib.php:60 libraries/export/htmlword.php:245
#: libraries/export/latex.php:360 libraries/export/odt.php:297
#: libraries/export/texytext.php:234 libraries/tbl_properties.inc.php:100
-#: pdf_schema.php:1263 pdf_schema.php:1284 server_privileges.php:2031
+#: pdf_schema.php:1263 pdf_schema.php:1284 server_privileges.php:2070
#: tbl_change.php:287 tbl_change.php:314 tbl_printview.php:143
#: tbl_printview.php:313 tbl_select.php:136 tbl_structure.php:178
#: tbl_structure.php:659 tbl_tracking.php:274 tbl_tracking.php:321
@@ -165,9 +165,9 @@ msgstr "Komente"
#: libraries/Index.class.php:386 libraries/export/htmlword.php:322
#: libraries/export/latex.php:430 libraries/export/odt.php:368
#: libraries/export/texytext.php:311 libraries/mult_submits.inc.php:263
-#: pdf_schema.php:1344 server_privileges.php:1529 server_privileges.php:1540
-#: server_privileges.php:1850 server_privileges.php:1855
-#: server_privileges.php:2148 sql.php:132 sql.php:194 tbl_printview.php:229
+#: pdf_schema.php:1344 server_privileges.php:1568 server_privileges.php:1579
+#: server_privileges.php:1889 server_privileges.php:1894
+#: server_privileges.php:2187 sql.php:132 sql.php:194 tbl_printview.php:229
#: tbl_structure.php:350 tbl_tracking.php:337 tbl_tracking.php:342
msgid "No"
msgstr " Jo "
@@ -181,9 +181,9 @@ msgstr " Jo "
#: libraries/mult_submits.inc.php:101 libraries/mult_submits.inc.php:106
#: libraries/mult_submits.inc.php:111 libraries/mult_submits.inc.php:262
#: libraries/mult_submits.inc.php:273 pdf_schema.php:1344
-#: server_databases.php:64 server_privileges.php:1526
-#: server_privileges.php:1540 server_privileges.php:1850
-#: server_privileges.php:1853 server_privileges.php:2148 sql.php:193
+#: server_databases.php:64 server_privileges.php:1565
+#: server_privileges.php:1579 server_privileges.php:1889
+#: server_privileges.php:1892 server_privileges.php:2187 sql.php:193
#: tbl_printview.php:229 tbl_structure.php:40 tbl_structure.php:350
#: tbl_tracking.php:335 tbl_tracking.php:340
msgid "Yes"
@@ -280,7 +280,7 @@ msgstr "Kalo tek databaza e kopjuar"
msgid "BLOB Repository"
msgstr "Repository BLOB"
-#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1350
+#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1352
#: libraries/server_links.inc.php:49 server_processlist.php:59
#: tbl_tracking.php:596 test/theme.php:101
msgid "Status"
@@ -337,8 +337,8 @@ msgstr "Ndrysho faqet PDF"
#: db_printview.php:104 db_tracking.php:72 db_tracking.php:157
#: libraries/db_structure.lib.php:46 libraries/export/xml.php:328
-#: libraries/header.inc.php:126 pdf_pages.php:424 server_privileges.php:1626
-#: server_privileges.php:1682 server_privileges.php:1946
+#: libraries/header.inc.php:126 pdf_pages.php:424 server_privileges.php:1665
+#: server_privileges.php:1721 server_privileges.php:1985
#: server_synchronize.php:423 server_synchronize.php:866 tbl_tracking.php:592
#: test/theme.php:75
msgid "Table"
@@ -439,7 +439,7 @@ msgstr "Fshi"
#: db_qbe.php:370 db_qbe.php:451 db_qbe.php:522 db_qbe.php:553
#: libraries/display_import.lib.php:166 libraries/tbl_properties.inc.php:779
-#: server_privileges.php:258 tbl_change.php:1031 tbl_indexes.php:250
+#: server_privileges.php:297 tbl_change.php:1031 tbl_indexes.php:250
#: tbl_select.php:288
msgid "Or"
msgstr "Ose"
@@ -473,7 +473,7 @@ msgstr "Përdor tabelat"
msgid "SQL query on database %s:"
msgstr "Kërkesë SQL tek databaza %s:"
-#: db_qbe.php:934 libraries/common.lib.php:1223
+#: db_qbe.php:934 libraries/common.lib.php:1225
msgid "Submit Query"
msgstr "Dërgo Query"
@@ -512,7 +512,7 @@ msgstr "%s korrispondon(jnë) tek tabela %s"
#: db_search.php:267 db_structure.php:77 db_structure.php:78
#: db_structure.php:90 db_structure.php:92 db_structure.php:103
-#: db_structure.php:105 libraries/common.lib.php:2824
+#: db_structure.php:105 libraries/common.lib.php:2833
#: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50
#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:467
msgid "Browse"
@@ -559,26 +559,26 @@ msgstr "Tek fusha:"
#: db_structure.php:81 db_structure.php:82 db_structure.php:94
#: db_structure.php:95 db_structure.php:107 db_structure.php:108
-#: libraries/common.lib.php:2823 libraries/sql_query_form.lib.php:334
+#: libraries/common.lib.php:2832 libraries/sql_query_form.lib.php:334
#: libraries/sql_query_form.lib.php:337 libraries/tbl_links.inc.php:76
msgid "Insert"
msgstr "Shto"
#: db_structure.php:83 db_structure.php:96 db_structure.php:109
-#: libraries/common.lib.php:2820 libraries/common.lib.php:2827
+#: libraries/common.lib.php:2829 libraries/common.lib.php:2836
#: libraries/db_links.inc.php:63 libraries/export/htmlword.php:23
#: libraries/export/latex.php:33 libraries/export/latex.php:337
#: libraries/export/odt.php:32 libraries/export/sql.php:60
#: libraries/export/texytext.php:23 libraries/import.lib.php:1104
#: libraries/tbl_links.inc.php:56 pmd_general.php:134
-#: server_privileges.php:554 server_replication.php:315 tbl_tracking.php:269
+#: server_privileges.php:593 server_replication.php:315 tbl_tracking.php:269
msgid "Structure"
msgstr "Struktura"
#: db_structure.php:84 db_structure.php:85 db_structure.php:97
#: db_structure.php:98 db_structure.php:110 db_structure.php:111
#: db_structure.php:545 db_structure.php:546 db_tracking.php:91
-#: libraries/Index.class.php:483 libraries/common.lib.php:1654
+#: libraries/Index.class.php:483 libraries/common.lib.php:1656
#: libraries/db_links.inc.php:100 libraries/mult_submits.inc.php:36
#: libraries/mult_submits.inc.php:73 libraries/tbl_links.inc.php:127
#: server_databases.php:352 tbl_structure.php:27 tbl_structure.php:151
@@ -588,7 +588,7 @@ msgstr "Elemino"
#: db_structure.php:86 db_structure.php:87 db_structure.php:99
#: db_structure.php:100 db_structure.php:112 db_structure.php:113
-#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1653
+#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1655
#: libraries/mult_submits.inc.php:39 libraries/tbl_links.inc.php:105
msgid "Empty"
msgstr "Zbraz"
@@ -630,7 +630,7 @@ msgstr "Paraqitje"
#: db_structure.php:485 libraries/db_structure.lib.php:49
#: libraries/server_links.inc.php:70 server_replication.php:33
-#: server_replication.php:164 server_status.php:258
+#: server_replication.php:164 server_status.php:369
msgid "Replication"
msgstr "Replikimi"
@@ -647,20 +647,20 @@ msgstr ""
#: db_structure.php:524 db_structure.php:541 db_structure.php:542
#: libraries/display_tbl.lib.php:2081 libraries/display_tbl.lib.php:2086
#: libraries/mult_submits.inc.php:16 server_databases.php:346
-#: server_databases.php:351 server_privileges.php:1557 tbl_structure.php:455
+#: server_databases.php:351 server_privileges.php:1596 tbl_structure.php:455
#: tbl_structure.php:464
msgid "With selected:"
msgstr "N.q.s. të zgjedhur:"
#: db_structure.php:527 libraries/display_tbl.lib.php:2076
-#: server_databases.php:348 server_privileges.php:530
-#: server_privileges.php:1560 tbl_structure.php:458
+#: server_databases.php:348 server_privileges.php:569
+#: server_privileges.php:1599 tbl_structure.php:458
msgid "Check All"
msgstr "Zgjidh gjithçka"
#: db_structure.php:531 libraries/display_tbl.lib.php:2077
#: libraries/replication_gui.lib.php:33 server_databases.php:350
-#: server_privileges.php:533 server_privileges.php:1564 tbl_structure.php:462
+#: server_privileges.php:572 server_privileges.php:1603 tbl_structure.php:462
msgid "Uncheck All"
msgstr "Asnjë zgjedhje"
@@ -698,7 +698,7 @@ msgstr "Analizo tabelën"
#: libraries/display_export.lib.php:83 libraries/display_tbl.lib.php:2094
#: libraries/display_tbl.lib.php:2225 libraries/mult_submits.inc.php:62
#: libraries/server_links.inc.php:84 libraries/tbl_links.inc.php:82
-#: pmd_pdf.php:84 pmd_pdf.php:109 server_privileges.php:1341
+#: pmd_pdf.php:84 pmd_pdf.php:109 server_privileges.php:1380
#: setup/frames/menu.inc.php:22 tbl_row_action.php:59
msgid "Export"
msgstr "Eksporto"
@@ -717,8 +717,8 @@ msgstr ""
#: libraries/export/sql.php:342 libraries/export/texytext.php:84
#: libraries/export/xml.php:255 libraries/header.inc.php:106
#: libraries/header_printview.inc.php:58 server_databases.php:169
-#: server_privileges.php:1621 server_privileges.php:1682
-#: server_privileges.php:1940 server_processlist.php:56
+#: server_privileges.php:1660 server_privileges.php:1721
+#: server_privileges.php:1979 server_processlist.php:56
#: server_synchronize.php:1179 server_synchronize.php:1183
#: tbl_tracking.php:591 test/theme.php:65
msgid "Database"
@@ -739,8 +739,8 @@ msgstr ""
#: db_tracking.php:77 libraries/Index.class.php:440
#: libraries/db_structure.lib.php:53 server_databases.php:203
-#: server_privileges.php:1503 server_privileges.php:1686
-#: server_privileges.php:2034 tbl_structure.php:187
+#: server_privileges.php:1542 server_privileges.php:1725
+#: server_privileges.php:2073 tbl_structure.php:187
msgid "Action"
msgstr "Veprimi"
@@ -933,11 +933,11 @@ msgstr "Emri i host është bosh!"
msgid "The user name is empty!"
msgstr "Emri i përdoruesit është bosh!"
-#: js/messages.php:44 server_privileges.php:1197 user_password.php:70
+#: js/messages.php:44 server_privileges.php:1236 user_password.php:70
msgid "The password is empty!"
msgstr "Fjalëkalimi është bosh!"
-#: js/messages.php:45 server_privileges.php:1195 user_password.php:73
+#: js/messages.php:45 server_privileges.php:1234 user_password.php:73
msgid "The passwords aren't the same!"
msgstr "Fjalëkalimi nuk korrispondon!"
@@ -1018,8 +1018,8 @@ msgid "Prev"
msgstr "Paraardhësi"
#. l10n: Display text for next month link in calendar
-#: js/messages.php:77 libraries/common.lib.php:2344
-#: libraries/common.lib.php:2347 libraries/display_tbl.lib.php:338
+#: js/messages.php:77 libraries/common.lib.php:2353
+#: libraries/common.lib.php:2356 libraries/display_tbl.lib.php:338
#: server_binlog.php:205 server_binlog.php:207 tbl_printview.php:424
#: tbl_structure.php:801
msgid "Next"
@@ -1095,27 +1095,27 @@ msgid "December"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:97 libraries/common.lib.php:1555
+#: js/messages.php:97 libraries/common.lib.php:1557
msgid "Jan"
msgstr "Jan"
#. l10n: Short month name
-#: js/messages.php:99 libraries/common.lib.php:1557
+#: js/messages.php:99 libraries/common.lib.php:1559
msgid "Feb"
msgstr "Shk"
#. l10n: Short month name
-#: js/messages.php:101 libraries/common.lib.php:1559
+#: js/messages.php:101 libraries/common.lib.php:1561
msgid "Mar"
msgstr "Mar"
#. l10n: Short month name
-#: js/messages.php:103 libraries/common.lib.php:1561
+#: js/messages.php:103 libraries/common.lib.php:1563
msgid "Apr"
msgstr "Pri"
#. l10n: Short month name
-#: js/messages.php:105 libraries/common.lib.php:1563
+#: js/messages.php:105 libraries/common.lib.php:1565
#, fuzzy
#| msgid "May"
msgctxt "Short month name"
@@ -1123,37 +1123,37 @@ msgid "May"
msgstr "Maj"
#. l10n: Short month name
-#: js/messages.php:107 libraries/common.lib.php:1565
+#: js/messages.php:107 libraries/common.lib.php:1567
msgid "Jun"
msgstr "Qer"
#. l10n: Short month name
-#: js/messages.php:109 libraries/common.lib.php:1567
+#: js/messages.php:109 libraries/common.lib.php:1569
msgid "Jul"
msgstr "Kor"
#. l10n: Short month name
-#: js/messages.php:111 libraries/common.lib.php:1569
+#: js/messages.php:111 libraries/common.lib.php:1571
msgid "Aug"
msgstr "Gsh"
#. l10n: Short month name
-#: js/messages.php:113 libraries/common.lib.php:1571
+#: js/messages.php:113 libraries/common.lib.php:1573
msgid "Sep"
msgstr "Sht"
#. l10n: Short month name
-#: js/messages.php:115 libraries/common.lib.php:1573
+#: js/messages.php:115 libraries/common.lib.php:1575
msgid "Oct"
msgstr "Tet"
#. l10n: Short month name
-#: js/messages.php:117 libraries/common.lib.php:1575
+#: js/messages.php:117 libraries/common.lib.php:1577
msgid "Nov"
msgstr "Nën"
#. l10n: Short month name
-#: js/messages.php:119 libraries/common.lib.php:1577
+#: js/messages.php:119 libraries/common.lib.php:1579
msgid "Dec"
msgstr "Dhj"
@@ -1194,37 +1194,37 @@ msgid "Saturday"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:132 libraries/common.lib.php:1580
+#: js/messages.php:132 libraries/common.lib.php:1582
msgid "Sun"
msgstr "Djl"
#. l10n: Short week day name
-#: js/messages.php:134 libraries/common.lib.php:1582
+#: js/messages.php:134 libraries/common.lib.php:1584
msgid "Mon"
msgstr "Hën"
#. l10n: Short week day name
-#: js/messages.php:136 libraries/common.lib.php:1584
+#: js/messages.php:136 libraries/common.lib.php:1586
msgid "Tue"
msgstr "Mar"
#. l10n: Short week day name
-#: js/messages.php:138 libraries/common.lib.php:1586
+#: js/messages.php:138 libraries/common.lib.php:1588
msgid "Wed"
msgstr "Mër"
#. l10n: Short week day name
-#: js/messages.php:140 libraries/common.lib.php:1588
+#: js/messages.php:140 libraries/common.lib.php:1590
msgid "Thu"
msgstr "Enj"
#. l10n: Short week day name
-#: js/messages.php:142 libraries/common.lib.php:1590
+#: js/messages.php:142 libraries/common.lib.php:1592
msgid "Fri"
msgstr "Pre"
#. l10n: Short week day name
-#: js/messages.php:144 libraries/common.lib.php:1592
+#: js/messages.php:144 libraries/common.lib.php:1594
msgid "Sat"
msgstr "Sht"
@@ -1368,7 +1368,7 @@ msgid "Comment"
msgstr "Komente"
#: libraries/Index.class.php:466 libraries/common.lib.php:616
-#: libraries/common.lib.php:1199 libraries/display_tbl.lib.php:1117
+#: libraries/common.lib.php:1201 libraries/display_tbl.lib.php:1117
#: libraries/import.lib.php:1087 libraries/import.lib.php:1111
#: pdf_pages.php:285 setup/frames/index.inc.php:124
#: setup/lib/messages.inc.php:352 tbl_row_action.php:69
@@ -1392,7 +1392,7 @@ msgid ""
msgstr ""
#: libraries/List_Database.class.php:431 libraries/server_links.inc.php:41
-#: server_databases.php:88 server_privileges.php:1621
+#: server_databases.php:88 server_privileges.php:1660
#: setup/lib/messages.inc.php:110 test/theme.php:93
msgid "Databases"
msgstr "Databazat"
@@ -1721,7 +1721,7 @@ msgid "Documentation"
msgstr "Dokumentet"
#: libraries/common.lib.php:595 libraries/header_printview.inc.php:61
-#: server_processlist.php:60 server_status.php:247
+#: server_processlist.php:60 server_status.php:358
msgid "SQL query"
msgstr "query SQL"
@@ -1737,128 +1737,128 @@ msgstr "Shpjego SQL"
msgid "Skip Explain SQL"
msgstr "Mos shpjego SQL"
-#: libraries/common.lib.php:1212
+#: libraries/common.lib.php:1214
msgid "Without PHP Code"
msgstr "pa kod PHP"
-#: libraries/common.lib.php:1215 setup/lib/messages.inc.php:355
+#: libraries/common.lib.php:1217 setup/lib/messages.inc.php:355
msgid "Create PHP Code"
msgstr "Krijo kodin PHP"
-#: libraries/common.lib.php:1233 server_status.php:341
+#: libraries/common.lib.php:1235 server_status.php:452
#: setup/lib/messages.inc.php:354
msgid "Refresh"
msgstr "Rifresko"
-#: libraries/common.lib.php:1242
+#: libraries/common.lib.php:1244
msgid "Skip Validate SQL"
msgstr "Mos vleftëso SQL"
-#: libraries/common.lib.php:1245 setup/lib/messages.inc.php:356 sql.php:518
+#: libraries/common.lib.php:1247 setup/lib/messages.inc.php:356 sql.php:518
msgid "Validate SQL"
msgstr "Vleftëso SQL"
-#: libraries/common.lib.php:1276
+#: libraries/common.lib.php:1278
msgid "Inline edit of this query"
msgstr ""
-#: libraries/common.lib.php:1278
+#: libraries/common.lib.php:1280
msgid "Inline"
msgstr ""
-#: libraries/common.lib.php:1332 libraries/common.lib.php:1347
+#: libraries/common.lib.php:1334 libraries/common.lib.php:1349
msgid "Profiling"
msgstr ""
-#: libraries/common.lib.php:1351 libraries/tbl_triggers.lib.php:28
+#: libraries/common.lib.php:1353 libraries/tbl_triggers.lib.php:28
#: server_processlist.php:58
msgid "Time"
msgstr "Koha"
#. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "B"
msgstr "Bytes"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "KiB"
msgstr "KB"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "MiB"
msgstr "MB"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "GiB"
msgstr "GB"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "TiB"
msgstr "TB"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "PiB"
msgstr "PB"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "EiB"
msgstr "EB"
#. l10n: Thousands separator
-#: libraries/common.lib.php:1417
+#: libraries/common.lib.php:1419
msgid ","
msgstr "."
#. l10n: Decimal separator
-#: libraries/common.lib.php:1419
+#: libraries/common.lib.php:1421
msgid "."
msgstr ","
#. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string
-#: libraries/common.lib.php:1596
+#: libraries/common.lib.php:1598
#: libraries/transformations/text_plain__dateformat.inc.php:34
msgid "%B %d, %Y at %I:%M %p"
msgstr "%d %B, %Y at %I:%M %p"
-#: libraries/common.lib.php:1898
+#: libraries/common.lib.php:1907
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "%s ditë, %s orë, %s minuta dhe %s sekonda"
-#: libraries/common.lib.php:2313 libraries/common.lib.php:2316
-#: libraries/display_tbl.lib.php:290 server_status.php:608
+#: libraries/common.lib.php:2322 libraries/common.lib.php:2325
+#: libraries/display_tbl.lib.php:290 server_status.php:719
msgid "Begin"
msgstr "Fillim"
-#: libraries/common.lib.php:2314 libraries/common.lib.php:2317
+#: libraries/common.lib.php:2323 libraries/common.lib.php:2326
#: libraries/display_tbl.lib.php:291 server_binlog.php:168
#: server_binlog.php:170
msgid "Previous"
msgstr "Paraardhësi"
-#: libraries/common.lib.php:2345 libraries/common.lib.php:2348
+#: libraries/common.lib.php:2354 libraries/common.lib.php:2357
#: libraries/display_tbl.lib.php:353
msgid "End"
msgstr "Fund"
-#: libraries/common.lib.php:2421
+#: libraries/common.lib.php:2430
#, php-format
msgid "Jump to database "%s"."
msgstr "Kalo tek databaza "%s"."
-#: libraries/common.lib.php:2441
+#: libraries/common.lib.php:2450
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr ""
-#: libraries/common.lib.php:2821 libraries/common.lib.php:2828
+#: libraries/common.lib.php:2830 libraries/common.lib.php:2837
#: libraries/db_links.inc.php:68 libraries/export/sql.php:25
#: libraries/import/sql.php:18 libraries/server_links.inc.php:45
#: libraries/tbl_links.inc.php:60 querywindow.php:99 test/theme.php:97
msgid "SQL"
msgstr "SQL"
-#: libraries/common.lib.php:2830 libraries/db_links.inc.php:104
+#: libraries/common.lib.php:2839 libraries/db_links.inc.php:104
#: libraries/tbl_links.inc.php:95 libraries/tbl_links.inc.php:117
#: view_operations.php:89
msgid "Operations"
@@ -1914,8 +1914,8 @@ msgid "Import"
msgstr "Eksporto"
#: libraries/db_links.inc.php:111 libraries/server_links.inc.php:66
-#: server_privileges.php:72 server_privileges.php:1683
-#: server_privileges.php:2032 test/theme.php:117
+#: server_privileges.php:111 server_privileges.php:1722
+#: server_privileges.php:2071 test/theme.php:117
msgid "Privileges"
msgstr "Të drejtat"
@@ -1961,22 +1961,22 @@ msgid "Change password"
msgstr "Ndrysho fjalëkalimin"
#: libraries/display_change_password.lib.php:35
-#: libraries/replication_gui.lib.php:345 server_privileges.php:768
+#: libraries/replication_gui.lib.php:345 server_privileges.php:807
msgid "No Password"
msgstr "Asnjë fjalëkalim"
#: libraries/display_change_password.lib.php:41
#: libraries/replication_gui.lib.php:59 libraries/replication_gui.lib.php:60
#: libraries/replication_gui.lib.php:335 libraries/replication_gui.lib.php:339
-#: libraries/replication_gui.lib.php:349 server_privileges.php:757
-#: server_privileges.php:761 server_privileges.php:772
-#: server_privileges.php:1499 server_synchronize.php:1175
+#: libraries/replication_gui.lib.php:349 server_privileges.php:796
+#: server_privileges.php:800 server_privileges.php:811
+#: server_privileges.php:1538 server_synchronize.php:1175
msgid "Password"
msgstr "Fjalëkalimi"
#: libraries/display_change_password.lib.php:46
#: libraries/replication_gui.lib.php:353 libraries/replication_gui.lib.php:356
-#: server_privileges.php:776 server_privileges.php:779
+#: server_privileges.php:815 server_privileges.php:818
msgid "Re-type"
msgstr "Rifut"
@@ -1989,12 +1989,12 @@ msgid "MySQL 4.0 compatible"
msgstr ""
#: libraries/display_change_password.lib.php:72
-#: libraries/replication_gui.lib.php:360 server_privileges.php:783
+#: libraries/replication_gui.lib.php:360 server_privileges.php:822
msgid "Generate Password"
msgstr ""
#: libraries/display_change_password.lib.php:75
-#: libraries/replication_gui.lib.php:363 server_privileges.php:786
+#: libraries/replication_gui.lib.php:363 server_privileges.php:825
#, fuzzy
msgid "Generate"
msgstr "Gjeneruar nga"
@@ -2008,8 +2008,8 @@ msgstr "Krijo një databazë të re"
msgid "Create"
msgstr "Krijo"
-#: libraries/display_create_database.lib.php:40 server_privileges.php:74
-#: server_privileges.php:1388 server_replication.php:35
+#: libraries/display_create_database.lib.php:40 server_privileges.php:113
+#: server_privileges.php:1427 server_replication.php:35
msgid "No Privileges"
msgstr "Asnjë e drejtë"
@@ -2098,7 +2098,7 @@ msgstr "Kompresim"
#: libraries/display_export.lib.php:240 libraries/display_import.lib.php:197
#: libraries/display_import.lib.php:210 libraries/display_tbl.lib.php:530
#: libraries/export/sql.php:868 libraries/tbl_properties.inc.php:575
-#: server_privileges.php:1836 server_processlist.php:75
+#: server_privileges.php:1875 server_processlist.php:75
msgid "None"
msgstr "Asnjë lloj"
@@ -2419,7 +2419,7 @@ msgstr ""
msgid "Buffer Pool"
msgstr ""
-#: libraries/engines/innodb.lib.php:145 server_status.php:306
+#: libraries/engines/innodb.lib.php:145 server_status.php:417
msgid "InnoDB Status"
msgstr "Gjëndja InnoDB"
@@ -2428,8 +2428,8 @@ msgid "Buffer Pool Usage"
msgstr ""
#: libraries/engines/innodb.lib.php:194 server_databases.php:137
-#: server_databases.php:305 server_status.php:414 server_status.php:475
-#: server_status.php:496 tbl_printview.php:351 tbl_structure.php:696
+#: server_databases.php:305 server_status.php:525 server_status.php:586
+#: server_status.php:607 tbl_printview.php:351 tbl_structure.php:696
msgid "Total"
msgstr "Gjithsej"
@@ -2747,7 +2747,7 @@ msgstr ""
#: libraries/export/latex.php:201 libraries/export/odt.php:48
#: libraries/export/sql.php:106 libraries/export/sql.php:868
#: libraries/export/texytext.php:27 server_databases.php:127
-#: server_privileges.php:537 server_replication.php:316 tbl_printview.php:317
+#: server_privileges.php:576 server_replication.php:316 tbl_printview.php:317
#: tbl_structure.php:665
msgid "Data"
msgstr "Të dhëna"
@@ -2797,9 +2797,9 @@ msgstr "Lloji MIME"
#: libraries/export/xml.php:102 libraries/header_printview.inc.php:57
#: libraries/replication_gui.lib.php:63 libraries/replication_gui.lib.php:174
#: libraries/replication_gui.lib.php:269 libraries/replication_gui.lib.php:272
-#: libraries/replication_gui.lib.php:329 server_privileges.php:692
-#: server_privileges.php:695 server_privileges.php:751
-#: server_privileges.php:1498 server_privileges.php:2030
+#: libraries/replication_gui.lib.php:329 server_privileges.php:731
+#: server_privileges.php:734 server_privileges.php:790
+#: server_privileges.php:1537 server_privileges.php:2069
#: server_processlist.php:55 server_synchronize.php:1159
msgid "Host"
msgstr "Host"
@@ -3157,756 +3157,6 @@ msgstr "Asnjë lloj"
msgid "Convert to Kana"
msgstr ""
-#. l10n: Text direction, use either ltr or rtl
-#: libraries/messages.inc.php:19
-msgid "ltr"
-msgstr "ltr"
-
-#: libraries/messages.inc.php:21
-msgid "Content of table __TABLE__"
-msgstr "Përmbajtja e tabelës __TABLE__"
-
-#: libraries/messages.inc.php:22
-msgid "(continued)"
-msgstr "(vazhdon)"
-
-#: libraries/messages.inc.php:23
-msgid "Structure of table __TABLE__"
-msgstr "Struktura e tabelës __TABLE__"
-
-#: libraries/messages.inc.php:25 server_privileges.php:227
-msgid "Includes all privileges except GRANT."
-msgstr "Përfshin të gjitha të drejtat me përjashtim të GRANT."
-
-#: libraries/messages.inc.php:26 server_privileges.php:153
-#: server_privileges.php:476
-msgid "Allows altering the structure of existing tables."
-msgstr "Lejon ndryshimin e strukturës së tabelave ekzistuese."
-
-#: libraries/messages.inc.php:27 server_privileges.php:169
-#: server_privileges.php:482
-#, fuzzy
-msgid "Allows altering and dropping stored routines."
-msgstr "Lejon krijimin dhe eleminimin e treguesve."
-
-#: libraries/messages.inc.php:28 server_privileges.php:145
-#: server_privileges.php:475
-msgid "Allows creating new databases and tables."
-msgstr "Lejon krijimin e tabelave të reja dhe databazave të reja."
-
-#: libraries/messages.inc.php:29 server_privileges.php:168
-#: server_privileges.php:481
-#, fuzzy
-msgid "Allows creating stored routines."
-msgstr "Lejon krijimin e tabelave të reja."
-
-#: libraries/messages.inc.php:30 server_privileges.php:475
-msgid "Allows creating new tables."
-msgstr "Lejon krijimin e tabelave të reja."
-
-#: libraries/messages.inc.php:31 server_privileges.php:156
-#: server_privileges.php:479
-msgid "Allows creating temporary tables."
-msgstr "Lejon krijimin e tabelave të përkohëshme."
-
-#: libraries/messages.inc.php:32 server_privileges.php:170
-#: server_privileges.php:515
-msgid "Allows creating, dropping and renaming user accounts."
-msgstr ""
-
-#: libraries/messages.inc.php:33 server_privileges.php:160
-#: server_privileges.php:164 server_privileges.php:487
-#: server_privileges.php:491
-#, fuzzy
-msgid "Allows creating new views."
-msgstr "Lejon krijimin e tabelave të reja."
-
-#: libraries/messages.inc.php:34 server_privileges.php:144
-#: server_privileges.php:467
-msgid "Allows deleting data."
-msgstr "Lejon fshirjen e të dhënave."
-
-#: libraries/messages.inc.php:35 server_privileges.php:146
-#: server_privileges.php:478
-msgid "Allows dropping databases and tables."
-msgstr "Lejon eleminimin e databazave dhe tabelave."
-
-#: libraries/messages.inc.php:36 server_privileges.php:478
-msgid "Allows dropping tables."
-msgstr "Lejon eleminimin e tabelave."
-
-#: libraries/messages.inc.php:37 server_privileges.php:161
-#: server_privileges.php:495
-msgid "Allows to set up events for the event scheduler"
-msgstr ""
-
-#: libraries/messages.inc.php:38 server_privileges.php:171
-#: server_privileges.php:483
-msgid "Allows executing stored routines."
-msgstr ""
-
-#: libraries/messages.inc.php:39 server_privileges.php:150
-#: server_privileges.php:470
-msgid "Allows importing data from and exporting data into files."
-msgstr ""
-"Lejon importimin e të dhënave nga dhe eksportimin e të dhënave në files."
-
-#: libraries/messages.inc.php:40 server_privileges.php:501
-msgid ""
-"Allows adding users and privileges without reloading the privilege tables."
-msgstr ""
-"Lejon të shtosh përdorues dhe të drejta pa ringarkuar tabelat e privilegjeve."
-
-#: libraries/messages.inc.php:41 server_privileges.php:152
-#: server_privileges.php:477
-msgid "Allows creating and dropping indexes."
-msgstr "Lejon krijimin dhe eleminimin e treguesve."
-
-#: libraries/messages.inc.php:42 server_privileges.php:142
-#: server_privileges.php:403 server_privileges.php:465
-msgid "Allows inserting and replacing data."
-msgstr "Lejon futjen dhe mbishkrimin e të dhënave."
-
-#: libraries/messages.inc.php:43 server_privileges.php:157
-#: server_privileges.php:510
-msgid "Allows locking tables for the current thread."
-msgstr "Lejon bllokimin e tabelave për thread e momentit."
-
-#: libraries/messages.inc.php:44 server_privileges.php:607
-#: server_privileges.php:609
-msgid "Limits the number of new connections the user may open per hour."
-msgstr ""
-"Kufizon numrin e lidhjeve të reja që një përdorues mund të hapë në një orë."
-
-#: libraries/messages.inc.php:45 server_privileges.php:595
-#: server_privileges.php:597
-msgid "Limits the number of queries the user may send to the server per hour."
-msgstr ""
-"Kufizon numrin e kërkesave që një përdorues mund ti dërgojë server-it në një "
-"orë."
-
-#: libraries/messages.inc.php:46 server_privileges.php:601
-#: server_privileges.php:603
-msgid ""
-"Limits the number of commands that change any table or database the user may "
-"execute per hour."
-msgstr ""
-"Kufizon numrin e komandave që mund të ndryshojnë një tabelë apo databazë që "
-"një përdorues mund të zbatojë në një orë."
-
-#: libraries/messages.inc.php:47 server_privileges.php:613
-#: server_privileges.php:615
-#, fuzzy
-msgid "Limits the number of simultaneous connections the user may have."
-msgstr ""
-"Kufizon numrin e lidhjeve të reja që një përdorues mund të hapë në një orë."
-
-#: libraries/messages.inc.php:48 server_privileges.php:149
-#: server_privileges.php:505
-msgid "Allows viewing processes of all users"
-msgstr ""
-
-#: libraries/messages.inc.php:49 server_privileges.php:151
-#: server_privileges.php:409 server_privileges.php:511
-msgid "Has no effect in this MySQL version."
-msgstr "Nuk ka asnjë efekt tek ky version i MySQL."
-
-#: libraries/messages.inc.php:50 server_privileges.php:147
-#: server_privileges.php:506
-msgid "Allows reloading server settings and flushing the server's caches."
-msgstr ""
-"Lejon ringarkimin e parametrave të server-it dhe risetimin e cache të "
-"servërve."
-
-#: libraries/messages.inc.php:51 server_privileges.php:159
-#: server_privileges.php:513
-msgid "Allows the user to ask where the slaves / masters are."
-msgstr ""
-"I jep të drejtën një përdoruesi të pyesë se ku gjenden slaves / masters."
-
-#: libraries/messages.inc.php:52 server_privileges.php:158
-#: server_privileges.php:514
-msgid "Needed for the replication slaves."
-msgstr "Nevoitet për replikimin e slaves."
-
-#: libraries/messages.inc.php:53 server_privileges.php:141
-#: server_privileges.php:400 server_privileges.php:464
-msgid "Allows reading data."
-msgstr "Lejon leximin e të dhënave."
-
-#: libraries/messages.inc.php:54 server_privileges.php:154
-#: server_privileges.php:508
-msgid "Gives access to the complete list of databases."
-msgstr "Mundëson hyrjen tek lista komplete e databazave."
-
-#: libraries/messages.inc.php:55 server_privileges.php:165
-#: server_privileges.php:167 server_privileges.php:480
-msgid "Allows performing SHOW CREATE VIEW queries."
-msgstr ""
-
-#: libraries/messages.inc.php:56 server_privileges.php:148
-#: server_privileges.php:507
-msgid "Allows shutting down the server."
-msgstr "Lejon përfundimin e serverit."
-
-#: libraries/messages.inc.php:57 server_privileges.php:155
-#: server_privileges.php:504
-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 ""
-"Lejon lidhje të tjera, edhe po të jetë arritur numri maksimal i lidhjeve; I "
-"nevojshëm për shumë operacione administrimi si përcaktimi i të "
-"ndryshueshmeve globale apo fshirja e threads të përdoruesve të tjerë."
-
-#: libraries/messages.inc.php:58 server_privileges.php:162
-#: server_privileges.php:496
-#, fuzzy
-msgid "Allows creating and dropping triggers"
-msgstr "Lejon krijimin dhe eleminimin e treguesve."
-
-#: libraries/messages.inc.php:59 server_privileges.php:143
-#: server_privileges.php:406 server_privileges.php:466
-msgid "Allows changing data."
-msgstr "Lejon ndryshimin e të dhënave."
-
-#: libraries/messages.inc.php:60 server_privileges.php:221
-msgid "No privileges."
-msgstr "Asnjë të drejtë."
-
-#: libraries/messages.inc.php:62
-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/messages.inc.php:63
-msgid "The number of transactions that used the temporary binary log cache."
-msgstr ""
-
-#: libraries/messages.inc.php:64
-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 "
-"to increase the tmp_table_size value to cause temporary tables to be memory-"
-"based instead of disk-based."
-msgstr ""
-
-#: libraries/messages.inc.php:65
-msgid "How many temporary files mysqld has created."
-msgstr ""
-
-#: libraries/messages.inc.php:66
-msgid ""
-"The number of in-memory temporary tables created automatically by the server "
-"while executing statements."
-msgstr ""
-
-#: libraries/messages.inc.php:67
-msgid ""
-"The number of rows written with INSERT DELAYED for which some error occurred "
-"(probably duplicate key)."
-msgstr ""
-
-#: libraries/messages.inc.php:68
-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/messages.inc.php:69
-msgid "The number of INSERT DELAYED rows written."
-msgstr ""
-
-#: libraries/messages.inc.php:70
-msgid "The number of executed FLUSH statements."
-msgstr ""
-
-#: libraries/messages.inc.php:71
-msgid "The number of internal COMMIT statements."
-msgstr ""
-
-#: libraries/messages.inc.php:72
-msgid "The number of times a row was deleted from a table."
-msgstr ""
-
-#: libraries/messages.inc.php:73
-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/messages.inc.php:74
-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/messages.inc.php:75
-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/messages.inc.php:76
-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/messages.inc.php:77
-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/messages.inc.php:78
-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 "
-"probably have a lot of queries that require MySQL to scan whole tables or "
-"you have joins that don't use keys properly."
-msgstr ""
-
-#: libraries/messages.inc.php:79
-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 "
-"tables are not properly indexed or that your queries are not written to take "
-"advantage of the indexes you have."
-msgstr ""
-
-#: libraries/messages.inc.php:80
-msgid "The number of internal ROLLBACK statements."
-msgstr ""
-
-#: libraries/messages.inc.php:81
-msgid "The number of requests to update a row in a table."
-msgstr ""
-
-#: libraries/messages.inc.php:82
-msgid "The number of requests to insert a row in a table."
-msgstr ""
-
-#: libraries/messages.inc.php:83
-msgid "The number of pages containing data (dirty or clean)."
-msgstr ""
-
-#: libraries/messages.inc.php:84
-msgid "The number of pages currently dirty."
-msgstr ""
-
-#: libraries/messages.inc.php:85
-msgid "The number of buffer pool pages that have been requested to be flushed."
-msgstr ""
-
-#: libraries/messages.inc.php:86
-msgid "The number of free pages."
-msgstr ""
-
-#: libraries/messages.inc.php:87
-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/messages.inc.php:88
-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 "
-"be calculated as Innodb_buffer_pool_pages_total - "
-"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data."
-msgstr ""
-
-#: libraries/messages.inc.php:89
-msgid "Total size of buffer pool, in pages."
-msgstr ""
-
-#: libraries/messages.inc.php:90
-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/messages.inc.php:91
-msgid ""
-"The number of sequential read-aheads InnoDB initiated. This happens when "
-"InnoDB does a sequential full table scan."
-msgstr ""
-
-#: libraries/messages.inc.php:92
-msgid "The number of logical read requests InnoDB has done."
-msgstr ""
-
-#: libraries/messages.inc.php:93
-msgid ""
-"The number of logical reads that InnoDB could not satisfy from buffer pool "
-"and had to do a single-page read."
-msgstr ""
-
-#: libraries/messages.inc.php:94
-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 "
-"available, it's necessary to wait for pages to be flushed first. This "
-"counter counts instances of these waits. If the buffer pool size was set "
-"properly, this value should be small."
-msgstr ""
-
-#: libraries/messages.inc.php:95
-msgid "The number writes done to the InnoDB buffer pool."
-msgstr ""
-
-#: libraries/messages.inc.php:96
-msgid "The number of fsync() operations so far."
-msgstr ""
-
-#: libraries/messages.inc.php:97
-msgid "The current number of pending fsync() operations."
-msgstr ""
-
-#: libraries/messages.inc.php:98
-msgid "The current number of pending reads."
-msgstr ""
-
-#: libraries/messages.inc.php:99
-msgid "The current number of pending writes."
-msgstr ""
-
-#: libraries/messages.inc.php:100
-msgid "The amount of data read so far, in bytes."
-msgstr ""
-
-#: libraries/messages.inc.php:101
-msgid "The total number of data reads."
-msgstr ""
-
-#: libraries/messages.inc.php:102
-msgid "The total number of data writes."
-msgstr ""
-
-#: libraries/messages.inc.php:103
-msgid "The amount of data written so far, in bytes."
-msgstr ""
-
-#: libraries/messages.inc.php:104
-msgid "The number of pages that have been written for doublewrite operations."
-msgstr ""
-
-#: libraries/messages.inc.php:105
-msgid "The number of doublewrite operations that have been performed."
-msgstr ""
-
-#: libraries/messages.inc.php:106
-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/messages.inc.php:107
-msgid "The number of log write requests."
-msgstr ""
-
-#: libraries/messages.inc.php:108
-msgid "The number of physical writes to the log file."
-msgstr ""
-
-#: libraries/messages.inc.php:109
-msgid "The number of fsync() writes done to the log file."
-msgstr ""
-
-#: libraries/messages.inc.php:110
-msgid "The number of pending log file fsyncs."
-msgstr ""
-
-#: libraries/messages.inc.php:111
-msgid "Pending log file writes."
-msgstr ""
-
-#: libraries/messages.inc.php:112
-msgid "The number of bytes written to the log file."
-msgstr ""
-
-#: libraries/messages.inc.php:113
-msgid "The number of pages created."
-msgstr ""
-
-#: libraries/messages.inc.php:114
-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/messages.inc.php:115
-msgid "The number of pages read."
-msgstr ""
-
-#: libraries/messages.inc.php:116
-msgid "The number of pages written."
-msgstr ""
-
-#: libraries/messages.inc.php:117
-msgid "The number of row locks currently being waited for."
-msgstr ""
-
-#: libraries/messages.inc.php:118
-msgid "The average time to acquire a row lock, in milliseconds."
-msgstr ""
-
-#: libraries/messages.inc.php:119
-msgid "The total time spent in acquiring row locks, in milliseconds."
-msgstr ""
-
-#: libraries/messages.inc.php:120
-msgid "The maximum time to acquire a row lock, in milliseconds."
-msgstr ""
-
-#: libraries/messages.inc.php:121
-msgid "The number of times a row lock had to be waited for."
-msgstr ""
-
-#: libraries/messages.inc.php:122
-msgid "The number of rows deleted from InnoDB tables."
-msgstr ""
-
-#: libraries/messages.inc.php:123
-msgid "The number of rows inserted in InnoDB tables."
-msgstr ""
-
-#: libraries/messages.inc.php:124
-msgid "The number of rows read from InnoDB tables."
-msgstr ""
-
-#: libraries/messages.inc.php:125
-msgid "The number of rows updated in InnoDB tables."
-msgstr ""
-
-#: libraries/messages.inc.php:126
-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/messages.inc.php:127
-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/messages.inc.php:128
-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/messages.inc.php:129
-msgid "The number of requests to read a key block from the cache."
-msgstr ""
-
-#: libraries/messages.inc.php:130
-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/messages.inc.php:131
-msgid "The number of requests to write a key block to the cache."
-msgstr ""
-
-#: libraries/messages.inc.php:132
-msgid "The number of physical writes of a key block to disk."
-msgstr ""
-
-#: libraries/messages.inc.php:133
-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/messages.inc.php:134
-msgid "The number of rows waiting to be written in INSERT DELAYED queues."
-msgstr ""
-
-#: libraries/messages.inc.php:135
-msgid ""
-"The number of tables that have been opened. If opened tables is big, your "
-"table cache value is probably too small."
-msgstr ""
-
-#: libraries/messages.inc.php:136
-msgid "The number of files that are open."
-msgstr ""
-
-#: libraries/messages.inc.php:137
-msgid "The number of streams that are open (used mainly for logging)."
-msgstr ""
-
-#: libraries/messages.inc.php:138
-msgid "The number of tables that are open."
-msgstr ""
-
-#: libraries/messages.inc.php:139
-msgid "The number of free memory blocks in query cache."
-msgstr ""
-
-#: libraries/messages.inc.php:140
-msgid "The amount of free memory for query cache."
-msgstr ""
-
-#: libraries/messages.inc.php:141
-msgid "The number of cache hits."
-msgstr ""
-
-#: libraries/messages.inc.php:142
-msgid "The number of queries added to the cache."
-msgstr ""
-
-#: libraries/messages.inc.php:143
-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 "
-"cache size. The query cache uses a least recently used (LRU) strategy to "
-"decide which queries to remove from the cache."
-msgstr ""
-
-#: libraries/messages.inc.php:144
-msgid ""
-"The number of non-cached queries (not cachable, or not cached due to the "
-"query_cache_type setting)."
-msgstr ""
-
-#: libraries/messages.inc.php:145
-msgid "The number of queries registered in the cache."
-msgstr ""
-
-#: libraries/messages.inc.php:146
-msgid "The total number of blocks in the query cache."
-msgstr ""
-
-#: libraries/messages.inc.php:147
-#, fuzzy
-msgctxt "$strShowStatusReset"
-msgid "Reset"
-msgstr "Rinis"
-
-#: libraries/messages.inc.php:148
-msgid "The status of failsafe replication (not yet implemented)."
-msgstr ""
-
-#: libraries/messages.inc.php:149
-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/messages.inc.php:150
-msgid "The number of joins that used a range search on a reference table."
-msgstr ""
-
-#: libraries/messages.inc.php:151
-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/messages.inc.php:152
-msgid ""
-"The number of joins that used ranges on the first table. (It's normally not "
-"critical even if this is big.)"
-msgstr ""
-
-#: libraries/messages.inc.php:153
-msgid "The number of joins that did a full scan of the first table."
-msgstr ""
-
-#: libraries/messages.inc.php:154
-msgid "The number of temporary tables currently open by the slave SQL thread."
-msgstr ""
-
-#: libraries/messages.inc.php:155
-msgid ""
-"Total (since startup) number of times the replication slave SQL thread has "
-"retried transactions."
-msgstr ""
-
-#: libraries/messages.inc.php:156
-msgid "This is ON if this server is a slave that is connected to a master."
-msgstr ""
-
-#: libraries/messages.inc.php:157
-msgid ""
-"The number of threads that have taken more than slow_launch_time seconds to "
-"create."
-msgstr ""
-
-#: libraries/messages.inc.php:158
-msgid ""
-"The number of queries that have taken more than long_query_time seconds."
-msgstr ""
-
-#: libraries/messages.inc.php:159
-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/messages.inc.php:160
-msgid "The number of sorts that were done with ranges."
-msgstr ""
-
-#: libraries/messages.inc.php:161
-msgid "The number of sorted rows."
-msgstr ""
-
-#: libraries/messages.inc.php:162
-msgid "The number of sorts that were done by scanning the table."
-msgstr ""
-
-#: libraries/messages.inc.php:163
-msgid "The number of times that a table lock was acquired immediately."
-msgstr ""
-
-#: libraries/messages.inc.php:164
-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 "
-"should first optimize your queries, and then either split your table or "
-"tables or use replication."
-msgstr ""
-
-#: libraries/messages.inc.php:165
-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/messages.inc.php:166
-msgid "The number of currently open connections."
-msgstr ""
-
-#: libraries/messages.inc.php:167
-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 "
-"doesn't give a notable performance improvement if you have a good thread "
-"implementation.)"
-msgstr ""
-
-#: libraries/messages.inc.php:168
-msgid "The number of threads that are not sleeping."
-msgstr ""
-
#: libraries/mult_submits.inc.php:76 libraries/tbl_properties.inc.php:513
#: tbl_structure.php:29 tbl_structure.php:153 tbl_structure.php:157
#: tbl_structure.php:473
@@ -4225,8 +3475,8 @@ msgstr ""
#: libraries/replication_gui.lib.php:55 libraries/replication_gui.lib.php:56
#: libraries/replication_gui.lib.php:249 libraries/replication_gui.lib.php:252
-#: libraries/replication_gui.lib.php:259 server_privileges.php:672
-#: server_privileges.php:675 server_privileges.php:682
+#: libraries/replication_gui.lib.php:259 server_privileges.php:711
+#: server_privileges.php:714 server_privileges.php:721
#: server_synchronize.php:1171
msgid "User name"
msgstr "Emri i përdoruesit"
@@ -4245,11 +3495,11 @@ msgid "Slave status"
msgstr ""
#: libraries/replication_gui.lib.php:114 libraries/sql_query_form.lib.php:445
-#: server_status.php:626 server_variables.php:52
+#: server_status.php:737 server_variables.php:52
msgid "Variable"
msgstr "E ndryshueshme"
-#: libraries/replication_gui.lib.php:115 server_status.php:627
+#: libraries/replication_gui.lib.php:115 server_status.php:738
#: tbl_change.php:324 tbl_printview.php:370 tbl_select.php:139
#: tbl_structure.php:729
msgid "Value"
@@ -4270,41 +3520,58 @@ msgstr ""
msgid "Add slave replication user"
msgstr ""
-#: libraries/replication_gui.lib.php:254 server_privileges.php:677
+#: libraries/replication_gui.lib.php:254 server_privileges.php:716
msgid "Any user"
msgstr "Çfarëdo përdorues"
#: libraries/replication_gui.lib.php:255 libraries/replication_gui.lib.php:323
-#: libraries/replication_gui.lib.php:346 server_privileges.php:678
-#: server_privileges.php:745 server_privileges.php:769
-#: server_privileges.php:1889 server_privileges.php:1919
+#: libraries/replication_gui.lib.php:346 server_privileges.php:717
+#: server_privileges.php:784 server_privileges.php:808
+#: server_privileges.php:1928 server_privileges.php:1958
msgid "Use text field"
msgstr "Përdor fushë teksti"
-#: libraries/replication_gui.lib.php:302 server_privileges.php:725
+#: libraries/replication_gui.lib.php:302 server_privileges.php:764
msgid "Any host"
msgstr "Çfarëdo host"
-#: libraries/replication_gui.lib.php:306 server_privileges.php:729
+#: libraries/replication_gui.lib.php:306 server_privileges.php:768
msgid "Local"
msgstr "Lokal"
-#: libraries/replication_gui.lib.php:312 server_privileges.php:734
+#: libraries/replication_gui.lib.php:312 server_privileges.php:773
msgid "This Host"
msgstr "Këtë Host"
-#: libraries/replication_gui.lib.php:318 server_privileges.php:740
+#: libraries/replication_gui.lib.php:318 server_privileges.php:779
msgid "Use Host Table"
msgstr "Përdor Tabelën e Host-it"
-#: libraries/replication_gui.lib.php:331 server_privileges.php:753
+#: libraries/replication_gui.lib.php:331 server_privileges.php:792
msgid ""
"When Host table is used, this field is ignored and values stored in Host "
"table are used instead."
msgstr ""
-#: libraries/select_lang.lib.php:480 libraries/select_lang.lib.php:486
-#: libraries/select_lang.lib.php:492
+#. l10n: Text direction, use either ltr or rtl
+#: libraries/select_lang.lib.php:491
+msgid "ltr"
+msgstr "ltr"
+
+#: libraries/select_lang.lib.php:493
+msgid "Content of table __TABLE__"
+msgstr "Përmbajtja e tabelës __TABLE__"
+
+#: libraries/select_lang.lib.php:494
+msgid "(continued)"
+msgstr "(vazhdon)"
+
+#: libraries/select_lang.lib.php:495
+msgid "Structure of table __TABLE__"
+msgstr "Struktura e tabelës __TABLE__"
+
+#: libraries/select_lang.lib.php:500 libraries/select_lang.lib.php:506
+#: libraries/select_lang.lib.php:512
#, php-format
msgid "Unknown language: %1$s."
msgstr ""
@@ -4316,7 +3583,7 @@ msgid "Servers"
msgstr "Serveri"
#: libraries/server_links.inc.php:53 server_engines.php:112
-#: server_engines.php:116 server_status.php:304 test/theme.php:105
+#: server_engines.php:116 server_status.php:415 test/theme.php:105
msgid "Variables"
msgstr "Të ndryshueshmet"
@@ -4329,7 +3596,7 @@ msgid "Engines"
msgstr ""
#: libraries/server_links.inc.php:76 server_binlog.php:110
-#: server_status.php:253 test/theme.php:121
+#: server_status.php:364 test/theme.php:121
#, fuzzy
msgid "Binary log"
msgstr "Binar"
@@ -4792,8 +4059,8 @@ msgstr "Rinis"
msgid "Protocol version"
msgstr ""
-#: main.php:189 server_privileges.php:1350 server_privileges.php:1497
-#: server_privileges.php:1611 server_privileges.php:2029
+#: main.php:189 server_privileges.php:1389 server_privileges.php:1536
+#: server_privileges.php:1650 server_privileges.php:2068
#: server_processlist.php:54
msgid "User"
msgstr "Përdorues"
@@ -5169,7 +4436,7 @@ msgstr "%s databaza u eleminuan korrektësisht."
msgid "Databases statistics"
msgstr "Statistikat e databazave"
-#: server_databases.php:117 server_status.php:260
+#: server_databases.php:117 server_status.php:371
#: setup/lib/messages.inc.php:117
msgid "Tables"
msgstr "Tabela"
@@ -5188,6 +4455,16 @@ msgstr ""
msgid "Jump to database"
msgstr "Asnjë databazë"
+#: server_databases.php:267
+msgid "Not replicated"
+msgstr ""
+
+#: server_databases.php:273
+#, fuzzy
+#| msgid "Replication"
+msgid "Replicated"
+msgstr "Replikimi"
+
#: server_databases.php:289
#, php-format
msgid "Check privileges for database "%s"."
@@ -5221,143 +4498,344 @@ msgstr ""
msgid "View dump (schema) of databases"
msgstr "Shfaq dump (skema) e databazave"
-#: server_privileges.php:263 server_privileges.php:264
+#: server_privileges.php:24 server_privileges.php:266
+msgid "Includes all privileges except GRANT."
+msgstr "Përfshin të gjitha të drejtat me përjashtim të GRANT."
+
+#: server_privileges.php:25 server_privileges.php:192
+#: server_privileges.php:515
+msgid "Allows altering the structure of existing tables."
+msgstr "Lejon ndryshimin e strukturës së tabelave ekzistuese."
+
+#: server_privileges.php:26 server_privileges.php:208
+#: server_privileges.php:521
+#, fuzzy
+msgid "Allows altering and dropping stored routines."
+msgstr "Lejon krijimin dhe eleminimin e treguesve."
+
+#: server_privileges.php:27 server_privileges.php:184
+#: server_privileges.php:514
+msgid "Allows creating new databases and tables."
+msgstr "Lejon krijimin e tabelave të reja dhe databazave të reja."
+
+#: server_privileges.php:28 server_privileges.php:207
+#: server_privileges.php:520
+#, fuzzy
+msgid "Allows creating stored routines."
+msgstr "Lejon krijimin e tabelave të reja."
+
+#: server_privileges.php:29 server_privileges.php:514
+msgid "Allows creating new tables."
+msgstr "Lejon krijimin e tabelave të reja."
+
+#: server_privileges.php:30 server_privileges.php:195
+#: server_privileges.php:518
+msgid "Allows creating temporary tables."
+msgstr "Lejon krijimin e tabelave të përkohëshme."
+
+#: server_privileges.php:31 server_privileges.php:209
+#: server_privileges.php:554
+msgid "Allows creating, dropping and renaming user accounts."
+msgstr ""
+
+#: server_privileges.php:32 server_privileges.php:199
+#: server_privileges.php:203 server_privileges.php:526
+#: server_privileges.php:530
+#, fuzzy
+msgid "Allows creating new views."
+msgstr "Lejon krijimin e tabelave të reja."
+
+#: server_privileges.php:33 server_privileges.php:183
+#: server_privileges.php:506
+msgid "Allows deleting data."
+msgstr "Lejon fshirjen e të dhënave."
+
+#: server_privileges.php:34 server_privileges.php:185
+#: server_privileges.php:517
+msgid "Allows dropping databases and tables."
+msgstr "Lejon eleminimin e databazave dhe tabelave."
+
+#: server_privileges.php:35 server_privileges.php:517
+msgid "Allows dropping tables."
+msgstr "Lejon eleminimin e tabelave."
+
+#: server_privileges.php:36 server_privileges.php:200
+#: server_privileges.php:534
+msgid "Allows to set up events for the event scheduler"
+msgstr ""
+
+#: server_privileges.php:37 server_privileges.php:210
+#: server_privileges.php:522
+msgid "Allows executing stored routines."
+msgstr ""
+
+#: server_privileges.php:38 server_privileges.php:189
+#: server_privileges.php:509
+msgid "Allows importing data from and exporting data into files."
+msgstr ""
+"Lejon importimin e të dhënave nga dhe eksportimin e të dhënave në files."
+
+#: server_privileges.php:39 server_privileges.php:540
+msgid ""
+"Allows adding users and privileges without reloading the privilege tables."
+msgstr ""
+"Lejon të shtosh përdorues dhe të drejta pa ringarkuar tabelat e privilegjeve."
+
+#: server_privileges.php:40 server_privileges.php:191
+#: server_privileges.php:516
+msgid "Allows creating and dropping indexes."
+msgstr "Lejon krijimin dhe eleminimin e treguesve."
+
+#: server_privileges.php:41 server_privileges.php:181
+#: server_privileges.php:442 server_privileges.php:504
+msgid "Allows inserting and replacing data."
+msgstr "Lejon futjen dhe mbishkrimin e të dhënave."
+
+#: server_privileges.php:42 server_privileges.php:196
+#: server_privileges.php:549
+msgid "Allows locking tables for the current thread."
+msgstr "Lejon bllokimin e tabelave për thread e momentit."
+
+#: server_privileges.php:43 server_privileges.php:646
+#: server_privileges.php:648
+msgid "Limits the number of new connections the user may open per hour."
+msgstr ""
+"Kufizon numrin e lidhjeve të reja që një përdorues mund të hapë në një orë."
+
+#: server_privileges.php:44 server_privileges.php:634
+#: server_privileges.php:636
+msgid "Limits the number of queries the user may send to the server per hour."
+msgstr ""
+"Kufizon numrin e kërkesave që një përdorues mund ti dërgojë server-it në një "
+"orë."
+
+#: server_privileges.php:45 server_privileges.php:640
+#: server_privileges.php:642
+msgid ""
+"Limits the number of commands that change any table or database the user may "
+"execute per hour."
+msgstr ""
+"Kufizon numrin e komandave që mund të ndryshojnë një tabelë apo databazë që "
+"një përdorues mund të zbatojë në një orë."
+
+#: server_privileges.php:46 server_privileges.php:652
+#: server_privileges.php:654
+#, fuzzy
+msgid "Limits the number of simultaneous connections the user may have."
+msgstr ""
+"Kufizon numrin e lidhjeve të reja që një përdorues mund të hapë në një orë."
+
+#: server_privileges.php:47 server_privileges.php:188
+#: server_privileges.php:544
+msgid "Allows viewing processes of all users"
+msgstr ""
+
+#: server_privileges.php:48 server_privileges.php:190
+#: server_privileges.php:448 server_privileges.php:550
+msgid "Has no effect in this MySQL version."
+msgstr "Nuk ka asnjë efekt tek ky version i MySQL."
+
+#: server_privileges.php:49 server_privileges.php:186
+#: server_privileges.php:545
+msgid "Allows reloading server settings and flushing the server's caches."
+msgstr ""
+"Lejon ringarkimin e parametrave të server-it dhe risetimin e cache të "
+"servërve."
+
+#: server_privileges.php:50 server_privileges.php:198
+#: server_privileges.php:552
+msgid "Allows the user to ask where the slaves / masters are."
+msgstr ""
+"I jep të drejtën një përdoruesi të pyesë se ku gjenden slaves / masters."
+
+#: server_privileges.php:51 server_privileges.php:197
+#: server_privileges.php:553
+msgid "Needed for the replication slaves."
+msgstr "Nevoitet për replikimin e slaves."
+
+#: server_privileges.php:52 server_privileges.php:180
+#: server_privileges.php:439 server_privileges.php:503
+msgid "Allows reading data."
+msgstr "Lejon leximin e të dhënave."
+
+#: server_privileges.php:53 server_privileges.php:193
+#: server_privileges.php:547
+msgid "Gives access to the complete list of databases."
+msgstr "Mundëson hyrjen tek lista komplete e databazave."
+
+#: server_privileges.php:54 server_privileges.php:204
+#: server_privileges.php:206 server_privileges.php:519
+msgid "Allows performing SHOW CREATE VIEW queries."
+msgstr ""
+
+#: server_privileges.php:55 server_privileges.php:187
+#: server_privileges.php:546
+msgid "Allows shutting down the server."
+msgstr "Lejon përfundimin e serverit."
+
+#: server_privileges.php:56 server_privileges.php:194
+#: server_privileges.php:543
+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 ""
+"Lejon lidhje të tjera, edhe po të jetë arritur numri maksimal i lidhjeve; I "
+"nevojshëm për shumë operacione administrimi si përcaktimi i të "
+"ndryshueshmeve globale apo fshirja e threads të përdoruesve të tjerë."
+
+#: server_privileges.php:57 server_privileges.php:201
+#: server_privileges.php:535
+#, fuzzy
+msgid "Allows creating and dropping triggers"
+msgstr "Lejon krijimin dhe eleminimin e treguesve."
+
+#: server_privileges.php:58 server_privileges.php:182
+#: server_privileges.php:445 server_privileges.php:505
+msgid "Allows changing data."
+msgstr "Lejon ndryshimin e të dhënave."
+
+#: server_privileges.php:59 server_privileges.php:260
+msgid "No privileges."
+msgstr "Asnjë të drejtë."
+
+#: server_privileges.php:302 server_privileges.php:303
#, fuzzy
#| msgid "None"
msgctxt "None privileges"
msgid "None"
msgstr "Asnjë lloj"
-#: server_privileges.php:392 server_privileges.php:527
-#: server_privileges.php:1679 server_privileges.php:1685
+#: server_privileges.php:431 server_privileges.php:566
+#: server_privileges.php:1718 server_privileges.php:1724
msgid "Table-specific privileges"
msgstr "Të drejta relative me tabelat"
-#: server_privileges.php:393 server_privileges.php:535
-#: server_privileges.php:1501
+#: server_privileges.php:432 server_privileges.php:574
+#: server_privileges.php:1540
msgid " Note: MySQL privilege names are expressed in English "
msgstr "Shënim: emrat e të drejtave të MySQL janë në Anglisht"
-#: server_privileges.php:524 server_privileges.php:1500
+#: server_privileges.php:563 server_privileges.php:1539
msgid "Global privileges"
msgstr "Të drejtat e përgjithshme"
-#: server_privileges.php:526 server_privileges.php:1679
+#: server_privileges.php:565 server_privileges.php:1718
msgid "Database-specific privileges"
msgstr "Të drejta specifike të databazës"
-#: server_privileges.php:571
+#: server_privileges.php:610
msgid "Administration"
msgstr "Administrimi"
-#: server_privileges.php:591
+#: server_privileges.php:630
msgid "Resource limits"
msgstr "Limitet e rezervave"
-#: server_privileges.php:592
+#: server_privileges.php:631
msgid "Note: Setting these options to 0 (zero) removes the limit."
msgstr ""
"Shënim: Vendosja e këtyre opcioneve në 0 (zero) do të thotë asnjë limit."
-#: server_privileges.php:669
+#: server_privileges.php:708
msgid "Login Information"
msgstr "Informacione mbi Identifikimin"
-#: server_privileges.php:763
+#: server_privileges.php:802
msgid "Do not change the password"
msgstr "Mos ndrysho fjalëkalim"
-#: server_privileges.php:804 server_privileges.php:2166
+#: server_privileges.php:843 server_privileges.php:2205
#, fuzzy
#| msgid "No user(s) found."
msgid "No user found."
msgstr "Nuk u gjet asnjë përdorues."
-#: server_privileges.php:848
+#: server_privileges.php:887
#, php-format
msgid "The user %s already exists!"
msgstr "Përdoruesi %s ekziston!"
-#: server_privileges.php:931
+#: server_privileges.php:970
msgid "You have added a new user."
msgstr "Ke shtuar një përdorues të ri."
-#: server_privileges.php:1152
+#: server_privileges.php:1191
#, php-format
msgid "You have updated the privileges for %s."
msgstr "Ke rifreskuar lejet për %s."
-#: server_privileges.php:1176
+#: server_privileges.php:1215
#, php-format
msgid "You have revoked the privileges for %s"
msgstr "Ke anulluar të drejtat për %s"
-#: server_privileges.php:1212
+#: server_privileges.php:1251
#, php-format
msgid "The password for %s was changed successfully."
msgstr "Fjalëkalimi për përdoruesin %s u ndryshua me sukses."
-#: server_privileges.php:1232
+#: server_privileges.php:1271
#, php-format
msgid "Deleting %s"
msgstr "Në fshirje e sipër të %s"
-#: server_privileges.php:1243
+#: server_privileges.php:1282
msgid "No users selected for deleting!"
msgstr ""
-#: server_privileges.php:1246
+#: server_privileges.php:1285
msgid "Reloading the privileges"
msgstr "Duke ringarkuar të drejtat"
-#: server_privileges.php:1261
+#: server_privileges.php:1300
msgid "The selected users have been deleted successfully."
msgstr "Përdoruesit e zgjedhur u hoqën me sukses."
-#: server_privileges.php:1296
+#: server_privileges.php:1335
msgid "The privileges were reloaded successfully."
msgstr "Të drejtat u përditësuan me sukses."
-#: server_privileges.php:1324 server_privileges.php:1610
+#: server_privileges.php:1363 server_privileges.php:1649
msgid "Edit Privileges"
msgstr "Ndrysho të drejtat"
-#: server_privileges.php:1333
+#: server_privileges.php:1372
msgid "Revoke"
msgstr "Hiq"
-#: server_privileges.php:1365
+#: server_privileges.php:1404
msgid "User overview"
msgstr "Paraqitja e përgjithshme e përdoruesve"
-#: server_privileges.php:1502 server_privileges.php:1684
-#: server_privileges.php:2033
+#: server_privileges.php:1541 server_privileges.php:1723
+#: server_privileges.php:2072
msgid "Grant"
msgstr "Grant"
-#: server_privileges.php:1521 server_privileges.php:2123
+#: server_privileges.php:1560 server_privileges.php:2162
msgid "Any"
msgstr "Çfarëdo"
-#: server_privileges.php:1570 server_privileges.php:1594
-#: server_privileges.php:1988 server_privileges.php:2177
+#: server_privileges.php:1609 server_privileges.php:1633
+#: server_privileges.php:2027 server_privileges.php:2216
msgid "Add a new User"
msgstr "Shto një përdorues të ri"
-#: server_privileges.php:1575
+#: server_privileges.php:1614
msgid "Remove selected users"
msgstr "Heq përdoruesit e zgjedhur"
-#: server_privileges.php:1578
+#: server_privileges.php:1617
msgid "Revoke all active privileges from the users and delete them afterwards."
msgstr "Hiqja të gjitha të drejtat aktive përdoruesve dhe pastaj eleminoi."
-#: server_privileges.php:1579 server_privileges.php:1580
-#: server_privileges.php:1581
+#: server_privileges.php:1618 server_privileges.php:1619
+#: server_privileges.php:1620
msgid "Drop the databases that have the same names as the users."
msgstr "Elemino databazat që kanë emër të njëjtë me përdoruesit."
-#: server_privileges.php:1597
+#: server_privileges.php:1636
#, php-format
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
@@ -5370,92 +4848,92 @@ msgstr ""
"drejtave të përdorura nga serveri nëse janë kryer ndryshime manuale. Në këtë "
"rast, duhet të %srifreskoni të drejtat%s para se të vazhdoni."
-#: server_privileges.php:1645
+#: server_privileges.php:1684
msgid "The selected user was not found in the privilege table."
msgstr "Përdoruesi i zgjedhur nuk u gjet tek tabela e të drejtave."
-#: server_privileges.php:1685
+#: server_privileges.php:1724
msgid "Column-specific privileges"
msgstr "Të drejtat relative të kollonave"
-#: server_privileges.php:1886
+#: server_privileges.php:1925
msgid "Add privileges on the following database"
msgstr "Shto të drejta tek databaza në vazhdim"
-#: server_privileges.php:1904
+#: server_privileges.php:1943
msgid "Wildcards % and _ should be escaped with a \\ to use them literally"
msgstr ""
-#: server_privileges.php:1907
+#: server_privileges.php:1946
msgid "Add privileges on the following table"
msgstr "Shto të drejta tek tabela në vazhdim"
-#: server_privileges.php:1964
+#: server_privileges.php:2003
msgid "Change Login Information / Copy User"
msgstr "Ndrysho Informacionet e Login / Kopjo përdoruesin"
-#: server_privileges.php:1967
+#: server_privileges.php:2006
msgid "Create a new user with the same privileges and ..."
msgstr "Krijo një përdorues të ri me të njëjta të drejta dhe ..."
-#: server_privileges.php:1969
+#: server_privileges.php:2008
msgid "... keep the old one."
msgstr "... mbaj të vjetrin."
-#: server_privileges.php:1970
+#: server_privileges.php:2009
msgid " ... delete the old one from the user tables."
msgstr " ... elemino të vjetrin nga tabela e përdoruesve."
-#: server_privileges.php:1971
+#: server_privileges.php:2010
msgid ""
" ... revoke all active privileges from the old one and delete it afterwards."
msgstr " ... hiq të gjitha të drejtat nga i vjetri e pastaj eleminoje."
-#: server_privileges.php:1972
+#: server_privileges.php:2011
msgid ""
" ... delete the old one from the user tables and reload the privileges "
"afterwards."
msgstr ""
" ... elemino të vjetrin nga tabela e përdoruesve e pastaj rilexo të drejtat."
-#: server_privileges.php:1994
+#: server_privileges.php:2033
msgid "Database for user"
msgstr ""
-#: server_privileges.php:1998
+#: server_privileges.php:2037
#, fuzzy
#| msgid "None"
msgctxt "Create none database for user"
msgid "None"
msgstr "Asnjë lloj"
-#: server_privileges.php:1999
+#: server_privileges.php:2038
msgid "Create database with same name and grant all privileges"
msgstr ""
-#: server_privileges.php:2000
+#: server_privileges.php:2039
msgid "Grant all privileges on wildcard name (username\\_%)"
msgstr ""
-#: server_privileges.php:2003
+#: server_privileges.php:2042
#, fuzzy, php-format
msgid "Grant all privileges on database "%s""
msgstr "Kontrollo të drejtat për databazën "%s"."
-#: server_privileges.php:2026
+#: server_privileges.php:2065
#, php-format
msgid "Users having access to "%s""
msgstr "Përdoruesit që kanë hyrje tek "%s""
-#: server_privileges.php:2134
+#: server_privileges.php:2173
msgid "global"
msgstr "globale"
-#: server_privileges.php:2136
+#: server_privileges.php:2175
msgid "database-specific"
msgstr "specifik i databazës"
-#: server_privileges.php:2138
+#: server_privileges.php:2177
msgid "wildcard"
msgstr "wildcard"
@@ -5503,7 +4981,7 @@ msgstr ""
msgid "This server is configured as master in a replication process."
msgstr ""
-#: server_replication.php:184 server_status.php:281
+#: server_replication.php:184 server_status.php:392
msgid "Show master status"
msgstr ""
@@ -5641,106 +5119,638 @@ msgid ""
"like to configure it?"
msgstr ""
+#: server_status.php:40
+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 ""
+
+#: server_status.php:41
+msgid "The number of transactions that used the temporary binary log cache."
+msgstr ""
+
+#: server_status.php:42
+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 "
+"to increase the tmp_table_size value to cause temporary tables to be memory-"
+"based instead of disk-based."
+msgstr ""
+
+#: server_status.php:43
+msgid "How many temporary files mysqld has created."
+msgstr ""
+
+#: server_status.php:44
+msgid ""
+"The number of in-memory temporary tables created automatically by the server "
+"while executing statements."
+msgstr ""
+
+#: server_status.php:45
+msgid ""
+"The number of rows written with INSERT DELAYED for which some error occurred "
+"(probably duplicate key)."
+msgstr ""
+
#: server_status.php:46
+msgid ""
+"The number of INSERT DELAYED handler threads in use. Every different table "
+"on which one uses INSERT DELAYED gets its own thread."
+msgstr ""
+
+#: server_status.php:47
+msgid "The number of INSERT DELAYED rows written."
+msgstr ""
+
+#: server_status.php:48
+msgid "The number of executed FLUSH statements."
+msgstr ""
+
+#: server_status.php:49
+msgid "The number of internal COMMIT statements."
+msgstr ""
+
+#: server_status.php:50
+msgid "The number of times a row was deleted from a table."
+msgstr ""
+
+#: server_status.php:51
+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 ""
+
+#: server_status.php:52
+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 ""
+
+#: server_status.php:53
+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 ""
+
+#: server_status.php:54
+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 ""
+
+#: server_status.php:55
+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 ""
+
+#: server_status.php:56
+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 "
+"probably have a lot of queries that require MySQL to scan whole tables or "
+"you have joins that don't use keys properly."
+msgstr ""
+
+#: server_status.php:57
+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 "
+"tables are not properly indexed or that your queries are not written to take "
+"advantage of the indexes you have."
+msgstr ""
+
+#: server_status.php:58
+msgid "The number of internal ROLLBACK statements."
+msgstr ""
+
+#: server_status.php:59
+msgid "The number of requests to update a row in a table."
+msgstr ""
+
+#: server_status.php:60
+msgid "The number of requests to insert a row in a table."
+msgstr ""
+
+#: server_status.php:61
+msgid "The number of pages containing data (dirty or clean)."
+msgstr ""
+
+#: server_status.php:62
+msgid "The number of pages currently dirty."
+msgstr ""
+
+#: server_status.php:63
+msgid "The number of buffer pool pages that have been requested to be flushed."
+msgstr ""
+
+#: server_status.php:64
+msgid "The number of free pages."
+msgstr ""
+
+#: server_status.php:65
+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 ""
+
+#: server_status.php:66
+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 "
+"be calculated as Innodb_buffer_pool_pages_total - "
+"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data."
+msgstr ""
+
+#: server_status.php:67
+msgid "Total size of buffer pool, in pages."
+msgstr ""
+
+#: server_status.php:68
+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 ""
+
+#: server_status.php:69
+msgid ""
+"The number of sequential read-aheads InnoDB initiated. This happens when "
+"InnoDB does a sequential full table scan."
+msgstr ""
+
+#: server_status.php:70
+msgid "The number of logical read requests InnoDB has done."
+msgstr ""
+
+#: server_status.php:71
+msgid ""
+"The number of logical reads that InnoDB could not satisfy from buffer pool "
+"and had to do a single-page read."
+msgstr ""
+
+#: server_status.php:72
+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 "
+"available, it's necessary to wait for pages to be flushed first. This "
+"counter counts instances of these waits. If the buffer pool size was set "
+"properly, this value should be small."
+msgstr ""
+
+#: server_status.php:73
+msgid "The number writes done to the InnoDB buffer pool."
+msgstr ""
+
+#: server_status.php:74
+msgid "The number of fsync() operations so far."
+msgstr ""
+
+#: server_status.php:75
+msgid "The current number of pending fsync() operations."
+msgstr ""
+
+#: server_status.php:76
+msgid "The current number of pending reads."
+msgstr ""
+
+#: server_status.php:77
+msgid "The current number of pending writes."
+msgstr ""
+
+#: server_status.php:78
+msgid "The amount of data read so far, in bytes."
+msgstr ""
+
+#: server_status.php:79
+msgid "The total number of data reads."
+msgstr ""
+
+#: server_status.php:80
+msgid "The total number of data writes."
+msgstr ""
+
+#: server_status.php:81
+msgid "The amount of data written so far, in bytes."
+msgstr ""
+
+#: server_status.php:82
+msgid "The number of pages that have been written for doublewrite operations."
+msgstr ""
+
+#: server_status.php:83
+msgid "The number of doublewrite operations that have been performed."
+msgstr ""
+
+#: server_status.php:84
+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 ""
+
+#: server_status.php:85
+msgid "The number of log write requests."
+msgstr ""
+
+#: server_status.php:86
+msgid "The number of physical writes to the log file."
+msgstr ""
+
+#: server_status.php:87
+msgid "The number of fsync() writes done to the log file."
+msgstr ""
+
+#: server_status.php:88
+msgid "The number of pending log file fsyncs."
+msgstr ""
+
+#: server_status.php:89
+msgid "Pending log file writes."
+msgstr ""
+
+#: server_status.php:90
+msgid "The number of bytes written to the log file."
+msgstr ""
+
+#: server_status.php:91
+msgid "The number of pages created."
+msgstr ""
+
+#: server_status.php:92
+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 ""
+
+#: server_status.php:93
+msgid "The number of pages read."
+msgstr ""
+
+#: server_status.php:94
+msgid "The number of pages written."
+msgstr ""
+
+#: server_status.php:95
+msgid "The number of row locks currently being waited for."
+msgstr ""
+
+#: server_status.php:96
+msgid "The average time to acquire a row lock, in milliseconds."
+msgstr ""
+
+#: server_status.php:97
+msgid "The total time spent in acquiring row locks, in milliseconds."
+msgstr ""
+
+#: server_status.php:98
+msgid "The maximum time to acquire a row lock, in milliseconds."
+msgstr ""
+
+#: server_status.php:99
+msgid "The number of times a row lock had to be waited for."
+msgstr ""
+
+#: server_status.php:100
+msgid "The number of rows deleted from InnoDB tables."
+msgstr ""
+
+#: server_status.php:101
+msgid "The number of rows inserted in InnoDB tables."
+msgstr ""
+
+#: server_status.php:102
+msgid "The number of rows read from InnoDB tables."
+msgstr ""
+
+#: server_status.php:103
+msgid "The number of rows updated in InnoDB tables."
+msgstr ""
+
+#: server_status.php:104
+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 ""
+
+#: server_status.php:105
+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 ""
+
+#: server_status.php:106
+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 ""
+
+#: server_status.php:107
+msgid "The number of requests to read a key block from the cache."
+msgstr ""
+
+#: server_status.php:108
+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 ""
+
+#: server_status.php:109
+msgid "The number of requests to write a key block to the cache."
+msgstr ""
+
+#: server_status.php:110
+msgid "The number of physical writes of a key block to disk."
+msgstr ""
+
+#: server_status.php:111
+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 ""
+
+#: server_status.php:112
+msgid "The number of rows waiting to be written in INSERT DELAYED queues."
+msgstr ""
+
+#: server_status.php:113
+msgid ""
+"The number of tables that have been opened. If opened tables is big, your "
+"table cache value is probably too small."
+msgstr ""
+
+#: server_status.php:114
+msgid "The number of files that are open."
+msgstr ""
+
+#: server_status.php:115
+msgid "The number of streams that are open (used mainly for logging)."
+msgstr ""
+
+#: server_status.php:116
+msgid "The number of tables that are open."
+msgstr ""
+
+#: server_status.php:117
+msgid "The number of free memory blocks in query cache."
+msgstr ""
+
+#: server_status.php:118
+msgid "The amount of free memory for query cache."
+msgstr ""
+
+#: server_status.php:119
+msgid "The number of cache hits."
+msgstr ""
+
+#: server_status.php:120
+msgid "The number of queries added to the cache."
+msgstr ""
+
+#: server_status.php:121
+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 "
+"cache size. The query cache uses a least recently used (LRU) strategy to "
+"decide which queries to remove from the cache."
+msgstr ""
+
+#: server_status.php:122
+msgid ""
+"The number of non-cached queries (not cachable, or not cached due to the "
+"query_cache_type setting)."
+msgstr ""
+
+#: server_status.php:123
+msgid "The number of queries registered in the cache."
+msgstr ""
+
+#: server_status.php:124
+msgid "The total number of blocks in the query cache."
+msgstr ""
+
+#: server_status.php:125
+#, fuzzy
+msgctxt "$strShowStatusReset"
+msgid "Reset"
+msgstr "Rinis"
+
+#: server_status.php:126
+msgid "The status of failsafe replication (not yet implemented)."
+msgstr ""
+
+#: server_status.php:127
+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 ""
+
+#: server_status.php:128
+msgid "The number of joins that used a range search on a reference table."
+msgstr ""
+
+#: server_status.php:129
+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 ""
+
+#: server_status.php:130
+msgid ""
+"The number of joins that used ranges on the first table. (It's normally not "
+"critical even if this is big.)"
+msgstr ""
+
+#: server_status.php:131
+msgid "The number of joins that did a full scan of the first table."
+msgstr ""
+
+#: server_status.php:132
+msgid "The number of temporary tables currently open by the slave SQL thread."
+msgstr ""
+
+#: server_status.php:133
+msgid ""
+"Total (since startup) number of times the replication slave SQL thread has "
+"retried transactions."
+msgstr ""
+
+#: server_status.php:134
+msgid "This is ON if this server is a slave that is connected to a master."
+msgstr ""
+
+#: server_status.php:135
+msgid ""
+"The number of threads that have taken more than slow_launch_time seconds to "
+"create."
+msgstr ""
+
+#: server_status.php:136
+msgid ""
+"The number of queries that have taken more than long_query_time seconds."
+msgstr ""
+
+#: server_status.php:137
+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 ""
+
+#: server_status.php:138
+msgid "The number of sorts that were done with ranges."
+msgstr ""
+
+#: server_status.php:139
+msgid "The number of sorted rows."
+msgstr ""
+
+#: server_status.php:140
+msgid "The number of sorts that were done by scanning the table."
+msgstr ""
+
+#: server_status.php:141
+msgid "The number of times that a table lock was acquired immediately."
+msgstr ""
+
+#: server_status.php:142
+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 "
+"should first optimize your queries, and then either split your table or "
+"tables or use replication."
+msgstr ""
+
+#: server_status.php:143
+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 ""
+
+#: server_status.php:144
+msgid "The number of currently open connections."
+msgstr ""
+
+#: server_status.php:145
+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 "
+"doesn't give a notable performance improvement if you have a good thread "
+"implementation.)"
+msgstr ""
+
+#: server_status.php:146
+msgid "The number of threads that are not sleeping."
+msgstr ""
+
+#: server_status.php:157
msgid "Runtime Information"
msgstr "Informacione mbi Runtime"
-#: server_status.php:250
+#: server_status.php:361
msgid "Handler"
msgstr ""
-#: server_status.php:251
+#: server_status.php:362
#, fuzzy
msgid "Query cache"
msgstr "Lloji i query"
-#: server_status.php:252
+#: server_status.php:363
msgid "Threads"
msgstr ""
-#: server_status.php:254
+#: server_status.php:365
msgid "Temporary data"
msgstr ""
-#: server_status.php:255
+#: server_status.php:366
#, fuzzy
msgid "Delayed inserts"
msgstr "Përdor shtimet me vonesë"
-#: server_status.php:256
+#: server_status.php:367
msgid "Key cache"
msgstr ""
-#: server_status.php:257
+#: server_status.php:368
msgid "Joins"
msgstr ""
-#: server_status.php:259
+#: server_status.php:370
msgid "Sorting"
msgstr ""
-#: server_status.php:261
+#: server_status.php:372
msgid "Transaction coordinator"
msgstr ""
-#: server_status.php:271
+#: server_status.php:382
msgid "Flush (close) all tables"
msgstr ""
-#: server_status.php:273
+#: server_status.php:384
#, fuzzy
msgid "Show open tables"
msgstr "Shfaq tabelat"
-#: server_status.php:278
+#: server_status.php:389
msgid "Show slave hosts"
msgstr ""
-#: server_status.php:284
+#: server_status.php:395
msgid "Show slave status"
msgstr ""
-#: server_status.php:289
+#: server_status.php:400
msgid "Flush query cache"
msgstr ""
-#: server_status.php:294
+#: server_status.php:405
msgid "Show processes"
msgstr "Shfaq proceset në ekzekutim"
-#: server_status.php:344
+#: server_status.php:455
#, fuzzy
#| msgid "Reset"
msgctxt "for Show status"
msgid "Reset"
msgstr "Rinis"
-#: server_status.php:350
+#: server_status.php:461
#, php-format
msgid "This MySQL server has been running for %s. It started up on %s."
msgstr "Ky server MySQL po punon që prej %s. U nis më %s."
-#: server_status.php:360
+#: server_status.php:471
msgid ""
"This MySQL server works as master and slave in replication"
"b> process."
msgstr ""
-#: server_status.php:362
+#: server_status.php:473
msgid "This MySQL server works as master in replication process."
msgstr ""
-#: server_status.php:364
+#: server_status.php:475
msgid "This MySQL server works as slave in replication process."
msgstr ""
-#: server_status.php:366
+#: server_status.php:477
msgid ""
"For further information about replication status on the server, please visit "
"the replication section."
msgstr ""
-#: server_status.php:383
+#: server_status.php:494
msgid ""
"Server traffic: These tables show the network traffic statistics of "
"this MySQL server since its startup."
@@ -5748,46 +5758,46 @@ msgstr ""
"Trafiku i serverit: Këto tabela do të shfaqin statistikat e trafikut "
"të rrjetit për këtë server MySQL që nga momenti i nisjes së tij."
-#: server_status.php:388
+#: server_status.php:499
msgid "Traffic"
msgstr "Trafiku"
-#: server_status.php:388
+#: server_status.php:499
msgid ""
"On a busy server, the byte counters may overrun, so those statistics as "
"reported by the MySQL server may be incorrect."
msgstr ""
-#: server_status.php:389 server_status.php:434 server_status.php:497
-#: server_status.php:555
+#: server_status.php:500 server_status.php:545 server_status.php:608
+#: server_status.php:666
msgid "per hour"
msgstr "në orë"
-#: server_status.php:394
+#: server_status.php:505
msgid "Received"
msgstr "Marrë"
-#: server_status.php:404
+#: server_status.php:515
msgid "Sent"
msgstr "Dërguar"
-#: server_status.php:433
+#: server_status.php:544
msgid "Connections"
msgstr "Lidhje"
-#: server_status.php:440
+#: server_status.php:551
msgid "max. concurrent connections"
msgstr ""
-#: server_status.php:447
+#: server_status.php:558
msgid "Failed attempts"
msgstr "Përpjekje të dështuara"
-#: server_status.php:461
+#: server_status.php:572
msgid "Aborted"
msgstr "Dështoi"
-#: server_status.php:490
+#: server_status.php:601
#, php-format
msgid ""
"Query statistics: Since its startup, %s queries have been sent to the "
@@ -5796,19 +5806,19 @@ msgstr ""
"Statistikat e Query: Që nga nisja e tij, serverit i janë dërguar %s "
"queries."
-#: server_status.php:498
+#: server_status.php:609
msgid "per minute"
msgstr "në minutë"
-#: server_status.php:499
+#: server_status.php:610
msgid "per second"
msgstr "në sekondë"
-#: server_status.php:554
+#: server_status.php:665
msgid "Query type"
msgstr "Lloji i query"
-#: server_status.php:721
+#: server_status.php:832
msgid "Replication status"
msgstr ""
diff --git a/po/sr.po b/po/sr.po
index 54e160dbc..9f4893fa7 100755
--- a/po/sr.po
+++ b/po/sr.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-06-04 16:07-0400\n"
+"POT-Creation-Date: 2010-06-08 12:32-0400\n"
"PO-Revision-Date: 2010-03-30 23:47+0200\n"
"Last-Translator: Michal \n"
"Language-Team: serbian_cyrillic \n"
@@ -16,11 +16,11 @@ msgstr ""
"X-Generator: Pootle 2.0.1\n"
#: browse_foreigners.php:38 browse_foreigners.php:59
-#: libraries/display_tbl.lib.php:417 server_privileges.php:1475
+#: libraries/display_tbl.lib.php:417 server_privileges.php:1514
msgid "Show all"
msgstr "Прикажи све"
-#: browse_foreigners.php:82 libraries/common.lib.php:2304
+#: browse_foreigners.php:82 libraries/common.lib.php:2313
#: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:394
#: libraries/export/pdf.php:147 pdf_schema.php:283 pdf_schema.php:1123
#: pdf_schema.php:1139
@@ -39,8 +39,8 @@ msgstr ""
#: browse_foreigners.php:150 db_structure.php:79 db_structure.php:80
#: db_structure.php:91 db_structure.php:93 db_structure.php:104
-#: db_structure.php:106 libraries/common.lib.php:2822
-#: libraries/common.lib.php:2829 libraries/db_links.inc.php:75
+#: db_structure.php:106 libraries/common.lib.php:2831
+#: libraries/common.lib.php:2838 libraries/db_links.inc.php:75
#: libraries/tbl_links.inc.php:63
msgid "Search"
msgstr "Претраживање"
@@ -50,7 +50,7 @@ msgstr "Претраживање"
#: db_structure.php:567 js/messages.php:48 libraries/Config.class.php:1046
#: libraries/Theme_Manager.class.php:311
#: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719
-#: libraries/common.lib.php:1333 libraries/common.lib.php:2279
+#: libraries/common.lib.php:1335 libraries/common.lib.php:2288
#: libraries/display_change_password.lib.php:82
#: libraries/display_create_table.lib.php:63
#: libraries/display_export.lib.php:275 libraries/display_import.lib.php:276
@@ -61,9 +61,9 @@ msgstr "Претраживање"
#: libraries/sql_query_form.lib.php:552 libraries/tbl_properties.inc.php:782
#: main.php:128 navigation.php:237 pdf_pages.php:292 pdf_pages.php:328
#: pdf_pages.php:530 pmd_pdf.php:116 server_binlog.php:142
-#: server_privileges.php:625 server_privileges.php:1585
-#: server_privileges.php:1932 server_privileges.php:1979
-#: server_privileges.php:2018 server_replication.php:235
+#: server_privileges.php:664 server_privileges.php:1624
+#: server_privileges.php:1971 server_privileges.php:2018
+#: server_privileges.php:2057 server_replication.php:235
#: server_replication.php:318 server_replication.php:341
#: server_synchronize.php:1209 tbl_change.php:330 tbl_change.php:1174
#: tbl_change.php:1211 tbl_indexes.php:254 tbl_operations.php:265
@@ -81,7 +81,7 @@ msgstr "Име кључа"
#: browse_foreigners.php:169 browse_foreigners.php:171
#: server_collations.php:55 server_collations.php:67 server_engines.php:59
-#: server_status.php:628
+#: server_status.php:739
msgid "Description"
msgstr "Опис"
@@ -122,7 +122,7 @@ msgstr "Имена колона"
#: libraries/db_structure.lib.php:60 libraries/export/htmlword.php:245
#: libraries/export/latex.php:360 libraries/export/odt.php:297
#: libraries/export/texytext.php:234 libraries/tbl_properties.inc.php:100
-#: pdf_schema.php:1263 pdf_schema.php:1284 server_privileges.php:2031
+#: pdf_schema.php:1263 pdf_schema.php:1284 server_privileges.php:2070
#: tbl_change.php:287 tbl_change.php:314 tbl_printview.php:143
#: tbl_printview.php:313 tbl_select.php:136 tbl_structure.php:178
#: tbl_structure.php:659 tbl_tracking.php:274 tbl_tracking.php:321
@@ -166,9 +166,9 @@ msgstr "Коментари"
#: libraries/Index.class.php:386 libraries/export/htmlword.php:322
#: libraries/export/latex.php:430 libraries/export/odt.php:368
#: libraries/export/texytext.php:311 libraries/mult_submits.inc.php:263
-#: pdf_schema.php:1344 server_privileges.php:1529 server_privileges.php:1540
-#: server_privileges.php:1850 server_privileges.php:1855
-#: server_privileges.php:2148 sql.php:132 sql.php:194 tbl_printview.php:229
+#: pdf_schema.php:1344 server_privileges.php:1568 server_privileges.php:1579
+#: server_privileges.php:1889 server_privileges.php:1894
+#: server_privileges.php:2187 sql.php:132 sql.php:194 tbl_printview.php:229
#: tbl_structure.php:350 tbl_tracking.php:337 tbl_tracking.php:342
msgid "No"
msgstr "Не"
@@ -182,9 +182,9 @@ msgstr "Не"
#: libraries/mult_submits.inc.php:101 libraries/mult_submits.inc.php:106
#: libraries/mult_submits.inc.php:111 libraries/mult_submits.inc.php:262
#: libraries/mult_submits.inc.php:273 pdf_schema.php:1344
-#: server_databases.php:64 server_privileges.php:1526
-#: server_privileges.php:1540 server_privileges.php:1850
-#: server_privileges.php:1853 server_privileges.php:2148 sql.php:193
+#: server_databases.php:64 server_privileges.php:1565
+#: server_privileges.php:1579 server_privileges.php:1889
+#: server_privileges.php:1892 server_privileges.php:2187 sql.php:193
#: tbl_printview.php:229 tbl_structure.php:40 tbl_structure.php:350
#: tbl_tracking.php:335 tbl_tracking.php:340
msgid "Yes"
@@ -281,7 +281,7 @@ msgstr "Пребаци се на копирану базу"
msgid "BLOB Repository"
msgstr ""
-#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1350
+#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1352
#: libraries/server_links.inc.php:49 server_processlist.php:59
#: tbl_tracking.php:596 test/theme.php:101
msgid "Status"
@@ -345,8 +345,8 @@ msgstr "Уређивање PDF страна"
#: db_printview.php:104 db_tracking.php:72 db_tracking.php:157
#: libraries/db_structure.lib.php:46 libraries/export/xml.php:328
-#: libraries/header.inc.php:126 pdf_pages.php:424 server_privileges.php:1626
-#: server_privileges.php:1682 server_privileges.php:1946
+#: libraries/header.inc.php:126 pdf_pages.php:424 server_privileges.php:1665
+#: server_privileges.php:1721 server_privileges.php:1985
#: server_synchronize.php:423 server_synchronize.php:866 tbl_tracking.php:592
#: test/theme.php:75
msgid "Table"
@@ -448,7 +448,7 @@ msgstr "Del"
#: db_qbe.php:370 db_qbe.php:451 db_qbe.php:522 db_qbe.php:553
#: libraries/display_import.lib.php:166 libraries/tbl_properties.inc.php:779
-#: server_privileges.php:258 tbl_change.php:1031 tbl_indexes.php:250
+#: server_privileges.php:297 tbl_change.php:1031 tbl_indexes.php:250
#: tbl_select.php:288
msgid "Or"
msgstr "или"
@@ -482,7 +482,7 @@ msgstr "Користи табеле"
msgid "SQL query on database %s:"
msgstr "SQL упит на бази %s:"
-#: db_qbe.php:934 libraries/common.lib.php:1223
+#: db_qbe.php:934 libraries/common.lib.php:1225
msgid "Submit Query"
msgstr "Изврши SQL упит"
@@ -521,7 +521,7 @@ msgstr "%s погодака унутар табеле %s"
#: db_search.php:267 db_structure.php:77 db_structure.php:78
#: db_structure.php:90 db_structure.php:92 db_structure.php:103
-#: db_structure.php:105 libraries/common.lib.php:2824
+#: db_structure.php:105 libraries/common.lib.php:2833
#: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50
#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:467
msgid "Browse"
@@ -568,26 +568,26 @@ msgstr "Унутар табела:"
#: db_structure.php:81 db_structure.php:82 db_structure.php:94
#: db_structure.php:95 db_structure.php:107 db_structure.php:108
-#: libraries/common.lib.php:2823 libraries/sql_query_form.lib.php:334
+#: libraries/common.lib.php:2832 libraries/sql_query_form.lib.php:334
#: libraries/sql_query_form.lib.php:337 libraries/tbl_links.inc.php:76
msgid "Insert"
msgstr "Нови запис"
#: db_structure.php:83 db_structure.php:96 db_structure.php:109
-#: libraries/common.lib.php:2820 libraries/common.lib.php:2827
+#: libraries/common.lib.php:2829 libraries/common.lib.php:2836
#: libraries/db_links.inc.php:63 libraries/export/htmlword.php:23
#: libraries/export/latex.php:33 libraries/export/latex.php:337
#: libraries/export/odt.php:32 libraries/export/sql.php:60
#: libraries/export/texytext.php:23 libraries/import.lib.php:1104
#: libraries/tbl_links.inc.php:56 pmd_general.php:134
-#: server_privileges.php:554 server_replication.php:315 tbl_tracking.php:269
+#: server_privileges.php:593 server_replication.php:315 tbl_tracking.php:269
msgid "Structure"
msgstr "Структура"
#: db_structure.php:84 db_structure.php:85 db_structure.php:97
#: db_structure.php:98 db_structure.php:110 db_structure.php:111
#: db_structure.php:545 db_structure.php:546 db_tracking.php:91
-#: libraries/Index.class.php:483 libraries/common.lib.php:1654
+#: libraries/Index.class.php:483 libraries/common.lib.php:1656
#: libraries/db_links.inc.php:100 libraries/mult_submits.inc.php:36
#: libraries/mult_submits.inc.php:73 libraries/tbl_links.inc.php:127
#: server_databases.php:352 tbl_structure.php:27 tbl_structure.php:151
@@ -597,7 +597,7 @@ msgstr "Одбаци"
#: db_structure.php:86 db_structure.php:87 db_structure.php:99
#: db_structure.php:100 db_structure.php:112 db_structure.php:113
-#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1653
+#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1655
#: libraries/mult_submits.inc.php:39 libraries/tbl_links.inc.php:105
msgid "Empty"
msgstr "Испразни"
@@ -639,7 +639,7 @@ msgstr "Поглед"
#: db_structure.php:485 libraries/db_structure.lib.php:49
#: libraries/server_links.inc.php:70 server_replication.php:33
-#: server_replication.php:164 server_status.php:258
+#: server_replication.php:164 server_status.php:369
msgid "Replication"
msgstr "Репликација"
@@ -655,20 +655,20 @@ msgstr "%s је подразумевани погон складиштења н
#: db_structure.php:524 db_structure.php:541 db_structure.php:542
#: libraries/display_tbl.lib.php:2081 libraries/display_tbl.lib.php:2086
#: libraries/mult_submits.inc.php:16 server_databases.php:346
-#: server_databases.php:351 server_privileges.php:1557 tbl_structure.php:455
+#: server_databases.php:351 server_privileges.php:1596 tbl_structure.php:455
#: tbl_structure.php:464
msgid "With selected:"
msgstr "Означено:"
#: db_structure.php:527 libraries/display_tbl.lib.php:2076
-#: server_databases.php:348 server_privileges.php:530
-#: server_privileges.php:1560 tbl_structure.php:458
+#: server_databases.php:348 server_privileges.php:569
+#: server_privileges.php:1599 tbl_structure.php:458
msgid "Check All"
msgstr "Означи све"
#: db_structure.php:531 libraries/display_tbl.lib.php:2077
#: libraries/replication_gui.lib.php:33 server_databases.php:350
-#: server_privileges.php:533 server_privileges.php:1564 tbl_structure.php:462
+#: server_privileges.php:572 server_privileges.php:1603 tbl_structure.php:462
msgid "Uncheck All"
msgstr "ниједно"
@@ -706,7 +706,7 @@ msgstr "Анализирај табелу"
#: libraries/display_export.lib.php:83 libraries/display_tbl.lib.php:2094
#: libraries/display_tbl.lib.php:2225 libraries/mult_submits.inc.php:62
#: libraries/server_links.inc.php:84 libraries/tbl_links.inc.php:82
-#: pmd_pdf.php:84 pmd_pdf.php:109 server_privileges.php:1341
+#: pmd_pdf.php:84 pmd_pdf.php:109 server_privileges.php:1380
#: setup/frames/menu.inc.php:22 tbl_row_action.php:59
msgid "Export"
msgstr "Извоз"
@@ -725,8 +725,8 @@ msgstr "Провери табелу"
#: libraries/export/sql.php:342 libraries/export/texytext.php:84
#: libraries/export/xml.php:255 libraries/header.inc.php:106
#: libraries/header_printview.inc.php:58 server_databases.php:169
-#: server_privileges.php:1621 server_privileges.php:1682
-#: server_privileges.php:1940 server_processlist.php:56
+#: server_privileges.php:1660 server_privileges.php:1721
+#: server_privileges.php:1979 server_processlist.php:56
#: server_synchronize.php:1179 server_synchronize.php:1183
#: tbl_tracking.php:591 test/theme.php:65
msgid "Database"
@@ -748,8 +748,8 @@ msgstr ""
#: db_tracking.php:77 libraries/Index.class.php:440
#: libraries/db_structure.lib.php:53 server_databases.php:203
-#: server_privileges.php:1503 server_privileges.php:1686
-#: server_privileges.php:2034 tbl_structure.php:187
+#: server_privileges.php:1542 server_privileges.php:1725
+#: server_privileges.php:2073 tbl_structure.php:187
msgid "Action"
msgstr "Акција"
@@ -955,11 +955,11 @@ msgstr "Име домаћина је празно!"
msgid "The user name is empty!"
msgstr "Име корисника није унето!"
-#: js/messages.php:44 server_privileges.php:1197 user_password.php:70
+#: js/messages.php:44 server_privileges.php:1236 user_password.php:70
msgid "The password is empty!"
msgstr "Лозинка је празна!"
-#: js/messages.php:45 server_privileges.php:1195 user_password.php:73
+#: js/messages.php:45 server_privileges.php:1234 user_password.php:73
msgid "The passwords aren't the same!"
msgstr "Лозинке нису идентичне!"
@@ -1037,8 +1037,8 @@ msgid "Prev"
msgstr "Претходна"
#. l10n: Display text for next month link in calendar
-#: js/messages.php:77 libraries/common.lib.php:2344
-#: libraries/common.lib.php:2347 libraries/display_tbl.lib.php:338
+#: js/messages.php:77 libraries/common.lib.php:2353
+#: libraries/common.lib.php:2356 libraries/display_tbl.lib.php:338
#: server_binlog.php:205 server_binlog.php:207 tbl_printview.php:424
#: tbl_structure.php:801
msgid "Next"
@@ -1114,27 +1114,27 @@ msgid "December"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:97 libraries/common.lib.php:1555
+#: js/messages.php:97 libraries/common.lib.php:1557
msgid "Jan"
msgstr "јан"
#. l10n: Short month name
-#: js/messages.php:99 libraries/common.lib.php:1557
+#: js/messages.php:99 libraries/common.lib.php:1559
msgid "Feb"
msgstr "феб"
#. l10n: Short month name
-#: js/messages.php:101 libraries/common.lib.php:1559
+#: js/messages.php:101 libraries/common.lib.php:1561
msgid "Mar"
msgstr "мар"
#. l10n: Short month name
-#: js/messages.php:103 libraries/common.lib.php:1561
+#: js/messages.php:103 libraries/common.lib.php:1563
msgid "Apr"
msgstr "апр"
#. l10n: Short month name
-#: js/messages.php:105 libraries/common.lib.php:1563
+#: js/messages.php:105 libraries/common.lib.php:1565
#, fuzzy
#| msgid "May"
msgctxt "Short month name"
@@ -1142,37 +1142,37 @@ msgid "May"
msgstr "мај"
#. l10n: Short month name
-#: js/messages.php:107 libraries/common.lib.php:1565
+#: js/messages.php:107 libraries/common.lib.php:1567
msgid "Jun"
msgstr "јун"
#. l10n: Short month name
-#: js/messages.php:109 libraries/common.lib.php:1567
+#: js/messages.php:109 libraries/common.lib.php:1569
msgid "Jul"
msgstr "јул"
#. l10n: Short month name
-#: js/messages.php:111 libraries/common.lib.php:1569
+#: js/messages.php:111 libraries/common.lib.php:1571
msgid "Aug"
msgstr "авг"
#. l10n: Short month name
-#: js/messages.php:113 libraries/common.lib.php:1571
+#: js/messages.php:113 libraries/common.lib.php:1573
msgid "Sep"
msgstr "сеп"
#. l10n: Short month name
-#: js/messages.php:115 libraries/common.lib.php:1573
+#: js/messages.php:115 libraries/common.lib.php:1575
msgid "Oct"
msgstr "окт"
#. l10n: Short month name
-#: js/messages.php:117 libraries/common.lib.php:1575
+#: js/messages.php:117 libraries/common.lib.php:1577
msgid "Nov"
msgstr "нов"
#. l10n: Short month name
-#: js/messages.php:119 libraries/common.lib.php:1577
+#: js/messages.php:119 libraries/common.lib.php:1579
msgid "Dec"
msgstr "дец"
@@ -1213,37 +1213,37 @@ msgid "Saturday"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:132 libraries/common.lib.php:1580
+#: js/messages.php:132 libraries/common.lib.php:1582
msgid "Sun"
msgstr "Нед"
#. l10n: Short week day name
-#: js/messages.php:134 libraries/common.lib.php:1582
+#: js/messages.php:134 libraries/common.lib.php:1584
msgid "Mon"
msgstr "Пон"
#. l10n: Short week day name
-#: js/messages.php:136 libraries/common.lib.php:1584
+#: js/messages.php:136 libraries/common.lib.php:1586
msgid "Tue"
msgstr "Уто"
#. l10n: Short week day name
-#: js/messages.php:138 libraries/common.lib.php:1586
+#: js/messages.php:138 libraries/common.lib.php:1588
msgid "Wed"
msgstr "Сре"
#. l10n: Short week day name
-#: js/messages.php:140 libraries/common.lib.php:1588
+#: js/messages.php:140 libraries/common.lib.php:1590
msgid "Thu"
msgstr "Чет"
#. l10n: Short week day name
-#: js/messages.php:142 libraries/common.lib.php:1590
+#: js/messages.php:142 libraries/common.lib.php:1592
msgid "Fri"
msgstr "Пет"
#. l10n: Short week day name
-#: js/messages.php:144 libraries/common.lib.php:1592
+#: js/messages.php:144 libraries/common.lib.php:1594
msgid "Sat"
msgstr "Суб"
@@ -1391,7 +1391,7 @@ msgid "Comment"
msgstr "Коментари"
#: libraries/Index.class.php:466 libraries/common.lib.php:616
-#: libraries/common.lib.php:1199 libraries/display_tbl.lib.php:1117
+#: libraries/common.lib.php:1201 libraries/display_tbl.lib.php:1117
#: libraries/import.lib.php:1087 libraries/import.lib.php:1111
#: pdf_pages.php:285 setup/frames/index.inc.php:124
#: setup/lib/messages.inc.php:352 tbl_row_action.php:69
@@ -1415,7 +1415,7 @@ msgid ""
msgstr ""
#: libraries/List_Database.class.php:431 libraries/server_links.inc.php:41
-#: server_databases.php:88 server_privileges.php:1621
+#: server_databases.php:88 server_privileges.php:1660
#: setup/lib/messages.inc.php:110 test/theme.php:93
msgid "Databases"
msgstr "Базе"
@@ -1748,7 +1748,7 @@ msgid "Documentation"
msgstr "Документација"
#: libraries/common.lib.php:595 libraries/header_printview.inc.php:61
-#: server_processlist.php:60 server_status.php:247
+#: server_processlist.php:60 server_status.php:358
msgid "SQL query"
msgstr "SQL упит"
@@ -1764,130 +1764,130 @@ msgstr "Објасни SQL"
msgid "Skip Explain SQL"
msgstr "Прескочи објашњавање SQL-a"
-#: libraries/common.lib.php:1212
+#: libraries/common.lib.php:1214
msgid "Without PHP Code"
msgstr "без PHP кода"
-#: libraries/common.lib.php:1215 setup/lib/messages.inc.php:355
+#: libraries/common.lib.php:1217 setup/lib/messages.inc.php:355
msgid "Create PHP Code"
msgstr "Направи PHP код"
-#: libraries/common.lib.php:1233 server_status.php:341
+#: libraries/common.lib.php:1235 server_status.php:452
#: setup/lib/messages.inc.php:354
msgid "Refresh"
msgstr "Освежи"
-#: libraries/common.lib.php:1242
+#: libraries/common.lib.php:1244
msgid "Skip Validate SQL"
msgstr "Прескочи проверу SQL-a"
-#: libraries/common.lib.php:1245 setup/lib/messages.inc.php:356 sql.php:518
+#: libraries/common.lib.php:1247 setup/lib/messages.inc.php:356 sql.php:518
msgid "Validate SQL"
msgstr "Провери SQL"
-#: libraries/common.lib.php:1276
+#: libraries/common.lib.php:1278
msgid "Inline edit of this query"
msgstr ""
-#: libraries/common.lib.php:1278
+#: libraries/common.lib.php:1280
#, fuzzy
#| msgid "Engines"
msgid "Inline"
msgstr "Складиштења"
-#: libraries/common.lib.php:1332 libraries/common.lib.php:1347
+#: libraries/common.lib.php:1334 libraries/common.lib.php:1349
msgid "Profiling"
msgstr "Профилисање"
-#: libraries/common.lib.php:1351 libraries/tbl_triggers.lib.php:28
+#: libraries/common.lib.php:1353 libraries/tbl_triggers.lib.php:28
#: server_processlist.php:58
msgid "Time"
msgstr "Време"
#. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "B"
msgstr "бајтова"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "KiB"
msgstr "КБ"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "MiB"
msgstr "МБ"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "GiB"
msgstr "ГБ"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "TiB"
msgstr "ТБ"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "PiB"
msgstr "ПБ"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "EiB"
msgstr "ЕБ"
#. l10n: Thousands separator
-#: libraries/common.lib.php:1417
+#: libraries/common.lib.php:1419
msgid ","
msgstr ","
#. l10n: Decimal separator
-#: libraries/common.lib.php:1419
+#: libraries/common.lib.php:1421
msgid "."
msgstr "."
#. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string
-#: libraries/common.lib.php:1596
+#: libraries/common.lib.php:1598
#: libraries/transformations/text_plain__dateformat.inc.php:34
msgid "%B %d, %Y at %I:%M %p"
msgstr "%d. %B %Y. у %H:%M"
-#: libraries/common.lib.php:1898
+#: libraries/common.lib.php:1907
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "%s дана, %s сати, %s минута и %s секунди"
-#: libraries/common.lib.php:2313 libraries/common.lib.php:2316
-#: libraries/display_tbl.lib.php:290 server_status.php:608
+#: libraries/common.lib.php:2322 libraries/common.lib.php:2325
+#: libraries/display_tbl.lib.php:290 server_status.php:719
msgid "Begin"
msgstr "Почетак"
-#: libraries/common.lib.php:2314 libraries/common.lib.php:2317
+#: libraries/common.lib.php:2323 libraries/common.lib.php:2326
#: libraries/display_tbl.lib.php:291 server_binlog.php:168
#: server_binlog.php:170
msgid "Previous"
msgstr "Претходна"
-#: libraries/common.lib.php:2345 libraries/common.lib.php:2348
+#: libraries/common.lib.php:2354 libraries/common.lib.php:2357
#: libraries/display_tbl.lib.php:353
msgid "End"
msgstr "Крај"
-#: libraries/common.lib.php:2421
+#: libraries/common.lib.php:2430
#, php-format
msgid "Jump to database "%s"."
msgstr "Пређи на базу "%s"."
-#: libraries/common.lib.php:2441
+#: libraries/common.lib.php:2450
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr "Ова функционалност %s је погођена познатом грешком, видите %s"
-#: libraries/common.lib.php:2821 libraries/common.lib.php:2828
+#: libraries/common.lib.php:2830 libraries/common.lib.php:2837
#: libraries/db_links.inc.php:68 libraries/export/sql.php:25
#: libraries/import/sql.php:18 libraries/server_links.inc.php:45
#: libraries/tbl_links.inc.php:60 querywindow.php:99 test/theme.php:97
msgid "SQL"
msgstr "SQL"
-#: libraries/common.lib.php:2830 libraries/db_links.inc.php:104
+#: libraries/common.lib.php:2839 libraries/db_links.inc.php:104
#: libraries/tbl_links.inc.php:95 libraries/tbl_links.inc.php:117
#: view_operations.php:89
msgid "Operations"
@@ -1943,8 +1943,8 @@ msgid "Import"
msgstr "Увоз"
#: libraries/db_links.inc.php:111 libraries/server_links.inc.php:66
-#: server_privileges.php:72 server_privileges.php:1683
-#: server_privileges.php:2032 test/theme.php:117
+#: server_privileges.php:111 server_privileges.php:1722
+#: server_privileges.php:2071 test/theme.php:117
msgid "Privileges"
msgstr "Привилегије"
@@ -1992,22 +1992,22 @@ msgid "Change password"
msgstr "Промени лозинку"
#: libraries/display_change_password.lib.php:35
-#: libraries/replication_gui.lib.php:345 server_privileges.php:768
+#: libraries/replication_gui.lib.php:345 server_privileges.php:807
msgid "No Password"
msgstr "Нема лозинке"
#: libraries/display_change_password.lib.php:41
#: libraries/replication_gui.lib.php:59 libraries/replication_gui.lib.php:60
#: libraries/replication_gui.lib.php:335 libraries/replication_gui.lib.php:339
-#: libraries/replication_gui.lib.php:349 server_privileges.php:757
-#: server_privileges.php:761 server_privileges.php:772
-#: server_privileges.php:1499 server_synchronize.php:1175
+#: libraries/replication_gui.lib.php:349 server_privileges.php:796
+#: server_privileges.php:800 server_privileges.php:811
+#: server_privileges.php:1538 server_synchronize.php:1175
msgid "Password"
msgstr "Лозинка"
#: libraries/display_change_password.lib.php:46
#: libraries/replication_gui.lib.php:353 libraries/replication_gui.lib.php:356
-#: server_privileges.php:776 server_privileges.php:779
+#: server_privileges.php:815 server_privileges.php:818
msgid "Re-type"
msgstr "Поновите унос"
@@ -2022,12 +2022,12 @@ msgid "MySQL 4.0 compatible"
msgstr "MySQL 4.0 компатибилно"
#: libraries/display_change_password.lib.php:72
-#: libraries/replication_gui.lib.php:360 server_privileges.php:783
+#: libraries/replication_gui.lib.php:360 server_privileges.php:822
msgid "Generate Password"
msgstr "Направи лозинку"
#: libraries/display_change_password.lib.php:75
-#: libraries/replication_gui.lib.php:363 server_privileges.php:786
+#: libraries/replication_gui.lib.php:363 server_privileges.php:825
msgid "Generate"
msgstr "Направи"
@@ -2040,8 +2040,8 @@ msgstr "Направи нову базу података"
msgid "Create"
msgstr "Направи"
-#: libraries/display_create_database.lib.php:40 server_privileges.php:74
-#: server_privileges.php:1388 server_replication.php:35
+#: libraries/display_create_database.lib.php:40 server_privileges.php:113
+#: server_privileges.php:1427 server_replication.php:35
msgid "No Privileges"
msgstr "Нема привилегија"
@@ -2133,7 +2133,7 @@ msgstr "Компресија"
#: libraries/display_export.lib.php:240 libraries/display_import.lib.php:197
#: libraries/display_import.lib.php:210 libraries/display_tbl.lib.php:530
#: libraries/export/sql.php:868 libraries/tbl_properties.inc.php:575
-#: server_privileges.php:1836 server_processlist.php:75
+#: server_privileges.php:1875 server_processlist.php:75
msgid "None"
msgstr "нема"
@@ -2463,7 +2463,7 @@ msgstr ""
msgid "Buffer Pool"
msgstr "Скуп прихватника"
-#: libraries/engines/innodb.lib.php:145 server_status.php:306
+#: libraries/engines/innodb.lib.php:145 server_status.php:417
msgid "InnoDB Status"
msgstr "InnoDB статус"
@@ -2472,8 +2472,8 @@ msgid "Buffer Pool Usage"
msgstr "Коришћење скупа прихватника"
#: libraries/engines/innodb.lib.php:194 server_databases.php:137
-#: server_databases.php:305 server_status.php:414 server_status.php:475
-#: server_status.php:496 tbl_printview.php:351 tbl_structure.php:696
+#: server_databases.php:305 server_status.php:525 server_status.php:586
+#: server_status.php:607 tbl_printview.php:351 tbl_structure.php:696
msgid "Total"
msgstr "Укупно"
@@ -2806,7 +2806,7 @@ msgstr "Microsoft Word 2000"
#: libraries/export/latex.php:201 libraries/export/odt.php:48
#: libraries/export/sql.php:106 libraries/export/sql.php:868
#: libraries/export/texytext.php:27 server_databases.php:127
-#: server_privileges.php:537 server_replication.php:316 tbl_printview.php:317
+#: server_privileges.php:576 server_replication.php:316 tbl_printview.php:317
#: tbl_structure.php:665
msgid "Data"
msgstr "Подаци"
@@ -2856,9 +2856,9 @@ msgstr "MIME-типови"
#: libraries/export/xml.php:102 libraries/header_printview.inc.php:57
#: libraries/replication_gui.lib.php:63 libraries/replication_gui.lib.php:174
#: libraries/replication_gui.lib.php:269 libraries/replication_gui.lib.php:272
-#: libraries/replication_gui.lib.php:329 server_privileges.php:692
-#: server_privileges.php:695 server_privileges.php:751
-#: server_privileges.php:1498 server_privileges.php:2030
+#: libraries/replication_gui.lib.php:329 server_privileges.php:731
+#: server_privileges.php:734 server_privileges.php:790
+#: server_privileges.php:1537 server_privileges.php:2069
#: server_processlist.php:55 server_synchronize.php:1159
msgid "Host"
msgstr "Домаћин"
@@ -3218,852 +3218,6 @@ msgstr "нема"
msgid "Convert to Kana"
msgstr ""
-#. l10n: Text direction, use either ltr or rtl
-#: libraries/messages.inc.php:19
-msgid "ltr"
-msgstr "ltr"
-
-#: libraries/messages.inc.php:21
-msgid "Content of table __TABLE__"
-msgstr "Садржај табеле __TABLE__"
-
-#: libraries/messages.inc.php:22
-msgid "(continued)"
-msgstr "(настављено)"
-
-#: libraries/messages.inc.php:23
-msgid "Structure of table __TABLE__"
-msgstr "Структура табеле __TABLE__"
-
-#: libraries/messages.inc.php:25 server_privileges.php:227
-msgid "Includes all privileges except GRANT."
-msgstr "Укључује све привилегије осим GRANT."
-
-#: libraries/messages.inc.php:26 server_privileges.php:153
-#: server_privileges.php:476
-msgid "Allows altering the structure of existing tables."
-msgstr "Дозвољава измену структура постојећих табела."
-
-#: libraries/messages.inc.php:27 server_privileges.php:169
-#: server_privileges.php:482
-msgid "Allows altering and dropping stored routines."
-msgstr "Дозвољава измену и одбацивање сачуваних рутина."
-
-#: libraries/messages.inc.php:28 server_privileges.php:145
-#: server_privileges.php:475
-msgid "Allows creating new databases and tables."
-msgstr "Дозвољава креирање нових база и табела."
-
-#: libraries/messages.inc.php:29 server_privileges.php:168
-#: server_privileges.php:481
-msgid "Allows creating stored routines."
-msgstr "Дозвољава прављење сачуваних рутина."
-
-#: libraries/messages.inc.php:30 server_privileges.php:475
-msgid "Allows creating new tables."
-msgstr "Дозвољава креирање нових табела."
-
-#: libraries/messages.inc.php:31 server_privileges.php:156
-#: server_privileges.php:479
-msgid "Allows creating temporary tables."
-msgstr "Дозвољава креирање привремених табела.."
-
-#: libraries/messages.inc.php:32 server_privileges.php:170
-#: server_privileges.php:515
-msgid "Allows creating, dropping and renaming user accounts."
-msgstr "Дозвољава прављење, одбацивање и преименовање корисничких налога."
-
-#: libraries/messages.inc.php:33 server_privileges.php:160
-#: server_privileges.php:164 server_privileges.php:487
-#: server_privileges.php:491
-msgid "Allows creating new views."
-msgstr "Дозволи креирање нових погледа."
-
-#: libraries/messages.inc.php:34 server_privileges.php:144
-#: server_privileges.php:467
-msgid "Allows deleting data."
-msgstr "Дозвољава брисање података."
-
-#: libraries/messages.inc.php:35 server_privileges.php:146
-#: server_privileges.php:478
-msgid "Allows dropping databases and tables."
-msgstr "Дозвољава одбацивање база и табела."
-
-#: libraries/messages.inc.php:36 server_privileges.php:478
-msgid "Allows dropping tables."
-msgstr "Дозвољава одбацивање табела."
-
-#: libraries/messages.inc.php:37 server_privileges.php:161
-#: server_privileges.php:495
-msgid "Allows to set up events for the event scheduler"
-msgstr ""
-
-#: libraries/messages.inc.php:38 server_privileges.php:171
-#: server_privileges.php:483
-msgid "Allows executing stored routines."
-msgstr "Дозвољава извршавање сачуваних рутина."
-
-#: libraries/messages.inc.php:39 server_privileges.php:150
-#: server_privileges.php:470
-msgid "Allows importing data from and exporting data into files."
-msgstr "Дозвољава увоз података и њихов извоз у датотеке."
-
-#: libraries/messages.inc.php:40 server_privileges.php:501
-msgid ""
-"Allows adding users and privileges without reloading the privilege tables."
-msgstr ""
-"Дозвољава додавање корисника и привилегија без поновног учитавања табела "
-"привилегија."
-
-#: libraries/messages.inc.php:41 server_privileges.php:152
-#: server_privileges.php:477
-msgid "Allows creating and dropping indexes."
-msgstr "Дозвољава креирање и брисање кључева."
-
-#: libraries/messages.inc.php:42 server_privileges.php:142
-#: server_privileges.php:403 server_privileges.php:465
-msgid "Allows inserting and replacing data."
-msgstr "Дозвољава уметање и замену података."
-
-#: libraries/messages.inc.php:43 server_privileges.php:157
-#: server_privileges.php:510
-msgid "Allows locking tables for the current thread."
-msgstr "Дозвољава закључавање табела текућим процесима."
-
-#: libraries/messages.inc.php:44 server_privileges.php:607
-#: server_privileges.php:609
-msgid "Limits the number of new connections the user may open per hour."
-msgstr "Ограничава број нових конекција које корисник може та отвори на сат."
-
-#: libraries/messages.inc.php:45 server_privileges.php:595
-#: server_privileges.php:597
-msgid "Limits the number of queries the user may send to the server per hour."
-msgstr "Ограничава број упита које корисник може да упути серверу за сат."
-
-#: libraries/messages.inc.php:46 server_privileges.php:601
-#: server_privileges.php:603
-msgid ""
-"Limits the number of commands that change any table or database the user may "
-"execute per hour."
-msgstr ""
-"Ограничава број команди које мењају табеле или базе које корисник може да "
-"изврши на сат."
-
-#: libraries/messages.inc.php:47 server_privileges.php:613
-#: server_privileges.php:615
-msgid "Limits the number of simultaneous connections the user may have."
-msgstr "Ограничава број истовремених конекција које корисник може да има."
-
-#: libraries/messages.inc.php:48 server_privileges.php:149
-#: server_privileges.php:505
-msgid "Allows viewing processes of all users"
-msgstr ""
-
-#: libraries/messages.inc.php:49 server_privileges.php:151
-#: server_privileges.php:409 server_privileges.php:511
-msgid "Has no effect in this MySQL version."
-msgstr "Нема ефекта у овој верзији MySQL-a."
-
-#: libraries/messages.inc.php:50 server_privileges.php:147
-#: server_privileges.php:506
-msgid "Allows reloading server settings and flushing the server's caches."
-msgstr ""
-"Дозвољава поновно учитавање подешавања сервера и пражњење кеша сервера."
-
-#: libraries/messages.inc.php:51 server_privileges.php:159
-#: server_privileges.php:513
-msgid "Allows the user to ask where the slaves / masters are."
-msgstr "Даје право кориснику да пита где су главни/помоћни сервери."
-
-#: libraries/messages.inc.php:52 server_privileges.php:158
-#: server_privileges.php:514
-msgid "Needed for the replication slaves."
-msgstr "Потребно због помоћних сервера за репликацију."
-
-#: libraries/messages.inc.php:53 server_privileges.php:141
-#: server_privileges.php:400 server_privileges.php:464
-msgid "Allows reading data."
-msgstr "Дозвољава читање података."
-
-#: libraries/messages.inc.php:54 server_privileges.php:154
-#: server_privileges.php:508
-msgid "Gives access to the complete list of databases."
-msgstr "Даје приступ комплетној листи база."
-
-#: libraries/messages.inc.php:55 server_privileges.php:165
-#: server_privileges.php:167 server_privileges.php:480
-msgid "Allows performing SHOW CREATE VIEW queries."
-msgstr "Дозвољава извршавање SHOW CREATE VIEW упита."
-
-#: libraries/messages.inc.php:56 server_privileges.php:148
-#: server_privileges.php:507
-msgid "Allows shutting down the server."
-msgstr "Дозвољава гашење сервера."
-
-#: libraries/messages.inc.php:57 server_privileges.php:155
-#: server_privileges.php:504
-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/messages.inc.php:58 server_privileges.php:162
-#: server_privileges.php:496
-#, fuzzy
-msgid "Allows creating and dropping triggers"
-msgstr "Дозвољава креирање и брисање кључева."
-
-#: libraries/messages.inc.php:59 server_privileges.php:143
-#: server_privileges.php:406 server_privileges.php:466
-msgid "Allows changing data."
-msgstr "Дозвољава измену података."
-
-#: libraries/messages.inc.php:60 server_privileges.php:221
-msgid "No privileges."
-msgstr "Нема привилегија."
-
-#: libraries/messages.inc.php:62
-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 ""
-"Број транксакција које су користиле кеш привременог бинарног дневника али су "
-"превазишле вредност у binlog_cache_size и користиле привремену датотеку да "
-"сместе изразе из трансакције."
-
-#: libraries/messages.inc.php:63
-msgid "The number of transactions that used the temporary binary log cache."
-msgstr "Број трансакција које су користиле кеш привременог бинарног дневника."
-
-#: libraries/messages.inc.php:64
-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 "
-"to increase the tmp_table_size value to cause temporary tables to be memory-"
-"based instead of disk-based."
-msgstr ""
-"Број привремених табела које је сервер аутоматски креирао на диску док је "
-"извршавао изразе. Ако је Created_tmp_disk_tables велико, можда треба да "
-"повећате вредност tmp_table_size како би учинили да привремене табеле буду "
-"базиране у меморији уместо на диску."
-
-#: libraries/messages.inc.php:65
-msgid "How many temporary files mysqld has created."
-msgstr "Колико привремених датотека је mysqld направио."
-
-#: libraries/messages.inc.php:66
-msgid ""
-"The number of in-memory temporary tables created automatically by the server "
-"while executing statements."
-msgstr ""
-"Број привремених табела које је сервер аутоматски креирао у меморији док је "
-"извршавао изразе."
-
-#: libraries/messages.inc.php:67
-msgid ""
-"The number of rows written with INSERT DELAYED for which some error occurred "
-"(probably duplicate key)."
-msgstr ""
-"Број редова уписаних са INSERT DELAYED за које је јављена нека грешка "
-"(вероватно дуплирани кључ)."
-
-#: libraries/messages.inc.php:68
-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 руковалачких нити у употреби. Свака посебна табела над "
-"којом се користи INSERT DELAYED добија своју нит."
-
-#: libraries/messages.inc.php:69
-msgid "The number of INSERT DELAYED rows written."
-msgstr "Број уписаних INSERT DELAYED редова."
-
-#: libraries/messages.inc.php:70
-msgid "The number of executed FLUSH statements."
-msgstr "Број извршених FLUSH израза."
-
-#: libraries/messages.inc.php:71
-msgid "The number of internal COMMIT statements."
-msgstr "Број интерних COMMIT израза."
-
-#: libraries/messages.inc.php:72
-msgid "The number of times a row was deleted from a table."
-msgstr "Број брисања неког реда табеле."
-
-#: libraries/messages.inc.php:73
-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 ""
-"MySQL сервер може да упита погон складиштења NDB Cluster да ли зна за табелу "
-"одређеног имена. То се назива откривањем (discovery). Handler_discover "
-"означава број пута када је откривена табела."
-
-#: libraries/messages.inc.php:74
-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 ""
-"Број пута када је прва ставка прочитана из индекса. Ако је ово високо, то "
-"може значити да сервер ради пуно пуних скенирања индекса; на пример SELECT "
-"кол1 FROM нешто, под претпоставком да је кол1 индексирано."
-
-#: libraries/messages.inc.php:75
-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/messages.inc.php:76
-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/messages.inc.php:77
-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 ""
-"Број захтева за читањем претходног реда у поретку кључева. Ова метода читања "
-"се углавном користи за оптимизацију ORDER BY ... DESC."
-
-#: libraries/messages.inc.php:78
-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 "
-"probably have a lot of queries that require MySQL to scan whole tables or "
-"you have joins that don't use keys properly."
-msgstr ""
-"Број захтева за читање реда заснованих на фиксној позицији. Ово је високо "
-"ако радите много упита који захтевају сортирање резултата. Вероватно имате "
-"много упита који захтевају да MySQL скенира целе табеле или имате спојеве "
-"који не користе кључеве прописно."
-
-#: libraries/messages.inc.php:79
-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 "
-"tables are not properly indexed or that your queries are not written to take "
-"advantage of the indexes you have."
-msgstr ""
-"Број захтева за читањем следећег реда из датотеке података. Ово је високо "
-"ако радите пуно скенирања табела. Ово обично наговештава да ваше табеле нису "
-"прописно индексиране или да ваши упити нису написани да искористе већ "
-"постојеће индексе."
-
-#: libraries/messages.inc.php:80
-msgid "The number of internal ROLLBACK statements."
-msgstr "Број интерних ROLLBACK израза."
-
-#: libraries/messages.inc.php:81
-msgid "The number of requests to update a row in a table."
-msgstr "Број захтева за ажурирање реда у табели."
-
-#: libraries/messages.inc.php:82
-msgid "The number of requests to insert a row in a table."
-msgstr "Број захтева за уписивање реда у табелу."
-
-#: libraries/messages.inc.php:83
-msgid "The number of pages containing data (dirty or clean)."
-msgstr "Број страна које садрже податке (чистих или прљавих)."
-
-#: libraries/messages.inc.php:84
-msgid "The number of pages currently dirty."
-msgstr "Број страна које су тренутно прљаве."
-
-#: libraries/messages.inc.php:85
-msgid "The number of buffer pool pages that have been requested to be flushed."
-msgstr "Број страна у остави бафера за које је тражено да буду очишћене."
-
-#: libraries/messages.inc.php:86
-msgid "The number of free pages."
-msgstr "Број слободних страна."
-
-#: libraries/messages.inc.php:87
-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 ""
-"Број забрављених страна у InnoDB остави бафера. Са ових страна се тренутно "
-"чита или се у њих уписује или из неког другог разлога не могу бити очишћене "
-"нити уклоњене."
-
-#: libraries/messages.inc.php:88
-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 "
-"be calculated as Innodb_buffer_pool_pages_total - "
-"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data."
-msgstr ""
-"Број страна које су заузете зато што су одвојене за административне потребе, "
-"као што су закључавање редова или индекс прилагодљивог хеша. Ова вредност се "
-"такође може израчунати и на следећи начин Innodb_buffer_pool_pages_total - "
-"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data."
-
-#: libraries/messages.inc.php:89
-msgid "Total size of buffer pool, in pages."
-msgstr "Пуна величина оставе бафера, у странама."
-
-#: libraries/messages.inc.php:90
-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 ""
-"Број „насумичних“ пред-читања која је InnoDB покренуо. Ово се дешава када "
-"упит треба да скенира велики део табеле али насумичним редоследом."
-
-#: libraries/messages.inc.php:91
-msgid ""
-"The number of sequential read-aheads InnoDB initiated. This happens when "
-"InnoDB does a sequential full table scan."
-msgstr ""
-"Број секвенцијалних пред-читања која је InnoDB покренуо. Ово се дешава када "
-"InnoDB ради секвенцијално скенирање целе табеле."
-
-#: libraries/messages.inc.php:92
-msgid "The number of logical read requests InnoDB has done."
-msgstr "Број логичких захтева за читање које је InnoDB урадио."
-
-#: libraries/messages.inc.php:93
-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/messages.inc.php:94
-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 "
-"available, it's necessary to wait for pages to be flushed first. This "
-"counter counts instances of these waits. If the buffer pool size was set "
-"properly, this value should be small."
-msgstr ""
-"Нормално се уписи у InnoDB оставу бафера дешавају у позадини. Међутим, ако "
-"је неопходно прочитати или направити страну а нема доступних чистих страна, "
-"неопходно је сачекати да се стране претходно очисте. Овај бројач броји "
-"дешавања ових чекања. Ако је величина оставе бафера постављена како треба, "
-"ова вредност ви требало да је ниска."
-
-#: libraries/messages.inc.php:95
-msgid "The number writes done to the InnoDB buffer pool."
-msgstr "Број уписа учињених у InnoDB оставу бафера."
-
-#: libraries/messages.inc.php:96
-msgid "The number of fsync() operations so far."
-msgstr "Број fsync() операција до сада."
-
-#: libraries/messages.inc.php:97
-msgid "The current number of pending fsync() operations."
-msgstr "Тренутни број fsync() операција на чекању."
-
-#: libraries/messages.inc.php:98
-msgid "The current number of pending reads."
-msgstr "Тренутни број читања на чекању."
-
-#: libraries/messages.inc.php:99
-msgid "The current number of pending writes."
-msgstr "Тренутни број уписа на чекању."
-
-#: libraries/messages.inc.php:100
-msgid "The amount of data read so far, in bytes."
-msgstr "Количина података прочитаних до сада, у бајтовима."
-
-#: libraries/messages.inc.php:101
-msgid "The total number of data reads."
-msgstr "Укупан број читања података."
-
-#: libraries/messages.inc.php:102
-msgid "The total number of data writes."
-msgstr "Укупан број уписа података."
-
-#: libraries/messages.inc.php:103
-msgid "The amount of data written so far, in bytes."
-msgstr "Количина података уписаних до сада, у бајтовима"
-
-#: libraries/messages.inc.php:104
-msgid "The number of pages that have been written for doublewrite operations."
-msgstr ""
-"Број извршених двоуписних (doublewrite) уписа и број страна које су уписане "
-"у ову сврху."
-
-#: libraries/messages.inc.php:105
-msgid "The number of doublewrite operations that have been performed."
-msgstr ""
-"Број извршених двоуписних (doublewrite) уписа и број страна које су уписане "
-"у ову сврху."
-
-#: libraries/messages.inc.php:106
-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/messages.inc.php:107
-msgid "The number of log write requests."
-msgstr "Број захтева за упис у дневник."
-
-#: libraries/messages.inc.php:108
-msgid "The number of physical writes to the log file."
-msgstr "Број физичких уписа у датотеку дневника."
-
-#: libraries/messages.inc.php:109
-msgid "The number of fsync() writes done to the log file."
-msgstr "Број fsyncs уписа начињених у датотеку дневника."
-
-#: libraries/messages.inc.php:110
-msgid "The number of pending log file fsyncs."
-msgstr "Број fsync-ова за датотеку дневника на чекању."
-
-#: libraries/messages.inc.php:111
-msgid "Pending log file writes."
-msgstr "Број уписа у датотеку дневника на чекању."
-
-#: libraries/messages.inc.php:112
-msgid "The number of bytes written to the log file."
-msgstr "Број бајтова уписаних у датотеку дневника."
-
-#: libraries/messages.inc.php:113
-msgid "The number of pages created."
-msgstr "Број направљених страна."
-
-#: libraries/messages.inc.php:114
-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 ""
-"Укомпајлирана величина стране за InnoDB (подразумевано 16КБ). Многе "
-"вредности се рачунају у странама; величина стране омогућава да се оне лако "
-"конвертују у бајтове."
-
-#: libraries/messages.inc.php:115
-msgid "The number of pages read."
-msgstr "Број прочитаних страна."
-
-#: libraries/messages.inc.php:116
-msgid "The number of pages written."
-msgstr "Број записаних страна."
-
-#: libraries/messages.inc.php:117
-msgid "The number of row locks currently being waited for."
-msgstr "Број брава за редове које се тренутно чекају."
-
-#: libraries/messages.inc.php:118
-msgid "The average time to acquire a row lock, in milliseconds."
-msgstr "Просечно време за добављање браве за ред, у милисекундама."
-
-#: libraries/messages.inc.php:119
-msgid "The total time spent in acquiring row locks, in milliseconds."
-msgstr "Укупно времена проведено у добављању брава за редове, у милисекундама."
-
-#: libraries/messages.inc.php:120
-msgid "The maximum time to acquire a row lock, in milliseconds."
-msgstr "Најдуже време за добављање браве за ред, у милисекундама."
-
-#: libraries/messages.inc.php:121
-msgid "The number of times a row lock had to be waited for."
-msgstr "Број пута када се морала чекати брава за ред."
-
-#: libraries/messages.inc.php:122
-msgid "The number of rows deleted from InnoDB tables."
-msgstr "Број редова обрисаних из InnoDB табела."
-
-#: libraries/messages.inc.php:123
-msgid "The number of rows inserted in InnoDB tables."
-msgstr "Број редова уметнутих у InnoDB табеле."
-
-#: libraries/messages.inc.php:124
-msgid "The number of rows read from InnoDB tables."
-msgstr "Број редова прочитаних из InnoDB табела."
-
-#: libraries/messages.inc.php:125
-msgid "The number of rows updated in InnoDB tables."
-msgstr "Број редова ажурираних у InnoDB табелама."
-
-#: libraries/messages.inc.php:126
-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/messages.inc.php:127
-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/messages.inc.php:128
-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/messages.inc.php:129
-msgid "The number of requests to read a key block from the cache."
-msgstr "Број захтева за читање блока кључева из кеша."
-
-#: libraries/messages.inc.php:130
-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 ""
-"Број физичких читања блока кључева са диска. Ако је Key_reads велико, онда "
-"је ваша вредност за key_buffer_size вероватно премала. Степен промашаја кеша "
-"се може израчунати као Key_reads/Key_read_requests."
-
-#: libraries/messages.inc.php:131
-msgid "The number of requests to write a key block to the cache."
-msgstr "Број захтева за уписивање блока кључева у кеш."
-
-#: libraries/messages.inc.php:132
-msgid "The number of physical writes of a key block to disk."
-msgstr "Број физичких уписа блока кључева на диск."
-
-#: libraries/messages.inc.php:133
-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 ""
-"Укупна цена последњег компајлираног упита како ју је израчунао оптимизатор "
-"упита. Корисно за упоређивање цене различитих планова упита за исти упит. "
-"Подразумевана вредност 0 значи да још није био компајлиран ниједан упит."
-
-#: libraries/messages.inc.php:134
-msgid "The number of rows waiting to be written in INSERT DELAYED queues."
-msgstr "Број редова у INSERT DELAYED редовима чекања који чекају уписивање."
-
-#: libraries/messages.inc.php:135
-msgid ""
-"The number of tables that have been opened. If opened tables is big, your "
-"table cache value is probably too small."
-msgstr ""
-"Број табела које су биле отваране. Ако је број велики, ваш кеш табела је "
-"вероватно премали."
-
-#: libraries/messages.inc.php:136
-msgid "The number of files that are open."
-msgstr "Број отворених датотека."
-
-#: libraries/messages.inc.php:137
-msgid "The number of streams that are open (used mainly for logging)."
-msgstr ""
-"Број отворених токова (користи се првенствено за вођење дневника (logging))."
-
-#: libraries/messages.inc.php:138
-msgid "The number of tables that are open."
-msgstr "Број отворених табела."
-
-#: libraries/messages.inc.php:139
-msgid "The number of free memory blocks in query cache."
-msgstr "Број слободних меморијских блокова у у кешу упита."
-
-#: libraries/messages.inc.php:140
-msgid "The amount of free memory for query cache."
-msgstr "Количина слободне меморије за кеш упита."
-
-#: libraries/messages.inc.php:141
-msgid "The number of cache hits."
-msgstr "Број погодака из кеша."
-
-#: libraries/messages.inc.php:142
-msgid "The number of queries added to the cache."
-msgstr "Број упита додатих у кеш."
-
-#: libraries/messages.inc.php:143
-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 "
-"cache size. The query cache uses a least recently used (LRU) strategy to "
-"decide which queries to remove from the cache."
-msgstr ""
-"Број упита који су уклоњени из кеша да би се ослободила меморија за кеширање "
-"нових упита. Овај податак вам може помоћи да подесите величину кеша за "
-"упите. Кеш за упите користи стратегију најдуже некоришћеног (en: least "
-"recently used , LRU) да би одлучио које упите да уклони из кеша."
-
-#: libraries/messages.inc.php:144
-msgid ""
-"The number of non-cached queries (not cachable, or not cached due to the "
-"query_cache_type setting)."
-msgstr ""
-"Број некешираних упита (који се не могу кеширати или нису кеширани због "
-"подешавања query_cache_type)."
-
-#: libraries/messages.inc.php:145
-msgid "The number of queries registered in the cache."
-msgstr "Број упита регистрованих у кешу."
-
-#: libraries/messages.inc.php:146
-msgid "The total number of blocks in the query cache."
-msgstr "Укупан број блокова у кешу за упите."
-
-#: libraries/messages.inc.php:147
-msgctxt "$strShowStatusReset"
-msgid "Reset"
-msgstr "Ресет"
-
-#: libraries/messages.inc.php:148
-msgid "The status of failsafe replication (not yet implemented)."
-msgstr "Статус репликације отпорне на грешке (није још имплементирано)."
-
-#: libraries/messages.inc.php:149
-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 ""
-"Број спојева који не користе индексте. Ако ова вредност није 0, требало би "
-"пажљиво да проверите индексе ваших табела."
-
-#: libraries/messages.inc.php:150
-msgid "The number of joins that used a range search on a reference table."
-msgstr "Број спојева који су користили претрагу опсега на референтној табели."
-
-#: libraries/messages.inc.php:151
-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 ""
-"Број спојева без кључева који проверавају употребу кључа после сваког реда. "
-"(Ако ово није 0, требало би пажљиво да проверите индексе ваших табела.)"
-
-#: libraries/messages.inc.php:152
-msgid ""
-"The number of joins that used ranges on the first table. (It's normally not "
-"critical even if this is big.)"
-msgstr ""
-"Број спојева који су користили опсеге на првој табели. (Обично није критично "
-"чак ни када је ово велико)"
-
-#: libraries/messages.inc.php:153
-msgid "The number of joins that did a full scan of the first table."
-msgstr "Број спојева који су урадили пуно скенирање прве табеле."
-
-#: libraries/messages.inc.php:154
-msgid "The number of temporary tables currently open by the slave SQL thread."
-msgstr "Број привремених табела тренутно отворених од стране помоћне SQL нити."
-
-#: libraries/messages.inc.php:155
-msgid ""
-"Total (since startup) number of times the replication slave SQL thread has "
-"retried transactions."
-msgstr ""
-"Укупан број пута (од покретања) када је помоћна SQL нит за репликацију "
-"покушала трансакције."
-
-#: libraries/messages.inc.php:156
-msgid "This is ON if this server is a slave that is connected to a master."
-msgstr "Ово је ON ако је овај сервер помоћни који је повезан на главни."
-
-#: libraries/messages.inc.php:157
-msgid ""
-"The number of threads that have taken more than slow_launch_time seconds to "
-"create."
-msgstr ""
-"Број нити за које је требало више од slow_launch_time секудни да би биле "
-"покренуте."
-
-#: libraries/messages.inc.php:158
-msgid ""
-"The number of queries that have taken more than long_query_time seconds."
-msgstr "Број упита за које је требало више од long_query_time секудни."
-
-#: libraries/messages.inc.php:159
-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 ""
-"Број пролаза за спајање које је алгоритам за сортирање морао да одради. Ако "
-"је ова вредност велика, требало би да размислите о повећању вредности "
-"системске променљиве sort_buffer_size."
-
-#: libraries/messages.inc.php:160
-msgid "The number of sorts that were done with ranges."
-msgstr "Број сортирања која су урађена са опсегом."
-
-#: libraries/messages.inc.php:161
-msgid "The number of sorted rows."
-msgstr "Број сортираних редова."
-
-#: libraries/messages.inc.php:162
-msgid "The number of sorts that were done by scanning the table."
-msgstr "Број сортирања до којих је дошло скенирањем табеле."
-
-#: libraries/messages.inc.php:163
-msgid "The number of times that a table lock was acquired immediately."
-msgstr "Број пута када је брава за табелу одмах добављена."
-
-#: libraries/messages.inc.php:164
-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 "
-"should first optimize your queries, and then either split your table or "
-"tables or use replication."
-msgstr ""
-"Број пута када брава за табелу није могла бити одмах добављена и било је "
-"потребно чекање. Ако је ово високо и имате проблема са перформансама, прво "
-"би требало да оптимизујете своје упите а потом да или поделите табелу или "
-"табеле или да користите репликацију."
-
-#: libraries/messages.inc.php:165
-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 ""
-"Број нити у кешу за нити. Степен погодака кеша се може израчунати као "
-"Threads_created/Конекције. Ако је ова вредност црвена требало би да повећате "
-"ваш thread_cache_size."
-
-#: libraries/messages.inc.php:166
-msgid "The number of currently open connections."
-msgstr "Број тренутно отворених веза."
-
-#: libraries/messages.inc.php:167
-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 "
-"doesn't give a notable performance improvement if you have a good thread "
-"implementation.)"
-msgstr ""
-"Број нити креираних за руковање конекцијама. Ако је Threads_created велико, "
-"можда би требало да повећате вредност thread_cache_size. (Ако имате добру "
-"имплементацију нити, ово обично не доноси приметна побољшања у "
-"перформансама.)"
-
-#: libraries/messages.inc.php:168
-msgid "The number of threads that are not sleeping."
-msgstr "Број нити које нису успаване."
-
#: libraries/mult_submits.inc.php:76 libraries/tbl_properties.inc.php:513
#: tbl_structure.php:29 tbl_structure.php:153 tbl_structure.php:157
#: tbl_structure.php:473
@@ -4381,8 +3535,8 @@ msgstr ""
#: libraries/replication_gui.lib.php:55 libraries/replication_gui.lib.php:56
#: libraries/replication_gui.lib.php:249 libraries/replication_gui.lib.php:252
-#: libraries/replication_gui.lib.php:259 server_privileges.php:672
-#: server_privileges.php:675 server_privileges.php:682
+#: libraries/replication_gui.lib.php:259 server_privileges.php:711
+#: server_privileges.php:714 server_privileges.php:721
#: server_synchronize.php:1171
msgid "User name"
msgstr "Име корисника"
@@ -4403,11 +3557,11 @@ msgid "Slave status"
msgstr "Прикажи статус подређених сервера"
#: libraries/replication_gui.lib.php:114 libraries/sql_query_form.lib.php:445
-#: server_status.php:626 server_variables.php:52
+#: server_status.php:737 server_variables.php:52
msgid "Variable"
msgstr "Променљива"
-#: libraries/replication_gui.lib.php:115 server_status.php:627
+#: libraries/replication_gui.lib.php:115 server_status.php:738
#: tbl_change.php:324 tbl_printview.php:370 tbl_select.php:139
#: tbl_structure.php:729
msgid "Value"
@@ -4427,41 +3581,58 @@ msgstr ""
msgid "Add slave replication user"
msgstr ""
-#: libraries/replication_gui.lib.php:254 server_privileges.php:677
+#: libraries/replication_gui.lib.php:254 server_privileges.php:716
msgid "Any user"
msgstr "Било који корисник"
#: libraries/replication_gui.lib.php:255 libraries/replication_gui.lib.php:323
-#: libraries/replication_gui.lib.php:346 server_privileges.php:678
-#: server_privileges.php:745 server_privileges.php:769
-#: server_privileges.php:1889 server_privileges.php:1919
+#: libraries/replication_gui.lib.php:346 server_privileges.php:717
+#: server_privileges.php:784 server_privileges.php:808
+#: server_privileges.php:1928 server_privileges.php:1958
msgid "Use text field"
msgstr "Користи текст поље"
-#: libraries/replication_gui.lib.php:302 server_privileges.php:725
+#: libraries/replication_gui.lib.php:302 server_privileges.php:764
msgid "Any host"
msgstr "Било који домаћин"
-#: libraries/replication_gui.lib.php:306 server_privileges.php:729
+#: libraries/replication_gui.lib.php:306 server_privileges.php:768
msgid "Local"
msgstr "Локални"
-#: libraries/replication_gui.lib.php:312 server_privileges.php:734
+#: libraries/replication_gui.lib.php:312 server_privileges.php:773
msgid "This Host"
msgstr "Овај сервер"
-#: libraries/replication_gui.lib.php:318 server_privileges.php:740
+#: libraries/replication_gui.lib.php:318 server_privileges.php:779
msgid "Use Host Table"
msgstr "Користи табелу домаћина"
-#: libraries/replication_gui.lib.php:331 server_privileges.php:753
+#: libraries/replication_gui.lib.php:331 server_privileges.php:792
msgid ""
"When Host table is used, this field is ignored and values stored in Host "
"table are used instead."
msgstr ""
-#: libraries/select_lang.lib.php:480 libraries/select_lang.lib.php:486
-#: libraries/select_lang.lib.php:492
+#. l10n: Text direction, use either ltr or rtl
+#: libraries/select_lang.lib.php:491
+msgid "ltr"
+msgstr "ltr"
+
+#: libraries/select_lang.lib.php:493
+msgid "Content of table __TABLE__"
+msgstr "Садржај табеле __TABLE__"
+
+#: libraries/select_lang.lib.php:494
+msgid "(continued)"
+msgstr "(настављено)"
+
+#: libraries/select_lang.lib.php:495
+msgid "Structure of table __TABLE__"
+msgstr "Структура табеле __TABLE__"
+
+#: libraries/select_lang.lib.php:500 libraries/select_lang.lib.php:506
+#: libraries/select_lang.lib.php:512
#, php-format
msgid "Unknown language: %1$s."
msgstr "Непознат језик: %1$s."
@@ -4472,7 +3643,7 @@ msgid "Servers"
msgstr "Сервери"
#: libraries/server_links.inc.php:53 server_engines.php:112
-#: server_engines.php:116 server_status.php:304 test/theme.php:105
+#: server_engines.php:116 server_status.php:415 test/theme.php:105
msgid "Variables"
msgstr "Променљиве"
@@ -4485,7 +3656,7 @@ msgid "Engines"
msgstr "Складиштења"
#: libraries/server_links.inc.php:76 server_binlog.php:110
-#: server_status.php:253 test/theme.php:121
+#: server_status.php:364 test/theme.php:121
msgid "Binary log"
msgstr "Бинарни дневник"
@@ -4959,8 +4130,8 @@ msgstr "Поништи"
msgid "Protocol version"
msgstr "Верзија протокола"
-#: main.php:189 server_privileges.php:1350 server_privileges.php:1497
-#: server_privileges.php:1611 server_privileges.php:2029
+#: main.php:189 server_privileges.php:1389 server_privileges.php:1536
+#: server_privileges.php:1650 server_privileges.php:2068
#: server_processlist.php:54
msgid "User"
msgstr "Корисник"
@@ -5347,7 +4518,7 @@ msgstr "%s база је успешно одбачено."
msgid "Databases statistics"
msgstr "Статистика базе"
-#: server_databases.php:117 server_status.php:260
+#: server_databases.php:117 server_status.php:371
#: setup/lib/messages.inc.php:117
msgid "Tables"
msgstr "Табеле"
@@ -5366,6 +4537,16 @@ msgstr ""
msgid "Jump to database"
msgstr "База не постоји"
+#: server_databases.php:267
+msgid "Not replicated"
+msgstr ""
+
+#: server_databases.php:273
+#, fuzzy
+#| msgid "Replication"
+msgid "Replicated"
+msgstr "Репликација"
+
#: server_databases.php:289
#, php-format
msgid "Check privileges for database "%s"."
@@ -5399,142 +4580,333 @@ msgstr "Погони складиштења"
msgid "View dump (schema) of databases"
msgstr "Прикажи садржај (схему) базе"
-#: server_privileges.php:263 server_privileges.php:264
+#: server_privileges.php:24 server_privileges.php:266
+msgid "Includes all privileges except GRANT."
+msgstr "Укључује све привилегије осим GRANT."
+
+#: server_privileges.php:25 server_privileges.php:192
+#: server_privileges.php:515
+msgid "Allows altering the structure of existing tables."
+msgstr "Дозвољава измену структура постојећих табела."
+
+#: server_privileges.php:26 server_privileges.php:208
+#: server_privileges.php:521
+msgid "Allows altering and dropping stored routines."
+msgstr "Дозвољава измену и одбацивање сачуваних рутина."
+
+#: server_privileges.php:27 server_privileges.php:184
+#: server_privileges.php:514
+msgid "Allows creating new databases and tables."
+msgstr "Дозвољава креирање нових база и табела."
+
+#: server_privileges.php:28 server_privileges.php:207
+#: server_privileges.php:520
+msgid "Allows creating stored routines."
+msgstr "Дозвољава прављење сачуваних рутина."
+
+#: server_privileges.php:29 server_privileges.php:514
+msgid "Allows creating new tables."
+msgstr "Дозвољава креирање нових табела."
+
+#: server_privileges.php:30 server_privileges.php:195
+#: server_privileges.php:518
+msgid "Allows creating temporary tables."
+msgstr "Дозвољава креирање привремених табела.."
+
+#: server_privileges.php:31 server_privileges.php:209
+#: server_privileges.php:554
+msgid "Allows creating, dropping and renaming user accounts."
+msgstr "Дозвољава прављење, одбацивање и преименовање корисничких налога."
+
+#: server_privileges.php:32 server_privileges.php:199
+#: server_privileges.php:203 server_privileges.php:526
+#: server_privileges.php:530
+msgid "Allows creating new views."
+msgstr "Дозволи креирање нових погледа."
+
+#: server_privileges.php:33 server_privileges.php:183
+#: server_privileges.php:506
+msgid "Allows deleting data."
+msgstr "Дозвољава брисање података."
+
+#: server_privileges.php:34 server_privileges.php:185
+#: server_privileges.php:517
+msgid "Allows dropping databases and tables."
+msgstr "Дозвољава одбацивање база и табела."
+
+#: server_privileges.php:35 server_privileges.php:517
+msgid "Allows dropping tables."
+msgstr "Дозвољава одбацивање табела."
+
+#: server_privileges.php:36 server_privileges.php:200
+#: server_privileges.php:534
+msgid "Allows to set up events for the event scheduler"
+msgstr ""
+
+#: server_privileges.php:37 server_privileges.php:210
+#: server_privileges.php:522
+msgid "Allows executing stored routines."
+msgstr "Дозвољава извршавање сачуваних рутина."
+
+#: server_privileges.php:38 server_privileges.php:189
+#: server_privileges.php:509
+msgid "Allows importing data from and exporting data into files."
+msgstr "Дозвољава увоз података и њихов извоз у датотеке."
+
+#: server_privileges.php:39 server_privileges.php:540
+msgid ""
+"Allows adding users and privileges without reloading the privilege tables."
+msgstr ""
+"Дозвољава додавање корисника и привилегија без поновног учитавања табела "
+"привилегија."
+
+#: server_privileges.php:40 server_privileges.php:191
+#: server_privileges.php:516
+msgid "Allows creating and dropping indexes."
+msgstr "Дозвољава креирање и брисање кључева."
+
+#: server_privileges.php:41 server_privileges.php:181
+#: server_privileges.php:442 server_privileges.php:504
+msgid "Allows inserting and replacing data."
+msgstr "Дозвољава уметање и замену података."
+
+#: server_privileges.php:42 server_privileges.php:196
+#: server_privileges.php:549
+msgid "Allows locking tables for the current thread."
+msgstr "Дозвољава закључавање табела текућим процесима."
+
+#: server_privileges.php:43 server_privileges.php:646
+#: server_privileges.php:648
+msgid "Limits the number of new connections the user may open per hour."
+msgstr "Ограничава број нових конекција које корисник може та отвори на сат."
+
+#: server_privileges.php:44 server_privileges.php:634
+#: server_privileges.php:636
+msgid "Limits the number of queries the user may send to the server per hour."
+msgstr "Ограничава број упита које корисник може да упути серверу за сат."
+
+#: server_privileges.php:45 server_privileges.php:640
+#: server_privileges.php:642
+msgid ""
+"Limits the number of commands that change any table or database the user may "
+"execute per hour."
+msgstr ""
+"Ограничава број команди које мењају табеле или базе које корисник може да "
+"изврши на сат."
+
+#: server_privileges.php:46 server_privileges.php:652
+#: server_privileges.php:654
+msgid "Limits the number of simultaneous connections the user may have."
+msgstr "Ограничава број истовремених конекција које корисник може да има."
+
+#: server_privileges.php:47 server_privileges.php:188
+#: server_privileges.php:544
+msgid "Allows viewing processes of all users"
+msgstr ""
+
+#: server_privileges.php:48 server_privileges.php:190
+#: server_privileges.php:448 server_privileges.php:550
+msgid "Has no effect in this MySQL version."
+msgstr "Нема ефекта у овој верзији MySQL-a."
+
+#: server_privileges.php:49 server_privileges.php:186
+#: server_privileges.php:545
+msgid "Allows reloading server settings and flushing the server's caches."
+msgstr ""
+"Дозвољава поновно учитавање подешавања сервера и пражњење кеша сервера."
+
+#: server_privileges.php:50 server_privileges.php:198
+#: server_privileges.php:552
+msgid "Allows the user to ask where the slaves / masters are."
+msgstr "Даје право кориснику да пита где су главни/помоћни сервери."
+
+#: server_privileges.php:51 server_privileges.php:197
+#: server_privileges.php:553
+msgid "Needed for the replication slaves."
+msgstr "Потребно због помоћних сервера за репликацију."
+
+#: server_privileges.php:52 server_privileges.php:180
+#: server_privileges.php:439 server_privileges.php:503
+msgid "Allows reading data."
+msgstr "Дозвољава читање података."
+
+#: server_privileges.php:53 server_privileges.php:193
+#: server_privileges.php:547
+msgid "Gives access to the complete list of databases."
+msgstr "Даје приступ комплетној листи база."
+
+#: server_privileges.php:54 server_privileges.php:204
+#: server_privileges.php:206 server_privileges.php:519
+msgid "Allows performing SHOW CREATE VIEW queries."
+msgstr "Дозвољава извршавање SHOW CREATE VIEW упита."
+
+#: server_privileges.php:55 server_privileges.php:187
+#: server_privileges.php:546
+msgid "Allows shutting down the server."
+msgstr "Дозвољава гашење сервера."
+
+#: server_privileges.php:56 server_privileges.php:194
+#: server_privileges.php:543
+msgid ""
+"Allows connecting, even if maximum number of connections is reached; "
+"required for most administrative operations like setting global variables or "
+"killing threads of other users."
+msgstr ""
+" Дозвољава повезивање иако је достигнут максималан број дозвољених веза; "
+"Неопходно за већину административних опција као што су подешавање глобалних "
+"променљивих или прекидање процеса осталих корисника."
+
+#: server_privileges.php:57 server_privileges.php:201
+#: server_privileges.php:535
+#, fuzzy
+msgid "Allows creating and dropping triggers"
+msgstr "Дозвољава креирање и брисање кључева."
+
+#: server_privileges.php:58 server_privileges.php:182
+#: server_privileges.php:445 server_privileges.php:505
+msgid "Allows changing data."
+msgstr "Дозвољава измену података."
+
+#: server_privileges.php:59 server_privileges.php:260
+msgid "No privileges."
+msgstr "Нема привилегија."
+
+#: server_privileges.php:302 server_privileges.php:303
#, fuzzy
#| msgid "None"
msgctxt "None privileges"
msgid "None"
msgstr "нема"
-#: server_privileges.php:392 server_privileges.php:527
-#: server_privileges.php:1679 server_privileges.php:1685
+#: server_privileges.php:431 server_privileges.php:566
+#: server_privileges.php:1718 server_privileges.php:1724
msgid "Table-specific privileges"
msgstr "Привилегије везане за табеле"
-#: server_privileges.php:393 server_privileges.php:535
-#: server_privileges.php:1501
+#: server_privileges.php:432 server_privileges.php:574
+#: server_privileges.php:1540
msgid " Note: MySQL privilege names are expressed in English "
msgstr " Напомена: MySQL имена привилегија морају да буду на енглеском "
-#: server_privileges.php:524 server_privileges.php:1500
+#: server_privileges.php:563 server_privileges.php:1539
msgid "Global privileges"
msgstr "Глобалне привилегије"
-#: server_privileges.php:526 server_privileges.php:1679
+#: server_privileges.php:565 server_privileges.php:1718
msgid "Database-specific privileges"
msgstr "Привилегије везане за базу"
-#: server_privileges.php:571
+#: server_privileges.php:610
msgid "Administration"
msgstr "Администрација"
-#: server_privileges.php:591
+#: server_privileges.php:630
msgid "Resource limits"
msgstr "Ограничења ресурса"
-#: server_privileges.php:592
+#: server_privileges.php:631
msgid "Note: Setting these options to 0 (zero) removes the limit."
msgstr "Напомена: Постављање ових опција на 0 (нулу) уклања ограничења."
-#: server_privileges.php:669
+#: server_privileges.php:708
msgid "Login Information"
msgstr "Подаци о пријави"
-#: server_privileges.php:763
+#: server_privileges.php:802
msgid "Do not change the password"
msgstr "Немој да мењаш лозинку"
-#: server_privileges.php:804 server_privileges.php:2166
+#: server_privileges.php:843 server_privileges.php:2205
#, fuzzy
#| msgid "No user(s) found."
msgid "No user found."
msgstr "Корисник није нађен."
-#: server_privileges.php:848
+#: server_privileges.php:887
#, php-format
msgid "The user %s already exists!"
msgstr "Корисник %s већ постоји!"
-#: server_privileges.php:931
+#: server_privileges.php:970
msgid "You have added a new user."
msgstr "Додали сте новог корисника."
-#: server_privileges.php:1152
+#: server_privileges.php:1191
#, php-format
msgid "You have updated the privileges for %s."
msgstr "Ажурирали сте привилегије за %s."
-#: server_privileges.php:1176
+#: server_privileges.php:1215
#, php-format
msgid "You have revoked the privileges for %s"
msgstr "Забранили сте привилегије за %s"
-#: server_privileges.php:1212
+#: server_privileges.php:1251
#, php-format
msgid "The password for %s was changed successfully."
msgstr "Лозинка за %s је успешно промењена."
-#: server_privileges.php:1232
+#: server_privileges.php:1271
#, php-format
msgid "Deleting %s"
msgstr "Бришем %s"
-#: server_privileges.php:1243
+#: server_privileges.php:1282
msgid "No users selected for deleting!"
msgstr "Ниједан корисник није одабран за брисање!"
-#: server_privileges.php:1246
+#: server_privileges.php:1285
msgid "Reloading the privileges"
msgstr "Поново учитавам привилегије"
-#: server_privileges.php:1261
+#: server_privileges.php:1300
msgid "The selected users have been deleted successfully."
msgstr "Изабрани корисници су успешно обрисани."
-#: server_privileges.php:1296
+#: server_privileges.php:1335
msgid "The privileges were reloaded successfully."
msgstr "Привилегије су успешно поново учитане."
-#: server_privileges.php:1324 server_privileges.php:1610
+#: server_privileges.php:1363 server_privileges.php:1649
msgid "Edit Privileges"
msgstr "Промени привилегије"
-#: server_privileges.php:1333
+#: server_privileges.php:1372
msgid "Revoke"
msgstr "Забрани"
-#: server_privileges.php:1365
+#: server_privileges.php:1404
msgid "User overview"
msgstr "Преглед корисника"
-#: server_privileges.php:1502 server_privileges.php:1684
-#: server_privileges.php:2033
+#: server_privileges.php:1541 server_privileges.php:1723
+#: server_privileges.php:2072
msgid "Grant"
msgstr "Омогући"
-#: server_privileges.php:1521 server_privileges.php:2123
+#: server_privileges.php:1560 server_privileges.php:2162
msgid "Any"
msgstr "Било који"
-#: server_privileges.php:1570 server_privileges.php:1594
-#: server_privileges.php:1988 server_privileges.php:2177
+#: server_privileges.php:1609 server_privileges.php:1633
+#: server_privileges.php:2027 server_privileges.php:2216
msgid "Add a new User"
msgstr "Додај новог корисника"
-#: server_privileges.php:1575
+#: server_privileges.php:1614
msgid "Remove selected users"
msgstr "Уклони изабране кориснике"
-#: server_privileges.php:1578
+#: server_privileges.php:1617
msgid "Revoke all active privileges from the users and delete them afterwards."
msgstr "Обустави све активне привилегије корисника и затим их обриши."
-#: server_privileges.php:1579 server_privileges.php:1580
-#: server_privileges.php:1581
+#: server_privileges.php:1618 server_privileges.php:1619
+#: server_privileges.php:1620
msgid "Drop the databases that have the same names as the users."
msgstr "Одбаци базе које се зову исто као корисници."
-#: server_privileges.php:1597
+#: server_privileges.php:1636
#, php-format
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
@@ -5547,92 +4919,92 @@ msgstr ""
"сервер користи ако су вршене ручне измене. У том случају %sпоново учитајте "
"привилегије%s пре него што наставите."
-#: server_privileges.php:1645
+#: server_privileges.php:1684
msgid "The selected user was not found in the privilege table."
msgstr "Изабрани корисник није пронађен у табели привилегија."
-#: server_privileges.php:1685
+#: server_privileges.php:1724
msgid "Column-specific privileges"
msgstr "Привилегије везане за колоне"
-#: server_privileges.php:1886
+#: server_privileges.php:1925
msgid "Add privileges on the following database"
msgstr "Додај привилегије на следећој бази"
-#: server_privileges.php:1904
+#: server_privileges.php:1943
msgid "Wildcards % and _ should be escaped with a \\ to use them literally"
msgstr "Пре џокера _ и % треба ставити знак \\ ако их користите самостално"
-#: server_privileges.php:1907
+#: server_privileges.php:1946
msgid "Add privileges on the following table"
msgstr "Додај привилегије на следећој табели"
-#: server_privileges.php:1964
+#: server_privileges.php:2003
msgid "Change Login Information / Copy User"
msgstr "Промени информације о пријави / Копирај корисника"
-#: server_privileges.php:1967
+#: server_privileges.php:2006
msgid "Create a new user with the same privileges and ..."
msgstr "Направи новог корисника са истим привилегијама и ..."
-#: server_privileges.php:1969
+#: server_privileges.php:2008
msgid "... keep the old one."
msgstr "... сачувај старе."
-#: server_privileges.php:1970
+#: server_privileges.php:2009
msgid " ... delete the old one from the user tables."
msgstr " ... обриши старе из табела корисника."
-#: server_privileges.php:1971
+#: server_privileges.php:2010
msgid ""
" ... revoke all active privileges from the old one and delete it afterwards."
msgstr " ... обустави све привилегије старог корисника и затим га обриши."
-#: server_privileges.php:1972
+#: server_privileges.php:2011
msgid ""
" ... delete the old one from the user tables and reload the privileges "
"afterwards."
msgstr ""
" ... обриши старог из табеле корисника и затим поново учитај привилегије."
-#: server_privileges.php:1994
+#: server_privileges.php:2033
msgid "Database for user"
msgstr "База за корисника"
-#: server_privileges.php:1998
+#: server_privileges.php:2037
#, fuzzy
#| msgid "None"
msgctxt "Create none database for user"
msgid "None"
msgstr "нема"
-#: server_privileges.php:1999
+#: server_privileges.php:2038
msgid "Create database with same name and grant all privileges"
msgstr "Направи базу са истим именом и додај све привилегије"
-#: server_privileges.php:2000
+#: server_privileges.php:2039
msgid "Grant all privileges on wildcard name (username\\_%)"
msgstr "Дај све привилегије на имену са џокерима (корисничко_име\\_%)"
-#: server_privileges.php:2003
+#: server_privileges.php:2042
#, fuzzy, php-format
msgid "Grant all privileges on database "%s""
msgstr "Провери привилегије за базу "%s"."
-#: server_privileges.php:2026
+#: server_privileges.php:2065
#, php-format
msgid "Users having access to "%s""
msgstr "Корисници који имају приступ "%s""
-#: server_privileges.php:2134
+#: server_privileges.php:2173
msgid "global"
msgstr "глобално"
-#: server_privileges.php:2136
+#: server_privileges.php:2175
msgid "database-specific"
msgstr "Специфично за базу"
-#: server_privileges.php:2138
+#: server_privileges.php:2177
msgid "wildcard"
msgstr "џокер"
@@ -5678,7 +5050,7 @@ msgstr ""
msgid "This server is configured as master in a replication process."
msgstr ""
-#: server_replication.php:184 server_status.php:281
+#: server_replication.php:184 server_status.php:392
#, fuzzy
msgid "Show master status"
msgstr "Прикажи статус подређених сервера"
@@ -5818,103 +5190,741 @@ msgid ""
"like to configure it?"
msgstr ""
+#: server_status.php:40
+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 ""
+"Број транксакција које су користиле кеш привременог бинарног дневника али су "
+"превазишле вредност у binlog_cache_size и користиле привремену датотеку да "
+"сместе изразе из трансакције."
+
+#: server_status.php:41
+msgid "The number of transactions that used the temporary binary log cache."
+msgstr "Број трансакција које су користиле кеш привременог бинарног дневника."
+
+#: server_status.php:42
+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 "
+"to increase the tmp_table_size value to cause temporary tables to be memory-"
+"based instead of disk-based."
+msgstr ""
+"Број привремених табела које је сервер аутоматски креирао на диску док је "
+"извршавао изразе. Ако је Created_tmp_disk_tables велико, можда треба да "
+"повећате вредност tmp_table_size како би учинили да привремене табеле буду "
+"базиране у меморији уместо на диску."
+
+#: server_status.php:43
+msgid "How many temporary files mysqld has created."
+msgstr "Колико привремених датотека је mysqld направио."
+
+#: server_status.php:44
+msgid ""
+"The number of in-memory temporary tables created automatically by the server "
+"while executing statements."
+msgstr ""
+"Број привремених табела које је сервер аутоматски креирао у меморији док је "
+"извршавао изразе."
+
+#: server_status.php:45
+msgid ""
+"The number of rows written with INSERT DELAYED for which some error occurred "
+"(probably duplicate key)."
+msgstr ""
+"Број редова уписаних са INSERT DELAYED за које је јављена нека грешка "
+"(вероватно дуплирани кључ)."
+
#: server_status.php:46
+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 руковалачких нити у употреби. Свака посебна табела над "
+"којом се користи INSERT DELAYED добија своју нит."
+
+#: server_status.php:47
+msgid "The number of INSERT DELAYED rows written."
+msgstr "Број уписаних INSERT DELAYED редова."
+
+#: server_status.php:48
+msgid "The number of executed FLUSH statements."
+msgstr "Број извршених FLUSH израза."
+
+#: server_status.php:49
+msgid "The number of internal COMMIT statements."
+msgstr "Број интерних COMMIT израза."
+
+#: server_status.php:50
+msgid "The number of times a row was deleted from a table."
+msgstr "Број брисања неког реда табеле."
+
+#: server_status.php:51
+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 ""
+"MySQL сервер може да упита погон складиштења NDB Cluster да ли зна за табелу "
+"одређеног имена. То се назива откривањем (discovery). Handler_discover "
+"означава број пута када је откривена табела."
+
+#: server_status.php:52
+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 ""
+"Број пута када је прва ставка прочитана из индекса. Ако је ово високо, то "
+"може значити да сервер ради пуно пуних скенирања индекса; на пример SELECT "
+"кол1 FROM нешто, под претпоставком да је кол1 индексирано."
+
+#: server_status.php:53
+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 ""
+"Број захтева за читање реда заснованих на кључу. Ако је овај број висок, то "
+"је добар показатељ да су ваши упити и табеле прописно индексирани."
+
+#: server_status.php:54
+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 ""
+"Број захтева за читањем следећег реда у поретку кључева. Ово се повећава "
+"када радите упит по колони индекса са ограничењем опсега или ако радите "
+"скенирање индекса."
+
+#: server_status.php:55
+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 ""
+"Број захтева за читањем претходног реда у поретку кључева. Ова метода читања "
+"се углавном користи за оптимизацију ORDER BY ... DESC."
+
+#: server_status.php:56
+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 "
+"probably have a lot of queries that require MySQL to scan whole tables or "
+"you have joins that don't use keys properly."
+msgstr ""
+"Број захтева за читање реда заснованих на фиксној позицији. Ово је високо "
+"ако радите много упита који захтевају сортирање резултата. Вероватно имате "
+"много упита који захтевају да MySQL скенира целе табеле или имате спојеве "
+"који не користе кључеве прописно."
+
+#: server_status.php:57
+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 "
+"tables are not properly indexed or that your queries are not written to take "
+"advantage of the indexes you have."
+msgstr ""
+"Број захтева за читањем следећег реда из датотеке података. Ово је високо "
+"ако радите пуно скенирања табела. Ово обично наговештава да ваше табеле нису "
+"прописно индексиране или да ваши упити нису написани да искористе већ "
+"постојеће индексе."
+
+#: server_status.php:58
+msgid "The number of internal ROLLBACK statements."
+msgstr "Број интерних ROLLBACK израза."
+
+#: server_status.php:59
+msgid "The number of requests to update a row in a table."
+msgstr "Број захтева за ажурирање реда у табели."
+
+#: server_status.php:60
+msgid "The number of requests to insert a row in a table."
+msgstr "Број захтева за уписивање реда у табелу."
+
+#: server_status.php:61
+msgid "The number of pages containing data (dirty or clean)."
+msgstr "Број страна које садрже податке (чистих или прљавих)."
+
+#: server_status.php:62
+msgid "The number of pages currently dirty."
+msgstr "Број страна које су тренутно прљаве."
+
+#: server_status.php:63
+msgid "The number of buffer pool pages that have been requested to be flushed."
+msgstr "Број страна у остави бафера за које је тражено да буду очишћене."
+
+#: server_status.php:64
+msgid "The number of free pages."
+msgstr "Број слободних страна."
+
+#: server_status.php:65
+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 ""
+"Број забрављених страна у InnoDB остави бафера. Са ових страна се тренутно "
+"чита или се у њих уписује или из неког другог разлога не могу бити очишћене "
+"нити уклоњене."
+
+#: server_status.php:66
+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 "
+"be calculated as Innodb_buffer_pool_pages_total - "
+"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data."
+msgstr ""
+"Број страна које су заузете зато што су одвојене за административне потребе, "
+"као што су закључавање редова или индекс прилагодљивог хеша. Ова вредност се "
+"такође може израчунати и на следећи начин Innodb_buffer_pool_pages_total - "
+"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data."
+
+#: server_status.php:67
+msgid "Total size of buffer pool, in pages."
+msgstr "Пуна величина оставе бафера, у странама."
+
+#: server_status.php:68
+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 ""
+"Број „насумичних“ пред-читања која је InnoDB покренуо. Ово се дешава када "
+"упит треба да скенира велики део табеле али насумичним редоследом."
+
+#: server_status.php:69
+msgid ""
+"The number of sequential read-aheads InnoDB initiated. This happens when "
+"InnoDB does a sequential full table scan."
+msgstr ""
+"Број секвенцијалних пред-читања која је InnoDB покренуо. Ово се дешава када "
+"InnoDB ради секвенцијално скенирање целе табеле."
+
+#: server_status.php:70
+msgid "The number of logical read requests InnoDB has done."
+msgstr "Број логичких захтева за читање које је InnoDB урадио."
+
+#: server_status.php:71
+msgid ""
+"The number of logical reads that InnoDB could not satisfy from buffer pool "
+"and had to do a single-page read."
+msgstr ""
+"Број логичких читања која InnoDB није могао да задовољи из оставе бафера те "
+"је морао да ради читање појединачне стране."
+
+#: server_status.php:72
+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 "
+"available, it's necessary to wait for pages to be flushed first. This "
+"counter counts instances of these waits. If the buffer pool size was set "
+"properly, this value should be small."
+msgstr ""
+"Нормално се уписи у InnoDB оставу бафера дешавају у позадини. Међутим, ако "
+"је неопходно прочитати или направити страну а нема доступних чистих страна, "
+"неопходно је сачекати да се стране претходно очисте. Овај бројач броји "
+"дешавања ових чекања. Ако је величина оставе бафера постављена како треба, "
+"ова вредност ви требало да је ниска."
+
+#: server_status.php:73
+msgid "The number writes done to the InnoDB buffer pool."
+msgstr "Број уписа учињених у InnoDB оставу бафера."
+
+#: server_status.php:74
+msgid "The number of fsync() operations so far."
+msgstr "Број fsync() операција до сада."
+
+#: server_status.php:75
+msgid "The current number of pending fsync() operations."
+msgstr "Тренутни број fsync() операција на чекању."
+
+#: server_status.php:76
+msgid "The current number of pending reads."
+msgstr "Тренутни број читања на чекању."
+
+#: server_status.php:77
+msgid "The current number of pending writes."
+msgstr "Тренутни број уписа на чекању."
+
+#: server_status.php:78
+msgid "The amount of data read so far, in bytes."
+msgstr "Количина података прочитаних до сада, у бајтовима."
+
+#: server_status.php:79
+msgid "The total number of data reads."
+msgstr "Укупан број читања података."
+
+#: server_status.php:80
+msgid "The total number of data writes."
+msgstr "Укупан број уписа података."
+
+#: server_status.php:81
+msgid "The amount of data written so far, in bytes."
+msgstr "Количина података уписаних до сада, у бајтовима"
+
+#: server_status.php:82
+msgid "The number of pages that have been written for doublewrite operations."
+msgstr ""
+"Број извршених двоуписних (doublewrite) уписа и број страна које су уписане "
+"у ову сврху."
+
+#: server_status.php:83
+msgid "The number of doublewrite operations that have been performed."
+msgstr ""
+"Број извршених двоуписних (doublewrite) уписа и број страна које су уписане "
+"у ову сврху."
+
+#: server_status.php:84
+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 ""
+"Број чекања која смо имали зато што је бафер дневника био премали те смо "
+"морали да сачекамо да буде очишћен пре наставка."
+
+#: server_status.php:85
+msgid "The number of log write requests."
+msgstr "Број захтева за упис у дневник."
+
+#: server_status.php:86
+msgid "The number of physical writes to the log file."
+msgstr "Број физичких уписа у датотеку дневника."
+
+#: server_status.php:87
+msgid "The number of fsync() writes done to the log file."
+msgstr "Број fsyncs уписа начињених у датотеку дневника."
+
+#: server_status.php:88
+msgid "The number of pending log file fsyncs."
+msgstr "Број fsync-ова за датотеку дневника на чекању."
+
+#: server_status.php:89
+msgid "Pending log file writes."
+msgstr "Број уписа у датотеку дневника на чекању."
+
+#: server_status.php:90
+msgid "The number of bytes written to the log file."
+msgstr "Број бајтова уписаних у датотеку дневника."
+
+#: server_status.php:91
+msgid "The number of pages created."
+msgstr "Број направљених страна."
+
+#: server_status.php:92
+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 ""
+"Укомпајлирана величина стране за InnoDB (подразумевано 16КБ). Многе "
+"вредности се рачунају у странама; величина стране омогућава да се оне лако "
+"конвертују у бајтове."
+
+#: server_status.php:93
+msgid "The number of pages read."
+msgstr "Број прочитаних страна."
+
+#: server_status.php:94
+msgid "The number of pages written."
+msgstr "Број записаних страна."
+
+#: server_status.php:95
+msgid "The number of row locks currently being waited for."
+msgstr "Број брава за редове које се тренутно чекају."
+
+#: server_status.php:96
+msgid "The average time to acquire a row lock, in milliseconds."
+msgstr "Просечно време за добављање браве за ред, у милисекундама."
+
+#: server_status.php:97
+msgid "The total time spent in acquiring row locks, in milliseconds."
+msgstr "Укупно времена проведено у добављању брава за редове, у милисекундама."
+
+#: server_status.php:98
+msgid "The maximum time to acquire a row lock, in milliseconds."
+msgstr "Најдуже време за добављање браве за ред, у милисекундама."
+
+#: server_status.php:99
+msgid "The number of times a row lock had to be waited for."
+msgstr "Број пута када се морала чекати брава за ред."
+
+#: server_status.php:100
+msgid "The number of rows deleted from InnoDB tables."
+msgstr "Број редова обрисаних из InnoDB табела."
+
+#: server_status.php:101
+msgid "The number of rows inserted in InnoDB tables."
+msgstr "Број редова уметнутих у InnoDB табеле."
+
+#: server_status.php:102
+msgid "The number of rows read from InnoDB tables."
+msgstr "Број редова прочитаних из InnoDB табела."
+
+#: server_status.php:103
+msgid "The number of rows updated in InnoDB tables."
+msgstr "Број редова ажурираних у InnoDB табелама."
+
+#: server_status.php:104
+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."
+
+#: server_status.php:105
+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 ""
+"Број неискоришћених блокова у кешу кључева. Ову вредност можете да користите "
+"да утврдите колики део кеша кључева је у употреби."
+
+#: server_status.php:106
+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 ""
+"Број искоришћених блокова у кешу кључева. Ова вредност је ознака „високог "
+"водостаја“ која показује највећи икада број блокова који је био у употреби у "
+"исто време."
+
+#: server_status.php:107
+msgid "The number of requests to read a key block from the cache."
+msgstr "Број захтева за читање блока кључева из кеша."
+
+#: server_status.php:108
+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 ""
+"Број физичких читања блока кључева са диска. Ако је Key_reads велико, онда "
+"је ваша вредност за key_buffer_size вероватно премала. Степен промашаја кеша "
+"се може израчунати као Key_reads/Key_read_requests."
+
+#: server_status.php:109
+msgid "The number of requests to write a key block to the cache."
+msgstr "Број захтева за уписивање блока кључева у кеш."
+
+#: server_status.php:110
+msgid "The number of physical writes of a key block to disk."
+msgstr "Број физичких уписа блока кључева на диск."
+
+#: server_status.php:111
+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 ""
+"Укупна цена последњег компајлираног упита како ју је израчунао оптимизатор "
+"упита. Корисно за упоређивање цене различитих планова упита за исти упит. "
+"Подразумевана вредност 0 значи да још није био компајлиран ниједан упит."
+
+#: server_status.php:112
+msgid "The number of rows waiting to be written in INSERT DELAYED queues."
+msgstr "Број редова у INSERT DELAYED редовима чекања који чекају уписивање."
+
+#: server_status.php:113
+msgid ""
+"The number of tables that have been opened. If opened tables is big, your "
+"table cache value is probably too small."
+msgstr ""
+"Број табела које су биле отваране. Ако је број велики, ваш кеш табела је "
+"вероватно премали."
+
+#: server_status.php:114
+msgid "The number of files that are open."
+msgstr "Број отворених датотека."
+
+#: server_status.php:115
+msgid "The number of streams that are open (used mainly for logging)."
+msgstr ""
+"Број отворених токова (користи се првенствено за вођење дневника (logging))."
+
+#: server_status.php:116
+msgid "The number of tables that are open."
+msgstr "Број отворених табела."
+
+#: server_status.php:117
+msgid "The number of free memory blocks in query cache."
+msgstr "Број слободних меморијских блокова у у кешу упита."
+
+#: server_status.php:118
+msgid "The amount of free memory for query cache."
+msgstr "Количина слободне меморије за кеш упита."
+
+#: server_status.php:119
+msgid "The number of cache hits."
+msgstr "Број погодака из кеша."
+
+#: server_status.php:120
+msgid "The number of queries added to the cache."
+msgstr "Број упита додатих у кеш."
+
+#: server_status.php:121
+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 "
+"cache size. The query cache uses a least recently used (LRU) strategy to "
+"decide which queries to remove from the cache."
+msgstr ""
+"Број упита који су уклоњени из кеша да би се ослободила меморија за кеширање "
+"нових упита. Овај податак вам може помоћи да подесите величину кеша за "
+"упите. Кеш за упите користи стратегију најдуже некоришћеног (en: least "
+"recently used , LRU) да би одлучио које упите да уклони из кеша."
+
+#: server_status.php:122
+msgid ""
+"The number of non-cached queries (not cachable, or not cached due to the "
+"query_cache_type setting)."
+msgstr ""
+"Број некешираних упита (који се не могу кеширати или нису кеширани због "
+"подешавања query_cache_type)."
+
+#: server_status.php:123
+msgid "The number of queries registered in the cache."
+msgstr "Број упита регистрованих у кешу."
+
+#: server_status.php:124
+msgid "The total number of blocks in the query cache."
+msgstr "Укупан број блокова у кешу за упите."
+
+#: server_status.php:125
+msgctxt "$strShowStatusReset"
+msgid "Reset"
+msgstr "Ресет"
+
+#: server_status.php:126
+msgid "The status of failsafe replication (not yet implemented)."
+msgstr "Статус репликације отпорне на грешке (није још имплементирано)."
+
+#: server_status.php:127
+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 ""
+"Број спојева који не користе индексте. Ако ова вредност није 0, требало би "
+"пажљиво да проверите индексе ваших табела."
+
+#: server_status.php:128
+msgid "The number of joins that used a range search on a reference table."
+msgstr "Број спојева који су користили претрагу опсега на референтној табели."
+
+#: server_status.php:129
+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 ""
+"Број спојева без кључева који проверавају употребу кључа после сваког реда. "
+"(Ако ово није 0, требало би пажљиво да проверите индексе ваших табела.)"
+
+#: server_status.php:130
+msgid ""
+"The number of joins that used ranges on the first table. (It's normally not "
+"critical even if this is big.)"
+msgstr ""
+"Број спојева који су користили опсеге на првој табели. (Обично није критично "
+"чак ни када је ово велико)"
+
+#: server_status.php:131
+msgid "The number of joins that did a full scan of the first table."
+msgstr "Број спојева који су урадили пуно скенирање прве табеле."
+
+#: server_status.php:132
+msgid "The number of temporary tables currently open by the slave SQL thread."
+msgstr "Број привремених табела тренутно отворених од стране помоћне SQL нити."
+
+#: server_status.php:133
+msgid ""
+"Total (since startup) number of times the replication slave SQL thread has "
+"retried transactions."
+msgstr ""
+"Укупан број пута (од покретања) када је помоћна SQL нит за репликацију "
+"покушала трансакције."
+
+#: server_status.php:134
+msgid "This is ON if this server is a slave that is connected to a master."
+msgstr "Ово је ON ако је овај сервер помоћни који је повезан на главни."
+
+#: server_status.php:135
+msgid ""
+"The number of threads that have taken more than slow_launch_time seconds to "
+"create."
+msgstr ""
+"Број нити за које је требало више од slow_launch_time секудни да би биле "
+"покренуте."
+
+#: server_status.php:136
+msgid ""
+"The number of queries that have taken more than long_query_time seconds."
+msgstr "Број упита за које је требало више од long_query_time секудни."
+
+#: server_status.php:137
+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 ""
+"Број пролаза за спајање које је алгоритам за сортирање морао да одради. Ако "
+"је ова вредност велика, требало би да размислите о повећању вредности "
+"системске променљиве sort_buffer_size."
+
+#: server_status.php:138
+msgid "The number of sorts that were done with ranges."
+msgstr "Број сортирања која су урађена са опсегом."
+
+#: server_status.php:139
+msgid "The number of sorted rows."
+msgstr "Број сортираних редова."
+
+#: server_status.php:140
+msgid "The number of sorts that were done by scanning the table."
+msgstr "Број сортирања до којих је дошло скенирањем табеле."
+
+#: server_status.php:141
+msgid "The number of times that a table lock was acquired immediately."
+msgstr "Број пута када је брава за табелу одмах добављена."
+
+#: server_status.php:142
+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 "
+"should first optimize your queries, and then either split your table or "
+"tables or use replication."
+msgstr ""
+"Број пута када брава за табелу није могла бити одмах добављена и било је "
+"потребно чекање. Ако је ово високо и имате проблема са перформансама, прво "
+"би требало да оптимизујете своје упите а потом да или поделите табелу или "
+"табеле или да користите репликацију."
+
+#: server_status.php:143
+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 ""
+"Број нити у кешу за нити. Степен погодака кеша се може израчунати као "
+"Threads_created/Конекције. Ако је ова вредност црвена требало би да повећате "
+"ваш thread_cache_size."
+
+#: server_status.php:144
+msgid "The number of currently open connections."
+msgstr "Број тренутно отворених веза."
+
+#: server_status.php:145
+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 "
+"doesn't give a notable performance improvement if you have a good thread "
+"implementation.)"
+msgstr ""
+"Број нити креираних за руковање конекцијама. Ако је Threads_created велико, "
+"можда би требало да повећате вредност thread_cache_size. (Ако имате добру "
+"имплементацију нити, ово обично не доноси приметна побољшања у "
+"перформансама.)"
+
+#: server_status.php:146
+msgid "The number of threads that are not sleeping."
+msgstr "Број нити које нису успаване."
+
+#: server_status.php:157
msgid "Runtime Information"
msgstr "Информације о току рада"
-#: server_status.php:250
+#: server_status.php:361
msgid "Handler"
msgstr "Руковалац"
-#: server_status.php:251
+#: server_status.php:362
msgid "Query cache"
msgstr "Кеш упита"
-#: server_status.php:252
+#: server_status.php:363
msgid "Threads"
msgstr "Нити"
-#: server_status.php:254
+#: server_status.php:365
msgid "Temporary data"
msgstr "Привремени подаци"
-#: server_status.php:255
+#: server_status.php:366
msgid "Delayed inserts"
msgstr "Одложена уметања"
-#: server_status.php:256
+#: server_status.php:367
msgid "Key cache"
msgstr "Кеш кључева"
-#: server_status.php:257
+#: server_status.php:368
msgid "Joins"
msgstr "Спојеви"
-#: server_status.php:259
+#: server_status.php:370
msgid "Sorting"
msgstr "Сортирање"
-#: server_status.php:261
+#: server_status.php:372
msgid "Transaction coordinator"
msgstr "Координатор трансакција"
-#: server_status.php:271
+#: server_status.php:382
msgid "Flush (close) all tables"
msgstr "Очисти (затвори) све табеле"
-#: server_status.php:273
+#: server_status.php:384
msgid "Show open tables"
msgstr "Прикажи отворене табеле"
-#: server_status.php:278
+#: server_status.php:389
msgid "Show slave hosts"
msgstr "Прикажи подређене сервер"
-#: server_status.php:284
+#: server_status.php:395
msgid "Show slave status"
msgstr "Прикажи статус подређених сервера"
-#: server_status.php:289
+#: server_status.php:400
msgid "Flush query cache"
msgstr "Очисти кеш упита"
-#: server_status.php:294
+#: server_status.php:405
msgid "Show processes"
msgstr "Прикажи листу процеса"
-#: server_status.php:344
+#: server_status.php:455
#, fuzzy
#| msgid "Reset"
msgctxt "for Show status"
msgid "Reset"
msgstr "Поништи"
-#: server_status.php:350
+#: server_status.php:461
#, php-format
msgid "This MySQL server has been running for %s. It started up on %s."
msgstr "Овај MySQL сервер ради већ %s. Покренут је %s."
-#: server_status.php:360
+#: server_status.php:471
msgid ""
"This MySQL server works as master and slave in replication"
"b> process."
msgstr ""
-#: server_status.php:362
+#: server_status.php:473
msgid "This MySQL server works as master in replication process."
msgstr ""
-#: server_status.php:364
+#: server_status.php:475
msgid "This MySQL server works as slave in replication process."
msgstr ""
-#: server_status.php:366
+#: server_status.php:477
msgid ""
"For further information about replication status on the server, please visit "
"the replication section."
msgstr ""
-#: server_status.php:383
+#: server_status.php:494
msgid ""
"Server traffic: These tables show the network traffic statistics of "
"this MySQL server since its startup."
@@ -5922,11 +5932,11 @@ msgstr ""
"Саобраћај сервера: Табеле показују статистике мрежног саобраћаја на "
"овом MySQL серверу од његовог покретања."
-#: server_status.php:388
+#: server_status.php:499
msgid "Traffic"
msgstr "Саобраћај"
-#: server_status.php:388
+#: server_status.php:499
msgid ""
"On a busy server, the byte counters may overrun, so those statistics as "
"reported by the MySQL server may be incorrect."
@@ -5934,36 +5944,36 @@ msgstr ""
"На запосленом серверу бројачи бајтова могу да се прелију (overrun), тако да "
"те статистике, онако како их пријављује MySQL сервер, могу бити нетачне."
-#: server_status.php:389 server_status.php:434 server_status.php:497
-#: server_status.php:555
+#: server_status.php:500 server_status.php:545 server_status.php:608
+#: server_status.php:666
msgid "per hour"
msgstr "на сат"
-#: server_status.php:394
+#: server_status.php:505
msgid "Received"
msgstr "Примљено"
-#: server_status.php:404
+#: server_status.php:515
msgid "Sent"
msgstr "Послато"
-#: server_status.php:433
+#: server_status.php:544
msgid "Connections"
msgstr "Конекције"
-#: server_status.php:440
+#: server_status.php:551
msgid "max. concurrent connections"
msgstr "макс. истовремених веза"
-#: server_status.php:447
+#: server_status.php:558
msgid "Failed attempts"
msgstr "Неуспелих покушаја"
-#: server_status.php:461
+#: server_status.php:572
msgid "Aborted"
msgstr "Прекинуто"
-#: server_status.php:490
+#: server_status.php:601
#, php-format
msgid ""
"Query statistics: Since its startup, %s queries have been sent to the "
@@ -5971,19 +5981,19 @@ msgid ""
msgstr ""
"Статистике упита: %s упита је постављено серверу од његовог покретања."
-#: server_status.php:498
+#: server_status.php:609
msgid "per minute"
msgstr "у минуту"
-#: server_status.php:499
+#: server_status.php:610
msgid "per second"
msgstr "у секунди"
-#: server_status.php:554
+#: server_status.php:665
msgid "Query type"
msgstr "Врста упита"
-#: server_status.php:721
+#: server_status.php:832
#, fuzzy
msgid "Replication status"
msgstr "Репликација"
diff --git a/po/sr@latin.po b/po/sr@latin.po
index 876b984be..49c7bc593 100755
--- a/po/sr@latin.po
+++ b/po/sr@latin.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-06-04 16:07-0400\n"
+"POT-Creation-Date: 2010-06-08 12:32-0400\n"
"PO-Revision-Date: 2010-03-30 23:47+0200\n"
"Last-Translator: Michal \n"
"Language-Team: serbian_latin \n"
@@ -16,11 +16,11 @@ msgstr ""
"X-Generator: Pootle 2.0.1\n"
#: browse_foreigners.php:38 browse_foreigners.php:59
-#: libraries/display_tbl.lib.php:417 server_privileges.php:1475
+#: libraries/display_tbl.lib.php:417 server_privileges.php:1514
msgid "Show all"
msgstr "Prikaži sve"
-#: browse_foreigners.php:82 libraries/common.lib.php:2304
+#: browse_foreigners.php:82 libraries/common.lib.php:2313
#: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:394
#: libraries/export/pdf.php:147 pdf_schema.php:283 pdf_schema.php:1123
#: pdf_schema.php:1139
@@ -39,8 +39,8 @@ msgstr ""
#: browse_foreigners.php:150 db_structure.php:79 db_structure.php:80
#: db_structure.php:91 db_structure.php:93 db_structure.php:104
-#: db_structure.php:106 libraries/common.lib.php:2822
-#: libraries/common.lib.php:2829 libraries/db_links.inc.php:75
+#: db_structure.php:106 libraries/common.lib.php:2831
+#: libraries/common.lib.php:2838 libraries/db_links.inc.php:75
#: libraries/tbl_links.inc.php:63
msgid "Search"
msgstr "Pretraživanje"
@@ -50,7 +50,7 @@ msgstr "Pretraživanje"
#: db_structure.php:567 js/messages.php:48 libraries/Config.class.php:1046
#: libraries/Theme_Manager.class.php:311
#: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719
-#: libraries/common.lib.php:1333 libraries/common.lib.php:2279
+#: libraries/common.lib.php:1335 libraries/common.lib.php:2288
#: libraries/display_change_password.lib.php:82
#: libraries/display_create_table.lib.php:63
#: libraries/display_export.lib.php:275 libraries/display_import.lib.php:276
@@ -61,9 +61,9 @@ msgstr "Pretraživanje"
#: libraries/sql_query_form.lib.php:552 libraries/tbl_properties.inc.php:782
#: main.php:128 navigation.php:237 pdf_pages.php:292 pdf_pages.php:328
#: pdf_pages.php:530 pmd_pdf.php:116 server_binlog.php:142
-#: server_privileges.php:625 server_privileges.php:1585
-#: server_privileges.php:1932 server_privileges.php:1979
-#: server_privileges.php:2018 server_replication.php:235
+#: server_privileges.php:664 server_privileges.php:1624
+#: server_privileges.php:1971 server_privileges.php:2018
+#: server_privileges.php:2057 server_replication.php:235
#: server_replication.php:318 server_replication.php:341
#: server_synchronize.php:1209 tbl_change.php:330 tbl_change.php:1174
#: tbl_change.php:1211 tbl_indexes.php:254 tbl_operations.php:265
@@ -81,7 +81,7 @@ msgstr "Ime ključa"
#: browse_foreigners.php:169 browse_foreigners.php:171
#: server_collations.php:55 server_collations.php:67 server_engines.php:59
-#: server_status.php:628
+#: server_status.php:739
msgid "Description"
msgstr "Opis"
@@ -122,7 +122,7 @@ msgstr "Imena kolona"
#: libraries/db_structure.lib.php:60 libraries/export/htmlword.php:245
#: libraries/export/latex.php:360 libraries/export/odt.php:297
#: libraries/export/texytext.php:234 libraries/tbl_properties.inc.php:100
-#: pdf_schema.php:1263 pdf_schema.php:1284 server_privileges.php:2031
+#: pdf_schema.php:1263 pdf_schema.php:1284 server_privileges.php:2070
#: tbl_change.php:287 tbl_change.php:314 tbl_printview.php:143
#: tbl_printview.php:313 tbl_select.php:136 tbl_structure.php:178
#: tbl_structure.php:659 tbl_tracking.php:274 tbl_tracking.php:321
@@ -166,9 +166,9 @@ msgstr "Komentari"
#: libraries/Index.class.php:386 libraries/export/htmlword.php:322
#: libraries/export/latex.php:430 libraries/export/odt.php:368
#: libraries/export/texytext.php:311 libraries/mult_submits.inc.php:263
-#: pdf_schema.php:1344 server_privileges.php:1529 server_privileges.php:1540
-#: server_privileges.php:1850 server_privileges.php:1855
-#: server_privileges.php:2148 sql.php:132 sql.php:194 tbl_printview.php:229
+#: pdf_schema.php:1344 server_privileges.php:1568 server_privileges.php:1579
+#: server_privileges.php:1889 server_privileges.php:1894
+#: server_privileges.php:2187 sql.php:132 sql.php:194 tbl_printview.php:229
#: tbl_structure.php:350 tbl_tracking.php:337 tbl_tracking.php:342
msgid "No"
msgstr "Ne"
@@ -182,9 +182,9 @@ msgstr "Ne"
#: libraries/mult_submits.inc.php:101 libraries/mult_submits.inc.php:106
#: libraries/mult_submits.inc.php:111 libraries/mult_submits.inc.php:262
#: libraries/mult_submits.inc.php:273 pdf_schema.php:1344
-#: server_databases.php:64 server_privileges.php:1526
-#: server_privileges.php:1540 server_privileges.php:1850
-#: server_privileges.php:1853 server_privileges.php:2148 sql.php:193
+#: server_databases.php:64 server_privileges.php:1565
+#: server_privileges.php:1579 server_privileges.php:1889
+#: server_privileges.php:1892 server_privileges.php:2187 sql.php:193
#: tbl_printview.php:229 tbl_structure.php:40 tbl_structure.php:350
#: tbl_tracking.php:335 tbl_tracking.php:340
msgid "Yes"
@@ -281,7 +281,7 @@ msgstr "Prebaci se na kopiranu bazu"
msgid "BLOB Repository"
msgstr ""
-#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1350
+#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1352
#: libraries/server_links.inc.php:49 server_processlist.php:59
#: tbl_tracking.php:596 test/theme.php:101
msgid "Status"
@@ -345,8 +345,8 @@ msgstr "Uređivanje PDF strana"
#: db_printview.php:104 db_tracking.php:72 db_tracking.php:157
#: libraries/db_structure.lib.php:46 libraries/export/xml.php:328
-#: libraries/header.inc.php:126 pdf_pages.php:424 server_privileges.php:1626
-#: server_privileges.php:1682 server_privileges.php:1946
+#: libraries/header.inc.php:126 pdf_pages.php:424 server_privileges.php:1665
+#: server_privileges.php:1721 server_privileges.php:1985
#: server_synchronize.php:423 server_synchronize.php:866 tbl_tracking.php:592
#: test/theme.php:75
msgid "Table"
@@ -448,7 +448,7 @@ msgstr "Del"
#: db_qbe.php:370 db_qbe.php:451 db_qbe.php:522 db_qbe.php:553
#: libraries/display_import.lib.php:166 libraries/tbl_properties.inc.php:779
-#: server_privileges.php:258 tbl_change.php:1031 tbl_indexes.php:250
+#: server_privileges.php:297 tbl_change.php:1031 tbl_indexes.php:250
#: tbl_select.php:288
msgid "Or"
msgstr "ili"
@@ -482,7 +482,7 @@ msgstr "Koristi tabele"
msgid "SQL query on database %s:"
msgstr "SQL upit na bazi %s:"
-#: db_qbe.php:934 libraries/common.lib.php:1223
+#: db_qbe.php:934 libraries/common.lib.php:1225
msgid "Submit Query"
msgstr "Izvrši SQL upit"
@@ -521,7 +521,7 @@ msgstr "%s pogodaka unutar tabele %s"
#: db_search.php:267 db_structure.php:77 db_structure.php:78
#: db_structure.php:90 db_structure.php:92 db_structure.php:103
-#: db_structure.php:105 libraries/common.lib.php:2824
+#: db_structure.php:105 libraries/common.lib.php:2833
#: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50
#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:467
msgid "Browse"
@@ -568,26 +568,26 @@ msgstr "Unutar tabela:"
#: db_structure.php:81 db_structure.php:82 db_structure.php:94
#: db_structure.php:95 db_structure.php:107 db_structure.php:108
-#: libraries/common.lib.php:2823 libraries/sql_query_form.lib.php:334
+#: libraries/common.lib.php:2832 libraries/sql_query_form.lib.php:334
#: libraries/sql_query_form.lib.php:337 libraries/tbl_links.inc.php:76
msgid "Insert"
msgstr "Novi zapis"
#: db_structure.php:83 db_structure.php:96 db_structure.php:109
-#: libraries/common.lib.php:2820 libraries/common.lib.php:2827
+#: libraries/common.lib.php:2829 libraries/common.lib.php:2836
#: libraries/db_links.inc.php:63 libraries/export/htmlword.php:23
#: libraries/export/latex.php:33 libraries/export/latex.php:337
#: libraries/export/odt.php:32 libraries/export/sql.php:60
#: libraries/export/texytext.php:23 libraries/import.lib.php:1104
#: libraries/tbl_links.inc.php:56 pmd_general.php:134
-#: server_privileges.php:554 server_replication.php:315 tbl_tracking.php:269
+#: server_privileges.php:593 server_replication.php:315 tbl_tracking.php:269
msgid "Structure"
msgstr "Struktura"
#: db_structure.php:84 db_structure.php:85 db_structure.php:97
#: db_structure.php:98 db_structure.php:110 db_structure.php:111
#: db_structure.php:545 db_structure.php:546 db_tracking.php:91
-#: libraries/Index.class.php:483 libraries/common.lib.php:1654
+#: libraries/Index.class.php:483 libraries/common.lib.php:1656
#: libraries/db_links.inc.php:100 libraries/mult_submits.inc.php:36
#: libraries/mult_submits.inc.php:73 libraries/tbl_links.inc.php:127
#: server_databases.php:352 tbl_structure.php:27 tbl_structure.php:151
@@ -597,7 +597,7 @@ msgstr "Odbaci"
#: db_structure.php:86 db_structure.php:87 db_structure.php:99
#: db_structure.php:100 db_structure.php:112 db_structure.php:113
-#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1653
+#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1655
#: libraries/mult_submits.inc.php:39 libraries/tbl_links.inc.php:105
msgid "Empty"
msgstr "Isprazni"
@@ -639,7 +639,7 @@ msgstr "Pogled"
#: db_structure.php:485 libraries/db_structure.lib.php:49
#: libraries/server_links.inc.php:70 server_replication.php:33
-#: server_replication.php:164 server_status.php:258
+#: server_replication.php:164 server_status.php:369
msgid "Replication"
msgstr "Replikacija"
@@ -655,20 +655,20 @@ msgstr "%s je podrazumevani pogon skladištenja na ovom MySQL serveru."
#: db_structure.php:524 db_structure.php:541 db_structure.php:542
#: libraries/display_tbl.lib.php:2081 libraries/display_tbl.lib.php:2086
#: libraries/mult_submits.inc.php:16 server_databases.php:346
-#: server_databases.php:351 server_privileges.php:1557 tbl_structure.php:455
+#: server_databases.php:351 server_privileges.php:1596 tbl_structure.php:455
#: tbl_structure.php:464
msgid "With selected:"
msgstr "Označeno:"
#: db_structure.php:527 libraries/display_tbl.lib.php:2076
-#: server_databases.php:348 server_privileges.php:530
-#: server_privileges.php:1560 tbl_structure.php:458
+#: server_databases.php:348 server_privileges.php:569
+#: server_privileges.php:1599 tbl_structure.php:458
msgid "Check All"
msgstr "Označi sve"
#: db_structure.php:531 libraries/display_tbl.lib.php:2077
#: libraries/replication_gui.lib.php:33 server_databases.php:350
-#: server_privileges.php:533 server_privileges.php:1564 tbl_structure.php:462
+#: server_privileges.php:572 server_privileges.php:1603 tbl_structure.php:462
msgid "Uncheck All"
msgstr "nijedno"
@@ -706,7 +706,7 @@ msgstr "Analiziraj tabelu"
#: libraries/display_export.lib.php:83 libraries/display_tbl.lib.php:2094
#: libraries/display_tbl.lib.php:2225 libraries/mult_submits.inc.php:62
#: libraries/server_links.inc.php:84 libraries/tbl_links.inc.php:82
-#: pmd_pdf.php:84 pmd_pdf.php:109 server_privileges.php:1341
+#: pmd_pdf.php:84 pmd_pdf.php:109 server_privileges.php:1380
#: setup/frames/menu.inc.php:22 tbl_row_action.php:59
msgid "Export"
msgstr "Izvoz"
@@ -725,8 +725,8 @@ msgstr "Proveri tabelu"
#: libraries/export/sql.php:342 libraries/export/texytext.php:84
#: libraries/export/xml.php:255 libraries/header.inc.php:106
#: libraries/header_printview.inc.php:58 server_databases.php:169
-#: server_privileges.php:1621 server_privileges.php:1682
-#: server_privileges.php:1940 server_processlist.php:56
+#: server_privileges.php:1660 server_privileges.php:1721
+#: server_privileges.php:1979 server_processlist.php:56
#: server_synchronize.php:1179 server_synchronize.php:1183
#: tbl_tracking.php:591 test/theme.php:65
msgid "Database"
@@ -748,8 +748,8 @@ msgstr ""
#: db_tracking.php:77 libraries/Index.class.php:440
#: libraries/db_structure.lib.php:53 server_databases.php:203
-#: server_privileges.php:1503 server_privileges.php:1686
-#: server_privileges.php:2034 tbl_structure.php:187
+#: server_privileges.php:1542 server_privileges.php:1725
+#: server_privileges.php:2073 tbl_structure.php:187
msgid "Action"
msgstr "Akcija"
@@ -955,11 +955,11 @@ msgstr "Ime domaćina je prazno!"
msgid "The user name is empty!"
msgstr "Ime korisnika nije uneto!"
-#: js/messages.php:44 server_privileges.php:1197 user_password.php:70
+#: js/messages.php:44 server_privileges.php:1236 user_password.php:70
msgid "The password is empty!"
msgstr "Lozinka je prazna!"
-#: js/messages.php:45 server_privileges.php:1195 user_password.php:73
+#: js/messages.php:45 server_privileges.php:1234 user_password.php:73
msgid "The passwords aren't the same!"
msgstr "Lozinke nisu identične!"
@@ -1037,8 +1037,8 @@ msgid "Prev"
msgstr "Prethodna"
#. l10n: Display text for next month link in calendar
-#: js/messages.php:77 libraries/common.lib.php:2344
-#: libraries/common.lib.php:2347 libraries/display_tbl.lib.php:338
+#: js/messages.php:77 libraries/common.lib.php:2353
+#: libraries/common.lib.php:2356 libraries/display_tbl.lib.php:338
#: server_binlog.php:205 server_binlog.php:207 tbl_printview.php:424
#: tbl_structure.php:801
msgid "Next"
@@ -1114,27 +1114,27 @@ msgid "December"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:97 libraries/common.lib.php:1555
+#: js/messages.php:97 libraries/common.lib.php:1557
msgid "Jan"
msgstr "jan"
#. l10n: Short month name
-#: js/messages.php:99 libraries/common.lib.php:1557
+#: js/messages.php:99 libraries/common.lib.php:1559
msgid "Feb"
msgstr "feb"
#. l10n: Short month name
-#: js/messages.php:101 libraries/common.lib.php:1559
+#: js/messages.php:101 libraries/common.lib.php:1561
msgid "Mar"
msgstr "mar"
#. l10n: Short month name
-#: js/messages.php:103 libraries/common.lib.php:1561
+#: js/messages.php:103 libraries/common.lib.php:1563
msgid "Apr"
msgstr "apr"
#. l10n: Short month name
-#: js/messages.php:105 libraries/common.lib.php:1563
+#: js/messages.php:105 libraries/common.lib.php:1565
#, fuzzy
#| msgid "May"
msgctxt "Short month name"
@@ -1142,37 +1142,37 @@ msgid "May"
msgstr "maj"
#. l10n: Short month name
-#: js/messages.php:107 libraries/common.lib.php:1565
+#: js/messages.php:107 libraries/common.lib.php:1567
msgid "Jun"
msgstr "jun"
#. l10n: Short month name
-#: js/messages.php:109 libraries/common.lib.php:1567
+#: js/messages.php:109 libraries/common.lib.php:1569
msgid "Jul"
msgstr "jul"
#. l10n: Short month name
-#: js/messages.php:111 libraries/common.lib.php:1569
+#: js/messages.php:111 libraries/common.lib.php:1571
msgid "Aug"
msgstr "avg"
#. l10n: Short month name
-#: js/messages.php:113 libraries/common.lib.php:1571
+#: js/messages.php:113 libraries/common.lib.php:1573
msgid "Sep"
msgstr "sep"
#. l10n: Short month name
-#: js/messages.php:115 libraries/common.lib.php:1573
+#: js/messages.php:115 libraries/common.lib.php:1575
msgid "Oct"
msgstr "okt"
#. l10n: Short month name
-#: js/messages.php:117 libraries/common.lib.php:1575
+#: js/messages.php:117 libraries/common.lib.php:1577
msgid "Nov"
msgstr "nov"
#. l10n: Short month name
-#: js/messages.php:119 libraries/common.lib.php:1577
+#: js/messages.php:119 libraries/common.lib.php:1579
msgid "Dec"
msgstr "dec"
@@ -1213,37 +1213,37 @@ msgid "Saturday"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:132 libraries/common.lib.php:1580
+#: js/messages.php:132 libraries/common.lib.php:1582
msgid "Sun"
msgstr "Ned"
#. l10n: Short week day name
-#: js/messages.php:134 libraries/common.lib.php:1582
+#: js/messages.php:134 libraries/common.lib.php:1584
msgid "Mon"
msgstr "Pon"
#. l10n: Short week day name
-#: js/messages.php:136 libraries/common.lib.php:1584
+#: js/messages.php:136 libraries/common.lib.php:1586
msgid "Tue"
msgstr "Uto"
#. l10n: Short week day name
-#: js/messages.php:138 libraries/common.lib.php:1586
+#: js/messages.php:138 libraries/common.lib.php:1588
msgid "Wed"
msgstr "Sre"
#. l10n: Short week day name
-#: js/messages.php:140 libraries/common.lib.php:1588
+#: js/messages.php:140 libraries/common.lib.php:1590
msgid "Thu"
msgstr "Čet"
#. l10n: Short week day name
-#: js/messages.php:142 libraries/common.lib.php:1590
+#: js/messages.php:142 libraries/common.lib.php:1592
msgid "Fri"
msgstr "Pet"
#. l10n: Short week day name
-#: js/messages.php:144 libraries/common.lib.php:1592
+#: js/messages.php:144 libraries/common.lib.php:1594
msgid "Sat"
msgstr "Sub"
@@ -1391,7 +1391,7 @@ msgid "Comment"
msgstr "Komentari"
#: libraries/Index.class.php:466 libraries/common.lib.php:616
-#: libraries/common.lib.php:1199 libraries/display_tbl.lib.php:1117
+#: libraries/common.lib.php:1201 libraries/display_tbl.lib.php:1117
#: libraries/import.lib.php:1087 libraries/import.lib.php:1111
#: pdf_pages.php:285 setup/frames/index.inc.php:124
#: setup/lib/messages.inc.php:352 tbl_row_action.php:69
@@ -1415,7 +1415,7 @@ msgid ""
msgstr ""
#: libraries/List_Database.class.php:431 libraries/server_links.inc.php:41
-#: server_databases.php:88 server_privileges.php:1621
+#: server_databases.php:88 server_privileges.php:1660
#: setup/lib/messages.inc.php:110 test/theme.php:93
msgid "Databases"
msgstr "Baze"
@@ -1748,7 +1748,7 @@ msgid "Documentation"
msgstr "Dokumentacija"
#: libraries/common.lib.php:595 libraries/header_printview.inc.php:61
-#: server_processlist.php:60 server_status.php:247
+#: server_processlist.php:60 server_status.php:358
msgid "SQL query"
msgstr "SQL upit"
@@ -1764,130 +1764,130 @@ msgstr "Objasni SQL"
msgid "Skip Explain SQL"
msgstr "Preskoči objašnjavanje SQL-a"
-#: libraries/common.lib.php:1212
+#: libraries/common.lib.php:1214
msgid "Without PHP Code"
msgstr "bez PHP koda"
-#: libraries/common.lib.php:1215 setup/lib/messages.inc.php:355
+#: libraries/common.lib.php:1217 setup/lib/messages.inc.php:355
msgid "Create PHP Code"
msgstr "Napravi PHP kod"
-#: libraries/common.lib.php:1233 server_status.php:341
+#: libraries/common.lib.php:1235 server_status.php:452
#: setup/lib/messages.inc.php:354
msgid "Refresh"
msgstr "Osveži"
-#: libraries/common.lib.php:1242
+#: libraries/common.lib.php:1244
msgid "Skip Validate SQL"
msgstr "Preskoči proveru SQL-a"
-#: libraries/common.lib.php:1245 setup/lib/messages.inc.php:356 sql.php:518
+#: libraries/common.lib.php:1247 setup/lib/messages.inc.php:356 sql.php:518
msgid "Validate SQL"
msgstr "Proveri SQL"
-#: libraries/common.lib.php:1276
+#: libraries/common.lib.php:1278
msgid "Inline edit of this query"
msgstr ""
-#: libraries/common.lib.php:1278
+#: libraries/common.lib.php:1280
#, fuzzy
#| msgid "Engines"
msgid "Inline"
msgstr "Skladištenja"
-#: libraries/common.lib.php:1332 libraries/common.lib.php:1347
+#: libraries/common.lib.php:1334 libraries/common.lib.php:1349
msgid "Profiling"
msgstr "Profilisanje"
-#: libraries/common.lib.php:1351 libraries/tbl_triggers.lib.php:28
+#: libraries/common.lib.php:1353 libraries/tbl_triggers.lib.php:28
#: server_processlist.php:58
msgid "Time"
msgstr "Vreme"
#. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "B"
msgstr "bajtova"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "KiB"
msgstr "KB"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "MiB"
msgstr "MB"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "GiB"
msgstr "GB"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "TiB"
msgstr "TB"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "PiB"
msgstr "PB"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "EiB"
msgstr "EB"
#. l10n: Thousands separator
-#: libraries/common.lib.php:1417
+#: libraries/common.lib.php:1419
msgid ","
msgstr ","
#. l10n: Decimal separator
-#: libraries/common.lib.php:1419
+#: libraries/common.lib.php:1421
msgid "."
msgstr "."
#. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string
-#: libraries/common.lib.php:1596
+#: libraries/common.lib.php:1598
#: libraries/transformations/text_plain__dateformat.inc.php:34
msgid "%B %d, %Y at %I:%M %p"
msgstr "%d. %B %Y. u %H:%M"
-#: libraries/common.lib.php:1898
+#: libraries/common.lib.php:1907
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "%s dana, %s sati, %s minuta i %s sekundi"
-#: libraries/common.lib.php:2313 libraries/common.lib.php:2316
-#: libraries/display_tbl.lib.php:290 server_status.php:608
+#: libraries/common.lib.php:2322 libraries/common.lib.php:2325
+#: libraries/display_tbl.lib.php:290 server_status.php:719
msgid "Begin"
msgstr "Početak"
-#: libraries/common.lib.php:2314 libraries/common.lib.php:2317
+#: libraries/common.lib.php:2323 libraries/common.lib.php:2326
#: libraries/display_tbl.lib.php:291 server_binlog.php:168
#: server_binlog.php:170
msgid "Previous"
msgstr "Prethodna"
-#: libraries/common.lib.php:2345 libraries/common.lib.php:2348
+#: libraries/common.lib.php:2354 libraries/common.lib.php:2357
#: libraries/display_tbl.lib.php:353
msgid "End"
msgstr "Kraj"
-#: libraries/common.lib.php:2421
+#: libraries/common.lib.php:2430
#, php-format
msgid "Jump to database "%s"."
msgstr "Pređi na bazu "%s"."
-#: libraries/common.lib.php:2441
+#: libraries/common.lib.php:2450
#, 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/common.lib.php:2821 libraries/common.lib.php:2828
+#: libraries/common.lib.php:2830 libraries/common.lib.php:2837
#: libraries/db_links.inc.php:68 libraries/export/sql.php:25
#: libraries/import/sql.php:18 libraries/server_links.inc.php:45
#: libraries/tbl_links.inc.php:60 querywindow.php:99 test/theme.php:97
msgid "SQL"
msgstr "SQL"
-#: libraries/common.lib.php:2830 libraries/db_links.inc.php:104
+#: libraries/common.lib.php:2839 libraries/db_links.inc.php:104
#: libraries/tbl_links.inc.php:95 libraries/tbl_links.inc.php:117
#: view_operations.php:89
msgid "Operations"
@@ -1943,8 +1943,8 @@ msgid "Import"
msgstr "Uvoz"
#: libraries/db_links.inc.php:111 libraries/server_links.inc.php:66
-#: server_privileges.php:72 server_privileges.php:1683
-#: server_privileges.php:2032 test/theme.php:117
+#: server_privileges.php:111 server_privileges.php:1722
+#: server_privileges.php:2071 test/theme.php:117
msgid "Privileges"
msgstr "Privilegije"
@@ -1992,22 +1992,22 @@ msgid "Change password"
msgstr "Promeni lozinku"
#: libraries/display_change_password.lib.php:35
-#: libraries/replication_gui.lib.php:345 server_privileges.php:768
+#: libraries/replication_gui.lib.php:345 server_privileges.php:807
msgid "No Password"
msgstr "Nema lozinke"
#: libraries/display_change_password.lib.php:41
#: libraries/replication_gui.lib.php:59 libraries/replication_gui.lib.php:60
#: libraries/replication_gui.lib.php:335 libraries/replication_gui.lib.php:339
-#: libraries/replication_gui.lib.php:349 server_privileges.php:757
-#: server_privileges.php:761 server_privileges.php:772
-#: server_privileges.php:1499 server_synchronize.php:1175
+#: libraries/replication_gui.lib.php:349 server_privileges.php:796
+#: server_privileges.php:800 server_privileges.php:811
+#: server_privileges.php:1538 server_synchronize.php:1175
msgid "Password"
msgstr "Lozinka"
#: libraries/display_change_password.lib.php:46
#: libraries/replication_gui.lib.php:353 libraries/replication_gui.lib.php:356
-#: server_privileges.php:776 server_privileges.php:779
+#: server_privileges.php:815 server_privileges.php:818
msgid "Re-type"
msgstr "Ponovite unos"
@@ -2022,12 +2022,12 @@ msgid "MySQL 4.0 compatible"
msgstr "MySQL 4.0 kompatibilno"
#: libraries/display_change_password.lib.php:72
-#: libraries/replication_gui.lib.php:360 server_privileges.php:783
+#: libraries/replication_gui.lib.php:360 server_privileges.php:822
msgid "Generate Password"
msgstr "Napravi lozinku"
#: libraries/display_change_password.lib.php:75
-#: libraries/replication_gui.lib.php:363 server_privileges.php:786
+#: libraries/replication_gui.lib.php:363 server_privileges.php:825
msgid "Generate"
msgstr "Napravi"
@@ -2040,8 +2040,8 @@ msgstr "Napravi novu bazu podataka"
msgid "Create"
msgstr "Napravi"
-#: libraries/display_create_database.lib.php:40 server_privileges.php:74
-#: server_privileges.php:1388 server_replication.php:35
+#: libraries/display_create_database.lib.php:40 server_privileges.php:113
+#: server_privileges.php:1427 server_replication.php:35
msgid "No Privileges"
msgstr "Nema privilegija"
@@ -2133,7 +2133,7 @@ msgstr "Kompresija"
#: libraries/display_export.lib.php:240 libraries/display_import.lib.php:197
#: libraries/display_import.lib.php:210 libraries/display_tbl.lib.php:530
#: libraries/export/sql.php:868 libraries/tbl_properties.inc.php:575
-#: server_privileges.php:1836 server_processlist.php:75
+#: server_privileges.php:1875 server_processlist.php:75
msgid "None"
msgstr "nema"
@@ -2463,7 +2463,7 @@ msgstr ""
msgid "Buffer Pool"
msgstr "Skup prihvatnika"
-#: libraries/engines/innodb.lib.php:145 server_status.php:306
+#: libraries/engines/innodb.lib.php:145 server_status.php:417
msgid "InnoDB Status"
msgstr "InnoDB status"
@@ -2472,8 +2472,8 @@ msgid "Buffer Pool Usage"
msgstr "Korišćenje skupa prihvatnika"
#: libraries/engines/innodb.lib.php:194 server_databases.php:137
-#: server_databases.php:305 server_status.php:414 server_status.php:475
-#: server_status.php:496 tbl_printview.php:351 tbl_structure.php:696
+#: server_databases.php:305 server_status.php:525 server_status.php:586
+#: server_status.php:607 tbl_printview.php:351 tbl_structure.php:696
msgid "Total"
msgstr "Ukupno"
@@ -2806,7 +2806,7 @@ msgstr "Microsoft Word 2000"
#: libraries/export/latex.php:201 libraries/export/odt.php:48
#: libraries/export/sql.php:106 libraries/export/sql.php:868
#: libraries/export/texytext.php:27 server_databases.php:127
-#: server_privileges.php:537 server_replication.php:316 tbl_printview.php:317
+#: server_privileges.php:576 server_replication.php:316 tbl_printview.php:317
#: tbl_structure.php:665
msgid "Data"
msgstr "Podaci"
@@ -2856,9 +2856,9 @@ msgstr "MIME-tipovi"
#: libraries/export/xml.php:102 libraries/header_printview.inc.php:57
#: libraries/replication_gui.lib.php:63 libraries/replication_gui.lib.php:174
#: libraries/replication_gui.lib.php:269 libraries/replication_gui.lib.php:272
-#: libraries/replication_gui.lib.php:329 server_privileges.php:692
-#: server_privileges.php:695 server_privileges.php:751
-#: server_privileges.php:1498 server_privileges.php:2030
+#: libraries/replication_gui.lib.php:329 server_privileges.php:731
+#: server_privileges.php:734 server_privileges.php:790
+#: server_privileges.php:1537 server_privileges.php:2069
#: server_processlist.php:55 server_synchronize.php:1159
msgid "Host"
msgstr "Domaćin"
@@ -3218,854 +3218,6 @@ msgstr "nema"
msgid "Convert to Kana"
msgstr ""
-#. l10n: Text direction, use either ltr or rtl
-#: libraries/messages.inc.php:19
-msgid "ltr"
-msgstr "ltr"
-
-#: libraries/messages.inc.php:21
-msgid "Content of table __TABLE__"
-msgstr "Sadržaj tabele __TABLE__"
-
-#: libraries/messages.inc.php:22
-msgid "(continued)"
-msgstr "(nastavljeno)"
-
-#: libraries/messages.inc.php:23
-msgid "Structure of table __TABLE__"
-msgstr "Struktura tabele __TABLE__"
-
-#: libraries/messages.inc.php:25 server_privileges.php:227
-msgid "Includes all privileges except GRANT."
-msgstr "Uključuje sve privilegije osim GRANT."
-
-#: libraries/messages.inc.php:26 server_privileges.php:153
-#: server_privileges.php:476
-msgid "Allows altering the structure of existing tables."
-msgstr "Dozvoljava izmenu struktura postojećih tabela."
-
-#: libraries/messages.inc.php:27 server_privileges.php:169
-#: server_privileges.php:482
-msgid "Allows altering and dropping stored routines."
-msgstr "Dozvoljava izmenu i odbacivanje sačuvanih rutina."
-
-#: libraries/messages.inc.php:28 server_privileges.php:145
-#: server_privileges.php:475
-msgid "Allows creating new databases and tables."
-msgstr "Dozvoljava kreiranje novih baza i tabela."
-
-#: libraries/messages.inc.php:29 server_privileges.php:168
-#: server_privileges.php:481
-msgid "Allows creating stored routines."
-msgstr "Dozvoljava pravljenje sačuvanih rutina."
-
-#: libraries/messages.inc.php:30 server_privileges.php:475
-msgid "Allows creating new tables."
-msgstr "Dozvoljava kreiranje novih tabela."
-
-#: libraries/messages.inc.php:31 server_privileges.php:156
-#: server_privileges.php:479
-msgid "Allows creating temporary tables."
-msgstr "Dozvoljava kreiranje privremenih tabela.."
-
-#: libraries/messages.inc.php:32 server_privileges.php:170
-#: server_privileges.php:515
-msgid "Allows creating, dropping and renaming user accounts."
-msgstr "Dozvoljava pravljenje, odbacivanje i preimenovanje korisničkih naloga."
-
-#: libraries/messages.inc.php:33 server_privileges.php:160
-#: server_privileges.php:164 server_privileges.php:487
-#: server_privileges.php:491
-msgid "Allows creating new views."
-msgstr "Dozvoli kreiranje novih pogleda."
-
-#: libraries/messages.inc.php:34 server_privileges.php:144
-#: server_privileges.php:467
-msgid "Allows deleting data."
-msgstr "Dozvoljava brisanje podataka."
-
-#: libraries/messages.inc.php:35 server_privileges.php:146
-#: server_privileges.php:478
-msgid "Allows dropping databases and tables."
-msgstr "Dozvoljava odbacivanje baza i tabela."
-
-#: libraries/messages.inc.php:36 server_privileges.php:478
-msgid "Allows dropping tables."
-msgstr "Dozvoljava odbacivanje tabela."
-
-#: libraries/messages.inc.php:37 server_privileges.php:161
-#: server_privileges.php:495
-msgid "Allows to set up events for the event scheduler"
-msgstr ""
-
-#: libraries/messages.inc.php:38 server_privileges.php:171
-#: server_privileges.php:483
-msgid "Allows executing stored routines."
-msgstr "Dozvoljava izvršavanje sačuvanih rutina."
-
-#: libraries/messages.inc.php:39 server_privileges.php:150
-#: server_privileges.php:470
-msgid "Allows importing data from and exporting data into files."
-msgstr "Dozvoljava uvoz podataka i njihov izvoz u datoteke."
-
-#: libraries/messages.inc.php:40 server_privileges.php:501
-msgid ""
-"Allows adding users and privileges without reloading the privilege tables."
-msgstr ""
-"Dozvoljava dodavanje korisnika i privilegija bez ponovnog učitavanja tabela "
-"privilegija."
-
-#: libraries/messages.inc.php:41 server_privileges.php:152
-#: server_privileges.php:477
-msgid "Allows creating and dropping indexes."
-msgstr "Dozvoljava kreiranje i brisanje ključeva."
-
-#: libraries/messages.inc.php:42 server_privileges.php:142
-#: server_privileges.php:403 server_privileges.php:465
-msgid "Allows inserting and replacing data."
-msgstr "Dozvoljava umetanje i zamenu podataka."
-
-#: libraries/messages.inc.php:43 server_privileges.php:157
-#: server_privileges.php:510
-msgid "Allows locking tables for the current thread."
-msgstr "Dozvoljava zaključavanje tabela tekućim procesima."
-
-#: libraries/messages.inc.php:44 server_privileges.php:607
-#: server_privileges.php:609
-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/messages.inc.php:45 server_privileges.php:595
-#: server_privileges.php:597
-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/messages.inc.php:46 server_privileges.php:601
-#: server_privileges.php:603
-msgid ""
-"Limits the number of commands that change any table or database the user may "
-"execute per hour."
-msgstr ""
-"Ograničava broj komandi koje menjaju tabele ili baze koje korisnik može da "
-"izvrši na sat."
-
-#: libraries/messages.inc.php:47 server_privileges.php:613
-#: server_privileges.php:615
-msgid "Limits the number of simultaneous connections the user may have."
-msgstr "Ograničava broj istovremenih konekcija koje korisnik može da ima."
-
-#: libraries/messages.inc.php:48 server_privileges.php:149
-#: server_privileges.php:505
-msgid "Allows viewing processes of all users"
-msgstr ""
-
-#: libraries/messages.inc.php:49 server_privileges.php:151
-#: server_privileges.php:409 server_privileges.php:511
-msgid "Has no effect in this MySQL version."
-msgstr "Nema efekta u ovoj verziji MySQL-a."
-
-#: libraries/messages.inc.php:50 server_privileges.php:147
-#: server_privileges.php:506
-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/messages.inc.php:51 server_privileges.php:159
-#: server_privileges.php:513
-msgid "Allows the user to ask where the slaves / masters are."
-msgstr "Daje pravo korisniku da pita gde su glavni/pomoćni serveri."
-
-#: libraries/messages.inc.php:52 server_privileges.php:158
-#: server_privileges.php:514
-msgid "Needed for the replication slaves."
-msgstr "Potrebno zbog pomoćnih servera za replikaciju."
-
-#: libraries/messages.inc.php:53 server_privileges.php:141
-#: server_privileges.php:400 server_privileges.php:464
-msgid "Allows reading data."
-msgstr "Dozvoljava čitanje podataka."
-
-#: libraries/messages.inc.php:54 server_privileges.php:154
-#: server_privileges.php:508
-msgid "Gives access to the complete list of databases."
-msgstr "Daje pristup kompletnoj listi baza."
-
-#: libraries/messages.inc.php:55 server_privileges.php:165
-#: server_privileges.php:167 server_privileges.php:480
-msgid "Allows performing SHOW CREATE VIEW queries."
-msgstr "Dozvoljava izvršavanje SHOW CREATE VIEW upita."
-
-#: libraries/messages.inc.php:56 server_privileges.php:148
-#: server_privileges.php:507
-msgid "Allows shutting down the server."
-msgstr "Dozvoljava gašenje servera."
-
-#: libraries/messages.inc.php:57 server_privileges.php:155
-#: server_privileges.php:504
-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 ""
-" Dozvoljava povezivanje iako je dostignut maksimalan broj dozvoljenih veza; "
-"Neophodno za većinu administrativnih opcija kao što su podešavanje globalnih "
-"promenljivih ili prekidanje procesa ostalih korisnika."
-
-#: libraries/messages.inc.php:58 server_privileges.php:162
-#: server_privileges.php:496
-#, fuzzy
-msgid "Allows creating and dropping triggers"
-msgstr "Dozvoljava kreiranje i brisanje ključeva."
-
-#: libraries/messages.inc.php:59 server_privileges.php:143
-#: server_privileges.php:406 server_privileges.php:466
-msgid "Allows changing data."
-msgstr "Dozvoljava izmenu podataka."
-
-#: libraries/messages.inc.php:60 server_privileges.php:221
-msgid "No privileges."
-msgstr "Nema privilegija."
-
-#: libraries/messages.inc.php:62
-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 ""
-"Broj tranksakcija koje su koristile keš privremenog binarnog dnevnika ali su "
-"prevazišle vrednost u binlog_cache_size i koristile privremenu datoteku da "
-"smeste izraze iz transakcije."
-
-#: libraries/messages.inc.php:63
-msgid "The number of transactions that used the temporary binary log cache."
-msgstr "Broj transakcija koje su koristile keš privremenog binarnog dnevnika."
-
-#: libraries/messages.inc.php:64
-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 "
-"to increase the tmp_table_size value to cause temporary tables to be memory-"
-"based instead of disk-based."
-msgstr ""
-"Broj privremenih tabela koje je server automatski kreirao na disku dok je "
-"izvršavao izraze. Ako je Created_tmp_disk_tables veliko, možda treba da "
-"povećate vrednost tmp_table_size kako bi učinili da privremene tabele budu "
-"bazirane u memoriji umesto na disku."
-
-#: libraries/messages.inc.php:65
-msgid "How many temporary files mysqld has created."
-msgstr "Koliko privremenih datoteka je mysqld napravio."
-
-#: libraries/messages.inc.php:66
-msgid ""
-"The number of in-memory temporary tables created automatically by the server "
-"while executing statements."
-msgstr ""
-"Broj privremenih tabela koje je server automatski kreirao u memoriji dok je "
-"izvršavao izraze."
-
-#: libraries/messages.inc.php:67
-msgid ""
-"The number of rows written with INSERT DELAYED for which some error occurred "
-"(probably duplicate key)."
-msgstr ""
-"Broj redova upisanih sa INSERT DELAYED za koje je javljena neka greška "
-"(verovatno duplirani ključ)."
-
-#: libraries/messages.inc.php:68
-msgid ""
-"The number of INSERT DELAYED handler threads in use. Every different table "
-"on which one uses INSERT DELAYED gets its own thread."
-msgstr ""
-"Broj INSERT DELAYED rukovalačkih niti u upotrebi. Svaka posebna tabela nad "
-"kojom se koristi INSERT DELAYED dobija svoju nit."
-
-#: libraries/messages.inc.php:69
-msgid "The number of INSERT DELAYED rows written."
-msgstr "Broj upisanih INSERT DELAYED redova."
-
-#: libraries/messages.inc.php:70
-msgid "The number of executed FLUSH statements."
-msgstr "Broj izvršenih FLUSH izraza."
-
-#: libraries/messages.inc.php:71
-msgid "The number of internal COMMIT statements."
-msgstr "Broj internih COMMIT izraza."
-
-#: libraries/messages.inc.php:72
-msgid "The number of times a row was deleted from a table."
-msgstr "Broj brisanja nekog reda tabele."
-
-#: libraries/messages.inc.php:73
-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 ""
-"MySQL server može da upita pogon skladištenja NDB Cluster da li zna za "
-"tabelu određenog imena. To se naziva otkrivanjem (discovery). "
-"Handler_discover označava broj puta kada je otkrivena tabela."
-
-#: libraries/messages.inc.php:74
-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 ""
-"Broj puta kada je prva stavka pročitana iz indeksa. Ako je ovo visoko, to "
-"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/messages.inc.php:75
-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 ""
-"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/messages.inc.php:76
-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 ""
-"Broj zahteva za čitanjem sledećeg reda u poretku ključeva. Ovo se povećava "
-"kada radite upit po koloni indeksa sa ograničenjem opsega ili ako radite "
-"skeniranje indeksa."
-
-#: libraries/messages.inc.php:77
-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 ""
-"Broj zahteva za čitanjem prethodnog reda u poretku ključeva. Ova metoda "
-"čitanja se uglavnom koristi za optimizaciju ORDER BY ... DESC."
-
-#: libraries/messages.inc.php:78
-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 "
-"probably have a lot of queries that require MySQL to scan whole tables or "
-"you have joins that don't use keys properly."
-msgstr ""
-"Broj zahteva za čitanje reda zasnovanih na fiksnoj poziciji. Ovo je visoko "
-"ako radite mnogo upita koji zahtevaju sortiranje rezultata. Verovatno imate "
-"mnogo upita koji zahtevaju da MySQL skenira cele tabele ili imate spojeve "
-"koji ne koriste ključeve propisno."
-
-#: libraries/messages.inc.php:79
-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 "
-"tables are not properly indexed or that your queries are not written to take "
-"advantage of the indexes you have."
-msgstr ""
-"Broj zahteva za čitanjem sledećeg reda iz datoteke podataka. Ovo je visoko "
-"ako radite puno skeniranja tabela. Ovo obično nagoveštava da vaše tabele "
-"nisu propisno indeksirane ili da vaši upiti nisu napisani da iskoriste već "
-"postojeće indekse."
-
-#: libraries/messages.inc.php:80
-msgid "The number of internal ROLLBACK statements."
-msgstr "Broj internih ROLLBACK izraza."
-
-#: libraries/messages.inc.php:81
-msgid "The number of requests to update a row in a table."
-msgstr "Broj zahteva za ažuriranje reda u tabeli."
-
-#: libraries/messages.inc.php:82
-msgid "The number of requests to insert a row in a table."
-msgstr "Broj zahteva za upisivanje reda u tabelu."
-
-#: libraries/messages.inc.php:83
-msgid "The number of pages containing data (dirty or clean)."
-msgstr "Broj strana koje sadrže podatke (čistih ili prljavih)."
-
-#: libraries/messages.inc.php:84
-msgid "The number of pages currently dirty."
-msgstr "Broj strana koje su trenutno prljave."
-
-#: libraries/messages.inc.php:85
-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/messages.inc.php:86
-msgid "The number of free pages."
-msgstr "Broj slobodnih strana."
-
-#: libraries/messages.inc.php:87
-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 ""
-"Broj zabravljenih strana u InnoDB ostavi bafera. Sa ovih strana se trenutno "
-"čita ili se u njih upisuje ili iz nekog drugog razloga ne mogu biti očišćene "
-"niti uklonjene."
-
-#: libraries/messages.inc.php:88
-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 "
-"be calculated as Innodb_buffer_pool_pages_total - "
-"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data."
-msgstr ""
-"Broj strana koje su zauzete zato što su odvojene za administrativne potrebe, "
-"kao što su zaključavanje redova ili indeks prilagodljivog heša. Ova vrednost "
-"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/messages.inc.php:89
-msgid "Total size of buffer pool, in pages."
-msgstr "Puna veličina ostave bafera, u stranama."
-
-#: libraries/messages.inc.php:90
-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 ""
-"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/messages.inc.php:91
-msgid ""
-"The number of sequential read-aheads InnoDB initiated. This happens when "
-"InnoDB does a sequential full table scan."
-msgstr ""
-"Broj sekvencijalnih pred-čitanja koja je InnoDB pokrenuo. Ovo se dešava kada "
-"InnoDB radi sekvencijalno skeniranje cele tabele."
-
-#: libraries/messages.inc.php:92
-msgid "The number of logical read requests InnoDB has done."
-msgstr "Broj logičkih zahteva za čitanje koje je InnoDB uradio."
-
-#: libraries/messages.inc.php:93
-msgid ""
-"The number of logical reads that InnoDB could not satisfy from buffer pool "
-"and had to do a single-page read."
-msgstr ""
-"Broj logičkih čitanja koja InnoDB nije mogao da zadovolji iz ostave bafera "
-"te je morao da radi čitanje pojedinačne strane."
-
-#: libraries/messages.inc.php:94
-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 "
-"available, it's necessary to wait for pages to be flushed first. This "
-"counter counts instances of these waits. If the buffer pool size was set "
-"properly, this value should be small."
-msgstr ""
-"Normalno se upisi u InnoDB ostavu bafera dešavaju u pozadini. Međutim, ako "
-"je neophodno pročitati ili napraviti stranu a nema dostupnih čistih strana, "
-"neophodno je sačekati da se strane prethodno očiste. Ovaj brojač broji "
-"dešavanja ovih čekanja. Ako je veličina ostave bafera postavljena kako "
-"treba, ova vrednost vi trebalo da je niska."
-
-#: libraries/messages.inc.php:95
-msgid "The number writes done to the InnoDB buffer pool."
-msgstr "Broj upisa učinjenih u InnoDB ostavu bafera."
-
-#: libraries/messages.inc.php:96
-msgid "The number of fsync() operations so far."
-msgstr "Broj fsync() operacija do sada."
-
-#: libraries/messages.inc.php:97
-msgid "The current number of pending fsync() operations."
-msgstr "Trenutni broj fsync() operacija na čekanju."
-
-#: libraries/messages.inc.php:98
-msgid "The current number of pending reads."
-msgstr "Trenutni broj čitanja na čekanju."
-
-#: libraries/messages.inc.php:99
-msgid "The current number of pending writes."
-msgstr "Trenutni broj upisa na čekanju."
-
-#: libraries/messages.inc.php:100
-msgid "The amount of data read so far, in bytes."
-msgstr "Količina podataka pročitanih do sada, u bajtovima."
-
-#: libraries/messages.inc.php:101
-msgid "The total number of data reads."
-msgstr "Ukupan broj čitanja podataka."
-
-#: libraries/messages.inc.php:102
-msgid "The total number of data writes."
-msgstr "Ukupan broj upisa podataka."
-
-#: libraries/messages.inc.php:103
-msgid "The amount of data written so far, in bytes."
-msgstr "Količina podataka upisanih do sada, u bajtovima"
-
-#: libraries/messages.inc.php:104
-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/messages.inc.php:105
-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/messages.inc.php:106
-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 ""
-"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/messages.inc.php:107
-msgid "The number of log write requests."
-msgstr "Broj zahteva za upis u dnevnik."
-
-#: libraries/messages.inc.php:108
-msgid "The number of physical writes to the log file."
-msgstr "Broj fizičkih upisa u datoteku dnevnika."
-
-#: libraries/messages.inc.php:109
-msgid "The number of fsync() writes done to the log file."
-msgstr "Broj fsyncs upisa načinjenih u datoteku dnevnika."
-
-#: libraries/messages.inc.php:110
-msgid "The number of pending log file fsyncs."
-msgstr "Broj fsync-ova za datoteku dnevnika na čekanju."
-
-#: libraries/messages.inc.php:111
-msgid "Pending log file writes."
-msgstr "Broj upisa u datoteku dnevnika na čekanju."
-
-#: libraries/messages.inc.php:112
-msgid "The number of bytes written to the log file."
-msgstr "Broj bajtova upisanih u datoteku dnevnika."
-
-#: libraries/messages.inc.php:113
-msgid "The number of pages created."
-msgstr "Broj napravljenih strana."
-
-#: libraries/messages.inc.php:114
-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 ""
-"Ukompajlirana veličina strane za InnoDB (podrazumevano 16KB). Mnoge "
-"vrednosti se računaju u stranama; veličina strane omogućava da se one lako "
-"konvertuju u bajtove."
-
-#: libraries/messages.inc.php:115
-msgid "The number of pages read."
-msgstr "Broj pročitanih strana."
-
-#: libraries/messages.inc.php:116
-msgid "The number of pages written."
-msgstr "Broj zapisanih strana."
-
-#: libraries/messages.inc.php:117
-msgid "The number of row locks currently being waited for."
-msgstr "Broj brava za redove koje se trenutno čekaju."
-
-#: libraries/messages.inc.php:118
-msgid "The average time to acquire a row lock, in milliseconds."
-msgstr "Prosečno vreme za dobavljanje brave za red, u milisekundama."
-
-#: libraries/messages.inc.php:119
-msgid "The total time spent in acquiring row locks, in milliseconds."
-msgstr ""
-"Ukupno vremena provedeno u dobavljanju brava za redove, u milisekundama."
-
-#: libraries/messages.inc.php:120
-msgid "The maximum time to acquire a row lock, in milliseconds."
-msgstr "Najduže vreme za dobavljanje brave za red, u milisekundama."
-
-#: libraries/messages.inc.php:121
-msgid "The number of times a row lock had to be waited for."
-msgstr "Broj puta kada se morala čekati brava za red."
-
-#: libraries/messages.inc.php:122
-msgid "The number of rows deleted from InnoDB tables."
-msgstr "Broj redova obrisanih iz InnoDB tabela."
-
-#: libraries/messages.inc.php:123
-msgid "The number of rows inserted in InnoDB tables."
-msgstr "Broj redova umetnutih u InnoDB tabele."
-
-#: libraries/messages.inc.php:124
-msgid "The number of rows read from InnoDB tables."
-msgstr "Broj redova pročitanih iz InnoDB tabela."
-
-#: libraries/messages.inc.php:125
-msgid "The number of rows updated in InnoDB tables."
-msgstr "Broj redova ažuriranih u InnoDB tabelama."
-
-#: libraries/messages.inc.php:126
-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 ""
-"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/messages.inc.php:127
-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 ""
-"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/messages.inc.php:128
-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 ""
-"Broj iskorišćenih blokova u kešu ključeva. Ova vrednost je oznaka „visokog "
-"vodostaja“ koja pokazuje najveći ikada broj blokova koji je bio u upotrebi u "
-"isto vreme."
-
-#: libraries/messages.inc.php:129
-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/messages.inc.php:130
-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 ""
-"Broj fizičkih čitanja bloka ključeva sa diska. Ako je Key_reads veliko, onda "
-"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/messages.inc.php:131
-msgid "The number of requests to write a key block to the cache."
-msgstr "Broj zahteva za upisivanje bloka ključeva u keš."
-
-#: libraries/messages.inc.php:132
-msgid "The number of physical writes of a key block to disk."
-msgstr "Broj fizičkih upisa bloka ključeva na disk."
-
-#: libraries/messages.inc.php:133
-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 ""
-"Ukupna cena poslednjeg kompajliranog upita kako ju je izračunao optimizator "
-"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/messages.inc.php:134
-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/messages.inc.php:135
-msgid ""
-"The number of tables that have been opened. If opened tables is big, your "
-"table cache value is probably too small."
-msgstr ""
-"Broj tabela koje su bile otvarane. Ako je broj veliki, vaš keš tabela je "
-"verovatno premali."
-
-#: libraries/messages.inc.php:136
-msgid "The number of files that are open."
-msgstr "Broj otvorenih datoteka."
-
-#: libraries/messages.inc.php:137
-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/messages.inc.php:138
-msgid "The number of tables that are open."
-msgstr "Broj otvorenih tabela."
-
-#: libraries/messages.inc.php:139
-msgid "The number of free memory blocks in query cache."
-msgstr "Broj slobodnih memorijskih blokova u u kešu upita."
-
-#: libraries/messages.inc.php:140
-msgid "The amount of free memory for query cache."
-msgstr "Količina slobodne memorije za keš upita."
-
-#: libraries/messages.inc.php:141
-msgid "The number of cache hits."
-msgstr "Broj pogodaka iz keša."
-
-#: libraries/messages.inc.php:142
-msgid "The number of queries added to the cache."
-msgstr "Broj upita dodatih u keš."
-
-#: libraries/messages.inc.php:143
-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 "
-"cache size. The query cache uses a least recently used (LRU) strategy to "
-"decide which queries to remove from the cache."
-msgstr ""
-"Broj upita koji su uklonjeni iz keša da bi se oslobodila memorija za "
-"keširanje novih upita. Ovaj podatak vam može pomoći da podesite veličinu "
-"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/messages.inc.php:144
-msgid ""
-"The number of non-cached queries (not cachable, or not cached due to the "
-"query_cache_type setting)."
-msgstr ""
-"Broj nekeširanih upita (koji se ne mogu keširati ili nisu keširani zbog "
-"podešavanja query_cache_type)."
-
-#: libraries/messages.inc.php:145
-msgid "The number of queries registered in the cache."
-msgstr "Broj upita registrovanih u kešu."
-
-#: libraries/messages.inc.php:146
-msgid "The total number of blocks in the query cache."
-msgstr "Ukupan broj blokova u kešu za upite."
-
-#: libraries/messages.inc.php:147
-msgctxt "$strShowStatusReset"
-msgid "Reset"
-msgstr "Reset"
-
-#: libraries/messages.inc.php:148
-msgid "The status of failsafe replication (not yet implemented)."
-msgstr "Status replikacije otporne na greške (nije još implementirano)."
-
-#: libraries/messages.inc.php:149
-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 ""
-"Broj spojeva koji ne koriste indekste. Ako ova vrednost nije 0, trebalo bi "
-"pažljivo da proverite indekse vaših tabela."
-
-#: libraries/messages.inc.php:150
-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/messages.inc.php:151
-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 ""
-"Broj spojeva bez ključeva koji proveravaju upotrebu ključa posle svakog "
-"reda. (Ako ovo nije 0, trebalo bi pažljivo da proverite indekse vaših "
-"tabela.)"
-
-#: libraries/messages.inc.php:152
-msgid ""
-"The number of joins that used ranges on the first table. (It's normally not "
-"critical even if this is big.)"
-msgstr ""
-"Broj spojeva koji su koristili opsege na prvoj tabeli. (Obično nije kritično "
-"čak ni kada je ovo veliko)"
-
-#: libraries/messages.inc.php:153
-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/messages.inc.php:154
-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/messages.inc.php:155
-msgid ""
-"Total (since startup) number of times the replication slave SQL thread has "
-"retried transactions."
-msgstr ""
-"Ukupan broj puta (od pokretanja) kada je pomoćna SQL nit za replikaciju "
-"pokušala transakcije."
-
-#: libraries/messages.inc.php:156
-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/messages.inc.php:157
-msgid ""
-"The number of threads that have taken more than slow_launch_time seconds to "
-"create."
-msgstr ""
-"Broj niti za koje je trebalo više od slow_launch_time sekudni da bi bile "
-"pokrenute."
-
-#: libraries/messages.inc.php:158
-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/messages.inc.php:159
-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 ""
-"Broj prolaza za spajanje koje je algoritam za sortiranje morao da odradi. "
-"Ako je ova vrednost velika, trebalo bi da razmislite o povećanju vrednosti "
-"sistemske promenljive sort_buffer_size."
-
-#: libraries/messages.inc.php:160
-msgid "The number of sorts that were done with ranges."
-msgstr "Broj sortiranja koja su urađena sa opsegom."
-
-#: libraries/messages.inc.php:161
-msgid "The number of sorted rows."
-msgstr "Broj sortiranih redova."
-
-#: libraries/messages.inc.php:162
-msgid "The number of sorts that were done by scanning the table."
-msgstr "Broj sortiranja do kojih je došlo skeniranjem tabele."
-
-#: libraries/messages.inc.php:163
-msgid "The number of times that a table lock was acquired immediately."
-msgstr "Broj puta kada je brava za tabelu odmah dobavljena."
-
-#: libraries/messages.inc.php:164
-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 "
-"should first optimize your queries, and then either split your table or "
-"tables or use replication."
-msgstr ""
-"Broj puta kada brava za tabelu nije mogla biti odmah dobavljena i bilo je "
-"potrebno čekanje. Ako je ovo visoko i imate problema sa performansama, prvo "
-"bi trebalo da optimizujete svoje upite a potom da ili podelite tabelu ili "
-"tabele ili da koristite replikaciju."
-
-#: libraries/messages.inc.php:165
-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 ""
-"Broj niti u kešu za niti. Stepen pogodaka keša se može izračunati kao "
-"Threads_created/Konekcije. Ako je ova vrednost crvena trebalo bi da povećate "
-"vaš thread_cache_size."
-
-#: libraries/messages.inc.php:166
-msgid "The number of currently open connections."
-msgstr "Broj trenutno otvorenih veza."
-
-#: libraries/messages.inc.php:167
-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 "
-"doesn't give a notable performance improvement if you have a good thread "
-"implementation.)"
-msgstr ""
-"Broj niti kreiranih za rukovanje konekcijama. Ako je Threads_created veliko, "
-"možda bi trebalo da povećate vrednost thread_cache_size. (Ako imate dobru "
-"implementaciju niti, ovo obično ne donosi primetna poboljšanja u "
-"performansama.)"
-
-#: libraries/messages.inc.php:168
-msgid "The number of threads that are not sleeping."
-msgstr "Broj niti koje nisu uspavane."
-
#: libraries/mult_submits.inc.php:76 libraries/tbl_properties.inc.php:513
#: tbl_structure.php:29 tbl_structure.php:153 tbl_structure.php:157
#: tbl_structure.php:473
@@ -4383,8 +3535,8 @@ msgstr ""
#: libraries/replication_gui.lib.php:55 libraries/replication_gui.lib.php:56
#: libraries/replication_gui.lib.php:249 libraries/replication_gui.lib.php:252
-#: libraries/replication_gui.lib.php:259 server_privileges.php:672
-#: server_privileges.php:675 server_privileges.php:682
+#: libraries/replication_gui.lib.php:259 server_privileges.php:711
+#: server_privileges.php:714 server_privileges.php:721
#: server_synchronize.php:1171
msgid "User name"
msgstr "Ime korisnika"
@@ -4405,11 +3557,11 @@ msgid "Slave status"
msgstr "Prikaži status podređenih servera"
#: libraries/replication_gui.lib.php:114 libraries/sql_query_form.lib.php:445
-#: server_status.php:626 server_variables.php:52
+#: server_status.php:737 server_variables.php:52
msgid "Variable"
msgstr "Promenljiva"
-#: libraries/replication_gui.lib.php:115 server_status.php:627
+#: libraries/replication_gui.lib.php:115 server_status.php:738
#: tbl_change.php:324 tbl_printview.php:370 tbl_select.php:139
#: tbl_structure.php:729
msgid "Value"
@@ -4429,41 +3581,58 @@ msgstr ""
msgid "Add slave replication user"
msgstr ""
-#: libraries/replication_gui.lib.php:254 server_privileges.php:677
+#: libraries/replication_gui.lib.php:254 server_privileges.php:716
msgid "Any user"
msgstr "Bilo koji korisnik"
#: libraries/replication_gui.lib.php:255 libraries/replication_gui.lib.php:323
-#: libraries/replication_gui.lib.php:346 server_privileges.php:678
-#: server_privileges.php:745 server_privileges.php:769
-#: server_privileges.php:1889 server_privileges.php:1919
+#: libraries/replication_gui.lib.php:346 server_privileges.php:717
+#: server_privileges.php:784 server_privileges.php:808
+#: server_privileges.php:1928 server_privileges.php:1958
msgid "Use text field"
msgstr "Koristi tekst polje"
-#: libraries/replication_gui.lib.php:302 server_privileges.php:725
+#: libraries/replication_gui.lib.php:302 server_privileges.php:764
msgid "Any host"
msgstr "Bilo koji domaćin"
-#: libraries/replication_gui.lib.php:306 server_privileges.php:729
+#: libraries/replication_gui.lib.php:306 server_privileges.php:768
msgid "Local"
msgstr "Lokalni"
-#: libraries/replication_gui.lib.php:312 server_privileges.php:734
+#: libraries/replication_gui.lib.php:312 server_privileges.php:773
msgid "This Host"
msgstr "Ovaj server"
-#: libraries/replication_gui.lib.php:318 server_privileges.php:740
+#: libraries/replication_gui.lib.php:318 server_privileges.php:779
msgid "Use Host Table"
msgstr "Koristi tabelu domaćina"
-#: libraries/replication_gui.lib.php:331 server_privileges.php:753
+#: libraries/replication_gui.lib.php:331 server_privileges.php:792
msgid ""
"When Host table is used, this field is ignored and values stored in Host "
"table are used instead."
msgstr ""
-#: libraries/select_lang.lib.php:480 libraries/select_lang.lib.php:486
-#: libraries/select_lang.lib.php:492
+#. l10n: Text direction, use either ltr or rtl
+#: libraries/select_lang.lib.php:491
+msgid "ltr"
+msgstr "ltr"
+
+#: libraries/select_lang.lib.php:493
+msgid "Content of table __TABLE__"
+msgstr "Sadržaj tabele __TABLE__"
+
+#: libraries/select_lang.lib.php:494
+msgid "(continued)"
+msgstr "(nastavljeno)"
+
+#: libraries/select_lang.lib.php:495
+msgid "Structure of table __TABLE__"
+msgstr "Struktura tabele __TABLE__"
+
+#: libraries/select_lang.lib.php:500 libraries/select_lang.lib.php:506
+#: libraries/select_lang.lib.php:512
#, php-format
msgid "Unknown language: %1$s."
msgstr "Nepoznat jezik: %1$s."
@@ -4474,7 +3643,7 @@ msgid "Servers"
msgstr "Serveri"
#: libraries/server_links.inc.php:53 server_engines.php:112
-#: server_engines.php:116 server_status.php:304 test/theme.php:105
+#: server_engines.php:116 server_status.php:415 test/theme.php:105
msgid "Variables"
msgstr "Promenljive"
@@ -4487,7 +3656,7 @@ msgid "Engines"
msgstr "Skladištenja"
#: libraries/server_links.inc.php:76 server_binlog.php:110
-#: server_status.php:253 test/theme.php:121
+#: server_status.php:364 test/theme.php:121
msgid "Binary log"
msgstr "Binarni dnevnik"
@@ -4962,8 +4131,8 @@ msgstr "Poništi"
msgid "Protocol version"
msgstr "Verzija protokola"
-#: main.php:189 server_privileges.php:1350 server_privileges.php:1497
-#: server_privileges.php:1611 server_privileges.php:2029
+#: main.php:189 server_privileges.php:1389 server_privileges.php:1536
+#: server_privileges.php:1650 server_privileges.php:2068
#: server_processlist.php:54
msgid "User"
msgstr "Korisnik"
@@ -5351,7 +4520,7 @@ msgstr "%s baza je uspešno odbačeno."
msgid "Databases statistics"
msgstr "Statistika baze"
-#: server_databases.php:117 server_status.php:260
+#: server_databases.php:117 server_status.php:371
#: setup/lib/messages.inc.php:117
msgid "Tables"
msgstr "Tabele"
@@ -5370,6 +4539,16 @@ msgstr ""
msgid "Jump to database"
msgstr "Baza ne postoji"
+#: server_databases.php:267
+msgid "Not replicated"
+msgstr ""
+
+#: server_databases.php:273
+#, fuzzy
+#| msgid "Replication"
+msgid "Replicated"
+msgstr "Replikacija"
+
#: server_databases.php:289
#, php-format
msgid "Check privileges for database "%s"."
@@ -5403,142 +4582,333 @@ msgstr "Pogoni skladištenja"
msgid "View dump (schema) of databases"
msgstr "Prikaži sadržaj (shemu) baze"
-#: server_privileges.php:263 server_privileges.php:264
+#: server_privileges.php:24 server_privileges.php:266
+msgid "Includes all privileges except GRANT."
+msgstr "Uključuje sve privilegije osim GRANT."
+
+#: server_privileges.php:25 server_privileges.php:192
+#: server_privileges.php:515
+msgid "Allows altering the structure of existing tables."
+msgstr "Dozvoljava izmenu struktura postojećih tabela."
+
+#: server_privileges.php:26 server_privileges.php:208
+#: server_privileges.php:521
+msgid "Allows altering and dropping stored routines."
+msgstr "Dozvoljava izmenu i odbacivanje sačuvanih rutina."
+
+#: server_privileges.php:27 server_privileges.php:184
+#: server_privileges.php:514
+msgid "Allows creating new databases and tables."
+msgstr "Dozvoljava kreiranje novih baza i tabela."
+
+#: server_privileges.php:28 server_privileges.php:207
+#: server_privileges.php:520
+msgid "Allows creating stored routines."
+msgstr "Dozvoljava pravljenje sačuvanih rutina."
+
+#: server_privileges.php:29 server_privileges.php:514
+msgid "Allows creating new tables."
+msgstr "Dozvoljava kreiranje novih tabela."
+
+#: server_privileges.php:30 server_privileges.php:195
+#: server_privileges.php:518
+msgid "Allows creating temporary tables."
+msgstr "Dozvoljava kreiranje privremenih tabela.."
+
+#: server_privileges.php:31 server_privileges.php:209
+#: server_privileges.php:554
+msgid "Allows creating, dropping and renaming user accounts."
+msgstr "Dozvoljava pravljenje, odbacivanje i preimenovanje korisničkih naloga."
+
+#: server_privileges.php:32 server_privileges.php:199
+#: server_privileges.php:203 server_privileges.php:526
+#: server_privileges.php:530
+msgid "Allows creating new views."
+msgstr "Dozvoli kreiranje novih pogleda."
+
+#: server_privileges.php:33 server_privileges.php:183
+#: server_privileges.php:506
+msgid "Allows deleting data."
+msgstr "Dozvoljava brisanje podataka."
+
+#: server_privileges.php:34 server_privileges.php:185
+#: server_privileges.php:517
+msgid "Allows dropping databases and tables."
+msgstr "Dozvoljava odbacivanje baza i tabela."
+
+#: server_privileges.php:35 server_privileges.php:517
+msgid "Allows dropping tables."
+msgstr "Dozvoljava odbacivanje tabela."
+
+#: server_privileges.php:36 server_privileges.php:200
+#: server_privileges.php:534
+msgid "Allows to set up events for the event scheduler"
+msgstr ""
+
+#: server_privileges.php:37 server_privileges.php:210
+#: server_privileges.php:522
+msgid "Allows executing stored routines."
+msgstr "Dozvoljava izvršavanje sačuvanih rutina."
+
+#: server_privileges.php:38 server_privileges.php:189
+#: server_privileges.php:509
+msgid "Allows importing data from and exporting data into files."
+msgstr "Dozvoljava uvoz podataka i njihov izvoz u datoteke."
+
+#: server_privileges.php:39 server_privileges.php:540
+msgid ""
+"Allows adding users and privileges without reloading the privilege tables."
+msgstr ""
+"Dozvoljava dodavanje korisnika i privilegija bez ponovnog učitavanja tabela "
+"privilegija."
+
+#: server_privileges.php:40 server_privileges.php:191
+#: server_privileges.php:516
+msgid "Allows creating and dropping indexes."
+msgstr "Dozvoljava kreiranje i brisanje ključeva."
+
+#: server_privileges.php:41 server_privileges.php:181
+#: server_privileges.php:442 server_privileges.php:504
+msgid "Allows inserting and replacing data."
+msgstr "Dozvoljava umetanje i zamenu podataka."
+
+#: server_privileges.php:42 server_privileges.php:196
+#: server_privileges.php:549
+msgid "Allows locking tables for the current thread."
+msgstr "Dozvoljava zaključavanje tabela tekućim procesima."
+
+#: server_privileges.php:43 server_privileges.php:646
+#: server_privileges.php:648
+msgid "Limits the number of new connections the user may open per hour."
+msgstr "Ograničava broj novih konekcija koje korisnik može ta otvori na sat."
+
+#: server_privileges.php:44 server_privileges.php:634
+#: server_privileges.php:636
+msgid "Limits the number of queries the user may send to the server per hour."
+msgstr "Ograničava broj upita koje korisnik može da uputi serveru za sat."
+
+#: server_privileges.php:45 server_privileges.php:640
+#: server_privileges.php:642
+msgid ""
+"Limits the number of commands that change any table or database the user may "
+"execute per hour."
+msgstr ""
+"Ograničava broj komandi koje menjaju tabele ili baze koje korisnik može da "
+"izvrši na sat."
+
+#: server_privileges.php:46 server_privileges.php:652
+#: server_privileges.php:654
+msgid "Limits the number of simultaneous connections the user may have."
+msgstr "Ograničava broj istovremenih konekcija koje korisnik može da ima."
+
+#: server_privileges.php:47 server_privileges.php:188
+#: server_privileges.php:544
+msgid "Allows viewing processes of all users"
+msgstr ""
+
+#: server_privileges.php:48 server_privileges.php:190
+#: server_privileges.php:448 server_privileges.php:550
+msgid "Has no effect in this MySQL version."
+msgstr "Nema efekta u ovoj verziji MySQL-a."
+
+#: server_privileges.php:49 server_privileges.php:186
+#: server_privileges.php:545
+msgid "Allows reloading server settings and flushing the server's caches."
+msgstr ""
+"Dozvoljava ponovno učitavanje podešavanja servera i pražnjenje keša servera."
+
+#: server_privileges.php:50 server_privileges.php:198
+#: server_privileges.php:552
+msgid "Allows the user to ask where the slaves / masters are."
+msgstr "Daje pravo korisniku da pita gde su glavni/pomoćni serveri."
+
+#: server_privileges.php:51 server_privileges.php:197
+#: server_privileges.php:553
+msgid "Needed for the replication slaves."
+msgstr "Potrebno zbog pomoćnih servera za replikaciju."
+
+#: server_privileges.php:52 server_privileges.php:180
+#: server_privileges.php:439 server_privileges.php:503
+msgid "Allows reading data."
+msgstr "Dozvoljava čitanje podataka."
+
+#: server_privileges.php:53 server_privileges.php:193
+#: server_privileges.php:547
+msgid "Gives access to the complete list of databases."
+msgstr "Daje pristup kompletnoj listi baza."
+
+#: server_privileges.php:54 server_privileges.php:204
+#: server_privileges.php:206 server_privileges.php:519
+msgid "Allows performing SHOW CREATE VIEW queries."
+msgstr "Dozvoljava izvršavanje SHOW CREATE VIEW upita."
+
+#: server_privileges.php:55 server_privileges.php:187
+#: server_privileges.php:546
+msgid "Allows shutting down the server."
+msgstr "Dozvoljava gašenje servera."
+
+#: server_privileges.php:56 server_privileges.php:194
+#: server_privileges.php:543
+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 ""
+" Dozvoljava povezivanje iako je dostignut maksimalan broj dozvoljenih veza; "
+"Neophodno za većinu administrativnih opcija kao što su podešavanje globalnih "
+"promenljivih ili prekidanje procesa ostalih korisnika."
+
+#: server_privileges.php:57 server_privileges.php:201
+#: server_privileges.php:535
+#, fuzzy
+msgid "Allows creating and dropping triggers"
+msgstr "Dozvoljava kreiranje i brisanje ključeva."
+
+#: server_privileges.php:58 server_privileges.php:182
+#: server_privileges.php:445 server_privileges.php:505
+msgid "Allows changing data."
+msgstr "Dozvoljava izmenu podataka."
+
+#: server_privileges.php:59 server_privileges.php:260
+msgid "No privileges."
+msgstr "Nema privilegija."
+
+#: server_privileges.php:302 server_privileges.php:303
#, fuzzy
#| msgid "None"
msgctxt "None privileges"
msgid "None"
msgstr "nema"
-#: server_privileges.php:392 server_privileges.php:527
-#: server_privileges.php:1679 server_privileges.php:1685
+#: server_privileges.php:431 server_privileges.php:566
+#: server_privileges.php:1718 server_privileges.php:1724
msgid "Table-specific privileges"
msgstr "Privilegije vezane za tabele"
-#: server_privileges.php:393 server_privileges.php:535
-#: server_privileges.php:1501
+#: server_privileges.php:432 server_privileges.php:574
+#: server_privileges.php:1540
msgid " Note: MySQL privilege names are expressed in English "
msgstr " Napomena: MySQL imena privilegija moraju da budu na engleskom "
-#: server_privileges.php:524 server_privileges.php:1500
+#: server_privileges.php:563 server_privileges.php:1539
msgid "Global privileges"
msgstr "Globalne privilegije"
-#: server_privileges.php:526 server_privileges.php:1679
+#: server_privileges.php:565 server_privileges.php:1718
msgid "Database-specific privileges"
msgstr "Privilegije vezane za bazu"
-#: server_privileges.php:571
+#: server_privileges.php:610
msgid "Administration"
msgstr "Administracija"
-#: server_privileges.php:591
+#: server_privileges.php:630
msgid "Resource limits"
msgstr "Ograničenja resursa"
-#: server_privileges.php:592
+#: server_privileges.php:631
msgid "Note: Setting these options to 0 (zero) removes the limit."
msgstr "Napomena: Postavljanje ovih opcija na 0 (nulu) uklanja ograničenja."
-#: server_privileges.php:669
+#: server_privileges.php:708
msgid "Login Information"
msgstr "Podaci o prijavi"
-#: server_privileges.php:763
+#: server_privileges.php:802
msgid "Do not change the password"
msgstr "Nemoj da menjaš lozinku"
-#: server_privileges.php:804 server_privileges.php:2166
+#: server_privileges.php:843 server_privileges.php:2205
#, fuzzy
#| msgid "No user(s) found."
msgid "No user found."
msgstr "Korisnik nije nađen."
-#: server_privileges.php:848
+#: server_privileges.php:887
#, php-format
msgid "The user %s already exists!"
msgstr "Korisnik %s već postoji!"
-#: server_privileges.php:931
+#: server_privileges.php:970
msgid "You have added a new user."
msgstr "Dodali ste novog korisnika."
-#: server_privileges.php:1152
+#: server_privileges.php:1191
#, php-format
msgid "You have updated the privileges for %s."
msgstr "Ažurirali ste privilegije za %s."
-#: server_privileges.php:1176
+#: server_privileges.php:1215
#, php-format
msgid "You have revoked the privileges for %s"
msgstr "Zabranili ste privilegije za %s"
-#: server_privileges.php:1212
+#: server_privileges.php:1251
#, php-format
msgid "The password for %s was changed successfully."
msgstr "Lozinka za %s je uspešno promenjena."
-#: server_privileges.php:1232
+#: server_privileges.php:1271
#, php-format
msgid "Deleting %s"
msgstr "Brišem %s"
-#: server_privileges.php:1243
+#: server_privileges.php:1282
msgid "No users selected for deleting!"
msgstr "Nijedan korisnik nije odabran za brisanje!"
-#: server_privileges.php:1246
+#: server_privileges.php:1285
msgid "Reloading the privileges"
msgstr "Ponovo učitavam privilegije"
-#: server_privileges.php:1261
+#: server_privileges.php:1300
msgid "The selected users have been deleted successfully."
msgstr "Izabrani korisnici su uspešno obrisani."
-#: server_privileges.php:1296
+#: server_privileges.php:1335
msgid "The privileges were reloaded successfully."
msgstr "Privilegije su uspešno ponovo učitane."
-#: server_privileges.php:1324 server_privileges.php:1610
+#: server_privileges.php:1363 server_privileges.php:1649
msgid "Edit Privileges"
msgstr "Promeni privilegije"
-#: server_privileges.php:1333
+#: server_privileges.php:1372
msgid "Revoke"
msgstr "Zabrani"
-#: server_privileges.php:1365
+#: server_privileges.php:1404
msgid "User overview"
msgstr "Pregled korisnika"
-#: server_privileges.php:1502 server_privileges.php:1684
-#: server_privileges.php:2033
+#: server_privileges.php:1541 server_privileges.php:1723
+#: server_privileges.php:2072
msgid "Grant"
msgstr "Omogući"
-#: server_privileges.php:1521 server_privileges.php:2123
+#: server_privileges.php:1560 server_privileges.php:2162
msgid "Any"
msgstr "Bilo koji"
-#: server_privileges.php:1570 server_privileges.php:1594
-#: server_privileges.php:1988 server_privileges.php:2177
+#: server_privileges.php:1609 server_privileges.php:1633
+#: server_privileges.php:2027 server_privileges.php:2216
msgid "Add a new User"
msgstr "Dodaj novog korisnika"
-#: server_privileges.php:1575
+#: server_privileges.php:1614
msgid "Remove selected users"
msgstr "Ukloni izabrane korisnike"
-#: server_privileges.php:1578
+#: server_privileges.php:1617
msgid "Revoke all active privileges from the users and delete them afterwards."
msgstr "Obustavi sve aktivne privilegije korisnika i zatim ih obriši."
-#: server_privileges.php:1579 server_privileges.php:1580
-#: server_privileges.php:1581
+#: server_privileges.php:1618 server_privileges.php:1619
+#: server_privileges.php:1620
msgid "Drop the databases that have the same names as the users."
msgstr "Odbaci baze koje se zovu isto kao korisnici."
-#: server_privileges.php:1597
+#: server_privileges.php:1636
#, php-format
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
@@ -5551,92 +4921,92 @@ msgstr ""
"server koristi ako su vršene ručne izmene. U tom slučaju %sponovo učitajte "
"privilegije%s pre nego što nastavite."
-#: server_privileges.php:1645
+#: server_privileges.php:1684
msgid "The selected user was not found in the privilege table."
msgstr "Izabrani korisnik nije pronađen u tabeli privilegija."
-#: server_privileges.php:1685
+#: server_privileges.php:1724
msgid "Column-specific privileges"
msgstr "Privilegije vezane za kolone"
-#: server_privileges.php:1886
+#: server_privileges.php:1925
msgid "Add privileges on the following database"
msgstr "Dodaj privilegije na sledećoj bazi"
-#: server_privileges.php:1904
+#: server_privileges.php:1943
msgid "Wildcards % and _ should be escaped with a \\ to use them literally"
msgstr "Pre džokera _ i % treba staviti znak \\ ako ih koristite samostalno"
-#: server_privileges.php:1907
+#: server_privileges.php:1946
msgid "Add privileges on the following table"
msgstr "Dodaj privilegije na sledećoj tabeli"
-#: server_privileges.php:1964
+#: server_privileges.php:2003
msgid "Change Login Information / Copy User"
msgstr "Promeni informacije o prijavi / Kopiraj korisnika"
-#: server_privileges.php:1967
+#: server_privileges.php:2006
msgid "Create a new user with the same privileges and ..."
msgstr "Napravi novog korisnika sa istim privilegijama i ..."
-#: server_privileges.php:1969
+#: server_privileges.php:2008
msgid "... keep the old one."
msgstr "... sačuvaj stare."
-#: server_privileges.php:1970
+#: server_privileges.php:2009
msgid " ... delete the old one from the user tables."
msgstr " ... obriši stare iz tabela korisnika."
-#: server_privileges.php:1971
+#: server_privileges.php:2010
msgid ""
" ... revoke all active privileges from the old one and delete it afterwards."
msgstr " ... obustavi sve privilegije starog korisnika i zatim ga obriši."
-#: server_privileges.php:1972
+#: server_privileges.php:2011
msgid ""
" ... delete the old one from the user tables and reload the privileges "
"afterwards."
msgstr ""
" ... obriši starog iz tabele korisnika i zatim ponovo učitaj privilegije."
-#: server_privileges.php:1994
+#: server_privileges.php:2033
msgid "Database for user"
msgstr "Baza za korisnika"
-#: server_privileges.php:1998
+#: server_privileges.php:2037
#, fuzzy
#| msgid "None"
msgctxt "Create none database for user"
msgid "None"
msgstr "nema"
-#: server_privileges.php:1999
+#: server_privileges.php:2038
msgid "Create database with same name and grant all privileges"
msgstr "Napravi bazu sa istim imenom i dodaj sve privilegije"
-#: server_privileges.php:2000
+#: server_privileges.php:2039
msgid "Grant all privileges on wildcard name (username\\_%)"
msgstr "Daj sve privilegije na imenu sa džokerima (korisničko_ime\\_%)"
-#: server_privileges.php:2003
+#: server_privileges.php:2042
#, fuzzy, php-format
msgid "Grant all privileges on database "%s""
msgstr "Proveri privilegije za bazu "%s"."
-#: server_privileges.php:2026
+#: server_privileges.php:2065
#, php-format
msgid "Users having access to "%s""
msgstr "Korisnici koji imaju pristup "%s""
-#: server_privileges.php:2134
+#: server_privileges.php:2173
msgid "global"
msgstr "globalno"
-#: server_privileges.php:2136
+#: server_privileges.php:2175
msgid "database-specific"
msgstr "Specifično za bazu"
-#: server_privileges.php:2138
+#: server_privileges.php:2177
msgid "wildcard"
msgstr "džoker"
@@ -5682,7 +5052,7 @@ msgstr ""
msgid "This server is configured as master in a replication process."
msgstr ""
-#: server_replication.php:184 server_status.php:281
+#: server_replication.php:184 server_status.php:392
#, fuzzy
msgid "Show master status"
msgstr "Prikaži status podređenih servera"
@@ -5822,103 +5192,743 @@ msgid ""
"like to configure it?"
msgstr ""
+#: server_status.php:40
+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 ""
+"Broj tranksakcija koje su koristile keš privremenog binarnog dnevnika ali su "
+"prevazišle vrednost u binlog_cache_size i koristile privremenu datoteku da "
+"smeste izraze iz transakcije."
+
+#: server_status.php:41
+msgid "The number of transactions that used the temporary binary log cache."
+msgstr "Broj transakcija koje su koristile keš privremenog binarnog dnevnika."
+
+#: server_status.php:42
+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 "
+"to increase the tmp_table_size value to cause temporary tables to be memory-"
+"based instead of disk-based."
+msgstr ""
+"Broj privremenih tabela koje je server automatski kreirao na disku dok je "
+"izvršavao izraze. Ako je Created_tmp_disk_tables veliko, možda treba da "
+"povećate vrednost tmp_table_size kako bi učinili da privremene tabele budu "
+"bazirane u memoriji umesto na disku."
+
+#: server_status.php:43
+msgid "How many temporary files mysqld has created."
+msgstr "Koliko privremenih datoteka je mysqld napravio."
+
+#: server_status.php:44
+msgid ""
+"The number of in-memory temporary tables created automatically by the server "
+"while executing statements."
+msgstr ""
+"Broj privremenih tabela koje je server automatski kreirao u memoriji dok je "
+"izvršavao izraze."
+
+#: server_status.php:45
+msgid ""
+"The number of rows written with INSERT DELAYED for which some error occurred "
+"(probably duplicate key)."
+msgstr ""
+"Broj redova upisanih sa INSERT DELAYED za koje je javljena neka greška "
+"(verovatno duplirani ključ)."
+
#: server_status.php:46
+msgid ""
+"The number of INSERT DELAYED handler threads in use. Every different table "
+"on which one uses INSERT DELAYED gets its own thread."
+msgstr ""
+"Broj INSERT DELAYED rukovalačkih niti u upotrebi. Svaka posebna tabela nad "
+"kojom se koristi INSERT DELAYED dobija svoju nit."
+
+#: server_status.php:47
+msgid "The number of INSERT DELAYED rows written."
+msgstr "Broj upisanih INSERT DELAYED redova."
+
+#: server_status.php:48
+msgid "The number of executed FLUSH statements."
+msgstr "Broj izvršenih FLUSH izraza."
+
+#: server_status.php:49
+msgid "The number of internal COMMIT statements."
+msgstr "Broj internih COMMIT izraza."
+
+#: server_status.php:50
+msgid "The number of times a row was deleted from a table."
+msgstr "Broj brisanja nekog reda tabele."
+
+#: server_status.php:51
+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 ""
+"MySQL server može da upita pogon skladištenja NDB Cluster da li zna za "
+"tabelu određenog imena. To se naziva otkrivanjem (discovery). "
+"Handler_discover označava broj puta kada je otkrivena tabela."
+
+#: server_status.php:52
+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 ""
+"Broj puta kada je prva stavka pročitana iz indeksa. Ako je ovo visoko, to "
+"može značiti da server radi puno punih skeniranja indeksa; na primer SELECT "
+"kol1 FROM nešto, pod pretpostavkom da je kol1 indeksirano."
+
+#: server_status.php:53
+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 ""
+"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."
+
+#: server_status.php:54
+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 ""
+"Broj zahteva za čitanjem sledećeg reda u poretku ključeva. Ovo se povećava "
+"kada radite upit po koloni indeksa sa ograničenjem opsega ili ako radite "
+"skeniranje indeksa."
+
+#: server_status.php:55
+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 ""
+"Broj zahteva za čitanjem prethodnog reda u poretku ključeva. Ova metoda "
+"čitanja se uglavnom koristi za optimizaciju ORDER BY ... DESC."
+
+#: server_status.php:56
+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 "
+"probably have a lot of queries that require MySQL to scan whole tables or "
+"you have joins that don't use keys properly."
+msgstr ""
+"Broj zahteva za čitanje reda zasnovanih na fiksnoj poziciji. Ovo je visoko "
+"ako radite mnogo upita koji zahtevaju sortiranje rezultata. Verovatno imate "
+"mnogo upita koji zahtevaju da MySQL skenira cele tabele ili imate spojeve "
+"koji ne koriste ključeve propisno."
+
+#: server_status.php:57
+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 "
+"tables are not properly indexed or that your queries are not written to take "
+"advantage of the indexes you have."
+msgstr ""
+"Broj zahteva za čitanjem sledećeg reda iz datoteke podataka. Ovo je visoko "
+"ako radite puno skeniranja tabela. Ovo obično nagoveštava da vaše tabele "
+"nisu propisno indeksirane ili da vaši upiti nisu napisani da iskoriste već "
+"postojeće indekse."
+
+#: server_status.php:58
+msgid "The number of internal ROLLBACK statements."
+msgstr "Broj internih ROLLBACK izraza."
+
+#: server_status.php:59
+msgid "The number of requests to update a row in a table."
+msgstr "Broj zahteva za ažuriranje reda u tabeli."
+
+#: server_status.php:60
+msgid "The number of requests to insert a row in a table."
+msgstr "Broj zahteva za upisivanje reda u tabelu."
+
+#: server_status.php:61
+msgid "The number of pages containing data (dirty or clean)."
+msgstr "Broj strana koje sadrže podatke (čistih ili prljavih)."
+
+#: server_status.php:62
+msgid "The number of pages currently dirty."
+msgstr "Broj strana koje su trenutno prljave."
+
+#: server_status.php:63
+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."
+
+#: server_status.php:64
+msgid "The number of free pages."
+msgstr "Broj slobodnih strana."
+
+#: server_status.php:65
+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 ""
+"Broj zabravljenih strana u InnoDB ostavi bafera. Sa ovih strana se trenutno "
+"čita ili se u njih upisuje ili iz nekog drugog razloga ne mogu biti očišćene "
+"niti uklonjene."
+
+#: server_status.php:66
+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 "
+"be calculated as Innodb_buffer_pool_pages_total - "
+"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data."
+msgstr ""
+"Broj strana koje su zauzete zato što su odvojene za administrativne potrebe, "
+"kao što su zaključavanje redova ili indeks prilagodljivog heša. Ova vrednost "
+"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."
+
+#: server_status.php:67
+msgid "Total size of buffer pool, in pages."
+msgstr "Puna veličina ostave bafera, u stranama."
+
+#: server_status.php:68
+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 ""
+"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."
+
+#: server_status.php:69
+msgid ""
+"The number of sequential read-aheads InnoDB initiated. This happens when "
+"InnoDB does a sequential full table scan."
+msgstr ""
+"Broj sekvencijalnih pred-čitanja koja je InnoDB pokrenuo. Ovo se dešava kada "
+"InnoDB radi sekvencijalno skeniranje cele tabele."
+
+#: server_status.php:70
+msgid "The number of logical read requests InnoDB has done."
+msgstr "Broj logičkih zahteva za čitanje koje je InnoDB uradio."
+
+#: server_status.php:71
+msgid ""
+"The number of logical reads that InnoDB could not satisfy from buffer pool "
+"and had to do a single-page read."
+msgstr ""
+"Broj logičkih čitanja koja InnoDB nije mogao da zadovolji iz ostave bafera "
+"te je morao da radi čitanje pojedinačne strane."
+
+#: server_status.php:72
+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 "
+"available, it's necessary to wait for pages to be flushed first. This "
+"counter counts instances of these waits. If the buffer pool size was set "
+"properly, this value should be small."
+msgstr ""
+"Normalno se upisi u InnoDB ostavu bafera dešavaju u pozadini. Međutim, ako "
+"je neophodno pročitati ili napraviti stranu a nema dostupnih čistih strana, "
+"neophodno je sačekati da se strane prethodno očiste. Ovaj brojač broji "
+"dešavanja ovih čekanja. Ako je veličina ostave bafera postavljena kako "
+"treba, ova vrednost vi trebalo da je niska."
+
+#: server_status.php:73
+msgid "The number writes done to the InnoDB buffer pool."
+msgstr "Broj upisa učinjenih u InnoDB ostavu bafera."
+
+#: server_status.php:74
+msgid "The number of fsync() operations so far."
+msgstr "Broj fsync() operacija do sada."
+
+#: server_status.php:75
+msgid "The current number of pending fsync() operations."
+msgstr "Trenutni broj fsync() operacija na čekanju."
+
+#: server_status.php:76
+msgid "The current number of pending reads."
+msgstr "Trenutni broj čitanja na čekanju."
+
+#: server_status.php:77
+msgid "The current number of pending writes."
+msgstr "Trenutni broj upisa na čekanju."
+
+#: server_status.php:78
+msgid "The amount of data read so far, in bytes."
+msgstr "Količina podataka pročitanih do sada, u bajtovima."
+
+#: server_status.php:79
+msgid "The total number of data reads."
+msgstr "Ukupan broj čitanja podataka."
+
+#: server_status.php:80
+msgid "The total number of data writes."
+msgstr "Ukupan broj upisa podataka."
+
+#: server_status.php:81
+msgid "The amount of data written so far, in bytes."
+msgstr "Količina podataka upisanih do sada, u bajtovima"
+
+#: server_status.php:82
+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."
+
+#: server_status.php:83
+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."
+
+#: server_status.php:84
+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 ""
+"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."
+
+#: server_status.php:85
+msgid "The number of log write requests."
+msgstr "Broj zahteva za upis u dnevnik."
+
+#: server_status.php:86
+msgid "The number of physical writes to the log file."
+msgstr "Broj fizičkih upisa u datoteku dnevnika."
+
+#: server_status.php:87
+msgid "The number of fsync() writes done to the log file."
+msgstr "Broj fsyncs upisa načinjenih u datoteku dnevnika."
+
+#: server_status.php:88
+msgid "The number of pending log file fsyncs."
+msgstr "Broj fsync-ova za datoteku dnevnika na čekanju."
+
+#: server_status.php:89
+msgid "Pending log file writes."
+msgstr "Broj upisa u datoteku dnevnika na čekanju."
+
+#: server_status.php:90
+msgid "The number of bytes written to the log file."
+msgstr "Broj bajtova upisanih u datoteku dnevnika."
+
+#: server_status.php:91
+msgid "The number of pages created."
+msgstr "Broj napravljenih strana."
+
+#: server_status.php:92
+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 ""
+"Ukompajlirana veličina strane za InnoDB (podrazumevano 16KB). Mnoge "
+"vrednosti se računaju u stranama; veličina strane omogućava da se one lako "
+"konvertuju u bajtove."
+
+#: server_status.php:93
+msgid "The number of pages read."
+msgstr "Broj pročitanih strana."
+
+#: server_status.php:94
+msgid "The number of pages written."
+msgstr "Broj zapisanih strana."
+
+#: server_status.php:95
+msgid "The number of row locks currently being waited for."
+msgstr "Broj brava za redove koje se trenutno čekaju."
+
+#: server_status.php:96
+msgid "The average time to acquire a row lock, in milliseconds."
+msgstr "Prosečno vreme za dobavljanje brave za red, u milisekundama."
+
+#: server_status.php:97
+msgid "The total time spent in acquiring row locks, in milliseconds."
+msgstr ""
+"Ukupno vremena provedeno u dobavljanju brava za redove, u milisekundama."
+
+#: server_status.php:98
+msgid "The maximum time to acquire a row lock, in milliseconds."
+msgstr "Najduže vreme za dobavljanje brave za red, u milisekundama."
+
+#: server_status.php:99
+msgid "The number of times a row lock had to be waited for."
+msgstr "Broj puta kada se morala čekati brava za red."
+
+#: server_status.php:100
+msgid "The number of rows deleted from InnoDB tables."
+msgstr "Broj redova obrisanih iz InnoDB tabela."
+
+#: server_status.php:101
+msgid "The number of rows inserted in InnoDB tables."
+msgstr "Broj redova umetnutih u InnoDB tabele."
+
+#: server_status.php:102
+msgid "The number of rows read from InnoDB tables."
+msgstr "Broj redova pročitanih iz InnoDB tabela."
+
+#: server_status.php:103
+msgid "The number of rows updated in InnoDB tables."
+msgstr "Broj redova ažuriranih u InnoDB tabelama."
+
+#: server_status.php:104
+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 ""
+"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."
+
+#: server_status.php:105
+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 ""
+"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."
+
+#: server_status.php:106
+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 ""
+"Broj iskorišćenih blokova u kešu ključeva. Ova vrednost je oznaka „visokog "
+"vodostaja“ koja pokazuje najveći ikada broj blokova koji je bio u upotrebi u "
+"isto vreme."
+
+#: server_status.php:107
+msgid "The number of requests to read a key block from the cache."
+msgstr "Broj zahteva za čitanje bloka ključeva iz keša."
+
+#: server_status.php:108
+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 ""
+"Broj fizičkih čitanja bloka ključeva sa diska. Ako je Key_reads veliko, onda "
+"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."
+
+#: server_status.php:109
+msgid "The number of requests to write a key block to the cache."
+msgstr "Broj zahteva za upisivanje bloka ključeva u keš."
+
+#: server_status.php:110
+msgid "The number of physical writes of a key block to disk."
+msgstr "Broj fizičkih upisa bloka ključeva na disk."
+
+#: server_status.php:111
+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 ""
+"Ukupna cena poslednjeg kompajliranog upita kako ju je izračunao optimizator "
+"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."
+
+#: server_status.php:112
+msgid "The number of rows waiting to be written in INSERT DELAYED queues."
+msgstr "Broj redova u INSERT DELAYED redovima čekanja koji čekaju upisivanje."
+
+#: server_status.php:113
+msgid ""
+"The number of tables that have been opened. If opened tables is big, your "
+"table cache value is probably too small."
+msgstr ""
+"Broj tabela koje su bile otvarane. Ako je broj veliki, vaš keš tabela je "
+"verovatno premali."
+
+#: server_status.php:114
+msgid "The number of files that are open."
+msgstr "Broj otvorenih datoteka."
+
+#: server_status.php:115
+msgid "The number of streams that are open (used mainly for logging)."
+msgstr ""
+"Broj otvorenih tokova (koristi se prvenstveno za vođenje dnevnika (logging))."
+
+#: server_status.php:116
+msgid "The number of tables that are open."
+msgstr "Broj otvorenih tabela."
+
+#: server_status.php:117
+msgid "The number of free memory blocks in query cache."
+msgstr "Broj slobodnih memorijskih blokova u u kešu upita."
+
+#: server_status.php:118
+msgid "The amount of free memory for query cache."
+msgstr "Količina slobodne memorije za keš upita."
+
+#: server_status.php:119
+msgid "The number of cache hits."
+msgstr "Broj pogodaka iz keša."
+
+#: server_status.php:120
+msgid "The number of queries added to the cache."
+msgstr "Broj upita dodatih u keš."
+
+#: server_status.php:121
+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 "
+"cache size. The query cache uses a least recently used (LRU) strategy to "
+"decide which queries to remove from the cache."
+msgstr ""
+"Broj upita koji su uklonjeni iz keša da bi se oslobodila memorija za "
+"keširanje novih upita. Ovaj podatak vam može pomoći da podesite veličinu "
+"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."
+
+#: server_status.php:122
+msgid ""
+"The number of non-cached queries (not cachable, or not cached due to the "
+"query_cache_type setting)."
+msgstr ""
+"Broj nekeširanih upita (koji se ne mogu keširati ili nisu keširani zbog "
+"podešavanja query_cache_type)."
+
+#: server_status.php:123
+msgid "The number of queries registered in the cache."
+msgstr "Broj upita registrovanih u kešu."
+
+#: server_status.php:124
+msgid "The total number of blocks in the query cache."
+msgstr "Ukupan broj blokova u kešu za upite."
+
+#: server_status.php:125
+msgctxt "$strShowStatusReset"
+msgid "Reset"
+msgstr "Reset"
+
+#: server_status.php:126
+msgid "The status of failsafe replication (not yet implemented)."
+msgstr "Status replikacije otporne na greške (nije još implementirano)."
+
+#: server_status.php:127
+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 ""
+"Broj spojeva koji ne koriste indekste. Ako ova vrednost nije 0, trebalo bi "
+"pažljivo da proverite indekse vaših tabela."
+
+#: server_status.php:128
+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."
+
+#: server_status.php:129
+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 ""
+"Broj spojeva bez ključeva koji proveravaju upotrebu ključa posle svakog "
+"reda. (Ako ovo nije 0, trebalo bi pažljivo da proverite indekse vaših "
+"tabela.)"
+
+#: server_status.php:130
+msgid ""
+"The number of joins that used ranges on the first table. (It's normally not "
+"critical even if this is big.)"
+msgstr ""
+"Broj spojeva koji su koristili opsege na prvoj tabeli. (Obično nije kritično "
+"čak ni kada je ovo veliko)"
+
+#: server_status.php:131
+msgid "The number of joins that did a full scan of the first table."
+msgstr "Broj spojeva koji su uradili puno skeniranje prve tabele."
+
+#: server_status.php:132
+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."
+
+#: server_status.php:133
+msgid ""
+"Total (since startup) number of times the replication slave SQL thread has "
+"retried transactions."
+msgstr ""
+"Ukupan broj puta (od pokretanja) kada je pomoćna SQL nit za replikaciju "
+"pokušala transakcije."
+
+#: server_status.php:134
+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."
+
+#: server_status.php:135
+msgid ""
+"The number of threads that have taken more than slow_launch_time seconds to "
+"create."
+msgstr ""
+"Broj niti za koje je trebalo više od slow_launch_time sekudni da bi bile "
+"pokrenute."
+
+#: server_status.php:136
+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."
+
+#: server_status.php:137
+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 ""
+"Broj prolaza za spajanje koje je algoritam za sortiranje morao da odradi. "
+"Ako je ova vrednost velika, trebalo bi da razmislite o povećanju vrednosti "
+"sistemske promenljive sort_buffer_size."
+
+#: server_status.php:138
+msgid "The number of sorts that were done with ranges."
+msgstr "Broj sortiranja koja su urađena sa opsegom."
+
+#: server_status.php:139
+msgid "The number of sorted rows."
+msgstr "Broj sortiranih redova."
+
+#: server_status.php:140
+msgid "The number of sorts that were done by scanning the table."
+msgstr "Broj sortiranja do kojih je došlo skeniranjem tabele."
+
+#: server_status.php:141
+msgid "The number of times that a table lock was acquired immediately."
+msgstr "Broj puta kada je brava za tabelu odmah dobavljena."
+
+#: server_status.php:142
+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 "
+"should first optimize your queries, and then either split your table or "
+"tables or use replication."
+msgstr ""
+"Broj puta kada brava za tabelu nije mogla biti odmah dobavljena i bilo je "
+"potrebno čekanje. Ako je ovo visoko i imate problema sa performansama, prvo "
+"bi trebalo da optimizujete svoje upite a potom da ili podelite tabelu ili "
+"tabele ili da koristite replikaciju."
+
+#: server_status.php:143
+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 ""
+"Broj niti u kešu za niti. Stepen pogodaka keša se može izračunati kao "
+"Threads_created/Konekcije. Ako je ova vrednost crvena trebalo bi da povećate "
+"vaš thread_cache_size."
+
+#: server_status.php:144
+msgid "The number of currently open connections."
+msgstr "Broj trenutno otvorenih veza."
+
+#: server_status.php:145
+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 "
+"doesn't give a notable performance improvement if you have a good thread "
+"implementation.)"
+msgstr ""
+"Broj niti kreiranih za rukovanje konekcijama. Ako je Threads_created veliko, "
+"možda bi trebalo da povećate vrednost thread_cache_size. (Ako imate dobru "
+"implementaciju niti, ovo obično ne donosi primetna poboljšanja u "
+"performansama.)"
+
+#: server_status.php:146
+msgid "The number of threads that are not sleeping."
+msgstr "Broj niti koje nisu uspavane."
+
+#: server_status.php:157
msgid "Runtime Information"
msgstr "Informacije o toku rada"
-#: server_status.php:250
+#: server_status.php:361
msgid "Handler"
msgstr "Rukovalac"
-#: server_status.php:251
+#: server_status.php:362
msgid "Query cache"
msgstr "Keš upita"
-#: server_status.php:252
+#: server_status.php:363
msgid "Threads"
msgstr "Niti"
-#: server_status.php:254
+#: server_status.php:365
msgid "Temporary data"
msgstr "Privremeni podaci"
-#: server_status.php:255
+#: server_status.php:366
msgid "Delayed inserts"
msgstr "Odložena umetanja"
-#: server_status.php:256
+#: server_status.php:367
msgid "Key cache"
msgstr "Keš ključeva"
-#: server_status.php:257
+#: server_status.php:368
msgid "Joins"
msgstr "Spojevi"
-#: server_status.php:259
+#: server_status.php:370
msgid "Sorting"
msgstr "Sortiranje"
-#: server_status.php:261
+#: server_status.php:372
msgid "Transaction coordinator"
msgstr "Koordinator transakcija"
-#: server_status.php:271
+#: server_status.php:382
msgid "Flush (close) all tables"
msgstr "Očisti (zatvori) sve tabele"
-#: server_status.php:273
+#: server_status.php:384
msgid "Show open tables"
msgstr "Prikaži otvorene tabele"
-#: server_status.php:278
+#: server_status.php:389
msgid "Show slave hosts"
msgstr "Prikaži podređene server"
-#: server_status.php:284
+#: server_status.php:395
msgid "Show slave status"
msgstr "Prikaži status podređenih servera"
-#: server_status.php:289
+#: server_status.php:400
msgid "Flush query cache"
msgstr "Očisti keš upita"
-#: server_status.php:294
+#: server_status.php:405
msgid "Show processes"
msgstr "Prikaži listu procesa"
-#: server_status.php:344
+#: server_status.php:455
#, fuzzy
#| msgid "Reset"
msgctxt "for Show status"
msgid "Reset"
msgstr "Poništi"
-#: server_status.php:350
+#: server_status.php:461
#, php-format
msgid "This MySQL server has been running for %s. It started up on %s."
msgstr "Ovaj MySQL server radi već %s. Pokrenut je %s."
-#: server_status.php:360
+#: server_status.php:471
msgid ""
"This MySQL server works as master and slave in replication"
"b> process."
msgstr ""
-#: server_status.php:362
+#: server_status.php:473
msgid "This MySQL server works as master in replication process."
msgstr ""
-#: server_status.php:364
+#: server_status.php:475
msgid "This MySQL server works as slave in replication process."
msgstr ""
-#: server_status.php:366
+#: server_status.php:477
msgid ""
"For further information about replication status on the server, please visit "
"the replication section."
msgstr ""
-#: server_status.php:383
+#: server_status.php:494
msgid ""
"Server traffic: These tables show the network traffic statistics of "
"this MySQL server since its startup."
@@ -5926,11 +5936,11 @@ msgstr ""
"Saobraćaj servera: Tabele pokazuju statistike mrežnog saobraćaja na "
"ovom MySQL serveru od njegovog pokretanja."
-#: server_status.php:388
+#: server_status.php:499
msgid "Traffic"
msgstr "Saobraćaj"
-#: server_status.php:388
+#: server_status.php:499
msgid ""
"On a busy server, the byte counters may overrun, so those statistics as "
"reported by the MySQL server may be incorrect."
@@ -5938,36 +5948,36 @@ msgstr ""
"Na zaposlenom serveru brojači bajtova mogu da se preliju (overrun), tako da "
"te statistike, onako kako ih prijavljuje MySQL server, mogu biti netačne."
-#: server_status.php:389 server_status.php:434 server_status.php:497
-#: server_status.php:555
+#: server_status.php:500 server_status.php:545 server_status.php:608
+#: server_status.php:666
msgid "per hour"
msgstr "na sat"
-#: server_status.php:394
+#: server_status.php:505
msgid "Received"
msgstr "Primljeno"
-#: server_status.php:404
+#: server_status.php:515
msgid "Sent"
msgstr "Poslato"
-#: server_status.php:433
+#: server_status.php:544
msgid "Connections"
msgstr "Konekcije"
-#: server_status.php:440
+#: server_status.php:551
msgid "max. concurrent connections"
msgstr "maks. istovremenih veza"
-#: server_status.php:447
+#: server_status.php:558
msgid "Failed attempts"
msgstr "Neuspelih pokušaja"
-#: server_status.php:461
+#: server_status.php:572
msgid "Aborted"
msgstr "Prekinuto"
-#: server_status.php:490
+#: server_status.php:601
#, php-format
msgid ""
"Query statistics: Since its startup, %s queries have been sent to the "
@@ -5976,19 +5986,19 @@ msgstr ""
"Statistike upita: %s upita je postavljeno serveru od njegovog "
"pokretanja."
-#: server_status.php:498
+#: server_status.php:609
msgid "per minute"
msgstr "u minutu"
-#: server_status.php:499
+#: server_status.php:610
msgid "per second"
msgstr "u sekundi"
-#: server_status.php:554
+#: server_status.php:665
msgid "Query type"
msgstr "Vrsta upita"
-#: server_status.php:721
+#: server_status.php:832
#, fuzzy
msgid "Replication status"
msgstr "Replikacija"
diff --git a/po/sv.po b/po/sv.po
index fbbce4484..47061947e 100755
--- a/po/sv.po
+++ b/po/sv.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-06-04 16:07-0400\n"
+"POT-Creation-Date: 2010-06-08 12:32-0400\n"
"PO-Revision-Date: 2010-03-12 09:19+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: swedish \n"
@@ -14,11 +14,11 @@ msgstr ""
"X-Generator: Translate Toolkit 1.5.3\n"
#: browse_foreigners.php:38 browse_foreigners.php:59
-#: libraries/display_tbl.lib.php:417 server_privileges.php:1475
+#: libraries/display_tbl.lib.php:417 server_privileges.php:1514
msgid "Show all"
msgstr "Visa alla"
-#: browse_foreigners.php:82 libraries/common.lib.php:2304
+#: browse_foreigners.php:82 libraries/common.lib.php:2313
#: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:394
#: libraries/export/pdf.php:147 pdf_schema.php:283 pdf_schema.php:1123
#: pdf_schema.php:1139
@@ -37,8 +37,8 @@ msgstr ""
#: browse_foreigners.php:150 db_structure.php:79 db_structure.php:80
#: db_structure.php:91 db_structure.php:93 db_structure.php:104
-#: db_structure.php:106 libraries/common.lib.php:2822
-#: libraries/common.lib.php:2829 libraries/db_links.inc.php:75
+#: db_structure.php:106 libraries/common.lib.php:2831
+#: libraries/common.lib.php:2838 libraries/db_links.inc.php:75
#: libraries/tbl_links.inc.php:63
msgid "Search"
msgstr "Sök"
@@ -48,7 +48,7 @@ msgstr "Sök"
#: db_structure.php:567 js/messages.php:48 libraries/Config.class.php:1046
#: libraries/Theme_Manager.class.php:311
#: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719
-#: libraries/common.lib.php:1333 libraries/common.lib.php:2279
+#: libraries/common.lib.php:1335 libraries/common.lib.php:2288
#: libraries/display_change_password.lib.php:82
#: libraries/display_create_table.lib.php:63
#: libraries/display_export.lib.php:275 libraries/display_import.lib.php:276
@@ -59,9 +59,9 @@ msgstr "Sök"
#: libraries/sql_query_form.lib.php:552 libraries/tbl_properties.inc.php:782
#: main.php:128 navigation.php:237 pdf_pages.php:292 pdf_pages.php:328
#: pdf_pages.php:530 pmd_pdf.php:116 server_binlog.php:142
-#: server_privileges.php:625 server_privileges.php:1585
-#: server_privileges.php:1932 server_privileges.php:1979
-#: server_privileges.php:2018 server_replication.php:235
+#: server_privileges.php:664 server_privileges.php:1624
+#: server_privileges.php:1971 server_privileges.php:2018
+#: server_privileges.php:2057 server_replication.php:235
#: server_replication.php:318 server_replication.php:341
#: server_synchronize.php:1209 tbl_change.php:330 tbl_change.php:1174
#: tbl_change.php:1211 tbl_indexes.php:254 tbl_operations.php:265
@@ -79,7 +79,7 @@ msgstr "Nyckel"
#: browse_foreigners.php:169 browse_foreigners.php:171
#: server_collations.php:55 server_collations.php:67 server_engines.php:59
-#: server_status.php:628
+#: server_status.php:739
msgid "Description"
msgstr "Beskrivning"
@@ -120,7 +120,7 @@ msgstr "Kolumn-namn"
#: libraries/db_structure.lib.php:60 libraries/export/htmlword.php:245
#: libraries/export/latex.php:360 libraries/export/odt.php:297
#: libraries/export/texytext.php:234 libraries/tbl_properties.inc.php:100
-#: pdf_schema.php:1263 pdf_schema.php:1284 server_privileges.php:2031
+#: pdf_schema.php:1263 pdf_schema.php:1284 server_privileges.php:2070
#: tbl_change.php:287 tbl_change.php:314 tbl_printview.php:143
#: tbl_printview.php:313 tbl_select.php:136 tbl_structure.php:178
#: tbl_structure.php:659 tbl_tracking.php:274 tbl_tracking.php:321
@@ -164,9 +164,9 @@ msgstr "Kommentarer"
#: libraries/Index.class.php:386 libraries/export/htmlword.php:322
#: libraries/export/latex.php:430 libraries/export/odt.php:368
#: libraries/export/texytext.php:311 libraries/mult_submits.inc.php:263
-#: pdf_schema.php:1344 server_privileges.php:1529 server_privileges.php:1540
-#: server_privileges.php:1850 server_privileges.php:1855
-#: server_privileges.php:2148 sql.php:132 sql.php:194 tbl_printview.php:229
+#: pdf_schema.php:1344 server_privileges.php:1568 server_privileges.php:1579
+#: server_privileges.php:1889 server_privileges.php:1894
+#: server_privileges.php:2187 sql.php:132 sql.php:194 tbl_printview.php:229
#: tbl_structure.php:350 tbl_tracking.php:337 tbl_tracking.php:342
msgid "No"
msgstr "Nej"
@@ -180,9 +180,9 @@ msgstr "Nej"
#: libraries/mult_submits.inc.php:101 libraries/mult_submits.inc.php:106
#: libraries/mult_submits.inc.php:111 libraries/mult_submits.inc.php:262
#: libraries/mult_submits.inc.php:273 pdf_schema.php:1344
-#: server_databases.php:64 server_privileges.php:1526
-#: server_privileges.php:1540 server_privileges.php:1850
-#: server_privileges.php:1853 server_privileges.php:2148 sql.php:193
+#: server_databases.php:64 server_privileges.php:1565
+#: server_privileges.php:1579 server_privileges.php:1889
+#: server_privileges.php:1892 server_privileges.php:2187 sql.php:193
#: tbl_printview.php:229 tbl_structure.php:40 tbl_structure.php:350
#: tbl_tracking.php:335 tbl_tracking.php:340
msgid "Yes"
@@ -279,7 +279,7 @@ msgstr "Byt till kopierad databas"
msgid "BLOB Repository"
msgstr "BLOB-förvaringsplats"
-#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1350
+#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1352
#: libraries/server_links.inc.php:49 server_processlist.php:59
#: tbl_tracking.php:596 test/theme.php:101
msgid "Status"
@@ -342,8 +342,8 @@ msgstr "Redigera PDF-sidor"
#: db_printview.php:104 db_tracking.php:72 db_tracking.php:157
#: libraries/db_structure.lib.php:46 libraries/export/xml.php:328
-#: libraries/header.inc.php:126 pdf_pages.php:424 server_privileges.php:1626
-#: server_privileges.php:1682 server_privileges.php:1946
+#: libraries/header.inc.php:126 pdf_pages.php:424 server_privileges.php:1665
+#: server_privileges.php:1721 server_privileges.php:1985
#: server_synchronize.php:423 server_synchronize.php:866 tbl_tracking.php:592
#: test/theme.php:75
msgid "Table"
@@ -444,7 +444,7 @@ msgstr "Ta bort"
#: db_qbe.php:370 db_qbe.php:451 db_qbe.php:522 db_qbe.php:553
#: libraries/display_import.lib.php:166 libraries/tbl_properties.inc.php:779
-#: server_privileges.php:258 tbl_change.php:1031 tbl_indexes.php:250
+#: server_privileges.php:297 tbl_change.php:1031 tbl_indexes.php:250
#: tbl_select.php:288
msgid "Or"
msgstr "Eller"
@@ -478,7 +478,7 @@ msgstr "Använd tabeller"
msgid "SQL query on database %s:"
msgstr "SQL-fråga i databas %s:"
-#: db_qbe.php:934 libraries/common.lib.php:1223
+#: db_qbe.php:934 libraries/common.lib.php:1225
msgid "Submit Query"
msgstr "Kör fråga"
@@ -517,7 +517,7 @@ msgstr "%s träff(ar) i tabell %s"
#: db_search.php:267 db_structure.php:77 db_structure.php:78
#: db_structure.php:90 db_structure.php:92 db_structure.php:103
-#: db_structure.php:105 libraries/common.lib.php:2824
+#: db_structure.php:105 libraries/common.lib.php:2833
#: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50
#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:467
msgid "Browse"
@@ -564,26 +564,26 @@ msgstr "I fält:"
#: db_structure.php:81 db_structure.php:82 db_structure.php:94
#: db_structure.php:95 db_structure.php:107 db_structure.php:108
-#: libraries/common.lib.php:2823 libraries/sql_query_form.lib.php:334
+#: libraries/common.lib.php:2832 libraries/sql_query_form.lib.php:334
#: libraries/sql_query_form.lib.php:337 libraries/tbl_links.inc.php:76
msgid "Insert"
msgstr "Lägg till"
#: db_structure.php:83 db_structure.php:96 db_structure.php:109
-#: libraries/common.lib.php:2820 libraries/common.lib.php:2827
+#: libraries/common.lib.php:2829 libraries/common.lib.php:2836
#: libraries/db_links.inc.php:63 libraries/export/htmlword.php:23
#: libraries/export/latex.php:33 libraries/export/latex.php:337
#: libraries/export/odt.php:32 libraries/export/sql.php:60
#: libraries/export/texytext.php:23 libraries/import.lib.php:1104
#: libraries/tbl_links.inc.php:56 pmd_general.php:134
-#: server_privileges.php:554 server_replication.php:315 tbl_tracking.php:269
+#: server_privileges.php:593 server_replication.php:315 tbl_tracking.php:269
msgid "Structure"
msgstr "Struktur"
#: db_structure.php:84 db_structure.php:85 db_structure.php:97
#: db_structure.php:98 db_structure.php:110 db_structure.php:111
#: db_structure.php:545 db_structure.php:546 db_tracking.php:91
-#: libraries/Index.class.php:483 libraries/common.lib.php:1654
+#: libraries/Index.class.php:483 libraries/common.lib.php:1656
#: libraries/db_links.inc.php:100 libraries/mult_submits.inc.php:36
#: libraries/mult_submits.inc.php:73 libraries/tbl_links.inc.php:127
#: server_databases.php:352 tbl_structure.php:27 tbl_structure.php:151
@@ -593,7 +593,7 @@ msgstr "Radera"
#: db_structure.php:86 db_structure.php:87 db_structure.php:99
#: db_structure.php:100 db_structure.php:112 db_structure.php:113
-#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1653
+#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1655
#: libraries/mult_submits.inc.php:39 libraries/tbl_links.inc.php:105
msgid "Empty"
msgstr "Töm"
@@ -635,7 +635,7 @@ msgstr "Vy"
#: db_structure.php:485 libraries/db_structure.lib.php:49
#: libraries/server_links.inc.php:70 server_replication.php:33
-#: server_replication.php:164 server_status.php:258
+#: server_replication.php:164 server_status.php:369
msgid "Replication"
msgstr "Replikering"
@@ -651,20 +651,20 @@ msgstr "%s är standardlagringsmotorn på denna MySQL-server."
#: db_structure.php:524 db_structure.php:541 db_structure.php:542
#: libraries/display_tbl.lib.php:2081 libraries/display_tbl.lib.php:2086
#: libraries/mult_submits.inc.php:16 server_databases.php:346
-#: server_databases.php:351 server_privileges.php:1557 tbl_structure.php:455
+#: server_databases.php:351 server_privileges.php:1596 tbl_structure.php:455
#: tbl_structure.php:464
msgid "With selected:"
msgstr "Med markerade:"
#: db_structure.php:527 libraries/display_tbl.lib.php:2076
-#: server_databases.php:348 server_privileges.php:530
-#: server_privileges.php:1560 tbl_structure.php:458
+#: server_databases.php:348 server_privileges.php:569
+#: server_privileges.php:1599 tbl_structure.php:458
msgid "Check All"
msgstr "Markera alla"
#: db_structure.php:531 libraries/display_tbl.lib.php:2077
#: libraries/replication_gui.lib.php:33 server_databases.php:350
-#: server_privileges.php:533 server_privileges.php:1564 tbl_structure.php:462
+#: server_privileges.php:572 server_privileges.php:1603 tbl_structure.php:462
msgid "Uncheck All"
msgstr "Avmarkera alla"
@@ -702,7 +702,7 @@ msgstr "Analysera tabell"
#: libraries/display_export.lib.php:83 libraries/display_tbl.lib.php:2094
#: libraries/display_tbl.lib.php:2225 libraries/mult_submits.inc.php:62
#: libraries/server_links.inc.php:84 libraries/tbl_links.inc.php:82
-#: pmd_pdf.php:84 pmd_pdf.php:109 server_privileges.php:1341
+#: pmd_pdf.php:84 pmd_pdf.php:109 server_privileges.php:1380
#: setup/frames/menu.inc.php:22 tbl_row_action.php:59
msgid "Export"
msgstr "Exportera"
@@ -721,8 +721,8 @@ msgstr "Hoppa över låsta tabeller"
#: libraries/export/sql.php:342 libraries/export/texytext.php:84
#: libraries/export/xml.php:255 libraries/header.inc.php:106
#: libraries/header_printview.inc.php:58 server_databases.php:169
-#: server_privileges.php:1621 server_privileges.php:1682
-#: server_privileges.php:1940 server_processlist.php:56
+#: server_privileges.php:1660 server_privileges.php:1721
+#: server_privileges.php:1979 server_processlist.php:56
#: server_synchronize.php:1179 server_synchronize.php:1183
#: tbl_tracking.php:591 test/theme.php:65
msgid "Database"
@@ -744,8 +744,8 @@ msgstr ""
#: db_tracking.php:77 libraries/Index.class.php:440
#: libraries/db_structure.lib.php:53 server_databases.php:203
-#: server_privileges.php:1503 server_privileges.php:1686
-#: server_privileges.php:2034 tbl_structure.php:187
+#: server_privileges.php:1542 server_privileges.php:1725
+#: server_privileges.php:2073 tbl_structure.php:187
msgid "Action"
msgstr "Åtgärd"
@@ -951,11 +951,11 @@ msgstr "Värdnamnet är tomt!"
msgid "The user name is empty!"
msgstr "Användarnamnet är tomt!"
-#: js/messages.php:44 server_privileges.php:1197 user_password.php:70
+#: js/messages.php:44 server_privileges.php:1236 user_password.php:70
msgid "The password is empty!"
msgstr "Lösenordet är tomt!"
-#: js/messages.php:45 server_privileges.php:1195 user_password.php:73
+#: js/messages.php:45 server_privileges.php:1234 user_password.php:73
msgid "The passwords aren't the same!"
msgstr "Lösenorden är inte lika!"
@@ -1034,8 +1034,8 @@ msgid "Prev"
msgstr "Föregående"
#. l10n: Display text for next month link in calendar
-#: js/messages.php:77 libraries/common.lib.php:2344
-#: libraries/common.lib.php:2347 libraries/display_tbl.lib.php:338
+#: js/messages.php:77 libraries/common.lib.php:2353
+#: libraries/common.lib.php:2356 libraries/display_tbl.lib.php:338
#: server_binlog.php:205 server_binlog.php:207 tbl_printview.php:424
#: tbl_structure.php:801
msgid "Next"
@@ -1111,27 +1111,27 @@ msgid "December"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:97 libraries/common.lib.php:1555
+#: js/messages.php:97 libraries/common.lib.php:1557
msgid "Jan"
msgstr "januari"
#. l10n: Short month name
-#: js/messages.php:99 libraries/common.lib.php:1557
+#: js/messages.php:99 libraries/common.lib.php:1559
msgid "Feb"
msgstr "februari"
#. l10n: Short month name
-#: js/messages.php:101 libraries/common.lib.php:1559
+#: js/messages.php:101 libraries/common.lib.php:1561
msgid "Mar"
msgstr "mars"
#. l10n: Short month name
-#: js/messages.php:103 libraries/common.lib.php:1561
+#: js/messages.php:103 libraries/common.lib.php:1563
msgid "Apr"
msgstr "april"
#. l10n: Short month name
-#: js/messages.php:105 libraries/common.lib.php:1563
+#: js/messages.php:105 libraries/common.lib.php:1565
#, fuzzy
#| msgid "May"
msgctxt "Short month name"
@@ -1139,37 +1139,37 @@ msgid "May"
msgstr "maj"
#. l10n: Short month name
-#: js/messages.php:107 libraries/common.lib.php:1565
+#: js/messages.php:107 libraries/common.lib.php:1567
msgid "Jun"
msgstr "juni"
#. l10n: Short month name
-#: js/messages.php:109 libraries/common.lib.php:1567
+#: js/messages.php:109 libraries/common.lib.php:1569
msgid "Jul"
msgstr "juli"
#. l10n: Short month name
-#: js/messages.php:111 libraries/common.lib.php:1569
+#: js/messages.php:111 libraries/common.lib.php:1571
msgid "Aug"
msgstr "augusti"
#. l10n: Short month name
-#: js/messages.php:113 libraries/common.lib.php:1571
+#: js/messages.php:113 libraries/common.lib.php:1573
msgid "Sep"
msgstr "september"
#. l10n: Short month name
-#: js/messages.php:115 libraries/common.lib.php:1573
+#: js/messages.php:115 libraries/common.lib.php:1575
msgid "Oct"
msgstr "oktober"
#. l10n: Short month name
-#: js/messages.php:117 libraries/common.lib.php:1575
+#: js/messages.php:117 libraries/common.lib.php:1577
msgid "Nov"
msgstr "november"
#. l10n: Short month name
-#: js/messages.php:119 libraries/common.lib.php:1577
+#: js/messages.php:119 libraries/common.lib.php:1579
msgid "Dec"
msgstr "december"
@@ -1210,37 +1210,37 @@ msgid "Saturday"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:132 libraries/common.lib.php:1580
+#: js/messages.php:132 libraries/common.lib.php:1582
msgid "Sun"
msgstr "Sön"
#. l10n: Short week day name
-#: js/messages.php:134 libraries/common.lib.php:1582
+#: js/messages.php:134 libraries/common.lib.php:1584
msgid "Mon"
msgstr "Mån"
#. l10n: Short week day name
-#: js/messages.php:136 libraries/common.lib.php:1584
+#: js/messages.php:136 libraries/common.lib.php:1586
msgid "Tue"
msgstr "Tis"
#. l10n: Short week day name
-#: js/messages.php:138 libraries/common.lib.php:1586
+#: js/messages.php:138 libraries/common.lib.php:1588
msgid "Wed"
msgstr "Ons"
#. l10n: Short week day name
-#: js/messages.php:140 libraries/common.lib.php:1588
+#: js/messages.php:140 libraries/common.lib.php:1590
msgid "Thu"
msgstr "Tors"
#. l10n: Short week day name
-#: js/messages.php:142 libraries/common.lib.php:1590
+#: js/messages.php:142 libraries/common.lib.php:1592
msgid "Fri"
msgstr "Fre"
#. l10n: Short week day name
-#: js/messages.php:144 libraries/common.lib.php:1592
+#: js/messages.php:144 libraries/common.lib.php:1594
msgid "Sat"
msgstr "Lör"
@@ -1388,7 +1388,7 @@ msgid "Comment"
msgstr "Kommentar"
#: libraries/Index.class.php:466 libraries/common.lib.php:616
-#: libraries/common.lib.php:1199 libraries/display_tbl.lib.php:1117
+#: libraries/common.lib.php:1201 libraries/display_tbl.lib.php:1117
#: libraries/import.lib.php:1087 libraries/import.lib.php:1111
#: pdf_pages.php:285 setup/frames/index.inc.php:124
#: setup/lib/messages.inc.php:352 tbl_row_action.php:69
@@ -1414,7 +1414,7 @@ msgstr ""
"bort."
#: libraries/List_Database.class.php:431 libraries/server_links.inc.php:41
-#: server_databases.php:88 server_privileges.php:1621
+#: server_databases.php:88 server_privileges.php:1660
#: setup/lib/messages.inc.php:110 test/theme.php:93
msgid "Databases"
msgstr "Databaser"
@@ -1754,7 +1754,7 @@ msgid "Documentation"
msgstr "Dokumentation"
#: libraries/common.lib.php:595 libraries/header_printview.inc.php:61
-#: server_processlist.php:60 server_status.php:247
+#: server_processlist.php:60 server_status.php:358
msgid "SQL query"
msgstr "SQL-fråga"
@@ -1770,130 +1770,130 @@ msgstr "Förklara SQL-kod"
msgid "Skip Explain SQL"
msgstr "Utan SQL-förklaring"
-#: libraries/common.lib.php:1212
+#: libraries/common.lib.php:1214
msgid "Without PHP Code"
msgstr "Utan PHP-kod"
-#: libraries/common.lib.php:1215 setup/lib/messages.inc.php:355
+#: libraries/common.lib.php:1217 setup/lib/messages.inc.php:355
msgid "Create PHP Code"
msgstr "Skapa PHP-kod"
-#: libraries/common.lib.php:1233 server_status.php:341
+#: libraries/common.lib.php:1235 server_status.php:452
#: setup/lib/messages.inc.php:354
msgid "Refresh"
msgstr "Uppdatera"
-#: libraries/common.lib.php:1242
+#: libraries/common.lib.php:1244
msgid "Skip Validate SQL"
msgstr "Utan SQL-validering"
-#: libraries/common.lib.php:1245 setup/lib/messages.inc.php:356 sql.php:518
+#: libraries/common.lib.php:1247 setup/lib/messages.inc.php:356 sql.php:518
msgid "Validate SQL"
msgstr "Validera SQL-kod"
-#: libraries/common.lib.php:1276
+#: libraries/common.lib.php:1278
msgid "Inline edit of this query"
msgstr ""
-#: libraries/common.lib.php:1278
+#: libraries/common.lib.php:1280
#, fuzzy
#| msgid "Engines"
msgid "Inline"
msgstr "Motorer"
-#: libraries/common.lib.php:1332 libraries/common.lib.php:1347
+#: libraries/common.lib.php:1334 libraries/common.lib.php:1349
msgid "Profiling"
msgstr "Under produktion"
-#: libraries/common.lib.php:1351 libraries/tbl_triggers.lib.php:28
+#: libraries/common.lib.php:1353 libraries/tbl_triggers.lib.php:28
#: server_processlist.php:58
msgid "Time"
msgstr "Tid"
#. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "B"
msgstr "bytes"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "KiB"
msgstr "KiB"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "MiB"
msgstr "MiB"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "GiB"
msgstr "GiB"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "TiB"
msgstr "TiB"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "PiB"
msgstr "PiB"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "EiB"
msgstr "EiB"
#. l10n: Thousands separator
-#: libraries/common.lib.php:1417
+#: libraries/common.lib.php:1419
msgid ","
msgstr " "
#. l10n: Decimal separator
-#: libraries/common.lib.php:1419
+#: libraries/common.lib.php:1421
msgid "."
msgstr ","
#. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string
-#: libraries/common.lib.php:1596
+#: libraries/common.lib.php:1598
#: libraries/transformations/text_plain__dateformat.inc.php:34
msgid "%B %d, %Y at %I:%M %p"
msgstr "%d %B %Y kl %H:%M"
-#: libraries/common.lib.php:1898
+#: libraries/common.lib.php:1907
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "%s dagar, %s timmar, %s minuter och %s sekunder"
-#: libraries/common.lib.php:2313 libraries/common.lib.php:2316
-#: libraries/display_tbl.lib.php:290 server_status.php:608
+#: libraries/common.lib.php:2322 libraries/common.lib.php:2325
+#: libraries/display_tbl.lib.php:290 server_status.php:719
msgid "Begin"
msgstr "Början"
-#: libraries/common.lib.php:2314 libraries/common.lib.php:2317
+#: libraries/common.lib.php:2323 libraries/common.lib.php:2326
#: libraries/display_tbl.lib.php:291 server_binlog.php:168
#: server_binlog.php:170
msgid "Previous"
msgstr "Föregående"
-#: libraries/common.lib.php:2345 libraries/common.lib.php:2348
+#: libraries/common.lib.php:2354 libraries/common.lib.php:2357
#: libraries/display_tbl.lib.php:353
msgid "End"
msgstr "Slutet"
-#: libraries/common.lib.php:2421
+#: libraries/common.lib.php:2430
#, php-format
msgid "Jump to database "%s"."
msgstr "Hoppa till databas "%s"."
-#: libraries/common.lib.php:2441
+#: libraries/common.lib.php:2450
#, 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/common.lib.php:2821 libraries/common.lib.php:2828
+#: libraries/common.lib.php:2830 libraries/common.lib.php:2837
#: libraries/db_links.inc.php:68 libraries/export/sql.php:25
#: libraries/import/sql.php:18 libraries/server_links.inc.php:45
#: libraries/tbl_links.inc.php:60 querywindow.php:99 test/theme.php:97
msgid "SQL"
msgstr "SQL"
-#: libraries/common.lib.php:2830 libraries/db_links.inc.php:104
+#: libraries/common.lib.php:2839 libraries/db_links.inc.php:104
#: libraries/tbl_links.inc.php:95 libraries/tbl_links.inc.php:117
#: view_operations.php:89
msgid "Operations"
@@ -1948,8 +1948,8 @@ msgid "Import"
msgstr "Importera"
#: libraries/db_links.inc.php:111 libraries/server_links.inc.php:66
-#: server_privileges.php:72 server_privileges.php:1683
-#: server_privileges.php:2032 test/theme.php:117
+#: server_privileges.php:111 server_privileges.php:1722
+#: server_privileges.php:2071 test/theme.php:117
msgid "Privileges"
msgstr "Privilegier"
@@ -1995,22 +1995,22 @@ msgid "Change password"
msgstr "Byt lösenord"
#: libraries/display_change_password.lib.php:35
-#: libraries/replication_gui.lib.php:345 server_privileges.php:768
+#: libraries/replication_gui.lib.php:345 server_privileges.php:807
msgid "No Password"
msgstr "Inget lösenord"
#: libraries/display_change_password.lib.php:41
#: libraries/replication_gui.lib.php:59 libraries/replication_gui.lib.php:60
#: libraries/replication_gui.lib.php:335 libraries/replication_gui.lib.php:339
-#: libraries/replication_gui.lib.php:349 server_privileges.php:757
-#: server_privileges.php:761 server_privileges.php:772
-#: server_privileges.php:1499 server_synchronize.php:1175
+#: libraries/replication_gui.lib.php:349 server_privileges.php:796
+#: server_privileges.php:800 server_privileges.php:811
+#: server_privileges.php:1538 server_synchronize.php:1175
msgid "Password"
msgstr "Lösenord"
#: libraries/display_change_password.lib.php:46
#: libraries/replication_gui.lib.php:353 libraries/replication_gui.lib.php:356
-#: server_privileges.php:776 server_privileges.php:779
+#: server_privileges.php:815 server_privileges.php:818
msgid "Re-type"
msgstr "Skriv igen"
@@ -2025,12 +2025,12 @@ msgid "MySQL 4.0 compatible"
msgstr "Kompatibel med MySQL 4.0"
#: libraries/display_change_password.lib.php:72
-#: libraries/replication_gui.lib.php:360 server_privileges.php:783
+#: libraries/replication_gui.lib.php:360 server_privileges.php:822
msgid "Generate Password"
msgstr "Generera lösenord"
#: libraries/display_change_password.lib.php:75
-#: libraries/replication_gui.lib.php:363 server_privileges.php:786
+#: libraries/replication_gui.lib.php:363 server_privileges.php:825
msgid "Generate"
msgstr "Generera"
@@ -2043,8 +2043,8 @@ msgstr "Skapa ny databas"
msgid "Create"
msgstr "Skapa"
-#: libraries/display_create_database.lib.php:40 server_privileges.php:74
-#: server_privileges.php:1388 server_replication.php:35
+#: libraries/display_create_database.lib.php:40 server_privileges.php:113
+#: server_privileges.php:1427 server_replication.php:35
msgid "No Privileges"
msgstr "Inga privilegier"
@@ -2135,7 +2135,7 @@ msgstr "Komprimering"
#: libraries/display_export.lib.php:240 libraries/display_import.lib.php:197
#: libraries/display_import.lib.php:210 libraries/display_tbl.lib.php:530
#: libraries/export/sql.php:868 libraries/tbl_properties.inc.php:575
-#: server_privileges.php:1836 server_processlist.php:75
+#: server_privileges.php:1875 server_processlist.php:75
msgid "None"
msgstr "Inget"
@@ -2469,7 +2469,7 @@ msgstr ""
msgid "Buffer Pool"
msgstr "Buffertutrymme"
-#: libraries/engines/innodb.lib.php:145 server_status.php:306
+#: libraries/engines/innodb.lib.php:145 server_status.php:417
msgid "InnoDB Status"
msgstr "InnoDB-status"
@@ -2478,8 +2478,8 @@ msgid "Buffer Pool Usage"
msgstr "Buffertanvändning"
#: libraries/engines/innodb.lib.php:194 server_databases.php:137
-#: server_databases.php:305 server_status.php:414 server_status.php:475
-#: server_status.php:496 tbl_printview.php:351 tbl_structure.php:696
+#: server_databases.php:305 server_status.php:525 server_status.php:586
+#: server_status.php:607 tbl_printview.php:351 tbl_structure.php:696
msgid "Total"
msgstr "Totalt"
@@ -2837,7 +2837,7 @@ msgstr "Microsoft Word 2000"
#: libraries/export/latex.php:201 libraries/export/odt.php:48
#: libraries/export/sql.php:106 libraries/export/sql.php:868
#: libraries/export/texytext.php:27 server_databases.php:127
-#: server_privileges.php:537 server_replication.php:316 tbl_printview.php:317
+#: server_privileges.php:576 server_replication.php:316 tbl_printview.php:317
#: tbl_structure.php:665
msgid "Data"
msgstr "Data"
@@ -2887,9 +2887,9 @@ msgstr "MIME-typ"
#: libraries/export/xml.php:102 libraries/header_printview.inc.php:57
#: libraries/replication_gui.lib.php:63 libraries/replication_gui.lib.php:174
#: libraries/replication_gui.lib.php:269 libraries/replication_gui.lib.php:272
-#: libraries/replication_gui.lib.php:329 server_privileges.php:692
-#: server_privileges.php:695 server_privileges.php:751
-#: server_privileges.php:1498 server_privileges.php:2030
+#: libraries/replication_gui.lib.php:329 server_privileges.php:731
+#: server_privileges.php:734 server_privileges.php:790
+#: server_privileges.php:1537 server_privileges.php:2069
#: server_processlist.php:55 server_synchronize.php:1159
msgid "Host"
msgstr "Värd"
@@ -3251,853 +3251,6 @@ msgstr "Inget"
msgid "Convert to Kana"
msgstr ""
-#. l10n: Text direction, use either ltr or rtl
-#: libraries/messages.inc.php:19
-msgid "ltr"
-msgstr "ltr"
-
-#: libraries/messages.inc.php:21
-msgid "Content of table __TABLE__"
-msgstr "Innehåll i tabell __TABLE__"
-
-#: libraries/messages.inc.php:22
-msgid "(continued)"
-msgstr "(fortsättning)"
-
-#: libraries/messages.inc.php:23
-msgid "Structure of table __TABLE__"
-msgstr "Struktur för tabell __TABLE__"
-
-#: libraries/messages.inc.php:25 server_privileges.php:227
-msgid "Includes all privileges except GRANT."
-msgstr "Inkluderar alla privilegier utom GRANT."
-
-#: libraries/messages.inc.php:26 server_privileges.php:153
-#: server_privileges.php:476
-msgid "Allows altering the structure of existing tables."
-msgstr "Tillåter ändring av befintliga tabellers struktur."
-
-#: libraries/messages.inc.php:27 server_privileges.php:169
-#: server_privileges.php:482
-msgid "Allows altering and dropping stored routines."
-msgstr "Tillåter ändring och borttagning av lagrade rutiner."
-
-#: libraries/messages.inc.php:28 server_privileges.php:145
-#: server_privileges.php:475
-msgid "Allows creating new databases and tables."
-msgstr "Tillåter skapande av nya databaser och tabeller."
-
-#: libraries/messages.inc.php:29 server_privileges.php:168
-#: server_privileges.php:481
-msgid "Allows creating stored routines."
-msgstr "Tillåter skapande av lagrade rutiner."
-
-#: libraries/messages.inc.php:30 server_privileges.php:475
-msgid "Allows creating new tables."
-msgstr "Tillåter skapande av nya tabeller."
-
-#: libraries/messages.inc.php:31 server_privileges.php:156
-#: server_privileges.php:479
-msgid "Allows creating temporary tables."
-msgstr "Tillåter skapande av temporära tabeller."
-
-#: libraries/messages.inc.php:32 server_privileges.php:170
-#: server_privileges.php:515
-msgid "Allows creating, dropping and renaming user accounts."
-msgstr "Tillåter skapande, borttagning och omdöpning av användarkonton."
-
-#: libraries/messages.inc.php:33 server_privileges.php:160
-#: server_privileges.php:164 server_privileges.php:487
-#: server_privileges.php:491
-msgid "Allows creating new views."
-msgstr "Tillåter skapande av nya vyer."
-
-#: libraries/messages.inc.php:34 server_privileges.php:144
-#: server_privileges.php:467
-msgid "Allows deleting data."
-msgstr "Tillåter borttagning av data."
-
-#: libraries/messages.inc.php:35 server_privileges.php:146
-#: server_privileges.php:478
-msgid "Allows dropping databases and tables."
-msgstr "Tillåter borttagning av databaser och tabeller."
-
-#: libraries/messages.inc.php:36 server_privileges.php:478
-msgid "Allows dropping tables."
-msgstr "Tillåter borttagning av tabeller."
-
-#: libraries/messages.inc.php:37 server_privileges.php:161
-#: server_privileges.php:495
-msgid "Allows to set up events for the event scheduler"
-msgstr "Tillåter skapande av händelser för händelseschemaläggaren"
-
-#: libraries/messages.inc.php:38 server_privileges.php:171
-#: server_privileges.php:483
-msgid "Allows executing stored routines."
-msgstr "Tillåter utförande av lagrade rutiner."
-
-#: libraries/messages.inc.php:39 server_privileges.php:150
-#: server_privileges.php:470
-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/messages.inc.php:40 server_privileges.php:501
-msgid ""
-"Allows adding users and privileges without reloading the privilege tables."
-msgstr ""
-"Tillåter tillägg av användare och privilegier utan omladdning av "
-"privilegiumtabellerna."
-
-#: libraries/messages.inc.php:41 server_privileges.php:152
-#: server_privileges.php:477
-msgid "Allows creating and dropping indexes."
-msgstr "Tillåter skapande och borttagning av index."
-
-#: libraries/messages.inc.php:42 server_privileges.php:142
-#: server_privileges.php:403 server_privileges.php:465
-msgid "Allows inserting and replacing data."
-msgstr "Tillåter infogning och ersättning av data."
-
-#: libraries/messages.inc.php:43 server_privileges.php:157
-#: server_privileges.php:510
-msgid "Allows locking tables for the current thread."
-msgstr "Tillåter låsning av tabeller för gällande tråd."
-
-#: libraries/messages.inc.php:44 server_privileges.php:607
-#: server_privileges.php:609
-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/messages.inc.php:45 server_privileges.php:595
-#: server_privileges.php:597
-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/messages.inc.php:46 server_privileges.php:601
-#: server_privileges.php:603
-msgid ""
-"Limits the number of commands that change any table or database the user may "
-"execute per hour."
-msgstr ""
-"Begränsar antalet kommandon, vilka ändrar någon tabell eller databas, som "
-"användaren kan utföra per timme."
-
-#: libraries/messages.inc.php:47 server_privileges.php:613
-#: server_privileges.php:615
-msgid "Limits the number of simultaneous connections the user may have."
-msgstr "Begränsar antalet samtidiga förbindelser som användaren kan ha."
-
-#: libraries/messages.inc.php:48 server_privileges.php:149
-#: server_privileges.php:505
-msgid "Allows viewing processes of all users"
-msgstr "Tillåter visning av processer för alla användare"
-
-#: libraries/messages.inc.php:49 server_privileges.php:151
-#: server_privileges.php:409 server_privileges.php:511
-msgid "Has no effect in this MySQL version."
-msgstr "Har ingen verkan i denna MySQL-version."
-
-#: libraries/messages.inc.php:50 server_privileges.php:147
-#: server_privileges.php:506
-msgid "Allows reloading server settings and flushing the server's caches."
-msgstr ""
-"Tillåter omladdning av serverinställningar och rensning av serverns cache."
-
-#: libraries/messages.inc.php:51 server_privileges.php:159
-#: server_privileges.php:513
-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/messages.inc.php:52 server_privileges.php:158
-#: server_privileges.php:514
-msgid "Needed for the replication slaves."
-msgstr "Nödvändigt för replikeringsslavar."
-
-#: libraries/messages.inc.php:53 server_privileges.php:141
-#: server_privileges.php:400 server_privileges.php:464
-msgid "Allows reading data."
-msgstr "Tillåter läsning av data."
-
-#: libraries/messages.inc.php:54 server_privileges.php:154
-#: server_privileges.php:508
-msgid "Gives access to the complete list of databases."
-msgstr "Ger tillgång till den fullständiga databaslistan."
-
-#: libraries/messages.inc.php:55 server_privileges.php:165
-#: server_privileges.php:167 server_privileges.php:480
-msgid "Allows performing SHOW CREATE VIEW queries."
-msgstr "Tillåter utförande av SHOW CREATE VIEW-frågor."
-
-#: libraries/messages.inc.php:56 server_privileges.php:148
-#: server_privileges.php:507
-msgid "Allows shutting down the server."
-msgstr "Tillåter avstängning av servern."
-
-#: libraries/messages.inc.php:57 server_privileges.php:155
-#: server_privileges.php:504
-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 ""
-"Tillåter uppkoppling, även om maximala antalet förbindelser är nådd. "
-"Nödvändig för de flesta administrativa funktioner, som att sätta globala "
-"variabler eller döda andra användares trådar."
-
-#: libraries/messages.inc.php:58 server_privileges.php:162
-#: server_privileges.php:496
-msgid "Allows creating and dropping triggers"
-msgstr "Tillåter skapande och borttagning av utlösare"
-
-#: libraries/messages.inc.php:59 server_privileges.php:143
-#: server_privileges.php:406 server_privileges.php:466
-msgid "Allows changing data."
-msgstr "Tillåter ändring av data."
-
-#: libraries/messages.inc.php:60 server_privileges.php:221
-msgid "No privileges."
-msgstr "Inga privilegier."
-
-#: libraries/messages.inc.php:62
-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 ""
-"Antalet transaktioner som använde den temporära binära loggcachen, men som "
-"överskred värdet binlog_cache_size och använde en temporär fil för att lagra "
-"satser från transaktionen."
-
-#: libraries/messages.inc.php:63
-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/messages.inc.php:64
-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 "
-"to increase the tmp_table_size value to cause temporary tables to be memory-"
-"based instead of disk-based."
-msgstr ""
-"Antalet temporära tabeller på disk skapade automatiskt av servern under "
-"utförande av satser. Om värdet Created_tmp_disk_tables är stort vill du "
-"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/messages.inc.php:65
-msgid "How many temporary files mysqld has created."
-msgstr "Antalet temporära filer som mysqld har skapat."
-
-#: libraries/messages.inc.php:66
-msgid ""
-"The number of in-memory temporary tables created automatically by the server "
-"while executing statements."
-msgstr ""
-"Antalet temporära tabeller i minne skapade automatiskt av servern under "
-"utförande av satser."
-
-#: libraries/messages.inc.php:67
-msgid ""
-"The number of rows written with INSERT DELAYED for which some error occurred "
-"(probably duplicate key)."
-msgstr ""
-"Antalet rader skrivna med INSERT DELAYED för vilka något fel uppstod "
-"(förmodligen dubblerad nyckel)."
-
-#: libraries/messages.inc.php:68
-msgid ""
-"The number of INSERT DELAYED handler threads in use. Every different table "
-"on which one uses INSERT DELAYED gets its own thread."
-msgstr ""
-"Antalet INSERT DELAYED-hanteringstrådar i bruk. Varje tabell på vilken man "
-"använder INSERT DELAYED får sin egen tråd."
-
-#: libraries/messages.inc.php:69
-msgid "The number of INSERT DELAYED rows written."
-msgstr "Antalet skrivna rader med INSERT DELAYED."
-
-#: libraries/messages.inc.php:70
-msgid "The number of executed FLUSH statements."
-msgstr "Antalet utförda FLUSH-satser."
-
-#: libraries/messages.inc.php:71
-msgid "The number of internal COMMIT statements."
-msgstr "Antalet interna COMMIT-satser."
-
-#: libraries/messages.inc.php:72
-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/messages.inc.php:73
-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 ""
-"MySQL-servern kan fråga lagringsmotorn NDB Cluster om den känner till en "
-"tabell med ett givet namn. Detta kallas upptäckt. Handler_discover indikerar "
-"antalet gånger tabeller har upptäckts."
-
-#: libraries/messages.inc.php:74
-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 ""
-"Antalet gånger första posten lästes från ett index. Om detta värde är högt "
-"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/messages.inc.php:75
-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 ""
-"Antalet efterfrågningar att läsa en rad baserat på en nyckel. Om detta värde "
-"är högt är det en bra indikation på att dina frågor och tabeller är riktigt "
-"indexerade."
-
-#: libraries/messages.inc.php:76
-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 ""
-"Antalet efterfrågningar att läsa den följande raden i nyckelordning. Detta "
-"värde ökas om du frågar en indexkolumn med en urvalsbegränsning eller om du "
-"gör en indexavsökning."
-
-#: libraries/messages.inc.php:77
-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 ""
-"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/messages.inc.php:78
-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 "
-"probably have a lot of queries that require MySQL to scan whole tables or "
-"you have joins that don't use keys properly."
-msgstr ""
-"Antalet efterfrågningar att läsa en rad baserat på en fix position. Detta "
-"värde är högt om du ställer många frågor som kräver sortering av resultatet. "
-"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/messages.inc.php:79
-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 "
-"tables are not properly indexed or that your queries are not written to take "
-"advantage of the indexes you have."
-msgstr ""
-"Antalet efterfrågningar att läsa den följande raden i datafilen. Detta värde "
-"är högt om du gör många tabellavsökningar. I allmänhet antyder detta att "
-"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/messages.inc.php:80
-msgid "The number of internal ROLLBACK statements."
-msgstr "Antalet interna ROLLBACK-satser."
-
-#: libraries/messages.inc.php:81
-msgid "The number of requests to update a row in a table."
-msgstr "Antalet efterfrågningar att uppdatera en rad i en tabell."
-
-#: libraries/messages.inc.php:82
-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/messages.inc.php:83
-msgid "The number of pages containing data (dirty or clean)."
-msgstr "Antalet sidor innehållande data (orena eller rena)."
-
-#: libraries/messages.inc.php:84
-msgid "The number of pages currently dirty."
-msgstr "Antalet sidor för närvarande orena."
-
-#: libraries/messages.inc.php:85
-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/messages.inc.php:86
-msgid "The number of free pages."
-msgstr "Antalet fria sidor."
-
-#: libraries/messages.inc.php:87
-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 ""
-"Antalet låsta sidor i InnoDB-buffert. Dessa är sidor som för närvarande "
-"läses eller skrivs eller som inte kan rensas eller tas bort av någon annan "
-"anledning."
-
-#: libraries/messages.inc.php:88
-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 "
-"be calculated as Innodb_buffer_pool_pages_total - "
-"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data."
-msgstr ""
-"Antalet upptagna sidor pga att de har blivit allokerade som administrativt "
-"extrautrymme för bl.a. radlås eller adaptivt hashindex. Detta värde kan "
-"också beräknas som Innodb_buffer_pool_pages_total - "
-"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data."
-
-#: libraries/messages.inc.php:89
-msgid "Total size of buffer pool, in pages."
-msgstr "Total storlek på buffert, i sidor."
-
-#: libraries/messages.inc.php:90
-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 ""
-"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/messages.inc.php:91
-msgid ""
-"The number of sequential read-aheads InnoDB initiated. This happens when "
-"InnoDB does a sequential full table scan."
-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/messages.inc.php:92
-msgid "The number of logical read requests InnoDB has done."
-msgstr "Antalet logiska läsefterfrågningar som InnoDB har gjort."
-
-#: libraries/messages.inc.php:93
-msgid ""
-"The number of logical reads that InnoDB could not satisfy from buffer pool "
-"and had to do a single-page read."
-msgstr ""
-"Antalet logiska läsningar som InnoDB inte kunde uppfylla från buffert och "
-"fick göra en enkelsidig läsning."
-
-#: libraries/messages.inc.php:94
-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 "
-"available, it's necessary to wait for pages to be flushed first. This "
-"counter counts instances of these waits. If the buffer pool size was set "
-"properly, this value should be small."
-msgstr ""
-"Normalt sker skrivningar till InnoDB-bufferten i bakgrunden. Dock om det "
-"behövs läsas eller skapas en sida och inga rena sidor finns tillgängliga, så "
-"är det nödvändigt att vänta på att sidor rensas först. Denna räknare räknar "
-"fall med dessa väntanden. Om buffertstorleken var riktigt satt ska detta "
-"värde vara litet."
-
-#: libraries/messages.inc.php:95
-msgid "The number writes done to the InnoDB buffer pool."
-msgstr "Antalet skrivningar gjorda till InnoDB-bufferten."
-
-#: libraries/messages.inc.php:96
-msgid "The number of fsync() operations so far."
-msgstr "Antalet fsync()-operationer hittills."
-
-#: libraries/messages.inc.php:97
-msgid "The current number of pending fsync() operations."
-msgstr "Nuvarande antal pågående fsync()-operationer."
-
-#: libraries/messages.inc.php:98
-msgid "The current number of pending reads."
-msgstr "Nuvarande antal pågående läsningar."
-
-#: libraries/messages.inc.php:99
-msgid "The current number of pending writes."
-msgstr "Nuvarande antal pågående skrivningar."
-
-#: libraries/messages.inc.php:100
-msgid "The amount of data read so far, in bytes."
-msgstr "Mängden data läst hittills, i bytes."
-
-#: libraries/messages.inc.php:101
-msgid "The total number of data reads."
-msgstr "Totalt antal läsningar av data."
-
-#: libraries/messages.inc.php:102
-msgid "The total number of data writes."
-msgstr "Totalt antal skrivningar av data."
-
-#: libraries/messages.inc.php:103
-msgid "The amount of data written so far, in bytes."
-msgstr "Mängden data skriven hittills, i bytes."
-
-#: libraries/messages.inc.php:104
-msgid "The number of pages that have been written for doublewrite operations."
-msgstr ""
-"Antalet dubbelskrivningar som har utförts och antalet sidor som har skrivits "
-"för detta ändamål."
-
-#: libraries/messages.inc.php:105
-msgid "The number of doublewrite operations that have been performed."
-msgstr ""
-"Antalet dubbelskrivningar som har utförts och antalet sidor som har skrivits "
-"för detta ändamål."
-
-#: libraries/messages.inc.php:106
-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 ""
-"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/messages.inc.php:107
-msgid "The number of log write requests."
-msgstr "Antalet efterfrågningar att skriva till logg."
-
-#: libraries/messages.inc.php:108
-msgid "The number of physical writes to the log file."
-msgstr "Antalet fysiska skrivningar till loggfilen."
-
-#: libraries/messages.inc.php:109
-msgid "The number of fsync() writes done to the log file."
-msgstr "Antalet fsync()-skrivningar gjorda till loggfilen."
-
-#: libraries/messages.inc.php:110
-msgid "The number of pending log file fsyncs."
-msgstr "Antalet pågående fsync() av loggfil."
-
-#: libraries/messages.inc.php:111
-msgid "Pending log file writes."
-msgstr "Pågående skrivningar till loggfil."
-
-#: libraries/messages.inc.php:112
-msgid "The number of bytes written to the log file."
-msgstr "Antalet bytes skrivna till loggfilen."
-
-#: libraries/messages.inc.php:113
-msgid "The number of pages created."
-msgstr "Antalet skapade sidor."
-
-#: libraries/messages.inc.php:114
-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 ""
-"Den inkompilerade InnoDB-sidstorleken (standard 16kB). Många värden räknas i "
-"sidor; sidstorleken tillåter dem att enkelt omvandlas till bytes."
-
-#: libraries/messages.inc.php:115
-msgid "The number of pages read."
-msgstr "Antalet lästa sidor."
-
-#: libraries/messages.inc.php:116
-msgid "The number of pages written."
-msgstr "Antalet skrivna sidor."
-
-#: libraries/messages.inc.php:117
-msgid "The number of row locks currently being waited for."
-msgstr "Antalet radlås som för närvarande väntas på."
-
-#: libraries/messages.inc.php:118
-msgid "The average time to acquire a row lock, in milliseconds."
-msgstr "Genomsnittlig tid för att skaffa ett radlås, i millisekunder."
-
-#: libraries/messages.inc.php:119
-msgid "The total time spent in acquiring row locks, in milliseconds."
-msgstr "Total tid spenderad på att skaffa radlås, i millisekunder."
-
-#: libraries/messages.inc.php:120
-msgid "The maximum time to acquire a row lock, in milliseconds."
-msgstr "Maximal tid för att skaffa ett radlås, i millisekunder."
-
-#: libraries/messages.inc.php:121
-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/messages.inc.php:122
-msgid "The number of rows deleted from InnoDB tables."
-msgstr "Antalet rader borttagna från InnoDB-tabeller."
-
-#: libraries/messages.inc.php:123
-msgid "The number of rows inserted in InnoDB tables."
-msgstr "Antalet rader tillagda i InnoDB-tabeller."
-
-#: libraries/messages.inc.php:124
-msgid "The number of rows read from InnoDB tables."
-msgstr "Antalet rader lästa från InnoDB-tabeller."
-
-#: libraries/messages.inc.php:125
-msgid "The number of rows updated in InnoDB tables."
-msgstr "Antalet rader uppdaterade i InnoDB-tabeller."
-
-#: libraries/messages.inc.php:126
-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 ""
-"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/messages.inc.php:127
-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 ""
-"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/messages.inc.php:128
-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 ""
-"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/messages.inc.php:129
-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/messages.inc.php:130
-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 ""
-"Antalet fysiska läsningar av ett nyckelblock från disk. Om värdet Key_reads "
-"ä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/messages.inc.php:131
-msgid "The number of requests to write a key block to the cache."
-msgstr "Antalet efterfrågningar att skriva ett nyckelblock till cachen."
-
-#: libraries/messages.inc.php:132
-msgid "The number of physical writes of a key block to disk."
-msgstr "Antalet fysiska skrivningar av ett nyckelblock till disk."
-
-#: libraries/messages.inc.php:133
-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 ""
-"Den totala kostnaden för den senaste kompilerade frågan enligt beräkning av "
-"frågeoptimeraren. Användbart vid jämförelse av kostnad för olika frågesätt "
-"av samma fråga. Standardvärdet 0 innebär att ingen fråga har kompilerats "
-"ännu."
-
-#: libraries/messages.inc.php:134
-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/messages.inc.php:135
-msgid ""
-"The number of tables that have been opened. If opened tables is big, your "
-"table cache value is probably too small."
-msgstr ""
-"Antalet tabeller som har öppnats. Om antalet öppnade tabeller är stort är "
-"förmodligen ditt tabellcache-värde för litet."
-
-#: libraries/messages.inc.php:136
-msgid "The number of files that are open."
-msgstr "Antalet filer som är öppna."
-
-#: libraries/messages.inc.php:137
-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/messages.inc.php:138
-msgid "The number of tables that are open."
-msgstr "Antalet tabeller som är öppna."
-
-#: libraries/messages.inc.php:139
-msgid "The number of free memory blocks in query cache."
-msgstr "Antalet fria minnesblock i frågecachen."
-
-#: libraries/messages.inc.php:140
-msgid "The amount of free memory for query cache."
-msgstr "Mängden fritt minne för frågecache."
-
-#: libraries/messages.inc.php:141
-msgid "The number of cache hits."
-msgstr "Antalet cache-träffar."
-
-#: libraries/messages.inc.php:142
-msgid "The number of queries added to the cache."
-msgstr "Antalet frågor tillagda i cachen."
-
-#: libraries/messages.inc.php:143
-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 "
-"cache size. The query cache uses a least recently used (LRU) strategy to "
-"decide which queries to remove from the cache."
-msgstr ""
-"Antalet frågor som har tagits bort från cachen för att frigöra minne för "
-"cachning av nya frågor. Denna information kan hjälpa dig att ställa in "
-"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/messages.inc.php:144
-msgid ""
-"The number of non-cached queries (not cachable, or not cached due to the "
-"query_cache_type setting)."
-msgstr ""
-"Antalet icke-cachade frågor (inte möjliga att cacha eller inte cachade pga "
-"inställningen query_cache_type)."
-
-#: libraries/messages.inc.php:145
-msgid "The number of queries registered in the cache."
-msgstr "Antalet frågor registrerade i cachen."
-
-#: libraries/messages.inc.php:146
-msgid "The total number of blocks in the query cache."
-msgstr "Totala antalet block i frågecachen."
-
-#: libraries/messages.inc.php:147
-msgctxt "$strShowStatusReset"
-msgid "Reset"
-msgstr "Återställ"
-
-#: libraries/messages.inc.php:148
-msgid "The status of failsafe replication (not yet implemented)."
-msgstr "Status för felsäker replikering (ännu inte implementerat)."
-
-#: libraries/messages.inc.php:149
-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 ""
-"Antalet föreningar som inte använder index. Om detta värde inte är 0, bör du "
-"noggrant kontrollera index för dina tabeller."
-
-#: libraries/messages.inc.php:150
-msgid "The number of joins that used a range search on a reference table."
-msgstr "Antalet föreningar som använde en urvalssökning på en referenstabell."
-
-#: libraries/messages.inc.php:151
-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 ""
-"Antalet föreningar utan nycklar som kontrollerar nyckelanvändning efter "
-"varje rad. (Om detta värde inte är 0, bör du noggrant kontrollera index för "
-"dina tabeller.)"
-
-#: libraries/messages.inc.php:152
-msgid ""
-"The number of joins that used ranges on the first table. (It's normally not "
-"critical even if this is big.)"
-msgstr ""
-"Antalet föreningar som använde urval på den första tabellen. (Det är normalt "
-"inte kritiskt även om detta är stort.)"
-
-#: libraries/messages.inc.php:153
-msgid "The number of joins that did a full scan of the first table."
-msgstr ""
-"Antalet föreningar som gjorde en fullständig avsökning av första tabellen."
-
-#: libraries/messages.inc.php:154
-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/messages.inc.php:155
-msgid ""
-"Total (since startup) number of times the replication slave SQL thread has "
-"retried transactions."
-msgstr ""
-"Totalt (sedan start) antal gånger som replikeringsslavens SQL-tråd har "
-"omprövat transaktioner."
-
-#: libraries/messages.inc.php:156
-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/messages.inc.php:157
-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/messages.inc.php:158
-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/messages.inc.php:159
-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 ""
-"Antalet sammanslagningar som sorteringsalgoritmen har behövt utföra. Om "
-"detta värde är stort bör du överväga att öka värdet i systemvariabeln "
-"sort_buffer_size."
-
-#: libraries/messages.inc.php:160
-msgid "The number of sorts that were done with ranges."
-msgstr "Antalet sorteringar som gjordes med urval."
-
-#: libraries/messages.inc.php:161
-msgid "The number of sorted rows."
-msgstr "Antalet sorterade rader."
-
-#: libraries/messages.inc.php:162
-msgid "The number of sorts that were done by scanning the table."
-msgstr "Antalet sorteringar som har gjorts genom avsökning av tabellen."
-
-#: libraries/messages.inc.php:163
-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/messages.inc.php:164
-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 "
-"should first optimize your queries, and then either split your table or "
-"tables or use replication."
-msgstr ""
-"Antalet gånger som ett tabellås inte kunde förvärvas omedelbart och en "
-"väntan var nödvändig. Om detta värde är högt och du har prestandaproblem bör "
-"du först optimera dina frågor och antingen dela upp din tabell eller "
-"tabeller eller använda replikering."
-
-#: libraries/messages.inc.php:165
-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 ""
-"Antalet trådar i trådcachen. Cachens träffrekvens kan beräknas som "
-"Threads_created/Connections. Om detta värde är rött bör du öka värdet "
-"thread_cache_size."
-
-#: libraries/messages.inc.php:166
-msgid "The number of currently open connections."
-msgstr "Antalet för närvarande öppna förbindelser."
-
-#: libraries/messages.inc.php:167
-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 "
-"doesn't give a notable performance improvement if you have a good thread "
-"implementation.)"
-msgstr ""
-"Antalet trådar skapade för att hantera förbindelser. Om värdet "
-"Threads_created är stort, vill du kanske öka värdet thread_cache_size. "
-"(Normalt ger detta inte någon märkbar prestandaförbättring om du har en bra "
-"trådimplementering.)"
-
-#: libraries/messages.inc.php:168
-msgid "The number of threads that are not sleeping."
-msgstr "Antalet trådar som inte är vilande."
-
#: libraries/mult_submits.inc.php:76 libraries/tbl_properties.inc.php:513
#: tbl_structure.php:29 tbl_structure.php:153 tbl_structure.php:157
#: tbl_structure.php:473
@@ -4415,8 +3568,8 @@ msgstr ""
#: libraries/replication_gui.lib.php:55 libraries/replication_gui.lib.php:56
#: libraries/replication_gui.lib.php:249 libraries/replication_gui.lib.php:252
-#: libraries/replication_gui.lib.php:259 server_privileges.php:672
-#: server_privileges.php:675 server_privileges.php:682
+#: libraries/replication_gui.lib.php:259 server_privileges.php:711
+#: server_privileges.php:714 server_privileges.php:721
#: server_synchronize.php:1171
msgid "User name"
msgstr "Användarnamn"
@@ -4435,11 +3588,11 @@ msgid "Slave status"
msgstr "Slave-status"
#: libraries/replication_gui.lib.php:114 libraries/sql_query_form.lib.php:445
-#: server_status.php:626 server_variables.php:52
+#: server_status.php:737 server_variables.php:52
msgid "Variable"
msgstr "Variabel"
-#: libraries/replication_gui.lib.php:115 server_status.php:627
+#: libraries/replication_gui.lib.php:115 server_status.php:738
#: tbl_change.php:324 tbl_printview.php:370 tbl_select.php:139
#: tbl_structure.php:729
msgid "Value"
@@ -4459,34 +3612,34 @@ msgstr ""
msgid "Add slave replication user"
msgstr ""
-#: libraries/replication_gui.lib.php:254 server_privileges.php:677
+#: libraries/replication_gui.lib.php:254 server_privileges.php:716
msgid "Any user"
msgstr "Vilken användare som helst"
#: libraries/replication_gui.lib.php:255 libraries/replication_gui.lib.php:323
-#: libraries/replication_gui.lib.php:346 server_privileges.php:678
-#: server_privileges.php:745 server_privileges.php:769
-#: server_privileges.php:1889 server_privileges.php:1919
+#: libraries/replication_gui.lib.php:346 server_privileges.php:717
+#: server_privileges.php:784 server_privileges.php:808
+#: server_privileges.php:1928 server_privileges.php:1958
msgid "Use text field"
msgstr "Använd textfältet"
-#: libraries/replication_gui.lib.php:302 server_privileges.php:725
+#: libraries/replication_gui.lib.php:302 server_privileges.php:764
msgid "Any host"
msgstr "Vilken värd som helst"
-#: libraries/replication_gui.lib.php:306 server_privileges.php:729
+#: libraries/replication_gui.lib.php:306 server_privileges.php:768
msgid "Local"
msgstr "Lokal"
-#: libraries/replication_gui.lib.php:312 server_privileges.php:734
+#: libraries/replication_gui.lib.php:312 server_privileges.php:773
msgid "This Host"
msgstr "Denna värd"
-#: libraries/replication_gui.lib.php:318 server_privileges.php:740
+#: libraries/replication_gui.lib.php:318 server_privileges.php:779
msgid "Use Host Table"
msgstr "Använd värdtabell"
-#: libraries/replication_gui.lib.php:331 server_privileges.php:753
+#: libraries/replication_gui.lib.php:331 server_privileges.php:792
msgid ""
"When Host table is used, this field is ignored and values stored in Host "
"table are used instead."
@@ -4494,8 +3647,25 @@ msgstr ""
"När värdtabellen används ignoreras detta fält och värden lagrade i "
"värdtabllen används istället."
-#: libraries/select_lang.lib.php:480 libraries/select_lang.lib.php:486
-#: libraries/select_lang.lib.php:492
+#. l10n: Text direction, use either ltr or rtl
+#: libraries/select_lang.lib.php:491
+msgid "ltr"
+msgstr "ltr"
+
+#: libraries/select_lang.lib.php:493
+msgid "Content of table __TABLE__"
+msgstr "Innehåll i tabell __TABLE__"
+
+#: libraries/select_lang.lib.php:494
+msgid "(continued)"
+msgstr "(fortsättning)"
+
+#: libraries/select_lang.lib.php:495
+msgid "Structure of table __TABLE__"
+msgstr "Struktur för tabell __TABLE__"
+
+#: libraries/select_lang.lib.php:500 libraries/select_lang.lib.php:506
+#: libraries/select_lang.lib.php:512
#, php-format
msgid "Unknown language: %1$s."
msgstr "Okänt språk: %1$s."
@@ -4506,7 +3676,7 @@ msgid "Servers"
msgstr "Servrar"
#: libraries/server_links.inc.php:53 server_engines.php:112
-#: server_engines.php:116 server_status.php:304 test/theme.php:105
+#: server_engines.php:116 server_status.php:415 test/theme.php:105
msgid "Variables"
msgstr "Variabler"
@@ -4519,7 +3689,7 @@ msgid "Engines"
msgstr "Motorer"
#: libraries/server_links.inc.php:76 server_binlog.php:110
-#: server_status.php:253 test/theme.php:121
+#: server_status.php:364 test/theme.php:121
msgid "Binary log"
msgstr "Binär logg"
@@ -4999,8 +4169,8 @@ msgstr "Återställ"
msgid "Protocol version"
msgstr "Protokollversion"
-#: main.php:189 server_privileges.php:1350 server_privileges.php:1497
-#: server_privileges.php:1611 server_privileges.php:2029
+#: main.php:189 server_privileges.php:1389 server_privileges.php:1536
+#: server_privileges.php:1650 server_privileges.php:2068
#: server_processlist.php:54
msgid "User"
msgstr "Användare"
@@ -5392,7 +4562,7 @@ msgstr "%s databaser har tagits bort."
msgid "Databases statistics"
msgstr "Databas-statistik"
-#: server_databases.php:117 server_status.php:260
+#: server_databases.php:117 server_status.php:371
#: setup/lib/messages.inc.php:117
msgid "Tables"
msgstr "Tabeller"
@@ -5413,6 +4583,17 @@ msgstr "Serverkonfiguration"
msgid "Jump to database"
msgstr "Inga databaser"
+#: server_databases.php:267
+#, fuzzy
+msgid "Not replicated"
+msgstr "Serverkonfiguration"
+
+#: server_databases.php:273
+#, fuzzy
+#| msgid "Replication"
+msgid "Replicated"
+msgstr "Replikering"
+
#: server_databases.php:289
#, php-format
msgid "Check privileges for database "%s"."
@@ -5446,144 +4627,334 @@ msgstr "Lagringsmotorer"
msgid "View dump (schema) of databases"
msgstr "Visa SQL-satser för databaser"
-#: server_privileges.php:263 server_privileges.php:264
+#: server_privileges.php:24 server_privileges.php:266
+msgid "Includes all privileges except GRANT."
+msgstr "Inkluderar alla privilegier utom GRANT."
+
+#: server_privileges.php:25 server_privileges.php:192
+#: server_privileges.php:515
+msgid "Allows altering the structure of existing tables."
+msgstr "Tillåter ändring av befintliga tabellers struktur."
+
+#: server_privileges.php:26 server_privileges.php:208
+#: server_privileges.php:521
+msgid "Allows altering and dropping stored routines."
+msgstr "Tillåter ändring och borttagning av lagrade rutiner."
+
+#: server_privileges.php:27 server_privileges.php:184
+#: server_privileges.php:514
+msgid "Allows creating new databases and tables."
+msgstr "Tillåter skapande av nya databaser och tabeller."
+
+#: server_privileges.php:28 server_privileges.php:207
+#: server_privileges.php:520
+msgid "Allows creating stored routines."
+msgstr "Tillåter skapande av lagrade rutiner."
+
+#: server_privileges.php:29 server_privileges.php:514
+msgid "Allows creating new tables."
+msgstr "Tillåter skapande av nya tabeller."
+
+#: server_privileges.php:30 server_privileges.php:195
+#: server_privileges.php:518
+msgid "Allows creating temporary tables."
+msgstr "Tillåter skapande av temporära tabeller."
+
+#: server_privileges.php:31 server_privileges.php:209
+#: server_privileges.php:554
+msgid "Allows creating, dropping and renaming user accounts."
+msgstr "Tillåter skapande, borttagning och omdöpning av användarkonton."
+
+#: server_privileges.php:32 server_privileges.php:199
+#: server_privileges.php:203 server_privileges.php:526
+#: server_privileges.php:530
+msgid "Allows creating new views."
+msgstr "Tillåter skapande av nya vyer."
+
+#: server_privileges.php:33 server_privileges.php:183
+#: server_privileges.php:506
+msgid "Allows deleting data."
+msgstr "Tillåter borttagning av data."
+
+#: server_privileges.php:34 server_privileges.php:185
+#: server_privileges.php:517
+msgid "Allows dropping databases and tables."
+msgstr "Tillåter borttagning av databaser och tabeller."
+
+#: server_privileges.php:35 server_privileges.php:517
+msgid "Allows dropping tables."
+msgstr "Tillåter borttagning av tabeller."
+
+#: server_privileges.php:36 server_privileges.php:200
+#: server_privileges.php:534
+msgid "Allows to set up events for the event scheduler"
+msgstr "Tillåter skapande av händelser för händelseschemaläggaren"
+
+#: server_privileges.php:37 server_privileges.php:210
+#: server_privileges.php:522
+msgid "Allows executing stored routines."
+msgstr "Tillåter utförande av lagrade rutiner."
+
+#: server_privileges.php:38 server_privileges.php:189
+#: server_privileges.php:509
+msgid "Allows importing data from and exporting data into files."
+msgstr "Tillåter import av data från och export av data till filer."
+
+#: server_privileges.php:39 server_privileges.php:540
+msgid ""
+"Allows adding users and privileges without reloading the privilege tables."
+msgstr ""
+"Tillåter tillägg av användare och privilegier utan omladdning av "
+"privilegiumtabellerna."
+
+#: server_privileges.php:40 server_privileges.php:191
+#: server_privileges.php:516
+msgid "Allows creating and dropping indexes."
+msgstr "Tillåter skapande och borttagning av index."
+
+#: server_privileges.php:41 server_privileges.php:181
+#: server_privileges.php:442 server_privileges.php:504
+msgid "Allows inserting and replacing data."
+msgstr "Tillåter infogning och ersättning av data."
+
+#: server_privileges.php:42 server_privileges.php:196
+#: server_privileges.php:549
+msgid "Allows locking tables for the current thread."
+msgstr "Tillåter låsning av tabeller för gällande tråd."
+
+#: server_privileges.php:43 server_privileges.php:646
+#: server_privileges.php:648
+msgid "Limits the number of new connections the user may open per hour."
+msgstr "Begränsar antalet nya förbindelser användaren kan öppna per timme."
+
+#: server_privileges.php:44 server_privileges.php:634
+#: server_privileges.php:636
+msgid "Limits the number of queries the user may send to the server per hour."
+msgstr "Begränsar antalet frågor användaren kan skicka till servern per timme."
+
+#: server_privileges.php:45 server_privileges.php:640
+#: server_privileges.php:642
+msgid ""
+"Limits the number of commands that change any table or database the user may "
+"execute per hour."
+msgstr ""
+"Begränsar antalet kommandon, vilka ändrar någon tabell eller databas, som "
+"användaren kan utföra per timme."
+
+#: server_privileges.php:46 server_privileges.php:652
+#: server_privileges.php:654
+msgid "Limits the number of simultaneous connections the user may have."
+msgstr "Begränsar antalet samtidiga förbindelser som användaren kan ha."
+
+#: server_privileges.php:47 server_privileges.php:188
+#: server_privileges.php:544
+msgid "Allows viewing processes of all users"
+msgstr "Tillåter visning av processer för alla användare"
+
+#: server_privileges.php:48 server_privileges.php:190
+#: server_privileges.php:448 server_privileges.php:550
+msgid "Has no effect in this MySQL version."
+msgstr "Har ingen verkan i denna MySQL-version."
+
+#: server_privileges.php:49 server_privileges.php:186
+#: server_privileges.php:545
+msgid "Allows reloading server settings and flushing the server's caches."
+msgstr ""
+"Tillåter omladdning av serverinställningar och rensning av serverns cache."
+
+#: server_privileges.php:50 server_privileges.php:198
+#: server_privileges.php:552
+msgid "Allows the user to ask where the slaves / masters are."
+msgstr "Ger användaren rätt att fråga var slav- / huvudservrarna är."
+
+#: server_privileges.php:51 server_privileges.php:197
+#: server_privileges.php:553
+msgid "Needed for the replication slaves."
+msgstr "Nödvändigt för replikeringsslavar."
+
+#: server_privileges.php:52 server_privileges.php:180
+#: server_privileges.php:439 server_privileges.php:503
+msgid "Allows reading data."
+msgstr "Tillåter läsning av data."
+
+#: server_privileges.php:53 server_privileges.php:193
+#: server_privileges.php:547
+msgid "Gives access to the complete list of databases."
+msgstr "Ger tillgång till den fullständiga databaslistan."
+
+#: server_privileges.php:54 server_privileges.php:204
+#: server_privileges.php:206 server_privileges.php:519
+msgid "Allows performing SHOW CREATE VIEW queries."
+msgstr "Tillåter utförande av SHOW CREATE VIEW-frågor."
+
+#: server_privileges.php:55 server_privileges.php:187
+#: server_privileges.php:546
+msgid "Allows shutting down the server."
+msgstr "Tillåter avstängning av servern."
+
+#: server_privileges.php:56 server_privileges.php:194
+#: server_privileges.php:543
+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 ""
+"Tillåter uppkoppling, även om maximala antalet förbindelser är nådd. "
+"Nödvändig för de flesta administrativa funktioner, som att sätta globala "
+"variabler eller döda andra användares trådar."
+
+#: server_privileges.php:57 server_privileges.php:201
+#: server_privileges.php:535
+msgid "Allows creating and dropping triggers"
+msgstr "Tillåter skapande och borttagning av utlösare"
+
+#: server_privileges.php:58 server_privileges.php:182
+#: server_privileges.php:445 server_privileges.php:505
+msgid "Allows changing data."
+msgstr "Tillåter ändring av data."
+
+#: server_privileges.php:59 server_privileges.php:260
+msgid "No privileges."
+msgstr "Inga privilegier."
+
+#: server_privileges.php:302 server_privileges.php:303
#, fuzzy
#| msgid "None"
msgctxt "None privileges"
msgid "None"
msgstr "Inget"
-#: server_privileges.php:392 server_privileges.php:527
-#: server_privileges.php:1679 server_privileges.php:1685
+#: server_privileges.php:431 server_privileges.php:566
+#: server_privileges.php:1718 server_privileges.php:1724
msgid "Table-specific privileges"
msgstr "Tabellspecifika privilegier"
-#: server_privileges.php:393 server_privileges.php:535
-#: server_privileges.php:1501
+#: server_privileges.php:432 server_privileges.php:574
+#: server_privileges.php:1540
msgid " Note: MySQL privilege names are expressed in English "
msgstr " Obs! MySQL privilegiumnamn anges på engelska "
-#: server_privileges.php:524 server_privileges.php:1500
+#: server_privileges.php:563 server_privileges.php:1539
msgid "Global privileges"
msgstr "Globala privilegier"
-#: server_privileges.php:526 server_privileges.php:1679
+#: server_privileges.php:565 server_privileges.php:1718
msgid "Database-specific privileges"
msgstr "Databasspecifika privilegier"
-#: server_privileges.php:571
+#: server_privileges.php:610
msgid "Administration"
msgstr "Administration"
-#: server_privileges.php:591
+#: server_privileges.php:630
msgid "Resource limits"
msgstr "Resursbegränsningar"
-#: server_privileges.php:592
+#: server_privileges.php:631
msgid "Note: Setting these options to 0 (zero) removes the limit."
msgstr ""
"Anm: Genom att sätta dessa alternativ till 0 (noll) tas begränsningarna bort."
-#: server_privileges.php:669
+#: server_privileges.php:708
msgid "Login Information"
msgstr "Inloggningsinformation"
-#: server_privileges.php:763
+#: server_privileges.php:802
msgid "Do not change the password"
msgstr "Ändra inte lösenordet"
-#: server_privileges.php:804 server_privileges.php:2166
+#: server_privileges.php:843 server_privileges.php:2205
#, fuzzy
#| msgid "No user(s) found."
msgid "No user found."
msgstr "Hittade ingen användare."
-#: server_privileges.php:848
+#: server_privileges.php:887
#, php-format
msgid "The user %s already exists!"
msgstr "Användaren %s finns redan!"
-#: server_privileges.php:931
+#: server_privileges.php:970
msgid "You have added a new user."
msgstr "Du har lagt till en ny användare."
-#: server_privileges.php:1152
+#: server_privileges.php:1191
#, php-format
msgid "You have updated the privileges for %s."
msgstr "Du har uppdaterat privilegierna för %s."
-#: server_privileges.php:1176
+#: server_privileges.php:1215
#, php-format
msgid "You have revoked the privileges for %s"
msgstr "Du har upphävt privilegierna för %s"
-#: server_privileges.php:1212
+#: server_privileges.php:1251
#, php-format
msgid "The password for %s was changed successfully."
msgstr "Lösenordet för %s har ändrats."
-#: server_privileges.php:1232
+#: server_privileges.php:1271
#, php-format
msgid "Deleting %s"
msgstr "Tar bort %s"
-#: server_privileges.php:1243
+#: server_privileges.php:1282
msgid "No users selected for deleting!"
msgstr "Inga användare valda för borttagning!"
-#: server_privileges.php:1246
+#: server_privileges.php:1285
msgid "Reloading the privileges"
msgstr "Laddar om privilegierna"
-#: server_privileges.php:1261
+#: server_privileges.php:1300
msgid "The selected users have been deleted successfully."
msgstr "De markerade användarna har tagits bort."
-#: server_privileges.php:1296
+#: server_privileges.php:1335
msgid "The privileges were reloaded successfully."
msgstr "Privilegierna har laddats om."
-#: server_privileges.php:1324 server_privileges.php:1610
+#: server_privileges.php:1363 server_privileges.php:1649
msgid "Edit Privileges"
msgstr "Ändra privilegier"
-#: server_privileges.php:1333
+#: server_privileges.php:1372
msgid "Revoke"
msgstr "Upphäv"
-#: server_privileges.php:1365
+#: server_privileges.php:1404
msgid "User overview"
msgstr "Användaröversikt"
-#: server_privileges.php:1502 server_privileges.php:1684
-#: server_privileges.php:2033
+#: server_privileges.php:1541 server_privileges.php:1723
+#: server_privileges.php:2072
msgid "Grant"
msgstr "Grant"
-#: server_privileges.php:1521 server_privileges.php:2123
+#: server_privileges.php:1560 server_privileges.php:2162
msgid "Any"
msgstr "Vem som helst"
-#: server_privileges.php:1570 server_privileges.php:1594
-#: server_privileges.php:1988 server_privileges.php:2177
+#: server_privileges.php:1609 server_privileges.php:1633
+#: server_privileges.php:2027 server_privileges.php:2216
msgid "Add a new User"
msgstr "Lägg till ny användare"
-#: server_privileges.php:1575
+#: server_privileges.php:1614
msgid "Remove selected users"
msgstr "Ta bort markerade användare"
-#: server_privileges.php:1578
+#: server_privileges.php:1617
msgid "Revoke all active privileges from the users and delete them afterwards."
msgstr ""
"Upphäv användarnas alla aktiva privilegier och ta bort användarna efteråt."
-#: server_privileges.php:1579 server_privileges.php:1580
-#: server_privileges.php:1581
+#: server_privileges.php:1618 server_privileges.php:1619
+#: server_privileges.php:1620
msgid "Drop the databases that have the same names as the users."
msgstr "Ta bort databaserna med samma namn som användarna."
-#: server_privileges.php:1597
+#: server_privileges.php:1636
#, php-format
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
@@ -5596,51 +4967,51 @@ msgstr ""
"privilegierna som servern använder ifall manuella ändringar har gjorts. I "
"detta fall bör du %sladda om privilegierna%s innan du fortsätter."
-#: server_privileges.php:1645
+#: server_privileges.php:1684
msgid "The selected user was not found in the privilege table."
msgstr "Den markerade användaren kunde inte hittas i privilegiumtabellen."
-#: server_privileges.php:1685
+#: server_privileges.php:1724
msgid "Column-specific privileges"
msgstr "Kolumnspecifika privilegier"
-#: server_privileges.php:1886
+#: server_privileges.php:1925
msgid "Add privileges on the following database"
msgstr "Lägg till privilegier till följande databas"
-#: server_privileges.php:1904
+#: server_privileges.php:1943
msgid "Wildcards % and _ should be escaped with a \\ to use them literally"
msgstr ""
"Jokertecknen _ och % måste föregås av ett \\ för att användas i egentlig "
"betydelse"
-#: server_privileges.php:1907
+#: server_privileges.php:1946
msgid "Add privileges on the following table"
msgstr "Lägg till privilegier till följande tabell"
-#: server_privileges.php:1964
+#: server_privileges.php:2003
msgid "Change Login Information / Copy User"
msgstr "Ändra inloggningsinformation / Kopiera användare"
-#: server_privileges.php:1967
+#: server_privileges.php:2006
msgid "Create a new user with the same privileges and ..."
msgstr "Skapa en ny användare med samma privilegier och ..."
-#: server_privileges.php:1969
+#: server_privileges.php:2008
msgid "... keep the old one."
msgstr "... behåll den gamla."
-#: server_privileges.php:1970
+#: server_privileges.php:2009
msgid " ... delete the old one from the user tables."
msgstr " ... ta bort den gamla från användartabellerna."
-#: server_privileges.php:1971
+#: server_privileges.php:2010
msgid ""
" ... revoke all active privileges from the old one and delete it afterwards."
msgstr ""
" ... upphäv alla aktiva privilegier från dan gamla och ta bort den efteråt."
-#: server_privileges.php:1972
+#: server_privileges.php:2011
msgid ""
" ... delete the old one from the user tables and reload the privileges "
"afterwards."
@@ -5648,44 +5019,44 @@ msgstr ""
" ... ta bort den gamla från användartabellerna och ladda om privilegierna "
"efteråt."
-#: server_privileges.php:1994
+#: server_privileges.php:2033
msgid "Database for user"
msgstr "Databas för användare"
-#: server_privileges.php:1998
+#: server_privileges.php:2037
#, fuzzy
#| msgid "None"
msgctxt "Create none database for user"
msgid "None"
msgstr "Inget"
-#: server_privileges.php:1999
+#: server_privileges.php:2038
msgid "Create database with same name and grant all privileges"
msgstr "Skapa databas med samma namn och ge alla privilegier"
-#: server_privileges.php:2000
+#: server_privileges.php:2039
msgid "Grant all privileges on wildcard name (username\\_%)"
msgstr "Ge alla privilegier till namn med jokertecken (username\\_%)"
-#: server_privileges.php:2003
+#: server_privileges.php:2042
#, php-format
msgid "Grant all privileges on database "%s""
msgstr "Bevilja alla privilegier för databas "%s""
-#: server_privileges.php:2026
+#: server_privileges.php:2065
#, php-format
msgid "Users having access to "%s""
msgstr "Användare som har tillgång till "%s""
-#: server_privileges.php:2134
+#: server_privileges.php:2173
msgid "global"
msgstr "global"
-#: server_privileges.php:2136
+#: server_privileges.php:2175
msgid "database-specific"
msgstr "databasspecifik"
-#: server_privileges.php:2138
+#: server_privileges.php:2177
msgid "wildcard"
msgstr "jokertecken"
@@ -5732,7 +5103,7 @@ msgstr ""
msgid "This server is configured as master in a replication process."
msgstr ""
-#: server_replication.php:184 server_status.php:281
+#: server_replication.php:184 server_status.php:392
#, fuzzy
msgid "Show master status"
msgstr "Visa slav-status"
@@ -5874,97 +5245,737 @@ msgid ""
"like to configure it?"
msgstr ""
+#: server_status.php:40
+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 ""
+"Antalet transaktioner som använde den temporära binära loggcachen, men som "
+"överskred värdet binlog_cache_size och använde en temporär fil för att lagra "
+"satser från transaktionen."
+
+#: server_status.php:41
+msgid "The number of transactions that used the temporary binary log cache."
+msgstr "Antalet transaktioner som använde den temporära binära loggcachen."
+
+#: server_status.php:42
+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 "
+"to increase the tmp_table_size value to cause temporary tables to be memory-"
+"based instead of disk-based."
+msgstr ""
+"Antalet temporära tabeller på disk skapade automatiskt av servern under "
+"utförande av satser. Om värdet Created_tmp_disk_tables är stort vill du "
+"kanske öka värdet tmp_table_size för att åstadkomma att temporära tabeller "
+"lagras i minne istället för på disk."
+
+#: server_status.php:43
+msgid "How many temporary files mysqld has created."
+msgstr "Antalet temporära filer som mysqld har skapat."
+
+#: server_status.php:44
+msgid ""
+"The number of in-memory temporary tables created automatically by the server "
+"while executing statements."
+msgstr ""
+"Antalet temporära tabeller i minne skapade automatiskt av servern under "
+"utförande av satser."
+
+#: server_status.php:45
+msgid ""
+"The number of rows written with INSERT DELAYED for which some error occurred "
+"(probably duplicate key)."
+msgstr ""
+"Antalet rader skrivna med INSERT DELAYED för vilka något fel uppstod "
+"(förmodligen dubblerad nyckel)."
+
#: server_status.php:46
+msgid ""
+"The number of INSERT DELAYED handler threads in use. Every different table "
+"on which one uses INSERT DELAYED gets its own thread."
+msgstr ""
+"Antalet INSERT DELAYED-hanteringstrådar i bruk. Varje tabell på vilken man "
+"använder INSERT DELAYED får sin egen tråd."
+
+#: server_status.php:47
+msgid "The number of INSERT DELAYED rows written."
+msgstr "Antalet skrivna rader med INSERT DELAYED."
+
+#: server_status.php:48
+msgid "The number of executed FLUSH statements."
+msgstr "Antalet utförda FLUSH-satser."
+
+#: server_status.php:49
+msgid "The number of internal COMMIT statements."
+msgstr "Antalet interna COMMIT-satser."
+
+#: server_status.php:50
+msgid "The number of times a row was deleted from a table."
+msgstr "Antalet gånger en rad togs bort från en tabell."
+
+#: server_status.php:51
+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 ""
+"MySQL-servern kan fråga lagringsmotorn NDB Cluster om den känner till en "
+"tabell med ett givet namn. Detta kallas upptäckt. Handler_discover indikerar "
+"antalet gånger tabeller har upptäckts."
+
+#: server_status.php:52
+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 ""
+"Antalet gånger första posten lästes från ett index. Om detta värde är högt "
+"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."
+
+#: server_status.php:53
+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 ""
+"Antalet efterfrågningar att läsa en rad baserat på en nyckel. Om detta värde "
+"är högt är det en bra indikation på att dina frågor och tabeller är riktigt "
+"indexerade."
+
+#: server_status.php:54
+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 ""
+"Antalet efterfrågningar att läsa den följande raden i nyckelordning. Detta "
+"värde ökas om du frågar en indexkolumn med en urvalsbegränsning eller om du "
+"gör en indexavsökning."
+
+#: server_status.php:55
+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 ""
+"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."
+
+#: server_status.php:56
+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 "
+"probably have a lot of queries that require MySQL to scan whole tables or "
+"you have joins that don't use keys properly."
+msgstr ""
+"Antalet efterfrågningar att läsa en rad baserat på en fix position. Detta "
+"värde är högt om du ställer många frågor som kräver sortering av resultatet. "
+"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."
+
+#: server_status.php:57
+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 "
+"tables are not properly indexed or that your queries are not written to take "
+"advantage of the indexes you have."
+msgstr ""
+"Antalet efterfrågningar att läsa den följande raden i datafilen. Detta värde "
+"är högt om du gör många tabellavsökningar. I allmänhet antyder detta att "
+"dina tabeller inte är riktigt indexerade eller att dina frågor inte är "
+"skrivna för att dra nytta av de index du har."
+
+#: server_status.php:58
+msgid "The number of internal ROLLBACK statements."
+msgstr "Antalet interna ROLLBACK-satser."
+
+#: server_status.php:59
+msgid "The number of requests to update a row in a table."
+msgstr "Antalet efterfrågningar att uppdatera en rad i en tabell."
+
+#: server_status.php:60
+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."
+
+#: server_status.php:61
+msgid "The number of pages containing data (dirty or clean)."
+msgstr "Antalet sidor innehållande data (orena eller rena)."
+
+#: server_status.php:62
+msgid "The number of pages currently dirty."
+msgstr "Antalet sidor för närvarande orena."
+
+#: server_status.php:63
+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."
+
+#: server_status.php:64
+msgid "The number of free pages."
+msgstr "Antalet fria sidor."
+
+#: server_status.php:65
+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 ""
+"Antalet låsta sidor i InnoDB-buffert. Dessa är sidor som för närvarande "
+"läses eller skrivs eller som inte kan rensas eller tas bort av någon annan "
+"anledning."
+
+#: server_status.php:66
+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 "
+"be calculated as Innodb_buffer_pool_pages_total - "
+"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data."
+msgstr ""
+"Antalet upptagna sidor pga att de har blivit allokerade som administrativt "
+"extrautrymme för bl.a. radlås eller adaptivt hashindex. Detta värde kan "
+"också beräknas som Innodb_buffer_pool_pages_total - "
+"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data."
+
+#: server_status.php:67
+msgid "Total size of buffer pool, in pages."
+msgstr "Total storlek på buffert, i sidor."
+
+#: server_status.php:68
+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 ""
+"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."
+
+#: server_status.php:69
+msgid ""
+"The number of sequential read-aheads InnoDB initiated. This happens when "
+"InnoDB does a sequential full table scan."
+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."
+
+#: server_status.php:70
+msgid "The number of logical read requests InnoDB has done."
+msgstr "Antalet logiska läsefterfrågningar som InnoDB har gjort."
+
+#: server_status.php:71
+msgid ""
+"The number of logical reads that InnoDB could not satisfy from buffer pool "
+"and had to do a single-page read."
+msgstr ""
+"Antalet logiska läsningar som InnoDB inte kunde uppfylla från buffert och "
+"fick göra en enkelsidig läsning."
+
+#: server_status.php:72
+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 "
+"available, it's necessary to wait for pages to be flushed first. This "
+"counter counts instances of these waits. If the buffer pool size was set "
+"properly, this value should be small."
+msgstr ""
+"Normalt sker skrivningar till InnoDB-bufferten i bakgrunden. Dock om det "
+"behövs läsas eller skapas en sida och inga rena sidor finns tillgängliga, så "
+"är det nödvändigt att vänta på att sidor rensas först. Denna räknare räknar "
+"fall med dessa väntanden. Om buffertstorleken var riktigt satt ska detta "
+"värde vara litet."
+
+#: server_status.php:73
+msgid "The number writes done to the InnoDB buffer pool."
+msgstr "Antalet skrivningar gjorda till InnoDB-bufferten."
+
+#: server_status.php:74
+msgid "The number of fsync() operations so far."
+msgstr "Antalet fsync()-operationer hittills."
+
+#: server_status.php:75
+msgid "The current number of pending fsync() operations."
+msgstr "Nuvarande antal pågående fsync()-operationer."
+
+#: server_status.php:76
+msgid "The current number of pending reads."
+msgstr "Nuvarande antal pågående läsningar."
+
+#: server_status.php:77
+msgid "The current number of pending writes."
+msgstr "Nuvarande antal pågående skrivningar."
+
+#: server_status.php:78
+msgid "The amount of data read so far, in bytes."
+msgstr "Mängden data läst hittills, i bytes."
+
+#: server_status.php:79
+msgid "The total number of data reads."
+msgstr "Totalt antal läsningar av data."
+
+#: server_status.php:80
+msgid "The total number of data writes."
+msgstr "Totalt antal skrivningar av data."
+
+#: server_status.php:81
+msgid "The amount of data written so far, in bytes."
+msgstr "Mängden data skriven hittills, i bytes."
+
+#: server_status.php:82
+msgid "The number of pages that have been written for doublewrite operations."
+msgstr ""
+"Antalet dubbelskrivningar som har utförts och antalet sidor som har skrivits "
+"för detta ändamål."
+
+#: server_status.php:83
+msgid "The number of doublewrite operations that have been performed."
+msgstr ""
+"Antalet dubbelskrivningar som har utförts och antalet sidor som har skrivits "
+"för detta ändamål."
+
+#: server_status.php:84
+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 ""
+"Antalet väntanden pga loggbufferten var för liten och vi behövde vänta på "
+"att den skulle rensas innan kunde fortsätta."
+
+#: server_status.php:85
+msgid "The number of log write requests."
+msgstr "Antalet efterfrågningar att skriva till logg."
+
+#: server_status.php:86
+msgid "The number of physical writes to the log file."
+msgstr "Antalet fysiska skrivningar till loggfilen."
+
+#: server_status.php:87
+msgid "The number of fsync() writes done to the log file."
+msgstr "Antalet fsync()-skrivningar gjorda till loggfilen."
+
+#: server_status.php:88
+msgid "The number of pending log file fsyncs."
+msgstr "Antalet pågående fsync() av loggfil."
+
+#: server_status.php:89
+msgid "Pending log file writes."
+msgstr "Pågående skrivningar till loggfil."
+
+#: server_status.php:90
+msgid "The number of bytes written to the log file."
+msgstr "Antalet bytes skrivna till loggfilen."
+
+#: server_status.php:91
+msgid "The number of pages created."
+msgstr "Antalet skapade sidor."
+
+#: server_status.php:92
+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 ""
+"Den inkompilerade InnoDB-sidstorleken (standard 16kB). Många värden räknas i "
+"sidor; sidstorleken tillåter dem att enkelt omvandlas till bytes."
+
+#: server_status.php:93
+msgid "The number of pages read."
+msgstr "Antalet lästa sidor."
+
+#: server_status.php:94
+msgid "The number of pages written."
+msgstr "Antalet skrivna sidor."
+
+#: server_status.php:95
+msgid "The number of row locks currently being waited for."
+msgstr "Antalet radlås som för närvarande väntas på."
+
+#: server_status.php:96
+msgid "The average time to acquire a row lock, in milliseconds."
+msgstr "Genomsnittlig tid för att skaffa ett radlås, i millisekunder."
+
+#: server_status.php:97
+msgid "The total time spent in acquiring row locks, in milliseconds."
+msgstr "Total tid spenderad på att skaffa radlås, i millisekunder."
+
+#: server_status.php:98
+msgid "The maximum time to acquire a row lock, in milliseconds."
+msgstr "Maximal tid för att skaffa ett radlås, i millisekunder."
+
+#: server_status.php:99
+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å."
+
+#: server_status.php:100
+msgid "The number of rows deleted from InnoDB tables."
+msgstr "Antalet rader borttagna från InnoDB-tabeller."
+
+#: server_status.php:101
+msgid "The number of rows inserted in InnoDB tables."
+msgstr "Antalet rader tillagda i InnoDB-tabeller."
+
+#: server_status.php:102
+msgid "The number of rows read from InnoDB tables."
+msgstr "Antalet rader lästa från InnoDB-tabeller."
+
+#: server_status.php:103
+msgid "The number of rows updated in InnoDB tables."
+msgstr "Antalet rader uppdaterade i InnoDB-tabeller."
+
+#: server_status.php:104
+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 ""
+"Antalet nyckelblock i nyckelcachen som har ändrats men inte ännu överförts "
+"till disk. Det brukade vara känt som Not_flushed_key_blocks."
+
+#: server_status.php:105
+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 ""
+"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."
+
+#: server_status.php:106
+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 ""
+"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."
+
+#: server_status.php:107
+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."
+
+#: server_status.php:108
+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 ""
+"Antalet fysiska läsningar av ett nyckelblock från disk. Om värdet Key_reads "
+"ä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."
+
+#: server_status.php:109
+msgid "The number of requests to write a key block to the cache."
+msgstr "Antalet efterfrågningar att skriva ett nyckelblock till cachen."
+
+#: server_status.php:110
+msgid "The number of physical writes of a key block to disk."
+msgstr "Antalet fysiska skrivningar av ett nyckelblock till disk."
+
+#: server_status.php:111
+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 ""
+"Den totala kostnaden för den senaste kompilerade frågan enligt beräkning av "
+"frågeoptimeraren. Användbart vid jämförelse av kostnad för olika frågesätt "
+"av samma fråga. Standardvärdet 0 innebär att ingen fråga har kompilerats "
+"ännu."
+
+#: server_status.php:112
+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."
+
+#: server_status.php:113
+msgid ""
+"The number of tables that have been opened. If opened tables is big, your "
+"table cache value is probably too small."
+msgstr ""
+"Antalet tabeller som har öppnats. Om antalet öppnade tabeller är stort är "
+"förmodligen ditt tabellcache-värde för litet."
+
+#: server_status.php:114
+msgid "The number of files that are open."
+msgstr "Antalet filer som är öppna."
+
+#: server_status.php:115
+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)."
+
+#: server_status.php:116
+msgid "The number of tables that are open."
+msgstr "Antalet tabeller som är öppna."
+
+#: server_status.php:117
+msgid "The number of free memory blocks in query cache."
+msgstr "Antalet fria minnesblock i frågecachen."
+
+#: server_status.php:118
+msgid "The amount of free memory for query cache."
+msgstr "Mängden fritt minne för frågecache."
+
+#: server_status.php:119
+msgid "The number of cache hits."
+msgstr "Antalet cache-träffar."
+
+#: server_status.php:120
+msgid "The number of queries added to the cache."
+msgstr "Antalet frågor tillagda i cachen."
+
+#: server_status.php:121
+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 "
+"cache size. The query cache uses a least recently used (LRU) strategy to "
+"decide which queries to remove from the cache."
+msgstr ""
+"Antalet frågor som har tagits bort från cachen för att frigöra minne för "
+"cachning av nya frågor. Denna information kan hjälpa dig att ställa in "
+"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."
+
+#: server_status.php:122
+msgid ""
+"The number of non-cached queries (not cachable, or not cached due to the "
+"query_cache_type setting)."
+msgstr ""
+"Antalet icke-cachade frågor (inte möjliga att cacha eller inte cachade pga "
+"inställningen query_cache_type)."
+
+#: server_status.php:123
+msgid "The number of queries registered in the cache."
+msgstr "Antalet frågor registrerade i cachen."
+
+#: server_status.php:124
+msgid "The total number of blocks in the query cache."
+msgstr "Totala antalet block i frågecachen."
+
+#: server_status.php:125
+msgctxt "$strShowStatusReset"
+msgid "Reset"
+msgstr "Återställ"
+
+#: server_status.php:126
+msgid "The status of failsafe replication (not yet implemented)."
+msgstr "Status för felsäker replikering (ännu inte implementerat)."
+
+#: server_status.php:127
+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 ""
+"Antalet föreningar som inte använder index. Om detta värde inte är 0, bör du "
+"noggrant kontrollera index för dina tabeller."
+
+#: server_status.php:128
+msgid "The number of joins that used a range search on a reference table."
+msgstr "Antalet föreningar som använde en urvalssökning på en referenstabell."
+
+#: server_status.php:129
+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 ""
+"Antalet föreningar utan nycklar som kontrollerar nyckelanvändning efter "
+"varje rad. (Om detta värde inte är 0, bör du noggrant kontrollera index för "
+"dina tabeller.)"
+
+#: server_status.php:130
+msgid ""
+"The number of joins that used ranges on the first table. (It's normally not "
+"critical even if this is big.)"
+msgstr ""
+"Antalet föreningar som använde urval på den första tabellen. (Det är normalt "
+"inte kritiskt även om detta är stort.)"
+
+#: server_status.php:131
+msgid "The number of joins that did a full scan of the first table."
+msgstr ""
+"Antalet föreningar som gjorde en fullständig avsökning av första tabellen."
+
+#: server_status.php:132
+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."
+
+#: server_status.php:133
+msgid ""
+"Total (since startup) number of times the replication slave SQL thread has "
+"retried transactions."
+msgstr ""
+"Totalt (sedan start) antal gånger som replikeringsslavens SQL-tråd har "
+"omprövat transaktioner."
+
+#: server_status.php:134
+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."
+
+#: server_status.php:135
+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."
+
+#: server_status.php:136
+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."
+
+#: server_status.php:137
+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 ""
+"Antalet sammanslagningar som sorteringsalgoritmen har behövt utföra. Om "
+"detta värde är stort bör du överväga att öka värdet i systemvariabeln "
+"sort_buffer_size."
+
+#: server_status.php:138
+msgid "The number of sorts that were done with ranges."
+msgstr "Antalet sorteringar som gjordes med urval."
+
+#: server_status.php:139
+msgid "The number of sorted rows."
+msgstr "Antalet sorterade rader."
+
+#: server_status.php:140
+msgid "The number of sorts that were done by scanning the table."
+msgstr "Antalet sorteringar som har gjorts genom avsökning av tabellen."
+
+#: server_status.php:141
+msgid "The number of times that a table lock was acquired immediately."
+msgstr "Antalet gånger som ett tabellås förvärvades omedelbart."
+
+#: server_status.php:142
+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 "
+"should first optimize your queries, and then either split your table or "
+"tables or use replication."
+msgstr ""
+"Antalet gånger som ett tabellås inte kunde förvärvas omedelbart och en "
+"väntan var nödvändig. Om detta värde är högt och du har prestandaproblem bör "
+"du först optimera dina frågor och antingen dela upp din tabell eller "
+"tabeller eller använda replikering."
+
+#: server_status.php:143
+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 ""
+"Antalet trådar i trådcachen. Cachens träffrekvens kan beräknas som "
+"Threads_created/Connections. Om detta värde är rött bör du öka värdet "
+"thread_cache_size."
+
+#: server_status.php:144
+msgid "The number of currently open connections."
+msgstr "Antalet för närvarande öppna förbindelser."
+
+#: server_status.php:145
+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 "
+"doesn't give a notable performance improvement if you have a good thread "
+"implementation.)"
+msgstr ""
+"Antalet trådar skapade för att hantera förbindelser. Om värdet "
+"Threads_created är stort, vill du kanske öka värdet thread_cache_size. "
+"(Normalt ger detta inte någon märkbar prestandaförbättring om du har en bra "
+"trådimplementering.)"
+
+#: server_status.php:146
+msgid "The number of threads that are not sleeping."
+msgstr "Antalet trådar som inte är vilande."
+
+#: server_status.php:157
msgid "Runtime Information"
msgstr "Körningsinformation"
-#: server_status.php:250
+#: server_status.php:361
msgid "Handler"
msgstr "Hanterare"
-#: server_status.php:251
+#: server_status.php:362
msgid "Query cache"
msgstr "Frågecache"
-#: server_status.php:252
+#: server_status.php:363
msgid "Threads"
msgstr "Trådar"
-#: server_status.php:254
+#: server_status.php:365
msgid "Temporary data"
msgstr "Temporära data"
-#: server_status.php:255
+#: server_status.php:366
msgid "Delayed inserts"
msgstr "Fördröjda infogningar"
-#: server_status.php:256
+#: server_status.php:367
msgid "Key cache"
msgstr "Nyckelcache"
-#: server_status.php:257
+#: server_status.php:368
msgid "Joins"
msgstr "Föreningar"
-#: server_status.php:259
+#: server_status.php:370
msgid "Sorting"
msgstr "Sortering"
-#: server_status.php:261
+#: server_status.php:372
msgid "Transaction coordinator"
msgstr "Transaktionssamordnare"
-#: server_status.php:271
+#: server_status.php:382
msgid "Flush (close) all tables"
msgstr "Stäng alla tabeller"
-#: server_status.php:273
+#: server_status.php:384
msgid "Show open tables"
msgstr "Visa öppna tabeller"
-#: server_status.php:278
+#: server_status.php:389
msgid "Show slave hosts"
msgstr "Visa slav-värdar"
-#: server_status.php:284
+#: server_status.php:395
msgid "Show slave status"
msgstr "Visa slav-status"
-#: server_status.php:289
+#: server_status.php:400
msgid "Flush query cache"
msgstr "Rensa frågecache"
-#: server_status.php:294
+#: server_status.php:405
msgid "Show processes"
msgstr "Visa processer"
-#: server_status.php:344
+#: server_status.php:455
#, fuzzy
#| msgid "Reset"
msgctxt "for Show status"
msgid "Reset"
msgstr "Återställ"
-#: server_status.php:350
+#: server_status.php:461
#, php-format
msgid "This MySQL server has been running for %s. It started up on %s."
msgstr "Denna MySQL-server har körts i %s. Den startade den %s."
-#: server_status.php:360
+#: server_status.php:471
msgid ""
"This MySQL server works as master and slave in replication"
"b> process."
msgstr ""
-#: server_status.php:362
+#: server_status.php:473
msgid "This MySQL server works as master in replication process."
msgstr ""
-#: server_status.php:364
+#: server_status.php:475
msgid "This MySQL server works as slave in replication process."
msgstr ""
-#: server_status.php:366
+#: server_status.php:477
#, fuzzy
#| msgid ""
#| "This MySQL server works as %s in replication process. For further "
@@ -5978,7 +5989,7 @@ msgstr ""
"information om replikeringsstatus på servern, gå till replikeringssektionen."
-#: server_status.php:383
+#: server_status.php:494
msgid ""
"Server traffic: These tables show the network traffic statistics of "
"this MySQL server since its startup."
@@ -5986,11 +5997,11 @@ msgstr ""
"Servertrafik: Dessa tabeller visar statistik för nätverkstrafiken hos "
"denna MySQL-server sedan den startade."
-#: server_status.php:388
+#: server_status.php:499
msgid "Traffic"
msgstr "Trafik"
-#: server_status.php:388
+#: server_status.php:499
msgid ""
"On a busy server, the byte counters may overrun, so those statistics as "
"reported by the MySQL server may be incorrect."
@@ -5998,36 +6009,36 @@ msgstr ""
"På en upptagen server kan byte-räknare spåra ur, varför denna statistik som "
"rapporterats från MySQL-servern kan vara felaktig."
-#: server_status.php:389 server_status.php:434 server_status.php:497
-#: server_status.php:555
+#: server_status.php:500 server_status.php:545 server_status.php:608
+#: server_status.php:666
msgid "per hour"
msgstr "per timme"
-#: server_status.php:394
+#: server_status.php:505
msgid "Received"
msgstr "Mottagna"
-#: server_status.php:404
+#: server_status.php:515
msgid "Sent"
msgstr "Skickade"
-#: server_status.php:433
+#: server_status.php:544
msgid "Connections"
msgstr "Uppkopplingar"
-#: server_status.php:440
+#: server_status.php:551
msgid "max. concurrent connections"
msgstr "Max. samtidiga förbindelser"
-#: server_status.php:447
+#: server_status.php:558
msgid "Failed attempts"
msgstr "Misslyckade försök"
-#: server_status.php:461
+#: server_status.php:572
msgid "Aborted"
msgstr "Avbrutna"
-#: server_status.php:490
+#: server_status.php:601
#, php-format
msgid ""
"Query statistics: Since its startup, %s queries have been sent to the "
@@ -6036,19 +6047,19 @@ msgstr ""
"Frågestatistik: %s frågor har skickats till servern sedan den "
"startade."
-#: server_status.php:498
+#: server_status.php:609
msgid "per minute"
msgstr "per minut"
-#: server_status.php:499
+#: server_status.php:610
msgid "per second"
msgstr "per sekund"
-#: server_status.php:554
+#: server_status.php:665
msgid "Query type"
msgstr "Typ av fråga"
-#: server_status.php:721
+#: server_status.php:832
msgid "Replication status"
msgstr "Replikeringsstatus"
diff --git a/po/ta.po b/po/ta.po
index 4bd427a38..eeb1657b6 100755
--- a/po/ta.po
+++ b/po/ta.po
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-06-04 16:07-0400\n"
+"POT-Creation-Date: 2010-06-08 12:32-0400\n"
"PO-Revision-Date: 2010-04-16 10:43+0200\n"
"Last-Translator: Sutharshan \n"
"Language-Team: Tamil \n"
@@ -18,11 +18,11 @@ msgstr ""
"X-Generator: Pootle 2.0.1\n"
#: browse_foreigners.php:38 browse_foreigners.php:59
-#: libraries/display_tbl.lib.php:417 server_privileges.php:1475
+#: libraries/display_tbl.lib.php:417 server_privileges.php:1514
msgid "Show all"
msgstr ""
-#: browse_foreigners.php:82 libraries/common.lib.php:2304
+#: browse_foreigners.php:82 libraries/common.lib.php:2313
#: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:394
#: libraries/export/pdf.php:147 pdf_schema.php:283 pdf_schema.php:1123
#: pdf_schema.php:1139
@@ -38,8 +38,8 @@ msgstr ""
#: browse_foreigners.php:150 db_structure.php:79 db_structure.php:80
#: db_structure.php:91 db_structure.php:93 db_structure.php:104
-#: db_structure.php:106 libraries/common.lib.php:2822
-#: libraries/common.lib.php:2829 libraries/db_links.inc.php:75
+#: db_structure.php:106 libraries/common.lib.php:2831
+#: libraries/common.lib.php:2838 libraries/db_links.inc.php:75
#: libraries/tbl_links.inc.php:63
msgid "Search"
msgstr ""
@@ -49,7 +49,7 @@ msgstr ""
#: db_structure.php:567 js/messages.php:48 libraries/Config.class.php:1046
#: libraries/Theme_Manager.class.php:311
#: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719
-#: libraries/common.lib.php:1333 libraries/common.lib.php:2279
+#: libraries/common.lib.php:1335 libraries/common.lib.php:2288
#: libraries/display_change_password.lib.php:82
#: libraries/display_create_table.lib.php:63
#: libraries/display_export.lib.php:275 libraries/display_import.lib.php:276
@@ -60,9 +60,9 @@ msgstr ""
#: libraries/sql_query_form.lib.php:552 libraries/tbl_properties.inc.php:782
#: main.php:128 navigation.php:237 pdf_pages.php:292 pdf_pages.php:328
#: pdf_pages.php:530 pmd_pdf.php:116 server_binlog.php:142
-#: server_privileges.php:625 server_privileges.php:1585
-#: server_privileges.php:1932 server_privileges.php:1979
-#: server_privileges.php:2018 server_replication.php:235
+#: server_privileges.php:664 server_privileges.php:1624
+#: server_privileges.php:1971 server_privileges.php:2018
+#: server_privileges.php:2057 server_replication.php:235
#: server_replication.php:318 server_replication.php:341
#: server_synchronize.php:1209 tbl_change.php:330 tbl_change.php:1174
#: tbl_change.php:1211 tbl_indexes.php:254 tbl_operations.php:265
@@ -80,7 +80,7 @@ msgstr ""
#: browse_foreigners.php:169 browse_foreigners.php:171
#: server_collations.php:55 server_collations.php:67 server_engines.php:59
-#: server_status.php:628
+#: server_status.php:739
msgid "Description"
msgstr ""
@@ -119,7 +119,7 @@ msgstr ""
#: libraries/db_structure.lib.php:60 libraries/export/htmlword.php:245
#: libraries/export/latex.php:360 libraries/export/odt.php:297
#: libraries/export/texytext.php:234 libraries/tbl_properties.inc.php:100
-#: pdf_schema.php:1263 pdf_schema.php:1284 server_privileges.php:2031
+#: pdf_schema.php:1263 pdf_schema.php:1284 server_privileges.php:2070
#: tbl_change.php:287 tbl_change.php:314 tbl_printview.php:143
#: tbl_printview.php:313 tbl_select.php:136 tbl_structure.php:178
#: tbl_structure.php:659 tbl_tracking.php:274 tbl_tracking.php:321
@@ -163,9 +163,9 @@ msgstr ""
#: libraries/Index.class.php:386 libraries/export/htmlword.php:322
#: libraries/export/latex.php:430 libraries/export/odt.php:368
#: libraries/export/texytext.php:311 libraries/mult_submits.inc.php:263
-#: pdf_schema.php:1344 server_privileges.php:1529 server_privileges.php:1540
-#: server_privileges.php:1850 server_privileges.php:1855
-#: server_privileges.php:2148 sql.php:132 sql.php:194 tbl_printview.php:229
+#: pdf_schema.php:1344 server_privileges.php:1568 server_privileges.php:1579
+#: server_privileges.php:1889 server_privileges.php:1894
+#: server_privileges.php:2187 sql.php:132 sql.php:194 tbl_printview.php:229
#: tbl_structure.php:350 tbl_tracking.php:337 tbl_tracking.php:342
msgid "No"
msgstr ""
@@ -179,9 +179,9 @@ msgstr ""
#: libraries/mult_submits.inc.php:101 libraries/mult_submits.inc.php:106
#: libraries/mult_submits.inc.php:111 libraries/mult_submits.inc.php:262
#: libraries/mult_submits.inc.php:273 pdf_schema.php:1344
-#: server_databases.php:64 server_privileges.php:1526
-#: server_privileges.php:1540 server_privileges.php:1850
-#: server_privileges.php:1853 server_privileges.php:2148 sql.php:193
+#: server_databases.php:64 server_privileges.php:1565
+#: server_privileges.php:1579 server_privileges.php:1889
+#: server_privileges.php:1892 server_privileges.php:2187 sql.php:193
#: tbl_printview.php:229 tbl_structure.php:40 tbl_structure.php:350
#: tbl_tracking.php:335 tbl_tracking.php:340
msgid "Yes"
@@ -278,7 +278,7 @@ msgstr ""
msgid "BLOB Repository"
msgstr ""
-#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1350
+#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1352
#: libraries/server_links.inc.php:49 server_processlist.php:59
#: tbl_tracking.php:596 test/theme.php:101
msgid "Status"
@@ -333,8 +333,8 @@ msgstr ""
#: db_printview.php:104 db_tracking.php:72 db_tracking.php:157
#: libraries/db_structure.lib.php:46 libraries/export/xml.php:328
-#: libraries/header.inc.php:126 pdf_pages.php:424 server_privileges.php:1626
-#: server_privileges.php:1682 server_privileges.php:1946
+#: libraries/header.inc.php:126 pdf_pages.php:424 server_privileges.php:1665
+#: server_privileges.php:1721 server_privileges.php:1985
#: server_synchronize.php:423 server_synchronize.php:866 tbl_tracking.php:592
#: test/theme.php:75
msgid "Table"
@@ -434,7 +434,7 @@ msgstr ""
#: db_qbe.php:370 db_qbe.php:451 db_qbe.php:522 db_qbe.php:553
#: libraries/display_import.lib.php:166 libraries/tbl_properties.inc.php:779
-#: server_privileges.php:258 tbl_change.php:1031 tbl_indexes.php:250
+#: server_privileges.php:297 tbl_change.php:1031 tbl_indexes.php:250
#: tbl_select.php:288
msgid "Or"
msgstr ""
@@ -468,7 +468,7 @@ msgstr ""
msgid "SQL query on database %s:"
msgstr ""
-#: db_qbe.php:934 libraries/common.lib.php:1223
+#: db_qbe.php:934 libraries/common.lib.php:1225
msgid "Submit Query"
msgstr ""
@@ -507,7 +507,7 @@ msgstr ""
#: db_search.php:267 db_structure.php:77 db_structure.php:78
#: db_structure.php:90 db_structure.php:92 db_structure.php:103
-#: db_structure.php:105 libraries/common.lib.php:2824
+#: db_structure.php:105 libraries/common.lib.php:2833
#: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50
#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:467
msgid "Browse"
@@ -552,26 +552,26 @@ msgstr ""
#: db_structure.php:81 db_structure.php:82 db_structure.php:94
#: db_structure.php:95 db_structure.php:107 db_structure.php:108
-#: libraries/common.lib.php:2823 libraries/sql_query_form.lib.php:334
+#: libraries/common.lib.php:2832 libraries/sql_query_form.lib.php:334
#: libraries/sql_query_form.lib.php:337 libraries/tbl_links.inc.php:76
msgid "Insert"
msgstr ""
#: db_structure.php:83 db_structure.php:96 db_structure.php:109
-#: libraries/common.lib.php:2820 libraries/common.lib.php:2827
+#: libraries/common.lib.php:2829 libraries/common.lib.php:2836
#: libraries/db_links.inc.php:63 libraries/export/htmlword.php:23
#: libraries/export/latex.php:33 libraries/export/latex.php:337
#: libraries/export/odt.php:32 libraries/export/sql.php:60
#: libraries/export/texytext.php:23 libraries/import.lib.php:1104
#: libraries/tbl_links.inc.php:56 pmd_general.php:134
-#: server_privileges.php:554 server_replication.php:315 tbl_tracking.php:269
+#: server_privileges.php:593 server_replication.php:315 tbl_tracking.php:269
msgid "Structure"
msgstr ""
#: db_structure.php:84 db_structure.php:85 db_structure.php:97
#: db_structure.php:98 db_structure.php:110 db_structure.php:111
#: db_structure.php:545 db_structure.php:546 db_tracking.php:91
-#: libraries/Index.class.php:483 libraries/common.lib.php:1654
+#: libraries/Index.class.php:483 libraries/common.lib.php:1656
#: libraries/db_links.inc.php:100 libraries/mult_submits.inc.php:36
#: libraries/mult_submits.inc.php:73 libraries/tbl_links.inc.php:127
#: server_databases.php:352 tbl_structure.php:27 tbl_structure.php:151
@@ -581,7 +581,7 @@ msgstr ""
#: db_structure.php:86 db_structure.php:87 db_structure.php:99
#: db_structure.php:100 db_structure.php:112 db_structure.php:113
-#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1653
+#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1655
#: libraries/mult_submits.inc.php:39 libraries/tbl_links.inc.php:105
msgid "Empty"
msgstr ""
@@ -623,7 +623,7 @@ msgstr ""
#: db_structure.php:485 libraries/db_structure.lib.php:49
#: libraries/server_links.inc.php:70 server_replication.php:33
-#: server_replication.php:164 server_status.php:258
+#: server_replication.php:164 server_status.php:369
msgid "Replication"
msgstr ""
@@ -639,20 +639,20 @@ msgstr ""
#: db_structure.php:524 db_structure.php:541 db_structure.php:542
#: libraries/display_tbl.lib.php:2081 libraries/display_tbl.lib.php:2086
#: libraries/mult_submits.inc.php:16 server_databases.php:346
-#: server_databases.php:351 server_privileges.php:1557 tbl_structure.php:455
+#: server_databases.php:351 server_privileges.php:1596 tbl_structure.php:455
#: tbl_structure.php:464
msgid "With selected:"
msgstr ""
#: db_structure.php:527 libraries/display_tbl.lib.php:2076
-#: server_databases.php:348 server_privileges.php:530
-#: server_privileges.php:1560 tbl_structure.php:458
+#: server_databases.php:348 server_privileges.php:569
+#: server_privileges.php:1599 tbl_structure.php:458
msgid "Check All"
msgstr ""
#: db_structure.php:531 libraries/display_tbl.lib.php:2077
#: libraries/replication_gui.lib.php:33 server_databases.php:350
-#: server_privileges.php:533 server_privileges.php:1564 tbl_structure.php:462
+#: server_privileges.php:572 server_privileges.php:1603 tbl_structure.php:462
msgid "Uncheck All"
msgstr ""
@@ -690,7 +690,7 @@ msgstr ""
#: libraries/display_export.lib.php:83 libraries/display_tbl.lib.php:2094
#: libraries/display_tbl.lib.php:2225 libraries/mult_submits.inc.php:62
#: libraries/server_links.inc.php:84 libraries/tbl_links.inc.php:82
-#: pmd_pdf.php:84 pmd_pdf.php:109 server_privileges.php:1341
+#: pmd_pdf.php:84 pmd_pdf.php:109 server_privileges.php:1380
#: setup/frames/menu.inc.php:22 tbl_row_action.php:59
msgid "Export"
msgstr ""
@@ -708,8 +708,8 @@ msgstr ""
#: libraries/export/sql.php:342 libraries/export/texytext.php:84
#: libraries/export/xml.php:255 libraries/header.inc.php:106
#: libraries/header_printview.inc.php:58 server_databases.php:169
-#: server_privileges.php:1621 server_privileges.php:1682
-#: server_privileges.php:1940 server_processlist.php:56
+#: server_privileges.php:1660 server_privileges.php:1721
+#: server_privileges.php:1979 server_processlist.php:56
#: server_synchronize.php:1179 server_synchronize.php:1183
#: tbl_tracking.php:591 test/theme.php:65
msgid "Database"
@@ -729,8 +729,8 @@ msgstr ""
#: db_tracking.php:77 libraries/Index.class.php:440
#: libraries/db_structure.lib.php:53 server_databases.php:203
-#: server_privileges.php:1503 server_privileges.php:1686
-#: server_privileges.php:2034 tbl_structure.php:187
+#: server_privileges.php:1542 server_privileges.php:1725
+#: server_privileges.php:2073 tbl_structure.php:187
msgid "Action"
msgstr "செயல்"
@@ -917,11 +917,11 @@ msgstr ""
msgid "The user name is empty!"
msgstr ""
-#: js/messages.php:44 server_privileges.php:1197 user_password.php:70
+#: js/messages.php:44 server_privileges.php:1236 user_password.php:70
msgid "The password is empty!"
msgstr ""
-#: js/messages.php:45 server_privileges.php:1195 user_password.php:73
+#: js/messages.php:45 server_privileges.php:1234 user_password.php:73
msgid "The passwords aren't the same!"
msgstr ""
@@ -994,8 +994,8 @@ msgid "Prev"
msgstr ""
#. l10n: Display text for next month link in calendar
-#: js/messages.php:77 libraries/common.lib.php:2344
-#: libraries/common.lib.php:2347 libraries/display_tbl.lib.php:338
+#: js/messages.php:77 libraries/common.lib.php:2353
+#: libraries/common.lib.php:2356 libraries/display_tbl.lib.php:338
#: server_binlog.php:205 server_binlog.php:207 tbl_printview.php:424
#: tbl_structure.php:801
msgid "Next"
@@ -1069,27 +1069,27 @@ msgid "December"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:97 libraries/common.lib.php:1555
+#: js/messages.php:97 libraries/common.lib.php:1557
msgid "Jan"
msgstr "தை"
#. l10n: Short month name
-#: js/messages.php:99 libraries/common.lib.php:1557
+#: js/messages.php:99 libraries/common.lib.php:1559
msgid "Feb"
msgstr "மாசி"
#. l10n: Short month name
-#: js/messages.php:101 libraries/common.lib.php:1559
+#: js/messages.php:101 libraries/common.lib.php:1561
msgid "Mar"
msgstr "பங்குனி"
#. l10n: Short month name
-#: js/messages.php:103 libraries/common.lib.php:1561
+#: js/messages.php:103 libraries/common.lib.php:1563
msgid "Apr"
msgstr "சித்திரை"
#. l10n: Short month name
-#: js/messages.php:105 libraries/common.lib.php:1563
+#: js/messages.php:105 libraries/common.lib.php:1565
#, fuzzy
#| msgid "May"
msgctxt "Short month name"
@@ -1097,37 +1097,37 @@ msgid "May"
msgstr "வைகாசி"
#. l10n: Short month name
-#: js/messages.php:107 libraries/common.lib.php:1565
+#: js/messages.php:107 libraries/common.lib.php:1567
msgid "Jun"
msgstr "ஆணி"
#. l10n: Short month name
-#: js/messages.php:109 libraries/common.lib.php:1567
+#: js/messages.php:109 libraries/common.lib.php:1569
msgid "Jul"
msgstr "ஆடி"
#. l10n: Short month name
-#: js/messages.php:111 libraries/common.lib.php:1569
+#: js/messages.php:111 libraries/common.lib.php:1571
msgid "Aug"
msgstr "ஆவணி"
#. l10n: Short month name
-#: js/messages.php:113 libraries/common.lib.php:1571
+#: js/messages.php:113 libraries/common.lib.php:1573
msgid "Sep"
msgstr "புரட்டாதி"
#. l10n: Short month name
-#: js/messages.php:115 libraries/common.lib.php:1573
+#: js/messages.php:115 libraries/common.lib.php:1575
msgid "Oct"
msgstr "ஐப்பசி"
#. l10n: Short month name
-#: js/messages.php:117 libraries/common.lib.php:1575
+#: js/messages.php:117 libraries/common.lib.php:1577
msgid "Nov"
msgstr "காத்திகை"
#. l10n: Short month name
-#: js/messages.php:119 libraries/common.lib.php:1577
+#: js/messages.php:119 libraries/common.lib.php:1579
msgid "Dec"
msgstr "மார்கழி"
@@ -1168,37 +1168,37 @@ msgid "Saturday"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:132 libraries/common.lib.php:1580
+#: js/messages.php:132 libraries/common.lib.php:1582
msgid "Sun"
msgstr "ஞாயிறு"
#. l10n: Short week day name
-#: js/messages.php:134 libraries/common.lib.php:1582
+#: js/messages.php:134 libraries/common.lib.php:1584
msgid "Mon"
msgstr "திங்கள்"
#. l10n: Short week day name
-#: js/messages.php:136 libraries/common.lib.php:1584
+#: js/messages.php:136 libraries/common.lib.php:1586
msgid "Tue"
msgstr "செவ்வாய்"
#. l10n: Short week day name
-#: js/messages.php:138 libraries/common.lib.php:1586
+#: js/messages.php:138 libraries/common.lib.php:1588
msgid "Wed"
msgstr "புதன்"
#. l10n: Short week day name
-#: js/messages.php:140 libraries/common.lib.php:1588
+#: js/messages.php:140 libraries/common.lib.php:1590
msgid "Thu"
msgstr "வியாழன்"
#. l10n: Short week day name
-#: js/messages.php:142 libraries/common.lib.php:1590
+#: js/messages.php:142 libraries/common.lib.php:1592
msgid "Fri"
msgstr "வெள்ளி"
#. l10n: Short week day name
-#: js/messages.php:144 libraries/common.lib.php:1592
+#: js/messages.php:144 libraries/common.lib.php:1594
msgid "Sat"
msgstr "சனி"
@@ -1337,7 +1337,7 @@ msgid "Comment"
msgstr ""
#: libraries/Index.class.php:466 libraries/common.lib.php:616
-#: libraries/common.lib.php:1199 libraries/display_tbl.lib.php:1117
+#: libraries/common.lib.php:1201 libraries/display_tbl.lib.php:1117
#: libraries/import.lib.php:1087 libraries/import.lib.php:1111
#: pdf_pages.php:285 setup/frames/index.inc.php:124
#: setup/lib/messages.inc.php:352 tbl_row_action.php:69
@@ -1361,7 +1361,7 @@ msgid ""
msgstr ""
#: libraries/List_Database.class.php:431 libraries/server_links.inc.php:41
-#: server_databases.php:88 server_privileges.php:1621
+#: server_databases.php:88 server_privileges.php:1660
#: setup/lib/messages.inc.php:110 test/theme.php:93
msgid "Databases"
msgstr ""
@@ -1676,7 +1676,7 @@ msgid "Documentation"
msgstr ""
#: libraries/common.lib.php:595 libraries/header_printview.inc.php:61
-#: server_processlist.php:60 server_status.php:247
+#: server_processlist.php:60 server_status.php:358
msgid "SQL query"
msgstr ""
@@ -1692,128 +1692,128 @@ msgstr ""
msgid "Skip Explain SQL"
msgstr ""
-#: libraries/common.lib.php:1212
+#: libraries/common.lib.php:1214
msgid "Without PHP Code"
msgstr ""
-#: libraries/common.lib.php:1215 setup/lib/messages.inc.php:355
+#: libraries/common.lib.php:1217 setup/lib/messages.inc.php:355
msgid "Create PHP Code"
msgstr ""
-#: libraries/common.lib.php:1233 server_status.php:341
+#: libraries/common.lib.php:1235 server_status.php:452
#: setup/lib/messages.inc.php:354
msgid "Refresh"
msgstr ""
-#: libraries/common.lib.php:1242
+#: libraries/common.lib.php:1244
msgid "Skip Validate SQL"
msgstr ""
-#: libraries/common.lib.php:1245 setup/lib/messages.inc.php:356 sql.php:518
+#: libraries/common.lib.php:1247 setup/lib/messages.inc.php:356 sql.php:518
msgid "Validate SQL"
msgstr ""
-#: libraries/common.lib.php:1276
+#: libraries/common.lib.php:1278
msgid "Inline edit of this query"
msgstr ""
-#: libraries/common.lib.php:1278
+#: libraries/common.lib.php:1280
msgid "Inline"
msgstr "உள்வரிசை"
-#: libraries/common.lib.php:1332 libraries/common.lib.php:1347
+#: libraries/common.lib.php:1334 libraries/common.lib.php:1349
msgid "Profiling"
msgstr ""
-#: libraries/common.lib.php:1351 libraries/tbl_triggers.lib.php:28
+#: libraries/common.lib.php:1353 libraries/tbl_triggers.lib.php:28
#: server_processlist.php:58
msgid "Time"
msgstr ""
#. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "B"
msgstr "B"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "KiB"
msgstr "KiB"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "MiB"
msgstr "MiB"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "GiB"
msgstr "GiB"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "TiB"
msgstr "TiB"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "PiB"
msgstr "PiB"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "EiB"
msgstr "EiB"
#. l10n: Thousands separator
-#: libraries/common.lib.php:1417
+#: libraries/common.lib.php:1419
msgid ","
msgstr ","
#. l10n: Decimal separator
-#: libraries/common.lib.php:1419
+#: libraries/common.lib.php:1421
msgid "."
msgstr ","
#. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string
-#: libraries/common.lib.php:1596
+#: libraries/common.lib.php:1598
#: libraries/transformations/text_plain__dateformat.inc.php:34
msgid "%B %d, %Y at %I:%M %p"
msgstr "%B %d, %Y at %I:%M %p"
-#: libraries/common.lib.php:1898
+#: libraries/common.lib.php:1907
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "%s நாட்கள் %s மணித்தியாலங்கள் %s நிமிடங்கள் மற்றும் %s செக்கன்கள்"
-#: libraries/common.lib.php:2313 libraries/common.lib.php:2316
-#: libraries/display_tbl.lib.php:290 server_status.php:608
+#: libraries/common.lib.php:2322 libraries/common.lib.php:2325
+#: libraries/display_tbl.lib.php:290 server_status.php:719
msgid "Begin"
msgstr ""
-#: libraries/common.lib.php:2314 libraries/common.lib.php:2317
+#: libraries/common.lib.php:2323 libraries/common.lib.php:2326
#: libraries/display_tbl.lib.php:291 server_binlog.php:168
#: server_binlog.php:170
msgid "Previous"
msgstr ""
-#: libraries/common.lib.php:2345 libraries/common.lib.php:2348
+#: libraries/common.lib.php:2354 libraries/common.lib.php:2357
#: libraries/display_tbl.lib.php:353
msgid "End"
msgstr ""
-#: libraries/common.lib.php:2421
+#: libraries/common.lib.php:2430
#, php-format
msgid "Jump to database "%s"."
msgstr ""
-#: libraries/common.lib.php:2441
+#: libraries/common.lib.php:2450
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr ""
-#: libraries/common.lib.php:2821 libraries/common.lib.php:2828
+#: libraries/common.lib.php:2830 libraries/common.lib.php:2837
#: libraries/db_links.inc.php:68 libraries/export/sql.php:25
#: libraries/import/sql.php:18 libraries/server_links.inc.php:45
#: libraries/tbl_links.inc.php:60 querywindow.php:99 test/theme.php:97
msgid "SQL"
msgstr ""
-#: libraries/common.lib.php:2830 libraries/db_links.inc.php:104
+#: libraries/common.lib.php:2839 libraries/db_links.inc.php:104
#: libraries/tbl_links.inc.php:95 libraries/tbl_links.inc.php:117
#: view_operations.php:89
msgid "Operations"
@@ -1867,8 +1867,8 @@ msgid "Import"
msgstr ""
#: libraries/db_links.inc.php:111 libraries/server_links.inc.php:66
-#: server_privileges.php:72 server_privileges.php:1683
-#: server_privileges.php:2032 test/theme.php:117
+#: server_privileges.php:111 server_privileges.php:1722
+#: server_privileges.php:2071 test/theme.php:117
msgid "Privileges"
msgstr ""
@@ -1914,22 +1914,22 @@ msgid "Change password"
msgstr ""
#: libraries/display_change_password.lib.php:35
-#: libraries/replication_gui.lib.php:345 server_privileges.php:768
+#: libraries/replication_gui.lib.php:345 server_privileges.php:807
msgid "No Password"
msgstr ""
#: libraries/display_change_password.lib.php:41
#: libraries/replication_gui.lib.php:59 libraries/replication_gui.lib.php:60
#: libraries/replication_gui.lib.php:335 libraries/replication_gui.lib.php:339
-#: libraries/replication_gui.lib.php:349 server_privileges.php:757
-#: server_privileges.php:761 server_privileges.php:772
-#: server_privileges.php:1499 server_synchronize.php:1175
+#: libraries/replication_gui.lib.php:349 server_privileges.php:796
+#: server_privileges.php:800 server_privileges.php:811
+#: server_privileges.php:1538 server_synchronize.php:1175
msgid "Password"
msgstr ""
#: libraries/display_change_password.lib.php:46
#: libraries/replication_gui.lib.php:353 libraries/replication_gui.lib.php:356
-#: server_privileges.php:776 server_privileges.php:779
+#: server_privileges.php:815 server_privileges.php:818
msgid "Re-type"
msgstr ""
@@ -1942,12 +1942,12 @@ msgid "MySQL 4.0 compatible"
msgstr ""
#: libraries/display_change_password.lib.php:72
-#: libraries/replication_gui.lib.php:360 server_privileges.php:783
+#: libraries/replication_gui.lib.php:360 server_privileges.php:822
msgid "Generate Password"
msgstr ""
#: libraries/display_change_password.lib.php:75
-#: libraries/replication_gui.lib.php:363 server_privileges.php:786
+#: libraries/replication_gui.lib.php:363 server_privileges.php:825
msgid "Generate"
msgstr ""
@@ -1960,8 +1960,8 @@ msgstr ""
msgid "Create"
msgstr ""
-#: libraries/display_create_database.lib.php:40 server_privileges.php:74
-#: server_privileges.php:1388 server_replication.php:35
+#: libraries/display_create_database.lib.php:40 server_privileges.php:113
+#: server_privileges.php:1427 server_replication.php:35
msgid "No Privileges"
msgstr ""
@@ -2044,7 +2044,7 @@ msgstr ""
#: libraries/display_export.lib.php:240 libraries/display_import.lib.php:197
#: libraries/display_import.lib.php:210 libraries/display_tbl.lib.php:530
#: libraries/export/sql.php:868 libraries/tbl_properties.inc.php:575
-#: server_privileges.php:1836 server_processlist.php:75
+#: server_privileges.php:1875 server_processlist.php:75
msgid "None"
msgstr ""
@@ -2357,7 +2357,7 @@ msgstr ""
msgid "Buffer Pool"
msgstr ""
-#: libraries/engines/innodb.lib.php:145 server_status.php:306
+#: libraries/engines/innodb.lib.php:145 server_status.php:417
msgid "InnoDB Status"
msgstr ""
@@ -2366,8 +2366,8 @@ msgid "Buffer Pool Usage"
msgstr ""
#: libraries/engines/innodb.lib.php:194 server_databases.php:137
-#: server_databases.php:305 server_status.php:414 server_status.php:475
-#: server_status.php:496 tbl_printview.php:351 tbl_structure.php:696
+#: server_databases.php:305 server_status.php:525 server_status.php:586
+#: server_status.php:607 tbl_printview.php:351 tbl_structure.php:696
msgid "Total"
msgstr ""
@@ -2676,7 +2676,7 @@ msgstr ""
#: libraries/export/latex.php:201 libraries/export/odt.php:48
#: libraries/export/sql.php:106 libraries/export/sql.php:868
#: libraries/export/texytext.php:27 server_databases.php:127
-#: server_privileges.php:537 server_replication.php:316 tbl_printview.php:317
+#: server_privileges.php:576 server_replication.php:316 tbl_printview.php:317
#: tbl_structure.php:665
msgid "Data"
msgstr ""
@@ -2726,9 +2726,9 @@ msgstr ""
#: libraries/export/xml.php:102 libraries/header_printview.inc.php:57
#: libraries/replication_gui.lib.php:63 libraries/replication_gui.lib.php:174
#: libraries/replication_gui.lib.php:269 libraries/replication_gui.lib.php:272
-#: libraries/replication_gui.lib.php:329 server_privileges.php:692
-#: server_privileges.php:695 server_privileges.php:751
-#: server_privileges.php:1498 server_privileges.php:2030
+#: libraries/replication_gui.lib.php:329 server_privileges.php:731
+#: server_privileges.php:734 server_privileges.php:790
+#: server_privileges.php:1537 server_privileges.php:2069
#: server_processlist.php:55 server_synchronize.php:1159
msgid "Host"
msgstr ""
@@ -3074,736 +3074,6 @@ msgstr ""
msgid "Convert to Kana"
msgstr ""
-#. l10n: Text direction, use either ltr or rtl
-#: libraries/messages.inc.php:19
-msgid "ltr"
-msgstr "ltr"
-
-#: libraries/messages.inc.php:21
-msgid "Content of table __TABLE__"
-msgstr ""
-
-#: libraries/messages.inc.php:22
-msgid "(continued)"
-msgstr ""
-
-#: libraries/messages.inc.php:23
-msgid "Structure of table __TABLE__"
-msgstr ""
-
-#: libraries/messages.inc.php:25 server_privileges.php:227
-msgid "Includes all privileges except GRANT."
-msgstr ""
-
-#: libraries/messages.inc.php:26 server_privileges.php:153
-#: server_privileges.php:476
-msgid "Allows altering the structure of existing tables."
-msgstr ""
-
-#: libraries/messages.inc.php:27 server_privileges.php:169
-#: server_privileges.php:482
-msgid "Allows altering and dropping stored routines."
-msgstr ""
-
-#: libraries/messages.inc.php:28 server_privileges.php:145
-#: server_privileges.php:475
-msgid "Allows creating new databases and tables."
-msgstr ""
-
-#: libraries/messages.inc.php:29 server_privileges.php:168
-#: server_privileges.php:481
-msgid "Allows creating stored routines."
-msgstr ""
-
-#: libraries/messages.inc.php:30 server_privileges.php:475
-msgid "Allows creating new tables."
-msgstr ""
-
-#: libraries/messages.inc.php:31 server_privileges.php:156
-#: server_privileges.php:479
-msgid "Allows creating temporary tables."
-msgstr ""
-
-#: libraries/messages.inc.php:32 server_privileges.php:170
-#: server_privileges.php:515
-msgid "Allows creating, dropping and renaming user accounts."
-msgstr ""
-
-#: libraries/messages.inc.php:33 server_privileges.php:160
-#: server_privileges.php:164 server_privileges.php:487
-#: server_privileges.php:491
-msgid "Allows creating new views."
-msgstr ""
-
-#: libraries/messages.inc.php:34 server_privileges.php:144
-#: server_privileges.php:467
-msgid "Allows deleting data."
-msgstr ""
-
-#: libraries/messages.inc.php:35 server_privileges.php:146
-#: server_privileges.php:478
-msgid "Allows dropping databases and tables."
-msgstr ""
-
-#: libraries/messages.inc.php:36 server_privileges.php:478
-msgid "Allows dropping tables."
-msgstr ""
-
-#: libraries/messages.inc.php:37 server_privileges.php:161
-#: server_privileges.php:495
-msgid "Allows to set up events for the event scheduler"
-msgstr ""
-
-#: libraries/messages.inc.php:38 server_privileges.php:171
-#: server_privileges.php:483
-msgid "Allows executing stored routines."
-msgstr ""
-
-#: libraries/messages.inc.php:39 server_privileges.php:150
-#: server_privileges.php:470
-msgid "Allows importing data from and exporting data into files."
-msgstr ""
-
-#: libraries/messages.inc.php:40 server_privileges.php:501
-msgid ""
-"Allows adding users and privileges without reloading the privilege tables."
-msgstr ""
-
-#: libraries/messages.inc.php:41 server_privileges.php:152
-#: server_privileges.php:477
-msgid "Allows creating and dropping indexes."
-msgstr ""
-
-#: libraries/messages.inc.php:42 server_privileges.php:142
-#: server_privileges.php:403 server_privileges.php:465
-msgid "Allows inserting and replacing data."
-msgstr ""
-
-#: libraries/messages.inc.php:43 server_privileges.php:157
-#: server_privileges.php:510
-msgid "Allows locking tables for the current thread."
-msgstr ""
-
-#: libraries/messages.inc.php:44 server_privileges.php:607
-#: server_privileges.php:609
-msgid "Limits the number of new connections the user may open per hour."
-msgstr ""
-
-#: libraries/messages.inc.php:45 server_privileges.php:595
-#: server_privileges.php:597
-msgid "Limits the number of queries the user may send to the server per hour."
-msgstr ""
-
-#: libraries/messages.inc.php:46 server_privileges.php:601
-#: server_privileges.php:603
-msgid ""
-"Limits the number of commands that change any table or database the user may "
-"execute per hour."
-msgstr ""
-
-#: libraries/messages.inc.php:47 server_privileges.php:613
-#: server_privileges.php:615
-msgid "Limits the number of simultaneous connections the user may have."
-msgstr ""
-
-#: libraries/messages.inc.php:48 server_privileges.php:149
-#: server_privileges.php:505
-msgid "Allows viewing processes of all users"
-msgstr ""
-
-#: libraries/messages.inc.php:49 server_privileges.php:151
-#: server_privileges.php:409 server_privileges.php:511
-msgid "Has no effect in this MySQL version."
-msgstr ""
-
-#: libraries/messages.inc.php:50 server_privileges.php:147
-#: server_privileges.php:506
-msgid "Allows reloading server settings and flushing the server's caches."
-msgstr ""
-
-#: libraries/messages.inc.php:51 server_privileges.php:159
-#: server_privileges.php:513
-msgid "Allows the user to ask where the slaves / masters are."
-msgstr ""
-
-#: libraries/messages.inc.php:52 server_privileges.php:158
-#: server_privileges.php:514
-msgid "Needed for the replication slaves."
-msgstr ""
-
-#: libraries/messages.inc.php:53 server_privileges.php:141
-#: server_privileges.php:400 server_privileges.php:464
-msgid "Allows reading data."
-msgstr ""
-
-#: libraries/messages.inc.php:54 server_privileges.php:154
-#: server_privileges.php:508
-msgid "Gives access to the complete list of databases."
-msgstr ""
-
-#: libraries/messages.inc.php:55 server_privileges.php:165
-#: server_privileges.php:167 server_privileges.php:480
-msgid "Allows performing SHOW CREATE VIEW queries."
-msgstr ""
-
-#: libraries/messages.inc.php:56 server_privileges.php:148
-#: server_privileges.php:507
-msgid "Allows shutting down the server."
-msgstr ""
-
-#: libraries/messages.inc.php:57 server_privileges.php:155
-#: server_privileges.php:504
-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/messages.inc.php:58 server_privileges.php:162
-#: server_privileges.php:496
-msgid "Allows creating and dropping triggers"
-msgstr ""
-
-#: libraries/messages.inc.php:59 server_privileges.php:143
-#: server_privileges.php:406 server_privileges.php:466
-msgid "Allows changing data."
-msgstr ""
-
-#: libraries/messages.inc.php:60 server_privileges.php:221
-msgid "No privileges."
-msgstr ""
-
-#: libraries/messages.inc.php:62
-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/messages.inc.php:63
-msgid "The number of transactions that used the temporary binary log cache."
-msgstr ""
-
-#: libraries/messages.inc.php:64
-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 "
-"to increase the tmp_table_size value to cause temporary tables to be memory-"
-"based instead of disk-based."
-msgstr ""
-
-#: libraries/messages.inc.php:65
-msgid "How many temporary files mysqld has created."
-msgstr ""
-
-#: libraries/messages.inc.php:66
-msgid ""
-"The number of in-memory temporary tables created automatically by the server "
-"while executing statements."
-msgstr ""
-
-#: libraries/messages.inc.php:67
-msgid ""
-"The number of rows written with INSERT DELAYED for which some error occurred "
-"(probably duplicate key)."
-msgstr ""
-
-#: libraries/messages.inc.php:68
-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/messages.inc.php:69
-msgid "The number of INSERT DELAYED rows written."
-msgstr ""
-
-#: libraries/messages.inc.php:70
-msgid "The number of executed FLUSH statements."
-msgstr ""
-
-#: libraries/messages.inc.php:71
-msgid "The number of internal COMMIT statements."
-msgstr ""
-
-#: libraries/messages.inc.php:72
-msgid "The number of times a row was deleted from a table."
-msgstr ""
-
-#: libraries/messages.inc.php:73
-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/messages.inc.php:74
-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/messages.inc.php:75
-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/messages.inc.php:76
-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/messages.inc.php:77
-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/messages.inc.php:78
-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 "
-"probably have a lot of queries that require MySQL to scan whole tables or "
-"you have joins that don't use keys properly."
-msgstr ""
-
-#: libraries/messages.inc.php:79
-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 "
-"tables are not properly indexed or that your queries are not written to take "
-"advantage of the indexes you have."
-msgstr ""
-
-#: libraries/messages.inc.php:80
-msgid "The number of internal ROLLBACK statements."
-msgstr ""
-
-#: libraries/messages.inc.php:81
-msgid "The number of requests to update a row in a table."
-msgstr ""
-
-#: libraries/messages.inc.php:82
-msgid "The number of requests to insert a row in a table."
-msgstr ""
-
-#: libraries/messages.inc.php:83
-msgid "The number of pages containing data (dirty or clean)."
-msgstr ""
-
-#: libraries/messages.inc.php:84
-msgid "The number of pages currently dirty."
-msgstr ""
-
-#: libraries/messages.inc.php:85
-msgid "The number of buffer pool pages that have been requested to be flushed."
-msgstr ""
-
-#: libraries/messages.inc.php:86
-msgid "The number of free pages."
-msgstr ""
-
-#: libraries/messages.inc.php:87
-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/messages.inc.php:88
-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 "
-"be calculated as Innodb_buffer_pool_pages_total - "
-"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data."
-msgstr ""
-
-#: libraries/messages.inc.php:89
-msgid "Total size of buffer pool, in pages."
-msgstr ""
-
-#: libraries/messages.inc.php:90
-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/messages.inc.php:91
-msgid ""
-"The number of sequential read-aheads InnoDB initiated. This happens when "
-"InnoDB does a sequential full table scan."
-msgstr ""
-
-#: libraries/messages.inc.php:92
-msgid "The number of logical read requests InnoDB has done."
-msgstr ""
-
-#: libraries/messages.inc.php:93
-msgid ""
-"The number of logical reads that InnoDB could not satisfy from buffer pool "
-"and had to do a single-page read."
-msgstr ""
-
-#: libraries/messages.inc.php:94
-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 "
-"available, it's necessary to wait for pages to be flushed first. This "
-"counter counts instances of these waits. If the buffer pool size was set "
-"properly, this value should be small."
-msgstr ""
-
-#: libraries/messages.inc.php:95
-msgid "The number writes done to the InnoDB buffer pool."
-msgstr ""
-
-#: libraries/messages.inc.php:96
-msgid "The number of fsync() operations so far."
-msgstr ""
-
-#: libraries/messages.inc.php:97
-msgid "The current number of pending fsync() operations."
-msgstr ""
-
-#: libraries/messages.inc.php:98
-msgid "The current number of pending reads."
-msgstr ""
-
-#: libraries/messages.inc.php:99
-msgid "The current number of pending writes."
-msgstr ""
-
-#: libraries/messages.inc.php:100
-msgid "The amount of data read so far, in bytes."
-msgstr ""
-
-#: libraries/messages.inc.php:101
-msgid "The total number of data reads."
-msgstr ""
-
-#: libraries/messages.inc.php:102
-msgid "The total number of data writes."
-msgstr ""
-
-#: libraries/messages.inc.php:103
-msgid "The amount of data written so far, in bytes."
-msgstr ""
-
-#: libraries/messages.inc.php:104
-msgid "The number of pages that have been written for doublewrite operations."
-msgstr ""
-
-#: libraries/messages.inc.php:105
-msgid "The number of doublewrite operations that have been performed."
-msgstr ""
-
-#: libraries/messages.inc.php:106
-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/messages.inc.php:107
-msgid "The number of log write requests."
-msgstr ""
-
-#: libraries/messages.inc.php:108
-msgid "The number of physical writes to the log file."
-msgstr ""
-
-#: libraries/messages.inc.php:109
-msgid "The number of fsync() writes done to the log file."
-msgstr ""
-
-#: libraries/messages.inc.php:110
-msgid "The number of pending log file fsyncs."
-msgstr ""
-
-#: libraries/messages.inc.php:111
-msgid "Pending log file writes."
-msgstr ""
-
-#: libraries/messages.inc.php:112
-msgid "The number of bytes written to the log file."
-msgstr ""
-
-#: libraries/messages.inc.php:113
-msgid "The number of pages created."
-msgstr ""
-
-#: libraries/messages.inc.php:114
-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/messages.inc.php:115
-msgid "The number of pages read."
-msgstr ""
-
-#: libraries/messages.inc.php:116
-msgid "The number of pages written."
-msgstr ""
-
-#: libraries/messages.inc.php:117
-msgid "The number of row locks currently being waited for."
-msgstr ""
-
-#: libraries/messages.inc.php:118
-msgid "The average time to acquire a row lock, in milliseconds."
-msgstr ""
-
-#: libraries/messages.inc.php:119
-msgid "The total time spent in acquiring row locks, in milliseconds."
-msgstr ""
-
-#: libraries/messages.inc.php:120
-msgid "The maximum time to acquire a row lock, in milliseconds."
-msgstr ""
-
-#: libraries/messages.inc.php:121
-msgid "The number of times a row lock had to be waited for."
-msgstr ""
-
-#: libraries/messages.inc.php:122
-msgid "The number of rows deleted from InnoDB tables."
-msgstr ""
-
-#: libraries/messages.inc.php:123
-msgid "The number of rows inserted in InnoDB tables."
-msgstr ""
-
-#: libraries/messages.inc.php:124
-msgid "The number of rows read from InnoDB tables."
-msgstr ""
-
-#: libraries/messages.inc.php:125
-msgid "The number of rows updated in InnoDB tables."
-msgstr ""
-
-#: libraries/messages.inc.php:126
-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/messages.inc.php:127
-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/messages.inc.php:128
-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/messages.inc.php:129
-msgid "The number of requests to read a key block from the cache."
-msgstr ""
-
-#: libraries/messages.inc.php:130
-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/messages.inc.php:131
-msgid "The number of requests to write a key block to the cache."
-msgstr ""
-
-#: libraries/messages.inc.php:132
-msgid "The number of physical writes of a key block to disk."
-msgstr ""
-
-#: libraries/messages.inc.php:133
-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/messages.inc.php:134
-msgid "The number of rows waiting to be written in INSERT DELAYED queues."
-msgstr ""
-
-#: libraries/messages.inc.php:135
-msgid ""
-"The number of tables that have been opened. If opened tables is big, your "
-"table cache value is probably too small."
-msgstr ""
-
-#: libraries/messages.inc.php:136
-msgid "The number of files that are open."
-msgstr ""
-
-#: libraries/messages.inc.php:137
-msgid "The number of streams that are open (used mainly for logging)."
-msgstr ""
-
-#: libraries/messages.inc.php:138
-msgid "The number of tables that are open."
-msgstr ""
-
-#: libraries/messages.inc.php:139
-msgid "The number of free memory blocks in query cache."
-msgstr ""
-
-#: libraries/messages.inc.php:140
-msgid "The amount of free memory for query cache."
-msgstr ""
-
-#: libraries/messages.inc.php:141
-msgid "The number of cache hits."
-msgstr ""
-
-#: libraries/messages.inc.php:142
-msgid "The number of queries added to the cache."
-msgstr ""
-
-#: libraries/messages.inc.php:143
-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 "
-"cache size. The query cache uses a least recently used (LRU) strategy to "
-"decide which queries to remove from the cache."
-msgstr ""
-
-#: libraries/messages.inc.php:144
-msgid ""
-"The number of non-cached queries (not cachable, or not cached due to the "
-"query_cache_type setting)."
-msgstr ""
-
-#: libraries/messages.inc.php:145
-msgid "The number of queries registered in the cache."
-msgstr ""
-
-#: libraries/messages.inc.php:146
-msgid "The total number of blocks in the query cache."
-msgstr ""
-
-#: libraries/messages.inc.php:147
-msgctxt "$strShowStatusReset"
-msgid "Reset"
-msgstr ""
-
-#: libraries/messages.inc.php:148
-msgid "The status of failsafe replication (not yet implemented)."
-msgstr ""
-
-#: libraries/messages.inc.php:149
-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/messages.inc.php:150
-msgid "The number of joins that used a range search on a reference table."
-msgstr ""
-
-#: libraries/messages.inc.php:151
-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/messages.inc.php:152
-msgid ""
-"The number of joins that used ranges on the first table. (It's normally not "
-"critical even if this is big.)"
-msgstr ""
-
-#: libraries/messages.inc.php:153
-msgid "The number of joins that did a full scan of the first table."
-msgstr ""
-
-#: libraries/messages.inc.php:154
-msgid "The number of temporary tables currently open by the slave SQL thread."
-msgstr ""
-
-#: libraries/messages.inc.php:155
-msgid ""
-"Total (since startup) number of times the replication slave SQL thread has "
-"retried transactions."
-msgstr ""
-
-#: libraries/messages.inc.php:156
-msgid "This is ON if this server is a slave that is connected to a master."
-msgstr ""
-
-#: libraries/messages.inc.php:157
-msgid ""
-"The number of threads that have taken more than slow_launch_time seconds to "
-"create."
-msgstr ""
-
-#: libraries/messages.inc.php:158
-msgid ""
-"The number of queries that have taken more than long_query_time seconds."
-msgstr ""
-
-#: libraries/messages.inc.php:159
-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/messages.inc.php:160
-msgid "The number of sorts that were done with ranges."
-msgstr ""
-
-#: libraries/messages.inc.php:161
-msgid "The number of sorted rows."
-msgstr ""
-
-#: libraries/messages.inc.php:162
-msgid "The number of sorts that were done by scanning the table."
-msgstr ""
-
-#: libraries/messages.inc.php:163
-msgid "The number of times that a table lock was acquired immediately."
-msgstr ""
-
-#: libraries/messages.inc.php:164
-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 "
-"should first optimize your queries, and then either split your table or "
-"tables or use replication."
-msgstr ""
-
-#: libraries/messages.inc.php:165
-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/messages.inc.php:166
-msgid "The number of currently open connections."
-msgstr ""
-
-#: libraries/messages.inc.php:167
-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 "
-"doesn't give a notable performance improvement if you have a good thread "
-"implementation.)"
-msgstr ""
-
-#: libraries/messages.inc.php:168
-msgid "The number of threads that are not sleeping."
-msgstr ""
-
#: libraries/mult_submits.inc.php:76 libraries/tbl_properties.inc.php:513
#: tbl_structure.php:29 tbl_structure.php:153 tbl_structure.php:157
#: tbl_structure.php:473
@@ -4120,8 +3390,8 @@ msgstr ""
#: libraries/replication_gui.lib.php:55 libraries/replication_gui.lib.php:56
#: libraries/replication_gui.lib.php:249 libraries/replication_gui.lib.php:252
-#: libraries/replication_gui.lib.php:259 server_privileges.php:672
-#: server_privileges.php:675 server_privileges.php:682
+#: libraries/replication_gui.lib.php:259 server_privileges.php:711
+#: server_privileges.php:714 server_privileges.php:721
#: server_synchronize.php:1171
msgid "User name"
msgstr ""
@@ -4139,11 +3409,11 @@ msgid "Slave status"
msgstr ""
#: libraries/replication_gui.lib.php:114 libraries/sql_query_form.lib.php:445
-#: server_status.php:626 server_variables.php:52
+#: server_status.php:737 server_variables.php:52
msgid "Variable"
msgstr ""
-#: libraries/replication_gui.lib.php:115 server_status.php:627
+#: libraries/replication_gui.lib.php:115 server_status.php:738
#: tbl_change.php:324 tbl_printview.php:370 tbl_select.php:139
#: tbl_structure.php:729
msgid "Value"
@@ -4163,41 +3433,58 @@ msgstr ""
msgid "Add slave replication user"
msgstr ""
-#: libraries/replication_gui.lib.php:254 server_privileges.php:677
+#: libraries/replication_gui.lib.php:254 server_privileges.php:716
msgid "Any user"
msgstr ""
#: libraries/replication_gui.lib.php:255 libraries/replication_gui.lib.php:323
-#: libraries/replication_gui.lib.php:346 server_privileges.php:678
-#: server_privileges.php:745 server_privileges.php:769
-#: server_privileges.php:1889 server_privileges.php:1919
+#: libraries/replication_gui.lib.php:346 server_privileges.php:717
+#: server_privileges.php:784 server_privileges.php:808
+#: server_privileges.php:1928 server_privileges.php:1958
msgid "Use text field"
msgstr ""
-#: libraries/replication_gui.lib.php:302 server_privileges.php:725
+#: libraries/replication_gui.lib.php:302 server_privileges.php:764
msgid "Any host"
msgstr ""
-#: libraries/replication_gui.lib.php:306 server_privileges.php:729
+#: libraries/replication_gui.lib.php:306 server_privileges.php:768
msgid "Local"
msgstr ""
-#: libraries/replication_gui.lib.php:312 server_privileges.php:734
+#: libraries/replication_gui.lib.php:312 server_privileges.php:773
msgid "This Host"
msgstr ""
-#: libraries/replication_gui.lib.php:318 server_privileges.php:740
+#: libraries/replication_gui.lib.php:318 server_privileges.php:779
msgid "Use Host Table"
msgstr ""
-#: libraries/replication_gui.lib.php:331 server_privileges.php:753
+#: libraries/replication_gui.lib.php:331 server_privileges.php:792
msgid ""
"When Host table is used, this field is ignored and values stored in Host "
"table are used instead."
msgstr ""
-#: libraries/select_lang.lib.php:480 libraries/select_lang.lib.php:486
-#: libraries/select_lang.lib.php:492
+#. l10n: Text direction, use either ltr or rtl
+#: libraries/select_lang.lib.php:491
+msgid "ltr"
+msgstr "ltr"
+
+#: libraries/select_lang.lib.php:493
+msgid "Content of table __TABLE__"
+msgstr ""
+
+#: libraries/select_lang.lib.php:494
+msgid "(continued)"
+msgstr ""
+
+#: libraries/select_lang.lib.php:495
+msgid "Structure of table __TABLE__"
+msgstr ""
+
+#: libraries/select_lang.lib.php:500 libraries/select_lang.lib.php:506
+#: libraries/select_lang.lib.php:512
#, php-format
msgid "Unknown language: %1$s."
msgstr ""
@@ -4208,7 +3495,7 @@ msgid "Servers"
msgstr ""
#: libraries/server_links.inc.php:53 server_engines.php:112
-#: server_engines.php:116 server_status.php:304 test/theme.php:105
+#: server_engines.php:116 server_status.php:415 test/theme.php:105
msgid "Variables"
msgstr ""
@@ -4221,7 +3508,7 @@ msgid "Engines"
msgstr ""
#: libraries/server_links.inc.php:76 server_binlog.php:110
-#: server_status.php:253 test/theme.php:121
+#: server_status.php:364 test/theme.php:121
msgid "Binary log"
msgstr ""
@@ -4580,8 +3867,8 @@ msgstr ""
msgid "Protocol version"
msgstr ""
-#: main.php:189 server_privileges.php:1350 server_privileges.php:1497
-#: server_privileges.php:1611 server_privileges.php:2029
+#: main.php:189 server_privileges.php:1389 server_privileges.php:1536
+#: server_privileges.php:1650 server_privileges.php:2068
#: server_processlist.php:54
msgid "User"
msgstr ""
@@ -4935,7 +4222,7 @@ msgstr ""
msgid "Databases statistics"
msgstr ""
-#: server_databases.php:117 server_status.php:260
+#: server_databases.php:117 server_status.php:371
#: setup/lib/messages.inc.php:117
msgid "Tables"
msgstr ""
@@ -4953,6 +4240,14 @@ msgstr ""
msgid "Jump to database"
msgstr ""
+#: server_databases.php:267
+msgid "Not replicated"
+msgstr ""
+
+#: server_databases.php:273
+msgid "Replicated"
+msgstr ""
+
#: server_databases.php:289
#, php-format
msgid "Check privileges for database "%s"."
@@ -4984,138 +4279,320 @@ msgstr ""
msgid "View dump (schema) of databases"
msgstr ""
-#: server_privileges.php:263 server_privileges.php:264
+#: server_privileges.php:24 server_privileges.php:266
+msgid "Includes all privileges except GRANT."
+msgstr ""
+
+#: server_privileges.php:25 server_privileges.php:192
+#: server_privileges.php:515
+msgid "Allows altering the structure of existing tables."
+msgstr ""
+
+#: server_privileges.php:26 server_privileges.php:208
+#: server_privileges.php:521
+msgid "Allows altering and dropping stored routines."
+msgstr ""
+
+#: server_privileges.php:27 server_privileges.php:184
+#: server_privileges.php:514
+msgid "Allows creating new databases and tables."
+msgstr ""
+
+#: server_privileges.php:28 server_privileges.php:207
+#: server_privileges.php:520
+msgid "Allows creating stored routines."
+msgstr ""
+
+#: server_privileges.php:29 server_privileges.php:514
+msgid "Allows creating new tables."
+msgstr ""
+
+#: server_privileges.php:30 server_privileges.php:195
+#: server_privileges.php:518
+msgid "Allows creating temporary tables."
+msgstr ""
+
+#: server_privileges.php:31 server_privileges.php:209
+#: server_privileges.php:554
+msgid "Allows creating, dropping and renaming user accounts."
+msgstr ""
+
+#: server_privileges.php:32 server_privileges.php:199
+#: server_privileges.php:203 server_privileges.php:526
+#: server_privileges.php:530
+msgid "Allows creating new views."
+msgstr ""
+
+#: server_privileges.php:33 server_privileges.php:183
+#: server_privileges.php:506
+msgid "Allows deleting data."
+msgstr ""
+
+#: server_privileges.php:34 server_privileges.php:185
+#: server_privileges.php:517
+msgid "Allows dropping databases and tables."
+msgstr ""
+
+#: server_privileges.php:35 server_privileges.php:517
+msgid "Allows dropping tables."
+msgstr ""
+
+#: server_privileges.php:36 server_privileges.php:200
+#: server_privileges.php:534
+msgid "Allows to set up events for the event scheduler"
+msgstr ""
+
+#: server_privileges.php:37 server_privileges.php:210
+#: server_privileges.php:522
+msgid "Allows executing stored routines."
+msgstr ""
+
+#: server_privileges.php:38 server_privileges.php:189
+#: server_privileges.php:509
+msgid "Allows importing data from and exporting data into files."
+msgstr ""
+
+#: server_privileges.php:39 server_privileges.php:540
+msgid ""
+"Allows adding users and privileges without reloading the privilege tables."
+msgstr ""
+
+#: server_privileges.php:40 server_privileges.php:191
+#: server_privileges.php:516
+msgid "Allows creating and dropping indexes."
+msgstr ""
+
+#: server_privileges.php:41 server_privileges.php:181
+#: server_privileges.php:442 server_privileges.php:504
+msgid "Allows inserting and replacing data."
+msgstr ""
+
+#: server_privileges.php:42 server_privileges.php:196
+#: server_privileges.php:549
+msgid "Allows locking tables for the current thread."
+msgstr ""
+
+#: server_privileges.php:43 server_privileges.php:646
+#: server_privileges.php:648
+msgid "Limits the number of new connections the user may open per hour."
+msgstr ""
+
+#: server_privileges.php:44 server_privileges.php:634
+#: server_privileges.php:636
+msgid "Limits the number of queries the user may send to the server per hour."
+msgstr ""
+
+#: server_privileges.php:45 server_privileges.php:640
+#: server_privileges.php:642
+msgid ""
+"Limits the number of commands that change any table or database the user may "
+"execute per hour."
+msgstr ""
+
+#: server_privileges.php:46 server_privileges.php:652
+#: server_privileges.php:654
+msgid "Limits the number of simultaneous connections the user may have."
+msgstr ""
+
+#: server_privileges.php:47 server_privileges.php:188
+#: server_privileges.php:544
+msgid "Allows viewing processes of all users"
+msgstr ""
+
+#: server_privileges.php:48 server_privileges.php:190
+#: server_privileges.php:448 server_privileges.php:550
+msgid "Has no effect in this MySQL version."
+msgstr ""
+
+#: server_privileges.php:49 server_privileges.php:186
+#: server_privileges.php:545
+msgid "Allows reloading server settings and flushing the server's caches."
+msgstr ""
+
+#: server_privileges.php:50 server_privileges.php:198
+#: server_privileges.php:552
+msgid "Allows the user to ask where the slaves / masters are."
+msgstr ""
+
+#: server_privileges.php:51 server_privileges.php:197
+#: server_privileges.php:553
+msgid "Needed for the replication slaves."
+msgstr ""
+
+#: server_privileges.php:52 server_privileges.php:180
+#: server_privileges.php:439 server_privileges.php:503
+msgid "Allows reading data."
+msgstr ""
+
+#: server_privileges.php:53 server_privileges.php:193
+#: server_privileges.php:547
+msgid "Gives access to the complete list of databases."
+msgstr ""
+
+#: server_privileges.php:54 server_privileges.php:204
+#: server_privileges.php:206 server_privileges.php:519
+msgid "Allows performing SHOW CREATE VIEW queries."
+msgstr ""
+
+#: server_privileges.php:55 server_privileges.php:187
+#: server_privileges.php:546
+msgid "Allows shutting down the server."
+msgstr ""
+
+#: server_privileges.php:56 server_privileges.php:194
+#: server_privileges.php:543
+msgid ""
+"Allows connecting, even if maximum number of connections is reached; "
+"required for most administrative operations like setting global variables or "
+"killing threads of other users."
+msgstr ""
+
+#: server_privileges.php:57 server_privileges.php:201
+#: server_privileges.php:535
+msgid "Allows creating and dropping triggers"
+msgstr ""
+
+#: server_privileges.php:58 server_privileges.php:182
+#: server_privileges.php:445 server_privileges.php:505
+msgid "Allows changing data."
+msgstr ""
+
+#: server_privileges.php:59 server_privileges.php:260
+msgid "No privileges."
+msgstr ""
+
+#: server_privileges.php:302 server_privileges.php:303
msgctxt "None privileges"
msgid "None"
msgstr ""
-#: server_privileges.php:392 server_privileges.php:527
-#: server_privileges.php:1679 server_privileges.php:1685
+#: server_privileges.php:431 server_privileges.php:566
+#: server_privileges.php:1718 server_privileges.php:1724
msgid "Table-specific privileges"
msgstr ""
-#: server_privileges.php:393 server_privileges.php:535
-#: server_privileges.php:1501
+#: server_privileges.php:432 server_privileges.php:574
+#: server_privileges.php:1540
msgid " Note: MySQL privilege names are expressed in English "
msgstr ""
-#: server_privileges.php:524 server_privileges.php:1500
+#: server_privileges.php:563 server_privileges.php:1539
msgid "Global privileges"
msgstr ""
-#: server_privileges.php:526 server_privileges.php:1679
+#: server_privileges.php:565 server_privileges.php:1718
msgid "Database-specific privileges"
msgstr ""
-#: server_privileges.php:571
+#: server_privileges.php:610
msgid "Administration"
msgstr ""
-#: server_privileges.php:591
+#: server_privileges.php:630
msgid "Resource limits"
msgstr ""
-#: server_privileges.php:592
+#: server_privileges.php:631
msgid "Note: Setting these options to 0 (zero) removes the limit."
msgstr ""
-#: server_privileges.php:669
+#: server_privileges.php:708
msgid "Login Information"
msgstr ""
-#: server_privileges.php:763
+#: server_privileges.php:802
msgid "Do not change the password"
msgstr ""
-#: server_privileges.php:804 server_privileges.php:2166
+#: server_privileges.php:843 server_privileges.php:2205
msgid "No user found."
msgstr ""
-#: server_privileges.php:848
+#: server_privileges.php:887
#, php-format
msgid "The user %s already exists!"
msgstr ""
-#: server_privileges.php:931
+#: server_privileges.php:970
msgid "You have added a new user."
msgstr "நீங்கள் புதிய பயனாளரை சேர்த்துள்ளீர்கள்"
-#: server_privileges.php:1152
+#: server_privileges.php:1191
#, php-format
msgid "You have updated the privileges for %s."
msgstr ""
-#: server_privileges.php:1176
+#: server_privileges.php:1215
#, php-format
msgid "You have revoked the privileges for %s"
msgstr ""
-#: server_privileges.php:1212
+#: server_privileges.php:1251
#, php-format
msgid "The password for %s was changed successfully."
msgstr ""
-#: server_privileges.php:1232
+#: server_privileges.php:1271
#, php-format
msgid "Deleting %s"
msgstr ""
-#: server_privileges.php:1243
+#: server_privileges.php:1282
msgid "No users selected for deleting!"
msgstr ""
-#: server_privileges.php:1246
+#: server_privileges.php:1285
msgid "Reloading the privileges"
msgstr ""
-#: server_privileges.php:1261
+#: server_privileges.php:1300
msgid "The selected users have been deleted successfully."
msgstr ""
-#: server_privileges.php:1296
+#: server_privileges.php:1335
msgid "The privileges were reloaded successfully."
msgstr ""
-#: server_privileges.php:1324 server_privileges.php:1610
+#: server_privileges.php:1363 server_privileges.php:1649
msgid "Edit Privileges"
msgstr ""
-#: server_privileges.php:1333
+#: server_privileges.php:1372
msgid "Revoke"
msgstr ""
-#: server_privileges.php:1365
+#: server_privileges.php:1404
msgid "User overview"
msgstr ""
-#: server_privileges.php:1502 server_privileges.php:1684
-#: server_privileges.php:2033
+#: server_privileges.php:1541 server_privileges.php:1723
+#: server_privileges.php:2072
msgid "Grant"
msgstr ""
-#: server_privileges.php:1521 server_privileges.php:2123
+#: server_privileges.php:1560 server_privileges.php:2162
msgid "Any"
msgstr ""
-#: server_privileges.php:1570 server_privileges.php:1594
-#: server_privileges.php:1988 server_privileges.php:2177
+#: server_privileges.php:1609 server_privileges.php:1633
+#: server_privileges.php:2027 server_privileges.php:2216
msgid "Add a new User"
msgstr "புதிய பயனாளரை சேர்க்க"
-#: server_privileges.php:1575
+#: server_privileges.php:1614
msgid "Remove selected users"
msgstr ""
-#: server_privileges.php:1578
+#: server_privileges.php:1617
msgid "Revoke all active privileges from the users and delete them afterwards."
msgstr ""
-#: server_privileges.php:1579 server_privileges.php:1580
-#: server_privileges.php:1581
+#: server_privileges.php:1618 server_privileges.php:1619
+#: server_privileges.php:1620
msgid "Drop the databases that have the same names as the users."
msgstr ""
-#: server_privileges.php:1597
+#: server_privileges.php:1636
#, php-format
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
@@ -5124,89 +4601,89 @@ msgid ""
"sreload the privileges%s before you continue."
msgstr ""
-#: server_privileges.php:1645
+#: server_privileges.php:1684
msgid "The selected user was not found in the privilege table."
msgstr ""
-#: server_privileges.php:1685
+#: server_privileges.php:1724
msgid "Column-specific privileges"
msgstr ""
-#: server_privileges.php:1886
+#: server_privileges.php:1925
msgid "Add privileges on the following database"
msgstr "பின்வரும் கொட்பிட்கான புதிய அனுமதியை சேர்க்க"
-#: server_privileges.php:1904
+#: server_privileges.php:1943
msgid "Wildcards % and _ should be escaped with a \\ to use them literally"
msgstr ""
-#: server_privileges.php:1907
+#: server_privileges.php:1946
msgid "Add privileges on the following table"
msgstr ""
-#: server_privileges.php:1964
+#: server_privileges.php:2003
msgid "Change Login Information / Copy User"
msgstr ""
-#: server_privileges.php:1967
+#: server_privileges.php:2006
msgid "Create a new user with the same privileges and ..."
msgstr ""
-#: server_privileges.php:1969
+#: server_privileges.php:2008
msgid "... keep the old one."
msgstr ""
-#: server_privileges.php:1970
+#: server_privileges.php:2009
msgid " ... delete the old one from the user tables."
msgstr ""
-#: server_privileges.php:1971
+#: server_privileges.php:2010
msgid ""
" ... revoke all active privileges from the old one and delete it afterwards."
msgstr ""
-#: server_privileges.php:1972
+#: server_privileges.php:2011
msgid ""
" ... delete the old one from the user tables and reload the privileges "
"afterwards."
msgstr ""
-#: server_privileges.php:1994
+#: server_privileges.php:2033
msgid "Database for user"
msgstr ""
-#: server_privileges.php:1998
+#: server_privileges.php:2037
msgctxt "Create none database for user"
msgid "None"
msgstr ""
-#: server_privileges.php:1999
+#: server_privileges.php:2038
msgid "Create database with same name and grant all privileges"
msgstr ""
-#: server_privileges.php:2000
+#: server_privileges.php:2039
msgid "Grant all privileges on wildcard name (username\\_%)"
msgstr ""
-#: server_privileges.php:2003
+#: server_privileges.php:2042
#, php-format
msgid "Grant all privileges on database "%s""
msgstr ""
-#: server_privileges.php:2026
+#: server_privileges.php:2065
#, php-format
msgid "Users having access to "%s""
msgstr ""
-#: server_privileges.php:2134
+#: server_privileges.php:2173
msgid "global"
msgstr ""
-#: server_privileges.php:2136
+#: server_privileges.php:2175
msgid "database-specific"
msgstr ""
-#: server_privileges.php:2138
+#: server_privileges.php:2177
msgid "wildcard"
msgstr ""
@@ -5252,7 +4729,7 @@ msgstr ""
msgid "This server is configured as master in a replication process."
msgstr ""
-#: server_replication.php:184 server_status.php:281
+#: server_replication.php:184 server_status.php:392
msgid "Show master status"
msgstr ""
@@ -5387,165 +4864,696 @@ msgid ""
"like to configure it?"
msgstr ""
+#: server_status.php:40
+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 ""
+
+#: server_status.php:41
+msgid "The number of transactions that used the temporary binary log cache."
+msgstr ""
+
+#: server_status.php:42
+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 "
+"to increase the tmp_table_size value to cause temporary tables to be memory-"
+"based instead of disk-based."
+msgstr ""
+
+#: server_status.php:43
+msgid "How many temporary files mysqld has created."
+msgstr ""
+
+#: server_status.php:44
+msgid ""
+"The number of in-memory temporary tables created automatically by the server "
+"while executing statements."
+msgstr ""
+
+#: server_status.php:45
+msgid ""
+"The number of rows written with INSERT DELAYED for which some error occurred "
+"(probably duplicate key)."
+msgstr ""
+
#: server_status.php:46
+msgid ""
+"The number of INSERT DELAYED handler threads in use. Every different table "
+"on which one uses INSERT DELAYED gets its own thread."
+msgstr ""
+
+#: server_status.php:47
+msgid "The number of INSERT DELAYED rows written."
+msgstr ""
+
+#: server_status.php:48
+msgid "The number of executed FLUSH statements."
+msgstr ""
+
+#: server_status.php:49
+msgid "The number of internal COMMIT statements."
+msgstr ""
+
+#: server_status.php:50
+msgid "The number of times a row was deleted from a table."
+msgstr ""
+
+#: server_status.php:51
+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 ""
+
+#: server_status.php:52
+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 ""
+
+#: server_status.php:53
+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 ""
+
+#: server_status.php:54
+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 ""
+
+#: server_status.php:55
+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 ""
+
+#: server_status.php:56
+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 "
+"probably have a lot of queries that require MySQL to scan whole tables or "
+"you have joins that don't use keys properly."
+msgstr ""
+
+#: server_status.php:57
+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 "
+"tables are not properly indexed or that your queries are not written to take "
+"advantage of the indexes you have."
+msgstr ""
+
+#: server_status.php:58
+msgid "The number of internal ROLLBACK statements."
+msgstr ""
+
+#: server_status.php:59
+msgid "The number of requests to update a row in a table."
+msgstr ""
+
+#: server_status.php:60
+msgid "The number of requests to insert a row in a table."
+msgstr ""
+
+#: server_status.php:61
+msgid "The number of pages containing data (dirty or clean)."
+msgstr ""
+
+#: server_status.php:62
+msgid "The number of pages currently dirty."
+msgstr ""
+
+#: server_status.php:63
+msgid "The number of buffer pool pages that have been requested to be flushed."
+msgstr ""
+
+#: server_status.php:64
+msgid "The number of free pages."
+msgstr ""
+
+#: server_status.php:65
+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 ""
+
+#: server_status.php:66
+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 "
+"be calculated as Innodb_buffer_pool_pages_total - "
+"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data."
+msgstr ""
+
+#: server_status.php:67
+msgid "Total size of buffer pool, in pages."
+msgstr ""
+
+#: server_status.php:68
+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 ""
+
+#: server_status.php:69
+msgid ""
+"The number of sequential read-aheads InnoDB initiated. This happens when "
+"InnoDB does a sequential full table scan."
+msgstr ""
+
+#: server_status.php:70
+msgid "The number of logical read requests InnoDB has done."
+msgstr ""
+
+#: server_status.php:71
+msgid ""
+"The number of logical reads that InnoDB could not satisfy from buffer pool "
+"and had to do a single-page read."
+msgstr ""
+
+#: server_status.php:72
+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 "
+"available, it's necessary to wait for pages to be flushed first. This "
+"counter counts instances of these waits. If the buffer pool size was set "
+"properly, this value should be small."
+msgstr ""
+
+#: server_status.php:73
+msgid "The number writes done to the InnoDB buffer pool."
+msgstr ""
+
+#: server_status.php:74
+msgid "The number of fsync() operations so far."
+msgstr ""
+
+#: server_status.php:75
+msgid "The current number of pending fsync() operations."
+msgstr ""
+
+#: server_status.php:76
+msgid "The current number of pending reads."
+msgstr ""
+
+#: server_status.php:77
+msgid "The current number of pending writes."
+msgstr ""
+
+#: server_status.php:78
+msgid "The amount of data read so far, in bytes."
+msgstr ""
+
+#: server_status.php:79
+msgid "The total number of data reads."
+msgstr ""
+
+#: server_status.php:80
+msgid "The total number of data writes."
+msgstr ""
+
+#: server_status.php:81
+msgid "The amount of data written so far, in bytes."
+msgstr ""
+
+#: server_status.php:82
+msgid "The number of pages that have been written for doublewrite operations."
+msgstr ""
+
+#: server_status.php:83
+msgid "The number of doublewrite operations that have been performed."
+msgstr ""
+
+#: server_status.php:84
+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 ""
+
+#: server_status.php:85
+msgid "The number of log write requests."
+msgstr ""
+
+#: server_status.php:86
+msgid "The number of physical writes to the log file."
+msgstr ""
+
+#: server_status.php:87
+msgid "The number of fsync() writes done to the log file."
+msgstr ""
+
+#: server_status.php:88
+msgid "The number of pending log file fsyncs."
+msgstr ""
+
+#: server_status.php:89
+msgid "Pending log file writes."
+msgstr ""
+
+#: server_status.php:90
+msgid "The number of bytes written to the log file."
+msgstr ""
+
+#: server_status.php:91
+msgid "The number of pages created."
+msgstr ""
+
+#: server_status.php:92
+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 ""
+
+#: server_status.php:93
+msgid "The number of pages read."
+msgstr ""
+
+#: server_status.php:94
+msgid "The number of pages written."
+msgstr ""
+
+#: server_status.php:95
+msgid "The number of row locks currently being waited for."
+msgstr ""
+
+#: server_status.php:96
+msgid "The average time to acquire a row lock, in milliseconds."
+msgstr ""
+
+#: server_status.php:97
+msgid "The total time spent in acquiring row locks, in milliseconds."
+msgstr ""
+
+#: server_status.php:98
+msgid "The maximum time to acquire a row lock, in milliseconds."
+msgstr ""
+
+#: server_status.php:99
+msgid "The number of times a row lock had to be waited for."
+msgstr ""
+
+#: server_status.php:100
+msgid "The number of rows deleted from InnoDB tables."
+msgstr ""
+
+#: server_status.php:101
+msgid "The number of rows inserted in InnoDB tables."
+msgstr ""
+
+#: server_status.php:102
+msgid "The number of rows read from InnoDB tables."
+msgstr ""
+
+#: server_status.php:103
+msgid "The number of rows updated in InnoDB tables."
+msgstr ""
+
+#: server_status.php:104
+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 ""
+
+#: server_status.php:105
+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 ""
+
+#: server_status.php:106
+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 ""
+
+#: server_status.php:107
+msgid "The number of requests to read a key block from the cache."
+msgstr ""
+
+#: server_status.php:108
+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 ""
+
+#: server_status.php:109
+msgid "The number of requests to write a key block to the cache."
+msgstr ""
+
+#: server_status.php:110
+msgid "The number of physical writes of a key block to disk."
+msgstr ""
+
+#: server_status.php:111
+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 ""
+
+#: server_status.php:112
+msgid "The number of rows waiting to be written in INSERT DELAYED queues."
+msgstr ""
+
+#: server_status.php:113
+msgid ""
+"The number of tables that have been opened. If opened tables is big, your "
+"table cache value is probably too small."
+msgstr ""
+
+#: server_status.php:114
+msgid "The number of files that are open."
+msgstr ""
+
+#: server_status.php:115
+msgid "The number of streams that are open (used mainly for logging)."
+msgstr ""
+
+#: server_status.php:116
+msgid "The number of tables that are open."
+msgstr ""
+
+#: server_status.php:117
+msgid "The number of free memory blocks in query cache."
+msgstr ""
+
+#: server_status.php:118
+msgid "The amount of free memory for query cache."
+msgstr ""
+
+#: server_status.php:119
+msgid "The number of cache hits."
+msgstr ""
+
+#: server_status.php:120
+msgid "The number of queries added to the cache."
+msgstr ""
+
+#: server_status.php:121
+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 "
+"cache size. The query cache uses a least recently used (LRU) strategy to "
+"decide which queries to remove from the cache."
+msgstr ""
+
+#: server_status.php:122
+msgid ""
+"The number of non-cached queries (not cachable, or not cached due to the "
+"query_cache_type setting)."
+msgstr ""
+
+#: server_status.php:123
+msgid "The number of queries registered in the cache."
+msgstr ""
+
+#: server_status.php:124
+msgid "The total number of blocks in the query cache."
+msgstr ""
+
+#: server_status.php:125
+msgctxt "$strShowStatusReset"
+msgid "Reset"
+msgstr ""
+
+#: server_status.php:126
+msgid "The status of failsafe replication (not yet implemented)."
+msgstr ""
+
+#: server_status.php:127
+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 ""
+
+#: server_status.php:128
+msgid "The number of joins that used a range search on a reference table."
+msgstr ""
+
+#: server_status.php:129
+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 ""
+
+#: server_status.php:130
+msgid ""
+"The number of joins that used ranges on the first table. (It's normally not "
+"critical even if this is big.)"
+msgstr ""
+
+#: server_status.php:131
+msgid "The number of joins that did a full scan of the first table."
+msgstr ""
+
+#: server_status.php:132
+msgid "The number of temporary tables currently open by the slave SQL thread."
+msgstr ""
+
+#: server_status.php:133
+msgid ""
+"Total (since startup) number of times the replication slave SQL thread has "
+"retried transactions."
+msgstr ""
+
+#: server_status.php:134
+msgid "This is ON if this server is a slave that is connected to a master."
+msgstr ""
+
+#: server_status.php:135
+msgid ""
+"The number of threads that have taken more than slow_launch_time seconds to "
+"create."
+msgstr ""
+
+#: server_status.php:136
+msgid ""
+"The number of queries that have taken more than long_query_time seconds."
+msgstr ""
+
+#: server_status.php:137
+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 ""
+
+#: server_status.php:138
+msgid "The number of sorts that were done with ranges."
+msgstr ""
+
+#: server_status.php:139
+msgid "The number of sorted rows."
+msgstr ""
+
+#: server_status.php:140
+msgid "The number of sorts that were done by scanning the table."
+msgstr ""
+
+#: server_status.php:141
+msgid "The number of times that a table lock was acquired immediately."
+msgstr ""
+
+#: server_status.php:142
+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 "
+"should first optimize your queries, and then either split your table or "
+"tables or use replication."
+msgstr ""
+
+#: server_status.php:143
+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 ""
+
+#: server_status.php:144
+msgid "The number of currently open connections."
+msgstr ""
+
+#: server_status.php:145
+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 "
+"doesn't give a notable performance improvement if you have a good thread "
+"implementation.)"
+msgstr ""
+
+#: server_status.php:146
+msgid "The number of threads that are not sleeping."
+msgstr ""
+
+#: server_status.php:157
msgid "Runtime Information"
msgstr ""
-#: server_status.php:250
+#: server_status.php:361
msgid "Handler"
msgstr ""
-#: server_status.php:251
+#: server_status.php:362
msgid "Query cache"
msgstr ""
-#: server_status.php:252
+#: server_status.php:363
msgid "Threads"
msgstr ""
-#: server_status.php:254
+#: server_status.php:365
msgid "Temporary data"
msgstr ""
-#: server_status.php:255
+#: server_status.php:366
msgid "Delayed inserts"
msgstr ""
-#: server_status.php:256
+#: server_status.php:367
msgid "Key cache"
msgstr ""
-#: server_status.php:257
+#: server_status.php:368
msgid "Joins"
msgstr ""
-#: server_status.php:259
+#: server_status.php:370
msgid "Sorting"
msgstr ""
-#: server_status.php:261
+#: server_status.php:372
msgid "Transaction coordinator"
msgstr ""
-#: server_status.php:271
+#: server_status.php:382
msgid "Flush (close) all tables"
msgstr ""
-#: server_status.php:273
+#: server_status.php:384
msgid "Show open tables"
msgstr ""
-#: server_status.php:278
+#: server_status.php:389
msgid "Show slave hosts"
msgstr ""
-#: server_status.php:284
+#: server_status.php:395
msgid "Show slave status"
msgstr ""
-#: server_status.php:289
+#: server_status.php:400
msgid "Flush query cache"
msgstr ""
-#: server_status.php:294
+#: server_status.php:405
msgid "Show processes"
msgstr ""
-#: server_status.php:344
+#: server_status.php:455
msgctxt "for Show status"
msgid "Reset"
msgstr ""
-#: server_status.php:350
+#: server_status.php:461
#, php-format
msgid "This MySQL server has been running for %s. It started up on %s."
msgstr ""
-#: server_status.php:360
+#: server_status.php:471
msgid ""
"This MySQL server works as master and slave in replication"
"b> process."
msgstr ""
-#: server_status.php:362
+#: server_status.php:473
msgid "This MySQL server works as master in replication process."
msgstr ""
-#: server_status.php:364
+#: server_status.php:475
msgid "This MySQL server works as slave in replication process."
msgstr ""
-#: server_status.php:366
+#: server_status.php:477
msgid ""
"For further information about replication status on the server, please visit "
"the replication section."
msgstr ""
-#: server_status.php:383
+#: server_status.php:494
msgid ""
"Server traffic: These tables show the network traffic statistics of "
"this MySQL server since its startup."
msgstr ""
-#: server_status.php:388
+#: server_status.php:499
msgid "Traffic"
msgstr ""
-#: server_status.php:388
+#: server_status.php:499
msgid ""
"On a busy server, the byte counters may overrun, so those statistics as "
"reported by the MySQL server may be incorrect."
msgstr ""
-#: server_status.php:389 server_status.php:434 server_status.php:497
-#: server_status.php:555
+#: server_status.php:500 server_status.php:545 server_status.php:608
+#: server_status.php:666
msgid "per hour"
msgstr ""
-#: server_status.php:394
+#: server_status.php:505
msgid "Received"
msgstr ""
-#: server_status.php:404
+#: server_status.php:515
msgid "Sent"
msgstr ""
-#: server_status.php:433
+#: server_status.php:544
msgid "Connections"
msgstr ""
-#: server_status.php:440
+#: server_status.php:551
msgid "max. concurrent connections"
msgstr ""
-#: server_status.php:447
+#: server_status.php:558
msgid "Failed attempts"
msgstr ""
-#: server_status.php:461
+#: server_status.php:572
msgid "Aborted"
msgstr "நிறுத்தப்பட்டுள்ளது"
-#: server_status.php:490
+#: server_status.php:601
#, php-format
msgid ""
"Query statistics: Since its startup, %s queries have been sent to the "
"server."
msgstr ""
-#: server_status.php:498
+#: server_status.php:609
msgid "per minute"
msgstr ""
-#: server_status.php:499
+#: server_status.php:610
msgid "per second"
msgstr ""
-#: server_status.php:554
+#: server_status.php:665
msgid "Query type"
msgstr ""
-#: server_status.php:721
+#: server_status.php:832
msgid "Replication status"
msgstr ""
diff --git a/po/te.po b/po/te.po
index c2630eb79..4f9e4e0b5 100755
--- a/po/te.po
+++ b/po/te.po
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-06-04 16:07-0400\n"
+"POT-Creation-Date: 2010-06-08 12:32-0400\n"
"PO-Revision-Date: 2010-05-26 14:20+0200\n"
"Last-Translator: \n"
"Language-Team: Telugu \n"
@@ -18,11 +18,11 @@ msgstr ""
"X-Generator: Pootle 2.0.1\n"
#: browse_foreigners.php:38 browse_foreigners.php:59
-#: libraries/display_tbl.lib.php:417 server_privileges.php:1475
+#: libraries/display_tbl.lib.php:417 server_privileges.php:1514
msgid "Show all"
msgstr "అన్నీ చూపించు"
-#: browse_foreigners.php:82 libraries/common.lib.php:2304
+#: browse_foreigners.php:82 libraries/common.lib.php:2313
#: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:394
#: libraries/export/pdf.php:147 pdf_schema.php:283 pdf_schema.php:1123
#: pdf_schema.php:1139
@@ -39,8 +39,8 @@ msgstr ""
# Research అంటే పరిశోధన, అందువల్లన ఇది శోధనైంది
#: browse_foreigners.php:150 db_structure.php:79 db_structure.php:80
#: db_structure.php:91 db_structure.php:93 db_structure.php:104
-#: db_structure.php:106 libraries/common.lib.php:2822
-#: libraries/common.lib.php:2829 libraries/db_links.inc.php:75
+#: db_structure.php:106 libraries/common.lib.php:2831
+#: libraries/common.lib.php:2838 libraries/db_links.inc.php:75
#: libraries/tbl_links.inc.php:63
msgid "Search"
msgstr "శోధించు"
@@ -50,7 +50,7 @@ msgstr "శోధించు"
#: db_structure.php:567 js/messages.php:48 libraries/Config.class.php:1046
#: libraries/Theme_Manager.class.php:311
#: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719
-#: libraries/common.lib.php:1333 libraries/common.lib.php:2279
+#: libraries/common.lib.php:1335 libraries/common.lib.php:2288
#: libraries/display_change_password.lib.php:82
#: libraries/display_create_table.lib.php:63
#: libraries/display_export.lib.php:275 libraries/display_import.lib.php:276
@@ -61,9 +61,9 @@ msgstr "శోధించు"
#: libraries/sql_query_form.lib.php:552 libraries/tbl_properties.inc.php:782
#: main.php:128 navigation.php:237 pdf_pages.php:292 pdf_pages.php:328
#: pdf_pages.php:530 pmd_pdf.php:116 server_binlog.php:142
-#: server_privileges.php:625 server_privileges.php:1585
-#: server_privileges.php:1932 server_privileges.php:1979
-#: server_privileges.php:2018 server_replication.php:235
+#: server_privileges.php:664 server_privileges.php:1624
+#: server_privileges.php:1971 server_privileges.php:2018
+#: server_privileges.php:2057 server_replication.php:235
#: server_replication.php:318 server_replication.php:341
#: server_synchronize.php:1209 tbl_change.php:330 tbl_change.php:1174
#: tbl_change.php:1211 tbl_indexes.php:254 tbl_operations.php:265
@@ -81,7 +81,7 @@ msgstr ""
#: browse_foreigners.php:169 browse_foreigners.php:171
#: server_collations.php:55 server_collations.php:67 server_engines.php:59
-#: server_status.php:628
+#: server_status.php:739
msgid "Description"
msgstr "వివరణ"
@@ -123,7 +123,7 @@ msgstr "ఆజ్ఞ"
#: libraries/db_structure.lib.php:60 libraries/export/htmlword.php:245
#: libraries/export/latex.php:360 libraries/export/odt.php:297
#: libraries/export/texytext.php:234 libraries/tbl_properties.inc.php:100
-#: pdf_schema.php:1263 pdf_schema.php:1284 server_privileges.php:2031
+#: pdf_schema.php:1263 pdf_schema.php:1284 server_privileges.php:2070
#: tbl_change.php:287 tbl_change.php:314 tbl_printview.php:143
#: tbl_printview.php:313 tbl_select.php:136 tbl_structure.php:178
#: tbl_structure.php:659 tbl_tracking.php:274 tbl_tracking.php:321
@@ -167,9 +167,9 @@ msgstr "వ్యాఖ్యలు"
#: libraries/Index.class.php:386 libraries/export/htmlword.php:322
#: libraries/export/latex.php:430 libraries/export/odt.php:368
#: libraries/export/texytext.php:311 libraries/mult_submits.inc.php:263
-#: pdf_schema.php:1344 server_privileges.php:1529 server_privileges.php:1540
-#: server_privileges.php:1850 server_privileges.php:1855
-#: server_privileges.php:2148 sql.php:132 sql.php:194 tbl_printview.php:229
+#: pdf_schema.php:1344 server_privileges.php:1568 server_privileges.php:1579
+#: server_privileges.php:1889 server_privileges.php:1894
+#: server_privileges.php:2187 sql.php:132 sql.php:194 tbl_printview.php:229
#: tbl_structure.php:350 tbl_tracking.php:337 tbl_tracking.php:342
msgid "No"
msgstr "కాదు"
@@ -183,9 +183,9 @@ msgstr "కాదు"
#: libraries/mult_submits.inc.php:101 libraries/mult_submits.inc.php:106
#: libraries/mult_submits.inc.php:111 libraries/mult_submits.inc.php:262
#: libraries/mult_submits.inc.php:273 pdf_schema.php:1344
-#: server_databases.php:64 server_privileges.php:1526
-#: server_privileges.php:1540 server_privileges.php:1850
-#: server_privileges.php:1853 server_privileges.php:2148 sql.php:193
+#: server_databases.php:64 server_privileges.php:1565
+#: server_privileges.php:1579 server_privileges.php:1889
+#: server_privileges.php:1892 server_privileges.php:2187 sql.php:193
#: tbl_printview.php:229 tbl_structure.php:40 tbl_structure.php:350
#: tbl_tracking.php:335 tbl_tracking.php:340
msgid "Yes"
@@ -285,7 +285,7 @@ msgstr ""
msgid "BLOB Repository"
msgstr ""
-#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1350
+#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1352
#: libraries/server_links.inc.php:49 server_processlist.php:59
#: tbl_tracking.php:596 test/theme.php:101
msgid "Status"
@@ -342,8 +342,8 @@ msgstr ""
#: db_printview.php:104 db_tracking.php:72 db_tracking.php:157
#: libraries/db_structure.lib.php:46 libraries/export/xml.php:328
-#: libraries/header.inc.php:126 pdf_pages.php:424 server_privileges.php:1626
-#: server_privileges.php:1682 server_privileges.php:1946
+#: libraries/header.inc.php:126 pdf_pages.php:424 server_privileges.php:1665
+#: server_privileges.php:1721 server_privileges.php:1985
#: server_synchronize.php:423 server_synchronize.php:866 tbl_tracking.php:592
#: test/theme.php:75
msgid "Table"
@@ -447,7 +447,7 @@ msgstr ""
# మొదటి అనువాదము
#: db_qbe.php:370 db_qbe.php:451 db_qbe.php:522 db_qbe.php:553
#: libraries/display_import.lib.php:166 libraries/tbl_properties.inc.php:779
-#: server_privileges.php:258 tbl_change.php:1031 tbl_indexes.php:250
+#: server_privileges.php:297 tbl_change.php:1031 tbl_indexes.php:250
#: tbl_select.php:288
msgid "Or"
msgstr "లేదా"
@@ -477,7 +477,7 @@ msgstr ""
msgid "SQL query on database %s:"
msgstr ""
-#: db_qbe.php:934 libraries/common.lib.php:1223
+#: db_qbe.php:934 libraries/common.lib.php:1225
msgid "Submit Query"
msgstr ""
@@ -516,7 +516,7 @@ msgstr ""
#: db_search.php:267 db_structure.php:77 db_structure.php:78
#: db_structure.php:90 db_structure.php:92 db_structure.php:103
-#: db_structure.php:105 libraries/common.lib.php:2824
+#: db_structure.php:105 libraries/common.lib.php:2833
#: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50
#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:467
msgid "Browse"
@@ -562,26 +562,26 @@ msgstr ""
#: db_structure.php:81 db_structure.php:82 db_structure.php:94
#: db_structure.php:95 db_structure.php:107 db_structure.php:108
-#: libraries/common.lib.php:2823 libraries/sql_query_form.lib.php:334
+#: libraries/common.lib.php:2832 libraries/sql_query_form.lib.php:334
#: libraries/sql_query_form.lib.php:337 libraries/tbl_links.inc.php:76
msgid "Insert"
msgstr ""
#: db_structure.php:83 db_structure.php:96 db_structure.php:109
-#: libraries/common.lib.php:2820 libraries/common.lib.php:2827
+#: libraries/common.lib.php:2829 libraries/common.lib.php:2836
#: libraries/db_links.inc.php:63 libraries/export/htmlword.php:23
#: libraries/export/latex.php:33 libraries/export/latex.php:337
#: libraries/export/odt.php:32 libraries/export/sql.php:60
#: libraries/export/texytext.php:23 libraries/import.lib.php:1104
#: libraries/tbl_links.inc.php:56 pmd_general.php:134
-#: server_privileges.php:554 server_replication.php:315 tbl_tracking.php:269
+#: server_privileges.php:593 server_replication.php:315 tbl_tracking.php:269
msgid "Structure"
msgstr ""
#: db_structure.php:84 db_structure.php:85 db_structure.php:97
#: db_structure.php:98 db_structure.php:110 db_structure.php:111
#: db_structure.php:545 db_structure.php:546 db_tracking.php:91
-#: libraries/Index.class.php:483 libraries/common.lib.php:1654
+#: libraries/Index.class.php:483 libraries/common.lib.php:1656
#: libraries/db_links.inc.php:100 libraries/mult_submits.inc.php:36
#: libraries/mult_submits.inc.php:73 libraries/tbl_links.inc.php:127
#: server_databases.php:352 tbl_structure.php:27 tbl_structure.php:151
@@ -592,7 +592,7 @@ msgstr ""
# మొదటి అనువాదము
#: db_structure.php:86 db_structure.php:87 db_structure.php:99
#: db_structure.php:100 db_structure.php:112 db_structure.php:113
-#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1653
+#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1655
#: libraries/mult_submits.inc.php:39 libraries/tbl_links.inc.php:105
msgid "Empty"
msgstr "ఖాళీ"
@@ -635,7 +635,7 @@ msgstr "చూపుము"
#: db_structure.php:485 libraries/db_structure.lib.php:49
#: libraries/server_links.inc.php:70 server_replication.php:33
-#: server_replication.php:164 server_status.php:258
+#: server_replication.php:164 server_status.php:369
msgid "Replication"
msgstr ""
@@ -652,20 +652,20 @@ msgstr ""
#: db_structure.php:524 db_structure.php:541 db_structure.php:542
#: libraries/display_tbl.lib.php:2081 libraries/display_tbl.lib.php:2086
#: libraries/mult_submits.inc.php:16 server_databases.php:346
-#: server_databases.php:351 server_privileges.php:1557 tbl_structure.php:455
+#: server_databases.php:351 server_privileges.php:1596 tbl_structure.php:455
#: tbl_structure.php:464
msgid "With selected:"
msgstr ""
#: db_structure.php:527 libraries/display_tbl.lib.php:2076
-#: server_databases.php:348 server_privileges.php:530
-#: server_privileges.php:1560 tbl_structure.php:458
+#: server_databases.php:348 server_privileges.php:569
+#: server_privileges.php:1599 tbl_structure.php:458
msgid "Check All"
msgstr ""
#: db_structure.php:531 libraries/display_tbl.lib.php:2077
#: libraries/replication_gui.lib.php:33 server_databases.php:350
-#: server_privileges.php:533 server_privileges.php:1564 tbl_structure.php:462
+#: server_privileges.php:572 server_privileges.php:1603 tbl_structure.php:462
msgid "Uncheck All"
msgstr ""
@@ -703,7 +703,7 @@ msgstr ""
#: libraries/display_export.lib.php:83 libraries/display_tbl.lib.php:2094
#: libraries/display_tbl.lib.php:2225 libraries/mult_submits.inc.php:62
#: libraries/server_links.inc.php:84 libraries/tbl_links.inc.php:82
-#: pmd_pdf.php:84 pmd_pdf.php:109 server_privileges.php:1341
+#: pmd_pdf.php:84 pmd_pdf.php:109 server_privileges.php:1380
#: setup/frames/menu.inc.php:22 tbl_row_action.php:59
msgid "Export"
msgstr ""
@@ -722,8 +722,8 @@ msgstr ""
#: libraries/export/sql.php:342 libraries/export/texytext.php:84
#: libraries/export/xml.php:255 libraries/header.inc.php:106
#: libraries/header_printview.inc.php:58 server_databases.php:169
-#: server_privileges.php:1621 server_privileges.php:1682
-#: server_privileges.php:1940 server_processlist.php:56
+#: server_privileges.php:1660 server_privileges.php:1721
+#: server_privileges.php:1979 server_processlist.php:56
#: server_synchronize.php:1179 server_synchronize.php:1183
#: tbl_tracking.php:591 test/theme.php:65
msgid "Database"
@@ -743,8 +743,8 @@ msgstr ""
#: db_tracking.php:77 libraries/Index.class.php:440
#: libraries/db_structure.lib.php:53 server_databases.php:203
-#: server_privileges.php:1503 server_privileges.php:1686
-#: server_privileges.php:2034 tbl_structure.php:187
+#: server_privileges.php:1542 server_privileges.php:1725
+#: server_privileges.php:2073 tbl_structure.php:187
msgid "Action"
msgstr "చర్య"
@@ -932,11 +932,11 @@ msgstr ""
msgid "The user name is empty!"
msgstr "వాడుకరి పేరులో ఏమీ లేదు"
-#: js/messages.php:44 server_privileges.php:1197 user_password.php:70
+#: js/messages.php:44 server_privileges.php:1236 user_password.php:70
msgid "The password is empty!"
msgstr "సంకేతపదం ఖాళీగా ఉంది!"
-#: js/messages.php:45 server_privileges.php:1195 user_password.php:73
+#: js/messages.php:45 server_privileges.php:1234 user_password.php:73
msgid "The passwords aren't the same!"
msgstr "సంకేతపదాలు సరిపోలలేదు!"
@@ -1013,8 +1013,8 @@ msgstr "క్రితము"
# మొదటి అనువాదము
#. l10n: Display text for next month link in calendar
-#: js/messages.php:77 libraries/common.lib.php:2344
-#: libraries/common.lib.php:2347 libraries/display_tbl.lib.php:338
+#: js/messages.php:77 libraries/common.lib.php:2353
+#: libraries/common.lib.php:2356 libraries/display_tbl.lib.php:338
#: server_binlog.php:205 server_binlog.php:207 tbl_printview.php:424
#: tbl_structure.php:801
msgid "Next"
@@ -1090,27 +1090,27 @@ msgid "December"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:97 libraries/common.lib.php:1555
+#: js/messages.php:97 libraries/common.lib.php:1557
msgid "Jan"
msgstr "జన"
#. l10n: Short month name
-#: js/messages.php:99 libraries/common.lib.php:1557
+#: js/messages.php:99 libraries/common.lib.php:1559
msgid "Feb"
msgstr "ఫిబ్ర"
#. l10n: Short month name
-#: js/messages.php:101 libraries/common.lib.php:1559
+#: js/messages.php:101 libraries/common.lib.php:1561
msgid "Mar"
msgstr "మార్చి"
#. l10n: Short month name
-#: js/messages.php:103 libraries/common.lib.php:1561
+#: js/messages.php:103 libraries/common.lib.php:1563
msgid "Apr"
msgstr "ఏప్రి"
#. l10n: Short month name
-#: js/messages.php:105 libraries/common.lib.php:1563
+#: js/messages.php:105 libraries/common.lib.php:1565
#, fuzzy
#| msgid "May"
msgctxt "Short month name"
@@ -1118,37 +1118,37 @@ msgid "May"
msgstr "మే"
#. l10n: Short month name
-#: js/messages.php:107 libraries/common.lib.php:1565
+#: js/messages.php:107 libraries/common.lib.php:1567
msgid "Jun"
msgstr "జూన్"
#. l10n: Short month name
-#: js/messages.php:109 libraries/common.lib.php:1567
+#: js/messages.php:109 libraries/common.lib.php:1569
msgid "Jul"
msgstr "జూలై"
#. l10n: Short month name
-#: js/messages.php:111 libraries/common.lib.php:1569
+#: js/messages.php:111 libraries/common.lib.php:1571
msgid "Aug"
msgstr "ఆగ"
#. l10n: Short month name
-#: js/messages.php:113 libraries/common.lib.php:1571
+#: js/messages.php:113 libraries/common.lib.php:1573
msgid "Sep"
msgstr "సెప్టె"
#. l10n: Short month name
-#: js/messages.php:115 libraries/common.lib.php:1573
+#: js/messages.php:115 libraries/common.lib.php:1575
msgid "Oct"
msgstr "అక్టో"
#. l10n: Short month name
-#: js/messages.php:117 libraries/common.lib.php:1575
+#: js/messages.php:117 libraries/common.lib.php:1577
msgid "Nov"
msgstr "నవం"
#. l10n: Short month name
-#: js/messages.php:119 libraries/common.lib.php:1577
+#: js/messages.php:119 libraries/common.lib.php:1579
msgid "Dec"
msgstr "డిసెం"
@@ -1189,37 +1189,37 @@ msgid "Saturday"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:132 libraries/common.lib.php:1580
+#: js/messages.php:132 libraries/common.lib.php:1582
msgid "Sun"
msgstr "ఆది"
#. l10n: Short week day name
-#: js/messages.php:134 libraries/common.lib.php:1582
+#: js/messages.php:134 libraries/common.lib.php:1584
msgid "Mon"
msgstr "సోమ"
#. l10n: Short week day name
-#: js/messages.php:136 libraries/common.lib.php:1584
+#: js/messages.php:136 libraries/common.lib.php:1586
msgid "Tue"
msgstr "మంగళ"
#. l10n: Short week day name
-#: js/messages.php:138 libraries/common.lib.php:1586
+#: js/messages.php:138 libraries/common.lib.php:1588
msgid "Wed"
msgstr "బుధ"
#. l10n: Short week day name
-#: js/messages.php:140 libraries/common.lib.php:1588
+#: js/messages.php:140 libraries/common.lib.php:1590
msgid "Thu"
msgstr "గురు"
#. l10n: Short week day name
-#: js/messages.php:142 libraries/common.lib.php:1590
+#: js/messages.php:142 libraries/common.lib.php:1592
msgid "Fri"
msgstr "శుక్ర"
#. l10n: Short week day name
-#: js/messages.php:144 libraries/common.lib.php:1592
+#: js/messages.php:144 libraries/common.lib.php:1594
msgid "Sat"
msgstr "శని"
@@ -1365,7 +1365,7 @@ msgid "Comment"
msgstr "వ్యాఖ్య"
#: libraries/Index.class.php:466 libraries/common.lib.php:616
-#: libraries/common.lib.php:1199 libraries/display_tbl.lib.php:1117
+#: libraries/common.lib.php:1201 libraries/display_tbl.lib.php:1117
#: libraries/import.lib.php:1087 libraries/import.lib.php:1111
#: pdf_pages.php:285 setup/frames/index.inc.php:124
#: setup/lib/messages.inc.php:352 tbl_row_action.php:69
@@ -1389,7 +1389,7 @@ msgid ""
msgstr ""
#: libraries/List_Database.class.php:431 libraries/server_links.inc.php:41
-#: server_databases.php:88 server_privileges.php:1621
+#: server_databases.php:88 server_privileges.php:1660
#: setup/lib/messages.inc.php:110 test/theme.php:93
msgid "Databases"
msgstr ""
@@ -1703,7 +1703,7 @@ msgid "Documentation"
msgstr ""
#: libraries/common.lib.php:595 libraries/header_printview.inc.php:61
-#: server_processlist.php:60 server_status.php:247
+#: server_processlist.php:60 server_status.php:358
msgid "SQL query"
msgstr ""
@@ -1719,130 +1719,130 @@ msgstr ""
msgid "Skip Explain SQL"
msgstr ""
-#: libraries/common.lib.php:1212
+#: libraries/common.lib.php:1214
msgid "Without PHP Code"
msgstr ""
-#: libraries/common.lib.php:1215 setup/lib/messages.inc.php:355
+#: libraries/common.lib.php:1217 setup/lib/messages.inc.php:355
msgid "Create PHP Code"
msgstr ""
-#: libraries/common.lib.php:1233 server_status.php:341
+#: libraries/common.lib.php:1235 server_status.php:452
#: setup/lib/messages.inc.php:354
msgid "Refresh"
msgstr ""
-#: libraries/common.lib.php:1242
+#: libraries/common.lib.php:1244
msgid "Skip Validate SQL"
msgstr ""
-#: libraries/common.lib.php:1245 setup/lib/messages.inc.php:356 sql.php:518
+#: libraries/common.lib.php:1247 setup/lib/messages.inc.php:356 sql.php:518
msgid "Validate SQL"
msgstr ""
-#: libraries/common.lib.php:1276
+#: libraries/common.lib.php:1278
msgid "Inline edit of this query"
msgstr ""
-#: libraries/common.lib.php:1278
+#: libraries/common.lib.php:1280
msgid "Inline"
msgstr ""
-#: libraries/common.lib.php:1332 libraries/common.lib.php:1347
+#: libraries/common.lib.php:1334 libraries/common.lib.php:1349
msgid "Profiling"
msgstr ""
-#: libraries/common.lib.php:1351 libraries/tbl_triggers.lib.php:28
+#: libraries/common.lib.php:1353 libraries/tbl_triggers.lib.php:28
#: server_processlist.php:58
msgid "Time"
msgstr "సమయం"
#. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "B"
msgstr ""
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "KiB"
msgstr ""
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "MiB"
msgstr ""
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "GiB"
msgstr ""
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "TiB"
msgstr ""
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "PiB"
msgstr ""
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "EiB"
msgstr ""
#. l10n: Thousands separator
-#: libraries/common.lib.php:1417
+#: libraries/common.lib.php:1419
msgid ","
msgstr ""
#. l10n: Decimal separator
-#: libraries/common.lib.php:1419
+#: libraries/common.lib.php:1421
msgid "."
msgstr ""
#. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string
-#: libraries/common.lib.php:1596
+#: libraries/common.lib.php:1598
#: libraries/transformations/text_plain__dateformat.inc.php:34
msgid "%B %d, %Y at %I:%M %p"
msgstr "%B %d, %Y at %I:%M %p"
-#: libraries/common.lib.php:1898
+#: libraries/common.lib.php:1907
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "%s రోజులు, %s గంటలు, %s నిమిషాలు మరియు %s క్షణాలు"
# మొదటి అనువాదము
-#: libraries/common.lib.php:2313 libraries/common.lib.php:2316
-#: libraries/display_tbl.lib.php:290 server_status.php:608
+#: libraries/common.lib.php:2322 libraries/common.lib.php:2325
+#: libraries/display_tbl.lib.php:290 server_status.php:719
msgid "Begin"
msgstr "మొదలు"
# మొదటి అనువాదము
-#: libraries/common.lib.php:2314 libraries/common.lib.php:2317
+#: libraries/common.lib.php:2323 libraries/common.lib.php:2326
#: libraries/display_tbl.lib.php:291 server_binlog.php:168
#: server_binlog.php:170
msgid "Previous"
msgstr "క్రితము"
-#: libraries/common.lib.php:2345 libraries/common.lib.php:2348
+#: libraries/common.lib.php:2354 libraries/common.lib.php:2357
#: libraries/display_tbl.lib.php:353
msgid "End"
msgstr "ముగింపు"
-#: libraries/common.lib.php:2421
+#: libraries/common.lib.php:2430
#, php-format
msgid "Jump to database "%s"."
msgstr ""
-#: libraries/common.lib.php:2441
+#: libraries/common.lib.php:2450
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr ""
-#: libraries/common.lib.php:2821 libraries/common.lib.php:2828
+#: libraries/common.lib.php:2830 libraries/common.lib.php:2837
#: libraries/db_links.inc.php:68 libraries/export/sql.php:25
#: libraries/import/sql.php:18 libraries/server_links.inc.php:45
#: libraries/tbl_links.inc.php:60 querywindow.php:99 test/theme.php:97
msgid "SQL"
msgstr ""
-#: libraries/common.lib.php:2830 libraries/db_links.inc.php:104
+#: libraries/common.lib.php:2839 libraries/db_links.inc.php:104
#: libraries/tbl_links.inc.php:95 libraries/tbl_links.inc.php:117
#: view_operations.php:89
msgid "Operations"
@@ -1896,8 +1896,8 @@ msgid "Import"
msgstr ""
#: libraries/db_links.inc.php:111 libraries/server_links.inc.php:66
-#: server_privileges.php:72 server_privileges.php:1683
-#: server_privileges.php:2032 test/theme.php:117
+#: server_privileges.php:111 server_privileges.php:1722
+#: server_privileges.php:2071 test/theme.php:117
msgid "Privileges"
msgstr ""
@@ -1943,22 +1943,22 @@ msgid "Change password"
msgstr ""
#: libraries/display_change_password.lib.php:35
-#: libraries/replication_gui.lib.php:345 server_privileges.php:768
+#: libraries/replication_gui.lib.php:345 server_privileges.php:807
msgid "No Password"
msgstr "సంకేతపదం లేదు"
#: libraries/display_change_password.lib.php:41
#: libraries/replication_gui.lib.php:59 libraries/replication_gui.lib.php:60
#: libraries/replication_gui.lib.php:335 libraries/replication_gui.lib.php:339
-#: libraries/replication_gui.lib.php:349 server_privileges.php:757
-#: server_privileges.php:761 server_privileges.php:772
-#: server_privileges.php:1499 server_synchronize.php:1175
+#: libraries/replication_gui.lib.php:349 server_privileges.php:796
+#: server_privileges.php:800 server_privileges.php:811
+#: server_privileges.php:1538 server_synchronize.php:1175
msgid "Password"
msgstr "సంకేతపదం"
#: libraries/display_change_password.lib.php:46
#: libraries/replication_gui.lib.php:353 libraries/replication_gui.lib.php:356
-#: server_privileges.php:776 server_privileges.php:779
+#: server_privileges.php:815 server_privileges.php:818
msgid "Re-type"
msgstr ""
@@ -1971,12 +1971,12 @@ msgid "MySQL 4.0 compatible"
msgstr ""
#: libraries/display_change_password.lib.php:72
-#: libraries/replication_gui.lib.php:360 server_privileges.php:783
+#: libraries/replication_gui.lib.php:360 server_privileges.php:822
msgid "Generate Password"
msgstr ""
#: libraries/display_change_password.lib.php:75
-#: libraries/replication_gui.lib.php:363 server_privileges.php:786
+#: libraries/replication_gui.lib.php:363 server_privileges.php:825
msgid "Generate"
msgstr ""
@@ -1990,8 +1990,8 @@ msgstr ""
msgid "Create"
msgstr "సృష్టించు"
-#: libraries/display_create_database.lib.php:40 server_privileges.php:74
-#: server_privileges.php:1388 server_replication.php:35
+#: libraries/display_create_database.lib.php:40 server_privileges.php:113
+#: server_privileges.php:1427 server_replication.php:35
msgid "No Privileges"
msgstr ""
@@ -2074,7 +2074,7 @@ msgstr ""
#: libraries/display_export.lib.php:240 libraries/display_import.lib.php:197
#: libraries/display_import.lib.php:210 libraries/display_tbl.lib.php:530
#: libraries/export/sql.php:868 libraries/tbl_properties.inc.php:575
-#: server_privileges.php:1836 server_processlist.php:75
+#: server_privileges.php:1875 server_processlist.php:75
msgid "None"
msgstr ""
@@ -2389,7 +2389,7 @@ msgstr ""
msgid "Buffer Pool"
msgstr ""
-#: libraries/engines/innodb.lib.php:145 server_status.php:306
+#: libraries/engines/innodb.lib.php:145 server_status.php:417
msgid "InnoDB Status"
msgstr ""
@@ -2398,8 +2398,8 @@ msgid "Buffer Pool Usage"
msgstr ""
#: libraries/engines/innodb.lib.php:194 server_databases.php:137
-#: server_databases.php:305 server_status.php:414 server_status.php:475
-#: server_status.php:496 tbl_printview.php:351 tbl_structure.php:696
+#: server_databases.php:305 server_status.php:525 server_status.php:586
+#: server_status.php:607 tbl_printview.php:351 tbl_structure.php:696
msgid "Total"
msgstr "మొత్తం"
@@ -2710,7 +2710,7 @@ msgstr ""
#: libraries/export/latex.php:201 libraries/export/odt.php:48
#: libraries/export/sql.php:106 libraries/export/sql.php:868
#: libraries/export/texytext.php:27 server_databases.php:127
-#: server_privileges.php:537 server_replication.php:316 tbl_printview.php:317
+#: server_privileges.php:576 server_replication.php:316 tbl_printview.php:317
#: tbl_structure.php:665
msgid "Data"
msgstr ""
@@ -2760,9 +2760,9 @@ msgstr ""
#: libraries/export/xml.php:102 libraries/header_printview.inc.php:57
#: libraries/replication_gui.lib.php:63 libraries/replication_gui.lib.php:174
#: libraries/replication_gui.lib.php:269 libraries/replication_gui.lib.php:272
-#: libraries/replication_gui.lib.php:329 server_privileges.php:692
-#: server_privileges.php:695 server_privileges.php:751
-#: server_privileges.php:1498 server_privileges.php:2030
+#: libraries/replication_gui.lib.php:329 server_privileges.php:731
+#: server_privileges.php:734 server_privileges.php:790
+#: server_privileges.php:1537 server_privileges.php:2069
#: server_processlist.php:55 server_synchronize.php:1159
msgid "Host"
msgstr ""
@@ -3111,739 +3111,6 @@ msgstr "కాదు"
msgid "Convert to Kana"
msgstr ""
-#. l10n: Text direction, use either ltr or rtl
-#: libraries/messages.inc.php:19
-msgid "ltr"
-msgstr ""
-
-#: libraries/messages.inc.php:21
-msgid "Content of table __TABLE__"
-msgstr ""
-
-#: libraries/messages.inc.php:22
-msgid "(continued)"
-msgstr ""
-
-#: libraries/messages.inc.php:23
-msgid "Structure of table __TABLE__"
-msgstr ""
-
-#: libraries/messages.inc.php:25 server_privileges.php:227
-msgid "Includes all privileges except GRANT."
-msgstr ""
-
-#: libraries/messages.inc.php:26 server_privileges.php:153
-#: server_privileges.php:476
-msgid "Allows altering the structure of existing tables."
-msgstr ""
-
-#: libraries/messages.inc.php:27 server_privileges.php:169
-#: server_privileges.php:482
-msgid "Allows altering and dropping stored routines."
-msgstr ""
-
-#: libraries/messages.inc.php:28 server_privileges.php:145
-#: server_privileges.php:475
-msgid "Allows creating new databases and tables."
-msgstr ""
-
-#: libraries/messages.inc.php:29 server_privileges.php:168
-#: server_privileges.php:481
-msgid "Allows creating stored routines."
-msgstr ""
-
-#: libraries/messages.inc.php:30 server_privileges.php:475
-msgid "Allows creating new tables."
-msgstr ""
-
-#: libraries/messages.inc.php:31 server_privileges.php:156
-#: server_privileges.php:479
-msgid "Allows creating temporary tables."
-msgstr ""
-
-#: libraries/messages.inc.php:32 server_privileges.php:170
-#: server_privileges.php:515
-msgid "Allows creating, dropping and renaming user accounts."
-msgstr ""
-
-#: libraries/messages.inc.php:33 server_privileges.php:160
-#: server_privileges.php:164 server_privileges.php:487
-#: server_privileges.php:491
-msgid "Allows creating new views."
-msgstr ""
-
-#: libraries/messages.inc.php:34 server_privileges.php:144
-#: server_privileges.php:467
-msgid "Allows deleting data."
-msgstr ""
-
-#: libraries/messages.inc.php:35 server_privileges.php:146
-#: server_privileges.php:478
-msgid "Allows dropping databases and tables."
-msgstr ""
-
-#: libraries/messages.inc.php:36 server_privileges.php:478
-msgid "Allows dropping tables."
-msgstr ""
-
-#: libraries/messages.inc.php:37 server_privileges.php:161
-#: server_privileges.php:495
-msgid "Allows to set up events for the event scheduler"
-msgstr ""
-
-#: libraries/messages.inc.php:38 server_privileges.php:171
-#: server_privileges.php:483
-msgid "Allows executing stored routines."
-msgstr ""
-
-#: libraries/messages.inc.php:39 server_privileges.php:150
-#: server_privileges.php:470
-msgid "Allows importing data from and exporting data into files."
-msgstr ""
-
-#: libraries/messages.inc.php:40 server_privileges.php:501
-msgid ""
-"Allows adding users and privileges without reloading the privilege tables."
-msgstr ""
-
-#: libraries/messages.inc.php:41 server_privileges.php:152
-#: server_privileges.php:477
-msgid "Allows creating and dropping indexes."
-msgstr ""
-
-#: libraries/messages.inc.php:42 server_privileges.php:142
-#: server_privileges.php:403 server_privileges.php:465
-msgid "Allows inserting and replacing data."
-msgstr ""
-
-#: libraries/messages.inc.php:43 server_privileges.php:157
-#: server_privileges.php:510
-msgid "Allows locking tables for the current thread."
-msgstr ""
-
-#: libraries/messages.inc.php:44 server_privileges.php:607
-#: server_privileges.php:609
-msgid "Limits the number of new connections the user may open per hour."
-msgstr ""
-
-#: libraries/messages.inc.php:45 server_privileges.php:595
-#: server_privileges.php:597
-msgid "Limits the number of queries the user may send to the server per hour."
-msgstr ""
-
-#: libraries/messages.inc.php:46 server_privileges.php:601
-#: server_privileges.php:603
-msgid ""
-"Limits the number of commands that change any table or database the user may "
-"execute per hour."
-msgstr ""
-
-#: libraries/messages.inc.php:47 server_privileges.php:613
-#: server_privileges.php:615
-msgid "Limits the number of simultaneous connections the user may have."
-msgstr ""
-
-#: libraries/messages.inc.php:48 server_privileges.php:149
-#: server_privileges.php:505
-msgid "Allows viewing processes of all users"
-msgstr ""
-
-#: libraries/messages.inc.php:49 server_privileges.php:151
-#: server_privileges.php:409 server_privileges.php:511
-msgid "Has no effect in this MySQL version."
-msgstr ""
-
-#: libraries/messages.inc.php:50 server_privileges.php:147
-#: server_privileges.php:506
-msgid "Allows reloading server settings and flushing the server's caches."
-msgstr ""
-
-#: libraries/messages.inc.php:51 server_privileges.php:159
-#: server_privileges.php:513
-msgid "Allows the user to ask where the slaves / masters are."
-msgstr ""
-
-#: libraries/messages.inc.php:52 server_privileges.php:158
-#: server_privileges.php:514
-msgid "Needed for the replication slaves."
-msgstr ""
-
-#: libraries/messages.inc.php:53 server_privileges.php:141
-#: server_privileges.php:400 server_privileges.php:464
-msgid "Allows reading data."
-msgstr ""
-
-#: libraries/messages.inc.php:54 server_privileges.php:154
-#: server_privileges.php:508
-msgid "Gives access to the complete list of databases."
-msgstr ""
-
-#: libraries/messages.inc.php:55 server_privileges.php:165
-#: server_privileges.php:167 server_privileges.php:480
-msgid "Allows performing SHOW CREATE VIEW queries."
-msgstr ""
-
-#: libraries/messages.inc.php:56 server_privileges.php:148
-#: server_privileges.php:507
-msgid "Allows shutting down the server."
-msgstr ""
-
-#: libraries/messages.inc.php:57 server_privileges.php:155
-#: server_privileges.php:504
-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/messages.inc.php:58 server_privileges.php:162
-#: server_privileges.php:496
-msgid "Allows creating and dropping triggers"
-msgstr ""
-
-#: libraries/messages.inc.php:59 server_privileges.php:143
-#: server_privileges.php:406 server_privileges.php:466
-msgid "Allows changing data."
-msgstr ""
-
-#: libraries/messages.inc.php:60 server_privileges.php:221
-msgid "No privileges."
-msgstr ""
-
-#: libraries/messages.inc.php:62
-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/messages.inc.php:63
-msgid "The number of transactions that used the temporary binary log cache."
-msgstr ""
-
-#: libraries/messages.inc.php:64
-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 "
-"to increase the tmp_table_size value to cause temporary tables to be memory-"
-"based instead of disk-based."
-msgstr ""
-
-#: libraries/messages.inc.php:65
-msgid "How many temporary files mysqld has created."
-msgstr ""
-
-#: libraries/messages.inc.php:66
-msgid ""
-"The number of in-memory temporary tables created automatically by the server "
-"while executing statements."
-msgstr ""
-
-#: libraries/messages.inc.php:67
-msgid ""
-"The number of rows written with INSERT DELAYED for which some error occurred "
-"(probably duplicate key)."
-msgstr ""
-
-#: libraries/messages.inc.php:68
-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/messages.inc.php:69
-msgid "The number of INSERT DELAYED rows written."
-msgstr ""
-
-#: libraries/messages.inc.php:70
-msgid "The number of executed FLUSH statements."
-msgstr ""
-
-#: libraries/messages.inc.php:71
-msgid "The number of internal COMMIT statements."
-msgstr ""
-
-#: libraries/messages.inc.php:72
-msgid "The number of times a row was deleted from a table."
-msgstr ""
-
-#: libraries/messages.inc.php:73
-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/messages.inc.php:74
-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/messages.inc.php:75
-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/messages.inc.php:76
-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/messages.inc.php:77
-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/messages.inc.php:78
-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 "
-"probably have a lot of queries that require MySQL to scan whole tables or "
-"you have joins that don't use keys properly."
-msgstr ""
-
-#: libraries/messages.inc.php:79
-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 "
-"tables are not properly indexed or that your queries are not written to take "
-"advantage of the indexes you have."
-msgstr ""
-
-#: libraries/messages.inc.php:80
-msgid "The number of internal ROLLBACK statements."
-msgstr ""
-
-#: libraries/messages.inc.php:81
-msgid "The number of requests to update a row in a table."
-msgstr ""
-
-#: libraries/messages.inc.php:82
-msgid "The number of requests to insert a row in a table."
-msgstr ""
-
-#: libraries/messages.inc.php:83
-msgid "The number of pages containing data (dirty or clean)."
-msgstr ""
-
-#: libraries/messages.inc.php:84
-msgid "The number of pages currently dirty."
-msgstr ""
-
-#: libraries/messages.inc.php:85
-msgid "The number of buffer pool pages that have been requested to be flushed."
-msgstr ""
-
-#: libraries/messages.inc.php:86
-msgid "The number of free pages."
-msgstr ""
-
-#: libraries/messages.inc.php:87
-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/messages.inc.php:88
-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 "
-"be calculated as Innodb_buffer_pool_pages_total - "
-"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data."
-msgstr ""
-
-#: libraries/messages.inc.php:89
-msgid "Total size of buffer pool, in pages."
-msgstr ""
-
-#: libraries/messages.inc.php:90
-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/messages.inc.php:91
-msgid ""
-"The number of sequential read-aheads InnoDB initiated. This happens when "
-"InnoDB does a sequential full table scan."
-msgstr ""
-
-#: libraries/messages.inc.php:92
-msgid "The number of logical read requests InnoDB has done."
-msgstr ""
-
-#: libraries/messages.inc.php:93
-msgid ""
-"The number of logical reads that InnoDB could not satisfy from buffer pool "
-"and had to do a single-page read."
-msgstr ""
-
-#: libraries/messages.inc.php:94
-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 "
-"available, it's necessary to wait for pages to be flushed first. This "
-"counter counts instances of these waits. If the buffer pool size was set "
-"properly, this value should be small."
-msgstr ""
-
-#: libraries/messages.inc.php:95
-msgid "The number writes done to the InnoDB buffer pool."
-msgstr ""
-
-#: libraries/messages.inc.php:96
-msgid "The number of fsync() operations so far."
-msgstr ""
-
-#: libraries/messages.inc.php:97
-msgid "The current number of pending fsync() operations."
-msgstr ""
-
-#: libraries/messages.inc.php:98
-msgid "The current number of pending reads."
-msgstr ""
-
-#: libraries/messages.inc.php:99
-msgid "The current number of pending writes."
-msgstr ""
-
-#: libraries/messages.inc.php:100
-msgid "The amount of data read so far, in bytes."
-msgstr ""
-
-#: libraries/messages.inc.php:101
-msgid "The total number of data reads."
-msgstr ""
-
-#: libraries/messages.inc.php:102
-msgid "The total number of data writes."
-msgstr ""
-
-#: libraries/messages.inc.php:103
-msgid "The amount of data written so far, in bytes."
-msgstr ""
-
-#: libraries/messages.inc.php:104
-msgid "The number of pages that have been written for doublewrite operations."
-msgstr ""
-
-#: libraries/messages.inc.php:105
-msgid "The number of doublewrite operations that have been performed."
-msgstr ""
-
-#: libraries/messages.inc.php:106
-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/messages.inc.php:107
-msgid "The number of log write requests."
-msgstr ""
-
-#: libraries/messages.inc.php:108
-msgid "The number of physical writes to the log file."
-msgstr ""
-
-#: libraries/messages.inc.php:109
-msgid "The number of fsync() writes done to the log file."
-msgstr ""
-
-#: libraries/messages.inc.php:110
-msgid "The number of pending log file fsyncs."
-msgstr ""
-
-#: libraries/messages.inc.php:111
-msgid "Pending log file writes."
-msgstr ""
-
-#: libraries/messages.inc.php:112
-msgid "The number of bytes written to the log file."
-msgstr ""
-
-# మొదటి అనువాదము
-#: libraries/messages.inc.php:113
-msgid "The number of pages created."
-msgstr "సృష్టించబడిన పుటల సంఖ్య"
-
-#: libraries/messages.inc.php:114
-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/messages.inc.php:115
-msgid "The number of pages read."
-msgstr "చదివిన పుటల సంఖ్య"
-
-# మొదటి అనువాదము
-#: libraries/messages.inc.php:116
-msgid "The number of pages written."
-msgstr "వ్రాసిన పుటల సంఖ్య"
-
-#: libraries/messages.inc.php:117
-msgid "The number of row locks currently being waited for."
-msgstr ""
-
-#: libraries/messages.inc.php:118
-msgid "The average time to acquire a row lock, in milliseconds."
-msgstr ""
-
-#: libraries/messages.inc.php:119
-msgid "The total time spent in acquiring row locks, in milliseconds."
-msgstr ""
-
-#: libraries/messages.inc.php:120
-msgid "The maximum time to acquire a row lock, in milliseconds."
-msgstr ""
-
-#: libraries/messages.inc.php:121
-msgid "The number of times a row lock had to be waited for."
-msgstr ""
-
-#: libraries/messages.inc.php:122
-msgid "The number of rows deleted from InnoDB tables."
-msgstr ""
-
-#: libraries/messages.inc.php:123
-msgid "The number of rows inserted in InnoDB tables."
-msgstr ""
-
-#: libraries/messages.inc.php:124
-msgid "The number of rows read from InnoDB tables."
-msgstr ""
-
-#: libraries/messages.inc.php:125
-msgid "The number of rows updated in InnoDB tables."
-msgstr ""
-
-#: libraries/messages.inc.php:126
-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/messages.inc.php:127
-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/messages.inc.php:128
-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/messages.inc.php:129
-msgid "The number of requests to read a key block from the cache."
-msgstr ""
-
-#: libraries/messages.inc.php:130
-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/messages.inc.php:131
-msgid "The number of requests to write a key block to the cache."
-msgstr ""
-
-#: libraries/messages.inc.php:132
-msgid "The number of physical writes of a key block to disk."
-msgstr ""
-
-#: libraries/messages.inc.php:133
-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/messages.inc.php:134
-msgid "The number of rows waiting to be written in INSERT DELAYED queues."
-msgstr ""
-
-#: libraries/messages.inc.php:135
-msgid ""
-"The number of tables that have been opened. If opened tables is big, your "
-"table cache value is probably too small."
-msgstr ""
-
-#: libraries/messages.inc.php:136
-msgid "The number of files that are open."
-msgstr ""
-
-#: libraries/messages.inc.php:137
-msgid "The number of streams that are open (used mainly for logging)."
-msgstr ""
-
-#: libraries/messages.inc.php:138
-msgid "The number of tables that are open."
-msgstr ""
-
-#: libraries/messages.inc.php:139
-msgid "The number of free memory blocks in query cache."
-msgstr ""
-
-#: libraries/messages.inc.php:140
-msgid "The amount of free memory for query cache."
-msgstr ""
-
-#: libraries/messages.inc.php:141
-msgid "The number of cache hits."
-msgstr ""
-
-#: libraries/messages.inc.php:142
-msgid "The number of queries added to the cache."
-msgstr ""
-
-#: libraries/messages.inc.php:143
-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 "
-"cache size. The query cache uses a least recently used (LRU) strategy to "
-"decide which queries to remove from the cache."
-msgstr ""
-
-#: libraries/messages.inc.php:144
-msgid ""
-"The number of non-cached queries (not cachable, or not cached due to the "
-"query_cache_type setting)."
-msgstr ""
-
-#: libraries/messages.inc.php:145
-msgid "The number of queries registered in the cache."
-msgstr ""
-
-#: libraries/messages.inc.php:146
-msgid "The total number of blocks in the query cache."
-msgstr ""
-
-#: libraries/messages.inc.php:147
-msgctxt "$strShowStatusReset"
-msgid "Reset"
-msgstr ""
-
-#: libraries/messages.inc.php:148
-msgid "The status of failsafe replication (not yet implemented)."
-msgstr ""
-
-#: libraries/messages.inc.php:149
-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/messages.inc.php:150
-msgid "The number of joins that used a range search on a reference table."
-msgstr ""
-
-#: libraries/messages.inc.php:151
-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/messages.inc.php:152
-msgid ""
-"The number of joins that used ranges on the first table. (It's normally not "
-"critical even if this is big.)"
-msgstr ""
-
-#: libraries/messages.inc.php:153
-msgid "The number of joins that did a full scan of the first table."
-msgstr ""
-
-#: libraries/messages.inc.php:154
-msgid "The number of temporary tables currently open by the slave SQL thread."
-msgstr ""
-
-#: libraries/messages.inc.php:155
-msgid ""
-"Total (since startup) number of times the replication slave SQL thread has "
-"retried transactions."
-msgstr ""
-
-#: libraries/messages.inc.php:156
-msgid "This is ON if this server is a slave that is connected to a master."
-msgstr ""
-
-#: libraries/messages.inc.php:157
-msgid ""
-"The number of threads that have taken more than slow_launch_time seconds to "
-"create."
-msgstr ""
-
-#: libraries/messages.inc.php:158
-msgid ""
-"The number of queries that have taken more than long_query_time seconds."
-msgstr ""
-
-#: libraries/messages.inc.php:159
-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/messages.inc.php:160
-msgid "The number of sorts that were done with ranges."
-msgstr ""
-
-#: libraries/messages.inc.php:161
-msgid "The number of sorted rows."
-msgstr ""
-
-#: libraries/messages.inc.php:162
-msgid "The number of sorts that were done by scanning the table."
-msgstr ""
-
-#: libraries/messages.inc.php:163
-msgid "The number of times that a table lock was acquired immediately."
-msgstr ""
-
-#: libraries/messages.inc.php:164
-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 "
-"should first optimize your queries, and then either split your table or "
-"tables or use replication."
-msgstr ""
-
-#: libraries/messages.inc.php:165
-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/messages.inc.php:166
-msgid "The number of currently open connections."
-msgstr ""
-
-#: libraries/messages.inc.php:167
-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 "
-"doesn't give a notable performance improvement if you have a good thread "
-"implementation.)"
-msgstr ""
-
-#: libraries/messages.inc.php:168
-msgid "The number of threads that are not sleeping."
-msgstr ""
-
#: libraries/mult_submits.inc.php:76 libraries/tbl_properties.inc.php:513
#: tbl_structure.php:29 tbl_structure.php:153 tbl_structure.php:157
#: tbl_structure.php:473
@@ -4172,8 +3439,8 @@ msgstr ""
#: libraries/replication_gui.lib.php:55 libraries/replication_gui.lib.php:56
#: libraries/replication_gui.lib.php:249 libraries/replication_gui.lib.php:252
-#: libraries/replication_gui.lib.php:259 server_privileges.php:672
-#: server_privileges.php:675 server_privileges.php:682
+#: libraries/replication_gui.lib.php:259 server_privileges.php:711
+#: server_privileges.php:714 server_privileges.php:721
#: server_synchronize.php:1171
msgid "User name"
msgstr "వాడుకరి పేరు"
@@ -4191,11 +3458,11 @@ msgid "Slave status"
msgstr ""
#: libraries/replication_gui.lib.php:114 libraries/sql_query_form.lib.php:445
-#: server_status.php:626 server_variables.php:52
+#: server_status.php:737 server_variables.php:52
msgid "Variable"
msgstr ""
-#: libraries/replication_gui.lib.php:115 server_status.php:627
+#: libraries/replication_gui.lib.php:115 server_status.php:738
#: tbl_change.php:324 tbl_printview.php:370 tbl_select.php:139
#: tbl_structure.php:729
msgid "Value"
@@ -4216,41 +3483,58 @@ msgid "Add slave replication user"
msgstr ""
# మొదటి అనువాదము
-#: libraries/replication_gui.lib.php:254 server_privileges.php:677
+#: libraries/replication_gui.lib.php:254 server_privileges.php:716
msgid "Any user"
msgstr "ఏ వాడుకరి ఐనను"
#: libraries/replication_gui.lib.php:255 libraries/replication_gui.lib.php:323
-#: libraries/replication_gui.lib.php:346 server_privileges.php:678
-#: server_privileges.php:745 server_privileges.php:769
-#: server_privileges.php:1889 server_privileges.php:1919
+#: libraries/replication_gui.lib.php:346 server_privileges.php:717
+#: server_privileges.php:784 server_privileges.php:808
+#: server_privileges.php:1928 server_privileges.php:1958
msgid "Use text field"
msgstr ""
-#: libraries/replication_gui.lib.php:302 server_privileges.php:725
+#: libraries/replication_gui.lib.php:302 server_privileges.php:764
msgid "Any host"
msgstr ""
-#: libraries/replication_gui.lib.php:306 server_privileges.php:729
+#: libraries/replication_gui.lib.php:306 server_privileges.php:768
msgid "Local"
msgstr "స్థానిక"
-#: libraries/replication_gui.lib.php:312 server_privileges.php:734
+#: libraries/replication_gui.lib.php:312 server_privileges.php:773
msgid "This Host"
msgstr ""
-#: libraries/replication_gui.lib.php:318 server_privileges.php:740
+#: libraries/replication_gui.lib.php:318 server_privileges.php:779
msgid "Use Host Table"
msgstr ""
-#: libraries/replication_gui.lib.php:331 server_privileges.php:753
+#: libraries/replication_gui.lib.php:331 server_privileges.php:792
msgid ""
"When Host table is used, this field is ignored and values stored in Host "
"table are used instead."
msgstr ""
-#: libraries/select_lang.lib.php:480 libraries/select_lang.lib.php:486
-#: libraries/select_lang.lib.php:492
+#. l10n: Text direction, use either ltr or rtl
+#: libraries/select_lang.lib.php:491
+msgid "ltr"
+msgstr ""
+
+#: libraries/select_lang.lib.php:493
+msgid "Content of table __TABLE__"
+msgstr ""
+
+#: libraries/select_lang.lib.php:494
+msgid "(continued)"
+msgstr ""
+
+#: libraries/select_lang.lib.php:495
+msgid "Structure of table __TABLE__"
+msgstr ""
+
+#: libraries/select_lang.lib.php:500 libraries/select_lang.lib.php:506
+#: libraries/select_lang.lib.php:512
#, php-format
msgid "Unknown language: %1$s."
msgstr ""
@@ -4261,7 +3545,7 @@ msgid "Servers"
msgstr ""
#: libraries/server_links.inc.php:53 server_engines.php:112
-#: server_engines.php:116 server_status.php:304 test/theme.php:105
+#: server_engines.php:116 server_status.php:415 test/theme.php:105
msgid "Variables"
msgstr ""
@@ -4274,7 +3558,7 @@ msgid "Engines"
msgstr ""
#: libraries/server_links.inc.php:76 server_binlog.php:110
-#: server_status.php:253 test/theme.php:121
+#: server_status.php:364 test/theme.php:121
msgid "Binary log"
msgstr ""
@@ -4639,8 +3923,8 @@ msgstr ""
msgid "Protocol version"
msgstr ""
-#: main.php:189 server_privileges.php:1350 server_privileges.php:1497
-#: server_privileges.php:1611 server_privileges.php:2029
+#: main.php:189 server_privileges.php:1389 server_privileges.php:1536
+#: server_privileges.php:1650 server_privileges.php:2068
#: server_processlist.php:54
msgid "User"
msgstr "వాడుకరి"
@@ -5006,7 +4290,7 @@ msgstr ""
msgid "Databases statistics"
msgstr ""
-#: server_databases.php:117 server_status.php:260
+#: server_databases.php:117 server_status.php:371
#: setup/lib/messages.inc.php:117
msgid "Tables"
msgstr ""
@@ -5024,6 +4308,14 @@ msgstr ""
msgid "Jump to database"
msgstr ""
+#: server_databases.php:267
+msgid "Not replicated"
+msgstr ""
+
+#: server_databases.php:273
+msgid "Replicated"
+msgstr ""
+
#: server_databases.php:289
#, php-format
msgid "Check privileges for database "%s"."
@@ -5055,143 +4347,325 @@ msgstr ""
msgid "View dump (schema) of databases"
msgstr ""
-#: server_privileges.php:263 server_privileges.php:264
+#: server_privileges.php:24 server_privileges.php:266
+msgid "Includes all privileges except GRANT."
+msgstr ""
+
+#: server_privileges.php:25 server_privileges.php:192
+#: server_privileges.php:515
+msgid "Allows altering the structure of existing tables."
+msgstr ""
+
+#: server_privileges.php:26 server_privileges.php:208
+#: server_privileges.php:521
+msgid "Allows altering and dropping stored routines."
+msgstr ""
+
+#: server_privileges.php:27 server_privileges.php:184
+#: server_privileges.php:514
+msgid "Allows creating new databases and tables."
+msgstr ""
+
+#: server_privileges.php:28 server_privileges.php:207
+#: server_privileges.php:520
+msgid "Allows creating stored routines."
+msgstr ""
+
+#: server_privileges.php:29 server_privileges.php:514
+msgid "Allows creating new tables."
+msgstr ""
+
+#: server_privileges.php:30 server_privileges.php:195
+#: server_privileges.php:518
+msgid "Allows creating temporary tables."
+msgstr ""
+
+#: server_privileges.php:31 server_privileges.php:209
+#: server_privileges.php:554
+msgid "Allows creating, dropping and renaming user accounts."
+msgstr ""
+
+#: server_privileges.php:32 server_privileges.php:199
+#: server_privileges.php:203 server_privileges.php:526
+#: server_privileges.php:530
+msgid "Allows creating new views."
+msgstr ""
+
+#: server_privileges.php:33 server_privileges.php:183
+#: server_privileges.php:506
+msgid "Allows deleting data."
+msgstr ""
+
+#: server_privileges.php:34 server_privileges.php:185
+#: server_privileges.php:517
+msgid "Allows dropping databases and tables."
+msgstr ""
+
+#: server_privileges.php:35 server_privileges.php:517
+msgid "Allows dropping tables."
+msgstr ""
+
+#: server_privileges.php:36 server_privileges.php:200
+#: server_privileges.php:534
+msgid "Allows to set up events for the event scheduler"
+msgstr ""
+
+#: server_privileges.php:37 server_privileges.php:210
+#: server_privileges.php:522
+msgid "Allows executing stored routines."
+msgstr ""
+
+#: server_privileges.php:38 server_privileges.php:189
+#: server_privileges.php:509
+msgid "Allows importing data from and exporting data into files."
+msgstr ""
+
+#: server_privileges.php:39 server_privileges.php:540
+msgid ""
+"Allows adding users and privileges without reloading the privilege tables."
+msgstr ""
+
+#: server_privileges.php:40 server_privileges.php:191
+#: server_privileges.php:516
+msgid "Allows creating and dropping indexes."
+msgstr ""
+
+#: server_privileges.php:41 server_privileges.php:181
+#: server_privileges.php:442 server_privileges.php:504
+msgid "Allows inserting and replacing data."
+msgstr ""
+
+#: server_privileges.php:42 server_privileges.php:196
+#: server_privileges.php:549
+msgid "Allows locking tables for the current thread."
+msgstr ""
+
+#: server_privileges.php:43 server_privileges.php:646
+#: server_privileges.php:648
+msgid "Limits the number of new connections the user may open per hour."
+msgstr ""
+
+#: server_privileges.php:44 server_privileges.php:634
+#: server_privileges.php:636
+msgid "Limits the number of queries the user may send to the server per hour."
+msgstr ""
+
+#: server_privileges.php:45 server_privileges.php:640
+#: server_privileges.php:642
+msgid ""
+"Limits the number of commands that change any table or database the user may "
+"execute per hour."
+msgstr ""
+
+#: server_privileges.php:46 server_privileges.php:652
+#: server_privileges.php:654
+msgid "Limits the number of simultaneous connections the user may have."
+msgstr ""
+
+#: server_privileges.php:47 server_privileges.php:188
+#: server_privileges.php:544
+msgid "Allows viewing processes of all users"
+msgstr ""
+
+#: server_privileges.php:48 server_privileges.php:190
+#: server_privileges.php:448 server_privileges.php:550
+msgid "Has no effect in this MySQL version."
+msgstr ""
+
+#: server_privileges.php:49 server_privileges.php:186
+#: server_privileges.php:545
+msgid "Allows reloading server settings and flushing the server's caches."
+msgstr ""
+
+#: server_privileges.php:50 server_privileges.php:198
+#: server_privileges.php:552
+msgid "Allows the user to ask where the slaves / masters are."
+msgstr ""
+
+#: server_privileges.php:51 server_privileges.php:197
+#: server_privileges.php:553
+msgid "Needed for the replication slaves."
+msgstr ""
+
+#: server_privileges.php:52 server_privileges.php:180
+#: server_privileges.php:439 server_privileges.php:503
+msgid "Allows reading data."
+msgstr ""
+
+#: server_privileges.php:53 server_privileges.php:193
+#: server_privileges.php:547
+msgid "Gives access to the complete list of databases."
+msgstr ""
+
+#: server_privileges.php:54 server_privileges.php:204
+#: server_privileges.php:206 server_privileges.php:519
+msgid "Allows performing SHOW CREATE VIEW queries."
+msgstr ""
+
+#: server_privileges.php:55 server_privileges.php:187
+#: server_privileges.php:546
+msgid "Allows shutting down the server."
+msgstr ""
+
+#: server_privileges.php:56 server_privileges.php:194
+#: server_privileges.php:543
+msgid ""
+"Allows connecting, even if maximum number of connections is reached; "
+"required for most administrative operations like setting global variables or "
+"killing threads of other users."
+msgstr ""
+
+#: server_privileges.php:57 server_privileges.php:201
+#: server_privileges.php:535
+msgid "Allows creating and dropping triggers"
+msgstr ""
+
+#: server_privileges.php:58 server_privileges.php:182
+#: server_privileges.php:445 server_privileges.php:505
+msgid "Allows changing data."
+msgstr ""
+
+#: server_privileges.php:59 server_privileges.php:260
+msgid "No privileges."
+msgstr ""
+
+#: server_privileges.php:302 server_privileges.php:303
#, fuzzy
#| msgid "No"
msgctxt "None privileges"
msgid "None"
msgstr "కాదు"
-#: server_privileges.php:392 server_privileges.php:527
-#: server_privileges.php:1679 server_privileges.php:1685
+#: server_privileges.php:431 server_privileges.php:566
+#: server_privileges.php:1718 server_privileges.php:1724
msgid "Table-specific privileges"
msgstr ""
-#: server_privileges.php:393 server_privileges.php:535
-#: server_privileges.php:1501
+#: server_privileges.php:432 server_privileges.php:574
+#: server_privileges.php:1540
msgid " Note: MySQL privilege names are expressed in English "
msgstr ""
-#: server_privileges.php:524 server_privileges.php:1500
+#: server_privileges.php:563 server_privileges.php:1539
msgid "Global privileges"
msgstr ""
-#: server_privileges.php:526 server_privileges.php:1679
+#: server_privileges.php:565 server_privileges.php:1718
msgid "Database-specific privileges"
msgstr ""
-#: server_privileges.php:571
+#: server_privileges.php:610
msgid "Administration"
msgstr "పరిపాలన"
-#: server_privileges.php:591
+#: server_privileges.php:630
msgid "Resource limits"
msgstr ""
-#: server_privileges.php:592
+#: server_privileges.php:631
msgid "Note: Setting these options to 0 (zero) removes the limit."
msgstr ""
-#: server_privileges.php:669
+#: server_privileges.php:708
msgid "Login Information"
msgstr "ప్రవేశపు సమాచారం"
-#: server_privileges.php:763
+#: server_privileges.php:802
msgid "Do not change the password"
msgstr ""
-#: server_privileges.php:804 server_privileges.php:2166
+#: server_privileges.php:843 server_privileges.php:2205
msgid "No user found."
msgstr ""
-#: server_privileges.php:848
+#: server_privileges.php:887
#, php-format
msgid "The user %s already exists!"
msgstr ""
# మొదటి అనువాదము
-#: server_privileges.php:931
+#: server_privileges.php:970
msgid "You have added a new user."
msgstr "మీరు క్రొత్త వినియోగదారుని చేర్చారు"
-#: server_privileges.php:1152
+#: server_privileges.php:1191
#, php-format
msgid "You have updated the privileges for %s."
msgstr ""
-#: server_privileges.php:1176
+#: server_privileges.php:1215
#, php-format
msgid "You have revoked the privileges for %s"
msgstr ""
-#: server_privileges.php:1212
+#: server_privileges.php:1251
#, php-format
msgid "The password for %s was changed successfully."
msgstr ""
-#: server_privileges.php:1232
+#: server_privileges.php:1271
#, php-format
msgid "Deleting %s"
msgstr ""
-#: server_privileges.php:1243
+#: server_privileges.php:1282
msgid "No users selected for deleting!"
msgstr ""
-#: server_privileges.php:1246
+#: server_privileges.php:1285
msgid "Reloading the privileges"
msgstr ""
-#: server_privileges.php:1261
+#: server_privileges.php:1300
msgid "The selected users have been deleted successfully."
msgstr ""
-#: server_privileges.php:1296
+#: server_privileges.php:1335
msgid "The privileges were reloaded successfully."
msgstr ""
-#: server_privileges.php:1324 server_privileges.php:1610
+#: server_privileges.php:1363 server_privileges.php:1649
msgid "Edit Privileges"
msgstr ""
-#: server_privileges.php:1333
+#: server_privileges.php:1372
msgid "Revoke"
msgstr ""
-#: server_privileges.php:1365
+#: server_privileges.php:1404
msgid "User overview"
msgstr ""
-#: server_privileges.php:1502 server_privileges.php:1684
-#: server_privileges.php:2033
+#: server_privileges.php:1541 server_privileges.php:1723
+#: server_privileges.php:2072
msgid "Grant"
msgstr ""
# మొదటి అనువాదము
-#: server_privileges.php:1521 server_privileges.php:2123
+#: server_privileges.php:1560 server_privileges.php:2162
msgid "Any"
msgstr "ఏదైనను"
# మొదటి అనువాదము
-#: server_privileges.php:1570 server_privileges.php:1594
-#: server_privileges.php:1988 server_privileges.php:2177
+#: server_privileges.php:1609 server_privileges.php:1633
+#: server_privileges.php:2027 server_privileges.php:2216
msgid "Add a new User"
msgstr "క్రొత్త వినియోగదారుని చేర్చు"
-#: server_privileges.php:1575
+#: server_privileges.php:1614
msgid "Remove selected users"
msgstr ""
-#: server_privileges.php:1578
+#: server_privileges.php:1617
msgid "Revoke all active privileges from the users and delete them afterwards."
msgstr ""
-#: server_privileges.php:1579 server_privileges.php:1580
-#: server_privileges.php:1581
+#: server_privileges.php:1618 server_privileges.php:1619
+#: server_privileges.php:1620
msgid "Drop the databases that have the same names as the users."
msgstr ""
-#: server_privileges.php:1597
+#: server_privileges.php:1636
#, php-format
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
@@ -5200,92 +4674,92 @@ msgid ""
"sreload the privileges%s before you continue."
msgstr ""
-#: server_privileges.php:1645
+#: server_privileges.php:1684
msgid "The selected user was not found in the privilege table."
msgstr ""
-#: server_privileges.php:1685
+#: server_privileges.php:1724
msgid "Column-specific privileges"
msgstr ""
-#: server_privileges.php:1886
+#: server_privileges.php:1925
msgid "Add privileges on the following database"
msgstr ""
-#: server_privileges.php:1904
+#: server_privileges.php:1943
msgid "Wildcards % and _ should be escaped with a \\ to use them literally"
msgstr ""
-#: server_privileges.php:1907
+#: server_privileges.php:1946
msgid "Add privileges on the following table"
msgstr ""
-#: server_privileges.php:1964
+#: server_privileges.php:2003
msgid "Change Login Information / Copy User"
msgstr ""
-#: server_privileges.php:1967
+#: server_privileges.php:2006
msgid "Create a new user with the same privileges and ..."
msgstr ""
# మొదటి అనువాదము
-#: server_privileges.php:1969
+#: server_privileges.php:2008
msgid "... keep the old one."
msgstr "... పాతదే ఉంచుము"
-#: server_privileges.php:1970
+#: server_privileges.php:2009
msgid " ... delete the old one from the user tables."
msgstr ""
-#: server_privileges.php:1971
+#: server_privileges.php:2010
msgid ""
" ... revoke all active privileges from the old one and delete it afterwards."
msgstr ""
-#: server_privileges.php:1972
+#: server_privileges.php:2011
msgid ""
" ... delete the old one from the user tables and reload the privileges "
"afterwards."
msgstr ""
-#: server_privileges.php:1994
+#: server_privileges.php:2033
msgid "Database for user"
msgstr ""
-#: server_privileges.php:1998
+#: server_privileges.php:2037
#, fuzzy
#| msgid "No"
msgctxt "Create none database for user"
msgid "None"
msgstr "కాదు"
-#: server_privileges.php:1999
+#: server_privileges.php:2038
msgid "Create database with same name and grant all privileges"
msgstr ""
-#: server_privileges.php:2000
+#: server_privileges.php:2039
msgid "Grant all privileges on wildcard name (username\\_%)"
msgstr ""
-#: server_privileges.php:2003
+#: server_privileges.php:2042
#, php-format
msgid "Grant all privileges on database "%s""
msgstr ""
-#: server_privileges.php:2026
+#: server_privileges.php:2065
#, php-format
msgid "Users having access to "%s""
msgstr ""
-#: server_privileges.php:2134
+#: server_privileges.php:2173
msgid "global"
msgstr ""
-#: server_privileges.php:2136
+#: server_privileges.php:2175
msgid "database-specific"
msgstr ""
-#: server_privileges.php:2138
+#: server_privileges.php:2177
msgid "wildcard"
msgstr ""
@@ -5331,7 +4805,7 @@ msgstr ""
msgid "This server is configured as master in a replication process."
msgstr ""
-#: server_replication.php:184 server_status.php:281
+#: server_replication.php:184 server_status.php:392
msgid "Show master status"
msgstr ""
@@ -5468,166 +4942,700 @@ msgid ""
"like to configure it?"
msgstr ""
+#: server_status.php:40
+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 ""
+
+#: server_status.php:41
+msgid "The number of transactions that used the temporary binary log cache."
+msgstr ""
+
+#: server_status.php:42
+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 "
+"to increase the tmp_table_size value to cause temporary tables to be memory-"
+"based instead of disk-based."
+msgstr ""
+
+#: server_status.php:43
+msgid "How many temporary files mysqld has created."
+msgstr ""
+
+#: server_status.php:44
+msgid ""
+"The number of in-memory temporary tables created automatically by the server "
+"while executing statements."
+msgstr ""
+
+#: server_status.php:45
+msgid ""
+"The number of rows written with INSERT DELAYED for which some error occurred "
+"(probably duplicate key)."
+msgstr ""
+
#: server_status.php:46
+msgid ""
+"The number of INSERT DELAYED handler threads in use. Every different table "
+"on which one uses INSERT DELAYED gets its own thread."
+msgstr ""
+
+#: server_status.php:47
+msgid "The number of INSERT DELAYED rows written."
+msgstr ""
+
+#: server_status.php:48
+msgid "The number of executed FLUSH statements."
+msgstr ""
+
+#: server_status.php:49
+msgid "The number of internal COMMIT statements."
+msgstr ""
+
+#: server_status.php:50
+msgid "The number of times a row was deleted from a table."
+msgstr ""
+
+#: server_status.php:51
+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 ""
+
+#: server_status.php:52
+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 ""
+
+#: server_status.php:53
+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 ""
+
+#: server_status.php:54
+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 ""
+
+#: server_status.php:55
+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 ""
+
+#: server_status.php:56
+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 "
+"probably have a lot of queries that require MySQL to scan whole tables or "
+"you have joins that don't use keys properly."
+msgstr ""
+
+#: server_status.php:57
+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 "
+"tables are not properly indexed or that your queries are not written to take "
+"advantage of the indexes you have."
+msgstr ""
+
+#: server_status.php:58
+msgid "The number of internal ROLLBACK statements."
+msgstr ""
+
+#: server_status.php:59
+msgid "The number of requests to update a row in a table."
+msgstr ""
+
+#: server_status.php:60
+msgid "The number of requests to insert a row in a table."
+msgstr ""
+
+#: server_status.php:61
+msgid "The number of pages containing data (dirty or clean)."
+msgstr ""
+
+#: server_status.php:62
+msgid "The number of pages currently dirty."
+msgstr ""
+
+#: server_status.php:63
+msgid "The number of buffer pool pages that have been requested to be flushed."
+msgstr ""
+
+#: server_status.php:64
+msgid "The number of free pages."
+msgstr ""
+
+#: server_status.php:65
+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 ""
+
+#: server_status.php:66
+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 "
+"be calculated as Innodb_buffer_pool_pages_total - "
+"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data."
+msgstr ""
+
+#: server_status.php:67
+msgid "Total size of buffer pool, in pages."
+msgstr ""
+
+#: server_status.php:68
+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 ""
+
+#: server_status.php:69
+msgid ""
+"The number of sequential read-aheads InnoDB initiated. This happens when "
+"InnoDB does a sequential full table scan."
+msgstr ""
+
+#: server_status.php:70
+msgid "The number of logical read requests InnoDB has done."
+msgstr ""
+
+#: server_status.php:71
+msgid ""
+"The number of logical reads that InnoDB could not satisfy from buffer pool "
+"and had to do a single-page read."
+msgstr ""
+
+#: server_status.php:72
+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 "
+"available, it's necessary to wait for pages to be flushed first. This "
+"counter counts instances of these waits. If the buffer pool size was set "
+"properly, this value should be small."
+msgstr ""
+
+#: server_status.php:73
+msgid "The number writes done to the InnoDB buffer pool."
+msgstr ""
+
+#: server_status.php:74
+msgid "The number of fsync() operations so far."
+msgstr ""
+
+#: server_status.php:75
+msgid "The current number of pending fsync() operations."
+msgstr ""
+
+#: server_status.php:76
+msgid "The current number of pending reads."
+msgstr ""
+
+#: server_status.php:77
+msgid "The current number of pending writes."
+msgstr ""
+
+#: server_status.php:78
+msgid "The amount of data read so far, in bytes."
+msgstr ""
+
+#: server_status.php:79
+msgid "The total number of data reads."
+msgstr ""
+
+#: server_status.php:80
+msgid "The total number of data writes."
+msgstr ""
+
+#: server_status.php:81
+msgid "The amount of data written so far, in bytes."
+msgstr ""
+
+#: server_status.php:82
+msgid "The number of pages that have been written for doublewrite operations."
+msgstr ""
+
+#: server_status.php:83
+msgid "The number of doublewrite operations that have been performed."
+msgstr ""
+
+#: server_status.php:84
+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 ""
+
+#: server_status.php:85
+msgid "The number of log write requests."
+msgstr ""
+
+#: server_status.php:86
+msgid "The number of physical writes to the log file."
+msgstr ""
+
+#: server_status.php:87
+msgid "The number of fsync() writes done to the log file."
+msgstr ""
+
+#: server_status.php:88
+msgid "The number of pending log file fsyncs."
+msgstr ""
+
+#: server_status.php:89
+msgid "Pending log file writes."
+msgstr ""
+
+#: server_status.php:90
+msgid "The number of bytes written to the log file."
+msgstr ""
+
+# మొదటి అనువాదము
+#: server_status.php:91
+msgid "The number of pages created."
+msgstr "సృష్టించబడిన పుటల సంఖ్య"
+
+#: server_status.php:92
+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 ""
+
+# మొదటి అనువాదము
+#: server_status.php:93
+msgid "The number of pages read."
+msgstr "చదివిన పుటల సంఖ్య"
+
+# మొదటి అనువాదము
+#: server_status.php:94
+msgid "The number of pages written."
+msgstr "వ్రాసిన పుటల సంఖ్య"
+
+#: server_status.php:95
+msgid "The number of row locks currently being waited for."
+msgstr ""
+
+#: server_status.php:96
+msgid "The average time to acquire a row lock, in milliseconds."
+msgstr ""
+
+#: server_status.php:97
+msgid "The total time spent in acquiring row locks, in milliseconds."
+msgstr ""
+
+#: server_status.php:98
+msgid "The maximum time to acquire a row lock, in milliseconds."
+msgstr ""
+
+#: server_status.php:99
+msgid "The number of times a row lock had to be waited for."
+msgstr ""
+
+#: server_status.php:100
+msgid "The number of rows deleted from InnoDB tables."
+msgstr ""
+
+#: server_status.php:101
+msgid "The number of rows inserted in InnoDB tables."
+msgstr ""
+
+#: server_status.php:102
+msgid "The number of rows read from InnoDB tables."
+msgstr ""
+
+#: server_status.php:103
+msgid "The number of rows updated in InnoDB tables."
+msgstr ""
+
+#: server_status.php:104
+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 ""
+
+#: server_status.php:105
+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 ""
+
+#: server_status.php:106
+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 ""
+
+#: server_status.php:107
+msgid "The number of requests to read a key block from the cache."
+msgstr ""
+
+#: server_status.php:108
+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 ""
+
+#: server_status.php:109
+msgid "The number of requests to write a key block to the cache."
+msgstr ""
+
+#: server_status.php:110
+msgid "The number of physical writes of a key block to disk."
+msgstr ""
+
+#: server_status.php:111
+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 ""
+
+#: server_status.php:112
+msgid "The number of rows waiting to be written in INSERT DELAYED queues."
+msgstr ""
+
+#: server_status.php:113
+msgid ""
+"The number of tables that have been opened. If opened tables is big, your "
+"table cache value is probably too small."
+msgstr ""
+
+#: server_status.php:114
+msgid "The number of files that are open."
+msgstr ""
+
+#: server_status.php:115
+msgid "The number of streams that are open (used mainly for logging)."
+msgstr ""
+
+#: server_status.php:116
+msgid "The number of tables that are open."
+msgstr ""
+
+#: server_status.php:117
+msgid "The number of free memory blocks in query cache."
+msgstr ""
+
+#: server_status.php:118
+msgid "The amount of free memory for query cache."
+msgstr ""
+
+#: server_status.php:119
+msgid "The number of cache hits."
+msgstr ""
+
+#: server_status.php:120
+msgid "The number of queries added to the cache."
+msgstr ""
+
+#: server_status.php:121
+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 "
+"cache size. The query cache uses a least recently used (LRU) strategy to "
+"decide which queries to remove from the cache."
+msgstr ""
+
+#: server_status.php:122
+msgid ""
+"The number of non-cached queries (not cachable, or not cached due to the "
+"query_cache_type setting)."
+msgstr ""
+
+#: server_status.php:123
+msgid "The number of queries registered in the cache."
+msgstr ""
+
+#: server_status.php:124
+msgid "The total number of blocks in the query cache."
+msgstr ""
+
+#: server_status.php:125
+msgctxt "$strShowStatusReset"
+msgid "Reset"
+msgstr ""
+
+#: server_status.php:126
+msgid "The status of failsafe replication (not yet implemented)."
+msgstr ""
+
+#: server_status.php:127
+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 ""
+
+#: server_status.php:128
+msgid "The number of joins that used a range search on a reference table."
+msgstr ""
+
+#: server_status.php:129
+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 ""
+
+#: server_status.php:130
+msgid ""
+"The number of joins that used ranges on the first table. (It's normally not "
+"critical even if this is big.)"
+msgstr ""
+
+#: server_status.php:131
+msgid "The number of joins that did a full scan of the first table."
+msgstr ""
+
+#: server_status.php:132
+msgid "The number of temporary tables currently open by the slave SQL thread."
+msgstr ""
+
+#: server_status.php:133
+msgid ""
+"Total (since startup) number of times the replication slave SQL thread has "
+"retried transactions."
+msgstr ""
+
+#: server_status.php:134
+msgid "This is ON if this server is a slave that is connected to a master."
+msgstr ""
+
+#: server_status.php:135
+msgid ""
+"The number of threads that have taken more than slow_launch_time seconds to "
+"create."
+msgstr ""
+
+#: server_status.php:136
+msgid ""
+"The number of queries that have taken more than long_query_time seconds."
+msgstr ""
+
+#: server_status.php:137
+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 ""
+
+#: server_status.php:138
+msgid "The number of sorts that were done with ranges."
+msgstr ""
+
+#: server_status.php:139
+msgid "The number of sorted rows."
+msgstr ""
+
+#: server_status.php:140
+msgid "The number of sorts that were done by scanning the table."
+msgstr ""
+
+#: server_status.php:141
+msgid "The number of times that a table lock was acquired immediately."
+msgstr ""
+
+#: server_status.php:142
+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 "
+"should first optimize your queries, and then either split your table or "
+"tables or use replication."
+msgstr ""
+
+#: server_status.php:143
+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 ""
+
+#: server_status.php:144
+msgid "The number of currently open connections."
+msgstr ""
+
+#: server_status.php:145
+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 "
+"doesn't give a notable performance improvement if you have a good thread "
+"implementation.)"
+msgstr ""
+
+#: server_status.php:146
+msgid "The number of threads that are not sleeping."
+msgstr ""
+
+#: server_status.php:157
msgid "Runtime Information"
msgstr ""
-#: server_status.php:250
+#: server_status.php:361
msgid "Handler"
msgstr ""
-#: server_status.php:251
+#: server_status.php:362
msgid "Query cache"
msgstr ""
-#: server_status.php:252
+#: server_status.php:363
msgid "Threads"
msgstr ""
-#: server_status.php:254
+#: server_status.php:365
msgid "Temporary data"
msgstr ""
-#: server_status.php:255
+#: server_status.php:366
msgid "Delayed inserts"
msgstr ""
-#: server_status.php:256
+#: server_status.php:367
msgid "Key cache"
msgstr ""
-#: server_status.php:257
+#: server_status.php:368
msgid "Joins"
msgstr ""
-#: server_status.php:259
+#: server_status.php:370
msgid "Sorting"
msgstr ""
-#: server_status.php:261
+#: server_status.php:372
msgid "Transaction coordinator"
msgstr ""
-#: server_status.php:271
+#: server_status.php:382
msgid "Flush (close) all tables"
msgstr ""
-#: server_status.php:273
+#: server_status.php:384
msgid "Show open tables"
msgstr ""
-#: server_status.php:278
+#: server_status.php:389
msgid "Show slave hosts"
msgstr ""
-#: server_status.php:284
+#: server_status.php:395
msgid "Show slave status"
msgstr ""
-#: server_status.php:289
+#: server_status.php:400
msgid "Flush query cache"
msgstr ""
-#: server_status.php:294
+#: server_status.php:405
msgid "Show processes"
msgstr ""
-#: server_status.php:344
+#: server_status.php:455
msgctxt "for Show status"
msgid "Reset"
msgstr ""
-#: server_status.php:350
+#: server_status.php:461
#, php-format
msgid "This MySQL server has been running for %s. It started up on %s."
msgstr ""
-#: server_status.php:360
+#: server_status.php:471
msgid ""
"This MySQL server works as master and slave in replication"
"b> process."
msgstr ""
-#: server_status.php:362
+#: server_status.php:473
msgid "This MySQL server works as master in replication process."
msgstr ""
-#: server_status.php:364
+#: server_status.php:475
msgid "This MySQL server works as slave in replication process."
msgstr ""
-#: server_status.php:366
+#: server_status.php:477
msgid ""
"For further information about replication status on the server, please visit "
"the replication section."
msgstr ""
-#: server_status.php:383
+#: server_status.php:494
msgid ""
"Server traffic: These tables show the network traffic statistics of "
"this MySQL server since its startup."
msgstr ""
-#: server_status.php:388
+#: server_status.php:499
msgid "Traffic"
msgstr ""
-#: server_status.php:388
+#: server_status.php:499
msgid ""
"On a busy server, the byte counters may overrun, so those statistics as "
"reported by the MySQL server may be incorrect."
msgstr ""
-#: server_status.php:389 server_status.php:434 server_status.php:497
-#: server_status.php:555
+#: server_status.php:500 server_status.php:545 server_status.php:608
+#: server_status.php:666
msgid "per hour"
msgstr "గంటకి"
-#: server_status.php:394
+#: server_status.php:505
msgid "Received"
msgstr ""
# మొదటి అనువాదము
-#: server_status.php:404
+#: server_status.php:515
msgid "Sent"
msgstr "పంపించు"
-#: server_status.php:433
+#: server_status.php:544
msgid "Connections"
msgstr "అనుసంధానాలు"
-#: server_status.php:440
+#: server_status.php:551
msgid "max. concurrent connections"
msgstr ""
-#: server_status.php:447
+#: server_status.php:558
msgid "Failed attempts"
msgstr ""
-#: server_status.php:461
+#: server_status.php:572
msgid "Aborted"
msgstr ""
-#: server_status.php:490
+#: server_status.php:601
#, php-format
msgid ""
"Query statistics: Since its startup, %s queries have been sent to the "
"server."
msgstr ""
-#: server_status.php:498
+#: server_status.php:609
msgid "per minute"
msgstr "నిమిషానికి"
-#: server_status.php:499
+#: server_status.php:610
msgid "per second"
msgstr "క్షణానికి"
-#: server_status.php:554
+#: server_status.php:665
msgid "Query type"
msgstr ""
-#: server_status.php:721
+#: server_status.php:832
msgid "Replication status"
msgstr ""
diff --git a/po/th.po b/po/th.po
index c10238637..599eb95cb 100755
--- a/po/th.po
+++ b/po/th.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-06-04 16:07-0400\n"
+"POT-Creation-Date: 2010-06-08 12:32-0400\n"
"PO-Revision-Date: 2010-03-12 09:19+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: thai \n"
@@ -14,11 +14,11 @@ msgstr ""
"X-Generator: Translate Toolkit 1.5.3\n"
#: browse_foreigners.php:38 browse_foreigners.php:59
-#: libraries/display_tbl.lib.php:417 server_privileges.php:1475
+#: libraries/display_tbl.lib.php:417 server_privileges.php:1514
msgid "Show all"
msgstr "แสดงทั้งหมด"
-#: browse_foreigners.php:82 libraries/common.lib.php:2304
+#: browse_foreigners.php:82 libraries/common.lib.php:2313
#: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:394
#: libraries/export/pdf.php:147 pdf_schema.php:283 pdf_schema.php:1123
#: pdf_schema.php:1139
@@ -34,8 +34,8 @@ msgstr ""
#: browse_foreigners.php:150 db_structure.php:79 db_structure.php:80
#: db_structure.php:91 db_structure.php:93 db_structure.php:104
-#: db_structure.php:106 libraries/common.lib.php:2822
-#: libraries/common.lib.php:2829 libraries/db_links.inc.php:75
+#: db_structure.php:106 libraries/common.lib.php:2831
+#: libraries/common.lib.php:2838 libraries/db_links.inc.php:75
#: libraries/tbl_links.inc.php:63
msgid "Search"
msgstr "ค้นหา"
@@ -45,7 +45,7 @@ msgstr "ค้นหา"
#: db_structure.php:567 js/messages.php:48 libraries/Config.class.php:1046
#: libraries/Theme_Manager.class.php:311
#: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719
-#: libraries/common.lib.php:1333 libraries/common.lib.php:2279
+#: libraries/common.lib.php:1335 libraries/common.lib.php:2288
#: libraries/display_change_password.lib.php:82
#: libraries/display_create_table.lib.php:63
#: libraries/display_export.lib.php:275 libraries/display_import.lib.php:276
@@ -56,9 +56,9 @@ msgstr "ค้นหา"
#: libraries/sql_query_form.lib.php:552 libraries/tbl_properties.inc.php:782
#: main.php:128 navigation.php:237 pdf_pages.php:292 pdf_pages.php:328
#: pdf_pages.php:530 pmd_pdf.php:116 server_binlog.php:142
-#: server_privileges.php:625 server_privileges.php:1585
-#: server_privileges.php:1932 server_privileges.php:1979
-#: server_privileges.php:2018 server_replication.php:235
+#: server_privileges.php:664 server_privileges.php:1624
+#: server_privileges.php:1971 server_privileges.php:2018
+#: server_privileges.php:2057 server_replication.php:235
#: server_replication.php:318 server_replication.php:341
#: server_synchronize.php:1209 tbl_change.php:330 tbl_change.php:1174
#: tbl_change.php:1211 tbl_indexes.php:254 tbl_operations.php:265
@@ -76,7 +76,7 @@ msgstr "ชื่อคีย์"
#: browse_foreigners.php:169 browse_foreigners.php:171
#: server_collations.php:55 server_collations.php:67 server_engines.php:59
-#: server_status.php:628
+#: server_status.php:739
msgid "Description"
msgstr "รายละเอียด"
@@ -117,7 +117,7 @@ msgstr "ชื่อคอลัมน์"
#: libraries/db_structure.lib.php:60 libraries/export/htmlword.php:245
#: libraries/export/latex.php:360 libraries/export/odt.php:297
#: libraries/export/texytext.php:234 libraries/tbl_properties.inc.php:100
-#: pdf_schema.php:1263 pdf_schema.php:1284 server_privileges.php:2031
+#: pdf_schema.php:1263 pdf_schema.php:1284 server_privileges.php:2070
#: tbl_change.php:287 tbl_change.php:314 tbl_printview.php:143
#: tbl_printview.php:313 tbl_select.php:136 tbl_structure.php:178
#: tbl_structure.php:659 tbl_tracking.php:274 tbl_tracking.php:321
@@ -161,9 +161,9 @@ msgstr "หมายเหตุ"
#: libraries/Index.class.php:386 libraries/export/htmlword.php:322
#: libraries/export/latex.php:430 libraries/export/odt.php:368
#: libraries/export/texytext.php:311 libraries/mult_submits.inc.php:263
-#: pdf_schema.php:1344 server_privileges.php:1529 server_privileges.php:1540
-#: server_privileges.php:1850 server_privileges.php:1855
-#: server_privileges.php:2148 sql.php:132 sql.php:194 tbl_printview.php:229
+#: pdf_schema.php:1344 server_privileges.php:1568 server_privileges.php:1579
+#: server_privileges.php:1889 server_privileges.php:1894
+#: server_privileges.php:2187 sql.php:132 sql.php:194 tbl_printview.php:229
#: tbl_structure.php:350 tbl_tracking.php:337 tbl_tracking.php:342
msgid "No"
msgstr "ไม่"
@@ -177,9 +177,9 @@ msgstr "ไม่"
#: libraries/mult_submits.inc.php:101 libraries/mult_submits.inc.php:106
#: libraries/mult_submits.inc.php:111 libraries/mult_submits.inc.php:262
#: libraries/mult_submits.inc.php:273 pdf_schema.php:1344
-#: server_databases.php:64 server_privileges.php:1526
-#: server_privileges.php:1540 server_privileges.php:1850
-#: server_privileges.php:1853 server_privileges.php:2148 sql.php:193
+#: server_databases.php:64 server_privileges.php:1565
+#: server_privileges.php:1579 server_privileges.php:1889
+#: server_privileges.php:1892 server_privileges.php:2187 sql.php:193
#: tbl_printview.php:229 tbl_structure.php:40 tbl_structure.php:350
#: tbl_tracking.php:335 tbl_tracking.php:340
msgid "Yes"
@@ -279,7 +279,7 @@ msgstr "สลับไปที่ตารางที่ถูกทำสำ
msgid "BLOB Repository"
msgstr ""
-#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1350
+#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1352
#: libraries/server_links.inc.php:49 server_processlist.php:59
#: tbl_tracking.php:596 test/theme.php:101
msgid "Status"
@@ -342,8 +342,8 @@ msgstr "แก้ไขหน้า PDF"
#: db_printview.php:104 db_tracking.php:72 db_tracking.php:157
#: libraries/db_structure.lib.php:46 libraries/export/xml.php:328
-#: libraries/header.inc.php:126 pdf_pages.php:424 server_privileges.php:1626
-#: server_privileges.php:1682 server_privileges.php:1946
+#: libraries/header.inc.php:126 pdf_pages.php:424 server_privileges.php:1665
+#: server_privileges.php:1721 server_privileges.php:1985
#: server_synchronize.php:423 server_synchronize.php:866 tbl_tracking.php:592
#: test/theme.php:75
msgid "Table"
@@ -444,7 +444,7 @@ msgstr "ลบ"
#: db_qbe.php:370 db_qbe.php:451 db_qbe.php:522 db_qbe.php:553
#: libraries/display_import.lib.php:166 libraries/tbl_properties.inc.php:779
-#: server_privileges.php:258 tbl_change.php:1031 tbl_indexes.php:250
+#: server_privileges.php:297 tbl_change.php:1031 tbl_indexes.php:250
#: tbl_select.php:288
msgid "Or"
msgstr "หรือ"
@@ -478,7 +478,7 @@ msgstr "ใช้ตาราง"
msgid "SQL query on database %s:"
msgstr "คำค้นบนฐานข้อมูล %s:"
-#: db_qbe.php:934 libraries/common.lib.php:1223
+#: db_qbe.php:934 libraries/common.lib.php:1225
msgid "Submit Query"
msgstr "ประมวลผลคำค้น"
@@ -517,7 +517,7 @@ msgstr "พบ %s ผลลัพธ์ที่ตรงในตาราง <
#: db_search.php:267 db_structure.php:77 db_structure.php:78
#: db_structure.php:90 db_structure.php:92 db_structure.php:103
-#: db_structure.php:105 libraries/common.lib.php:2824
+#: db_structure.php:105 libraries/common.lib.php:2833
#: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50
#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:467
msgid "Browse"
@@ -564,26 +564,26 @@ msgstr "ในตาราง:"
#: db_structure.php:81 db_structure.php:82 db_structure.php:94
#: db_structure.php:95 db_structure.php:107 db_structure.php:108
-#: libraries/common.lib.php:2823 libraries/sql_query_form.lib.php:334
+#: libraries/common.lib.php:2832 libraries/sql_query_form.lib.php:334
#: libraries/sql_query_form.lib.php:337 libraries/tbl_links.inc.php:76
msgid "Insert"
msgstr "แทรก"
#: db_structure.php:83 db_structure.php:96 db_structure.php:109
-#: libraries/common.lib.php:2820 libraries/common.lib.php:2827
+#: libraries/common.lib.php:2829 libraries/common.lib.php:2836
#: libraries/db_links.inc.php:63 libraries/export/htmlword.php:23
#: libraries/export/latex.php:33 libraries/export/latex.php:337
#: libraries/export/odt.php:32 libraries/export/sql.php:60
#: libraries/export/texytext.php:23 libraries/import.lib.php:1104
#: libraries/tbl_links.inc.php:56 pmd_general.php:134
-#: server_privileges.php:554 server_replication.php:315 tbl_tracking.php:269
+#: server_privileges.php:593 server_replication.php:315 tbl_tracking.php:269
msgid "Structure"
msgstr "โครงสร้าง"
#: db_structure.php:84 db_structure.php:85 db_structure.php:97
#: db_structure.php:98 db_structure.php:110 db_structure.php:111
#: db_structure.php:545 db_structure.php:546 db_tracking.php:91
-#: libraries/Index.class.php:483 libraries/common.lib.php:1654
+#: libraries/Index.class.php:483 libraries/common.lib.php:1656
#: libraries/db_links.inc.php:100 libraries/mult_submits.inc.php:36
#: libraries/mult_submits.inc.php:73 libraries/tbl_links.inc.php:127
#: server_databases.php:352 tbl_structure.php:27 tbl_structure.php:151
@@ -593,7 +593,7 @@ msgstr "โยนทิ้ง"
#: db_structure.php:86 db_structure.php:87 db_structure.php:99
#: db_structure.php:100 db_structure.php:112 db_structure.php:113
-#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1653
+#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1655
#: libraries/mult_submits.inc.php:39 libraries/tbl_links.inc.php:105
msgid "Empty"
msgstr "ลบข้อมูล"
@@ -635,7 +635,7 @@ msgstr ""
#: db_structure.php:485 libraries/db_structure.lib.php:49
#: libraries/server_links.inc.php:70 server_replication.php:33
-#: server_replication.php:164 server_status.php:258
+#: server_replication.php:164 server_status.php:369
#, fuzzy
msgid "Replication"
msgstr "รีเลชัน"
@@ -652,20 +652,20 @@ msgstr ""
#: db_structure.php:524 db_structure.php:541 db_structure.php:542
#: libraries/display_tbl.lib.php:2081 libraries/display_tbl.lib.php:2086
#: libraries/mult_submits.inc.php:16 server_databases.php:346
-#: server_databases.php:351 server_privileges.php:1557 tbl_structure.php:455
+#: server_databases.php:351 server_privileges.php:1596 tbl_structure.php:455
#: tbl_structure.php:464
msgid "With selected:"
msgstr "ทำกับที่เลือก:"
#: db_structure.php:527 libraries/display_tbl.lib.php:2076
-#: server_databases.php:348 server_privileges.php:530
-#: server_privileges.php:1560 tbl_structure.php:458
+#: server_databases.php:348 server_privileges.php:569
+#: server_privileges.php:1599 tbl_structure.php:458
msgid "Check All"
msgstr "เลือกทั้งหมด"
#: db_structure.php:531 libraries/display_tbl.lib.php:2077
#: libraries/replication_gui.lib.php:33 server_databases.php:350
-#: server_privileges.php:533 server_privileges.php:1564 tbl_structure.php:462
+#: server_privileges.php:572 server_privileges.php:1603 tbl_structure.php:462
msgid "Uncheck All"
msgstr "ไม่เลือกเลย"
@@ -703,7 +703,7 @@ msgstr "วิเคราะห์ตาราง"
#: libraries/display_export.lib.php:83 libraries/display_tbl.lib.php:2094
#: libraries/display_tbl.lib.php:2225 libraries/mult_submits.inc.php:62
#: libraries/server_links.inc.php:84 libraries/tbl_links.inc.php:82
-#: pmd_pdf.php:84 pmd_pdf.php:109 server_privileges.php:1341
+#: pmd_pdf.php:84 pmd_pdf.php:109 server_privileges.php:1380
#: setup/frames/menu.inc.php:22 tbl_row_action.php:59
msgid "Export"
msgstr "ส่งออก"
@@ -721,8 +721,8 @@ msgstr ""
#: libraries/export/sql.php:342 libraries/export/texytext.php:84
#: libraries/export/xml.php:255 libraries/header.inc.php:106
#: libraries/header_printview.inc.php:58 server_databases.php:169
-#: server_privileges.php:1621 server_privileges.php:1682
-#: server_privileges.php:1940 server_processlist.php:56
+#: server_privileges.php:1660 server_privileges.php:1721
+#: server_privileges.php:1979 server_processlist.php:56
#: server_synchronize.php:1179 server_synchronize.php:1183
#: tbl_tracking.php:591 test/theme.php:65
msgid "Database"
@@ -743,8 +743,8 @@ msgstr ""
#: db_tracking.php:77 libraries/Index.class.php:440
#: libraries/db_structure.lib.php:53 server_databases.php:203
-#: server_privileges.php:1503 server_privileges.php:1686
-#: server_privileges.php:2034 tbl_structure.php:187
+#: server_privileges.php:1542 server_privileges.php:1725
+#: server_privileges.php:2073 tbl_structure.php:187
msgid "Action"
msgstr "กระทำการ"
@@ -935,11 +935,11 @@ msgstr "ชื่อโฮสต์ยังว่างอยู่!"
msgid "The user name is empty!"
msgstr "ชื่อผู้ใช้ยังว่างอยู่!"
-#: js/messages.php:44 server_privileges.php:1197 user_password.php:70
+#: js/messages.php:44 server_privileges.php:1236 user_password.php:70
msgid "The password is empty!"
msgstr "รหัสผ่านยังว่างอยู่!"
-#: js/messages.php:45 server_privileges.php:1195 user_password.php:73
+#: js/messages.php:45 server_privileges.php:1234 user_password.php:73
msgid "The passwords aren't the same!"
msgstr "รหัสผ่านไม่ตรงกัน!"
@@ -1020,8 +1020,8 @@ msgid "Prev"
msgstr "ก่อนหน้า"
#. l10n: Display text for next month link in calendar
-#: js/messages.php:77 libraries/common.lib.php:2344
-#: libraries/common.lib.php:2347 libraries/display_tbl.lib.php:338
+#: js/messages.php:77 libraries/common.lib.php:2353
+#: libraries/common.lib.php:2356 libraries/display_tbl.lib.php:338
#: server_binlog.php:205 server_binlog.php:207 tbl_printview.php:424
#: tbl_structure.php:801
msgid "Next"
@@ -1097,27 +1097,27 @@ msgid "December"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:97 libraries/common.lib.php:1555
+#: js/messages.php:97 libraries/common.lib.php:1557
msgid "Jan"
msgstr "ม.ค."
#. l10n: Short month name
-#: js/messages.php:99 libraries/common.lib.php:1557
+#: js/messages.php:99 libraries/common.lib.php:1559
msgid "Feb"
msgstr "ก.พ."
#. l10n: Short month name
-#: js/messages.php:101 libraries/common.lib.php:1559
+#: js/messages.php:101 libraries/common.lib.php:1561
msgid "Mar"
msgstr "มี.ค."
#. l10n: Short month name
-#: js/messages.php:103 libraries/common.lib.php:1561
+#: js/messages.php:103 libraries/common.lib.php:1563
msgid "Apr"
msgstr "เม.ย."
#. l10n: Short month name
-#: js/messages.php:105 libraries/common.lib.php:1563
+#: js/messages.php:105 libraries/common.lib.php:1565
#, fuzzy
#| msgid "May"
msgctxt "Short month name"
@@ -1125,37 +1125,37 @@ msgid "May"
msgstr "พ.ค."
#. l10n: Short month name
-#: js/messages.php:107 libraries/common.lib.php:1565
+#: js/messages.php:107 libraries/common.lib.php:1567
msgid "Jun"
msgstr "มิ.ย."
#. l10n: Short month name
-#: js/messages.php:109 libraries/common.lib.php:1567
+#: js/messages.php:109 libraries/common.lib.php:1569
msgid "Jul"
msgstr "ก.ค."
#. l10n: Short month name
-#: js/messages.php:111 libraries/common.lib.php:1569
+#: js/messages.php:111 libraries/common.lib.php:1571
msgid "Aug"
msgstr "ส.ค."
#. l10n: Short month name
-#: js/messages.php:113 libraries/common.lib.php:1571
+#: js/messages.php:113 libraries/common.lib.php:1573
msgid "Sep"
msgstr "ก.ย."
#. l10n: Short month name
-#: js/messages.php:115 libraries/common.lib.php:1573
+#: js/messages.php:115 libraries/common.lib.php:1575
msgid "Oct"
msgstr "ต.ค."
#. l10n: Short month name
-#: js/messages.php:117 libraries/common.lib.php:1575
+#: js/messages.php:117 libraries/common.lib.php:1577
msgid "Nov"
msgstr "พ.ย."
#. l10n: Short month name
-#: js/messages.php:119 libraries/common.lib.php:1577
+#: js/messages.php:119 libraries/common.lib.php:1579
msgid "Dec"
msgstr "ธ.ค."
@@ -1196,37 +1196,37 @@ msgid "Saturday"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:132 libraries/common.lib.php:1580
+#: js/messages.php:132 libraries/common.lib.php:1582
msgid "Sun"
msgstr "อา."
#. l10n: Short week day name
-#: js/messages.php:134 libraries/common.lib.php:1582
+#: js/messages.php:134 libraries/common.lib.php:1584
msgid "Mon"
msgstr "จ."
#. l10n: Short week day name
-#: js/messages.php:136 libraries/common.lib.php:1584
+#: js/messages.php:136 libraries/common.lib.php:1586
msgid "Tue"
msgstr "อ."
#. l10n: Short week day name
-#: js/messages.php:138 libraries/common.lib.php:1586
+#: js/messages.php:138 libraries/common.lib.php:1588
msgid "Wed"
msgstr "พ."
#. l10n: Short week day name
-#: js/messages.php:140 libraries/common.lib.php:1588
+#: js/messages.php:140 libraries/common.lib.php:1590
msgid "Thu"
msgstr "พฤ."
#. l10n: Short week day name
-#: js/messages.php:142 libraries/common.lib.php:1590
+#: js/messages.php:142 libraries/common.lib.php:1592
msgid "Fri"
msgstr "ศ."
#. l10n: Short week day name
-#: js/messages.php:144 libraries/common.lib.php:1592
+#: js/messages.php:144 libraries/common.lib.php:1594
msgid "Sat"
msgstr "ส."
@@ -1370,7 +1370,7 @@ msgid "Comment"
msgstr "หมายเหตุ"
#: libraries/Index.class.php:466 libraries/common.lib.php:616
-#: libraries/common.lib.php:1199 libraries/display_tbl.lib.php:1117
+#: libraries/common.lib.php:1201 libraries/display_tbl.lib.php:1117
#: libraries/import.lib.php:1087 libraries/import.lib.php:1111
#: pdf_pages.php:285 setup/frames/index.inc.php:124
#: setup/lib/messages.inc.php:352 tbl_row_action.php:69
@@ -1394,7 +1394,7 @@ msgid ""
msgstr ""
#: libraries/List_Database.class.php:431 libraries/server_links.inc.php:41
-#: server_databases.php:88 server_privileges.php:1621
+#: server_databases.php:88 server_privileges.php:1660
#: setup/lib/messages.inc.php:110 test/theme.php:93
msgid "Databases"
msgstr "ฐานข้อมูล"
@@ -1717,7 +1717,7 @@ msgid "Documentation"
msgstr "เอกสารอ้างอิง"
#: libraries/common.lib.php:595 libraries/header_printview.inc.php:61
-#: server_processlist.php:60 server_status.php:247
+#: server_processlist.php:60 server_status.php:358
msgid "SQL query"
msgstr "คำค้น SQL"
@@ -1733,128 +1733,128 @@ msgstr "อธิบาย SQL"
msgid "Skip Explain SQL"
msgstr "ไม่ต้องอธิบาย SQL"
-#: libraries/common.lib.php:1212
+#: libraries/common.lib.php:1214
msgid "Without PHP Code"
msgstr "ไม่เอาโค้ด PHP"
-#: libraries/common.lib.php:1215 setup/lib/messages.inc.php:355
+#: libraries/common.lib.php:1217 setup/lib/messages.inc.php:355
msgid "Create PHP Code"
msgstr "สร้างโค้ด PHP"
-#: libraries/common.lib.php:1233 server_status.php:341
+#: libraries/common.lib.php:1235 server_status.php:452
#: setup/lib/messages.inc.php:354
msgid "Refresh"
msgstr "เรียกใหม่"
-#: libraries/common.lib.php:1242
+#: libraries/common.lib.php:1244
msgid "Skip Validate SQL"
msgstr "ไม่ต้องตรวจสอบ SQL"
-#: libraries/common.lib.php:1245 setup/lib/messages.inc.php:356 sql.php:518
+#: libraries/common.lib.php:1247 setup/lib/messages.inc.php:356 sql.php:518
msgid "Validate SQL"
msgstr "ตรวจสอบ SQL"
-#: libraries/common.lib.php:1276
+#: libraries/common.lib.php:1278
msgid "Inline edit of this query"
msgstr ""
-#: libraries/common.lib.php:1278
+#: libraries/common.lib.php:1280
msgid "Inline"
msgstr ""
-#: libraries/common.lib.php:1332 libraries/common.lib.php:1347
+#: libraries/common.lib.php:1334 libraries/common.lib.php:1349
msgid "Profiling"
msgstr ""
-#: libraries/common.lib.php:1351 libraries/tbl_triggers.lib.php:28
+#: libraries/common.lib.php:1353 libraries/tbl_triggers.lib.php:28
#: server_processlist.php:58
msgid "Time"
msgstr "เวลา"
#. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "B"
msgstr "ไบต์"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "KiB"
msgstr "กิโลไบต์"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "MiB"
msgstr "เมกกะไบต์"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "GiB"
msgstr "กิกะไบต์"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "TiB"
msgstr "เทอราไบต์"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "PiB"
msgstr "เพตตะไบต์"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "EiB"
msgstr "เอกซะไบต์"
#. l10n: Thousands separator
-#: libraries/common.lib.php:1417
+#: libraries/common.lib.php:1419
msgid ","
msgstr ","
#. l10n: Decimal separator
-#: libraries/common.lib.php:1419
+#: libraries/common.lib.php:1421
msgid "."
msgstr "."
#. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string
-#: libraries/common.lib.php:1596
+#: libraries/common.lib.php:1598
#: libraries/transformations/text_plain__dateformat.inc.php:34
msgid "%B %d, %Y at %I:%M %p"
msgstr "%d %B %Y %Rน."
-#: libraries/common.lib.php:1898
+#: libraries/common.lib.php:1907
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "%s วัน, %s ชั่วโมง, %s นาที, %s วินาที"
-#: libraries/common.lib.php:2313 libraries/common.lib.php:2316
-#: libraries/display_tbl.lib.php:290 server_status.php:608
+#: libraries/common.lib.php:2322 libraries/common.lib.php:2325
+#: libraries/display_tbl.lib.php:290 server_status.php:719
msgid "Begin"
msgstr "จุดเริ่มต้น"
-#: libraries/common.lib.php:2314 libraries/common.lib.php:2317
+#: libraries/common.lib.php:2323 libraries/common.lib.php:2326
#: libraries/display_tbl.lib.php:291 server_binlog.php:168
#: server_binlog.php:170
msgid "Previous"
msgstr "ก่อนหน้า"
-#: libraries/common.lib.php:2345 libraries/common.lib.php:2348
+#: libraries/common.lib.php:2354 libraries/common.lib.php:2357
#: libraries/display_tbl.lib.php:353
msgid "End"
msgstr "ท้ายสุด"
-#: libraries/common.lib.php:2421
+#: libraries/common.lib.php:2430
#, php-format
msgid "Jump to database "%s"."
msgstr "กระโดดไปที่ฐานข้อมูล "%s"."
-#: libraries/common.lib.php:2441
+#: libraries/common.lib.php:2450
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr ""
-#: libraries/common.lib.php:2821 libraries/common.lib.php:2828
+#: libraries/common.lib.php:2830 libraries/common.lib.php:2837
#: libraries/db_links.inc.php:68 libraries/export/sql.php:25
#: libraries/import/sql.php:18 libraries/server_links.inc.php:45
#: libraries/tbl_links.inc.php:60 querywindow.php:99 test/theme.php:97
msgid "SQL"
msgstr "SQL"
-#: libraries/common.lib.php:2830 libraries/db_links.inc.php:104
+#: libraries/common.lib.php:2839 libraries/db_links.inc.php:104
#: libraries/tbl_links.inc.php:95 libraries/tbl_links.inc.php:117
#: view_operations.php:89
msgid "Operations"
@@ -1909,8 +1909,8 @@ msgid "Import"
msgstr "ส่งออก"
#: libraries/db_links.inc.php:111 libraries/server_links.inc.php:66
-#: server_privileges.php:72 server_privileges.php:1683
-#: server_privileges.php:2032 test/theme.php:117
+#: server_privileges.php:111 server_privileges.php:1722
+#: server_privileges.php:2071 test/theme.php:117
msgid "Privileges"
msgstr "สิทธิ"
@@ -1956,22 +1956,22 @@ msgid "Change password"
msgstr "เปลี่ยนรหัสผ่าน"
#: libraries/display_change_password.lib.php:35
-#: libraries/replication_gui.lib.php:345 server_privileges.php:768
+#: libraries/replication_gui.lib.php:345 server_privileges.php:807
msgid "No Password"
msgstr "ไม่มีรหัสผ่าน"
#: libraries/display_change_password.lib.php:41
#: libraries/replication_gui.lib.php:59 libraries/replication_gui.lib.php:60
#: libraries/replication_gui.lib.php:335 libraries/replication_gui.lib.php:339
-#: libraries/replication_gui.lib.php:349 server_privileges.php:757
-#: server_privileges.php:761 server_privileges.php:772
-#: server_privileges.php:1499 server_synchronize.php:1175
+#: libraries/replication_gui.lib.php:349 server_privileges.php:796
+#: server_privileges.php:800 server_privileges.php:811
+#: server_privileges.php:1538 server_synchronize.php:1175
msgid "Password"
msgstr "รหัสผ่าน"
#: libraries/display_change_password.lib.php:46
#: libraries/replication_gui.lib.php:353 libraries/replication_gui.lib.php:356
-#: server_privileges.php:776 server_privileges.php:779
+#: server_privileges.php:815 server_privileges.php:818
msgid "Re-type"
msgstr "พิมพ์ใหม่"
@@ -1984,12 +1984,12 @@ msgid "MySQL 4.0 compatible"
msgstr ""
#: libraries/display_change_password.lib.php:72
-#: libraries/replication_gui.lib.php:360 server_privileges.php:783
+#: libraries/replication_gui.lib.php:360 server_privileges.php:822
msgid "Generate Password"
msgstr ""
#: libraries/display_change_password.lib.php:75
-#: libraries/replication_gui.lib.php:363 server_privileges.php:786
+#: libraries/replication_gui.lib.php:363 server_privileges.php:825
#, fuzzy
msgid "Generate"
msgstr "สร้างโดย"
@@ -2003,8 +2003,8 @@ msgstr "สร้างฐานข้อมูลใหม่"
msgid "Create"
msgstr "สร้าง"
-#: libraries/display_create_database.lib.php:40 server_privileges.php:74
-#: server_privileges.php:1388 server_replication.php:35
+#: libraries/display_create_database.lib.php:40 server_privileges.php:113
+#: server_privileges.php:1427 server_replication.php:35
msgid "No Privileges"
msgstr "ไม่มีสิทธิ"
@@ -2093,7 +2093,7 @@ msgstr "บีบอัดข้อมูล"
#: libraries/display_export.lib.php:240 libraries/display_import.lib.php:197
#: libraries/display_import.lib.php:210 libraries/display_tbl.lib.php:530
#: libraries/export/sql.php:868 libraries/tbl_properties.inc.php:575
-#: server_privileges.php:1836 server_processlist.php:75
+#: server_privileges.php:1875 server_processlist.php:75
msgid "None"
msgstr "ไม่มี"
@@ -2415,7 +2415,7 @@ msgstr ""
msgid "Buffer Pool"
msgstr ""
-#: libraries/engines/innodb.lib.php:145 server_status.php:306
+#: libraries/engines/innodb.lib.php:145 server_status.php:417
msgid "InnoDB Status"
msgstr "สถานะของ InnoDB"
@@ -2424,8 +2424,8 @@ msgid "Buffer Pool Usage"
msgstr ""
#: libraries/engines/innodb.lib.php:194 server_databases.php:137
-#: server_databases.php:305 server_status.php:414 server_status.php:475
-#: server_status.php:496 tbl_printview.php:351 tbl_structure.php:696
+#: server_databases.php:305 server_status.php:525 server_status.php:586
+#: server_status.php:607 tbl_printview.php:351 tbl_structure.php:696
msgid "Total"
msgstr "รวม"
@@ -2743,7 +2743,7 @@ msgstr ""
#: libraries/export/latex.php:201 libraries/export/odt.php:48
#: libraries/export/sql.php:106 libraries/export/sql.php:868
#: libraries/export/texytext.php:27 server_databases.php:127
-#: server_privileges.php:537 server_replication.php:316 tbl_printview.php:317
+#: server_privileges.php:576 server_replication.php:316 tbl_printview.php:317
#: tbl_structure.php:665
msgid "Data"
msgstr "ข้อมูล"
@@ -2793,9 +2793,9 @@ msgstr "MIME-type"
#: libraries/export/xml.php:102 libraries/header_printview.inc.php:57
#: libraries/replication_gui.lib.php:63 libraries/replication_gui.lib.php:174
#: libraries/replication_gui.lib.php:269 libraries/replication_gui.lib.php:272
-#: libraries/replication_gui.lib.php:329 server_privileges.php:692
-#: server_privileges.php:695 server_privileges.php:751
-#: server_privileges.php:1498 server_privileges.php:2030
+#: libraries/replication_gui.lib.php:329 server_privileges.php:731
+#: server_privileges.php:734 server_privileges.php:790
+#: server_privileges.php:1537 server_privileges.php:2069
#: server_processlist.php:55 server_synchronize.php:1159
msgid "Host"
msgstr "โฮสต์"
@@ -3152,743 +3152,6 @@ msgstr "ไม่มี"
msgid "Convert to Kana"
msgstr ""
-#. l10n: Text direction, use either ltr or rtl
-#: libraries/messages.inc.php:19
-msgid "ltr"
-msgstr "ltr"
-
-#: libraries/messages.inc.php:21
-msgid "Content of table __TABLE__"
-msgstr ""
-
-#: libraries/messages.inc.php:22
-msgid "(continued)"
-msgstr "(ต่อ)"
-
-#: libraries/messages.inc.php:23
-msgid "Structure of table __TABLE__"
-msgstr ""
-
-#: libraries/messages.inc.php:25 server_privileges.php:227
-msgid "Includes all privileges except GRANT."
-msgstr "ให้สิทธิทุกอย่าง ยกเว้นการให้สิทธิแก่ผู้อื่น (GRANT)."
-
-#: libraries/messages.inc.php:26 server_privileges.php:153
-#: server_privileges.php:476
-msgid "Allows altering the structure of existing tables."
-msgstr "อนุญาตให้เปลี่ยนโครงสร้างของตารางที่มีอยู่เดิม."
-
-#: libraries/messages.inc.php:27 server_privileges.php:169
-#: server_privileges.php:482
-#, fuzzy
-msgid "Allows altering and dropping stored routines."
-msgstr "อนุญาตให้สร้าง และทิ้ง ดัชนี"
-
-#: libraries/messages.inc.php:28 server_privileges.php:145
-#: server_privileges.php:475
-msgid "Allows creating new databases and tables."
-msgstr "อนุญาตให้สร้างฐานข้อมูล และตารางใหม่."
-
-#: libraries/messages.inc.php:29 server_privileges.php:168
-#: server_privileges.php:481
-#, fuzzy
-msgid "Allows creating stored routines."
-msgstr "อนุญาตให้สร้างตารางใหม่."
-
-#: libraries/messages.inc.php:30 server_privileges.php:475
-msgid "Allows creating new tables."
-msgstr "อนุญาตให้สร้างตารางใหม่."
-
-#: libraries/messages.inc.php:31 server_privileges.php:156
-#: server_privileges.php:479
-msgid "Allows creating temporary tables."
-msgstr "อนุญาตให้สร้างตารางชั่วคราว."
-
-#: libraries/messages.inc.php:32 server_privileges.php:170
-#: server_privileges.php:515
-msgid "Allows creating, dropping and renaming user accounts."
-msgstr ""
-
-#: libraries/messages.inc.php:33 server_privileges.php:160
-#: server_privileges.php:164 server_privileges.php:487
-#: server_privileges.php:491
-#, fuzzy
-msgid "Allows creating new views."
-msgstr "อนุญาตให้สร้างตารางใหม่."
-
-#: libraries/messages.inc.php:34 server_privileges.php:144
-#: server_privileges.php:467
-msgid "Allows deleting data."
-msgstr "อนุญาตให้ลบข้อมูล"
-
-#: libraries/messages.inc.php:35 server_privileges.php:146
-#: server_privileges.php:478
-msgid "Allows dropping databases and tables."
-msgstr "อนุญาตให้ทิ้งฐานข้อมูล และตาราง"
-
-#: libraries/messages.inc.php:36 server_privileges.php:478
-msgid "Allows dropping tables."
-msgstr "อนุญาตให้ทิ้งตาราง"
-
-#: libraries/messages.inc.php:37 server_privileges.php:161
-#: server_privileges.php:495
-msgid "Allows to set up events for the event scheduler"
-msgstr ""
-
-#: libraries/messages.inc.php:38 server_privileges.php:171
-#: server_privileges.php:483
-msgid "Allows executing stored routines."
-msgstr ""
-
-#: libraries/messages.inc.php:39 server_privileges.php:150
-#: server_privileges.php:470
-msgid "Allows importing data from and exporting data into files."
-msgstr "อนุญาตให้นำเข้าข้อมูล และส่งออกข้อมูล ไปที่ไฟล์"
-
-#: libraries/messages.inc.php:40 server_privileges.php:501
-msgid ""
-"Allows adding users and privileges without reloading the privilege tables."
-msgstr "อนุญาตให้เพิ่มผู้ใช้ และสิทธิเข้าถึง โดยไม่ต้องเรียกใช้ตารางสิทธิใหม่"
-
-#: libraries/messages.inc.php:41 server_privileges.php:152
-#: server_privileges.php:477
-msgid "Allows creating and dropping indexes."
-msgstr "อนุญาตให้สร้าง และทิ้ง ดัชนี"
-
-#: libraries/messages.inc.php:42 server_privileges.php:142
-#: server_privileges.php:403 server_privileges.php:465
-msgid "Allows inserting and replacing data."
-msgstr "อนุญาตให้เพิ่ม และแทนที่ ข้อมูล"
-
-#: libraries/messages.inc.php:43 server_privileges.php:157
-#: server_privileges.php:510
-msgid "Allows locking tables for the current thread."
-msgstr "อนุญาตให้ล็อกตารางสำหรับเธรดปัจจุบัน"
-
-#: libraries/messages.inc.php:44 server_privileges.php:607
-#: server_privileges.php:609
-msgid "Limits the number of new connections the user may open per hour."
-msgstr "จำกัดจำนวนการเชื่อมต่อใหม่ ที่ผู้ใช้จะสามารถเปิดได้ ต่อชั่วโมง"
-
-#: libraries/messages.inc.php:45 server_privileges.php:595
-#: server_privileges.php:597
-msgid "Limits the number of queries the user may send to the server per hour."
-msgstr "จำกัดจำนวนของคำค้น ที่ผู้ใช้จะสามารถส่งมาที่เซิร์ฟเวอร์ได้ ต่อชั่วโมง"
-
-#: libraries/messages.inc.php:46 server_privileges.php:601
-#: server_privileges.php:603
-msgid ""
-"Limits the number of commands that change any table or database the user may "
-"execute per hour."
-msgstr ""
-"จำกัดจำนวนของคำสั่ง ที่จะเปลี่ยนแปลงตาราง หรือฐานข้อมูลใดๆ ที่ผู้ใช้จะสามารถสั่งได้ ต่อชั่วโมง"
-
-#: libraries/messages.inc.php:47 server_privileges.php:613
-#: server_privileges.php:615
-#, fuzzy
-msgid "Limits the number of simultaneous connections the user may have."
-msgstr "จำกัดจำนวนการเชื่อมต่อใหม่ ที่ผู้ใช้จะสามารถเปิดได้ ต่อชั่วโมง"
-
-#: libraries/messages.inc.php:48 server_privileges.php:149
-#: server_privileges.php:505
-msgid "Allows viewing processes of all users"
-msgstr ""
-
-#: libraries/messages.inc.php:49 server_privileges.php:151
-#: server_privileges.php:409 server_privileges.php:511
-msgid "Has no effect in this MySQL version."
-msgstr "ไม่มีผลใน MySQL รุ่นนี้"
-
-#: libraries/messages.inc.php:50 server_privileges.php:147
-#: server_privileges.php:506
-msgid "Allows reloading server settings and flushing the server's caches."
-msgstr "อนุญาตให้เรียกใช้ค่ากำหนดของเซิร์ฟเวอร์ใหม่ และล้างแคชของเซิร์ฟเวอร์"
-
-#: libraries/messages.inc.php:51 server_privileges.php:159
-#: server_privileges.php:513
-msgid "Allows the user to ask where the slaves / masters are."
-msgstr "มอบสิทธิให้ผู้ใช้ ในการถามว่า slaves หรือ masters อยู่ที่ไหน."
-
-#: libraries/messages.inc.php:52 server_privileges.php:158
-#: server_privileges.php:514
-msgid "Needed for the replication slaves."
-msgstr ""
-
-#: libraries/messages.inc.php:53 server_privileges.php:141
-#: server_privileges.php:400 server_privileges.php:464
-msgid "Allows reading data."
-msgstr "อนุญาตให้อ่านข้อมูลได้."
-
-#: libraries/messages.inc.php:54 server_privileges.php:154
-#: server_privileges.php:508
-msgid "Gives access to the complete list of databases."
-msgstr "สามารถเรียกดูรายการฐานข้อมูลทั้งหมดได้"
-
-#: libraries/messages.inc.php:55 server_privileges.php:165
-#: server_privileges.php:167 server_privileges.php:480
-msgid "Allows performing SHOW CREATE VIEW queries."
-msgstr ""
-
-#: libraries/messages.inc.php:56 server_privileges.php:148
-#: server_privileges.php:507
-msgid "Allows shutting down the server."
-msgstr "อนุญาตให้ปิดเซิร์ฟเวอร์ได้"
-
-#: libraries/messages.inc.php:57 server_privileges.php:155
-#: server_privileges.php:504
-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/messages.inc.php:58 server_privileges.php:162
-#: server_privileges.php:496
-#, fuzzy
-msgid "Allows creating and dropping triggers"
-msgstr "อนุญาตให้สร้าง และทิ้ง ดัชนี"
-
-#: libraries/messages.inc.php:59 server_privileges.php:143
-#: server_privileges.php:406 server_privileges.php:466
-msgid "Allows changing data."
-msgstr "อนุญาตให้เปลี่ยนข้อมูลได้."
-
-#: libraries/messages.inc.php:60 server_privileges.php:221
-msgid "No privileges."
-msgstr "ไม่มีสิทธิใดๆ."
-
-#: libraries/messages.inc.php:62
-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/messages.inc.php:63
-msgid "The number of transactions that used the temporary binary log cache."
-msgstr ""
-
-#: libraries/messages.inc.php:64
-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 "
-"to increase the tmp_table_size value to cause temporary tables to be memory-"
-"based instead of disk-based."
-msgstr ""
-
-#: libraries/messages.inc.php:65
-msgid "How many temporary files mysqld has created."
-msgstr ""
-
-#: libraries/messages.inc.php:66
-msgid ""
-"The number of in-memory temporary tables created automatically by the server "
-"while executing statements."
-msgstr ""
-
-#: libraries/messages.inc.php:67
-msgid ""
-"The number of rows written with INSERT DELAYED for which some error occurred "
-"(probably duplicate key)."
-msgstr ""
-
-#: libraries/messages.inc.php:68
-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/messages.inc.php:69
-msgid "The number of INSERT DELAYED rows written."
-msgstr ""
-
-#: libraries/messages.inc.php:70
-msgid "The number of executed FLUSH statements."
-msgstr ""
-
-#: libraries/messages.inc.php:71
-msgid "The number of internal COMMIT statements."
-msgstr ""
-
-#: libraries/messages.inc.php:72
-msgid "The number of times a row was deleted from a table."
-msgstr ""
-
-#: libraries/messages.inc.php:73
-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/messages.inc.php:74
-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/messages.inc.php:75
-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/messages.inc.php:76
-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/messages.inc.php:77
-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/messages.inc.php:78
-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 "
-"probably have a lot of queries that require MySQL to scan whole tables or "
-"you have joins that don't use keys properly."
-msgstr ""
-
-#: libraries/messages.inc.php:79
-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 "
-"tables are not properly indexed or that your queries are not written to take "
-"advantage of the indexes you have."
-msgstr ""
-
-#: libraries/messages.inc.php:80
-msgid "The number of internal ROLLBACK statements."
-msgstr ""
-
-#: libraries/messages.inc.php:81
-msgid "The number of requests to update a row in a table."
-msgstr ""
-
-#: libraries/messages.inc.php:82
-msgid "The number of requests to insert a row in a table."
-msgstr ""
-
-#: libraries/messages.inc.php:83
-msgid "The number of pages containing data (dirty or clean)."
-msgstr ""
-
-#: libraries/messages.inc.php:84
-msgid "The number of pages currently dirty."
-msgstr ""
-
-#: libraries/messages.inc.php:85
-msgid "The number of buffer pool pages that have been requested to be flushed."
-msgstr ""
-
-#: libraries/messages.inc.php:86
-msgid "The number of free pages."
-msgstr ""
-
-#: libraries/messages.inc.php:87
-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/messages.inc.php:88
-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 "
-"be calculated as Innodb_buffer_pool_pages_total - "
-"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data."
-msgstr ""
-
-#: libraries/messages.inc.php:89
-msgid "Total size of buffer pool, in pages."
-msgstr ""
-
-#: libraries/messages.inc.php:90
-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/messages.inc.php:91
-msgid ""
-"The number of sequential read-aheads InnoDB initiated. This happens when "
-"InnoDB does a sequential full table scan."
-msgstr ""
-
-#: libraries/messages.inc.php:92
-msgid "The number of logical read requests InnoDB has done."
-msgstr ""
-
-#: libraries/messages.inc.php:93
-msgid ""
-"The number of logical reads that InnoDB could not satisfy from buffer pool "
-"and had to do a single-page read."
-msgstr ""
-
-#: libraries/messages.inc.php:94
-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 "
-"available, it's necessary to wait for pages to be flushed first. This "
-"counter counts instances of these waits. If the buffer pool size was set "
-"properly, this value should be small."
-msgstr ""
-
-#: libraries/messages.inc.php:95
-msgid "The number writes done to the InnoDB buffer pool."
-msgstr ""
-
-#: libraries/messages.inc.php:96
-msgid "The number of fsync() operations so far."
-msgstr ""
-
-#: libraries/messages.inc.php:97
-msgid "The current number of pending fsync() operations."
-msgstr ""
-
-#: libraries/messages.inc.php:98
-msgid "The current number of pending reads."
-msgstr ""
-
-#: libraries/messages.inc.php:99
-msgid "The current number of pending writes."
-msgstr ""
-
-#: libraries/messages.inc.php:100
-msgid "The amount of data read so far, in bytes."
-msgstr ""
-
-#: libraries/messages.inc.php:101
-msgid "The total number of data reads."
-msgstr ""
-
-#: libraries/messages.inc.php:102
-msgid "The total number of data writes."
-msgstr ""
-
-#: libraries/messages.inc.php:103
-msgid "The amount of data written so far, in bytes."
-msgstr ""
-
-#: libraries/messages.inc.php:104
-msgid "The number of pages that have been written for doublewrite operations."
-msgstr ""
-
-#: libraries/messages.inc.php:105
-msgid "The number of doublewrite operations that have been performed."
-msgstr ""
-
-#: libraries/messages.inc.php:106
-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/messages.inc.php:107
-msgid "The number of log write requests."
-msgstr ""
-
-#: libraries/messages.inc.php:108
-msgid "The number of physical writes to the log file."
-msgstr ""
-
-#: libraries/messages.inc.php:109
-msgid "The number of fsync() writes done to the log file."
-msgstr ""
-
-#: libraries/messages.inc.php:110
-msgid "The number of pending log file fsyncs."
-msgstr ""
-
-#: libraries/messages.inc.php:111
-msgid "Pending log file writes."
-msgstr ""
-
-#: libraries/messages.inc.php:112
-msgid "The number of bytes written to the log file."
-msgstr ""
-
-#: libraries/messages.inc.php:113
-msgid "The number of pages created."
-msgstr ""
-
-#: libraries/messages.inc.php:114
-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/messages.inc.php:115
-msgid "The number of pages read."
-msgstr ""
-
-#: libraries/messages.inc.php:116
-msgid "The number of pages written."
-msgstr ""
-
-#: libraries/messages.inc.php:117
-msgid "The number of row locks currently being waited for."
-msgstr ""
-
-#: libraries/messages.inc.php:118
-msgid "The average time to acquire a row lock, in milliseconds."
-msgstr ""
-
-#: libraries/messages.inc.php:119
-msgid "The total time spent in acquiring row locks, in milliseconds."
-msgstr ""
-
-#: libraries/messages.inc.php:120
-msgid "The maximum time to acquire a row lock, in milliseconds."
-msgstr ""
-
-#: libraries/messages.inc.php:121
-msgid "The number of times a row lock had to be waited for."
-msgstr ""
-
-#: libraries/messages.inc.php:122
-msgid "The number of rows deleted from InnoDB tables."
-msgstr ""
-
-#: libraries/messages.inc.php:123
-msgid "The number of rows inserted in InnoDB tables."
-msgstr ""
-
-#: libraries/messages.inc.php:124
-msgid "The number of rows read from InnoDB tables."
-msgstr ""
-
-#: libraries/messages.inc.php:125
-msgid "The number of rows updated in InnoDB tables."
-msgstr ""
-
-#: libraries/messages.inc.php:126
-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/messages.inc.php:127
-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/messages.inc.php:128
-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/messages.inc.php:129
-msgid "The number of requests to read a key block from the cache."
-msgstr ""
-
-#: libraries/messages.inc.php:130
-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/messages.inc.php:131
-msgid "The number of requests to write a key block to the cache."
-msgstr ""
-
-#: libraries/messages.inc.php:132
-msgid "The number of physical writes of a key block to disk."
-msgstr ""
-
-#: libraries/messages.inc.php:133
-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/messages.inc.php:134
-msgid "The number of rows waiting to be written in INSERT DELAYED queues."
-msgstr ""
-
-#: libraries/messages.inc.php:135
-msgid ""
-"The number of tables that have been opened. If opened tables is big, your "
-"table cache value is probably too small."
-msgstr ""
-
-#: libraries/messages.inc.php:136
-msgid "The number of files that are open."
-msgstr ""
-
-#: libraries/messages.inc.php:137
-msgid "The number of streams that are open (used mainly for logging)."
-msgstr ""
-
-#: libraries/messages.inc.php:138
-msgid "The number of tables that are open."
-msgstr ""
-
-#: libraries/messages.inc.php:139
-msgid "The number of free memory blocks in query cache."
-msgstr ""
-
-#: libraries/messages.inc.php:140
-msgid "The amount of free memory for query cache."
-msgstr ""
-
-#: libraries/messages.inc.php:141
-msgid "The number of cache hits."
-msgstr ""
-
-#: libraries/messages.inc.php:142
-msgid "The number of queries added to the cache."
-msgstr ""
-
-#: libraries/messages.inc.php:143
-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 "
-"cache size. The query cache uses a least recently used (LRU) strategy to "
-"decide which queries to remove from the cache."
-msgstr ""
-
-#: libraries/messages.inc.php:144
-msgid ""
-"The number of non-cached queries (not cachable, or not cached due to the "
-"query_cache_type setting)."
-msgstr ""
-
-#: libraries/messages.inc.php:145
-msgid "The number of queries registered in the cache."
-msgstr ""
-
-#: libraries/messages.inc.php:146
-msgid "The total number of blocks in the query cache."
-msgstr ""
-
-#: libraries/messages.inc.php:147
-#, fuzzy
-msgctxt "$strShowStatusReset"
-msgid "Reset"
-msgstr "เริ่มใหม่"
-
-#: libraries/messages.inc.php:148
-msgid "The status of failsafe replication (not yet implemented)."
-msgstr ""
-
-#: libraries/messages.inc.php:149
-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/messages.inc.php:150
-msgid "The number of joins that used a range search on a reference table."
-msgstr ""
-
-#: libraries/messages.inc.php:151
-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/messages.inc.php:152
-msgid ""
-"The number of joins that used ranges on the first table. (It's normally not "
-"critical even if this is big.)"
-msgstr ""
-
-#: libraries/messages.inc.php:153
-msgid "The number of joins that did a full scan of the first table."
-msgstr ""
-
-#: libraries/messages.inc.php:154
-msgid "The number of temporary tables currently open by the slave SQL thread."
-msgstr ""
-
-#: libraries/messages.inc.php:155
-msgid ""
-"Total (since startup) number of times the replication slave SQL thread has "
-"retried transactions."
-msgstr ""
-
-#: libraries/messages.inc.php:156
-msgid "This is ON if this server is a slave that is connected to a master."
-msgstr ""
-
-#: libraries/messages.inc.php:157
-msgid ""
-"The number of threads that have taken more than slow_launch_time seconds to "
-"create."
-msgstr ""
-
-#: libraries/messages.inc.php:158
-msgid ""
-"The number of queries that have taken more than long_query_time seconds."
-msgstr ""
-
-#: libraries/messages.inc.php:159
-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/messages.inc.php:160
-msgid "The number of sorts that were done with ranges."
-msgstr ""
-
-#: libraries/messages.inc.php:161
-msgid "The number of sorted rows."
-msgstr ""
-
-#: libraries/messages.inc.php:162
-msgid "The number of sorts that were done by scanning the table."
-msgstr ""
-
-#: libraries/messages.inc.php:163
-msgid "The number of times that a table lock was acquired immediately."
-msgstr ""
-
-#: libraries/messages.inc.php:164
-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 "
-"should first optimize your queries, and then either split your table or "
-"tables or use replication."
-msgstr ""
-
-#: libraries/messages.inc.php:165
-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/messages.inc.php:166
-msgid "The number of currently open connections."
-msgstr ""
-
-#: libraries/messages.inc.php:167
-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 "
-"doesn't give a notable performance improvement if you have a good thread "
-"implementation.)"
-msgstr ""
-
-#: libraries/messages.inc.php:168
-msgid "The number of threads that are not sleeping."
-msgstr ""
-
#: libraries/mult_submits.inc.php:76 libraries/tbl_properties.inc.php:513
#: tbl_structure.php:29 tbl_structure.php:153 tbl_structure.php:157
#: tbl_structure.php:473
@@ -4208,8 +3471,8 @@ msgstr ""
#: libraries/replication_gui.lib.php:55 libraries/replication_gui.lib.php:56
#: libraries/replication_gui.lib.php:249 libraries/replication_gui.lib.php:252
-#: libraries/replication_gui.lib.php:259 server_privileges.php:672
-#: server_privileges.php:675 server_privileges.php:682
+#: libraries/replication_gui.lib.php:259 server_privileges.php:711
+#: server_privileges.php:714 server_privileges.php:721
#: server_synchronize.php:1171
msgid "User name"
msgstr "ชื่อผู้ใช้"
@@ -4228,11 +3491,11 @@ msgid "Slave status"
msgstr ""
#: libraries/replication_gui.lib.php:114 libraries/sql_query_form.lib.php:445
-#: server_status.php:626 server_variables.php:52
+#: server_status.php:737 server_variables.php:52
msgid "Variable"
msgstr "ตัวแปร"
-#: libraries/replication_gui.lib.php:115 server_status.php:627
+#: libraries/replication_gui.lib.php:115 server_status.php:738
#: tbl_change.php:324 tbl_printview.php:370 tbl_select.php:139
#: tbl_structure.php:729
msgid "Value"
@@ -4253,41 +3516,58 @@ msgstr ""
msgid "Add slave replication user"
msgstr ""
-#: libraries/replication_gui.lib.php:254 server_privileges.php:677
+#: libraries/replication_gui.lib.php:254 server_privileges.php:716
msgid "Any user"
msgstr "ผู้ใช้ใดๆ"
#: libraries/replication_gui.lib.php:255 libraries/replication_gui.lib.php:323
-#: libraries/replication_gui.lib.php:346 server_privileges.php:678
-#: server_privileges.php:745 server_privileges.php:769
-#: server_privileges.php:1889 server_privileges.php:1919
+#: libraries/replication_gui.lib.php:346 server_privileges.php:717
+#: server_privileges.php:784 server_privileges.php:808
+#: server_privileges.php:1928 server_privileges.php:1958
msgid "Use text field"
msgstr "ใช้ช่องใส่ข้อความ (text field)"
-#: libraries/replication_gui.lib.php:302 server_privileges.php:725
+#: libraries/replication_gui.lib.php:302 server_privileges.php:764
msgid "Any host"
msgstr "โฮสต์ใดๆ"
-#: libraries/replication_gui.lib.php:306 server_privileges.php:729
+#: libraries/replication_gui.lib.php:306 server_privileges.php:768
msgid "Local"
msgstr "โลคอล"
-#: libraries/replication_gui.lib.php:312 server_privileges.php:734
+#: libraries/replication_gui.lib.php:312 server_privileges.php:773
msgid "This Host"
msgstr "โฮสต์นี้"
-#: libraries/replication_gui.lib.php:318 server_privileges.php:740
+#: libraries/replication_gui.lib.php:318 server_privileges.php:779
msgid "Use Host Table"
msgstr ""
-#: libraries/replication_gui.lib.php:331 server_privileges.php:753
+#: libraries/replication_gui.lib.php:331 server_privileges.php:792
msgid ""
"When Host table is used, this field is ignored and values stored in Host "
"table are used instead."
msgstr ""
-#: libraries/select_lang.lib.php:480 libraries/select_lang.lib.php:486
-#: libraries/select_lang.lib.php:492
+#. l10n: Text direction, use either ltr or rtl
+#: libraries/select_lang.lib.php:491
+msgid "ltr"
+msgstr "ltr"
+
+#: libraries/select_lang.lib.php:493
+msgid "Content of table __TABLE__"
+msgstr ""
+
+#: libraries/select_lang.lib.php:494
+msgid "(continued)"
+msgstr "(ต่อ)"
+
+#: libraries/select_lang.lib.php:495
+msgid "Structure of table __TABLE__"
+msgstr ""
+
+#: libraries/select_lang.lib.php:500 libraries/select_lang.lib.php:506
+#: libraries/select_lang.lib.php:512
#, php-format
msgid "Unknown language: %1$s."
msgstr ""
@@ -4299,7 +3579,7 @@ msgid "Servers"
msgstr "เซิร์ฟเวอร์"
#: libraries/server_links.inc.php:53 server_engines.php:112
-#: server_engines.php:116 server_status.php:304 test/theme.php:105
+#: server_engines.php:116 server_status.php:415 test/theme.php:105
msgid "Variables"
msgstr "ตัวแปร"
@@ -4312,7 +3592,7 @@ msgid "Engines"
msgstr ""
#: libraries/server_links.inc.php:76 server_binlog.php:110
-#: server_status.php:253 test/theme.php:121
+#: server_status.php:364 test/theme.php:121
#, fuzzy
msgid "Binary log"
msgstr " ข้อมูลไบนารี "
@@ -4710,8 +3990,8 @@ msgstr "เริ่มใหม่"
msgid "Protocol version"
msgstr ""
-#: main.php:189 server_privileges.php:1350 server_privileges.php:1497
-#: server_privileges.php:1611 server_privileges.php:2029
+#: main.php:189 server_privileges.php:1389 server_privileges.php:1536
+#: server_privileges.php:1650 server_privileges.php:2068
#: server_processlist.php:54
msgid "User"
msgstr "ผู้ใช้"
@@ -5083,7 +4363,7 @@ msgstr "%s ฐานข้อมูลได้ถูกทิ้งไปเร
msgid "Databases statistics"
msgstr "สถิติฐานข้อมูล"
-#: server_databases.php:117 server_status.php:260
+#: server_databases.php:117 server_status.php:371
#: setup/lib/messages.inc.php:117
msgid "Tables"
msgstr "ตาราง"
@@ -5102,6 +4382,15 @@ msgstr ""
msgid "Jump to database"
msgstr "ไม่มีฐานข้อมูล"
+#: server_databases.php:267
+msgid "Not replicated"
+msgstr ""
+
+#: server_databases.php:273
+#, fuzzy
+msgid "Replicated"
+msgstr "รีเลชัน"
+
#: server_databases.php:289
#, php-format
msgid "Check privileges for database "%s"."
@@ -5136,142 +4425,330 @@ msgstr ""
msgid "View dump (schema) of databases"
msgstr "ดูโครงสร้างของฐานข้อมูล"
-#: server_privileges.php:263 server_privileges.php:264
+#: server_privileges.php:24 server_privileges.php:266
+msgid "Includes all privileges except GRANT."
+msgstr "ให้สิทธิทุกอย่าง ยกเว้นการให้สิทธิแก่ผู้อื่น (GRANT)."
+
+#: server_privileges.php:25 server_privileges.php:192
+#: server_privileges.php:515
+msgid "Allows altering the structure of existing tables."
+msgstr "อนุญาตให้เปลี่ยนโครงสร้างของตารางที่มีอยู่เดิม."
+
+#: server_privileges.php:26 server_privileges.php:208
+#: server_privileges.php:521
+#, fuzzy
+msgid "Allows altering and dropping stored routines."
+msgstr "อนุญาตให้สร้าง และทิ้ง ดัชนี"
+
+#: server_privileges.php:27 server_privileges.php:184
+#: server_privileges.php:514
+msgid "Allows creating new databases and tables."
+msgstr "อนุญาตให้สร้างฐานข้อมูล และตารางใหม่."
+
+#: server_privileges.php:28 server_privileges.php:207
+#: server_privileges.php:520
+#, fuzzy
+msgid "Allows creating stored routines."
+msgstr "อนุญาตให้สร้างตารางใหม่."
+
+#: server_privileges.php:29 server_privileges.php:514
+msgid "Allows creating new tables."
+msgstr "อนุญาตให้สร้างตารางใหม่."
+
+#: server_privileges.php:30 server_privileges.php:195
+#: server_privileges.php:518
+msgid "Allows creating temporary tables."
+msgstr "อนุญาตให้สร้างตารางชั่วคราว."
+
+#: server_privileges.php:31 server_privileges.php:209
+#: server_privileges.php:554
+msgid "Allows creating, dropping and renaming user accounts."
+msgstr ""
+
+#: server_privileges.php:32 server_privileges.php:199
+#: server_privileges.php:203 server_privileges.php:526
+#: server_privileges.php:530
+#, fuzzy
+msgid "Allows creating new views."
+msgstr "อนุญาตให้สร้างตารางใหม่."
+
+#: server_privileges.php:33 server_privileges.php:183
+#: server_privileges.php:506
+msgid "Allows deleting data."
+msgstr "อนุญาตให้ลบข้อมูล"
+
+#: server_privileges.php:34 server_privileges.php:185
+#: server_privileges.php:517
+msgid "Allows dropping databases and tables."
+msgstr "อนุญาตให้ทิ้งฐานข้อมูล และตาราง"
+
+#: server_privileges.php:35 server_privileges.php:517
+msgid "Allows dropping tables."
+msgstr "อนุญาตให้ทิ้งตาราง"
+
+#: server_privileges.php:36 server_privileges.php:200
+#: server_privileges.php:534
+msgid "Allows to set up events for the event scheduler"
+msgstr ""
+
+#: server_privileges.php:37 server_privileges.php:210
+#: server_privileges.php:522
+msgid "Allows executing stored routines."
+msgstr ""
+
+#: server_privileges.php:38 server_privileges.php:189
+#: server_privileges.php:509
+msgid "Allows importing data from and exporting data into files."
+msgstr "อนุญาตให้นำเข้าข้อมูล และส่งออกข้อมูล ไปที่ไฟล์"
+
+#: server_privileges.php:39 server_privileges.php:540
+msgid ""
+"Allows adding users and privileges without reloading the privilege tables."
+msgstr "อนุญาตให้เพิ่มผู้ใช้ และสิทธิเข้าถึง โดยไม่ต้องเรียกใช้ตารางสิทธิใหม่"
+
+#: server_privileges.php:40 server_privileges.php:191
+#: server_privileges.php:516
+msgid "Allows creating and dropping indexes."
+msgstr "อนุญาตให้สร้าง และทิ้ง ดัชนี"
+
+#: server_privileges.php:41 server_privileges.php:181
+#: server_privileges.php:442 server_privileges.php:504
+msgid "Allows inserting and replacing data."
+msgstr "อนุญาตให้เพิ่ม และแทนที่ ข้อมูล"
+
+#: server_privileges.php:42 server_privileges.php:196
+#: server_privileges.php:549
+msgid "Allows locking tables for the current thread."
+msgstr "อนุญาตให้ล็อกตารางสำหรับเธรดปัจจุบัน"
+
+#: server_privileges.php:43 server_privileges.php:646
+#: server_privileges.php:648
+msgid "Limits the number of new connections the user may open per hour."
+msgstr "จำกัดจำนวนการเชื่อมต่อใหม่ ที่ผู้ใช้จะสามารถเปิดได้ ต่อชั่วโมง"
+
+#: server_privileges.php:44 server_privileges.php:634
+#: server_privileges.php:636
+msgid "Limits the number of queries the user may send to the server per hour."
+msgstr "จำกัดจำนวนของคำค้น ที่ผู้ใช้จะสามารถส่งมาที่เซิร์ฟเวอร์ได้ ต่อชั่วโมง"
+
+#: server_privileges.php:45 server_privileges.php:640
+#: server_privileges.php:642
+msgid ""
+"Limits the number of commands that change any table or database the user may "
+"execute per hour."
+msgstr ""
+"จำกัดจำนวนของคำสั่ง ที่จะเปลี่ยนแปลงตาราง หรือฐานข้อมูลใดๆ ที่ผู้ใช้จะสามารถสั่งได้ ต่อชั่วโมง"
+
+#: server_privileges.php:46 server_privileges.php:652
+#: server_privileges.php:654
+#, fuzzy
+msgid "Limits the number of simultaneous connections the user may have."
+msgstr "จำกัดจำนวนการเชื่อมต่อใหม่ ที่ผู้ใช้จะสามารถเปิดได้ ต่อชั่วโมง"
+
+#: server_privileges.php:47 server_privileges.php:188
+#: server_privileges.php:544
+msgid "Allows viewing processes of all users"
+msgstr ""
+
+#: server_privileges.php:48 server_privileges.php:190
+#: server_privileges.php:448 server_privileges.php:550
+msgid "Has no effect in this MySQL version."
+msgstr "ไม่มีผลใน MySQL รุ่นนี้"
+
+#: server_privileges.php:49 server_privileges.php:186
+#: server_privileges.php:545
+msgid "Allows reloading server settings and flushing the server's caches."
+msgstr "อนุญาตให้เรียกใช้ค่ากำหนดของเซิร์ฟเวอร์ใหม่ และล้างแคชของเซิร์ฟเวอร์"
+
+#: server_privileges.php:50 server_privileges.php:198
+#: server_privileges.php:552
+msgid "Allows the user to ask where the slaves / masters are."
+msgstr "มอบสิทธิให้ผู้ใช้ ในการถามว่า slaves หรือ masters อยู่ที่ไหน."
+
+#: server_privileges.php:51 server_privileges.php:197
+#: server_privileges.php:553
+msgid "Needed for the replication slaves."
+msgstr ""
+
+#: server_privileges.php:52 server_privileges.php:180
+#: server_privileges.php:439 server_privileges.php:503
+msgid "Allows reading data."
+msgstr "อนุญาตให้อ่านข้อมูลได้."
+
+#: server_privileges.php:53 server_privileges.php:193
+#: server_privileges.php:547
+msgid "Gives access to the complete list of databases."
+msgstr "สามารถเรียกดูรายการฐานข้อมูลทั้งหมดได้"
+
+#: server_privileges.php:54 server_privileges.php:204
+#: server_privileges.php:206 server_privileges.php:519
+msgid "Allows performing SHOW CREATE VIEW queries."
+msgstr ""
+
+#: server_privileges.php:55 server_privileges.php:187
+#: server_privileges.php:546
+msgid "Allows shutting down the server."
+msgstr "อนุญาตให้ปิดเซิร์ฟเวอร์ได้"
+
+#: server_privileges.php:56 server_privileges.php:194
+#: server_privileges.php:543
+msgid ""
+"Allows connecting, even if maximum number of connections is reached; "
+"required for most administrative operations like setting global variables or "
+"killing threads of other users."
+msgstr ""
+
+#: server_privileges.php:57 server_privileges.php:201
+#: server_privileges.php:535
+#, fuzzy
+msgid "Allows creating and dropping triggers"
+msgstr "อนุญาตให้สร้าง และทิ้ง ดัชนี"
+
+#: server_privileges.php:58 server_privileges.php:182
+#: server_privileges.php:445 server_privileges.php:505
+msgid "Allows changing data."
+msgstr "อนุญาตให้เปลี่ยนข้อมูลได้."
+
+#: server_privileges.php:59 server_privileges.php:260
+msgid "No privileges."
+msgstr "ไม่มีสิทธิใดๆ."
+
+#: server_privileges.php:302 server_privileges.php:303
#, fuzzy
#| msgid "None"
msgctxt "None privileges"
msgid "None"
msgstr "ไม่มี"
-#: server_privileges.php:392 server_privileges.php:527
-#: server_privileges.php:1679 server_privileges.php:1685
+#: server_privileges.php:431 server_privileges.php:566
+#: server_privileges.php:1718 server_privileges.php:1724
msgid "Table-specific privileges"
msgstr "สิทธิเจาะจงเฉพาะตาราง"
-#: server_privileges.php:393 server_privileges.php:535
-#: server_privileges.php:1501
+#: server_privileges.php:432 server_privileges.php:574
+#: server_privileges.php:1540
msgid " Note: MySQL privilege names are expressed in English "
msgstr " โปรดทราบ: ชื่อของสิทธิใน MySQL จะแสดงเป็นภาษาอังกฤษ "
-#: server_privileges.php:524 server_privileges.php:1500
+#: server_privileges.php:563 server_privileges.php:1539
msgid "Global privileges"
msgstr "สิทธิแบบโกลบอล"
-#: server_privileges.php:526 server_privileges.php:1679
+#: server_privileges.php:565 server_privileges.php:1718
msgid "Database-specific privileges"
msgstr "สิทธิเจาะจงเฉพาะฐานข้อมูล"
-#: server_privileges.php:571
+#: server_privileges.php:610
msgid "Administration"
msgstr "การดูแลระบบ"
-#: server_privileges.php:591
+#: server_privileges.php:630
msgid "Resource limits"
msgstr "ขีดจำกัดของทรัพยากร"
-#: server_privileges.php:592
+#: server_privileges.php:631
msgid "Note: Setting these options to 0 (zero) removes the limit."
msgstr "โปรดทราบ: ถ้าเปลี่ยนค่าเหล่านี้เป็น 0 (ศูนย์) จะหมายถึง ไม่มีขีดจำกัด."
-#: server_privileges.php:669
+#: server_privileges.php:708
msgid "Login Information"
msgstr "ข้อมูลล็อกอิน"
-#: server_privileges.php:763
+#: server_privileges.php:802
msgid "Do not change the password"
msgstr "กรุณาอย่าเปลี่ยนรหัสผ่าน"
-#: server_privileges.php:804 server_privileges.php:2166
+#: server_privileges.php:843 server_privileges.php:2205
#, fuzzy
#| msgid "No user(s) found."
msgid "No user found."
msgstr "ไม่พบผู้ใช้ใดๆ."
-#: server_privileges.php:848
+#: server_privileges.php:887
#, php-format
msgid "The user %s already exists!"
msgstr "มีผู้ใช้ %s อยู่แล้ว!"
-#: server_privileges.php:931
+#: server_privileges.php:970
msgid "You have added a new user."
msgstr "เพิ่มผู้ใช้ใหม่เรียบร้อยแล้ว"
-#: server_privileges.php:1152
+#: server_privileges.php:1191
#, php-format
msgid "You have updated the privileges for %s."
msgstr "คุณได้ปรับปรุงสิทธิสำหรับ %s แล้ว"
-#: server_privileges.php:1176
+#: server_privileges.php:1215
#, php-format
msgid "You have revoked the privileges for %s"
msgstr "คุณได้เพิกถอนสิทธิของ %s"
-#: server_privileges.php:1212
+#: server_privileges.php:1251
#, php-format
msgid "The password for %s was changed successfully."
msgstr "เปลี่ยนรหัสผ่านของ %s เรียบร้อยแล้ว"
-#: server_privileges.php:1232
+#: server_privileges.php:1271
#, php-format
msgid "Deleting %s"
msgstr "กำลังลบ %s"
-#: server_privileges.php:1243
+#: server_privileges.php:1282
msgid "No users selected for deleting!"
msgstr ""
-#: server_privileges.php:1246
+#: server_privileges.php:1285
msgid "Reloading the privileges"
msgstr "ปรับปรุงสิทธิเข้าถึงใหม่อีกรอบ"
-#: server_privileges.php:1261
+#: server_privileges.php:1300
msgid "The selected users have been deleted successfully."
msgstr "ลบผู้ใช้ที่เลือกไว้เรียบร้อยแล้ว."
-#: server_privileges.php:1296
+#: server_privileges.php:1335
msgid "The privileges were reloaded successfully."
msgstr "สิทธิได้ถูกเรียกใช้ใหม่เรียบร้อยแล้ว"
-#: server_privileges.php:1324 server_privileges.php:1610
+#: server_privileges.php:1363 server_privileges.php:1649
msgid "Edit Privileges"
msgstr "แก้ไขสิทธิ"
-#: server_privileges.php:1333
+#: server_privileges.php:1372
msgid "Revoke"
msgstr "เพิกถอน"
-#: server_privileges.php:1365
+#: server_privileges.php:1404
msgid "User overview"
msgstr "ข้อมูลทั่วไปของผู้ใช้"
-#: server_privileges.php:1502 server_privileges.php:1684
-#: server_privileges.php:2033
+#: server_privileges.php:1541 server_privileges.php:1723
+#: server_privileges.php:2072
msgid "Grant"
msgstr "มอบสิทธิ"
-#: server_privileges.php:1521 server_privileges.php:2123
+#: server_privileges.php:1560 server_privileges.php:2162
msgid "Any"
msgstr "ใดๆ"
-#: server_privileges.php:1570 server_privileges.php:1594
-#: server_privileges.php:1988 server_privileges.php:2177
+#: server_privileges.php:1609 server_privileges.php:1633
+#: server_privileges.php:2027 server_privileges.php:2216
msgid "Add a new User"
msgstr "เพิ่มผู้ใช้ใหม่"
-#: server_privileges.php:1575
+#: server_privileges.php:1614
msgid "Remove selected users"
msgstr "ถอนผู้ใช้ที่เลือก"
-#: server_privileges.php:1578
+#: server_privileges.php:1617
msgid "Revoke all active privileges from the users and delete them afterwards."
msgstr "เพิกถอน active privileges ทั้งหมดจากผู้ใช้ และลบผู้ใช้ทิ้งหลังจากนั้น."
-#: server_privileges.php:1579 server_privileges.php:1580
-#: server_privileges.php:1581
+#: server_privileges.php:1618 server_privileges.php:1619
+#: server_privileges.php:1620
msgid "Drop the databases that have the same names as the users."
msgstr "โยนฐานข้อมูลที่มีชื่อเดียวกับผู้ใช้ทิ้ง."
-#: server_privileges.php:1597
+#: server_privileges.php:1636
#, php-format
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
@@ -5280,91 +4757,91 @@ msgid ""
"sreload the privileges%s before you continue."
msgstr ""
-#: server_privileges.php:1645
+#: server_privileges.php:1684
msgid "The selected user was not found in the privilege table."
msgstr "ไม่พบผู้ใช้ที่เลือกในตารางแสดงสิทธิ"
-#: server_privileges.php:1685
+#: server_privileges.php:1724
msgid "Column-specific privileges"
msgstr "สิทธิเฉพาะคอลัมน์"
-#: server_privileges.php:1886
+#: server_privileges.php:1925
msgid "Add privileges on the following database"
msgstr "เพิ่มสิทธิของฐานข้อมูลต่อไปนี้"
-#: server_privileges.php:1904
+#: server_privileges.php:1943
msgid "Wildcards % and _ should be escaped with a \\ to use them literally"
msgstr ""
-#: server_privileges.php:1907
+#: server_privileges.php:1946
msgid "Add privileges on the following table"
msgstr "เพิ่มสิทธิของตารางต่อไปนี้"
-#: server_privileges.php:1964
+#: server_privileges.php:2003
msgid "Change Login Information / Copy User"
msgstr "เปลี่ยนข้อมูลล็อกอิน / ทำสำเนาผู้ใช้"
-#: server_privileges.php:1967
+#: server_privileges.php:2006
msgid "Create a new user with the same privileges and ..."
msgstr "สร้างผู้ใช้ใหม่ ให้มีสิทธิเหมือนกัน และ ..."
-#: server_privileges.php:1969
+#: server_privileges.php:2008
msgid "... keep the old one."
msgstr "... เก็บของเก่าไว้."
-#: server_privileges.php:1970
+#: server_privileges.php:2009
msgid " ... delete the old one from the user tables."
msgstr " ... ลบของเก่าทิ้งไปจากตารางผู้ใช้."
-#: server_privileges.php:1971
+#: server_privileges.php:2010
msgid ""
" ... revoke all active privileges from the old one and delete it afterwards."
msgstr " ... เรียกคืนสิทธิ์ทั้งหมดจากเดิม แล้วลบมันหลังจากนั้น."
-#: server_privileges.php:1972
+#: server_privileges.php:2011
msgid ""
" ... delete the old one from the user tables and reload the privileges "
"afterwards."
msgstr " ... ลบของเก่าจากตารางผู้ใช้ แล้วเรียกใช้รายการสิทธิ์ใหม่หลังจากนั้น."
-#: server_privileges.php:1994
+#: server_privileges.php:2033
msgid "Database for user"
msgstr ""
-#: server_privileges.php:1998
+#: server_privileges.php:2037
#, fuzzy
#| msgid "None"
msgctxt "Create none database for user"
msgid "None"
msgstr "ไม่มี"
-#: server_privileges.php:1999
+#: server_privileges.php:2038
msgid "Create database with same name and grant all privileges"
msgstr ""
-#: server_privileges.php:2000
+#: server_privileges.php:2039
msgid "Grant all privileges on wildcard name (username\\_%)"
msgstr ""
-#: server_privileges.php:2003
+#: server_privileges.php:2042
#, fuzzy, php-format
msgid "Grant all privileges on database "%s""
msgstr "ตรวจสอบสิทธิสำหรับฐานข้อมูล "%s"."
-#: server_privileges.php:2026
+#: server_privileges.php:2065
#, php-format
msgid "Users having access to "%s""
msgstr "ผู้ใช้มีสิทธิเข้าถึงฐานข้อมูล "%s""
-#: server_privileges.php:2134
+#: server_privileges.php:2173
msgid "global"
msgstr "โกลบอล"
-#: server_privileges.php:2136
+#: server_privileges.php:2175
msgid "database-specific"
msgstr "เฉพาะฐานข้อมูล"
-#: server_privileges.php:2138
+#: server_privileges.php:2177
msgid "wildcard"
msgstr "ไวล์การ์ด"
@@ -5410,7 +4887,7 @@ msgstr ""
msgid "This server is configured as master in a replication process."
msgstr ""
-#: server_replication.php:184 server_status.php:281
+#: server_replication.php:184 server_status.php:392
msgid "Show master status"
msgstr ""
@@ -5548,106 +5025,638 @@ msgid ""
"like to configure it?"
msgstr ""
+#: server_status.php:40
+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 ""
+
+#: server_status.php:41
+msgid "The number of transactions that used the temporary binary log cache."
+msgstr ""
+
+#: server_status.php:42
+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 "
+"to increase the tmp_table_size value to cause temporary tables to be memory-"
+"based instead of disk-based."
+msgstr ""
+
+#: server_status.php:43
+msgid "How many temporary files mysqld has created."
+msgstr ""
+
+#: server_status.php:44
+msgid ""
+"The number of in-memory temporary tables created automatically by the server "
+"while executing statements."
+msgstr ""
+
+#: server_status.php:45
+msgid ""
+"The number of rows written with INSERT DELAYED for which some error occurred "
+"(probably duplicate key)."
+msgstr ""
+
#: server_status.php:46
+msgid ""
+"The number of INSERT DELAYED handler threads in use. Every different table "
+"on which one uses INSERT DELAYED gets its own thread."
+msgstr ""
+
+#: server_status.php:47
+msgid "The number of INSERT DELAYED rows written."
+msgstr ""
+
+#: server_status.php:48
+msgid "The number of executed FLUSH statements."
+msgstr ""
+
+#: server_status.php:49
+msgid "The number of internal COMMIT statements."
+msgstr ""
+
+#: server_status.php:50
+msgid "The number of times a row was deleted from a table."
+msgstr ""
+
+#: server_status.php:51
+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 ""
+
+#: server_status.php:52
+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 ""
+
+#: server_status.php:53
+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 ""
+
+#: server_status.php:54
+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 ""
+
+#: server_status.php:55
+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 ""
+
+#: server_status.php:56
+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 "
+"probably have a lot of queries that require MySQL to scan whole tables or "
+"you have joins that don't use keys properly."
+msgstr ""
+
+#: server_status.php:57
+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 "
+"tables are not properly indexed or that your queries are not written to take "
+"advantage of the indexes you have."
+msgstr ""
+
+#: server_status.php:58
+msgid "The number of internal ROLLBACK statements."
+msgstr ""
+
+#: server_status.php:59
+msgid "The number of requests to update a row in a table."
+msgstr ""
+
+#: server_status.php:60
+msgid "The number of requests to insert a row in a table."
+msgstr ""
+
+#: server_status.php:61
+msgid "The number of pages containing data (dirty or clean)."
+msgstr ""
+
+#: server_status.php:62
+msgid "The number of pages currently dirty."
+msgstr ""
+
+#: server_status.php:63
+msgid "The number of buffer pool pages that have been requested to be flushed."
+msgstr ""
+
+#: server_status.php:64
+msgid "The number of free pages."
+msgstr ""
+
+#: server_status.php:65
+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 ""
+
+#: server_status.php:66
+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 "
+"be calculated as Innodb_buffer_pool_pages_total - "
+"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data."
+msgstr ""
+
+#: server_status.php:67
+msgid "Total size of buffer pool, in pages."
+msgstr ""
+
+#: server_status.php:68
+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 ""
+
+#: server_status.php:69
+msgid ""
+"The number of sequential read-aheads InnoDB initiated. This happens when "
+"InnoDB does a sequential full table scan."
+msgstr ""
+
+#: server_status.php:70
+msgid "The number of logical read requests InnoDB has done."
+msgstr ""
+
+#: server_status.php:71
+msgid ""
+"The number of logical reads that InnoDB could not satisfy from buffer pool "
+"and had to do a single-page read."
+msgstr ""
+
+#: server_status.php:72
+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 "
+"available, it's necessary to wait for pages to be flushed first. This "
+"counter counts instances of these waits. If the buffer pool size was set "
+"properly, this value should be small."
+msgstr ""
+
+#: server_status.php:73
+msgid "The number writes done to the InnoDB buffer pool."
+msgstr ""
+
+#: server_status.php:74
+msgid "The number of fsync() operations so far."
+msgstr ""
+
+#: server_status.php:75
+msgid "The current number of pending fsync() operations."
+msgstr ""
+
+#: server_status.php:76
+msgid "The current number of pending reads."
+msgstr ""
+
+#: server_status.php:77
+msgid "The current number of pending writes."
+msgstr ""
+
+#: server_status.php:78
+msgid "The amount of data read so far, in bytes."
+msgstr ""
+
+#: server_status.php:79
+msgid "The total number of data reads."
+msgstr ""
+
+#: server_status.php:80
+msgid "The total number of data writes."
+msgstr ""
+
+#: server_status.php:81
+msgid "The amount of data written so far, in bytes."
+msgstr ""
+
+#: server_status.php:82
+msgid "The number of pages that have been written for doublewrite operations."
+msgstr ""
+
+#: server_status.php:83
+msgid "The number of doublewrite operations that have been performed."
+msgstr ""
+
+#: server_status.php:84
+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 ""
+
+#: server_status.php:85
+msgid "The number of log write requests."
+msgstr ""
+
+#: server_status.php:86
+msgid "The number of physical writes to the log file."
+msgstr ""
+
+#: server_status.php:87
+msgid "The number of fsync() writes done to the log file."
+msgstr ""
+
+#: server_status.php:88
+msgid "The number of pending log file fsyncs."
+msgstr ""
+
+#: server_status.php:89
+msgid "Pending log file writes."
+msgstr ""
+
+#: server_status.php:90
+msgid "The number of bytes written to the log file."
+msgstr ""
+
+#: server_status.php:91
+msgid "The number of pages created."
+msgstr ""
+
+#: server_status.php:92
+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 ""
+
+#: server_status.php:93
+msgid "The number of pages read."
+msgstr ""
+
+#: server_status.php:94
+msgid "The number of pages written."
+msgstr ""
+
+#: server_status.php:95
+msgid "The number of row locks currently being waited for."
+msgstr ""
+
+#: server_status.php:96
+msgid "The average time to acquire a row lock, in milliseconds."
+msgstr ""
+
+#: server_status.php:97
+msgid "The total time spent in acquiring row locks, in milliseconds."
+msgstr ""
+
+#: server_status.php:98
+msgid "The maximum time to acquire a row lock, in milliseconds."
+msgstr ""
+
+#: server_status.php:99
+msgid "The number of times a row lock had to be waited for."
+msgstr ""
+
+#: server_status.php:100
+msgid "The number of rows deleted from InnoDB tables."
+msgstr ""
+
+#: server_status.php:101
+msgid "The number of rows inserted in InnoDB tables."
+msgstr ""
+
+#: server_status.php:102
+msgid "The number of rows read from InnoDB tables."
+msgstr ""
+
+#: server_status.php:103
+msgid "The number of rows updated in InnoDB tables."
+msgstr ""
+
+#: server_status.php:104
+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 ""
+
+#: server_status.php:105
+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 ""
+
+#: server_status.php:106
+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 ""
+
+#: server_status.php:107
+msgid "The number of requests to read a key block from the cache."
+msgstr ""
+
+#: server_status.php:108
+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 ""
+
+#: server_status.php:109
+msgid "The number of requests to write a key block to the cache."
+msgstr ""
+
+#: server_status.php:110
+msgid "The number of physical writes of a key block to disk."
+msgstr ""
+
+#: server_status.php:111
+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 ""
+
+#: server_status.php:112
+msgid "The number of rows waiting to be written in INSERT DELAYED queues."
+msgstr ""
+
+#: server_status.php:113
+msgid ""
+"The number of tables that have been opened. If opened tables is big, your "
+"table cache value is probably too small."
+msgstr ""
+
+#: server_status.php:114
+msgid "The number of files that are open."
+msgstr ""
+
+#: server_status.php:115
+msgid "The number of streams that are open (used mainly for logging)."
+msgstr ""
+
+#: server_status.php:116
+msgid "The number of tables that are open."
+msgstr ""
+
+#: server_status.php:117
+msgid "The number of free memory blocks in query cache."
+msgstr ""
+
+#: server_status.php:118
+msgid "The amount of free memory for query cache."
+msgstr ""
+
+#: server_status.php:119
+msgid "The number of cache hits."
+msgstr ""
+
+#: server_status.php:120
+msgid "The number of queries added to the cache."
+msgstr ""
+
+#: server_status.php:121
+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 "
+"cache size. The query cache uses a least recently used (LRU) strategy to "
+"decide which queries to remove from the cache."
+msgstr ""
+
+#: server_status.php:122
+msgid ""
+"The number of non-cached queries (not cachable, or not cached due to the "
+"query_cache_type setting)."
+msgstr ""
+
+#: server_status.php:123
+msgid "The number of queries registered in the cache."
+msgstr ""
+
+#: server_status.php:124
+msgid "The total number of blocks in the query cache."
+msgstr ""
+
+#: server_status.php:125
+#, fuzzy
+msgctxt "$strShowStatusReset"
+msgid "Reset"
+msgstr "เริ่มใหม่"
+
+#: server_status.php:126
+msgid "The status of failsafe replication (not yet implemented)."
+msgstr ""
+
+#: server_status.php:127
+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 ""
+
+#: server_status.php:128
+msgid "The number of joins that used a range search on a reference table."
+msgstr ""
+
+#: server_status.php:129
+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 ""
+
+#: server_status.php:130
+msgid ""
+"The number of joins that used ranges on the first table. (It's normally not "
+"critical even if this is big.)"
+msgstr ""
+
+#: server_status.php:131
+msgid "The number of joins that did a full scan of the first table."
+msgstr ""
+
+#: server_status.php:132
+msgid "The number of temporary tables currently open by the slave SQL thread."
+msgstr ""
+
+#: server_status.php:133
+msgid ""
+"Total (since startup) number of times the replication slave SQL thread has "
+"retried transactions."
+msgstr ""
+
+#: server_status.php:134
+msgid "This is ON if this server is a slave that is connected to a master."
+msgstr ""
+
+#: server_status.php:135
+msgid ""
+"The number of threads that have taken more than slow_launch_time seconds to "
+"create."
+msgstr ""
+
+#: server_status.php:136
+msgid ""
+"The number of queries that have taken more than long_query_time seconds."
+msgstr ""
+
+#: server_status.php:137
+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 ""
+
+#: server_status.php:138
+msgid "The number of sorts that were done with ranges."
+msgstr ""
+
+#: server_status.php:139
+msgid "The number of sorted rows."
+msgstr ""
+
+#: server_status.php:140
+msgid "The number of sorts that were done by scanning the table."
+msgstr ""
+
+#: server_status.php:141
+msgid "The number of times that a table lock was acquired immediately."
+msgstr ""
+
+#: server_status.php:142
+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 "
+"should first optimize your queries, and then either split your table or "
+"tables or use replication."
+msgstr ""
+
+#: server_status.php:143
+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 ""
+
+#: server_status.php:144
+msgid "The number of currently open connections."
+msgstr ""
+
+#: server_status.php:145
+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 "
+"doesn't give a notable performance improvement if you have a good thread "
+"implementation.)"
+msgstr ""
+
+#: server_status.php:146
+msgid "The number of threads that are not sleeping."
+msgstr ""
+
+#: server_status.php:157
msgid "Runtime Information"
msgstr "ข้อมูลรันไทม์"
-#: server_status.php:250
+#: server_status.php:361
msgid "Handler"
msgstr ""
-#: server_status.php:251
+#: server_status.php:362
#, fuzzy
msgid "Query cache"
msgstr "ชนิดคำค้น"
-#: server_status.php:252
+#: server_status.php:363
msgid "Threads"
msgstr ""
-#: server_status.php:254
+#: server_status.php:365
msgid "Temporary data"
msgstr ""
-#: server_status.php:255
+#: server_status.php:366
#, fuzzy
msgid "Delayed inserts"
msgstr "แทรกหลายระเบียนในคราวเดียว"
-#: server_status.php:256
+#: server_status.php:367
msgid "Key cache"
msgstr ""
-#: server_status.php:257
+#: server_status.php:368
msgid "Joins"
msgstr ""
-#: server_status.php:259
+#: server_status.php:370
msgid "Sorting"
msgstr ""
-#: server_status.php:261
+#: server_status.php:372
msgid "Transaction coordinator"
msgstr ""
-#: server_status.php:271
+#: server_status.php:382
msgid "Flush (close) all tables"
msgstr ""
-#: server_status.php:273
+#: server_status.php:384
#, fuzzy
msgid "Show open tables"
msgstr "แสดงตาราง"
-#: server_status.php:278
+#: server_status.php:389
msgid "Show slave hosts"
msgstr ""
-#: server_status.php:284
+#: server_status.php:395
msgid "Show slave status"
msgstr ""
-#: server_status.php:289
+#: server_status.php:400
msgid "Flush query cache"
msgstr ""
-#: server_status.php:294
+#: server_status.php:405
msgid "Show processes"
msgstr "แสดงงานที่ทำอยู่ของ MySQL"
-#: server_status.php:344
+#: server_status.php:455
#, fuzzy
#| msgid "Reset"
msgctxt "for Show status"
msgid "Reset"
msgstr "เริ่มใหม่"
-#: server_status.php:350
+#: server_status.php:461
#, php-format
msgid "This MySQL server has been running for %s. It started up on %s."
msgstr "เซิร์ฟเวอร์ MySQL นี้รันมาเป็นเวลา %s. เริ่มตอน %s."
-#: server_status.php:360
+#: server_status.php:471
msgid ""
"This MySQL server works as master and slave in replication"
"b> process."
msgstr ""
-#: server_status.php:362
+#: server_status.php:473
msgid "This MySQL server works as master in replication process."
msgstr ""
-#: server_status.php:364
+#: server_status.php:475
msgid "This MySQL server works as slave in replication process."
msgstr ""
-#: server_status.php:366
+#: server_status.php:477
msgid ""
"For further information about replication status on the server, please visit "
"the replication section."
msgstr ""
-#: server_status.php:383
+#: server_status.php:494
msgid ""
"Server traffic: These tables show the network traffic statistics of "
"this MySQL server since its startup."
@@ -5655,65 +5664,65 @@ msgstr ""
"การจราจรของเซิร์ฟเวอร์: ตารางนี้แสดงสถิติของการจราจรบนเครือข่าย สำหรับเซิร์ฟเวอร์ "
"MySQL นี้ ตั้งแต่มันเริ่มทำงาน."
-#: server_status.php:388
+#: server_status.php:499
msgid "Traffic"
msgstr "การจราจร"
-#: server_status.php:388
+#: server_status.php:499
msgid ""
"On a busy server, the byte counters may overrun, so those statistics as "
"reported by the MySQL server may be incorrect."
msgstr ""
-#: server_status.php:389 server_status.php:434 server_status.php:497
-#: server_status.php:555
+#: server_status.php:500 server_status.php:545 server_status.php:608
+#: server_status.php:666
msgid "per hour"
msgstr "ต่อชั่วโมง"
-#: server_status.php:394
+#: server_status.php:505
msgid "Received"
msgstr "ได้รับ"
-#: server_status.php:404
+#: server_status.php:515
msgid "Sent"
msgstr "ถูกส่ง"
-#: server_status.php:433
+#: server_status.php:544
msgid "Connections"
msgstr "การเชื่อมต่อ"
-#: server_status.php:440
+#: server_status.php:551
msgid "max. concurrent connections"
msgstr ""
-#: server_status.php:447
+#: server_status.php:558
msgid "Failed attempts"
msgstr "ความพยายามล้มเหลว"
-#: server_status.php:461
+#: server_status.php:572
msgid "Aborted"
msgstr "ยกเลิก"
-#: server_status.php:490
+#: server_status.php:601
#, php-format
msgid ""
"Query statistics: Since its startup, %s queries have been sent to the "
"server."
msgstr "สถิติคำค้น: มี %s คำค้น ถูกส่งไปที่เซิร์ฟเวอร์ นับตั้งแต่เริ่มระบบ."
-#: server_status.php:498
+#: server_status.php:609
msgid "per minute"
msgstr "ต่อนาที"
-#: server_status.php:499
+#: server_status.php:610
msgid "per second"
msgstr "ต่อวินาที"
-#: server_status.php:554
+#: server_status.php:665
msgid "Query type"
msgstr "ชนิดคำค้น"
-#: server_status.php:721
+#: server_status.php:832
msgid "Replication status"
msgstr ""
diff --git a/po/tr.po b/po/tr.po
index bd1ea9767..4a1f2c3ed 100755
--- a/po/tr.po
+++ b/po/tr.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-06-04 16:07-0400\n"
+"POT-Creation-Date: 2010-06-08 12:32-0400\n"
"PO-Revision-Date: 2010-04-03 11:44+0200\n"
"Last-Translator: \n"
"Language-Team: turkish \n"
@@ -15,11 +15,11 @@ msgstr ""
"X-Generator: Pootle 2.0.1\n"
#: browse_foreigners.php:38 browse_foreigners.php:59
-#: libraries/display_tbl.lib.php:417 server_privileges.php:1475
+#: libraries/display_tbl.lib.php:417 server_privileges.php:1514
msgid "Show all"
msgstr "Tümünü göster"
-#: browse_foreigners.php:82 libraries/common.lib.php:2304
+#: browse_foreigners.php:82 libraries/common.lib.php:2313
#: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:394
#: libraries/export/pdf.php:147 pdf_schema.php:283 pdf_schema.php:1123
#: pdf_schema.php:1139
@@ -38,8 +38,8 @@ msgstr ""
#: browse_foreigners.php:150 db_structure.php:79 db_structure.php:80
#: db_structure.php:91 db_structure.php:93 db_structure.php:104
-#: db_structure.php:106 libraries/common.lib.php:2822
-#: libraries/common.lib.php:2829 libraries/db_links.inc.php:75
+#: db_structure.php:106 libraries/common.lib.php:2831
+#: libraries/common.lib.php:2838 libraries/db_links.inc.php:75
#: libraries/tbl_links.inc.php:63
msgid "Search"
msgstr "Ara"
@@ -49,7 +49,7 @@ msgstr "Ara"
#: db_structure.php:567 js/messages.php:48 libraries/Config.class.php:1046
#: libraries/Theme_Manager.class.php:311
#: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719
-#: libraries/common.lib.php:1333 libraries/common.lib.php:2279
+#: libraries/common.lib.php:1335 libraries/common.lib.php:2288
#: libraries/display_change_password.lib.php:82
#: libraries/display_create_table.lib.php:63
#: libraries/display_export.lib.php:275 libraries/display_import.lib.php:276
@@ -60,9 +60,9 @@ msgstr "Ara"
#: libraries/sql_query_form.lib.php:552 libraries/tbl_properties.inc.php:782
#: main.php:128 navigation.php:237 pdf_pages.php:292 pdf_pages.php:328
#: pdf_pages.php:530 pmd_pdf.php:116 server_binlog.php:142
-#: server_privileges.php:625 server_privileges.php:1585
-#: server_privileges.php:1932 server_privileges.php:1979
-#: server_privileges.php:2018 server_replication.php:235
+#: server_privileges.php:664 server_privileges.php:1624
+#: server_privileges.php:1971 server_privileges.php:2018
+#: server_privileges.php:2057 server_replication.php:235
#: server_replication.php:318 server_replication.php:341
#: server_synchronize.php:1209 tbl_change.php:330 tbl_change.php:1174
#: tbl_change.php:1211 tbl_indexes.php:254 tbl_operations.php:265
@@ -80,7 +80,7 @@ msgstr "Anahtar ismi"
#: browse_foreigners.php:169 browse_foreigners.php:171
#: server_collations.php:55 server_collations.php:67 server_engines.php:59
-#: server_status.php:628
+#: server_status.php:739
msgid "Description"
msgstr "Açıklama"
@@ -121,7 +121,7 @@ msgstr "Sütun adları"
#: libraries/db_structure.lib.php:60 libraries/export/htmlword.php:245
#: libraries/export/latex.php:360 libraries/export/odt.php:297
#: libraries/export/texytext.php:234 libraries/tbl_properties.inc.php:100
-#: pdf_schema.php:1263 pdf_schema.php:1284 server_privileges.php:2031
+#: pdf_schema.php:1263 pdf_schema.php:1284 server_privileges.php:2070
#: tbl_change.php:287 tbl_change.php:314 tbl_printview.php:143
#: tbl_printview.php:313 tbl_select.php:136 tbl_structure.php:178
#: tbl_structure.php:659 tbl_tracking.php:274 tbl_tracking.php:321
@@ -165,9 +165,9 @@ msgstr "Yorumlar"
#: libraries/Index.class.php:386 libraries/export/htmlword.php:322
#: libraries/export/latex.php:430 libraries/export/odt.php:368
#: libraries/export/texytext.php:311 libraries/mult_submits.inc.php:263
-#: pdf_schema.php:1344 server_privileges.php:1529 server_privileges.php:1540
-#: server_privileges.php:1850 server_privileges.php:1855
-#: server_privileges.php:2148 sql.php:132 sql.php:194 tbl_printview.php:229
+#: pdf_schema.php:1344 server_privileges.php:1568 server_privileges.php:1579
+#: server_privileges.php:1889 server_privileges.php:1894
+#: server_privileges.php:2187 sql.php:132 sql.php:194 tbl_printview.php:229
#: tbl_structure.php:350 tbl_tracking.php:337 tbl_tracking.php:342
msgid "No"
msgstr "Hayır"
@@ -181,9 +181,9 @@ msgstr "Hayır"
#: libraries/mult_submits.inc.php:101 libraries/mult_submits.inc.php:106
#: libraries/mult_submits.inc.php:111 libraries/mult_submits.inc.php:262
#: libraries/mult_submits.inc.php:273 pdf_schema.php:1344
-#: server_databases.php:64 server_privileges.php:1526
-#: server_privileges.php:1540 server_privileges.php:1850
-#: server_privileges.php:1853 server_privileges.php:2148 sql.php:193
+#: server_databases.php:64 server_privileges.php:1565
+#: server_privileges.php:1579 server_privileges.php:1889
+#: server_privileges.php:1892 server_privileges.php:2187 sql.php:193
#: tbl_printview.php:229 tbl_structure.php:40 tbl_structure.php:350
#: tbl_tracking.php:335 tbl_tracking.php:340
msgid "Yes"
@@ -280,7 +280,7 @@ msgstr "Kopyalanmış veritabanına geç."
msgid "BLOB Repository"
msgstr "BLOB Havuzu"
-#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1350
+#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1352
#: libraries/server_links.inc.php:49 server_processlist.php:59
#: tbl_tracking.php:596 test/theme.php:101
msgid "Status"
@@ -343,8 +343,8 @@ msgstr " PDF Sayfalarını düzenle"
#: db_printview.php:104 db_tracking.php:72 db_tracking.php:157
#: libraries/db_structure.lib.php:46 libraries/export/xml.php:328
-#: libraries/header.inc.php:126 pdf_pages.php:424 server_privileges.php:1626
-#: server_privileges.php:1682 server_privileges.php:1946
+#: libraries/header.inc.php:126 pdf_pages.php:424 server_privileges.php:1665
+#: server_privileges.php:1721 server_privileges.php:1985
#: server_synchronize.php:423 server_synchronize.php:866 tbl_tracking.php:592
#: test/theme.php:75
msgid "Table"
@@ -444,7 +444,7 @@ msgstr "Del"
#: db_qbe.php:370 db_qbe.php:451 db_qbe.php:522 db_qbe.php:553
#: libraries/display_import.lib.php:166 libraries/tbl_properties.inc.php:779
-#: server_privileges.php:258 tbl_change.php:1031 tbl_indexes.php:250
+#: server_privileges.php:297 tbl_change.php:1031 tbl_indexes.php:250
#: tbl_select.php:288
msgid "Or"
msgstr "Veya"
@@ -478,7 +478,7 @@ msgstr "Tabloları kullan"
msgid "SQL query on database %s:"
msgstr "%s veritabanındaki SQL sorgusu:"
-#: db_qbe.php:934 libraries/common.lib.php:1223
+#: db_qbe.php:934 libraries/common.lib.php:1225
msgid "Submit Query"
msgstr "Sorguyu Gönder"
@@ -517,7 +517,7 @@ msgstr "%s eşleşme, %s tablosu içinde"
#: db_search.php:267 db_structure.php:77 db_structure.php:78
#: db_structure.php:90 db_structure.php:92 db_structure.php:103
-#: db_structure.php:105 libraries/common.lib.php:2824
+#: db_structure.php:105 libraries/common.lib.php:2833
#: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50
#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:467
msgid "Browse"
@@ -564,26 +564,26 @@ msgstr "İç alan:"
#: db_structure.php:81 db_structure.php:82 db_structure.php:94
#: db_structure.php:95 db_structure.php:107 db_structure.php:108
-#: libraries/common.lib.php:2823 libraries/sql_query_form.lib.php:334
+#: libraries/common.lib.php:2832 libraries/sql_query_form.lib.php:334
#: libraries/sql_query_form.lib.php:337 libraries/tbl_links.inc.php:76
msgid "Insert"
msgstr "Ekle"
#: db_structure.php:83 db_structure.php:96 db_structure.php:109
-#: libraries/common.lib.php:2820 libraries/common.lib.php:2827
+#: libraries/common.lib.php:2829 libraries/common.lib.php:2836
#: libraries/db_links.inc.php:63 libraries/export/htmlword.php:23
#: libraries/export/latex.php:33 libraries/export/latex.php:337
#: libraries/export/odt.php:32 libraries/export/sql.php:60
#: libraries/export/texytext.php:23 libraries/import.lib.php:1104
#: libraries/tbl_links.inc.php:56 pmd_general.php:134
-#: server_privileges.php:554 server_replication.php:315 tbl_tracking.php:269
+#: server_privileges.php:593 server_replication.php:315 tbl_tracking.php:269
msgid "Structure"
msgstr "Yapı"
#: db_structure.php:84 db_structure.php:85 db_structure.php:97
#: db_structure.php:98 db_structure.php:110 db_structure.php:111
#: db_structure.php:545 db_structure.php:546 db_tracking.php:91
-#: libraries/Index.class.php:483 libraries/common.lib.php:1654
+#: libraries/Index.class.php:483 libraries/common.lib.php:1656
#: libraries/db_links.inc.php:100 libraries/mult_submits.inc.php:36
#: libraries/mult_submits.inc.php:73 libraries/tbl_links.inc.php:127
#: server_databases.php:352 tbl_structure.php:27 tbl_structure.php:151
@@ -593,7 +593,7 @@ msgstr "Kaldır"
#: db_structure.php:86 db_structure.php:87 db_structure.php:99
#: db_structure.php:100 db_structure.php:112 db_structure.php:113
-#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1653
+#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1655
#: libraries/mult_submits.inc.php:39 libraries/tbl_links.inc.php:105
msgid "Empty"
msgstr "Boşalt"
@@ -637,7 +637,7 @@ msgstr "Görünüm"
#: db_structure.php:485 libraries/db_structure.lib.php:49
#: libraries/server_links.inc.php:70 server_replication.php:33
-#: server_replication.php:164 server_status.php:258
+#: server_replication.php:164 server_status.php:369
msgid "Replication"
msgstr "Kopya etme"
@@ -653,20 +653,20 @@ msgstr "%s bu MySQL sunucusundaki varsayılan depolama motorudur."
#: db_structure.php:524 db_structure.php:541 db_structure.php:542
#: libraries/display_tbl.lib.php:2081 libraries/display_tbl.lib.php:2086
#: libraries/mult_submits.inc.php:16 server_databases.php:346
-#: server_databases.php:351 server_privileges.php:1557 tbl_structure.php:455
+#: server_databases.php:351 server_privileges.php:1596 tbl_structure.php:455
#: tbl_structure.php:464
msgid "With selected:"
msgstr "Seçilileri:"
#: db_structure.php:527 libraries/display_tbl.lib.php:2076
-#: server_databases.php:348 server_privileges.php:530
-#: server_privileges.php:1560 tbl_structure.php:458
+#: server_databases.php:348 server_privileges.php:569
+#: server_privileges.php:1599 tbl_structure.php:458
msgid "Check All"
msgstr "Tümünü Seç"
#: db_structure.php:531 libraries/display_tbl.lib.php:2077
#: libraries/replication_gui.lib.php:33 server_databases.php:350
-#: server_privileges.php:533 server_privileges.php:1564 tbl_structure.php:462
+#: server_privileges.php:572 server_privileges.php:1603 tbl_structure.php:462
msgid "Uncheck All"
msgstr "Hiçbirini Seçme"
@@ -704,7 +704,7 @@ msgstr "Tabloyu incele"
#: libraries/display_export.lib.php:83 libraries/display_tbl.lib.php:2094
#: libraries/display_tbl.lib.php:2225 libraries/mult_submits.inc.php:62
#: libraries/server_links.inc.php:84 libraries/tbl_links.inc.php:82
-#: pmd_pdf.php:84 pmd_pdf.php:109 server_privileges.php:1341
+#: pmd_pdf.php:84 pmd_pdf.php:109 server_privileges.php:1380
#: setup/frames/menu.inc.php:22 tbl_row_action.php:59
msgid "Export"
msgstr "Dışarı Aktar"
@@ -722,8 +722,8 @@ msgstr "İzlenen tablolar"
#: libraries/export/sql.php:342 libraries/export/texytext.php:84
#: libraries/export/xml.php:255 libraries/header.inc.php:106
#: libraries/header_printview.inc.php:58 server_databases.php:169
-#: server_privileges.php:1621 server_privileges.php:1682
-#: server_privileges.php:1940 server_processlist.php:56
+#: server_privileges.php:1660 server_privileges.php:1721
+#: server_privileges.php:1979 server_processlist.php:56
#: server_synchronize.php:1179 server_synchronize.php:1183
#: tbl_tracking.php:591 test/theme.php:65
msgid "Database"
@@ -743,8 +743,8 @@ msgstr "Güncellendi"
#: db_tracking.php:77 libraries/Index.class.php:440
#: libraries/db_structure.lib.php:53 server_databases.php:203
-#: server_privileges.php:1503 server_privileges.php:1686
-#: server_privileges.php:2034 tbl_structure.php:187
+#: server_privileges.php:1542 server_privileges.php:1725
+#: server_privileges.php:2073 tbl_structure.php:187
msgid "Action"
msgstr "Eylem"
@@ -949,11 +949,11 @@ msgstr "Anamakine adı boş!"
msgid "The user name is empty!"
msgstr "Kullanıcı adı boş!"
-#: js/messages.php:44 server_privileges.php:1197 user_password.php:70
+#: js/messages.php:44 server_privileges.php:1236 user_password.php:70
msgid "The password is empty!"
msgstr "Parola boş!"
-#: js/messages.php:45 server_privileges.php:1195 user_password.php:73
+#: js/messages.php:45 server_privileges.php:1234 user_password.php:73
msgid "The passwords aren't the same!"
msgstr "Parolalar birbiriyle aynı değil!"
@@ -1032,8 +1032,8 @@ msgid "Prev"
msgstr "Önceki"
#. l10n: Display text for next month link in calendar
-#: js/messages.php:77 libraries/common.lib.php:2344
-#: libraries/common.lib.php:2347 libraries/display_tbl.lib.php:338
+#: js/messages.php:77 libraries/common.lib.php:2353
+#: libraries/common.lib.php:2356 libraries/display_tbl.lib.php:338
#: server_binlog.php:205 server_binlog.php:207 tbl_printview.php:424
#: tbl_structure.php:801
msgid "Next"
@@ -1109,27 +1109,27 @@ msgid "December"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:97 libraries/common.lib.php:1555
+#: js/messages.php:97 libraries/common.lib.php:1557
msgid "Jan"
msgstr "Ocak"
#. l10n: Short month name
-#: js/messages.php:99 libraries/common.lib.php:1557
+#: js/messages.php:99 libraries/common.lib.php:1559
msgid "Feb"
msgstr "Şubat"
#. l10n: Short month name
-#: js/messages.php:101 libraries/common.lib.php:1559
+#: js/messages.php:101 libraries/common.lib.php:1561
msgid "Mar"
msgstr "Mart"
#. l10n: Short month name
-#: js/messages.php:103 libraries/common.lib.php:1561
+#: js/messages.php:103 libraries/common.lib.php:1563
msgid "Apr"
msgstr "Nis"
#. l10n: Short month name
-#: js/messages.php:105 libraries/common.lib.php:1563
+#: js/messages.php:105 libraries/common.lib.php:1565
#, fuzzy
#| msgid "May"
msgctxt "Short month name"
@@ -1137,37 +1137,37 @@ msgid "May"
msgstr "May"
#. l10n: Short month name
-#: js/messages.php:107 libraries/common.lib.php:1565
+#: js/messages.php:107 libraries/common.lib.php:1567
msgid "Jun"
msgstr "Haz"
#. l10n: Short month name
-#: js/messages.php:109 libraries/common.lib.php:1567
+#: js/messages.php:109 libraries/common.lib.php:1569
msgid "Jul"
msgstr "Tem"
#. l10n: Short month name
-#: js/messages.php:111 libraries/common.lib.php:1569
+#: js/messages.php:111 libraries/common.lib.php:1571
msgid "Aug"
msgstr "Ağu"
#. l10n: Short month name
-#: js/messages.php:113 libraries/common.lib.php:1571
+#: js/messages.php:113 libraries/common.lib.php:1573
msgid "Sep"
msgstr "Eylül"
#. l10n: Short month name
-#: js/messages.php:115 libraries/common.lib.php:1573
+#: js/messages.php:115 libraries/common.lib.php:1575
msgid "Oct"
msgstr "Ekim"
#. l10n: Short month name
-#: js/messages.php:117 libraries/common.lib.php:1575
+#: js/messages.php:117 libraries/common.lib.php:1577
msgid "Nov"
msgstr "Kas"
#. l10n: Short month name
-#: js/messages.php:119 libraries/common.lib.php:1577
+#: js/messages.php:119 libraries/common.lib.php:1579
msgid "Dec"
msgstr "Ara"
@@ -1208,37 +1208,37 @@ msgid "Saturday"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:132 libraries/common.lib.php:1580
+#: js/messages.php:132 libraries/common.lib.php:1582
msgid "Sun"
msgstr "Paz"
#. l10n: Short week day name
-#: js/messages.php:134 libraries/common.lib.php:1582
+#: js/messages.php:134 libraries/common.lib.php:1584
msgid "Mon"
msgstr "Ptesi"
#. l10n: Short week day name
-#: js/messages.php:136 libraries/common.lib.php:1584
+#: js/messages.php:136 libraries/common.lib.php:1586
msgid "Tue"
msgstr "Salı"
#. l10n: Short week day name
-#: js/messages.php:138 libraries/common.lib.php:1586
+#: js/messages.php:138 libraries/common.lib.php:1588
msgid "Wed"
msgstr "Çar"
#. l10n: Short week day name
-#: js/messages.php:140 libraries/common.lib.php:1588
+#: js/messages.php:140 libraries/common.lib.php:1590
msgid "Thu"
msgstr "Per"
#. l10n: Short week day name
-#: js/messages.php:142 libraries/common.lib.php:1590
+#: js/messages.php:142 libraries/common.lib.php:1592
msgid "Fri"
msgstr "Cu"
#. l10n: Short week day name
-#: js/messages.php:144 libraries/common.lib.php:1592
+#: js/messages.php:144 libraries/common.lib.php:1594
msgid "Sat"
msgstr "Ctesi"
@@ -1386,7 +1386,7 @@ msgid "Comment"
msgstr "Yorum"
#: libraries/Index.class.php:466 libraries/common.lib.php:616
-#: libraries/common.lib.php:1199 libraries/display_tbl.lib.php:1117
+#: libraries/common.lib.php:1201 libraries/display_tbl.lib.php:1117
#: libraries/import.lib.php:1087 libraries/import.lib.php:1111
#: pdf_pages.php:285 setup/frames/index.inc.php:124
#: setup/lib/messages.inc.php:352 tbl_row_action.php:69
@@ -1412,7 +1412,7 @@ msgstr ""
"olabilir."
#: libraries/List_Database.class.php:431 libraries/server_links.inc.php:41
-#: server_databases.php:88 server_privileges.php:1621
+#: server_databases.php:88 server_privileges.php:1660
#: setup/lib/messages.inc.php:110 test/theme.php:93
msgid "Databases"
msgstr "Veritabanları"
@@ -1746,7 +1746,7 @@ msgid "Documentation"
msgstr "Belgeler"
#: libraries/common.lib.php:595 libraries/header_printview.inc.php:61
-#: server_processlist.php:60 server_status.php:247
+#: server_processlist.php:60 server_status.php:358
msgid "SQL query"
msgstr "SQL sorgusu"
@@ -1762,130 +1762,130 @@ msgstr "SQL'i açıkla"
msgid "Skip Explain SQL"
msgstr "SQL Açıklamasını atla"
-#: libraries/common.lib.php:1212
+#: libraries/common.lib.php:1214
msgid "Without PHP Code"
msgstr "PHP Kodsuz"
-#: libraries/common.lib.php:1215 setup/lib/messages.inc.php:355
+#: libraries/common.lib.php:1217 setup/lib/messages.inc.php:355
msgid "Create PHP Code"
msgstr "PHP Kodu oluştur"
-#: libraries/common.lib.php:1233 server_status.php:341
+#: libraries/common.lib.php:1235 server_status.php:452
#: setup/lib/messages.inc.php:354
msgid "Refresh"
msgstr "Yenile"
-#: libraries/common.lib.php:1242
+#: libraries/common.lib.php:1244
msgid "Skip Validate SQL"
msgstr "SQL Onaylamayı atla"
-#: libraries/common.lib.php:1245 setup/lib/messages.inc.php:356 sql.php:518
+#: libraries/common.lib.php:1247 setup/lib/messages.inc.php:356 sql.php:518
msgid "Validate SQL"
msgstr "SQL'i onayla"
-#: libraries/common.lib.php:1276
+#: libraries/common.lib.php:1278
msgid "Inline edit of this query"
msgstr ""
-#: libraries/common.lib.php:1278
+#: libraries/common.lib.php:1280
#, fuzzy
#| msgid "Engines"
msgid "Inline"
msgstr "Motorlar"
-#: libraries/common.lib.php:1332 libraries/common.lib.php:1347
+#: libraries/common.lib.php:1334 libraries/common.lib.php:1349
msgid "Profiling"
msgstr "Profil çıkart"
-#: libraries/common.lib.php:1351 libraries/tbl_triggers.lib.php:28
+#: libraries/common.lib.php:1353 libraries/tbl_triggers.lib.php:28
#: server_processlist.php:58
msgid "Time"
msgstr "Süre"
#. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "B"
msgstr "B"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "KiB"
msgstr "KiB"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "MiB"
msgstr "MiB"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "GiB"
msgstr "GiB"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "TiB"
msgstr "TiB"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "PiB"
msgstr "PiB"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "EiB"
msgstr "EiB"
#. l10n: Thousands separator
-#: libraries/common.lib.php:1417
+#: libraries/common.lib.php:1419
msgid ","
msgstr ","
#. l10n: Decimal separator
-#: libraries/common.lib.php:1419
+#: libraries/common.lib.php:1421
msgid "."
msgstr "."
#. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string
-#: libraries/common.lib.php:1596
+#: libraries/common.lib.php:1598
#: libraries/transformations/text_plain__dateformat.inc.php:34
msgid "%B %d, %Y at %I:%M %p"
msgstr "%d %B %Y, %H:%M:%S"
-#: libraries/common.lib.php:1898
+#: libraries/common.lib.php:1907
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "%s gün, %s saat, %s dakika ve %s saniye"
-#: libraries/common.lib.php:2313 libraries/common.lib.php:2316
-#: libraries/display_tbl.lib.php:290 server_status.php:608
+#: libraries/common.lib.php:2322 libraries/common.lib.php:2325
+#: libraries/display_tbl.lib.php:290 server_status.php:719
msgid "Begin"
msgstr "Yukarı"
-#: libraries/common.lib.php:2314 libraries/common.lib.php:2317
+#: libraries/common.lib.php:2323 libraries/common.lib.php:2326
#: libraries/display_tbl.lib.php:291 server_binlog.php:168
#: server_binlog.php:170
msgid "Previous"
msgstr "Önceki"
-#: libraries/common.lib.php:2345 libraries/common.lib.php:2348
+#: libraries/common.lib.php:2354 libraries/common.lib.php:2357
#: libraries/display_tbl.lib.php:353
msgid "End"
msgstr "Son"
-#: libraries/common.lib.php:2421
+#: libraries/common.lib.php:2430
#, php-format
msgid "Jump to database "%s"."
msgstr ""%s" veritabanına git."
-#: libraries/common.lib.php:2441
+#: libraries/common.lib.php:2450
#, 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/common.lib.php:2821 libraries/common.lib.php:2828
+#: libraries/common.lib.php:2830 libraries/common.lib.php:2837
#: libraries/db_links.inc.php:68 libraries/export/sql.php:25
#: libraries/import/sql.php:18 libraries/server_links.inc.php:45
#: libraries/tbl_links.inc.php:60 querywindow.php:99 test/theme.php:97
msgid "SQL"
msgstr "SQL"
-#: libraries/common.lib.php:2830 libraries/db_links.inc.php:104
+#: libraries/common.lib.php:2839 libraries/db_links.inc.php:104
#: libraries/tbl_links.inc.php:95 libraries/tbl_links.inc.php:117
#: view_operations.php:89
msgid "Operations"
@@ -1941,8 +1941,8 @@ msgid "Import"
msgstr "İçeri Aktar"
#: libraries/db_links.inc.php:111 libraries/server_links.inc.php:66
-#: server_privileges.php:72 server_privileges.php:1683
-#: server_privileges.php:2032 test/theme.php:117
+#: server_privileges.php:111 server_privileges.php:1722
+#: server_privileges.php:2071 test/theme.php:117
msgid "Privileges"
msgstr "Yetkiler"
@@ -1992,22 +1992,22 @@ msgid "Change password"
msgstr "Parola değiştir"
#: libraries/display_change_password.lib.php:35
-#: libraries/replication_gui.lib.php:345 server_privileges.php:768
+#: libraries/replication_gui.lib.php:345 server_privileges.php:807
msgid "No Password"
msgstr "Parola yok"
#: libraries/display_change_password.lib.php:41
#: libraries/replication_gui.lib.php:59 libraries/replication_gui.lib.php:60
#: libraries/replication_gui.lib.php:335 libraries/replication_gui.lib.php:339
-#: libraries/replication_gui.lib.php:349 server_privileges.php:757
-#: server_privileges.php:761 server_privileges.php:772
-#: server_privileges.php:1499 server_synchronize.php:1175
+#: libraries/replication_gui.lib.php:349 server_privileges.php:796
+#: server_privileges.php:800 server_privileges.php:811
+#: server_privileges.php:1538 server_synchronize.php:1175
msgid "Password"
msgstr "Parola"
#: libraries/display_change_password.lib.php:46
#: libraries/replication_gui.lib.php:353 libraries/replication_gui.lib.php:356
-#: server_privileges.php:776 server_privileges.php:779
+#: server_privileges.php:815 server_privileges.php:818
msgid "Re-type"
msgstr "Yeniden gir"
@@ -2022,12 +2022,12 @@ msgid "MySQL 4.0 compatible"
msgstr "MySQL 4.0 uyumlu"
#: libraries/display_change_password.lib.php:72
-#: libraries/replication_gui.lib.php:360 server_privileges.php:783
+#: libraries/replication_gui.lib.php:360 server_privileges.php:822
msgid "Generate Password"
msgstr "Parola Üret"
#: libraries/display_change_password.lib.php:75
-#: libraries/replication_gui.lib.php:363 server_privileges.php:786
+#: libraries/replication_gui.lib.php:363 server_privileges.php:825
msgid "Generate"
msgstr "Üret"
@@ -2040,8 +2040,8 @@ msgstr "Yeni veritabanı oluştur"
msgid "Create"
msgstr "Oluştur"
-#: libraries/display_create_database.lib.php:40 server_privileges.php:74
-#: server_privileges.php:1388 server_replication.php:35
+#: libraries/display_create_database.lib.php:40 server_privileges.php:113
+#: server_privileges.php:1427 server_replication.php:35
msgid "No Privileges"
msgstr "Yetkiniz yok"
@@ -2133,7 +2133,7 @@ msgstr "Sıkıştırma"
#: libraries/display_export.lib.php:240 libraries/display_import.lib.php:197
#: libraries/display_import.lib.php:210 libraries/display_tbl.lib.php:530
#: libraries/export/sql.php:868 libraries/tbl_properties.inc.php:575
-#: server_privileges.php:1836 server_processlist.php:75
+#: server_privileges.php:1875 server_processlist.php:75
msgid "None"
msgstr "Hiçbiri"
@@ -2468,7 +2468,7 @@ msgstr ""
msgid "Buffer Pool"
msgstr "Ara Bellek Havuzu"
-#: libraries/engines/innodb.lib.php:145 server_status.php:306
+#: libraries/engines/innodb.lib.php:145 server_status.php:417
msgid "InnoDB Status"
msgstr "InnoDB Durumu"
@@ -2477,8 +2477,8 @@ msgid "Buffer Pool Usage"
msgstr "Ara Bellek Havuzu Kullanımı"
#: libraries/engines/innodb.lib.php:194 server_databases.php:137
-#: server_databases.php:305 server_status.php:414 server_status.php:475
-#: server_status.php:496 tbl_printview.php:351 tbl_structure.php:696
+#: server_databases.php:305 server_status.php:525 server_status.php:586
+#: server_status.php:607 tbl_printview.php:351 tbl_structure.php:696
msgid "Total"
msgstr "Toplam"
@@ -2840,7 +2840,7 @@ msgstr "Microsoft Word 2000"
#: libraries/export/latex.php:201 libraries/export/odt.php:48
#: libraries/export/sql.php:106 libraries/export/sql.php:868
#: libraries/export/texytext.php:27 server_databases.php:127
-#: server_privileges.php:537 server_replication.php:316 tbl_printview.php:317
+#: server_privileges.php:576 server_replication.php:316 tbl_printview.php:317
#: tbl_structure.php:665
msgid "Data"
msgstr "Veri"
@@ -2890,9 +2890,9 @@ msgstr "MIME türü"
#: libraries/export/xml.php:102 libraries/header_printview.inc.php:57
#: libraries/replication_gui.lib.php:63 libraries/replication_gui.lib.php:174
#: libraries/replication_gui.lib.php:269 libraries/replication_gui.lib.php:272
-#: libraries/replication_gui.lib.php:329 server_privileges.php:692
-#: server_privileges.php:695 server_privileges.php:751
-#: server_privileges.php:1498 server_privileges.php:2030
+#: libraries/replication_gui.lib.php:329 server_privileges.php:731
+#: server_privileges.php:734 server_privileges.php:790
+#: server_privileges.php:1537 server_privileges.php:2069
#: server_processlist.php:55 server_synchronize.php:1159
msgid "Host"
msgstr "Anamakine"
@@ -3249,859 +3249,6 @@ msgstr "Hiçbiri"
msgid "Convert to Kana"
msgstr ""
-#. l10n: Text direction, use either ltr or rtl
-#: libraries/messages.inc.php:19
-msgid "ltr"
-msgstr "ltr"
-
-#: libraries/messages.inc.php:21
-msgid "Content of table __TABLE__"
-msgstr "__TABLE__ tablosunun içeriği"
-
-#: libraries/messages.inc.php:22
-msgid "(continued)"
-msgstr "(devam eden)"
-
-#: libraries/messages.inc.php:23
-msgid "Structure of table __TABLE__"
-msgstr "__TABLE__ tablosunun yapısı"
-
-#: libraries/messages.inc.php:25 server_privileges.php:227
-msgid "Includes all privileges except GRANT."
-msgstr "GRANT hariç tüm yetkileri içerir."
-
-#: libraries/messages.inc.php:26 server_privileges.php:153
-#: server_privileges.php:476
-msgid "Allows altering the structure of existing tables."
-msgstr "Varolan tabloların yapısının değiştirilmesine izin verir."
-
-#: libraries/messages.inc.php:27 server_privileges.php:169
-#: server_privileges.php:482
-msgid "Allows altering and dropping stored routines."
-msgstr "Depolanan yordamların değiştirilmesine ve kaldırılmasına izin verir."
-
-#: libraries/messages.inc.php:28 server_privileges.php:145
-#: server_privileges.php:475
-msgid "Allows creating new databases and tables."
-msgstr "Yeni veritabanları ve tabloların oluşturulmasına izin verir."
-
-#: libraries/messages.inc.php:29 server_privileges.php:168
-#: server_privileges.php:481
-msgid "Allows creating stored routines."
-msgstr "Depolanan yordamların oluşturulmasına izin verir."
-
-#: libraries/messages.inc.php:30 server_privileges.php:475
-msgid "Allows creating new tables."
-msgstr "Yeni tabloların oluşturulmasına izin verir."
-
-#: libraries/messages.inc.php:31 server_privileges.php:156
-#: server_privileges.php:479
-msgid "Allows creating temporary tables."
-msgstr "Geçici tablolara oluşturulmasına izin verir."
-
-#: libraries/messages.inc.php:32 server_privileges.php:170
-#: server_privileges.php:515
-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/messages.inc.php:33 server_privileges.php:160
-#: server_privileges.php:164 server_privileges.php:487
-#: server_privileges.php:491
-msgid "Allows creating new views."
-msgstr "Yeni görünümlerin oluşturulmasına izin verir."
-
-#: libraries/messages.inc.php:34 server_privileges.php:144
-#: server_privileges.php:467
-msgid "Allows deleting data."
-msgstr "Veri silinmesine izin verir."
-
-#: libraries/messages.inc.php:35 server_privileges.php:146
-#: server_privileges.php:478
-msgid "Allows dropping databases and tables."
-msgstr "Veritabanları ve tabloların kaldırılmasına izin verir."
-
-#: libraries/messages.inc.php:36 server_privileges.php:478
-msgid "Allows dropping tables."
-msgstr "Tabloların kaldırılmasına izin verir."
-
-#: libraries/messages.inc.php:37 server_privileges.php:161
-#: server_privileges.php:495
-msgid "Allows to set up events for the event scheduler"
-msgstr "Olay zamanlayıcısı için olayları ayarlamaya izin verir"
-
-#: libraries/messages.inc.php:38 server_privileges.php:171
-#: server_privileges.php:483
-msgid "Allows executing stored routines."
-msgstr "Depolanan yordamların yürütülmesine izin verir."
-
-#: libraries/messages.inc.php:39 server_privileges.php:150
-#: server_privileges.php:470
-msgid "Allows importing data from and exporting data into files."
-msgstr "Verinin içeri ve dışarı aktarılmasına izin verir."
-
-#: libraries/messages.inc.php:40 server_privileges.php:501
-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/messages.inc.php:41 server_privileges.php:152
-#: server_privileges.php:477
-msgid "Allows creating and dropping indexes."
-msgstr "İndekslerin oluşturulmasına ve kaldırılmasına izin verir."
-
-#: libraries/messages.inc.php:42 server_privileges.php:142
-#: server_privileges.php:403 server_privileges.php:465
-msgid "Allows inserting and replacing data."
-msgstr "Verinin eklenmesine ve yerinin değiştirilmesine izin verir."
-
-#: libraries/messages.inc.php:43 server_privileges.php:157
-#: server_privileges.php:510
-msgid "Allows locking tables for the current thread."
-msgstr "Şu anki işlem için tabloların kilitlenmesine izin verir."
-
-#: libraries/messages.inc.php:44 server_privileges.php:607
-#: server_privileges.php:609
-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/messages.inc.php:45 server_privileges.php:595
-#: server_privileges.php:597
-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/messages.inc.php:46 server_privileges.php:601
-#: server_privileges.php:603
-msgid ""
-"Limits the number of commands that change any table or database the user may "
-"execute per hour."
-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/messages.inc.php:47 server_privileges.php:613
-#: server_privileges.php:615
-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/messages.inc.php:48 server_privileges.php:149
-#: server_privileges.php:505
-msgid "Allows viewing processes of all users"
-msgstr "Tüm kullanıcıların işlemlerini görüntülemeye izin verir"
-
-#: libraries/messages.inc.php:49 server_privileges.php:151
-#: server_privileges.php:409 server_privileges.php:511
-msgid "Has no effect in this MySQL version."
-msgstr "Bu MySQL sürümünde etkisi yoktur."
-
-#: libraries/messages.inc.php:50 server_privileges.php:147
-#: server_privileges.php:506
-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/messages.inc.php:51 server_privileges.php:159
-#: server_privileges.php:513
-msgid "Allows the user to ask where the slaves / masters are."
-msgstr ""
-"Kullanıcılara Slave ve Master'ların nerede olduğunu sormasına izin verir."
-
-#: libraries/messages.inc.php:52 server_privileges.php:158
-#: server_privileges.php:514
-msgid "Needed for the replication slaves."
-msgstr "Kopya edilen slave'ler için gereklidir."
-
-#: libraries/messages.inc.php:53 server_privileges.php:141
-#: server_privileges.php:400 server_privileges.php:464
-msgid "Allows reading data."
-msgstr "Veri okunmasına izin verir."
-
-#: libraries/messages.inc.php:54 server_privileges.php:154
-#: server_privileges.php:508
-msgid "Gives access to the complete list of databases."
-msgstr "Bütün veritabanı listesine erişim verir."
-
-#: libraries/messages.inc.php:55 server_privileges.php:165
-#: server_privileges.php:167 server_privileges.php:480
-msgid "Allows performing SHOW CREATE VIEW queries."
-msgstr "SHOW CREATE VIEW sorgularının yapılmasına izin verir."
-
-#: libraries/messages.inc.php:56 server_privileges.php:148
-#: server_privileges.php:507
-msgid "Allows shutting down the server."
-msgstr "Sunucunun kapatılmasına izin ver."
-
-#: libraries/messages.inc.php:57 server_privileges.php:155
-#: server_privileges.php:504
-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 ""
-"En fazla bağlantı sayısı aşılsa bile bağlanmasına izin verir; genel "
-"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/messages.inc.php:58 server_privileges.php:162
-#: server_privileges.php:496
-msgid "Allows creating and dropping triggers"
-msgstr "Tetikleyicileri oluşturmaya ve kaldırmaya izin verir"
-
-#: libraries/messages.inc.php:59 server_privileges.php:143
-#: server_privileges.php:406 server_privileges.php:466
-msgid "Allows changing data."
-msgstr "Veri değiştirilmesine izin ver."
-
-#: libraries/messages.inc.php:60 server_privileges.php:221
-msgid "No privileges."
-msgstr "Yetkiniz yok."
-
-#: libraries/messages.inc.php:62
-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 ""
-"Geçici binari günlüğü önbelleğinde kullanılan işlemlerin sayısıdır ama "
-"binlog_cache_size değerini aştı ve işlemdeki ifadeleri depolamak için geçici "
-"dosya kullandı."
-
-#: libraries/messages.inc.php:63
-msgid "The number of transactions that used the temporary binary log cache."
-msgstr "Geçici binari günlüğü önbelleğinde kullanılan işlemlerin sayısı."
-
-#: libraries/messages.inc.php:64
-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 "
-"to increase the tmp_table_size value to cause temporary tables to be memory-"
-"based instead of disk-based."
-msgstr ""
-"İfadeler çalıştırılırken sunucu tarafından disk üzerindeki geçici tablo "
-"sayıları otomatik olarak oluşturuldu. Eğer Created_tmp_disk_tables değeri "
-"büyük ise, geçici tabloların disk tabanlı yerine bellek tabanlı olamasına "
-"sebep olmak için tmp_table_size değerini arttırmak isteyebilirsiniz."
-
-#: libraries/messages.inc.php:65
-msgid "How many temporary files mysqld has created."
-msgstr "mysqld'nin kaç tane geçici dosya oluşturduğudur."
-
-#: libraries/messages.inc.php:66
-msgid ""
-"The number of in-memory temporary tables created automatically by the server "
-"while executing statements."
-msgstr ""
-"İfadeler çalıştırılırken sunucu tarafından bellek içindeki geçici tabloların "
-"sayısı otomatik olarak oluşturuldu."
-
-#: libraries/messages.inc.php:67
-msgid ""
-"The number of rows written with INSERT DELAYED for which some error occurred "
-"(probably duplicate key)."
-msgstr ""
-"INSERT DELAYED komutu ile yazılmış, bazı hataların meydana geldiği satır "
-"sayısı (muhtemelen kopya anahtar)."
-
-#: libraries/messages.inc.php:68
-msgid ""
-"The number of INSERT DELAYED handler threads in use. Every different table "
-"on which one uses INSERT DELAYED gets its own thread."
-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/messages.inc.php:69
-msgid "The number of INSERT DELAYED rows written."
-msgstr "INSERT DELAYED satır yazımı sayısıdır."
-
-#: libraries/messages.inc.php:70
-msgid "The number of executed FLUSH statements."
-msgstr "Çalıştırılmış FLUSH ifadesi sayısıdır."
-
-#: libraries/messages.inc.php:71
-msgid "The number of internal COMMIT statements."
-msgstr "Dahili COMMIT ifadesi sayısıdır."
-
-#: libraries/messages.inc.php:72
-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/messages.inc.php:73
-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 ""
-"Eğer MySQL sunucusu verilen isimdeki tabloyu biliyorsa, NDB Yığını depolama "
-"motorunu sorabilir. Buna keşfetme denir. Handler_discover tabloların keç kez "
-"keşfedildiğini gösterir."
-
-#: libraries/messages.inc.php:74
-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 ""
-"İndeks'ten ilk girişin kaç kez okunduğu sayısıdır. Eğer bu değer yüksekse, "
-"sunucunun çok fazla indeks taraması yapıyor olduğunu gösterir; örneğin, "
-"SELECT col1 FROM foo, anlaşılıyor ki col1 indekslenmiş."
-
-#: libraries/messages.inc.php:75
-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 ""
-"Anahtarda satır tabanlı okumak için istek sayısıdır. Eğer bu değer yüksekse, "
-"sorgularınızın ve tablolarınızın düzgün bir şekilde indekslenmesinin iyi "
-"olduğu belirtisidir."
-
-#: libraries/messages.inc.php:76
-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 ""
-"Anahtar sırasında sonraki satırı okumak için istek sayısıdır. Eğer kısıtlı "
-"aralık ile indeks sütununu sorguluyorsanız ya da indeks taraması "
-"yapıyorsanız, bu arttırılan miktardır."
-
-#: libraries/messages.inc.php:77
-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 ""
-"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/messages.inc.php:78
-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 "
-"probably have a lot of queries that require MySQL to scan whole tables or "
-"you have joins that don't use keys properly."
-msgstr ""
-"Sabitlenmiş konumda satır tabanlı okumak için istek sayısıdır. Eğer "
-"sonuçları sıralamayı gerektiren çok fazla sorgu yapıyorsanız, bu değer "
-"yüksek olur. Muhtemelen bütün tabloları taramak için MySQL gerektiren çok "
-"fazla sorgulamanız vardır veya düzgün bir şekilde anahtarları "
-"kullanmamaktasınız."
-
-#: libraries/messages.inc.php:79
-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 "
-"tables are not properly indexed or that your queries are not written to take "
-"advantage of the indexes you have."
-msgstr ""
-"Veri dosyasında sonraki satırı okumak için istek sayısıdır. Eğer çok fazla "
-"tablo taraması yapıyorsanız, bu değer yüksek olur. Genellikle tablolarınız "
-"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/messages.inc.php:80
-msgid "The number of internal ROLLBACK statements."
-msgstr "Dahili ROLLBACK ifadesi sayısıdır."
-
-#: libraries/messages.inc.php:81
-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/messages.inc.php:82
-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/messages.inc.php:83
-msgid "The number of pages containing data (dirty or clean)."
-msgstr "Veri içeren sayfa sayısıdır (dolu veya temiz)."
-
-#: libraries/messages.inc.php:84
-msgid "The number of pages currently dirty."
-msgstr "Şu anki dolu sayfa sayısıdır."
-
-#: libraries/messages.inc.php:85
-msgid "The number of buffer pool pages that have been requested to be flushed."
-msgstr "Temizlenmesi için istenmiş ara bellek havuz sayfa sayısıdır."
-
-#: libraries/messages.inc.php:86
-msgid "The number of free pages."
-msgstr "Boş sayfa sayısıdır."
-
-#: libraries/messages.inc.php:87
-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 ""
-"InnoDB ara bellek havuzunda sabitlenmiş sayfa sayısıdır. Bunlar şu anki "
-"okunan veya yazılmış ya da bazı diğer sebepler yüzünden temizlenemeyen veya "
-"taşınamayan sayfalardır."
-
-#: libraries/messages.inc.php:88
-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 "
-"be calculated as Innodb_buffer_pool_pages_total - "
-"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data."
-msgstr ""
-"Meşgul sayfa sayısıdır çünkü bunlar satır kilitleri veya uyarlamalı "
-"adresleme indeksi gibi yönetimsel ek yük için ayrılmıştır. Bu değer aynı "
-"zamanda Innodb_buffer_pool_pages_total - Innodb_buffer_pool_pages_free - "
-"Innodb_buffer_pool_pages_data değerleri gibi hesaplanabilir."
-
-#: libraries/messages.inc.php:89
-msgid "Total size of buffer pool, in pages."
-msgstr "Sayfalardaki ara bellek havuzunun toplam boyutudur."
-
-#: libraries/messages.inc.php:90
-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 ""
-"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/messages.inc.php:91
-msgid ""
-"The number of sequential read-aheads InnoDB initiated. This happens when "
-"InnoDB does a sequential full table scan."
-msgstr ""
-"InnoDB sıralı önden okuma başlatımı sayısıdır. InnoDB sıralı tam tablo "
-"taraması yaptığı zaman bu olur."
-
-#: libraries/messages.inc.php:92
-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/messages.inc.php:93
-msgid ""
-"The number of logical reads that InnoDB could not satisfy from buffer pool "
-"and had to do a single-page read."
-msgstr ""
-"InnoDB'nin ara bellek havuzundan tatmin olamadığı ve tek-sayfa okuması "
-"yapmak zorunda olduğu mantıksal okuma sayısıdır."
-
-#: libraries/messages.inc.php:94
-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 "
-"available, it's necessary to wait for pages to be flushed first. This "
-"counter counts instances of these waits. If the buffer pool size was set "
-"properly, this value should be small."
-msgstr ""
-"Normal olarak arkaplanda olan InnoDB ara bellek havuzuna yazılır. Ancak, "
-"eğer sayfa oluşturma veya okuma gerekliyse ve temiz sayfalar yoksa önce "
-"sayfaların temizlenmesi için beklenmesi gereklidir. Bu sayaç bu bekleme "
-"durumlarını sayar. Eğer ara bellek havuzu boyutu düzgün bir şekilde "
-"ayarlandıysa, bu değer küçük olmalıdır."
-
-#: libraries/messages.inc.php:95
-msgid "The number writes done to the InnoDB buffer pool."
-msgstr "InnoDB ara bellek havuzuna bitti yazma sayısıdır."
-
-#: libraries/messages.inc.php:96
-msgid "The number of fsync() operations so far."
-msgstr "Şimdiye kadarki fsync() işlem sayısıdır."
-
-#: libraries/messages.inc.php:97
-msgid "The current number of pending fsync() operations."
-msgstr "Şu anki bekleyen fsync() işlem sayısıdır."
-
-#: libraries/messages.inc.php:98
-msgid "The current number of pending reads."
-msgstr "Şu anki bekleyen okuma sayısıdır."
-
-#: libraries/messages.inc.php:99
-msgid "The current number of pending writes."
-msgstr "Şu anki bekleyen yazma sayısıdır."
-
-#: libraries/messages.inc.php:100
-msgid "The amount of data read so far, in bytes."
-msgstr "Bayt cinsinden şimdiye kadarki veri okuma miktarıdır."
-
-#: libraries/messages.inc.php:101
-msgid "The total number of data reads."
-msgstr "Toplam veri okuma sayısıdır."
-
-#: libraries/messages.inc.php:102
-msgid "The total number of data writes."
-msgstr "Toplam veri yazma sayısıdır."
-
-#: libraries/messages.inc.php:103
-msgid "The amount of data written so far, in bytes."
-msgstr "Bayt cinsinden şimdiye kadarki yazılmış veri miktarıdır."
-
-#: libraries/messages.inc.php:104
-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/messages.inc.php:105
-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/messages.inc.php:106
-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 ""
-"Sahip olunan bekleme sayısıdır çünkü günlük ara belleği çok küçük ve devam "
-"etmeden önce temizlenmesi için beklemek zorundayız."
-
-#: libraries/messages.inc.php:107
-msgid "The number of log write requests."
-msgstr "Günlük yazma isteği sayısıdır."
-
-#: libraries/messages.inc.php:108
-msgid "The number of physical writes to the log file."
-msgstr "Günlük dosyasına fiziksel yazma sayısıdır."
-
-#: libraries/messages.inc.php:109
-msgid "The number of fsync() writes done to the log file."
-msgstr "Günlük dosyasına bitmiş fsyncs yazma sayısıdır."
-
-#: libraries/messages.inc.php:110
-msgid "The number of pending log file fsyncs."
-msgstr "Bekleyen günlük dosyası fsyncs sayısıdır."
-
-#: libraries/messages.inc.php:111
-msgid "Pending log file writes."
-msgstr "Bekleyen günlük dosyası yazma sayısıdır."
-
-#: libraries/messages.inc.php:112
-msgid "The number of bytes written to the log file."
-msgstr "Günlük dosyasına yazılı bayt sayısıdır."
-
-#: libraries/messages.inc.php:113
-msgid "The number of pages created."
-msgstr "Oluşturulmuş sayfa sayısıdır."
-
-#: libraries/messages.inc.php:114
-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 ""
-"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/messages.inc.php:115
-msgid "The number of pages read."
-msgstr "Okunan sayfa sayısıdır."
-
-#: libraries/messages.inc.php:116
-msgid "The number of pages written."
-msgstr "Yazılmış sayfa sayısıdır."
-
-#: libraries/messages.inc.php:117
-msgid "The number of row locks currently being waited for."
-msgstr "Şu anki beklenen satır kilidi sayısıdır."
-
-#: libraries/messages.inc.php:118
-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/messages.inc.php:119
-msgid "The total time spent in acquiring row locks, in milliseconds."
-msgstr ""
-"Milisaniye cinsinden satır kilidi elde ederken harcanmış toplam süredir."
-
-#: libraries/messages.inc.php:120
-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/messages.inc.php:121
-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/messages.inc.php:122
-msgid "The number of rows deleted from InnoDB tables."
-msgstr "InnoDB tablolarından silinen satır sayısıdır."
-
-#: libraries/messages.inc.php:123
-msgid "The number of rows inserted in InnoDB tables."
-msgstr "InnoDB tablolarına eklenen satır sayısıdır."
-
-#: libraries/messages.inc.php:124
-msgid "The number of rows read from InnoDB tables."
-msgstr "InnoDB tablolarından okunan satır sayısıdır."
-
-#: libraries/messages.inc.php:125
-msgid "The number of rows updated in InnoDB tables."
-msgstr "InnoDB tablolarında güncellenen satır sayısıdır."
-
-#: libraries/messages.inc.php:126
-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 ""
-"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/messages.inc.php:127
-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 ""
-"Anahtar önbelleğinde kullanılmayan blok sayısıdır. Bu değeri anahtar "
-"önbelleğinin ne kadarının kullanımda olmasını belirlemek için "
-"kullanabilirsiniz."
-
-#: libraries/messages.inc.php:128
-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 ""
-"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/messages.inc.php:129
-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/messages.inc.php:130
-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 ""
-"Diskten anahtar bloğunun fiziksel okunma sayısıdır. Eğer Key_reads değeri "
-"büyükse, key_buffer_size değeriniz muhtemelen çok küçüktür. Eksik önbellek "
-"oranı Key_reads/Key_read_requests olarak hesaplanabilir."
-
-#: libraries/messages.inc.php:131
-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/messages.inc.php:132
-msgid "The number of physical writes of a key block to disk."
-msgstr "Diske anahtar bloğunu fiziksel yazma sayısıdır."
-
-#: libraries/messages.inc.php:133
-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 ""
-"Sorgu en iyileyicisi tarafından hesaplanmış gibi son derlenen sorgunun "
-"toplam maliyetidir. Aynı sorgu için farklı sorgu planlarının maliyetini "
-"karşılaştırmak için yararlıdır. Varsayılan değer 0, henüz derlenmiş sorgu "
-"olmadığı anlamına gelir."
-
-#: libraries/messages.inc.php:134
-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/messages.inc.php:135
-msgid ""
-"The number of tables that have been opened. If opened tables is big, your "
-"table cache value is probably too small."
-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/messages.inc.php:136
-msgid "The number of files that are open."
-msgstr "Açık olan dosya sayısıdır."
-
-#: libraries/messages.inc.php:137
-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/messages.inc.php:138
-msgid "The number of tables that are open."
-msgstr "Açık olan tablo sayısıdır."
-
-#: libraries/messages.inc.php:139
-msgid "The number of free memory blocks in query cache."
-msgstr "Sorgu önbelleğindeki boş bellek bloğu sayısıdır."
-
-#: libraries/messages.inc.php:140
-msgid "The amount of free memory for query cache."
-msgstr "Sorgu önbelleği için boş bellek miktarıdır."
-
-#: libraries/messages.inc.php:141
-msgid "The number of cache hits."
-msgstr "Önbelleğe ulaşma sayısıdır."
-
-#: libraries/messages.inc.php:142
-msgid "The number of queries added to the cache."
-msgstr "Önbelleğe eklenen sorgu sayısıdır."
-
-#: libraries/messages.inc.php:143
-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 "
-"cache size. The query cache uses a least recently used (LRU) strategy to "
-"decide which queries to remove from the cache."
-msgstr ""
-"Yeni sorguları önbelleklemek için belleği boşaltmaya yönelik önbellekten "
-"kaldırılmış sorgu sayısıdır. Bu bilgi sorgu önbellek boyutunu ayarlamınıza "
-"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/messages.inc.php:144
-msgid ""
-"The number of non-cached queries (not cachable, or not cached due to the "
-"query_cache_type setting)."
-msgstr ""
-"Önbelleklenmemiş sorgu sayısıdır (önbelleklenemez, ya da query_cache_type "
-"ayarından dolayı önbelleklenmedi)."
-
-#: libraries/messages.inc.php:145
-msgid "The number of queries registered in the cache."
-msgstr "Önbellekte kayıtlı sorgu sayısıdır."
-
-#: libraries/messages.inc.php:146
-msgid "The total number of blocks in the query cache."
-msgstr "Sorgu önbelleği içindeki toplam blok sayısıdır."
-
-#: libraries/messages.inc.php:147
-msgctxt "$strShowStatusReset"
-msgid "Reset"
-msgstr "Sıfırla"
-
-#: libraries/messages.inc.php:148
-msgid "The status of failsafe replication (not yet implemented)."
-msgstr "Arıza-güvenli kopya etme durumu (henüz tamamlanmadı)."
-
-#: libraries/messages.inc.php:149
-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 ""
-"İ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/messages.inc.php:150
-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/messages.inc.php:151
-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 ""
-"Her bir satırdan sonra anahtar kullanımını kontrol eden anahtarsız "
-"birleştirme sayısıdır. (Eğer bu değer 0 değilse, tablolarınızın indekslerini "
-"dikkatli olarak kontrol etmelisiniz.)"
-
-#: libraries/messages.inc.php:152
-msgid ""
-"The number of joins that used ranges on the first table. (It's normally not "
-"critical even if this is big.)"
-msgstr ""
-"İlk tabloda aralıkları kullanan birleştirme sayısıdır. (Normal olarak "
-"kusurlu değildir, eğer büyükse bile.)"
-
-#: libraries/messages.inc.php:153
-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/messages.inc.php:154
-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/messages.inc.php:155
-msgid ""
-"Total (since startup) number of times the replication slave SQL thread has "
-"retried transactions."
-msgstr ""
-"Kopya edilen slave SQL işleminin yeniden denediği işlerin toplam "
-"(başlangıçtan beri) süre sayısıdır."
-
-#: libraries/messages.inc.php:156
-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/messages.inc.php:157
-msgid ""
-"The number of threads that have taken more than slow_launch_time seconds to "
-"create."
-msgstr ""
-"Oluşturmak için slow_launch_time saniyeden daha uzun zaman almış işlem "
-"sayısıdır."
-
-#: libraries/messages.inc.php:158
-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/messages.inc.php:159
-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 ""
-"Yapılması zorunlu sıralama algoritması birleştirme geçişi sayısıdır. Eğer bu "
-"değer büyükse, sort_buffer_size sistem değişkeninin değerini arttırmayı "
-"dikkate almalısınız."
-
-#: libraries/messages.inc.php:160
-msgid "The number of sorts that were done with ranges."
-msgstr "Aralıklarla yapılmış sıralama sayısıdır."
-
-#: libraries/messages.inc.php:161
-msgid "The number of sorted rows."
-msgstr "Sıralanmış satır sayısıdır."
-
-#: libraries/messages.inc.php:162
-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/messages.inc.php:163
-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/messages.inc.php:164
-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 "
-"should first optimize your queries, and then either split your table or "
-"tables or use replication."
-msgstr ""
-"Tablo kilidinin hemen tanınamadığı ve beklemenin gerektiği süre sayısıdır. "
-"Eğer bu değer yüksekse ve performans sorununuz varsa, önce sorgularınızı "
-"uyarlamalısınız ve sonra ya tablonuzu ya da tablolarınızı bölün veya kopya "
-"etmeyi kullanın."
-
-#: libraries/messages.inc.php:165
-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 ""
-"İşlem önbelleği içinde işlem sayısıdır. Önbelleğe ulaşma hızı "
-"Threads_created/Bağlantılar olarak hesaplanabilir. Eğer bu değer kırmızı "
-"ise, thread_cache_size boyutunuzu yükseltmelisiniz."
-
-#: libraries/messages.inc.php:166
-msgid "The number of currently open connections."
-msgstr "Şu anki açık bağlantı sayısıdır."
-
-#: libraries/messages.inc.php:167
-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 "
-"doesn't give a notable performance improvement if you have a good thread "
-"implementation.)"
-msgstr ""
-"Bağlantıları işlemek için oluşturulmuş işlem sayısıdır. Eğer Threads_created "
-"değeri büyük ise, thread_cache_size değerini arttırmak isteyebilirsiniz. "
-"(eğer iyi bir işlem uygulamasına sahipseniz, normal olarak bu, dikkate değer "
-"bir performans artışı vermez.)"
-
-#: libraries/messages.inc.php:168
-msgid "The number of threads that are not sleeping."
-msgstr "Hala faaliyette olan işlemler sayısıdır."
-
#: libraries/mult_submits.inc.php:76 libraries/tbl_properties.inc.php:513
#: tbl_structure.php:29 tbl_structure.php:153 tbl_structure.php:157
#: tbl_structure.php:473
@@ -4426,8 +3573,8 @@ msgstr ""
#: libraries/replication_gui.lib.php:55 libraries/replication_gui.lib.php:56
#: libraries/replication_gui.lib.php:249 libraries/replication_gui.lib.php:252
-#: libraries/replication_gui.lib.php:259 server_privileges.php:672
-#: server_privileges.php:675 server_privileges.php:682
+#: libraries/replication_gui.lib.php:259 server_privileges.php:711
+#: server_privileges.php:714 server_privileges.php:721
#: server_synchronize.php:1171
msgid "User name"
msgstr "Kullanıcı Adı"
@@ -4445,11 +3592,11 @@ msgid "Slave status"
msgstr "Slave durumu"
#: libraries/replication_gui.lib.php:114 libraries/sql_query_form.lib.php:445
-#: server_status.php:626 server_variables.php:52
+#: server_status.php:737 server_variables.php:52
msgid "Variable"
msgstr "Değişken"
-#: libraries/replication_gui.lib.php:115 server_status.php:627
+#: libraries/replication_gui.lib.php:115 server_status.php:738
#: tbl_change.php:324 tbl_printview.php:370 tbl_select.php:139
#: tbl_structure.php:729
msgid "Value"
@@ -4471,34 +3618,34 @@ msgstr ""
msgid "Add slave replication user"
msgstr "Slave kopya etme kullanıcısı ekle"
-#: libraries/replication_gui.lib.php:254 server_privileges.php:677
+#: libraries/replication_gui.lib.php:254 server_privileges.php:716
msgid "Any user"
msgstr "Herhangi kullanıcı"
#: libraries/replication_gui.lib.php:255 libraries/replication_gui.lib.php:323
-#: libraries/replication_gui.lib.php:346 server_privileges.php:678
-#: server_privileges.php:745 server_privileges.php:769
-#: server_privileges.php:1889 server_privileges.php:1919
+#: libraries/replication_gui.lib.php:346 server_privileges.php:717
+#: server_privileges.php:784 server_privileges.php:808
+#: server_privileges.php:1928 server_privileges.php:1958
msgid "Use text field"
msgstr "Metin alanını kullan"
-#: libraries/replication_gui.lib.php:302 server_privileges.php:725
+#: libraries/replication_gui.lib.php:302 server_privileges.php:764
msgid "Any host"
msgstr "Herhangi anamakine"
-#: libraries/replication_gui.lib.php:306 server_privileges.php:729
+#: libraries/replication_gui.lib.php:306 server_privileges.php:768
msgid "Local"
msgstr "Yerel"
-#: libraries/replication_gui.lib.php:312 server_privileges.php:734
+#: libraries/replication_gui.lib.php:312 server_privileges.php:773
msgid "This Host"
msgstr "Bu Anamakine"
-#: libraries/replication_gui.lib.php:318 server_privileges.php:740
+#: libraries/replication_gui.lib.php:318 server_privileges.php:779
msgid "Use Host Table"
msgstr "Anamakine Tablosu kullan"
-#: libraries/replication_gui.lib.php:331 server_privileges.php:753
+#: libraries/replication_gui.lib.php:331 server_privileges.php:792
msgid ""
"When Host table is used, this field is ignored and values stored in Host "
"table are used instead."
@@ -4506,8 +3653,25 @@ msgstr ""
"Anamakine tablosu kullanıldığında bu alan yoksayılır ve yerine Anamakine "
"tablosunda depolanan değerler kullanılır."
-#: libraries/select_lang.lib.php:480 libraries/select_lang.lib.php:486
-#: libraries/select_lang.lib.php:492
+#. l10n: Text direction, use either ltr or rtl
+#: libraries/select_lang.lib.php:491
+msgid "ltr"
+msgstr "ltr"
+
+#: libraries/select_lang.lib.php:493
+msgid "Content of table __TABLE__"
+msgstr "__TABLE__ tablosunun içeriği"
+
+#: libraries/select_lang.lib.php:494
+msgid "(continued)"
+msgstr "(devam eden)"
+
+#: libraries/select_lang.lib.php:495
+msgid "Structure of table __TABLE__"
+msgstr "__TABLE__ tablosunun yapısı"
+
+#: libraries/select_lang.lib.php:500 libraries/select_lang.lib.php:506
+#: libraries/select_lang.lib.php:512
#, php-format
msgid "Unknown language: %1$s."
msgstr "Bilinmeyen dil: %1$s."
@@ -4518,7 +3682,7 @@ msgid "Servers"
msgstr "Sunucular"
#: libraries/server_links.inc.php:53 server_engines.php:112
-#: server_engines.php:116 server_status.php:304 test/theme.php:105
+#: server_engines.php:116 server_status.php:415 test/theme.php:105
msgid "Variables"
msgstr "Değişkenler"
@@ -4531,7 +3695,7 @@ msgid "Engines"
msgstr "Motorlar"
#: libraries/server_links.inc.php:76 server_binlog.php:110
-#: server_status.php:253 test/theme.php:121
+#: server_status.php:364 test/theme.php:121
msgid "Binary log"
msgstr "Binari günlüğü"
@@ -5010,8 +4174,8 @@ msgstr "Sıfırla"
msgid "Protocol version"
msgstr "Protokol sürümü"
-#: main.php:189 server_privileges.php:1350 server_privileges.php:1497
-#: server_privileges.php:1611 server_privileges.php:2029
+#: main.php:189 server_privileges.php:1389 server_privileges.php:1536
+#: server_privileges.php:1650 server_privileges.php:2068
#: server_processlist.php:54
msgid "User"
msgstr "Kullanıcı"
@@ -5409,7 +4573,7 @@ msgstr "%s veritabanları başarılı olarak kaldırıldı."
msgid "Databases statistics"
msgstr "Veritabanı istatistikleri"
-#: server_databases.php:117 server_status.php:260
+#: server_databases.php:117 server_status.php:371
#: setup/lib/messages.inc.php:117
msgid "Tables"
msgstr "Tablolar"
@@ -5429,6 +4593,18 @@ msgstr "Slave kopya etme"
msgid "Jump to database"
msgstr "Veritabanına git"
+#: server_databases.php:267
+#, fuzzy
+#| msgid "Master replication"
+msgid "Not replicated"
+msgstr "Asılı kopya etme"
+
+#: server_databases.php:273
+#, fuzzy
+#| msgid "Replication"
+msgid "Replicated"
+msgstr "Kopya etme"
+
#: server_databases.php:289
#, php-format
msgid "Check privileges for database "%s"."
@@ -5462,142 +4638,337 @@ msgstr "Depolama Motorları"
msgid "View dump (schema) of databases"
msgstr "Veritabanlarının dökümünü (şemasını) göster"
-#: server_privileges.php:263 server_privileges.php:264
+#: server_privileges.php:24 server_privileges.php:266
+msgid "Includes all privileges except GRANT."
+msgstr "GRANT hariç tüm yetkileri içerir."
+
+#: server_privileges.php:25 server_privileges.php:192
+#: server_privileges.php:515
+msgid "Allows altering the structure of existing tables."
+msgstr "Varolan tabloların yapısının değiştirilmesine izin verir."
+
+#: server_privileges.php:26 server_privileges.php:208
+#: server_privileges.php:521
+msgid "Allows altering and dropping stored routines."
+msgstr "Depolanan yordamların değiştirilmesine ve kaldırılmasına izin verir."
+
+#: server_privileges.php:27 server_privileges.php:184
+#: server_privileges.php:514
+msgid "Allows creating new databases and tables."
+msgstr "Yeni veritabanları ve tabloların oluşturulmasına izin verir."
+
+#: server_privileges.php:28 server_privileges.php:207
+#: server_privileges.php:520
+msgid "Allows creating stored routines."
+msgstr "Depolanan yordamların oluşturulmasına izin verir."
+
+#: server_privileges.php:29 server_privileges.php:514
+msgid "Allows creating new tables."
+msgstr "Yeni tabloların oluşturulmasına izin verir."
+
+#: server_privileges.php:30 server_privileges.php:195
+#: server_privileges.php:518
+msgid "Allows creating temporary tables."
+msgstr "Geçici tablolara oluşturulmasına izin verir."
+
+#: server_privileges.php:31 server_privileges.php:209
+#: server_privileges.php:554
+msgid "Allows creating, dropping and renaming user accounts."
+msgstr ""
+"Kullanıcı hesaplarının oluşturulmasına, kaldırılmasına ve yeniden "
+"adlandırılmasına izin verir."
+
+#: server_privileges.php:32 server_privileges.php:199
+#: server_privileges.php:203 server_privileges.php:526
+#: server_privileges.php:530
+msgid "Allows creating new views."
+msgstr "Yeni görünümlerin oluşturulmasına izin verir."
+
+#: server_privileges.php:33 server_privileges.php:183
+#: server_privileges.php:506
+msgid "Allows deleting data."
+msgstr "Veri silinmesine izin verir."
+
+#: server_privileges.php:34 server_privileges.php:185
+#: server_privileges.php:517
+msgid "Allows dropping databases and tables."
+msgstr "Veritabanları ve tabloların kaldırılmasına izin verir."
+
+#: server_privileges.php:35 server_privileges.php:517
+msgid "Allows dropping tables."
+msgstr "Tabloların kaldırılmasına izin verir."
+
+#: server_privileges.php:36 server_privileges.php:200
+#: server_privileges.php:534
+msgid "Allows to set up events for the event scheduler"
+msgstr "Olay zamanlayıcısı için olayları ayarlamaya izin verir"
+
+#: server_privileges.php:37 server_privileges.php:210
+#: server_privileges.php:522
+msgid "Allows executing stored routines."
+msgstr "Depolanan yordamların yürütülmesine izin verir."
+
+#: server_privileges.php:38 server_privileges.php:189
+#: server_privileges.php:509
+msgid "Allows importing data from and exporting data into files."
+msgstr "Verinin içeri ve dışarı aktarılmasına izin verir."
+
+#: server_privileges.php:39 server_privileges.php:540
+msgid ""
+"Allows adding users and privileges without reloading the privilege tables."
+msgstr ""
+"Yetki tablolarını yeniden yüklemeden yeni kullanıcıların ve yetkilerin "
+"eklenmesine izin verir."
+
+#: server_privileges.php:40 server_privileges.php:191
+#: server_privileges.php:516
+msgid "Allows creating and dropping indexes."
+msgstr "İndekslerin oluşturulmasına ve kaldırılmasına izin verir."
+
+#: server_privileges.php:41 server_privileges.php:181
+#: server_privileges.php:442 server_privileges.php:504
+msgid "Allows inserting and replacing data."
+msgstr "Verinin eklenmesine ve yerinin değiştirilmesine izin verir."
+
+#: server_privileges.php:42 server_privileges.php:196
+#: server_privileges.php:549
+msgid "Allows locking tables for the current thread."
+msgstr "Şu anki işlem için tabloların kilitlenmesine izin verir."
+
+#: server_privileges.php:43 server_privileges.php:646
+#: server_privileges.php:648
+msgid "Limits the number of new connections the user may open per hour."
+msgstr "Kullanıcının saat başına açabileceği yeni bağlantı sayısını sınırlar."
+
+#: server_privileges.php:44 server_privileges.php:634
+#: server_privileges.php:636
+msgid "Limits the number of queries the user may send to the server per hour."
+msgstr ""
+"Kullanıcının saat başına sunucuya gönderebileceği sorgu sayısını sınırlar."
+
+#: server_privileges.php:45 server_privileges.php:640
+#: server_privileges.php:642
+msgid ""
+"Limits the number of commands that change any table or database the user may "
+"execute per hour."
+msgstr ""
+"Kullanıcının saat başına çalıştırabileceği herhangi bir tabloyu veya "
+"veritabanını değiştiren komut sayısını sınırlar."
+
+#: server_privileges.php:46 server_privileges.php:652
+#: server_privileges.php:654
+msgid "Limits the number of simultaneous connections the user may have."
+msgstr "Kullanıcının eşzamanlı bağlantı sayısını sınırlar."
+
+#: server_privileges.php:47 server_privileges.php:188
+#: server_privileges.php:544
+msgid "Allows viewing processes of all users"
+msgstr "Tüm kullanıcıların işlemlerini görüntülemeye izin verir"
+
+#: server_privileges.php:48 server_privileges.php:190
+#: server_privileges.php:448 server_privileges.php:550
+msgid "Has no effect in this MySQL version."
+msgstr "Bu MySQL sürümünde etkisi yoktur."
+
+#: server_privileges.php:49 server_privileges.php:186
+#: server_privileges.php:545
+msgid "Allows reloading server settings and flushing the server's caches."
+msgstr ""
+"Sunucu ayarlarının yeniden yüklenmesine ve sunucunun önbelleğinin "
+"temizlenmesine izin verir"
+
+#: server_privileges.php:50 server_privileges.php:198
+#: server_privileges.php:552
+msgid "Allows the user to ask where the slaves / masters are."
+msgstr ""
+"Kullanıcılara Slave ve Master'ların nerede olduğunu sormasına izin verir."
+
+#: server_privileges.php:51 server_privileges.php:197
+#: server_privileges.php:553
+msgid "Needed for the replication slaves."
+msgstr "Kopya edilen slave'ler için gereklidir."
+
+#: server_privileges.php:52 server_privileges.php:180
+#: server_privileges.php:439 server_privileges.php:503
+msgid "Allows reading data."
+msgstr "Veri okunmasına izin verir."
+
+#: server_privileges.php:53 server_privileges.php:193
+#: server_privileges.php:547
+msgid "Gives access to the complete list of databases."
+msgstr "Bütün veritabanı listesine erişim verir."
+
+#: server_privileges.php:54 server_privileges.php:204
+#: server_privileges.php:206 server_privileges.php:519
+msgid "Allows performing SHOW CREATE VIEW queries."
+msgstr "SHOW CREATE VIEW sorgularının yapılmasına izin verir."
+
+#: server_privileges.php:55 server_privileges.php:187
+#: server_privileges.php:546
+msgid "Allows shutting down the server."
+msgstr "Sunucunun kapatılmasına izin ver."
+
+#: server_privileges.php:56 server_privileges.php:194
+#: server_privileges.php:543
+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 ""
+"En fazla bağlantı sayısı aşılsa bile bağlanmasına izin verir; genel "
+"değişkenleri ayarlamak veya diğer kullanıcıların işlemlerini sonlandırmak "
+"gibi pek çok yönetimsel işlemler için gereklidir."
+
+#: server_privileges.php:57 server_privileges.php:201
+#: server_privileges.php:535
+msgid "Allows creating and dropping triggers"
+msgstr "Tetikleyicileri oluşturmaya ve kaldırmaya izin verir"
+
+#: server_privileges.php:58 server_privileges.php:182
+#: server_privileges.php:445 server_privileges.php:505
+msgid "Allows changing data."
+msgstr "Veri değiştirilmesine izin ver."
+
+#: server_privileges.php:59 server_privileges.php:260
+msgid "No privileges."
+msgstr "Yetkiniz yok."
+
+#: server_privileges.php:302 server_privileges.php:303
#, fuzzy
#| msgid "None"
msgctxt "None privileges"
msgid "None"
msgstr "Hiçbiri"
-#: server_privileges.php:392 server_privileges.php:527
-#: server_privileges.php:1679 server_privileges.php:1685
+#: server_privileges.php:431 server_privileges.php:566
+#: server_privileges.php:1718 server_privileges.php:1724
msgid "Table-specific privileges"
msgstr "Tabloya özgü yetkiler"
-#: server_privileges.php:393 server_privileges.php:535
-#: server_privileges.php:1501
+#: server_privileges.php:432 server_privileges.php:574
+#: server_privileges.php:1540
msgid " Note: MySQL privilege names are expressed in English "
msgstr " Not: MySQL yetki adları İngilizce olarak belirtilir "
-#: server_privileges.php:524 server_privileges.php:1500
+#: server_privileges.php:563 server_privileges.php:1539
msgid "Global privileges"
msgstr "Genel yetkiler"
-#: server_privileges.php:526 server_privileges.php:1679
+#: server_privileges.php:565 server_privileges.php:1718
msgid "Database-specific privileges"
msgstr "Veritabanına özgü yetkiler"
-#: server_privileges.php:571
+#: server_privileges.php:610
msgid "Administration"
msgstr "Yönetim"
-#: server_privileges.php:591
+#: server_privileges.php:630
msgid "Resource limits"
msgstr "Kaynak sınırları"
-#: server_privileges.php:592
+#: server_privileges.php:631
msgid "Note: Setting these options to 0 (zero) removes the limit."
msgstr "Not: Bu seçeneklerin 0 (sıfır)'a ayarlanması sınırı kaldırır."
-#: server_privileges.php:669
+#: server_privileges.php:708
msgid "Login Information"
msgstr "Oturum Açma Bilgisi"
-#: server_privileges.php:763
+#: server_privileges.php:802
msgid "Do not change the password"
msgstr "Parolayı değiştirme"
-#: server_privileges.php:804 server_privileges.php:2166
+#: server_privileges.php:843 server_privileges.php:2205
#, fuzzy
#| msgid "No user(s) found."
msgid "No user found."
msgstr "Kullanıcı(lar) bulunamadı."
-#: server_privileges.php:848
+#: server_privileges.php:887
#, php-format
msgid "The user %s already exists!"
msgstr "%s kullanıcısı zaten var!"
-#: server_privileges.php:931
+#: server_privileges.php:970
msgid "You have added a new user."
msgstr "Yeni bir kullanıcı eklediniz."
-#: server_privileges.php:1152
+#: server_privileges.php:1191
#, php-format
msgid "You have updated the privileges for %s."
msgstr "%s için yetkileri güncellediniz."
-#: server_privileges.php:1176
+#: server_privileges.php:1215
#, php-format
msgid "You have revoked the privileges for %s"
msgstr "%s için yetkileri geri aldınız"
-#: server_privileges.php:1212
+#: server_privileges.php:1251
#, php-format
msgid "The password for %s was changed successfully."
msgstr "%s için parola başarılı olarak değiştirildi."
-#: server_privileges.php:1232
+#: server_privileges.php:1271
#, php-format
msgid "Deleting %s"
msgstr "%s siliniyor"
-#: server_privileges.php:1243
+#: server_privileges.php:1282
msgid "No users selected for deleting!"
msgstr "Silmek için kullanıcı seçilmedi!"
-#: server_privileges.php:1246
+#: server_privileges.php:1285
msgid "Reloading the privileges"
msgstr "Yetkiler yeniden yükleniyor"
-#: server_privileges.php:1261
+#: server_privileges.php:1300
msgid "The selected users have been deleted successfully."
msgstr "Seçili kullanıcılar başarılı olarak silindi."
-#: server_privileges.php:1296
+#: server_privileges.php:1335
msgid "The privileges were reloaded successfully."
msgstr "Yetkiler başarılı olarak yüklendi."
-#: server_privileges.php:1324 server_privileges.php:1610
+#: server_privileges.php:1363 server_privileges.php:1649
msgid "Edit Privileges"
msgstr "Yetkileri düzenle"
-#: server_privileges.php:1333
+#: server_privileges.php:1372
msgid "Revoke"
msgstr "Geri al"
-#: server_privileges.php:1365
+#: server_privileges.php:1404
msgid "User overview"
msgstr "Kullanıcı gözden geçirme"
-#: server_privileges.php:1502 server_privileges.php:1684
-#: server_privileges.php:2033
+#: server_privileges.php:1541 server_privileges.php:1723
+#: server_privileges.php:2072
msgid "Grant"
msgstr "Onayla"
-#: server_privileges.php:1521 server_privileges.php:2123
+#: server_privileges.php:1560 server_privileges.php:2162
msgid "Any"
msgstr "Herhangi"
-#: server_privileges.php:1570 server_privileges.php:1594
-#: server_privileges.php:1988 server_privileges.php:2177
+#: server_privileges.php:1609 server_privileges.php:1633
+#: server_privileges.php:2027 server_privileges.php:2216
msgid "Add a new User"
msgstr "Yeni Kullanıcı ekle"
-#: server_privileges.php:1575
+#: server_privileges.php:1614
msgid "Remove selected users"
msgstr "Seçili kullanıcıları kaldır"
-#: server_privileges.php:1578
+#: server_privileges.php:1617
msgid "Revoke all active privileges from the users and delete them afterwards."
msgstr "Kullanıcılardan tüm aktif yetkileri geri al ve sonra da sil."
-#: server_privileges.php:1579 server_privileges.php:1580
-#: server_privileges.php:1581
+#: server_privileges.php:1618 server_privileges.php:1619
+#: server_privileges.php:1620
msgid "Drop the databases that have the same names as the users."
msgstr "Kullanıcılarla aynı isimlerde olan veritabanlarını kaldır."
-#: server_privileges.php:1597
+#: server_privileges.php:1636
#, php-format
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
@@ -5610,48 +4981,48 @@ msgstr ""
"sunucunun kullandığı yetkilerden farklı olabilir. Bu durumda devam etmeden "
"önce %syetkileri yeniden yüklemeniz%s gerekir."
-#: server_privileges.php:1645
+#: server_privileges.php:1684
msgid "The selected user was not found in the privilege table."
msgstr "Seçili kullanıcı yetki tablosunda bulunamadı."
-#: server_privileges.php:1685
+#: server_privileges.php:1724
msgid "Column-specific privileges"
msgstr "Sütuna özgü yetkiler"
-#: server_privileges.php:1886
+#: server_privileges.php:1925
msgid "Add privileges on the following database"
msgstr "Aşağıdaki veritabanına yetkileri ekle"
-#: server_privileges.php:1904
+#: server_privileges.php:1943
msgid "Wildcards % and _ should be escaped with a \\ to use them literally"
msgstr "_ ve % jokerleri harfi harfine kullanılmak için \\ ile doldurun."
-#: server_privileges.php:1907
+#: server_privileges.php:1946
msgid "Add privileges on the following table"
msgstr "Aşağıdaki tabloya yetkileri ekle"
-#: server_privileges.php:1964
+#: server_privileges.php:2003
msgid "Change Login Information / Copy User"
msgstr "Otutum Açma Bilgisini değiştir / Kullanıcıyı kopyala"
-#: server_privileges.php:1967
+#: server_privileges.php:2006
msgid "Create a new user with the same privileges and ..."
msgstr "Aynı yetkilerle yeni bir kullanıcı oluştur ve ..."
-#: server_privileges.php:1969
+#: server_privileges.php:2008
msgid "... keep the old one."
msgstr "... eski olanı sakla."
-#: server_privileges.php:1970
+#: server_privileges.php:2009
msgid " ... delete the old one from the user tables."
msgstr "... eski olanı kullanıcı tablolarından sil."
-#: server_privileges.php:1971
+#: server_privileges.php:2010
msgid ""
" ... revoke all active privileges from the old one and delete it afterwards."
msgstr "... eski olandan bütün aktif yetkileri iptal et ve sonra da sil."
-#: server_privileges.php:1972
+#: server_privileges.php:2011
msgid ""
" ... delete the old one from the user tables and reload the privileges "
"afterwards."
@@ -5659,44 +5030,44 @@ msgstr ""
"... eski olanı kullanıcı tablolarından sil ve sonra da yetkileri yeniden "
"yükle."
-#: server_privileges.php:1994
+#: server_privileges.php:2033
msgid "Database for user"
msgstr "Kullanıcı için veritabanı"
-#: server_privileges.php:1998
+#: server_privileges.php:2037
#, fuzzy
#| msgid "None"
msgctxt "Create none database for user"
msgid "None"
msgstr "Hiçbiri"
-#: server_privileges.php:1999
+#: server_privileges.php:2038
msgid "Create database with same name and grant all privileges"
msgstr "Aynı isimle veritabanı oluştur ve tüm yetkileri ver"
-#: server_privileges.php:2000
+#: server_privileges.php:2039
msgid "Grant all privileges on wildcard name (username\\_%)"
msgstr "Joker isimlere tüm yetkileri ver (kullanıcıadı\\_%)"
-#: server_privileges.php:2003
+#: server_privileges.php:2042
#, php-format
msgid "Grant all privileges on database "%s""
msgstr ""%s" veritabanı üzerindeki tüm yetkileri ver"
-#: server_privileges.php:2026
+#: server_privileges.php:2065
#, php-format
msgid "Users having access to "%s""
msgstr ""%s" veritabanına erişimi olan kullanıcılar"
-#: server_privileges.php:2134
+#: server_privileges.php:2173
msgid "global"
msgstr "genel"
-#: server_privileges.php:2136
+#: server_privileges.php:2175
msgid "database-specific"
msgstr "Veritabanına özgü"
-#: server_privileges.php:2138
+#: server_privileges.php:2177
msgid "wildcard"
msgstr "joker"
@@ -5743,7 +5114,7 @@ msgid "This server is configured as master in a replication process."
msgstr ""
"Bu sunucu kopya etme işlemi sırasında asıl sunucu olarak yapılandırıldı."
-#: server_replication.php:184 server_status.php:281
+#: server_replication.php:184 server_status.php:392
msgid "Show master status"
msgstr "Master durumunu göster"
@@ -5897,83 +5268,724 @@ msgstr ""
"Bu sunucu kopya etme işlemi sırasında slave sunucu olarak yapılandırılmadı. "
"Bunu yapılandırmak ister misiniz?"
+#: server_status.php:40
+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 ""
+"Geçici binari günlüğü önbelleğinde kullanılan işlemlerin sayısıdır ama "
+"binlog_cache_size değerini aştı ve işlemdeki ifadeleri depolamak için geçici "
+"dosya kullandı."
+
+#: server_status.php:41
+msgid "The number of transactions that used the temporary binary log cache."
+msgstr "Geçici binari günlüğü önbelleğinde kullanılan işlemlerin sayısı."
+
+#: server_status.php:42
+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 "
+"to increase the tmp_table_size value to cause temporary tables to be memory-"
+"based instead of disk-based."
+msgstr ""
+"İfadeler çalıştırılırken sunucu tarafından disk üzerindeki geçici tablo "
+"sayıları otomatik olarak oluşturuldu. Eğer Created_tmp_disk_tables değeri "
+"büyük ise, geçici tabloların disk tabanlı yerine bellek tabanlı olamasına "
+"sebep olmak için tmp_table_size değerini arttırmak isteyebilirsiniz."
+
+#: server_status.php:43
+msgid "How many temporary files mysqld has created."
+msgstr "mysqld'nin kaç tane geçici dosya oluşturduğudur."
+
+#: server_status.php:44
+msgid ""
+"The number of in-memory temporary tables created automatically by the server "
+"while executing statements."
+msgstr ""
+"İfadeler çalıştırılırken sunucu tarafından bellek içindeki geçici tabloların "
+"sayısı otomatik olarak oluşturuldu."
+
+#: server_status.php:45
+msgid ""
+"The number of rows written with INSERT DELAYED for which some error occurred "
+"(probably duplicate key)."
+msgstr ""
+"INSERT DELAYED komutu ile yazılmış, bazı hataların meydana geldiği satır "
+"sayısı (muhtemelen kopya anahtar)."
+
#: server_status.php:46
+msgid ""
+"The number of INSERT DELAYED handler threads in use. Every different table "
+"on which one uses INSERT DELAYED gets its own thread."
+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."
+
+#: server_status.php:47
+msgid "The number of INSERT DELAYED rows written."
+msgstr "INSERT DELAYED satır yazımı sayısıdır."
+
+#: server_status.php:48
+msgid "The number of executed FLUSH statements."
+msgstr "Çalıştırılmış FLUSH ifadesi sayısıdır."
+
+#: server_status.php:49
+msgid "The number of internal COMMIT statements."
+msgstr "Dahili COMMIT ifadesi sayısıdır."
+
+#: server_status.php:50
+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."
+
+#: server_status.php:51
+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 ""
+"Eğer MySQL sunucusu verilen isimdeki tabloyu biliyorsa, NDB Yığını depolama "
+"motorunu sorabilir. Buna keşfetme denir. Handler_discover tabloların keç kez "
+"keşfedildiğini gösterir."
+
+#: server_status.php:52
+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 ""
+"İndeks'ten ilk girişin kaç kez okunduğu sayısıdır. Eğer bu değer yüksekse, "
+"sunucunun çok fazla indeks taraması yapıyor olduğunu gösterir; örneğin, "
+"SELECT col1 FROM foo, anlaşılıyor ki col1 indekslenmiş."
+
+#: server_status.php:53
+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 ""
+"Anahtarda satır tabanlı okumak için istek sayısıdır. Eğer bu değer yüksekse, "
+"sorgularınızın ve tablolarınızın düzgün bir şekilde indekslenmesinin iyi "
+"olduğu belirtisidir."
+
+#: server_status.php:54
+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 ""
+"Anahtar sırasında sonraki satırı okumak için istek sayısıdır. Eğer kısıtlı "
+"aralık ile indeks sütununu sorguluyorsanız ya da indeks taraması "
+"yapıyorsanız, bu arttırılan miktardır."
+
+#: server_status.php:55
+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 ""
+"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."
+
+#: server_status.php:56
+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 "
+"probably have a lot of queries that require MySQL to scan whole tables or "
+"you have joins that don't use keys properly."
+msgstr ""
+"Sabitlenmiş konumda satır tabanlı okumak için istek sayısıdır. Eğer "
+"sonuçları sıralamayı gerektiren çok fazla sorgu yapıyorsanız, bu değer "
+"yüksek olur. Muhtemelen bütün tabloları taramak için MySQL gerektiren çok "
+"fazla sorgulamanız vardır veya düzgün bir şekilde anahtarları "
+"kullanmamaktasınız."
+
+#: server_status.php:57
+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 "
+"tables are not properly indexed or that your queries are not written to take "
+"advantage of the indexes you have."
+msgstr ""
+"Veri dosyasında sonraki satırı okumak için istek sayısıdır. Eğer çok fazla "
+"tablo taraması yapıyorsanız, bu değer yüksek olur. Genellikle tablolarınız "
+"düzgün bir şekilde indekslenmediğinde ya da sorgularınız, sahip olduğunuz "
+"indeksleri çıkarına kullanmak için yazmadığında önerilir."
+
+#: server_status.php:58
+msgid "The number of internal ROLLBACK statements."
+msgstr "Dahili ROLLBACK ifadesi sayısıdır."
+
+#: server_status.php:59
+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."
+
+#: server_status.php:60
+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."
+
+#: server_status.php:61
+msgid "The number of pages containing data (dirty or clean)."
+msgstr "Veri içeren sayfa sayısıdır (dolu veya temiz)."
+
+#: server_status.php:62
+msgid "The number of pages currently dirty."
+msgstr "Şu anki dolu sayfa sayısıdır."
+
+#: server_status.php:63
+msgid "The number of buffer pool pages that have been requested to be flushed."
+msgstr "Temizlenmesi için istenmiş ara bellek havuz sayfa sayısıdır."
+
+#: server_status.php:64
+msgid "The number of free pages."
+msgstr "Boş sayfa sayısıdır."
+
+#: server_status.php:65
+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 ""
+"InnoDB ara bellek havuzunda sabitlenmiş sayfa sayısıdır. Bunlar şu anki "
+"okunan veya yazılmış ya da bazı diğer sebepler yüzünden temizlenemeyen veya "
+"taşınamayan sayfalardır."
+
+#: server_status.php:66
+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 "
+"be calculated as Innodb_buffer_pool_pages_total - "
+"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data."
+msgstr ""
+"Meşgul sayfa sayısıdır çünkü bunlar satır kilitleri veya uyarlamalı "
+"adresleme indeksi gibi yönetimsel ek yük için ayrılmıştır. Bu değer aynı "
+"zamanda Innodb_buffer_pool_pages_total - Innodb_buffer_pool_pages_free - "
+"Innodb_buffer_pool_pages_data değerleri gibi hesaplanabilir."
+
+#: server_status.php:67
+msgid "Total size of buffer pool, in pages."
+msgstr "Sayfalardaki ara bellek havuzunun toplam boyutudur."
+
+#: server_status.php:68
+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 ""
+"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."
+
+#: server_status.php:69
+msgid ""
+"The number of sequential read-aheads InnoDB initiated. This happens when "
+"InnoDB does a sequential full table scan."
+msgstr ""
+"InnoDB sıralı önden okuma başlatımı sayısıdır. InnoDB sıralı tam tablo "
+"taraması yaptığı zaman bu olur."
+
+#: server_status.php:70
+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."
+
+#: server_status.php:71
+msgid ""
+"The number of logical reads that InnoDB could not satisfy from buffer pool "
+"and had to do a single-page read."
+msgstr ""
+"InnoDB'nin ara bellek havuzundan tatmin olamadığı ve tek-sayfa okuması "
+"yapmak zorunda olduğu mantıksal okuma sayısıdır."
+
+#: server_status.php:72
+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 "
+"available, it's necessary to wait for pages to be flushed first. This "
+"counter counts instances of these waits. If the buffer pool size was set "
+"properly, this value should be small."
+msgstr ""
+"Normal olarak arkaplanda olan InnoDB ara bellek havuzuna yazılır. Ancak, "
+"eğer sayfa oluşturma veya okuma gerekliyse ve temiz sayfalar yoksa önce "
+"sayfaların temizlenmesi için beklenmesi gereklidir. Bu sayaç bu bekleme "
+"durumlarını sayar. Eğer ara bellek havuzu boyutu düzgün bir şekilde "
+"ayarlandıysa, bu değer küçük olmalıdır."
+
+#: server_status.php:73
+msgid "The number writes done to the InnoDB buffer pool."
+msgstr "InnoDB ara bellek havuzuna bitti yazma sayısıdır."
+
+#: server_status.php:74
+msgid "The number of fsync() operations so far."
+msgstr "Şimdiye kadarki fsync() işlem sayısıdır."
+
+#: server_status.php:75
+msgid "The current number of pending fsync() operations."
+msgstr "Şu anki bekleyen fsync() işlem sayısıdır."
+
+#: server_status.php:76
+msgid "The current number of pending reads."
+msgstr "Şu anki bekleyen okuma sayısıdır."
+
+#: server_status.php:77
+msgid "The current number of pending writes."
+msgstr "Şu anki bekleyen yazma sayısıdır."
+
+#: server_status.php:78
+msgid "The amount of data read so far, in bytes."
+msgstr "Bayt cinsinden şimdiye kadarki veri okuma miktarıdır."
+
+#: server_status.php:79
+msgid "The total number of data reads."
+msgstr "Toplam veri okuma sayısıdır."
+
+#: server_status.php:80
+msgid "The total number of data writes."
+msgstr "Toplam veri yazma sayısıdır."
+
+#: server_status.php:81
+msgid "The amount of data written so far, in bytes."
+msgstr "Bayt cinsinden şimdiye kadarki yazılmış veri miktarıdır."
+
+#: server_status.php:82
+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."
+
+#: server_status.php:83
+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."
+
+#: server_status.php:84
+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 ""
+"Sahip olunan bekleme sayısıdır çünkü günlük ara belleği çok küçük ve devam "
+"etmeden önce temizlenmesi için beklemek zorundayız."
+
+#: server_status.php:85
+msgid "The number of log write requests."
+msgstr "Günlük yazma isteği sayısıdır."
+
+#: server_status.php:86
+msgid "The number of physical writes to the log file."
+msgstr "Günlük dosyasına fiziksel yazma sayısıdır."
+
+#: server_status.php:87
+msgid "The number of fsync() writes done to the log file."
+msgstr "Günlük dosyasına bitmiş fsyncs yazma sayısıdır."
+
+#: server_status.php:88
+msgid "The number of pending log file fsyncs."
+msgstr "Bekleyen günlük dosyası fsyncs sayısıdır."
+
+#: server_status.php:89
+msgid "Pending log file writes."
+msgstr "Bekleyen günlük dosyası yazma sayısıdır."
+
+#: server_status.php:90
+msgid "The number of bytes written to the log file."
+msgstr "Günlük dosyasına yazılı bayt sayısıdır."
+
+#: server_status.php:91
+msgid "The number of pages created."
+msgstr "Oluşturulmuş sayfa sayısıdır."
+
+#: server_status.php:92
+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 ""
+"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."
+
+#: server_status.php:93
+msgid "The number of pages read."
+msgstr "Okunan sayfa sayısıdır."
+
+#: server_status.php:94
+msgid "The number of pages written."
+msgstr "Yazılmış sayfa sayısıdır."
+
+#: server_status.php:95
+msgid "The number of row locks currently being waited for."
+msgstr "Şu anki beklenen satır kilidi sayısıdır."
+
+#: server_status.php:96
+msgid "The average time to acquire a row lock, in milliseconds."
+msgstr "Milisaniye cinsinden satır kilidi elde etmek için ortalama süredir."
+
+#: server_status.php:97
+msgid "The total time spent in acquiring row locks, in milliseconds."
+msgstr ""
+"Milisaniye cinsinden satır kilidi elde ederken harcanmış toplam süredir."
+
+#: server_status.php:98
+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."
+
+#: server_status.php:99
+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."
+
+#: server_status.php:100
+msgid "The number of rows deleted from InnoDB tables."
+msgstr "InnoDB tablolarından silinen satır sayısıdır."
+
+#: server_status.php:101
+msgid "The number of rows inserted in InnoDB tables."
+msgstr "InnoDB tablolarına eklenen satır sayısıdır."
+
+#: server_status.php:102
+msgid "The number of rows read from InnoDB tables."
+msgstr "InnoDB tablolarından okunan satır sayısıdır."
+
+#: server_status.php:103
+msgid "The number of rows updated in InnoDB tables."
+msgstr "InnoDB tablolarında güncellenen satır sayısıdır."
+
+#: server_status.php:104
+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 ""
+"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."
+
+#: server_status.php:105
+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 ""
+"Anahtar önbelleğinde kullanılmayan blok sayısıdır. Bu değeri anahtar "
+"önbelleğinin ne kadarının kullanımda olmasını belirlemek için "
+"kullanabilirsiniz."
+
+#: server_status.php:106
+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 ""
+"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."
+
+#: server_status.php:107
+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."
+
+#: server_status.php:108
+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 ""
+"Diskten anahtar bloğunun fiziksel okunma sayısıdır. Eğer Key_reads değeri "
+"büyükse, key_buffer_size değeriniz muhtemelen çok küçüktür. Eksik önbellek "
+"oranı Key_reads/Key_read_requests olarak hesaplanabilir."
+
+#: server_status.php:109
+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."
+
+#: server_status.php:110
+msgid "The number of physical writes of a key block to disk."
+msgstr "Diske anahtar bloğunu fiziksel yazma sayısıdır."
+
+#: server_status.php:111
+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 ""
+"Sorgu en iyileyicisi tarafından hesaplanmış gibi son derlenen sorgunun "
+"toplam maliyetidir. Aynı sorgu için farklı sorgu planlarının maliyetini "
+"karşılaştırmak için yararlıdır. Varsayılan değer 0, henüz derlenmiş sorgu "
+"olmadığı anlamına gelir."
+
+#: server_status.php:112
+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."
+
+#: server_status.php:113
+msgid ""
+"The number of tables that have been opened. If opened tables is big, your "
+"table cache value is probably too small."
+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."
+
+#: server_status.php:114
+msgid "The number of files that are open."
+msgstr "Açık olan dosya sayısıdır."
+
+#: server_status.php:115
+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)."
+
+#: server_status.php:116
+msgid "The number of tables that are open."
+msgstr "Açık olan tablo sayısıdır."
+
+#: server_status.php:117
+msgid "The number of free memory blocks in query cache."
+msgstr "Sorgu önbelleğindeki boş bellek bloğu sayısıdır."
+
+#: server_status.php:118
+msgid "The amount of free memory for query cache."
+msgstr "Sorgu önbelleği için boş bellek miktarıdır."
+
+#: server_status.php:119
+msgid "The number of cache hits."
+msgstr "Önbelleğe ulaşma sayısıdır."
+
+#: server_status.php:120
+msgid "The number of queries added to the cache."
+msgstr "Önbelleğe eklenen sorgu sayısıdır."
+
+#: server_status.php:121
+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 "
+"cache size. The query cache uses a least recently used (LRU) strategy to "
+"decide which queries to remove from the cache."
+msgstr ""
+"Yeni sorguları önbelleklemek için belleği boşaltmaya yönelik önbellekten "
+"kaldırılmış sorgu sayısıdır. Bu bilgi sorgu önbellek boyutunu ayarlamınıza "
+"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."
+
+#: server_status.php:122
+msgid ""
+"The number of non-cached queries (not cachable, or not cached due to the "
+"query_cache_type setting)."
+msgstr ""
+"Önbelleklenmemiş sorgu sayısıdır (önbelleklenemez, ya da query_cache_type "
+"ayarından dolayı önbelleklenmedi)."
+
+#: server_status.php:123
+msgid "The number of queries registered in the cache."
+msgstr "Önbellekte kayıtlı sorgu sayısıdır."
+
+#: server_status.php:124
+msgid "The total number of blocks in the query cache."
+msgstr "Sorgu önbelleği içindeki toplam blok sayısıdır."
+
+#: server_status.php:125
+msgctxt "$strShowStatusReset"
+msgid "Reset"
+msgstr "Sıfırla"
+
+#: server_status.php:126
+msgid "The status of failsafe replication (not yet implemented)."
+msgstr "Arıza-güvenli kopya etme durumu (henüz tamamlanmadı)."
+
+#: server_status.php:127
+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 ""
+"İ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."
+
+#: server_status.php:128
+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."
+
+#: server_status.php:129
+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 ""
+"Her bir satırdan sonra anahtar kullanımını kontrol eden anahtarsız "
+"birleştirme sayısıdır. (Eğer bu değer 0 değilse, tablolarınızın indekslerini "
+"dikkatli olarak kontrol etmelisiniz.)"
+
+#: server_status.php:130
+msgid ""
+"The number of joins that used ranges on the first table. (It's normally not "
+"critical even if this is big.)"
+msgstr ""
+"İlk tabloda aralıkları kullanan birleştirme sayısıdır. (Normal olarak "
+"kusurlu değildir, eğer büyükse bile.)"
+
+#: server_status.php:131
+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."
+
+#: server_status.php:132
+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."
+
+#: server_status.php:133
+msgid ""
+"Total (since startup) number of times the replication slave SQL thread has "
+"retried transactions."
+msgstr ""
+"Kopya edilen slave SQL işleminin yeniden denediği işlerin toplam "
+"(başlangıçtan beri) süre sayısıdır."
+
+#: server_status.php:134
+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."
+
+#: server_status.php:135
+msgid ""
+"The number of threads that have taken more than slow_launch_time seconds to "
+"create."
+msgstr ""
+"Oluşturmak için slow_launch_time saniyeden daha uzun zaman almış işlem "
+"sayısıdır."
+
+#: server_status.php:136
+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."
+
+#: server_status.php:137
+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 ""
+"Yapılması zorunlu sıralama algoritması birleştirme geçişi sayısıdır. Eğer bu "
+"değer büyükse, sort_buffer_size sistem değişkeninin değerini arttırmayı "
+"dikkate almalısınız."
+
+#: server_status.php:138
+msgid "The number of sorts that were done with ranges."
+msgstr "Aralıklarla yapılmış sıralama sayısıdır."
+
+#: server_status.php:139
+msgid "The number of sorted rows."
+msgstr "Sıralanmış satır sayısıdır."
+
+#: server_status.php:140
+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."
+
+#: server_status.php:141
+msgid "The number of times that a table lock was acquired immediately."
+msgstr "Tablo kilidinin hemen tanındığı süre sayısıdır."
+
+#: server_status.php:142
+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 "
+"should first optimize your queries, and then either split your table or "
+"tables or use replication."
+msgstr ""
+"Tablo kilidinin hemen tanınamadığı ve beklemenin gerektiği süre sayısıdır. "
+"Eğer bu değer yüksekse ve performans sorununuz varsa, önce sorgularınızı "
+"uyarlamalısınız ve sonra ya tablonuzu ya da tablolarınızı bölün veya kopya "
+"etmeyi kullanın."
+
+#: server_status.php:143
+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 ""
+"İşlem önbelleği içinde işlem sayısıdır. Önbelleğe ulaşma hızı "
+"Threads_created/Bağlantılar olarak hesaplanabilir. Eğer bu değer kırmızı "
+"ise, thread_cache_size boyutunuzu yükseltmelisiniz."
+
+#: server_status.php:144
+msgid "The number of currently open connections."
+msgstr "Şu anki açık bağlantı sayısıdır."
+
+#: server_status.php:145
+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 "
+"doesn't give a notable performance improvement if you have a good thread "
+"implementation.)"
+msgstr ""
+"Bağlantıları işlemek için oluşturulmuş işlem sayısıdır. Eğer Threads_created "
+"değeri büyük ise, thread_cache_size değerini arttırmak isteyebilirsiniz. "
+"(eğer iyi bir işlem uygulamasına sahipseniz, normal olarak bu, dikkate değer "
+"bir performans artışı vermez.)"
+
+#: server_status.php:146
+msgid "The number of threads that are not sleeping."
+msgstr "Hala faaliyette olan işlemler sayısıdır."
+
+#: server_status.php:157
msgid "Runtime Information"
msgstr "Çalışma Süresi Bilgisi"
-#: server_status.php:250
+#: server_status.php:361
msgid "Handler"
msgstr "Denetimci"
-#: server_status.php:251
+#: server_status.php:362
msgid "Query cache"
msgstr "Sorgu önbelleği"
-#: server_status.php:252
+#: server_status.php:363
msgid "Threads"
msgstr "İşlemler"
-#: server_status.php:254
+#: server_status.php:365
msgid "Temporary data"
msgstr "Geçici veri"
-#: server_status.php:255
+#: server_status.php:366
msgid "Delayed inserts"
msgstr "Gecikmiş eklemeler"
-#: server_status.php:256
+#: server_status.php:367
msgid "Key cache"
msgstr "Anahtar önbelleği"
-#: server_status.php:257
+#: server_status.php:368
msgid "Joins"
msgstr "Birleştirmeler"
-#: server_status.php:259
+#: server_status.php:370
msgid "Sorting"
msgstr "Sıralama"
-#: server_status.php:261
+#: server_status.php:372
msgid "Transaction coordinator"
msgstr "İşlem koordinatörü"
-#: server_status.php:271
+#: server_status.php:382
msgid "Flush (close) all tables"
msgstr "Tüm tabloları temizle (kapat)"
-#: server_status.php:273
+#: server_status.php:384
msgid "Show open tables"
msgstr "Açık tabloları göster"
-#: server_status.php:278
+#: server_status.php:389
msgid "Show slave hosts"
msgstr "Slave anamakineleri göster"
-#: server_status.php:284
+#: server_status.php:395
msgid "Show slave status"
msgstr "Slave durumunu göster"
-#: server_status.php:289
+#: server_status.php:400
msgid "Flush query cache"
msgstr "Sorgu önbelleğini temizle"
-#: server_status.php:294
+#: server_status.php:405
msgid "Show processes"
msgstr "İşlemleri göster"
-#: server_status.php:344
+#: server_status.php:455
#, fuzzy
#| msgid "Reset"
msgctxt "for Show status"
msgid "Reset"
msgstr "Sıfırla"
-#: server_status.php:350
+#: server_status.php:461
#, php-format
msgid "This MySQL server has been running for %s. It started up on %s."
msgstr "Bu MySQL sunucusunun çalışma süresi: %s. Başlatıldığı zaman: %s."
-#: server_status.php:360
+#: server_status.php:471
#, fuzzy
#| msgid "This server is configured as master in a replication process."
msgid ""
@@ -5982,21 +5994,21 @@ msgid ""
msgstr ""
"Bu sunucu kopya etme işlemi sırasında asıl sunucu olarak yapılandırıldı."
-#: server_status.php:362
+#: server_status.php:473
#, fuzzy
#| msgid "This server is configured as master in a replication process."
msgid "This MySQL server works as master in replication process."
msgstr ""
"Bu sunucu kopya etme işlemi sırasında asıl sunucu olarak yapılandırıldı."
-#: server_status.php:364
+#: server_status.php:475
#, fuzzy
#| msgid "This server is configured as master in a replication process."
msgid "This MySQL server works as slave in replication process."
msgstr ""
"Bu sunucu kopya etme işlemi sırasında asıl sunucu olarak yapılandırıldı."
-#: server_status.php:366
+#: server_status.php:477
#, fuzzy
#| msgid ""
#| "This MySQL server works as %s in replication process. For further "
@@ -6010,7 +6022,7 @@ msgstr ""
"Sunucudaki kopya etme durumuyla ilgili daha ayrıntılı bilgi için lütfen kopya etme bölümünü ziyaret edin."
-#: server_status.php:383
+#: server_status.php:494
msgid ""
"Server traffic: These tables show the network traffic statistics of "
"this MySQL server since its startup."
@@ -6018,11 +6030,11 @@ msgstr ""
"Sunucu trafiği: Bu tablolar sunucunun başlatıldığı andan itibaren "
"MySQL sunucusunun ağ trafiği istatistiklerini gösterir."
-#: server_status.php:388
+#: server_status.php:499
msgid "Traffic"
msgstr "Trafik"
-#: server_status.php:388
+#: server_status.php:499
msgid ""
"On a busy server, the byte counters may overrun, so those statistics as "
"reported by the MySQL server may be incorrect."
@@ -6030,36 +6042,36 @@ msgstr ""
"Meşgul sunucu üzerinde, bayt sayaçları aşırı işleyebilir, bu yüzden MySQL "
"sunucusu tarafından raporlanan istatistikler doğru olmayabilir."
-#: server_status.php:389 server_status.php:434 server_status.php:497
-#: server_status.php:555
+#: server_status.php:500 server_status.php:545 server_status.php:608
+#: server_status.php:666
msgid "per hour"
msgstr "saat başına"
-#: server_status.php:394
+#: server_status.php:505
msgid "Received"
msgstr "Alınan"
-#: server_status.php:404
+#: server_status.php:515
msgid "Sent"
msgstr "Gönderilen"
-#: server_status.php:433
+#: server_status.php:544
msgid "Connections"
msgstr "Bağlantılar"
-#: server_status.php:440
+#: server_status.php:551
msgid "max. concurrent connections"
msgstr "En fazla eşzamanlı bağlantı"
-#: server_status.php:447
+#: server_status.php:558
msgid "Failed attempts"
msgstr "Başarısız deneme"
-#: server_status.php:461
+#: server_status.php:572
msgid "Aborted"
msgstr "İptal edilen"
-#: server_status.php:490
+#: server_status.php:601
#, php-format
msgid ""
"Query statistics: Since its startup, %s queries have been sent to the "
@@ -6067,19 +6079,19 @@ msgid ""
msgstr ""
"Sorgu istatistikleri: Başlangıçtan beri sunucuya %s sorgu gönderildi."
-#: server_status.php:498
+#: server_status.php:609
msgid "per minute"
msgstr "dakika başına"
-#: server_status.php:499
+#: server_status.php:610
msgid "per second"
msgstr "saniye başına"
-#: server_status.php:554
+#: server_status.php:665
msgid "Query type"
msgstr "Sorgu türü"
-#: server_status.php:721
+#: server_status.php:832
msgid "Replication status"
msgstr "Kopya etme durumu"
diff --git a/po/tt.po b/po/tt.po
index f9238f5ec..c520b364f 100755
--- a/po/tt.po
+++ b/po/tt.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-06-04 16:07-0400\n"
+"POT-Creation-Date: 2010-06-08 12:32-0400\n"
"PO-Revision-Date: 2010-03-30 23:14+0200\n"
"Last-Translator: Michal \n"
"Language-Team: tatarish \n"
@@ -15,11 +15,11 @@ msgstr ""
"X-Generator: Pootle 2.0.1\n"
#: browse_foreigners.php:38 browse_foreigners.php:59
-#: libraries/display_tbl.lib.php:417 server_privileges.php:1475
+#: libraries/display_tbl.lib.php:417 server_privileges.php:1514
msgid "Show all"
msgstr "Barısın kürsät"
-#: browse_foreigners.php:82 libraries/common.lib.php:2304
+#: browse_foreigners.php:82 libraries/common.lib.php:2313
#: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:394
#: libraries/export/pdf.php:147 pdf_schema.php:283 pdf_schema.php:1123
#: pdf_schema.php:1139
@@ -38,8 +38,8 @@ msgstr ""
#: browse_foreigners.php:150 db_structure.php:79 db_structure.php:80
#: db_structure.php:91 db_structure.php:93 db_structure.php:104
-#: db_structure.php:106 libraries/common.lib.php:2822
-#: libraries/common.lib.php:2829 libraries/db_links.inc.php:75
+#: db_structure.php:106 libraries/common.lib.php:2831
+#: libraries/common.lib.php:2838 libraries/db_links.inc.php:75
#: libraries/tbl_links.inc.php:63
msgid "Search"
msgstr "Ezläw"
@@ -49,7 +49,7 @@ msgstr "Ezläw"
#: db_structure.php:567 js/messages.php:48 libraries/Config.class.php:1046
#: libraries/Theme_Manager.class.php:311
#: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719
-#: libraries/common.lib.php:1333 libraries/common.lib.php:2279
+#: libraries/common.lib.php:1335 libraries/common.lib.php:2288
#: libraries/display_change_password.lib.php:82
#: libraries/display_create_table.lib.php:63
#: libraries/display_export.lib.php:275 libraries/display_import.lib.php:276
@@ -60,9 +60,9 @@ msgstr "Ezläw"
#: libraries/sql_query_form.lib.php:552 libraries/tbl_properties.inc.php:782
#: main.php:128 navigation.php:237 pdf_pages.php:292 pdf_pages.php:328
#: pdf_pages.php:530 pmd_pdf.php:116 server_binlog.php:142
-#: server_privileges.php:625 server_privileges.php:1585
-#: server_privileges.php:1932 server_privileges.php:1979
-#: server_privileges.php:2018 server_replication.php:235
+#: server_privileges.php:664 server_privileges.php:1624
+#: server_privileges.php:1971 server_privileges.php:2018
+#: server_privileges.php:2057 server_replication.php:235
#: server_replication.php:318 server_replication.php:341
#: server_synchronize.php:1209 tbl_change.php:330 tbl_change.php:1174
#: tbl_change.php:1211 tbl_indexes.php:254 tbl_operations.php:265
@@ -80,7 +80,7 @@ msgstr "Tezeş adı"
#: browse_foreigners.php:169 browse_foreigners.php:171
#: server_collations.php:55 server_collations.php:67 server_engines.php:59
-#: server_status.php:628
+#: server_status.php:739
msgid "Description"
msgstr "Açıqlama"
@@ -121,7 +121,7 @@ msgstr "Alan iseme"
#: libraries/db_structure.lib.php:60 libraries/export/htmlword.php:245
#: libraries/export/latex.php:360 libraries/export/odt.php:297
#: libraries/export/texytext.php:234 libraries/tbl_properties.inc.php:100
-#: pdf_schema.php:1263 pdf_schema.php:1284 server_privileges.php:2031
+#: pdf_schema.php:1263 pdf_schema.php:1284 server_privileges.php:2070
#: tbl_change.php:287 tbl_change.php:314 tbl_printview.php:143
#: tbl_printview.php:313 tbl_select.php:136 tbl_structure.php:178
#: tbl_structure.php:659 tbl_tracking.php:274 tbl_tracking.php:321
@@ -165,9 +165,9 @@ msgstr "Açıqlama"
#: libraries/Index.class.php:386 libraries/export/htmlword.php:322
#: libraries/export/latex.php:430 libraries/export/odt.php:368
#: libraries/export/texytext.php:311 libraries/mult_submits.inc.php:263
-#: pdf_schema.php:1344 server_privileges.php:1529 server_privileges.php:1540
-#: server_privileges.php:1850 server_privileges.php:1855
-#: server_privileges.php:2148 sql.php:132 sql.php:194 tbl_printview.php:229
+#: pdf_schema.php:1344 server_privileges.php:1568 server_privileges.php:1579
+#: server_privileges.php:1889 server_privileges.php:1894
+#: server_privileges.php:2187 sql.php:132 sql.php:194 tbl_printview.php:229
#: tbl_structure.php:350 tbl_tracking.php:337 tbl_tracking.php:342
msgid "No"
msgstr "Yuq"
@@ -181,9 +181,9 @@ msgstr "Yuq"
#: libraries/mult_submits.inc.php:101 libraries/mult_submits.inc.php:106
#: libraries/mult_submits.inc.php:111 libraries/mult_submits.inc.php:262
#: libraries/mult_submits.inc.php:273 pdf_schema.php:1344
-#: server_databases.php:64 server_privileges.php:1526
-#: server_privileges.php:1540 server_privileges.php:1850
-#: server_privileges.php:1853 server_privileges.php:2148 sql.php:193
+#: server_databases.php:64 server_privileges.php:1565
+#: server_privileges.php:1579 server_privileges.php:1889
+#: server_privileges.php:1892 server_privileges.php:2187 sql.php:193
#: tbl_printview.php:229 tbl_structure.php:40 tbl_structure.php:350
#: tbl_tracking.php:335 tbl_tracking.php:340
msgid "Yes"
@@ -280,7 +280,7 @@ msgstr "Kübäytelgän biremlekkä küçäse"
msgid "BLOB Repository"
msgstr ""
-#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1350
+#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1352
#: libraries/server_links.inc.php:49 server_processlist.php:59
#: tbl_tracking.php:596 test/theme.php:101
msgid "Status"
@@ -344,8 +344,8 @@ msgstr "PDF-Bitlär Üzgärtü"
#: db_printview.php:104 db_tracking.php:72 db_tracking.php:157
#: libraries/db_structure.lib.php:46 libraries/export/xml.php:328
-#: libraries/header.inc.php:126 pdf_pages.php:424 server_privileges.php:1626
-#: server_privileges.php:1682 server_privileges.php:1946
+#: libraries/header.inc.php:126 pdf_pages.php:424 server_privileges.php:1665
+#: server_privileges.php:1721 server_privileges.php:1985
#: server_synchronize.php:423 server_synchronize.php:866 tbl_tracking.php:592
#: test/theme.php:75
msgid "Table"
@@ -445,7 +445,7 @@ msgstr "Sal"
#: db_qbe.php:370 db_qbe.php:451 db_qbe.php:522 db_qbe.php:553
#: libraries/display_import.lib.php:166 libraries/tbl_properties.inc.php:779
-#: server_privileges.php:258 tbl_change.php:1031 tbl_indexes.php:250
+#: server_privileges.php:297 tbl_change.php:1031 tbl_indexes.php:250
#: tbl_select.php:288
msgid "Or"
msgstr "Yä"
@@ -479,7 +479,7 @@ msgstr "Tüşämä qullanıp"
msgid "SQL query on database %s:"
msgstr "%s biremlegenä SQL-soraw:"
-#: db_qbe.php:934 libraries/common.lib.php:1223
+#: db_qbe.php:934 libraries/common.lib.php:1225
msgid "Submit Query"
msgstr "Sorawnı Yulla"
@@ -518,7 +518,7 @@ msgstr "%s kileşü bar, %s atlı tüşämädä"
#: db_search.php:267 db_structure.php:77 db_structure.php:78
#: db_structure.php:90 db_structure.php:92 db_structure.php:103
-#: db_structure.php:105 libraries/common.lib.php:2824
+#: db_structure.php:105 libraries/common.lib.php:2833
#: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50
#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:467
msgid "Browse"
@@ -565,26 +565,26 @@ msgstr "Kiläse tüşämä eçendä:"
#: db_structure.php:81 db_structure.php:82 db_structure.php:94
#: db_structure.php:95 db_structure.php:107 db_structure.php:108
-#: libraries/common.lib.php:2823 libraries/sql_query_form.lib.php:334
+#: libraries/common.lib.php:2832 libraries/sql_query_form.lib.php:334
#: libraries/sql_query_form.lib.php:337 libraries/tbl_links.inc.php:76
msgid "Insert"
msgstr "Östäw"
#: db_structure.php:83 db_structure.php:96 db_structure.php:109
-#: libraries/common.lib.php:2820 libraries/common.lib.php:2827
+#: libraries/common.lib.php:2829 libraries/common.lib.php:2836
#: libraries/db_links.inc.php:63 libraries/export/htmlword.php:23
#: libraries/export/latex.php:33 libraries/export/latex.php:337
#: libraries/export/odt.php:32 libraries/export/sql.php:60
#: libraries/export/texytext.php:23 libraries/import.lib.php:1104
#: libraries/tbl_links.inc.php:56 pmd_general.php:134
-#: server_privileges.php:554 server_replication.php:315 tbl_tracking.php:269
+#: server_privileges.php:593 server_replication.php:315 tbl_tracking.php:269
msgid "Structure"
msgstr "Tözeleş"
#: db_structure.php:84 db_structure.php:85 db_structure.php:97
#: db_structure.php:98 db_structure.php:110 db_structure.php:111
#: db_structure.php:545 db_structure.php:546 db_tracking.php:91
-#: libraries/Index.class.php:483 libraries/common.lib.php:1654
+#: libraries/Index.class.php:483 libraries/common.lib.php:1656
#: libraries/db_links.inc.php:100 libraries/mult_submits.inc.php:36
#: libraries/mult_submits.inc.php:73 libraries/tbl_links.inc.php:127
#: server_databases.php:352 tbl_structure.php:27 tbl_structure.php:151
@@ -594,7 +594,7 @@ msgstr "Beter"
#: db_structure.php:86 db_structure.php:87 db_structure.php:99
#: db_structure.php:100 db_structure.php:112 db_structure.php:113
-#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1653
+#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1655
#: libraries/mult_submits.inc.php:39 libraries/tbl_links.inc.php:105
msgid "Empty"
msgstr "Buşat"
@@ -636,7 +636,7 @@ msgstr "Qaraş"
#: db_structure.php:485 libraries/db_structure.lib.php:49
#: libraries/server_links.inc.php:70 server_replication.php:33
-#: server_replication.php:164 server_status.php:258
+#: server_replication.php:164 server_status.php:369
#, fuzzy
msgid "Replication"
msgstr "Bäyläneşlär"
@@ -653,20 +653,20 @@ msgstr "Bu MySQL-serverdä %s digän saqlaw ısulı töp bularaq saylanğan."
#: db_structure.php:524 db_structure.php:541 db_structure.php:542
#: libraries/display_tbl.lib.php:2081 libraries/display_tbl.lib.php:2086
#: libraries/mult_submits.inc.php:16 server_databases.php:346
-#: server_databases.php:351 server_privileges.php:1557 tbl_structure.php:455
+#: server_databases.php:351 server_privileges.php:1596 tbl_structure.php:455
#: tbl_structure.php:464
msgid "With selected:"
msgstr "Saylanğannı:"
#: db_structure.php:527 libraries/display_tbl.lib.php:2076
-#: server_databases.php:348 server_privileges.php:530
-#: server_privileges.php:1560 tbl_structure.php:458
+#: server_databases.php:348 server_privileges.php:569
+#: server_privileges.php:1599 tbl_structure.php:458
msgid "Check All"
msgstr "Saylap Beter"
#: db_structure.php:531 libraries/display_tbl.lib.php:2077
#: libraries/replication_gui.lib.php:33 server_databases.php:350
-#: server_privileges.php:533 server_privileges.php:1564 tbl_structure.php:462
+#: server_privileges.php:572 server_privileges.php:1603 tbl_structure.php:462
msgid "Uncheck All"
msgstr "Saylanunı Töşer"
@@ -704,7 +704,7 @@ msgstr "Tüşämä centekläw"
#: libraries/display_export.lib.php:83 libraries/display_tbl.lib.php:2094
#: libraries/display_tbl.lib.php:2225 libraries/mult_submits.inc.php:62
#: libraries/server_links.inc.php:84 libraries/tbl_links.inc.php:82
-#: pmd_pdf.php:84 pmd_pdf.php:109 server_privileges.php:1341
+#: pmd_pdf.php:84 pmd_pdf.php:109 server_privileges.php:1380
#: setup/frames/menu.inc.php:22 tbl_row_action.php:59
msgid "Export"
msgstr "Export"
@@ -723,8 +723,8 @@ msgstr "Tüşämä tikşerü"
#: libraries/export/sql.php:342 libraries/export/texytext.php:84
#: libraries/export/xml.php:255 libraries/header.inc.php:106
#: libraries/header_printview.inc.php:58 server_databases.php:169
-#: server_privileges.php:1621 server_privileges.php:1682
-#: server_privileges.php:1940 server_processlist.php:56
+#: server_privileges.php:1660 server_privileges.php:1721
+#: server_privileges.php:1979 server_processlist.php:56
#: server_synchronize.php:1179 server_synchronize.php:1183
#: tbl_tracking.php:591 test/theme.php:65
msgid "Database"
@@ -746,8 +746,8 @@ msgstr ""
#: db_tracking.php:77 libraries/Index.class.php:440
#: libraries/db_structure.lib.php:53 server_databases.php:203
-#: server_privileges.php:1503 server_privileges.php:1686
-#: server_privileges.php:2034 tbl_structure.php:187
+#: server_privileges.php:1542 server_privileges.php:1725
+#: server_privileges.php:2073 tbl_structure.php:187
msgid "Action"
msgstr "Eş"
@@ -941,11 +941,11 @@ msgstr "Host adı buş!"
msgid "The user name is empty!"
msgstr "Atama buş!"
-#: js/messages.php:44 server_privileges.php:1197 user_password.php:70
+#: js/messages.php:44 server_privileges.php:1236 user_password.php:70
msgid "The password is empty!"
msgstr "Sersüzeñ buş!"
-#: js/messages.php:45 server_privileges.php:1195 user_password.php:73
+#: js/messages.php:45 server_privileges.php:1234 user_password.php:73
msgid "The passwords aren't the same!"
msgstr "Sersüzlär berbersenä kileşmi!"
@@ -1025,8 +1025,8 @@ msgid "Prev"
msgstr "Uzğan"
#. l10n: Display text for next month link in calendar
-#: js/messages.php:77 libraries/common.lib.php:2344
-#: libraries/common.lib.php:2347 libraries/display_tbl.lib.php:338
+#: js/messages.php:77 libraries/common.lib.php:2353
+#: libraries/common.lib.php:2356 libraries/display_tbl.lib.php:338
#: server_binlog.php:205 server_binlog.php:207 tbl_printview.php:424
#: tbl_structure.php:801
msgid "Next"
@@ -1102,27 +1102,27 @@ msgid "December"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:97 libraries/common.lib.php:1555
+#: js/messages.php:97 libraries/common.lib.php:1557
msgid "Jan"
msgstr "Ğın"
#. l10n: Short month name
-#: js/messages.php:99 libraries/common.lib.php:1557
+#: js/messages.php:99 libraries/common.lib.php:1559
msgid "Feb"
msgstr "Feb"
#. l10n: Short month name
-#: js/messages.php:101 libraries/common.lib.php:1559
+#: js/messages.php:101 libraries/common.lib.php:1561
msgid "Mar"
msgstr "Mar"
#. l10n: Short month name
-#: js/messages.php:103 libraries/common.lib.php:1561
+#: js/messages.php:103 libraries/common.lib.php:1563
msgid "Apr"
msgstr "Äpr"
#. l10n: Short month name
-#: js/messages.php:105 libraries/common.lib.php:1563
+#: js/messages.php:105 libraries/common.lib.php:1565
#, fuzzy
#| msgid "May"
msgctxt "Short month name"
@@ -1130,37 +1130,37 @@ msgid "May"
msgstr "May"
#. l10n: Short month name
-#: js/messages.php:107 libraries/common.lib.php:1565
+#: js/messages.php:107 libraries/common.lib.php:1567
msgid "Jun"
msgstr "Yün"
#. l10n: Short month name
-#: js/messages.php:109 libraries/common.lib.php:1567
+#: js/messages.php:109 libraries/common.lib.php:1569
msgid "Jul"
msgstr "Yül"
#. l10n: Short month name
-#: js/messages.php:111 libraries/common.lib.php:1569
+#: js/messages.php:111 libraries/common.lib.php:1571
msgid "Aug"
msgstr "Aug"
#. l10n: Short month name
-#: js/messages.php:113 libraries/common.lib.php:1571
+#: js/messages.php:113 libraries/common.lib.php:1573
msgid "Sep"
msgstr "Sen"
#. l10n: Short month name
-#: js/messages.php:115 libraries/common.lib.php:1573
+#: js/messages.php:115 libraries/common.lib.php:1575
msgid "Oct"
msgstr "Ökt"
#. l10n: Short month name
-#: js/messages.php:117 libraries/common.lib.php:1575
+#: js/messages.php:117 libraries/common.lib.php:1577
msgid "Nov"
msgstr "Nöy"
#. l10n: Short month name
-#: js/messages.php:119 libraries/common.lib.php:1577
+#: js/messages.php:119 libraries/common.lib.php:1579
msgid "Dec"
msgstr "Dek"
@@ -1201,37 +1201,37 @@ msgid "Saturday"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:132 libraries/common.lib.php:1580
+#: js/messages.php:132 libraries/common.lib.php:1582
msgid "Sun"
msgstr "Ykş"
#. l10n: Short week day name
-#: js/messages.php:134 libraries/common.lib.php:1582
+#: js/messages.php:134 libraries/common.lib.php:1584
msgid "Mon"
msgstr "Dşm"
#. l10n: Short week day name
-#: js/messages.php:136 libraries/common.lib.php:1584
+#: js/messages.php:136 libraries/common.lib.php:1586
msgid "Tue"
msgstr "Sşm"
#. l10n: Short week day name
-#: js/messages.php:138 libraries/common.lib.php:1586
+#: js/messages.php:138 libraries/common.lib.php:1588
msgid "Wed"
msgstr "Çrş"
#. l10n: Short week day name
-#: js/messages.php:140 libraries/common.lib.php:1588
+#: js/messages.php:140 libraries/common.lib.php:1590
msgid "Thu"
msgstr "Pnc"
#. l10n: Short week day name
-#: js/messages.php:142 libraries/common.lib.php:1590
+#: js/messages.php:142 libraries/common.lib.php:1592
msgid "Fri"
msgstr "Cmğ"
#. l10n: Short week day name
-#: js/messages.php:144 libraries/common.lib.php:1592
+#: js/messages.php:144 libraries/common.lib.php:1594
msgid "Sat"
msgstr "Şmb"
@@ -1376,7 +1376,7 @@ msgid "Comment"
msgstr "Açıqlama"
#: libraries/Index.class.php:466 libraries/common.lib.php:616
-#: libraries/common.lib.php:1199 libraries/display_tbl.lib.php:1117
+#: libraries/common.lib.php:1201 libraries/display_tbl.lib.php:1117
#: libraries/import.lib.php:1087 libraries/import.lib.php:1111
#: pdf_pages.php:285 setup/frames/index.inc.php:124
#: setup/lib/messages.inc.php:352 tbl_row_action.php:69
@@ -1400,7 +1400,7 @@ msgid ""
msgstr ""
#: libraries/List_Database.class.php:431 libraries/server_links.inc.php:41
-#: server_databases.php:88 server_privileges.php:1621
+#: server_databases.php:88 server_privileges.php:1660
#: setup/lib/messages.inc.php:110 test/theme.php:93
msgid "Databases"
msgstr "Biremleklär"
@@ -1731,7 +1731,7 @@ msgid "Documentation"
msgstr "Qullanma"
#: libraries/common.lib.php:595 libraries/header_printview.inc.php:61
-#: server_processlist.php:60 server_status.php:247
+#: server_processlist.php:60 server_status.php:358
msgid "SQL query"
msgstr "SQL-soraw"
@@ -1747,130 +1747,130 @@ msgstr "SQL Centekläw"
msgid "Skip Explain SQL"
msgstr "SQL Centeklämäskä"
-#: libraries/common.lib.php:1212
+#: libraries/common.lib.php:1214
msgid "Without PHP Code"
msgstr "PHP Kodısız"
-#: libraries/common.lib.php:1215 setup/lib/messages.inc.php:355
+#: libraries/common.lib.php:1217 setup/lib/messages.inc.php:355
msgid "Create PHP Code"
msgstr "PHP-Kod yasa"
-#: libraries/common.lib.php:1233 server_status.php:341
+#: libraries/common.lib.php:1235 server_status.php:452
#: setup/lib/messages.inc.php:354
msgid "Refresh"
msgstr "Yañart"
-#: libraries/common.lib.php:1242
+#: libraries/common.lib.php:1244
msgid "Skip Validate SQL"
msgstr "SQL Tikşermäskä"
-#: libraries/common.lib.php:1245 setup/lib/messages.inc.php:356 sql.php:518
+#: libraries/common.lib.php:1247 setup/lib/messages.inc.php:356 sql.php:518
msgid "Validate SQL"
msgstr "SQL'nı Tikşer"
-#: libraries/common.lib.php:1276
+#: libraries/common.lib.php:1278
msgid "Inline edit of this query"
msgstr ""
-#: libraries/common.lib.php:1278
+#: libraries/common.lib.php:1280
#, fuzzy
#| msgid "Engines"
msgid "Inline"
msgstr "Engine"
-#: libraries/common.lib.php:1332 libraries/common.lib.php:1347
+#: libraries/common.lib.php:1334 libraries/common.lib.php:1349
msgid "Profiling"
msgstr ""
-#: libraries/common.lib.php:1351 libraries/tbl_triggers.lib.php:28
+#: libraries/common.lib.php:1353 libraries/tbl_triggers.lib.php:28
#: server_processlist.php:58
msgid "Time"
msgstr "Waqıt"
#. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "B"
msgstr "Bayt"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "KiB"
msgstr "KB"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "MiB"
msgstr "MB"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "GiB"
msgstr "GB"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "TiB"
msgstr "TB"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "PiB"
msgstr "PB"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "EiB"
msgstr "EB"
#. l10n: Thousands separator
-#: libraries/common.lib.php:1417
+#: libraries/common.lib.php:1419
msgid ","
msgstr ","
#. l10n: Decimal separator
-#: libraries/common.lib.php:1419
+#: libraries/common.lib.php:1421
msgid "."
msgstr "."
#. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string
-#: libraries/common.lib.php:1596
+#: libraries/common.lib.php:1598
#: libraries/transformations/text_plain__dateformat.inc.php:34
msgid "%B %d, %Y at %I:%M %p"
msgstr "%Y.%m.%d, %H:%M"
-#: libraries/common.lib.php:1898
+#: libraries/common.lib.php:1907
#, 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/common.lib.php:2313 libraries/common.lib.php:2316
-#: libraries/display_tbl.lib.php:290 server_status.php:608
+#: libraries/common.lib.php:2322 libraries/common.lib.php:2325
+#: libraries/display_tbl.lib.php:290 server_status.php:719
msgid "Begin"
msgstr "Başlawğa"
-#: libraries/common.lib.php:2314 libraries/common.lib.php:2317
+#: libraries/common.lib.php:2323 libraries/common.lib.php:2326
#: libraries/display_tbl.lib.php:291 server_binlog.php:168
#: server_binlog.php:170
msgid "Previous"
msgstr "Uzğan"
-#: libraries/common.lib.php:2345 libraries/common.lib.php:2348
+#: libraries/common.lib.php:2354 libraries/common.lib.php:2357
#: libraries/display_tbl.lib.php:353
msgid "End"
msgstr "Azaq"
-#: libraries/common.lib.php:2421
+#: libraries/common.lib.php:2430
#, php-format
msgid "Jump to database "%s"."
msgstr ""%s" biremlegenä küç."
-#: libraries/common.lib.php:2441
+#: libraries/common.lib.php:2450
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr ""
-#: libraries/common.lib.php:2821 libraries/common.lib.php:2828
+#: libraries/common.lib.php:2830 libraries/common.lib.php:2837
#: libraries/db_links.inc.php:68 libraries/export/sql.php:25
#: libraries/import/sql.php:18 libraries/server_links.inc.php:45
#: libraries/tbl_links.inc.php:60 querywindow.php:99 test/theme.php:97
msgid "SQL"
msgstr "SQL"
-#: libraries/common.lib.php:2830 libraries/db_links.inc.php:104
+#: libraries/common.lib.php:2839 libraries/db_links.inc.php:104
#: libraries/tbl_links.inc.php:95 libraries/tbl_links.inc.php:117
#: view_operations.php:89
msgid "Operations"
@@ -1925,8 +1925,8 @@ msgid "Import"
msgstr "Yökläw"
#: libraries/db_links.inc.php:111 libraries/server_links.inc.php:66
-#: server_privileges.php:72 server_privileges.php:1683
-#: server_privileges.php:2032 test/theme.php:117
+#: server_privileges.php:111 server_privileges.php:1722
+#: server_privileges.php:2071 test/theme.php:117
msgid "Privileges"
msgstr "Xoquqlar"
@@ -1972,22 +1972,22 @@ msgid "Change password"
msgstr "Sersüz üzgärtü"
#: libraries/display_change_password.lib.php:35
-#: libraries/replication_gui.lib.php:345 server_privileges.php:768
+#: libraries/replication_gui.lib.php:345 server_privileges.php:807
msgid "No Password"
msgstr "Sersüzsez"
#: libraries/display_change_password.lib.php:41
#: libraries/replication_gui.lib.php:59 libraries/replication_gui.lib.php:60
#: libraries/replication_gui.lib.php:335 libraries/replication_gui.lib.php:339
-#: libraries/replication_gui.lib.php:349 server_privileges.php:757
-#: server_privileges.php:761 server_privileges.php:772
-#: server_privileges.php:1499 server_synchronize.php:1175
+#: libraries/replication_gui.lib.php:349 server_privileges.php:796
+#: server_privileges.php:800 server_privileges.php:811
+#: server_privileges.php:1538 server_synchronize.php:1175
msgid "Password"
msgstr "Sersüz"
#: libraries/display_change_password.lib.php:46
#: libraries/replication_gui.lib.php:353 libraries/replication_gui.lib.php:356
-#: server_privileges.php:776 server_privileges.php:779
+#: server_privileges.php:815 server_privileges.php:818
msgid "Re-type"
msgstr "Qabatla"
@@ -2002,12 +2002,12 @@ msgid "MySQL 4.0 compatible"
msgstr "MySQL 4.0 öçen yaraqlı"
#: libraries/display_change_password.lib.php:72
-#: libraries/replication_gui.lib.php:360 server_privileges.php:783
+#: libraries/replication_gui.lib.php:360 server_privileges.php:822
msgid "Generate Password"
msgstr "Sersüz Ürçetü"
#: libraries/display_change_password.lib.php:75
-#: libraries/replication_gui.lib.php:363 server_privileges.php:786
+#: libraries/replication_gui.lib.php:363 server_privileges.php:825
msgid "Generate"
msgstr "Ürçet"
@@ -2020,8 +2020,8 @@ msgstr "Yaña biremlek yaratu"
msgid "Create"
msgstr "Yarat"
-#: libraries/display_create_database.lib.php:40 server_privileges.php:74
-#: server_privileges.php:1388 server_replication.php:35
+#: libraries/display_create_database.lib.php:40 server_privileges.php:113
+#: server_privileges.php:1427 server_replication.php:35
msgid "No Privileges"
msgstr "Xoquqsız"
@@ -2110,7 +2110,7 @@ msgstr "Qısu"
#: libraries/display_export.lib.php:240 libraries/display_import.lib.php:197
#: libraries/display_import.lib.php:210 libraries/display_tbl.lib.php:530
#: libraries/export/sql.php:868 libraries/tbl_properties.inc.php:575
-#: server_privileges.php:1836 server_processlist.php:75
+#: server_privileges.php:1875 server_processlist.php:75
msgid "None"
msgstr "Buş"
@@ -2433,7 +2433,7 @@ msgstr ""
msgid "Buffer Pool"
msgstr "Bufer Pulı"
-#: libraries/engines/innodb.lib.php:145 server_status.php:306
+#: libraries/engines/innodb.lib.php:145 server_status.php:417
msgid "InnoDB Status"
msgstr "InnoDB Torışı"
@@ -2442,8 +2442,8 @@ msgid "Buffer Pool Usage"
msgstr "Bufer Pul Totılğanlığı"
#: libraries/engines/innodb.lib.php:194 server_databases.php:137
-#: server_databases.php:305 server_status.php:414 server_status.php:475
-#: server_status.php:496 tbl_printview.php:351 tbl_structure.php:696
+#: server_databases.php:305 server_status.php:525 server_status.php:586
+#: server_status.php:607 tbl_printview.php:351 tbl_structure.php:696
msgid "Total"
msgstr "Tulayım"
@@ -2775,7 +2775,7 @@ msgstr "Microsoft Word 2000"
#: libraries/export/latex.php:201 libraries/export/odt.php:48
#: libraries/export/sql.php:106 libraries/export/sql.php:868
#: libraries/export/texytext.php:27 server_databases.php:127
-#: server_privileges.php:537 server_replication.php:316 tbl_printview.php:317
+#: server_privileges.php:576 server_replication.php:316 tbl_printview.php:317
#: tbl_structure.php:665
msgid "Data"
msgstr "Eçtälek"
@@ -2825,9 +2825,9 @@ msgstr "MIME-törläre"
#: libraries/export/xml.php:102 libraries/header_printview.inc.php:57
#: libraries/replication_gui.lib.php:63 libraries/replication_gui.lib.php:174
#: libraries/replication_gui.lib.php:269 libraries/replication_gui.lib.php:272
-#: libraries/replication_gui.lib.php:329 server_privileges.php:692
-#: server_privileges.php:695 server_privileges.php:751
-#: server_privileges.php:1498 server_privileges.php:2030
+#: libraries/replication_gui.lib.php:329 server_privileges.php:731
+#: server_privileges.php:734 server_privileges.php:790
+#: server_privileges.php:1537 server_privileges.php:2069
#: server_processlist.php:55 server_synchronize.php:1159
msgid "Host"
msgstr "Host"
@@ -3191,757 +3191,6 @@ msgstr "Buş"
msgid "Convert to Kana"
msgstr ""
-#. l10n: Text direction, use either ltr or rtl
-#: libraries/messages.inc.php:19
-msgid "ltr"
-msgstr "ltr"
-
-#: libraries/messages.inc.php:21
-msgid "Content of table __TABLE__"
-msgstr "__TABLE__ atlı tüşämä eçtälege"
-
-#: libraries/messages.inc.php:22
-msgid "(continued)"
-msgstr "(dawamlı)"
-
-#: libraries/messages.inc.php:23
-msgid "Structure of table __TABLE__"
-msgstr "__TABLE__ atlı tüşämä tözeleşe"
-
-#: libraries/messages.inc.php:25 server_privileges.php:227
-msgid "Includes all privileges except GRANT."
-msgstr "GRANT'tan basqa bar xoquqlar da bar."
-
-#: libraries/messages.inc.php:26 server_privileges.php:153
-#: server_privileges.php:476
-msgid "Allows altering the structure of existing tables."
-msgstr "Biredä bulğan tüşämä tözeleşen üzgärtü xoquqı."
-
-#: libraries/messages.inc.php:27 server_privileges.php:169
-#: server_privileges.php:482
-msgid "Allows altering and dropping stored routines."
-msgstr "Allows altering and dropping stored routines."
-
-#: libraries/messages.inc.php:28 server_privileges.php:145
-#: server_privileges.php:475
-msgid "Allows creating new databases and tables."
-msgstr "Yaña biremlek/tüşämä yasaw xoquqı."
-
-#: libraries/messages.inc.php:29 server_privileges.php:168
-#: server_privileges.php:481
-msgid "Allows creating stored routines."
-msgstr "Saqlanğan funksílar qorırğa birä."
-
-#: libraries/messages.inc.php:30 server_privileges.php:475
-msgid "Allows creating new tables."
-msgstr "Yaña tüşämä yasaw xoquqı."
-
-#: libraries/messages.inc.php:31 server_privileges.php:156
-#: server_privileges.php:479
-msgid "Allows creating temporary tables."
-msgstr "Waqıtlı tüşämä yasaw xoquqı."
-
-#: libraries/messages.inc.php:32 server_privileges.php:170
-#: server_privileges.php:515
-msgid "Allows creating, dropping and renaming user accounts."
-msgstr "Qullanuçı xísabın qoru/salu/ataw eşen qılırğa birä."
-
-#: libraries/messages.inc.php:33 server_privileges.php:160
-#: server_privileges.php:164 server_privileges.php:487
-#: server_privileges.php:491
-msgid "Allows creating new views."
-msgstr "Yaña qaraş qorırğa birä."
-
-#: libraries/messages.inc.php:34 server_privileges.php:144
-#: server_privileges.php:467
-msgid "Allows deleting data."
-msgstr "Eçtälek beterü xoquqı."
-
-#: libraries/messages.inc.php:35 server_privileges.php:146
-#: server_privileges.php:478
-msgid "Allows dropping databases and tables."
-msgstr "Biremlek/tüşämä beterü xoquqı."
-
-#: libraries/messages.inc.php:36 server_privileges.php:478
-msgid "Allows dropping tables."
-msgstr "Tüşämä beterü xoquqı."
-
-#: libraries/messages.inc.php:37 server_privileges.php:161
-#: server_privileges.php:495
-msgid "Allows to set up events for the event scheduler"
-msgstr ""
-
-#: libraries/messages.inc.php:38 server_privileges.php:171
-#: server_privileges.php:483
-msgid "Allows executing stored routines."
-msgstr "Eçke funksílar eşlätterergä birä."
-
-#: libraries/messages.inc.php:39 server_privileges.php:150
-#: server_privileges.php:470
-msgid "Allows importing data from and exporting data into files."
-msgstr "Allows importing data from and exporting data into files."
-
-#: libraries/messages.inc.php:40 server_privileges.php:501
-msgid ""
-"Allows adding users and privileges without reloading the privilege tables."
-msgstr ""
-"Allows adding users and privileges without reloading the privilege tüşämä."
-
-#: libraries/messages.inc.php:41 server_privileges.php:152
-#: server_privileges.php:477
-msgid "Allows creating and dropping indexes."
-msgstr "Açqıçlarnı qoru/beterü xoquqı."
-
-#: libraries/messages.inc.php:42 server_privileges.php:142
-#: server_privileges.php:403 server_privileges.php:465
-msgid "Allows inserting and replacing data."
-msgstr "Eçtälek östäw/almaştıru xoquqı."
-
-#: libraries/messages.inc.php:43 server_privileges.php:157
-#: server_privileges.php:510
-msgid "Allows locking tables for the current thread."
-msgstr "Allows locking tables for the current thread."
-
-#: libraries/messages.inc.php:44 server_privileges.php:607
-#: server_privileges.php:609
-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/messages.inc.php:45 server_privileges.php:595
-#: server_privileges.php:597
-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/messages.inc.php:46 server_privileges.php:601
-#: server_privileges.php:603
-msgid ""
-"Limits the number of commands that change any table or database the user may "
-"execute per hour."
-msgstr ""
-"Limits the number of commands that change any table or database the user may "
-"execute per hour."
-
-#: libraries/messages.inc.php:47 server_privileges.php:613
-#: server_privileges.php:615
-#, 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/messages.inc.php:48 server_privileges.php:149
-#: server_privileges.php:505
-msgid "Allows viewing processes of all users"
-msgstr ""
-
-#: libraries/messages.inc.php:49 server_privileges.php:151
-#: server_privileges.php:409 server_privileges.php:511
-msgid "Has no effect in this MySQL version."
-msgstr "Has no effect in this MySQL version."
-
-#: libraries/messages.inc.php:50 server_privileges.php:147
-#: server_privileges.php:506
-msgid "Allows reloading server settings and flushing the server's caches."
-msgstr "Allows reloading server settings and flushing the server's caches."
-
-#: libraries/messages.inc.php:51 server_privileges.php:159
-#: server_privileges.php:513
-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/messages.inc.php:52 server_privileges.php:158
-#: server_privileges.php:514
-msgid "Needed for the replication slaves."
-msgstr "Needed for the replication slaves."
-
-#: libraries/messages.inc.php:53 server_privileges.php:141
-#: server_privileges.php:400 server_privileges.php:464
-msgid "Allows reading data."
-msgstr "Eçtälekne uqu xoquqı."
-
-#: libraries/messages.inc.php:54 server_privileges.php:154
-#: server_privileges.php:508
-msgid "Gives access to the complete list of databases."
-msgstr "Gives access to the complete list of databases."
-
-#: libraries/messages.inc.php:55 server_privileges.php:165
-#: server_privileges.php:167 server_privileges.php:480
-msgid "Allows performing SHOW CREATE VIEW queries."
-msgstr "SHOW CREATE VIEW sorawların eşläterlek itä."
-
-#: libraries/messages.inc.php:56 server_privileges.php:148
-#: server_privileges.php:507
-msgid "Allows shutting down the server."
-msgstr "Serverne tuqtatu xoquqı."
-
-#: libraries/messages.inc.php:57 server_privileges.php:155
-#: server_privileges.php:504
-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 ""
-"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."
-
-#: libraries/messages.inc.php:58 server_privileges.php:162
-#: server_privileges.php:496
-#, fuzzy
-msgid "Allows creating and dropping triggers"
-msgstr "Açqıçlarnı qoru/beterü xoquqı."
-
-#: libraries/messages.inc.php:59 server_privileges.php:143
-#: server_privileges.php:406 server_privileges.php:466
-msgid "Allows changing data."
-msgstr "Eçtälek üzgärtü xoquqı."
-
-#: libraries/messages.inc.php:60 server_privileges.php:221
-msgid "No privileges."
-msgstr "Xoquqlar yuq."
-
-#: libraries/messages.inc.php:62
-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/messages.inc.php:63
-msgid "The number of transactions that used the temporary binary log cache."
-msgstr ""
-
-#: libraries/messages.inc.php:64
-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 "
-"to increase the tmp_table_size value to cause temporary tables to be memory-"
-"based instead of disk-based."
-msgstr ""
-
-#: libraries/messages.inc.php:65
-msgid "How many temporary files mysqld has created."
-msgstr ""
-
-#: libraries/messages.inc.php:66
-msgid ""
-"The number of in-memory temporary tables created automatically by the server "
-"while executing statements."
-msgstr ""
-
-#: libraries/messages.inc.php:67
-msgid ""
-"The number of rows written with INSERT DELAYED for which some error occurred "
-"(probably duplicate key)."
-msgstr ""
-
-#: libraries/messages.inc.php:68
-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/messages.inc.php:69
-msgid "The number of INSERT DELAYED rows written."
-msgstr ""
-
-#: libraries/messages.inc.php:70
-msgid "The number of executed FLUSH statements."
-msgstr ""
-
-#: libraries/messages.inc.php:71
-msgid "The number of internal COMMIT statements."
-msgstr ""
-
-#: libraries/messages.inc.php:72
-msgid "The number of times a row was deleted from a table."
-msgstr ""
-
-#: libraries/messages.inc.php:73
-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/messages.inc.php:74
-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/messages.inc.php:75
-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/messages.inc.php:76
-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/messages.inc.php:77
-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/messages.inc.php:78
-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 "
-"probably have a lot of queries that require MySQL to scan whole tables or "
-"you have joins that don't use keys properly."
-msgstr ""
-
-#: libraries/messages.inc.php:79
-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 "
-"tables are not properly indexed or that your queries are not written to take "
-"advantage of the indexes you have."
-msgstr ""
-
-#: libraries/messages.inc.php:80
-msgid "The number of internal ROLLBACK statements."
-msgstr ""
-
-#: libraries/messages.inc.php:81
-msgid "The number of requests to update a row in a table."
-msgstr ""
-
-#: libraries/messages.inc.php:82
-msgid "The number of requests to insert a row in a table."
-msgstr ""
-
-#: libraries/messages.inc.php:83
-msgid "The number of pages containing data (dirty or clean)."
-msgstr ""
-
-#: libraries/messages.inc.php:84
-#, fuzzy
-msgid "The number of pages currently dirty."
-msgstr "Yaratılğan bit sanı bu."
-
-#: libraries/messages.inc.php:85
-msgid "The number of buffer pool pages that have been requested to be flushed."
-msgstr ""
-
-#: libraries/messages.inc.php:86
-msgid "The number of free pages."
-msgstr "Buş bitlär sanı."
-
-#: libraries/messages.inc.php:87
-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/messages.inc.php:88
-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 "
-"be calculated as Innodb_buffer_pool_pages_total - "
-"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data."
-msgstr ""
-
-#: libraries/messages.inc.php:89
-msgid "Total size of buffer pool, in pages."
-msgstr ""
-
-#: libraries/messages.inc.php:90
-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/messages.inc.php:91
-msgid ""
-"The number of sequential read-aheads InnoDB initiated. This happens when "
-"InnoDB does a sequential full table scan."
-msgstr ""
-
-#: libraries/messages.inc.php:92
-msgid "The number of logical read requests InnoDB has done."
-msgstr ""
-
-#: libraries/messages.inc.php:93
-msgid ""
-"The number of logical reads that InnoDB could not satisfy from buffer pool "
-"and had to do a single-page read."
-msgstr ""
-
-#: libraries/messages.inc.php:94
-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 "
-"available, it's necessary to wait for pages to be flushed first. This "
-"counter counts instances of these waits. If the buffer pool size was set "
-"properly, this value should be small."
-msgstr ""
-
-#: libraries/messages.inc.php:95
-msgid "The number writes done to the InnoDB buffer pool."
-msgstr ""
-
-#: libraries/messages.inc.php:96
-msgid "The number of fsync() operations so far."
-msgstr ""
-
-#: libraries/messages.inc.php:97
-msgid "The current number of pending fsync() operations."
-msgstr ""
-
-#: libraries/messages.inc.php:98
-#, fuzzy
-msgid "The current number of pending reads."
-msgstr "Uqılğan bit sanı bu."
-
-#: libraries/messages.inc.php:99
-#, fuzzy
-msgid "The current number of pending writes."
-msgstr "Yazılğan bit sanı bu."
-
-#: libraries/messages.inc.php:100
-msgid "The amount of data read so far, in bytes."
-msgstr ""
-
-#: libraries/messages.inc.php:101
-#, fuzzy
-msgid "The total number of data reads."
-msgstr "Uqılğan bit sanı bu."
-
-#: libraries/messages.inc.php:102
-#, fuzzy
-msgid "The total number of data writes."
-msgstr "Yazılğan bit sanı bu."
-
-#: libraries/messages.inc.php:103
-msgid "The amount of data written so far, in bytes."
-msgstr ""
-
-#: libraries/messages.inc.php:104
-msgid "The number of pages that have been written for doublewrite operations."
-msgstr ""
-
-#: libraries/messages.inc.php:105
-msgid "The number of doublewrite operations that have been performed."
-msgstr ""
-
-#: libraries/messages.inc.php:106
-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/messages.inc.php:107
-#, fuzzy
-msgid "The number of log write requests."
-msgstr "Tezelgän yazma sanı bu."
-
-#: libraries/messages.inc.php:108
-#, fuzzy
-msgid "The number of physical writes to the log file."
-msgstr "Köndälek biremenä yazılğan bayt sanı bu."
-
-#: libraries/messages.inc.php:109
-#, fuzzy
-msgid "The number of fsync() writes done to the log file."
-msgstr "Köndälek biremenä yazılğan bayt sanı bu."
-
-#: libraries/messages.inc.php:110
-msgid "The number of pending log file fsyncs."
-msgstr ""
-
-#: libraries/messages.inc.php:111
-msgid "Pending log file writes."
-msgstr ""
-
-#: libraries/messages.inc.php:112
-msgid "The number of bytes written to the log file."
-msgstr "Köndälek biremenä yazılğan bayt sanı bu."
-
-#: libraries/messages.inc.php:113
-msgid "The number of pages created."
-msgstr "Yaratılğan bit sanı bu."
-
-#: libraries/messages.inc.php:114
-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 ""
-"InnoDB yasağanda bit öçen berketelgän küläme (töcay bäyäse 16KB). Many "
-"values are counted in pages; the page size allows them to be easily "
-"converted to bytes."
-
-#: libraries/messages.inc.php:115
-msgid "The number of pages read."
-msgstr "Uqılğan bit sanı bu."
-
-#: libraries/messages.inc.php:116
-msgid "The number of pages written."
-msgstr "Yazılğan bit sanı bu."
-
-#: libraries/messages.inc.php:117
-msgid "The number of row locks currently being waited for."
-msgstr ""
-
-#: libraries/messages.inc.php:118
-msgid "The average time to acquire a row lock, in milliseconds."
-msgstr ""
-
-#: libraries/messages.inc.php:119
-msgid "The total time spent in acquiring row locks, in milliseconds."
-msgstr ""
-
-#: libraries/messages.inc.php:120
-msgid "The maximum time to acquire a row lock, in milliseconds."
-msgstr ""
-
-#: libraries/messages.inc.php:121
-msgid "The number of times a row lock had to be waited for."
-msgstr ""
-
-#: libraries/messages.inc.php:122
-msgid "The number of rows deleted from InnoDB tables."
-msgstr ""
-
-#: libraries/messages.inc.php:123
-msgid "The number of rows inserted in InnoDB tables."
-msgstr ""
-
-#: libraries/messages.inc.php:124
-msgid "The number of rows read from InnoDB tables."
-msgstr ""
-
-#: libraries/messages.inc.php:125
-msgid "The number of rows updated in InnoDB tables."
-msgstr ""
-
-#: libraries/messages.inc.php:126
-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/messages.inc.php:127
-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/messages.inc.php:128
-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/messages.inc.php:129
-msgid "The number of requests to read a key block from the cache."
-msgstr ""
-
-#: libraries/messages.inc.php:130
-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/messages.inc.php:131
-msgid "The number of requests to write a key block to the cache."
-msgstr ""
-
-#: libraries/messages.inc.php:132
-#, 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/messages.inc.php:133
-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/messages.inc.php:134
-msgid "The number of rows waiting to be written in INSERT DELAYED queues."
-msgstr ""
-
-#: libraries/messages.inc.php:135
-msgid ""
-"The number of tables that have been opened. If opened tables is big, your "
-"table cache value is probably too small."
-msgstr ""
-
-#: libraries/messages.inc.php:136
-msgid "The number of files that are open."
-msgstr "Açıq toruçı birem sanı."
-
-#: libraries/messages.inc.php:137
-msgid "The number of streams that are open (used mainly for logging)."
-msgstr ""
-
-#: libraries/messages.inc.php:138
-msgid "The number of tables that are open."
-msgstr "Açıq toruçı tüşämä sanı."
-
-#: libraries/messages.inc.php:139
-msgid "The number of free memory blocks in query cache."
-msgstr ""
-
-#: libraries/messages.inc.php:140
-msgid "The amount of free memory for query cache."
-msgstr ""
-
-#: libraries/messages.inc.php:141
-msgid "The number of cache hits."
-msgstr "Alxätergä turı kilü sanı bu."
-
-#: libraries/messages.inc.php:142
-msgid "The number of queries added to the cache."
-msgstr ""
-
-#: libraries/messages.inc.php:143
-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 "
-"cache size. The query cache uses a least recently used (LRU) strategy to "
-"decide which queries to remove from the cache."
-msgstr ""
-
-#: libraries/messages.inc.php:144
-msgid ""
-"The number of non-cached queries (not cachable, or not cached due to the "
-"query_cache_type setting)."
-msgstr ""
-
-#: libraries/messages.inc.php:145
-msgid "The number of queries registered in the cache."
-msgstr ""
-
-#: libraries/messages.inc.php:146
-msgid "The total number of blocks in the query cache."
-msgstr ""
-
-#: libraries/messages.inc.php:147
-msgctxt "$strShowStatusReset"
-msgid "Reset"
-msgstr "Awdar"
-
-#: libraries/messages.inc.php:148
-msgid "The status of failsafe replication (not yet implemented)."
-msgstr ""
-
-#: libraries/messages.inc.php:149
-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/messages.inc.php:150
-msgid "The number of joins that used a range search on a reference table."
-msgstr ""
-
-#: libraries/messages.inc.php:151
-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/messages.inc.php:152
-msgid ""
-"The number of joins that used ranges on the first table. (It's normally not "
-"critical even if this is big.)"
-msgstr ""
-
-#: libraries/messages.inc.php:153
-msgid "The number of joins that did a full scan of the first table."
-msgstr ""
-
-#: libraries/messages.inc.php:154
-msgid "The number of temporary tables currently open by the slave SQL thread."
-msgstr ""
-
-#: libraries/messages.inc.php:155
-msgid ""
-"Total (since startup) number of times the replication slave SQL thread has "
-"retried transactions."
-msgstr ""
-
-#: libraries/messages.inc.php:156
-msgid "This is ON if this server is a slave that is connected to a master."
-msgstr ""
-
-#: libraries/messages.inc.php:157
-msgid ""
-"The number of threads that have taken more than slow_launch_time seconds to "
-"create."
-msgstr ""
-
-#: libraries/messages.inc.php:158
-msgid ""
-"The number of queries that have taken more than long_query_time seconds."
-msgstr ""
-
-#: libraries/messages.inc.php:159
-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/messages.inc.php:160
-msgid "The number of sorts that were done with ranges."
-msgstr ""
-
-#: libraries/messages.inc.php:161
-msgid "The number of sorted rows."
-msgstr "Tezelgän yazma sanı bu."
-
-#: libraries/messages.inc.php:162
-msgid "The number of sorts that were done by scanning the table."
-msgstr ""
-
-#: libraries/messages.inc.php:163
-msgid "The number of times that a table lock was acquired immediately."
-msgstr ""
-
-#: libraries/messages.inc.php:164
-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 "
-"should first optimize your queries, and then either split your table or "
-"tables or use replication."
-msgstr ""
-
-#: libraries/messages.inc.php:165
-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/messages.inc.php:166
-msgid "The number of currently open connections."
-msgstr "Biredä açıq bulğan totaşu sanı."
-
-#: libraries/messages.inc.php:167
-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 "
-"doesn't give a notable performance improvement if you have a good thread "
-"implementation.)"
-msgstr ""
-
-#: libraries/messages.inc.php:168
-#, fuzzy
-msgid "The number of threads that are not sleeping."
-msgstr "Açıq toruçı birem sanı."
-
#: libraries/mult_submits.inc.php:76 libraries/tbl_properties.inc.php:513
#: tbl_structure.php:29 tbl_structure.php:153 tbl_structure.php:157
#: tbl_structure.php:473
@@ -4258,8 +3507,8 @@ msgstr ""
#: libraries/replication_gui.lib.php:55 libraries/replication_gui.lib.php:56
#: libraries/replication_gui.lib.php:249 libraries/replication_gui.lib.php:252
-#: libraries/replication_gui.lib.php:259 server_privileges.php:672
-#: server_privileges.php:675 server_privileges.php:682
+#: libraries/replication_gui.lib.php:259 server_privileges.php:711
+#: server_privileges.php:714 server_privileges.php:721
#: server_synchronize.php:1171
msgid "User name"
msgstr "İreşü iseme"
@@ -4278,11 +3527,11 @@ msgid "Slave status"
msgstr ""
#: libraries/replication_gui.lib.php:114 libraries/sql_query_form.lib.php:445
-#: server_status.php:626 server_variables.php:52
+#: server_status.php:737 server_variables.php:52
msgid "Variable"
msgstr "Üzgärmä"
-#: libraries/replication_gui.lib.php:115 server_status.php:627
+#: libraries/replication_gui.lib.php:115 server_status.php:738
#: tbl_change.php:324 tbl_printview.php:370 tbl_select.php:139
#: tbl_structure.php:729
msgid "Value"
@@ -4302,41 +3551,58 @@ msgstr ""
msgid "Add slave replication user"
msgstr ""
-#: libraries/replication_gui.lib.php:254 server_privileges.php:677
+#: libraries/replication_gui.lib.php:254 server_privileges.php:716
msgid "Any user"
msgstr "Törle qullanuçı"
#: libraries/replication_gui.lib.php:255 libraries/replication_gui.lib.php:323
-#: libraries/replication_gui.lib.php:346 server_privileges.php:678
-#: server_privileges.php:745 server_privileges.php:769
-#: server_privileges.php:1889 server_privileges.php:1919
+#: libraries/replication_gui.lib.php:346 server_privileges.php:717
+#: server_privileges.php:784 server_privileges.php:808
+#: server_privileges.php:1928 server_privileges.php:1958
msgid "Use text field"
msgstr "Bu mätennän"
-#: libraries/replication_gui.lib.php:302 server_privileges.php:725
+#: libraries/replication_gui.lib.php:302 server_privileges.php:764
msgid "Any host"
msgstr "Bar bulğan host"
-#: libraries/replication_gui.lib.php:306 server_privileges.php:729
+#: libraries/replication_gui.lib.php:306 server_privileges.php:768
msgid "Local"
msgstr "Cirle"
-#: libraries/replication_gui.lib.php:312 server_privileges.php:734
+#: libraries/replication_gui.lib.php:312 server_privileges.php:773
msgid "This Host"
msgstr "Bu Sanaq"
-#: libraries/replication_gui.lib.php:318 server_privileges.php:740
+#: libraries/replication_gui.lib.php:318 server_privileges.php:779
msgid "Use Host Table"
msgstr "Host Tüşämä eçennän"
-#: libraries/replication_gui.lib.php:331 server_privileges.php:753
+#: libraries/replication_gui.lib.php:331 server_privileges.php:792
msgid ""
"When Host table is used, this field is ignored and values stored in Host "
"table are used instead."
msgstr ""
-#: libraries/select_lang.lib.php:480 libraries/select_lang.lib.php:486
-#: libraries/select_lang.lib.php:492
+#. l10n: Text direction, use either ltr or rtl
+#: libraries/select_lang.lib.php:491
+msgid "ltr"
+msgstr "ltr"
+
+#: libraries/select_lang.lib.php:493
+msgid "Content of table __TABLE__"
+msgstr "__TABLE__ atlı tüşämä eçtälege"
+
+#: libraries/select_lang.lib.php:494
+msgid "(continued)"
+msgstr "(dawamlı)"
+
+#: libraries/select_lang.lib.php:495
+msgid "Structure of table __TABLE__"
+msgstr "__TABLE__ atlı tüşämä tözeleşe"
+
+#: libraries/select_lang.lib.php:500 libraries/select_lang.lib.php:506
+#: libraries/select_lang.lib.php:512
#, php-format
msgid "Unknown language: %1$s."
msgstr "Belgesez tel: %1$s."
@@ -4347,7 +3613,7 @@ msgid "Servers"
msgstr "Serverlär"
#: libraries/server_links.inc.php:53 server_engines.php:112
-#: server_engines.php:116 server_status.php:304 test/theme.php:105
+#: server_engines.php:116 server_status.php:415 test/theme.php:105
msgid "Variables"
msgstr "Üzgärmälär"
@@ -4360,7 +3626,7 @@ msgid "Engines"
msgstr "Engine"
#: libraries/server_links.inc.php:76 server_binlog.php:110
-#: server_status.php:253 test/theme.php:121
+#: server_status.php:364 test/theme.php:121
msgid "Binary log"
msgstr "Binar köndälek"
@@ -4817,8 +4083,8 @@ msgstr "Awdar"
msgid "Protocol version"
msgstr "Protokol söreme"
-#: main.php:189 server_privileges.php:1350 server_privileges.php:1497
-#: server_privileges.php:1611 server_privileges.php:2029
+#: main.php:189 server_privileges.php:1389 server_privileges.php:1536
+#: server_privileges.php:1650 server_privileges.php:2068
#: server_processlist.php:54
msgid "User"
msgstr "Qullanuçı"
@@ -5199,7 +4465,7 @@ msgstr "\"%s\" biremlegen beterü uñışlı uzdı."
msgid "Databases statistics"
msgstr "Biremlek nöfüsläre"
-#: server_databases.php:117 server_status.php:260
+#: server_databases.php:117 server_status.php:371
#: setup/lib/messages.inc.php:117
msgid "Tables"
msgstr "Tüşämä"
@@ -5218,6 +4484,15 @@ msgstr ""
msgid "Jump to database"
msgstr "Biremleklär yuq"
+#: server_databases.php:267
+msgid "Not replicated"
+msgstr ""
+
+#: server_databases.php:273
+#, fuzzy
+msgid "Replicated"
+msgstr "Bäyläneşlär"
+
#: server_databases.php:289
#, php-format
msgid "Check privileges for database "%s"."
@@ -5251,142 +4526,332 @@ msgstr "Saqlaw Isulı"
msgid "View dump (schema) of databases"
msgstr "Biremleklärneñ eçtälegen (tözeleşen) çığaru"
-#: server_privileges.php:263 server_privileges.php:264
+#: server_privileges.php:24 server_privileges.php:266
+msgid "Includes all privileges except GRANT."
+msgstr "GRANT'tan basqa bar xoquqlar da bar."
+
+#: server_privileges.php:25 server_privileges.php:192
+#: server_privileges.php:515
+msgid "Allows altering the structure of existing tables."
+msgstr "Biredä bulğan tüşämä tözeleşen üzgärtü xoquqı."
+
+#: server_privileges.php:26 server_privileges.php:208
+#: server_privileges.php:521
+msgid "Allows altering and dropping stored routines."
+msgstr "Allows altering and dropping stored routines."
+
+#: server_privileges.php:27 server_privileges.php:184
+#: server_privileges.php:514
+msgid "Allows creating new databases and tables."
+msgstr "Yaña biremlek/tüşämä yasaw xoquqı."
+
+#: server_privileges.php:28 server_privileges.php:207
+#: server_privileges.php:520
+msgid "Allows creating stored routines."
+msgstr "Saqlanğan funksílar qorırğa birä."
+
+#: server_privileges.php:29 server_privileges.php:514
+msgid "Allows creating new tables."
+msgstr "Yaña tüşämä yasaw xoquqı."
+
+#: server_privileges.php:30 server_privileges.php:195
+#: server_privileges.php:518
+msgid "Allows creating temporary tables."
+msgstr "Waqıtlı tüşämä yasaw xoquqı."
+
+#: server_privileges.php:31 server_privileges.php:209
+#: server_privileges.php:554
+msgid "Allows creating, dropping and renaming user accounts."
+msgstr "Qullanuçı xísabın qoru/salu/ataw eşen qılırğa birä."
+
+#: server_privileges.php:32 server_privileges.php:199
+#: server_privileges.php:203 server_privileges.php:526
+#: server_privileges.php:530
+msgid "Allows creating new views."
+msgstr "Yaña qaraş qorırğa birä."
+
+#: server_privileges.php:33 server_privileges.php:183
+#: server_privileges.php:506
+msgid "Allows deleting data."
+msgstr "Eçtälek beterü xoquqı."
+
+#: server_privileges.php:34 server_privileges.php:185
+#: server_privileges.php:517
+msgid "Allows dropping databases and tables."
+msgstr "Biremlek/tüşämä beterü xoquqı."
+
+#: server_privileges.php:35 server_privileges.php:517
+msgid "Allows dropping tables."
+msgstr "Tüşämä beterü xoquqı."
+
+#: server_privileges.php:36 server_privileges.php:200
+#: server_privileges.php:534
+msgid "Allows to set up events for the event scheduler"
+msgstr ""
+
+#: server_privileges.php:37 server_privileges.php:210
+#: server_privileges.php:522
+msgid "Allows executing stored routines."
+msgstr "Eçke funksílar eşlätterergä birä."
+
+#: server_privileges.php:38 server_privileges.php:189
+#: server_privileges.php:509
+msgid "Allows importing data from and exporting data into files."
+msgstr "Allows importing data from and exporting data into files."
+
+#: server_privileges.php:39 server_privileges.php:540
+msgid ""
+"Allows adding users and privileges without reloading the privilege tables."
+msgstr ""
+"Allows adding users and privileges without reloading the privilege tüşämä."
+
+#: server_privileges.php:40 server_privileges.php:191
+#: server_privileges.php:516
+msgid "Allows creating and dropping indexes."
+msgstr "Açqıçlarnı qoru/beterü xoquqı."
+
+#: server_privileges.php:41 server_privileges.php:181
+#: server_privileges.php:442 server_privileges.php:504
+msgid "Allows inserting and replacing data."
+msgstr "Eçtälek östäw/almaştıru xoquqı."
+
+#: server_privileges.php:42 server_privileges.php:196
+#: server_privileges.php:549
+msgid "Allows locking tables for the current thread."
+msgstr "Allows locking tables for the current thread."
+
+#: server_privileges.php:43 server_privileges.php:646
+#: server_privileges.php:648
+msgid "Limits the number of new connections the user may open per hour."
+msgstr "Limits the number of new connections the user may open per hour."
+
+#: server_privileges.php:44 server_privileges.php:634
+#: server_privileges.php:636
+msgid "Limits the number of queries the user may send to the server per hour."
+msgstr "Limits the number of queries the user may send to the server per hour."
+
+#: server_privileges.php:45 server_privileges.php:640
+#: server_privileges.php:642
+msgid ""
+"Limits the number of commands that change any table or database the user may "
+"execute per hour."
+msgstr ""
+"Limits the number of commands that change any table or database the user may "
+"execute per hour."
+
+#: server_privileges.php:46 server_privileges.php:652
+#: server_privileges.php:654
+#, fuzzy
+msgid "Limits the number of simultaneous connections the user may have."
+msgstr "Limits the number of new connections the user may open per hour."
+
+#: server_privileges.php:47 server_privileges.php:188
+#: server_privileges.php:544
+msgid "Allows viewing processes of all users"
+msgstr ""
+
+#: server_privileges.php:48 server_privileges.php:190
+#: server_privileges.php:448 server_privileges.php:550
+msgid "Has no effect in this MySQL version."
+msgstr "Has no effect in this MySQL version."
+
+#: server_privileges.php:49 server_privileges.php:186
+#: server_privileges.php:545
+msgid "Allows reloading server settings and flushing the server's caches."
+msgstr "Allows reloading server settings and flushing the server's caches."
+
+#: server_privileges.php:50 server_privileges.php:198
+#: server_privileges.php:552
+msgid "Allows the user to ask where the slaves / masters are."
+msgstr "Gives the right to the user to ask where the slaves / masters are."
+
+#: server_privileges.php:51 server_privileges.php:197
+#: server_privileges.php:553
+msgid "Needed for the replication slaves."
+msgstr "Needed for the replication slaves."
+
+#: server_privileges.php:52 server_privileges.php:180
+#: server_privileges.php:439 server_privileges.php:503
+msgid "Allows reading data."
+msgstr "Eçtälekne uqu xoquqı."
+
+#: server_privileges.php:53 server_privileges.php:193
+#: server_privileges.php:547
+msgid "Gives access to the complete list of databases."
+msgstr "Gives access to the complete list of databases."
+
+#: server_privileges.php:54 server_privileges.php:204
+#: server_privileges.php:206 server_privileges.php:519
+msgid "Allows performing SHOW CREATE VIEW queries."
+msgstr "SHOW CREATE VIEW sorawların eşläterlek itä."
+
+#: server_privileges.php:55 server_privileges.php:187
+#: server_privileges.php:546
+msgid "Allows shutting down the server."
+msgstr "Serverne tuqtatu xoquqı."
+
+#: server_privileges.php:56 server_privileges.php:194
+#: server_privileges.php:543
+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 ""
+"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."
+
+#: server_privileges.php:57 server_privileges.php:201
+#: server_privileges.php:535
+#, fuzzy
+msgid "Allows creating and dropping triggers"
+msgstr "Açqıçlarnı qoru/beterü xoquqı."
+
+#: server_privileges.php:58 server_privileges.php:182
+#: server_privileges.php:445 server_privileges.php:505
+msgid "Allows changing data."
+msgstr "Eçtälek üzgärtü xoquqı."
+
+#: server_privileges.php:59 server_privileges.php:260
+msgid "No privileges."
+msgstr "Xoquqlar yuq."
+
+#: server_privileges.php:302 server_privileges.php:303
#, fuzzy
#| msgid "None"
msgctxt "None privileges"
msgid "None"
msgstr "Buş"
-#: server_privileges.php:392 server_privileges.php:527
-#: server_privileges.php:1679 server_privileges.php:1685
+#: server_privileges.php:431 server_privileges.php:566
+#: server_privileges.php:1718 server_privileges.php:1724
msgid "Table-specific privileges"
msgstr "Berär tüşämä öçen xoquqlar"
-#: server_privileges.php:393 server_privileges.php:535
-#: server_privileges.php:1501
+#: server_privileges.php:432 server_privileges.php:574
+#: server_privileges.php:1540
msgid " Note: MySQL privilege names are expressed in English "
msgstr " Beläse: MySQL'da xoquq adı İnglizçä kertelä!"
-#: server_privileges.php:524 server_privileges.php:1500
+#: server_privileges.php:563 server_privileges.php:1539
msgid "Global privileges"
msgstr "Töp xoquq"
-#: server_privileges.php:526 server_privileges.php:1679
+#: server_privileges.php:565 server_privileges.php:1718
msgid "Database-specific privileges"
msgstr "Berär biremlekkä qağılışlı xoquqlar"
-#: server_privileges.php:571
+#: server_privileges.php:610
msgid "Administration"
msgstr "İdärä"
-#: server_privileges.php:591
+#: server_privileges.php:630
msgid "Resource limits"
msgstr "Resurs çikläwläre"
-#: server_privileges.php:592
+#: server_privileges.php:631
msgid "Note: Setting these options to 0 (zero) removes the limit."
msgstr "Beläse: 0 (nül) kertelgän çaqta çikläwe beterelä."
-#: server_privileges.php:669
+#: server_privileges.php:708
msgid "Login Information"
msgstr "Kereş Turında"
-#: server_privileges.php:763
+#: server_privileges.php:802
msgid "Do not change the password"
msgstr "Sersüzen üzgärtäse tügel"
-#: server_privileges.php:804 server_privileges.php:2166
+#: server_privileges.php:843 server_privileges.php:2205
#, fuzzy
#| msgid "No user(s) found."
msgid "No user found."
msgstr "Qullanuçı yuq."
-#: server_privileges.php:848
+#: server_privileges.php:887
#, php-format
msgid "The user %s already exists!"
msgstr "\"%s\" atlı qullanuçı bar inde!"
-#: server_privileges.php:931
+#: server_privileges.php:970
msgid "You have added a new user."
msgstr "Yana qullanuçı östälände."
-#: server_privileges.php:1152
+#: server_privileges.php:1191
#, php-format
msgid "You have updated the privileges for %s."
msgstr "You have updated the privileges for %s."
-#: server_privileges.php:1176
+#: server_privileges.php:1215
#, php-format
msgid "You have revoked the privileges for %s"
msgstr "You have revoked the privileges for %s"
-#: server_privileges.php:1212
+#: server_privileges.php:1251
#, php-format
msgid "The password for %s was changed successfully."
msgstr "\"%s\" öçen sezsüz üzgärtü uñışlı uzdı."
-#: server_privileges.php:1232
+#: server_privileges.php:1271
#, php-format
msgid "Deleting %s"
msgstr "\"%s\" Beterü"
-#: server_privileges.php:1243
+#: server_privileges.php:1282
msgid "No users selected for deleting!"
msgstr "Beteräse qullanuçılar saylanmağan!"
-#: server_privileges.php:1246
+#: server_privileges.php:1285
msgid "Reloading the privileges"
msgstr "Bu xoquqlarnı yöklä"
-#: server_privileges.php:1261
+#: server_privileges.php:1300
msgid "The selected users have been deleted successfully."
msgstr "Saylanğan qullanuçını beterü uñışlı uzdı."
-#: server_privileges.php:1296
+#: server_privileges.php:1335
msgid "The privileges were reloaded successfully."
msgstr "Bu xoquqlarnı yökläw uñışlı uzdı."
-#: server_privileges.php:1324 server_privileges.php:1610
+#: server_privileges.php:1363 server_privileges.php:1649
msgid "Edit Privileges"
msgstr "Xoquqlar Üzgärtü"
-#: server_privileges.php:1333
+#: server_privileges.php:1372
msgid "Revoke"
msgstr "Töşer"
-#: server_privileges.php:1365
+#: server_privileges.php:1404
msgid "User overview"
msgstr "Qullanuçılar tezmäse"
-#: server_privileges.php:1502 server_privileges.php:1684
-#: server_privileges.php:2033
+#: server_privileges.php:1541 server_privileges.php:1723
+#: server_privileges.php:2072
msgid "Grant"
msgstr "Xoquq"
-#: server_privileges.php:1521 server_privileges.php:2123
+#: server_privileges.php:1560 server_privileges.php:2162
msgid "Any"
msgstr "Törle"
-#: server_privileges.php:1570 server_privileges.php:1594
-#: server_privileges.php:1988 server_privileges.php:2177
+#: server_privileges.php:1609 server_privileges.php:1633
+#: server_privileges.php:2027 server_privileges.php:2216
msgid "Add a new User"
msgstr "Yaña qullanuçı östäw"
-#: server_privileges.php:1575
+#: server_privileges.php:1614
msgid "Remove selected users"
msgstr "Saylanğan qullanuçı beterü"
-#: server_privileges.php:1578
+#: server_privileges.php:1617
msgid "Revoke all active privileges from the users and delete them afterwards."
msgstr "Qullanuçı xoquqların awdarıp beteräse."
-#: server_privileges.php:1579 server_privileges.php:1580
-#: server_privileges.php:1581
+#: server_privileges.php:1618 server_privileges.php:1619
+#: server_privileges.php:1620
msgid "Drop the databases that have the same names as the users."
msgstr "Bu qullanuçılar kebek atalğan biremleklärne beteräse."
-#: server_privileges.php:1597
+#: server_privileges.php:1636
#, php-format
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
@@ -5399,50 +4864,50 @@ msgstr ""
"alardan ayırıla ala. Andí çaqlarda, dawam itü aldınnan, %sxoquqlarnı qabat "
"yökläp alası%s."
-#: server_privileges.php:1645
+#: server_privileges.php:1684
msgid "The selected user was not found in the privilege table."
msgstr "Bu qullanuçı xoquqlar tüşämä eçendä tabılmadı."
-#: server_privileges.php:1685
+#: server_privileges.php:1724
msgid "Column-specific privileges"
msgstr "Berär bağana öçen xoquqlar"
-#: server_privileges.php:1886
+#: server_privileges.php:1925
msgid "Add privileges on the following database"
msgstr "Kiläse biremlek öçen xoquqlar östäw"
-#: server_privileges.php:1904
+#: server_privileges.php:1943
msgid "Wildcards % and _ should be escaped with a \\ to use them literally"
msgstr ""
"_ belän % bilgelären şul kileş kenä qullanu öçen \\ belän ütkärergä kiräk"
-#: server_privileges.php:1907
+#: server_privileges.php:1946
msgid "Add privileges on the following table"
msgstr "Kiläse tüşämä öçen xoquqlar östäw"
-#: server_privileges.php:1964
+#: server_privileges.php:2003
msgid "Change Login Information / Copy User"
msgstr "Change Login Information / Copy User"
-#: server_privileges.php:1967
+#: server_privileges.php:2006
msgid "Create a new user with the same privileges and ..."
msgstr "Create a new user with the same privileges and ..."
-#: server_privileges.php:1969
+#: server_privileges.php:2008
msgid "... keep the old one."
msgstr "... keep the old one."
-#: server_privileges.php:1970
+#: server_privileges.php:2009
msgid " ... delete the old one from the user tables."
msgstr " ... delete the old one from the user tables."
-#: server_privileges.php:1971
+#: server_privileges.php:2010
msgid ""
" ... revoke all active privileges from the old one and delete it afterwards."
msgstr ""
" ... revoke all active privileges from the old one and delete it afterwards."
-#: server_privileges.php:1972
+#: server_privileges.php:2011
msgid ""
" ... delete the old one from the user tables and reload the privileges "
"afterwards."
@@ -5450,44 +4915,44 @@ msgstr ""
" ... delete the old one from the user tables and reload the privileges "
"afterwards."
-#: server_privileges.php:1994
+#: server_privileges.php:2033
msgid "Database for user"
msgstr "Qullanuçı biremlege"
-#: server_privileges.php:1998
+#: server_privileges.php:2037
#, fuzzy
#| msgid "None"
msgctxt "Create none database for user"
msgid "None"
msgstr "Buş"
-#: server_privileges.php:1999
+#: server_privileges.php:2038
msgid "Create database with same name and grant all privileges"
msgstr ""
-#: server_privileges.php:2000
+#: server_privileges.php:2039
msgid "Grant all privileges on wildcard name (username\\_%)"
msgstr ""
-#: server_privileges.php:2003
+#: server_privileges.php:2042
#, fuzzy, php-format
msgid "Grant all privileges on database "%s""
msgstr "\"%s\" biremlege öçen xoquqlar tikşerü."
-#: server_privileges.php:2026
+#: server_privileges.php:2065
#, php-format
msgid "Users having access to "%s""
msgstr "\"%s\" belän eşläw xoquqı bulğan qullanuçılar"
-#: server_privileges.php:2134
+#: server_privileges.php:2173
msgid "global"
msgstr "ğömümi"
-#: server_privileges.php:2136
+#: server_privileges.php:2175
msgid "database-specific"
msgstr "berär biremlekkä qağılışlı"
-#: server_privileges.php:2138
+#: server_privileges.php:2177
msgid "wildcard"
msgstr "almaşbilge"
@@ -5533,7 +4998,7 @@ msgstr ""
msgid "This server is configured as master in a replication process."
msgstr ""
-#: server_replication.php:184 server_status.php:281
+#: server_replication.php:184 server_status.php:392
msgid "Show master status"
msgstr ""
@@ -5672,103 +5137,647 @@ msgid ""
"like to configure it?"
msgstr ""
+#: server_status.php:40
+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 ""
+
+#: server_status.php:41
+msgid "The number of transactions that used the temporary binary log cache."
+msgstr ""
+
+#: server_status.php:42
+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 "
+"to increase the tmp_table_size value to cause temporary tables to be memory-"
+"based instead of disk-based."
+msgstr ""
+
+#: server_status.php:43
+msgid "How many temporary files mysqld has created."
+msgstr ""
+
+#: server_status.php:44
+msgid ""
+"The number of in-memory temporary tables created automatically by the server "
+"while executing statements."
+msgstr ""
+
+#: server_status.php:45
+msgid ""
+"The number of rows written with INSERT DELAYED for which some error occurred "
+"(probably duplicate key)."
+msgstr ""
+
#: server_status.php:46
+msgid ""
+"The number of INSERT DELAYED handler threads in use. Every different table "
+"on which one uses INSERT DELAYED gets its own thread."
+msgstr ""
+
+#: server_status.php:47
+msgid "The number of INSERT DELAYED rows written."
+msgstr ""
+
+#: server_status.php:48
+msgid "The number of executed FLUSH statements."
+msgstr ""
+
+#: server_status.php:49
+msgid "The number of internal COMMIT statements."
+msgstr ""
+
+#: server_status.php:50
+msgid "The number of times a row was deleted from a table."
+msgstr ""
+
+#: server_status.php:51
+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 ""
+
+#: server_status.php:52
+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 ""
+
+#: server_status.php:53
+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 ""
+
+#: server_status.php:54
+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 ""
+
+#: server_status.php:55
+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 ""
+
+#: server_status.php:56
+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 "
+"probably have a lot of queries that require MySQL to scan whole tables or "
+"you have joins that don't use keys properly."
+msgstr ""
+
+#: server_status.php:57
+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 "
+"tables are not properly indexed or that your queries are not written to take "
+"advantage of the indexes you have."
+msgstr ""
+
+#: server_status.php:58
+msgid "The number of internal ROLLBACK statements."
+msgstr ""
+
+#: server_status.php:59
+msgid "The number of requests to update a row in a table."
+msgstr ""
+
+#: server_status.php:60
+msgid "The number of requests to insert a row in a table."
+msgstr ""
+
+#: server_status.php:61
+msgid "The number of pages containing data (dirty or clean)."
+msgstr ""
+
+#: server_status.php:62
+#, fuzzy
+msgid "The number of pages currently dirty."
+msgstr "Yaratılğan bit sanı bu."
+
+#: server_status.php:63
+msgid "The number of buffer pool pages that have been requested to be flushed."
+msgstr ""
+
+#: server_status.php:64
+msgid "The number of free pages."
+msgstr "Buş bitlär sanı."
+
+#: server_status.php:65
+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 ""
+
+#: server_status.php:66
+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 "
+"be calculated as Innodb_buffer_pool_pages_total - "
+"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data."
+msgstr ""
+
+#: server_status.php:67
+msgid "Total size of buffer pool, in pages."
+msgstr ""
+
+#: server_status.php:68
+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 ""
+
+#: server_status.php:69
+msgid ""
+"The number of sequential read-aheads InnoDB initiated. This happens when "
+"InnoDB does a sequential full table scan."
+msgstr ""
+
+#: server_status.php:70
+msgid "The number of logical read requests InnoDB has done."
+msgstr ""
+
+#: server_status.php:71
+msgid ""
+"The number of logical reads that InnoDB could not satisfy from buffer pool "
+"and had to do a single-page read."
+msgstr ""
+
+#: server_status.php:72
+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 "
+"available, it's necessary to wait for pages to be flushed first. This "
+"counter counts instances of these waits. If the buffer pool size was set "
+"properly, this value should be small."
+msgstr ""
+
+#: server_status.php:73
+msgid "The number writes done to the InnoDB buffer pool."
+msgstr ""
+
+#: server_status.php:74
+msgid "The number of fsync() operations so far."
+msgstr ""
+
+#: server_status.php:75
+msgid "The current number of pending fsync() operations."
+msgstr ""
+
+#: server_status.php:76
+#, fuzzy
+msgid "The current number of pending reads."
+msgstr "Uqılğan bit sanı bu."
+
+#: server_status.php:77
+#, fuzzy
+msgid "The current number of pending writes."
+msgstr "Yazılğan bit sanı bu."
+
+#: server_status.php:78
+msgid "The amount of data read so far, in bytes."
+msgstr ""
+
+#: server_status.php:79
+#, fuzzy
+msgid "The total number of data reads."
+msgstr "Uqılğan bit sanı bu."
+
+#: server_status.php:80
+#, fuzzy
+msgid "The total number of data writes."
+msgstr "Yazılğan bit sanı bu."
+
+#: server_status.php:81
+msgid "The amount of data written so far, in bytes."
+msgstr ""
+
+#: server_status.php:82
+msgid "The number of pages that have been written for doublewrite operations."
+msgstr ""
+
+#: server_status.php:83
+msgid "The number of doublewrite operations that have been performed."
+msgstr ""
+
+#: server_status.php:84
+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 ""
+
+#: server_status.php:85
+#, fuzzy
+msgid "The number of log write requests."
+msgstr "Tezelgän yazma sanı bu."
+
+#: server_status.php:86
+#, fuzzy
+msgid "The number of physical writes to the log file."
+msgstr "Köndälek biremenä yazılğan bayt sanı bu."
+
+#: server_status.php:87
+#, fuzzy
+msgid "The number of fsync() writes done to the log file."
+msgstr "Köndälek biremenä yazılğan bayt sanı bu."
+
+#: server_status.php:88
+msgid "The number of pending log file fsyncs."
+msgstr ""
+
+#: server_status.php:89
+msgid "Pending log file writes."
+msgstr ""
+
+#: server_status.php:90
+msgid "The number of bytes written to the log file."
+msgstr "Köndälek biremenä yazılğan bayt sanı bu."
+
+#: server_status.php:91
+msgid "The number of pages created."
+msgstr "Yaratılğan bit sanı bu."
+
+#: server_status.php:92
+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 ""
+"InnoDB yasağanda bit öçen berketelgän küläme (töcay bäyäse 16KB). Many "
+"values are counted in pages; the page size allows them to be easily "
+"converted to bytes."
+
+#: server_status.php:93
+msgid "The number of pages read."
+msgstr "Uqılğan bit sanı bu."
+
+#: server_status.php:94
+msgid "The number of pages written."
+msgstr "Yazılğan bit sanı bu."
+
+#: server_status.php:95
+msgid "The number of row locks currently being waited for."
+msgstr ""
+
+#: server_status.php:96
+msgid "The average time to acquire a row lock, in milliseconds."
+msgstr ""
+
+#: server_status.php:97
+msgid "The total time spent in acquiring row locks, in milliseconds."
+msgstr ""
+
+#: server_status.php:98
+msgid "The maximum time to acquire a row lock, in milliseconds."
+msgstr ""
+
+#: server_status.php:99
+msgid "The number of times a row lock had to be waited for."
+msgstr ""
+
+#: server_status.php:100
+msgid "The number of rows deleted from InnoDB tables."
+msgstr ""
+
+#: server_status.php:101
+msgid "The number of rows inserted in InnoDB tables."
+msgstr ""
+
+#: server_status.php:102
+msgid "The number of rows read from InnoDB tables."
+msgstr ""
+
+#: server_status.php:103
+msgid "The number of rows updated in InnoDB tables."
+msgstr ""
+
+#: server_status.php:104
+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 ""
+
+#: server_status.php:105
+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 ""
+
+#: server_status.php:106
+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 ""
+
+#: server_status.php:107
+msgid "The number of requests to read a key block from the cache."
+msgstr ""
+
+#: server_status.php:108
+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 ""
+
+#: server_status.php:109
+msgid "The number of requests to write a key block to the cache."
+msgstr ""
+
+#: server_status.php:110
+#, fuzzy
+msgid "The number of physical writes of a key block to disk."
+msgstr "Köndälek biremenä yazılğan bayt sanı bu."
+
+#: server_status.php:111
+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 ""
+
+#: server_status.php:112
+msgid "The number of rows waiting to be written in INSERT DELAYED queues."
+msgstr ""
+
+#: server_status.php:113
+msgid ""
+"The number of tables that have been opened. If opened tables is big, your "
+"table cache value is probably too small."
+msgstr ""
+
+#: server_status.php:114
+msgid "The number of files that are open."
+msgstr "Açıq toruçı birem sanı."
+
+#: server_status.php:115
+msgid "The number of streams that are open (used mainly for logging)."
+msgstr ""
+
+#: server_status.php:116
+msgid "The number of tables that are open."
+msgstr "Açıq toruçı tüşämä sanı."
+
+#: server_status.php:117
+msgid "The number of free memory blocks in query cache."
+msgstr ""
+
+#: server_status.php:118
+msgid "The amount of free memory for query cache."
+msgstr ""
+
+#: server_status.php:119
+msgid "The number of cache hits."
+msgstr "Alxätergä turı kilü sanı bu."
+
+#: server_status.php:120
+msgid "The number of queries added to the cache."
+msgstr ""
+
+#: server_status.php:121
+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 "
+"cache size. The query cache uses a least recently used (LRU) strategy to "
+"decide which queries to remove from the cache."
+msgstr ""
+
+#: server_status.php:122
+msgid ""
+"The number of non-cached queries (not cachable, or not cached due to the "
+"query_cache_type setting)."
+msgstr ""
+
+#: server_status.php:123
+msgid "The number of queries registered in the cache."
+msgstr ""
+
+#: server_status.php:124
+msgid "The total number of blocks in the query cache."
+msgstr ""
+
+#: server_status.php:125
+msgctxt "$strShowStatusReset"
+msgid "Reset"
+msgstr "Awdar"
+
+#: server_status.php:126
+msgid "The status of failsafe replication (not yet implemented)."
+msgstr ""
+
+#: server_status.php:127
+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 ""
+
+#: server_status.php:128
+msgid "The number of joins that used a range search on a reference table."
+msgstr ""
+
+#: server_status.php:129
+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 ""
+
+#: server_status.php:130
+msgid ""
+"The number of joins that used ranges on the first table. (It's normally not "
+"critical even if this is big.)"
+msgstr ""
+
+#: server_status.php:131
+msgid "The number of joins that did a full scan of the first table."
+msgstr ""
+
+#: server_status.php:132
+msgid "The number of temporary tables currently open by the slave SQL thread."
+msgstr ""
+
+#: server_status.php:133
+msgid ""
+"Total (since startup) number of times the replication slave SQL thread has "
+"retried transactions."
+msgstr ""
+
+#: server_status.php:134
+msgid "This is ON if this server is a slave that is connected to a master."
+msgstr ""
+
+#: server_status.php:135
+msgid ""
+"The number of threads that have taken more than slow_launch_time seconds to "
+"create."
+msgstr ""
+
+#: server_status.php:136
+msgid ""
+"The number of queries that have taken more than long_query_time seconds."
+msgstr ""
+
+#: server_status.php:137
+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 ""
+
+#: server_status.php:138
+msgid "The number of sorts that were done with ranges."
+msgstr ""
+
+#: server_status.php:139
+msgid "The number of sorted rows."
+msgstr "Tezelgän yazma sanı bu."
+
+#: server_status.php:140
+msgid "The number of sorts that were done by scanning the table."
+msgstr ""
+
+#: server_status.php:141
+msgid "The number of times that a table lock was acquired immediately."
+msgstr ""
+
+#: server_status.php:142
+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 "
+"should first optimize your queries, and then either split your table or "
+"tables or use replication."
+msgstr ""
+
+#: server_status.php:143
+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 ""
+
+#: server_status.php:144
+msgid "The number of currently open connections."
+msgstr "Biredä açıq bulğan totaşu sanı."
+
+#: server_status.php:145
+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 "
+"doesn't give a notable performance improvement if you have a good thread "
+"implementation.)"
+msgstr ""
+
+#: server_status.php:146
+#, fuzzy
+msgid "The number of threads that are not sleeping."
+msgstr "Açıq toruçı birem sanı."
+
+#: server_status.php:157
msgid "Runtime Information"
msgstr "Eşläw Torışı"
-#: server_status.php:250
+#: server_status.php:361
msgid "Handler"
msgstr "Eşkärtkeç"
-#: server_status.php:251
+#: server_status.php:362
msgid "Query cache"
msgstr "Soraw alxätere"
-#: server_status.php:252
+#: server_status.php:363
msgid "Threads"
msgstr "Ceplär"
-#: server_status.php:254
+#: server_status.php:365
msgid "Temporary data"
msgstr "Çaqlı birem"
-#: server_status.php:255
+#: server_status.php:366
msgid "Delayed inserts"
msgstr "Kiçerelgän östäw"
-#: server_status.php:256
+#: server_status.php:367
msgid "Key cache"
msgstr "Tezeş alxätere"
-#: server_status.php:257
+#: server_status.php:368
msgid "Joins"
msgstr "Bäylär"
-#: server_status.php:259
+#: server_status.php:370
msgid "Sorting"
msgstr "Tezü"
-#: server_status.php:261
+#: server_status.php:372
msgid "Transaction coordinator"
msgstr "Eş-ara idäräçese"
-#: server_status.php:271
+#: server_status.php:382
msgid "Flush (close) all tables"
msgstr "Tüşämälärne yabıp beteräse"
-#: server_status.php:273
+#: server_status.php:384
msgid "Show open tables"
msgstr "Açıq tüşämä tezmäse"
-#: server_status.php:278
+#: server_status.php:389
msgid "Show slave hosts"
msgstr ""
-#: server_status.php:284
+#: server_status.php:395
msgid "Show slave status"
msgstr ""
-#: server_status.php:289
+#: server_status.php:400
msgid "Flush query cache"
msgstr "Soraw alxäteren awdar"
-#: server_status.php:294
+#: server_status.php:405
msgid "Show processes"
msgstr "Proseslär tezmäse"
-#: server_status.php:344
+#: server_status.php:455
#, fuzzy
#| msgid "Reset"
msgctxt "for Show status"
msgid "Reset"
msgstr "Awdar"
-#: server_status.php:350
+#: server_status.php:461
#, php-format
msgid "This MySQL server has been running for %s. It started up on %s."
msgstr "Bu MySQL-server %s eşli. %s çorında cibärelgän ide ul."
-#: server_status.php:360
+#: server_status.php:471
msgid ""
"This MySQL server works as master and slave in replication"
"b> process."
msgstr ""
-#: server_status.php:362
+#: server_status.php:473
msgid "This MySQL server works as master in replication process."
msgstr ""
-#: server_status.php:364
+#: server_status.php:475
msgid "This MySQL server works as slave in replication process."
msgstr ""
-#: server_status.php:366
+#: server_status.php:477
msgid ""
"For further information about replication status on the server, please visit "
"the replication section."
msgstr ""
-#: server_status.php:383
+#: server_status.php:494
msgid ""
"Server traffic: These tables show the network traffic statistics of "
"this MySQL server since its startup."
@@ -5776,46 +5785,46 @@ msgstr ""
"Server taşımı: MySQL-server cibärelgännän birle, anıñ belän çeltär "
"arasında bulğan taşım turında belem bondağı tüşämä eçendä birelä."
-#: server_status.php:388
+#: server_status.php:499
msgid "Traffic"
msgstr "Taşım"
-#: server_status.php:388
+#: server_status.php:499
msgid ""
"On a busy server, the byte counters may overrun, so those statistics as "
"reported by the MySQL server may be incorrect."
msgstr ""
-#: server_status.php:389 server_status.php:434 server_status.php:497
-#: server_status.php:555
+#: server_status.php:500 server_status.php:545 server_status.php:608
+#: server_status.php:666
msgid "per hour"
msgstr "säğät sayın"
-#: server_status.php:394
+#: server_status.php:505
msgid "Received"
msgstr "Alındı"
-#: server_status.php:404
+#: server_status.php:515
msgid "Sent"
msgstr "Cibärelde"
-#: server_status.php:433
+#: server_status.php:544
msgid "Connections"
msgstr "Totaşular"
-#: server_status.php:440
+#: server_status.php:551
msgid "max. concurrent connections"
msgstr ""
-#: server_status.php:447
+#: server_status.php:558
msgid "Failed attempts"
msgstr "Failed attempts"
-#: server_status.php:461
+#: server_status.php:572
msgid "Aborted"
msgstr "Özderelde"
-#: server_status.php:490
+#: server_status.php:601
#, php-format
msgid ""
"Query statistics: Since its startup, %s queries have been sent to the "
@@ -5823,19 +5832,19 @@ msgid ""
msgstr ""
"Soraw nöfüse: Bu server yöklännän birle, aña taba %s soraw kilgän."
-#: server_status.php:498
+#: server_status.php:609
msgid "per minute"
msgstr "minut sayın"
-#: server_status.php:499
+#: server_status.php:610
msgid "per second"
msgstr "sekund sayın"
-#: server_status.php:554
+#: server_status.php:665
msgid "Query type"
msgstr "Soraw töre"
-#: server_status.php:721
+#: server_status.php:832
#, fuzzy
msgid "Replication status"
msgstr "Bäyläneşlär"
diff --git a/po/uk.po b/po/uk.po
index 1943b5d1d..ea502da8f 100755
--- a/po/uk.po
+++ b/po/uk.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-06-04 16:07-0400\n"
+"POT-Creation-Date: 2010-06-08 12:32-0400\n"
"PO-Revision-Date: 2010-03-12 09:19+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: ukrainian \n"
@@ -14,11 +14,11 @@ msgstr ""
"X-Generator: Translate Toolkit 1.5.3\n"
#: browse_foreigners.php:38 browse_foreigners.php:59
-#: libraries/display_tbl.lib.php:417 server_privileges.php:1475
+#: libraries/display_tbl.lib.php:417 server_privileges.php:1514
msgid "Show all"
msgstr "Показати все"
-#: browse_foreigners.php:82 libraries/common.lib.php:2304
+#: browse_foreigners.php:82 libraries/common.lib.php:2313
#: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:394
#: libraries/export/pdf.php:147 pdf_schema.php:283 pdf_schema.php:1123
#: pdf_schema.php:1139
@@ -34,8 +34,8 @@ msgstr ""
#: browse_foreigners.php:150 db_structure.php:79 db_structure.php:80
#: db_structure.php:91 db_structure.php:93 db_structure.php:104
-#: db_structure.php:106 libraries/common.lib.php:2822
-#: libraries/common.lib.php:2829 libraries/db_links.inc.php:75
+#: db_structure.php:106 libraries/common.lib.php:2831
+#: libraries/common.lib.php:2838 libraries/db_links.inc.php:75
#: libraries/tbl_links.inc.php:63
msgid "Search"
msgstr "Шукати"
@@ -45,7 +45,7 @@ msgstr "Шукати"
#: db_structure.php:567 js/messages.php:48 libraries/Config.class.php:1046
#: libraries/Theme_Manager.class.php:311
#: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719
-#: libraries/common.lib.php:1333 libraries/common.lib.php:2279
+#: libraries/common.lib.php:1335 libraries/common.lib.php:2288
#: libraries/display_change_password.lib.php:82
#: libraries/display_create_table.lib.php:63
#: libraries/display_export.lib.php:275 libraries/display_import.lib.php:276
@@ -56,9 +56,9 @@ msgstr "Шукати"
#: libraries/sql_query_form.lib.php:552 libraries/tbl_properties.inc.php:782
#: main.php:128 navigation.php:237 pdf_pages.php:292 pdf_pages.php:328
#: pdf_pages.php:530 pmd_pdf.php:116 server_binlog.php:142
-#: server_privileges.php:625 server_privileges.php:1585
-#: server_privileges.php:1932 server_privileges.php:1979
-#: server_privileges.php:2018 server_replication.php:235
+#: server_privileges.php:664 server_privileges.php:1624
+#: server_privileges.php:1971 server_privileges.php:2018
+#: server_privileges.php:2057 server_replication.php:235
#: server_replication.php:318 server_replication.php:341
#: server_synchronize.php:1209 tbl_change.php:330 tbl_change.php:1174
#: tbl_change.php:1211 tbl_indexes.php:254 tbl_operations.php:265
@@ -76,7 +76,7 @@ msgstr "Ім'я ключа"
#: browse_foreigners.php:169 browse_foreigners.php:171
#: server_collations.php:55 server_collations.php:67 server_engines.php:59
-#: server_status.php:628
+#: server_status.php:739
msgid "Description"
msgstr "Опис"
@@ -117,7 +117,7 @@ msgstr "Назви колонок"
#: libraries/db_structure.lib.php:60 libraries/export/htmlword.php:245
#: libraries/export/latex.php:360 libraries/export/odt.php:297
#: libraries/export/texytext.php:234 libraries/tbl_properties.inc.php:100
-#: pdf_schema.php:1263 pdf_schema.php:1284 server_privileges.php:2031
+#: pdf_schema.php:1263 pdf_schema.php:1284 server_privileges.php:2070
#: tbl_change.php:287 tbl_change.php:314 tbl_printview.php:143
#: tbl_printview.php:313 tbl_select.php:136 tbl_structure.php:178
#: tbl_structure.php:659 tbl_tracking.php:274 tbl_tracking.php:321
@@ -161,9 +161,9 @@ msgstr "Коментарі"
#: libraries/Index.class.php:386 libraries/export/htmlword.php:322
#: libraries/export/latex.php:430 libraries/export/odt.php:368
#: libraries/export/texytext.php:311 libraries/mult_submits.inc.php:263
-#: pdf_schema.php:1344 server_privileges.php:1529 server_privileges.php:1540
-#: server_privileges.php:1850 server_privileges.php:1855
-#: server_privileges.php:2148 sql.php:132 sql.php:194 tbl_printview.php:229
+#: pdf_schema.php:1344 server_privileges.php:1568 server_privileges.php:1579
+#: server_privileges.php:1889 server_privileges.php:1894
+#: server_privileges.php:2187 sql.php:132 sql.php:194 tbl_printview.php:229
#: tbl_structure.php:350 tbl_tracking.php:337 tbl_tracking.php:342
msgid "No"
msgstr "Ні"
@@ -177,9 +177,9 @@ msgstr "Ні"
#: libraries/mult_submits.inc.php:101 libraries/mult_submits.inc.php:106
#: libraries/mult_submits.inc.php:111 libraries/mult_submits.inc.php:262
#: libraries/mult_submits.inc.php:273 pdf_schema.php:1344
-#: server_databases.php:64 server_privileges.php:1526
-#: server_privileges.php:1540 server_privileges.php:1850
-#: server_privileges.php:1853 server_privileges.php:2148 sql.php:193
+#: server_databases.php:64 server_privileges.php:1565
+#: server_privileges.php:1579 server_privileges.php:1889
+#: server_privileges.php:1892 server_privileges.php:2187 sql.php:193
#: tbl_printview.php:229 tbl_structure.php:40 tbl_structure.php:350
#: tbl_tracking.php:335 tbl_tracking.php:340
msgid "Yes"
@@ -276,7 +276,7 @@ msgstr ""
msgid "BLOB Repository"
msgstr ""
-#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1350
+#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1352
#: libraries/server_links.inc.php:49 server_processlist.php:59
#: tbl_tracking.php:596 test/theme.php:101
msgid "Status"
@@ -339,8 +339,8 @@ msgstr "Редагувати PDF Сторінки"
#: db_printview.php:104 db_tracking.php:72 db_tracking.php:157
#: libraries/db_structure.lib.php:46 libraries/export/xml.php:328
-#: libraries/header.inc.php:126 pdf_pages.php:424 server_privileges.php:1626
-#: server_privileges.php:1682 server_privileges.php:1946
+#: libraries/header.inc.php:126 pdf_pages.php:424 server_privileges.php:1665
+#: server_privileges.php:1721 server_privileges.php:1985
#: server_synchronize.php:423 server_synchronize.php:866 tbl_tracking.php:592
#: test/theme.php:75
msgid "Table"
@@ -441,7 +441,7 @@ msgstr "Видалити"
#: db_qbe.php:370 db_qbe.php:451 db_qbe.php:522 db_qbe.php:553
#: libraries/display_import.lib.php:166 libraries/tbl_properties.inc.php:779
-#: server_privileges.php:258 tbl_change.php:1031 tbl_indexes.php:250
+#: server_privileges.php:297 tbl_change.php:1031 tbl_indexes.php:250
#: tbl_select.php:288
msgid "Or"
msgstr "або"
@@ -475,7 +475,7 @@ msgstr "Використовувати таблиці"
msgid "SQL query on database %s:"
msgstr "SQL-запит до БД %s:"
-#: db_qbe.php:934 libraries/common.lib.php:1223
+#: db_qbe.php:934 libraries/common.lib.php:1225
msgid "Submit Query"
msgstr "Виконати запит"
@@ -514,7 +514,7 @@ msgstr "%s співпадіння у таблиці %s"
#: db_search.php:267 db_structure.php:77 db_structure.php:78
#: db_structure.php:90 db_structure.php:92 db_structure.php:103
-#: db_structure.php:105 libraries/common.lib.php:2824
+#: db_structure.php:105 libraries/common.lib.php:2833
#: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50
#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:467
msgid "Browse"
@@ -561,26 +561,26 @@ msgstr "Всередині таблиць:"
#: db_structure.php:81 db_structure.php:82 db_structure.php:94
#: db_structure.php:95 db_structure.php:107 db_structure.php:108
-#: libraries/common.lib.php:2823 libraries/sql_query_form.lib.php:334
+#: libraries/common.lib.php:2832 libraries/sql_query_form.lib.php:334
#: libraries/sql_query_form.lib.php:337 libraries/tbl_links.inc.php:76
msgid "Insert"
msgstr "Вставити"
#: db_structure.php:83 db_structure.php:96 db_structure.php:109
-#: libraries/common.lib.php:2820 libraries/common.lib.php:2827
+#: libraries/common.lib.php:2829 libraries/common.lib.php:2836
#: libraries/db_links.inc.php:63 libraries/export/htmlword.php:23
#: libraries/export/latex.php:33 libraries/export/latex.php:337
#: libraries/export/odt.php:32 libraries/export/sql.php:60
#: libraries/export/texytext.php:23 libraries/import.lib.php:1104
#: libraries/tbl_links.inc.php:56 pmd_general.php:134
-#: server_privileges.php:554 server_replication.php:315 tbl_tracking.php:269
+#: server_privileges.php:593 server_replication.php:315 tbl_tracking.php:269
msgid "Structure"
msgstr "Структура"
#: db_structure.php:84 db_structure.php:85 db_structure.php:97
#: db_structure.php:98 db_structure.php:110 db_structure.php:111
#: db_structure.php:545 db_structure.php:546 db_tracking.php:91
-#: libraries/Index.class.php:483 libraries/common.lib.php:1654
+#: libraries/Index.class.php:483 libraries/common.lib.php:1656
#: libraries/db_links.inc.php:100 libraries/mult_submits.inc.php:36
#: libraries/mult_submits.inc.php:73 libraries/tbl_links.inc.php:127
#: server_databases.php:352 tbl_structure.php:27 tbl_structure.php:151
@@ -590,7 +590,7 @@ msgstr "Знищити"
#: db_structure.php:86 db_structure.php:87 db_structure.php:99
#: db_structure.php:100 db_structure.php:112 db_structure.php:113
-#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1653
+#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1655
#: libraries/mult_submits.inc.php:39 libraries/tbl_links.inc.php:105
msgid "Empty"
msgstr "Очистити"
@@ -632,7 +632,7 @@ msgstr ""
#: db_structure.php:485 libraries/db_structure.lib.php:49
#: libraries/server_links.inc.php:70 server_replication.php:33
-#: server_replication.php:164 server_status.php:258
+#: server_replication.php:164 server_status.php:369
msgid "Replication"
msgstr ""
@@ -648,20 +648,20 @@ msgstr ""
#: db_structure.php:524 db_structure.php:541 db_structure.php:542
#: libraries/display_tbl.lib.php:2081 libraries/display_tbl.lib.php:2086
#: libraries/mult_submits.inc.php:16 server_databases.php:346
-#: server_databases.php:351 server_privileges.php:1557 tbl_structure.php:455
+#: server_databases.php:351 server_privileges.php:1596 tbl_structure.php:455
#: tbl_structure.php:464
msgid "With selected:"
msgstr "З відміченими:"
#: db_structure.php:527 libraries/display_tbl.lib.php:2076
-#: server_databases.php:348 server_privileges.php:530
-#: server_privileges.php:1560 tbl_structure.php:458
+#: server_databases.php:348 server_privileges.php:569
+#: server_privileges.php:1599 tbl_structure.php:458
msgid "Check All"
msgstr "Відмітити все"
#: db_structure.php:531 libraries/display_tbl.lib.php:2077
#: libraries/replication_gui.lib.php:33 server_databases.php:350
-#: server_privileges.php:533 server_privileges.php:1564 tbl_structure.php:462
+#: server_privileges.php:572 server_privileges.php:1603 tbl_structure.php:462
msgid "Uncheck All"
msgstr "Зняти усі відмітки"
@@ -699,7 +699,7 @@ msgstr "Аналіз таблиці"
#: libraries/display_export.lib.php:83 libraries/display_tbl.lib.php:2094
#: libraries/display_tbl.lib.php:2225 libraries/mult_submits.inc.php:62
#: libraries/server_links.inc.php:84 libraries/tbl_links.inc.php:82
-#: pmd_pdf.php:84 pmd_pdf.php:109 server_privileges.php:1341
+#: pmd_pdf.php:84 pmd_pdf.php:109 server_privileges.php:1380
#: setup/frames/menu.inc.php:22 tbl_row_action.php:59
msgid "Export"
msgstr "Експорт"
@@ -717,8 +717,8 @@ msgstr ""
#: libraries/export/sql.php:342 libraries/export/texytext.php:84
#: libraries/export/xml.php:255 libraries/header.inc.php:106
#: libraries/header_printview.inc.php:58 server_databases.php:169
-#: server_privileges.php:1621 server_privileges.php:1682
-#: server_privileges.php:1940 server_processlist.php:56
+#: server_privileges.php:1660 server_privileges.php:1721
+#: server_privileges.php:1979 server_processlist.php:56
#: server_synchronize.php:1179 server_synchronize.php:1183
#: tbl_tracking.php:591 test/theme.php:65
msgid "Database"
@@ -738,8 +738,8 @@ msgstr ""
#: db_tracking.php:77 libraries/Index.class.php:440
#: libraries/db_structure.lib.php:53 server_databases.php:203
-#: server_privileges.php:1503 server_privileges.php:1686
-#: server_privileges.php:2034 tbl_structure.php:187
+#: server_privileges.php:1542 server_privileges.php:1725
+#: server_privileges.php:2073 tbl_structure.php:187
msgid "Action"
msgstr "Дія"
@@ -928,11 +928,11 @@ msgstr "Порожнє ім'я хоста!"
msgid "The user name is empty!"
msgstr "Порожнє і'мя користувача!"
-#: js/messages.php:44 server_privileges.php:1197 user_password.php:70
+#: js/messages.php:44 server_privileges.php:1236 user_password.php:70
msgid "The password is empty!"
msgstr "Порожній пароль!"
-#: js/messages.php:45 server_privileges.php:1195 user_password.php:73
+#: js/messages.php:45 server_privileges.php:1234 user_password.php:73
msgid "The passwords aren't the same!"
msgstr "Паролі не однакові!"
@@ -1011,8 +1011,8 @@ msgid "Prev"
msgstr "Назад"
#. l10n: Display text for next month link in calendar
-#: js/messages.php:77 libraries/common.lib.php:2344
-#: libraries/common.lib.php:2347 libraries/display_tbl.lib.php:338
+#: js/messages.php:77 libraries/common.lib.php:2353
+#: libraries/common.lib.php:2356 libraries/display_tbl.lib.php:338
#: server_binlog.php:205 server_binlog.php:207 tbl_printview.php:424
#: tbl_structure.php:801
msgid "Next"
@@ -1088,27 +1088,27 @@ msgid "December"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:97 libraries/common.lib.php:1555
+#: js/messages.php:97 libraries/common.lib.php:1557
msgid "Jan"
msgstr "Січ"
#. l10n: Short month name
-#: js/messages.php:99 libraries/common.lib.php:1557
+#: js/messages.php:99 libraries/common.lib.php:1559
msgid "Feb"
msgstr "Лют"
#. l10n: Short month name
-#: js/messages.php:101 libraries/common.lib.php:1559
+#: js/messages.php:101 libraries/common.lib.php:1561
msgid "Mar"
msgstr "Бер"
#. l10n: Short month name
-#: js/messages.php:103 libraries/common.lib.php:1561
+#: js/messages.php:103 libraries/common.lib.php:1563
msgid "Apr"
msgstr "Квт"
#. l10n: Short month name
-#: js/messages.php:105 libraries/common.lib.php:1563
+#: js/messages.php:105 libraries/common.lib.php:1565
#, fuzzy
#| msgid "May"
msgctxt "Short month name"
@@ -1116,37 +1116,37 @@ msgid "May"
msgstr "Трв"
#. l10n: Short month name
-#: js/messages.php:107 libraries/common.lib.php:1565
+#: js/messages.php:107 libraries/common.lib.php:1567
msgid "Jun"
msgstr "Чрв"
#. l10n: Short month name
-#: js/messages.php:109 libraries/common.lib.php:1567
+#: js/messages.php:109 libraries/common.lib.php:1569
msgid "Jul"
msgstr "Лип"
#. l10n: Short month name
-#: js/messages.php:111 libraries/common.lib.php:1569
+#: js/messages.php:111 libraries/common.lib.php:1571
msgid "Aug"
msgstr "Сер"
#. l10n: Short month name
-#: js/messages.php:113 libraries/common.lib.php:1571
+#: js/messages.php:113 libraries/common.lib.php:1573
msgid "Sep"
msgstr "Вер"
#. l10n: Short month name
-#: js/messages.php:115 libraries/common.lib.php:1573
+#: js/messages.php:115 libraries/common.lib.php:1575
msgid "Oct"
msgstr "Жов"
#. l10n: Short month name
-#: js/messages.php:117 libraries/common.lib.php:1575
+#: js/messages.php:117 libraries/common.lib.php:1577
msgid "Nov"
msgstr "Лис"
#. l10n: Short month name
-#: js/messages.php:119 libraries/common.lib.php:1577
+#: js/messages.php:119 libraries/common.lib.php:1579
msgid "Dec"
msgstr "Гру"
@@ -1187,37 +1187,37 @@ msgid "Saturday"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:132 libraries/common.lib.php:1580
+#: js/messages.php:132 libraries/common.lib.php:1582
msgid "Sun"
msgstr "Нд"
#. l10n: Short week day name
-#: js/messages.php:134 libraries/common.lib.php:1582
+#: js/messages.php:134 libraries/common.lib.php:1584
msgid "Mon"
msgstr "Пн"
#. l10n: Short week day name
-#: js/messages.php:136 libraries/common.lib.php:1584
+#: js/messages.php:136 libraries/common.lib.php:1586
msgid "Tue"
msgstr "Вт"
#. l10n: Short week day name
-#: js/messages.php:138 libraries/common.lib.php:1586
+#: js/messages.php:138 libraries/common.lib.php:1588
msgid "Wed"
msgstr "Ср"
#. l10n: Short week day name
-#: js/messages.php:140 libraries/common.lib.php:1588
+#: js/messages.php:140 libraries/common.lib.php:1590
msgid "Thu"
msgstr "Чт"
#. l10n: Short week day name
-#: js/messages.php:142 libraries/common.lib.php:1590
+#: js/messages.php:142 libraries/common.lib.php:1592
msgid "Fri"
msgstr "Пт"
#. l10n: Short week day name
-#: js/messages.php:144 libraries/common.lib.php:1592
+#: js/messages.php:144 libraries/common.lib.php:1594
msgid "Sat"
msgstr "Сб"
@@ -1360,7 +1360,7 @@ msgid "Comment"
msgstr ""
#: libraries/Index.class.php:466 libraries/common.lib.php:616
-#: libraries/common.lib.php:1199 libraries/display_tbl.lib.php:1117
+#: libraries/common.lib.php:1201 libraries/display_tbl.lib.php:1117
#: libraries/import.lib.php:1087 libraries/import.lib.php:1111
#: pdf_pages.php:285 setup/frames/index.inc.php:124
#: setup/lib/messages.inc.php:352 tbl_row_action.php:69
@@ -1384,7 +1384,7 @@ msgid ""
msgstr ""
#: libraries/List_Database.class.php:431 libraries/server_links.inc.php:41
-#: server_databases.php:88 server_privileges.php:1621
+#: server_databases.php:88 server_privileges.php:1660
#: setup/lib/messages.inc.php:110 test/theme.php:93
msgid "Databases"
msgstr "Бази Даних"
@@ -1713,7 +1713,7 @@ msgid "Documentation"
msgstr "Документація"
#: libraries/common.lib.php:595 libraries/header_printview.inc.php:61
-#: server_processlist.php:60 server_status.php:247
+#: server_processlist.php:60 server_status.php:358
msgid "SQL query"
msgstr "SQL-запит"
@@ -1729,128 +1729,128 @@ msgstr "Тлумачити SQL"
msgid "Skip Explain SQL"
msgstr "Не тлумачити SQL"
-#: libraries/common.lib.php:1212
+#: libraries/common.lib.php:1214
msgid "Without PHP Code"
msgstr "без PHP коду"
-#: libraries/common.lib.php:1215 setup/lib/messages.inc.php:355
+#: libraries/common.lib.php:1217 setup/lib/messages.inc.php:355
msgid "Create PHP Code"
msgstr "Створити PHP код"
-#: libraries/common.lib.php:1233 server_status.php:341
+#: libraries/common.lib.php:1235 server_status.php:452
#: setup/lib/messages.inc.php:354
msgid "Refresh"
msgstr ""
-#: libraries/common.lib.php:1242
+#: libraries/common.lib.php:1244
msgid "Skip Validate SQL"
msgstr "Не перевіряти SQL"
-#: libraries/common.lib.php:1245 setup/lib/messages.inc.php:356 sql.php:518
+#: libraries/common.lib.php:1247 setup/lib/messages.inc.php:356 sql.php:518
msgid "Validate SQL"
msgstr "Перевірити SQL"
-#: libraries/common.lib.php:1276
+#: libraries/common.lib.php:1278
msgid "Inline edit of this query"
msgstr ""
-#: libraries/common.lib.php:1278
+#: libraries/common.lib.php:1280
msgid "Inline"
msgstr ""
-#: libraries/common.lib.php:1332 libraries/common.lib.php:1347
+#: libraries/common.lib.php:1334 libraries/common.lib.php:1349
msgid "Profiling"
msgstr ""
-#: libraries/common.lib.php:1351 libraries/tbl_triggers.lib.php:28
+#: libraries/common.lib.php:1353 libraries/tbl_triggers.lib.php:28
#: server_processlist.php:58
msgid "Time"
msgstr "Час"
#. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "B"
msgstr "Байт"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "KiB"
msgstr "кБ"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "MiB"
msgstr "МБ"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "GiB"
msgstr "ГБ"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "TiB"
msgstr "TB"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "PiB"
msgstr "PB"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "EiB"
msgstr "EB"
#. l10n: Thousands separator
-#: libraries/common.lib.php:1417
+#: libraries/common.lib.php:1419
msgid ","
msgstr ","
#. l10n: Decimal separator
-#: libraries/common.lib.php:1419
+#: libraries/common.lib.php:1421
msgid "."
msgstr "."
#. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string
-#: libraries/common.lib.php:1596
+#: libraries/common.lib.php:1598
#: libraries/transformations/text_plain__dateformat.inc.php:34
msgid "%B %d, %Y at %I:%M %p"
msgstr "%B %d %Y р., %H:%M"
-#: libraries/common.lib.php:1898
+#: libraries/common.lib.php:1907
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "%s днів, %s годин, %s хвилин і %s секунд"
-#: libraries/common.lib.php:2313 libraries/common.lib.php:2316
-#: libraries/display_tbl.lib.php:290 server_status.php:608
+#: libraries/common.lib.php:2322 libraries/common.lib.php:2325
+#: libraries/display_tbl.lib.php:290 server_status.php:719
msgid "Begin"
msgstr "Початок"
-#: libraries/common.lib.php:2314 libraries/common.lib.php:2317
+#: libraries/common.lib.php:2323 libraries/common.lib.php:2326
#: libraries/display_tbl.lib.php:291 server_binlog.php:168
#: server_binlog.php:170
msgid "Previous"
msgstr "Назад"
-#: libraries/common.lib.php:2345 libraries/common.lib.php:2348
+#: libraries/common.lib.php:2354 libraries/common.lib.php:2357
#: libraries/display_tbl.lib.php:353
msgid "End"
msgstr "Кінець"
-#: libraries/common.lib.php:2421
+#: libraries/common.lib.php:2430
#, php-format
msgid "Jump to database "%s"."
msgstr "Перейти до бази даних "%s"."
-#: libraries/common.lib.php:2441
+#: libraries/common.lib.php:2450
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr ""
-#: libraries/common.lib.php:2821 libraries/common.lib.php:2828
+#: libraries/common.lib.php:2830 libraries/common.lib.php:2837
#: libraries/db_links.inc.php:68 libraries/export/sql.php:25
#: libraries/import/sql.php:18 libraries/server_links.inc.php:45
#: libraries/tbl_links.inc.php:60 querywindow.php:99 test/theme.php:97
msgid "SQL"
msgstr "SQL"
-#: libraries/common.lib.php:2830 libraries/db_links.inc.php:104
+#: libraries/common.lib.php:2839 libraries/db_links.inc.php:104
#: libraries/tbl_links.inc.php:95 libraries/tbl_links.inc.php:117
#: view_operations.php:89
msgid "Operations"
@@ -1904,8 +1904,8 @@ msgid "Import"
msgstr ""
#: libraries/db_links.inc.php:111 libraries/server_links.inc.php:66
-#: server_privileges.php:72 server_privileges.php:1683
-#: server_privileges.php:2032 test/theme.php:117
+#: server_privileges.php:111 server_privileges.php:1722
+#: server_privileges.php:2071 test/theme.php:117
msgid "Privileges"
msgstr "Привілеї"
@@ -1951,22 +1951,22 @@ msgid "Change password"
msgstr "Змінити пароль"
#: libraries/display_change_password.lib.php:35
-#: libraries/replication_gui.lib.php:345 server_privileges.php:768
+#: libraries/replication_gui.lib.php:345 server_privileges.php:807
msgid "No Password"
msgstr "Без паролю"
#: libraries/display_change_password.lib.php:41
#: libraries/replication_gui.lib.php:59 libraries/replication_gui.lib.php:60
#: libraries/replication_gui.lib.php:335 libraries/replication_gui.lib.php:339
-#: libraries/replication_gui.lib.php:349 server_privileges.php:757
-#: server_privileges.php:761 server_privileges.php:772
-#: server_privileges.php:1499 server_synchronize.php:1175
+#: libraries/replication_gui.lib.php:349 server_privileges.php:796
+#: server_privileges.php:800 server_privileges.php:811
+#: server_privileges.php:1538 server_synchronize.php:1175
msgid "Password"
msgstr "Пароль"
#: libraries/display_change_password.lib.php:46
#: libraries/replication_gui.lib.php:353 libraries/replication_gui.lib.php:356
-#: server_privileges.php:776 server_privileges.php:779
+#: server_privileges.php:815 server_privileges.php:818
msgid "Re-type"
msgstr "Підтвердження"
@@ -1979,12 +1979,12 @@ msgid "MySQL 4.0 compatible"
msgstr ""
#: libraries/display_change_password.lib.php:72
-#: libraries/replication_gui.lib.php:360 server_privileges.php:783
+#: libraries/replication_gui.lib.php:360 server_privileges.php:822
msgid "Generate Password"
msgstr ""
#: libraries/display_change_password.lib.php:75
-#: libraries/replication_gui.lib.php:363 server_privileges.php:786
+#: libraries/replication_gui.lib.php:363 server_privileges.php:825
msgid "Generate"
msgstr ""
@@ -1997,8 +1997,8 @@ msgstr "Створити нову БД"
msgid "Create"
msgstr "Створити"
-#: libraries/display_create_database.lib.php:40 server_privileges.php:74
-#: server_privileges.php:1388 server_replication.php:35
+#: libraries/display_create_database.lib.php:40 server_privileges.php:113
+#: server_privileges.php:1427 server_replication.php:35
msgid "No Privileges"
msgstr "Без привілеїв"
@@ -2086,7 +2086,7 @@ msgstr "Стискання"
#: libraries/display_export.lib.php:240 libraries/display_import.lib.php:197
#: libraries/display_import.lib.php:210 libraries/display_tbl.lib.php:530
#: libraries/export/sql.php:868 libraries/tbl_properties.inc.php:575
-#: server_privileges.php:1836 server_processlist.php:75
+#: server_privileges.php:1875 server_processlist.php:75
msgid "None"
msgstr "Немає"
@@ -2403,7 +2403,7 @@ msgstr ""
msgid "Buffer Pool"
msgstr ""
-#: libraries/engines/innodb.lib.php:145 server_status.php:306
+#: libraries/engines/innodb.lib.php:145 server_status.php:417
msgid "InnoDB Status"
msgstr "Статус InnoDB"
@@ -2412,8 +2412,8 @@ msgid "Buffer Pool Usage"
msgstr ""
#: libraries/engines/innodb.lib.php:194 server_databases.php:137
-#: server_databases.php:305 server_status.php:414 server_status.php:475
-#: server_status.php:496 tbl_printview.php:351 tbl_structure.php:696
+#: server_databases.php:305 server_status.php:525 server_status.php:586
+#: server_status.php:607 tbl_printview.php:351 tbl_structure.php:696
msgid "Total"
msgstr "Разом"
@@ -2730,7 +2730,7 @@ msgstr ""
#: libraries/export/latex.php:201 libraries/export/odt.php:48
#: libraries/export/sql.php:106 libraries/export/sql.php:868
#: libraries/export/texytext.php:27 server_databases.php:127
-#: server_privileges.php:537 server_replication.php:316 tbl_printview.php:317
+#: server_privileges.php:576 server_replication.php:316 tbl_printview.php:317
#: tbl_structure.php:665
msgid "Data"
msgstr "Дані"
@@ -2780,9 +2780,9 @@ msgstr "MIME-type"
#: libraries/export/xml.php:102 libraries/header_printview.inc.php:57
#: libraries/replication_gui.lib.php:63 libraries/replication_gui.lib.php:174
#: libraries/replication_gui.lib.php:269 libraries/replication_gui.lib.php:272
-#: libraries/replication_gui.lib.php:329 server_privileges.php:692
-#: server_privileges.php:695 server_privileges.php:751
-#: server_privileges.php:1498 server_privileges.php:2030
+#: libraries/replication_gui.lib.php:329 server_privileges.php:731
+#: server_privileges.php:734 server_privileges.php:790
+#: server_privileges.php:1537 server_privileges.php:2069
#: server_processlist.php:55 server_synchronize.php:1159
msgid "Host"
msgstr "Хост"
@@ -3132,746 +3132,6 @@ msgstr "Немає"
msgid "Convert to Kana"
msgstr ""
-#. l10n: Text direction, use either ltr or rtl
-#: libraries/messages.inc.php:19
-msgid "ltr"
-msgstr "ltr"
-
-#: libraries/messages.inc.php:21
-msgid "Content of table __TABLE__"
-msgstr ""
-
-#: libraries/messages.inc.php:22
-msgid "(continued)"
-msgstr ""
-
-#: libraries/messages.inc.php:23
-msgid "Structure of table __TABLE__"
-msgstr ""
-
-#: libraries/messages.inc.php:25 server_privileges.php:227
-msgid "Includes all privileges except GRANT."
-msgstr "Дозволити всі права за винятком GRANT."
-
-#: libraries/messages.inc.php:26 server_privileges.php:153
-#: server_privileges.php:476
-msgid "Allows altering the structure of existing tables."
-msgstr "Дозволити змінювати структуру наявних таблиць."
-
-#: libraries/messages.inc.php:27 server_privileges.php:169
-#: server_privileges.php:482
-msgid "Allows altering and dropping stored routines."
-msgstr ""
-
-#: libraries/messages.inc.php:28 server_privileges.php:145
-#: server_privileges.php:475
-msgid "Allows creating new databases and tables."
-msgstr "Дозволити створювати нові бази даних та таблиці."
-
-#: libraries/messages.inc.php:29 server_privileges.php:168
-#: server_privileges.php:481
-msgid "Allows creating stored routines."
-msgstr ""
-
-#: libraries/messages.inc.php:30 server_privileges.php:475
-msgid "Allows creating new tables."
-msgstr "Дозволити створювати нові таблиці."
-
-#: libraries/messages.inc.php:31 server_privileges.php:156
-#: server_privileges.php:479
-msgid "Allows creating temporary tables."
-msgstr "Дозволити створювати тимчасові таблиці."
-
-#: libraries/messages.inc.php:32 server_privileges.php:170
-#: server_privileges.php:515
-msgid "Allows creating, dropping and renaming user accounts."
-msgstr ""
-
-#: libraries/messages.inc.php:33 server_privileges.php:160
-#: server_privileges.php:164 server_privileges.php:487
-#: server_privileges.php:491
-msgid "Allows creating new views."
-msgstr ""
-
-#: libraries/messages.inc.php:34 server_privileges.php:144
-#: server_privileges.php:467
-msgid "Allows deleting data."
-msgstr "Дозволити знищувати дані з таблиць."
-
-#: libraries/messages.inc.php:35 server_privileges.php:146
-#: server_privileges.php:478
-msgid "Allows dropping databases and tables."
-msgstr "Дозволити знищувати бази даних та таблиці."
-
-#: libraries/messages.inc.php:36 server_privileges.php:478
-msgid "Allows dropping tables."
-msgstr "Дозволити знищувати таблиці."
-
-#: libraries/messages.inc.php:37 server_privileges.php:161
-#: server_privileges.php:495
-msgid "Allows to set up events for the event scheduler"
-msgstr ""
-
-#: libraries/messages.inc.php:38 server_privileges.php:171
-#: server_privileges.php:483
-msgid "Allows executing stored routines."
-msgstr ""
-
-#: libraries/messages.inc.php:39 server_privileges.php:150
-#: server_privileges.php:470
-msgid "Allows importing data from and exporting data into files."
-msgstr "Дозволити імпорт даних з файлів, та експорт у файли."
-
-#: libraries/messages.inc.php:40 server_privileges.php:501
-msgid ""
-"Allows adding users and privileges without reloading the privilege tables."
-msgstr ""
-"Дозволити додавання користувачів та прав без перезавантаження таблиці прав."
-
-#: libraries/messages.inc.php:41 server_privileges.php:152
-#: server_privileges.php:477
-msgid "Allows creating and dropping indexes."
-msgstr "Дозволити створення та знищення індексів."
-
-#: libraries/messages.inc.php:42 server_privileges.php:142
-#: server_privileges.php:403 server_privileges.php:465
-msgid "Allows inserting and replacing data."
-msgstr "Дозволити вставку та заміну даних."
-
-#: libraries/messages.inc.php:43 server_privileges.php:157
-#: server_privileges.php:510
-msgid "Allows locking tables for the current thread."
-msgstr "Дозволити блокування таблиць для біжучих потоків."
-
-#: libraries/messages.inc.php:44 server_privileges.php:607
-#: server_privileges.php:609
-msgid "Limits the number of new connections the user may open per hour."
-msgstr ""
-"Обмежити кількість нових під'єднань, які користувач може створювати протягом "
-"години."
-
-#: libraries/messages.inc.php:45 server_privileges.php:595
-#: server_privileges.php:597
-msgid "Limits the number of queries the user may send to the server per hour."
-msgstr ""
-"Обмежити кількість запитів, які користувач може надіслати серверу протягом "
-"години."
-
-#: libraries/messages.inc.php:46 server_privileges.php:601
-#: server_privileges.php:603
-msgid ""
-"Limits the number of commands that change any table or database the user may "
-"execute per hour."
-msgstr ""
-"Обмежити кількість команд, що вносять зміни до будь-якої таблиці чи бази "
-"даних, які користувач може виконати протягом години."
-
-#: libraries/messages.inc.php:47 server_privileges.php:613
-#: server_privileges.php:615
-msgid "Limits the number of simultaneous connections the user may have."
-msgstr ""
-
-#: libraries/messages.inc.php:48 server_privileges.php:149
-#: server_privileges.php:505
-msgid "Allows viewing processes of all users"
-msgstr ""
-
-#: libraries/messages.inc.php:49 server_privileges.php:151
-#: server_privileges.php:409 server_privileges.php:511
-msgid "Has no effect in this MySQL version."
-msgstr "Неефективно для цієї версії MySQL."
-
-#: libraries/messages.inc.php:50 server_privileges.php:147
-#: server_privileges.php:506
-msgid "Allows reloading server settings and flushing the server's caches."
-msgstr "Дозволити перезавантаження установок та очищення кешу сервера."
-
-#: libraries/messages.inc.php:51 server_privileges.php:159
-#: server_privileges.php:513
-msgid "Allows the user to ask where the slaves / masters are."
-msgstr "Надати користувачу право запитувати де є slaves / masters."
-
-#: libraries/messages.inc.php:52 server_privileges.php:158
-#: server_privileges.php:514
-msgid "Needed for the replication slaves."
-msgstr "Необхідно для реплікації slaves."
-
-#: libraries/messages.inc.php:53 server_privileges.php:141
-#: server_privileges.php:400 server_privileges.php:464
-msgid "Allows reading data."
-msgstr "Дозволити читання даних."
-
-#: libraries/messages.inc.php:54 server_privileges.php:154
-#: server_privileges.php:508
-msgid "Gives access to the complete list of databases."
-msgstr "Надати доступ до повного списку баз даних."
-
-#: libraries/messages.inc.php:55 server_privileges.php:165
-#: server_privileges.php:167 server_privileges.php:480
-msgid "Allows performing SHOW CREATE VIEW queries."
-msgstr ""
-
-#: libraries/messages.inc.php:56 server_privileges.php:148
-#: server_privileges.php:507
-msgid "Allows shutting down the server."
-msgstr "Дозволити вимкнення сервера."
-
-#: libraries/messages.inc.php:57 server_privileges.php:155
-#: server_privileges.php:504
-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/messages.inc.php:58 server_privileges.php:162
-#: server_privileges.php:496
-msgid "Allows creating and dropping triggers"
-msgstr ""
-
-#: libraries/messages.inc.php:59 server_privileges.php:143
-#: server_privileges.php:406 server_privileges.php:466
-msgid "Allows changing data."
-msgstr "Дозволити зміну даних."
-
-#: libraries/messages.inc.php:60 server_privileges.php:221
-msgid "No privileges."
-msgstr "Немає прав."
-
-#: libraries/messages.inc.php:62
-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/messages.inc.php:63
-msgid "The number of transactions that used the temporary binary log cache."
-msgstr ""
-
-#: libraries/messages.inc.php:64
-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 "
-"to increase the tmp_table_size value to cause temporary tables to be memory-"
-"based instead of disk-based."
-msgstr ""
-
-#: libraries/messages.inc.php:65
-msgid "How many temporary files mysqld has created."
-msgstr ""
-
-#: libraries/messages.inc.php:66
-msgid ""
-"The number of in-memory temporary tables created automatically by the server "
-"while executing statements."
-msgstr ""
-
-#: libraries/messages.inc.php:67
-msgid ""
-"The number of rows written with INSERT DELAYED for which some error occurred "
-"(probably duplicate key)."
-msgstr ""
-
-#: libraries/messages.inc.php:68
-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/messages.inc.php:69
-msgid "The number of INSERT DELAYED rows written."
-msgstr ""
-
-#: libraries/messages.inc.php:70
-msgid "The number of executed FLUSH statements."
-msgstr ""
-
-#: libraries/messages.inc.php:71
-msgid "The number of internal COMMIT statements."
-msgstr ""
-
-#: libraries/messages.inc.php:72
-msgid "The number of times a row was deleted from a table."
-msgstr ""
-
-#: libraries/messages.inc.php:73
-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/messages.inc.php:74
-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/messages.inc.php:75
-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/messages.inc.php:76
-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/messages.inc.php:77
-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/messages.inc.php:78
-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 "
-"probably have a lot of queries that require MySQL to scan whole tables or "
-"you have joins that don't use keys properly."
-msgstr ""
-
-#: libraries/messages.inc.php:79
-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 "
-"tables are not properly indexed or that your queries are not written to take "
-"advantage of the indexes you have."
-msgstr ""
-
-#: libraries/messages.inc.php:80
-msgid "The number of internal ROLLBACK statements."
-msgstr ""
-
-#: libraries/messages.inc.php:81
-msgid "The number of requests to update a row in a table."
-msgstr ""
-
-#: libraries/messages.inc.php:82
-msgid "The number of requests to insert a row in a table."
-msgstr ""
-
-#: libraries/messages.inc.php:83
-msgid "The number of pages containing data (dirty or clean)."
-msgstr ""
-
-#: libraries/messages.inc.php:84
-msgid "The number of pages currently dirty."
-msgstr ""
-
-#: libraries/messages.inc.php:85
-msgid "The number of buffer pool pages that have been requested to be flushed."
-msgstr ""
-
-#: libraries/messages.inc.php:86
-msgid "The number of free pages."
-msgstr ""
-
-#: libraries/messages.inc.php:87
-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/messages.inc.php:88
-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 "
-"be calculated as Innodb_buffer_pool_pages_total - "
-"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data."
-msgstr ""
-
-#: libraries/messages.inc.php:89
-msgid "Total size of buffer pool, in pages."
-msgstr ""
-
-#: libraries/messages.inc.php:90
-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/messages.inc.php:91
-msgid ""
-"The number of sequential read-aheads InnoDB initiated. This happens when "
-"InnoDB does a sequential full table scan."
-msgstr ""
-
-#: libraries/messages.inc.php:92
-msgid "The number of logical read requests InnoDB has done."
-msgstr ""
-
-#: libraries/messages.inc.php:93
-msgid ""
-"The number of logical reads that InnoDB could not satisfy from buffer pool "
-"and had to do a single-page read."
-msgstr ""
-
-#: libraries/messages.inc.php:94
-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 "
-"available, it's necessary to wait for pages to be flushed first. This "
-"counter counts instances of these waits. If the buffer pool size was set "
-"properly, this value should be small."
-msgstr ""
-
-#: libraries/messages.inc.php:95
-msgid "The number writes done to the InnoDB buffer pool."
-msgstr ""
-
-#: libraries/messages.inc.php:96
-msgid "The number of fsync() operations so far."
-msgstr ""
-
-#: libraries/messages.inc.php:97
-msgid "The current number of pending fsync() operations."
-msgstr ""
-
-#: libraries/messages.inc.php:98
-msgid "The current number of pending reads."
-msgstr ""
-
-#: libraries/messages.inc.php:99
-msgid "The current number of pending writes."
-msgstr ""
-
-#: libraries/messages.inc.php:100
-msgid "The amount of data read so far, in bytes."
-msgstr ""
-
-#: libraries/messages.inc.php:101
-msgid "The total number of data reads."
-msgstr ""
-
-#: libraries/messages.inc.php:102
-msgid "The total number of data writes."
-msgstr ""
-
-#: libraries/messages.inc.php:103
-msgid "The amount of data written so far, in bytes."
-msgstr ""
-
-#: libraries/messages.inc.php:104
-msgid "The number of pages that have been written for doublewrite operations."
-msgstr ""
-
-#: libraries/messages.inc.php:105
-msgid "The number of doublewrite operations that have been performed."
-msgstr ""
-
-#: libraries/messages.inc.php:106
-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/messages.inc.php:107
-msgid "The number of log write requests."
-msgstr ""
-
-#: libraries/messages.inc.php:108
-msgid "The number of physical writes to the log file."
-msgstr ""
-
-#: libraries/messages.inc.php:109
-msgid "The number of fsync() writes done to the log file."
-msgstr ""
-
-#: libraries/messages.inc.php:110
-msgid "The number of pending log file fsyncs."
-msgstr ""
-
-#: libraries/messages.inc.php:111
-msgid "Pending log file writes."
-msgstr ""
-
-#: libraries/messages.inc.php:112
-msgid "The number of bytes written to the log file."
-msgstr ""
-
-#: libraries/messages.inc.php:113
-msgid "The number of pages created."
-msgstr ""
-
-#: libraries/messages.inc.php:114
-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/messages.inc.php:115
-msgid "The number of pages read."
-msgstr ""
-
-#: libraries/messages.inc.php:116
-msgid "The number of pages written."
-msgstr ""
-
-#: libraries/messages.inc.php:117
-msgid "The number of row locks currently being waited for."
-msgstr ""
-
-#: libraries/messages.inc.php:118
-msgid "The average time to acquire a row lock, in milliseconds."
-msgstr ""
-
-#: libraries/messages.inc.php:119
-msgid "The total time spent in acquiring row locks, in milliseconds."
-msgstr ""
-
-#: libraries/messages.inc.php:120
-msgid "The maximum time to acquire a row lock, in milliseconds."
-msgstr ""
-
-#: libraries/messages.inc.php:121
-msgid "The number of times a row lock had to be waited for."
-msgstr ""
-
-#: libraries/messages.inc.php:122
-msgid "The number of rows deleted from InnoDB tables."
-msgstr ""
-
-#: libraries/messages.inc.php:123
-msgid "The number of rows inserted in InnoDB tables."
-msgstr ""
-
-#: libraries/messages.inc.php:124
-msgid "The number of rows read from InnoDB tables."
-msgstr ""
-
-#: libraries/messages.inc.php:125
-msgid "The number of rows updated in InnoDB tables."
-msgstr ""
-
-#: libraries/messages.inc.php:126
-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/messages.inc.php:127
-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/messages.inc.php:128
-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/messages.inc.php:129
-msgid "The number of requests to read a key block from the cache."
-msgstr ""
-
-#: libraries/messages.inc.php:130
-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/messages.inc.php:131
-msgid "The number of requests to write a key block to the cache."
-msgstr ""
-
-#: libraries/messages.inc.php:132
-msgid "The number of physical writes of a key block to disk."
-msgstr ""
-
-#: libraries/messages.inc.php:133
-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/messages.inc.php:134
-msgid "The number of rows waiting to be written in INSERT DELAYED queues."
-msgstr ""
-
-#: libraries/messages.inc.php:135
-msgid ""
-"The number of tables that have been opened. If opened tables is big, your "
-"table cache value is probably too small."
-msgstr ""
-
-#: libraries/messages.inc.php:136
-msgid "The number of files that are open."
-msgstr ""
-
-#: libraries/messages.inc.php:137
-msgid "The number of streams that are open (used mainly for logging)."
-msgstr ""
-
-#: libraries/messages.inc.php:138
-msgid "The number of tables that are open."
-msgstr ""
-
-#: libraries/messages.inc.php:139
-msgid "The number of free memory blocks in query cache."
-msgstr ""
-
-#: libraries/messages.inc.php:140
-msgid "The amount of free memory for query cache."
-msgstr ""
-
-#: libraries/messages.inc.php:141
-msgid "The number of cache hits."
-msgstr ""
-
-#: libraries/messages.inc.php:142
-msgid "The number of queries added to the cache."
-msgstr ""
-
-#: libraries/messages.inc.php:143
-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 "
-"cache size. The query cache uses a least recently used (LRU) strategy to "
-"decide which queries to remove from the cache."
-msgstr ""
-
-#: libraries/messages.inc.php:144
-msgid ""
-"The number of non-cached queries (not cachable, or not cached due to the "
-"query_cache_type setting)."
-msgstr ""
-
-#: libraries/messages.inc.php:145
-msgid "The number of queries registered in the cache."
-msgstr ""
-
-#: libraries/messages.inc.php:146
-msgid "The total number of blocks in the query cache."
-msgstr ""
-
-#: libraries/messages.inc.php:147
-msgctxt "$strShowStatusReset"
-msgid "Reset"
-msgstr ""
-
-#: libraries/messages.inc.php:148
-msgid "The status of failsafe replication (not yet implemented)."
-msgstr ""
-
-#: libraries/messages.inc.php:149
-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/messages.inc.php:150
-msgid "The number of joins that used a range search on a reference table."
-msgstr ""
-
-#: libraries/messages.inc.php:151
-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/messages.inc.php:152
-msgid ""
-"The number of joins that used ranges on the first table. (It's normally not "
-"critical even if this is big.)"
-msgstr ""
-
-#: libraries/messages.inc.php:153
-msgid "The number of joins that did a full scan of the first table."
-msgstr ""
-
-#: libraries/messages.inc.php:154
-msgid "The number of temporary tables currently open by the slave SQL thread."
-msgstr ""
-
-#: libraries/messages.inc.php:155
-msgid ""
-"Total (since startup) number of times the replication slave SQL thread has "
-"retried transactions."
-msgstr ""
-
-#: libraries/messages.inc.php:156
-msgid "This is ON if this server is a slave that is connected to a master."
-msgstr ""
-
-#: libraries/messages.inc.php:157
-msgid ""
-"The number of threads that have taken more than slow_launch_time seconds to "
-"create."
-msgstr ""
-
-#: libraries/messages.inc.php:158
-msgid ""
-"The number of queries that have taken more than long_query_time seconds."
-msgstr ""
-
-#: libraries/messages.inc.php:159
-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/messages.inc.php:160
-msgid "The number of sorts that were done with ranges."
-msgstr ""
-
-#: libraries/messages.inc.php:161
-msgid "The number of sorted rows."
-msgstr ""
-
-#: libraries/messages.inc.php:162
-msgid "The number of sorts that were done by scanning the table."
-msgstr ""
-
-#: libraries/messages.inc.php:163
-msgid "The number of times that a table lock was acquired immediately."
-msgstr ""
-
-#: libraries/messages.inc.php:164
-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 "
-"should first optimize your queries, and then either split your table or "
-"tables or use replication."
-msgstr ""
-
-#: libraries/messages.inc.php:165
-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/messages.inc.php:166
-msgid "The number of currently open connections."
-msgstr ""
-
-#: libraries/messages.inc.php:167
-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 "
-"doesn't give a notable performance improvement if you have a good thread "
-"implementation.)"
-msgstr ""
-
-#: libraries/messages.inc.php:168
-msgid "The number of threads that are not sleeping."
-msgstr ""
-
#: libraries/mult_submits.inc.php:76 libraries/tbl_properties.inc.php:513
#: tbl_structure.php:29 tbl_structure.php:153 tbl_structure.php:157
#: tbl_structure.php:473
@@ -4190,8 +3450,8 @@ msgstr ""
#: libraries/replication_gui.lib.php:55 libraries/replication_gui.lib.php:56
#: libraries/replication_gui.lib.php:249 libraries/replication_gui.lib.php:252
-#: libraries/replication_gui.lib.php:259 server_privileges.php:672
-#: server_privileges.php:675 server_privileges.php:682
+#: libraries/replication_gui.lib.php:259 server_privileges.php:711
+#: server_privileges.php:714 server_privileges.php:721
#: server_synchronize.php:1171
msgid "User name"
msgstr "Ім'я користувача"
@@ -4209,11 +3469,11 @@ msgid "Slave status"
msgstr ""
#: libraries/replication_gui.lib.php:114 libraries/sql_query_form.lib.php:445
-#: server_status.php:626 server_variables.php:52
+#: server_status.php:737 server_variables.php:52
msgid "Variable"
msgstr "Змінна"
-#: libraries/replication_gui.lib.php:115 server_status.php:627
+#: libraries/replication_gui.lib.php:115 server_status.php:738
#: tbl_change.php:324 tbl_printview.php:370 tbl_select.php:139
#: tbl_structure.php:729
msgid "Value"
@@ -4233,41 +3493,58 @@ msgstr ""
msgid "Add slave replication user"
msgstr ""
-#: libraries/replication_gui.lib.php:254 server_privileges.php:677
+#: libraries/replication_gui.lib.php:254 server_privileges.php:716
msgid "Any user"
msgstr "Довільний користувач"
#: libraries/replication_gui.lib.php:255 libraries/replication_gui.lib.php:323
-#: libraries/replication_gui.lib.php:346 server_privileges.php:678
-#: server_privileges.php:745 server_privileges.php:769
-#: server_privileges.php:1889 server_privileges.php:1919
+#: libraries/replication_gui.lib.php:346 server_privileges.php:717
+#: server_privileges.php:784 server_privileges.php:808
+#: server_privileges.php:1928 server_privileges.php:1958
msgid "Use text field"
msgstr "Використовувати текстове поле"
-#: libraries/replication_gui.lib.php:302 server_privileges.php:725
+#: libraries/replication_gui.lib.php:302 server_privileges.php:764
msgid "Any host"
msgstr "Довільний хост"
-#: libraries/replication_gui.lib.php:306 server_privileges.php:729
+#: libraries/replication_gui.lib.php:306 server_privileges.php:768
msgid "Local"
msgstr "Локальний"
-#: libraries/replication_gui.lib.php:312 server_privileges.php:734
+#: libraries/replication_gui.lib.php:312 server_privileges.php:773
msgid "This Host"
msgstr "Цей хост"
-#: libraries/replication_gui.lib.php:318 server_privileges.php:740
+#: libraries/replication_gui.lib.php:318 server_privileges.php:779
msgid "Use Host Table"
msgstr "Використовувати Таблицю Хостів"
-#: libraries/replication_gui.lib.php:331 server_privileges.php:753
+#: libraries/replication_gui.lib.php:331 server_privileges.php:792
msgid ""
"When Host table is used, this field is ignored and values stored in Host "
"table are used instead."
msgstr ""
-#: libraries/select_lang.lib.php:480 libraries/select_lang.lib.php:486
-#: libraries/select_lang.lib.php:492
+#. l10n: Text direction, use either ltr or rtl
+#: libraries/select_lang.lib.php:491
+msgid "ltr"
+msgstr "ltr"
+
+#: libraries/select_lang.lib.php:493
+msgid "Content of table __TABLE__"
+msgstr ""
+
+#: libraries/select_lang.lib.php:494
+msgid "(continued)"
+msgstr ""
+
+#: libraries/select_lang.lib.php:495
+msgid "Structure of table __TABLE__"
+msgstr ""
+
+#: libraries/select_lang.lib.php:500 libraries/select_lang.lib.php:506
+#: libraries/select_lang.lib.php:512
#, php-format
msgid "Unknown language: %1$s."
msgstr ""
@@ -4278,7 +3555,7 @@ msgid "Servers"
msgstr ""
#: libraries/server_links.inc.php:53 server_engines.php:112
-#: server_engines.php:116 server_status.php:304 test/theme.php:105
+#: server_engines.php:116 server_status.php:415 test/theme.php:105
msgid "Variables"
msgstr "Змінні"
@@ -4291,7 +3568,7 @@ msgid "Engines"
msgstr ""
#: libraries/server_links.inc.php:76 server_binlog.php:110
-#: server_status.php:253 test/theme.php:121
+#: server_status.php:364 test/theme.php:121
msgid "Binary log"
msgstr ""
@@ -4735,8 +4012,8 @@ msgstr "Перевстановити"
msgid "Protocol version"
msgstr ""
-#: main.php:189 server_privileges.php:1350 server_privileges.php:1497
-#: server_privileges.php:1611 server_privileges.php:2029
+#: main.php:189 server_privileges.php:1389 server_privileges.php:1536
+#: server_privileges.php:1650 server_privileges.php:2068
#: server_processlist.php:54
msgid "User"
msgstr "Користувач"
@@ -5104,7 +4381,7 @@ msgstr "%s баз(а\\и) даних успішно знищено."
msgid "Databases statistics"
msgstr "Статистика баз даних"
-#: server_databases.php:117 server_status.php:260
+#: server_databases.php:117 server_status.php:371
#: setup/lib/messages.inc.php:117
msgid "Tables"
msgstr "Таблиць"
@@ -5124,6 +4401,14 @@ msgstr ""
msgid "Jump to database"
msgstr "БД відсутні"
+#: server_databases.php:267
+msgid "Not replicated"
+msgstr ""
+
+#: server_databases.php:273
+msgid "Replicated"
+msgstr ""
+
#: server_databases.php:289
#, php-format
msgid "Check privileges for database "%s"."
@@ -5157,142 +4442,334 @@ msgstr ""
msgid "View dump (schema) of databases"
msgstr "Переглянути dump (схему) баз даних"
-#: server_privileges.php:263 server_privileges.php:264
+#: server_privileges.php:24 server_privileges.php:266
+msgid "Includes all privileges except GRANT."
+msgstr "Дозволити всі права за винятком GRANT."
+
+#: server_privileges.php:25 server_privileges.php:192
+#: server_privileges.php:515
+msgid "Allows altering the structure of existing tables."
+msgstr "Дозволити змінювати структуру наявних таблиць."
+
+#: server_privileges.php:26 server_privileges.php:208
+#: server_privileges.php:521
+msgid "Allows altering and dropping stored routines."
+msgstr ""
+
+#: server_privileges.php:27 server_privileges.php:184
+#: server_privileges.php:514
+msgid "Allows creating new databases and tables."
+msgstr "Дозволити створювати нові бази даних та таблиці."
+
+#: server_privileges.php:28 server_privileges.php:207
+#: server_privileges.php:520
+msgid "Allows creating stored routines."
+msgstr ""
+
+#: server_privileges.php:29 server_privileges.php:514
+msgid "Allows creating new tables."
+msgstr "Дозволити створювати нові таблиці."
+
+#: server_privileges.php:30 server_privileges.php:195
+#: server_privileges.php:518
+msgid "Allows creating temporary tables."
+msgstr "Дозволити створювати тимчасові таблиці."
+
+#: server_privileges.php:31 server_privileges.php:209
+#: server_privileges.php:554
+msgid "Allows creating, dropping and renaming user accounts."
+msgstr ""
+
+#: server_privileges.php:32 server_privileges.php:199
+#: server_privileges.php:203 server_privileges.php:526
+#: server_privileges.php:530
+msgid "Allows creating new views."
+msgstr ""
+
+#: server_privileges.php:33 server_privileges.php:183
+#: server_privileges.php:506
+msgid "Allows deleting data."
+msgstr "Дозволити знищувати дані з таблиць."
+
+#: server_privileges.php:34 server_privileges.php:185
+#: server_privileges.php:517
+msgid "Allows dropping databases and tables."
+msgstr "Дозволити знищувати бази даних та таблиці."
+
+#: server_privileges.php:35 server_privileges.php:517
+msgid "Allows dropping tables."
+msgstr "Дозволити знищувати таблиці."
+
+#: server_privileges.php:36 server_privileges.php:200
+#: server_privileges.php:534
+msgid "Allows to set up events for the event scheduler"
+msgstr ""
+
+#: server_privileges.php:37 server_privileges.php:210
+#: server_privileges.php:522
+msgid "Allows executing stored routines."
+msgstr ""
+
+#: server_privileges.php:38 server_privileges.php:189
+#: server_privileges.php:509
+msgid "Allows importing data from and exporting data into files."
+msgstr "Дозволити імпорт даних з файлів, та експорт у файли."
+
+#: server_privileges.php:39 server_privileges.php:540
+msgid ""
+"Allows adding users and privileges without reloading the privilege tables."
+msgstr ""
+"Дозволити додавання користувачів та прав без перезавантаження таблиці прав."
+
+#: server_privileges.php:40 server_privileges.php:191
+#: server_privileges.php:516
+msgid "Allows creating and dropping indexes."
+msgstr "Дозволити створення та знищення індексів."
+
+#: server_privileges.php:41 server_privileges.php:181
+#: server_privileges.php:442 server_privileges.php:504
+msgid "Allows inserting and replacing data."
+msgstr "Дозволити вставку та заміну даних."
+
+#: server_privileges.php:42 server_privileges.php:196
+#: server_privileges.php:549
+msgid "Allows locking tables for the current thread."
+msgstr "Дозволити блокування таблиць для біжучих потоків."
+
+#: server_privileges.php:43 server_privileges.php:646
+#: server_privileges.php:648
+msgid "Limits the number of new connections the user may open per hour."
+msgstr ""
+"Обмежити кількість нових під'єднань, які користувач може створювати протягом "
+"години."
+
+#: server_privileges.php:44 server_privileges.php:634
+#: server_privileges.php:636
+msgid "Limits the number of queries the user may send to the server per hour."
+msgstr ""
+"Обмежити кількість запитів, які користувач може надіслати серверу протягом "
+"години."
+
+#: server_privileges.php:45 server_privileges.php:640
+#: server_privileges.php:642
+msgid ""
+"Limits the number of commands that change any table or database the user may "
+"execute per hour."
+msgstr ""
+"Обмежити кількість команд, що вносять зміни до будь-якої таблиці чи бази "
+"даних, які користувач може виконати протягом години."
+
+#: server_privileges.php:46 server_privileges.php:652
+#: server_privileges.php:654
+msgid "Limits the number of simultaneous connections the user may have."
+msgstr ""
+
+#: server_privileges.php:47 server_privileges.php:188
+#: server_privileges.php:544
+msgid "Allows viewing processes of all users"
+msgstr ""
+
+#: server_privileges.php:48 server_privileges.php:190
+#: server_privileges.php:448 server_privileges.php:550
+msgid "Has no effect in this MySQL version."
+msgstr "Неефективно для цієї версії MySQL."
+
+#: server_privileges.php:49 server_privileges.php:186
+#: server_privileges.php:545
+msgid "Allows reloading server settings and flushing the server's caches."
+msgstr "Дозволити перезавантаження установок та очищення кешу сервера."
+
+#: server_privileges.php:50 server_privileges.php:198
+#: server_privileges.php:552
+msgid "Allows the user to ask where the slaves / masters are."
+msgstr "Надати користувачу право запитувати де є slaves / masters."
+
+#: server_privileges.php:51 server_privileges.php:197
+#: server_privileges.php:553
+msgid "Needed for the replication slaves."
+msgstr "Необхідно для реплікації slaves."
+
+#: server_privileges.php:52 server_privileges.php:180
+#: server_privileges.php:439 server_privileges.php:503
+msgid "Allows reading data."
+msgstr "Дозволити читання даних."
+
+#: server_privileges.php:53 server_privileges.php:193
+#: server_privileges.php:547
+msgid "Gives access to the complete list of databases."
+msgstr "Надати доступ до повного списку баз даних."
+
+#: server_privileges.php:54 server_privileges.php:204
+#: server_privileges.php:206 server_privileges.php:519
+msgid "Allows performing SHOW CREATE VIEW queries."
+msgstr ""
+
+#: server_privileges.php:55 server_privileges.php:187
+#: server_privileges.php:546
+msgid "Allows shutting down the server."
+msgstr "Дозволити вимкнення сервера."
+
+#: server_privileges.php:56 server_privileges.php:194
+#: server_privileges.php:543
+msgid ""
+"Allows connecting, even if maximum number of connections is reached; "
+"required for most administrative operations like setting global variables or "
+"killing threads of other users."
+msgstr ""
+"Дозволити під'єднання, навіть якщо досягнуто максимальної кількості "
+"під'єднань; Обов'язково для більшості адміністративних операцій таких як "
+"встановлення ґлобальних змінних чи припинення процесів інших користувачів."
+
+#: server_privileges.php:57 server_privileges.php:201
+#: server_privileges.php:535
+msgid "Allows creating and dropping triggers"
+msgstr ""
+
+#: server_privileges.php:58 server_privileges.php:182
+#: server_privileges.php:445 server_privileges.php:505
+msgid "Allows changing data."
+msgstr "Дозволити зміну даних."
+
+#: server_privileges.php:59 server_privileges.php:260
+msgid "No privileges."
+msgstr "Немає прав."
+
+#: server_privileges.php:302 server_privileges.php:303
#, fuzzy
#| msgid "None"
msgctxt "None privileges"
msgid "None"
msgstr "Немає"
-#: server_privileges.php:392 server_privileges.php:527
-#: server_privileges.php:1679 server_privileges.php:1685
+#: server_privileges.php:431 server_privileges.php:566
+#: server_privileges.php:1718 server_privileges.php:1724
msgid "Table-specific privileges"
msgstr "Права, які стосуються таблиці"
-#: server_privileges.php:393 server_privileges.php:535
-#: server_privileges.php:1501
+#: server_privileges.php:432 server_privileges.php:574
+#: server_privileges.php:1540
msgid " Note: MySQL privilege names are expressed in English "
msgstr " Зауваження: привілеї MySQL задаються по-англійськи "
-#: server_privileges.php:524 server_privileges.php:1500
+#: server_privileges.php:563 server_privileges.php:1539
msgid "Global privileges"
msgstr "Глобальні права"
-#: server_privileges.php:526 server_privileges.php:1679
+#: server_privileges.php:565 server_privileges.php:1718
msgid "Database-specific privileges"
msgstr "Права, які стосуються бази даних"
-#: server_privileges.php:571
+#: server_privileges.php:610
msgid "Administration"
msgstr "Адміністратор"
-#: server_privileges.php:591
+#: server_privileges.php:630
msgid "Resource limits"
msgstr "Обмеження ресурсів"
-#: server_privileges.php:592
+#: server_privileges.php:631
msgid "Note: Setting these options to 0 (zero) removes the limit."
msgstr "Примітка: Встановлення цієї опції у 0 (нуль) знімає обмеження."
-#: server_privileges.php:669
+#: server_privileges.php:708
msgid "Login Information"
msgstr "Вхідна інформація (Login)"
-#: server_privileges.php:763
+#: server_privileges.php:802
msgid "Do not change the password"
msgstr "Не змінювати пароль"
-#: server_privileges.php:804 server_privileges.php:2166
+#: server_privileges.php:843 server_privileges.php:2205
#, fuzzy
#| msgid "No user(s) found."
msgid "No user found."
msgstr "Не знайдено користувача."
-#: server_privileges.php:848
+#: server_privileges.php:887
#, php-format
msgid "The user %s already exists!"
msgstr "Користувач %s вже існує!"
-#: server_privileges.php:931
+#: server_privileges.php:970
msgid "You have added a new user."
msgstr "Було додано нового користувача."
-#: server_privileges.php:1152
+#: server_privileges.php:1191
#, fuzzy, php-format
msgid "You have updated the privileges for %s."
msgstr "Було змінено привілеї для"
-#: server_privileges.php:1176
+#: server_privileges.php:1215
#, php-format
msgid "You have revoked the privileges for %s"
msgstr "Ви змінили привілеї для %s"
-#: server_privileges.php:1212
+#: server_privileges.php:1251
#, php-format
msgid "The password for %s was changed successfully."
msgstr "Пароль для %s успішно змінено."
-#: server_privileges.php:1232
+#: server_privileges.php:1271
#, php-format
msgid "Deleting %s"
msgstr "Усунути %s"
-#: server_privileges.php:1243
+#: server_privileges.php:1282
msgid "No users selected for deleting!"
msgstr ""
-#: server_privileges.php:1246
+#: server_privileges.php:1285
msgid "Reloading the privileges"
msgstr "Перезавантаження прав"
-#: server_privileges.php:1261
+#: server_privileges.php:1300
msgid "The selected users have been deleted successfully."
msgstr "Відмічених користувачів успішно усунуто."
-#: server_privileges.php:1296
+#: server_privileges.php:1335
msgid "The privileges were reloaded successfully."
msgstr "Права успішно перезавантажено."
-#: server_privileges.php:1324 server_privileges.php:1610
+#: server_privileges.php:1363 server_privileges.php:1649
msgid "Edit Privileges"
msgstr "Редагування привілеїв"
-#: server_privileges.php:1333
+#: server_privileges.php:1372
msgid "Revoke"
msgstr "Відмінити"
-#: server_privileges.php:1365
+#: server_privileges.php:1404
msgid "User overview"
msgstr "Огляд користувачів"
-#: server_privileges.php:1502 server_privileges.php:1684
-#: server_privileges.php:2033
+#: server_privileges.php:1541 server_privileges.php:1723
+#: server_privileges.php:2072
msgid "Grant"
msgstr "Grant"
-#: server_privileges.php:1521 server_privileges.php:2123
+#: server_privileges.php:1560 server_privileges.php:2162
msgid "Any"
msgstr "Довільний"
-#: server_privileges.php:1570 server_privileges.php:1594
-#: server_privileges.php:1988 server_privileges.php:2177
+#: server_privileges.php:1609 server_privileges.php:1633
+#: server_privileges.php:2027 server_privileges.php:2216
msgid "Add a new User"
msgstr "Додати нового користувача"
-#: server_privileges.php:1575
+#: server_privileges.php:1614
msgid "Remove selected users"
msgstr "Усунути відмічених користувачів"
-#: server_privileges.php:1578
+#: server_privileges.php:1617
msgid "Revoke all active privileges from the users and delete them afterwards."
msgstr "Відмінити всі активні права користувачів та усунути їх після цього."
-#: server_privileges.php:1579 server_privileges.php:1580
-#: server_privileges.php:1581
+#: server_privileges.php:1618 server_privileges.php:1619
+#: server_privileges.php:1620
msgid "Drop the databases that have the same names as the users."
msgstr "Усунути бази даних, які мають такі ж назви як імена користувачів."
-#: server_privileges.php:1597
+#: server_privileges.php:1636
#, php-format
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
@@ -5305,50 +4782,50 @@ msgstr ""
"сервером, якщо в цю таблицю вносилися зміни вручну. У цьому випадку Вам "
"необхідно %sперезавантажити права%s перед продовженням."
-#: server_privileges.php:1645
+#: server_privileges.php:1684
msgid "The selected user was not found in the privilege table."
msgstr "Вказаного користувача не знайдено в таблиці прав."
-#: server_privileges.php:1685
+#: server_privileges.php:1724
msgid "Column-specific privileges"
msgstr "Права, які стосуються колонок таблиці"
-#: server_privileges.php:1886
+#: server_privileges.php:1925
msgid "Add privileges on the following database"
msgstr "Додати права для цієї бази даних"
-#: server_privileges.php:1904
+#: server_privileges.php:1943
msgid "Wildcards % and _ should be escaped with a \\ to use them literally"
msgstr ""
-#: server_privileges.php:1907
+#: server_privileges.php:1946
msgid "Add privileges on the following table"
msgstr "Додати права для цієї таблиці"
-#: server_privileges.php:1964
+#: server_privileges.php:2003
msgid "Change Login Information / Copy User"
msgstr "Змінити реєстраційні дані / Копіювати користувача"
-#: server_privileges.php:1967
+#: server_privileges.php:2006
msgid "Create a new user with the same privileges and ..."
msgstr "Створити нового користувача з такими ж правами і ..."
-#: server_privileges.php:1969
+#: server_privileges.php:2008
msgid "... keep the old one."
msgstr "... залишити старого."
-#: server_privileges.php:1970
+#: server_privileges.php:2009
msgid " ... delete the old one from the user tables."
msgstr " ... знищити старого з таблиці користувачів."
-#: server_privileges.php:1971
+#: server_privileges.php:2010
msgid ""
" ... revoke all active privileges from the old one and delete it afterwards."
msgstr ""
" ... анулювати всі активні права старого користувача, знищивши його після "
"того."
-#: server_privileges.php:1972
+#: server_privileges.php:2011
msgid ""
" ... delete the old one from the user tables and reload the privileges "
"afterwards."
@@ -5356,44 +4833,44 @@ msgstr ""
" ... знищити старого з таблиці користувачів та перевантажити права після "
"того."
-#: server_privileges.php:1994
+#: server_privileges.php:2033
msgid "Database for user"
msgstr ""
-#: server_privileges.php:1998
+#: server_privileges.php:2037
#, fuzzy
#| msgid "None"
msgctxt "Create none database for user"
msgid "None"
msgstr "Немає"
-#: server_privileges.php:1999
+#: server_privileges.php:2038
msgid "Create database with same name and grant all privileges"
msgstr ""
-#: server_privileges.php:2000
+#: server_privileges.php:2039
msgid "Grant all privileges on wildcard name (username\\_%)"
msgstr ""
-#: server_privileges.php:2003
+#: server_privileges.php:2042
#, php-format
msgid "Grant all privileges on database "%s""
msgstr ""
-#: server_privileges.php:2026
+#: server_privileges.php:2065
#, php-format
msgid "Users having access to "%s""
msgstr "Користувачі, котрі мають доступ до "%s""
-#: server_privileges.php:2134
+#: server_privileges.php:2173
msgid "global"
msgstr "глобальний"
-#: server_privileges.php:2136
+#: server_privileges.php:2175
msgid "database-specific"
msgstr "специфічний для бази даних"
-#: server_privileges.php:2138
+#: server_privileges.php:2177
msgid "wildcard"
msgstr "шаблон"
@@ -5439,7 +4916,7 @@ msgstr ""
msgid "This server is configured as master in a replication process."
msgstr ""
-#: server_replication.php:184 server_status.php:281
+#: server_replication.php:184 server_status.php:392
msgid "Show master status"
msgstr ""
@@ -5574,103 +5051,634 @@ msgid ""
"like to configure it?"
msgstr ""
+#: server_status.php:40
+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 ""
+
+#: server_status.php:41
+msgid "The number of transactions that used the temporary binary log cache."
+msgstr ""
+
+#: server_status.php:42
+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 "
+"to increase the tmp_table_size value to cause temporary tables to be memory-"
+"based instead of disk-based."
+msgstr ""
+
+#: server_status.php:43
+msgid "How many temporary files mysqld has created."
+msgstr ""
+
+#: server_status.php:44
+msgid ""
+"The number of in-memory temporary tables created automatically by the server "
+"while executing statements."
+msgstr ""
+
+#: server_status.php:45
+msgid ""
+"The number of rows written with INSERT DELAYED for which some error occurred "
+"(probably duplicate key)."
+msgstr ""
+
#: server_status.php:46
+msgid ""
+"The number of INSERT DELAYED handler threads in use. Every different table "
+"on which one uses INSERT DELAYED gets its own thread."
+msgstr ""
+
+#: server_status.php:47
+msgid "The number of INSERT DELAYED rows written."
+msgstr ""
+
+#: server_status.php:48
+msgid "The number of executed FLUSH statements."
+msgstr ""
+
+#: server_status.php:49
+msgid "The number of internal COMMIT statements."
+msgstr ""
+
+#: server_status.php:50
+msgid "The number of times a row was deleted from a table."
+msgstr ""
+
+#: server_status.php:51
+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 ""
+
+#: server_status.php:52
+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 ""
+
+#: server_status.php:53
+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 ""
+
+#: server_status.php:54
+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 ""
+
+#: server_status.php:55
+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 ""
+
+#: server_status.php:56
+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 "
+"probably have a lot of queries that require MySQL to scan whole tables or "
+"you have joins that don't use keys properly."
+msgstr ""
+
+#: server_status.php:57
+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 "
+"tables are not properly indexed or that your queries are not written to take "
+"advantage of the indexes you have."
+msgstr ""
+
+#: server_status.php:58
+msgid "The number of internal ROLLBACK statements."
+msgstr ""
+
+#: server_status.php:59
+msgid "The number of requests to update a row in a table."
+msgstr ""
+
+#: server_status.php:60
+msgid "The number of requests to insert a row in a table."
+msgstr ""
+
+#: server_status.php:61
+msgid "The number of pages containing data (dirty or clean)."
+msgstr ""
+
+#: server_status.php:62
+msgid "The number of pages currently dirty."
+msgstr ""
+
+#: server_status.php:63
+msgid "The number of buffer pool pages that have been requested to be flushed."
+msgstr ""
+
+#: server_status.php:64
+msgid "The number of free pages."
+msgstr ""
+
+#: server_status.php:65
+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 ""
+
+#: server_status.php:66
+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 "
+"be calculated as Innodb_buffer_pool_pages_total - "
+"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data."
+msgstr ""
+
+#: server_status.php:67
+msgid "Total size of buffer pool, in pages."
+msgstr ""
+
+#: server_status.php:68
+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 ""
+
+#: server_status.php:69
+msgid ""
+"The number of sequential read-aheads InnoDB initiated. This happens when "
+"InnoDB does a sequential full table scan."
+msgstr ""
+
+#: server_status.php:70
+msgid "The number of logical read requests InnoDB has done."
+msgstr ""
+
+#: server_status.php:71
+msgid ""
+"The number of logical reads that InnoDB could not satisfy from buffer pool "
+"and had to do a single-page read."
+msgstr ""
+
+#: server_status.php:72
+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 "
+"available, it's necessary to wait for pages to be flushed first. This "
+"counter counts instances of these waits. If the buffer pool size was set "
+"properly, this value should be small."
+msgstr ""
+
+#: server_status.php:73
+msgid "The number writes done to the InnoDB buffer pool."
+msgstr ""
+
+#: server_status.php:74
+msgid "The number of fsync() operations so far."
+msgstr ""
+
+#: server_status.php:75
+msgid "The current number of pending fsync() operations."
+msgstr ""
+
+#: server_status.php:76
+msgid "The current number of pending reads."
+msgstr ""
+
+#: server_status.php:77
+msgid "The current number of pending writes."
+msgstr ""
+
+#: server_status.php:78
+msgid "The amount of data read so far, in bytes."
+msgstr ""
+
+#: server_status.php:79
+msgid "The total number of data reads."
+msgstr ""
+
+#: server_status.php:80
+msgid "The total number of data writes."
+msgstr ""
+
+#: server_status.php:81
+msgid "The amount of data written so far, in bytes."
+msgstr ""
+
+#: server_status.php:82
+msgid "The number of pages that have been written for doublewrite operations."
+msgstr ""
+
+#: server_status.php:83
+msgid "The number of doublewrite operations that have been performed."
+msgstr ""
+
+#: server_status.php:84
+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 ""
+
+#: server_status.php:85
+msgid "The number of log write requests."
+msgstr ""
+
+#: server_status.php:86
+msgid "The number of physical writes to the log file."
+msgstr ""
+
+#: server_status.php:87
+msgid "The number of fsync() writes done to the log file."
+msgstr ""
+
+#: server_status.php:88
+msgid "The number of pending log file fsyncs."
+msgstr ""
+
+#: server_status.php:89
+msgid "Pending log file writes."
+msgstr ""
+
+#: server_status.php:90
+msgid "The number of bytes written to the log file."
+msgstr ""
+
+#: server_status.php:91
+msgid "The number of pages created."
+msgstr ""
+
+#: server_status.php:92
+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 ""
+
+#: server_status.php:93
+msgid "The number of pages read."
+msgstr ""
+
+#: server_status.php:94
+msgid "The number of pages written."
+msgstr ""
+
+#: server_status.php:95
+msgid "The number of row locks currently being waited for."
+msgstr ""
+
+#: server_status.php:96
+msgid "The average time to acquire a row lock, in milliseconds."
+msgstr ""
+
+#: server_status.php:97
+msgid "The total time spent in acquiring row locks, in milliseconds."
+msgstr ""
+
+#: server_status.php:98
+msgid "The maximum time to acquire a row lock, in milliseconds."
+msgstr ""
+
+#: server_status.php:99
+msgid "The number of times a row lock had to be waited for."
+msgstr ""
+
+#: server_status.php:100
+msgid "The number of rows deleted from InnoDB tables."
+msgstr ""
+
+#: server_status.php:101
+msgid "The number of rows inserted in InnoDB tables."
+msgstr ""
+
+#: server_status.php:102
+msgid "The number of rows read from InnoDB tables."
+msgstr ""
+
+#: server_status.php:103
+msgid "The number of rows updated in InnoDB tables."
+msgstr ""
+
+#: server_status.php:104
+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 ""
+
+#: server_status.php:105
+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 ""
+
+#: server_status.php:106
+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 ""
+
+#: server_status.php:107
+msgid "The number of requests to read a key block from the cache."
+msgstr ""
+
+#: server_status.php:108
+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 ""
+
+#: server_status.php:109
+msgid "The number of requests to write a key block to the cache."
+msgstr ""
+
+#: server_status.php:110
+msgid "The number of physical writes of a key block to disk."
+msgstr ""
+
+#: server_status.php:111
+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 ""
+
+#: server_status.php:112
+msgid "The number of rows waiting to be written in INSERT DELAYED queues."
+msgstr ""
+
+#: server_status.php:113
+msgid ""
+"The number of tables that have been opened. If opened tables is big, your "
+"table cache value is probably too small."
+msgstr ""
+
+#: server_status.php:114
+msgid "The number of files that are open."
+msgstr ""
+
+#: server_status.php:115
+msgid "The number of streams that are open (used mainly for logging)."
+msgstr ""
+
+#: server_status.php:116
+msgid "The number of tables that are open."
+msgstr ""
+
+#: server_status.php:117
+msgid "The number of free memory blocks in query cache."
+msgstr ""
+
+#: server_status.php:118
+msgid "The amount of free memory for query cache."
+msgstr ""
+
+#: server_status.php:119
+msgid "The number of cache hits."
+msgstr ""
+
+#: server_status.php:120
+msgid "The number of queries added to the cache."
+msgstr ""
+
+#: server_status.php:121
+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 "
+"cache size. The query cache uses a least recently used (LRU) strategy to "
+"decide which queries to remove from the cache."
+msgstr ""
+
+#: server_status.php:122
+msgid ""
+"The number of non-cached queries (not cachable, or not cached due to the "
+"query_cache_type setting)."
+msgstr ""
+
+#: server_status.php:123
+msgid "The number of queries registered in the cache."
+msgstr ""
+
+#: server_status.php:124
+msgid "The total number of blocks in the query cache."
+msgstr ""
+
+#: server_status.php:125
+msgctxt "$strShowStatusReset"
+msgid "Reset"
+msgstr ""
+
+#: server_status.php:126
+msgid "The status of failsafe replication (not yet implemented)."
+msgstr ""
+
+#: server_status.php:127
+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 ""
+
+#: server_status.php:128
+msgid "The number of joins that used a range search on a reference table."
+msgstr ""
+
+#: server_status.php:129
+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 ""
+
+#: server_status.php:130
+msgid ""
+"The number of joins that used ranges on the first table. (It's normally not "
+"critical even if this is big.)"
+msgstr ""
+
+#: server_status.php:131
+msgid "The number of joins that did a full scan of the first table."
+msgstr ""
+
+#: server_status.php:132
+msgid "The number of temporary tables currently open by the slave SQL thread."
+msgstr ""
+
+#: server_status.php:133
+msgid ""
+"Total (since startup) number of times the replication slave SQL thread has "
+"retried transactions."
+msgstr ""
+
+#: server_status.php:134
+msgid "This is ON if this server is a slave that is connected to a master."
+msgstr ""
+
+#: server_status.php:135
+msgid ""
+"The number of threads that have taken more than slow_launch_time seconds to "
+"create."
+msgstr ""
+
+#: server_status.php:136
+msgid ""
+"The number of queries that have taken more than long_query_time seconds."
+msgstr ""
+
+#: server_status.php:137
+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 ""
+
+#: server_status.php:138
+msgid "The number of sorts that were done with ranges."
+msgstr ""
+
+#: server_status.php:139
+msgid "The number of sorted rows."
+msgstr ""
+
+#: server_status.php:140
+msgid "The number of sorts that were done by scanning the table."
+msgstr ""
+
+#: server_status.php:141
+msgid "The number of times that a table lock was acquired immediately."
+msgstr ""
+
+#: server_status.php:142
+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 "
+"should first optimize your queries, and then either split your table or "
+"tables or use replication."
+msgstr ""
+
+#: server_status.php:143
+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 ""
+
+#: server_status.php:144
+msgid "The number of currently open connections."
+msgstr ""
+
+#: server_status.php:145
+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 "
+"doesn't give a notable performance improvement if you have a good thread "
+"implementation.)"
+msgstr ""
+
+#: server_status.php:146
+msgid "The number of threads that are not sleeping."
+msgstr ""
+
+#: server_status.php:157
msgid "Runtime Information"
msgstr "Інформація про роботу сервера"
-#: server_status.php:250
+#: server_status.php:361
msgid "Handler"
msgstr ""
-#: server_status.php:251
+#: server_status.php:362
msgid "Query cache"
msgstr ""
-#: server_status.php:252
+#: server_status.php:363
msgid "Threads"
msgstr ""
-#: server_status.php:254
+#: server_status.php:365
msgid "Temporary data"
msgstr ""
-#: server_status.php:255
+#: server_status.php:366
msgid "Delayed inserts"
msgstr ""
-#: server_status.php:256
+#: server_status.php:367
msgid "Key cache"
msgstr ""
-#: server_status.php:257
+#: server_status.php:368
msgid "Joins"
msgstr ""
-#: server_status.php:259
+#: server_status.php:370
msgid "Sorting"
msgstr ""
-#: server_status.php:261
+#: server_status.php:372
msgid "Transaction coordinator"
msgstr ""
-#: server_status.php:271
+#: server_status.php:382
msgid "Flush (close) all tables"
msgstr ""
-#: server_status.php:273
+#: server_status.php:384
msgid "Show open tables"
msgstr ""
-#: server_status.php:278
+#: server_status.php:389
msgid "Show slave hosts"
msgstr ""
-#: server_status.php:284
+#: server_status.php:395
msgid "Show slave status"
msgstr ""
-#: server_status.php:289
+#: server_status.php:400
msgid "Flush query cache"
msgstr ""
-#: server_status.php:294
+#: server_status.php:405
msgid "Show processes"
msgstr "Показати процеси"
-#: server_status.php:344
+#: server_status.php:455
#, fuzzy
#| msgid "Reset"
msgctxt "for Show status"
msgid "Reset"
msgstr "Перевстановити"
-#: server_status.php:350
+#: server_status.php:461
#, php-format
msgid "This MySQL server has been running for %s. It started up on %s."
msgstr "Цей MySQL сервер працює %s. Стартував %s."
-#: server_status.php:360
+#: server_status.php:471
msgid ""
"This MySQL server works as master and slave in replication"
"b> process."
msgstr ""
-#: server_status.php:362
+#: server_status.php:473
msgid "This MySQL server works as master in replication process."
msgstr ""
-#: server_status.php:364
+#: server_status.php:475
msgid "This MySQL server works as slave in replication process."
msgstr ""
-#: server_status.php:366
+#: server_status.php:477
msgid ""
"For further information about replication status on the server, please visit "
"the replication section."
msgstr ""
-#: server_status.php:383
+#: server_status.php:494
msgid ""
"Server traffic: These tables show the network traffic statistics of "
"this MySQL server since its startup."
@@ -5678,46 +5686,46 @@ msgstr ""
"Трафік сервера: таблиці показують статистику завантаження мережі цим "
"MySQL сервером з моменту його запуску."
-#: server_status.php:388
+#: server_status.php:499
msgid "Traffic"
msgstr "Трафік"
-#: server_status.php:388
+#: server_status.php:499
msgid ""
"On a busy server, the byte counters may overrun, so those statistics as "
"reported by the MySQL server may be incorrect."
msgstr ""
-#: server_status.php:389 server_status.php:434 server_status.php:497
-#: server_status.php:555
+#: server_status.php:500 server_status.php:545 server_status.php:608
+#: server_status.php:666
msgid "per hour"
msgstr "за годину"
-#: server_status.php:394
+#: server_status.php:505
msgid "Received"
msgstr "Отримано"
-#: server_status.php:404
+#: server_status.php:515
msgid "Sent"
msgstr "Відправлено"
-#: server_status.php:433
+#: server_status.php:544
msgid "Connections"
msgstr "З'єднань"
-#: server_status.php:440
+#: server_status.php:551
msgid "max. concurrent connections"
msgstr ""
-#: server_status.php:447
+#: server_status.php:558
msgid "Failed attempts"
msgstr "Невдалих спроб"
-#: server_status.php:461
+#: server_status.php:572
msgid "Aborted"
msgstr "Перервано"
-#: server_status.php:490
+#: server_status.php:601
#, php-format
msgid ""
"Query statistics: Since its startup, %s queries have been sent to the "
@@ -5726,19 +5734,19 @@ msgstr ""
"Статистика запитів: З моменту запуску, до сервера було надіслано %s "
"запитів."
-#: server_status.php:498
+#: server_status.php:609
msgid "per minute"
msgstr "за хвилину"
-#: server_status.php:499
+#: server_status.php:610
msgid "per second"
msgstr "за секунду"
-#: server_status.php:554
+#: server_status.php:665
msgid "Query type"
msgstr "Тип запиту"
-#: server_status.php:721
+#: server_status.php:832
msgid "Replication status"
msgstr ""
diff --git a/po/ur.po b/po/ur.po
index ff3a006b7..86b043615 100755
--- a/po/ur.po
+++ b/po/ur.po
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-06-04 16:07-0400\n"
+"POT-Creation-Date: 2010-06-08 12:32-0400\n"
"PO-Revision-Date: 2010-05-14 12:35+0200\n"
"Last-Translator: \n"
"Language-Team: Urdu \n"
@@ -18,11 +18,11 @@ msgstr ""
"X-Generator: Pootle 2.0.1\n"
#: browse_foreigners.php:38 browse_foreigners.php:59
-#: libraries/display_tbl.lib.php:417 server_privileges.php:1475
+#: libraries/display_tbl.lib.php:417 server_privileges.php:1514
msgid "Show all"
msgstr "سبھی دکھاو"
-#: browse_foreigners.php:82 libraries/common.lib.php:2304
+#: browse_foreigners.php:82 libraries/common.lib.php:2313
#: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:394
#: libraries/export/pdf.php:147 pdf_schema.php:283 pdf_schema.php:1123
#: pdf_schema.php:1139
@@ -41,8 +41,8 @@ msgstr ""
#: browse_foreigners.php:150 db_structure.php:79 db_structure.php:80
#: db_structure.php:91 db_structure.php:93 db_structure.php:104
-#: db_structure.php:106 libraries/common.lib.php:2822
-#: libraries/common.lib.php:2829 libraries/db_links.inc.php:75
+#: db_structure.php:106 libraries/common.lib.php:2831
+#: libraries/common.lib.php:2838 libraries/db_links.inc.php:75
#: libraries/tbl_links.inc.php:63
msgid "Search"
msgstr "تلاش"
@@ -52,7 +52,7 @@ msgstr "تلاش"
#: db_structure.php:567 js/messages.php:48 libraries/Config.class.php:1046
#: libraries/Theme_Manager.class.php:311
#: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719
-#: libraries/common.lib.php:1333 libraries/common.lib.php:2279
+#: libraries/common.lib.php:1335 libraries/common.lib.php:2288
#: libraries/display_change_password.lib.php:82
#: libraries/display_create_table.lib.php:63
#: libraries/display_export.lib.php:275 libraries/display_import.lib.php:276
@@ -63,9 +63,9 @@ msgstr "تلاش"
#: libraries/sql_query_form.lib.php:552 libraries/tbl_properties.inc.php:782
#: main.php:128 navigation.php:237 pdf_pages.php:292 pdf_pages.php:328
#: pdf_pages.php:530 pmd_pdf.php:116 server_binlog.php:142
-#: server_privileges.php:625 server_privileges.php:1585
-#: server_privileges.php:1932 server_privileges.php:1979
-#: server_privileges.php:2018 server_replication.php:235
+#: server_privileges.php:664 server_privileges.php:1624
+#: server_privileges.php:1971 server_privileges.php:2018
+#: server_privileges.php:2057 server_replication.php:235
#: server_replication.php:318 server_replication.php:341
#: server_synchronize.php:1209 tbl_change.php:330 tbl_change.php:1174
#: tbl_change.php:1211 tbl_indexes.php:254 tbl_operations.php:265
@@ -83,7 +83,7 @@ msgstr "کی نیم"
#: browse_foreigners.php:169 browse_foreigners.php:171
#: server_collations.php:55 server_collations.php:67 server_engines.php:59
-#: server_status.php:628
+#: server_status.php:739
msgid "Description"
msgstr "وضاحت"
@@ -124,7 +124,7 @@ msgstr "کمانڈ"
#: libraries/db_structure.lib.php:60 libraries/export/htmlword.php:245
#: libraries/export/latex.php:360 libraries/export/odt.php:297
#: libraries/export/texytext.php:234 libraries/tbl_properties.inc.php:100
-#: pdf_schema.php:1263 pdf_schema.php:1284 server_privileges.php:2031
+#: pdf_schema.php:1263 pdf_schema.php:1284 server_privileges.php:2070
#: tbl_change.php:287 tbl_change.php:314 tbl_printview.php:143
#: tbl_printview.php:313 tbl_select.php:136 tbl_structure.php:178
#: tbl_structure.php:659 tbl_tracking.php:274 tbl_tracking.php:321
@@ -168,9 +168,9 @@ msgstr "آراء-رائے"
#: libraries/Index.class.php:386 libraries/export/htmlword.php:322
#: libraries/export/latex.php:430 libraries/export/odt.php:368
#: libraries/export/texytext.php:311 libraries/mult_submits.inc.php:263
-#: pdf_schema.php:1344 server_privileges.php:1529 server_privileges.php:1540
-#: server_privileges.php:1850 server_privileges.php:1855
-#: server_privileges.php:2148 sql.php:132 sql.php:194 tbl_printview.php:229
+#: pdf_schema.php:1344 server_privileges.php:1568 server_privileges.php:1579
+#: server_privileges.php:1889 server_privileges.php:1894
+#: server_privileges.php:2187 sql.php:132 sql.php:194 tbl_printview.php:229
#: tbl_structure.php:350 tbl_tracking.php:337 tbl_tracking.php:342
msgid "No"
msgstr "نہیں"
@@ -184,9 +184,9 @@ msgstr "نہیں"
#: libraries/mult_submits.inc.php:101 libraries/mult_submits.inc.php:106
#: libraries/mult_submits.inc.php:111 libraries/mult_submits.inc.php:262
#: libraries/mult_submits.inc.php:273 pdf_schema.php:1344
-#: server_databases.php:64 server_privileges.php:1526
-#: server_privileges.php:1540 server_privileges.php:1850
-#: server_privileges.php:1853 server_privileges.php:2148 sql.php:193
+#: server_databases.php:64 server_privileges.php:1565
+#: server_privileges.php:1579 server_privileges.php:1889
+#: server_privileges.php:1892 server_privileges.php:2187 sql.php:193
#: tbl_printview.php:229 tbl_structure.php:40 tbl_structure.php:350
#: tbl_tracking.php:335 tbl_tracking.php:340
msgid "Yes"
@@ -283,7 +283,7 @@ msgstr "Switch to copied database"
msgid "BLOB Repository"
msgstr "BLOB Repository"
-#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1350
+#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1352
#: libraries/server_links.inc.php:49 server_processlist.php:59
#: tbl_tracking.php:596 test/theme.php:101
msgid "Status"
@@ -340,8 +340,8 @@ msgstr "پی ڈی ایف صفحوں کی تدوین کریں"
#: db_printview.php:104 db_tracking.php:72 db_tracking.php:157
#: libraries/db_structure.lib.php:46 libraries/export/xml.php:328
-#: libraries/header.inc.php:126 pdf_pages.php:424 server_privileges.php:1626
-#: server_privileges.php:1682 server_privileges.php:1946
+#: libraries/header.inc.php:126 pdf_pages.php:424 server_privileges.php:1665
+#: server_privileges.php:1721 server_privileges.php:1985
#: server_synchronize.php:423 server_synchronize.php:866 tbl_tracking.php:592
#: test/theme.php:75
msgid "Table"
@@ -442,7 +442,7 @@ msgstr "Del"
#: db_qbe.php:370 db_qbe.php:451 db_qbe.php:522 db_qbe.php:553
#: libraries/display_import.lib.php:166 libraries/tbl_properties.inc.php:779
-#: server_privileges.php:258 tbl_change.php:1031 tbl_indexes.php:250
+#: server_privileges.php:297 tbl_change.php:1031 tbl_indexes.php:250
#: tbl_select.php:288
msgid "Or"
msgstr "یا"
@@ -476,7 +476,7 @@ msgstr "ٹیبلز استعمال کریں"
msgid "SQL query on database %s:"
msgstr "SQL query on database %s:"
-#: db_qbe.php:934 libraries/common.lib.php:1223
+#: db_qbe.php:934 libraries/common.lib.php:1225
msgid "Submit Query"
msgstr "Submit Query"
@@ -515,7 +515,7 @@ msgstr "%s match(es) inside table %s"
#: db_search.php:267 db_structure.php:77 db_structure.php:78
#: db_structure.php:90 db_structure.php:92 db_structure.php:103
-#: db_structure.php:105 libraries/common.lib.php:2824
+#: db_structure.php:105 libraries/common.lib.php:2833
#: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50
#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:467
msgid "Browse"
@@ -562,26 +562,26 @@ msgstr "فیلڈ کے اندر:"
#: db_structure.php:81 db_structure.php:82 db_structure.php:94
#: db_structure.php:95 db_structure.php:107 db_structure.php:108
-#: libraries/common.lib.php:2823 libraries/sql_query_form.lib.php:334
+#: libraries/common.lib.php:2832 libraries/sql_query_form.lib.php:334
#: libraries/sql_query_form.lib.php:337 libraries/tbl_links.inc.php:76
msgid "Insert"
msgstr "داخل کریں"
#: db_structure.php:83 db_structure.php:96 db_structure.php:109
-#: libraries/common.lib.php:2820 libraries/common.lib.php:2827
+#: libraries/common.lib.php:2829 libraries/common.lib.php:2836
#: libraries/db_links.inc.php:63 libraries/export/htmlword.php:23
#: libraries/export/latex.php:33 libraries/export/latex.php:337
#: libraries/export/odt.php:32 libraries/export/sql.php:60
#: libraries/export/texytext.php:23 libraries/import.lib.php:1104
#: libraries/tbl_links.inc.php:56 pmd_general.php:134
-#: server_privileges.php:554 server_replication.php:315 tbl_tracking.php:269
+#: server_privileges.php:593 server_replication.php:315 tbl_tracking.php:269
msgid "Structure"
msgstr "ساخت"
#: db_structure.php:84 db_structure.php:85 db_structure.php:97
#: db_structure.php:98 db_structure.php:110 db_structure.php:111
#: db_structure.php:545 db_structure.php:546 db_tracking.php:91
-#: libraries/Index.class.php:483 libraries/common.lib.php:1654
+#: libraries/Index.class.php:483 libraries/common.lib.php:1656
#: libraries/db_links.inc.php:100 libraries/mult_submits.inc.php:36
#: libraries/mult_submits.inc.php:73 libraries/tbl_links.inc.php:127
#: server_databases.php:352 tbl_structure.php:27 tbl_structure.php:151
@@ -591,7 +591,7 @@ msgstr "نکلالنا"
#: db_structure.php:86 db_structure.php:87 db_structure.php:99
#: db_structure.php:100 db_structure.php:112 db_structure.php:113
-#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1653
+#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1655
#: libraries/mult_submits.inc.php:39 libraries/tbl_links.inc.php:105
msgid "Empty"
msgstr "خالی"
@@ -635,7 +635,7 @@ msgstr "ویو"
#: db_structure.php:485 libraries/db_structure.lib.php:49
#: libraries/server_links.inc.php:70 server_replication.php:33
-#: server_replication.php:164 server_status.php:258
+#: server_replication.php:164 server_status.php:369
msgid "Replication"
msgstr "لپیٹنا"
@@ -651,20 +651,20 @@ msgstr "%s is the default storage engine on this MySQL server."
#: db_structure.php:524 db_structure.php:541 db_structure.php:542
#: libraries/display_tbl.lib.php:2081 libraries/display_tbl.lib.php:2086
#: libraries/mult_submits.inc.php:16 server_databases.php:346
-#: server_databases.php:351 server_privileges.php:1557 tbl_structure.php:455
+#: server_databases.php:351 server_privileges.php:1596 tbl_structure.php:455
#: tbl_structure.php:464
msgid "With selected:"
msgstr "With selected:"
#: db_structure.php:527 libraries/display_tbl.lib.php:2076
-#: server_databases.php:348 server_privileges.php:530
-#: server_privileges.php:1560 tbl_structure.php:458
+#: server_databases.php:348 server_privileges.php:569
+#: server_privileges.php:1599 tbl_structure.php:458
msgid "Check All"
msgstr "چیک آل"
#: db_structure.php:531 libraries/display_tbl.lib.php:2077
#: libraries/replication_gui.lib.php:33 server_databases.php:350
-#: server_privileges.php:533 server_privileges.php:1564 tbl_structure.php:462
+#: server_privileges.php:572 server_privileges.php:1603 tbl_structure.php:462
msgid "Uncheck All"
msgstr "ان چیک آل"
@@ -702,7 +702,7 @@ msgstr "ٹیبلز کا تجزیہ"
#: libraries/display_export.lib.php:83 libraries/display_tbl.lib.php:2094
#: libraries/display_tbl.lib.php:2225 libraries/mult_submits.inc.php:62
#: libraries/server_links.inc.php:84 libraries/tbl_links.inc.php:82
-#: pmd_pdf.php:84 pmd_pdf.php:109 server_privileges.php:1341
+#: pmd_pdf.php:84 pmd_pdf.php:109 server_privileges.php:1380
#: setup/frames/menu.inc.php:22 tbl_row_action.php:59
msgid "Export"
msgstr "برآمد"
@@ -720,8 +720,8 @@ msgstr "ٹریکڈ ٹیبلز"
#: libraries/export/sql.php:342 libraries/export/texytext.php:84
#: libraries/export/xml.php:255 libraries/header.inc.php:106
#: libraries/header_printview.inc.php:58 server_databases.php:169
-#: server_privileges.php:1621 server_privileges.php:1682
-#: server_privileges.php:1940 server_processlist.php:56
+#: server_privileges.php:1660 server_privileges.php:1721
+#: server_privileges.php:1979 server_processlist.php:56
#: server_synchronize.php:1179 server_synchronize.php:1183
#: tbl_tracking.php:591 test/theme.php:65
msgid "Database"
@@ -741,8 +741,8 @@ msgstr "اپ ڈیٹ کیا گیا"
#: db_tracking.php:77 libraries/Index.class.php:440
#: libraries/db_structure.lib.php:53 server_databases.php:203
-#: server_privileges.php:1503 server_privileges.php:1686
-#: server_privileges.php:2034 tbl_structure.php:187
+#: server_privileges.php:1542 server_privileges.php:1725
+#: server_privileges.php:2073 tbl_structure.php:187
msgid "Action"
msgstr "عمل"
@@ -939,11 +939,11 @@ msgstr "ہوسٹ نام خالی ہے!"
msgid "The user name is empty!"
msgstr "صارف کا نام خالی ہے"
-#: js/messages.php:44 server_privileges.php:1197 user_password.php:70
+#: js/messages.php:44 server_privileges.php:1236 user_password.php:70
msgid "The password is empty!"
msgstr "پاس ورڈ خالی ہے"
-#: js/messages.php:45 server_privileges.php:1195 user_password.php:73
+#: js/messages.php:45 server_privileges.php:1234 user_password.php:73
msgid "The passwords aren't the same!"
msgstr "پاس ورڈ ایک جیسے نہیں ہیں"
@@ -1018,8 +1018,8 @@ msgid "Prev"
msgstr ""
#. l10n: Display text for next month link in calendar
-#: js/messages.php:77 libraries/common.lib.php:2344
-#: libraries/common.lib.php:2347 libraries/display_tbl.lib.php:338
+#: js/messages.php:77 libraries/common.lib.php:2353
+#: libraries/common.lib.php:2356 libraries/display_tbl.lib.php:338
#: server_binlog.php:205 server_binlog.php:207 tbl_printview.php:424
#: tbl_structure.php:801
msgid "Next"
@@ -1079,63 +1079,63 @@ msgid "December"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:97 libraries/common.lib.php:1555
+#: js/messages.php:97 libraries/common.lib.php:1557
msgid "Jan"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:99 libraries/common.lib.php:1557
+#: js/messages.php:99 libraries/common.lib.php:1559
msgid "Feb"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:101 libraries/common.lib.php:1559
+#: js/messages.php:101 libraries/common.lib.php:1561
msgid "Mar"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:103 libraries/common.lib.php:1561
+#: js/messages.php:103 libraries/common.lib.php:1563
msgid "Apr"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:105 libraries/common.lib.php:1563
+#: js/messages.php:105 libraries/common.lib.php:1565
msgctxt "Short month name"
msgid "May"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:107 libraries/common.lib.php:1565
+#: js/messages.php:107 libraries/common.lib.php:1567
msgid "Jun"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:109 libraries/common.lib.php:1567
+#: js/messages.php:109 libraries/common.lib.php:1569
msgid "Jul"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:111 libraries/common.lib.php:1569
+#: js/messages.php:111 libraries/common.lib.php:1571
msgid "Aug"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:113 libraries/common.lib.php:1571
+#: js/messages.php:113 libraries/common.lib.php:1573
msgid "Sep"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:115 libraries/common.lib.php:1573
+#: js/messages.php:115 libraries/common.lib.php:1575
msgid "Oct"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:117 libraries/common.lib.php:1575
+#: js/messages.php:117 libraries/common.lib.php:1577
msgid "Nov"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:119 libraries/common.lib.php:1577
+#: js/messages.php:119 libraries/common.lib.php:1579
msgid "Dec"
msgstr ""
@@ -1168,37 +1168,37 @@ msgid "Saturday"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:132 libraries/common.lib.php:1580
+#: js/messages.php:132 libraries/common.lib.php:1582
msgid "Sun"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:134 libraries/common.lib.php:1582
+#: js/messages.php:134 libraries/common.lib.php:1584
msgid "Mon"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:136 libraries/common.lib.php:1584
+#: js/messages.php:136 libraries/common.lib.php:1586
msgid "Tue"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:138 libraries/common.lib.php:1586
+#: js/messages.php:138 libraries/common.lib.php:1588
msgid "Wed"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:140 libraries/common.lib.php:1588
+#: js/messages.php:140 libraries/common.lib.php:1590
msgid "Thu"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:142 libraries/common.lib.php:1590
+#: js/messages.php:142 libraries/common.lib.php:1592
msgid "Fri"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:144 libraries/common.lib.php:1592
+#: js/messages.php:144 libraries/common.lib.php:1594
msgid "Sat"
msgstr ""
@@ -1323,7 +1323,7 @@ msgid "Comment"
msgstr ""
#: libraries/Index.class.php:466 libraries/common.lib.php:616
-#: libraries/common.lib.php:1199 libraries/display_tbl.lib.php:1117
+#: libraries/common.lib.php:1201 libraries/display_tbl.lib.php:1117
#: libraries/import.lib.php:1087 libraries/import.lib.php:1111
#: pdf_pages.php:285 setup/frames/index.inc.php:124
#: setup/lib/messages.inc.php:352 tbl_row_action.php:69
@@ -1347,7 +1347,7 @@ msgid ""
msgstr ""
#: libraries/List_Database.class.php:431 libraries/server_links.inc.php:41
-#: server_databases.php:88 server_privileges.php:1621
+#: server_databases.php:88 server_privileges.php:1660
#: setup/lib/messages.inc.php:110 test/theme.php:93
msgid "Databases"
msgstr ""
@@ -1657,7 +1657,7 @@ msgid "Documentation"
msgstr ""
#: libraries/common.lib.php:595 libraries/header_printview.inc.php:61
-#: server_processlist.php:60 server_status.php:247
+#: server_processlist.php:60 server_status.php:358
msgid "SQL query"
msgstr ""
@@ -1673,128 +1673,128 @@ msgstr ""
msgid "Skip Explain SQL"
msgstr ""
-#: libraries/common.lib.php:1212
+#: libraries/common.lib.php:1214
msgid "Without PHP Code"
msgstr ""
-#: libraries/common.lib.php:1215 setup/lib/messages.inc.php:355
+#: libraries/common.lib.php:1217 setup/lib/messages.inc.php:355
msgid "Create PHP Code"
msgstr ""
-#: libraries/common.lib.php:1233 server_status.php:341
+#: libraries/common.lib.php:1235 server_status.php:452
#: setup/lib/messages.inc.php:354
msgid "Refresh"
msgstr ""
-#: libraries/common.lib.php:1242
+#: libraries/common.lib.php:1244
msgid "Skip Validate SQL"
msgstr ""
-#: libraries/common.lib.php:1245 setup/lib/messages.inc.php:356 sql.php:518
+#: libraries/common.lib.php:1247 setup/lib/messages.inc.php:356 sql.php:518
msgid "Validate SQL"
msgstr ""
-#: libraries/common.lib.php:1276
+#: libraries/common.lib.php:1278
msgid "Inline edit of this query"
msgstr ""
-#: libraries/common.lib.php:1278
+#: libraries/common.lib.php:1280
msgid "Inline"
msgstr ""
-#: libraries/common.lib.php:1332 libraries/common.lib.php:1347
+#: libraries/common.lib.php:1334 libraries/common.lib.php:1349
msgid "Profiling"
msgstr ""
-#: libraries/common.lib.php:1351 libraries/tbl_triggers.lib.php:28
+#: libraries/common.lib.php:1353 libraries/tbl_triggers.lib.php:28
#: server_processlist.php:58
msgid "Time"
msgstr ""
#. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "B"
msgstr ""
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "KiB"
msgstr ""
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "MiB"
msgstr ""
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "GiB"
msgstr ""
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "TiB"
msgstr ""
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "PiB"
msgstr ""
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "EiB"
msgstr ""
#. l10n: Thousands separator
-#: libraries/common.lib.php:1417
+#: libraries/common.lib.php:1419
msgid ","
msgstr ""
#. l10n: Decimal separator
-#: libraries/common.lib.php:1419
+#: libraries/common.lib.php:1421
msgid "."
msgstr ""
#. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string
-#: libraries/common.lib.php:1596
+#: libraries/common.lib.php:1598
#: libraries/transformations/text_plain__dateformat.inc.php:34
msgid "%B %d, %Y at %I:%M %p"
msgstr ""
-#: libraries/common.lib.php:1898
+#: libraries/common.lib.php:1907
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr ""
-#: libraries/common.lib.php:2313 libraries/common.lib.php:2316
-#: libraries/display_tbl.lib.php:290 server_status.php:608
+#: libraries/common.lib.php:2322 libraries/common.lib.php:2325
+#: libraries/display_tbl.lib.php:290 server_status.php:719
msgid "Begin"
msgstr ""
-#: libraries/common.lib.php:2314 libraries/common.lib.php:2317
+#: libraries/common.lib.php:2323 libraries/common.lib.php:2326
#: libraries/display_tbl.lib.php:291 server_binlog.php:168
#: server_binlog.php:170
msgid "Previous"
msgstr ""
-#: libraries/common.lib.php:2345 libraries/common.lib.php:2348
+#: libraries/common.lib.php:2354 libraries/common.lib.php:2357
#: libraries/display_tbl.lib.php:353
msgid "End"
msgstr ""
-#: libraries/common.lib.php:2421
+#: libraries/common.lib.php:2430
#, php-format
msgid "Jump to database "%s"."
msgstr ""
-#: libraries/common.lib.php:2441
+#: libraries/common.lib.php:2450
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr ""
-#: libraries/common.lib.php:2821 libraries/common.lib.php:2828
+#: libraries/common.lib.php:2830 libraries/common.lib.php:2837
#: libraries/db_links.inc.php:68 libraries/export/sql.php:25
#: libraries/import/sql.php:18 libraries/server_links.inc.php:45
#: libraries/tbl_links.inc.php:60 querywindow.php:99 test/theme.php:97
msgid "SQL"
msgstr ""
-#: libraries/common.lib.php:2830 libraries/db_links.inc.php:104
+#: libraries/common.lib.php:2839 libraries/db_links.inc.php:104
#: libraries/tbl_links.inc.php:95 libraries/tbl_links.inc.php:117
#: view_operations.php:89
msgid "Operations"
@@ -1848,8 +1848,8 @@ msgid "Import"
msgstr ""
#: libraries/db_links.inc.php:111 libraries/server_links.inc.php:66
-#: server_privileges.php:72 server_privileges.php:1683
-#: server_privileges.php:2032 test/theme.php:117
+#: server_privileges.php:111 server_privileges.php:1722
+#: server_privileges.php:2071 test/theme.php:117
msgid "Privileges"
msgstr ""
@@ -1895,22 +1895,22 @@ msgid "Change password"
msgstr ""
#: libraries/display_change_password.lib.php:35
-#: libraries/replication_gui.lib.php:345 server_privileges.php:768
+#: libraries/replication_gui.lib.php:345 server_privileges.php:807
msgid "No Password"
msgstr ""
#: libraries/display_change_password.lib.php:41
#: libraries/replication_gui.lib.php:59 libraries/replication_gui.lib.php:60
#: libraries/replication_gui.lib.php:335 libraries/replication_gui.lib.php:339
-#: libraries/replication_gui.lib.php:349 server_privileges.php:757
-#: server_privileges.php:761 server_privileges.php:772
-#: server_privileges.php:1499 server_synchronize.php:1175
+#: libraries/replication_gui.lib.php:349 server_privileges.php:796
+#: server_privileges.php:800 server_privileges.php:811
+#: server_privileges.php:1538 server_synchronize.php:1175
msgid "Password"
msgstr ""
#: libraries/display_change_password.lib.php:46
#: libraries/replication_gui.lib.php:353 libraries/replication_gui.lib.php:356
-#: server_privileges.php:776 server_privileges.php:779
+#: server_privileges.php:815 server_privileges.php:818
msgid "Re-type"
msgstr ""
@@ -1923,12 +1923,12 @@ msgid "MySQL 4.0 compatible"
msgstr ""
#: libraries/display_change_password.lib.php:72
-#: libraries/replication_gui.lib.php:360 server_privileges.php:783
+#: libraries/replication_gui.lib.php:360 server_privileges.php:822
msgid "Generate Password"
msgstr ""
#: libraries/display_change_password.lib.php:75
-#: libraries/replication_gui.lib.php:363 server_privileges.php:786
+#: libraries/replication_gui.lib.php:363 server_privileges.php:825
msgid "Generate"
msgstr ""
@@ -1941,8 +1941,8 @@ msgstr ""
msgid "Create"
msgstr ""
-#: libraries/display_create_database.lib.php:40 server_privileges.php:74
-#: server_privileges.php:1388 server_replication.php:35
+#: libraries/display_create_database.lib.php:40 server_privileges.php:113
+#: server_privileges.php:1427 server_replication.php:35
msgid "No Privileges"
msgstr ""
@@ -2027,7 +2027,7 @@ msgstr ""
#: libraries/display_export.lib.php:240 libraries/display_import.lib.php:197
#: libraries/display_import.lib.php:210 libraries/display_tbl.lib.php:530
#: libraries/export/sql.php:868 libraries/tbl_properties.inc.php:575
-#: server_privileges.php:1836 server_processlist.php:75
+#: server_privileges.php:1875 server_processlist.php:75
msgid "None"
msgstr ""
@@ -2340,7 +2340,7 @@ msgstr ""
msgid "Buffer Pool"
msgstr ""
-#: libraries/engines/innodb.lib.php:145 server_status.php:306
+#: libraries/engines/innodb.lib.php:145 server_status.php:417
msgid "InnoDB Status"
msgstr ""
@@ -2349,8 +2349,8 @@ msgid "Buffer Pool Usage"
msgstr ""
#: libraries/engines/innodb.lib.php:194 server_databases.php:137
-#: server_databases.php:305 server_status.php:414 server_status.php:475
-#: server_status.php:496 tbl_printview.php:351 tbl_structure.php:696
+#: server_databases.php:305 server_status.php:525 server_status.php:586
+#: server_status.php:607 tbl_printview.php:351 tbl_structure.php:696
msgid "Total"
msgstr ""
@@ -2659,7 +2659,7 @@ msgstr ""
#: libraries/export/latex.php:201 libraries/export/odt.php:48
#: libraries/export/sql.php:106 libraries/export/sql.php:868
#: libraries/export/texytext.php:27 server_databases.php:127
-#: server_privileges.php:537 server_replication.php:316 tbl_printview.php:317
+#: server_privileges.php:576 server_replication.php:316 tbl_printview.php:317
#: tbl_structure.php:665
msgid "Data"
msgstr ""
@@ -2709,9 +2709,9 @@ msgstr ""
#: libraries/export/xml.php:102 libraries/header_printview.inc.php:57
#: libraries/replication_gui.lib.php:63 libraries/replication_gui.lib.php:174
#: libraries/replication_gui.lib.php:269 libraries/replication_gui.lib.php:272
-#: libraries/replication_gui.lib.php:329 server_privileges.php:692
-#: server_privileges.php:695 server_privileges.php:751
-#: server_privileges.php:1498 server_privileges.php:2030
+#: libraries/replication_gui.lib.php:329 server_privileges.php:731
+#: server_privileges.php:734 server_privileges.php:790
+#: server_privileges.php:1537 server_privileges.php:2069
#: server_processlist.php:55 server_synchronize.php:1159
msgid "Host"
msgstr ""
@@ -3057,736 +3057,6 @@ msgstr ""
msgid "Convert to Kana"
msgstr ""
-#. l10n: Text direction, use either ltr or rtl
-#: libraries/messages.inc.php:19
-msgid "ltr"
-msgstr "rtl"
-
-#: libraries/messages.inc.php:21
-msgid "Content of table __TABLE__"
-msgstr ""
-
-#: libraries/messages.inc.php:22
-msgid "(continued)"
-msgstr ""
-
-#: libraries/messages.inc.php:23
-msgid "Structure of table __TABLE__"
-msgstr ""
-
-#: libraries/messages.inc.php:25 server_privileges.php:227
-msgid "Includes all privileges except GRANT."
-msgstr ""
-
-#: libraries/messages.inc.php:26 server_privileges.php:153
-#: server_privileges.php:476
-msgid "Allows altering the structure of existing tables."
-msgstr ""
-
-#: libraries/messages.inc.php:27 server_privileges.php:169
-#: server_privileges.php:482
-msgid "Allows altering and dropping stored routines."
-msgstr ""
-
-#: libraries/messages.inc.php:28 server_privileges.php:145
-#: server_privileges.php:475
-msgid "Allows creating new databases and tables."
-msgstr ""
-
-#: libraries/messages.inc.php:29 server_privileges.php:168
-#: server_privileges.php:481
-msgid "Allows creating stored routines."
-msgstr ""
-
-#: libraries/messages.inc.php:30 server_privileges.php:475
-msgid "Allows creating new tables."
-msgstr ""
-
-#: libraries/messages.inc.php:31 server_privileges.php:156
-#: server_privileges.php:479
-msgid "Allows creating temporary tables."
-msgstr ""
-
-#: libraries/messages.inc.php:32 server_privileges.php:170
-#: server_privileges.php:515
-msgid "Allows creating, dropping and renaming user accounts."
-msgstr ""
-
-#: libraries/messages.inc.php:33 server_privileges.php:160
-#: server_privileges.php:164 server_privileges.php:487
-#: server_privileges.php:491
-msgid "Allows creating new views."
-msgstr ""
-
-#: libraries/messages.inc.php:34 server_privileges.php:144
-#: server_privileges.php:467
-msgid "Allows deleting data."
-msgstr ""
-
-#: libraries/messages.inc.php:35 server_privileges.php:146
-#: server_privileges.php:478
-msgid "Allows dropping databases and tables."
-msgstr ""
-
-#: libraries/messages.inc.php:36 server_privileges.php:478
-msgid "Allows dropping tables."
-msgstr ""
-
-#: libraries/messages.inc.php:37 server_privileges.php:161
-#: server_privileges.php:495
-msgid "Allows to set up events for the event scheduler"
-msgstr ""
-
-#: libraries/messages.inc.php:38 server_privileges.php:171
-#: server_privileges.php:483
-msgid "Allows executing stored routines."
-msgstr ""
-
-#: libraries/messages.inc.php:39 server_privileges.php:150
-#: server_privileges.php:470
-msgid "Allows importing data from and exporting data into files."
-msgstr ""
-
-#: libraries/messages.inc.php:40 server_privileges.php:501
-msgid ""
-"Allows adding users and privileges without reloading the privilege tables."
-msgstr ""
-
-#: libraries/messages.inc.php:41 server_privileges.php:152
-#: server_privileges.php:477
-msgid "Allows creating and dropping indexes."
-msgstr ""
-
-#: libraries/messages.inc.php:42 server_privileges.php:142
-#: server_privileges.php:403 server_privileges.php:465
-msgid "Allows inserting and replacing data."
-msgstr ""
-
-#: libraries/messages.inc.php:43 server_privileges.php:157
-#: server_privileges.php:510
-msgid "Allows locking tables for the current thread."
-msgstr ""
-
-#: libraries/messages.inc.php:44 server_privileges.php:607
-#: server_privileges.php:609
-msgid "Limits the number of new connections the user may open per hour."
-msgstr ""
-
-#: libraries/messages.inc.php:45 server_privileges.php:595
-#: server_privileges.php:597
-msgid "Limits the number of queries the user may send to the server per hour."
-msgstr ""
-
-#: libraries/messages.inc.php:46 server_privileges.php:601
-#: server_privileges.php:603
-msgid ""
-"Limits the number of commands that change any table or database the user may "
-"execute per hour."
-msgstr ""
-
-#: libraries/messages.inc.php:47 server_privileges.php:613
-#: server_privileges.php:615
-msgid "Limits the number of simultaneous connections the user may have."
-msgstr ""
-
-#: libraries/messages.inc.php:48 server_privileges.php:149
-#: server_privileges.php:505
-msgid "Allows viewing processes of all users"
-msgstr ""
-
-#: libraries/messages.inc.php:49 server_privileges.php:151
-#: server_privileges.php:409 server_privileges.php:511
-msgid "Has no effect in this MySQL version."
-msgstr ""
-
-#: libraries/messages.inc.php:50 server_privileges.php:147
-#: server_privileges.php:506
-msgid "Allows reloading server settings and flushing the server's caches."
-msgstr ""
-
-#: libraries/messages.inc.php:51 server_privileges.php:159
-#: server_privileges.php:513
-msgid "Allows the user to ask where the slaves / masters are."
-msgstr ""
-
-#: libraries/messages.inc.php:52 server_privileges.php:158
-#: server_privileges.php:514
-msgid "Needed for the replication slaves."
-msgstr ""
-
-#: libraries/messages.inc.php:53 server_privileges.php:141
-#: server_privileges.php:400 server_privileges.php:464
-msgid "Allows reading data."
-msgstr ""
-
-#: libraries/messages.inc.php:54 server_privileges.php:154
-#: server_privileges.php:508
-msgid "Gives access to the complete list of databases."
-msgstr ""
-
-#: libraries/messages.inc.php:55 server_privileges.php:165
-#: server_privileges.php:167 server_privileges.php:480
-msgid "Allows performing SHOW CREATE VIEW queries."
-msgstr ""
-
-#: libraries/messages.inc.php:56 server_privileges.php:148
-#: server_privileges.php:507
-msgid "Allows shutting down the server."
-msgstr ""
-
-#: libraries/messages.inc.php:57 server_privileges.php:155
-#: server_privileges.php:504
-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/messages.inc.php:58 server_privileges.php:162
-#: server_privileges.php:496
-msgid "Allows creating and dropping triggers"
-msgstr ""
-
-#: libraries/messages.inc.php:59 server_privileges.php:143
-#: server_privileges.php:406 server_privileges.php:466
-msgid "Allows changing data."
-msgstr ""
-
-#: libraries/messages.inc.php:60 server_privileges.php:221
-msgid "No privileges."
-msgstr ""
-
-#: libraries/messages.inc.php:62
-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/messages.inc.php:63
-msgid "The number of transactions that used the temporary binary log cache."
-msgstr ""
-
-#: libraries/messages.inc.php:64
-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 "
-"to increase the tmp_table_size value to cause temporary tables to be memory-"
-"based instead of disk-based."
-msgstr ""
-
-#: libraries/messages.inc.php:65
-msgid "How many temporary files mysqld has created."
-msgstr ""
-
-#: libraries/messages.inc.php:66
-msgid ""
-"The number of in-memory temporary tables created automatically by the server "
-"while executing statements."
-msgstr ""
-
-#: libraries/messages.inc.php:67
-msgid ""
-"The number of rows written with INSERT DELAYED for which some error occurred "
-"(probably duplicate key)."
-msgstr ""
-
-#: libraries/messages.inc.php:68
-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/messages.inc.php:69
-msgid "The number of INSERT DELAYED rows written."
-msgstr ""
-
-#: libraries/messages.inc.php:70
-msgid "The number of executed FLUSH statements."
-msgstr ""
-
-#: libraries/messages.inc.php:71
-msgid "The number of internal COMMIT statements."
-msgstr ""
-
-#: libraries/messages.inc.php:72
-msgid "The number of times a row was deleted from a table."
-msgstr ""
-
-#: libraries/messages.inc.php:73
-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/messages.inc.php:74
-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/messages.inc.php:75
-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/messages.inc.php:76
-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/messages.inc.php:77
-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/messages.inc.php:78
-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 "
-"probably have a lot of queries that require MySQL to scan whole tables or "
-"you have joins that don't use keys properly."
-msgstr ""
-
-#: libraries/messages.inc.php:79
-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 "
-"tables are not properly indexed or that your queries are not written to take "
-"advantage of the indexes you have."
-msgstr ""
-
-#: libraries/messages.inc.php:80
-msgid "The number of internal ROLLBACK statements."
-msgstr ""
-
-#: libraries/messages.inc.php:81
-msgid "The number of requests to update a row in a table."
-msgstr ""
-
-#: libraries/messages.inc.php:82
-msgid "The number of requests to insert a row in a table."
-msgstr ""
-
-#: libraries/messages.inc.php:83
-msgid "The number of pages containing data (dirty or clean)."
-msgstr ""
-
-#: libraries/messages.inc.php:84
-msgid "The number of pages currently dirty."
-msgstr ""
-
-#: libraries/messages.inc.php:85
-msgid "The number of buffer pool pages that have been requested to be flushed."
-msgstr ""
-
-#: libraries/messages.inc.php:86
-msgid "The number of free pages."
-msgstr ""
-
-#: libraries/messages.inc.php:87
-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/messages.inc.php:88
-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 "
-"be calculated as Innodb_buffer_pool_pages_total - "
-"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data."
-msgstr ""
-
-#: libraries/messages.inc.php:89
-msgid "Total size of buffer pool, in pages."
-msgstr ""
-
-#: libraries/messages.inc.php:90
-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/messages.inc.php:91
-msgid ""
-"The number of sequential read-aheads InnoDB initiated. This happens when "
-"InnoDB does a sequential full table scan."
-msgstr ""
-
-#: libraries/messages.inc.php:92
-msgid "The number of logical read requests InnoDB has done."
-msgstr ""
-
-#: libraries/messages.inc.php:93
-msgid ""
-"The number of logical reads that InnoDB could not satisfy from buffer pool "
-"and had to do a single-page read."
-msgstr ""
-
-#: libraries/messages.inc.php:94
-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 "
-"available, it's necessary to wait for pages to be flushed first. This "
-"counter counts instances of these waits. If the buffer pool size was set "
-"properly, this value should be small."
-msgstr ""
-
-#: libraries/messages.inc.php:95
-msgid "The number writes done to the InnoDB buffer pool."
-msgstr ""
-
-#: libraries/messages.inc.php:96
-msgid "The number of fsync() operations so far."
-msgstr ""
-
-#: libraries/messages.inc.php:97
-msgid "The current number of pending fsync() operations."
-msgstr ""
-
-#: libraries/messages.inc.php:98
-msgid "The current number of pending reads."
-msgstr ""
-
-#: libraries/messages.inc.php:99
-msgid "The current number of pending writes."
-msgstr ""
-
-#: libraries/messages.inc.php:100
-msgid "The amount of data read so far, in bytes."
-msgstr ""
-
-#: libraries/messages.inc.php:101
-msgid "The total number of data reads."
-msgstr ""
-
-#: libraries/messages.inc.php:102
-msgid "The total number of data writes."
-msgstr ""
-
-#: libraries/messages.inc.php:103
-msgid "The amount of data written so far, in bytes."
-msgstr ""
-
-#: libraries/messages.inc.php:104
-msgid "The number of pages that have been written for doublewrite operations."
-msgstr ""
-
-#: libraries/messages.inc.php:105
-msgid "The number of doublewrite operations that have been performed."
-msgstr ""
-
-#: libraries/messages.inc.php:106
-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/messages.inc.php:107
-msgid "The number of log write requests."
-msgstr ""
-
-#: libraries/messages.inc.php:108
-msgid "The number of physical writes to the log file."
-msgstr ""
-
-#: libraries/messages.inc.php:109
-msgid "The number of fsync() writes done to the log file."
-msgstr ""
-
-#: libraries/messages.inc.php:110
-msgid "The number of pending log file fsyncs."
-msgstr ""
-
-#: libraries/messages.inc.php:111
-msgid "Pending log file writes."
-msgstr ""
-
-#: libraries/messages.inc.php:112
-msgid "The number of bytes written to the log file."
-msgstr ""
-
-#: libraries/messages.inc.php:113
-msgid "The number of pages created."
-msgstr ""
-
-#: libraries/messages.inc.php:114
-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/messages.inc.php:115
-msgid "The number of pages read."
-msgstr ""
-
-#: libraries/messages.inc.php:116
-msgid "The number of pages written."
-msgstr ""
-
-#: libraries/messages.inc.php:117
-msgid "The number of row locks currently being waited for."
-msgstr ""
-
-#: libraries/messages.inc.php:118
-msgid "The average time to acquire a row lock, in milliseconds."
-msgstr ""
-
-#: libraries/messages.inc.php:119
-msgid "The total time spent in acquiring row locks, in milliseconds."
-msgstr ""
-
-#: libraries/messages.inc.php:120
-msgid "The maximum time to acquire a row lock, in milliseconds."
-msgstr ""
-
-#: libraries/messages.inc.php:121
-msgid "The number of times a row lock had to be waited for."
-msgstr ""
-
-#: libraries/messages.inc.php:122
-msgid "The number of rows deleted from InnoDB tables."
-msgstr ""
-
-#: libraries/messages.inc.php:123
-msgid "The number of rows inserted in InnoDB tables."
-msgstr ""
-
-#: libraries/messages.inc.php:124
-msgid "The number of rows read from InnoDB tables."
-msgstr ""
-
-#: libraries/messages.inc.php:125
-msgid "The number of rows updated in InnoDB tables."
-msgstr ""
-
-#: libraries/messages.inc.php:126
-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/messages.inc.php:127
-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/messages.inc.php:128
-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/messages.inc.php:129
-msgid "The number of requests to read a key block from the cache."
-msgstr ""
-
-#: libraries/messages.inc.php:130
-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/messages.inc.php:131
-msgid "The number of requests to write a key block to the cache."
-msgstr ""
-
-#: libraries/messages.inc.php:132
-msgid "The number of physical writes of a key block to disk."
-msgstr ""
-
-#: libraries/messages.inc.php:133
-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/messages.inc.php:134
-msgid "The number of rows waiting to be written in INSERT DELAYED queues."
-msgstr ""
-
-#: libraries/messages.inc.php:135
-msgid ""
-"The number of tables that have been opened. If opened tables is big, your "
-"table cache value is probably too small."
-msgstr ""
-
-#: libraries/messages.inc.php:136
-msgid "The number of files that are open."
-msgstr ""
-
-#: libraries/messages.inc.php:137
-msgid "The number of streams that are open (used mainly for logging)."
-msgstr ""
-
-#: libraries/messages.inc.php:138
-msgid "The number of tables that are open."
-msgstr ""
-
-#: libraries/messages.inc.php:139
-msgid "The number of free memory blocks in query cache."
-msgstr ""
-
-#: libraries/messages.inc.php:140
-msgid "The amount of free memory for query cache."
-msgstr ""
-
-#: libraries/messages.inc.php:141
-msgid "The number of cache hits."
-msgstr ""
-
-#: libraries/messages.inc.php:142
-msgid "The number of queries added to the cache."
-msgstr ""
-
-#: libraries/messages.inc.php:143
-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 "
-"cache size. The query cache uses a least recently used (LRU) strategy to "
-"decide which queries to remove from the cache."
-msgstr ""
-
-#: libraries/messages.inc.php:144
-msgid ""
-"The number of non-cached queries (not cachable, or not cached due to the "
-"query_cache_type setting)."
-msgstr ""
-
-#: libraries/messages.inc.php:145
-msgid "The number of queries registered in the cache."
-msgstr ""
-
-#: libraries/messages.inc.php:146
-msgid "The total number of blocks in the query cache."
-msgstr ""
-
-#: libraries/messages.inc.php:147
-msgctxt "$strShowStatusReset"
-msgid "Reset"
-msgstr ""
-
-#: libraries/messages.inc.php:148
-msgid "The status of failsafe replication (not yet implemented)."
-msgstr ""
-
-#: libraries/messages.inc.php:149
-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/messages.inc.php:150
-msgid "The number of joins that used a range search on a reference table."
-msgstr ""
-
-#: libraries/messages.inc.php:151
-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/messages.inc.php:152
-msgid ""
-"The number of joins that used ranges on the first table. (It's normally not "
-"critical even if this is big.)"
-msgstr ""
-
-#: libraries/messages.inc.php:153
-msgid "The number of joins that did a full scan of the first table."
-msgstr ""
-
-#: libraries/messages.inc.php:154
-msgid "The number of temporary tables currently open by the slave SQL thread."
-msgstr ""
-
-#: libraries/messages.inc.php:155
-msgid ""
-"Total (since startup) number of times the replication slave SQL thread has "
-"retried transactions."
-msgstr ""
-
-#: libraries/messages.inc.php:156
-msgid "This is ON if this server is a slave that is connected to a master."
-msgstr ""
-
-#: libraries/messages.inc.php:157
-msgid ""
-"The number of threads that have taken more than slow_launch_time seconds to "
-"create."
-msgstr ""
-
-#: libraries/messages.inc.php:158
-msgid ""
-"The number of queries that have taken more than long_query_time seconds."
-msgstr ""
-
-#: libraries/messages.inc.php:159
-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/messages.inc.php:160
-msgid "The number of sorts that were done with ranges."
-msgstr ""
-
-#: libraries/messages.inc.php:161
-msgid "The number of sorted rows."
-msgstr ""
-
-#: libraries/messages.inc.php:162
-msgid "The number of sorts that were done by scanning the table."
-msgstr ""
-
-#: libraries/messages.inc.php:163
-msgid "The number of times that a table lock was acquired immediately."
-msgstr ""
-
-#: libraries/messages.inc.php:164
-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 "
-"should first optimize your queries, and then either split your table or "
-"tables or use replication."
-msgstr ""
-
-#: libraries/messages.inc.php:165
-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/messages.inc.php:166
-msgid "The number of currently open connections."
-msgstr ""
-
-#: libraries/messages.inc.php:167
-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 "
-"doesn't give a notable performance improvement if you have a good thread "
-"implementation.)"
-msgstr ""
-
-#: libraries/messages.inc.php:168
-msgid "The number of threads that are not sleeping."
-msgstr ""
-
#: libraries/mult_submits.inc.php:76 libraries/tbl_properties.inc.php:513
#: tbl_structure.php:29 tbl_structure.php:153 tbl_structure.php:157
#: tbl_structure.php:473
@@ -4103,8 +3373,8 @@ msgstr ""
#: libraries/replication_gui.lib.php:55 libraries/replication_gui.lib.php:56
#: libraries/replication_gui.lib.php:249 libraries/replication_gui.lib.php:252
-#: libraries/replication_gui.lib.php:259 server_privileges.php:672
-#: server_privileges.php:675 server_privileges.php:682
+#: libraries/replication_gui.lib.php:259 server_privileges.php:711
+#: server_privileges.php:714 server_privileges.php:721
#: server_synchronize.php:1171
msgid "User name"
msgstr ""
@@ -4122,11 +3392,11 @@ msgid "Slave status"
msgstr ""
#: libraries/replication_gui.lib.php:114 libraries/sql_query_form.lib.php:445
-#: server_status.php:626 server_variables.php:52
+#: server_status.php:737 server_variables.php:52
msgid "Variable"
msgstr ""
-#: libraries/replication_gui.lib.php:115 server_status.php:627
+#: libraries/replication_gui.lib.php:115 server_status.php:738
#: tbl_change.php:324 tbl_printview.php:370 tbl_select.php:139
#: tbl_structure.php:729
msgid "Value"
@@ -4146,41 +3416,58 @@ msgstr ""
msgid "Add slave replication user"
msgstr ""
-#: libraries/replication_gui.lib.php:254 server_privileges.php:677
+#: libraries/replication_gui.lib.php:254 server_privileges.php:716
msgid "Any user"
msgstr ""
#: libraries/replication_gui.lib.php:255 libraries/replication_gui.lib.php:323
-#: libraries/replication_gui.lib.php:346 server_privileges.php:678
-#: server_privileges.php:745 server_privileges.php:769
-#: server_privileges.php:1889 server_privileges.php:1919
+#: libraries/replication_gui.lib.php:346 server_privileges.php:717
+#: server_privileges.php:784 server_privileges.php:808
+#: server_privileges.php:1928 server_privileges.php:1958
msgid "Use text field"
msgstr ""
-#: libraries/replication_gui.lib.php:302 server_privileges.php:725
+#: libraries/replication_gui.lib.php:302 server_privileges.php:764
msgid "Any host"
msgstr ""
-#: libraries/replication_gui.lib.php:306 server_privileges.php:729
+#: libraries/replication_gui.lib.php:306 server_privileges.php:768
msgid "Local"
msgstr ""
-#: libraries/replication_gui.lib.php:312 server_privileges.php:734
+#: libraries/replication_gui.lib.php:312 server_privileges.php:773
msgid "This Host"
msgstr ""
-#: libraries/replication_gui.lib.php:318 server_privileges.php:740
+#: libraries/replication_gui.lib.php:318 server_privileges.php:779
msgid "Use Host Table"
msgstr ""
-#: libraries/replication_gui.lib.php:331 server_privileges.php:753
+#: libraries/replication_gui.lib.php:331 server_privileges.php:792
msgid ""
"When Host table is used, this field is ignored and values stored in Host "
"table are used instead."
msgstr ""
-#: libraries/select_lang.lib.php:480 libraries/select_lang.lib.php:486
-#: libraries/select_lang.lib.php:492
+#. l10n: Text direction, use either ltr or rtl
+#: libraries/select_lang.lib.php:491
+msgid "ltr"
+msgstr "rtl"
+
+#: libraries/select_lang.lib.php:493
+msgid "Content of table __TABLE__"
+msgstr ""
+
+#: libraries/select_lang.lib.php:494
+msgid "(continued)"
+msgstr ""
+
+#: libraries/select_lang.lib.php:495
+msgid "Structure of table __TABLE__"
+msgstr ""
+
+#: libraries/select_lang.lib.php:500 libraries/select_lang.lib.php:506
+#: libraries/select_lang.lib.php:512
#, php-format
msgid "Unknown language: %1$s."
msgstr ""
@@ -4191,7 +3478,7 @@ msgid "Servers"
msgstr ""
#: libraries/server_links.inc.php:53 server_engines.php:112
-#: server_engines.php:116 server_status.php:304 test/theme.php:105
+#: server_engines.php:116 server_status.php:415 test/theme.php:105
msgid "Variables"
msgstr ""
@@ -4204,7 +3491,7 @@ msgid "Engines"
msgstr ""
#: libraries/server_links.inc.php:76 server_binlog.php:110
-#: server_status.php:253 test/theme.php:121
+#: server_status.php:364 test/theme.php:121
msgid "Binary log"
msgstr ""
@@ -4564,8 +3851,8 @@ msgstr ""
msgid "Protocol version"
msgstr ""
-#: main.php:189 server_privileges.php:1350 server_privileges.php:1497
-#: server_privileges.php:1611 server_privileges.php:2029
+#: main.php:189 server_privileges.php:1389 server_privileges.php:1536
+#: server_privileges.php:1650 server_privileges.php:2068
#: server_processlist.php:54
msgid "User"
msgstr ""
@@ -4921,7 +4208,7 @@ msgstr ""
msgid "Databases statistics"
msgstr ""
-#: server_databases.php:117 server_status.php:260
+#: server_databases.php:117 server_status.php:371
#: setup/lib/messages.inc.php:117
msgid "Tables"
msgstr ""
@@ -4939,6 +4226,16 @@ msgstr ""
msgid "Jump to database"
msgstr ""
+#: server_databases.php:267
+msgid "Not replicated"
+msgstr ""
+
+#: server_databases.php:273
+#, fuzzy
+#| msgid "Replication"
+msgid "Replicated"
+msgstr "لپیٹنا"
+
#: server_databases.php:289
#, php-format
msgid "Check privileges for database "%s"."
@@ -4970,138 +4267,320 @@ msgstr ""
msgid "View dump (schema) of databases"
msgstr ""
-#: server_privileges.php:263 server_privileges.php:264
+#: server_privileges.php:24 server_privileges.php:266
+msgid "Includes all privileges except GRANT."
+msgstr ""
+
+#: server_privileges.php:25 server_privileges.php:192
+#: server_privileges.php:515
+msgid "Allows altering the structure of existing tables."
+msgstr ""
+
+#: server_privileges.php:26 server_privileges.php:208
+#: server_privileges.php:521
+msgid "Allows altering and dropping stored routines."
+msgstr ""
+
+#: server_privileges.php:27 server_privileges.php:184
+#: server_privileges.php:514
+msgid "Allows creating new databases and tables."
+msgstr ""
+
+#: server_privileges.php:28 server_privileges.php:207
+#: server_privileges.php:520
+msgid "Allows creating stored routines."
+msgstr ""
+
+#: server_privileges.php:29 server_privileges.php:514
+msgid "Allows creating new tables."
+msgstr ""
+
+#: server_privileges.php:30 server_privileges.php:195
+#: server_privileges.php:518
+msgid "Allows creating temporary tables."
+msgstr ""
+
+#: server_privileges.php:31 server_privileges.php:209
+#: server_privileges.php:554
+msgid "Allows creating, dropping and renaming user accounts."
+msgstr ""
+
+#: server_privileges.php:32 server_privileges.php:199
+#: server_privileges.php:203 server_privileges.php:526
+#: server_privileges.php:530
+msgid "Allows creating new views."
+msgstr ""
+
+#: server_privileges.php:33 server_privileges.php:183
+#: server_privileges.php:506
+msgid "Allows deleting data."
+msgstr ""
+
+#: server_privileges.php:34 server_privileges.php:185
+#: server_privileges.php:517
+msgid "Allows dropping databases and tables."
+msgstr ""
+
+#: server_privileges.php:35 server_privileges.php:517
+msgid "Allows dropping tables."
+msgstr ""
+
+#: server_privileges.php:36 server_privileges.php:200
+#: server_privileges.php:534
+msgid "Allows to set up events for the event scheduler"
+msgstr ""
+
+#: server_privileges.php:37 server_privileges.php:210
+#: server_privileges.php:522
+msgid "Allows executing stored routines."
+msgstr ""
+
+#: server_privileges.php:38 server_privileges.php:189
+#: server_privileges.php:509
+msgid "Allows importing data from and exporting data into files."
+msgstr ""
+
+#: server_privileges.php:39 server_privileges.php:540
+msgid ""
+"Allows adding users and privileges without reloading the privilege tables."
+msgstr ""
+
+#: server_privileges.php:40 server_privileges.php:191
+#: server_privileges.php:516
+msgid "Allows creating and dropping indexes."
+msgstr ""
+
+#: server_privileges.php:41 server_privileges.php:181
+#: server_privileges.php:442 server_privileges.php:504
+msgid "Allows inserting and replacing data."
+msgstr ""
+
+#: server_privileges.php:42 server_privileges.php:196
+#: server_privileges.php:549
+msgid "Allows locking tables for the current thread."
+msgstr ""
+
+#: server_privileges.php:43 server_privileges.php:646
+#: server_privileges.php:648
+msgid "Limits the number of new connections the user may open per hour."
+msgstr ""
+
+#: server_privileges.php:44 server_privileges.php:634
+#: server_privileges.php:636
+msgid "Limits the number of queries the user may send to the server per hour."
+msgstr ""
+
+#: server_privileges.php:45 server_privileges.php:640
+#: server_privileges.php:642
+msgid ""
+"Limits the number of commands that change any table or database the user may "
+"execute per hour."
+msgstr ""
+
+#: server_privileges.php:46 server_privileges.php:652
+#: server_privileges.php:654
+msgid "Limits the number of simultaneous connections the user may have."
+msgstr ""
+
+#: server_privileges.php:47 server_privileges.php:188
+#: server_privileges.php:544
+msgid "Allows viewing processes of all users"
+msgstr ""
+
+#: server_privileges.php:48 server_privileges.php:190
+#: server_privileges.php:448 server_privileges.php:550
+msgid "Has no effect in this MySQL version."
+msgstr ""
+
+#: server_privileges.php:49 server_privileges.php:186
+#: server_privileges.php:545
+msgid "Allows reloading server settings and flushing the server's caches."
+msgstr ""
+
+#: server_privileges.php:50 server_privileges.php:198
+#: server_privileges.php:552
+msgid "Allows the user to ask where the slaves / masters are."
+msgstr ""
+
+#: server_privileges.php:51 server_privileges.php:197
+#: server_privileges.php:553
+msgid "Needed for the replication slaves."
+msgstr ""
+
+#: server_privileges.php:52 server_privileges.php:180
+#: server_privileges.php:439 server_privileges.php:503
+msgid "Allows reading data."
+msgstr ""
+
+#: server_privileges.php:53 server_privileges.php:193
+#: server_privileges.php:547
+msgid "Gives access to the complete list of databases."
+msgstr ""
+
+#: server_privileges.php:54 server_privileges.php:204
+#: server_privileges.php:206 server_privileges.php:519
+msgid "Allows performing SHOW CREATE VIEW queries."
+msgstr ""
+
+#: server_privileges.php:55 server_privileges.php:187
+#: server_privileges.php:546
+msgid "Allows shutting down the server."
+msgstr ""
+
+#: server_privileges.php:56 server_privileges.php:194
+#: server_privileges.php:543
+msgid ""
+"Allows connecting, even if maximum number of connections is reached; "
+"required for most administrative operations like setting global variables or "
+"killing threads of other users."
+msgstr ""
+
+#: server_privileges.php:57 server_privileges.php:201
+#: server_privileges.php:535
+msgid "Allows creating and dropping triggers"
+msgstr ""
+
+#: server_privileges.php:58 server_privileges.php:182
+#: server_privileges.php:445 server_privileges.php:505
+msgid "Allows changing data."
+msgstr ""
+
+#: server_privileges.php:59 server_privileges.php:260
+msgid "No privileges."
+msgstr ""
+
+#: server_privileges.php:302 server_privileges.php:303
msgctxt "None privileges"
msgid "None"
msgstr ""
-#: server_privileges.php:392 server_privileges.php:527
-#: server_privileges.php:1679 server_privileges.php:1685
+#: server_privileges.php:431 server_privileges.php:566
+#: server_privileges.php:1718 server_privileges.php:1724
msgid "Table-specific privileges"
msgstr ""
-#: server_privileges.php:393 server_privileges.php:535
-#: server_privileges.php:1501
+#: server_privileges.php:432 server_privileges.php:574
+#: server_privileges.php:1540
msgid " Note: MySQL privilege names are expressed in English "
msgstr ""
-#: server_privileges.php:524 server_privileges.php:1500
+#: server_privileges.php:563 server_privileges.php:1539
msgid "Global privileges"
msgstr ""
-#: server_privileges.php:526 server_privileges.php:1679
+#: server_privileges.php:565 server_privileges.php:1718
msgid "Database-specific privileges"
msgstr ""
-#: server_privileges.php:571
+#: server_privileges.php:610
msgid "Administration"
msgstr ""
-#: server_privileges.php:591
+#: server_privileges.php:630
msgid "Resource limits"
msgstr ""
-#: server_privileges.php:592
+#: server_privileges.php:631
msgid "Note: Setting these options to 0 (zero) removes the limit."
msgstr ""
-#: server_privileges.php:669
+#: server_privileges.php:708
msgid "Login Information"
msgstr ""
-#: server_privileges.php:763
+#: server_privileges.php:802
msgid "Do not change the password"
msgstr ""
-#: server_privileges.php:804 server_privileges.php:2166
+#: server_privileges.php:843 server_privileges.php:2205
msgid "No user found."
msgstr ""
-#: server_privileges.php:848
+#: server_privileges.php:887
#, php-format
msgid "The user %s already exists!"
msgstr ""
-#: server_privileges.php:931
+#: server_privileges.php:970
msgid "You have added a new user."
msgstr ""
-#: server_privileges.php:1152
+#: server_privileges.php:1191
#, php-format
msgid "You have updated the privileges for %s."
msgstr ""
-#: server_privileges.php:1176
+#: server_privileges.php:1215
#, php-format
msgid "You have revoked the privileges for %s"
msgstr ""
-#: server_privileges.php:1212
+#: server_privileges.php:1251
#, php-format
msgid "The password for %s was changed successfully."
msgstr ""
-#: server_privileges.php:1232
+#: server_privileges.php:1271
#, php-format
msgid "Deleting %s"
msgstr ""
-#: server_privileges.php:1243
+#: server_privileges.php:1282
msgid "No users selected for deleting!"
msgstr ""
-#: server_privileges.php:1246
+#: server_privileges.php:1285
msgid "Reloading the privileges"
msgstr ""
-#: server_privileges.php:1261
+#: server_privileges.php:1300
msgid "The selected users have been deleted successfully."
msgstr ""
-#: server_privileges.php:1296
+#: server_privileges.php:1335
msgid "The privileges were reloaded successfully."
msgstr ""
-#: server_privileges.php:1324 server_privileges.php:1610
+#: server_privileges.php:1363 server_privileges.php:1649
msgid "Edit Privileges"
msgstr ""
-#: server_privileges.php:1333
+#: server_privileges.php:1372
msgid "Revoke"
msgstr ""
-#: server_privileges.php:1365
+#: server_privileges.php:1404
msgid "User overview"
msgstr ""
-#: server_privileges.php:1502 server_privileges.php:1684
-#: server_privileges.php:2033
+#: server_privileges.php:1541 server_privileges.php:1723
+#: server_privileges.php:2072
msgid "Grant"
msgstr ""
-#: server_privileges.php:1521 server_privileges.php:2123
+#: server_privileges.php:1560 server_privileges.php:2162
msgid "Any"
msgstr ""
-#: server_privileges.php:1570 server_privileges.php:1594
-#: server_privileges.php:1988 server_privileges.php:2177
+#: server_privileges.php:1609 server_privileges.php:1633
+#: server_privileges.php:2027 server_privileges.php:2216
msgid "Add a new User"
msgstr ""
-#: server_privileges.php:1575
+#: server_privileges.php:1614
msgid "Remove selected users"
msgstr ""
-#: server_privileges.php:1578
+#: server_privileges.php:1617
msgid "Revoke all active privileges from the users and delete them afterwards."
msgstr ""
-#: server_privileges.php:1579 server_privileges.php:1580
-#: server_privileges.php:1581
+#: server_privileges.php:1618 server_privileges.php:1619
+#: server_privileges.php:1620
msgid "Drop the databases that have the same names as the users."
msgstr ""
-#: server_privileges.php:1597
+#: server_privileges.php:1636
#, php-format
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
@@ -5110,89 +4589,89 @@ msgid ""
"sreload the privileges%s before you continue."
msgstr ""
-#: server_privileges.php:1645
+#: server_privileges.php:1684
msgid "The selected user was not found in the privilege table."
msgstr ""
-#: server_privileges.php:1685
+#: server_privileges.php:1724
msgid "Column-specific privileges"
msgstr ""
-#: server_privileges.php:1886
+#: server_privileges.php:1925
msgid "Add privileges on the following database"
msgstr ""
-#: server_privileges.php:1904
+#: server_privileges.php:1943
msgid "Wildcards % and _ should be escaped with a \\ to use them literally"
msgstr ""
-#: server_privileges.php:1907
+#: server_privileges.php:1946
msgid "Add privileges on the following table"
msgstr ""
-#: server_privileges.php:1964
+#: server_privileges.php:2003
msgid "Change Login Information / Copy User"
msgstr ""
-#: server_privileges.php:1967
+#: server_privileges.php:2006
msgid "Create a new user with the same privileges and ..."
msgstr ""
-#: server_privileges.php:1969
+#: server_privileges.php:2008
msgid "... keep the old one."
msgstr ""
-#: server_privileges.php:1970
+#: server_privileges.php:2009
msgid " ... delete the old one from the user tables."
msgstr ""
-#: server_privileges.php:1971
+#: server_privileges.php:2010
msgid ""
" ... revoke all active privileges from the old one and delete it afterwards."
msgstr ""
-#: server_privileges.php:1972
+#: server_privileges.php:2011
msgid ""
" ... delete the old one from the user tables and reload the privileges "
"afterwards."
msgstr ""
-#: server_privileges.php:1994
+#: server_privileges.php:2033
msgid "Database for user"
msgstr ""
-#: server_privileges.php:1998
+#: server_privileges.php:2037
msgctxt "Create none database for user"
msgid "None"
msgstr ""
-#: server_privileges.php:1999
+#: server_privileges.php:2038
msgid "Create database with same name and grant all privileges"
msgstr ""
-#: server_privileges.php:2000
+#: server_privileges.php:2039
msgid "Grant all privileges on wildcard name (username\\_%)"
msgstr ""
-#: server_privileges.php:2003
+#: server_privileges.php:2042
#, php-format
msgid "Grant all privileges on database "%s""
msgstr ""
-#: server_privileges.php:2026
+#: server_privileges.php:2065
#, php-format
msgid "Users having access to "%s""
msgstr ""
-#: server_privileges.php:2134
+#: server_privileges.php:2173
msgid "global"
msgstr ""
-#: server_privileges.php:2136
+#: server_privileges.php:2175
msgid "database-specific"
msgstr ""
-#: server_privileges.php:2138
+#: server_privileges.php:2177
msgid "wildcard"
msgstr ""
@@ -5238,7 +4717,7 @@ msgstr ""
msgid "This server is configured as master in a replication process."
msgstr ""
-#: server_replication.php:184 server_status.php:281
+#: server_replication.php:184 server_status.php:392
msgid "Show master status"
msgstr ""
@@ -5373,165 +4852,696 @@ msgid ""
"like to configure it?"
msgstr ""
+#: server_status.php:40
+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 ""
+
+#: server_status.php:41
+msgid "The number of transactions that used the temporary binary log cache."
+msgstr ""
+
+#: server_status.php:42
+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 "
+"to increase the tmp_table_size value to cause temporary tables to be memory-"
+"based instead of disk-based."
+msgstr ""
+
+#: server_status.php:43
+msgid "How many temporary files mysqld has created."
+msgstr ""
+
+#: server_status.php:44
+msgid ""
+"The number of in-memory temporary tables created automatically by the server "
+"while executing statements."
+msgstr ""
+
+#: server_status.php:45
+msgid ""
+"The number of rows written with INSERT DELAYED for which some error occurred "
+"(probably duplicate key)."
+msgstr ""
+
#: server_status.php:46
+msgid ""
+"The number of INSERT DELAYED handler threads in use. Every different table "
+"on which one uses INSERT DELAYED gets its own thread."
+msgstr ""
+
+#: server_status.php:47
+msgid "The number of INSERT DELAYED rows written."
+msgstr ""
+
+#: server_status.php:48
+msgid "The number of executed FLUSH statements."
+msgstr ""
+
+#: server_status.php:49
+msgid "The number of internal COMMIT statements."
+msgstr ""
+
+#: server_status.php:50
+msgid "The number of times a row was deleted from a table."
+msgstr ""
+
+#: server_status.php:51
+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 ""
+
+#: server_status.php:52
+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 ""
+
+#: server_status.php:53
+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 ""
+
+#: server_status.php:54
+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 ""
+
+#: server_status.php:55
+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 ""
+
+#: server_status.php:56
+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 "
+"probably have a lot of queries that require MySQL to scan whole tables or "
+"you have joins that don't use keys properly."
+msgstr ""
+
+#: server_status.php:57
+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 "
+"tables are not properly indexed or that your queries are not written to take "
+"advantage of the indexes you have."
+msgstr ""
+
+#: server_status.php:58
+msgid "The number of internal ROLLBACK statements."
+msgstr ""
+
+#: server_status.php:59
+msgid "The number of requests to update a row in a table."
+msgstr ""
+
+#: server_status.php:60
+msgid "The number of requests to insert a row in a table."
+msgstr ""
+
+#: server_status.php:61
+msgid "The number of pages containing data (dirty or clean)."
+msgstr ""
+
+#: server_status.php:62
+msgid "The number of pages currently dirty."
+msgstr ""
+
+#: server_status.php:63
+msgid "The number of buffer pool pages that have been requested to be flushed."
+msgstr ""
+
+#: server_status.php:64
+msgid "The number of free pages."
+msgstr ""
+
+#: server_status.php:65
+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 ""
+
+#: server_status.php:66
+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 "
+"be calculated as Innodb_buffer_pool_pages_total - "
+"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data."
+msgstr ""
+
+#: server_status.php:67
+msgid "Total size of buffer pool, in pages."
+msgstr ""
+
+#: server_status.php:68
+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 ""
+
+#: server_status.php:69
+msgid ""
+"The number of sequential read-aheads InnoDB initiated. This happens when "
+"InnoDB does a sequential full table scan."
+msgstr ""
+
+#: server_status.php:70
+msgid "The number of logical read requests InnoDB has done."
+msgstr ""
+
+#: server_status.php:71
+msgid ""
+"The number of logical reads that InnoDB could not satisfy from buffer pool "
+"and had to do a single-page read."
+msgstr ""
+
+#: server_status.php:72
+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 "
+"available, it's necessary to wait for pages to be flushed first. This "
+"counter counts instances of these waits. If the buffer pool size was set "
+"properly, this value should be small."
+msgstr ""
+
+#: server_status.php:73
+msgid "The number writes done to the InnoDB buffer pool."
+msgstr ""
+
+#: server_status.php:74
+msgid "The number of fsync() operations so far."
+msgstr ""
+
+#: server_status.php:75
+msgid "The current number of pending fsync() operations."
+msgstr ""
+
+#: server_status.php:76
+msgid "The current number of pending reads."
+msgstr ""
+
+#: server_status.php:77
+msgid "The current number of pending writes."
+msgstr ""
+
+#: server_status.php:78
+msgid "The amount of data read so far, in bytes."
+msgstr ""
+
+#: server_status.php:79
+msgid "The total number of data reads."
+msgstr ""
+
+#: server_status.php:80
+msgid "The total number of data writes."
+msgstr ""
+
+#: server_status.php:81
+msgid "The amount of data written so far, in bytes."
+msgstr ""
+
+#: server_status.php:82
+msgid "The number of pages that have been written for doublewrite operations."
+msgstr ""
+
+#: server_status.php:83
+msgid "The number of doublewrite operations that have been performed."
+msgstr ""
+
+#: server_status.php:84
+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 ""
+
+#: server_status.php:85
+msgid "The number of log write requests."
+msgstr ""
+
+#: server_status.php:86
+msgid "The number of physical writes to the log file."
+msgstr ""
+
+#: server_status.php:87
+msgid "The number of fsync() writes done to the log file."
+msgstr ""
+
+#: server_status.php:88
+msgid "The number of pending log file fsyncs."
+msgstr ""
+
+#: server_status.php:89
+msgid "Pending log file writes."
+msgstr ""
+
+#: server_status.php:90
+msgid "The number of bytes written to the log file."
+msgstr ""
+
+#: server_status.php:91
+msgid "The number of pages created."
+msgstr ""
+
+#: server_status.php:92
+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 ""
+
+#: server_status.php:93
+msgid "The number of pages read."
+msgstr ""
+
+#: server_status.php:94
+msgid "The number of pages written."
+msgstr ""
+
+#: server_status.php:95
+msgid "The number of row locks currently being waited for."
+msgstr ""
+
+#: server_status.php:96
+msgid "The average time to acquire a row lock, in milliseconds."
+msgstr ""
+
+#: server_status.php:97
+msgid "The total time spent in acquiring row locks, in milliseconds."
+msgstr ""
+
+#: server_status.php:98
+msgid "The maximum time to acquire a row lock, in milliseconds."
+msgstr ""
+
+#: server_status.php:99
+msgid "The number of times a row lock had to be waited for."
+msgstr ""
+
+#: server_status.php:100
+msgid "The number of rows deleted from InnoDB tables."
+msgstr ""
+
+#: server_status.php:101
+msgid "The number of rows inserted in InnoDB tables."
+msgstr ""
+
+#: server_status.php:102
+msgid "The number of rows read from InnoDB tables."
+msgstr ""
+
+#: server_status.php:103
+msgid "The number of rows updated in InnoDB tables."
+msgstr ""
+
+#: server_status.php:104
+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 ""
+
+#: server_status.php:105
+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 ""
+
+#: server_status.php:106
+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 ""
+
+#: server_status.php:107
+msgid "The number of requests to read a key block from the cache."
+msgstr ""
+
+#: server_status.php:108
+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 ""
+
+#: server_status.php:109
+msgid "The number of requests to write a key block to the cache."
+msgstr ""
+
+#: server_status.php:110
+msgid "The number of physical writes of a key block to disk."
+msgstr ""
+
+#: server_status.php:111
+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 ""
+
+#: server_status.php:112
+msgid "The number of rows waiting to be written in INSERT DELAYED queues."
+msgstr ""
+
+#: server_status.php:113
+msgid ""
+"The number of tables that have been opened. If opened tables is big, your "
+"table cache value is probably too small."
+msgstr ""
+
+#: server_status.php:114
+msgid "The number of files that are open."
+msgstr ""
+
+#: server_status.php:115
+msgid "The number of streams that are open (used mainly for logging)."
+msgstr ""
+
+#: server_status.php:116
+msgid "The number of tables that are open."
+msgstr ""
+
+#: server_status.php:117
+msgid "The number of free memory blocks in query cache."
+msgstr ""
+
+#: server_status.php:118
+msgid "The amount of free memory for query cache."
+msgstr ""
+
+#: server_status.php:119
+msgid "The number of cache hits."
+msgstr ""
+
+#: server_status.php:120
+msgid "The number of queries added to the cache."
+msgstr ""
+
+#: server_status.php:121
+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 "
+"cache size. The query cache uses a least recently used (LRU) strategy to "
+"decide which queries to remove from the cache."
+msgstr ""
+
+#: server_status.php:122
+msgid ""
+"The number of non-cached queries (not cachable, or not cached due to the "
+"query_cache_type setting)."
+msgstr ""
+
+#: server_status.php:123
+msgid "The number of queries registered in the cache."
+msgstr ""
+
+#: server_status.php:124
+msgid "The total number of blocks in the query cache."
+msgstr ""
+
+#: server_status.php:125
+msgctxt "$strShowStatusReset"
+msgid "Reset"
+msgstr ""
+
+#: server_status.php:126
+msgid "The status of failsafe replication (not yet implemented)."
+msgstr ""
+
+#: server_status.php:127
+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 ""
+
+#: server_status.php:128
+msgid "The number of joins that used a range search on a reference table."
+msgstr ""
+
+#: server_status.php:129
+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 ""
+
+#: server_status.php:130
+msgid ""
+"The number of joins that used ranges on the first table. (It's normally not "
+"critical even if this is big.)"
+msgstr ""
+
+#: server_status.php:131
+msgid "The number of joins that did a full scan of the first table."
+msgstr ""
+
+#: server_status.php:132
+msgid "The number of temporary tables currently open by the slave SQL thread."
+msgstr ""
+
+#: server_status.php:133
+msgid ""
+"Total (since startup) number of times the replication slave SQL thread has "
+"retried transactions."
+msgstr ""
+
+#: server_status.php:134
+msgid "This is ON if this server is a slave that is connected to a master."
+msgstr ""
+
+#: server_status.php:135
+msgid ""
+"The number of threads that have taken more than slow_launch_time seconds to "
+"create."
+msgstr ""
+
+#: server_status.php:136
+msgid ""
+"The number of queries that have taken more than long_query_time seconds."
+msgstr ""
+
+#: server_status.php:137
+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 ""
+
+#: server_status.php:138
+msgid "The number of sorts that were done with ranges."
+msgstr ""
+
+#: server_status.php:139
+msgid "The number of sorted rows."
+msgstr ""
+
+#: server_status.php:140
+msgid "The number of sorts that were done by scanning the table."
+msgstr ""
+
+#: server_status.php:141
+msgid "The number of times that a table lock was acquired immediately."
+msgstr ""
+
+#: server_status.php:142
+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 "
+"should first optimize your queries, and then either split your table or "
+"tables or use replication."
+msgstr ""
+
+#: server_status.php:143
+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 ""
+
+#: server_status.php:144
+msgid "The number of currently open connections."
+msgstr ""
+
+#: server_status.php:145
+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 "
+"doesn't give a notable performance improvement if you have a good thread "
+"implementation.)"
+msgstr ""
+
+#: server_status.php:146
+msgid "The number of threads that are not sleeping."
+msgstr ""
+
+#: server_status.php:157
msgid "Runtime Information"
msgstr ""
-#: server_status.php:250
+#: server_status.php:361
msgid "Handler"
msgstr ""
-#: server_status.php:251
+#: server_status.php:362
msgid "Query cache"
msgstr ""
-#: server_status.php:252
+#: server_status.php:363
msgid "Threads"
msgstr ""
-#: server_status.php:254
+#: server_status.php:365
msgid "Temporary data"
msgstr ""
-#: server_status.php:255
+#: server_status.php:366
msgid "Delayed inserts"
msgstr ""
-#: server_status.php:256
+#: server_status.php:367
msgid "Key cache"
msgstr ""
-#: server_status.php:257
+#: server_status.php:368
msgid "Joins"
msgstr ""
-#: server_status.php:259
+#: server_status.php:370
msgid "Sorting"
msgstr ""
-#: server_status.php:261
+#: server_status.php:372
msgid "Transaction coordinator"
msgstr ""
-#: server_status.php:271
+#: server_status.php:382
msgid "Flush (close) all tables"
msgstr ""
-#: server_status.php:273
+#: server_status.php:384
msgid "Show open tables"
msgstr ""
-#: server_status.php:278
+#: server_status.php:389
msgid "Show slave hosts"
msgstr ""
-#: server_status.php:284
+#: server_status.php:395
msgid "Show slave status"
msgstr ""
-#: server_status.php:289
+#: server_status.php:400
msgid "Flush query cache"
msgstr ""
-#: server_status.php:294
+#: server_status.php:405
msgid "Show processes"
msgstr ""
-#: server_status.php:344
+#: server_status.php:455
msgctxt "for Show status"
msgid "Reset"
msgstr ""
-#: server_status.php:350
+#: server_status.php:461
#, php-format
msgid "This MySQL server has been running for %s. It started up on %s."
msgstr ""
-#: server_status.php:360
+#: server_status.php:471
msgid ""
"This MySQL server works as master and slave in replication"
"b> process."
msgstr ""
-#: server_status.php:362
+#: server_status.php:473
msgid "This MySQL server works as master in replication process."
msgstr ""
-#: server_status.php:364
+#: server_status.php:475
msgid "This MySQL server works as slave in replication process."
msgstr ""
-#: server_status.php:366
+#: server_status.php:477
msgid ""
"For further information about replication status on the server, please visit "
"the replication section."
msgstr ""
-#: server_status.php:383
+#: server_status.php:494
msgid ""
"Server traffic: These tables show the network traffic statistics of "
"this MySQL server since its startup."
msgstr ""
-#: server_status.php:388
+#: server_status.php:499
msgid "Traffic"
msgstr ""
-#: server_status.php:388
+#: server_status.php:499
msgid ""
"On a busy server, the byte counters may overrun, so those statistics as "
"reported by the MySQL server may be incorrect."
msgstr ""
-#: server_status.php:389 server_status.php:434 server_status.php:497
-#: server_status.php:555
+#: server_status.php:500 server_status.php:545 server_status.php:608
+#: server_status.php:666
msgid "per hour"
msgstr ""
-#: server_status.php:394
+#: server_status.php:505
msgid "Received"
msgstr ""
-#: server_status.php:404
+#: server_status.php:515
msgid "Sent"
msgstr ""
-#: server_status.php:433
+#: server_status.php:544
msgid "Connections"
msgstr ""
-#: server_status.php:440
+#: server_status.php:551
msgid "max. concurrent connections"
msgstr ""
-#: server_status.php:447
+#: server_status.php:558
msgid "Failed attempts"
msgstr ""
-#: server_status.php:461
+#: server_status.php:572
msgid "Aborted"
msgstr ""
-#: server_status.php:490
+#: server_status.php:601
#, php-format
msgid ""
"Query statistics: Since its startup, %s queries have been sent to the "
"server."
msgstr ""
-#: server_status.php:498
+#: server_status.php:609
msgid "per minute"
msgstr ""
-#: server_status.php:499
+#: server_status.php:610
msgid "per second"
msgstr ""
-#: server_status.php:554
+#: server_status.php:665
msgid "Query type"
msgstr ""
-#: server_status.php:721
+#: server_status.php:832
msgid "Replication status"
msgstr ""
diff --git a/po/uz.po b/po/uz.po
index f854a487a..acd393b06 100755
--- a/po/uz.po
+++ b/po/uz.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-06-04 16:07-0400\n"
+"POT-Creation-Date: 2010-06-08 12:32-0400\n"
"PO-Revision-Date: 2010-03-12 09:20+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: uzbek_cyrillic \n"
@@ -14,11 +14,11 @@ msgstr ""
"X-Generator: Translate Toolkit 1.5.3\n"
#: browse_foreigners.php:38 browse_foreigners.php:59
-#: libraries/display_tbl.lib.php:417 server_privileges.php:1475
+#: libraries/display_tbl.lib.php:417 server_privileges.php:1514
msgid "Show all"
msgstr "Барчасини кўрсатиш"
-#: browse_foreigners.php:82 libraries/common.lib.php:2304
+#: browse_foreigners.php:82 libraries/common.lib.php:2313
#: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:394
#: libraries/export/pdf.php:147 pdf_schema.php:283 pdf_schema.php:1123
#: pdf_schema.php:1139
@@ -36,8 +36,8 @@ msgstr ""
#: browse_foreigners.php:150 db_structure.php:79 db_structure.php:80
#: db_structure.php:91 db_structure.php:93 db_structure.php:104
-#: db_structure.php:106 libraries/common.lib.php:2822
-#: libraries/common.lib.php:2829 libraries/db_links.inc.php:75
+#: db_structure.php:106 libraries/common.lib.php:2831
+#: libraries/common.lib.php:2838 libraries/db_links.inc.php:75
#: libraries/tbl_links.inc.php:63
msgid "Search"
msgstr "Қидириш"
@@ -47,7 +47,7 @@ msgstr "Қидириш"
#: db_structure.php:567 js/messages.php:48 libraries/Config.class.php:1046
#: libraries/Theme_Manager.class.php:311
#: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719
-#: libraries/common.lib.php:1333 libraries/common.lib.php:2279
+#: libraries/common.lib.php:1335 libraries/common.lib.php:2288
#: libraries/display_change_password.lib.php:82
#: libraries/display_create_table.lib.php:63
#: libraries/display_export.lib.php:275 libraries/display_import.lib.php:276
@@ -58,9 +58,9 @@ msgstr "Қидириш"
#: libraries/sql_query_form.lib.php:552 libraries/tbl_properties.inc.php:782
#: main.php:128 navigation.php:237 pdf_pages.php:292 pdf_pages.php:328
#: pdf_pages.php:530 pmd_pdf.php:116 server_binlog.php:142
-#: server_privileges.php:625 server_privileges.php:1585
-#: server_privileges.php:1932 server_privileges.php:1979
-#: server_privileges.php:2018 server_replication.php:235
+#: server_privileges.php:664 server_privileges.php:1624
+#: server_privileges.php:1971 server_privileges.php:2018
+#: server_privileges.php:2057 server_replication.php:235
#: server_replication.php:318 server_replication.php:341
#: server_synchronize.php:1209 tbl_change.php:330 tbl_change.php:1174
#: tbl_change.php:1211 tbl_indexes.php:254 tbl_operations.php:265
@@ -78,7 +78,7 @@ msgstr "Индекс номи"
#: browse_foreigners.php:169 browse_foreigners.php:171
#: server_collations.php:55 server_collations.php:67 server_engines.php:59
-#: server_status.php:628
+#: server_status.php:739
msgid "Description"
msgstr "Тавсифи"
@@ -119,7 +119,7 @@ msgstr "Майдон номлари"
#: libraries/db_structure.lib.php:60 libraries/export/htmlword.php:245
#: libraries/export/latex.php:360 libraries/export/odt.php:297
#: libraries/export/texytext.php:234 libraries/tbl_properties.inc.php:100
-#: pdf_schema.php:1263 pdf_schema.php:1284 server_privileges.php:2031
+#: pdf_schema.php:1263 pdf_schema.php:1284 server_privileges.php:2070
#: tbl_change.php:287 tbl_change.php:314 tbl_printview.php:143
#: tbl_printview.php:313 tbl_select.php:136 tbl_structure.php:178
#: tbl_structure.php:659 tbl_tracking.php:274 tbl_tracking.php:321
@@ -163,9 +163,9 @@ msgstr "Изоҳлар"
#: libraries/Index.class.php:386 libraries/export/htmlword.php:322
#: libraries/export/latex.php:430 libraries/export/odt.php:368
#: libraries/export/texytext.php:311 libraries/mult_submits.inc.php:263
-#: pdf_schema.php:1344 server_privileges.php:1529 server_privileges.php:1540
-#: server_privileges.php:1850 server_privileges.php:1855
-#: server_privileges.php:2148 sql.php:132 sql.php:194 tbl_printview.php:229
+#: pdf_schema.php:1344 server_privileges.php:1568 server_privileges.php:1579
+#: server_privileges.php:1889 server_privileges.php:1894
+#: server_privileges.php:2187 sql.php:132 sql.php:194 tbl_printview.php:229
#: tbl_structure.php:350 tbl_tracking.php:337 tbl_tracking.php:342
msgid "No"
msgstr "Йўқ"
@@ -179,9 +179,9 @@ msgstr "Йўқ"
#: libraries/mult_submits.inc.php:101 libraries/mult_submits.inc.php:106
#: libraries/mult_submits.inc.php:111 libraries/mult_submits.inc.php:262
#: libraries/mult_submits.inc.php:273 pdf_schema.php:1344
-#: server_databases.php:64 server_privileges.php:1526
-#: server_privileges.php:1540 server_privileges.php:1850
-#: server_privileges.php:1853 server_privileges.php:2148 sql.php:193
+#: server_databases.php:64 server_privileges.php:1565
+#: server_privileges.php:1579 server_privileges.php:1889
+#: server_privileges.php:1892 server_privileges.php:2187 sql.php:193
#: tbl_printview.php:229 tbl_structure.php:40 tbl_structure.php:350
#: tbl_tracking.php:335 tbl_tracking.php:340
msgid "Yes"
@@ -278,7 +278,7 @@ msgstr "Нусха олинган маълумотлар базасига ўти
msgid "BLOB Repository"
msgstr "BLOB омбори"
-#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1350
+#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1352
#: libraries/server_links.inc.php:49 server_processlist.php:59
#: tbl_tracking.php:596 test/theme.php:101
msgid "Status"
@@ -341,8 +341,8 @@ msgstr "PDF-саҳифаларни таҳрирлаш"
#: db_printview.php:104 db_tracking.php:72 db_tracking.php:157
#: libraries/db_structure.lib.php:46 libraries/export/xml.php:328
-#: libraries/header.inc.php:126 pdf_pages.php:424 server_privileges.php:1626
-#: server_privileges.php:1682 server_privileges.php:1946
+#: libraries/header.inc.php:126 pdf_pages.php:424 server_privileges.php:1665
+#: server_privileges.php:1721 server_privileges.php:1985
#: server_synchronize.php:423 server_synchronize.php:866 tbl_tracking.php:592
#: test/theme.php:75
msgid "Table"
@@ -443,7 +443,7 @@ msgstr "Ўчириш"
#: db_qbe.php:370 db_qbe.php:451 db_qbe.php:522 db_qbe.php:553
#: libraries/display_import.lib.php:166 libraries/tbl_properties.inc.php:779
-#: server_privileges.php:258 tbl_change.php:1031 tbl_indexes.php:250
+#: server_privileges.php:297 tbl_change.php:1031 tbl_indexes.php:250
#: tbl_select.php:288
msgid "Or"
msgstr "Ёки"
@@ -477,7 +477,7 @@ msgstr "Жадвалларни ишлатиш"
msgid "SQL query on database %s:"
msgstr "\"%s\" маълумотлар базасига SQL-сўров: "
-#: db_qbe.php:934 libraries/common.lib.php:1223
+#: db_qbe.php:934 libraries/common.lib.php:1225
msgid "Submit Query"
msgstr "сўровни бажариш"
@@ -516,7 +516,7 @@ msgstr "\"%s\" жадвалида ўхшашликлар сони \"%s\"
#: db_search.php:267 db_structure.php:77 db_structure.php:78
#: db_structure.php:90 db_structure.php:92 db_structure.php:103
-#: db_structure.php:105 libraries/common.lib.php:2824
+#: db_structure.php:105 libraries/common.lib.php:2833
#: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50
#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:467
msgid "Browse"
@@ -563,26 +563,26 @@ msgstr "Қуйидаги майдон(лар)да қидириш: "
#: db_structure.php:81 db_structure.php:82 db_structure.php:94
#: db_structure.php:95 db_structure.php:107 db_structure.php:108
-#: libraries/common.lib.php:2823 libraries/sql_query_form.lib.php:334
+#: libraries/common.lib.php:2832 libraries/sql_query_form.lib.php:334
#: libraries/sql_query_form.lib.php:337 libraries/tbl_links.inc.php:76
msgid "Insert"
msgstr "Қўйиш"
#: db_structure.php:83 db_structure.php:96 db_structure.php:109
-#: libraries/common.lib.php:2820 libraries/common.lib.php:2827
+#: libraries/common.lib.php:2829 libraries/common.lib.php:2836
#: libraries/db_links.inc.php:63 libraries/export/htmlword.php:23
#: libraries/export/latex.php:33 libraries/export/latex.php:337
#: libraries/export/odt.php:32 libraries/export/sql.php:60
#: libraries/export/texytext.php:23 libraries/import.lib.php:1104
#: libraries/tbl_links.inc.php:56 pmd_general.php:134
-#: server_privileges.php:554 server_replication.php:315 tbl_tracking.php:269
+#: server_privileges.php:593 server_replication.php:315 tbl_tracking.php:269
msgid "Structure"
msgstr "Тузилиши"
#: db_structure.php:84 db_structure.php:85 db_structure.php:97
#: db_structure.php:98 db_structure.php:110 db_structure.php:111
#: db_structure.php:545 db_structure.php:546 db_tracking.php:91
-#: libraries/Index.class.php:483 libraries/common.lib.php:1654
+#: libraries/Index.class.php:483 libraries/common.lib.php:1656
#: libraries/db_links.inc.php:100 libraries/mult_submits.inc.php:36
#: libraries/mult_submits.inc.php:73 libraries/tbl_links.inc.php:127
#: server_databases.php:352 tbl_structure.php:27 tbl_structure.php:151
@@ -592,7 +592,7 @@ msgstr "Ўчириш"
#: db_structure.php:86 db_structure.php:87 db_structure.php:99
#: db_structure.php:100 db_structure.php:112 db_structure.php:113
-#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1653
+#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1655
#: libraries/mult_submits.inc.php:39 libraries/tbl_links.inc.php:105
msgid "Empty"
msgstr "Тозалаш"
@@ -636,7 +636,7 @@ msgstr "Намойиш"
#: db_structure.php:485 libraries/db_structure.lib.php:49
#: libraries/server_links.inc.php:70 server_replication.php:33
-#: server_replication.php:164 server_status.php:258
+#: server_replication.php:164 server_status.php:369
msgid "Replication"
msgstr "Репликация (захира нусха кўчириш)"
@@ -652,20 +652,20 @@ msgstr "\"%s\" - MySQL серверидаги андозавий маълумо
#: db_structure.php:524 db_structure.php:541 db_structure.php:542
#: libraries/display_tbl.lib.php:2081 libraries/display_tbl.lib.php:2086
#: libraries/mult_submits.inc.php:16 server_databases.php:346
-#: server_databases.php:351 server_privileges.php:1557 tbl_structure.php:455
+#: server_databases.php:351 server_privileges.php:1596 tbl_structure.php:455
#: tbl_structure.php:464
msgid "With selected:"
msgstr "Белгиланганларни: "
#: db_structure.php:527 libraries/display_tbl.lib.php:2076
-#: server_databases.php:348 server_privileges.php:530
-#: server_privileges.php:1560 tbl_structure.php:458
+#: server_databases.php:348 server_privileges.php:569
+#: server_privileges.php:1599 tbl_structure.php:458
msgid "Check All"
msgstr "Барчасини белгилаш"
#: db_structure.php:531 libraries/display_tbl.lib.php:2077
#: libraries/replication_gui.lib.php:33 server_databases.php:350
-#: server_privileges.php:533 server_privileges.php:1564 tbl_structure.php:462
+#: server_privileges.php:572 server_privileges.php:1603 tbl_structure.php:462
msgid "Uncheck All"
msgstr "Белгилашни бекор қилиш"
@@ -703,7 +703,7 @@ msgstr "Жадвал таҳлили"
#: libraries/display_export.lib.php:83 libraries/display_tbl.lib.php:2094
#: libraries/display_tbl.lib.php:2225 libraries/mult_submits.inc.php:62
#: libraries/server_links.inc.php:84 libraries/tbl_links.inc.php:82
-#: pmd_pdf.php:84 pmd_pdf.php:109 server_privileges.php:1341
+#: pmd_pdf.php:84 pmd_pdf.php:109 server_privileges.php:1380
#: setup/frames/menu.inc.php:22 tbl_row_action.php:59
msgid "Export"
msgstr "Экспорт"
@@ -721,8 +721,8 @@ msgstr "Кузатилган жадваллар"
#: libraries/export/sql.php:342 libraries/export/texytext.php:84
#: libraries/export/xml.php:255 libraries/header.inc.php:106
#: libraries/header_printview.inc.php:58 server_databases.php:169
-#: server_privileges.php:1621 server_privileges.php:1682
-#: server_privileges.php:1940 server_processlist.php:56
+#: server_privileges.php:1660 server_privileges.php:1721
+#: server_privileges.php:1979 server_processlist.php:56
#: server_synchronize.php:1179 server_synchronize.php:1183
#: tbl_tracking.php:591 test/theme.php:65
msgid "Database"
@@ -742,8 +742,8 @@ msgstr "Янгиланди"
#: db_tracking.php:77 libraries/Index.class.php:440
#: libraries/db_structure.lib.php:53 server_databases.php:203
-#: server_privileges.php:1503 server_privileges.php:1686
-#: server_privileges.php:2034 tbl_structure.php:187
+#: server_privileges.php:1542 server_privileges.php:1725
+#: server_privileges.php:2073 tbl_structure.php:187
msgid "Action"
msgstr "Амал"
@@ -952,11 +952,11 @@ msgstr "Хост номи бўш!"
msgid "The user name is empty!"
msgstr "Фойдаланувчи номи белгиланмаган!"
-#: js/messages.php:44 server_privileges.php:1197 user_password.php:70
+#: js/messages.php:44 server_privileges.php:1236 user_password.php:70
msgid "The password is empty!"
msgstr "Парол белгиланмаган!"
-#: js/messages.php:45 server_privileges.php:1195 user_password.php:73
+#: js/messages.php:45 server_privileges.php:1234 user_password.php:73
msgid "The passwords aren't the same!"
msgstr "Киритилган пароллар бир хил эмас!"
@@ -1035,8 +1035,8 @@ msgid "Prev"
msgstr "Орқага"
#. l10n: Display text for next month link in calendar
-#: js/messages.php:77 libraries/common.lib.php:2344
-#: libraries/common.lib.php:2347 libraries/display_tbl.lib.php:338
+#: js/messages.php:77 libraries/common.lib.php:2353
+#: libraries/common.lib.php:2356 libraries/display_tbl.lib.php:338
#: server_binlog.php:205 server_binlog.php:207 tbl_printview.php:424
#: tbl_structure.php:801
msgid "Next"
@@ -1112,27 +1112,27 @@ msgid "December"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:97 libraries/common.lib.php:1555
+#: js/messages.php:97 libraries/common.lib.php:1557
msgid "Jan"
msgstr "Янв"
#. l10n: Short month name
-#: js/messages.php:99 libraries/common.lib.php:1557
+#: js/messages.php:99 libraries/common.lib.php:1559
msgid "Feb"
msgstr "Фев"
#. l10n: Short month name
-#: js/messages.php:101 libraries/common.lib.php:1559
+#: js/messages.php:101 libraries/common.lib.php:1561
msgid "Mar"
msgstr "Мар"
#. l10n: Short month name
-#: js/messages.php:103 libraries/common.lib.php:1561
+#: js/messages.php:103 libraries/common.lib.php:1563
msgid "Apr"
msgstr "Апр"
#. l10n: Short month name
-#: js/messages.php:105 libraries/common.lib.php:1563
+#: js/messages.php:105 libraries/common.lib.php:1565
#, fuzzy
#| msgid "May"
msgctxt "Short month name"
@@ -1140,37 +1140,37 @@ msgid "May"
msgstr "Май"
#. l10n: Short month name
-#: js/messages.php:107 libraries/common.lib.php:1565
+#: js/messages.php:107 libraries/common.lib.php:1567
msgid "Jun"
msgstr "Июн"
#. l10n: Short month name
-#: js/messages.php:109 libraries/common.lib.php:1567
+#: js/messages.php:109 libraries/common.lib.php:1569
msgid "Jul"
msgstr "Июл"
#. l10n: Short month name
-#: js/messages.php:111 libraries/common.lib.php:1569
+#: js/messages.php:111 libraries/common.lib.php:1571
msgid "Aug"
msgstr "Авг"
#. l10n: Short month name
-#: js/messages.php:113 libraries/common.lib.php:1571
+#: js/messages.php:113 libraries/common.lib.php:1573
msgid "Sep"
msgstr "Сен"
#. l10n: Short month name
-#: js/messages.php:115 libraries/common.lib.php:1573
+#: js/messages.php:115 libraries/common.lib.php:1575
msgid "Oct"
msgstr "Окт"
#. l10n: Short month name
-#: js/messages.php:117 libraries/common.lib.php:1575
+#: js/messages.php:117 libraries/common.lib.php:1577
msgid "Nov"
msgstr "Ноя"
#. l10n: Short month name
-#: js/messages.php:119 libraries/common.lib.php:1577
+#: js/messages.php:119 libraries/common.lib.php:1579
msgid "Dec"
msgstr "Дек"
@@ -1211,37 +1211,37 @@ msgid "Saturday"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:132 libraries/common.lib.php:1580
+#: js/messages.php:132 libraries/common.lib.php:1582
msgid "Sun"
msgstr "Якш"
#. l10n: Short week day name
-#: js/messages.php:134 libraries/common.lib.php:1582
+#: js/messages.php:134 libraries/common.lib.php:1584
msgid "Mon"
msgstr "Душ"
#. l10n: Short week day name
-#: js/messages.php:136 libraries/common.lib.php:1584
+#: js/messages.php:136 libraries/common.lib.php:1586
msgid "Tue"
msgstr "Сеш"
#. l10n: Short week day name
-#: js/messages.php:138 libraries/common.lib.php:1586
+#: js/messages.php:138 libraries/common.lib.php:1588
msgid "Wed"
msgstr "Чор"
#. l10n: Short week day name
-#: js/messages.php:140 libraries/common.lib.php:1588
+#: js/messages.php:140 libraries/common.lib.php:1590
msgid "Thu"
msgstr "Пай"
#. l10n: Short week day name
-#: js/messages.php:142 libraries/common.lib.php:1590
+#: js/messages.php:142 libraries/common.lib.php:1592
msgid "Fri"
msgstr "Жум"
#. l10n: Short week day name
-#: js/messages.php:144 libraries/common.lib.php:1592
+#: js/messages.php:144 libraries/common.lib.php:1594
msgid "Sat"
msgstr "Шан"
@@ -1392,7 +1392,7 @@ msgid "Comment"
msgstr "Изоҳ"
#: libraries/Index.class.php:466 libraries/common.lib.php:616
-#: libraries/common.lib.php:1199 libraries/display_tbl.lib.php:1117
+#: libraries/common.lib.php:1201 libraries/display_tbl.lib.php:1117
#: libraries/import.lib.php:1087 libraries/import.lib.php:1111
#: pdf_pages.php:285 setup/frames/index.inc.php:124
#: setup/lib/messages.inc.php:352 tbl_row_action.php:69
@@ -1416,7 +1416,7 @@ msgid ""
msgstr " %1$s ва %2$s индекслари бир хил, улардан бирини ўчириш мумкин."
#: libraries/List_Database.class.php:431 libraries/server_links.inc.php:41
-#: server_databases.php:88 server_privileges.php:1621
+#: server_databases.php:88 server_privileges.php:1660
#: setup/lib/messages.inc.php:110 test/theme.php:93
msgid "Databases"
msgstr "Маълумотлар базалари"
@@ -1759,7 +1759,7 @@ msgid "Documentation"
msgstr "Документация"
#: libraries/common.lib.php:595 libraries/header_printview.inc.php:61
-#: server_processlist.php:60 server_status.php:247
+#: server_processlist.php:60 server_status.php:358
msgid "SQL query"
msgstr "SQL сўрови"
@@ -1775,132 +1775,132 @@ msgstr "Сўров таҳлили"
msgid "Skip Explain SQL"
msgstr "Таҳлил керак эмас"
-#: libraries/common.lib.php:1212
+#: libraries/common.lib.php:1214
msgid "Without PHP Code"
msgstr "PHP-код олиб ташлаш"
-#: libraries/common.lib.php:1215 setup/lib/messages.inc.php:355
+#: libraries/common.lib.php:1217 setup/lib/messages.inc.php:355
msgid "Create PHP Code"
msgstr "PHP-код"
-#: libraries/common.lib.php:1233 server_status.php:341
+#: libraries/common.lib.php:1235 server_status.php:452
#: setup/lib/messages.inc.php:354
msgid "Refresh"
msgstr "Янгилаш"
-#: libraries/common.lib.php:1242
+#: libraries/common.lib.php:1244
msgid "Skip Validate SQL"
msgstr "SQL синтаксиси текширувини олиб ташлаш"
-#: libraries/common.lib.php:1245 setup/lib/messages.inc.php:356 sql.php:518
+#: libraries/common.lib.php:1247 setup/lib/messages.inc.php:356 sql.php:518
msgid "Validate SQL"
msgstr "SQL тўғрилигини текшириш"
-#: libraries/common.lib.php:1276
+#: libraries/common.lib.php:1278
msgid "Inline edit of this query"
msgstr ""
-#: libraries/common.lib.php:1278
+#: libraries/common.lib.php:1280
#, fuzzy
#| msgid "Engines"
msgid "Inline"
msgstr "Жадвал турлари"
-#: libraries/common.lib.php:1332 libraries/common.lib.php:1347
+#: libraries/common.lib.php:1334 libraries/common.lib.php:1349
msgid "Profiling"
msgstr "Профиллаштириш"
-#: libraries/common.lib.php:1351 libraries/tbl_triggers.lib.php:28
+#: libraries/common.lib.php:1353 libraries/tbl_triggers.lib.php:28
#: server_processlist.php:58
msgid "Time"
msgstr "Вақт"
#. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "B"
msgstr "Байт"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "KiB"
msgstr "КБ"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "MiB"
msgstr "МБ"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "GiB"
msgstr "ГБ"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "TiB"
msgstr "ТБ"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "PiB"
msgstr "ПБ"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "EiB"
msgstr "ЭБ"
#. l10n: Thousands separator
-#: libraries/common.lib.php:1417
+#: libraries/common.lib.php:1419
msgid ","
msgstr " "
#. l10n: Decimal separator
-#: libraries/common.lib.php:1419
+#: libraries/common.lib.php:1421
msgid "."
msgstr ","
#. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string
-#: libraries/common.lib.php:1596
+#: libraries/common.lib.php:1598
#: libraries/transformations/text_plain__dateformat.inc.php:34
msgid "%B %d, %Y at %I:%M %p"
msgstr "%d %B %Y й., %H:%M"
-#: libraries/common.lib.php:1898
+#: libraries/common.lib.php:1907
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "\"%s\" кун, \"%s\" соат, \"%s\" минут ва \"%s\" секунд"
-#: libraries/common.lib.php:2313 libraries/common.lib.php:2316
-#: libraries/display_tbl.lib.php:290 server_status.php:608
+#: libraries/common.lib.php:2322 libraries/common.lib.php:2325
+#: libraries/display_tbl.lib.php:290 server_status.php:719
msgid "Begin"
msgstr "Боши"
-#: libraries/common.lib.php:2314 libraries/common.lib.php:2317
+#: libraries/common.lib.php:2323 libraries/common.lib.php:2326
#: libraries/display_tbl.lib.php:291 server_binlog.php:168
#: server_binlog.php:170
msgid "Previous"
msgstr "Орқага"
-#: libraries/common.lib.php:2345 libraries/common.lib.php:2348
+#: libraries/common.lib.php:2354 libraries/common.lib.php:2357
#: libraries/display_tbl.lib.php:353
msgid "End"
msgstr "Охири"
-#: libraries/common.lib.php:2421
+#: libraries/common.lib.php:2430
#, php-format
msgid "Jump to database "%s"."
msgstr " \"%s\" маълумотлар базасига ўтиш"
-#: libraries/common.lib.php:2441
+#: libraries/common.lib.php:2450
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr ""
" \"%s\" параметрининг иши маълум хатоликка олиб келиши мумкин, батафсил "
"маълумот учун қаранг \"%s\""
-#: libraries/common.lib.php:2821 libraries/common.lib.php:2828
+#: libraries/common.lib.php:2830 libraries/common.lib.php:2837
#: libraries/db_links.inc.php:68 libraries/export/sql.php:25
#: libraries/import/sql.php:18 libraries/server_links.inc.php:45
#: libraries/tbl_links.inc.php:60 querywindow.php:99 test/theme.php:97
msgid "SQL"
msgstr "SQL"
-#: libraries/common.lib.php:2830 libraries/db_links.inc.php:104
+#: libraries/common.lib.php:2839 libraries/db_links.inc.php:104
#: libraries/tbl_links.inc.php:95 libraries/tbl_links.inc.php:117
#: view_operations.php:89
msgid "Operations"
@@ -1956,8 +1956,8 @@ msgid "Import"
msgstr "Импорт"
#: libraries/db_links.inc.php:111 libraries/server_links.inc.php:66
-#: server_privileges.php:72 server_privileges.php:1683
-#: server_privileges.php:2032 test/theme.php:117
+#: server_privileges.php:111 server_privileges.php:1722
+#: server_privileges.php:2071 test/theme.php:117
msgid "Privileges"
msgstr "Привилегиялар"
@@ -2007,22 +2007,22 @@ msgid "Change password"
msgstr "Паролни ўзгартириш"
#: libraries/display_change_password.lib.php:35
-#: libraries/replication_gui.lib.php:345 server_privileges.php:768
+#: libraries/replication_gui.lib.php:345 server_privileges.php:807
msgid "No Password"
msgstr "Парол йўқ"
#: libraries/display_change_password.lib.php:41
#: libraries/replication_gui.lib.php:59 libraries/replication_gui.lib.php:60
#: libraries/replication_gui.lib.php:335 libraries/replication_gui.lib.php:339
-#: libraries/replication_gui.lib.php:349 server_privileges.php:757
-#: server_privileges.php:761 server_privileges.php:772
-#: server_privileges.php:1499 server_synchronize.php:1175
+#: libraries/replication_gui.lib.php:349 server_privileges.php:796
+#: server_privileges.php:800 server_privileges.php:811
+#: server_privileges.php:1538 server_synchronize.php:1175
msgid "Password"
msgstr "Парол"
#: libraries/display_change_password.lib.php:46
#: libraries/replication_gui.lib.php:353 libraries/replication_gui.lib.php:356
-#: server_privileges.php:776 server_privileges.php:779
+#: server_privileges.php:815 server_privileges.php:818
msgid "Re-type"
msgstr "Тасдиқлаш"
@@ -2037,12 +2037,12 @@ msgid "MySQL 4.0 compatible"
msgstr "MySQL 4.0 га мос"
#: libraries/display_change_password.lib.php:72
-#: libraries/replication_gui.lib.php:360 server_privileges.php:783
+#: libraries/replication_gui.lib.php:360 server_privileges.php:822
msgid "Generate Password"
msgstr "Парол ўрнатиш"
#: libraries/display_change_password.lib.php:75
-#: libraries/replication_gui.lib.php:363 server_privileges.php:786
+#: libraries/replication_gui.lib.php:363 server_privileges.php:825
msgid "Generate"
msgstr "Генерация қилиш"
@@ -2055,8 +2055,8 @@ msgstr "Янги маълумотлар базаси тузиш"
msgid "Create"
msgstr "Тузиш"
-#: libraries/display_create_database.lib.php:40 server_privileges.php:74
-#: server_privileges.php:1388 server_replication.php:35
+#: libraries/display_create_database.lib.php:40 server_privileges.php:113
+#: server_privileges.php:1427 server_replication.php:35
msgid "No Privileges"
msgstr "Привилегиялар йўқ"
@@ -2149,7 +2149,7 @@ msgstr "Сиқиш"
#: libraries/display_export.lib.php:240 libraries/display_import.lib.php:197
#: libraries/display_import.lib.php:210 libraries/display_tbl.lib.php:530
#: libraries/export/sql.php:868 libraries/tbl_properties.inc.php:575
-#: server_privileges.php:1836 server_processlist.php:75
+#: server_privileges.php:1875 server_processlist.php:75
msgid "None"
msgstr "Йўқ"
@@ -2483,7 +2483,7 @@ msgstr ""
msgid "Buffer Pool"
msgstr "Буфер пули"
-#: libraries/engines/innodb.lib.php:145 server_status.php:306
+#: libraries/engines/innodb.lib.php:145 server_status.php:417
msgid "InnoDB Status"
msgstr "InnoDB аҳволи"
@@ -2492,8 +2492,8 @@ msgid "Buffer Pool Usage"
msgstr "Ишлатилиш"
#: libraries/engines/innodb.lib.php:194 server_databases.php:137
-#: server_databases.php:305 server_status.php:414 server_status.php:475
-#: server_status.php:496 tbl_printview.php:351 tbl_structure.php:696
+#: server_databases.php:305 server_status.php:525 server_status.php:586
+#: server_status.php:607 tbl_printview.php:351 tbl_structure.php:696
msgid "Total"
msgstr "Жами"
@@ -2855,7 +2855,7 @@ msgstr "Microsoft Word 2000"
#: libraries/export/latex.php:201 libraries/export/odt.php:48
#: libraries/export/sql.php:106 libraries/export/sql.php:868
#: libraries/export/texytext.php:27 server_databases.php:127
-#: server_privileges.php:537 server_replication.php:316 tbl_printview.php:317
+#: server_privileges.php:576 server_replication.php:316 tbl_printview.php:317
#: tbl_structure.php:665
msgid "Data"
msgstr "Маълумотлар"
@@ -2905,9 +2905,9 @@ msgstr "MIME тури"
#: libraries/export/xml.php:102 libraries/header_printview.inc.php:57
#: libraries/replication_gui.lib.php:63 libraries/replication_gui.lib.php:174
#: libraries/replication_gui.lib.php:269 libraries/replication_gui.lib.php:272
-#: libraries/replication_gui.lib.php:329 server_privileges.php:692
-#: server_privileges.php:695 server_privileges.php:751
-#: server_privileges.php:1498 server_privileges.php:2030
+#: libraries/replication_gui.lib.php:329 server_privileges.php:731
+#: server_privileges.php:734 server_privileges.php:790
+#: server_privileges.php:1537 server_privileges.php:2069
#: server_processlist.php:55 server_synchronize.php:1159
msgid "Host"
msgstr "Хост"
@@ -3267,876 +3267,6 @@ msgstr "Йўқ"
msgid "Convert to Kana"
msgstr ""
-#. l10n: Text direction, use either ltr or rtl
-#: libraries/messages.inc.php:19
-msgid "ltr"
-msgstr "ltr"
-
-#: libraries/messages.inc.php:21
-msgid "Content of table __TABLE__"
-msgstr " __TABLE__ жадвалининг мундарижаси"
-
-#: libraries/messages.inc.php:22
-msgid "(continued)"
-msgstr "(давоми)"
-
-#: libraries/messages.inc.php:23
-msgid "Structure of table __TABLE__"
-msgstr " __TABLE__ жадвалининг тузилиши"
-
-#: libraries/messages.inc.php:25 server_privileges.php:227
-msgid "Includes all privileges except GRANT."
-msgstr "GRANT дан ташқари барча привилегияларни ўз ичига олади"
-
-#: libraries/messages.inc.php:26 server_privileges.php:153
-#: server_privileges.php:476
-msgid "Allows altering the structure of existing tables."
-msgstr "Мавжуд жадвалларнинг тузилишини ўзгартиришга рухсат беради"
-
-#: libraries/messages.inc.php:27 server_privileges.php:169
-#: server_privileges.php:482
-msgid "Allows altering and dropping stored routines."
-msgstr "Сақланадиган муолажаларни ўзгартириш ва ўчиришга рухсат беради"
-
-#: libraries/messages.inc.php:28 server_privileges.php:145
-#: server_privileges.php:475
-msgid "Allows creating new databases and tables."
-msgstr "Янги маълумотлар базалари ва жадваллар тузишга рухсат беради"
-
-#: libraries/messages.inc.php:29 server_privileges.php:168
-#: server_privileges.php:481
-msgid "Allows creating stored routines."
-msgstr "Сақланадиган муолажалар тузишга рухсат беради"
-
-#: libraries/messages.inc.php:30 server_privileges.php:475
-msgid "Allows creating new tables."
-msgstr "Янги жадваллар тузишга рухсат беради"
-
-#: libraries/messages.inc.php:31 server_privileges.php:156
-#: server_privileges.php:479
-msgid "Allows creating temporary tables."
-msgstr "Вақтинчалик жадваллар тузишга рухсат беради"
-
-#: libraries/messages.inc.php:32 server_privileges.php:170
-#: server_privileges.php:515
-msgid "Allows creating, dropping and renaming user accounts."
-msgstr "Фойдаланувчилар ҳисобини қўшиш, ўчириш ва ўзгартиришга рухсат беради"
-
-#: libraries/messages.inc.php:33 server_privileges.php:160
-#: server_privileges.php:164 server_privileges.php:487
-#: server_privileges.php:491
-msgid "Allows creating new views."
-msgstr "Янги намойишлар тузиш(CREATE VIEW)га рухсат беради"
-
-#: libraries/messages.inc.php:34 server_privileges.php:144
-#: server_privileges.php:467
-msgid "Allows deleting data."
-msgstr "Маълумотларни ўчиришга рухсат беради"
-
-#: libraries/messages.inc.php:35 server_privileges.php:146
-#: server_privileges.php:478
-msgid "Allows dropping databases and tables."
-msgstr "Маълумотлар базаларини ва жадвалларни ўчиришга рухсат беради"
-
-#: libraries/messages.inc.php:36 server_privileges.php:478
-msgid "Allows dropping tables."
-msgstr "Жадвалларни ўчиришга рухъсат беради"
-
-#: libraries/messages.inc.php:37 server_privileges.php:161
-#: server_privileges.php:495
-msgid "Allows to set up events for the event scheduler"
-msgstr "Кечиктирилган ҳодисаларни созлашга рухсат беради"
-
-#: libraries/messages.inc.php:38 server_privileges.php:171
-#: server_privileges.php:483
-msgid "Allows executing stored routines."
-msgstr "Сақланадиган муолажаларни бажаришга рухсат беради"
-
-#: libraries/messages.inc.php:39 server_privileges.php:150
-#: server_privileges.php:470
-msgid "Allows importing data from and exporting data into files."
-msgstr "Маълумотларни файлдан импорт ва файлга экспорт қилишга рухсат беради"
-
-#: libraries/messages.inc.php:40 server_privileges.php:501
-msgid ""
-"Allows adding users and privileges without reloading the privilege tables."
-msgstr ""
-"Фойдаланувчиларни қўшиш ва привилегиялар жадвалини қайта юкламасдан "
-"привилегиялар қўшишга рухсат беради"
-
-#: libraries/messages.inc.php:41 server_privileges.php:152
-#: server_privileges.php:477
-msgid "Allows creating and dropping indexes."
-msgstr "Индекслар қўшиш ва уларни ўчиришга рухсат беради"
-
-#: libraries/messages.inc.php:42 server_privileges.php:142
-#: server_privileges.php:403 server_privileges.php:465
-msgid "Allows inserting and replacing data."
-msgstr "Маълумот қўйиш ва ўзгартиришга рухсат беради"
-
-#: libraries/messages.inc.php:43 server_privileges.php:157
-#: server_privileges.php:510
-msgid "Allows locking tables for the current thread."
-msgstr "Жорий оқим учун жадвални блокировку қилишга рухсат беради"
-
-#: libraries/messages.inc.php:44 server_privileges.php:607
-#: server_privileges.php:609
-msgid "Limits the number of new connections the user may open per hour."
-msgstr ""
-"Фойдаланувчи бир соат давомида ўрнатиши мумкин бўлган янги уланишлар сони"
-
-#: libraries/messages.inc.php:45 server_privileges.php:595
-#: server_privileges.php:597
-msgid "Limits the number of queries the user may send to the server per hour."
-msgstr "Фойдаланувчи бир соат давомида юбориши мумкин бўлган сўровлар сони"
-
-#: libraries/messages.inc.php:46 server_privileges.php:601
-#: server_privileges.php:603
-msgid ""
-"Limits the number of commands that change any table or database the user may "
-"execute per hour."
-msgstr ""
-"Фойдаланувчи бир соат давомида бажариши мумкин бўлган бирон-бир жадвал ёки "
-"маълумотлар базасини ўзгартирадиган буйруқлар сони"
-
-#: libraries/messages.inc.php:47 server_privileges.php:613
-#: server_privileges.php:615
-msgid "Limits the number of simultaneous connections the user may have."
-msgstr ""
-"Бир фойдаланувчи томонидан бир вақтнинг ўзида ўрнатиши мумкин бўлган "
-"уланишлар сони"
-
-#: libraries/messages.inc.php:48 server_privileges.php:149
-#: server_privileges.php:505
-msgid "Allows viewing processes of all users"
-msgstr "Барча фойдаланувчиларнинг жараёнларини кўришга рухсат беради"
-
-#: libraries/messages.inc.php:49 server_privileges.php:151
-#: server_privileges.php:409 server_privileges.php:511
-msgid "Has no effect in this MySQL version."
-msgstr "MySQL-сервернинг ушбу версияда бундай хусусият мавжуд эмас!"
-
-#: libraries/messages.inc.php:50 server_privileges.php:147
-#: server_privileges.php:506
-msgid "Allows reloading server settings and flushing the server's caches."
-msgstr ""
-"Сервер созланишларини қайта юклашга ва унинг кешларини тозалашга рухсат "
-"беради"
-
-#: libraries/messages.inc.php:51 server_privileges.php:159
-#: server_privileges.php:513
-msgid "Allows the user to ask where the slaves / masters are."
-msgstr ""
-"Бош ва тобе серверларнинг жойлашиши ҳақидаги маълумотни талаб қилишга рухсат "
-"беради"
-
-#: libraries/messages.inc.php:52 server_privileges.php:158
-#: server_privileges.php:514
-msgid "Needed for the replication slaves."
-msgstr "Репликация (захира нусха кўчириш) вақтида тобе серверлар учун керак"
-
-#: libraries/messages.inc.php:53 server_privileges.php:141
-#: server_privileges.php:400 server_privileges.php:464
-msgid "Allows reading data."
-msgstr "Маълумотларни чақиришга рухсат беради"
-
-#: libraries/messages.inc.php:54 server_privileges.php:154
-#: server_privileges.php:508
-msgid "Gives access to the complete list of databases."
-msgstr "Маълумотлар базаларининг тўлиқ рўйхатига рухсат беради"
-
-#: libraries/messages.inc.php:55 server_privileges.php:165
-#: server_privileges.php:167 server_privileges.php:480
-msgid "Allows performing SHOW CREATE VIEW queries."
-msgstr "Намойиш тузадиган сўров(SHOW CREATE VIEW)ни бажаришга рухсат беради"
-
-#: libraries/messages.inc.php:56 server_privileges.php:148
-#: server_privileges.php:507
-msgid "Allows shutting down the server."
-msgstr "Сервер ишини якунлашга рухсат беради"
-
-#: libraries/messages.inc.php:57 server_privileges.php:155
-#: server_privileges.php:504
-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/messages.inc.php:58 server_privileges.php:162
-#: server_privileges.php:496
-msgid "Allows creating and dropping triggers"
-msgstr ""
-"Триггерлар (маълум шартлар бажарилганда автоматик ишга тушадиган жараёнлар) "
-"тузиш ва уларни ўчиришга рухсат беради"
-
-#: libraries/messages.inc.php:59 server_privileges.php:143
-#: server_privileges.php:406 server_privileges.php:466
-msgid "Allows changing data."
-msgstr "Маълумотларни ўзгартиришга рухсат беради"
-
-#: libraries/messages.inc.php:60 server_privileges.php:221
-msgid "No privileges."
-msgstr "Привилегиялар йўқ"
-
-#: libraries/messages.inc.php:62
-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 ""
-"Бинар журнали кешини ишлатиб, \"binlog_cache_size\" қийматидан ошиб, ўз "
-"ичига олган SQL-жумлалари вақтинчалик файлга сақланган транзакциялар сони."
-
-#: libraries/messages.inc.php:63
-msgid "The number of transactions that used the temporary binary log cache."
-msgstr "Бинар журнал кешини ишлатган транзакциялар сони."
-
-#: libraries/messages.inc.php:64
-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 "
-"to increase the tmp_table_size value to cause temporary tables to be memory-"
-"based instead of disk-based."
-msgstr ""
-"SQL-жумлаларини бажараётган вақтда сервер томонидан автоматик тарзда "
-"тузилган ва дискда сақланган вақтинчалик жадваллар сони. Агар ушбу қиймат "
-"катта бўлса, вақтинчалик жадваллар қаттиқ дискда эмас, балки хотирада "
-"сақланишини таъминлаш мақсадида tmp_table_size ўзгарувчисининг қийматини "
-"ошириш тавсия этилади."
-
-#: libraries/messages.inc.php:65
-msgid "How many temporary files mysqld has created."
-msgstr "MySQL сервери (mysqld) томонидан тузилган вақтинчалик файллар сони."
-
-#: libraries/messages.inc.php:66
-msgid ""
-"The number of in-memory temporary tables created automatically by the server "
-"while executing statements."
-msgstr ""
-"Сервер томонидан SQL-жумлалари бажарилаётган вақтда хотирада автоматик "
-"тузилган вақтинчалик жадваллар сони."
-
-#: libraries/messages.inc.php:67
-msgid ""
-"The number of rows written with INSERT DELAYED for which some error occurred "
-"(probably duplicate key)."
-msgstr ""
-"\"INSERT DELAYED\" сўровларини қайта ишлаш жараёнида юз берган хатолар "
-"(масалан, калитлар такрорланиши оқибатида) сони."
-
-#: libraries/messages.inc.php:68
-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/messages.inc.php:69
-msgid "The number of INSERT DELAYED rows written."
-msgstr ""
-"Маълумотларни кечиктириб қўйиш (\"INSERT DELAYED\") режимида ёзилган "
-"қаторлар сони."
-
-#: libraries/messages.inc.php:70
-msgid "The number of executed FLUSH statements."
-msgstr "Бажарилган \"FLUSH\" буйруқлар сони."
-
-#: libraries/messages.inc.php:71
-msgid "The number of internal COMMIT statements."
-msgstr "Ички \"COMMIT\" буйруқлари сони."
-
-#: libraries/messages.inc.php:72
-msgid "The number of times a row was deleted from a table."
-msgstr "Жадвалдал ёзувларни ўчириш бўйича сшровлар сони."
-
-#: libraries/messages.inc.php:73
-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 ""
-"MySQL сервер маълум ном билан белгиланган жадвал мавжудлиги ҳақида сўров "
-"бериши мумкин. Бу жараён топиш деб номланади. Handler_discover - топилган "
-"жадваллар сони."
-
-#: libraries/messages.inc.php:74
-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/messages.inc.php:75
-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/messages.inc.php:76
-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/messages.inc.php:77
-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 ""
-"Индексни камайиб бориш тартибида сортировка қилинганда олдинги ёзувни ўқишга "
-"бўлган сўровлар сони. Одатда оптималлаштириш учун қўлланилади: ORDER BY ... "
-"DESC."
-
-#: libraries/messages.inc.php:78
-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 "
-"probably have a lot of queries that require MySQL to scan whole tables or "
-"you have joins that don't use keys properly."
-msgstr ""
-"Сатрнинг жойлашувига асосланган ўқиш учун сўровлар сони. Ўзгарувчининг катта "
-"қийматига қуйидагилар сабаб бўлиши мумкин: натижани сортировкасидан "
-"фойдаланадиган сўровларнинг тез-тез бажарилиши; жадвални тўлалигича кўриб "
-"чиқишни талаб этадиган сўровларнинг тез-ез бажарилиши; индекслардан нотўғри "
-"фойдаланадиган бирлашмаларнинг мавжудлиги."
-
-#: libraries/messages.inc.php:79
-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 "
-"tables are not properly indexed or that your queries are not written to take "
-"advantage of the indexes you have."
-msgstr ""
-"Маълумотлар файлидан кейинги қаторни ўқишга бўлган сўровлар сони. Жадвални "
-"тез-тез кўриб чиқишда ушбу қиймат катта бўлади. Бу ҳол жадваллар нотўғри "
-"индексланганлигини ёки сўровлар индексларнинг афзалликларидан "
-"фойдаланмаётганлигини билдиради."
-
-#: libraries/messages.inc.php:80
-msgid "The number of internal ROLLBACK statements."
-msgstr "ROLLBACK ички буйруқлар сони."
-
-#: libraries/messages.inc.php:81
-msgid "The number of requests to update a row in a table."
-msgstr "Жадвалдаги ёзувларни янгилашга бўлган сўровлар сони."
-
-#: libraries/messages.inc.php:82
-msgid "The number of requests to insert a row in a table."
-msgstr "Жадвалга ёзув қўйишга бўлган сўровлар сони."
-
-#: libraries/messages.inc.php:83
-msgid "The number of pages containing data (dirty or clean)."
-msgstr "Маълумот мавжуд бўлган саҳифалар сони (\"кир\" ва \"тоза\")."
-
-#: libraries/messages.inc.php:84
-msgid "The number of pages currently dirty."
-msgstr "\"Кир\" саҳифаларнинг жорий сони."
-
-#: libraries/messages.inc.php:85
-msgid "The number of buffer pool pages that have been requested to be flushed."
-msgstr "Буфер пулидаги тозалаш жараёни (FLUSH) қўлланилган саҳифалар сони."
-
-#: libraries/messages.inc.php:86
-msgid "The number of free pages."
-msgstr "Бўш саҳифалар сони."
-
-#: libraries/messages.inc.php:87
-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 ""
-"InnoDB буфер пулидаги блокировка қилинган саҳифалар сони. Ушбу саҳифалар "
-"устидан ўқиш ёки ёзиш жараёни бажарилмоқда, ёки уларни бошқа сабабларга кўра "
-"тозалаш ёки ўчириш имконияти йўқ."
-
-#: libraries/messages.inc.php:88
-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 "
-"be calculated as Innodb_buffer_pool_pages_total - "
-"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data."
-msgstr ""
-"Административ жараёнларга ажратилганлиги сабабли банд бўлган саҳифалар сони. "
-"Ушбу ўзгарувчи қийматини қуйидаги формула ёрдамида ҳисоблаш мумкин: "
-"\"Innodb_buffer_pool_pages_total - Innodb_buffer_pool_pages_free - "
-"Innodb_buffer_pool_pages_data\"."
-
-#: libraries/messages.inc.php:89
-msgid "Total size of buffer pool, in pages."
-msgstr "Буфер пулининг умумий ҳажми (саҳифаларда)."
-
-#: libraries/messages.inc.php:90
-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 ""
-"InnoDB томонидан амалга оширилган \"тасодифий\" олдинга ўтиб кетган ўқишлар "
-"сони. Ушбу ҳол сўров жадвални тасодифий тартибда кўриб чиқаётганда рўй "
-"беради."
-
-#: libraries/messages.inc.php:91
-msgid ""
-"The number of sequential read-aheads InnoDB initiated. This happens when "
-"InnoDB does a sequential full table scan."
-msgstr ""
-"InnoDB томонидан амалга оширилган кетма-кет олдинга ўтиб кетган ўқишлар "
-"сони. Ушбу ҳол InnoDB жадвални тўлалигича кетма-кет кўриб чиқаётганда рўй "
-"беради"
-
-#: libraries/messages.inc.php:92
-msgid "The number of logical read requests InnoDB has done."
-msgstr ""
-"InnoDB томонидан амалга оширилган ўқишга бўлган кетма-кет сўровлар сони."
-
-#: libraries/messages.inc.php:93
-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/messages.inc.php:94
-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 "
-"available, it's necessary to wait for pages to be flushed first. This "
-"counter counts instances of these waits. If the buffer pool size was set "
-"properly, this value should be small."
-msgstr ""
-"Одатда, InnoDB буфер пулига ёзиш фон режимида амалга оширилади. Аммо, агар "
-"буфер пулида бўш саҳифалар бўлмаса, олдин уларнинг тозаланиши кутиш керак. "
-"Ушбу ҳисоблагич шундай кутишлар сонини билдиради. Агар буфер пулининг ҳажми "
-"тўғри белгиланган бўлса, унда кутишлар сони катта бўлмаслиги керак."
-
-#: libraries/messages.inc.php:95
-msgid "The number writes done to the InnoDB buffer pool."
-msgstr "InnoDB буфер пулига амалга оширилган ёзувлар сони."
-
-#: libraries/messages.inc.php:96
-msgid "The number of fsync() operations so far."
-msgstr "Жорий вақтда амалга оширилган \"fsync()\" операциялари сони."
-
-#: libraries/messages.inc.php:97
-msgid "The current number of pending fsync() operations."
-msgstr "Тугалланмаган \"fsync()\" операциялари сони."
-
-#: libraries/messages.inc.php:98
-msgid "The current number of pending reads."
-msgstr "Тугалланмаган ўқиш операциялари сони."
-
-#: libraries/messages.inc.php:99
-msgid "The current number of pending writes."
-msgstr "Тугалланмаган ёзиш операциялари сони."
-
-#: libraries/messages.inc.php:100
-msgid "The amount of data read so far, in bytes."
-msgstr "Жорий вақтда ўқилган маълумотлар йиғиндиси (байтларда)."
-
-#: libraries/messages.inc.php:101
-msgid "The total number of data reads."
-msgstr "Умумий маълумотларни ўқиш операциялари сони."
-
-#: libraries/messages.inc.php:102
-msgid "The total number of data writes."
-msgstr "Умумий маълумотларни ёзиш операциялари сони."
-
-#: libraries/messages.inc.php:103
-msgid "The amount of data written so far, in bytes."
-msgstr "Жорий вақтда ёзилган маълумотлар йиғиндиси (байтларда)."
-
-#: libraries/messages.inc.php:104
-msgid "The number of pages that have been written for doublewrite operations."
-msgstr "\"doublewrite\" операциялари учун ёзилган саҳифалар сони."
-
-#: libraries/messages.inc.php:105
-msgid "The number of doublewrite operations that have been performed."
-msgstr "Бажарилган \"doublewrite\" операциялари сони."
-
-#: libraries/messages.inc.php:106
-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/messages.inc.php:107
-msgid "The number of log write requests."
-msgstr "Журналга ёзишга бўлган сўровларсони."
-
-#: libraries/messages.inc.php:108
-msgid "The number of physical writes to the log file."
-msgstr "Журнал файлидаги жисмоний ёзувлар сони."
-
-#: libraries/messages.inc.php:109
-msgid "The number of fsync() writes done to the log file."
-msgstr "Журнал файлига \"fsync()\" ёрдамида амалга оширилган ёзувлар сони."
-
-#: libraries/messages.inc.php:110
-msgid "The number of pending log file fsyncs."
-msgstr "\"fsync()\" ёрдамида амалга оширилиши кутилаётган ёзувлар сони."
-
-#: libraries/messages.inc.php:111
-msgid "Pending log file writes."
-msgstr "Тугалланмаган журналга ёзиш сўровлари сони."
-
-#: libraries/messages.inc.php:112
-msgid "The number of bytes written to the log file."
-msgstr "Журнал файлига ёзилган маълумотлар ҳажми (байтларда)."
-
-#: libraries/messages.inc.php:113
-msgid "The number of pages created."
-msgstr "Тузилган саҳифалар сони."
-
-#: libraries/messages.inc.php:114
-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 ""
-"\"InnoDB\"га компиляция қилинадиган саҳифа ҳажми (асл қиймати - 16Кб). "
-"Кўпгина қийматлар саҳифаларда келтирилади, лекин саҳифа ҳажми билган ҳолда, "
-"уларни байтларга ўтказиш мумкин."
-
-#: libraries/messages.inc.php:115
-msgid "The number of pages read."
-msgstr "Ўқилган саҳифалар сони."
-
-#: libraries/messages.inc.php:116
-msgid "The number of pages written."
-msgstr "Ёзилган саҳифалар сони."
-
-#: libraries/messages.inc.php:117
-msgid "The number of row locks currently being waited for."
-msgstr "Ҳозирда кутилаётган қатор блокировкалари сони."
-
-#: libraries/messages.inc.php:118
-msgid "The average time to acquire a row lock, in milliseconds."
-msgstr "Қатор блокировкасини кутишнинг ўртача вақти (миллисекундларда)."
-
-#: libraries/messages.inc.php:119
-msgid "The total time spent in acquiring row locks, in milliseconds."
-msgstr "Қатор блокировкасини кутишнинг умумий вақти (миллисекундларда)."
-
-#: libraries/messages.inc.php:120
-msgid "The maximum time to acquire a row lock, in milliseconds."
-msgstr "Қатор блокировкасини кутишнинг максимал вақти (миллисекундларда)."
-
-#: libraries/messages.inc.php:121
-msgid "The number of times a row lock had to be waited for."
-msgstr "Умумий кутилаётган қатор блокировкалари сони."
-
-#: libraries/messages.inc.php:122
-msgid "The number of rows deleted from InnoDB tables."
-msgstr "InnoDB жадвалидан ўчирилган қаторлар сони."
-
-#: libraries/messages.inc.php:123
-msgid "The number of rows inserted in InnoDB tables."
-msgstr "InnoDB жадвалига ёзилган қаторлар сони."
-
-#: libraries/messages.inc.php:124
-msgid "The number of rows read from InnoDB tables."
-msgstr "InnoDB жадвалларидан ўқилган қаторлар сони."
-
-#: libraries/messages.inc.php:125
-msgid "The number of rows updated in InnoDB tables."
-msgstr "InnoDB жадвалларида янгиланган қаторлар сони."
-
-#: libraries/messages.inc.php:126
-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/messages.inc.php:127
-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/messages.inc.php:128
-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/messages.inc.php:129
-msgid "The number of requests to read a key block from the cache."
-msgstr "Индекс кешидаги блокларни ўқишга бўлган сўровлар сони."
-
-#: libraries/messages.inc.php:130
-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 ""
-"Дискдан индекс блокларини жисмоний ўқиш операциялари сони. Агар қиймат катта "
-"бўлса, демак, \"key_buffer_size\" ўзгарувчининг қиймати ҳаддан ташқари кичик "
-"қилиб белгиланган. Кешга бўлган муваффақиятсиз мурожаатлар коэффициенти "
-"қуйидагича ҳисобланди: Key_reads/Key_read_requests."
-
-#: libraries/messages.inc.php:131
-msgid "The number of requests to write a key block to the cache."
-msgstr "Блокни индекс кешига ёзишга бўлган сўровлар сони."
-
-#: libraries/messages.inc.php:132
-msgid "The number of physical writes of a key block to disk."
-msgstr "Дискдан индекс блокларини жисмоний ёзиш операциялари сони."
-
-#: libraries/messages.inc.php:133
-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/messages.inc.php:134
-msgid "The number of rows waiting to be written in INSERT DELAYED queues."
-msgstr ""
-"Количество строк, ожидающих вставки в запросах \"INSERT DELAYED\" "
-"сўровларида қўйилишини кутаётган қаторлар сони."
-
-#: libraries/messages.inc.php:135
-msgid ""
-"The number of tables that have been opened. If opened tables is big, your "
-"table cache value is probably too small."
-msgstr ""
-"Очилаётган жадвалларнинг умумий сони. Агар ўзгарувчининг қиймати катта "
-"бўлса, жадвал кеши (table_cache) ҳажмини ошириш тавсия этилади."
-
-#: libraries/messages.inc.php:136
-msgid "The number of files that are open."
-msgstr "Очиқ файллар сони."
-
-#: libraries/messages.inc.php:137
-msgid "The number of streams that are open (used mainly for logging)."
-msgstr ""
-"Очиқ оқимлар сони (журнал файлларида кўлланилади). Оқим деб \"fopen()"
-"\" функцияси ёрдамида очилган файлга айтилади."
-
-#: libraries/messages.inc.php:138
-msgid "The number of tables that are open."
-msgstr "Очиқ жадваллар сони."
-
-#: libraries/messages.inc.php:139
-msgid "The number of free memory blocks in query cache."
-msgstr "Сўровлар кешидаги бўш хотира блоклари сони."
-
-#: libraries/messages.inc.php:140
-msgid "The amount of free memory for query cache."
-msgstr "Сўровлар кеши учун бўш хотира ҳажми"
-
-#: libraries/messages.inc.php:141
-msgid "The number of cache hits."
-msgstr ""
-"Сўровлар кешига \"тушишлар\" сони, яъни кешда турган сўровлар томонидан "
-"қониқтирилган сўровлар сони."
-
-#: libraries/messages.inc.php:142
-msgid "The number of queries added to the cache."
-msgstr "Сўровлар кешига қўшилган сўровлар сони."
-
-#: libraries/messages.inc.php:143
-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 "
-"cache size. The query cache uses a least recently used (LRU) strategy to "
-"decide which queries to remove from the cache."
-msgstr ""
-"Янги сўровларни кешлашга хотира бўшатиш учун кешдан ўчирилган сўровлар сони. "
-"Бу маълумот сўровлар кеши ҳажмини белгилашга ёрдам беради. Сўровлар кеши "
-"кешдан сўровларни ўчиришда \"LRU\" (Least Recently Used - энг олдинги "
-"ишлатилган) стратегиясидан фойдаланади"
-
-#: libraries/messages.inc.php:144
-msgid ""
-"The number of non-cached queries (not cachable, or not cached due to the "
-"query_cache_type setting)."
-msgstr ""
-"Кешлаб бўлмайдиган ёки кешлаш \"SQL_NO_CACHE\" калит сўзи ёрдамида "
-"сўндирилган сўровлар сони."
-
-#: libraries/messages.inc.php:145
-msgid "The number of queries registered in the cache."
-msgstr "Кешда регистрация қилинган сўровлар сони."
-
-#: libraries/messages.inc.php:146
-msgid "The total number of blocks in the query cache."
-msgstr "Сўровлар кешига ажратилган хотира блокларнинг умумий сони."
-
-#: libraries/messages.inc.php:147
-msgctxt "$strShowStatusReset"
-msgid "Reset"
-msgstr "Бекор қилиш"
-
-#: libraries/messages.inc.php:148
-msgid "The status of failsafe replication (not yet implemented)."
-msgstr "Барқарор репликациялар сони (ҳали амалга оширилмаган)."
-
-#: libraries/messages.inc.php:149
-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 ""
-"Индекс ишлатмасдан бажарилган бирлашма сўровлар сони. Агар ўзгарувчи қиймати "
-"0 бўлмаса, жадвал индексларини текшириш тавсия этилади."
-
-#: libraries/messages.inc.php:150
-msgid "The number of joins that used a range search on a reference table."
-msgstr ""
-"Боғланиш мавжуд бўлган жадвалда диапазон бўйича қидирув ишлатган ҳолда "
-"бажарилган бирлашма сўровлар сони."
-
-#: libraries/messages.inc.php:151
-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 ""
-"Иккиламчи жадвалдан қаторларга мурожаат этиш учун диапазон бўйича қидирув "
-"ишлатган ҳолда бажарилган бирлашма сўровлар сони. Агар ўзгарувчи қиймати 0 "
-"бўлмаса, жадвал индексларини текшириш тавсия этилади."
-
-#: libraries/messages.inc.php:152
-msgid ""
-"The number of joins that used ranges on the first table. (It's normally not "
-"critical even if this is big.)"
-msgstr ""
-"Биринчи жадвалда диапазон бўйича қидирув ишлатган ҳолда бажарилган бирлашма "
-"сўровлар сони. Одатда, ушбу ўзгарувчининг қиймати, ҳатто жуда катта бўлса "
-"ҳам, унчалик муҳим эмас."
-
-#: libraries/messages.inc.php:153
-msgid "The number of joins that did a full scan of the first table."
-msgstr ""
-"Биринчи жадвалга нисбатан тўлалигича қидирув ишлатган ҳолда бажарилган "
-"бирлашма сўровлар сони."
-
-#: libraries/messages.inc.php:154
-msgid "The number of temporary tables currently open by the slave SQL thread."
-msgstr "Тобе оқим томонидан жорий вақтда очилган вақтинчалик жадваллар сони."
-
-#: libraries/messages.inc.php:155
-msgid ""
-"Total (since startup) number of times the replication slave SQL thread has "
-"retried transactions."
-msgstr ""
-"Ишга туширилгандан буён репликациянинг тобе оқими томонидан бажарилган қайта "
-"транзакцияларнинг умумий сони."
-
-#: libraries/messages.inc.php:156
-msgid "This is ON if this server is a slave that is connected to a master."
-msgstr ""
-"Агар ушбу сервер бош серверга уланган ҳолда тобе сервер сифатида ишлаётган "
-"бўлса, ушбу ўзгарувчига \"ON\" қиймати белгиланади."
-
-#: libraries/messages.inc.php:157
-msgid ""
-"The number of threads that have taken more than slow_launch_time seconds to "
-"create."
-msgstr ""
-"Тузилиши учун slow_launch_time секунддан кўпроқ вақт талаб этилган оқимлар "
-"сони."
-
-#: libraries/messages.inc.php:158
-msgid ""
-"The number of queries that have taken more than long_query_time seconds."
-msgstr "long_query_time секунддан кўпроқ вақт бажарилган сўровлар сони."
-
-#: libraries/messages.inc.php:159
-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 ""
-"Сортировка алгоритми томонидан бажарилган ўтишлар сони. Агар ушбу ўзгарувчи "
-"қиймати катта бўлса, \"sort_buffer_size\" ўзгарувчисининг қийматини ошириш "
-"зарур."
-
-#: libraries/messages.inc.php:160
-msgid "The number of sorts that were done with ranges."
-msgstr "Диапазон ёрдамида бажарилган сортировка операциялари сони."
-
-#: libraries/messages.inc.php:161
-msgid "The number of sorted rows."
-msgstr "Сортировка қилинган қаторлар сони"
-
-#: libraries/messages.inc.php:162
-msgid "The number of sorts that were done by scanning the table."
-msgstr ""
-"Жадвални тўлалигича кўриб чиқиш ёрдамида бажарилган сортировка операциялари "
-"сони."
-
-#: libraries/messages.inc.php:163
-msgid "The number of times that a table lock was acquired immediately."
-msgstr "Дарҳол қониқтирилган жадвални блокировка қилишга бўлган сўровлар сони."
-
-#: libraries/messages.inc.php:164
-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 "
-"should first optimize your queries, and then either split your table or "
-"tables or use replication."
-msgstr ""
-"Маълум бир вақтдандан кейин қониқтирилган жадвални блокировка қилишга бўлган "
-"сўровлар сони. Агар қиймат жуда катта бўлса ва унумдорлик бўйича муаммолар "
-"пайдо бўлаётган бўлса, аввал сўровларни оптималлаштириш, сўнгра эса жадвал"
-"(лар)ни қисмларга бўлиш ёки репликация ишлатиш керак."
-
-#: libraries/messages.inc.php:165
-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 ""
-"Кешдаги оқимлар сони. Кешга бўлган муваффақиятли мурожаатлар частотасини "
-"қуйидаги формула ёрдамида ҳисоблаш мумкин: Threads_created/Connections. Агар "
-"ушбу қиймат қизил ранг билан белгиланган бўлса, унда \"thread_cache_size\" "
-"ўзгарувчисининг қийматини ошириш зарур."
-
-#: libraries/messages.inc.php:166
-msgid "The number of currently open connections."
-msgstr "Очиқ жорий уланишлар сони."
-
-#: libraries/messages.inc.php:167
-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 "
-"doesn't give a notable performance improvement if you have a good thread "
-"implementation.)"
-msgstr ""
-"Клиент билан уланишни қўллаб-қувватлаш учун тузилган оқимларнинг умумий "
-"сони. Ўзгарувчи қиймати жуда катта бўлса, \"thread_cache_size\" "
-"ўзгарувчисининг қийматини ошириш мумкин (лекин у унумдорликни унчалик ҳам "
-"оширмайди)."
-
-#: libraries/messages.inc.php:168
-msgid "The number of threads that are not sleeping."
-msgstr "Фаол ҳолатда бўлган жараёнлар сони."
-
#: libraries/mult_submits.inc.php:76 libraries/tbl_properties.inc.php:513
#: tbl_structure.php:29 tbl_structure.php:153 tbl_structure.php:157
#: tbl_structure.php:473
@@ -4463,8 +3593,8 @@ msgstr ""
#: libraries/replication_gui.lib.php:55 libraries/replication_gui.lib.php:56
#: libraries/replication_gui.lib.php:249 libraries/replication_gui.lib.php:252
-#: libraries/replication_gui.lib.php:259 server_privileges.php:672
-#: server_privileges.php:675 server_privileges.php:682
+#: libraries/replication_gui.lib.php:259 server_privileges.php:711
+#: server_privileges.php:714 server_privileges.php:721
#: server_synchronize.php:1171
msgid "User name"
msgstr "Фойдаланувчи номи"
@@ -4482,11 +3612,11 @@ msgid "Slave status"
msgstr "Тобе сервер статуси"
#: libraries/replication_gui.lib.php:114 libraries/sql_query_form.lib.php:445
-#: server_status.php:626 server_variables.php:52
+#: server_status.php:737 server_variables.php:52
msgid "Variable"
msgstr "Ўзгарувчи"
-#: libraries/replication_gui.lib.php:115 server_status.php:627
+#: libraries/replication_gui.lib.php:115 server_status.php:738
#: tbl_change.php:324 tbl_printview.php:370 tbl_select.php:139
#: tbl_structure.php:729
msgid "Value"
@@ -4508,34 +3638,34 @@ msgstr ""
msgid "Add slave replication user"
msgstr "Тобе репликация фойдаланувчисини қўшиш"
-#: libraries/replication_gui.lib.php:254 server_privileges.php:677
+#: libraries/replication_gui.lib.php:254 server_privileges.php:716
msgid "Any user"
msgstr "Ҳар қайси фойдаланувчи"
#: libraries/replication_gui.lib.php:255 libraries/replication_gui.lib.php:323
-#: libraries/replication_gui.lib.php:346 server_privileges.php:678
-#: server_privileges.php:745 server_privileges.php:769
-#: server_privileges.php:1889 server_privileges.php:1919
+#: libraries/replication_gui.lib.php:346 server_privileges.php:717
+#: server_privileges.php:784 server_privileges.php:808
+#: server_privileges.php:1928 server_privileges.php:1958
msgid "Use text field"
msgstr "Матнмайдонини ишлатиш"
-#: libraries/replication_gui.lib.php:302 server_privileges.php:725
+#: libraries/replication_gui.lib.php:302 server_privileges.php:764
msgid "Any host"
msgstr "Ҳар қайси хост"
-#: libraries/replication_gui.lib.php:306 server_privileges.php:729
+#: libraries/replication_gui.lib.php:306 server_privileges.php:768
msgid "Local"
msgstr "Локал"
-#: libraries/replication_gui.lib.php:312 server_privileges.php:734
+#: libraries/replication_gui.lib.php:312 server_privileges.php:773
msgid "This Host"
msgstr "Ушбу хост"
-#: libraries/replication_gui.lib.php:318 server_privileges.php:740
+#: libraries/replication_gui.lib.php:318 server_privileges.php:779
msgid "Use Host Table"
msgstr "Хостлар жадвалидан фойдаланиш"
-#: libraries/replication_gui.lib.php:331 server_privileges.php:753
+#: libraries/replication_gui.lib.php:331 server_privileges.php:792
msgid ""
"When Host table is used, this field is ignored and values stored in Host "
"table are used instead."
@@ -4543,8 +3673,25 @@ msgstr ""
"Агар Хостлар жадвалидан фойдаланилса, ушбу майдонга эътибор берилмайди ва "
"унинг ўрнига Хостлар жадвалидаги қийматлар ишлатилади."
-#: libraries/select_lang.lib.php:480 libraries/select_lang.lib.php:486
-#: libraries/select_lang.lib.php:492
+#. l10n: Text direction, use either ltr or rtl
+#: libraries/select_lang.lib.php:491
+msgid "ltr"
+msgstr "ltr"
+
+#: libraries/select_lang.lib.php:493
+msgid "Content of table __TABLE__"
+msgstr " __TABLE__ жадвалининг мундарижаси"
+
+#: libraries/select_lang.lib.php:494
+msgid "(continued)"
+msgstr "(давоми)"
+
+#: libraries/select_lang.lib.php:495
+msgid "Structure of table __TABLE__"
+msgstr " __TABLE__ жадвалининг тузилиши"
+
+#: libraries/select_lang.lib.php:500 libraries/select_lang.lib.php:506
+#: libraries/select_lang.lib.php:512
#, php-format
msgid "Unknown language: %1$s."
msgstr "Номаълум тил: %1$s."
@@ -4555,7 +3702,7 @@ msgid "Servers"
msgstr "Серверлар"
#: libraries/server_links.inc.php:53 server_engines.php:112
-#: server_engines.php:116 server_status.php:304 test/theme.php:105
+#: server_engines.php:116 server_status.php:415 test/theme.php:105
msgid "Variables"
msgstr "Ўзгарувчилар"
@@ -4568,7 +3715,7 @@ msgid "Engines"
msgstr "Жадвал турлари"
#: libraries/server_links.inc.php:76 server_binlog.php:110
-#: server_status.php:253 test/theme.php:121
+#: server_status.php:364 test/theme.php:121
msgid "Binary log"
msgstr "Иккилик журнал"
@@ -5047,8 +4194,8 @@ msgstr "Тозалаш"
msgid "Protocol version"
msgstr "Протокол версияси"
-#: main.php:189 server_privileges.php:1350 server_privileges.php:1497
-#: server_privileges.php:1611 server_privileges.php:2029
+#: main.php:189 server_privileges.php:1389 server_privileges.php:1536
+#: server_privileges.php:1650 server_privileges.php:2068
#: server_processlist.php:54
msgid "User"
msgstr "Фойдаланувчи"
@@ -5447,7 +4594,7 @@ msgstr "\"%s\" маълумотлар базаси муваффақиятли ў
msgid "Databases statistics"
msgstr "Маълумотлар базаси статискаси"
-#: server_databases.php:117 server_status.php:260
+#: server_databases.php:117 server_status.php:371
#: setup/lib/messages.inc.php:117
msgid "Tables"
msgstr "Жадваллар"
@@ -5467,6 +4614,18 @@ msgstr "Тобе сервер репликацияси"
msgid "Jump to database"
msgstr "Ушбу базага ўтиш"
+#: server_databases.php:267
+#, fuzzy
+#| msgid "Master replication"
+msgid "Not replicated"
+msgstr "Бош сервер репликацияси"
+
+#: server_databases.php:273
+#, fuzzy
+#| msgid "Replication"
+msgid "Replicated"
+msgstr "Репликация (захира нусха кўчириш)"
+
#: server_databases.php:289
#, php-format
msgid "Check privileges for database "%s"."
@@ -5500,146 +4659,344 @@ msgstr "Жадвал турлари"
msgid "View dump (schema) of databases"
msgstr "Маълумотлар базалари дампини (схемасини) намойиш этиш"
-#: server_privileges.php:263 server_privileges.php:264
+#: server_privileges.php:24 server_privileges.php:266
+msgid "Includes all privileges except GRANT."
+msgstr "GRANT дан ташқари барча привилегияларни ўз ичига олади"
+
+#: server_privileges.php:25 server_privileges.php:192
+#: server_privileges.php:515
+msgid "Allows altering the structure of existing tables."
+msgstr "Мавжуд жадвалларнинг тузилишини ўзгартиришга рухсат беради"
+
+#: server_privileges.php:26 server_privileges.php:208
+#: server_privileges.php:521
+msgid "Allows altering and dropping stored routines."
+msgstr "Сақланадиган муолажаларни ўзгартириш ва ўчиришга рухсат беради"
+
+#: server_privileges.php:27 server_privileges.php:184
+#: server_privileges.php:514
+msgid "Allows creating new databases and tables."
+msgstr "Янги маълумотлар базалари ва жадваллар тузишга рухсат беради"
+
+#: server_privileges.php:28 server_privileges.php:207
+#: server_privileges.php:520
+msgid "Allows creating stored routines."
+msgstr "Сақланадиган муолажалар тузишга рухсат беради"
+
+#: server_privileges.php:29 server_privileges.php:514
+msgid "Allows creating new tables."
+msgstr "Янги жадваллар тузишга рухсат беради"
+
+#: server_privileges.php:30 server_privileges.php:195
+#: server_privileges.php:518
+msgid "Allows creating temporary tables."
+msgstr "Вақтинчалик жадваллар тузишга рухсат беради"
+
+#: server_privileges.php:31 server_privileges.php:209
+#: server_privileges.php:554
+msgid "Allows creating, dropping and renaming user accounts."
+msgstr "Фойдаланувчилар ҳисобини қўшиш, ўчириш ва ўзгартиришга рухсат беради"
+
+#: server_privileges.php:32 server_privileges.php:199
+#: server_privileges.php:203 server_privileges.php:526
+#: server_privileges.php:530
+msgid "Allows creating new views."
+msgstr "Янги намойишлар тузиш(CREATE VIEW)га рухсат беради"
+
+#: server_privileges.php:33 server_privileges.php:183
+#: server_privileges.php:506
+msgid "Allows deleting data."
+msgstr "Маълумотларни ўчиришга рухсат беради"
+
+#: server_privileges.php:34 server_privileges.php:185
+#: server_privileges.php:517
+msgid "Allows dropping databases and tables."
+msgstr "Маълумотлар базаларини ва жадвалларни ўчиришга рухсат беради"
+
+#: server_privileges.php:35 server_privileges.php:517
+msgid "Allows dropping tables."
+msgstr "Жадвалларни ўчиришга рухъсат беради"
+
+#: server_privileges.php:36 server_privileges.php:200
+#: server_privileges.php:534
+msgid "Allows to set up events for the event scheduler"
+msgstr "Кечиктирилган ҳодисаларни созлашга рухсат беради"
+
+#: server_privileges.php:37 server_privileges.php:210
+#: server_privileges.php:522
+msgid "Allows executing stored routines."
+msgstr "Сақланадиган муолажаларни бажаришга рухсат беради"
+
+#: server_privileges.php:38 server_privileges.php:189
+#: server_privileges.php:509
+msgid "Allows importing data from and exporting data into files."
+msgstr "Маълумотларни файлдан импорт ва файлга экспорт қилишга рухсат беради"
+
+#: server_privileges.php:39 server_privileges.php:540
+msgid ""
+"Allows adding users and privileges without reloading the privilege tables."
+msgstr ""
+"Фойдаланувчиларни қўшиш ва привилегиялар жадвалини қайта юкламасдан "
+"привилегиялар қўшишга рухсат беради"
+
+#: server_privileges.php:40 server_privileges.php:191
+#: server_privileges.php:516
+msgid "Allows creating and dropping indexes."
+msgstr "Индекслар қўшиш ва уларни ўчиришга рухсат беради"
+
+#: server_privileges.php:41 server_privileges.php:181
+#: server_privileges.php:442 server_privileges.php:504
+msgid "Allows inserting and replacing data."
+msgstr "Маълумот қўйиш ва ўзгартиришга рухсат беради"
+
+#: server_privileges.php:42 server_privileges.php:196
+#: server_privileges.php:549
+msgid "Allows locking tables for the current thread."
+msgstr "Жорий оқим учун жадвални блокировку қилишга рухсат беради"
+
+#: server_privileges.php:43 server_privileges.php:646
+#: server_privileges.php:648
+msgid "Limits the number of new connections the user may open per hour."
+msgstr ""
+"Фойдаланувчи бир соат давомида ўрнатиши мумкин бўлган янги уланишлар сони"
+
+#: server_privileges.php:44 server_privileges.php:634
+#: server_privileges.php:636
+msgid "Limits the number of queries the user may send to the server per hour."
+msgstr "Фойдаланувчи бир соат давомида юбориши мумкин бўлган сўровлар сони"
+
+#: server_privileges.php:45 server_privileges.php:640
+#: server_privileges.php:642
+msgid ""
+"Limits the number of commands that change any table or database the user may "
+"execute per hour."
+msgstr ""
+"Фойдаланувчи бир соат давомида бажариши мумкин бўлган бирон-бир жадвал ёки "
+"маълумотлар базасини ўзгартирадиган буйруқлар сони"
+
+#: server_privileges.php:46 server_privileges.php:652
+#: server_privileges.php:654
+msgid "Limits the number of simultaneous connections the user may have."
+msgstr ""
+"Бир фойдаланувчи томонидан бир вақтнинг ўзида ўрнатиши мумкин бўлган "
+"уланишлар сони"
+
+#: server_privileges.php:47 server_privileges.php:188
+#: server_privileges.php:544
+msgid "Allows viewing processes of all users"
+msgstr "Барча фойдаланувчиларнинг жараёнларини кўришга рухсат беради"
+
+#: server_privileges.php:48 server_privileges.php:190
+#: server_privileges.php:448 server_privileges.php:550
+msgid "Has no effect in this MySQL version."
+msgstr "MySQL-сервернинг ушбу версияда бундай хусусият мавжуд эмас!"
+
+#: server_privileges.php:49 server_privileges.php:186
+#: server_privileges.php:545
+msgid "Allows reloading server settings and flushing the server's caches."
+msgstr ""
+"Сервер созланишларини қайта юклашга ва унинг кешларини тозалашга рухсат "
+"беради"
+
+#: server_privileges.php:50 server_privileges.php:198
+#: server_privileges.php:552
+msgid "Allows the user to ask where the slaves / masters are."
+msgstr ""
+"Бош ва тобе серверларнинг жойлашиши ҳақидаги маълумотни талаб қилишга рухсат "
+"беради"
+
+#: server_privileges.php:51 server_privileges.php:197
+#: server_privileges.php:553
+msgid "Needed for the replication slaves."
+msgstr "Репликация (захира нусха кўчириш) вақтида тобе серверлар учун керак"
+
+#: server_privileges.php:52 server_privileges.php:180
+#: server_privileges.php:439 server_privileges.php:503
+msgid "Allows reading data."
+msgstr "Маълумотларни чақиришга рухсат беради"
+
+#: server_privileges.php:53 server_privileges.php:193
+#: server_privileges.php:547
+msgid "Gives access to the complete list of databases."
+msgstr "Маълумотлар базаларининг тўлиқ рўйхатига рухсат беради"
+
+#: server_privileges.php:54 server_privileges.php:204
+#: server_privileges.php:206 server_privileges.php:519
+msgid "Allows performing SHOW CREATE VIEW queries."
+msgstr "Намойиш тузадиган сўров(SHOW CREATE VIEW)ни бажаришга рухсат беради"
+
+#: server_privileges.php:55 server_privileges.php:187
+#: server_privileges.php:546
+msgid "Allows shutting down the server."
+msgstr "Сервер ишини якунлашга рухсат беради"
+
+#: server_privileges.php:56 server_privileges.php:194
+#: server_privileges.php:543
+msgid ""
+"Allows connecting, even if maximum number of connections is reached; "
+"required for most administrative operations like setting global variables or "
+"killing threads of other users."
+msgstr ""
+"Уланишлар максимал қийматга етганда ҳам уланиш ўрнатишга рухсат беради. "
+"(Кўпгина административ вазифаларни бажариш учун керак, масалан, глобал "
+"ўзгарувчилар ўрнатиш ёки бошқа фойдаланувчи жараёнини ўчириш)"
+
+#: server_privileges.php:57 server_privileges.php:201
+#: server_privileges.php:535
+msgid "Allows creating and dropping triggers"
+msgstr ""
+"Триггерлар (маълум шартлар бажарилганда автоматик ишга тушадиган жараёнлар) "
+"тузиш ва уларни ўчиришга рухсат беради"
+
+#: server_privileges.php:58 server_privileges.php:182
+#: server_privileges.php:445 server_privileges.php:505
+msgid "Allows changing data."
+msgstr "Маълумотларни ўзгартиришга рухсат беради"
+
+#: server_privileges.php:59 server_privileges.php:260
+msgid "No privileges."
+msgstr "Привилегиялар йўқ"
+
+#: server_privileges.php:302 server_privileges.php:303
#, fuzzy
#| msgid "None"
msgctxt "None privileges"
msgid "None"
msgstr "Йўқ"
-#: server_privileges.php:392 server_privileges.php:527
-#: server_privileges.php:1679 server_privileges.php:1685
+#: server_privileges.php:431 server_privileges.php:566
+#: server_privileges.php:1718 server_privileges.php:1724
msgid "Table-specific privileges"
msgstr "Жадвал даражасижаги привилегиялар"
-#: server_privileges.php:393 server_privileges.php:535
-#: server_privileges.php:1501
+#: server_privileges.php:432 server_privileges.php:574
+#: server_privileges.php:1540
msgid " Note: MySQL privilege names are expressed in English "
msgstr "ИЗОҲ: MySQL привилегиялари турлари инглиз тилида кўрсатилади."
-#: server_privileges.php:524 server_privileges.php:1500
+#: server_privileges.php:563 server_privileges.php:1539
msgid "Global privileges"
msgstr "Глобал привилегиялар"
-#: server_privileges.php:526 server_privileges.php:1679
+#: server_privileges.php:565 server_privileges.php:1718
msgid "Database-specific privileges"
msgstr "Маълумотлар базаси привилегиялари"
-#: server_privileges.php:571
+#: server_privileges.php:610
msgid "Administration"
msgstr "Администрация"
-#: server_privileges.php:591
+#: server_privileges.php:630
msgid "Resource limits"
msgstr "Ресурслардан фойдаланишни чеклаш"
-#: server_privileges.php:592
+#: server_privileges.php:631
msgid "Note: Setting these options to 0 (zero) removes the limit."
msgstr ""
"ИЗОҲ: параметр қийматларини 0 (нол) деб белгилаш мавжуд чеклашларни бекор "
"қилади."
-#: server_privileges.php:669
+#: server_privileges.php:708
msgid "Login Information"
msgstr "Фойдаланувчи ҳисоби ҳақида маълумот"
-#: server_privileges.php:763
+#: server_privileges.php:802
msgid "Do not change the password"
msgstr "Паролни ўзгартирмаслик"
-#: server_privileges.php:804 server_privileges.php:2166
+#: server_privileges.php:843 server_privileges.php:2205
#, fuzzy
#| msgid "No user(s) found."
msgid "No user found."
msgstr "Биронта ҳам фойдаланувчи топилмади."
-#: server_privileges.php:848
+#: server_privileges.php:887
#, php-format
msgid "The user %s already exists!"
msgstr " \"%s\" номли фойдаланувчи мавжуд!"
-#: server_privileges.php:931
+#: server_privileges.php:970
msgid "You have added a new user."
msgstr "Сиз янги фойдаланувчи қўшдингиз."
-#: server_privileges.php:1152
+#: server_privileges.php:1191
#, php-format
msgid "You have updated the privileges for %s."
msgstr " \"%s\" учун привилегиялар ўзгартирилди."
-#: server_privileges.php:1176
+#: server_privileges.php:1215
#, php-format
msgid "You have revoked the privileges for %s"
msgstr " \"%s\" фойдаланувчининг привилегиялари бекор қилинди."
-#: server_privileges.php:1212
+#: server_privileges.php:1251
#, php-format
msgid "The password for %s was changed successfully."
msgstr "\"%s\" фойдаланувчининг пароли муваффақиятли ўзгартирилди."
-#: server_privileges.php:1232
+#: server_privileges.php:1271
#, php-format
msgid "Deleting %s"
msgstr "\"%s\" ўчирилмоқда"
-#: server_privileges.php:1243
+#: server_privileges.php:1282
msgid "No users selected for deleting!"
msgstr "Ўчириш лозим бўлган фойдаланувчилар танланмаган!"
-#: server_privileges.php:1246
+#: server_privileges.php:1285
msgid "Reloading the privileges"
msgstr "Привилегиялар қайта юкланмоқда"
-#: server_privileges.php:1261
+#: server_privileges.php:1300
msgid "The selected users have been deleted successfully."
msgstr "Белгиланган фойдаланувчилар муваффақиятли ўчирилди."
-#: server_privileges.php:1296
+#: server_privileges.php:1335
msgid "The privileges were reloaded successfully."
msgstr "Привилегиялар муваффақиятли қайта юкланди."
-#: server_privileges.php:1324 server_privileges.php:1610
+#: server_privileges.php:1363 server_privileges.php:1649
msgid "Edit Privileges"
msgstr "Привилегияларни таҳрирлаш"
-#: server_privileges.php:1333
+#: server_privileges.php:1372
msgid "Revoke"
msgstr "Бекор қилиш"
-#: server_privileges.php:1365
+#: server_privileges.php:1404
msgid "User overview"
msgstr "Фойдаланувчилар ҳисобини кўриб чиқиш"
-#: server_privileges.php:1502 server_privileges.php:1684
-#: server_privileges.php:2033
+#: server_privileges.php:1541 server_privileges.php:1723
+#: server_privileges.php:2072
msgid "Grant"
msgstr "GRANT"
-#: server_privileges.php:1521 server_privileges.php:2123
+#: server_privileges.php:1560 server_privileges.php:2162
msgid "Any"
msgstr "Ҳар қайси"
-#: server_privileges.php:1570 server_privileges.php:1594
-#: server_privileges.php:1988 server_privileges.php:2177
+#: server_privileges.php:1609 server_privileges.php:1633
+#: server_privileges.php:2027 server_privileges.php:2216
msgid "Add a new User"
msgstr "Янги фойдаланувчи қўшиш"
-#: server_privileges.php:1575
+#: server_privileges.php:1614
msgid "Remove selected users"
msgstr "Белгиланган фойдаланувчиларни ўчириш"
-#: server_privileges.php:1578
+#: server_privileges.php:1617
msgid "Revoke all active privileges from the users and delete them afterwards."
msgstr ""
"Фойдаланувчиларнинг барча фаол привилегияларини бекор қилиш, сўнг уларни "
"ўчириш."
-#: server_privileges.php:1579 server_privileges.php:1580
-#: server_privileges.php:1581
+#: server_privileges.php:1618 server_privileges.php:1619
+#: server_privileges.php:1620
msgid "Drop the databases that have the same names as the users."
msgstr "Фойдаланувчилар номлари билан аталган маълумотлар базаларини ўчириш."
-#: server_privileges.php:1597
+#: server_privileges.php:1636
#, php-format
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
@@ -5652,98 +5009,98 @@ msgstr ""
"маълумотлар сервер томонидан ишлатилаётган привилегиялардан фарқ қилиши "
"мумкин. Бу ҳолда %sпривилегияларни қайта юклаш%s керак."
-#: server_privileges.php:1645
+#: server_privileges.php:1684
msgid "The selected user was not found in the privilege table."
msgstr "Белгиланган фойдаланувчи привилегиялар жадвалида топилмади."
-#: server_privileges.php:1685
+#: server_privileges.php:1724
msgid "Column-specific privileges"
msgstr "Майдон привилегиялари"
-#: server_privileges.php:1886
+#: server_privileges.php:1925
msgid "Add privileges on the following database"
msgstr "Қуйидаги маълумотлар омборига привилегия қўшиш"
-#: server_privileges.php:1904
+#: server_privileges.php:1943
msgid "Wildcards % and _ should be escaped with a \\ to use them literally"
msgstr ""
"Маълумотлар базалари номларида пастки чизиқ (_) ва фоиз (%) белгилари "
"ишлатилганда улар олдига тескари эгри чизиқ (\\) қўйиш керак."
-#: server_privileges.php:1907
+#: server_privileges.php:1946
msgid "Add privileges on the following table"
msgstr "Қуйидаги жадвалга привилегия қўшиш"
-#: server_privileges.php:1964
+#: server_privileges.php:2003
msgid "Change Login Information / Copy User"
msgstr "Фойдаланувчининг логинини ўзгартириш / Фойдаланувчидан нусха олиш"
-#: server_privileges.php:1967
+#: server_privileges.php:2006
msgid "Create a new user with the same privileges and ..."
msgstr "Худди шундай привилегияли янги фойдаланувчи киритиш..."
-#: server_privileges.php:1969
+#: server_privileges.php:2008
msgid "... keep the old one."
msgstr " ва эскисини сақлаш."
-#: server_privileges.php:1970
+#: server_privileges.php:2009
msgid " ... delete the old one from the user tables."
msgstr " ва фойдаланувчилар жадвалидан эскисини ўчириш."
-#: server_privileges.php:1971
+#: server_privileges.php:2010
msgid ""
" ... revoke all active privileges from the old one and delete it afterwards."
msgstr ", эскисининг барча фаол привилегияларини бекор қилиб ўчириш."
-#: server_privileges.php:1972
+#: server_privileges.php:2011
msgid ""
" ... delete the old one from the user tables and reload the privileges "
"afterwards."
msgstr ""
", фойдаланувчилар жадвалидан эскисини ўчириб привилегияларни қайта юклаш."
-#: server_privileges.php:1994
+#: server_privileges.php:2033
msgid "Database for user"
msgstr "Фойдаланувчи учун маълумотлар базаси"
-#: server_privileges.php:1998
+#: server_privileges.php:2037
#, fuzzy
#| msgid "None"
msgctxt "Create none database for user"
msgid "None"
msgstr "Йўқ"
-#: server_privileges.php:1999
+#: server_privileges.php:2038
msgid "Create database with same name and grant all privileges"
msgstr ""
"Фойдаланувчи номи билан аталган маълумотлар базаси тузиш ва унга тўлиқ "
"привилегияларни бериш."
-#: server_privileges.php:2000
+#: server_privileges.php:2039
msgid "Grant all privileges on wildcard name (username\\_%)"
msgstr ""
"(фойдаланувчи\\_%) шаблонига тўғри келадиган барча маълумотлар базаларига "
"тўлиқ привилегияларни бериш."
-#: server_privileges.php:2003
+#: server_privileges.php:2042
#, php-format
msgid "Grant all privileges on database "%s""
msgstr "\"%s\"" маълумотлар базасига барча привилегияларни бериш;"
-#: server_privileges.php:2026
+#: server_privileges.php:2065
#, php-format
msgid "Users having access to "%s""
msgstr "\"%s\"га рухсати бўлган фойдаланувчилар"
-#: server_privileges.php:2134
+#: server_privileges.php:2173
msgid "global"
msgstr "Глобал"
-#: server_privileges.php:2136
+#: server_privileges.php:2175
msgid "database-specific"
msgstr "Маълумотлар базаси даражасида"
-#: server_privileges.php:2138
+#: server_privileges.php:2177
msgid "wildcard"
msgstr "Гуруҳлаш белгиси"
@@ -5791,7 +5148,7 @@ msgstr "Бош репликация сервери қуйидагига ўзга
msgid "This server is configured as master in a replication process."
msgstr "Ушбу сервер репликация жараёнида \"бош\" деб конфигурация қилинган."
-#: server_replication.php:184 server_status.php:281
+#: server_replication.php:184 server_status.php:392
msgid "Show master status"
msgstr "Уланган бош серверларни кўрсатиш"
@@ -5946,83 +5303,738 @@ msgstr ""
"Ушбу сервер репликация жараёнида \"тобе сервер\" деб конфигурация "
"қилинмаган. Сиз уни конфигурация қилмоқчимисиз?"
+#: server_status.php:40
+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 ""
+"Бинар журнали кешини ишлатиб, \"binlog_cache_size\" қийматидан ошиб, ўз "
+"ичига олган SQL-жумлалари вақтинчалик файлга сақланган транзакциялар сони."
+
+#: server_status.php:41
+msgid "The number of transactions that used the temporary binary log cache."
+msgstr "Бинар журнал кешини ишлатган транзакциялар сони."
+
+#: server_status.php:42
+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 "
+"to increase the tmp_table_size value to cause temporary tables to be memory-"
+"based instead of disk-based."
+msgstr ""
+"SQL-жумлаларини бажараётган вақтда сервер томонидан автоматик тарзда "
+"тузилган ва дискда сақланган вақтинчалик жадваллар сони. Агар ушбу қиймат "
+"катта бўлса, вақтинчалик жадваллар қаттиқ дискда эмас, балки хотирада "
+"сақланишини таъминлаш мақсадида tmp_table_size ўзгарувчисининг қийматини "
+"ошириш тавсия этилади."
+
+#: server_status.php:43
+msgid "How many temporary files mysqld has created."
+msgstr "MySQL сервери (mysqld) томонидан тузилган вақтинчалик файллар сони."
+
+#: server_status.php:44
+msgid ""
+"The number of in-memory temporary tables created automatically by the server "
+"while executing statements."
+msgstr ""
+"Сервер томонидан SQL-жумлалари бажарилаётган вақтда хотирада автоматик "
+"тузилган вақтинчалик жадваллар сони."
+
+#: server_status.php:45
+msgid ""
+"The number of rows written with INSERT DELAYED for which some error occurred "
+"(probably duplicate key)."
+msgstr ""
+"\"INSERT DELAYED\" сўровларини қайта ишлаш жараёнида юз берган хатолар "
+"(масалан, калитлар такрорланиши оқибатида) сони."
+
#: server_status.php:46
+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\" сўровлар сони."
+
+#: server_status.php:47
+msgid "The number of INSERT DELAYED rows written."
+msgstr ""
+"Маълумотларни кечиктириб қўйиш (\"INSERT DELAYED\") режимида ёзилган "
+"қаторлар сони."
+
+#: server_status.php:48
+msgid "The number of executed FLUSH statements."
+msgstr "Бажарилган \"FLUSH\" буйруқлар сони."
+
+#: server_status.php:49
+msgid "The number of internal COMMIT statements."
+msgstr "Ички \"COMMIT\" буйруқлари сони."
+
+#: server_status.php:50
+msgid "The number of times a row was deleted from a table."
+msgstr "Жадвалдал ёзувларни ўчириш бўйича сшровлар сони."
+
+#: server_status.php:51
+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 ""
+"MySQL сервер маълум ном билан белгиланган жадвал мавжудлиги ҳақида сўров "
+"бериши мумкин. Бу жараён топиш деб номланади. Handler_discover - топилган "
+"жадваллар сони."
+
+#: server_status.php:52
+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 ""
+"Индексдан биринчи ёзувни ўқишга бўлган сўровлар сони. Ўзгарувчининг қиймати "
+"катта бўлса, сервер бир неча маротиба индексни кўриб чиқади."
+
+#: server_status.php:53
+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 ""
+"Калит қийматлари асосида тузилган ёзувларни ўқишга бўлган сўровлар сони. "
+"Ўзгарувчининг қиймати катталиги сўров ва жадваллар тўғри индексланганидан "
+"далолат беради."
+
+#: server_status.php:54
+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 ""
+"Индекслар жойлашуви тартибида кейинги ёзувни ўқишга бўлган сўровлар сони. "
+"Ҳажми чекланган индекс устунига бўлган сўров ёки индексни кўриб чиқиш "
+"вақтида ўзгарувчи қиймати ошади."
+
+#: server_status.php:55
+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 ""
+"Индексни камайиб бориш тартибида сортировка қилинганда олдинги ёзувни ўқишга "
+"бўлган сўровлар сони. Одатда оптималлаштириш учун қўлланилади: ORDER BY ... "
+"DESC."
+
+#: server_status.php:56
+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 "
+"probably have a lot of queries that require MySQL to scan whole tables or "
+"you have joins that don't use keys properly."
+msgstr ""
+"Сатрнинг жойлашувига асосланган ўқиш учун сўровлар сони. Ўзгарувчининг катта "
+"қийматига қуйидагилар сабаб бўлиши мумкин: натижани сортировкасидан "
+"фойдаланадиган сўровларнинг тез-тез бажарилиши; жадвални тўлалигича кўриб "
+"чиқишни талаб этадиган сўровларнинг тез-ез бажарилиши; индекслардан нотўғри "
+"фойдаланадиган бирлашмаларнинг мавжудлиги."
+
+#: server_status.php:57
+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 "
+"tables are not properly indexed or that your queries are not written to take "
+"advantage of the indexes you have."
+msgstr ""
+"Маълумотлар файлидан кейинги қаторни ўқишга бўлган сўровлар сони. Жадвални "
+"тез-тез кўриб чиқишда ушбу қиймат катта бўлади. Бу ҳол жадваллар нотўғри "
+"индексланганлигини ёки сўровлар индексларнинг афзалликларидан "
+"фойдаланмаётганлигини билдиради."
+
+#: server_status.php:58
+msgid "The number of internal ROLLBACK statements."
+msgstr "ROLLBACK ички буйруқлар сони."
+
+#: server_status.php:59
+msgid "The number of requests to update a row in a table."
+msgstr "Жадвалдаги ёзувларни янгилашга бўлган сўровлар сони."
+
+#: server_status.php:60
+msgid "The number of requests to insert a row in a table."
+msgstr "Жадвалга ёзув қўйишга бўлган сўровлар сони."
+
+#: server_status.php:61
+msgid "The number of pages containing data (dirty or clean)."
+msgstr "Маълумот мавжуд бўлган саҳифалар сони (\"кир\" ва \"тоза\")."
+
+#: server_status.php:62
+msgid "The number of pages currently dirty."
+msgstr "\"Кир\" саҳифаларнинг жорий сони."
+
+#: server_status.php:63
+msgid "The number of buffer pool pages that have been requested to be flushed."
+msgstr "Буфер пулидаги тозалаш жараёни (FLUSH) қўлланилган саҳифалар сони."
+
+#: server_status.php:64
+msgid "The number of free pages."
+msgstr "Бўш саҳифалар сони."
+
+#: server_status.php:65
+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 ""
+"InnoDB буфер пулидаги блокировка қилинган саҳифалар сони. Ушбу саҳифалар "
+"устидан ўқиш ёки ёзиш жараёни бажарилмоқда, ёки уларни бошқа сабабларга кўра "
+"тозалаш ёки ўчириш имконияти йўқ."
+
+#: server_status.php:66
+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 "
+"be calculated as Innodb_buffer_pool_pages_total - "
+"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data."
+msgstr ""
+"Административ жараёнларга ажратилганлиги сабабли банд бўлган саҳифалар сони. "
+"Ушбу ўзгарувчи қийматини қуйидаги формула ёрдамида ҳисоблаш мумкин: "
+"\"Innodb_buffer_pool_pages_total - Innodb_buffer_pool_pages_free - "
+"Innodb_buffer_pool_pages_data\"."
+
+#: server_status.php:67
+msgid "Total size of buffer pool, in pages."
+msgstr "Буфер пулининг умумий ҳажми (саҳифаларда)."
+
+#: server_status.php:68
+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 ""
+"InnoDB томонидан амалга оширилган \"тасодифий\" олдинга ўтиб кетган ўқишлар "
+"сони. Ушбу ҳол сўров жадвални тасодифий тартибда кўриб чиқаётганда рўй "
+"беради."
+
+#: server_status.php:69
+msgid ""
+"The number of sequential read-aheads InnoDB initiated. This happens when "
+"InnoDB does a sequential full table scan."
+msgstr ""
+"InnoDB томонидан амалга оширилган кетма-кет олдинга ўтиб кетган ўқишлар "
+"сони. Ушбу ҳол InnoDB жадвални тўлалигича кетма-кет кўриб чиқаётганда рўй "
+"беради"
+
+#: server_status.php:70
+msgid "The number of logical read requests InnoDB has done."
+msgstr ""
+"InnoDB томонидан амалга оширилган ўқишга бўлган кетма-кет сўровлар сони."
+
+#: server_status.php:71
+msgid ""
+"The number of logical reads that InnoDB could not satisfy from buffer pool "
+"and had to do a single-page read."
+msgstr ""
+"InnoDB буфер пулидан бажар олмаган ва саҳифалаб ўқишдан фойдаланган ўқишга "
+"бўлган кетма-кет сўровлар сони."
+
+#: server_status.php:72
+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 "
+"available, it's necessary to wait for pages to be flushed first. This "
+"counter counts instances of these waits. If the buffer pool size was set "
+"properly, this value should be small."
+msgstr ""
+"Одатда, InnoDB буфер пулига ёзиш фон режимида амалга оширилади. Аммо, агар "
+"буфер пулида бўш саҳифалар бўлмаса, олдин уларнинг тозаланиши кутиш керак. "
+"Ушбу ҳисоблагич шундай кутишлар сонини билдиради. Агар буфер пулининг ҳажми "
+"тўғри белгиланган бўлса, унда кутишлар сони катта бўлмаслиги керак."
+
+#: server_status.php:73
+msgid "The number writes done to the InnoDB buffer pool."
+msgstr "InnoDB буфер пулига амалга оширилган ёзувлар сони."
+
+#: server_status.php:74
+msgid "The number of fsync() operations so far."
+msgstr "Жорий вақтда амалга оширилган \"fsync()\" операциялари сони."
+
+#: server_status.php:75
+msgid "The current number of pending fsync() operations."
+msgstr "Тугалланмаган \"fsync()\" операциялари сони."
+
+#: server_status.php:76
+msgid "The current number of pending reads."
+msgstr "Тугалланмаган ўқиш операциялари сони."
+
+#: server_status.php:77
+msgid "The current number of pending writes."
+msgstr "Тугалланмаган ёзиш операциялари сони."
+
+#: server_status.php:78
+msgid "The amount of data read so far, in bytes."
+msgstr "Жорий вақтда ўқилган маълумотлар йиғиндиси (байтларда)."
+
+#: server_status.php:79
+msgid "The total number of data reads."
+msgstr "Умумий маълумотларни ўқиш операциялари сони."
+
+#: server_status.php:80
+msgid "The total number of data writes."
+msgstr "Умумий маълумотларни ёзиш операциялари сони."
+
+#: server_status.php:81
+msgid "The amount of data written so far, in bytes."
+msgstr "Жорий вақтда ёзилган маълумотлар йиғиндиси (байтларда)."
+
+#: server_status.php:82
+msgid "The number of pages that have been written for doublewrite operations."
+msgstr "\"doublewrite\" операциялари учун ёзилган саҳифалар сони."
+
+#: server_status.php:83
+msgid "The number of doublewrite operations that have been performed."
+msgstr "Бажарилган \"doublewrite\" операциялари сони."
+
+#: server_status.php:84
+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 ""
+"Журнал буферининг ҳажми кичик бўлганлиги сабабли, унинг тозаланиши кутаётган "
+"ёзувлар сони"
+
+#: server_status.php:85
+msgid "The number of log write requests."
+msgstr "Журналга ёзишга бўлган сўровларсони."
+
+#: server_status.php:86
+msgid "The number of physical writes to the log file."
+msgstr "Журнал файлидаги жисмоний ёзувлар сони."
+
+#: server_status.php:87
+msgid "The number of fsync() writes done to the log file."
+msgstr "Журнал файлига \"fsync()\" ёрдамида амалга оширилган ёзувлар сони."
+
+#: server_status.php:88
+msgid "The number of pending log file fsyncs."
+msgstr "\"fsync()\" ёрдамида амалга оширилиши кутилаётган ёзувлар сони."
+
+#: server_status.php:89
+msgid "Pending log file writes."
+msgstr "Тугалланмаган журналга ёзиш сўровлари сони."
+
+#: server_status.php:90
+msgid "The number of bytes written to the log file."
+msgstr "Журнал файлига ёзилган маълумотлар ҳажми (байтларда)."
+
+#: server_status.php:91
+msgid "The number of pages created."
+msgstr "Тузилган саҳифалар сони."
+
+#: server_status.php:92
+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 ""
+"\"InnoDB\"га компиляция қилинадиган саҳифа ҳажми (асл қиймати - 16Кб). "
+"Кўпгина қийматлар саҳифаларда келтирилади, лекин саҳифа ҳажми билган ҳолда, "
+"уларни байтларга ўтказиш мумкин."
+
+#: server_status.php:93
+msgid "The number of pages read."
+msgstr "Ўқилган саҳифалар сони."
+
+#: server_status.php:94
+msgid "The number of pages written."
+msgstr "Ёзилган саҳифалар сони."
+
+#: server_status.php:95
+msgid "The number of row locks currently being waited for."
+msgstr "Ҳозирда кутилаётган қатор блокировкалари сони."
+
+#: server_status.php:96
+msgid "The average time to acquire a row lock, in milliseconds."
+msgstr "Қатор блокировкасини кутишнинг ўртача вақти (миллисекундларда)."
+
+#: server_status.php:97
+msgid "The total time spent in acquiring row locks, in milliseconds."
+msgstr "Қатор блокировкасини кутишнинг умумий вақти (миллисекундларда)."
+
+#: server_status.php:98
+msgid "The maximum time to acquire a row lock, in milliseconds."
+msgstr "Қатор блокировкасини кутишнинг максимал вақти (миллисекундларда)."
+
+#: server_status.php:99
+msgid "The number of times a row lock had to be waited for."
+msgstr "Умумий кутилаётган қатор блокировкалари сони."
+
+#: server_status.php:100
+msgid "The number of rows deleted from InnoDB tables."
+msgstr "InnoDB жадвалидан ўчирилган қаторлар сони."
+
+#: server_status.php:101
+msgid "The number of rows inserted in InnoDB tables."
+msgstr "InnoDB жадвалига ёзилган қаторлар сони."
+
+#: server_status.php:102
+msgid "The number of rows read from InnoDB tables."
+msgstr "InnoDB жадвалларидан ўқилган қаторлар сони."
+
+#: server_status.php:103
+msgid "The number of rows updated in InnoDB tables."
+msgstr "InnoDB жадвалларида янгиланган қаторлар сони."
+
+#: server_status.php:104
+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\" номи билан ҳам маълум."
+
+#: server_status.php:105
+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 ""
+"Индекс кешидаги ишлатилмаётган блоклар сони. Ушбу параметр индекс кеши "
+"ишлатилиш даражасини белгилайди."
+
+#: server_status.php:106
+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 ""
+"Индекс кешидаги ишлатилаётган блоклар сони. Ушбу қиймат бир вақтнинг ўзида "
+"ишлатилиши мумкин бўлган блоклар сонини билдиради."
+
+#: server_status.php:107
+msgid "The number of requests to read a key block from the cache."
+msgstr "Индекс кешидаги блокларни ўқишга бўлган сўровлар сони."
+
+#: server_status.php:108
+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 ""
+"Дискдан индекс блокларини жисмоний ўқиш операциялари сони. Агар қиймат катта "
+"бўлса, демак, \"key_buffer_size\" ўзгарувчининг қиймати ҳаддан ташқари кичик "
+"қилиб белгиланган. Кешга бўлган муваффақиятсиз мурожаатлар коэффициенти "
+"қуйидагича ҳисобланди: Key_reads/Key_read_requests."
+
+#: server_status.php:109
+msgid "The number of requests to write a key block to the cache."
+msgstr "Блокни индекс кешига ёзишга бўлган сўровлар сони."
+
+#: server_status.php:110
+msgid "The number of physical writes of a key block to disk."
+msgstr "Дискдан индекс блокларини жисмоний ёзиш операциялари сони."
+
+#: server_status.php:111
+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 ""
+"Сўровлар оптимизатори томонидан ҳисобланган охирги компиляция қилинган "
+"сўровнинг умумий харажатлари. Ушбу қиймат бир сўровнинг турли схемалари "
+"эффективлигини таққослашда фойдали ҳисобланади. Асл ноль қиймат ҳали сўров "
+"компиляция жараёни бажарилмаганлигини билдиради."
+
+#: server_status.php:112
+msgid "The number of rows waiting to be written in INSERT DELAYED queues."
+msgstr ""
+"Количество строк, ожидающих вставки в запросах \"INSERT DELAYED\" "
+"сўровларида қўйилишини кутаётган қаторлар сони."
+
+#: server_status.php:113
+msgid ""
+"The number of tables that have been opened. If opened tables is big, your "
+"table cache value is probably too small."
+msgstr ""
+"Очилаётган жадвалларнинг умумий сони. Агар ўзгарувчининг қиймати катта "
+"бўлса, жадвал кеши (table_cache) ҳажмини ошириш тавсия этилади."
+
+#: server_status.php:114
+msgid "The number of files that are open."
+msgstr "Очиқ файллар сони."
+
+#: server_status.php:115
+msgid "The number of streams that are open (used mainly for logging)."
+msgstr ""
+"Очиқ оқимлар сони (журнал файлларида кўлланилади). Оқим деб \"fopen()"
+"\" функцияси ёрдамида очилган файлга айтилади."
+
+#: server_status.php:116
+msgid "The number of tables that are open."
+msgstr "Очиқ жадваллар сони."
+
+#: server_status.php:117
+msgid "The number of free memory blocks in query cache."
+msgstr "Сўровлар кешидаги бўш хотира блоклари сони."
+
+#: server_status.php:118
+msgid "The amount of free memory for query cache."
+msgstr "Сўровлар кеши учун бўш хотира ҳажми"
+
+#: server_status.php:119
+msgid "The number of cache hits."
+msgstr ""
+"Сўровлар кешига \"тушишлар\" сони, яъни кешда турган сўровлар томонидан "
+"қониқтирилган сўровлар сони."
+
+#: server_status.php:120
+msgid "The number of queries added to the cache."
+msgstr "Сўровлар кешига қўшилган сўровлар сони."
+
+#: server_status.php:121
+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 "
+"cache size. The query cache uses a least recently used (LRU) strategy to "
+"decide which queries to remove from the cache."
+msgstr ""
+"Янги сўровларни кешлашга хотира бўшатиш учун кешдан ўчирилган сўровлар сони. "
+"Бу маълумот сўровлар кеши ҳажмини белгилашга ёрдам беради. Сўровлар кеши "
+"кешдан сўровларни ўчиришда \"LRU\" (Least Recently Used - энг олдинги "
+"ишлатилган) стратегиясидан фойдаланади"
+
+#: server_status.php:122
+msgid ""
+"The number of non-cached queries (not cachable, or not cached due to the "
+"query_cache_type setting)."
+msgstr ""
+"Кешлаб бўлмайдиган ёки кешлаш \"SQL_NO_CACHE\" калит сўзи ёрдамида "
+"сўндирилган сўровлар сони."
+
+#: server_status.php:123
+msgid "The number of queries registered in the cache."
+msgstr "Кешда регистрация қилинган сўровлар сони."
+
+#: server_status.php:124
+msgid "The total number of blocks in the query cache."
+msgstr "Сўровлар кешига ажратилган хотира блокларнинг умумий сони."
+
+#: server_status.php:125
+msgctxt "$strShowStatusReset"
+msgid "Reset"
+msgstr "Бекор қилиш"
+
+#: server_status.php:126
+msgid "The status of failsafe replication (not yet implemented)."
+msgstr "Барқарор репликациялар сони (ҳали амалга оширилмаган)."
+
+#: server_status.php:127
+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 ""
+"Индекс ишлатмасдан бажарилган бирлашма сўровлар сони. Агар ўзгарувчи қиймати "
+"0 бўлмаса, жадвал индексларини текшириш тавсия этилади."
+
+#: server_status.php:128
+msgid "The number of joins that used a range search on a reference table."
+msgstr ""
+"Боғланиш мавжуд бўлган жадвалда диапазон бўйича қидирув ишлатган ҳолда "
+"бажарилган бирлашма сўровлар сони."
+
+#: server_status.php:129
+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 ""
+"Иккиламчи жадвалдан қаторларга мурожаат этиш учун диапазон бўйича қидирув "
+"ишлатган ҳолда бажарилган бирлашма сўровлар сони. Агар ўзгарувчи қиймати 0 "
+"бўлмаса, жадвал индексларини текшириш тавсия этилади."
+
+#: server_status.php:130
+msgid ""
+"The number of joins that used ranges on the first table. (It's normally not "
+"critical even if this is big.)"
+msgstr ""
+"Биринчи жадвалда диапазон бўйича қидирув ишлатган ҳолда бажарилган бирлашма "
+"сўровлар сони. Одатда, ушбу ўзгарувчининг қиймати, ҳатто жуда катта бўлса "
+"ҳам, унчалик муҳим эмас."
+
+#: server_status.php:131
+msgid "The number of joins that did a full scan of the first table."
+msgstr ""
+"Биринчи жадвалга нисбатан тўлалигича қидирув ишлатган ҳолда бажарилган "
+"бирлашма сўровлар сони."
+
+#: server_status.php:132
+msgid "The number of temporary tables currently open by the slave SQL thread."
+msgstr "Тобе оқим томонидан жорий вақтда очилган вақтинчалик жадваллар сони."
+
+#: server_status.php:133
+msgid ""
+"Total (since startup) number of times the replication slave SQL thread has "
+"retried transactions."
+msgstr ""
+"Ишга туширилгандан буён репликациянинг тобе оқими томонидан бажарилган қайта "
+"транзакцияларнинг умумий сони."
+
+#: server_status.php:134
+msgid "This is ON if this server is a slave that is connected to a master."
+msgstr ""
+"Агар ушбу сервер бош серверга уланган ҳолда тобе сервер сифатида ишлаётган "
+"бўлса, ушбу ўзгарувчига \"ON\" қиймати белгиланади."
+
+#: server_status.php:135
+msgid ""
+"The number of threads that have taken more than slow_launch_time seconds to "
+"create."
+msgstr ""
+"Тузилиши учун slow_launch_time секунддан кўпроқ вақт талаб этилган оқимлар "
+"сони."
+
+#: server_status.php:136
+msgid ""
+"The number of queries that have taken more than long_query_time seconds."
+msgstr "long_query_time секунддан кўпроқ вақт бажарилган сўровлар сони."
+
+#: server_status.php:137
+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 ""
+"Сортировка алгоритми томонидан бажарилган ўтишлар сони. Агар ушбу ўзгарувчи "
+"қиймати катта бўлса, \"sort_buffer_size\" ўзгарувчисининг қийматини ошириш "
+"зарур."
+
+#: server_status.php:138
+msgid "The number of sorts that were done with ranges."
+msgstr "Диапазон ёрдамида бажарилган сортировка операциялари сони."
+
+#: server_status.php:139
+msgid "The number of sorted rows."
+msgstr "Сортировка қилинган қаторлар сони"
+
+#: server_status.php:140
+msgid "The number of sorts that were done by scanning the table."
+msgstr ""
+"Жадвални тўлалигича кўриб чиқиш ёрдамида бажарилган сортировка операциялари "
+"сони."
+
+#: server_status.php:141
+msgid "The number of times that a table lock was acquired immediately."
+msgstr "Дарҳол қониқтирилган жадвални блокировка қилишга бўлган сўровлар сони."
+
+#: server_status.php:142
+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 "
+"should first optimize your queries, and then either split your table or "
+"tables or use replication."
+msgstr ""
+"Маълум бир вақтдандан кейин қониқтирилган жадвални блокировка қилишга бўлган "
+"сўровлар сони. Агар қиймат жуда катта бўлса ва унумдорлик бўйича муаммолар "
+"пайдо бўлаётган бўлса, аввал сўровларни оптималлаштириш, сўнгра эса жадвал"
+"(лар)ни қисмларга бўлиш ёки репликация ишлатиш керак."
+
+#: server_status.php:143
+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 ""
+"Кешдаги оқимлар сони. Кешга бўлган муваффақиятли мурожаатлар частотасини "
+"қуйидаги формула ёрдамида ҳисоблаш мумкин: Threads_created/Connections. Агар "
+"ушбу қиймат қизил ранг билан белгиланган бўлса, унда \"thread_cache_size\" "
+"ўзгарувчисининг қийматини ошириш зарур."
+
+#: server_status.php:144
+msgid "The number of currently open connections."
+msgstr "Очиқ жорий уланишлар сони."
+
+#: server_status.php:145
+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 "
+"doesn't give a notable performance improvement if you have a good thread "
+"implementation.)"
+msgstr ""
+"Клиент билан уланишни қўллаб-қувватлаш учун тузилган оқимларнинг умумий "
+"сони. Ўзгарувчи қиймати жуда катта бўлса, \"thread_cache_size\" "
+"ўзгарувчисининг қийматини ошириш мумкин (лекин у унумдорликни унчалик ҳам "
+"оширмайди)."
+
+#: server_status.php:146
+msgid "The number of threads that are not sleeping."
+msgstr "Фаол ҳолатда бўлган жараёнлар сони."
+
+#: server_status.php:157
msgid "Runtime Information"
msgstr "MySQL-сервернинг ҳозирги ҳолати"
-#: server_status.php:250
+#: server_status.php:361
msgid "Handler"
msgstr "Қайта ишловчи дастур"
-#: server_status.php:251
+#: server_status.php:362
msgid "Query cache"
msgstr "Сўровлар кеши"
-#: server_status.php:252
+#: server_status.php:363
msgid "Threads"
msgstr "Оқимлар"
-#: server_status.php:254
+#: server_status.php:365
msgid "Temporary data"
msgstr "Вақтинчалик маълумотлар"
-#: server_status.php:255
+#: server_status.php:366
msgid "Delayed inserts"
msgstr "Кечиктирилган қўйилмалар"
-#: server_status.php:256
+#: server_status.php:367
msgid "Key cache"
msgstr "Индекс кеши"
-#: server_status.php:257
+#: server_status.php:368
msgid "Joins"
msgstr "Бирлашишлар"
-#: server_status.php:259
+#: server_status.php:370
msgid "Sorting"
msgstr "Сортировка"
-#: server_status.php:261
+#: server_status.php:372
msgid "Transaction coordinator"
msgstr "Транзакциялар координатори"
-#: server_status.php:271
+#: server_status.php:382
msgid "Flush (close) all tables"
msgstr "Барча жадвалларни ёпиш"
-#: server_status.php:273
+#: server_status.php:384
msgid "Show open tables"
msgstr "Очиқ жадваллар рўйхати"
-#: server_status.php:278
+#: server_status.php:389
msgid "Show slave hosts"
msgstr "Тобе серверлар ҳақида маълумот"
-#: server_status.php:284
+#: server_status.php:395
msgid "Show slave status"
msgstr "Репликация сервери аҳволи ҳақида маълумот"
-#: server_status.php:289
+#: server_status.php:400
msgid "Flush query cache"
msgstr "Сўровлар кешини дефрагментация қилиш"
-#: server_status.php:294
+#: server_status.php:405
msgid "Show processes"
msgstr "Жараёнлар рўйхати"
-#: server_status.php:344
+#: server_status.php:455
#, fuzzy
#| msgid "Reset"
msgctxt "for Show status"
msgid "Reset"
msgstr "Тозалаш"
-#: server_status.php:350
+#: server_status.php:461
#, php-format
msgid "This MySQL server has been running for %s. It started up on %s."
msgstr "MySQL-сервер \"%s\" давомида ишламоқда. Ишга туширилган вақт: \"%s\"."
-#: server_status.php:360
+#: server_status.php:471
#, fuzzy
#| msgid "This server is configured as master in a replication process."
msgid ""
@@ -6030,19 +6042,19 @@ msgid ""
"b> process."
msgstr "Ушбу сервер репликация жараёнида \"бош\" деб конфигурация қилинган."
-#: server_status.php:362
+#: server_status.php:473
#, fuzzy
#| msgid "This server is configured as master in a replication process."
msgid "This MySQL server works as master in replication process."
msgstr "Ушбу сервер репликация жараёнида \"бош\" деб конфигурация қилинган."
-#: server_status.php:364
+#: server_status.php:475
#, fuzzy
#| msgid "This server is configured as master in a replication process."
msgid "This MySQL server works as slave in replication process."
msgstr "Ушбу сервер репликация жараёнида \"бош\" деб конфигурация қилинган."
-#: server_status.php:366
+#: server_status.php:477
#, fuzzy
#| msgid ""
#| "This MySQL server works as %s in replication process. For further "
@@ -6056,7 +6068,7 @@ msgstr ""
"сифатида ишлайди. Сервернинг репликация статуси ҳақида батафсил маълумот "
"учун, <a href=\"#replication\">репликация бўлими</a>га киринг."
-#: server_status.php:383
+#: server_status.php:494
msgid ""
"Server traffic: These tables show the network traffic statistics of "
"this MySQL server since its startup."
@@ -6064,11 +6076,11 @@ msgstr ""
"Трафик: MySQL-сервер ишга туширилгандан вақтдан бошлаб тармоқ трафики "
"статистикаси."
-#: server_status.php:388
+#: server_status.php:499
msgid "Traffic"
msgstr "Трафик"
-#: server_status.php:388
+#: server_status.php:499
msgid ""
"On a busy server, the byte counters may overrun, so those statistics as "
"reported by the MySQL server may be incorrect."
@@ -6076,36 +6088,36 @@ msgstr ""
"Юқори юкламага эга бўлган серверларда ҳисоблагич тўлиб қолиши мумкин, шунинг "
"учун, MySQL сервери берган статистик маълумотлар нотўғри бўлиши мумкин."
-#: server_status.php:389 server_status.php:434 server_status.php:497
-#: server_status.php:555
+#: server_status.php:500 server_status.php:545 server_status.php:608
+#: server_status.php:666
msgid "per hour"
msgstr "соатига"
-#: server_status.php:394
+#: server_status.php:505
msgid "Received"
msgstr "Қабул қилинди"
-#: server_status.php:404
+#: server_status.php:515
msgid "Sent"
msgstr "Юборилди"
-#: server_status.php:433
+#: server_status.php:544
msgid "Connections"
msgstr "Уланишлар"
-#: server_status.php:440
+#: server_status.php:551
msgid "max. concurrent connections"
msgstr "Максимал уланишлар сони "
-#: server_status.php:447
+#: server_status.php:558
msgid "Failed attempts"
msgstr "Муваффақиятсиз уринишлар сони: "
-#: server_status.php:461
+#: server_status.php:572
msgid "Aborted"
msgstr "Узилди"
-#: server_status.php:490
+#: server_status.php:601
#, php-format
msgid ""
"Query statistics: Since its startup, %s queries have been sent to the "
@@ -6114,19 +6126,19 @@ msgstr ""
"Сўровлар статискаси: ишга туширилгандан вақтдан бошлаб серверга юборилган "
"сўровлар сони - \"%s\"."
-#: server_status.php:498
+#: server_status.php:609
msgid "per minute"
msgstr "минутига"
-#: server_status.php:499
+#: server_status.php:610
msgid "per second"
msgstr "секундига"
-#: server_status.php:554
+#: server_status.php:665
msgid "Query type"
msgstr "Сўров тури"
-#: server_status.php:721
+#: server_status.php:832
msgid "Replication status"
msgstr "Репликация статуси"
diff --git a/po/uz@latin.po b/po/uz@latin.po
index c778a3a93..9218941b1 100755
--- a/po/uz@latin.po
+++ b/po/uz@latin.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-06-04 16:07-0400\n"
+"POT-Creation-Date: 2010-06-08 12:32-0400\n"
"PO-Revision-Date: 2010-03-12 09:20+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: uzbek_latin \n"
@@ -14,11 +14,11 @@ msgstr ""
"X-Generator: Translate Toolkit 1.5.3\n"
#: browse_foreigners.php:38 browse_foreigners.php:59
-#: libraries/display_tbl.lib.php:417 server_privileges.php:1475
+#: libraries/display_tbl.lib.php:417 server_privileges.php:1514
msgid "Show all"
msgstr "Barchasini ko‘rsatish"
-#: browse_foreigners.php:82 libraries/common.lib.php:2304
+#: browse_foreigners.php:82 libraries/common.lib.php:2313
#: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:394
#: libraries/export/pdf.php:147 pdf_schema.php:283 pdf_schema.php:1123
#: pdf_schema.php:1139
@@ -37,8 +37,8 @@ msgstr ""
#: browse_foreigners.php:150 db_structure.php:79 db_structure.php:80
#: db_structure.php:91 db_structure.php:93 db_structure.php:104
-#: db_structure.php:106 libraries/common.lib.php:2822
-#: libraries/common.lib.php:2829 libraries/db_links.inc.php:75
+#: db_structure.php:106 libraries/common.lib.php:2831
+#: libraries/common.lib.php:2838 libraries/db_links.inc.php:75
#: libraries/tbl_links.inc.php:63
msgid "Search"
msgstr "Qidirish"
@@ -48,7 +48,7 @@ msgstr "Qidirish"
#: db_structure.php:567 js/messages.php:48 libraries/Config.class.php:1046
#: libraries/Theme_Manager.class.php:311
#: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719
-#: libraries/common.lib.php:1333 libraries/common.lib.php:2279
+#: libraries/common.lib.php:1335 libraries/common.lib.php:2288
#: libraries/display_change_password.lib.php:82
#: libraries/display_create_table.lib.php:63
#: libraries/display_export.lib.php:275 libraries/display_import.lib.php:276
@@ -59,9 +59,9 @@ msgstr "Qidirish"
#: libraries/sql_query_form.lib.php:552 libraries/tbl_properties.inc.php:782
#: main.php:128 navigation.php:237 pdf_pages.php:292 pdf_pages.php:328
#: pdf_pages.php:530 pmd_pdf.php:116 server_binlog.php:142
-#: server_privileges.php:625 server_privileges.php:1585
-#: server_privileges.php:1932 server_privileges.php:1979
-#: server_privileges.php:2018 server_replication.php:235
+#: server_privileges.php:664 server_privileges.php:1624
+#: server_privileges.php:1971 server_privileges.php:2018
+#: server_privileges.php:2057 server_replication.php:235
#: server_replication.php:318 server_replication.php:341
#: server_synchronize.php:1209 tbl_change.php:330 tbl_change.php:1174
#: tbl_change.php:1211 tbl_indexes.php:254 tbl_operations.php:265
@@ -79,7 +79,7 @@ msgstr "Indeks nomi"
#: browse_foreigners.php:169 browse_foreigners.php:171
#: server_collations.php:55 server_collations.php:67 server_engines.php:59
-#: server_status.php:628
+#: server_status.php:739
msgid "Description"
msgstr "Tavsifi"
@@ -120,7 +120,7 @@ msgstr "Maydon nomlari"
#: libraries/db_structure.lib.php:60 libraries/export/htmlword.php:245
#: libraries/export/latex.php:360 libraries/export/odt.php:297
#: libraries/export/texytext.php:234 libraries/tbl_properties.inc.php:100
-#: pdf_schema.php:1263 pdf_schema.php:1284 server_privileges.php:2031
+#: pdf_schema.php:1263 pdf_schema.php:1284 server_privileges.php:2070
#: tbl_change.php:287 tbl_change.php:314 tbl_printview.php:143
#: tbl_printview.php:313 tbl_select.php:136 tbl_structure.php:178
#: tbl_structure.php:659 tbl_tracking.php:274 tbl_tracking.php:321
@@ -164,9 +164,9 @@ msgstr "Izohlar"
#: libraries/Index.class.php:386 libraries/export/htmlword.php:322
#: libraries/export/latex.php:430 libraries/export/odt.php:368
#: libraries/export/texytext.php:311 libraries/mult_submits.inc.php:263
-#: pdf_schema.php:1344 server_privileges.php:1529 server_privileges.php:1540
-#: server_privileges.php:1850 server_privileges.php:1855
-#: server_privileges.php:2148 sql.php:132 sql.php:194 tbl_printview.php:229
+#: pdf_schema.php:1344 server_privileges.php:1568 server_privileges.php:1579
+#: server_privileges.php:1889 server_privileges.php:1894
+#: server_privileges.php:2187 sql.php:132 sql.php:194 tbl_printview.php:229
#: tbl_structure.php:350 tbl_tracking.php:337 tbl_tracking.php:342
msgid "No"
msgstr "Yo‘q"
@@ -180,9 +180,9 @@ msgstr "Yo‘q"
#: libraries/mult_submits.inc.php:101 libraries/mult_submits.inc.php:106
#: libraries/mult_submits.inc.php:111 libraries/mult_submits.inc.php:262
#: libraries/mult_submits.inc.php:273 pdf_schema.php:1344
-#: server_databases.php:64 server_privileges.php:1526
-#: server_privileges.php:1540 server_privileges.php:1850
-#: server_privileges.php:1853 server_privileges.php:2148 sql.php:193
+#: server_databases.php:64 server_privileges.php:1565
+#: server_privileges.php:1579 server_privileges.php:1889
+#: server_privileges.php:1892 server_privileges.php:2187 sql.php:193
#: tbl_printview.php:229 tbl_structure.php:40 tbl_structure.php:350
#: tbl_tracking.php:335 tbl_tracking.php:340
msgid "Yes"
@@ -279,7 +279,7 @@ msgstr "Nusxa olingan ma`lumotlar bazasiga o‘tish"
msgid "BLOB Repository"
msgstr "BLOB ombori"
-#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1350
+#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1352
#: libraries/server_links.inc.php:49 server_processlist.php:59
#: tbl_tracking.php:596 test/theme.php:101
msgid "Status"
@@ -342,8 +342,8 @@ msgstr "PDF-sahifalarni tahrirlash"
#: db_printview.php:104 db_tracking.php:72 db_tracking.php:157
#: libraries/db_structure.lib.php:46 libraries/export/xml.php:328
-#: libraries/header.inc.php:126 pdf_pages.php:424 server_privileges.php:1626
-#: server_privileges.php:1682 server_privileges.php:1946
+#: libraries/header.inc.php:126 pdf_pages.php:424 server_privileges.php:1665
+#: server_privileges.php:1721 server_privileges.php:1985
#: server_synchronize.php:423 server_synchronize.php:866 tbl_tracking.php:592
#: test/theme.php:75
msgid "Table"
@@ -444,7 +444,7 @@ msgstr "O‘chirish"
#: db_qbe.php:370 db_qbe.php:451 db_qbe.php:522 db_qbe.php:553
#: libraries/display_import.lib.php:166 libraries/tbl_properties.inc.php:779
-#: server_privileges.php:258 tbl_change.php:1031 tbl_indexes.php:250
+#: server_privileges.php:297 tbl_change.php:1031 tbl_indexes.php:250
#: tbl_select.php:288
msgid "Or"
msgstr "Yoki"
@@ -478,7 +478,7 @@ msgstr "Jadvallarni ishlatish"
msgid "SQL query on database %s:"
msgstr "\"%s\" ma`lumotlar bazasiga SQL-so‘rov: "
-#: db_qbe.php:934 libraries/common.lib.php:1223
+#: db_qbe.php:934 libraries/common.lib.php:1225
msgid "Submit Query"
msgstr "so‘rovni bajarish"
@@ -517,7 +517,7 @@ msgstr "\"%s\" jadvalida o‘xshashliklar soni \"%s\" ta"
#: db_search.php:267 db_structure.php:77 db_structure.php:78
#: db_structure.php:90 db_structure.php:92 db_structure.php:103
-#: db_structure.php:105 libraries/common.lib.php:2824
+#: db_structure.php:105 libraries/common.lib.php:2833
#: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50
#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:467
msgid "Browse"
@@ -565,26 +565,26 @@ msgstr "Quyidagi maydon(lar)da qidirish: "
#: db_structure.php:81 db_structure.php:82 db_structure.php:94
#: db_structure.php:95 db_structure.php:107 db_structure.php:108
-#: libraries/common.lib.php:2823 libraries/sql_query_form.lib.php:334
+#: libraries/common.lib.php:2832 libraries/sql_query_form.lib.php:334
#: libraries/sql_query_form.lib.php:337 libraries/tbl_links.inc.php:76
msgid "Insert"
msgstr "Qo‘yish"
#: db_structure.php:83 db_structure.php:96 db_structure.php:109
-#: libraries/common.lib.php:2820 libraries/common.lib.php:2827
+#: libraries/common.lib.php:2829 libraries/common.lib.php:2836
#: libraries/db_links.inc.php:63 libraries/export/htmlword.php:23
#: libraries/export/latex.php:33 libraries/export/latex.php:337
#: libraries/export/odt.php:32 libraries/export/sql.php:60
#: libraries/export/texytext.php:23 libraries/import.lib.php:1104
#: libraries/tbl_links.inc.php:56 pmd_general.php:134
-#: server_privileges.php:554 server_replication.php:315 tbl_tracking.php:269
+#: server_privileges.php:593 server_replication.php:315 tbl_tracking.php:269
msgid "Structure"
msgstr "Tuzilishi"
#: db_structure.php:84 db_structure.php:85 db_structure.php:97
#: db_structure.php:98 db_structure.php:110 db_structure.php:111
#: db_structure.php:545 db_structure.php:546 db_tracking.php:91
-#: libraries/Index.class.php:483 libraries/common.lib.php:1654
+#: libraries/Index.class.php:483 libraries/common.lib.php:1656
#: libraries/db_links.inc.php:100 libraries/mult_submits.inc.php:36
#: libraries/mult_submits.inc.php:73 libraries/tbl_links.inc.php:127
#: server_databases.php:352 tbl_structure.php:27 tbl_structure.php:151
@@ -594,7 +594,7 @@ msgstr "O‘chirish"
#: db_structure.php:86 db_structure.php:87 db_structure.php:99
#: db_structure.php:100 db_structure.php:112 db_structure.php:113
-#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1653
+#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1655
#: libraries/mult_submits.inc.php:39 libraries/tbl_links.inc.php:105
msgid "Empty"
msgstr "Tozalash"
@@ -638,7 +638,7 @@ msgstr "Namoyish"
#: db_structure.php:485 libraries/db_structure.lib.php:49
#: libraries/server_links.inc.php:70 server_replication.php:33
-#: server_replication.php:164 server_status.php:258
+#: server_replication.php:164 server_status.php:369
msgid "Replication"
msgstr "Replikatsiya (zaxira nusxa ko‘chirish)"
@@ -654,20 +654,20 @@ msgstr "\"%s\" - MySQL serveridagi andozaviy ma`lumotlar jadvali turi."
#: db_structure.php:524 db_structure.php:541 db_structure.php:542
#: libraries/display_tbl.lib.php:2081 libraries/display_tbl.lib.php:2086
#: libraries/mult_submits.inc.php:16 server_databases.php:346
-#: server_databases.php:351 server_privileges.php:1557 tbl_structure.php:455
+#: server_databases.php:351 server_privileges.php:1596 tbl_structure.php:455
#: tbl_structure.php:464
msgid "With selected:"
msgstr "Belgilanganlarni: "
#: db_structure.php:527 libraries/display_tbl.lib.php:2076
-#: server_databases.php:348 server_privileges.php:530
-#: server_privileges.php:1560 tbl_structure.php:458
+#: server_databases.php:348 server_privileges.php:569
+#: server_privileges.php:1599 tbl_structure.php:458
msgid "Check All"
msgstr "Barchasini belgilash"
#: db_structure.php:531 libraries/display_tbl.lib.php:2077
#: libraries/replication_gui.lib.php:33 server_databases.php:350
-#: server_privileges.php:533 server_privileges.php:1564 tbl_structure.php:462
+#: server_privileges.php:572 server_privileges.php:1603 tbl_structure.php:462
msgid "Uncheck All"
msgstr "Belgilashni bekor qilish"
@@ -705,7 +705,7 @@ msgstr "Jadval tahlili"
#: libraries/display_export.lib.php:83 libraries/display_tbl.lib.php:2094
#: libraries/display_tbl.lib.php:2225 libraries/mult_submits.inc.php:62
#: libraries/server_links.inc.php:84 libraries/tbl_links.inc.php:82
-#: pmd_pdf.php:84 pmd_pdf.php:109 server_privileges.php:1341
+#: pmd_pdf.php:84 pmd_pdf.php:109 server_privileges.php:1380
#: setup/frames/menu.inc.php:22 tbl_row_action.php:59
msgid "Export"
msgstr "Eksport"
@@ -723,8 +723,8 @@ msgstr "Kuzatilgan jadvallar"
#: libraries/export/sql.php:342 libraries/export/texytext.php:84
#: libraries/export/xml.php:255 libraries/header.inc.php:106
#: libraries/header_printview.inc.php:58 server_databases.php:169
-#: server_privileges.php:1621 server_privileges.php:1682
-#: server_privileges.php:1940 server_processlist.php:56
+#: server_privileges.php:1660 server_privileges.php:1721
+#: server_privileges.php:1979 server_processlist.php:56
#: server_synchronize.php:1179 server_synchronize.php:1183
#: tbl_tracking.php:591 test/theme.php:65
msgid "Database"
@@ -744,8 +744,8 @@ msgstr "Yangilandi"
#: db_tracking.php:77 libraries/Index.class.php:440
#: libraries/db_structure.lib.php:53 server_databases.php:203
-#: server_privileges.php:1503 server_privileges.php:1686
-#: server_privileges.php:2034 tbl_structure.php:187
+#: server_privileges.php:1542 server_privileges.php:1725
+#: server_privileges.php:2073 tbl_structure.php:187
msgid "Action"
msgstr "Amal"
@@ -956,11 +956,11 @@ msgstr "Xost nomi bo‘sh!"
msgid "The user name is empty!"
msgstr "Foydalanuvchi nomi belgilanmagan!"
-#: js/messages.php:44 server_privileges.php:1197 user_password.php:70
+#: js/messages.php:44 server_privileges.php:1236 user_password.php:70
msgid "The password is empty!"
msgstr "Parol belgilanmagan!"
-#: js/messages.php:45 server_privileges.php:1195 user_password.php:73
+#: js/messages.php:45 server_privileges.php:1234 user_password.php:73
msgid "The passwords aren't the same!"
msgstr "Kiritilgan parollar bir xil emas!"
@@ -1040,8 +1040,8 @@ msgid "Prev"
msgstr "Orqaga"
#. l10n: Display text for next month link in calendar
-#: js/messages.php:77 libraries/common.lib.php:2344
-#: libraries/common.lib.php:2347 libraries/display_tbl.lib.php:338
+#: js/messages.php:77 libraries/common.lib.php:2353
+#: libraries/common.lib.php:2356 libraries/display_tbl.lib.php:338
#: server_binlog.php:205 server_binlog.php:207 tbl_printview.php:424
#: tbl_structure.php:801
msgid "Next"
@@ -1117,27 +1117,27 @@ msgid "December"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:97 libraries/common.lib.php:1555
+#: js/messages.php:97 libraries/common.lib.php:1557
msgid "Jan"
msgstr "Yanv"
#. l10n: Short month name
-#: js/messages.php:99 libraries/common.lib.php:1557
+#: js/messages.php:99 libraries/common.lib.php:1559
msgid "Feb"
msgstr "Fev"
#. l10n: Short month name
-#: js/messages.php:101 libraries/common.lib.php:1559
+#: js/messages.php:101 libraries/common.lib.php:1561
msgid "Mar"
msgstr "Mar"
#. l10n: Short month name
-#: js/messages.php:103 libraries/common.lib.php:1561
+#: js/messages.php:103 libraries/common.lib.php:1563
msgid "Apr"
msgstr "Apr"
#. l10n: Short month name
-#: js/messages.php:105 libraries/common.lib.php:1563
+#: js/messages.php:105 libraries/common.lib.php:1565
#, fuzzy
#| msgid "May"
msgctxt "Short month name"
@@ -1145,37 +1145,37 @@ msgid "May"
msgstr "May"
#. l10n: Short month name
-#: js/messages.php:107 libraries/common.lib.php:1565
+#: js/messages.php:107 libraries/common.lib.php:1567
msgid "Jun"
msgstr "Iyun"
#. l10n: Short month name
-#: js/messages.php:109 libraries/common.lib.php:1567
+#: js/messages.php:109 libraries/common.lib.php:1569
msgid "Jul"
msgstr "Iyul"
#. l10n: Short month name
-#: js/messages.php:111 libraries/common.lib.php:1569
+#: js/messages.php:111 libraries/common.lib.php:1571
msgid "Aug"
msgstr "Avg"
#. l10n: Short month name
-#: js/messages.php:113 libraries/common.lib.php:1571
+#: js/messages.php:113 libraries/common.lib.php:1573
msgid "Sep"
msgstr "Sen"
#. l10n: Short month name
-#: js/messages.php:115 libraries/common.lib.php:1573
+#: js/messages.php:115 libraries/common.lib.php:1575
msgid "Oct"
msgstr "Okt"
#. l10n: Short month name
-#: js/messages.php:117 libraries/common.lib.php:1575
+#: js/messages.php:117 libraries/common.lib.php:1577
msgid "Nov"
msgstr "Noya"
#. l10n: Short month name
-#: js/messages.php:119 libraries/common.lib.php:1577
+#: js/messages.php:119 libraries/common.lib.php:1579
msgid "Dec"
msgstr "Dek"
@@ -1216,37 +1216,37 @@ msgid "Saturday"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:132 libraries/common.lib.php:1580
+#: js/messages.php:132 libraries/common.lib.php:1582
msgid "Sun"
msgstr "Yaksh"
#. l10n: Short week day name
-#: js/messages.php:134 libraries/common.lib.php:1582
+#: js/messages.php:134 libraries/common.lib.php:1584
msgid "Mon"
msgstr "Dush"
#. l10n: Short week day name
-#: js/messages.php:136 libraries/common.lib.php:1584
+#: js/messages.php:136 libraries/common.lib.php:1586
msgid "Tue"
msgstr "Sesh"
#. l10n: Short week day name
-#: js/messages.php:138 libraries/common.lib.php:1586
+#: js/messages.php:138 libraries/common.lib.php:1588
msgid "Wed"
msgstr "Chor"
#. l10n: Short week day name
-#: js/messages.php:140 libraries/common.lib.php:1588
+#: js/messages.php:140 libraries/common.lib.php:1590
msgid "Thu"
msgstr "Pay"
#. l10n: Short week day name
-#: js/messages.php:142 libraries/common.lib.php:1590
+#: js/messages.php:142 libraries/common.lib.php:1592
msgid "Fri"
msgstr "Jum"
#. l10n: Short week day name
-#: js/messages.php:144 libraries/common.lib.php:1592
+#: js/messages.php:144 libraries/common.lib.php:1594
msgid "Sat"
msgstr "Shan"
@@ -1397,7 +1397,7 @@ msgid "Comment"
msgstr "Izoh"
#: libraries/Index.class.php:466 libraries/common.lib.php:616
-#: libraries/common.lib.php:1199 libraries/display_tbl.lib.php:1117
+#: libraries/common.lib.php:1201 libraries/display_tbl.lib.php:1117
#: libraries/import.lib.php:1087 libraries/import.lib.php:1111
#: pdf_pages.php:285 setup/frames/index.inc.php:124
#: setup/lib/messages.inc.php:352 tbl_row_action.php:69
@@ -1421,7 +1421,7 @@ msgid ""
msgstr " %1$s va %2$s indekslari bir xil, ulardan birini o‘chirish mumkin."
#: libraries/List_Database.class.php:431 libraries/server_links.inc.php:41
-#: server_databases.php:88 server_privileges.php:1621
+#: server_databases.php:88 server_privileges.php:1660
#: setup/lib/messages.inc.php:110 test/theme.php:93
msgid "Databases"
msgstr "Ma`lumotlar bazalari"
@@ -1766,7 +1766,7 @@ msgid "Documentation"
msgstr "Dokumentatsiya"
#: libraries/common.lib.php:595 libraries/header_printview.inc.php:61
-#: server_processlist.php:60 server_status.php:247
+#: server_processlist.php:60 server_status.php:358
msgid "SQL query"
msgstr "SQL so‘rovi"
@@ -1782,132 +1782,132 @@ msgstr "So‘rov tahlili"
msgid "Skip Explain SQL"
msgstr "Tahlil kerak emas"
-#: libraries/common.lib.php:1212
+#: libraries/common.lib.php:1214
msgid "Without PHP Code"
msgstr "PHP-kod olib tashlash"
-#: libraries/common.lib.php:1215 setup/lib/messages.inc.php:355
+#: libraries/common.lib.php:1217 setup/lib/messages.inc.php:355
msgid "Create PHP Code"
msgstr "PHP-kod"
-#: libraries/common.lib.php:1233 server_status.php:341
+#: libraries/common.lib.php:1235 server_status.php:452
#: setup/lib/messages.inc.php:354
msgid "Refresh"
msgstr "Yangilash"
-#: libraries/common.lib.php:1242
+#: libraries/common.lib.php:1244
msgid "Skip Validate SQL"
msgstr "SQL sintaksisi tekshiruvini olib tashlash"
-#: libraries/common.lib.php:1245 setup/lib/messages.inc.php:356 sql.php:518
+#: libraries/common.lib.php:1247 setup/lib/messages.inc.php:356 sql.php:518
msgid "Validate SQL"
msgstr "SQL to‘g‘riligini tekshirish"
-#: libraries/common.lib.php:1276
+#: libraries/common.lib.php:1278
msgid "Inline edit of this query"
msgstr ""
-#: libraries/common.lib.php:1278
+#: libraries/common.lib.php:1280
#, fuzzy
#| msgid "Engines"
msgid "Inline"
msgstr "Jadval turlari"
-#: libraries/common.lib.php:1332 libraries/common.lib.php:1347
+#: libraries/common.lib.php:1334 libraries/common.lib.php:1349
msgid "Profiling"
msgstr "Profillashtirish"
-#: libraries/common.lib.php:1351 libraries/tbl_triggers.lib.php:28
+#: libraries/common.lib.php:1353 libraries/tbl_triggers.lib.php:28
#: server_processlist.php:58
msgid "Time"
msgstr "Vaqt"
#. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "B"
msgstr "Bayt"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "KiB"
msgstr "KB"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "MiB"
msgstr "MB"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "GiB"
msgstr "GB"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "TiB"
msgstr "TB"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "PiB"
msgstr "PB"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "EiB"
msgstr "EB"
#. l10n: Thousands separator
-#: libraries/common.lib.php:1417
+#: libraries/common.lib.php:1419
msgid ","
msgstr " "
#. l10n: Decimal separator
-#: libraries/common.lib.php:1419
+#: libraries/common.lib.php:1421
msgid "."
msgstr ","
#. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string
-#: libraries/common.lib.php:1596
+#: libraries/common.lib.php:1598
#: libraries/transformations/text_plain__dateformat.inc.php:34
msgid "%B %d, %Y at %I:%M %p"
msgstr "%d %B %Y y., %H:%M"
-#: libraries/common.lib.php:1898
+#: libraries/common.lib.php:1907
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "\"%s\" kun, \"%s\" soat, \"%s\" minut va \"%s\" sekund"
-#: libraries/common.lib.php:2313 libraries/common.lib.php:2316
-#: libraries/display_tbl.lib.php:290 server_status.php:608
+#: libraries/common.lib.php:2322 libraries/common.lib.php:2325
+#: libraries/display_tbl.lib.php:290 server_status.php:719
msgid "Begin"
msgstr "Boshi"
-#: libraries/common.lib.php:2314 libraries/common.lib.php:2317
+#: libraries/common.lib.php:2323 libraries/common.lib.php:2326
#: libraries/display_tbl.lib.php:291 server_binlog.php:168
#: server_binlog.php:170
msgid "Previous"
msgstr "Orqaga"
-#: libraries/common.lib.php:2345 libraries/common.lib.php:2348
+#: libraries/common.lib.php:2354 libraries/common.lib.php:2357
#: libraries/display_tbl.lib.php:353
msgid "End"
msgstr "Oxiri"
-#: libraries/common.lib.php:2421
+#: libraries/common.lib.php:2430
#, php-format
msgid "Jump to database "%s"."
msgstr " \"%s\" ma`lumotlar bazasiga o‘tish"
-#: libraries/common.lib.php:2441
+#: libraries/common.lib.php:2450
#, 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/common.lib.php:2821 libraries/common.lib.php:2828
+#: libraries/common.lib.php:2830 libraries/common.lib.php:2837
#: libraries/db_links.inc.php:68 libraries/export/sql.php:25
#: libraries/import/sql.php:18 libraries/server_links.inc.php:45
#: libraries/tbl_links.inc.php:60 querywindow.php:99 test/theme.php:97
msgid "SQL"
msgstr "SQL"
-#: libraries/common.lib.php:2830 libraries/db_links.inc.php:104
+#: libraries/common.lib.php:2839 libraries/db_links.inc.php:104
#: libraries/tbl_links.inc.php:95 libraries/tbl_links.inc.php:117
#: view_operations.php:89
msgid "Operations"
@@ -1963,8 +1963,8 @@ msgid "Import"
msgstr "Import"
#: libraries/db_links.inc.php:111 libraries/server_links.inc.php:66
-#: server_privileges.php:72 server_privileges.php:1683
-#: server_privileges.php:2032 test/theme.php:117
+#: server_privileges.php:111 server_privileges.php:1722
+#: server_privileges.php:2071 test/theme.php:117
msgid "Privileges"
msgstr "Privilegiyalar"
@@ -2014,22 +2014,22 @@ msgid "Change password"
msgstr "Parolni o‘zgartirish"
#: libraries/display_change_password.lib.php:35
-#: libraries/replication_gui.lib.php:345 server_privileges.php:768
+#: libraries/replication_gui.lib.php:345 server_privileges.php:807
msgid "No Password"
msgstr "Parol yo‘q"
#: libraries/display_change_password.lib.php:41
#: libraries/replication_gui.lib.php:59 libraries/replication_gui.lib.php:60
#: libraries/replication_gui.lib.php:335 libraries/replication_gui.lib.php:339
-#: libraries/replication_gui.lib.php:349 server_privileges.php:757
-#: server_privileges.php:761 server_privileges.php:772
-#: server_privileges.php:1499 server_synchronize.php:1175
+#: libraries/replication_gui.lib.php:349 server_privileges.php:796
+#: server_privileges.php:800 server_privileges.php:811
+#: server_privileges.php:1538 server_synchronize.php:1175
msgid "Password"
msgstr "Parol"
#: libraries/display_change_password.lib.php:46
#: libraries/replication_gui.lib.php:353 libraries/replication_gui.lib.php:356
-#: server_privileges.php:776 server_privileges.php:779
+#: server_privileges.php:815 server_privileges.php:818
msgid "Re-type"
msgstr "Tasdiqlash"
@@ -2044,12 +2044,12 @@ msgid "MySQL 4.0 compatible"
msgstr "MySQL 4.0 ga mos"
#: libraries/display_change_password.lib.php:72
-#: libraries/replication_gui.lib.php:360 server_privileges.php:783
+#: libraries/replication_gui.lib.php:360 server_privileges.php:822
msgid "Generate Password"
msgstr "Parol o‘rnatish"
#: libraries/display_change_password.lib.php:75
-#: libraries/replication_gui.lib.php:363 server_privileges.php:786
+#: libraries/replication_gui.lib.php:363 server_privileges.php:825
msgid "Generate"
msgstr "Generatsiya qilish"
@@ -2062,8 +2062,8 @@ msgstr "Yangi ma`lumotlar bazasi tuzish"
msgid "Create"
msgstr "Tuzish"
-#: libraries/display_create_database.lib.php:40 server_privileges.php:74
-#: server_privileges.php:1388 server_replication.php:35
+#: libraries/display_create_database.lib.php:40 server_privileges.php:113
+#: server_privileges.php:1427 server_replication.php:35
msgid "No Privileges"
msgstr "Privilegiyalar yo‘q"
@@ -2156,7 +2156,7 @@ msgstr "Siqish"
#: libraries/display_export.lib.php:240 libraries/display_import.lib.php:197
#: libraries/display_import.lib.php:210 libraries/display_tbl.lib.php:530
#: libraries/export/sql.php:868 libraries/tbl_properties.inc.php:575
-#: server_privileges.php:1836 server_processlist.php:75
+#: server_privileges.php:1875 server_processlist.php:75
msgid "None"
msgstr "Yo‘q"
@@ -2494,7 +2494,7 @@ msgstr ""
msgid "Buffer Pool"
msgstr "Bufer puli"
-#: libraries/engines/innodb.lib.php:145 server_status.php:306
+#: libraries/engines/innodb.lib.php:145 server_status.php:417
msgid "InnoDB Status"
msgstr "InnoDB ahvoli"
@@ -2503,8 +2503,8 @@ msgid "Buffer Pool Usage"
msgstr "Ishlatilish"
#: libraries/engines/innodb.lib.php:194 server_databases.php:137
-#: server_databases.php:305 server_status.php:414 server_status.php:475
-#: server_status.php:496 tbl_printview.php:351 tbl_structure.php:696
+#: server_databases.php:305 server_status.php:525 server_status.php:586
+#: server_status.php:607 tbl_printview.php:351 tbl_structure.php:696
msgid "Total"
msgstr "Jami"
@@ -2868,7 +2868,7 @@ msgstr "Microsoft Word 2000"
#: libraries/export/latex.php:201 libraries/export/odt.php:48
#: libraries/export/sql.php:106 libraries/export/sql.php:868
#: libraries/export/texytext.php:27 server_databases.php:127
-#: server_privileges.php:537 server_replication.php:316 tbl_printview.php:317
+#: server_privileges.php:576 server_replication.php:316 tbl_printview.php:317
#: tbl_structure.php:665
msgid "Data"
msgstr "Ma`lumotlar"
@@ -2918,9 +2918,9 @@ msgstr "MIME turi"
#: libraries/export/xml.php:102 libraries/header_printview.inc.php:57
#: libraries/replication_gui.lib.php:63 libraries/replication_gui.lib.php:174
#: libraries/replication_gui.lib.php:269 libraries/replication_gui.lib.php:272
-#: libraries/replication_gui.lib.php:329 server_privileges.php:692
-#: server_privileges.php:695 server_privileges.php:751
-#: server_privileges.php:1498 server_privileges.php:2030
+#: libraries/replication_gui.lib.php:329 server_privileges.php:731
+#: server_privileges.php:734 server_privileges.php:790
+#: server_privileges.php:1537 server_privileges.php:2069
#: server_processlist.php:55 server_synchronize.php:1159
msgid "Host"
msgstr "Xost"
@@ -3282,887 +3282,6 @@ msgstr "Yo‘q"
msgid "Convert to Kana"
msgstr ""
-#. l10n: Text direction, use either ltr or rtl
-#: libraries/messages.inc.php:19
-msgid "ltr"
-msgstr "ltr"
-
-#: libraries/messages.inc.php:21
-msgid "Content of table __TABLE__"
-msgstr " __TABLE__ jadvalining mundarijasi"
-
-#: libraries/messages.inc.php:22
-msgid "(continued)"
-msgstr "(davomi)"
-
-#: libraries/messages.inc.php:23
-msgid "Structure of table __TABLE__"
-msgstr " __TABLE__ jadvalining tuzilishi"
-
-#: libraries/messages.inc.php:25 server_privileges.php:227
-msgid "Includes all privileges except GRANT."
-msgstr "GRANT dan tashqari barcha privilegiyalarni o‘z ichiga oladi"
-
-#: libraries/messages.inc.php:26 server_privileges.php:153
-#: server_privileges.php:476
-msgid "Allows altering the structure of existing tables."
-msgstr "Mavjud jadvallarning tuzilishini o‘zgartirishga ruxsat beradi"
-
-#: libraries/messages.inc.php:27 server_privileges.php:169
-#: server_privileges.php:482
-msgid "Allows altering and dropping stored routines."
-msgstr "Saqlanadigan muolajalarni o‘zgartirish va o‘chirishga ruxsat beradi"
-
-#: libraries/messages.inc.php:28 server_privileges.php:145
-#: server_privileges.php:475
-msgid "Allows creating new databases and tables."
-msgstr "Yangi ma`lumotlar bazalari va jadvallar tuzishga ruxsat beradi"
-
-#: libraries/messages.inc.php:29 server_privileges.php:168
-#: server_privileges.php:481
-msgid "Allows creating stored routines."
-msgstr "Saqlanadigan muolajalar tuzishga ruxsat beradi"
-
-#: libraries/messages.inc.php:30 server_privileges.php:475
-msgid "Allows creating new tables."
-msgstr "Yangi jadvallar tuzishga ruxsat beradi"
-
-#: libraries/messages.inc.php:31 server_privileges.php:156
-#: server_privileges.php:479
-msgid "Allows creating temporary tables."
-msgstr "Vaqtinchalik jadvallar tuzishga ruxsat beradi"
-
-#: libraries/messages.inc.php:32 server_privileges.php:170
-#: server_privileges.php:515
-msgid "Allows creating, dropping and renaming user accounts."
-msgstr ""
-"Foydalanuvchilar hisobini qo‘shish, o‘chirish va o‘zgartirishga ruxsat beradi"
-
-#: libraries/messages.inc.php:33 server_privileges.php:160
-#: server_privileges.php:164 server_privileges.php:487
-#: server_privileges.php:491
-msgid "Allows creating new views."
-msgstr "Yangi namoyishlar tuzish(CREATE VIEW)ga ruxsat beradi"
-
-#: libraries/messages.inc.php:34 server_privileges.php:144
-#: server_privileges.php:467
-msgid "Allows deleting data."
-msgstr "Ma`lumotlarni o‘chirishga ruxsat beradi"
-
-#: libraries/messages.inc.php:35 server_privileges.php:146
-#: server_privileges.php:478
-msgid "Allows dropping databases and tables."
-msgstr "Ma`lumotlar bazalarini va jadvallarni o‘chirishga ruxsat beradi"
-
-#: libraries/messages.inc.php:36 server_privileges.php:478
-msgid "Allows dropping tables."
-msgstr "Jadvallarni o‘chirishga rux`sat beradi"
-
-#: libraries/messages.inc.php:37 server_privileges.php:161
-#: server_privileges.php:495
-msgid "Allows to set up events for the event scheduler"
-msgstr "Kechiktirilgan hodisalarni sozlashga ruxsat beradi"
-
-#: libraries/messages.inc.php:38 server_privileges.php:171
-#: server_privileges.php:483
-msgid "Allows executing stored routines."
-msgstr "Saqlanadigan muolajalarni bajarishga ruxsat beradi"
-
-#: libraries/messages.inc.php:39 server_privileges.php:150
-#: server_privileges.php:470
-msgid "Allows importing data from and exporting data into files."
-msgstr "Ma`lumotlarni fayldan import va faylga eksport qilishga ruxsat beradi"
-
-#: libraries/messages.inc.php:40 server_privileges.php:501
-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/messages.inc.php:41 server_privileges.php:152
-#: server_privileges.php:477
-msgid "Allows creating and dropping indexes."
-msgstr "Indekslar qo‘shish va ularni o‘chirishga ruxsat beradi"
-
-#: libraries/messages.inc.php:42 server_privileges.php:142
-#: server_privileges.php:403 server_privileges.php:465
-msgid "Allows inserting and replacing data."
-msgstr "Ma`lumot qo‘yish va o‘zgartirishga ruxsat beradi"
-
-#: libraries/messages.inc.php:43 server_privileges.php:157
-#: server_privileges.php:510
-msgid "Allows locking tables for the current thread."
-msgstr "Joriy oqim uchun jadvalni blokirovku qilishga ruxsat beradi"
-
-#: libraries/messages.inc.php:44 server_privileges.php:607
-#: server_privileges.php:609
-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/messages.inc.php:45 server_privileges.php:595
-#: server_privileges.php:597
-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/messages.inc.php:46 server_privileges.php:601
-#: server_privileges.php:603
-msgid ""
-"Limits the number of commands that change any table or database the user may "
-"execute per hour."
-msgstr ""
-"Foydalanuvchi bir soat davomida bajarishi mumkin bo‘lgan biron-bir jadval "
-"yoki ma`lumotlar bazasini o‘zgartiradigan buyruqlar soni"
-
-#: libraries/messages.inc.php:47 server_privileges.php:613
-#: server_privileges.php:615
-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/messages.inc.php:48 server_privileges.php:149
-#: server_privileges.php:505
-msgid "Allows viewing processes of all users"
-msgstr "Barcha foydalanuvchilarning jarayonlarini ko‘rishga ruxsat beradi"
-
-#: libraries/messages.inc.php:49 server_privileges.php:151
-#: server_privileges.php:409 server_privileges.php:511
-msgid "Has no effect in this MySQL version."
-msgstr "MySQL-serverning ushbu versiyada bunday xususiyat mavjud emas!"
-
-#: libraries/messages.inc.php:50 server_privileges.php:147
-#: server_privileges.php:506
-msgid "Allows reloading server settings and flushing the server's caches."
-msgstr ""
-"Server sozlanishlarini qayta yuklashga va uning keshlarini tozalashga ruxsat "
-"beradi"
-
-#: libraries/messages.inc.php:51 server_privileges.php:159
-#: server_privileges.php:513
-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/messages.inc.php:52 server_privileges.php:158
-#: server_privileges.php:514
-msgid "Needed for the replication slaves."
-msgstr ""
-"Replikatsiya (zaxira nusxa ko‘chirish) vaqtida tobe serverlar uchun kerak"
-
-#: libraries/messages.inc.php:53 server_privileges.php:141
-#: server_privileges.php:400 server_privileges.php:464
-msgid "Allows reading data."
-msgstr "Ma`lumotlarni chaqirishga ruxsat beradi"
-
-#: libraries/messages.inc.php:54 server_privileges.php:154
-#: server_privileges.php:508
-msgid "Gives access to the complete list of databases."
-msgstr "Ma`lumotlar bazalarining to‘liq ro‘yxatiga ruxsat beradi"
-
-#: libraries/messages.inc.php:55 server_privileges.php:165
-#: server_privileges.php:167 server_privileges.php:480
-msgid "Allows performing SHOW CREATE VIEW queries."
-msgstr "Namoyish tuzadigan so‘rov(SHOW CREATE VIEW)ni bajarishga ruxsat beradi"
-
-#: libraries/messages.inc.php:56 server_privileges.php:148
-#: server_privileges.php:507
-msgid "Allows shutting down the server."
-msgstr "Server ishini yakunlashga ruxsat beradi"
-
-#: libraries/messages.inc.php:57 server_privileges.php:155
-#: server_privileges.php:504
-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 ""
-"Ulanishlar maksimal qiymatga yetganda ham ulanish o‘rnatishga ruxsat "
-"beradi. (Ko‘pgina administrativ vazifalarni bajarish uchun kerak, masalan, "
-"global o‘zgaruvchilar o‘rnatish yoki boshqa foydalanuvchi jarayonini "
-"o‘chirish)"
-
-#: libraries/messages.inc.php:58 server_privileges.php:162
-#: server_privileges.php:496
-msgid "Allows creating and dropping triggers"
-msgstr ""
-"Triggerlar (ma`lum shartlar bajarilganda avtomatik ishga tushadigan "
-"jarayonlar) tuzish va ularni o‘chirishga ruxsat beradi"
-
-#: libraries/messages.inc.php:59 server_privileges.php:143
-#: server_privileges.php:406 server_privileges.php:466
-msgid "Allows changing data."
-msgstr "Ma`lumotlarni o‘zgartirishga ruxsat beradi"
-
-#: libraries/messages.inc.php:60 server_privileges.php:221
-msgid "No privileges."
-msgstr "Privilegiyalar yo‘q"
-
-#: libraries/messages.inc.php:62
-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 ""
-"Binar jurnali keshini ishlatib, \"binlog_cache_size\" qiymatidan oshib, o‘z "
-"ichiga olgan SQL-jumlalari vaqtinchalik faylga saqlangan tranzaksiyalar soni."
-
-#: libraries/messages.inc.php:63
-msgid "The number of transactions that used the temporary binary log cache."
-msgstr "Binar jurnal keshini ishlatgan tranzaksiyalar soni."
-
-#: libraries/messages.inc.php:64
-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 "
-"to increase the tmp_table_size value to cause temporary tables to be memory-"
-"based instead of disk-based."
-msgstr ""
-"SQL-jumlalarini bajarayotgan vaqtda server tomonidan avtomatik tarzda "
-"tuzilgan va diskda saqlangan vaqtinchalik jadvallar soni. Agar ushbu qiymat "
-"katta bo‘lsa, vaqtinchalik jadvallar qattiq diskda emas, balki xotirada "
-"saqlanishini ta`minlash maqsadida tmp_table_size o‘zgaruvchisining qiymatini "
-"oshirish tavsiya etiladi."
-
-#: libraries/messages.inc.php:65
-msgid "How many temporary files mysqld has created."
-msgstr "MySQL serveri (mysqld) tomonidan tuzilgan vaqtinchalik fayllar soni."
-
-#: libraries/messages.inc.php:66
-msgid ""
-"The number of in-memory temporary tables created automatically by the server "
-"while executing statements."
-msgstr ""
-"Server tomonidan SQL-jumlalari bajarilayotgan vaqtda xotirada avtomatik "
-"tuzilgan vaqtinchalik jadvallar soni."
-
-#: libraries/messages.inc.php:67
-msgid ""
-"The number of rows written with INSERT DELAYED for which some error occurred "
-"(probably duplicate key)."
-msgstr ""
-"\"INSERT DELAYED\" so‘rovlarini qayta ishlash jarayonida yuz bergan xatolar "
-"(masalan, kalitlar takrorlanishi oqibatida) soni."
-
-#: libraries/messages.inc.php:68
-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/messages.inc.php:69
-msgid "The number of INSERT DELAYED rows written."
-msgstr ""
-"Ma`lumotlarni kechiktirib qo‘yish (\"INSERT DELAYED\") rejimida yozilgan "
-"qatorlar soni."
-
-#: libraries/messages.inc.php:70
-msgid "The number of executed FLUSH statements."
-msgstr "Bajarilgan \"FLUSH\" buyruqlar soni."
-
-#: libraries/messages.inc.php:71
-msgid "The number of internal COMMIT statements."
-msgstr "Ichki \"COMMIT\" buyruqlari soni."
-
-#: libraries/messages.inc.php:72
-msgid "The number of times a row was deleted from a table."
-msgstr "Jadvaldal yozuvlarni o‘chirish bo‘yicha sshrovlar soni."
-
-#: libraries/messages.inc.php:73
-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 ""
-"MySQL server ma`lum nom bilan belgilangan jadval mavjudligi haqida so‘rov "
-"berishi mumkin. Bu jarayon topish deb nomlanadi. Handler_discover - topilgan "
-"jadvallar soni."
-
-#: libraries/messages.inc.php:74
-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 ""
-"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/messages.inc.php:75
-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 ""
-"Kalit qiymatlari asosida tuzilgan yozuvlarni o‘qishga bo‘lgan so‘rovlar "
-"soni. O‘zgaruvchining qiymati kattaligi so‘rov va jadvallar to‘g‘ri "
-"indekslanganidan dalolat beradi."
-
-#: libraries/messages.inc.php:76
-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 ""
-"Indekslar joylashuvi tartibida keyingi yozuvni o‘qishga bo‘lgan so‘rovlar "
-"soni. Hajmi cheklangan indeks ustuniga bo‘lgan so‘rov yoki indeksni ko‘rib "
-"chiqish vaqtida o‘zgaruvchi qiymati oshadi."
-
-#: libraries/messages.inc.php:77
-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 ""
-"Indeksni kamayib borish tartibida sortirovka qilinganda oldingi yozuvni "
-"o‘qishga bo‘lgan so‘rovlar soni. Odatda optimallashtirish uchun "
-"qo‘llaniladi: ORDER BY ... DESC."
-
-#: libraries/messages.inc.php:78
-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 "
-"probably have a lot of queries that require MySQL to scan whole tables or "
-"you have joins that don't use keys properly."
-msgstr ""
-"Satrning joylashuviga asoslangan o‘qish uchun so‘rovlar soni. "
-"O‘zgaruvchining katta qiymatiga quyidagilar sabab bo‘lishi mumkin: natijani "
-"sortirovkasidan foydalanadigan so‘rovlarning tez-tez bajarilishi; jadvalni "
-"to‘laligicha ko‘rib chiqishni talab etadigan so‘rovlarning tez-yez "
-"bajarilishi; indekslardan noto‘g‘ri foydalanadigan birlashmalarning "
-"mavjudligi."
-
-#: libraries/messages.inc.php:79
-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 "
-"tables are not properly indexed or that your queries are not written to take "
-"advantage of the indexes you have."
-msgstr ""
-"Ma`lumotlar faylidan keyingi qatorni o‘qishga bo‘lgan so‘rovlar soni. "
-"Jadvalni tez-tez ko‘rib chiqishda ushbu qiymat katta bo‘ladi. Bu hol "
-"jadvallar noto‘g‘ri indekslanganligini yoki so‘rovlar indekslarning "
-"afzalliklaridan foydalanmayotganligini bildiradi."
-
-#: libraries/messages.inc.php:80
-msgid "The number of internal ROLLBACK statements."
-msgstr "ROLLBACK ichki buyruqlar soni."
-
-#: libraries/messages.inc.php:81
-msgid "The number of requests to update a row in a table."
-msgstr "Jadvaldagi yozuvlarni yangilashga bo‘lgan so‘rovlar soni."
-
-#: libraries/messages.inc.php:82
-msgid "The number of requests to insert a row in a table."
-msgstr "Jadvalga yozuv qo‘yishga bo‘lgan so‘rovlar soni."
-
-#: libraries/messages.inc.php:83
-msgid "The number of pages containing data (dirty or clean)."
-msgstr "Ma`lumot mavjud bo‘lgan sahifalar soni (\"kir\" va \"toza\")."
-
-#: libraries/messages.inc.php:84
-msgid "The number of pages currently dirty."
-msgstr "\"Kir\" sahifalarning joriy soni."
-
-#: libraries/messages.inc.php:85
-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/messages.inc.php:86
-msgid "The number of free pages."
-msgstr "Bo‘sh sahifalar soni."
-
-#: libraries/messages.inc.php:87
-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 ""
-"InnoDB bufer pulidagi blokirovka qilingan sahifalar soni. Ushbu sahifalar "
-"ustidan o‘qish yoki yozish jarayoni bajarilmoqda, yoki ularni boshqa "
-"sabablarga ko‘ra tozalash yoki o‘chirish imkoniyati yo‘q."
-
-#: libraries/messages.inc.php:88
-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 "
-"be calculated as Innodb_buffer_pool_pages_total - "
-"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data."
-msgstr ""
-"Administrativ jarayonlarga ajratilganligi sababli band bo‘lgan sahifalar "
-"soni. Ushbu o‘zgaruvchi qiymatini quyidagi formula yordamida hisoblash "
-"mumkin: \"Innodb_buffer_pool_pages_total - Innodb_buffer_pool_pages_free - "
-"Innodb_buffer_pool_pages_data\"."
-
-#: libraries/messages.inc.php:89
-msgid "Total size of buffer pool, in pages."
-msgstr "Bufer pulining umumiy hajmi (sahifalarda)."
-
-#: libraries/messages.inc.php:90
-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 ""
-"InnoDB tomonidan amalga oshirilgan \"tasodifiy\" oldinga o‘tib ketgan "
-"o‘qishlar soni. Ushbu hol so‘rov jadvalni tasodifiy tartibda ko‘rib "
-"chiqayotganda ro‘y beradi."
-
-#: libraries/messages.inc.php:91
-msgid ""
-"The number of sequential read-aheads InnoDB initiated. This happens when "
-"InnoDB does a sequential full table scan."
-msgstr ""
-"InnoDB tomonidan amalga oshirilgan ketma-ket oldinga o‘tib ketgan o‘qishlar "
-"soni. Ushbu hol InnoDB jadvalni to‘laligicha ketma-ket ko‘rib chiqayotganda "
-"ro‘y beradi"
-
-#: libraries/messages.inc.php:92
-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/messages.inc.php:93
-msgid ""
-"The number of logical reads that InnoDB could not satisfy from buffer pool "
-"and had to do a single-page read."
-msgstr ""
-"InnoDB bufer pulidan bajar olmagan va sahifalab o‘qishdan foydalangan "
-"o‘qishga bo‘lgan ketma-ket so‘rovlar soni."
-
-#: libraries/messages.inc.php:94
-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 "
-"available, it's necessary to wait for pages to be flushed first. This "
-"counter counts instances of these waits. If the buffer pool size was set "
-"properly, this value should be small."
-msgstr ""
-"Odatda, InnoDB bufer puliga yozish fon rejimida amalga oshiriladi. Ammo, "
-"agar bufer pulida bo‘sh sahifalar bo‘lmasa, oldin ularning tozalanishi "
-"kutish kerak. Ushbu hisoblagich shunday kutishlar sonini bildiradi. Agar "
-"bufer pulining hajmi to‘g‘ri belgilangan bo‘lsa, unda kutishlar soni katta "
-"bo‘lmasligi kerak."
-
-#: libraries/messages.inc.php:95
-msgid "The number writes done to the InnoDB buffer pool."
-msgstr "InnoDB bufer puliga amalga oshirilgan yozuvlar soni."
-
-#: libraries/messages.inc.php:96
-msgid "The number of fsync() operations so far."
-msgstr "Joriy vaqtda amalga oshirilgan \"fsync()\" operatsiyalari soni."
-
-#: libraries/messages.inc.php:97
-msgid "The current number of pending fsync() operations."
-msgstr "Tugallanmagan \"fsync()\" operatsiyalari soni."
-
-#: libraries/messages.inc.php:98
-msgid "The current number of pending reads."
-msgstr "Tugallanmagan o‘qish operatsiyalari soni."
-
-#: libraries/messages.inc.php:99
-msgid "The current number of pending writes."
-msgstr "Tugallanmagan yozish operatsiyalari soni."
-
-#: libraries/messages.inc.php:100
-msgid "The amount of data read so far, in bytes."
-msgstr "Joriy vaqtda o‘qilgan ma`lumotlar yig‘indisi (baytlarda)."
-
-#: libraries/messages.inc.php:101
-msgid "The total number of data reads."
-msgstr "Umumiy ma`lumotlarni o‘qish operatsiyalari soni."
-
-#: libraries/messages.inc.php:102
-msgid "The total number of data writes."
-msgstr "Umumiy ma`lumotlarni yozish operatsiyalari soni."
-
-#: libraries/messages.inc.php:103
-msgid "The amount of data written so far, in bytes."
-msgstr "Joriy vaqtda yozilgan ma`lumotlar yig‘indisi (baytlarda)."
-
-#: libraries/messages.inc.php:104
-msgid "The number of pages that have been written for doublewrite operations."
-msgstr "\"doublewrite\" operatsiyalari uchun yozilgan sahifalar soni."
-
-#: libraries/messages.inc.php:105
-msgid "The number of doublewrite operations that have been performed."
-msgstr "Bajarilgan \"doublewrite\" operatsiyalari soni."
-
-#: libraries/messages.inc.php:106
-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 ""
-"Jurnal buferining hajmi kichik bo‘lganligi sababli, uning tozalanishi "
-"kutayotgan yozuvlar soni"
-
-#: libraries/messages.inc.php:107
-msgid "The number of log write requests."
-msgstr "Jurnalga yozishga bo‘lgan so‘rovlarsoni."
-
-#: libraries/messages.inc.php:108
-msgid "The number of physical writes to the log file."
-msgstr "Jurnal faylidagi jismoniy yozuvlar soni."
-
-#: libraries/messages.inc.php:109
-msgid "The number of fsync() writes done to the log file."
-msgstr "Jurnal fayliga \"fsync()\" yordamida amalga oshirilgan yozuvlar soni."
-
-#: libraries/messages.inc.php:110
-msgid "The number of pending log file fsyncs."
-msgstr "\"fsync()\" yordamida amalga oshirilishi kutilayotgan yozuvlar soni."
-
-#: libraries/messages.inc.php:111
-msgid "Pending log file writes."
-msgstr "Tugallanmagan jurnalga yozish so‘rovlari soni."
-
-#: libraries/messages.inc.php:112
-msgid "The number of bytes written to the log file."
-msgstr "Jurnal fayliga yozilgan ma`lumotlar hajmi (baytlarda)."
-
-#: libraries/messages.inc.php:113
-msgid "The number of pages created."
-msgstr "Tuzilgan sahifalar soni."
-
-#: libraries/messages.inc.php:114
-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 ""
-"\"InnoDB\"ga kompilyatsiya qilinadigan sahifa hajmi (asl qiymati - 16Kb). "
-"Ko‘pgina qiymatlar sahifalarda keltiriladi, lekin sahifa hajmi bilgan holda, "
-"ularni baytlarga o‘tkazish mumkin."
-
-#: libraries/messages.inc.php:115
-msgid "The number of pages read."
-msgstr "O‘qilgan sahifalar soni."
-
-#: libraries/messages.inc.php:116
-msgid "The number of pages written."
-msgstr "Yozilgan sahifalar soni."
-
-#: libraries/messages.inc.php:117
-msgid "The number of row locks currently being waited for."
-msgstr "Hozirda kutilayotgan qator blokirovkalari soni."
-
-#: libraries/messages.inc.php:118
-msgid "The average time to acquire a row lock, in milliseconds."
-msgstr "Qator blokirovkasini kutishning o‘rtacha vaqti (millisekundlarda)."
-
-#: libraries/messages.inc.php:119
-msgid "The total time spent in acquiring row locks, in milliseconds."
-msgstr "Qator blokirovkasini kutishning umumiy vaqti (millisekundlarda)."
-
-#: libraries/messages.inc.php:120
-msgid "The maximum time to acquire a row lock, in milliseconds."
-msgstr "Qator blokirovkasini kutishning maksimal vaqti (millisekundlarda)."
-
-#: libraries/messages.inc.php:121
-msgid "The number of times a row lock had to be waited for."
-msgstr "Umumiy kutilayotgan qator blokirovkalari soni."
-
-#: libraries/messages.inc.php:122
-msgid "The number of rows deleted from InnoDB tables."
-msgstr "InnoDB jadvalidan o‘chirilgan qatorlar soni."
-
-#: libraries/messages.inc.php:123
-msgid "The number of rows inserted in InnoDB tables."
-msgstr "InnoDB jadvaliga yozilgan qatorlar soni."
-
-#: libraries/messages.inc.php:124
-msgid "The number of rows read from InnoDB tables."
-msgstr "InnoDB jadvallaridan o‘qilgan qatorlar soni."
-
-#: libraries/messages.inc.php:125
-msgid "The number of rows updated in InnoDB tables."
-msgstr "InnoDB jadvallarida yangilangan qatorlar soni."
-
-#: libraries/messages.inc.php:126
-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 ""
-"Indeks keshidagi o‘zgartirilgan, lekin hali diskka yozilmagan bloklar soni. "
-"Ushbu parametr, shuningdek, \"Not_flushed_key_blocks\" nomi bilan ham ma`lum."
-
-#: libraries/messages.inc.php:127
-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 ""
-"Indeks keshidagi ishlatilmayotgan bloklar soni. Ushbu parametr indeks keshi "
-"ishlatilish darajasini belgilaydi."
-
-#: libraries/messages.inc.php:128
-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 ""
-"Indeks keshidagi ishlatilayotgan bloklar soni. Ushbu qiymat bir vaqtning "
-"o‘zida ishlatilishi mumkin bo‘lgan bloklar sonini bildiradi."
-
-#: libraries/messages.inc.php:129
-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/messages.inc.php:130
-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 ""
-"Diskdan indeks bloklarini jismoniy o‘qish operatsiyalari soni. Agar qiymat "
-"katta bo‘lsa, demak, \"key_buffer_size\" o‘zgaruvchining qiymati haddan "
-"tashqari kichik qilib belgilangan. Keshga bo‘lgan muvaffaqiyatsiz "
-"murojaatlar koeffitsiyenti quyidagicha hisoblandi: Key_reads/"
-"Key_read_requests."
-
-#: libraries/messages.inc.php:131
-msgid "The number of requests to write a key block to the cache."
-msgstr "Blokni indeks keshiga yozishga bo‘lgan so‘rovlar soni."
-
-#: libraries/messages.inc.php:132
-msgid "The number of physical writes of a key block to disk."
-msgstr "Diskdan indeks bloklarini jismoniy yozish operatsiyalari soni."
-
-#: libraries/messages.inc.php:133
-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 ""
-"So‘rovlar optimizatori tomonidan hisoblangan oxirgi kompilyatsiya qilingan "
-"so‘rovning umumiy xarajatlari. Ushbu qiymat bir so‘rovning turli sxemalari "
-"effektivligini taqqoslashda foydali hisoblanadi. Asl nol qiymat hali so‘rov "
-"kompilyatsiya jarayoni bajarilmaganligini bildiradi."
-
-#: libraries/messages.inc.php:134
-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/messages.inc.php:135
-msgid ""
-"The number of tables that have been opened. If opened tables is big, your "
-"table cache value is probably too small."
-msgstr ""
-"Ochilayotgan jadvallarning umumiy soni. Agar o‘zgaruvchining qiymati katta "
-"bo‘lsa, jadval keshi (table_cache) hajmini oshirish tavsiya etiladi."
-
-#: libraries/messages.inc.php:136
-msgid "The number of files that are open."
-msgstr "Ochiq fayllar soni."
-
-#: libraries/messages.inc.php:137
-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/messages.inc.php:138
-msgid "The number of tables that are open."
-msgstr "Ochiq jadvallar soni."
-
-#: libraries/messages.inc.php:139
-msgid "The number of free memory blocks in query cache."
-msgstr "So‘rovlar keshidagi bo‘sh xotira bloklari soni."
-
-#: libraries/messages.inc.php:140
-msgid "The amount of free memory for query cache."
-msgstr "So‘rovlar keshi uchun bo‘sh xotira hajmi"
-
-#: libraries/messages.inc.php:141
-msgid "The number of cache hits."
-msgstr ""
-"So‘rovlar keshiga \"tushishlar\" soni, ya`ni keshda turgan so‘rovlar "
-"tomonidan qoniqtirilgan so‘rovlar soni."
-
-#: libraries/messages.inc.php:142
-msgid "The number of queries added to the cache."
-msgstr "So‘rovlar keshiga qo‘shilgan so‘rovlar soni."
-
-#: libraries/messages.inc.php:143
-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 "
-"cache size. The query cache uses a least recently used (LRU) strategy to "
-"decide which queries to remove from the cache."
-msgstr ""
-"Yangi so‘rovlarni keshlashga xotira bo‘shatish uchun keshdan o‘chirilgan "
-"so‘rovlar soni. Bu ma`lumot so‘rovlar keshi hajmini belgilashga yordam "
-"beradi. So‘rovlar keshi keshdan so‘rovlarni o‘chirishda \"LRU\" (Least "
-"Recently Used - eng oldingi ishlatilgan) strategiyasidan foydalanadi"
-
-#: libraries/messages.inc.php:144
-msgid ""
-"The number of non-cached queries (not cachable, or not cached due to the "
-"query_cache_type setting)."
-msgstr ""
-"Keshlab bo‘lmaydigan yoki keshlash \"SQL_NO_CACHE\" kalit so‘zi yordamida "
-"so‘ndirilgan so‘rovlar soni."
-
-#: libraries/messages.inc.php:145
-msgid "The number of queries registered in the cache."
-msgstr "Keshda registratsiya qilingan so‘rovlar soni."
-
-#: libraries/messages.inc.php:146
-msgid "The total number of blocks in the query cache."
-msgstr "So‘rovlar keshiga ajratilgan xotira bloklarning umumiy soni."
-
-#: libraries/messages.inc.php:147
-msgctxt "$strShowStatusReset"
-msgid "Reset"
-msgstr "Bekor qilish"
-
-#: libraries/messages.inc.php:148
-msgid "The status of failsafe replication (not yet implemented)."
-msgstr "Barqaror replikatsiyalar soni (hali amalga oshirilmagan)."
-
-#: libraries/messages.inc.php:149
-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 ""
-"Indeks ishlatmasdan bajarilgan birlashma so‘rovlar soni. Agar o‘zgaruvchi "
-"qiymati 0 bo‘lmasa, jadval indekslarini tekshirish tavsiya etiladi."
-
-#: libraries/messages.inc.php:150
-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/messages.inc.php:151
-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 ""
-"Ikkilamchi jadvaldan qatorlarga murojaat etish uchun diapazon bo‘yicha "
-"qidiruv ishlatgan holda bajarilgan birlashma so‘rovlar soni. Agar "
-"o‘zgaruvchi qiymati 0 bo‘lmasa, jadval indekslarini tekshirish tavsiya "
-"etiladi."
-
-#: libraries/messages.inc.php:152
-msgid ""
-"The number of joins that used ranges on the first table. (It's normally not "
-"critical even if this is big.)"
-msgstr ""
-"Birinchi jadvalda diapazon bo‘yicha qidiruv ishlatgan holda bajarilgan "
-"birlashma so‘rovlar soni. Odatda, ushbu o‘zgaruvchining qiymati, hatto juda "
-"katta bo‘lsa ham, unchalik muhim emas."
-
-#: libraries/messages.inc.php:153
-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/messages.inc.php:154
-msgid "The number of temporary tables currently open by the slave SQL thread."
-msgstr "Tobe oqim tomonidan joriy vaqtda ochilgan vaqtinchalik jadvallar soni."
-
-#: libraries/messages.inc.php:155
-msgid ""
-"Total (since startup) number of times the replication slave SQL thread has "
-"retried transactions."
-msgstr ""
-"Ishga tushirilgandan buyon replikatsiyaning tobe oqimi tomonidan bajarilgan "
-"qayta tranzaksiyalarning umumiy soni."
-
-#: libraries/messages.inc.php:156
-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/messages.inc.php:157
-msgid ""
-"The number of threads that have taken more than slow_launch_time seconds to "
-"create."
-msgstr ""
-"Tuzilishi uchun slow_launch_time sekunddan ko‘proq vaqt talab etilgan "
-"oqimlar soni."
-
-#: libraries/messages.inc.php:158
-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/messages.inc.php:159
-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 ""
-"Sortirovka algoritmi tomonidan bajarilgan o‘tishlar soni. Agar ushbu "
-"o‘zgaruvchi qiymati katta bo‘lsa, \"sort_buffer_size\" o‘zgaruvchisining "
-"qiymatini oshirish zarur."
-
-#: libraries/messages.inc.php:160
-msgid "The number of sorts that were done with ranges."
-msgstr "Diapazon yordamida bajarilgan sortirovka operatsiyalari soni."
-
-#: libraries/messages.inc.php:161
-msgid "The number of sorted rows."
-msgstr "Sortirovka qilingan qatorlar soni"
-
-#: libraries/messages.inc.php:162
-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/messages.inc.php:163
-msgid "The number of times that a table lock was acquired immediately."
-msgstr ""
-"Darhol qoniqtirilgan jadvalni blokirovka qilishga bo‘lgan so‘rovlar soni."
-
-#: libraries/messages.inc.php:164
-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 "
-"should first optimize your queries, and then either split your table or "
-"tables or use replication."
-msgstr ""
-"Ma`lum bir vaqtdandan keyin qoniqtirilgan jadvalni blokirovka qilishga "
-"bo‘lgan so‘rovlar soni. Agar qiymat juda katta bo‘lsa va unumdorlik bo‘yicha "
-"muammolar paydo bo‘layotgan bo‘lsa, avval so‘rovlarni optimallashtirish, "
-"so‘ngra esa jadval(lar)ni qismlarga bo‘lish yoki replikatsiya ishlatish "
-"kerak."
-
-#: libraries/messages.inc.php:165
-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 ""
-"Keshdagi oqimlar soni. Keshga bo‘lgan muvaffaqiyatli murojaatlar "
-"chastotasini quyidagi formula yordamida hisoblash mumkin: Threads_created/"
-"Connections. Agar ushbu qiymat qizil rang bilan belgilangan bo‘lsa, unda "
-"\"thread_cache_size\" o‘zgaruvchisining qiymatini oshirish zarur."
-
-#: libraries/messages.inc.php:166
-msgid "The number of currently open connections."
-msgstr "Ochiq joriy ulanishlar soni."
-
-#: libraries/messages.inc.php:167
-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 "
-"doesn't give a notable performance improvement if you have a good thread "
-"implementation.)"
-msgstr ""
-"Kliyent bilan ulanishni qo‘llab-quvvatlash uchun tuzilgan oqimlarning umumiy "
-"soni. O‘zgaruvchi qiymati juda katta bo‘lsa, \"thread_cache_size\" "
-"o‘zgaruvchisining qiymatini oshirish mumkin (lekin u unumdorlikni unchalik "
-"ham oshirmaydi)."
-
-#: libraries/messages.inc.php:168
-msgid "The number of threads that are not sleeping."
-msgstr "Faol holatda bo‘lgan jarayonlar soni."
-
#: libraries/mult_submits.inc.php:76 libraries/tbl_properties.inc.php:513
#: tbl_structure.php:29 tbl_structure.php:153 tbl_structure.php:157
#: tbl_structure.php:473
@@ -4491,8 +3610,8 @@ msgstr ""
#: libraries/replication_gui.lib.php:55 libraries/replication_gui.lib.php:56
#: libraries/replication_gui.lib.php:249 libraries/replication_gui.lib.php:252
-#: libraries/replication_gui.lib.php:259 server_privileges.php:672
-#: server_privileges.php:675 server_privileges.php:682
+#: libraries/replication_gui.lib.php:259 server_privileges.php:711
+#: server_privileges.php:714 server_privileges.php:721
#: server_synchronize.php:1171
msgid "User name"
msgstr "Foydalanuvchi nomi"
@@ -4510,11 +3629,11 @@ msgid "Slave status"
msgstr "Tobе rеplikatsiya sеrvеri statusi"
#: libraries/replication_gui.lib.php:114 libraries/sql_query_form.lib.php:445
-#: server_status.php:626 server_variables.php:52
+#: server_status.php:737 server_variables.php:52
msgid "Variable"
msgstr "O‘zgaruvchi"
-#: libraries/replication_gui.lib.php:115 server_status.php:627
+#: libraries/replication_gui.lib.php:115 server_status.php:738
#: tbl_change.php:324 tbl_printview.php:370 tbl_select.php:139
#: tbl_structure.php:729
msgid "Value"
@@ -4536,34 +3655,34 @@ msgstr ""
msgid "Add slave replication user"
msgstr "Tobе rеplikatsiya foydalanuvchisini qo‘shish"
-#: libraries/replication_gui.lib.php:254 server_privileges.php:677
+#: libraries/replication_gui.lib.php:254 server_privileges.php:716
msgid "Any user"
msgstr "Har qaysi foydalanuvchi"
#: libraries/replication_gui.lib.php:255 libraries/replication_gui.lib.php:323
-#: libraries/replication_gui.lib.php:346 server_privileges.php:678
-#: server_privileges.php:745 server_privileges.php:769
-#: server_privileges.php:1889 server_privileges.php:1919
+#: libraries/replication_gui.lib.php:346 server_privileges.php:717
+#: server_privileges.php:784 server_privileges.php:808
+#: server_privileges.php:1928 server_privileges.php:1958
msgid "Use text field"
msgstr "Matnmaydonini ishlatish"
-#: libraries/replication_gui.lib.php:302 server_privileges.php:725
+#: libraries/replication_gui.lib.php:302 server_privileges.php:764
msgid "Any host"
msgstr "Har qaysi xost"
-#: libraries/replication_gui.lib.php:306 server_privileges.php:729
+#: libraries/replication_gui.lib.php:306 server_privileges.php:768
msgid "Local"
msgstr "Lokal"
-#: libraries/replication_gui.lib.php:312 server_privileges.php:734
+#: libraries/replication_gui.lib.php:312 server_privileges.php:773
msgid "This Host"
msgstr "Ushbu xost"
-#: libraries/replication_gui.lib.php:318 server_privileges.php:740
+#: libraries/replication_gui.lib.php:318 server_privileges.php:779
msgid "Use Host Table"
msgstr "Xostlar jadvalidan foydalanish"
-#: libraries/replication_gui.lib.php:331 server_privileges.php:753
+#: libraries/replication_gui.lib.php:331 server_privileges.php:792
msgid ""
"When Host table is used, this field is ignored and values stored in Host "
"table are used instead."
@@ -4571,8 +3690,25 @@ msgstr ""
"Agar Xostlar jadvalidan foydalanilsa, ushbu maydonga e`tibor berilmaydi va "
"uning o‘rniga Xostlar jadvalidagi qiymatlar ishlatiladi."
-#: libraries/select_lang.lib.php:480 libraries/select_lang.lib.php:486
-#: libraries/select_lang.lib.php:492
+#. l10n: Text direction, use either ltr or rtl
+#: libraries/select_lang.lib.php:491
+msgid "ltr"
+msgstr "ltr"
+
+#: libraries/select_lang.lib.php:493
+msgid "Content of table __TABLE__"
+msgstr " __TABLE__ jadvalining mundarijasi"
+
+#: libraries/select_lang.lib.php:494
+msgid "(continued)"
+msgstr "(davomi)"
+
+#: libraries/select_lang.lib.php:495
+msgid "Structure of table __TABLE__"
+msgstr " __TABLE__ jadvalining tuzilishi"
+
+#: libraries/select_lang.lib.php:500 libraries/select_lang.lib.php:506
+#: libraries/select_lang.lib.php:512
#, php-format
msgid "Unknown language: %1$s."
msgstr "Noma`lum til: %1$s."
@@ -4583,7 +3719,7 @@ msgid "Servers"
msgstr "Serverlar"
#: libraries/server_links.inc.php:53 server_engines.php:112
-#: server_engines.php:116 server_status.php:304 test/theme.php:105
+#: server_engines.php:116 server_status.php:415 test/theme.php:105
msgid "Variables"
msgstr "O‘zgaruvchilar"
@@ -4596,7 +3732,7 @@ msgid "Engines"
msgstr "Jadval turlari"
#: libraries/server_links.inc.php:76 server_binlog.php:110
-#: server_status.php:253 test/theme.php:121
+#: server_status.php:364 test/theme.php:121
msgid "Binary log"
msgstr "Ikkilik jurnal"
@@ -5080,8 +4216,8 @@ msgstr "Tozalash"
msgid "Protocol version"
msgstr "Protokol versiyasi"
-#: main.php:189 server_privileges.php:1350 server_privileges.php:1497
-#: server_privileges.php:1611 server_privileges.php:2029
+#: main.php:189 server_privileges.php:1389 server_privileges.php:1536
+#: server_privileges.php:1650 server_privileges.php:2068
#: server_processlist.php:54
msgid "User"
msgstr "Foydalanuvchi"
@@ -5483,7 +4619,7 @@ msgstr "\"%s\" ma`lumotlar bazasi muvaffaqiyatli o‘chirildi."
msgid "Databases statistics"
msgstr "Ma`lumotlar bazasi statiskasi"
-#: server_databases.php:117 server_status.php:260
+#: server_databases.php:117 server_status.php:371
#: setup/lib/messages.inc.php:117
msgid "Tables"
msgstr "Jadvallar"
@@ -5503,6 +4639,18 @@ msgstr "Tobе sеrvеr rеplikatsiyasi"
msgid "Jump to database"
msgstr "Ushbu bazaga o‘tish"
+#: server_databases.php:267
+#, fuzzy
+#| msgid "Master replication"
+msgid "Not replicated"
+msgstr "Bosh sеrvеr rеplikatsiyasi"
+
+#: server_databases.php:273
+#, fuzzy
+#| msgid "Replication"
+msgid "Replicated"
+msgstr "Replikatsiya (zaxira nusxa ko‘chirish)"
+
#: server_databases.php:289
#, php-format
msgid "Check privileges for database "%s"."
@@ -5536,147 +4684,350 @@ msgstr "Jadval turlari"
msgid "View dump (schema) of databases"
msgstr "Ma`lumotlar bazalari dampini (sxemasini) namoyish etish"
-#: server_privileges.php:263 server_privileges.php:264
+#: server_privileges.php:24 server_privileges.php:266
+msgid "Includes all privileges except GRANT."
+msgstr "GRANT dan tashqari barcha privilegiyalarni o‘z ichiga oladi"
+
+#: server_privileges.php:25 server_privileges.php:192
+#: server_privileges.php:515
+msgid "Allows altering the structure of existing tables."
+msgstr "Mavjud jadvallarning tuzilishini o‘zgartirishga ruxsat beradi"
+
+#: server_privileges.php:26 server_privileges.php:208
+#: server_privileges.php:521
+msgid "Allows altering and dropping stored routines."
+msgstr "Saqlanadigan muolajalarni o‘zgartirish va o‘chirishga ruxsat beradi"
+
+#: server_privileges.php:27 server_privileges.php:184
+#: server_privileges.php:514
+msgid "Allows creating new databases and tables."
+msgstr "Yangi ma`lumotlar bazalari va jadvallar tuzishga ruxsat beradi"
+
+#: server_privileges.php:28 server_privileges.php:207
+#: server_privileges.php:520
+msgid "Allows creating stored routines."
+msgstr "Saqlanadigan muolajalar tuzishga ruxsat beradi"
+
+#: server_privileges.php:29 server_privileges.php:514
+msgid "Allows creating new tables."
+msgstr "Yangi jadvallar tuzishga ruxsat beradi"
+
+#: server_privileges.php:30 server_privileges.php:195
+#: server_privileges.php:518
+msgid "Allows creating temporary tables."
+msgstr "Vaqtinchalik jadvallar tuzishga ruxsat beradi"
+
+#: server_privileges.php:31 server_privileges.php:209
+#: server_privileges.php:554
+msgid "Allows creating, dropping and renaming user accounts."
+msgstr ""
+"Foydalanuvchilar hisobini qo‘shish, o‘chirish va o‘zgartirishga ruxsat beradi"
+
+#: server_privileges.php:32 server_privileges.php:199
+#: server_privileges.php:203 server_privileges.php:526
+#: server_privileges.php:530
+msgid "Allows creating new views."
+msgstr "Yangi namoyishlar tuzish(CREATE VIEW)ga ruxsat beradi"
+
+#: server_privileges.php:33 server_privileges.php:183
+#: server_privileges.php:506
+msgid "Allows deleting data."
+msgstr "Ma`lumotlarni o‘chirishga ruxsat beradi"
+
+#: server_privileges.php:34 server_privileges.php:185
+#: server_privileges.php:517
+msgid "Allows dropping databases and tables."
+msgstr "Ma`lumotlar bazalarini va jadvallarni o‘chirishga ruxsat beradi"
+
+#: server_privileges.php:35 server_privileges.php:517
+msgid "Allows dropping tables."
+msgstr "Jadvallarni o‘chirishga rux`sat beradi"
+
+#: server_privileges.php:36 server_privileges.php:200
+#: server_privileges.php:534
+msgid "Allows to set up events for the event scheduler"
+msgstr "Kechiktirilgan hodisalarni sozlashga ruxsat beradi"
+
+#: server_privileges.php:37 server_privileges.php:210
+#: server_privileges.php:522
+msgid "Allows executing stored routines."
+msgstr "Saqlanadigan muolajalarni bajarishga ruxsat beradi"
+
+#: server_privileges.php:38 server_privileges.php:189
+#: server_privileges.php:509
+msgid "Allows importing data from and exporting data into files."
+msgstr "Ma`lumotlarni fayldan import va faylga eksport qilishga ruxsat beradi"
+
+#: server_privileges.php:39 server_privileges.php:540
+msgid ""
+"Allows adding users and privileges without reloading the privilege tables."
+msgstr ""
+"Foydalanuvchilarni qo‘shish va privilegiyalar jadvalini qayta yuklamasdan "
+"privilegiyalar qo‘shishga ruxsat beradi"
+
+#: server_privileges.php:40 server_privileges.php:191
+#: server_privileges.php:516
+msgid "Allows creating and dropping indexes."
+msgstr "Indekslar qo‘shish va ularni o‘chirishga ruxsat beradi"
+
+#: server_privileges.php:41 server_privileges.php:181
+#: server_privileges.php:442 server_privileges.php:504
+msgid "Allows inserting and replacing data."
+msgstr "Ma`lumot qo‘yish va o‘zgartirishga ruxsat beradi"
+
+#: server_privileges.php:42 server_privileges.php:196
+#: server_privileges.php:549
+msgid "Allows locking tables for the current thread."
+msgstr "Joriy oqim uchun jadvalni blokirovku qilishga ruxsat beradi"
+
+#: server_privileges.php:43 server_privileges.php:646
+#: server_privileges.php:648
+msgid "Limits the number of new connections the user may open per hour."
+msgstr ""
+"Foydalanuvchi bir soat davomida o‘rnatishi mumkin bo‘lgan yangi ulanishlar "
+"soni"
+
+#: server_privileges.php:44 server_privileges.php:634
+#: server_privileges.php:636
+msgid "Limits the number of queries the user may send to the server per hour."
+msgstr ""
+"Foydalanuvchi bir soat davomida yuborishi mumkin bo‘lgan so‘rovlar soni"
+
+#: server_privileges.php:45 server_privileges.php:640
+#: server_privileges.php:642
+msgid ""
+"Limits the number of commands that change any table or database the user may "
+"execute per hour."
+msgstr ""
+"Foydalanuvchi bir soat davomida bajarishi mumkin bo‘lgan biron-bir jadval "
+"yoki ma`lumotlar bazasini o‘zgartiradigan buyruqlar soni"
+
+#: server_privileges.php:46 server_privileges.php:652
+#: server_privileges.php:654
+msgid "Limits the number of simultaneous connections the user may have."
+msgstr ""
+"Bir foydalanuvchi tomonidan bir vaqtning o‘zida o‘rnatishi mumkin bo‘lgan "
+"ulanishlar soni"
+
+#: server_privileges.php:47 server_privileges.php:188
+#: server_privileges.php:544
+msgid "Allows viewing processes of all users"
+msgstr "Barcha foydalanuvchilarning jarayonlarini ko‘rishga ruxsat beradi"
+
+#: server_privileges.php:48 server_privileges.php:190
+#: server_privileges.php:448 server_privileges.php:550
+msgid "Has no effect in this MySQL version."
+msgstr "MySQL-serverning ushbu versiyada bunday xususiyat mavjud emas!"
+
+#: server_privileges.php:49 server_privileges.php:186
+#: server_privileges.php:545
+msgid "Allows reloading server settings and flushing the server's caches."
+msgstr ""
+"Server sozlanishlarini qayta yuklashga va uning keshlarini tozalashga ruxsat "
+"beradi"
+
+#: server_privileges.php:50 server_privileges.php:198
+#: server_privileges.php:552
+msgid "Allows the user to ask where the slaves / masters are."
+msgstr ""
+"Bosh va tobe serverlarning joylashishi haqidagi ma`lumotni talab qilishga "
+"ruxsat beradi"
+
+#: server_privileges.php:51 server_privileges.php:197
+#: server_privileges.php:553
+msgid "Needed for the replication slaves."
+msgstr ""
+"Replikatsiya (zaxira nusxa ko‘chirish) vaqtida tobe serverlar uchun kerak"
+
+#: server_privileges.php:52 server_privileges.php:180
+#: server_privileges.php:439 server_privileges.php:503
+msgid "Allows reading data."
+msgstr "Ma`lumotlarni chaqirishga ruxsat beradi"
+
+#: server_privileges.php:53 server_privileges.php:193
+#: server_privileges.php:547
+msgid "Gives access to the complete list of databases."
+msgstr "Ma`lumotlar bazalarining to‘liq ro‘yxatiga ruxsat beradi"
+
+#: server_privileges.php:54 server_privileges.php:204
+#: server_privileges.php:206 server_privileges.php:519
+msgid "Allows performing SHOW CREATE VIEW queries."
+msgstr "Namoyish tuzadigan so‘rov(SHOW CREATE VIEW)ni bajarishga ruxsat beradi"
+
+#: server_privileges.php:55 server_privileges.php:187
+#: server_privileges.php:546
+msgid "Allows shutting down the server."
+msgstr "Server ishini yakunlashga ruxsat beradi"
+
+#: server_privileges.php:56 server_privileges.php:194
+#: server_privileges.php:543
+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 ""
+"Ulanishlar maksimal qiymatga yetganda ham ulanish o‘rnatishga ruxsat "
+"beradi. (Ko‘pgina administrativ vazifalarni bajarish uchun kerak, masalan, "
+"global o‘zgaruvchilar o‘rnatish yoki boshqa foydalanuvchi jarayonini "
+"o‘chirish)"
+
+#: server_privileges.php:57 server_privileges.php:201
+#: server_privileges.php:535
+msgid "Allows creating and dropping triggers"
+msgstr ""
+"Triggerlar (ma`lum shartlar bajarilganda avtomatik ishga tushadigan "
+"jarayonlar) tuzish va ularni o‘chirishga ruxsat beradi"
+
+#: server_privileges.php:58 server_privileges.php:182
+#: server_privileges.php:445 server_privileges.php:505
+msgid "Allows changing data."
+msgstr "Ma`lumotlarni o‘zgartirishga ruxsat beradi"
+
+#: server_privileges.php:59 server_privileges.php:260
+msgid "No privileges."
+msgstr "Privilegiyalar yo‘q"
+
+#: server_privileges.php:302 server_privileges.php:303
#, fuzzy
#| msgid "None"
msgctxt "None privileges"
msgid "None"
msgstr "Yo‘q"
-#: server_privileges.php:392 server_privileges.php:527
-#: server_privileges.php:1679 server_privileges.php:1685
+#: server_privileges.php:431 server_privileges.php:566
+#: server_privileges.php:1718 server_privileges.php:1724
msgid "Table-specific privileges"
msgstr "Jadval darajasijagi privilegiyalar"
-#: server_privileges.php:393 server_privileges.php:535
-#: server_privileges.php:1501
+#: server_privileges.php:432 server_privileges.php:574
+#: server_privileges.php:1540
msgid " Note: MySQL privilege names are expressed in English "
msgstr "IZOH: MySQL privilegiyalari turlari ingliz tilida ko‘rsatiladi."
-#: server_privileges.php:524 server_privileges.php:1500
+#: server_privileges.php:563 server_privileges.php:1539
msgid "Global privileges"
msgstr "Global privilegiyalar"
-#: server_privileges.php:526 server_privileges.php:1679
+#: server_privileges.php:565 server_privileges.php:1718
msgid "Database-specific privileges"
msgstr "Ma`lumotlar bazasi privilegiyalari"
-#: server_privileges.php:571
+#: server_privileges.php:610
msgid "Administration"
msgstr "Administratsiya"
-#: server_privileges.php:591
+#: server_privileges.php:630
msgid "Resource limits"
msgstr "Resurslardan foydalanishni cheklash"
-#: server_privileges.php:592
+#: server_privileges.php:631
msgid "Note: Setting these options to 0 (zero) removes the limit."
msgstr ""
"IZOH: parametr qiymatlarini 0 (nol) deb belgilash mavjud cheklashlarni bekor "
"qiladi."
-#: server_privileges.php:669
+#: server_privileges.php:708
msgid "Login Information"
msgstr "Foydalanuvchi hisobi haqida ma`lumot"
-#: server_privileges.php:763
+#: server_privileges.php:802
msgid "Do not change the password"
msgstr "Parolni o‘zgartirmaslik"
-#: server_privileges.php:804 server_privileges.php:2166
+#: server_privileges.php:843 server_privileges.php:2205
#, fuzzy
#| msgid "No user(s) found."
msgid "No user found."
msgstr "Bironta ham foydalanuvchi topilmadi."
-#: server_privileges.php:848
+#: server_privileges.php:887
#, php-format
msgid "The user %s already exists!"
msgstr " \"%s\" nomli foydalanuvchi mavjud!"
-#: server_privileges.php:931
+#: server_privileges.php:970
msgid "You have added a new user."
msgstr "Siz yangi foydalanuvchi qo‘shdingiz."
-#: server_privileges.php:1152
+#: server_privileges.php:1191
#, php-format
msgid "You have updated the privileges for %s."
msgstr " \"%s\" uchun privilegiyalar o‘zgartirildi."
-#: server_privileges.php:1176
+#: server_privileges.php:1215
#, php-format
msgid "You have revoked the privileges for %s"
msgstr " \"%s\" foydalanuvchining privilegiyalari bekor qilindi."
-#: server_privileges.php:1212
+#: server_privileges.php:1251
#, php-format
msgid "The password for %s was changed successfully."
msgstr "\"%s\" foydalanuvchining paroli muvaffaqiyatli o‘zgartirildi."
-#: server_privileges.php:1232
+#: server_privileges.php:1271
#, php-format
msgid "Deleting %s"
msgstr "\"%s\" o‘chirilmoqda"
-#: server_privileges.php:1243
+#: server_privileges.php:1282
msgid "No users selected for deleting!"
msgstr "O‘chirish lozim bo‘lgan foydalanuvchilar tanlanmagan!"
-#: server_privileges.php:1246
+#: server_privileges.php:1285
msgid "Reloading the privileges"
msgstr "Privilegiyalar qayta yuklanmoqda"
-#: server_privileges.php:1261
+#: server_privileges.php:1300
msgid "The selected users have been deleted successfully."
msgstr "Belgilangan foydalanuvchilar muvaffaqiyatli o‘chirildi."
-#: server_privileges.php:1296
+#: server_privileges.php:1335
msgid "The privileges were reloaded successfully."
msgstr "Privilegiyalar muvaffaqiyatli qayta yuklandi."
-#: server_privileges.php:1324 server_privileges.php:1610
+#: server_privileges.php:1363 server_privileges.php:1649
msgid "Edit Privileges"
msgstr "Privilegiyalarni tahrirlash"
-#: server_privileges.php:1333
+#: server_privileges.php:1372
msgid "Revoke"
msgstr "Bekor qilish"
-#: server_privileges.php:1365
+#: server_privileges.php:1404
msgid "User overview"
msgstr "Foydalanuvchilar hisobini ko‘rib chiqish"
-#: server_privileges.php:1502 server_privileges.php:1684
-#: server_privileges.php:2033
+#: server_privileges.php:1541 server_privileges.php:1723
+#: server_privileges.php:2072
msgid "Grant"
msgstr "GRANT"
-#: server_privileges.php:1521 server_privileges.php:2123
+#: server_privileges.php:1560 server_privileges.php:2162
msgid "Any"
msgstr "Har qaysi"
-#: server_privileges.php:1570 server_privileges.php:1594
-#: server_privileges.php:1988 server_privileges.php:2177
+#: server_privileges.php:1609 server_privileges.php:1633
+#: server_privileges.php:2027 server_privileges.php:2216
msgid "Add a new User"
msgstr "Yangi foydalanuvchi qo‘shish"
-#: server_privileges.php:1575
+#: server_privileges.php:1614
msgid "Remove selected users"
msgstr "Belgilangan foydalanuvchilarni o‘chirish"
-#: server_privileges.php:1578
+#: server_privileges.php:1617
msgid "Revoke all active privileges from the users and delete them afterwards."
msgstr ""
"Foydalanuvchilarning barcha faol privilegiyalarini bekor qilish, so‘ng "
"ularni o‘chirish."
-#: server_privileges.php:1579 server_privileges.php:1580
-#: server_privileges.php:1581
+#: server_privileges.php:1618 server_privileges.php:1619
+#: server_privileges.php:1620
msgid "Drop the databases that have the same names as the users."
msgstr ""
"Foydalanuvchilar nomlari bilan atalgan ma`lumotlar bazalarini o‘chirish."
-#: server_privileges.php:1597
+#: server_privileges.php:1636
#, php-format
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
@@ -5689,50 +5040,50 @@ msgstr ""
"ma`lumotlar server tomonidan ishlatilayotgan privilegiyalardan farq qilishi "
"mumkin. Bu holda %sprivilegiyalarni qayta yuklash%s kerak."
-#: server_privileges.php:1645
+#: server_privileges.php:1684
msgid "The selected user was not found in the privilege table."
msgstr "Belgilangan foydalanuvchi privilegiyalar jadvalida topilmadi."
-#: server_privileges.php:1685
+#: server_privileges.php:1724
msgid "Column-specific privileges"
msgstr "Maydon privilegiyalari"
-#: server_privileges.php:1886
+#: server_privileges.php:1925
msgid "Add privileges on the following database"
msgstr "Quyidagi ma`lumotlar omboriga privilegiya qo‘shish"
-#: server_privileges.php:1904
+#: server_privileges.php:1943
msgid "Wildcards % and _ should be escaped with a \\ to use them literally"
msgstr ""
"Ma`lumotlar bazalari nomlarida pastki chiziq (_) va foiz (%) belgilari "
"ishlatilganda ular oldiga teskari egri chiziq (\\) qo‘yish kerak."
-#: server_privileges.php:1907
+#: server_privileges.php:1946
msgid "Add privileges on the following table"
msgstr "Quyidagi jadvalga privilegiya qo‘shish"
-#: server_privileges.php:1964
+#: server_privileges.php:2003
msgid "Change Login Information / Copy User"
msgstr "Foydalanuvchining loginini o‘zgartirish / Foydalanuvchidan nusxa olish"
-#: server_privileges.php:1967
+#: server_privileges.php:2006
msgid "Create a new user with the same privileges and ..."
msgstr "Xuddi shunday privilegiyali yangi foydalanuvchi kiritish..."
-#: server_privileges.php:1969
+#: server_privileges.php:2008
msgid "... keep the old one."
msgstr " va eskisini saqlash."
-#: server_privileges.php:1970
+#: server_privileges.php:2009
msgid " ... delete the old one from the user tables."
msgstr " va foydalanuvchilar jadvalidan eskisini o‘chirish."
-#: server_privileges.php:1971
+#: server_privileges.php:2010
msgid ""
" ... revoke all active privileges from the old one and delete it afterwards."
msgstr ", eskisining barcha faol privilegiyalarini bekor qilib o‘chirish."
-#: server_privileges.php:1972
+#: server_privileges.php:2011
msgid ""
" ... delete the old one from the user tables and reload the privileges "
"afterwards."
@@ -5740,48 +5091,48 @@ msgstr ""
", foydalanuvchilar jadvalidan eskisini o‘chirib privilegiyalarni qayta "
"yuklash."
-#: server_privileges.php:1994
+#: server_privileges.php:2033
msgid "Database for user"
msgstr "Foydalanuvchi uchun ma`lumotlar bazasi"
-#: server_privileges.php:1998
+#: server_privileges.php:2037
#, fuzzy
#| msgid "None"
msgctxt "Create none database for user"
msgid "None"
msgstr "Yo‘q"
-#: server_privileges.php:1999
+#: server_privileges.php:2038
msgid "Create database with same name and grant all privileges"
msgstr ""
"Foydalanuvchi nomi bilan atalgan ma`lumotlar bazasi tuzish va unga to‘liq "
"privilegiyalarni berish."
-#: server_privileges.php:2000
+#: server_privileges.php:2039
msgid "Grant all privileges on wildcard name (username\\_%)"
msgstr ""
"(foydalanuvchi\\_%) shabloniga to‘g‘ri keladigan barcha ma`lumotlar "
"bazalariga to‘liq privilegiyalarni berish."
-#: server_privileges.php:2003
+#: server_privileges.php:2042
#, php-format
msgid "Grant all privileges on database "%s""
msgstr "\"%s\"" ma`lumotlar bazasiga barcha privilegiyalarni berish;"
-#: server_privileges.php:2026
+#: server_privileges.php:2065
#, php-format
msgid "Users having access to "%s""
msgstr "\"%s\"ga ruxsati bo‘lgan foydalanuvchilar"
-#: server_privileges.php:2134
+#: server_privileges.php:2173
msgid "global"
msgstr "Global"
-#: server_privileges.php:2136
+#: server_privileges.php:2175
msgid "database-specific"
msgstr "Ma`lumotlar bazasi darajasida"
-#: server_privileges.php:2138
+#: server_privileges.php:2177
msgid "wildcard"
msgstr "Guruhlash belgisi"
@@ -5831,7 +5182,7 @@ msgid "This server is configured as master in a replication process."
msgstr ""
"Ushbu sеrvеr rеplikatsiya jarayonida \"bosh\" dеb konfiguratsiya qilingan."
-#: server_replication.php:184 server_status.php:281
+#: server_replication.php:184 server_status.php:392
msgid "Show master status"
msgstr "Ulangan bosh sеrvеrlarni ko‘rsatish"
@@ -5987,84 +5338,745 @@ msgstr ""
"Ushbu sеrvеr rеplikatsiya jarayonida \"tobе sеrvеr\" dеb konfiguratsiya "
"qilinmagan. Siz uni konfiguratsiya qilmoqchimisiz?"
+#: server_status.php:40
+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 ""
+"Binar jurnali keshini ishlatib, \"binlog_cache_size\" qiymatidan oshib, o‘z "
+"ichiga olgan SQL-jumlalari vaqtinchalik faylga saqlangan tranzaksiyalar soni."
+
+#: server_status.php:41
+msgid "The number of transactions that used the temporary binary log cache."
+msgstr "Binar jurnal keshini ishlatgan tranzaksiyalar soni."
+
+#: server_status.php:42
+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 "
+"to increase the tmp_table_size value to cause temporary tables to be memory-"
+"based instead of disk-based."
+msgstr ""
+"SQL-jumlalarini bajarayotgan vaqtda server tomonidan avtomatik tarzda "
+"tuzilgan va diskda saqlangan vaqtinchalik jadvallar soni. Agar ushbu qiymat "
+"katta bo‘lsa, vaqtinchalik jadvallar qattiq diskda emas, balki xotirada "
+"saqlanishini ta`minlash maqsadida tmp_table_size o‘zgaruvchisining qiymatini "
+"oshirish tavsiya etiladi."
+
+#: server_status.php:43
+msgid "How many temporary files mysqld has created."
+msgstr "MySQL serveri (mysqld) tomonidan tuzilgan vaqtinchalik fayllar soni."
+
+#: server_status.php:44
+msgid ""
+"The number of in-memory temporary tables created automatically by the server "
+"while executing statements."
+msgstr ""
+"Server tomonidan SQL-jumlalari bajarilayotgan vaqtda xotirada avtomatik "
+"tuzilgan vaqtinchalik jadvallar soni."
+
+#: server_status.php:45
+msgid ""
+"The number of rows written with INSERT DELAYED for which some error occurred "
+"(probably duplicate key)."
+msgstr ""
+"\"INSERT DELAYED\" so‘rovlarini qayta ishlash jarayonida yuz bergan xatolar "
+"(masalan, kalitlar takrorlanishi oqibatida) soni."
+
#: server_status.php:46
+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."
+
+#: server_status.php:47
+msgid "The number of INSERT DELAYED rows written."
+msgstr ""
+"Ma`lumotlarni kechiktirib qo‘yish (\"INSERT DELAYED\") rejimida yozilgan "
+"qatorlar soni."
+
+#: server_status.php:48
+msgid "The number of executed FLUSH statements."
+msgstr "Bajarilgan \"FLUSH\" buyruqlar soni."
+
+#: server_status.php:49
+msgid "The number of internal COMMIT statements."
+msgstr "Ichki \"COMMIT\" buyruqlari soni."
+
+#: server_status.php:50
+msgid "The number of times a row was deleted from a table."
+msgstr "Jadvaldal yozuvlarni o‘chirish bo‘yicha sshrovlar soni."
+
+#: server_status.php:51
+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 ""
+"MySQL server ma`lum nom bilan belgilangan jadval mavjudligi haqida so‘rov "
+"berishi mumkin. Bu jarayon topish deb nomlanadi. Handler_discover - topilgan "
+"jadvallar soni."
+
+#: server_status.php:52
+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 ""
+"Indeksdan birinchi yozuvni o‘qishga bo‘lgan so‘rovlar soni. O‘zgaruvchining "
+"qiymati katta bo‘lsa, server bir necha marotiba indeksni ko‘rib chiqadi."
+
+#: server_status.php:53
+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 ""
+"Kalit qiymatlari asosida tuzilgan yozuvlarni o‘qishga bo‘lgan so‘rovlar "
+"soni. O‘zgaruvchining qiymati kattaligi so‘rov va jadvallar to‘g‘ri "
+"indekslanganidan dalolat beradi."
+
+#: server_status.php:54
+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 ""
+"Indekslar joylashuvi tartibida keyingi yozuvni o‘qishga bo‘lgan so‘rovlar "
+"soni. Hajmi cheklangan indeks ustuniga bo‘lgan so‘rov yoki indeksni ko‘rib "
+"chiqish vaqtida o‘zgaruvchi qiymati oshadi."
+
+#: server_status.php:55
+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 ""
+"Indeksni kamayib borish tartibida sortirovka qilinganda oldingi yozuvni "
+"o‘qishga bo‘lgan so‘rovlar soni. Odatda optimallashtirish uchun "
+"qo‘llaniladi: ORDER BY ... DESC."
+
+#: server_status.php:56
+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 "
+"probably have a lot of queries that require MySQL to scan whole tables or "
+"you have joins that don't use keys properly."
+msgstr ""
+"Satrning joylashuviga asoslangan o‘qish uchun so‘rovlar soni. "
+"O‘zgaruvchining katta qiymatiga quyidagilar sabab bo‘lishi mumkin: natijani "
+"sortirovkasidan foydalanadigan so‘rovlarning tez-tez bajarilishi; jadvalni "
+"to‘laligicha ko‘rib chiqishni talab etadigan so‘rovlarning tez-yez "
+"bajarilishi; indekslardan noto‘g‘ri foydalanadigan birlashmalarning "
+"mavjudligi."
+
+#: server_status.php:57
+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 "
+"tables are not properly indexed or that your queries are not written to take "
+"advantage of the indexes you have."
+msgstr ""
+"Ma`lumotlar faylidan keyingi qatorni o‘qishga bo‘lgan so‘rovlar soni. "
+"Jadvalni tez-tez ko‘rib chiqishda ushbu qiymat katta bo‘ladi. Bu hol "
+"jadvallar noto‘g‘ri indekslanganligini yoki so‘rovlar indekslarning "
+"afzalliklaridan foydalanmayotganligini bildiradi."
+
+#: server_status.php:58
+msgid "The number of internal ROLLBACK statements."
+msgstr "ROLLBACK ichki buyruqlar soni."
+
+#: server_status.php:59
+msgid "The number of requests to update a row in a table."
+msgstr "Jadvaldagi yozuvlarni yangilashga bo‘lgan so‘rovlar soni."
+
+#: server_status.php:60
+msgid "The number of requests to insert a row in a table."
+msgstr "Jadvalga yozuv qo‘yishga bo‘lgan so‘rovlar soni."
+
+#: server_status.php:61
+msgid "The number of pages containing data (dirty or clean)."
+msgstr "Ma`lumot mavjud bo‘lgan sahifalar soni (\"kir\" va \"toza\")."
+
+#: server_status.php:62
+msgid "The number of pages currently dirty."
+msgstr "\"Kir\" sahifalarning joriy soni."
+
+#: server_status.php:63
+msgid "The number of buffer pool pages that have been requested to be flushed."
+msgstr "Bufer pulidagi tozalash jarayoni (FLUSH) qo‘llanilgan sahifalar soni."
+
+#: server_status.php:64
+msgid "The number of free pages."
+msgstr "Bo‘sh sahifalar soni."
+
+#: server_status.php:65
+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 ""
+"InnoDB bufer pulidagi blokirovka qilingan sahifalar soni. Ushbu sahifalar "
+"ustidan o‘qish yoki yozish jarayoni bajarilmoqda, yoki ularni boshqa "
+"sabablarga ko‘ra tozalash yoki o‘chirish imkoniyati yo‘q."
+
+#: server_status.php:66
+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 "
+"be calculated as Innodb_buffer_pool_pages_total - "
+"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data."
+msgstr ""
+"Administrativ jarayonlarga ajratilganligi sababli band bo‘lgan sahifalar "
+"soni. Ushbu o‘zgaruvchi qiymatini quyidagi formula yordamida hisoblash "
+"mumkin: \"Innodb_buffer_pool_pages_total - Innodb_buffer_pool_pages_free - "
+"Innodb_buffer_pool_pages_data\"."
+
+#: server_status.php:67
+msgid "Total size of buffer pool, in pages."
+msgstr "Bufer pulining umumiy hajmi (sahifalarda)."
+
+#: server_status.php:68
+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 ""
+"InnoDB tomonidan amalga oshirilgan \"tasodifiy\" oldinga o‘tib ketgan "
+"o‘qishlar soni. Ushbu hol so‘rov jadvalni tasodifiy tartibda ko‘rib "
+"chiqayotganda ro‘y beradi."
+
+#: server_status.php:69
+msgid ""
+"The number of sequential read-aheads InnoDB initiated. This happens when "
+"InnoDB does a sequential full table scan."
+msgstr ""
+"InnoDB tomonidan amalga oshirilgan ketma-ket oldinga o‘tib ketgan o‘qishlar "
+"soni. Ushbu hol InnoDB jadvalni to‘laligicha ketma-ket ko‘rib chiqayotganda "
+"ro‘y beradi"
+
+#: server_status.php:70
+msgid "The number of logical read requests InnoDB has done."
+msgstr ""
+"InnoDB tomonidan amalga oshirilgan o‘qishga bo‘lgan ketma-ket so‘rovlar soni."
+
+#: server_status.php:71
+msgid ""
+"The number of logical reads that InnoDB could not satisfy from buffer pool "
+"and had to do a single-page read."
+msgstr ""
+"InnoDB bufer pulidan bajar olmagan va sahifalab o‘qishdan foydalangan "
+"o‘qishga bo‘lgan ketma-ket so‘rovlar soni."
+
+#: server_status.php:72
+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 "
+"available, it's necessary to wait for pages to be flushed first. This "
+"counter counts instances of these waits. If the buffer pool size was set "
+"properly, this value should be small."
+msgstr ""
+"Odatda, InnoDB bufer puliga yozish fon rejimida amalga oshiriladi. Ammo, "
+"agar bufer pulida bo‘sh sahifalar bo‘lmasa, oldin ularning tozalanishi "
+"kutish kerak. Ushbu hisoblagich shunday kutishlar sonini bildiradi. Agar "
+"bufer pulining hajmi to‘g‘ri belgilangan bo‘lsa, unda kutishlar soni katta "
+"bo‘lmasligi kerak."
+
+#: server_status.php:73
+msgid "The number writes done to the InnoDB buffer pool."
+msgstr "InnoDB bufer puliga amalga oshirilgan yozuvlar soni."
+
+#: server_status.php:74
+msgid "The number of fsync() operations so far."
+msgstr "Joriy vaqtda amalga oshirilgan \"fsync()\" operatsiyalari soni."
+
+#: server_status.php:75
+msgid "The current number of pending fsync() operations."
+msgstr "Tugallanmagan \"fsync()\" operatsiyalari soni."
+
+#: server_status.php:76
+msgid "The current number of pending reads."
+msgstr "Tugallanmagan o‘qish operatsiyalari soni."
+
+#: server_status.php:77
+msgid "The current number of pending writes."
+msgstr "Tugallanmagan yozish operatsiyalari soni."
+
+#: server_status.php:78
+msgid "The amount of data read so far, in bytes."
+msgstr "Joriy vaqtda o‘qilgan ma`lumotlar yig‘indisi (baytlarda)."
+
+#: server_status.php:79
+msgid "The total number of data reads."
+msgstr "Umumiy ma`lumotlarni o‘qish operatsiyalari soni."
+
+#: server_status.php:80
+msgid "The total number of data writes."
+msgstr "Umumiy ma`lumotlarni yozish operatsiyalari soni."
+
+#: server_status.php:81
+msgid "The amount of data written so far, in bytes."
+msgstr "Joriy vaqtda yozilgan ma`lumotlar yig‘indisi (baytlarda)."
+
+#: server_status.php:82
+msgid "The number of pages that have been written for doublewrite operations."
+msgstr "\"doublewrite\" operatsiyalari uchun yozilgan sahifalar soni."
+
+#: server_status.php:83
+msgid "The number of doublewrite operations that have been performed."
+msgstr "Bajarilgan \"doublewrite\" operatsiyalari soni."
+
+#: server_status.php:84
+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 ""
+"Jurnal buferining hajmi kichik bo‘lganligi sababli, uning tozalanishi "
+"kutayotgan yozuvlar soni"
+
+#: server_status.php:85
+msgid "The number of log write requests."
+msgstr "Jurnalga yozishga bo‘lgan so‘rovlarsoni."
+
+#: server_status.php:86
+msgid "The number of physical writes to the log file."
+msgstr "Jurnal faylidagi jismoniy yozuvlar soni."
+
+#: server_status.php:87
+msgid "The number of fsync() writes done to the log file."
+msgstr "Jurnal fayliga \"fsync()\" yordamida amalga oshirilgan yozuvlar soni."
+
+#: server_status.php:88
+msgid "The number of pending log file fsyncs."
+msgstr "\"fsync()\" yordamida amalga oshirilishi kutilayotgan yozuvlar soni."
+
+#: server_status.php:89
+msgid "Pending log file writes."
+msgstr "Tugallanmagan jurnalga yozish so‘rovlari soni."
+
+#: server_status.php:90
+msgid "The number of bytes written to the log file."
+msgstr "Jurnal fayliga yozilgan ma`lumotlar hajmi (baytlarda)."
+
+#: server_status.php:91
+msgid "The number of pages created."
+msgstr "Tuzilgan sahifalar soni."
+
+#: server_status.php:92
+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 ""
+"\"InnoDB\"ga kompilyatsiya qilinadigan sahifa hajmi (asl qiymati - 16Kb). "
+"Ko‘pgina qiymatlar sahifalarda keltiriladi, lekin sahifa hajmi bilgan holda, "
+"ularni baytlarga o‘tkazish mumkin."
+
+#: server_status.php:93
+msgid "The number of pages read."
+msgstr "O‘qilgan sahifalar soni."
+
+#: server_status.php:94
+msgid "The number of pages written."
+msgstr "Yozilgan sahifalar soni."
+
+#: server_status.php:95
+msgid "The number of row locks currently being waited for."
+msgstr "Hozirda kutilayotgan qator blokirovkalari soni."
+
+#: server_status.php:96
+msgid "The average time to acquire a row lock, in milliseconds."
+msgstr "Qator blokirovkasini kutishning o‘rtacha vaqti (millisekundlarda)."
+
+#: server_status.php:97
+msgid "The total time spent in acquiring row locks, in milliseconds."
+msgstr "Qator blokirovkasini kutishning umumiy vaqti (millisekundlarda)."
+
+#: server_status.php:98
+msgid "The maximum time to acquire a row lock, in milliseconds."
+msgstr "Qator blokirovkasini kutishning maksimal vaqti (millisekundlarda)."
+
+#: server_status.php:99
+msgid "The number of times a row lock had to be waited for."
+msgstr "Umumiy kutilayotgan qator blokirovkalari soni."
+
+#: server_status.php:100
+msgid "The number of rows deleted from InnoDB tables."
+msgstr "InnoDB jadvalidan o‘chirilgan qatorlar soni."
+
+#: server_status.php:101
+msgid "The number of rows inserted in InnoDB tables."
+msgstr "InnoDB jadvaliga yozilgan qatorlar soni."
+
+#: server_status.php:102
+msgid "The number of rows read from InnoDB tables."
+msgstr "InnoDB jadvallaridan o‘qilgan qatorlar soni."
+
+#: server_status.php:103
+msgid "The number of rows updated in InnoDB tables."
+msgstr "InnoDB jadvallarida yangilangan qatorlar soni."
+
+#: server_status.php:104
+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 ""
+"Indeks keshidagi o‘zgartirilgan, lekin hali diskka yozilmagan bloklar soni. "
+"Ushbu parametr, shuningdek, \"Not_flushed_key_blocks\" nomi bilan ham ma`lum."
+
+#: server_status.php:105
+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 ""
+"Indeks keshidagi ishlatilmayotgan bloklar soni. Ushbu parametr indeks keshi "
+"ishlatilish darajasini belgilaydi."
+
+#: server_status.php:106
+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 ""
+"Indeks keshidagi ishlatilayotgan bloklar soni. Ushbu qiymat bir vaqtning "
+"o‘zida ishlatilishi mumkin bo‘lgan bloklar sonini bildiradi."
+
+#: server_status.php:107
+msgid "The number of requests to read a key block from the cache."
+msgstr "Indeks keshidagi bloklarni o‘qishga bo‘lgan so‘rovlar soni."
+
+#: server_status.php:108
+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 ""
+"Diskdan indeks bloklarini jismoniy o‘qish operatsiyalari soni. Agar qiymat "
+"katta bo‘lsa, demak, \"key_buffer_size\" o‘zgaruvchining qiymati haddan "
+"tashqari kichik qilib belgilangan. Keshga bo‘lgan muvaffaqiyatsiz "
+"murojaatlar koeffitsiyenti quyidagicha hisoblandi: Key_reads/"
+"Key_read_requests."
+
+#: server_status.php:109
+msgid "The number of requests to write a key block to the cache."
+msgstr "Blokni indeks keshiga yozishga bo‘lgan so‘rovlar soni."
+
+#: server_status.php:110
+msgid "The number of physical writes of a key block to disk."
+msgstr "Diskdan indeks bloklarini jismoniy yozish operatsiyalari soni."
+
+#: server_status.php:111
+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 ""
+"So‘rovlar optimizatori tomonidan hisoblangan oxirgi kompilyatsiya qilingan "
+"so‘rovning umumiy xarajatlari. Ushbu qiymat bir so‘rovning turli sxemalari "
+"effektivligini taqqoslashda foydali hisoblanadi. Asl nol qiymat hali so‘rov "
+"kompilyatsiya jarayoni bajarilmaganligini bildiradi."
+
+#: server_status.php:112
+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."
+
+#: server_status.php:113
+msgid ""
+"The number of tables that have been opened. If opened tables is big, your "
+"table cache value is probably too small."
+msgstr ""
+"Ochilayotgan jadvallarning umumiy soni. Agar o‘zgaruvchining qiymati katta "
+"bo‘lsa, jadval keshi (table_cache) hajmini oshirish tavsiya etiladi."
+
+#: server_status.php:114
+msgid "The number of files that are open."
+msgstr "Ochiq fayllar soni."
+
+#: server_status.php:115
+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."
+
+#: server_status.php:116
+msgid "The number of tables that are open."
+msgstr "Ochiq jadvallar soni."
+
+#: server_status.php:117
+msgid "The number of free memory blocks in query cache."
+msgstr "So‘rovlar keshidagi bo‘sh xotira bloklari soni."
+
+#: server_status.php:118
+msgid "The amount of free memory for query cache."
+msgstr "So‘rovlar keshi uchun bo‘sh xotira hajmi"
+
+#: server_status.php:119
+msgid "The number of cache hits."
+msgstr ""
+"So‘rovlar keshiga \"tushishlar\" soni, ya`ni keshda turgan so‘rovlar "
+"tomonidan qoniqtirilgan so‘rovlar soni."
+
+#: server_status.php:120
+msgid "The number of queries added to the cache."
+msgstr "So‘rovlar keshiga qo‘shilgan so‘rovlar soni."
+
+#: server_status.php:121
+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 "
+"cache size. The query cache uses a least recently used (LRU) strategy to "
+"decide which queries to remove from the cache."
+msgstr ""
+"Yangi so‘rovlarni keshlashga xotira bo‘shatish uchun keshdan o‘chirilgan "
+"so‘rovlar soni. Bu ma`lumot so‘rovlar keshi hajmini belgilashga yordam "
+"beradi. So‘rovlar keshi keshdan so‘rovlarni o‘chirishda \"LRU\" (Least "
+"Recently Used - eng oldingi ishlatilgan) strategiyasidan foydalanadi"
+
+#: server_status.php:122
+msgid ""
+"The number of non-cached queries (not cachable, or not cached due to the "
+"query_cache_type setting)."
+msgstr ""
+"Keshlab bo‘lmaydigan yoki keshlash \"SQL_NO_CACHE\" kalit so‘zi yordamida "
+"so‘ndirilgan so‘rovlar soni."
+
+#: server_status.php:123
+msgid "The number of queries registered in the cache."
+msgstr "Keshda registratsiya qilingan so‘rovlar soni."
+
+#: server_status.php:124
+msgid "The total number of blocks in the query cache."
+msgstr "So‘rovlar keshiga ajratilgan xotira bloklarning umumiy soni."
+
+#: server_status.php:125
+msgctxt "$strShowStatusReset"
+msgid "Reset"
+msgstr "Bekor qilish"
+
+#: server_status.php:126
+msgid "The status of failsafe replication (not yet implemented)."
+msgstr "Barqaror replikatsiyalar soni (hali amalga oshirilmagan)."
+
+#: server_status.php:127
+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 ""
+"Indeks ishlatmasdan bajarilgan birlashma so‘rovlar soni. Agar o‘zgaruvchi "
+"qiymati 0 bo‘lmasa, jadval indekslarini tekshirish tavsiya etiladi."
+
+#: server_status.php:128
+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."
+
+#: server_status.php:129
+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 ""
+"Ikkilamchi jadvaldan qatorlarga murojaat etish uchun diapazon bo‘yicha "
+"qidiruv ishlatgan holda bajarilgan birlashma so‘rovlar soni. Agar "
+"o‘zgaruvchi qiymati 0 bo‘lmasa, jadval indekslarini tekshirish tavsiya "
+"etiladi."
+
+#: server_status.php:130
+msgid ""
+"The number of joins that used ranges on the first table. (It's normally not "
+"critical even if this is big.)"
+msgstr ""
+"Birinchi jadvalda diapazon bo‘yicha qidiruv ishlatgan holda bajarilgan "
+"birlashma so‘rovlar soni. Odatda, ushbu o‘zgaruvchining qiymati, hatto juda "
+"katta bo‘lsa ham, unchalik muhim emas."
+
+#: server_status.php:131
+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."
+
+#: server_status.php:132
+msgid "The number of temporary tables currently open by the slave SQL thread."
+msgstr "Tobe oqim tomonidan joriy vaqtda ochilgan vaqtinchalik jadvallar soni."
+
+#: server_status.php:133
+msgid ""
+"Total (since startup) number of times the replication slave SQL thread has "
+"retried transactions."
+msgstr ""
+"Ishga tushirilgandan buyon replikatsiyaning tobe oqimi tomonidan bajarilgan "
+"qayta tranzaksiyalarning umumiy soni."
+
+#: server_status.php:134
+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."
+
+#: server_status.php:135
+msgid ""
+"The number of threads that have taken more than slow_launch_time seconds to "
+"create."
+msgstr ""
+"Tuzilishi uchun slow_launch_time sekunddan ko‘proq vaqt talab etilgan "
+"oqimlar soni."
+
+#: server_status.php:136
+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."
+
+#: server_status.php:137
+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 ""
+"Sortirovka algoritmi tomonidan bajarilgan o‘tishlar soni. Agar ushbu "
+"o‘zgaruvchi qiymati katta bo‘lsa, \"sort_buffer_size\" o‘zgaruvchisining "
+"qiymatini oshirish zarur."
+
+#: server_status.php:138
+msgid "The number of sorts that were done with ranges."
+msgstr "Diapazon yordamida bajarilgan sortirovka operatsiyalari soni."
+
+#: server_status.php:139
+msgid "The number of sorted rows."
+msgstr "Sortirovka qilingan qatorlar soni"
+
+#: server_status.php:140
+msgid "The number of sorts that were done by scanning the table."
+msgstr ""
+"Jadvalni to‘laligicha ko‘rib chiqish yordamida bajarilgan sortirovka "
+"operatsiyalari soni."
+
+#: server_status.php:141
+msgid "The number of times that a table lock was acquired immediately."
+msgstr ""
+"Darhol qoniqtirilgan jadvalni blokirovka qilishga bo‘lgan so‘rovlar soni."
+
+#: server_status.php:142
+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 "
+"should first optimize your queries, and then either split your table or "
+"tables or use replication."
+msgstr ""
+"Ma`lum bir vaqtdandan keyin qoniqtirilgan jadvalni blokirovka qilishga "
+"bo‘lgan so‘rovlar soni. Agar qiymat juda katta bo‘lsa va unumdorlik bo‘yicha "
+"muammolar paydo bo‘layotgan bo‘lsa, avval so‘rovlarni optimallashtirish, "
+"so‘ngra esa jadval(lar)ni qismlarga bo‘lish yoki replikatsiya ishlatish "
+"kerak."
+
+#: server_status.php:143
+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 ""
+"Keshdagi oqimlar soni. Keshga bo‘lgan muvaffaqiyatli murojaatlar "
+"chastotasini quyidagi formula yordamida hisoblash mumkin: Threads_created/"
+"Connections. Agar ushbu qiymat qizil rang bilan belgilangan bo‘lsa, unda "
+"\"thread_cache_size\" o‘zgaruvchisining qiymatini oshirish zarur."
+
+#: server_status.php:144
+msgid "The number of currently open connections."
+msgstr "Ochiq joriy ulanishlar soni."
+
+#: server_status.php:145
+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 "
+"doesn't give a notable performance improvement if you have a good thread "
+"implementation.)"
+msgstr ""
+"Kliyent bilan ulanishni qo‘llab-quvvatlash uchun tuzilgan oqimlarning umumiy "
+"soni. O‘zgaruvchi qiymati juda katta bo‘lsa, \"thread_cache_size\" "
+"o‘zgaruvchisining qiymatini oshirish mumkin (lekin u unumdorlikni unchalik "
+"ham oshirmaydi)."
+
+#: server_status.php:146
+msgid "The number of threads that are not sleeping."
+msgstr "Faol holatda bo‘lgan jarayonlar soni."
+
+#: server_status.php:157
msgid "Runtime Information"
msgstr "MySQL-serverning hozirgi holati"
-#: server_status.php:250
+#: server_status.php:361
msgid "Handler"
msgstr "Qayta ishlovchi dastur"
-#: server_status.php:251
+#: server_status.php:362
msgid "Query cache"
msgstr "So‘rovlar keshi"
-#: server_status.php:252
+#: server_status.php:363
msgid "Threads"
msgstr "Oqimlar"
-#: server_status.php:254
+#: server_status.php:365
msgid "Temporary data"
msgstr "Vaqtinchalik ma`lumotlar"
-#: server_status.php:255
+#: server_status.php:366
msgid "Delayed inserts"
msgstr "Kechiktirilgan qo‘yilmalar"
-#: server_status.php:256
+#: server_status.php:367
msgid "Key cache"
msgstr "Indeks keshi"
-#: server_status.php:257
+#: server_status.php:368
msgid "Joins"
msgstr "Birlashishlar"
-#: server_status.php:259
+#: server_status.php:370
msgid "Sorting"
msgstr "Sortirovka"
-#: server_status.php:261
+#: server_status.php:372
msgid "Transaction coordinator"
msgstr "Tranzaksiyalar koordinatori"
-#: server_status.php:271
+#: server_status.php:382
msgid "Flush (close) all tables"
msgstr "Barcha jadvallarni yopish"
-#: server_status.php:273
+#: server_status.php:384
msgid "Show open tables"
msgstr "Ochiq jadvallar ro‘yxati"
-#: server_status.php:278
+#: server_status.php:389
msgid "Show slave hosts"
msgstr "Tobe serverlar haqida ma`lumot"
-#: server_status.php:284
+#: server_status.php:395
msgid "Show slave status"
msgstr "Replikatsiya serveri ahvoli haqida ma`lumot"
-#: server_status.php:289
+#: server_status.php:400
msgid "Flush query cache"
msgstr "So‘rovlar keshini defragmentatsiya qilish"
-#: server_status.php:294
+#: server_status.php:405
msgid "Show processes"
msgstr "Jarayonlar ro‘yxati"
-#: server_status.php:344
+#: server_status.php:455
#, fuzzy
#| msgid "Reset"
msgctxt "for Show status"
msgid "Reset"
msgstr "Tozalash"
-#: server_status.php:350
+#: server_status.php:461
#, php-format
msgid "This MySQL server has been running for %s. It started up on %s."
msgstr ""
"MySQL-server \"%s\" davomida ishlamoqda. Ishga tushirilgan vaqt: \"%s\"."
-#: server_status.php:360
+#: server_status.php:471
#, fuzzy
#| msgid "This server is configured as master in a replication process."
msgid ""
@@ -6073,21 +6085,21 @@ msgid ""
msgstr ""
"Ushbu sеrvеr rеplikatsiya jarayonida \"bosh\" dеb konfiguratsiya qilingan."
-#: server_status.php:362
+#: server_status.php:473
#, fuzzy
#| msgid "This server is configured as master in a replication process."
msgid "This MySQL server works as master in replication process."
msgstr ""
"Ushbu sеrvеr rеplikatsiya jarayonida \"bosh\" dеb konfiguratsiya qilingan."
-#: server_status.php:364
+#: server_status.php:475
#, fuzzy
#| msgid "This server is configured as master in a replication process."
msgid "This MySQL server works as slave in replication process."
msgstr ""
"Ushbu sеrvеr rеplikatsiya jarayonida \"bosh\" dеb konfiguratsiya qilingan."
-#: server_status.php:366
+#: server_status.php:477
#, fuzzy
#| msgid ""
#| "This MySQL server works as %s in replication process. For further "
@@ -6102,7 +6114,7 @@ msgstr ""
"uchun, <a href=\"#replication\">replikatsiya bo‘limi</a>ga "
"kiring."
-#: server_status.php:383
+#: server_status.php:494
msgid ""
"Server traffic: These tables show the network traffic statistics of "
"this MySQL server since its startup."
@@ -6110,11 +6122,11 @@ msgstr ""
"Trafik: MySQL-server ishga tushirilgandan vaqtdan boshlab tarmoq trafiki "
"statistikasi."
-#: server_status.php:388
+#: server_status.php:499
msgid "Traffic"
msgstr "Trafik"
-#: server_status.php:388
+#: server_status.php:499
msgid ""
"On a busy server, the byte counters may overrun, so those statistics as "
"reported by the MySQL server may be incorrect."
@@ -6123,36 +6135,36 @@ msgstr ""
"shuning uchun, MySQL serveri bergan statistik ma`lumotlar noto‘g‘ri bo‘lishi "
"mumkin."
-#: server_status.php:389 server_status.php:434 server_status.php:497
-#: server_status.php:555
+#: server_status.php:500 server_status.php:545 server_status.php:608
+#: server_status.php:666
msgid "per hour"
msgstr "soatiga"
-#: server_status.php:394
+#: server_status.php:505
msgid "Received"
msgstr "Qabul qilindi"
-#: server_status.php:404
+#: server_status.php:515
msgid "Sent"
msgstr "Yuborildi"
-#: server_status.php:433
+#: server_status.php:544
msgid "Connections"
msgstr "Ulanishlar"
-#: server_status.php:440
+#: server_status.php:551
msgid "max. concurrent connections"
msgstr "Maksimal ulanishlar soni "
-#: server_status.php:447
+#: server_status.php:558
msgid "Failed attempts"
msgstr "Muvaffaqiyatsiz urinishlar soni: "
-#: server_status.php:461
+#: server_status.php:572
msgid "Aborted"
msgstr "Uzildi"
-#: server_status.php:490
+#: server_status.php:601
#, php-format
msgid ""
"Query statistics: Since its startup, %s queries have been sent to the "
@@ -6161,19 +6173,19 @@ msgstr ""
"So‘rovlar statiskasi: ishga tushirilgandan vaqtdan boshlab serverga "
"yuborilgan so‘rovlar soni - \"%s\"."
-#: server_status.php:498
+#: server_status.php:609
msgid "per minute"
msgstr "minutiga"
-#: server_status.php:499
+#: server_status.php:610
msgid "per second"
msgstr "sekundiga"
-#: server_status.php:554
+#: server_status.php:665
msgid "Query type"
msgstr "So‘rov turi"
-#: server_status.php:721
+#: server_status.php:832
msgid "Replication status"
msgstr "Replikatsiya statusi"
diff --git a/po/zh_CN.po b/po/zh_CN.po
index 3adc8f8d7..ccbbafba9 100755
--- a/po/zh_CN.po
+++ b/po/zh_CN.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-06-04 16:07-0400\n"
+"POT-Creation-Date: 2010-06-08 12:32-0400\n"
"PO-Revision-Date: 2010-06-04 14:09+0200\n"
"Last-Translator: shanyan baishui \n"
"Language-Team: chinese_simplified \n"
@@ -15,11 +15,11 @@ msgstr ""
"X-Generator: Pootle 2.0.1\n"
#: browse_foreigners.php:38 browse_foreigners.php:59
-#: libraries/display_tbl.lib.php:417 server_privileges.php:1475
+#: libraries/display_tbl.lib.php:417 server_privileges.php:1514
msgid "Show all"
msgstr "全部显示"
-#: browse_foreigners.php:82 libraries/common.lib.php:2304
+#: browse_foreigners.php:82 libraries/common.lib.php:2313
#: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:394
#: libraries/export/pdf.php:147 pdf_schema.php:283 pdf_schema.php:1123
#: pdf_schema.php:1139
@@ -37,8 +37,8 @@ msgstr ""
#: browse_foreigners.php:150 db_structure.php:79 db_structure.php:80
#: db_structure.php:91 db_structure.php:93 db_structure.php:104
-#: db_structure.php:106 libraries/common.lib.php:2822
-#: libraries/common.lib.php:2829 libraries/db_links.inc.php:75
+#: db_structure.php:106 libraries/common.lib.php:2831
+#: libraries/common.lib.php:2838 libraries/db_links.inc.php:75
#: libraries/tbl_links.inc.php:63
msgid "Search"
msgstr "搜索"
@@ -48,7 +48,7 @@ msgstr "搜索"
#: db_structure.php:567 js/messages.php:48 libraries/Config.class.php:1046
#: libraries/Theme_Manager.class.php:311
#: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719
-#: libraries/common.lib.php:1333 libraries/common.lib.php:2279
+#: libraries/common.lib.php:1335 libraries/common.lib.php:2288
#: libraries/display_change_password.lib.php:82
#: libraries/display_create_table.lib.php:63
#: libraries/display_export.lib.php:275 libraries/display_import.lib.php:276
@@ -59,9 +59,9 @@ msgstr "搜索"
#: libraries/sql_query_form.lib.php:552 libraries/tbl_properties.inc.php:782
#: main.php:128 navigation.php:237 pdf_pages.php:292 pdf_pages.php:328
#: pdf_pages.php:530 pmd_pdf.php:116 server_binlog.php:142
-#: server_privileges.php:625 server_privileges.php:1585
-#: server_privileges.php:1932 server_privileges.php:1979
-#: server_privileges.php:2018 server_replication.php:235
+#: server_privileges.php:664 server_privileges.php:1624
+#: server_privileges.php:1971 server_privileges.php:2018
+#: server_privileges.php:2057 server_replication.php:235
#: server_replication.php:318 server_replication.php:341
#: server_synchronize.php:1209 tbl_change.php:330 tbl_change.php:1174
#: tbl_change.php:1211 tbl_indexes.php:254 tbl_operations.php:265
@@ -79,7 +79,7 @@ msgstr "键名"
#: browse_foreigners.php:169 browse_foreigners.php:171
#: server_collations.php:55 server_collations.php:67 server_engines.php:59
-#: server_status.php:628
+#: server_status.php:739
msgid "Description"
msgstr "说明"
@@ -118,7 +118,7 @@ msgstr "字段"
#: libraries/db_structure.lib.php:60 libraries/export/htmlword.php:245
#: libraries/export/latex.php:360 libraries/export/odt.php:297
#: libraries/export/texytext.php:234 libraries/tbl_properties.inc.php:100
-#: pdf_schema.php:1263 pdf_schema.php:1284 server_privileges.php:2031
+#: pdf_schema.php:1263 pdf_schema.php:1284 server_privileges.php:2070
#: tbl_change.php:287 tbl_change.php:314 tbl_printview.php:143
#: tbl_printview.php:313 tbl_select.php:136 tbl_structure.php:178
#: tbl_structure.php:659 tbl_tracking.php:274 tbl_tracking.php:321
@@ -162,9 +162,9 @@ msgstr "注释"
#: libraries/Index.class.php:386 libraries/export/htmlword.php:322
#: libraries/export/latex.php:430 libraries/export/odt.php:368
#: libraries/export/texytext.php:311 libraries/mult_submits.inc.php:263
-#: pdf_schema.php:1344 server_privileges.php:1529 server_privileges.php:1540
-#: server_privileges.php:1850 server_privileges.php:1855
-#: server_privileges.php:2148 sql.php:132 sql.php:194 tbl_printview.php:229
+#: pdf_schema.php:1344 server_privileges.php:1568 server_privileges.php:1579
+#: server_privileges.php:1889 server_privileges.php:1894
+#: server_privileges.php:2187 sql.php:132 sql.php:194 tbl_printview.php:229
#: tbl_structure.php:350 tbl_tracking.php:337 tbl_tracking.php:342
msgid "No"
msgstr "否"
@@ -178,9 +178,9 @@ msgstr "否"
#: libraries/mult_submits.inc.php:101 libraries/mult_submits.inc.php:106
#: libraries/mult_submits.inc.php:111 libraries/mult_submits.inc.php:262
#: libraries/mult_submits.inc.php:273 pdf_schema.php:1344
-#: server_databases.php:64 server_privileges.php:1526
-#: server_privileges.php:1540 server_privileges.php:1850
-#: server_privileges.php:1853 server_privileges.php:2148 sql.php:193
+#: server_databases.php:64 server_privileges.php:1565
+#: server_privileges.php:1579 server_privileges.php:1889
+#: server_privileges.php:1892 server_privileges.php:2187 sql.php:193
#: tbl_printview.php:229 tbl_structure.php:40 tbl_structure.php:350
#: tbl_tracking.php:335 tbl_tracking.php:340
msgid "Yes"
@@ -277,7 +277,7 @@ msgstr "切换到复制的数据库"
msgid "BLOB Repository"
msgstr "BLOB 容器"
-#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1350
+#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1352
#: libraries/server_links.inc.php:49 server_processlist.php:59
#: tbl_tracking.php:596 test/theme.php:101
msgid "Status"
@@ -332,8 +332,8 @@ msgstr "编辑 PDF 页"
#: db_printview.php:104 db_tracking.php:72 db_tracking.php:157
#: libraries/db_structure.lib.php:46 libraries/export/xml.php:328
-#: libraries/header.inc.php:126 pdf_pages.php:424 server_privileges.php:1626
-#: server_privileges.php:1682 server_privileges.php:1946
+#: libraries/header.inc.php:126 pdf_pages.php:424 server_privileges.php:1665
+#: server_privileges.php:1721 server_privileges.php:1985
#: server_synchronize.php:423 server_synchronize.php:866 tbl_tracking.php:592
#: test/theme.php:75
msgid "Table"
@@ -432,7 +432,7 @@ msgstr "删除"
#: db_qbe.php:370 db_qbe.php:451 db_qbe.php:522 db_qbe.php:553
#: libraries/display_import.lib.php:166 libraries/tbl_properties.inc.php:779
-#: server_privileges.php:258 tbl_change.php:1031 tbl_indexes.php:250
+#: server_privileges.php:297 tbl_change.php:1031 tbl_indexes.php:250
#: tbl_select.php:288
msgid "Or"
msgstr "或"
@@ -464,7 +464,7 @@ msgstr "使用表"
msgid "SQL query on database %s:"
msgstr "在数据库 %s 执行 SQL 语句:"
-#: db_qbe.php:934 libraries/common.lib.php:1223
+#: db_qbe.php:934 libraries/common.lib.php:1225
msgid "Submit Query"
msgstr "提交查询"
@@ -503,7 +503,7 @@ msgstr "%s 个匹配 - 于表 %s 中"
#: db_search.php:267 db_structure.php:77 db_structure.php:78
#: db_structure.php:90 db_structure.php:92 db_structure.php:103
-#: db_structure.php:105 libraries/common.lib.php:2824
+#: db_structure.php:105 libraries/common.lib.php:2833
#: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50
#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:467
msgid "Browse"
@@ -550,26 +550,26 @@ msgstr "包含字段:"
#: db_structure.php:81 db_structure.php:82 db_structure.php:94
#: db_structure.php:95 db_structure.php:107 db_structure.php:108
-#: libraries/common.lib.php:2823 libraries/sql_query_form.lib.php:334
+#: libraries/common.lib.php:2832 libraries/sql_query_form.lib.php:334
#: libraries/sql_query_form.lib.php:337 libraries/tbl_links.inc.php:76
msgid "Insert"
msgstr "插入"
#: db_structure.php:83 db_structure.php:96 db_structure.php:109
-#: libraries/common.lib.php:2820 libraries/common.lib.php:2827
+#: libraries/common.lib.php:2829 libraries/common.lib.php:2836
#: libraries/db_links.inc.php:63 libraries/export/htmlword.php:23
#: libraries/export/latex.php:33 libraries/export/latex.php:337
#: libraries/export/odt.php:32 libraries/export/sql.php:60
#: libraries/export/texytext.php:23 libraries/import.lib.php:1104
#: libraries/tbl_links.inc.php:56 pmd_general.php:134
-#: server_privileges.php:554 server_replication.php:315 tbl_tracking.php:269
+#: server_privileges.php:593 server_replication.php:315 tbl_tracking.php:269
msgid "Structure"
msgstr "结构"
#: db_structure.php:84 db_structure.php:85 db_structure.php:97
#: db_structure.php:98 db_structure.php:110 db_structure.php:111
#: db_structure.php:545 db_structure.php:546 db_tracking.php:91
-#: libraries/Index.class.php:483 libraries/common.lib.php:1654
+#: libraries/Index.class.php:483 libraries/common.lib.php:1656
#: libraries/db_links.inc.php:100 libraries/mult_submits.inc.php:36
#: libraries/mult_submits.inc.php:73 libraries/tbl_links.inc.php:127
#: server_databases.php:352 tbl_structure.php:27 tbl_structure.php:151
@@ -579,7 +579,7 @@ msgstr "删除"
#: db_structure.php:86 db_structure.php:87 db_structure.php:99
#: db_structure.php:100 db_structure.php:112 db_structure.php:113
-#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1653
+#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1655
#: libraries/mult_submits.inc.php:39 libraries/tbl_links.inc.php:105
msgid "Empty"
msgstr "清空"
@@ -621,7 +621,7 @@ msgstr "视图"
#: db_structure.php:485 libraries/db_structure.lib.php:49
#: libraries/server_links.inc.php:70 server_replication.php:33
-#: server_replication.php:164 server_status.php:258
+#: server_replication.php:164 server_status.php:369
msgid "Replication"
msgstr "复制"
@@ -637,20 +637,20 @@ msgstr "%s 是此 MySQL 服务器的默认存储引擎。"
#: db_structure.php:524 db_structure.php:541 db_structure.php:542
#: libraries/display_tbl.lib.php:2081 libraries/display_tbl.lib.php:2086
#: libraries/mult_submits.inc.php:16 server_databases.php:346
-#: server_databases.php:351 server_privileges.php:1557 tbl_structure.php:455
+#: server_databases.php:351 server_privileges.php:1596 tbl_structure.php:455
#: tbl_structure.php:464
msgid "With selected:"
msgstr "选中项:"
#: db_structure.php:527 libraries/display_tbl.lib.php:2076
-#: server_databases.php:348 server_privileges.php:530
-#: server_privileges.php:1560 tbl_structure.php:458
+#: server_databases.php:348 server_privileges.php:569
+#: server_privileges.php:1599 tbl_structure.php:458
msgid "Check All"
msgstr "全选"
#: db_structure.php:531 libraries/display_tbl.lib.php:2077
#: libraries/replication_gui.lib.php:33 server_databases.php:350
-#: server_privileges.php:533 server_privileges.php:1564 tbl_structure.php:462
+#: server_privileges.php:572 server_privileges.php:1603 tbl_structure.php:462
msgid "Uncheck All"
msgstr "全不选"
@@ -688,7 +688,7 @@ msgstr "分析表"
#: libraries/display_export.lib.php:83 libraries/display_tbl.lib.php:2094
#: libraries/display_tbl.lib.php:2225 libraries/mult_submits.inc.php:62
#: libraries/server_links.inc.php:84 libraries/tbl_links.inc.php:82
-#: pmd_pdf.php:84 pmd_pdf.php:109 server_privileges.php:1341
+#: pmd_pdf.php:84 pmd_pdf.php:109 server_privileges.php:1380
#: setup/frames/menu.inc.php:22 tbl_row_action.php:59
msgid "Export"
msgstr "导出"
@@ -706,8 +706,8 @@ msgstr "已追踪的表"
#: libraries/export/sql.php:342 libraries/export/texytext.php:84
#: libraries/export/xml.php:255 libraries/header.inc.php:106
#: libraries/header_printview.inc.php:58 server_databases.php:169
-#: server_privileges.php:1621 server_privileges.php:1682
-#: server_privileges.php:1940 server_processlist.php:56
+#: server_privileges.php:1660 server_privileges.php:1721
+#: server_privileges.php:1979 server_processlist.php:56
#: server_synchronize.php:1179 server_synchronize.php:1183
#: tbl_tracking.php:591 test/theme.php:65
msgid "Database"
@@ -727,8 +727,8 @@ msgstr "更新"
#: db_tracking.php:77 libraries/Index.class.php:440
#: libraries/db_structure.lib.php:53 server_databases.php:203
-#: server_privileges.php:1503 server_privileges.php:1686
-#: server_privileges.php:2034 tbl_structure.php:187
+#: server_privileges.php:1542 server_privileges.php:1725
+#: server_privileges.php:2073 tbl_structure.php:187
msgid "Action"
msgstr "操作"
@@ -920,11 +920,11 @@ msgstr "主机名不能为空!"
msgid "The user name is empty!"
msgstr "用户名不能为空!"
-#: js/messages.php:44 server_privileges.php:1197 user_password.php:70
+#: js/messages.php:44 server_privileges.php:1236 user_password.php:70
msgid "The password is empty!"
msgstr "密码不能为空!"
-#: js/messages.php:45 server_privileges.php:1195 user_password.php:73
+#: js/messages.php:45 server_privileges.php:1234 user_password.php:73
msgid "The passwords aren't the same!"
msgstr "两次密码不一致!"
@@ -997,8 +997,8 @@ msgid "Prev"
msgstr "上个月"
#. l10n: Display text for next month link in calendar
-#: js/messages.php:77 libraries/common.lib.php:2344
-#: libraries/common.lib.php:2347 libraries/display_tbl.lib.php:338
+#: js/messages.php:77 libraries/common.lib.php:2353
+#: libraries/common.lib.php:2356 libraries/display_tbl.lib.php:338
#: server_binlog.php:205 server_binlog.php:207 tbl_printview.php:424
#: tbl_structure.php:801
msgid "Next"
@@ -1058,63 +1058,63 @@ msgid "December"
msgstr "十二月"
#. l10n: Short month name
-#: js/messages.php:97 libraries/common.lib.php:1555
+#: js/messages.php:97 libraries/common.lib.php:1557
msgid "Jan"
msgstr "一月"
#. l10n: Short month name
-#: js/messages.php:99 libraries/common.lib.php:1557
+#: js/messages.php:99 libraries/common.lib.php:1559
msgid "Feb"
msgstr "二月"
#. l10n: Short month name
-#: js/messages.php:101 libraries/common.lib.php:1559
+#: js/messages.php:101 libraries/common.lib.php:1561
msgid "Mar"
msgstr "三月"
#. l10n: Short month name
-#: js/messages.php:103 libraries/common.lib.php:1561
+#: js/messages.php:103 libraries/common.lib.php:1563
msgid "Apr"
msgstr "四月"
#. l10n: Short month name
-#: js/messages.php:105 libraries/common.lib.php:1563
+#: js/messages.php:105 libraries/common.lib.php:1565
msgctxt "Short month name"
msgid "May"
msgstr "五月"
#. l10n: Short month name
-#: js/messages.php:107 libraries/common.lib.php:1565
+#: js/messages.php:107 libraries/common.lib.php:1567
msgid "Jun"
msgstr "六月"
#. l10n: Short month name
-#: js/messages.php:109 libraries/common.lib.php:1567
+#: js/messages.php:109 libraries/common.lib.php:1569
msgid "Jul"
msgstr "七月"
#. l10n: Short month name
-#: js/messages.php:111 libraries/common.lib.php:1569
+#: js/messages.php:111 libraries/common.lib.php:1571
msgid "Aug"
msgstr "八月"
#. l10n: Short month name
-#: js/messages.php:113 libraries/common.lib.php:1571
+#: js/messages.php:113 libraries/common.lib.php:1573
msgid "Sep"
msgstr "九月"
#. l10n: Short month name
-#: js/messages.php:115 libraries/common.lib.php:1573
+#: js/messages.php:115 libraries/common.lib.php:1575
msgid "Oct"
msgstr "十月"
#. l10n: Short month name
-#: js/messages.php:117 libraries/common.lib.php:1575
+#: js/messages.php:117 libraries/common.lib.php:1577
msgid "Nov"
msgstr "十一月"
#. l10n: Short month name
-#: js/messages.php:119 libraries/common.lib.php:1577
+#: js/messages.php:119 libraries/common.lib.php:1579
msgid "Dec"
msgstr "十二月"
@@ -1147,37 +1147,37 @@ msgid "Saturday"
msgstr "星期六"
#. l10n: Short week day name
-#: js/messages.php:132 libraries/common.lib.php:1580
+#: js/messages.php:132 libraries/common.lib.php:1582
msgid "Sun"
msgstr "周日"
#. l10n: Short week day name
-#: js/messages.php:134 libraries/common.lib.php:1582
+#: js/messages.php:134 libraries/common.lib.php:1584
msgid "Mon"
msgstr "周一"
#. l10n: Short week day name
-#: js/messages.php:136 libraries/common.lib.php:1584
+#: js/messages.php:136 libraries/common.lib.php:1586
msgid "Tue"
msgstr "周二"
#. l10n: Short week day name
-#: js/messages.php:138 libraries/common.lib.php:1586
+#: js/messages.php:138 libraries/common.lib.php:1588
msgid "Wed"
msgstr "周三"
#. l10n: Short week day name
-#: js/messages.php:140 libraries/common.lib.php:1588
+#: js/messages.php:140 libraries/common.lib.php:1590
msgid "Thu"
msgstr "周四"
#. l10n: Short week day name
-#: js/messages.php:142 libraries/common.lib.php:1590
+#: js/messages.php:142 libraries/common.lib.php:1592
msgid "Fri"
msgstr "周五"
#. l10n: Short week day name
-#: js/messages.php:144 libraries/common.lib.php:1592
+#: js/messages.php:144 libraries/common.lib.php:1594
msgid "Sat"
msgstr "周六"
@@ -1304,7 +1304,7 @@ msgid "Comment"
msgstr "注释"
#: libraries/Index.class.php:466 libraries/common.lib.php:616
-#: libraries/common.lib.php:1199 libraries/display_tbl.lib.php:1117
+#: libraries/common.lib.php:1201 libraries/display_tbl.lib.php:1117
#: libraries/import.lib.php:1087 libraries/import.lib.php:1111
#: pdf_pages.php:285 setup/frames/index.inc.php:124
#: setup/lib/messages.inc.php:352 tbl_row_action.php:69
@@ -1328,7 +1328,7 @@ msgid ""
msgstr "索引 %1$s 和 %2$s 可能是相同的,其中一个将可能被删除"
#: libraries/List_Database.class.php:431 libraries/server_links.inc.php:41
-#: server_databases.php:88 server_privileges.php:1621
+#: server_databases.php:88 server_privileges.php:1660
#: setup/lib/messages.inc.php:110 test/theme.php:93
msgid "Databases"
msgstr "数据库"
@@ -1646,7 +1646,7 @@ msgid "Documentation"
msgstr "文档"
#: libraries/common.lib.php:595 libraries/header_printview.inc.php:61
-#: server_processlist.php:60 server_status.php:247
+#: server_processlist.php:60 server_status.php:358
msgid "SQL query"
msgstr "SQL 查询"
@@ -1662,128 +1662,128 @@ msgstr "解释 SQL"
msgid "Skip Explain SQL"
msgstr "略过解释 SQL"
-#: libraries/common.lib.php:1212
+#: libraries/common.lib.php:1214
msgid "Without PHP Code"
msgstr "无 PHP 代码"
-#: libraries/common.lib.php:1215 setup/lib/messages.inc.php:355
+#: libraries/common.lib.php:1217 setup/lib/messages.inc.php:355
msgid "Create PHP Code"
msgstr "创建 PHP 代码"
-#: libraries/common.lib.php:1233 server_status.php:341
+#: libraries/common.lib.php:1235 server_status.php:452
#: setup/lib/messages.inc.php:354
msgid "Refresh"
msgstr "刷新"
-#: libraries/common.lib.php:1242
+#: libraries/common.lib.php:1244
msgid "Skip Validate SQL"
msgstr "略过校验 SQL"
-#: libraries/common.lib.php:1245 setup/lib/messages.inc.php:356 sql.php:518
+#: libraries/common.lib.php:1247 setup/lib/messages.inc.php:356 sql.php:518
msgid "Validate SQL"
msgstr "校验 SQL"
-#: libraries/common.lib.php:1276
+#: libraries/common.lib.php:1278
msgid "Inline edit of this query"
msgstr "在本页面编辑此查询"
-#: libraries/common.lib.php:1278
+#: libraries/common.lib.php:1280
msgid "Inline"
msgstr "内联"
-#: libraries/common.lib.php:1332 libraries/common.lib.php:1347
+#: libraries/common.lib.php:1334 libraries/common.lib.php:1349
msgid "Profiling"
msgstr "概要"
-#: libraries/common.lib.php:1351 libraries/tbl_triggers.lib.php:28
+#: libraries/common.lib.php:1353 libraries/tbl_triggers.lib.php:28
#: server_processlist.php:58
msgid "Time"
msgstr "时间"
#. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "B"
msgstr "字节"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "KiB"
msgstr "KB"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "MiB"
msgstr "MB"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "GiB"
msgstr "GB"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "TiB"
msgstr "TB"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "PiB"
msgstr "PB"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "EiB"
msgstr "EB"
#. l10n: Thousands separator
-#: libraries/common.lib.php:1417
+#: libraries/common.lib.php:1419
msgid ","
msgstr ","
#. l10n: Decimal separator
-#: libraries/common.lib.php:1419
+#: libraries/common.lib.php:1421
msgid "."
msgstr "."
#. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string
-#: libraries/common.lib.php:1596
+#: libraries/common.lib.php:1598
#: libraries/transformations/text_plain__dateformat.inc.php:34
msgid "%B %d, %Y at %I:%M %p"
msgstr "%Y 年 %m 月 %d 日 %H:%M"
-#: libraries/common.lib.php:1898
+#: libraries/common.lib.php:1907
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "%s 天 %s 小时,%s 分 %s 秒"
-#: libraries/common.lib.php:2313 libraries/common.lib.php:2316
-#: libraries/display_tbl.lib.php:290 server_status.php:608
+#: libraries/common.lib.php:2322 libraries/common.lib.php:2325
+#: libraries/display_tbl.lib.php:290 server_status.php:719
msgid "Begin"
msgstr "开始"
-#: libraries/common.lib.php:2314 libraries/common.lib.php:2317
+#: libraries/common.lib.php:2323 libraries/common.lib.php:2326
#: libraries/display_tbl.lib.php:291 server_binlog.php:168
#: server_binlog.php:170
msgid "Previous"
msgstr "上一个"
-#: libraries/common.lib.php:2345 libraries/common.lib.php:2348
+#: libraries/common.lib.php:2354 libraries/common.lib.php:2357
#: libraries/display_tbl.lib.php:353
msgid "End"
msgstr "结束"
-#: libraries/common.lib.php:2421
+#: libraries/common.lib.php:2430
#, php-format
msgid "Jump to database "%s"."
msgstr "跳转到数据库“%s”。"
-#: libraries/common.lib.php:2441
+#: libraries/common.lib.php:2450
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr "%s 功能受到一个已知的缺陷 (bug) 影响,参见 %s"
-#: libraries/common.lib.php:2821 libraries/common.lib.php:2828
+#: libraries/common.lib.php:2830 libraries/common.lib.php:2837
#: libraries/db_links.inc.php:68 libraries/export/sql.php:25
#: libraries/import/sql.php:18 libraries/server_links.inc.php:45
#: libraries/tbl_links.inc.php:60 querywindow.php:99 test/theme.php:97
msgid "SQL"
msgstr "SQL"
-#: libraries/common.lib.php:2830 libraries/db_links.inc.php:104
+#: libraries/common.lib.php:2839 libraries/db_links.inc.php:104
#: libraries/tbl_links.inc.php:95 libraries/tbl_links.inc.php:117
#: view_operations.php:89
msgid "Operations"
@@ -1839,8 +1839,8 @@ msgid "Import"
msgstr "导入"
#: libraries/db_links.inc.php:111 libraries/server_links.inc.php:66
-#: server_privileges.php:72 server_privileges.php:1683
-#: server_privileges.php:2032 test/theme.php:117
+#: server_privileges.php:111 server_privileges.php:1722
+#: server_privileges.php:2071 test/theme.php:117
msgid "Privileges"
msgstr "权限"
@@ -1887,22 +1887,22 @@ msgid "Change password"
msgstr "修改密码"
#: libraries/display_change_password.lib.php:35
-#: libraries/replication_gui.lib.php:345 server_privileges.php:768
+#: libraries/replication_gui.lib.php:345 server_privileges.php:807
msgid "No Password"
msgstr "无密码"
#: libraries/display_change_password.lib.php:41
#: libraries/replication_gui.lib.php:59 libraries/replication_gui.lib.php:60
#: libraries/replication_gui.lib.php:335 libraries/replication_gui.lib.php:339
-#: libraries/replication_gui.lib.php:349 server_privileges.php:757
-#: server_privileges.php:761 server_privileges.php:772
-#: server_privileges.php:1499 server_synchronize.php:1175
+#: libraries/replication_gui.lib.php:349 server_privileges.php:796
+#: server_privileges.php:800 server_privileges.php:811
+#: server_privileges.php:1538 server_synchronize.php:1175
msgid "Password"
msgstr "密码"
#: libraries/display_change_password.lib.php:46
#: libraries/replication_gui.lib.php:353 libraries/replication_gui.lib.php:356
-#: server_privileges.php:776 server_privileges.php:779
+#: server_privileges.php:815 server_privileges.php:818
msgid "Re-type"
msgstr "重新输入"
@@ -1915,12 +1915,12 @@ msgid "MySQL 4.0 compatible"
msgstr "MySQL 4.0 兼容"
#: libraries/display_change_password.lib.php:72
-#: libraries/replication_gui.lib.php:360 server_privileges.php:783
+#: libraries/replication_gui.lib.php:360 server_privileges.php:822
msgid "Generate Password"
msgstr "生成密码"
#: libraries/display_change_password.lib.php:75
-#: libraries/replication_gui.lib.php:363 server_privileges.php:786
+#: libraries/replication_gui.lib.php:363 server_privileges.php:825
msgid "Generate"
msgstr "生成"
@@ -1933,8 +1933,8 @@ msgstr "新建数据库"
msgid "Create"
msgstr "创建"
-#: libraries/display_create_database.lib.php:40 server_privileges.php:74
-#: server_privileges.php:1388 server_replication.php:35
+#: libraries/display_create_database.lib.php:40 server_privileges.php:113
+#: server_privileges.php:1427 server_replication.php:35
msgid "No Privileges"
msgstr "无权限"
@@ -2019,7 +2019,7 @@ msgstr "压缩"
#: libraries/display_export.lib.php:240 libraries/display_import.lib.php:197
#: libraries/display_import.lib.php:210 libraries/display_tbl.lib.php:530
#: libraries/export/sql.php:868 libraries/tbl_properties.inc.php:575
-#: server_privileges.php:1836 server_processlist.php:75
+#: server_privileges.php:1875 server_processlist.php:75
msgid "None"
msgstr "无"
@@ -2336,7 +2336,7 @@ msgstr "InnoDB 用于缓存数据和索引要使用的内存缓冲大小。"
msgid "Buffer Pool"
msgstr "缓冲池"
-#: libraries/engines/innodb.lib.php:145 server_status.php:306
+#: libraries/engines/innodb.lib.php:145 server_status.php:417
msgid "InnoDB Status"
msgstr "InnoDB 状态"
@@ -2345,8 +2345,8 @@ msgid "Buffer Pool Usage"
msgstr "缓冲池使用情况"
#: libraries/engines/innodb.lib.php:194 server_databases.php:137
-#: server_databases.php:305 server_status.php:414 server_status.php:475
-#: server_status.php:496 tbl_printview.php:351 tbl_structure.php:696
+#: server_databases.php:305 server_status.php:525 server_status.php:586
+#: server_status.php:607 tbl_printview.php:351 tbl_structure.php:696
msgid "Total"
msgstr "总计"
@@ -2674,7 +2674,7 @@ msgstr "Microsoft Word 2000"
#: libraries/export/latex.php:201 libraries/export/odt.php:48
#: libraries/export/sql.php:106 libraries/export/sql.php:868
#: libraries/export/texytext.php:27 server_databases.php:127
-#: server_privileges.php:537 server_replication.php:316 tbl_printview.php:317
+#: server_privileges.php:576 server_replication.php:316 tbl_printview.php:317
#: tbl_structure.php:665
msgid "Data"
msgstr "数据"
@@ -2724,9 +2724,9 @@ msgstr "MIME 类型"
#: libraries/export/xml.php:102 libraries/header_printview.inc.php:57
#: libraries/replication_gui.lib.php:63 libraries/replication_gui.lib.php:174
#: libraries/replication_gui.lib.php:269 libraries/replication_gui.lib.php:272
-#: libraries/replication_gui.lib.php:329 server_privileges.php:692
-#: server_privileges.php:695 server_privileges.php:751
-#: server_privileges.php:1498 server_privileges.php:2030
+#: libraries/replication_gui.lib.php:329 server_privileges.php:731
+#: server_privileges.php:734 server_privileges.php:790
+#: server_privileges.php:1537 server_privileges.php:2069
#: server_processlist.php:55 server_synchronize.php:1159
msgid "Host"
msgstr "主机"
@@ -3072,794 +3072,6 @@ msgstr "无"
msgid "Convert to Kana"
msgstr "转换为假名"
-#. l10n: Text direction, use either ltr or rtl
-#: libraries/messages.inc.php:19
-msgid "ltr"
-msgstr "ltr"
-
-#: libraries/messages.inc.php:21
-msgid "Content of table __TABLE__"
-msgstr "__TABLE__ 表的内容"
-
-#: libraries/messages.inc.php:22
-msgid "(continued)"
-msgstr "(延续的)"
-
-#: libraries/messages.inc.php:23
-msgid "Structure of table __TABLE__"
-msgstr "__TABLE__ 表的结构"
-
-#: libraries/messages.inc.php:25 server_privileges.php:227
-msgid "Includes all privileges except GRANT."
-msgstr "除了授权 (GRANT) 以外的所有权限。"
-
-#: libraries/messages.inc.php:26 server_privileges.php:153
-#: server_privileges.php:476
-msgid "Allows altering the structure of existing tables."
-msgstr "允许修改现有数据表的结构。"
-
-#: libraries/messages.inc.php:27 server_privileges.php:169
-#: server_privileges.php:482
-msgid "Allows altering and dropping stored routines."
-msgstr "允许修改或删除储存过程。"
-
-#: libraries/messages.inc.php:28 server_privileges.php:145
-#: server_privileges.php:475
-msgid "Allows creating new databases and tables."
-msgstr "允许创建新数据库和数据表。"
-
-#: libraries/messages.inc.php:29 server_privileges.php:168
-#: server_privileges.php:481
-msgid "Allows creating stored routines."
-msgstr "允许创建存储过程。"
-
-#: libraries/messages.inc.php:30 server_privileges.php:475
-msgid "Allows creating new tables."
-msgstr "允许创建新数据表。"
-
-#: libraries/messages.inc.php:31 server_privileges.php:156
-#: server_privileges.php:479
-msgid "Allows creating temporary tables."
-msgstr "允许创建临时表。"
-
-#: libraries/messages.inc.php:32 server_privileges.php:170
-#: server_privileges.php:515
-msgid "Allows creating, dropping and renaming user accounts."
-msgstr "允许创建、删除和重命名用户账户。"
-
-#: libraries/messages.inc.php:33 server_privileges.php:160
-#: server_privileges.php:164 server_privileges.php:487
-#: server_privileges.php:491
-msgid "Allows creating new views."
-msgstr "允许创建视图。"
-
-#: libraries/messages.inc.php:34 server_privileges.php:144
-#: server_privileges.php:467
-msgid "Allows deleting data."
-msgstr "允许删除数据。"
-
-#: libraries/messages.inc.php:35 server_privileges.php:146
-#: server_privileges.php:478
-msgid "Allows dropping databases and tables."
-msgstr "允许删除数据库和数据表。"
-
-#: libraries/messages.inc.php:36 server_privileges.php:478
-msgid "Allows dropping tables."
-msgstr "允许删除数据表。"
-
-#: libraries/messages.inc.php:37 server_privileges.php:161
-#: server_privileges.php:495
-msgid "Allows to set up events for the event scheduler"
-msgstr "允许为事件触发器设置事件"
-
-#: libraries/messages.inc.php:38 server_privileges.php:171
-#: server_privileges.php:483
-msgid "Allows executing stored routines."
-msgstr "允许运行存储过程。"
-
-#: libraries/messages.inc.php:39 server_privileges.php:150
-#: server_privileges.php:470
-msgid "Allows importing data from and exporting data into files."
-msgstr "允许从文件中导入数据以及将数据导出至文件。"
-
-#: libraries/messages.inc.php:40 server_privileges.php:501
-msgid ""
-"Allows adding users and privileges without reloading the privilege tables."
-msgstr "允许添加用户和权限,而不允许重新载入权限表。"
-
-#: libraries/messages.inc.php:41 server_privileges.php:152
-#: server_privileges.php:477
-msgid "Allows creating and dropping indexes."
-msgstr "允许创建和删除索引。"
-
-#: libraries/messages.inc.php:42 server_privileges.php:142
-#: server_privileges.php:403 server_privileges.php:465
-msgid "Allows inserting and replacing data."
-msgstr "允许插入和替换数据。"
-
-#: libraries/messages.inc.php:43 server_privileges.php:157
-#: server_privileges.php:510
-msgid "Allows locking tables for the current thread."
-msgstr "允许锁定当前线程的表。"
-
-#: libraries/messages.inc.php:44 server_privileges.php:607
-#: server_privileges.php:609
-msgid "Limits the number of new connections the user may open per hour."
-msgstr "限制用户每小时打开的新连接数。"
-
-#: libraries/messages.inc.php:45 server_privileges.php:595
-#: server_privileges.php:597
-msgid "Limits the number of queries the user may send to the server per hour."
-msgstr "限制用户每小时可发送到服务器的查询数。"
-
-#: libraries/messages.inc.php:46 server_privileges.php:601
-#: server_privileges.php:603
-msgid ""
-"Limits the number of commands that change any table or database the user may "
-"execute per hour."
-msgstr "限制用户每小时可执行的修改任何数据表或数据库的命令数。"
-
-#: libraries/messages.inc.php:47 server_privileges.php:613
-#: server_privileges.php:615
-msgid "Limits the number of simultaneous connections the user may have."
-msgstr "限制该用户的并发连接数。"
-
-#: libraries/messages.inc.php:48 server_privileges.php:149
-#: server_privileges.php:505
-msgid "Allows viewing processes of all users"
-msgstr "允许查看所有用户的进程"
-
-#: libraries/messages.inc.php:49 server_privileges.php:151
-#: server_privileges.php:409 server_privileges.php:511
-msgid "Has no effect in this MySQL version."
-msgstr "在此版本的 MySQL 中无效。"
-
-#: libraries/messages.inc.php:50 server_privileges.php:147
-#: server_privileges.php:506
-msgid "Allows reloading server settings and flushing the server's caches."
-msgstr "允许重新载入服务器设置并刷新服务器的缓存。"
-
-#: libraries/messages.inc.php:51 server_privileges.php:159
-#: server_privileges.php:513
-msgid "Allows the user to ask where the slaves / masters are."
-msgstr "用户有权询问附属者/控制者在哪里。"
-
-#: libraries/messages.inc.php:52 server_privileges.php:158
-#: server_privileges.php:514
-msgid "Needed for the replication slaves."
-msgstr "回复附属者所需。"
-
-#: libraries/messages.inc.php:53 server_privileges.php:141
-#: server_privileges.php:400 server_privileges.php:464
-msgid "Allows reading data."
-msgstr "允许读取数据。"
-
-#: libraries/messages.inc.php:54 server_privileges.php:154
-#: server_privileges.php:508
-msgid "Gives access to the complete list of databases."
-msgstr "允许访问完整的数据库列表。"
-
-#: libraries/messages.inc.php:55 server_privileges.php:165
-#: server_privileges.php:167 server_privileges.php:480
-msgid "Allows performing SHOW CREATE VIEW queries."
-msgstr "允许执行 SHOW CREATE VIEW 查询。"
-
-#: libraries/messages.inc.php:56 server_privileges.php:148
-#: server_privileges.php:507
-msgid "Allows shutting down the server."
-msgstr "允许关闭服务器。"
-
-#: libraries/messages.inc.php:57 server_privileges.php:155
-#: server_privileges.php:504
-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/messages.inc.php:58 server_privileges.php:162
-#: server_privileges.php:496
-msgid "Allows creating and dropping triggers"
-msgstr "允许创建和删除触发器"
-
-#: libraries/messages.inc.php:59 server_privileges.php:143
-#: server_privileges.php:406 server_privileges.php:466
-msgid "Allows changing data."
-msgstr "允许修改数据。"
-
-#: libraries/messages.inc.php:60 server_privileges.php:221
-msgid "No privileges."
-msgstr "无权限。"
-
-#: libraries/messages.inc.php:62
-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 ""
-"因事务使用的临时二进制日志缓存超出 binlog_cache_size 的设置而使用临时文件存储"
-"的数量。"
-
-#: libraries/messages.inc.php:63
-msgid "The number of transactions that used the temporary binary log cache."
-msgstr "事务所用的临时二进制日志缓存的数量。"
-
-#: libraries/messages.inc.php:64
-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 "
-"to increase the tmp_table_size value to cause temporary tables to be memory-"
-"based instead of disk-based."
-msgstr ""
-"服务器执行语句时自动在磁盘上创建的临时表的数量。如果 Created_tmp_disk_tables "
-"很大,你可以增加 tmp_table_size 的值,让服务器使用内存来存储临时表而非磁盘。"
-
-#: libraries/messages.inc.php:65
-msgid "How many temporary files mysqld has created."
-msgstr "mysqld 已创建的临时文件的数量。"
-
-#: libraries/messages.inc.php:66
-msgid ""
-"The number of in-memory temporary tables created automatically by the server "
-"while executing statements."
-msgstr "服务器执行语句时自动在内存中创建的临时表的数量。"
-
-#: libraries/messages.inc.php:67
-msgid ""
-"The number of rows written with INSERT DELAYED for which some error occurred "
-"(probably duplicate key)."
-msgstr ""
-"发生错误的延迟插入 (INSERT DELAYED) 行数 (可能是因为在唯一字段中存在重复"
-"值) 。"
-
-#: libraries/messages.inc.php:68
-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/messages.inc.php:69
-msgid "The number of INSERT DELAYED rows written."
-msgstr "延迟插入已写入的行数。"
-
-#: libraries/messages.inc.php:70
-msgid "The number of executed FLUSH statements."
-msgstr "已执行的强制更新 (FLUSH) 语句数。"
-
-#: libraries/messages.inc.php:71
-msgid "The number of internal COMMIT statements."
-msgstr "已执行的内部提交 (COMMIT) 语句数。"
-
-#: libraries/messages.inc.php:72
-msgid "The number of times a row was deleted from a table."
-msgstr "从表中删除行的次数。"
-
-#: libraries/messages.inc.php:73
-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 ""
-"如果知道一张表的名字,MySQL 服务器可以询问 NDB 集群存储引擎,这被称为“发现”。"
-"Handler_discovery 表明了一张表被发现的次数。"
-
-#: libraries/messages.inc.php:74
-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 ""
-"读取一个索引入口点的次数。如果该值很大,说明你的服务器执行了很多完整索引扫"
-"描。例如,假设字段 col1 已经建立了索引,然后执行 SELECT col1 FROM foo 。"
-
-#: libraries/messages.inc.php:75
-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/messages.inc.php:76
-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/messages.inc.php:77
-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 ""
-"根据索引顺序读取上一行的请求数。这种读取方式通常用于优化带有 ORDER BY ... "
-"DESC 的查询。"
-
-#: libraries/messages.inc.php:78
-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 "
-"probably have a lot of queries that require MySQL to scan whole tables or "
-"you have joins that don't use keys properly."
-msgstr ""
-"根据固定位置读取行的请求数。如果你执行很多需要排序的查询,该值会很高。你可能"
-"有很多需要完整表扫描的查询,或者你使用了不正确的索引用来多表查询。"
-
-#: libraries/messages.inc.php:79
-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 "
-"tables are not properly indexed or that your queries are not written to take "
-"advantage of the indexes you have."
-msgstr ""
-"从数据文件中读取行的请求数。如果你在扫描很多表,该值会很大。通常情况下这意味"
-"着你的表没有做好索引,或者你的查询语句没有使用好索引字段。"
-
-#: libraries/messages.inc.php:80
-msgid "The number of internal ROLLBACK statements."
-msgstr "内部回滚 (ROLLBACK) 语句数。"
-
-#: libraries/messages.inc.php:81
-msgid "The number of requests to update a row in a table."
-msgstr "表中更新行的请求数。"
-
-#: libraries/messages.inc.php:82
-msgid "The number of requests to insert a row in a table."
-msgstr "表中插入行的请求数。"
-
-#: libraries/messages.inc.php:83
-msgid "The number of pages containing data (dirty or clean)."
-msgstr "非空页数 (含脏页) 。"
-
-#: libraries/messages.inc.php:84
-msgid "The number of pages currently dirty."
-msgstr "当前脏页数。"
-
-#: libraries/messages.inc.php:85
-msgid "The number of buffer pool pages that have been requested to be flushed."
-msgstr "请求更新的缓冲池页数。"
-
-#: libraries/messages.inc.php:86
-msgid "The number of free pages."
-msgstr "空闲页数。"
-
-#: libraries/messages.inc.php:87
-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 ""
-"InnoDB 缓冲池中锁定页的数量。这些页是正在被读取或写入的,或者是因其他原因不能"
-"被刷新或删除的。"
-
-#: libraries/messages.inc.php:88
-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 "
-"be calculated as Innodb_buffer_pool_pages_total - "
-"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data."
-msgstr ""
-"负载页的数量,像锁定行或适应性的散列索引这样的管理操作时分配的页。该值可用此"
-"公式计算: Innodb_buffer_pool_pages_total - Innodb_buffer_pool_pages_free - "
-"Innodb_buffer_pool_pages_data 。"
-
-#: libraries/messages.inc.php:89
-msgid "Total size of buffer pool, in pages."
-msgstr "缓冲池总大小 (单位:页)。"
-
-#: libraries/messages.inc.php:90
-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 ""
-"InnoDB 初始化的“随机”预读数。这通常会在对一张表进行大范围的随机排序查询时发"
-"生。"
-
-#: libraries/messages.inc.php:91
-msgid ""
-"The number of sequential read-aheads InnoDB initiated. This happens when "
-"InnoDB does a sequential full table scan."
-msgstr ""
-"InnoDB 初始化的顺序预读数。这会在 InnoDB 执行一个顺序完整表扫描时发生。"
-
-#: libraries/messages.inc.php:92
-msgid "The number of logical read requests InnoDB has done."
-msgstr "InnoDB 完成的逻辑读请求数。"
-
-#: libraries/messages.inc.php:93
-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/messages.inc.php:94
-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 "
-"available, it's necessary to wait for pages to be flushed first. This "
-"counter counts instances of these waits. If the buffer pool size was set "
-"properly, this value should be small."
-msgstr ""
-"写入 InnoDB 缓冲池通常在后台进行,但有必要在没有干净页的时候读取或创建页,有"
-"必要先等待页被刷新。该计数器统计了这种等待的数量。如果缓冲池大小设置正确,这"
-"个值应该会很小。"
-
-#: libraries/messages.inc.php:95
-msgid "The number writes done to the InnoDB buffer pool."
-msgstr "写入 InnoDB 缓冲池的次数。"
-
-#: libraries/messages.inc.php:96
-msgid "The number of fsync() operations so far."
-msgstr "fsync() 总操作的次数。"
-
-#: libraries/messages.inc.php:97
-msgid "The current number of pending fsync() operations."
-msgstr "当前挂起 fsync() 操作的数量。"
-
-#: libraries/messages.inc.php:98
-msgid "The current number of pending reads."
-msgstr "当前挂起的读操作数。"
-
-#: libraries/messages.inc.php:99
-msgid "The current number of pending writes."
-msgstr "当前挂起的写操作数。"
-
-#: libraries/messages.inc.php:100
-msgid "The amount of data read so far, in bytes."
-msgstr "读取的总数据量 (单位:字节)。"
-
-#: libraries/messages.inc.php:101
-msgid "The total number of data reads."
-msgstr "数据读取总数。"
-
-#: libraries/messages.inc.php:102
-msgid "The total number of data writes."
-msgstr "数据写入总数。"
-
-#: libraries/messages.inc.php:103
-msgid "The amount of data written so far, in bytes."
-msgstr "写入的总数据量 (单位:字节)。"
-
-#: libraries/messages.inc.php:104
-msgid "The number of pages that have been written for doublewrite operations."
-msgstr "以双写入操作写入的页数。"
-
-#: libraries/messages.inc.php:105
-msgid "The number of doublewrite operations that have been performed."
-msgstr "已经执行的双写入次数。"
-
-#: libraries/messages.inc.php:106
-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/messages.inc.php:107
-msgid "The number of log write requests."
-msgstr "日志写入请求数。"
-
-#: libraries/messages.inc.php:108
-msgid "The number of physical writes to the log file."
-msgstr "日志物理写入次数。"
-
-#: libraries/messages.inc.php:109
-msgid "The number of fsync() writes done to the log file."
-msgstr "使用 fsync() 写入日志文件的次数。"
-
-#: libraries/messages.inc.php:110
-msgid "The number of pending log file fsyncs."
-msgstr "当前挂起的 fsync 日志文件数。"
-
-#: libraries/messages.inc.php:111
-msgid "Pending log file writes."
-msgstr "当前挂起的日志写入数。"
-
-#: libraries/messages.inc.php:112
-msgid "The number of bytes written to the log file."
-msgstr "写入日志文件的字节数。"
-
-#: libraries/messages.inc.php:113
-msgid "The number of pages created."
-msgstr "创建的页数。"
-
-#: libraries/messages.inc.php:114
-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 ""
-"编译的 InnoDB 页大小 (默认 16KB)。许多值都以页为单位进行统计,页大小可以很方"
-"便地将这些值转化为字节数。"
-
-#: libraries/messages.inc.php:115
-msgid "The number of pages read."
-msgstr "读取的页数。"
-
-#: libraries/messages.inc.php:116
-msgid "The number of pages written."
-msgstr "写入的页数。"
-
-#: libraries/messages.inc.php:117
-msgid "The number of row locks currently being waited for."
-msgstr "正在等待行锁的数量。"
-
-#: libraries/messages.inc.php:118
-msgid "The average time to acquire a row lock, in milliseconds."
-msgstr "等待获得行锁的平均时间 (单位:毫秒)。"
-
-#: libraries/messages.inc.php:119
-msgid "The total time spent in acquiring row locks, in milliseconds."
-msgstr "等待获得行锁的总时间 (单位:毫秒)。"
-
-#: libraries/messages.inc.php:120
-msgid "The maximum time to acquire a row lock, in milliseconds."
-msgstr "等待获得行锁的最大时间 (单位:毫秒)。"
-
-#: libraries/messages.inc.php:121
-msgid "The number of times a row lock had to be waited for."
-msgstr "等待行锁的次数。"
-
-#: libraries/messages.inc.php:122
-msgid "The number of rows deleted from InnoDB tables."
-msgstr "从 InnoDB 表中删除的行数。"
-
-#: libraries/messages.inc.php:123
-msgid "The number of rows inserted in InnoDB tables."
-msgstr "插入到 InnoDB 表中的行数。"
-
-#: libraries/messages.inc.php:124
-msgid "The number of rows read from InnoDB tables."
-msgstr "从 InnoDB 表中读取的行数。"
-
-#: libraries/messages.inc.php:125
-msgid "The number of rows updated in InnoDB tables."
-msgstr "InnoDB 中更新的行数。"
-
-#: libraries/messages.inc.php:126
-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/messages.inc.php:127
-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/messages.inc.php:128
-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/messages.inc.php:129
-msgid "The number of requests to read a key block from the cache."
-msgstr "从缓存中读取键块的请求次数。"
-
-#: libraries/messages.inc.php:130
-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 ""
-"从磁盘中物理读取键块的次数。如果 Key_reads 很大,则说明您的 key_buffer_size "
-"可能设置得太小了。缓存缺失率可以由 Key_reads/Key_read_requests 计算得出。"
-
-#: libraries/messages.inc.php:131
-msgid "The number of requests to write a key block to the cache."
-msgstr "将一个键块写入缓存的请求数。"
-
-#: libraries/messages.inc.php:132
-msgid "The number of physical writes of a key block to disk."
-msgstr "将键块物理写入到磁盘的次数。"
-
-#: libraries/messages.inc.php:133
-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 ""
-"最后编译的查询的总开销由查询优化器计算得出,可用于比较使用不同的查询语句进行"
-"相同的查询时的效率差异。默认值0表示还没有查询被编译。"
-
-#: libraries/messages.inc.php:134
-msgid "The number of rows waiting to be written in INSERT DELAYED queues."
-msgstr "等待写入延迟插入队列的行数。"
-
-#: libraries/messages.inc.php:135
-msgid ""
-"The number of tables that have been opened. If opened tables is big, your "
-"table cache value is probably too small."
-msgstr "已经打开的表个数。如果该值很大,则说明表缓冲大小可能设置过小。"
-
-#: libraries/messages.inc.php:136
-msgid "The number of files that are open."
-msgstr "打开的文件个数。"
-
-#: libraries/messages.inc.php:137
-msgid "The number of streams that are open (used mainly for logging)."
-msgstr "打开的流个数 (主要用于日志记录)。"
-
-#: libraries/messages.inc.php:138
-msgid "The number of tables that are open."
-msgstr "打开的数据表个数。"
-
-#: libraries/messages.inc.php:139
-msgid "The number of free memory blocks in query cache."
-msgstr "查询缓存中空闲的内存块数。"
-
-#: libraries/messages.inc.php:140
-msgid "The amount of free memory for query cache."
-msgstr "查询缓存中空闲的内存总数。"
-
-#: libraries/messages.inc.php:141
-msgid "The number of cache hits."
-msgstr "缓存命中数。"
-
-#: libraries/messages.inc.php:142
-msgid "The number of queries added to the cache."
-msgstr "加入到缓存的查询数。"
-
-#: libraries/messages.inc.php:143
-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 "
-"cache size. The query cache uses a least recently used (LRU) strategy to "
-"decide which queries to remove from the cache."
-msgstr ""
-"为缓存新的查询而被删除的已缓存查询的个数,由最近最少使用算法 (LRU) 确定应删除"
-"哪个已缓存的查询。该信息可帮助您调整查询缓存大小。"
-
-#: libraries/messages.inc.php:144
-msgid ""
-"The number of non-cached queries (not cachable, or not cached due to the "
-"query_cache_type setting)."
-msgstr ""
-"未缓存的查询数 (包括不能被缓存,或因为 query_cache_type 的设置而没有被缓存的"
-"查询)。"
-
-#: libraries/messages.inc.php:145
-msgid "The number of queries registered in the cache."
-msgstr "在缓存中注册的查询数。"
-
-#: libraries/messages.inc.php:146
-msgid "The total number of blocks in the query cache."
-msgstr "查询缓存中的总块数。"
-
-#: libraries/messages.inc.php:147
-msgctxt "$strShowStatusReset"
-msgid "Reset"
-msgstr "重设"
-
-#: libraries/messages.inc.php:148
-msgid "The status of failsafe replication (not yet implemented)."
-msgstr "失败保护器的状态 (尚未应用)。"
-
-#: libraries/messages.inc.php:149
-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 ""
-"没有使用索引的多表查询数。如果该值不为0,您应该仔细检查是否已经为表建立了适当"
-"的索引。"
-
-#: libraries/messages.inc.php:150
-msgid "The number of joins that used a range search on a reference table."
-msgstr "使用在关联表上使用范围搜索的多表查询的数量。"
-
-#: libraries/messages.inc.php:151
-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 ""
-"没有使用索引但在每行之后检查索引使用的多表查询数。(如果该值不为 0,您应该仔细"
-"检查是否已经为表建立了适当的索引。)"
-
-#: libraries/messages.inc.php:152
-msgid ""
-"The number of joins that used ranges on the first table. (It's normally not "
-"critical even if this is big.)"
-msgstr ""
-"在第一张表上使用范围查询的多表查询数。(即使该值很大,通常也不会有致命的影"
-"响。)"
-
-#: libraries/messages.inc.php:153
-msgid "The number of joins that did a full scan of the first table."
-msgstr "在第一张表上进行了完整表扫描的多表查询数。"
-
-#: libraries/messages.inc.php:154
-msgid "The number of temporary tables currently open by the slave SQL thread."
-msgstr "当前由从 SQL 线程打开的临时表的数量。"
-
-#: libraries/messages.inc.php:155
-msgid ""
-"Total (since startup) number of times the replication slave SQL thread has "
-"retried transactions."
-msgstr "从 SQL 线程总共重试事务复制数。"
-
-#: libraries/messages.inc.php:156
-msgid "This is ON if this server is a slave that is connected to a master."
-msgstr "如果该值为 ON,则这台服务器是一台已经连接到主服务器的从服务器。"
-
-#: libraries/messages.inc.php:157
-msgid ""
-"The number of threads that have taken more than slow_launch_time seconds to "
-"create."
-msgstr "使用了比 slow_launch_time 更多的时间来启动的线程数量。"
-
-#: libraries/messages.inc.php:158
-msgid ""
-"The number of queries that have taken more than long_query_time seconds."
-msgstr "使用了比 long_query_time 更多时间的查询数。"
-
-#: libraries/messages.inc.php:159
-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 ""
-"排序算法使用归并的次数。如果该值很大,您应该考虑增加系统变量 "
-"sort_buffer_size 的值。"
-
-#: libraries/messages.inc.php:160
-msgid "The number of sorts that were done with ranges."
-msgstr "局部范围完成的排序次数。"
-
-#: libraries/messages.inc.php:161
-msgid "The number of sorted rows."
-msgstr "排序的行数。"
-
-#: libraries/messages.inc.php:162
-msgid "The number of sorts that were done by scanning the table."
-msgstr "扫描表完成的排序次数。"
-
-#: libraries/messages.inc.php:163
-msgid "The number of times that a table lock was acquired immediately."
-msgstr "立即需要锁定表的次数。"
-
-#: libraries/messages.inc.php:164
-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 "
-"should first optimize your queries, and then either split your table or "
-"tables or use replication."
-msgstr ""
-"无法立即获得锁定表而必须等待的次数。如果该值很高,且您遇到了性能方面的问题,"
-"则应该首先检查您的查询语句,然后使用复制操作来分开表。"
-
-#: libraries/messages.inc.php:165
-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 ""
-"线程缓存中线程的数量。缓存命中率可以由 Threads_created/Connections 计算得出。"
-"如果该值是红色的,则应该增加 thread_cache_size 的值。"
-
-#: libraries/messages.inc.php:166
-msgid "The number of currently open connections."
-msgstr "当前打开的连接数。"
-
-#: libraries/messages.inc.php:167
-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 "
-"doesn't give a notable performance improvement if you have a good thread "
-"implementation.)"
-msgstr ""
-"当前用于控制连接的线程数。如果 Threads_created 很大,您可能需要增加 "
-"thread_cache_size 的值 (如果线程状况良好,这么做通常并不会带来显著的性能提"
-"升)。"
-
-#: libraries/messages.inc.php:168
-msgid "The number of threads that are not sleeping."
-msgstr "非睡眠状态的线程数量。"
-
#: libraries/mult_submits.inc.php:76 libraries/tbl_properties.inc.php:513
#: tbl_structure.php:29 tbl_structure.php:153 tbl_structure.php:157
#: tbl_structure.php:473
@@ -4180,8 +3392,8 @@ msgstr ""
#: libraries/replication_gui.lib.php:55 libraries/replication_gui.lib.php:56
#: libraries/replication_gui.lib.php:249 libraries/replication_gui.lib.php:252
-#: libraries/replication_gui.lib.php:259 server_privileges.php:672
-#: server_privileges.php:675 server_privileges.php:682
+#: libraries/replication_gui.lib.php:259 server_privileges.php:711
+#: server_privileges.php:714 server_privileges.php:721
#: server_synchronize.php:1171
msgid "User name"
msgstr "用户名"
@@ -4199,11 +3411,11 @@ msgid "Slave status"
msgstr "从服务器状态"
#: libraries/replication_gui.lib.php:114 libraries/sql_query_form.lib.php:445
-#: server_status.php:626 server_variables.php:52
+#: server_status.php:737 server_variables.php:52
msgid "Variable"
msgstr "变量"
-#: libraries/replication_gui.lib.php:115 server_status.php:627
+#: libraries/replication_gui.lib.php:115 server_status.php:738
#: tbl_change.php:324 tbl_printview.php:370 tbl_select.php:139
#: tbl_structure.php:729
msgid "Value"
@@ -4223,41 +3435,58 @@ msgstr "仅通过 --report-host=主机名 参数启动的从服务器可见。"
msgid "Add slave replication user"
msgstr "添加从复制用户"
-#: libraries/replication_gui.lib.php:254 server_privileges.php:677
+#: libraries/replication_gui.lib.php:254 server_privileges.php:716
msgid "Any user"
msgstr "任意用户"
#: libraries/replication_gui.lib.php:255 libraries/replication_gui.lib.php:323
-#: libraries/replication_gui.lib.php:346 server_privileges.php:678
-#: server_privileges.php:745 server_privileges.php:769
-#: server_privileges.php:1889 server_privileges.php:1919
+#: libraries/replication_gui.lib.php:346 server_privileges.php:717
+#: server_privileges.php:784 server_privileges.php:808
+#: server_privileges.php:1928 server_privileges.php:1958
msgid "Use text field"
msgstr "使用文本域"
-#: libraries/replication_gui.lib.php:302 server_privileges.php:725
+#: libraries/replication_gui.lib.php:302 server_privileges.php:764
msgid "Any host"
msgstr "任意主机"
-#: libraries/replication_gui.lib.php:306 server_privileges.php:729
+#: libraries/replication_gui.lib.php:306 server_privileges.php:768
msgid "Local"
msgstr "本地"
-#: libraries/replication_gui.lib.php:312 server_privileges.php:734
+#: libraries/replication_gui.lib.php:312 server_privileges.php:773
msgid "This Host"
msgstr "此主机"
-#: libraries/replication_gui.lib.php:318 server_privileges.php:740
+#: libraries/replication_gui.lib.php:318 server_privileges.php:779
msgid "Use Host Table"
msgstr "使用主机表"
-#: libraries/replication_gui.lib.php:331 server_privileges.php:753
+#: libraries/replication_gui.lib.php:331 server_privileges.php:792
msgid ""
"When Host table is used, this field is ignored and values stored in Host "
"table are used instead."
msgstr "使用主机表时,此处的数据会被主机表中的数据所替换。"
-#: libraries/select_lang.lib.php:480 libraries/select_lang.lib.php:486
-#: libraries/select_lang.lib.php:492
+#. l10n: Text direction, use either ltr or rtl
+#: libraries/select_lang.lib.php:491
+msgid "ltr"
+msgstr "ltr"
+
+#: libraries/select_lang.lib.php:493
+msgid "Content of table __TABLE__"
+msgstr "__TABLE__ 表的内容"
+
+#: libraries/select_lang.lib.php:494
+msgid "(continued)"
+msgstr "(延续的)"
+
+#: libraries/select_lang.lib.php:495
+msgid "Structure of table __TABLE__"
+msgstr "__TABLE__ 表的结构"
+
+#: libraries/select_lang.lib.php:500 libraries/select_lang.lib.php:506
+#: libraries/select_lang.lib.php:512
#, php-format
msgid "Unknown language: %1$s."
msgstr "未知的语言:%1$s."
@@ -4268,7 +3497,7 @@ msgid "Servers"
msgstr "服务器"
#: libraries/server_links.inc.php:53 server_engines.php:112
-#: server_engines.php:116 server_status.php:304 test/theme.php:105
+#: server_engines.php:116 server_status.php:415 test/theme.php:105
msgid "Variables"
msgstr "变量"
@@ -4281,7 +3510,7 @@ msgid "Engines"
msgstr "引擎"
#: libraries/server_links.inc.php:76 server_binlog.php:110
-#: server_status.php:253 test/theme.php:121
+#: server_status.php:364 test/theme.php:121
msgid "Binary log"
msgstr "二进制日志"
@@ -4683,8 +3912,8 @@ msgstr "重置"
msgid "Protocol version"
msgstr "协议版本"
-#: main.php:189 server_privileges.php:1350 server_privileges.php:1497
-#: server_privileges.php:1611 server_privileges.php:2029
+#: main.php:189 server_privileges.php:1389 server_privileges.php:1536
+#: server_privileges.php:1650 server_privileges.php:2068
#: server_processlist.php:54
msgid "User"
msgstr "用户"
@@ -5061,7 +4290,7 @@ msgstr "已成功删除 %s 个数据库。"
msgid "Databases statistics"
msgstr "数据库统计"
-#: server_databases.php:117 server_status.php:260
+#: server_databases.php:117 server_status.php:371
#: setup/lib/messages.inc.php:117
msgid "Tables"
msgstr "数据表"
@@ -5079,6 +4308,18 @@ msgstr "从复制"
msgid "Jump to database"
msgstr "转到数据库"
+#: server_databases.php:267
+#, fuzzy
+#| msgid "Master replication"
+msgid "Not replicated"
+msgstr "主复制"
+
+#: server_databases.php:273
+#, fuzzy
+#| msgid "Replication"
+msgid "Replicated"
+msgstr "复制"
+
#: server_databases.php:289
#, php-format
msgid "Check privileges for database "%s"."
@@ -5111,138 +4352,322 @@ msgstr "存储引擎"
msgid "View dump (schema) of databases"
msgstr "查看数据库的转存(大纲)"
-#: server_privileges.php:263 server_privileges.php:264
+#: server_privileges.php:24 server_privileges.php:266
+msgid "Includes all privileges except GRANT."
+msgstr "除了授权 (GRANT) 以外的所有权限。"
+
+#: server_privileges.php:25 server_privileges.php:192
+#: server_privileges.php:515
+msgid "Allows altering the structure of existing tables."
+msgstr "允许修改现有数据表的结构。"
+
+#: server_privileges.php:26 server_privileges.php:208
+#: server_privileges.php:521
+msgid "Allows altering and dropping stored routines."
+msgstr "允许修改或删除储存过程。"
+
+#: server_privileges.php:27 server_privileges.php:184
+#: server_privileges.php:514
+msgid "Allows creating new databases and tables."
+msgstr "允许创建新数据库和数据表。"
+
+#: server_privileges.php:28 server_privileges.php:207
+#: server_privileges.php:520
+msgid "Allows creating stored routines."
+msgstr "允许创建存储过程。"
+
+#: server_privileges.php:29 server_privileges.php:514
+msgid "Allows creating new tables."
+msgstr "允许创建新数据表。"
+
+#: server_privileges.php:30 server_privileges.php:195
+#: server_privileges.php:518
+msgid "Allows creating temporary tables."
+msgstr "允许创建临时表。"
+
+#: server_privileges.php:31 server_privileges.php:209
+#: server_privileges.php:554
+msgid "Allows creating, dropping and renaming user accounts."
+msgstr "允许创建、删除和重命名用户账户。"
+
+#: server_privileges.php:32 server_privileges.php:199
+#: server_privileges.php:203 server_privileges.php:526
+#: server_privileges.php:530
+msgid "Allows creating new views."
+msgstr "允许创建视图。"
+
+#: server_privileges.php:33 server_privileges.php:183
+#: server_privileges.php:506
+msgid "Allows deleting data."
+msgstr "允许删除数据。"
+
+#: server_privileges.php:34 server_privileges.php:185
+#: server_privileges.php:517
+msgid "Allows dropping databases and tables."
+msgstr "允许删除数据库和数据表。"
+
+#: server_privileges.php:35 server_privileges.php:517
+msgid "Allows dropping tables."
+msgstr "允许删除数据表。"
+
+#: server_privileges.php:36 server_privileges.php:200
+#: server_privileges.php:534
+msgid "Allows to set up events for the event scheduler"
+msgstr "允许为事件触发器设置事件"
+
+#: server_privileges.php:37 server_privileges.php:210
+#: server_privileges.php:522
+msgid "Allows executing stored routines."
+msgstr "允许运行存储过程。"
+
+#: server_privileges.php:38 server_privileges.php:189
+#: server_privileges.php:509
+msgid "Allows importing data from and exporting data into files."
+msgstr "允许从文件中导入数据以及将数据导出至文件。"
+
+#: server_privileges.php:39 server_privileges.php:540
+msgid ""
+"Allows adding users and privileges without reloading the privilege tables."
+msgstr "允许添加用户和权限,而不允许重新载入权限表。"
+
+#: server_privileges.php:40 server_privileges.php:191
+#: server_privileges.php:516
+msgid "Allows creating and dropping indexes."
+msgstr "允许创建和删除索引。"
+
+#: server_privileges.php:41 server_privileges.php:181
+#: server_privileges.php:442 server_privileges.php:504
+msgid "Allows inserting and replacing data."
+msgstr "允许插入和替换数据。"
+
+#: server_privileges.php:42 server_privileges.php:196
+#: server_privileges.php:549
+msgid "Allows locking tables for the current thread."
+msgstr "允许锁定当前线程的表。"
+
+#: server_privileges.php:43 server_privileges.php:646
+#: server_privileges.php:648
+msgid "Limits the number of new connections the user may open per hour."
+msgstr "限制用户每小时打开的新连接数。"
+
+#: server_privileges.php:44 server_privileges.php:634
+#: server_privileges.php:636
+msgid "Limits the number of queries the user may send to the server per hour."
+msgstr "限制用户每小时可发送到服务器的查询数。"
+
+#: server_privileges.php:45 server_privileges.php:640
+#: server_privileges.php:642
+msgid ""
+"Limits the number of commands that change any table or database the user may "
+"execute per hour."
+msgstr "限制用户每小时可执行的修改任何数据表或数据库的命令数。"
+
+#: server_privileges.php:46 server_privileges.php:652
+#: server_privileges.php:654
+msgid "Limits the number of simultaneous connections the user may have."
+msgstr "限制该用户的并发连接数。"
+
+#: server_privileges.php:47 server_privileges.php:188
+#: server_privileges.php:544
+msgid "Allows viewing processes of all users"
+msgstr "允许查看所有用户的进程"
+
+#: server_privileges.php:48 server_privileges.php:190
+#: server_privileges.php:448 server_privileges.php:550
+msgid "Has no effect in this MySQL version."
+msgstr "在此版本的 MySQL 中无效。"
+
+#: server_privileges.php:49 server_privileges.php:186
+#: server_privileges.php:545
+msgid "Allows reloading server settings and flushing the server's caches."
+msgstr "允许重新载入服务器设置并刷新服务器的缓存。"
+
+#: server_privileges.php:50 server_privileges.php:198
+#: server_privileges.php:552
+msgid "Allows the user to ask where the slaves / masters are."
+msgstr "用户有权询问附属者/控制者在哪里。"
+
+#: server_privileges.php:51 server_privileges.php:197
+#: server_privileges.php:553
+msgid "Needed for the replication slaves."
+msgstr "回复附属者所需。"
+
+#: server_privileges.php:52 server_privileges.php:180
+#: server_privileges.php:439 server_privileges.php:503
+msgid "Allows reading data."
+msgstr "允许读取数据。"
+
+#: server_privileges.php:53 server_privileges.php:193
+#: server_privileges.php:547
+msgid "Gives access to the complete list of databases."
+msgstr "允许访问完整的数据库列表。"
+
+#: server_privileges.php:54 server_privileges.php:204
+#: server_privileges.php:206 server_privileges.php:519
+msgid "Allows performing SHOW CREATE VIEW queries."
+msgstr "允许执行 SHOW CREATE VIEW 查询。"
+
+#: server_privileges.php:55 server_privileges.php:187
+#: server_privileges.php:546
+msgid "Allows shutting down the server."
+msgstr "允许关闭服务器。"
+
+#: server_privileges.php:56 server_privileges.php:194
+#: server_privileges.php:543
+msgid ""
+"Allows connecting, even if maximum number of connections is reached; "
+"required for most administrative operations like setting global variables or "
+"killing threads of other users."
+msgstr ""
+"允许在达到最大连接数时连接,对于大多数像设置全局变量或杀死其它用户线程这样的"
+"管理操作是必需的。"
+
+#: server_privileges.php:57 server_privileges.php:201
+#: server_privileges.php:535
+msgid "Allows creating and dropping triggers"
+msgstr "允许创建和删除触发器"
+
+#: server_privileges.php:58 server_privileges.php:182
+#: server_privileges.php:445 server_privileges.php:505
+msgid "Allows changing data."
+msgstr "允许修改数据。"
+
+#: server_privileges.php:59 server_privileges.php:260
+msgid "No privileges."
+msgstr "无权限。"
+
+#: server_privileges.php:302 server_privileges.php:303
msgctxt "None privileges"
msgid "None"
msgstr "无"
-#: server_privileges.php:392 server_privileges.php:527
-#: server_privileges.php:1679 server_privileges.php:1685
+#: server_privileges.php:431 server_privileges.php:566
+#: server_privileges.php:1718 server_privileges.php:1724
msgid "Table-specific privileges"
msgstr "按表指定权限"
-#: server_privileges.php:393 server_privileges.php:535
-#: server_privileges.php:1501
+#: server_privileges.php:432 server_privileges.php:574
+#: server_privileges.php:1540
msgid " Note: MySQL privilege names are expressed in English "
msgstr " 注意:MySQL 权限名称会以英文显示 "
-#: server_privileges.php:524 server_privileges.php:1500
+#: server_privileges.php:563 server_privileges.php:1539
msgid "Global privileges"
msgstr "全局权限"
-#: server_privileges.php:526 server_privileges.php:1679
+#: server_privileges.php:565 server_privileges.php:1718
msgid "Database-specific privileges"
msgstr "按数据库指定权限"
-#: server_privileges.php:571
+#: server_privileges.php:610
msgid "Administration"
msgstr "管理"
-#: server_privileges.php:591
+#: server_privileges.php:630
msgid "Resource limits"
msgstr "资源限制"
-#: server_privileges.php:592
+#: server_privileges.php:631
msgid "Note: Setting these options to 0 (zero) removes the limit."
msgstr "注意:若将这些选项设为 0(零) 即不限制。"
-#: server_privileges.php:669
+#: server_privileges.php:708
msgid "Login Information"
msgstr "登录信息"
-#: server_privileges.php:763
+#: server_privileges.php:802
msgid "Do not change the password"
msgstr "保持原密码"
-#: server_privileges.php:804 server_privileges.php:2166
+#: server_privileges.php:843 server_privileges.php:2205
msgid "No user found."
msgstr "未找到用户。"
-#: server_privileges.php:848
+#: server_privileges.php:887
#, php-format
msgid "The user %s already exists!"
msgstr "用户 %s 己存在!"
-#: server_privileges.php:931
+#: server_privileges.php:970
msgid "You have added a new user."
msgstr "您已添加了一个新用户。"
-#: server_privileges.php:1152
+#: server_privileges.php:1191
#, php-format
msgid "You have updated the privileges for %s."
msgstr "您已更新了 %s 的权限。"
-#: server_privileges.php:1176
+#: server_privileges.php:1215
#, php-format
msgid "You have revoked the privileges for %s"
msgstr "您已撤销 %s 的权限"
-#: server_privileges.php:1212
+#: server_privileges.php:1251
#, php-format
msgid "The password for %s was changed successfully."
msgstr "%s 的密码已修改。"
-#: server_privileges.php:1232
+#: server_privileges.php:1271
#, php-format
msgid "Deleting %s"
msgstr "正在删除 %s"
-#: server_privileges.php:1243
+#: server_privileges.php:1282
msgid "No users selected for deleting!"
msgstr "没有选择要删除的用户!"
-#: server_privileges.php:1246
+#: server_privileges.php:1285
msgid "Reloading the privileges"
msgstr "重新载入权限"
-#: server_privileges.php:1261
+#: server_privileges.php:1300
msgid "The selected users have been deleted successfully."
msgstr "已成功删除选中的用户。"
-#: server_privileges.php:1296
+#: server_privileges.php:1335
msgid "The privileges were reloaded successfully."
msgstr "已成功重新载入权限。"
-#: server_privileges.php:1324 server_privileges.php:1610
+#: server_privileges.php:1363 server_privileges.php:1649
msgid "Edit Privileges"
msgstr "编辑权限"
-#: server_privileges.php:1333
+#: server_privileges.php:1372
msgid "Revoke"
msgstr "撤销"
-#: server_privileges.php:1365
+#: server_privileges.php:1404
msgid "User overview"
msgstr "查看用户"
-#: server_privileges.php:1502 server_privileges.php:1684
-#: server_privileges.php:2033
+#: server_privileges.php:1541 server_privileges.php:1723
+#: server_privileges.php:2072
msgid "Grant"
msgstr "授权"
-#: server_privileges.php:1521 server_privileges.php:2123
+#: server_privileges.php:1560 server_privileges.php:2162
msgid "Any"
msgstr "任意"
-#: server_privileges.php:1570 server_privileges.php:1594
-#: server_privileges.php:1988 server_privileges.php:2177
+#: server_privileges.php:1609 server_privileges.php:1633
+#: server_privileges.php:2027 server_privileges.php:2216
msgid "Add a new User"
msgstr "添加新用户"
-#: server_privileges.php:1575
+#: server_privileges.php:1614
msgid "Remove selected users"
msgstr "删除选中的用户"
-#: server_privileges.php:1578
+#: server_privileges.php:1617
msgid "Revoke all active privileges from the users and delete them afterwards."
msgstr "撤销用户所有权限,然后删除用户。"
-#: server_privileges.php:1579 server_privileges.php:1580
-#: server_privileges.php:1581
+#: server_privileges.php:1618 server_privileges.php:1619
+#: server_privileges.php:1620
msgid "Drop the databases that have the same names as the users."
msgstr "删除与用户同名的数据库。"
-#: server_privileges.php:1597
+#: server_privileges.php:1636
#, php-format
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
@@ -5254,89 +4679,89 @@ msgstr ""
"将可能与服务器使用的用户权限有异。在这种情况下,您应在继续前%s重新载入权限%"
"s。"
-#: server_privileges.php:1645
+#: server_privileges.php:1684
msgid "The selected user was not found in the privilege table."
msgstr "在权限表内找不到选中的用户。"
-#: server_privileges.php:1685
+#: server_privileges.php:1724
msgid "Column-specific privileges"
msgstr "按字段指定权限"
-#: server_privileges.php:1886
+#: server_privileges.php:1925
msgid "Add privileges on the following database"
msgstr "在下列数据库添加权限"
-#: server_privileges.php:1904
+#: server_privileges.php:1943
msgid "Wildcards % and _ should be escaped with a \\ to use them literally"
msgstr "要使用通配符 _ 和 % 本身,应使用用 \\ 转义"
-#: server_privileges.php:1907
+#: server_privileges.php:1946
msgid "Add privileges on the following table"
msgstr "在下列数据表添加权限"
-#: server_privileges.php:1964
+#: server_privileges.php:2003
msgid "Change Login Information / Copy User"
msgstr "修改登录信息/复制用户"
-#: server_privileges.php:1967
+#: server_privileges.php:2006
msgid "Create a new user with the same privileges and ..."
msgstr "创建具有相同权限的新用户然后 ..."
-#: server_privileges.php:1969
+#: server_privileges.php:2008
msgid "... keep the old one."
msgstr "... 保留旧用户。"
-#: server_privileges.php:1970
+#: server_privileges.php:2009
msgid " ... delete the old one from the user tables."
msgstr " ... 从用户表中删除旧用户。"
-#: server_privileges.php:1971
+#: server_privileges.php:2010
msgid ""
" ... revoke all active privileges from the old one and delete it afterwards."
msgstr " ... 撤销旧用户的所有权限,然后删除旧用户。"
-#: server_privileges.php:1972
+#: server_privileges.php:2011
msgid ""
" ... delete the old one from the user tables and reload the privileges "
"afterwards."
msgstr " ... 从用户表中删除旧用户,然后重新载入权限。"
-#: server_privileges.php:1994
+#: server_privileges.php:2033
msgid "Database for user"
msgstr "用户数据库"
-#: server_privileges.php:1998
+#: server_privileges.php:2037
msgctxt "Create none database for user"
msgid "None"
msgstr "无"
-#: server_privileges.php:1999
+#: server_privileges.php:2038
msgid "Create database with same name and grant all privileges"
msgstr "创建与用户同名的数据库并授予所有权限"
-#: server_privileges.php:2000
+#: server_privileges.php:2039
msgid "Grant all privileges on wildcard name (username\\_%)"
msgstr "给以 用户名_ 开头的数据库 (username\\_%) 授予所有权限"
-#: server_privileges.php:2003
+#: server_privileges.php:2042
#, php-format
msgid "Grant all privileges on database "%s""
msgstr "授予数据库“%s”的所有权限。"
-#: server_privileges.php:2026
+#: server_privileges.php:2065
#, php-format
msgid "Users having access to "%s""
msgstr "用户可以访问“%s”"
-#: server_privileges.php:2134
+#: server_privileges.php:2173
msgid "global"
msgstr "全局"
-#: server_privileges.php:2136
+#: server_privileges.php:2175
msgid "database-specific"
msgstr "按数据库指定"
-#: server_privileges.php:2138
+#: server_privileges.php:2177
msgid "wildcard"
msgstr "通配符"
@@ -5382,7 +4807,7 @@ msgstr "成功修改主服务器为 %s"
msgid "This server is configured as master in a replication process."
msgstr "此服务器已被配置为一个复制进程中的主服务器。"
-#: server_replication.php:184 server_status.php:281
+#: server_replication.php:184 server_status.php:392
msgid "Show master status"
msgstr "查看主服务器状态"
@@ -5525,95 +4950,682 @@ msgstr ""
"此服务器尚未配置为一个复制进程中的从服务器。你想现在配置"
"吗?"
+#: server_status.php:40
+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 ""
+"因事务使用的临时二进制日志缓存超出 binlog_cache_size 的设置而使用临时文件存储"
+"的数量。"
+
+#: server_status.php:41
+msgid "The number of transactions that used the temporary binary log cache."
+msgstr "事务所用的临时二进制日志缓存的数量。"
+
+#: server_status.php:42
+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 "
+"to increase the tmp_table_size value to cause temporary tables to be memory-"
+"based instead of disk-based."
+msgstr ""
+"服务器执行语句时自动在磁盘上创建的临时表的数量。如果 Created_tmp_disk_tables "
+"很大,你可以增加 tmp_table_size 的值,让服务器使用内存来存储临时表而非磁盘。"
+
+#: server_status.php:43
+msgid "How many temporary files mysqld has created."
+msgstr "mysqld 已创建的临时文件的数量。"
+
+#: server_status.php:44
+msgid ""
+"The number of in-memory temporary tables created automatically by the server "
+"while executing statements."
+msgstr "服务器执行语句时自动在内存中创建的临时表的数量。"
+
+#: server_status.php:45
+msgid ""
+"The number of rows written with INSERT DELAYED for which some error occurred "
+"(probably duplicate key)."
+msgstr ""
+"发生错误的延迟插入 (INSERT DELAYED) 行数 (可能是因为在唯一字段中存在重复"
+"值) 。"
+
#: server_status.php:46
+msgid ""
+"The number of INSERT DELAYED handler threads in use. Every different table "
+"on which one uses INSERT DELAYED gets its own thread."
+msgstr "正在使用的延迟插入处理线程的数量。每张使用延迟插入的表都有自己的线程。"
+
+#: server_status.php:47
+msgid "The number of INSERT DELAYED rows written."
+msgstr "延迟插入已写入的行数。"
+
+#: server_status.php:48
+msgid "The number of executed FLUSH statements."
+msgstr "已执行的强制更新 (FLUSH) 语句数。"
+
+#: server_status.php:49
+msgid "The number of internal COMMIT statements."
+msgstr "已执行的内部提交 (COMMIT) 语句数。"
+
+#: server_status.php:50
+msgid "The number of times a row was deleted from a table."
+msgstr "从表中删除行的次数。"
+
+#: server_status.php:51
+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 ""
+"如果知道一张表的名字,MySQL 服务器可以询问 NDB 集群存储引擎,这被称为“发现”。"
+"Handler_discovery 表明了一张表被发现的次数。"
+
+#: server_status.php:52
+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 ""
+"读取一个索引入口点的次数。如果该值很大,说明你的服务器执行了很多完整索引扫"
+"描。例如,假设字段 col1 已经建立了索引,然后执行 SELECT col1 FROM foo 。"
+
+#: server_status.php:53
+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 ""
+"根据索引读取行的请求数。如果该值很大,说明你的查询和表都建立了很好的索引。"
+
+#: server_status.php:54
+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 ""
+"根据索引顺序读取下一行的请求数。如果你在查询一个已索引的字段且限制了范围,或"
+"进行完整表扫描,该值将会不断增长。"
+
+#: server_status.php:55
+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 ""
+"根据索引顺序读取上一行的请求数。这种读取方式通常用于优化带有 ORDER BY ... "
+"DESC 的查询。"
+
+#: server_status.php:56
+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 "
+"probably have a lot of queries that require MySQL to scan whole tables or "
+"you have joins that don't use keys properly."
+msgstr ""
+"根据固定位置读取行的请求数。如果你执行很多需要排序的查询,该值会很高。你可能"
+"有很多需要完整表扫描的查询,或者你使用了不正确的索引用来多表查询。"
+
+#: server_status.php:57
+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 "
+"tables are not properly indexed or that your queries are not written to take "
+"advantage of the indexes you have."
+msgstr ""
+"从数据文件中读取行的请求数。如果你在扫描很多表,该值会很大。通常情况下这意味"
+"着你的表没有做好索引,或者你的查询语句没有使用好索引字段。"
+
+#: server_status.php:58
+msgid "The number of internal ROLLBACK statements."
+msgstr "内部回滚 (ROLLBACK) 语句数。"
+
+#: server_status.php:59
+msgid "The number of requests to update a row in a table."
+msgstr "表中更新行的请求数。"
+
+#: server_status.php:60
+msgid "The number of requests to insert a row in a table."
+msgstr "表中插入行的请求数。"
+
+#: server_status.php:61
+msgid "The number of pages containing data (dirty or clean)."
+msgstr "非空页数 (含脏页) 。"
+
+#: server_status.php:62
+msgid "The number of pages currently dirty."
+msgstr "当前脏页数。"
+
+#: server_status.php:63
+msgid "The number of buffer pool pages that have been requested to be flushed."
+msgstr "请求更新的缓冲池页数。"
+
+#: server_status.php:64
+msgid "The number of free pages."
+msgstr "空闲页数。"
+
+#: server_status.php:65
+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 ""
+"InnoDB 缓冲池中锁定页的数量。这些页是正在被读取或写入的,或者是因其他原因不能"
+"被刷新或删除的。"
+
+#: server_status.php:66
+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 "
+"be calculated as Innodb_buffer_pool_pages_total - "
+"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data."
+msgstr ""
+"负载页的数量,像锁定行或适应性的散列索引这样的管理操作时分配的页。该值可用此"
+"公式计算: Innodb_buffer_pool_pages_total - Innodb_buffer_pool_pages_free - "
+"Innodb_buffer_pool_pages_data 。"
+
+#: server_status.php:67
+msgid "Total size of buffer pool, in pages."
+msgstr "缓冲池总大小 (单位:页)。"
+
+#: server_status.php:68
+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 ""
+"InnoDB 初始化的“随机”预读数。这通常会在对一张表进行大范围的随机排序查询时发"
+"生。"
+
+#: server_status.php:69
+msgid ""
+"The number of sequential read-aheads InnoDB initiated. This happens when "
+"InnoDB does a sequential full table scan."
+msgstr ""
+"InnoDB 初始化的顺序预读数。这会在 InnoDB 执行一个顺序完整表扫描时发生。"
+
+#: server_status.php:70
+msgid "The number of logical read requests InnoDB has done."
+msgstr "InnoDB 完成的逻辑读请求数。"
+
+#: server_status.php:71
+msgid ""
+"The number of logical reads that InnoDB could not satisfy from buffer pool "
+"and had to do a single-page read."
+msgstr "InnoDB 进行逻辑读取时无法从缓冲池中获取而执行单页读取的次数。"
+
+#: server_status.php:72
+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 "
+"available, it's necessary to wait for pages to be flushed first. This "
+"counter counts instances of these waits. If the buffer pool size was set "
+"properly, this value should be small."
+msgstr ""
+"写入 InnoDB 缓冲池通常在后台进行,但有必要在没有干净页的时候读取或创建页,有"
+"必要先等待页被刷新。该计数器统计了这种等待的数量。如果缓冲池大小设置正确,这"
+"个值应该会很小。"
+
+#: server_status.php:73
+msgid "The number writes done to the InnoDB buffer pool."
+msgstr "写入 InnoDB 缓冲池的次数。"
+
+#: server_status.php:74
+msgid "The number of fsync() operations so far."
+msgstr "fsync() 总操作的次数。"
+
+#: server_status.php:75
+msgid "The current number of pending fsync() operations."
+msgstr "当前挂起 fsync() 操作的数量。"
+
+#: server_status.php:76
+msgid "The current number of pending reads."
+msgstr "当前挂起的读操作数。"
+
+#: server_status.php:77
+msgid "The current number of pending writes."
+msgstr "当前挂起的写操作数。"
+
+#: server_status.php:78
+msgid "The amount of data read so far, in bytes."
+msgstr "读取的总数据量 (单位:字节)。"
+
+#: server_status.php:79
+msgid "The total number of data reads."
+msgstr "数据读取总数。"
+
+#: server_status.php:80
+msgid "The total number of data writes."
+msgstr "数据写入总数。"
+
+#: server_status.php:81
+msgid "The amount of data written so far, in bytes."
+msgstr "写入的总数据量 (单位:字节)。"
+
+#: server_status.php:82
+msgid "The number of pages that have been written for doublewrite operations."
+msgstr "以双写入操作写入的页数。"
+
+#: server_status.php:83
+msgid "The number of doublewrite operations that have been performed."
+msgstr "已经执行的双写入次数。"
+
+#: server_status.php:84
+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 "因日志缓存太小而必须等待其被写入所造成的等待数。"
+
+#: server_status.php:85
+msgid "The number of log write requests."
+msgstr "日志写入请求数。"
+
+#: server_status.php:86
+msgid "The number of physical writes to the log file."
+msgstr "日志物理写入次数。"
+
+#: server_status.php:87
+msgid "The number of fsync() writes done to the log file."
+msgstr "使用 fsync() 写入日志文件的次数。"
+
+#: server_status.php:88
+msgid "The number of pending log file fsyncs."
+msgstr "当前挂起的 fsync 日志文件数。"
+
+#: server_status.php:89
+msgid "Pending log file writes."
+msgstr "当前挂起的日志写入数。"
+
+#: server_status.php:90
+msgid "The number of bytes written to the log file."
+msgstr "写入日志文件的字节数。"
+
+#: server_status.php:91
+msgid "The number of pages created."
+msgstr "创建的页数。"
+
+#: server_status.php:92
+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 ""
+"编译的 InnoDB 页大小 (默认 16KB)。许多值都以页为单位进行统计,页大小可以很方"
+"便地将这些值转化为字节数。"
+
+#: server_status.php:93
+msgid "The number of pages read."
+msgstr "读取的页数。"
+
+#: server_status.php:94
+msgid "The number of pages written."
+msgstr "写入的页数。"
+
+#: server_status.php:95
+msgid "The number of row locks currently being waited for."
+msgstr "正在等待行锁的数量。"
+
+#: server_status.php:96
+msgid "The average time to acquire a row lock, in milliseconds."
+msgstr "等待获得行锁的平均时间 (单位:毫秒)。"
+
+#: server_status.php:97
+msgid "The total time spent in acquiring row locks, in milliseconds."
+msgstr "等待获得行锁的总时间 (单位:毫秒)。"
+
+#: server_status.php:98
+msgid "The maximum time to acquire a row lock, in milliseconds."
+msgstr "等待获得行锁的最大时间 (单位:毫秒)。"
+
+#: server_status.php:99
+msgid "The number of times a row lock had to be waited for."
+msgstr "等待行锁的次数。"
+
+#: server_status.php:100
+msgid "The number of rows deleted from InnoDB tables."
+msgstr "从 InnoDB 表中删除的行数。"
+
+#: server_status.php:101
+msgid "The number of rows inserted in InnoDB tables."
+msgstr "插入到 InnoDB 表中的行数。"
+
+#: server_status.php:102
+msgid "The number of rows read from InnoDB tables."
+msgstr "从 InnoDB 表中读取的行数。"
+
+#: server_status.php:103
+msgid "The number of rows updated in InnoDB tables."
+msgstr "InnoDB 中更新的行数。"
+
+#: server_status.php:104
+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 。"
+
+#: server_status.php:105
+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 "键缓存中未使用的块数。你可以根据这个值判断当前使用了多少键缓存。"
+
+#: server_status.php:106
+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 "键缓存中已经使用的块数。该值指示在某个时刻使用了最多块数的数量。"
+
+#: server_status.php:107
+msgid "The number of requests to read a key block from the cache."
+msgstr "从缓存中读取键块的请求次数。"
+
+#: server_status.php:108
+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 ""
+"从磁盘中物理读取键块的次数。如果 Key_reads 很大,则说明您的 key_buffer_size "
+"可能设置得太小了。缓存缺失率可以由 Key_reads/Key_read_requests 计算得出。"
+
+#: server_status.php:109
+msgid "The number of requests to write a key block to the cache."
+msgstr "将一个键块写入缓存的请求数。"
+
+#: server_status.php:110
+msgid "The number of physical writes of a key block to disk."
+msgstr "将键块物理写入到磁盘的次数。"
+
+#: server_status.php:111
+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 ""
+"最后编译的查询的总开销由查询优化器计算得出,可用于比较使用不同的查询语句进行"
+"相同的查询时的效率差异。默认值0表示还没有查询被编译。"
+
+#: server_status.php:112
+msgid "The number of rows waiting to be written in INSERT DELAYED queues."
+msgstr "等待写入延迟插入队列的行数。"
+
+#: server_status.php:113
+msgid ""
+"The number of tables that have been opened. If opened tables is big, your "
+"table cache value is probably too small."
+msgstr "已经打开的表个数。如果该值很大,则说明表缓冲大小可能设置过小。"
+
+#: server_status.php:114
+msgid "The number of files that are open."
+msgstr "打开的文件个数。"
+
+#: server_status.php:115
+msgid "The number of streams that are open (used mainly for logging)."
+msgstr "打开的流个数 (主要用于日志记录)。"
+
+#: server_status.php:116
+msgid "The number of tables that are open."
+msgstr "打开的数据表个数。"
+
+#: server_status.php:117
+msgid "The number of free memory blocks in query cache."
+msgstr "查询缓存中空闲的内存块数。"
+
+#: server_status.php:118
+msgid "The amount of free memory for query cache."
+msgstr "查询缓存中空闲的内存总数。"
+
+#: server_status.php:119
+msgid "The number of cache hits."
+msgstr "缓存命中数。"
+
+#: server_status.php:120
+msgid "The number of queries added to the cache."
+msgstr "加入到缓存的查询数。"
+
+#: server_status.php:121
+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 "
+"cache size. The query cache uses a least recently used (LRU) strategy to "
+"decide which queries to remove from the cache."
+msgstr ""
+"为缓存新的查询而被删除的已缓存查询的个数,由最近最少使用算法 (LRU) 确定应删除"
+"哪个已缓存的查询。该信息可帮助您调整查询缓存大小。"
+
+#: server_status.php:122
+msgid ""
+"The number of non-cached queries (not cachable, or not cached due to the "
+"query_cache_type setting)."
+msgstr ""
+"未缓存的查询数 (包括不能被缓存,或因为 query_cache_type 的设置而没有被缓存的"
+"查询)。"
+
+#: server_status.php:123
+msgid "The number of queries registered in the cache."
+msgstr "在缓存中注册的查询数。"
+
+#: server_status.php:124
+msgid "The total number of blocks in the query cache."
+msgstr "查询缓存中的总块数。"
+
+#: server_status.php:125
+msgctxt "$strShowStatusReset"
+msgid "Reset"
+msgstr "重设"
+
+#: server_status.php:126
+msgid "The status of failsafe replication (not yet implemented)."
+msgstr "失败保护器的状态 (尚未应用)。"
+
+#: server_status.php:127
+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 ""
+"没有使用索引的多表查询数。如果该值不为0,您应该仔细检查是否已经为表建立了适当"
+"的索引。"
+
+#: server_status.php:128
+msgid "The number of joins that used a range search on a reference table."
+msgstr "使用在关联表上使用范围搜索的多表查询的数量。"
+
+#: server_status.php:129
+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 ""
+"没有使用索引但在每行之后检查索引使用的多表查询数。(如果该值不为 0,您应该仔细"
+"检查是否已经为表建立了适当的索引。)"
+
+#: server_status.php:130
+msgid ""
+"The number of joins that used ranges on the first table. (It's normally not "
+"critical even if this is big.)"
+msgstr ""
+"在第一张表上使用范围查询的多表查询数。(即使该值很大,通常也不会有致命的影"
+"响。)"
+
+#: server_status.php:131
+msgid "The number of joins that did a full scan of the first table."
+msgstr "在第一张表上进行了完整表扫描的多表查询数。"
+
+#: server_status.php:132
+msgid "The number of temporary tables currently open by the slave SQL thread."
+msgstr "当前由从 SQL 线程打开的临时表的数量。"
+
+#: server_status.php:133
+msgid ""
+"Total (since startup) number of times the replication slave SQL thread has "
+"retried transactions."
+msgstr "从 SQL 线程总共重试事务复制数。"
+
+#: server_status.php:134
+msgid "This is ON if this server is a slave that is connected to a master."
+msgstr "如果该值为 ON,则这台服务器是一台已经连接到主服务器的从服务器。"
+
+#: server_status.php:135
+msgid ""
+"The number of threads that have taken more than slow_launch_time seconds to "
+"create."
+msgstr "使用了比 slow_launch_time 更多的时间来启动的线程数量。"
+
+#: server_status.php:136
+msgid ""
+"The number of queries that have taken more than long_query_time seconds."
+msgstr "使用了比 long_query_time 更多时间的查询数。"
+
+#: server_status.php:137
+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 ""
+"排序算法使用归并的次数。如果该值很大,您应该考虑增加系统变量 "
+"sort_buffer_size 的值。"
+
+#: server_status.php:138
+msgid "The number of sorts that were done with ranges."
+msgstr "局部范围完成的排序次数。"
+
+#: server_status.php:139
+msgid "The number of sorted rows."
+msgstr "排序的行数。"
+
+#: server_status.php:140
+msgid "The number of sorts that were done by scanning the table."
+msgstr "扫描表完成的排序次数。"
+
+#: server_status.php:141
+msgid "The number of times that a table lock was acquired immediately."
+msgstr "立即需要锁定表的次数。"
+
+#: server_status.php:142
+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 "
+"should first optimize your queries, and then either split your table or "
+"tables or use replication."
+msgstr ""
+"无法立即获得锁定表而必须等待的次数。如果该值很高,且您遇到了性能方面的问题,"
+"则应该首先检查您的查询语句,然后使用复制操作来分开表。"
+
+#: server_status.php:143
+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 ""
+"线程缓存中线程的数量。缓存命中率可以由 Threads_created/Connections 计算得出。"
+"如果该值是红色的,则应该增加 thread_cache_size 的值。"
+
+#: server_status.php:144
+msgid "The number of currently open connections."
+msgstr "当前打开的连接数。"
+
+#: server_status.php:145
+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 "
+"doesn't give a notable performance improvement if you have a good thread "
+"implementation.)"
+msgstr ""
+"当前用于控制连接的线程数。如果 Threads_created 很大,您可能需要增加 "
+"thread_cache_size 的值 (如果线程状况良好,这么做通常并不会带来显著的性能提"
+"升)。"
+
+#: server_status.php:146
+msgid "The number of threads that are not sleeping."
+msgstr "非睡眠状态的线程数量。"
+
+#: server_status.php:157
msgid "Runtime Information"
msgstr "运行信息"
-#: server_status.php:250
+#: server_status.php:361
msgid "Handler"
msgstr "句柄"
-#: server_status.php:251
+#: server_status.php:362
msgid "Query cache"
msgstr "查询缓存"
-#: server_status.php:252
+#: server_status.php:363
msgid "Threads"
msgstr "线程"
-#: server_status.php:254
+#: server_status.php:365
msgid "Temporary data"
msgstr "临时数据"
-#: server_status.php:255
+#: server_status.php:366
msgid "Delayed inserts"
msgstr "延迟插入"
-#: server_status.php:256
+#: server_status.php:367
msgid "Key cache"
msgstr "键缓存"
-#: server_status.php:257
+#: server_status.php:368
msgid "Joins"
msgstr "多表查询"
-#: server_status.php:259
+#: server_status.php:370
msgid "Sorting"
msgstr "排序"
-#: server_status.php:261
+#: server_status.php:372
msgid "Transaction coordinator"
msgstr "事务协调"
-#: server_status.php:271
+#: server_status.php:382
msgid "Flush (close) all tables"
msgstr "强制更新 (关闭) 所有表"
-#: server_status.php:273
+#: server_status.php:384
msgid "Show open tables"
msgstr "显示打开的表"
-#: server_status.php:278
+#: server_status.php:389
msgid "Show slave hosts"
msgstr "显示从服务器"
-#: server_status.php:284
+#: server_status.php:395
msgid "Show slave status"
msgstr "显示从服务器状态"
-#: server_status.php:289
+#: server_status.php:400
msgid "Flush query cache"
msgstr "强制更新查询缓存"
-#: server_status.php:294
+#: server_status.php:405
msgid "Show processes"
msgstr "显示进程"
-#: server_status.php:344
+#: server_status.php:455
msgctxt "for Show status"
msgid "Reset"
msgstr "重置"
-#: server_status.php:350
+#: server_status.php:461
#, php-format
msgid "This MySQL server has been running for %s. It started up on %s."
msgstr "此 MySQL 服务器已经运行了 %s,启动时间为 %s。"
-#: server_status.php:360
+#: server_status.php:471
msgid ""
"This MySQL server works as master and slave in replication"
"b> process."
msgstr "此 MySQL 服务器正以主和从服务器运行于复制进程中。"
-#: server_status.php:362
+#: server_status.php:473
msgid "This MySQL server works as master in replication process."
msgstr "此 MySQL 服务器正以主服务器运行于复制进程中。"
-#: server_status.php:364
+#: server_status.php:475
msgid "This MySQL server works as slave in replication process."
msgstr "此 MySQL 服务器正以从服务器运行于复制进程中。"
-#: server_status.php:366
+#: server_status.php:477
msgid ""
"For further information about replication status on the server, please visit "
"the replication section."
@@ -5621,18 +5633,18 @@ msgstr ""
"要获得更多关于此服务器的复制状态,请查看复制状态信息"
"。"
-#: server_status.php:383
+#: server_status.php:494
msgid ""
"Server traffic: These tables show the network traffic statistics of "
"this MySQL server since its startup."
msgstr ""
"服务器流量:这些表显示了此 MySQL 服务器自启动以来的网络流量统计。"
-#: server_status.php:388
+#: server_status.php:499
msgid "Traffic"
msgstr "流量"
-#: server_status.php:388
+#: server_status.php:499
msgid ""
"On a busy server, the byte counters may overrun, so those statistics as "
"reported by the MySQL server may be incorrect."
@@ -5640,55 +5652,55 @@ msgstr ""
"在高负载的服务器上,字节计数器可能会溢出,因此由 MySQL 返回的统计值可能会不正"
"确"
-#: server_status.php:389 server_status.php:434 server_status.php:497
-#: server_status.php:555
+#: server_status.php:500 server_status.php:545 server_status.php:608
+#: server_status.php:666
msgid "per hour"
msgstr "每小时"
-#: server_status.php:394
+#: server_status.php:505
msgid "Received"
msgstr "已接收"
-#: server_status.php:404
+#: server_status.php:515
msgid "Sent"
msgstr "已发送"
-#: server_status.php:433
+#: server_status.php:544
msgid "Connections"
msgstr "连接"
-#: server_status.php:440
+#: server_status.php:551
msgid "max. concurrent connections"
msgstr "最大并发连接数"
-#: server_status.php:447
+#: server_status.php:558
msgid "Failed attempts"
msgstr "已失败"
-#: server_status.php:461
+#: server_status.php:572
msgid "Aborted"
msgstr "已取消"
-#: server_status.php:490
+#: server_status.php:601
#, php-format
msgid ""
"Query statistics: Since its startup, %s queries have been sent to the "
"server."
msgstr "查询统计:自启动后,服务器共收到了 %s 次查询。"
-#: server_status.php:498
+#: server_status.php:609
msgid "per minute"
msgstr "每分钟"
-#: server_status.php:499
+#: server_status.php:610
msgid "per second"
msgstr "每秒"
-#: server_status.php:554
+#: server_status.php:665
msgid "Query type"
msgstr "查询方式"
-#: server_status.php:721
+#: server_status.php:832
msgid "Replication status"
msgstr "复制状态"
diff --git a/po/zh_TW.po b/po/zh_TW.po
index 70ba34fec..ee046b1d5 100755
--- a/po/zh_TW.po
+++ b/po/zh_TW.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-06-04 16:07-0400\n"
+"POT-Creation-Date: 2010-06-08 12:32-0400\n"
"PO-Revision-Date: 2010-03-12 09:15+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: chinese_traditional \n"
@@ -14,11 +14,11 @@ msgstr ""
"X-Generator: Translate Toolkit 1.5.3\n"
#: browse_foreigners.php:38 browse_foreigners.php:59
-#: libraries/display_tbl.lib.php:417 server_privileges.php:1475
+#: libraries/display_tbl.lib.php:417 server_privileges.php:1514
msgid "Show all"
msgstr "顯示全部"
-#: browse_foreigners.php:82 libraries/common.lib.php:2304
+#: browse_foreigners.php:82 libraries/common.lib.php:2313
#: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:394
#: libraries/export/pdf.php:147 pdf_schema.php:283 pdf_schema.php:1123
#: pdf_schema.php:1139
@@ -36,8 +36,8 @@ msgstr ""
#: browse_foreigners.php:150 db_structure.php:79 db_structure.php:80
#: db_structure.php:91 db_structure.php:93 db_structure.php:104
-#: db_structure.php:106 libraries/common.lib.php:2822
-#: libraries/common.lib.php:2829 libraries/db_links.inc.php:75
+#: db_structure.php:106 libraries/common.lib.php:2831
+#: libraries/common.lib.php:2838 libraries/db_links.inc.php:75
#: libraries/tbl_links.inc.php:63
msgid "Search"
msgstr "搜索"
@@ -47,7 +47,7 @@ msgstr "搜索"
#: db_structure.php:567 js/messages.php:48 libraries/Config.class.php:1046
#: libraries/Theme_Manager.class.php:311
#: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719
-#: libraries/common.lib.php:1333 libraries/common.lib.php:2279
+#: libraries/common.lib.php:1335 libraries/common.lib.php:2288
#: libraries/display_change_password.lib.php:82
#: libraries/display_create_table.lib.php:63
#: libraries/display_export.lib.php:275 libraries/display_import.lib.php:276
@@ -58,9 +58,9 @@ msgstr "搜索"
#: libraries/sql_query_form.lib.php:552 libraries/tbl_properties.inc.php:782
#: main.php:128 navigation.php:237 pdf_pages.php:292 pdf_pages.php:328
#: pdf_pages.php:530 pmd_pdf.php:116 server_binlog.php:142
-#: server_privileges.php:625 server_privileges.php:1585
-#: server_privileges.php:1932 server_privileges.php:1979
-#: server_privileges.php:2018 server_replication.php:235
+#: server_privileges.php:664 server_privileges.php:1624
+#: server_privileges.php:1971 server_privileges.php:2018
+#: server_privileges.php:2057 server_replication.php:235
#: server_replication.php:318 server_replication.php:341
#: server_synchronize.php:1209 tbl_change.php:330 tbl_change.php:1174
#: tbl_change.php:1211 tbl_indexes.php:254 tbl_operations.php:265
@@ -78,7 +78,7 @@ msgstr "鍵名"
#: browse_foreigners.php:169 browse_foreigners.php:171
#: server_collations.php:55 server_collations.php:67 server_engines.php:59
-#: server_status.php:628
+#: server_status.php:739
msgid "Description"
msgstr "說明"
@@ -119,7 +119,7 @@ msgstr "欄位名稱"
#: libraries/db_structure.lib.php:60 libraries/export/htmlword.php:245
#: libraries/export/latex.php:360 libraries/export/odt.php:297
#: libraries/export/texytext.php:234 libraries/tbl_properties.inc.php:100
-#: pdf_schema.php:1263 pdf_schema.php:1284 server_privileges.php:2031
+#: pdf_schema.php:1263 pdf_schema.php:1284 server_privileges.php:2070
#: tbl_change.php:287 tbl_change.php:314 tbl_printview.php:143
#: tbl_printview.php:313 tbl_select.php:136 tbl_structure.php:178
#: tbl_structure.php:659 tbl_tracking.php:274 tbl_tracking.php:321
@@ -163,9 +163,9 @@ msgstr "註解"
#: libraries/Index.class.php:386 libraries/export/htmlword.php:322
#: libraries/export/latex.php:430 libraries/export/odt.php:368
#: libraries/export/texytext.php:311 libraries/mult_submits.inc.php:263
-#: pdf_schema.php:1344 server_privileges.php:1529 server_privileges.php:1540
-#: server_privileges.php:1850 server_privileges.php:1855
-#: server_privileges.php:2148 sql.php:132 sql.php:194 tbl_printview.php:229
+#: pdf_schema.php:1344 server_privileges.php:1568 server_privileges.php:1579
+#: server_privileges.php:1889 server_privileges.php:1894
+#: server_privileges.php:2187 sql.php:132 sql.php:194 tbl_printview.php:229
#: tbl_structure.php:350 tbl_tracking.php:337 tbl_tracking.php:342
msgid "No"
msgstr " 否 "
@@ -179,9 +179,9 @@ msgstr " 否 "
#: libraries/mult_submits.inc.php:101 libraries/mult_submits.inc.php:106
#: libraries/mult_submits.inc.php:111 libraries/mult_submits.inc.php:262
#: libraries/mult_submits.inc.php:273 pdf_schema.php:1344
-#: server_databases.php:64 server_privileges.php:1526
-#: server_privileges.php:1540 server_privileges.php:1850
-#: server_privileges.php:1853 server_privileges.php:2148 sql.php:193
+#: server_databases.php:64 server_privileges.php:1565
+#: server_privileges.php:1579 server_privileges.php:1889
+#: server_privileges.php:1892 server_privileges.php:2187 sql.php:193
#: tbl_printview.php:229 tbl_structure.php:40 tbl_structure.php:350
#: tbl_tracking.php:335 tbl_tracking.php:340
msgid "Yes"
@@ -278,7 +278,7 @@ msgstr "轉移到複製之資料庫"
msgid "BLOB Repository"
msgstr ""
-#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1350
+#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1352
#: libraries/server_links.inc.php:49 server_processlist.php:59
#: tbl_tracking.php:596 test/theme.php:101
msgid "Status"
@@ -340,8 +340,8 @@ msgstr "編輯 PDF 頁碼"
#: db_printview.php:104 db_tracking.php:72 db_tracking.php:157
#: libraries/db_structure.lib.php:46 libraries/export/xml.php:328
-#: libraries/header.inc.php:126 pdf_pages.php:424 server_privileges.php:1626
-#: server_privileges.php:1682 server_privileges.php:1946
+#: libraries/header.inc.php:126 pdf_pages.php:424 server_privileges.php:1665
+#: server_privileges.php:1721 server_privileges.php:1985
#: server_synchronize.php:423 server_synchronize.php:866 tbl_tracking.php:592
#: test/theme.php:75
msgid "Table"
@@ -442,7 +442,7 @@ msgstr "移除"
#: db_qbe.php:370 db_qbe.php:451 db_qbe.php:522 db_qbe.php:553
#: libraries/display_import.lib.php:166 libraries/tbl_properties.inc.php:779
-#: server_privileges.php:258 tbl_change.php:1031 tbl_indexes.php:250
+#: server_privileges.php:297 tbl_change.php:1031 tbl_indexes.php:250
#: tbl_select.php:288
msgid "Or"
msgstr "或"
@@ -476,7 +476,7 @@ msgstr "使用資料表"
msgid "SQL query on database %s:"
msgstr "在資料庫 %s 執行 SQL 語法:"
-#: db_qbe.php:934 libraries/common.lib.php:1223
+#: db_qbe.php:934 libraries/common.lib.php:1225
msgid "Submit Query"
msgstr "執行語法"
@@ -515,7 +515,7 @@ msgstr "%s 項資料符合 - 於資料表 %s"
#: db_search.php:267 db_structure.php:77 db_structure.php:78
#: db_structure.php:90 db_structure.php:92 db_structure.php:103
-#: db_structure.php:105 libraries/common.lib.php:2824
+#: db_structure.php:105 libraries/common.lib.php:2833
#: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50
#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:467
msgid "Browse"
@@ -562,26 +562,26 @@ msgstr "於以下資料表:"
#: db_structure.php:81 db_structure.php:82 db_structure.php:94
#: db_structure.php:95 db_structure.php:107 db_structure.php:108
-#: libraries/common.lib.php:2823 libraries/sql_query_form.lib.php:334
+#: libraries/common.lib.php:2832 libraries/sql_query_form.lib.php:334
#: libraries/sql_query_form.lib.php:337 libraries/tbl_links.inc.php:76
msgid "Insert"
msgstr "新增"
#: db_structure.php:83 db_structure.php:96 db_structure.php:109
-#: libraries/common.lib.php:2820 libraries/common.lib.php:2827
+#: libraries/common.lib.php:2829 libraries/common.lib.php:2836
#: libraries/db_links.inc.php:63 libraries/export/htmlword.php:23
#: libraries/export/latex.php:33 libraries/export/latex.php:337
#: libraries/export/odt.php:32 libraries/export/sql.php:60
#: libraries/export/texytext.php:23 libraries/import.lib.php:1104
#: libraries/tbl_links.inc.php:56 pmd_general.php:134
-#: server_privileges.php:554 server_replication.php:315 tbl_tracking.php:269
+#: server_privileges.php:593 server_replication.php:315 tbl_tracking.php:269
msgid "Structure"
msgstr "結構"
#: db_structure.php:84 db_structure.php:85 db_structure.php:97
#: db_structure.php:98 db_structure.php:110 db_structure.php:111
#: db_structure.php:545 db_structure.php:546 db_tracking.php:91
-#: libraries/Index.class.php:483 libraries/common.lib.php:1654
+#: libraries/Index.class.php:483 libraries/common.lib.php:1656
#: libraries/db_links.inc.php:100 libraries/mult_submits.inc.php:36
#: libraries/mult_submits.inc.php:73 libraries/tbl_links.inc.php:127
#: server_databases.php:352 tbl_structure.php:27 tbl_structure.php:151
@@ -591,7 +591,7 @@ msgstr "刪除"
#: db_structure.php:86 db_structure.php:87 db_structure.php:99
#: db_structure.php:100 db_structure.php:112 db_structure.php:113
-#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1653
+#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1655
#: libraries/mult_submits.inc.php:39 libraries/tbl_links.inc.php:105
msgid "Empty"
msgstr "清空"
@@ -633,7 +633,7 @@ msgstr "檢視"
#: db_structure.php:485 libraries/db_structure.lib.php:49
#: libraries/server_links.inc.php:70 server_replication.php:33
-#: server_replication.php:164 server_status.php:258
+#: server_replication.php:164 server_status.php:369
msgid "Replication"
msgstr "複製"
@@ -649,20 +649,20 @@ msgstr "這 MySQL 伺服器的預設儲存引擎是 %s "
#: db_structure.php:524 db_structure.php:541 db_structure.php:542
#: libraries/display_tbl.lib.php:2081 libraries/display_tbl.lib.php:2086
#: libraries/mult_submits.inc.php:16 server_databases.php:346
-#: server_databases.php:351 server_privileges.php:1557 tbl_structure.php:455
+#: server_databases.php:351 server_privileges.php:1596 tbl_structure.php:455
#: tbl_structure.php:464
msgid "With selected:"
msgstr "選擇的資料表:"
#: db_structure.php:527 libraries/display_tbl.lib.php:2076
-#: server_databases.php:348 server_privileges.php:530
-#: server_privileges.php:1560 tbl_structure.php:458
+#: server_databases.php:348 server_privileges.php:569
+#: server_privileges.php:1599 tbl_structure.php:458
msgid "Check All"
msgstr "全選"
#: db_structure.php:531 libraries/display_tbl.lib.php:2077
#: libraries/replication_gui.lib.php:33 server_databases.php:350
-#: server_privileges.php:533 server_privileges.php:1564 tbl_structure.php:462
+#: server_privileges.php:572 server_privileges.php:1603 tbl_structure.php:462
msgid "Uncheck All"
msgstr "全部取消"
@@ -700,7 +700,7 @@ msgstr "分析資料表"
#: libraries/display_export.lib.php:83 libraries/display_tbl.lib.php:2094
#: libraries/display_tbl.lib.php:2225 libraries/mult_submits.inc.php:62
#: libraries/server_links.inc.php:84 libraries/tbl_links.inc.php:82
-#: pmd_pdf.php:84 pmd_pdf.php:109 server_privileges.php:1341
+#: pmd_pdf.php:84 pmd_pdf.php:109 server_privileges.php:1380
#: setup/frames/menu.inc.php:22 tbl_row_action.php:59
msgid "Export"
msgstr "輸出"
@@ -718,8 +718,8 @@ msgstr ""
#: libraries/export/sql.php:342 libraries/export/texytext.php:84
#: libraries/export/xml.php:255 libraries/header.inc.php:106
#: libraries/header_printview.inc.php:58 server_databases.php:169
-#: server_privileges.php:1621 server_privileges.php:1682
-#: server_privileges.php:1940 server_processlist.php:56
+#: server_privileges.php:1660 server_privileges.php:1721
+#: server_privileges.php:1979 server_processlist.php:56
#: server_synchronize.php:1179 server_synchronize.php:1183
#: tbl_tracking.php:591 test/theme.php:65
msgid "Database"
@@ -740,8 +740,8 @@ msgstr ""
#: db_tracking.php:77 libraries/Index.class.php:440
#: libraries/db_structure.lib.php:53 server_databases.php:203
-#: server_privileges.php:1503 server_privileges.php:1686
-#: server_privileges.php:2034 tbl_structure.php:187
+#: server_privileges.php:1542 server_privileges.php:1725
+#: server_privileges.php:2073 tbl_structure.php:187
msgid "Action"
msgstr "執行"
@@ -932,11 +932,11 @@ msgstr "請輸入主機名稱!"
msgid "The user name is empty!"
msgstr "請輸入使用者名稱!"
-#: js/messages.php:44 server_privileges.php:1197 user_password.php:70
+#: js/messages.php:44 server_privileges.php:1236 user_password.php:70
msgid "The password is empty!"
msgstr "請輸入密碼!"
-#: js/messages.php:45 server_privileges.php:1195 user_password.php:73
+#: js/messages.php:45 server_privileges.php:1234 user_password.php:73
msgid "The passwords aren't the same!"
msgstr "第二次輸入的密碼不同!"
@@ -1017,8 +1017,8 @@ msgid "Prev"
msgstr "前一頁"
#. l10n: Display text for next month link in calendar
-#: js/messages.php:77 libraries/common.lib.php:2344
-#: libraries/common.lib.php:2347 libraries/display_tbl.lib.php:338
+#: js/messages.php:77 libraries/common.lib.php:2353
+#: libraries/common.lib.php:2356 libraries/display_tbl.lib.php:338
#: server_binlog.php:205 server_binlog.php:207 tbl_printview.php:424
#: tbl_structure.php:801
msgid "Next"
@@ -1094,27 +1094,27 @@ msgid "December"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:97 libraries/common.lib.php:1555
+#: js/messages.php:97 libraries/common.lib.php:1557
msgid "Jan"
msgstr "Jan"
#. l10n: Short month name
-#: js/messages.php:99 libraries/common.lib.php:1557
+#: js/messages.php:99 libraries/common.lib.php:1559
msgid "Feb"
msgstr "Feb"
#. l10n: Short month name
-#: js/messages.php:101 libraries/common.lib.php:1559
+#: js/messages.php:101 libraries/common.lib.php:1561
msgid "Mar"
msgstr "Mar"
#. l10n: Short month name
-#: js/messages.php:103 libraries/common.lib.php:1561
+#: js/messages.php:103 libraries/common.lib.php:1563
msgid "Apr"
msgstr "Apr"
#. l10n: Short month name
-#: js/messages.php:105 libraries/common.lib.php:1563
+#: js/messages.php:105 libraries/common.lib.php:1565
#, fuzzy
#| msgid "May"
msgctxt "Short month name"
@@ -1122,37 +1122,37 @@ msgid "May"
msgstr "May"
#. l10n: Short month name
-#: js/messages.php:107 libraries/common.lib.php:1565
+#: js/messages.php:107 libraries/common.lib.php:1567
msgid "Jun"
msgstr "Jun"
#. l10n: Short month name
-#: js/messages.php:109 libraries/common.lib.php:1567
+#: js/messages.php:109 libraries/common.lib.php:1569
msgid "Jul"
msgstr "Jul"
#. l10n: Short month name
-#: js/messages.php:111 libraries/common.lib.php:1569
+#: js/messages.php:111 libraries/common.lib.php:1571
msgid "Aug"
msgstr "Aug"
#. l10n: Short month name
-#: js/messages.php:113 libraries/common.lib.php:1571
+#: js/messages.php:113 libraries/common.lib.php:1573
msgid "Sep"
msgstr "Sep"
#. l10n: Short month name
-#: js/messages.php:115 libraries/common.lib.php:1573
+#: js/messages.php:115 libraries/common.lib.php:1575
msgid "Oct"
msgstr "Oct"
#. l10n: Short month name
-#: js/messages.php:117 libraries/common.lib.php:1575
+#: js/messages.php:117 libraries/common.lib.php:1577
msgid "Nov"
msgstr "Nov"
#. l10n: Short month name
-#: js/messages.php:119 libraries/common.lib.php:1577
+#: js/messages.php:119 libraries/common.lib.php:1579
msgid "Dec"
msgstr "Dec"
@@ -1193,37 +1193,37 @@ msgid "Saturday"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:132 libraries/common.lib.php:1580
+#: js/messages.php:132 libraries/common.lib.php:1582
msgid "Sun"
msgstr "Sun"
#. l10n: Short week day name
-#: js/messages.php:134 libraries/common.lib.php:1582
+#: js/messages.php:134 libraries/common.lib.php:1584
msgid "Mon"
msgstr "Mon"
#. l10n: Short week day name
-#: js/messages.php:136 libraries/common.lib.php:1584
+#: js/messages.php:136 libraries/common.lib.php:1586
msgid "Tue"
msgstr "Tue"
#. l10n: Short week day name
-#: js/messages.php:138 libraries/common.lib.php:1586
+#: js/messages.php:138 libraries/common.lib.php:1588
msgid "Wed"
msgstr "Wed"
#. l10n: Short week day name
-#: js/messages.php:140 libraries/common.lib.php:1588
+#: js/messages.php:140 libraries/common.lib.php:1590
msgid "Thu"
msgstr "Thu"
#. l10n: Short week day name
-#: js/messages.php:142 libraries/common.lib.php:1590
+#: js/messages.php:142 libraries/common.lib.php:1592
msgid "Fri"
msgstr "Fri"
#. l10n: Short week day name
-#: js/messages.php:144 libraries/common.lib.php:1592
+#: js/messages.php:144 libraries/common.lib.php:1594
msgid "Sat"
msgstr "Sat"
@@ -1368,7 +1368,7 @@ msgid "Comment"
msgstr "註解"
#: libraries/Index.class.php:466 libraries/common.lib.php:616
-#: libraries/common.lib.php:1199 libraries/display_tbl.lib.php:1117
+#: libraries/common.lib.php:1201 libraries/display_tbl.lib.php:1117
#: libraries/import.lib.php:1087 libraries/import.lib.php:1111
#: pdf_pages.php:285 setup/frames/index.inc.php:124
#: setup/lib/messages.inc.php:352 tbl_row_action.php:69
@@ -1392,7 +1392,7 @@ msgid ""
msgstr ""
#: libraries/List_Database.class.php:431 libraries/server_links.inc.php:41
-#: server_databases.php:88 server_privileges.php:1621
+#: server_databases.php:88 server_privileges.php:1660
#: setup/lib/messages.inc.php:110 test/theme.php:93
msgid "Databases"
msgstr "資料庫"
@@ -1719,7 +1719,7 @@ msgid "Documentation"
msgstr "說明文件"
#: libraries/common.lib.php:595 libraries/header_printview.inc.php:61
-#: server_processlist.php:60 server_status.php:247
+#: server_processlist.php:60 server_status.php:358
msgid "SQL query"
msgstr "SQL 語法"
@@ -1735,130 +1735,130 @@ msgstr "說明 SQL"
msgid "Skip Explain SQL"
msgstr "略過說明 SQL"
-#: libraries/common.lib.php:1212
+#: libraries/common.lib.php:1214
msgid "Without PHP Code"
msgstr "移除 PHP 程式碼"
-#: libraries/common.lib.php:1215 setup/lib/messages.inc.php:355
+#: libraries/common.lib.php:1217 setup/lib/messages.inc.php:355
msgid "Create PHP Code"
msgstr "建立 PHP 程式碼"
-#: libraries/common.lib.php:1233 server_status.php:341
+#: libraries/common.lib.php:1235 server_status.php:452
#: setup/lib/messages.inc.php:354
msgid "Refresh"
msgstr "更新"
-#: libraries/common.lib.php:1242
+#: libraries/common.lib.php:1244
msgid "Skip Validate SQL"
msgstr "略過檢查 SQL"
-#: libraries/common.lib.php:1245 setup/lib/messages.inc.php:356 sql.php:518
+#: libraries/common.lib.php:1247 setup/lib/messages.inc.php:356 sql.php:518
msgid "Validate SQL"
msgstr "檢查 SQL"
-#: libraries/common.lib.php:1276
+#: libraries/common.lib.php:1278
msgid "Inline edit of this query"
msgstr ""
-#: libraries/common.lib.php:1278
+#: libraries/common.lib.php:1280
#, fuzzy
#| msgid "Engines"
msgid "Inline"
msgstr "引擎"
-#: libraries/common.lib.php:1332 libraries/common.lib.php:1347
+#: libraries/common.lib.php:1334 libraries/common.lib.php:1349
msgid "Profiling"
msgstr ""
-#: libraries/common.lib.php:1351 libraries/tbl_triggers.lib.php:28
+#: libraries/common.lib.php:1353 libraries/tbl_triggers.lib.php:28
#: server_processlist.php:58
msgid "Time"
msgstr "時間"
#. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "B"
msgstr "Bytes"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "KiB"
msgstr "KB"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "MiB"
msgstr "MB"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "GiB"
msgstr "GB"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "TiB"
msgstr "TB"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "PiB"
msgstr "PB"
-#: libraries/common.lib.php:1379
+#: libraries/common.lib.php:1381
msgid "EiB"
msgstr "EB"
#. l10n: Thousands separator
-#: libraries/common.lib.php:1417
+#: libraries/common.lib.php:1419
msgid ","
msgstr ","
#. l10n: Decimal separator
-#: libraries/common.lib.php:1419
+#: libraries/common.lib.php:1421
msgid "."
msgstr "."
#. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string
-#: libraries/common.lib.php:1596
+#: libraries/common.lib.php:1598
#: libraries/transformations/text_plain__dateformat.inc.php:34
msgid "%B %d, %Y at %I:%M %p"
msgstr "%B %d, %Y, %I:%M %p"
-#: libraries/common.lib.php:1898
+#: libraries/common.lib.php:1907
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "%s 日, %s 小時, %s 分鐘 %s 秒"
-#: libraries/common.lib.php:2313 libraries/common.lib.php:2316
-#: libraries/display_tbl.lib.php:290 server_status.php:608
+#: libraries/common.lib.php:2322 libraries/common.lib.php:2325
+#: libraries/display_tbl.lib.php:290 server_status.php:719
msgid "Begin"
msgstr "第一頁"
-#: libraries/common.lib.php:2314 libraries/common.lib.php:2317
+#: libraries/common.lib.php:2323 libraries/common.lib.php:2326
#: libraries/display_tbl.lib.php:291 server_binlog.php:168
#: server_binlog.php:170
msgid "Previous"
msgstr "前一頁"
-#: libraries/common.lib.php:2345 libraries/common.lib.php:2348
+#: libraries/common.lib.php:2354 libraries/common.lib.php:2357
#: libraries/display_tbl.lib.php:353
msgid "End"
msgstr "最後一頁"
-#: libraries/common.lib.php:2421
+#: libraries/common.lib.php:2430
#, php-format
msgid "Jump to database "%s"."
msgstr "跳到資料庫 "%s"."
-#: libraries/common.lib.php:2441
+#: libraries/common.lib.php:2450
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr ""
-#: libraries/common.lib.php:2821 libraries/common.lib.php:2828
+#: libraries/common.lib.php:2830 libraries/common.lib.php:2837
#: libraries/db_links.inc.php:68 libraries/export/sql.php:25
#: libraries/import/sql.php:18 libraries/server_links.inc.php:45
#: libraries/tbl_links.inc.php:60 querywindow.php:99 test/theme.php:97
msgid "SQL"
msgstr "SQL"
-#: libraries/common.lib.php:2830 libraries/db_links.inc.php:104
+#: libraries/common.lib.php:2839 libraries/db_links.inc.php:104
#: libraries/tbl_links.inc.php:95 libraries/tbl_links.inc.php:117
#: view_operations.php:89
msgid "Operations"
@@ -1912,8 +1912,8 @@ msgid "Import"
msgstr "載入"
#: libraries/db_links.inc.php:111 libraries/server_links.inc.php:66
-#: server_privileges.php:72 server_privileges.php:1683
-#: server_privileges.php:2032 test/theme.php:117
+#: server_privileges.php:111 server_privileges.php:1722
+#: server_privileges.php:2071 test/theme.php:117
msgid "Privileges"
msgstr "權限"
@@ -1959,22 +1959,22 @@ msgid "Change password"
msgstr "更改密碼"
#: libraries/display_change_password.lib.php:35
-#: libraries/replication_gui.lib.php:345 server_privileges.php:768
+#: libraries/replication_gui.lib.php:345 server_privileges.php:807
msgid "No Password"
msgstr "不用密碼"
#: libraries/display_change_password.lib.php:41
#: libraries/replication_gui.lib.php:59 libraries/replication_gui.lib.php:60
#: libraries/replication_gui.lib.php:335 libraries/replication_gui.lib.php:339
-#: libraries/replication_gui.lib.php:349 server_privileges.php:757
-#: server_privileges.php:761 server_privileges.php:772
-#: server_privileges.php:1499 server_synchronize.php:1175
+#: libraries/replication_gui.lib.php:349 server_privileges.php:796
+#: server_privileges.php:800 server_privileges.php:811
+#: server_privileges.php:1538 server_synchronize.php:1175
msgid "Password"
msgstr "密碼"
#: libraries/display_change_password.lib.php:46
#: libraries/replication_gui.lib.php:353 libraries/replication_gui.lib.php:356
-#: server_privileges.php:776 server_privileges.php:779
+#: server_privileges.php:815 server_privileges.php:818
msgid "Re-type"
msgstr "確認密碼"
@@ -1989,12 +1989,12 @@ msgid "MySQL 4.0 compatible"
msgstr "MySQL 4.0 相容"
#: libraries/display_change_password.lib.php:72
-#: libraries/replication_gui.lib.php:360 server_privileges.php:783
+#: libraries/replication_gui.lib.php:360 server_privileges.php:822
msgid "Generate Password"
msgstr "產生密碼"
#: libraries/display_change_password.lib.php:75
-#: libraries/replication_gui.lib.php:363 server_privileges.php:786
+#: libraries/replication_gui.lib.php:363 server_privileges.php:825
msgid "Generate"
msgstr "產生"
@@ -2007,8 +2007,8 @@ msgstr "建立新資料庫"
msgid "Create"
msgstr "建立"
-#: libraries/display_create_database.lib.php:40 server_privileges.php:74
-#: server_privileges.php:1388 server_replication.php:35
+#: libraries/display_create_database.lib.php:40 server_privileges.php:113
+#: server_privileges.php:1427 server_replication.php:35
msgid "No Privileges"
msgstr "沒有權限"
@@ -2097,7 +2097,7 @@ msgstr "壓縮"
#: libraries/display_export.lib.php:240 libraries/display_import.lib.php:197
#: libraries/display_import.lib.php:210 libraries/display_tbl.lib.php:530
#: libraries/export/sql.php:868 libraries/tbl_properties.inc.php:575
-#: server_privileges.php:1836 server_processlist.php:75
+#: server_privileges.php:1875 server_processlist.php:75
msgid "None"
msgstr "不適用"
@@ -2418,7 +2418,7 @@ msgstr "InnoDB 資料表用於快取資料及索引時使用的記憶體綬緩
msgid "Buffer Pool"
msgstr "緩衝區"
-#: libraries/engines/innodb.lib.php:145 server_status.php:306
+#: libraries/engines/innodb.lib.php:145 server_status.php:417
msgid "InnoDB Status"
msgstr "InnoDB 狀態"
@@ -2427,8 +2427,8 @@ msgid "Buffer Pool Usage"
msgstr "緩衝區使用空間"
#: libraries/engines/innodb.lib.php:194 server_databases.php:137
-#: server_databases.php:305 server_status.php:414 server_status.php:475
-#: server_status.php:496 tbl_printview.php:351 tbl_structure.php:696
+#: server_databases.php:305 server_status.php:525 server_status.php:586
+#: server_status.php:607 tbl_printview.php:351 tbl_structure.php:696
msgid "Total"
msgstr "總共"
@@ -2755,7 +2755,7 @@ msgstr "Microsoft Word 2000"
#: libraries/export/latex.php:201 libraries/export/odt.php:48
#: libraries/export/sql.php:106 libraries/export/sql.php:868
#: libraries/export/texytext.php:27 server_databases.php:127
-#: server_privileges.php:537 server_replication.php:316 tbl_printview.php:317
+#: server_privileges.php:576 server_replication.php:316 tbl_printview.php:317
#: tbl_structure.php:665
msgid "Data"
msgstr "資料"
@@ -2805,9 +2805,9 @@ msgstr "MIME 類型"
#: libraries/export/xml.php:102 libraries/header_printview.inc.php:57
#: libraries/replication_gui.lib.php:63 libraries/replication_gui.lib.php:174
#: libraries/replication_gui.lib.php:269 libraries/replication_gui.lib.php:272
-#: libraries/replication_gui.lib.php:329 server_privileges.php:692
-#: server_privileges.php:695 server_privileges.php:751
-#: server_privileges.php:1498 server_privileges.php:2030
+#: libraries/replication_gui.lib.php:329 server_privileges.php:731
+#: server_privileges.php:734 server_privileges.php:790
+#: server_privileges.php:1537 server_privileges.php:2069
#: server_processlist.php:55 server_synchronize.php:1159
msgid "Host"
msgstr "主機"
@@ -3168,739 +3168,6 @@ msgstr "不適用"
msgid "Convert to Kana"
msgstr ""
-#. l10n: Text direction, use either ltr or rtl
-#: libraries/messages.inc.php:19
-msgid "ltr"
-msgstr "ltr"
-
-#: libraries/messages.inc.php:21
-msgid "Content of table __TABLE__"
-msgstr "資料表 __TABLE__ 內容"
-
-#: libraries/messages.inc.php:22
-msgid "(continued)"
-msgstr "(連續)"
-
-#: libraries/messages.inc.php:23
-msgid "Structure of table __TABLE__"
-msgstr "資料表 __TABLE__ 結構"
-
-#: libraries/messages.inc.php:25 server_privileges.php:227
-msgid "Includes all privileges except GRANT."
-msgstr "包括所有權限除了授權 (GRNANT)."
-
-#: libraries/messages.inc.php:26 server_privileges.php:153
-#: server_privileges.php:476
-msgid "Allows altering the structure of existing tables."
-msgstr "容許修改現有資料表的結構."
-
-#: libraries/messages.inc.php:27 server_privileges.php:169
-#: server_privileges.php:482
-msgid "Allows altering and dropping stored routines."
-msgstr "容許修改及刪除儲存程序."
-
-#: libraries/messages.inc.php:28 server_privileges.php:145
-#: server_privileges.php:475
-msgid "Allows creating new databases and tables."
-msgstr "容許建立新資料庫及資料表."
-
-#: libraries/messages.inc.php:29 server_privileges.php:168
-#: server_privileges.php:481
-msgid "Allows creating stored routines."
-msgstr "容許建立儲存程序"
-
-#: libraries/messages.inc.php:30 server_privileges.php:475
-msgid "Allows creating new tables."
-msgstr "容許建立新資料表."
-
-#: libraries/messages.inc.php:31 server_privileges.php:156
-#: server_privileges.php:479
-msgid "Allows creating temporary tables."
-msgstr "容許建立暫時性資料表."
-
-#: libraries/messages.inc.php:32 server_privileges.php:170
-#: server_privileges.php:515
-msgid "Allows creating, dropping and renaming user accounts."
-msgstr "容許建立、刪除及重新命名使用者戶口."
-
-#: libraries/messages.inc.php:33 server_privileges.php:160
-#: server_privileges.php:164 server_privileges.php:487
-#: server_privileges.php:491
-msgid "Allows creating new views."
-msgstr "容許建立新的檢視."
-
-#: libraries/messages.inc.php:34 server_privileges.php:144
-#: server_privileges.php:467
-msgid "Allows deleting data."
-msgstr "容許刪除記錄."
-
-#: libraries/messages.inc.php:35 server_privileges.php:146
-#: server_privileges.php:478
-msgid "Allows dropping databases and tables."
-msgstr "容許刪除資料庫及資料表."
-
-#: libraries/messages.inc.php:36 server_privileges.php:478
-msgid "Allows dropping tables."
-msgstr "容許刪除資料表."
-
-#: libraries/messages.inc.php:37 server_privileges.php:161
-#: server_privileges.php:495
-msgid "Allows to set up events for the event scheduler"
-msgstr ""
-
-#: libraries/messages.inc.php:38 server_privileges.php:171
-#: server_privileges.php:483
-msgid "Allows executing stored routines."
-msgstr "容許執行儲存程序."
-
-#: libraries/messages.inc.php:39 server_privileges.php:150
-#: server_privileges.php:470
-msgid "Allows importing data from and exporting data into files."
-msgstr "容許輸入及輸出數據到檔案."
-
-#: libraries/messages.inc.php:40 server_privileges.php:501
-msgid ""
-"Allows adding users and privileges without reloading the privilege tables."
-msgstr "容許新增使用者及權限而無需重新讀取權限資料表."
-
-#: libraries/messages.inc.php:41 server_privileges.php:152
-#: server_privileges.php:477
-msgid "Allows creating and dropping indexes."
-msgstr "容許建立及刪除索引."
-
-#: libraries/messages.inc.php:42 server_privileges.php:142
-#: server_privileges.php:403 server_privileges.php:465
-msgid "Allows inserting and replacing data."
-msgstr "容許新增及取代數據."
-
-#: libraries/messages.inc.php:43 server_privileges.php:157
-#: server_privileges.php:510
-msgid "Allows locking tables for the current thread."
-msgstr "容許鎖上現時連線之資料表."
-
-#: libraries/messages.inc.php:44 server_privileges.php:607
-#: server_privileges.php:609
-msgid "Limits the number of new connections the user may open per hour."
-msgstr "限制每小時使用者開啟新連線的數目."
-
-#: libraries/messages.inc.php:45 server_privileges.php:595
-#: server_privileges.php:597
-msgid "Limits the number of queries the user may send to the server per hour."
-msgstr "限制每小時使用者查詢的數目."
-
-#: libraries/messages.inc.php:46 server_privileges.php:601
-#: server_privileges.php:603
-msgid ""
-"Limits the number of commands that change any table or database the user may "
-"execute per hour."
-msgstr "限制每小時使用者更改資料表及數據表之指令的數目."
-
-#: libraries/messages.inc.php:47 server_privileges.php:613
-#: server_privileges.php:615
-msgid "Limits the number of simultaneous connections the user may have."
-msgstr "限制每個使用者之同步連線."
-
-#: libraries/messages.inc.php:48 server_privileges.php:149
-#: server_privileges.php:505
-msgid "Allows viewing processes of all users"
-msgstr ""
-
-#: libraries/messages.inc.php:49 server_privileges.php:151
-#: server_privileges.php:409 server_privileges.php:511
-msgid "Has no effect in this MySQL version."
-msgstr "於本 MySQL 版本無效."
-
-#: libraries/messages.inc.php:50 server_privileges.php:147
-#: server_privileges.php:506
-msgid "Allows reloading server settings and flushing the server's caches."
-msgstr "容許重新讀取伺服器設定及強行更新伺服器快取記憶."
-
-#: libraries/messages.inc.php:51 server_privileges.php:159
-#: server_privileges.php:513
-msgid "Allows the user to ask where the slaves / masters are."
-msgstr "容許用戶查詢 slaves / masters 在何處."
-
-#: libraries/messages.inc.php:52 server_privileges.php:158
-#: server_privileges.php:514
-msgid "Needed for the replication slaves."
-msgstr "需要複製的 slaves."
-
-#: libraries/messages.inc.php:53 server_privileges.php:141
-#: server_privileges.php:400 server_privileges.php:464
-msgid "Allows reading data."
-msgstr "容許讀取數據."
-
-#: libraries/messages.inc.php:54 server_privileges.php:154
-#: server_privileges.php:508
-msgid "Gives access to the complete list of databases."
-msgstr "可讀取整個資料庫清單."
-
-#: libraries/messages.inc.php:55 server_privileges.php:165
-#: server_privileges.php:167 server_privileges.php:480
-msgid "Allows performing SHOW CREATE VIEW queries."
-msgstr "容許執行 SHOW CREATE VIEW 查詢."
-
-#: libraries/messages.inc.php:56 server_privileges.php:148
-#: server_privileges.php:507
-msgid "Allows shutting down the server."
-msgstr "容許停止伺服器."
-
-#: libraries/messages.inc.php:57 server_privileges.php:155
-#: server_privileges.php:504
-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/messages.inc.php:58 server_privileges.php:162
-#: server_privileges.php:496
-#, fuzzy
-msgid "Allows creating and dropping triggers"
-msgstr "容許建立及刪除索引."
-
-#: libraries/messages.inc.php:59 server_privileges.php:143
-#: server_privileges.php:406 server_privileges.php:466
-msgid "Allows changing data."
-msgstr "容許更新數據."
-
-#: libraries/messages.inc.php:60 server_privileges.php:221
-msgid "No privileges."
-msgstr "沒有權限."
-
-#: libraries/messages.inc.php:62
-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/messages.inc.php:63
-msgid "The number of transactions that used the temporary binary log cache."
-msgstr ""
-
-#: libraries/messages.inc.php:64
-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 "
-"to increase the tmp_table_size value to cause temporary tables to be memory-"
-"based instead of disk-based."
-msgstr ""
-
-#: libraries/messages.inc.php:65
-msgid "How many temporary files mysqld has created."
-msgstr ""
-
-#: libraries/messages.inc.php:66
-msgid ""
-"The number of in-memory temporary tables created automatically by the server "
-"while executing statements."
-msgstr ""
-
-#: libraries/messages.inc.php:67
-msgid ""
-"The number of rows written with INSERT DELAYED for which some error occurred "
-"(probably duplicate key)."
-msgstr ""
-
-#: libraries/messages.inc.php:68
-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/messages.inc.php:69
-msgid "The number of INSERT DELAYED rows written."
-msgstr ""
-
-#: libraries/messages.inc.php:70
-msgid "The number of executed FLUSH statements."
-msgstr ""
-
-#: libraries/messages.inc.php:71
-msgid "The number of internal COMMIT statements."
-msgstr ""
-
-#: libraries/messages.inc.php:72
-msgid "The number of times a row was deleted from a table."
-msgstr ""
-
-#: libraries/messages.inc.php:73
-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/messages.inc.php:74
-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/messages.inc.php:75
-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/messages.inc.php:76
-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/messages.inc.php:77
-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/messages.inc.php:78
-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 "
-"probably have a lot of queries that require MySQL to scan whole tables or "
-"you have joins that don't use keys properly."
-msgstr ""
-
-#: libraries/messages.inc.php:79
-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 "
-"tables are not properly indexed or that your queries are not written to take "
-"advantage of the indexes you have."
-msgstr ""
-
-#: libraries/messages.inc.php:80
-msgid "The number of internal ROLLBACK statements."
-msgstr ""
-
-#: libraries/messages.inc.php:81
-msgid "The number of requests to update a row in a table."
-msgstr ""
-
-#: libraries/messages.inc.php:82
-msgid "The number of requests to insert a row in a table."
-msgstr ""
-
-#: libraries/messages.inc.php:83
-msgid "The number of pages containing data (dirty or clean)."
-msgstr ""
-
-#: libraries/messages.inc.php:84
-msgid "The number of pages currently dirty."
-msgstr ""
-
-#: libraries/messages.inc.php:85
-msgid "The number of buffer pool pages that have been requested to be flushed."
-msgstr ""
-
-#: libraries/messages.inc.php:86
-msgid "The number of free pages."
-msgstr ""
-
-#: libraries/messages.inc.php:87
-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/messages.inc.php:88
-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 "
-"be calculated as Innodb_buffer_pool_pages_total - "
-"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data."
-msgstr ""
-
-#: libraries/messages.inc.php:89
-msgid "Total size of buffer pool, in pages."
-msgstr ""
-
-#: libraries/messages.inc.php:90
-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/messages.inc.php:91
-msgid ""
-"The number of sequential read-aheads InnoDB initiated. This happens when "
-"InnoDB does a sequential full table scan."
-msgstr ""
-
-#: libraries/messages.inc.php:92
-msgid "The number of logical read requests InnoDB has done."
-msgstr ""
-
-#: libraries/messages.inc.php:93
-msgid ""
-"The number of logical reads that InnoDB could not satisfy from buffer pool "
-"and had to do a single-page read."
-msgstr ""
-
-#: libraries/messages.inc.php:94
-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 "
-"available, it's necessary to wait for pages to be flushed first. This "
-"counter counts instances of these waits. If the buffer pool size was set "
-"properly, this value should be small."
-msgstr ""
-
-#: libraries/messages.inc.php:95
-msgid "The number writes done to the InnoDB buffer pool."
-msgstr ""
-
-#: libraries/messages.inc.php:96
-msgid "The number of fsync() operations so far."
-msgstr ""
-
-#: libraries/messages.inc.php:97
-msgid "The current number of pending fsync() operations."
-msgstr ""
-
-#: libraries/messages.inc.php:98
-msgid "The current number of pending reads."
-msgstr ""
-
-#: libraries/messages.inc.php:99
-msgid "The current number of pending writes."
-msgstr ""
-
-#: libraries/messages.inc.php:100
-msgid "The amount of data read so far, in bytes."
-msgstr ""
-
-#: libraries/messages.inc.php:101
-msgid "The total number of data reads."
-msgstr ""
-
-#: libraries/messages.inc.php:102
-msgid "The total number of data writes."
-msgstr ""
-
-#: libraries/messages.inc.php:103
-msgid "The amount of data written so far, in bytes."
-msgstr ""
-
-#: libraries/messages.inc.php:104
-msgid "The number of pages that have been written for doublewrite operations."
-msgstr ""
-
-#: libraries/messages.inc.php:105
-msgid "The number of doublewrite operations that have been performed."
-msgstr ""
-
-#: libraries/messages.inc.php:106
-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/messages.inc.php:107
-msgid "The number of log write requests."
-msgstr ""
-
-#: libraries/messages.inc.php:108
-msgid "The number of physical writes to the log file."
-msgstr ""
-
-#: libraries/messages.inc.php:109
-msgid "The number of fsync() writes done to the log file."
-msgstr ""
-
-#: libraries/messages.inc.php:110
-msgid "The number of pending log file fsyncs."
-msgstr ""
-
-#: libraries/messages.inc.php:111
-msgid "Pending log file writes."
-msgstr ""
-
-#: libraries/messages.inc.php:112
-msgid "The number of bytes written to the log file."
-msgstr ""
-
-#: libraries/messages.inc.php:113
-msgid "The number of pages created."
-msgstr ""
-
-#: libraries/messages.inc.php:114
-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/messages.inc.php:115
-msgid "The number of pages read."
-msgstr ""
-
-#: libraries/messages.inc.php:116
-msgid "The number of pages written."
-msgstr ""
-
-#: libraries/messages.inc.php:117
-msgid "The number of row locks currently being waited for."
-msgstr ""
-
-#: libraries/messages.inc.php:118
-msgid "The average time to acquire a row lock, in milliseconds."
-msgstr ""
-
-#: libraries/messages.inc.php:119
-msgid "The total time spent in acquiring row locks, in milliseconds."
-msgstr ""
-
-#: libraries/messages.inc.php:120
-msgid "The maximum time to acquire a row lock, in milliseconds."
-msgstr ""
-
-#: libraries/messages.inc.php:121
-msgid "The number of times a row lock had to be waited for."
-msgstr ""
-
-#: libraries/messages.inc.php:122
-msgid "The number of rows deleted from InnoDB tables."
-msgstr ""
-
-#: libraries/messages.inc.php:123
-msgid "The number of rows inserted in InnoDB tables."
-msgstr ""
-
-#: libraries/messages.inc.php:124
-msgid "The number of rows read from InnoDB tables."
-msgstr ""
-
-#: libraries/messages.inc.php:125
-msgid "The number of rows updated in InnoDB tables."
-msgstr ""
-
-#: libraries/messages.inc.php:126
-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/messages.inc.php:127
-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/messages.inc.php:128
-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/messages.inc.php:129
-msgid "The number of requests to read a key block from the cache."
-msgstr ""
-
-#: libraries/messages.inc.php:130
-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/messages.inc.php:131
-msgid "The number of requests to write a key block to the cache."
-msgstr ""
-
-#: libraries/messages.inc.php:132
-msgid "The number of physical writes of a key block to disk."
-msgstr ""
-
-#: libraries/messages.inc.php:133
-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/messages.inc.php:134
-msgid "The number of rows waiting to be written in INSERT DELAYED queues."
-msgstr ""
-
-#: libraries/messages.inc.php:135
-msgid ""
-"The number of tables that have been opened. If opened tables is big, your "
-"table cache value is probably too small."
-msgstr ""
-
-#: libraries/messages.inc.php:136
-msgid "The number of files that are open."
-msgstr ""
-
-#: libraries/messages.inc.php:137
-msgid "The number of streams that are open (used mainly for logging)."
-msgstr ""
-
-#: libraries/messages.inc.php:138
-msgid "The number of tables that are open."
-msgstr ""
-
-#: libraries/messages.inc.php:139
-msgid "The number of free memory blocks in query cache."
-msgstr ""
-
-#: libraries/messages.inc.php:140
-msgid "The amount of free memory for query cache."
-msgstr ""
-
-#: libraries/messages.inc.php:141
-msgid "The number of cache hits."
-msgstr ""
-
-#: libraries/messages.inc.php:142
-msgid "The number of queries added to the cache."
-msgstr ""
-
-#: libraries/messages.inc.php:143
-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 "
-"cache size. The query cache uses a least recently used (LRU) strategy to "
-"decide which queries to remove from the cache."
-msgstr ""
-
-#: libraries/messages.inc.php:144
-msgid ""
-"The number of non-cached queries (not cachable, or not cached due to the "
-"query_cache_type setting)."
-msgstr ""
-
-#: libraries/messages.inc.php:145
-msgid "The number of queries registered in the cache."
-msgstr ""
-
-#: libraries/messages.inc.php:146
-msgid "The total number of blocks in the query cache."
-msgstr ""
-
-#: libraries/messages.inc.php:147
-msgctxt "$strShowStatusReset"
-msgid "Reset"
-msgstr "重設"
-
-#: libraries/messages.inc.php:148
-msgid "The status of failsafe replication (not yet implemented)."
-msgstr ""
-
-#: libraries/messages.inc.php:149
-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/messages.inc.php:150
-msgid "The number of joins that used a range search on a reference table."
-msgstr ""
-
-#: libraries/messages.inc.php:151
-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/messages.inc.php:152
-msgid ""
-"The number of joins that used ranges on the first table. (It's normally not "
-"critical even if this is big.)"
-msgstr ""
-
-#: libraries/messages.inc.php:153
-msgid "The number of joins that did a full scan of the first table."
-msgstr ""
-
-#: libraries/messages.inc.php:154
-msgid "The number of temporary tables currently open by the slave SQL thread."
-msgstr ""
-
-#: libraries/messages.inc.php:155
-msgid ""
-"Total (since startup) number of times the replication slave SQL thread has "
-"retried transactions."
-msgstr ""
-
-#: libraries/messages.inc.php:156
-msgid "This is ON if this server is a slave that is connected to a master."
-msgstr ""
-
-#: libraries/messages.inc.php:157
-msgid ""
-"The number of threads that have taken more than slow_launch_time seconds to "
-"create."
-msgstr ""
-
-#: libraries/messages.inc.php:158
-msgid ""
-"The number of queries that have taken more than long_query_time seconds."
-msgstr ""
-
-#: libraries/messages.inc.php:159
-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/messages.inc.php:160
-msgid "The number of sorts that were done with ranges."
-msgstr ""
-
-#: libraries/messages.inc.php:161
-msgid "The number of sorted rows."
-msgstr ""
-
-#: libraries/messages.inc.php:162
-msgid "The number of sorts that were done by scanning the table."
-msgstr ""
-
-#: libraries/messages.inc.php:163
-msgid "The number of times that a table lock was acquired immediately."
-msgstr ""
-
-#: libraries/messages.inc.php:164
-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 "
-"should first optimize your queries, and then either split your table or "
-"tables or use replication."
-msgstr ""
-
-#: libraries/messages.inc.php:165
-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/messages.inc.php:166
-msgid "The number of currently open connections."
-msgstr ""
-
-#: libraries/messages.inc.php:167
-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 "
-"doesn't give a notable performance improvement if you have a good thread "
-"implementation.)"
-msgstr ""
-
-#: libraries/messages.inc.php:168
-msgid "The number of threads that are not sleeping."
-msgstr ""
-
#: libraries/mult_submits.inc.php:76 libraries/tbl_properties.inc.php:513
#: tbl_structure.php:29 tbl_structure.php:153 tbl_structure.php:157
#: tbl_structure.php:473
@@ -4217,8 +3484,8 @@ msgstr ""
#: libraries/replication_gui.lib.php:55 libraries/replication_gui.lib.php:56
#: libraries/replication_gui.lib.php:249 libraries/replication_gui.lib.php:252
-#: libraries/replication_gui.lib.php:259 server_privileges.php:672
-#: server_privileges.php:675 server_privileges.php:682
+#: libraries/replication_gui.lib.php:259 server_privileges.php:711
+#: server_privileges.php:714 server_privileges.php:721
#: server_synchronize.php:1171
msgid "User name"
msgstr "使用者名稱"
@@ -4238,11 +3505,11 @@ msgid "Slave status"
msgstr "顯示 slave 狀態"
#: libraries/replication_gui.lib.php:114 libraries/sql_query_form.lib.php:445
-#: server_status.php:626 server_variables.php:52
+#: server_status.php:737 server_variables.php:52
msgid "Variable"
msgstr "資訊"
-#: libraries/replication_gui.lib.php:115 server_status.php:627
+#: libraries/replication_gui.lib.php:115 server_status.php:738
#: tbl_change.php:324 tbl_printview.php:370 tbl_select.php:139
#: tbl_structure.php:729
msgid "Value"
@@ -4262,41 +3529,58 @@ msgstr ""
msgid "Add slave replication user"
msgstr ""
-#: libraries/replication_gui.lib.php:254 server_privileges.php:677
+#: libraries/replication_gui.lib.php:254 server_privileges.php:716
msgid "Any user"
msgstr "任何使用者"
#: libraries/replication_gui.lib.php:255 libraries/replication_gui.lib.php:323
-#: libraries/replication_gui.lib.php:346 server_privileges.php:678
-#: server_privileges.php:745 server_privileges.php:769
-#: server_privileges.php:1889 server_privileges.php:1919
+#: libraries/replication_gui.lib.php:346 server_privileges.php:717
+#: server_privileges.php:784 server_privileges.php:808
+#: server_privileges.php:1928 server_privileges.php:1958
msgid "Use text field"
msgstr "文字輸入"
-#: libraries/replication_gui.lib.php:302 server_privileges.php:725
+#: libraries/replication_gui.lib.php:302 server_privileges.php:764
msgid "Any host"
msgstr "任何主機"
-#: libraries/replication_gui.lib.php:306 server_privileges.php:729
+#: libraries/replication_gui.lib.php:306 server_privileges.php:768
msgid "Local"
msgstr "本地"
-#: libraries/replication_gui.lib.php:312 server_privileges.php:734
+#: libraries/replication_gui.lib.php:312 server_privileges.php:773
msgid "This Host"
msgstr "指定主機"
-#: libraries/replication_gui.lib.php:318 server_privileges.php:740
+#: libraries/replication_gui.lib.php:318 server_privileges.php:779
msgid "Use Host Table"
msgstr "使用主機資料表"
-#: libraries/replication_gui.lib.php:331 server_privileges.php:753
+#: libraries/replication_gui.lib.php:331 server_privileges.php:792
msgid ""
"When Host table is used, this field is ignored and values stored in Host "
"table are used instead."
msgstr ""
-#: libraries/select_lang.lib.php:480 libraries/select_lang.lib.php:486
-#: libraries/select_lang.lib.php:492
+#. l10n: Text direction, use either ltr or rtl
+#: libraries/select_lang.lib.php:491
+msgid "ltr"
+msgstr "ltr"
+
+#: libraries/select_lang.lib.php:493
+msgid "Content of table __TABLE__"
+msgstr "資料表 __TABLE__ 內容"
+
+#: libraries/select_lang.lib.php:494
+msgid "(continued)"
+msgstr "(連續)"
+
+#: libraries/select_lang.lib.php:495
+msgid "Structure of table __TABLE__"
+msgstr "資料表 __TABLE__ 結構"
+
+#: libraries/select_lang.lib.php:500 libraries/select_lang.lib.php:506
+#: libraries/select_lang.lib.php:512
#, php-format
msgid "Unknown language: %1$s."
msgstr "不知名語言: %1$s."
@@ -4308,7 +3592,7 @@ msgid "Servers"
msgstr "伺服器"
#: libraries/server_links.inc.php:53 server_engines.php:112
-#: server_engines.php:116 server_status.php:304 test/theme.php:105
+#: server_engines.php:116 server_status.php:415 test/theme.php:105
msgid "Variables"
msgstr "資訊"
@@ -4321,7 +3605,7 @@ msgid "Engines"
msgstr "引擎"
#: libraries/server_links.inc.php:76 server_binlog.php:110
-#: server_status.php:253 test/theme.php:121
+#: server_status.php:364 test/theme.php:121
msgid "Binary log"
msgstr "二進制記錄"
@@ -4754,8 +4038,8 @@ msgstr "重設"
msgid "Protocol version"
msgstr "通訊協定版本"
-#: main.php:189 server_privileges.php:1350 server_privileges.php:1497
-#: server_privileges.php:1611 server_privileges.php:2029
+#: main.php:189 server_privileges.php:1389 server_privileges.php:1536
+#: server_privileges.php:1650 server_privileges.php:2068
#: server_processlist.php:54
msgid "User"
msgstr "使用者"
@@ -5129,7 +4413,7 @@ msgstr "%s 個資料庫已成功刪除."
msgid "Databases statistics"
msgstr "資料庫統計"
-#: server_databases.php:117 server_status.php:260
+#: server_databases.php:117 server_status.php:371
#: setup/lib/messages.inc.php:117
msgid "Tables"
msgstr "個資料表"
@@ -5148,6 +4432,16 @@ msgstr ""
msgid "Jump to database"
msgstr "沒有資料庫"
+#: server_databases.php:267
+msgid "Not replicated"
+msgstr ""
+
+#: server_databases.php:273
+#, fuzzy
+#| msgid "Replication"
+msgid "Replicated"
+msgstr "複製"
+
#: server_databases.php:289
#, php-format
msgid "Check privileges for database "%s"."
@@ -5179,142 +4473,327 @@ msgstr "儲存引擎"
msgid "View dump (schema) of databases"
msgstr "顯示資料庫概要 (schema)"
-#: server_privileges.php:263 server_privileges.php:264
+#: server_privileges.php:24 server_privileges.php:266
+msgid "Includes all privileges except GRANT."
+msgstr "包括所有權限除了授權 (GRNANT)."
+
+#: server_privileges.php:25 server_privileges.php:192
+#: server_privileges.php:515
+msgid "Allows altering the structure of existing tables."
+msgstr "容許修改現有資料表的結構."
+
+#: server_privileges.php:26 server_privileges.php:208
+#: server_privileges.php:521
+msgid "Allows altering and dropping stored routines."
+msgstr "容許修改及刪除儲存程序."
+
+#: server_privileges.php:27 server_privileges.php:184
+#: server_privileges.php:514
+msgid "Allows creating new databases and tables."
+msgstr "容許建立新資料庫及資料表."
+
+#: server_privileges.php:28 server_privileges.php:207
+#: server_privileges.php:520
+msgid "Allows creating stored routines."
+msgstr "容許建立儲存程序"
+
+#: server_privileges.php:29 server_privileges.php:514
+msgid "Allows creating new tables."
+msgstr "容許建立新資料表."
+
+#: server_privileges.php:30 server_privileges.php:195
+#: server_privileges.php:518
+msgid "Allows creating temporary tables."
+msgstr "容許建立暫時性資料表."
+
+#: server_privileges.php:31 server_privileges.php:209
+#: server_privileges.php:554
+msgid "Allows creating, dropping and renaming user accounts."
+msgstr "容許建立、刪除及重新命名使用者戶口."
+
+#: server_privileges.php:32 server_privileges.php:199
+#: server_privileges.php:203 server_privileges.php:526
+#: server_privileges.php:530
+msgid "Allows creating new views."
+msgstr "容許建立新的檢視."
+
+#: server_privileges.php:33 server_privileges.php:183
+#: server_privileges.php:506
+msgid "Allows deleting data."
+msgstr "容許刪除記錄."
+
+#: server_privileges.php:34 server_privileges.php:185
+#: server_privileges.php:517
+msgid "Allows dropping databases and tables."
+msgstr "容許刪除資料庫及資料表."
+
+#: server_privileges.php:35 server_privileges.php:517
+msgid "Allows dropping tables."
+msgstr "容許刪除資料表."
+
+#: server_privileges.php:36 server_privileges.php:200
+#: server_privileges.php:534
+msgid "Allows to set up events for the event scheduler"
+msgstr ""
+
+#: server_privileges.php:37 server_privileges.php:210
+#: server_privileges.php:522
+msgid "Allows executing stored routines."
+msgstr "容許執行儲存程序."
+
+#: server_privileges.php:38 server_privileges.php:189
+#: server_privileges.php:509
+msgid "Allows importing data from and exporting data into files."
+msgstr "容許輸入及輸出數據到檔案."
+
+#: server_privileges.php:39 server_privileges.php:540
+msgid ""
+"Allows adding users and privileges without reloading the privilege tables."
+msgstr "容許新增使用者及權限而無需重新讀取權限資料表."
+
+#: server_privileges.php:40 server_privileges.php:191
+#: server_privileges.php:516
+msgid "Allows creating and dropping indexes."
+msgstr "容許建立及刪除索引."
+
+#: server_privileges.php:41 server_privileges.php:181
+#: server_privileges.php:442 server_privileges.php:504
+msgid "Allows inserting and replacing data."
+msgstr "容許新增及取代數據."
+
+#: server_privileges.php:42 server_privileges.php:196
+#: server_privileges.php:549
+msgid "Allows locking tables for the current thread."
+msgstr "容許鎖上現時連線之資料表."
+
+#: server_privileges.php:43 server_privileges.php:646
+#: server_privileges.php:648
+msgid "Limits the number of new connections the user may open per hour."
+msgstr "限制每小時使用者開啟新連線的數目."
+
+#: server_privileges.php:44 server_privileges.php:634
+#: server_privileges.php:636
+msgid "Limits the number of queries the user may send to the server per hour."
+msgstr "限制每小時使用者查詢的數目."
+
+#: server_privileges.php:45 server_privileges.php:640
+#: server_privileges.php:642
+msgid ""
+"Limits the number of commands that change any table or database the user may "
+"execute per hour."
+msgstr "限制每小時使用者更改資料表及數據表之指令的數目."
+
+#: server_privileges.php:46 server_privileges.php:652
+#: server_privileges.php:654
+msgid "Limits the number of simultaneous connections the user may have."
+msgstr "限制每個使用者之同步連線."
+
+#: server_privileges.php:47 server_privileges.php:188
+#: server_privileges.php:544
+msgid "Allows viewing processes of all users"
+msgstr ""
+
+#: server_privileges.php:48 server_privileges.php:190
+#: server_privileges.php:448 server_privileges.php:550
+msgid "Has no effect in this MySQL version."
+msgstr "於本 MySQL 版本無效."
+
+#: server_privileges.php:49 server_privileges.php:186
+#: server_privileges.php:545
+msgid "Allows reloading server settings and flushing the server's caches."
+msgstr "容許重新讀取伺服器設定及強行更新伺服器快取記憶."
+
+#: server_privileges.php:50 server_privileges.php:198
+#: server_privileges.php:552
+msgid "Allows the user to ask where the slaves / masters are."
+msgstr "容許用戶查詢 slaves / masters 在何處."
+
+#: server_privileges.php:51 server_privileges.php:197
+#: server_privileges.php:553
+msgid "Needed for the replication slaves."
+msgstr "需要複製的 slaves."
+
+#: server_privileges.php:52 server_privileges.php:180
+#: server_privileges.php:439 server_privileges.php:503
+msgid "Allows reading data."
+msgstr "容許讀取數據."
+
+#: server_privileges.php:53 server_privileges.php:193
+#: server_privileges.php:547
+msgid "Gives access to the complete list of databases."
+msgstr "可讀取整個資料庫清單."
+
+#: server_privileges.php:54 server_privileges.php:204
+#: server_privileges.php:206 server_privileges.php:519
+msgid "Allows performing SHOW CREATE VIEW queries."
+msgstr "容許執行 SHOW CREATE VIEW 查詢."
+
+#: server_privileges.php:55 server_privileges.php:187
+#: server_privileges.php:546
+msgid "Allows shutting down the server."
+msgstr "容許停止伺服器."
+
+#: server_privileges.php:56 server_privileges.php:194
+#: server_privileges.php:543
+msgid ""
+"Allows connecting, even if maximum number of connections is reached; "
+"required for most administrative operations like setting global variables or "
+"killing threads of other users."
+msgstr ""
+"容許連線, 就算超過了最大連線限制; 用於最高系統管理如設定整體權限或中止其他使"
+"用者指令."
+
+#: server_privileges.php:57 server_privileges.php:201
+#: server_privileges.php:535
+#, fuzzy
+msgid "Allows creating and dropping triggers"
+msgstr "容許建立及刪除索引."
+
+#: server_privileges.php:58 server_privileges.php:182
+#: server_privileges.php:445 server_privileges.php:505
+msgid "Allows changing data."
+msgstr "容許更新數據."
+
+#: server_privileges.php:59 server_privileges.php:260
+msgid "No privileges."
+msgstr "沒有權限."
+
+#: server_privileges.php:302 server_privileges.php:303
#, fuzzy
#| msgid "None"
msgctxt "None privileges"
msgid "None"
msgstr "不適用"
-#: server_privileges.php:392 server_privileges.php:527
-#: server_privileges.php:1679 server_privileges.php:1685
+#: server_privileges.php:431 server_privileges.php:566
+#: server_privileges.php:1718 server_privileges.php:1724
msgid "Table-specific privileges"
msgstr "指定資料表權限"
-#: server_privileges.php:393 server_privileges.php:535
-#: server_privileges.php:1501
+#: server_privileges.php:432 server_privileges.php:574
+#: server_privileges.php:1540
msgid " Note: MySQL privilege names are expressed in English "
msgstr "注意: MySQL 權限名稱會以英語顯示"
-#: server_privileges.php:524 server_privileges.php:1500
+#: server_privileges.php:563 server_privileges.php:1539
msgid "Global privileges"
msgstr "整體權限"
-#: server_privileges.php:526 server_privileges.php:1679
+#: server_privileges.php:565 server_privileges.php:1718
msgid "Database-specific privileges"
msgstr "指定資料庫權限"
-#: server_privileges.php:571
+#: server_privileges.php:610
msgid "Administration"
msgstr "系統管理"
-#: server_privileges.php:591
+#: server_privileges.php:630
msgid "Resource limits"
msgstr "資源限制"
-#: server_privileges.php:592
+#: server_privileges.php:631
msgid "Note: Setting these options to 0 (zero) removes the limit."
msgstr "註: 設定這些選項為 0 (零) 可解除限制."
-#: server_privileges.php:669
+#: server_privileges.php:708
msgid "Login Information"
msgstr "登入資訊"
-#: server_privileges.php:763
+#: server_privileges.php:802
msgid "Do not change the password"
msgstr "請不要更改密碼"
-#: server_privileges.php:804 server_privileges.php:2166
+#: server_privileges.php:843 server_privileges.php:2205
#, fuzzy
#| msgid "No user(s) found."
msgid "No user found."
msgstr "找不到使用者"
-#: server_privileges.php:848
+#: server_privileges.php:887
#, php-format
msgid "The user %s already exists!"
msgstr "使用者 %s 己存在!"
-#: server_privileges.php:931
+#: server_privileges.php:970
msgid "You have added a new user."
msgstr "您已新增了一個新使用者."
-#: server_privileges.php:1152
+#: server_privileges.php:1191
#, php-format
msgid "You have updated the privileges for %s."
msgstr "您已經更新了 %s 的權限."
-#: server_privileges.php:1176
+#: server_privileges.php:1215
#, php-format
msgid "You have revoked the privileges for %s"
msgstr "您已移除這位使用者的權限: %s"
-#: server_privileges.php:1212
+#: server_privileges.php:1251
#, php-format
msgid "The password for %s was changed successfully."
msgstr "%s 的密碼已成功更改."
-#: server_privileges.php:1232
+#: server_privileges.php:1271
#, php-format
msgid "Deleting %s"
msgstr "刪除 %s"
-#: server_privileges.php:1243
+#: server_privileges.php:1282
msgid "No users selected for deleting!"
msgstr "並未選擇需要刪除之使用者!"
-#: server_privileges.php:1246
+#: server_privileges.php:1285
msgid "Reloading the privileges"
msgstr "重新讀取權限"
-#: server_privileges.php:1261
+#: server_privileges.php:1300
msgid "The selected users have been deleted successfully."
msgstr "選擇的使用者已成功刪除."
-#: server_privileges.php:1296
+#: server_privileges.php:1335
msgid "The privileges were reloaded successfully."
msgstr "權限已成功重新讀取."
-#: server_privileges.php:1324 server_privileges.php:1610
+#: server_privileges.php:1363 server_privileges.php:1649
msgid "Edit Privileges"
msgstr "編輯權限"
-#: server_privileges.php:1333
+#: server_privileges.php:1372
msgid "Revoke"
msgstr "移除"
-#: server_privileges.php:1365
+#: server_privileges.php:1404
msgid "User overview"
msgstr "使用者一覽"
-#: server_privileges.php:1502 server_privileges.php:1684
-#: server_privileges.php:2033
+#: server_privileges.php:1541 server_privileges.php:1723
+#: server_privileges.php:2072
msgid "Grant"
msgstr "授權"
-#: server_privileges.php:1521 server_privileges.php:2123
+#: server_privileges.php:1560 server_privileges.php:2162
msgid "Any"
msgstr "任何"
-#: server_privileges.php:1570 server_privileges.php:1594
-#: server_privileges.php:1988 server_privileges.php:2177
+#: server_privileges.php:1609 server_privileges.php:1633
+#: server_privileges.php:2027 server_privileges.php:2216
msgid "Add a new User"
msgstr "新增使用者"
-#: server_privileges.php:1575
+#: server_privileges.php:1614
msgid "Remove selected users"
msgstr "移除已選擇使用者"
-#: server_privileges.php:1578
+#: server_privileges.php:1617
msgid "Revoke all active privileges from the users and delete them afterwards."
msgstr "廢除使用者所有有效之權限並刪除."
-#: server_privileges.php:1579 server_privileges.php:1580
-#: server_privileges.php:1581
+#: server_privileges.php:1618 server_privileges.php:1619
+#: server_privileges.php:1620
msgid "Drop the databases that have the same names as the users."
msgstr "刪除與使用者相同名稱之資料庫."
-#: server_privileges.php:1597
+#: server_privileges.php:1636
#, php-format
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
@@ -5326,91 +4805,91 @@ msgstr ""
"表, 資料表內容將可能與實際使用者情況有異. 在這情況下, 您應在繼續前 %s重新載"
"入%s 權限資料表."
-#: server_privileges.php:1645
+#: server_privileges.php:1684
msgid "The selected user was not found in the privilege table."
msgstr "選擇的使用者在權限資料表內找不到."
-#: server_privileges.php:1685
+#: server_privileges.php:1724
msgid "Column-specific privileges"
msgstr "指定欄位權限"
-#: server_privileges.php:1886
+#: server_privileges.php:1925
msgid "Add privileges on the following database"
msgstr "於以下資料庫加入權限"
-#: server_privileges.php:1904
+#: server_privileges.php:1943
msgid "Wildcards % and _ should be escaped with a \\ to use them literally"
msgstr "萬用符號 _ 及 % 應正確地加入 \\ "
-#: server_privileges.php:1907
+#: server_privileges.php:1946
msgid "Add privileges on the following table"
msgstr "於以下資料表加入權限"
-#: server_privileges.php:1964
+#: server_privileges.php:2003
msgid "Change Login Information / Copy User"
msgstr "更改登入資訊 / 複製使用者"
-#: server_privileges.php:1967
+#: server_privileges.php:2006
msgid "Create a new user with the same privileges and ..."
msgstr "建立新使用者及使用相同之權限, 及 ..."
-#: server_privileges.php:1969
+#: server_privileges.php:2008
msgid "... keep the old one."
msgstr "... 保留舊使用者."
-#: server_privileges.php:1970
+#: server_privileges.php:2009
msgid " ... delete the old one from the user tables."
msgstr " ... 刪除舊使用者."
-#: server_privileges.php:1971
+#: server_privileges.php:2010
msgid ""
" ... revoke all active privileges from the old one and delete it afterwards."
msgstr " ... 廢除所有舊使用者有效之權限並刪除."
-#: server_privileges.php:1972
+#: server_privileges.php:2011
msgid ""
" ... delete the old one from the user tables and reload the privileges "
"afterwards."
msgstr " ... 刪除舊使用者及重新讀取權限資料表."
-#: server_privileges.php:1994
+#: server_privileges.php:2033
msgid "Database for user"
msgstr ""
-#: server_privileges.php:1998
+#: server_privileges.php:2037
#, fuzzy
#| msgid "None"
msgctxt "Create none database for user"
msgid "None"
msgstr "不適用"
-#: server_privileges.php:1999
+#: server_privileges.php:2038
msgid "Create database with same name and grant all privileges"
msgstr ""
-#: server_privileges.php:2000
+#: server_privileges.php:2039
msgid "Grant all privileges on wildcard name (username\\_%)"
msgstr ""
-#: server_privileges.php:2003
+#: server_privileges.php:2042
#, fuzzy, php-format
msgid "Grant all privileges on database "%s""
msgstr "查詢資料庫 "%s" 之權限."
-#: server_privileges.php:2026
+#: server_privileges.php:2065
#, php-format
msgid "Users having access to "%s""
msgstr "可讀取 "%s" 之使用者"
-#: server_privileges.php:2134
+#: server_privileges.php:2173
msgid "global"
msgstr "整體"
-#: server_privileges.php:2136
+#: server_privileges.php:2175
msgid "database-specific"
msgstr "指定資料庫"
-#: server_privileges.php:2138
+#: server_privileges.php:2177
msgid "wildcard"
msgstr "萬用字元"
@@ -5456,7 +4935,7 @@ msgstr ""
msgid "This server is configured as master in a replication process."
msgstr ""
-#: server_replication.php:184 server_status.php:281
+#: server_replication.php:184 server_status.php:392
#, fuzzy
msgid "Show master status"
msgstr "顯示 slave 狀態"
@@ -5595,168 +5074,699 @@ msgid ""
"like to configure it?"
msgstr ""
+#: server_status.php:40
+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 ""
+
+#: server_status.php:41
+msgid "The number of transactions that used the temporary binary log cache."
+msgstr ""
+
+#: server_status.php:42
+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 "
+"to increase the tmp_table_size value to cause temporary tables to be memory-"
+"based instead of disk-based."
+msgstr ""
+
+#: server_status.php:43
+msgid "How many temporary files mysqld has created."
+msgstr ""
+
+#: server_status.php:44
+msgid ""
+"The number of in-memory temporary tables created automatically by the server "
+"while executing statements."
+msgstr ""
+
+#: server_status.php:45
+msgid ""
+"The number of rows written with INSERT DELAYED for which some error occurred "
+"(probably duplicate key)."
+msgstr ""
+
#: server_status.php:46
+msgid ""
+"The number of INSERT DELAYED handler threads in use. Every different table "
+"on which one uses INSERT DELAYED gets its own thread."
+msgstr ""
+
+#: server_status.php:47
+msgid "The number of INSERT DELAYED rows written."
+msgstr ""
+
+#: server_status.php:48
+msgid "The number of executed FLUSH statements."
+msgstr ""
+
+#: server_status.php:49
+msgid "The number of internal COMMIT statements."
+msgstr ""
+
+#: server_status.php:50
+msgid "The number of times a row was deleted from a table."
+msgstr ""
+
+#: server_status.php:51
+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 ""
+
+#: server_status.php:52
+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 ""
+
+#: server_status.php:53
+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 ""
+
+#: server_status.php:54
+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 ""
+
+#: server_status.php:55
+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 ""
+
+#: server_status.php:56
+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 "
+"probably have a lot of queries that require MySQL to scan whole tables or "
+"you have joins that don't use keys properly."
+msgstr ""
+
+#: server_status.php:57
+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 "
+"tables are not properly indexed or that your queries are not written to take "
+"advantage of the indexes you have."
+msgstr ""
+
+#: server_status.php:58
+msgid "The number of internal ROLLBACK statements."
+msgstr ""
+
+#: server_status.php:59
+msgid "The number of requests to update a row in a table."
+msgstr ""
+
+#: server_status.php:60
+msgid "The number of requests to insert a row in a table."
+msgstr ""
+
+#: server_status.php:61
+msgid "The number of pages containing data (dirty or clean)."
+msgstr ""
+
+#: server_status.php:62
+msgid "The number of pages currently dirty."
+msgstr ""
+
+#: server_status.php:63
+msgid "The number of buffer pool pages that have been requested to be flushed."
+msgstr ""
+
+#: server_status.php:64
+msgid "The number of free pages."
+msgstr ""
+
+#: server_status.php:65
+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 ""
+
+#: server_status.php:66
+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 "
+"be calculated as Innodb_buffer_pool_pages_total - "
+"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data."
+msgstr ""
+
+#: server_status.php:67
+msgid "Total size of buffer pool, in pages."
+msgstr ""
+
+#: server_status.php:68
+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 ""
+
+#: server_status.php:69
+msgid ""
+"The number of sequential read-aheads InnoDB initiated. This happens when "
+"InnoDB does a sequential full table scan."
+msgstr ""
+
+#: server_status.php:70
+msgid "The number of logical read requests InnoDB has done."
+msgstr ""
+
+#: server_status.php:71
+msgid ""
+"The number of logical reads that InnoDB could not satisfy from buffer pool "
+"and had to do a single-page read."
+msgstr ""
+
+#: server_status.php:72
+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 "
+"available, it's necessary to wait for pages to be flushed first. This "
+"counter counts instances of these waits. If the buffer pool size was set "
+"properly, this value should be small."
+msgstr ""
+
+#: server_status.php:73
+msgid "The number writes done to the InnoDB buffer pool."
+msgstr ""
+
+#: server_status.php:74
+msgid "The number of fsync() operations so far."
+msgstr ""
+
+#: server_status.php:75
+msgid "The current number of pending fsync() operations."
+msgstr ""
+
+#: server_status.php:76
+msgid "The current number of pending reads."
+msgstr ""
+
+#: server_status.php:77
+msgid "The current number of pending writes."
+msgstr ""
+
+#: server_status.php:78
+msgid "The amount of data read so far, in bytes."
+msgstr ""
+
+#: server_status.php:79
+msgid "The total number of data reads."
+msgstr ""
+
+#: server_status.php:80
+msgid "The total number of data writes."
+msgstr ""
+
+#: server_status.php:81
+msgid "The amount of data written so far, in bytes."
+msgstr ""
+
+#: server_status.php:82
+msgid "The number of pages that have been written for doublewrite operations."
+msgstr ""
+
+#: server_status.php:83
+msgid "The number of doublewrite operations that have been performed."
+msgstr ""
+
+#: server_status.php:84
+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 ""
+
+#: server_status.php:85
+msgid "The number of log write requests."
+msgstr ""
+
+#: server_status.php:86
+msgid "The number of physical writes to the log file."
+msgstr ""
+
+#: server_status.php:87
+msgid "The number of fsync() writes done to the log file."
+msgstr ""
+
+#: server_status.php:88
+msgid "The number of pending log file fsyncs."
+msgstr ""
+
+#: server_status.php:89
+msgid "Pending log file writes."
+msgstr ""
+
+#: server_status.php:90
+msgid "The number of bytes written to the log file."
+msgstr ""
+
+#: server_status.php:91
+msgid "The number of pages created."
+msgstr ""
+
+#: server_status.php:92
+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 ""
+
+#: server_status.php:93
+msgid "The number of pages read."
+msgstr ""
+
+#: server_status.php:94
+msgid "The number of pages written."
+msgstr ""
+
+#: server_status.php:95
+msgid "The number of row locks currently being waited for."
+msgstr ""
+
+#: server_status.php:96
+msgid "The average time to acquire a row lock, in milliseconds."
+msgstr ""
+
+#: server_status.php:97
+msgid "The total time spent in acquiring row locks, in milliseconds."
+msgstr ""
+
+#: server_status.php:98
+msgid "The maximum time to acquire a row lock, in milliseconds."
+msgstr ""
+
+#: server_status.php:99
+msgid "The number of times a row lock had to be waited for."
+msgstr ""
+
+#: server_status.php:100
+msgid "The number of rows deleted from InnoDB tables."
+msgstr ""
+
+#: server_status.php:101
+msgid "The number of rows inserted in InnoDB tables."
+msgstr ""
+
+#: server_status.php:102
+msgid "The number of rows read from InnoDB tables."
+msgstr ""
+
+#: server_status.php:103
+msgid "The number of rows updated in InnoDB tables."
+msgstr ""
+
+#: server_status.php:104
+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 ""
+
+#: server_status.php:105
+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 ""
+
+#: server_status.php:106
+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 ""
+
+#: server_status.php:107
+msgid "The number of requests to read a key block from the cache."
+msgstr ""
+
+#: server_status.php:108
+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 ""
+
+#: server_status.php:109
+msgid "The number of requests to write a key block to the cache."
+msgstr ""
+
+#: server_status.php:110
+msgid "The number of physical writes of a key block to disk."
+msgstr ""
+
+#: server_status.php:111
+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 ""
+
+#: server_status.php:112
+msgid "The number of rows waiting to be written in INSERT DELAYED queues."
+msgstr ""
+
+#: server_status.php:113
+msgid ""
+"The number of tables that have been opened. If opened tables is big, your "
+"table cache value is probably too small."
+msgstr ""
+
+#: server_status.php:114
+msgid "The number of files that are open."
+msgstr ""
+
+#: server_status.php:115
+msgid "The number of streams that are open (used mainly for logging)."
+msgstr ""
+
+#: server_status.php:116
+msgid "The number of tables that are open."
+msgstr ""
+
+#: server_status.php:117
+msgid "The number of free memory blocks in query cache."
+msgstr ""
+
+#: server_status.php:118
+msgid "The amount of free memory for query cache."
+msgstr ""
+
+#: server_status.php:119
+msgid "The number of cache hits."
+msgstr ""
+
+#: server_status.php:120
+msgid "The number of queries added to the cache."
+msgstr ""
+
+#: server_status.php:121
+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 "
+"cache size. The query cache uses a least recently used (LRU) strategy to "
+"decide which queries to remove from the cache."
+msgstr ""
+
+#: server_status.php:122
+msgid ""
+"The number of non-cached queries (not cachable, or not cached due to the "
+"query_cache_type setting)."
+msgstr ""
+
+#: server_status.php:123
+msgid "The number of queries registered in the cache."
+msgstr ""
+
+#: server_status.php:124
+msgid "The total number of blocks in the query cache."
+msgstr ""
+
+#: server_status.php:125
+msgctxt "$strShowStatusReset"
+msgid "Reset"
+msgstr "重設"
+
+#: server_status.php:126
+msgid "The status of failsafe replication (not yet implemented)."
+msgstr ""
+
+#: server_status.php:127
+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 ""
+
+#: server_status.php:128
+msgid "The number of joins that used a range search on a reference table."
+msgstr ""
+
+#: server_status.php:129
+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 ""
+
+#: server_status.php:130
+msgid ""
+"The number of joins that used ranges on the first table. (It's normally not "
+"critical even if this is big.)"
+msgstr ""
+
+#: server_status.php:131
+msgid "The number of joins that did a full scan of the first table."
+msgstr ""
+
+#: server_status.php:132
+msgid "The number of temporary tables currently open by the slave SQL thread."
+msgstr ""
+
+#: server_status.php:133
+msgid ""
+"Total (since startup) number of times the replication slave SQL thread has "
+"retried transactions."
+msgstr ""
+
+#: server_status.php:134
+msgid "This is ON if this server is a slave that is connected to a master."
+msgstr ""
+
+#: server_status.php:135
+msgid ""
+"The number of threads that have taken more than slow_launch_time seconds to "
+"create."
+msgstr ""
+
+#: server_status.php:136
+msgid ""
+"The number of queries that have taken more than long_query_time seconds."
+msgstr ""
+
+#: server_status.php:137
+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 ""
+
+#: server_status.php:138
+msgid "The number of sorts that were done with ranges."
+msgstr ""
+
+#: server_status.php:139
+msgid "The number of sorted rows."
+msgstr ""
+
+#: server_status.php:140
+msgid "The number of sorts that were done by scanning the table."
+msgstr ""
+
+#: server_status.php:141
+msgid "The number of times that a table lock was acquired immediately."
+msgstr ""
+
+#: server_status.php:142
+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 "
+"should first optimize your queries, and then either split your table or "
+"tables or use replication."
+msgstr ""
+
+#: server_status.php:143
+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 ""
+
+#: server_status.php:144
+msgid "The number of currently open connections."
+msgstr ""
+
+#: server_status.php:145
+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 "
+"doesn't give a notable performance improvement if you have a good thread "
+"implementation.)"
+msgstr ""
+
+#: server_status.php:146
+msgid "The number of threads that are not sleeping."
+msgstr ""
+
+#: server_status.php:157
msgid "Runtime Information"
msgstr "運行資訊"
-#: server_status.php:250
+#: server_status.php:361
msgid "Handler"
msgstr "操作者"
-#: server_status.php:251
+#: server_status.php:362
msgid "Query cache"
msgstr "查詢快取"
-#: server_status.php:252
+#: server_status.php:363
msgid "Threads"
msgstr "線程"
-#: server_status.php:254
+#: server_status.php:365
msgid "Temporary data"
msgstr "暫存資料"
-#: server_status.php:255
+#: server_status.php:366
msgid "Delayed inserts"
msgstr "延遲插入"
-#: server_status.php:256
+#: server_status.php:367
msgid "Key cache"
msgstr "鍵快取"
-#: server_status.php:257
+#: server_status.php:368
msgid "Joins"
msgstr "結合"
-#: server_status.php:259
+#: server_status.php:370
msgid "Sorting"
msgstr "排序"
-#: server_status.php:261
+#: server_status.php:372
msgid "Transaction coordinator"
msgstr "交易協調器"
-#: server_status.php:271
+#: server_status.php:382
msgid "Flush (close) all tables"
msgstr "強迫更新 (關閉) 所有資料表"
-#: server_status.php:273
+#: server_status.php:384
msgid "Show open tables"
msgstr "顯示開啟資料表"
-#: server_status.php:278
+#: server_status.php:389
msgid "Show slave hosts"
msgstr "顯示 slave 主機"
-#: server_status.php:284
+#: server_status.php:395
msgid "Show slave status"
msgstr "顯示 slave 狀態"
-#: server_status.php:289
+#: server_status.php:400
msgid "Flush query cache"
msgstr "強迫更新語法快取"
-#: server_status.php:294
+#: server_status.php:405
msgid "Show processes"
msgstr "顯示程序 (Process)"
-#: server_status.php:344
+#: server_status.php:455
#, fuzzy
#| msgid "Reset"
msgctxt "for Show status"
msgid "Reset"
msgstr "重設"
-#: server_status.php:350
+#: server_status.php:461
#, php-format
msgid "This MySQL server has been running for %s. It started up on %s."
msgstr "這 MySQL 伺服器已啟動了 %s. 伺服器於 %s 啟動."
-#: server_status.php:360
+#: server_status.php:471
msgid ""
"This MySQL server works as master and slave in replication"
"b> process."
msgstr ""
-#: server_status.php:362
+#: server_status.php:473
msgid "This MySQL server works as master in replication process."
msgstr ""
-#: server_status.php:364
+#: server_status.php:475
msgid "This MySQL server works as slave in replication process."
msgstr ""
-#: server_status.php:366
+#: server_status.php:477
msgid ""
"For further information about replication status on the server, please visit "
"the replication section."
msgstr ""
-#: server_status.php:383
+#: server_status.php:494
msgid ""
"Server traffic: These tables show the network traffic statistics of "
"this MySQL server since its startup."
msgstr ""
"伺服器流量: 這些表顯示了此 MySQL 伺服器自啟動以來的網絡流量統計。"
-#: server_status.php:388
+#: server_status.php:499
msgid "Traffic"
msgstr "流量"
-#: server_status.php:388
+#: server_status.php:499
msgid ""
"On a busy server, the byte counters may overrun, so those statistics as "
"reported by the MySQL server may be incorrect."
msgstr "於較繁忙的伺服器, 計算器可能會溢出, 令 MySQL 伺服器提供之統計有誤差."
-#: server_status.php:389 server_status.php:434 server_status.php:497
-#: server_status.php:555
+#: server_status.php:500 server_status.php:545 server_status.php:608
+#: server_status.php:666
msgid "per hour"
msgstr "每小時"
-#: server_status.php:394
+#: server_status.php:505
msgid "Received"
msgstr "接收"
-#: server_status.php:404
+#: server_status.php:515
msgid "Sent"
msgstr "送出"
-#: server_status.php:433
+#: server_status.php:544
msgid "Connections"
msgstr "連線"
-#: server_status.php:440
+#: server_status.php:551
msgid "max. concurrent connections"
msgstr "最大連線數目"
-#: server_status.php:447
+#: server_status.php:558
msgid "Failed attempts"
msgstr "嘗試失敗"
-#: server_status.php:461
+#: server_status.php:572
msgid "Aborted"
msgstr "取消"
-#: server_status.php:490
+#: server_status.php:601
#, php-format
msgid ""
"Query statistics: Since its startup, %s queries have been sent to the "
"server."
msgstr "查詣統計: 當統計啟動後, 共有 %s 個查詢傳送到此伺服器."
-#: server_status.php:498
+#: server_status.php:609
msgid "per minute"
msgstr "每分鐘"
-#: server_status.php:499
+#: server_status.php:610
msgid "per second"
msgstr "每秒"
-#: server_status.php:554
+#: server_status.php:665
msgid "Query type"
msgstr "查詢方式"
-#: server_status.php:721
+#: server_status.php:832
#, fuzzy
msgid "Replication status"
msgstr "複製"
diff --git a/server_databases.php b/server_databases.php
index bfb2946b2..9a05c707d 100755
--- a/server_databases.php
+++ b/server_databases.php
@@ -196,7 +196,7 @@ if ($databases_count > 0) {
elseif($type == "slave")
$name = __('Slave replication');
if (${"server_{$type}_status"})
- echo ' '.$GLOBALS[$name].' ' . "\n";
+ echo ' '. $name .' ' . "\n";
}
if ($is_superuser) {
@@ -264,13 +264,13 @@ if ($databases_count > 0) {
echo '' . "\n";
if (strlen(array_search($current["SCHEMA_NAME"], ${"server_{$type}_Ignore_DB"}))>0) {
- echo '
' . "\n";
+ echo '
' . "\n";
} else {
$key = array_search($current["SCHEMA_NAME"], ${"server_{$type}_Do_DB"});
if (strlen($key) > 0 || (${"server_{$type}_Do_DB"}[0] == "" && count(${"server_{$type}_Do_DB"}) == 1)) {
// if ($key != null) did not work for index "0"
- echo '
' . "\n";
+ echo '
' . "\n";
} else {
echo '';
}
diff --git a/server_privileges.php b/server_privileges.php
index ff80746f7..d087aeffb 100755
--- a/server_privileges.php
+++ b/server_privileges.php
@@ -19,6 +19,45 @@ $GLOBALS['js_include'][] = 'functions.js';
$GLOBALS['js_include'][] = 'jquery/jquery-ui-1.8.custom.js';
require './libraries/server_common.inc.php';
+/**
+ * Messages are built using the message name
+ */
+$strPrivDescAllPrivileges = __('Includes all privileges except GRANT.');
+$strPrivDescAlter = __('Allows altering the structure of existing tables.');
+$strPrivDescAlterRoutine = __('Allows altering and dropping stored routines.');
+$strPrivDescCreateDb = __('Allows creating new databases and tables.');
+$strPrivDescCreateRoutine = __('Allows creating stored routines.');
+$strPrivDescCreateTbl = __('Allows creating new tables.');
+$strPrivDescCreateTmpTable = __('Allows creating temporary tables.');
+$strPrivDescCreateUser = __('Allows creating, dropping and renaming user accounts.');
+$strPrivDescCreateView = __('Allows creating new views.');
+$strPrivDescDelete = __('Allows deleting data.');
+$strPrivDescDropDb = __('Allows dropping databases and tables.');
+$strPrivDescDropTbl = __('Allows dropping tables.');
+$strPrivDescEvent = __('Allows to set up events for the event scheduler');
+$strPrivDescExecute = __('Allows executing stored routines.');
+$strPrivDescFile = __('Allows importing data from and exporting data into files.');
+$strPrivDescGrant = __('Allows adding users and privileges without reloading the privilege tables.');
+$strPrivDescIndex = __('Allows creating and dropping indexes.');
+$strPrivDescInsert = __('Allows inserting and replacing data.');
+$strPrivDescLockTables = __('Allows locking tables for the current thread.');
+$strPrivDescMaxConnections = __('Limits the number of new connections the user may open per hour.');
+$strPrivDescMaxQuestions = __('Limits the number of queries the user may send to the server per hour.');
+$strPrivDescMaxUpdates = __('Limits the number of commands that change any table or database the user may execute per hour.');
+$strPrivDescMaxUserConnections = __('Limits the number of simultaneous connections the user may have.');
+$strPrivDescProcess = __('Allows viewing processes of all users');
+$strPrivDescReferences = __('Has no effect in this MySQL version.');
+$strPrivDescReload = __('Allows reloading server settings and flushing the server\'s caches.');
+$strPrivDescReplClient = __('Allows the user to ask where the slaves / masters are.');
+$strPrivDescReplSlave = __('Needed for the replication slaves.');
+$strPrivDescSelect = __('Allows reading data.');
+$strPrivDescShowDb = __('Gives access to the complete list of databases.');
+$strPrivDescShowView = __('Allows performing SHOW CREATE VIEW queries.');
+$strPrivDescShutdown = __('Allows shutting down the server.');
+$strPrivDescSuper = __('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.');
+$strPrivDescTrigger = __('Allows creating and dropping triggers');
+$strPrivDescUpdate = __('Allows changing data.');
+$strPrivDescUsage = __('No privileges.');
/**
* Checks if a dropdown box has been used for selecting a database / table
diff --git a/server_status.php b/server_status.php
index 3ab8a49a2..5ebd83591 100755
--- a/server_status.php
+++ b/server_status.php
@@ -34,6 +34,117 @@ require './libraries/server_links.inc.php';
require './libraries/replication.inc.php';
require_once './libraries/replication_gui.lib.php';
+/**
+ * Messages are built using the message name
+ */
+$strShowStatusBinlog_cache_disk_useDescr = __('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.');
+$strShowStatusBinlog_cache_useDescr = __('The number of transactions that used the temporary binary log cache.');
+$strShowStatusCreated_tmp_disk_tablesDescr = __('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 to increase the tmp_table_size value to cause temporary tables to be memory-based instead of disk-based.');
+$strShowStatusCreated_tmp_filesDescr = __('How many temporary files mysqld has created.');
+$strShowStatusCreated_tmp_tablesDescr = __('The number of in-memory temporary tables created automatically by the server while executing statements.');
+$strShowStatusDelayed_errorsDescr = __('The number of rows written with INSERT DELAYED for which some error occurred (probably duplicate key).');
+$strShowStatusDelayed_insert_threadsDescr = __('The number of INSERT DELAYED handler threads in use. Every different table on which one uses INSERT DELAYED gets its own thread.');
+$strShowStatusDelayed_writesDescr = __('The number of INSERT DELAYED rows written.');
+$strShowStatusFlush_commandsDescr = __('The number of executed FLUSH statements.');
+$strShowStatusHandler_commitDescr = __('The number of internal COMMIT statements.');
+$strShowStatusHandler_deleteDescr = __('The number of times a row was deleted from a table.');
+$strShowStatusHandler_discoverDescr = __('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.');
+$strShowStatusHandler_read_firstDescr = __('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.');
+$strShowStatusHandler_read_keyDescr = __('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.');
+$strShowStatusHandler_read_nextDescr = __('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.');
+$strShowStatusHandler_read_prevDescr = __('The number of requests to read the previous row in key order. This read method is mainly used to optimize ORDER BY ... DESC.');
+$strShowStatusHandler_read_rndDescr = __('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 probably have a lot of queries that require MySQL to scan whole tables or you have joins that don\'t use keys properly.');
+$strShowStatusHandler_read_rnd_nextDescr = __('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 tables are not properly indexed or that your queries are not written to take advantage of the indexes you have.');
+$strShowStatusHandler_rollbackDescr = __('The number of internal ROLLBACK statements.');
+$strShowStatusHandler_updateDescr = __('The number of requests to update a row in a table.');
+$strShowStatusHandler_writeDescr = __('The number of requests to insert a row in a table.');
+$strShowStatusInnodb_buffer_pool_pages_dataDescr = __('The number of pages containing data (dirty or clean).');
+$strShowStatusInnodb_buffer_pool_pages_dirtyDescr = __('The number of pages currently dirty.');
+$strShowStatusInnodb_buffer_pool_pages_flushedDescr = __('The number of buffer pool pages that have been requested to be flushed.');
+$strShowStatusInnodb_buffer_pool_pages_freeDescr = __('The number of free pages.');
+$strShowStatusInnodb_buffer_pool_pages_latchedDescr = __('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.');
+$strShowStatusInnodb_buffer_pool_pages_miscDescr = __('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 be calculated as Innodb_buffer_pool_pages_total - Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data.');
+$strShowStatusInnodb_buffer_pool_pages_totalDescr = __('Total size of buffer pool, in pages.');
+$strShowStatusInnodb_buffer_pool_read_ahead_rndDescr = __('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.');
+$strShowStatusInnodb_buffer_pool_read_ahead_seqDescr = __('The number of sequential read-aheads InnoDB initiated. This happens when InnoDB does a sequential full table scan.');
+$strShowStatusInnodb_buffer_pool_read_requestsDescr = __('The number of logical read requests InnoDB has done.');
+$strShowStatusInnodb_buffer_pool_readsDescr = __('The number of logical reads that InnoDB could not satisfy from buffer pool and had to do a single-page read.');
+$strShowStatusInnodb_buffer_pool_wait_freeDescr = __('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 available, it\'s necessary to wait for pages to be flushed first. This counter counts instances of these waits. If the buffer pool size was set properly, this value should be small.');
+$strShowStatusInnodb_buffer_pool_write_requestsDescr = __('The number writes done to the InnoDB buffer pool.');
+$strShowStatusInnodb_data_fsyncsDescr = __('The number of fsync() operations so far.');
+$strShowStatusInnodb_data_pending_fsyncsDescr = __('The current number of pending fsync() operations.');
+$strShowStatusInnodb_data_pending_readsDescr = __('The current number of pending reads.');
+$strShowStatusInnodb_data_pending_writesDescr = __('The current number of pending writes.');
+$strShowStatusInnodb_data_readDescr = __('The amount of data read so far, in bytes.');
+$strShowStatusInnodb_data_readsDescr = __('The total number of data reads.');
+$strShowStatusInnodb_data_writesDescr = __('The total number of data writes.');
+$strShowStatusInnodb_data_writtenDescr = __('The amount of data written so far, in bytes.');
+$strShowStatusInnodb_dblwr_pages_writtenDescr = __('The number of pages that have been written for doublewrite operations.');
+$strShowStatusInnodb_dblwr_writesDescr = __('The number of doublewrite operations that have been performed.');
+$strShowStatusInnodb_log_waitsDescr = __('The number of waits we had because log buffer was too small and we had to wait for it to be flushed before continuing.');
+$strShowStatusInnodb_log_write_requestsDescr = __('The number of log write requests.');
+$strShowStatusInnodb_log_writesDescr = __('The number of physical writes to the log file.');
+$strShowStatusInnodb_os_log_fsyncsDescr = __('The number of fsync() writes done to the log file.');
+$strShowStatusInnodb_os_log_pending_fsyncsDescr = __('The number of pending log file fsyncs.');
+$strShowStatusInnodb_os_log_pending_writesDescr = __('Pending log file writes.');
+$strShowStatusInnodb_os_log_writtenDescr = __('The number of bytes written to the log file.');
+$strShowStatusInnodb_pages_createdDescr = __('The number of pages created.');
+$strShowStatusInnodb_page_sizeDescr = __('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.');
+$strShowStatusInnodb_pages_readDescr = __('The number of pages read.');
+$strShowStatusInnodb_pages_writtenDescr = __('The number of pages written.');
+$strShowStatusInnodb_row_lock_current_waitsDescr = __('The number of row locks currently being waited for.');
+$strShowStatusInnodb_row_lock_time_avgDescr = __('The average time to acquire a row lock, in milliseconds.');
+$strShowStatusInnodb_row_lock_timeDescr = __('The total time spent in acquiring row locks, in milliseconds.');
+$strShowStatusInnodb_row_lock_time_maxDescr = __('The maximum time to acquire a row lock, in milliseconds.');
+$strShowStatusInnodb_row_lock_waitsDescr = __('The number of times a row lock had to be waited for.');
+$strShowStatusInnodb_rows_deletedDescr = __('The number of rows deleted from InnoDB tables.');
+$strShowStatusInnodb_rows_insertedDescr = __('The number of rows inserted in InnoDB tables.');
+$strShowStatusInnodb_rows_readDescr = __('The number of rows read from InnoDB tables.');
+$strShowStatusInnodb_rows_updatedDescr = __('The number of rows updated in InnoDB tables.');
+$strShowStatusKey_blocks_not_flushedDescr = __('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.');
+$strShowStatusKey_blocks_unusedDescr = __('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.');
+$strShowStatusKey_blocks_usedDescr = __('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.');
+$strShowStatusKey_read_requestsDescr = __('The number of requests to read a key block from the cache.');
+$strShowStatusKey_readsDescr = __('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.');
+$strShowStatusKey_write_requestsDescr = __('The number of requests to write a key block to the cache.');
+$strShowStatusKey_writesDescr = __('The number of physical writes of a key block to disk.');
+$strShowStatusLast_query_costDescr = __('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.');
+$strShowStatusNot_flushed_delayed_rowsDescr = __('The number of rows waiting to be written in INSERT DELAYED queues.');
+$strShowStatusOpened_tablesDescr = __('The number of tables that have been opened. If opened tables is big, your table cache value is probably too small.');
+$strShowStatusOpen_filesDescr = __('The number of files that are open.');
+$strShowStatusOpen_streamsDescr = __('The number of streams that are open (used mainly for logging).');
+$strShowStatusOpen_tablesDescr = __('The number of tables that are open.');
+$strShowStatusQcache_free_blocksDescr = __('The number of free memory blocks in query cache.');
+$strShowStatusQcache_free_memoryDescr = __('The amount of free memory for query cache.');
+$strShowStatusQcache_hitsDescr = __('The number of cache hits.');
+$strShowStatusQcache_insertsDescr = __('The number of queries added to the cache.');
+$strShowStatusQcache_lowmem_prunesDescr = __('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 cache size. The query cache uses a least recently used (LRU) strategy to decide which queries to remove from the cache.');
+$strShowStatusQcache_not_cachedDescr = __('The number of non-cached queries (not cachable, or not cached due to the query_cache_type setting).');
+$strShowStatusQcache_queries_in_cacheDescr = __('The number of queries registered in the cache.');
+$strShowStatusQcache_total_blocksDescr = __('The total number of blocks in the query cache.');
+$strShowStatusReset = _pgettext('$strShowStatusReset', 'Reset');
+$strShowStatusRpl_statusDescr = __('The status of failsafe replication (not yet implemented).');
+$strShowStatusSelect_full_joinDescr = __('The number of joins that do not use indexes. If this value is not 0, you should carefully check the indexes of your tables.');
+$strShowStatusSelect_full_range_joinDescr = __('The number of joins that used a range search on a reference table.');
+$strShowStatusSelect_range_checkDescr = __('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.)');
+$strShowStatusSelect_rangeDescr = __('The number of joins that used ranges on the first table. (It\'s normally not critical even if this is big.)');
+$strShowStatusSelect_scanDescr = __('The number of joins that did a full scan of the first table.');
+$strShowStatusSlave_open_temp_tablesDescr = __('The number of temporary tables currently open by the slave SQL thread.');
+$strShowStatusSlave_retried_transactionsDescr = __('Total (since startup) number of times the replication slave SQL thread has retried transactions.');
+$strShowStatusSlave_runningDescr = __('This is ON if this server is a slave that is connected to a master.');
+$strShowStatusSlow_launch_threadsDescr = __('The number of threads that have taken more than slow_launch_time seconds to create.');
+$strShowStatusSlow_queriesDescr = __('The number of queries that have taken more than long_query_time seconds.');
+$strShowStatusSort_merge_passesDescr = __('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.');
+$strShowStatusSort_rangeDescr = __('The number of sorts that were done with ranges.');
+$strShowStatusSort_rowsDescr = __('The number of sorted rows.');
+$strShowStatusSort_scanDescr = __('The number of sorts that were done by scanning the table.');
+$strShowStatusTable_locks_immediateDescr = __('The number of times that a table lock was acquired immediately.');
+$strShowStatusTable_locks_waitedDescr = __('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 should first optimize your queries, and then either split your table or tables or use replication.');
+$strShowStatusThreads_cachedDescr = __('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.');
+$strShowStatusThreads_connectedDescr = __('The number of currently open connections.');
+$strShowStatusThreads_createdDescr = __('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 doesn\'t give a notable performance improvement if you have a good thread implementation.)');
+$strShowStatusThreads_runningDescr = __('The number of threads that are not sleeping.');
+
/**
* Displays the sub-page heading
*/