From 51dffa100facad11753902fcae91fe66cdc7541f Mon Sep 17 00:00:00 2001 From: ninadsp Date: Tue, 22 Jun 2010 01:02:47 +0530 Subject: [PATCH] Now using localized strings for all jQuery actions instead of static English strings. Added strings to js/messages.php. Yet to figure out how to localize buttons on jQueryUI dialogs. --- js/functions.js | 26 +- js/messages.php | 12 + po/af.po | 840 ++++++++++++++++++------------------ po/ar.po | 843 +++++++++++++++++++----------------- po/az.po | 844 ++++++++++++++++++------------------ po/be.po | 844 +++++++++++++++++++----------------- po/be@latin.po | 846 +++++++++++++++++++----------------- po/bg.po | 841 +++++++++++++++++++----------------- po/bn.po | 844 +++++++++++++++++++----------------- po/bs.po | 844 ++++++++++++++++++------------------ po/ca.po | 846 +++++++++++++++++++----------------- po/cs.po | 843 +++++++++++++++++++----------------- po/cy.po | 853 +++++++++++++++++++------------------ po/da.po | 846 +++++++++++++++++++----------------- po/de.po | 843 +++++++++++++++++++----------------- po/el.po | 846 +++++++++++++++++++----------------- po/en_GB.po | 843 +++++++++++++++++++----------------- po/es.po | 845 +++++++++++++++++++----------------- po/et.po | 844 +++++++++++++++++++----------------- po/eu.po | 844 ++++++++++++++++++------------------ po/fa.po | 837 +++++++++++++++++++----------------- po/fi.po | 846 +++++++++++++++++++----------------- po/fr.po | 843 +++++++++++++++++++----------------- po/gl.po | 846 +++++++++++++++++++----------------- po/he.po | 844 ++++++++++++++++++------------------ po/hi.po | 839 +++++++++++++++++++----------------- po/hr.po | 844 +++++++++++++++++++----------------- po/hu.po | 845 +++++++++++++++++++----------------- po/id.po | 850 +++++++++++++++++++------------------ po/it.po | 842 +++++++++++++++++++----------------- po/ja.po | 846 +++++++++++++++++++----------------- po/ka.po | 845 +++++++++++++++++++----------------- po/ko.po | 926 ++++++++++++++++++++-------------------- po/lt.po | 844 +++++++++++++++++++----------------- po/lv.po | 844 ++++++++++++++++++------------------ po/mk.po | 843 ++++++++++++++++++------------------ po/mn.po | 846 +++++++++++++++++++----------------- po/ms.po | 842 ++++++++++++++++++------------------ po/nb.po | 843 +++++++++++++++++++----------------- po/nl.po | 843 +++++++++++++++++++----------------- po/pl.po | 845 +++++++++++++++++++----------------- po/pt.po | 844 ++++++++++++++++++------------------ po/pt_BR.po | 844 +++++++++++++++++++----------------- po/ro.po | 841 +++++++++++++++++++----------------- po/ru.po | 846 +++++++++++++++++++----------------- po/si.po | 844 +++++++++++++++++++----------------- po/sk.po | 844 +++++++++++++++++++----------------- po/sl.po | 849 ++++++++++++++++++++----------------- po/sq.po | 841 +++++++++++++++++++----------------- po/sr.po | 844 +++++++++++++++++++----------------- po/sr@latin.po | 844 +++++++++++++++++++----------------- po/sv.po | 845 +++++++++++++++++++----------------- po/ta.po | 851 +++++++++++++++++++------------------ po/te.po | 841 +++++++++++++++++++----------------- po/th.po | 844 ++++++++++++++++++------------------ po/tr.po | 1083 +++++++++++++++++++++-------------------------- po/tt.po | 844 +++++++++++++++++++----------------- po/uk.po | 843 +++++++++++++++++++----------------- po/ur.po | 833 +++++++++++++++++++----------------- po/uz.po | 846 +++++++++++++++++++----------------- po/uz@latin.po | 846 +++++++++++++++++++----------------- po/zh_CN.po | 843 +++++++++++++++++++----------------- po/zh_TW.po | 844 ++++++++++++++++++------------------ 63 files changed, 27206 insertions(+), 24638 deletions(-) diff --git a/js/functions.js b/js/functions.js index f9b9166da..753ed27f6 100755 --- a/js/functions.js +++ b/js/functions.js @@ -16,7 +16,7 @@ var sql_box_locked = false; var only_once_elements = new Array(); /** - * @var ajax_notification_visible boolean boolean that stores status of + * @var ajax_message_init boolean boolean that stores status of * notification for PMA_ajaxShowNotification */ var ajax_message_init = false; @@ -1743,7 +1743,7 @@ function PMA_ajaxInsertResponse(divisions_map) { function PMA_ajaxShowMessage(message, timeout) { if(!message) { - var msg = 'Loading...'; + var msg = PMA_messages['strLoading']; } else { var msg = message; @@ -1828,7 +1828,7 @@ $(document).ready(function() { $(this).PMA_confirm(question, $(this).attr('href') ,function(url) { - PMA_ajaxShowMessage("Processing Request"); + PMA_ajaxShowMessage(PMA_messages['strProcessingRequest']); $.get(url, {'is_js_confirmed': '1', 'ajax_request': true}, function(data) { //Database deleted successfully, refresh both the frames window.parent.refreshNavigation(); @@ -1847,7 +1847,7 @@ $(document).ready(function() { $(this).PMA_confirm(question, $(this).attr('href'), function(url) { - PMA_ajaxShowMessage("Processing Request"); + PMA_ajaxShowMessage(PMA_messages['strProcessingRequest']); $.get(url, {'is_js_confirmed' : 1, 'ajax_request' : true}, function(data) { if(data.success == true) { @@ -1856,7 +1856,7 @@ $(document).ready(function() { $(this).remove(); } else { - PMA_ajaxShowMessage("Error in processing request : " + data.error); + PMA_ajaxShowMessage(PMA_messages['strErrorProcessingRequest'] + " : " + data.error); } }) }) @@ -1872,7 +1872,7 @@ $(document).ready(function() { $(this).PMA_confirm(question, $(this).attr('href'), function(url) { - PMA_ajaxShowMessage("Processing Request"); + PMA_ajaxShowMessage(PMA_messages['strProcessingRequest']); $.get(url, {'is_js_confirmed' : 1, 'ajax_request' : true}, function(data) { if(data.success == true) { @@ -1881,7 +1881,7 @@ $(document).ready(function() { $(this).remove(); } else { - PMA_ajaxShowMessage("Error in processing request : " + data.error); + PMA_ajaxShowMessage(PMA_messages['strErrorProcessingRequest'] + " : " + data.error); } }); }); @@ -1893,11 +1893,11 @@ $(document).ready(function() { var curr_table_name = window.parent.table; var curr_column_name = $(this).parents('tr').children('th').children('label').text(); - var question = 'Do you really want to :\n ALTER TABLE `' + curr_table_name + '` DROP `' + curr_column_name + '`'; + var question = PMA_message['strDoYouReally'] + ' :\n ALTER TABLE `' + curr_table_name + '` DROP `' + curr_column_name + '`'; $(this).PMA_confirm(question, $(this).attr('href'), function(url) { - PMA_ajaxShowMessage("Dropping Column"); + PMA_ajaxShowMessage(PMA_messages['strDroppingColumn']); $.get(url, {'is_js_confirmed' : 1, 'ajax_request' : true}, function(data) { if(data.success == true) { @@ -1905,7 +1905,7 @@ $(document).ready(function() { $(this).remove(); } else { - PMA_ajaxShowMessage("Error in processing request : " + data.error); + PMA_ajaxShowMessage(PMA_messages['strErrorProcessingRequest'] + " : " + data.error); } }) }); //end of Drop Column Anchor action @@ -1917,11 +1917,11 @@ $(document).ready(function() { var curr_table_name = window.parent.table; var curr_column_name = $(this).parents('tr').children('th').children('label').text(); - var question = 'Do you really want to :\n ALTER TABLE `' + curr_table_name + '` ADD PRIMARY KEY(`' + curr_column_name + '`)'; + var question = PMA_messages['strDoYouReally'] + ' :\n ALTER TABLE `' + curr_table_name + '` ADD PRIMARY KEY(`' + curr_column_name + '`)'; $(this).PMA_confirm(question, $(this).attr('href'), function(url) { - PMA_ajaxShowMessage("Adding Primary Key"); + PMA_ajaxShowMessage(PMA_messages['strAddingPrimaryKey']); $.get(url, {'is_js_confirmed' : 1, 'ajax_request' : true}, function(data) { if(data.success == true) { @@ -1929,7 +1929,7 @@ $(document).ready(function() { $(this).remove(); } else { - PMA_ajaxShowMessage("Error in processing request : " + data.error); + PMA_ajaxShowMessage(PMA_messages['strErrorProcessingRequest'] + " : " + data.error); } }) }) diff --git a/js/messages.php b/js/messages.php index 8eb745ac1..3bda39c92 100755 --- a/js/messages.php +++ b/js/messages.php @@ -43,11 +43,23 @@ $js_messages['strHostEmpty'] = __('The host name is empty!'); $js_messages['strUserEmpty'] = __('The user name is empty!'); $js_messages['strPasswordEmpty'] = __('The password is empty!'); $js_messages['strPasswordNotSame'] = __('The passwords aren\'t the same!'); +$js_messages['strAddNewUser'] = __('Add a New User'); +$js_messages['strCancel'] = __('Cancel'); +$js_messages['strCreateUser'] = __('Create User'); +$js_messages['strReloadingPrivileges'] = __('Reloading Privileges'); +$js_messages['strRemovingSelectedUsers'] = __('Removing Selected Users'); /* For inline query editing */ $js_messages['strGo'] = __('Go'); $js_messages['strCancel'] = __('Cancel'); +/* For Ajax Notifications */ +$js_messages['strLoading'] = __('Loading'); +$js_messages['strProcessingRequest'] = __('Processing Request'); +$js_messages['strErrorProcessingRequest'] = __('Error in Processing Request'); +$js_messages['strDroppingColumn'] = __('Dropping Column'); +$js_messages['strAddingPrimaryKey'] = __('Adding Primary Key'); + /* Designer */ $js_messages['strModifications'] = __('Modifications have been saved'); $js_messages['strRelationDeleted'] = __('Relation deleted'); diff --git a/po/af.po b/po/af.po index 07dda8592..a1b28d1ec 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-13 09:03-0400\n" +"POT-Creation-Date: 2010-06-22 00:55+0530\n" "PO-Revision-Date: 2010-03-30 23:04+0200\n" "Last-Translator: Michal \n" "Language-Team: afrikaans \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:1514 +#: libraries/display_tbl.lib.php:417 server_privileges.php:1534 msgid "Show all" msgstr "Wys alles" -#: browse_foreigners.php:82 libraries/common.lib.php:2313 +#: browse_foreigners.php:82 libraries/common.lib.php:2317 #: 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,18 +35,18 @@ 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:2831 -#: libraries/common.lib.php:2838 libraries/db_links.inc.php:75 +#: db_structure.php:106 libraries/common.lib.php:2835 +#: libraries/common.lib.php:2842 libraries/db_links.inc.php:75 #: libraries/tbl_links.inc.php:63 msgid "Search" msgstr "Soek" -#: browse_foreigners.php:153 db_operations.php:385 db_operations.php:429 -#: db_operations.php:499 db_operations.php:609 db_search.php:362 -#: db_structure.php:567 js/messages.php:48 libraries/Config.class.php:1046 +#: browse_foreigners.php:153 db_operations.php:394 db_operations.php:438 +#: db_operations.php:508 db_operations.php:618 db_search.php:362 +#: db_structure.php:565 js/messages.php:53 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:1335 libraries/common.lib.php:2288 +#: libraries/common.lib.php:1335 libraries/common.lib.php:2292 #: 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,15 +57,15 @@ msgstr "Soek" #: 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:664 server_privileges.php:1624 -#: server_privileges.php:1971 server_privileges.php:2018 -#: server_privileges.php:2057 server_replication.php:235 +#: server_privileges.php:665 server_privileges.php:1644 +#: server_privileges.php:1991 server_privileges.php:2038 +#: server_privileges.php:2078 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 #: tbl_operations.php:302 tbl_operations.php:499 tbl_operations.php:561 -#: tbl_operations.php:681 tbl_select.php:327 tbl_structure.php:562 -#: tbl_structure.php:597 tbl_tracking.php:395 tbl_tracking.php:512 +#: tbl_operations.php:681 tbl_select.php:327 tbl_structure.php:560 +#: tbl_structure.php:595 tbl_tracking.php:395 tbl_tracking.php:512 #: view_create.php:182 view_operations.php:101 msgid "Go" msgstr "Gaan" @@ -92,7 +92,7 @@ msgstr "" msgid "Database %1$s has been created." msgstr "Databasis %s is verwyder." -#: db_datadict.php:49 db_operations.php:378 +#: db_datadict.php:49 db_operations.php:387 #, fuzzy msgid "Database comment: " msgstr "Tabel kommentaar" @@ -120,10 +120,10 @@ msgstr "Kolom name" #: 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:2070 +#: pdf_schema.php:1263 pdf_schema.php:1284 server_privileges.php:2091 #: 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 +#: tbl_structure.php:657 tbl_tracking.php:274 tbl_tracking.php:321 msgid "Type" msgstr "Tipe" @@ -136,7 +136,7 @@ msgstr "Tipe" msgid "Null" msgstr "Null" -#: db_datadict.php:178 db_structure.php:501 libraries/export/htmlword.php:247 +#: db_datadict.php:178 db_structure.php:499 libraries/export/htmlword.php:247 #: libraries/export/latex.php:360 libraries/export/odt.php:303 #: libraries/export/texytext.php:236 libraries/tbl_properties.inc.php:106 #: pdf_schema.php:1266 pdf_schema.php:1287 tbl_printview.php:146 @@ -164,9 +164,9 @@ msgstr "Kommentaar" #: 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: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 +#: pdf_schema.php:1344 server_privileges.php:1588 server_privileges.php:1599 +#: server_privileges.php:1909 server_privileges.php:1914 +#: server_privileges.php:2208 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:1565 -#: server_privileges.php:1579 server_privileges.php:1889 -#: server_privileges.php:1892 server_privileges.php:2187 sql.php:193 +#: server_databases.php:64 server_privileges.php:1585 +#: server_privileges.php:1599 server_privileges.php:1909 +#: server_privileges.php:1912 server_privileges.php:2208 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" @@ -209,130 +209,126 @@ msgstr "Kies Alles" msgid "Unselect All" msgstr "Selekteer Niks" -#: db_operations.php:38 tbl_create.php:54 +#: db_operations.php:43 tbl_create.php:54 #, fuzzy msgid "The database name is empty!" msgstr "Die tabel naam is leeg!" -#: db_operations.php:236 +#: db_operations.php:241 #, fuzzy, php-format msgid "Database %s has been renamed to %s" msgstr "Tabel %s is vernoem na %s" -#: db_operations.php:240 +#: db_operations.php:245 #, fuzzy, php-format msgid "Database %s has been copied to %s" msgstr "Tabel %s is gekopieer na %s." -#: db_operations.php:412 +#: db_operations.php:421 #, fuzzy msgid "Rename database to" msgstr "Hernoem tabel na" -#: db_operations.php:417 server_processlist.php:57 +#: db_operations.php:426 server_processlist.php:57 #, fuzzy msgid "Command" msgstr "Kommentaar" -#: db_operations.php:429 tbl_change.php:1143 -msgid "and then" -msgstr "" - -#: db_operations.php:455 +#: db_operations.php:464 #, fuzzy msgid "Copy database to" msgstr "Geen databasisse" -#: db_operations.php:462 tbl_operations.php:528 tbl_tracking.php:388 +#: db_operations.php:471 tbl_operations.php:528 tbl_tracking.php:388 msgid "Structure only" msgstr "Slegs struktuur" -#: db_operations.php:463 tbl_operations.php:529 tbl_tracking.php:390 +#: db_operations.php:472 tbl_operations.php:529 tbl_tracking.php:390 msgid "Structure and data" msgstr "Struktuur en data" -#: db_operations.php:464 tbl_operations.php:530 tbl_tracking.php:389 +#: db_operations.php:473 tbl_operations.php:530 tbl_tracking.php:389 msgid "Data only" msgstr "Slegs Data" -#: db_operations.php:472 +#: db_operations.php:481 msgid "CREATE DATABASE before copying" msgstr "" -#: db_operations.php:475 libraries/export/sql.php:52 +#: db_operations.php:484 libraries/export/sql.php:52 #: libraries/export/sql.php:74 libraries/export/sql.php:76 #: libraries/export/sql.php:82 tbl_operations.php:536 #, php-format msgid "Add %s" msgstr "" -#: db_operations.php:479 libraries/export/sql.php:78 tbl_operations.php:299 +#: db_operations.php:488 libraries/export/sql.php:78 tbl_operations.php:299 #: tbl_operations.php:538 msgid "Add AUTO_INCREMENT value" msgstr "" -#: db_operations.php:483 tbl_operations.php:545 +#: db_operations.php:492 tbl_operations.php:545 msgid "Add constraints" msgstr "" -#: db_operations.php:496 +#: db_operations.php:505 msgid "Switch to copied database" msgstr "" -#: db_operations.php:537 +#: db_operations.php:546 msgid "BLOB Repository" msgstr "" -#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1352 -#: libraries/server_links.inc.php:49 server_processlist.php:59 +#: db_operations.php:549 db_tracking.php:76 libraries/common.lib.php:1352 +#: libraries/server_links.inc.php:50 server_processlist.php:59 #: tbl_tracking.php:596 test/theme.php:101 msgid "Status" msgstr "" -#: db_operations.php:548 +#: db_operations.php:557 #, fuzzy #| msgid "Enabled" msgctxt "BLOB repository" msgid "Enabled" msgstr "Beskikbaar" -#: db_operations.php:552 +#: db_operations.php:561 #, fuzzy msgid "Disable" msgstr "Onbeskikbaar" -#: db_operations.php:562 +#: db_operations.php:571 msgid "Damaged" msgstr "" -#: db_operations.php:566 +#: db_operations.php:575 #, fuzzy msgctxt "BLOB repository" msgid "Repair" msgstr "Herstel tabel" -#: db_operations.php:574 +#: db_operations.php:583 #, fuzzy #| msgid "Disabled" msgctxt "BLOB repository" msgid "Disabled" msgstr "Onbeskikbaar" -#: db_operations.php:578 +#: db_operations.php:587 #, fuzzy msgid "Enable" msgstr "Beskikbaar" -#: db_operations.php:602 libraries/Index.class.php:448 +#: db_operations.php:611 libraries/Index.class.php:448 #: libraries/db_structure.lib.php:62 libraries/mysql_charsets.lib.php:107 #: libraries/tbl_properties.inc.php:107 libraries/tbl_properties.inc.php:730 #: server_collations.php:54 server_collations.php:66 server_databases.php:111 #: tbl_operations.php:363 tbl_select.php:137 tbl_structure.php:179 -#: tbl_structure.php:767 tbl_tracking.php:275 tbl_tracking.php:326 +#: tbl_structure.php:765 tbl_tracking.php:275 tbl_tracking.php:326 msgid "Collation" msgstr "" -#: db_operations.php:615 main.php:316 pdf_schema.php:34 +#: db_operations.php:624 main.php:316 pdf_schema.php:34 #, php-format msgid "" "The additional features for working with linked tables have been " @@ -341,14 +337,14 @@ msgstr "" "Die addisionele funksies om met geskakelde tabelle te werk is ge deaktiveer. " "Om uit te vind hoekom kliek %shier%s." -#: db_operations.php:648 +#: db_operations.php:657 msgid "Edit PDF Pages" msgstr "Verander PDF Bladsye" #: 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:1665 -#: server_privileges.php:1721 server_privileges.php:1985 +#: libraries/header.inc.php:130 pdf_pages.php:424 server_privileges.php:1685 +#: server_privileges.php:1741 server_privileges.php:2005 #: server_synchronize.php:423 server_synchronize.php:866 tbl_tracking.php:592 #: test/theme.php:75 msgid "Table" @@ -357,7 +353,7 @@ msgstr "Tabel" #: db_printview.php:105 libraries/db_structure.lib.php:56 #: libraries/header_printview.inc.php:63 libraries/import.lib.php:146 #: navigation.php:638 navigation.php:660 server_databases.php:122 -#: tbl_printview.php:394 tbl_structure.php:365 tbl_structure.php:777 +#: tbl_printview.php:394 tbl_structure.php:365 tbl_structure.php:775 msgid "Rows" msgstr "Rye" @@ -365,31 +361,31 @@ msgstr "Rye" msgid "Size" msgstr "Grootte" -#: db_printview.php:162 db_structure.php:457 libraries/export/sql.php:559 +#: db_printview.php:162 db_structure.php:455 libraries/export/sql.php:559 #: libraries/export/sql.php:899 msgid "in use" msgstr "in gebruik" #: db_printview.php:187 libraries/db_info.inc.php:88 #: libraries/export/sql.php:514 pdf_schema.php:1241 tbl_printview.php:434 -#: tbl_structure.php:809 +#: tbl_structure.php:807 #, fuzzy msgid "Creation" msgstr "Skep" #: db_printview.php:196 libraries/db_info.inc.php:93 #: libraries/export/sql.php:519 pdf_schema.php:1246 tbl_printview.php:444 -#: tbl_structure.php:817 +#: tbl_structure.php:815 msgid "Last update" msgstr "" #: db_printview.php:205 libraries/db_info.inc.php:98 #: libraries/export/sql.php:524 pdf_schema.php:1251 tbl_printview.php:454 -#: tbl_structure.php:825 +#: tbl_structure.php:823 msgid "Last check" msgstr "" -#: db_printview.php:222 db_structure.php:480 +#: db_printview.php:222 db_structure.php:478 #, fuzzy, php-format #| msgid "%s table(s)" msgid "%s table" @@ -450,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:297 tbl_change.php:1031 tbl_indexes.php:250 +#: server_privileges.php:298 tbl_change.php:1031 tbl_indexes.php:250 #: tbl_select.php:288 msgid "Or" msgstr "Of" @@ -523,9 +519,9 @@ msgstr "%s resultate binne 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:2833 +#: db_structure.php:105 libraries/common.lib.php:2837 #: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50 -#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:467 +#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:465 msgid "Browse" msgstr "Beloer Data" @@ -570,36 +566,36 @@ msgstr "Binne tabel(le):" #: 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:2832 libraries/sql_query_form.lib.php:334 +#: libraries/common.lib.php:2836 libraries/sql_query_form.lib.php:334 #: libraries/sql_query_form.lib.php:337 libraries/tbl_links.inc.php:76 msgid "Insert" msgstr "Voeg by" #: db_structure.php:83 db_structure.php:96 db_structure.php:109 -#: libraries/common.lib.php:2829 libraries/common.lib.php:2836 +#: libraries/common.lib.php:2833 libraries/common.lib.php:2840 #: 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:1106 #: libraries/tbl_links.inc.php:56 pmd_general.php:134 -#: server_privileges.php:593 server_replication.php:315 tbl_tracking.php:269 +#: server_privileges.php:594 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:1656 +#: db_structure.php:543 db_structure.php:544 db_tracking.php:91 +#: libraries/Index.class.php:483 libraries/common.lib.php:1657 #: 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 -#: tbl_structure.php:152 tbl_structure.php:471 +#: tbl_structure.php:152 tbl_structure.php:469 msgid "Drop" msgstr "Verwyder" #: 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:1655 +#: db_structure.php:541 db_structure.php:542 libraries/common.lib.php:1656 #: libraries/mult_submits.inc.php:39 libraries/tbl_links.inc.php:105 msgid "Empty" msgstr "Maak Leeg" @@ -609,111 +605,111 @@ msgstr "Maak Leeg" msgid "Table %s has been emptied" msgstr "Tabel %s is leeg gemaak" -#: db_structure.php:326 libraries/tbl_links.inc.php:133 +#: db_structure.php:325 libraries/tbl_links.inc.php:133 #, fuzzy, php-format msgid "View %s has been dropped" msgstr "Veld %s is verwyder" -#: db_structure.php:326 libraries/tbl_links.inc.php:133 +#: db_structure.php:325 libraries/tbl_links.inc.php:133 #, php-format msgid "Table %s has been dropped" msgstr "Tabel %s is verwyder" -#: db_structure.php:333 +#: db_structure.php:332 msgid "Tracking is active." msgstr "" -#: db_structure.php:335 +#: db_structure.php:334 msgid "Tracking is not active." msgstr "" -#: db_structure.php:420 libraries/display_tbl.lib.php:1944 +#: db_structure.php:418 libraries/display_tbl.lib.php:1944 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation%" "s." msgstr "" -#: db_structure.php:434 db_structure.php:448 libraries/header.inc.php:126 +#: db_structure.php:432 db_structure.php:446 libraries/header.inc.php:130 #: libraries/tbl_info.inc.php:66 tbl_structure.php:185 test/theme.php:74 msgid "View" msgstr "" -#: db_structure.php:485 libraries/db_structure.lib.php:49 -#: libraries/server_links.inc.php:70 server_replication.php:33 +#: db_structure.php:483 libraries/db_structure.lib.php:49 +#: libraries/server_links.inc.php:71 server_replication.php:33 #: server_replication.php:164 server_status.php:369 msgid "Replication" msgstr "" -#: db_structure.php:489 +#: db_structure.php:487 msgid "Sum" msgstr "Som" -#: db_structure.php:496 libraries/StorageEngine.class.php:356 +#: db_structure.php:494 libraries/StorageEngine.class.php:356 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "" -#: db_structure.php:524 db_structure.php:541 db_structure.php:542 +#: db_structure.php:522 db_structure.php:539 db_structure.php:540 #: 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:1596 tbl_structure.php:455 -#: tbl_structure.php:464 +#: server_databases.php:351 server_privileges.php:1616 tbl_structure.php:453 +#: tbl_structure.php:462 msgid "With selected:" msgstr "Met gekose:" -#: db_structure.php:527 libraries/display_tbl.lib.php:2076 -#: server_databases.php:348 server_privileges.php:569 -#: server_privileges.php:1599 tbl_structure.php:458 +#: db_structure.php:525 libraries/display_tbl.lib.php:2076 +#: server_databases.php:348 server_privileges.php:570 +#: server_privileges.php:1619 tbl_structure.php:456 msgid "Check All" msgstr "Kies Alles" -#: db_structure.php:531 libraries/display_tbl.lib.php:2077 +#: db_structure.php:529 libraries/display_tbl.lib.php:2077 #: libraries/replication_gui.lib.php:33 server_databases.php:350 -#: server_privileges.php:572 server_privileges.php:1603 tbl_structure.php:462 +#: server_privileges.php:573 server_privileges.php:1623 tbl_structure.php:460 msgid "Uncheck All" msgstr "Kies Niks" -#: db_structure.php:536 +#: db_structure.php:534 msgid "Check tables having overhead" msgstr "" -#: db_structure.php:547 db_structure.php:548 db_structure.php:599 +#: db_structure.php:545 db_structure.php:546 db_structure.php:597 #: libraries/display_tbl.lib.php:2180 libraries/mult_submits.inc.php:28 -#: tbl_structure.php:492 tbl_structure.php:494 +#: tbl_structure.php:490 tbl_structure.php:492 msgid "Print view" msgstr "Drukker mooi (print view)" -#: db_structure.php:549 db_structure.php:550 libraries/mult_submits.inc.php:42 +#: db_structure.php:547 db_structure.php:548 libraries/mult_submits.inc.php:42 #: tbl_operations.php:581 msgid "Check table" msgstr "Kontroleer tabel" -#: db_structure.php:551 db_structure.php:552 libraries/mult_submits.inc.php:47 -#: tbl_operations.php:621 tbl_structure.php:709 tbl_structure.php:711 +#: db_structure.php:549 db_structure.php:550 libraries/mult_submits.inc.php:47 +#: tbl_operations.php:621 tbl_structure.php:707 tbl_structure.php:709 msgid "Optimize table" msgstr "Optimaliseer tabel" -#: db_structure.php:553 db_structure.php:554 libraries/mult_submits.inc.php:52 +#: db_structure.php:551 db_structure.php:552 libraries/mult_submits.inc.php:52 #: tbl_operations.php:611 msgid "Repair table" msgstr "Herstel tabel" -#: db_structure.php:555 db_structure.php:556 libraries/mult_submits.inc.php:57 +#: db_structure.php:553 db_structure.php:554 libraries/mult_submits.inc.php:57 #: tbl_operations.php:601 msgid "Analyze table" msgstr "Analiseer tabel" -#: db_structure.php:557 db_structure.php:558 libraries/db_links.inc.php:71 +#: db_structure.php:555 db_structure.php:556 libraries/db_links.inc.php:71 #: 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:1380 +#: libraries/server_links.inc.php:85 libraries/tbl_links.inc.php:82 +#: pmd_pdf.php:84 pmd_pdf.php:109 server_privileges.php:1397 #: setup/frames/menu.inc.php:22 tbl_row_action.php:59 msgid "Export" msgstr "Export" -#: db_structure.php:606 libraries/display_pdf_schema.lib.php:44 +#: db_structure.php:604 libraries/display_pdf_schema.lib.php:44 msgid "Data Dictionary" msgstr "" @@ -724,10 +720,10 @@ msgstr "" #: db_tracking.php:71 libraries/export/htmlword.php:86 #: libraries/export/latex.php:148 libraries/export/odt.php:113 #: libraries/export/sql.php:342 libraries/export/texytext.php:84 -#: libraries/export/xml.php:255 libraries/header.inc.php:106 +#: libraries/export/xml.php:255 libraries/header.inc.php:110 #: libraries/header_printview.inc.php:58 server_databases.php:169 -#: server_privileges.php:1660 server_privileges.php:1721 -#: server_privileges.php:1979 server_processlist.php:56 +#: server_privileges.php:1680 server_privileges.php:1741 +#: server_privileges.php:1999 server_processlist.php:56 #: server_synchronize.php:1179 server_synchronize.php:1183 #: tbl_tracking.php:591 test/theme.php:65 msgid "Database" @@ -748,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:1542 server_privileges.php:1725 -#: server_privileges.php:2073 tbl_structure.php:187 +#: server_privileges.php:1562 server_privileges.php:1745 +#: server_privileges.php:2094 tbl_structure.php:187 msgid "Action" msgstr "Aksie" @@ -785,8 +781,8 @@ msgstr "Slegs struktuur" msgid "Untracked tables" msgstr "" -#: db_tracking.php:172 db_tracking.php:174 tbl_structure.php:528 -#: tbl_structure.php:530 +#: db_tracking.php:172 db_tracking.php:174 tbl_structure.php:526 +#: tbl_structure.php:528 #, fuzzy msgid "Track table" msgstr "Kontroleer tabel" @@ -940,188 +936,230 @@ msgstr "Die gasheer naam is leeg!" msgid "The user name is empty!" msgstr "Die gebruiker naam ontbreek!" -#: js/messages.php:44 server_privileges.php:1236 user_password.php:70 +#: js/messages.php:44 server_privileges.php:1241 user_password.php:70 msgid "The password is empty!" msgstr "Die wagwoord is leeg!" -#: js/messages.php:45 server_privileges.php:1234 user_password.php:73 +#: js/messages.php:45 server_privileges.php:1239 user_password.php:73 msgid "The passwords aren't the same!" msgstr "Die wagwoorde is verskillend!" -#: js/messages.php:49 pmd_general.php:342 pmd_general.php:379 +#: js/messages.php:46 +#, fuzzy +#| msgid "Add a new User" +msgid "Add a New User" +msgstr "Voeg 'n nuwe gebruiker by" + +#: js/messages.php:47 js/messages.php:54 pmd_general.php:342 +#: pmd_general.php:379 msgid "Cancel" msgstr "" -#: js/messages.php:52 pmd_save_pos.php:54 +#: js/messages.php:48 +#, fuzzy +msgid "Create User" +msgstr "Bediener weergawe" + +#: js/messages.php:49 +#, fuzzy +msgid "Reloading Privileges" +msgstr "Geen Regte" + +#: js/messages.php:50 +msgid "Removing Selected Users" +msgstr "" + +#: js/messages.php:57 +#, fuzzy +msgid "Loading" +msgstr "Local" + +#: js/messages.php:58 +msgid "Processing Request" +msgstr "" + +#: js/messages.php:59 +msgid "Error in Processing Request" +msgstr "" + +#: js/messages.php:60 +msgid "Dropping Column" +msgstr "" + +#: js/messages.php:61 +msgid "Adding Primary Key" +msgstr "" + +#: js/messages.php:64 pmd_save_pos.php:54 msgid "Modifications have been saved" msgstr "Veranderinge is gestoor" -#: js/messages.php:53 pmd_relation_upd.php:49 +#: js/messages.php:65 pmd_relation_upd.php:49 #, fuzzy msgid "Relation deleted" msgstr "Relasie uitsig" -#: js/messages.php:54 pmd_relation_new.php:64 +#: js/messages.php:66 pmd_relation_new.php:64 msgid "FOREIGN KEY relation added" msgstr "" -#: js/messages.php:55 pmd_relation_new.php:86 +#: js/messages.php:67 pmd_relation_new.php:86 #, fuzzy msgid "Internal relation added" msgstr "Algemene verwantskap funksies" -#: js/messages.php:56 pmd_relation_new.php:63 pmd_relation_new.php:88 +#: js/messages.php:68 pmd_relation_new.php:63 pmd_relation_new.php:88 msgid "Error: Relation not added." msgstr "" -#: js/messages.php:57 pmd_relation_new.php:31 +#: js/messages.php:69 pmd_relation_new.php:31 msgid "Error: relation already exists." msgstr "" -#: js/messages.php:58 +#: js/messages.php:70 msgid "Error saving coordinates for Designer." msgstr "" -#: js/messages.php:59 libraries/relation.lib.php:107 +#: js/messages.php:71 libraries/relation.lib.php:107 #: libraries/relation.lib.php:119 msgid "General relation features" msgstr "Algemene verwantskap funksies" -#: js/messages.php:59 libraries/relation.lib.php:101 +#: js/messages.php:71 libraries/relation.lib.php:101 #: libraries/relation.lib.php:108 msgid "Disabled" msgstr "Onbeskikbaar" -#: js/messages.php:60 +#: js/messages.php:72 msgid "Select referenced key" msgstr "" -#: js/messages.php:61 +#: js/messages.php:73 msgid "Select Foreign Key" msgstr "" -#: js/messages.php:62 +#: js/messages.php:74 msgid "Please select the primary key or a unique key" msgstr "" -#: js/messages.php:63 pmd_general.php:77 tbl_relation.php:548 +#: js/messages.php:75 pmd_general.php:77 tbl_relation.php:548 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" msgstr "Kies 'n Veld om te vertoon" #. l10n: Display text for calendar close link -#: js/messages.php:73 +#: js/messages.php:85 #, fuzzy #| msgid "None" msgid "Done" msgstr "Geen" #. l10n: Display text for previous month link in calendar -#: js/messages.php:75 +#: js/messages.php:87 #, fuzzy #| msgid "Previous" msgid "Prev" msgstr "Vorige" #. l10n: Display text for next month link in calendar -#: js/messages.php:77 libraries/common.lib.php:2353 -#: libraries/common.lib.php:2356 libraries/display_tbl.lib.php:338 +#: js/messages.php:89 libraries/common.lib.php:2357 +#: libraries/common.lib.php:2360 libraries/display_tbl.lib.php:338 #: server_binlog.php:205 server_binlog.php:207 tbl_printview.php:424 -#: tbl_structure.php:801 +#: tbl_structure.php:799 msgid "Next" msgstr "Volgende" #. l10n: Display text for current month link in calendar -#: js/messages.php:79 +#: js/messages.php:91 #, fuzzy msgid "Today" msgstr "totaal" -#: js/messages.php:82 +#: js/messages.php:94 #, fuzzy #| msgid "Binary" msgid "January" msgstr "Biner" -#: js/messages.php:83 +#: js/messages.php:95 msgid "February" msgstr "" -#: js/messages.php:84 +#: js/messages.php:96 #, fuzzy #| msgid "Mar" msgid "March" msgstr "Mar" -#: js/messages.php:85 +#: js/messages.php:97 #, fuzzy #| msgid "Apr" msgid "April" msgstr "Apr" -#: js/messages.php:86 +#: js/messages.php:98 msgid "May" msgstr "Mei" -#: js/messages.php:87 +#: js/messages.php:99 #, fuzzy #| msgid "Jun" msgid "June" msgstr "Jun" -#: js/messages.php:88 +#: js/messages.php:100 #, fuzzy #| msgid "Jul" msgid "July" msgstr "Jul" -#: js/messages.php:89 +#: js/messages.php:101 #, fuzzy #| msgid "Aug" msgid "August" msgstr "Aug" -#: js/messages.php:90 +#: js/messages.php:102 msgid "September" msgstr "" -#: js/messages.php:91 +#: js/messages.php:103 #, fuzzy #| msgid "Oct" msgid "October" msgstr "Okt" -#: js/messages.php:92 +#: js/messages.php:104 msgid "November" msgstr "" -#: js/messages.php:93 +#: js/messages.php:105 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:97 libraries/common.lib.php:1557 +#: js/messages.php:109 libraries/common.lib.php:1557 msgid "Jan" msgstr "Jan" #. l10n: Short month name -#: js/messages.php:99 libraries/common.lib.php:1559 +#: js/messages.php:111 libraries/common.lib.php:1559 msgid "Feb" msgstr "Feb" #. l10n: Short month name -#: js/messages.php:101 libraries/common.lib.php:1561 +#: js/messages.php:113 libraries/common.lib.php:1561 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:103 libraries/common.lib.php:1563 +#: js/messages.php:115 libraries/common.lib.php:1563 msgid "Apr" msgstr "Apr" #. l10n: Short month name -#: js/messages.php:105 libraries/common.lib.php:1565 +#: js/messages.php:117 libraries/common.lib.php:1565 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1129,176 +1167,176 @@ msgid "May" msgstr "Mei" #. l10n: Short month name -#: js/messages.php:107 libraries/common.lib.php:1567 +#: js/messages.php:119 libraries/common.lib.php:1567 msgid "Jun" msgstr "Jun" #. l10n: Short month name -#: js/messages.php:109 libraries/common.lib.php:1569 +#: js/messages.php:121 libraries/common.lib.php:1569 msgid "Jul" msgstr "Jul" #. l10n: Short month name -#: js/messages.php:111 libraries/common.lib.php:1571 +#: js/messages.php:123 libraries/common.lib.php:1571 msgid "Aug" msgstr "Aug" #. l10n: Short month name -#: js/messages.php:113 libraries/common.lib.php:1573 +#: js/messages.php:125 libraries/common.lib.php:1573 msgid "Sep" msgstr "Sep" #. l10n: Short month name -#: js/messages.php:115 libraries/common.lib.php:1575 +#: js/messages.php:127 libraries/common.lib.php:1575 msgid "Oct" msgstr "Okt" #. l10n: Short month name -#: js/messages.php:117 libraries/common.lib.php:1577 +#: js/messages.php:129 libraries/common.lib.php:1577 msgid "Nov" msgstr "Nov" #. l10n: Short month name -#: js/messages.php:119 libraries/common.lib.php:1579 +#: js/messages.php:131 libraries/common.lib.php:1579 msgid "Dec" msgstr "Des" -#: js/messages.php:122 +#: js/messages.php:134 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "So" -#: js/messages.php:123 +#: js/messages.php:135 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "Ma" -#: js/messages.php:124 +#: js/messages.php:136 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "Di" -#: js/messages.php:125 +#: js/messages.php:137 msgid "Wednesday" msgstr "" -#: js/messages.php:126 +#: js/messages.php:138 msgid "Thursday" msgstr "" -#: js/messages.php:127 +#: js/messages.php:139 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "Fr" -#: js/messages.php:128 +#: js/messages.php:140 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:132 libraries/common.lib.php:1582 +#: js/messages.php:144 libraries/common.lib.php:1582 msgid "Sun" msgstr "So" #. l10n: Short week day name -#: js/messages.php:134 libraries/common.lib.php:1584 +#: js/messages.php:146 libraries/common.lib.php:1584 msgid "Mon" msgstr "Ma" #. l10n: Short week day name -#: js/messages.php:136 libraries/common.lib.php:1586 +#: js/messages.php:148 libraries/common.lib.php:1586 msgid "Tue" msgstr "Di" #. l10n: Short week day name -#: js/messages.php:138 libraries/common.lib.php:1588 +#: js/messages.php:150 libraries/common.lib.php:1588 msgid "Wed" msgstr "Wo" #. l10n: Short week day name -#: js/messages.php:140 libraries/common.lib.php:1590 +#: js/messages.php:152 libraries/common.lib.php:1590 msgid "Thu" msgstr "Do" #. l10n: Short week day name -#: js/messages.php:142 libraries/common.lib.php:1592 +#: js/messages.php:154 libraries/common.lib.php:1592 msgid "Fri" msgstr "Fr" #. l10n: Short week day name -#: js/messages.php:144 libraries/common.lib.php:1594 +#: js/messages.php:156 libraries/common.lib.php:1594 msgid "Sat" msgstr "Sa" #. l10n: Minimal week day name -#: js/messages.php:148 +#: js/messages.php:160 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "So" #. l10n: Minimal week day name -#: js/messages.php:150 +#: js/messages.php:162 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "Ma" #. l10n: Minimal week day name -#: js/messages.php:152 +#: js/messages.php:164 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "Di" #. l10n: Minimal week day name -#: js/messages.php:154 +#: js/messages.php:166 #, fuzzy #| msgid "Wed" msgid "We" msgstr "Wo" #. l10n: Minimal week day name -#: js/messages.php:156 +#: js/messages.php:168 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "Do" #. l10n: Minimal week day name -#: js/messages.php:158 +#: js/messages.php:170 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "Fr" #. l10n: Minimal week day name -#: js/messages.php:160 +#: js/messages.php:172 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "Sa" #. l10n: Column header for week of the year in calendar -#: js/messages.php:162 +#: js/messages.php:174 msgid "Wk" msgstr "" -#: js/messages.php:164 +#: js/messages.php:176 msgid "Hour" msgstr "" -#: js/messages.php:165 +#: js/messages.php:177 #, fuzzy #| msgid "in use" msgid "Minute" msgstr "in gebruik" -#: js/messages.php:166 +#: js/messages.php:178 #, fuzzy #| msgid "Records" msgid "Second" @@ -1355,7 +1393,7 @@ msgstr "Indekse" #: libraries/Index.class.php:444 libraries/mult_submits.inc.php:103 #: libraries/tbl_properties.inc.php:519 tbl_structure.php:33 -#: tbl_structure.php:155 tbl_structure.php:159 tbl_structure.php:474 +#: tbl_structure.php:155 tbl_structure.php:159 tbl_structure.php:472 #: tbl_tracking.php:322 msgid "Unique" msgstr "Uniek" @@ -1397,8 +1435,8 @@ msgid "" "removed." msgstr "" -#: libraries/List_Database.class.php:431 libraries/server_links.inc.php:41 -#: server_databases.php:88 server_privileges.php:1660 +#: libraries/List_Database.class.php:431 libraries/server_links.inc.php:42 +#: server_databases.php:88 server_privileges.php:1680 #: setup/lib/messages.inc.php:110 test/theme.php:93 msgid "Databases" msgstr "databasisse" @@ -1560,7 +1598,7 @@ msgstr "Wagwoord:" msgid "Server Choice" msgstr "Bediener Keuse" -#: libraries/auth/cookie.auth.lib.php:320 libraries/header.inc.php:59 +#: libraries/auth/cookie.auth.lib.php:320 libraries/header.inc.php:63 msgid "Cookies must be enabled past this point." msgstr "HTTP Koekies moet van nou af geaktifeer wees." @@ -1640,7 +1678,7 @@ msgstr "" "Kan nie iconv, libiconv of recode_string funksie gebruik terwyl die extensie " "homself as gelaai rapporteer nie. Kyk na jou PHP opstelling." -#: libraries/common.inc.php:583 +#: libraries/common.inc.php:587 msgid "" "phpMyAdmin was unable to read your configuration file!
This might " "happen if PHP finds a parse error in it or PHP cannot find the file.
Indien jy 'n bladsy kry wat leeg is, " "is alles klopdisselboom." -#: libraries/common.inc.php:594 +#: libraries/common.inc.php:598 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "" -#: libraries/common.inc.php:599 +#: libraries/common.inc.php:603 msgid "" "The $cfg['PmaAbsoluteUri'] directive MUST be set in your " "configuration file!" @@ -1669,27 +1707,27 @@ msgstr "" "Die $cfg['PmaAbsoluteUri'] veranderlike MOET gestel wees in jou " "konfigurasie leer!" -#: libraries/common.inc.php:629 +#: libraries/common.inc.php:633 #, php-format msgid "Invalid server index: %s" msgstr "" -#: libraries/common.inc.php:636 +#: libraries/common.inc.php:640 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" -#: libraries/common.inc.php:645 libraries/header.inc.php:96 +#: libraries/common.inc.php:649 libraries/header.inc.php:100 #: libraries/select_server.lib.php:41 libraries/select_server.lib.php:47 #: main.php:185 test/theme.php:57 msgid "Server" msgstr "" -#: libraries/common.inc.php:823 +#: libraries/common.inc.php:827 msgid "Invalid authentication method set in configuration:" msgstr "" -#: libraries/common.inc.php:926 +#: libraries/common.inc.php:930 #, php-format msgid "You should upgrade to %s %s or later." msgstr "" @@ -1820,45 +1858,45 @@ msgstr "." msgid "%B %d, %Y at %I:%M %p" msgstr "%B %d, %Y at %I:%M %p" -#: libraries/common.lib.php:1907 +#: libraries/common.lib.php:1911 #, 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:2322 libraries/common.lib.php:2325 +#: libraries/common.lib.php:2326 libraries/common.lib.php:2329 #: libraries/display_tbl.lib.php:290 server_status.php:719 msgid "Begin" msgstr "Begin" -#: libraries/common.lib.php:2323 libraries/common.lib.php:2326 +#: libraries/common.lib.php:2327 libraries/common.lib.php:2330 #: libraries/display_tbl.lib.php:291 server_binlog.php:168 #: server_binlog.php:170 msgid "Previous" msgstr "Vorige" -#: libraries/common.lib.php:2354 libraries/common.lib.php:2357 +#: libraries/common.lib.php:2358 libraries/common.lib.php:2361 #: libraries/display_tbl.lib.php:353 msgid "End" msgstr "Einde" -#: libraries/common.lib.php:2430 +#: libraries/common.lib.php:2434 #, php-format msgid "Jump to database "%s"." msgstr "" -#: libraries/common.lib.php:2450 +#: libraries/common.lib.php:2454 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" -#: libraries/common.lib.php:2830 libraries/common.lib.php:2837 +#: libraries/common.lib.php:2834 libraries/common.lib.php:2841 #: libraries/db_links.inc.php:68 libraries/export/sql.php:25 -#: libraries/import/sql.php:18 libraries/server_links.inc.php:45 +#: libraries/import/sql.php:18 libraries/server_links.inc.php:46 #: libraries/tbl_links.inc.php:60 querywindow.php:99 test/theme.php:97 msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2839 libraries/db_links.inc.php:104 +#: libraries/common.lib.php:2843 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,16 +1943,16 @@ msgstr "Navraag dmv Voorbeeld" msgid "Designer" msgstr "" -#: libraries/db_links.inc.php:98 libraries/server_links.inc.php:88 +#: libraries/db_links.inc.php:98 libraries/server_links.inc.php:89 #: libraries/tbl_links.inc.php:91 pmd_pdf.php:84 pmd_pdf.php:110 #: setup/frames/menu.inc.php:21 #, fuzzy msgid "Import" msgstr "Export" -#: libraries/db_links.inc.php:111 libraries/server_links.inc.php:66 -#: server_privileges.php:111 server_privileges.php:1722 -#: server_privileges.php:2071 test/theme.php:117 +#: libraries/db_links.inc.php:111 libraries/server_links.inc.php:67 +#: server_privileges.php:112 server_privileges.php:1742 +#: server_privileges.php:2092 test/theme.php:117 msgid "Privileges" msgstr "Regte" @@ -1933,7 +1971,7 @@ msgid "" msgstr "" #: libraries/db_structure.lib.php:69 server_databases.php:142 -#: tbl_printview.php:336 tbl_structure.php:682 +#: tbl_printview.php:336 tbl_structure.php:680 msgid "Overhead" msgstr "Overhead" @@ -1950,7 +1988,7 @@ msgstr "" msgid "(or the local MySQL server's socket is not correctly configured)" msgstr "" -#: libraries/dbi/mysql.dbi.lib.php:362 tbl_structure.php:608 +#: libraries/dbi/mysql.dbi.lib.php:362 tbl_structure.php:606 msgid "Details..." msgstr "" @@ -1960,22 +1998,22 @@ msgid "Change password" msgstr "Verander wagwoord" #: libraries/display_change_password.lib.php:35 -#: libraries/replication_gui.lib.php:345 server_privileges.php:807 +#: libraries/replication_gui.lib.php:345 server_privileges.php:808 msgid "No Password" msgstr "Geen Wagwoord" #: 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:796 -#: server_privileges.php:800 server_privileges.php:811 -#: server_privileges.php:1538 server_synchronize.php:1175 +#: libraries/replication_gui.lib.php:349 server_privileges.php:797 +#: server_privileges.php:801 server_privileges.php:812 +#: server_privileges.php:1558 server_synchronize.php:1175 msgid "Password" msgstr "Wagwoord" #: libraries/display_change_password.lib.php:46 #: libraries/replication_gui.lib.php:353 libraries/replication_gui.lib.php:356 -#: server_privileges.php:815 server_privileges.php:818 +#: server_privileges.php:816 server_privileges.php:819 msgid "Re-type" msgstr "Tik weer" @@ -1988,12 +2026,12 @@ msgid "MySQL 4.0 compatible" msgstr "" #: libraries/display_change_password.lib.php:72 -#: libraries/replication_gui.lib.php:360 server_privileges.php:822 +#: libraries/replication_gui.lib.php:360 server_privileges.php:823 msgid "Generate Password" msgstr "" #: libraries/display_change_password.lib.php:75 -#: libraries/replication_gui.lib.php:363 server_privileges.php:825 +#: libraries/replication_gui.lib.php:363 server_privileges.php:826 #, fuzzy msgid "Generate" msgstr "Voortgebring deur" @@ -2007,8 +2045,8 @@ msgstr "Skep 'n nuwe databasis" msgid "Create" msgstr "Skep" -#: libraries/display_create_database.lib.php:40 server_privileges.php:113 -#: server_privileges.php:1427 server_replication.php:35 +#: libraries/display_create_database.lib.php:40 server_privileges.php:114 +#: server_privileges.php:1447 server_replication.php:35 msgid "No Privileges" msgstr "Geen Regte" @@ -2097,7 +2135,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:1875 server_processlist.php:75 +#: server_privileges.php:1895 server_processlist.php:75 msgid "None" msgstr "Geen" @@ -2281,7 +2319,7 @@ msgstr "" #: libraries/import/docsql.php:34 libraries/import/ldi.php:47 #: libraries/import/ods.php:30 libraries/import/sql.php:20 #: libraries/import/xls.php:26 libraries/import/xlsx.php:26 -#: libraries/import/xml.php:25 tbl_select.php:267 tbl_structure.php:753 +#: libraries/import/xml.php:25 tbl_select.php:267 tbl_structure.php:751 #, fuzzy msgid "Options" msgstr "Operasies" @@ -2359,7 +2397,7 @@ msgstr "" #: libraries/display_tbl.lib.php:2089 libraries/mult_submits.inc.php:113 #: querywindow.php:125 querywindow.php:129 querywindow.php:132 -#: tbl_structure.php:25 tbl_structure.php:150 tbl_structure.php:470 +#: tbl_structure.php:25 tbl_structure.php:150 tbl_structure.php:468 msgid "Change" msgstr "Verander" @@ -2427,7 +2465,7 @@ msgstr "" #: libraries/engines/innodb.lib.php:194 server_databases.php:137 #: server_databases.php:305 server_status.php:525 server_status.php:586 -#: server_status.php:607 tbl_printview.php:351 tbl_structure.php:696 +#: server_status.php:607 tbl_printview.php:351 tbl_structure.php:694 #, fuzzy msgid "Total" msgstr "totaal" @@ -2674,7 +2712,7 @@ msgid "" msgstr "" #: libraries/export/codegen.php:37 setup/lib/messages.inc.php:88 -#: tbl_printview.php:376 tbl_structure.php:737 +#: tbl_printview.php:376 tbl_structure.php:735 msgid "Format" msgstr "Formaat" @@ -2744,8 +2782,8 @@ 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:576 server_replication.php:316 tbl_printview.php:317 -#: tbl_structure.php:665 +#: server_privileges.php:577 server_replication.php:316 tbl_printview.php:317 +#: tbl_structure.php:663 msgid "Data" msgstr "Data" @@ -2796,9 +2834,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:731 -#: server_privileges.php:734 server_privileges.php:790 -#: server_privileges.php:1537 server_privileges.php:2069 +#: libraries/replication_gui.lib.php:329 server_privileges.php:732 +#: server_privileges.php:735 server_privileges.php:791 +#: server_privileges.php:1557 server_privileges.php:2090 #: server_processlist.php:55 server_synchronize.php:1159 msgid "Host" msgstr "Gasheer (host)" @@ -2996,7 +3034,7 @@ msgstr "" msgid "Open new phpMyAdmin window" msgstr "" -#: libraries/header.inc.php:115 +#: libraries/header.inc.php:119 #, fuzzy msgid "New table" msgstr "Geen tabelle" @@ -3156,20 +3194,20 @@ 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 +#: tbl_structure.php:471 msgid "Primary" msgstr "Primere" #: libraries/mult_submits.inc.php:98 libraries/tbl_properties.inc.php:116 #: libraries/tbl_properties.inc.php:525 tbl_printview.php:326 #: tbl_structure.php:31 tbl_structure.php:154 tbl_structure.php:158 -#: tbl_structure.php:475 tbl_structure.php:673 +#: tbl_structure.php:473 tbl_structure.php:671 msgid "Index" msgstr "Indeks" #: libraries/mult_submits.inc.php:108 libraries/tbl_properties.inc.php:531 #: tbl_structure.php:35 tbl_structure.php:156 tbl_structure.php:160 -#: tbl_structure.php:478 +#: tbl_structure.php:476 msgid "Fulltext" msgstr "Volteks" @@ -3470,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:711 -#: server_privileges.php:714 server_privileges.php:721 +#: libraries/replication_gui.lib.php:259 server_privileges.php:712 +#: server_privileges.php:715 server_privileges.php:722 #: server_synchronize.php:1171 msgid "User name" msgstr "Gebruiker naam" @@ -3496,7 +3534,7 @@ msgstr "" #: 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 +#: tbl_structure.php:727 msgid "Value" msgstr "Waarde" @@ -3514,34 +3552,34 @@ msgstr "" msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:254 server_privileges.php:716 +#: libraries/replication_gui.lib.php:254 server_privileges.php:717 msgid "Any user" msgstr "Enige gebruiker" #: 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 +#: libraries/replication_gui.lib.php:346 server_privileges.php:718 +#: server_privileges.php:785 server_privileges.php:809 +#: server_privileges.php:1948 server_privileges.php:1978 msgid "Use text field" msgstr "" -#: libraries/replication_gui.lib.php:302 server_privileges.php:764 +#: libraries/replication_gui.lib.php:302 server_privileges.php:765 msgid "Any host" msgstr "Enige gasheer (host)" -#: libraries/replication_gui.lib.php:306 server_privileges.php:768 +#: libraries/replication_gui.lib.php:306 server_privileges.php:769 msgid "Local" msgstr "Local" -#: libraries/replication_gui.lib.php:312 server_privileges.php:773 +#: libraries/replication_gui.lib.php:312 server_privileges.php:774 msgid "This Host" msgstr "" -#: libraries/replication_gui.lib.php:318 server_privileges.php:779 +#: libraries/replication_gui.lib.php:318 server_privileges.php:780 msgid "Use Host Table" msgstr "" -#: libraries/replication_gui.lib.php:331 server_privileges.php:792 +#: libraries/replication_gui.lib.php:331 server_privileges.php:793 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -3575,30 +3613,30 @@ msgstr "" msgid "Servers" msgstr "" -#: libraries/server_links.inc.php:53 server_engines.php:112 +#: libraries/server_links.inc.php:54 server_engines.php:112 #: server_engines.php:116 server_status.php:415 test/theme.php:105 msgid "Variables" msgstr "" -#: libraries/server_links.inc.php:57 test/theme.php:109 +#: libraries/server_links.inc.php:58 test/theme.php:109 msgid "Charsets" msgstr "" -#: libraries/server_links.inc.php:61 test/theme.php:113 +#: libraries/server_links.inc.php:62 test/theme.php:113 msgid "Engines" msgstr "" -#: libraries/server_links.inc.php:76 server_binlog.php:110 +#: libraries/server_links.inc.php:77 server_binlog.php:110 #: server_status.php:364 test/theme.php:121 #, fuzzy msgid "Binary log" msgstr "Biner" -#: libraries/server_links.inc.php:80 +#: libraries/server_links.inc.php:81 msgid "Processes" msgstr "" -#: libraries/server_links.inc.php:92 server_synchronize.php:1092 +#: libraries/server_links.inc.php:93 server_synchronize.php:1092 #: server_synchronize.php:1100 msgid "Synchronize" msgstr "" @@ -3844,12 +3882,12 @@ msgstr "" msgid "Save" msgstr "Stoor" -#: libraries/tbl_properties.inc.php:780 tbl_structure.php:542 +#: libraries/tbl_properties.inc.php:780 tbl_structure.php:540 #, fuzzy, php-format msgid "Add %s column(s)" msgstr "Voeg 'n nuwe veld by" -#: libraries/tbl_properties.inc.php:784 tbl_structure.php:536 +#: libraries/tbl_properties.inc.php:784 tbl_structure.php:534 #, fuzzy #| msgid "You have to choose at least one column to display" msgid "You have to add at least one column." @@ -3984,8 +4022,8 @@ msgstr "Herstel" msgid "Protocol version" msgstr "" -#: main.php:189 server_privileges.php:1389 server_privileges.php:1536 -#: server_privileges.php:1650 server_privileges.php:2068 +#: main.php:189 server_privileges.php:1406 server_privileges.php:1556 +#: server_privileges.php:1670 server_privileges.php:2089 #: server_processlist.php:54 msgid "User" msgstr "Gebruiker" @@ -4414,111 +4452,111 @@ msgstr "" msgid "View dump (schema) of databases" msgstr "Sien die storting (skema) van die databasis" -#: server_privileges.php:24 server_privileges.php:266 +#: server_privileges.php:25 server_privileges.php:267 msgid "Includes all privileges except GRANT." msgstr "" -#: server_privileges.php:25 server_privileges.php:192 -#: server_privileges.php:515 +#: server_privileges.php:26 server_privileges.php:193 +#: server_privileges.php:516 msgid "Allows altering the structure of existing tables." msgstr "" -#: server_privileges.php:26 server_privileges.php:208 -#: server_privileges.php:521 +#: server_privileges.php:27 server_privileges.php:209 +#: server_privileges.php:522 msgid "Allows altering and dropping stored routines." msgstr "" -#: server_privileges.php:27 server_privileges.php:184 -#: server_privileges.php:514 +#: server_privileges.php:28 server_privileges.php:185 +#: server_privileges.php:515 msgid "Allows creating new databases and tables." msgstr "" -#: server_privileges.php:28 server_privileges.php:207 -#: server_privileges.php:520 +#: server_privileges.php:29 server_privileges.php:208 +#: server_privileges.php:521 msgid "Allows creating stored routines." msgstr "" -#: server_privileges.php:29 server_privileges.php:514 +#: server_privileges.php:30 server_privileges.php:515 msgid "Allows creating new tables." msgstr "" -#: server_privileges.php:30 server_privileges.php:195 -#: server_privileges.php:518 +#: server_privileges.php:31 server_privileges.php:196 +#: server_privileges.php:519 msgid "Allows creating temporary tables." msgstr "" -#: server_privileges.php:31 server_privileges.php:209 -#: server_privileges.php:554 +#: server_privileges.php:32 server_privileges.php:210 +#: server_privileges.php:555 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 +#: server_privileges.php:33 server_privileges.php:200 +#: server_privileges.php:204 server_privileges.php:527 +#: server_privileges.php:531 msgid "Allows creating new views." msgstr "" -#: server_privileges.php:33 server_privileges.php:183 -#: server_privileges.php:506 +#: server_privileges.php:34 server_privileges.php:184 +#: server_privileges.php:507 msgid "Allows deleting data." msgstr "" -#: server_privileges.php:34 server_privileges.php:185 -#: server_privileges.php:517 +#: server_privileges.php:35 server_privileges.php:186 +#: server_privileges.php:518 msgid "Allows dropping databases and tables." msgstr "" -#: server_privileges.php:35 server_privileges.php:517 +#: server_privileges.php:36 server_privileges.php:518 msgid "Allows dropping tables." msgstr "" -#: server_privileges.php:36 server_privileges.php:200 -#: server_privileges.php:534 +#: server_privileges.php:37 server_privileges.php:201 +#: server_privileges.php:535 msgid "Allows to set up events for the event scheduler" msgstr "" -#: server_privileges.php:37 server_privileges.php:210 -#: server_privileges.php:522 +#: server_privileges.php:38 server_privileges.php:211 +#: server_privileges.php:523 msgid "Allows executing stored routines." msgstr "" -#: server_privileges.php:38 server_privileges.php:189 -#: server_privileges.php:509 +#: server_privileges.php:39 server_privileges.php:190 +#: server_privileges.php:510 msgid "Allows importing data from and exporting data into files." msgstr "" -#: server_privileges.php:39 server_privileges.php:540 +#: server_privileges.php:40 server_privileges.php:541 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" -#: server_privileges.php:40 server_privileges.php:191 -#: server_privileges.php:516 +#: server_privileges.php:41 server_privileges.php:192 +#: server_privileges.php:517 msgid "Allows creating and dropping indexes." msgstr "" -#: server_privileges.php:41 server_privileges.php:181 -#: server_privileges.php:442 server_privileges.php:504 +#: server_privileges.php:42 server_privileges.php:182 +#: server_privileges.php:443 server_privileges.php:505 msgid "Allows inserting and replacing data." msgstr "" -#: server_privileges.php:42 server_privileges.php:196 -#: server_privileges.php:549 +#: server_privileges.php:43 server_privileges.php:197 +#: server_privileges.php:550 msgid "Allows locking tables for the current thread." msgstr "" -#: server_privileges.php:43 server_privileges.php:646 -#: server_privileges.php:648 +#: server_privileges.php:44 server_privileges.php:647 +#: server_privileges.php:649 msgid "Limits the number of new connections the user may open per hour." msgstr "Limits the number of new connections the user may open per hour." -#: server_privileges.php:44 server_privileges.php:634 -#: server_privileges.php:636 +#: server_privileges.php:45 server_privileges.php:635 +#: server_privileges.php:637 msgid "Limits the number of queries the user may send to the server per hour." msgstr "Limits the number of queries the user may send to the server per hour." -#: server_privileges.php:45 server_privileges.php:640 -#: server_privileges.php:642 +#: server_privileges.php:46 server_privileges.php:641 +#: server_privileges.php:643 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -4526,218 +4564,218 @@ 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 +#: server_privileges.php:47 server_privileges.php:653 +#: server_privileges.php:655 #, fuzzy msgid "Limits the number of simultaneous connections the user may have." msgstr "Limits the number of new connections the user may open per hour." -#: server_privileges.php:47 server_privileges.php:188 -#: server_privileges.php:544 +#: server_privileges.php:48 server_privileges.php:189 +#: server_privileges.php:545 msgid "Allows viewing processes of all users" msgstr "" -#: server_privileges.php:48 server_privileges.php:190 -#: server_privileges.php:448 server_privileges.php:550 +#: server_privileges.php:49 server_privileges.php:191 +#: server_privileges.php:449 server_privileges.php:551 msgid "Has no effect in this MySQL version." msgstr "" -#: server_privileges.php:49 server_privileges.php:186 -#: server_privileges.php:545 +#: server_privileges.php:50 server_privileges.php:187 +#: server_privileges.php:546 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" -#: server_privileges.php:50 server_privileges.php:198 -#: server_privileges.php:552 +#: server_privileges.php:51 server_privileges.php:199 +#: server_privileges.php:553 msgid "Allows the user to ask where the slaves / masters are." msgstr "" -#: server_privileges.php:51 server_privileges.php:197 -#: server_privileges.php:553 +#: server_privileges.php:52 server_privileges.php:198 +#: server_privileges.php:554 msgid "Needed for the replication slaves." msgstr "" -#: server_privileges.php:52 server_privileges.php:180 -#: server_privileges.php:439 server_privileges.php:503 +#: server_privileges.php:53 server_privileges.php:181 +#: server_privileges.php:440 server_privileges.php:504 msgid "Allows reading data." msgstr "" -#: server_privileges.php:53 server_privileges.php:193 -#: server_privileges.php:547 +#: server_privileges.php:54 server_privileges.php:194 +#: server_privileges.php:548 msgid "Gives access to the complete list of databases." msgstr "" -#: server_privileges.php:54 server_privileges.php:204 -#: server_privileges.php:206 server_privileges.php:519 +#: server_privileges.php:55 server_privileges.php:205 +#: server_privileges.php:207 server_privileges.php:520 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "" -#: server_privileges.php:55 server_privileges.php:187 -#: server_privileges.php:546 +#: server_privileges.php:56 server_privileges.php:188 +#: server_privileges.php:547 msgid "Allows shutting down the server." msgstr "" -#: server_privileges.php:56 server_privileges.php:194 -#: server_privileges.php:543 +#: server_privileges.php:57 server_privileges.php:195 +#: server_privileges.php:544 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " "killing threads of other users." msgstr "" -#: server_privileges.php:57 server_privileges.php:201 -#: server_privileges.php:535 +#: server_privileges.php:58 server_privileges.php:202 +#: server_privileges.php:536 msgid "Allows creating and dropping triggers" msgstr "" -#: server_privileges.php:58 server_privileges.php:182 -#: server_privileges.php:445 server_privileges.php:505 +#: server_privileges.php:59 server_privileges.php:183 +#: server_privileges.php:446 server_privileges.php:506 msgid "Allows changing data." msgstr "" -#: server_privileges.php:59 server_privileges.php:260 +#: server_privileges.php:60 server_privileges.php:261 #, fuzzy msgid "No privileges." msgstr "Geen Regte" -#: server_privileges.php:302 server_privileges.php:303 +#: server_privileges.php:303 server_privileges.php:304 #, fuzzy #| msgid "None" msgctxt "None privileges" msgid "None" msgstr "Geen" -#: server_privileges.php:431 server_privileges.php:566 -#: server_privileges.php:1718 server_privileges.php:1724 +#: server_privileges.php:432 server_privileges.php:567 +#: server_privileges.php:1738 server_privileges.php:1744 msgid "Table-specific privileges" msgstr "" -#: server_privileges.php:432 server_privileges.php:574 -#: server_privileges.php:1540 +#: server_privileges.php:433 server_privileges.php:575 +#: server_privileges.php:1560 msgid " Note: MySQL privilege names are expressed in English " msgstr " Nota: MySQL regte name word in Engels vertoon " -#: server_privileges.php:563 server_privileges.php:1539 +#: server_privileges.php:564 server_privileges.php:1559 #, fuzzy msgid "Global privileges" msgstr "Geen Regte" -#: server_privileges.php:565 server_privileges.php:1718 +#: server_privileges.php:566 server_privileges.php:1738 msgid "Database-specific privileges" msgstr "" -#: server_privileges.php:610 +#: server_privileges.php:611 msgid "Administration" msgstr "" -#: server_privileges.php:630 +#: server_privileges.php:631 msgid "Resource limits" msgstr "" -#: server_privileges.php:631 +#: server_privileges.php:632 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "" -#: server_privileges.php:708 +#: server_privileges.php:709 #, fuzzy msgid "Login Information" msgstr "Wys PHP informasie" -#: server_privileges.php:802 +#: server_privileges.php:803 msgid "Do not change the password" msgstr "Moenie die wagwoord verander nie" -#: server_privileges.php:843 server_privileges.php:2205 +#: server_privileges.php:844 server_privileges.php:2226 #, fuzzy #| msgid "No user(s) found." msgid "No user found." msgstr "Geen gebruiker(s) gevind nie." -#: server_privileges.php:887 +#: server_privileges.php:888 #, php-format msgid "The user %s already exists!" msgstr "" -#: server_privileges.php:970 +#: server_privileges.php:971 msgid "You have added a new user." msgstr "Jy het 'n nuwe gebruiker bygevoeg." -#: server_privileges.php:1191 +#: server_privileges.php:1196 #, php-format msgid "You have updated the privileges for %s." msgstr "Jy het die regte opgedateer vir %s." -#: server_privileges.php:1215 +#: server_privileges.php:1220 #, php-format msgid "You have revoked the privileges for %s" msgstr "Jy het die regte herroep vir %s" -#: server_privileges.php:1251 +#: server_privileges.php:1256 #, php-format msgid "The password for %s was changed successfully." msgstr "" -#: server_privileges.php:1271 +#: server_privileges.php:1276 #, php-format msgid "Deleting %s" msgstr "" -#: server_privileges.php:1282 +#: server_privileges.php:1287 msgid "No users selected for deleting!" msgstr "" -#: server_privileges.php:1285 +#: server_privileges.php:1290 msgid "Reloading the privileges" msgstr "" -#: server_privileges.php:1300 +#: server_privileges.php:1305 msgid "The selected users have been deleted successfully." msgstr "" -#: server_privileges.php:1335 +#: server_privileges.php:1344 msgid "The privileges were reloaded successfully." msgstr "" -#: server_privileges.php:1363 server_privileges.php:1649 +#: server_privileges.php:1380 server_privileges.php:1669 msgid "Edit Privileges" msgstr "Verander Regte" -#: server_privileges.php:1372 +#: server_privileges.php:1389 msgid "Revoke" msgstr "Herroep" -#: server_privileges.php:1404 +#: server_privileges.php:1424 msgid "User overview" msgstr "" -#: server_privileges.php:1541 server_privileges.php:1723 -#: server_privileges.php:2072 +#: server_privileges.php:1561 server_privileges.php:1743 +#: server_privileges.php:2093 msgid "Grant" msgstr "" -#: server_privileges.php:1560 server_privileges.php:2162 +#: server_privileges.php:1580 server_privileges.php:2183 msgid "Any" msgstr "Enige" -#: server_privileges.php:1609 server_privileges.php:1633 -#: server_privileges.php:2027 server_privileges.php:2216 +#: server_privileges.php:1629 server_privileges.php:1653 +#: server_privileges.php:2048 server_privileges.php:2237 msgid "Add a new User" msgstr "Voeg 'n nuwe gebruiker by" -#: server_privileges.php:1614 +#: server_privileges.php:1634 msgid "Remove selected users" msgstr "" -#: server_privileges.php:1617 +#: server_privileges.php:1637 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 +#: server_privileges.php:1638 server_privileges.php:1639 +#: server_privileges.php:1640 msgid "Drop the databases that have the same names as the users." msgstr "" -#: server_privileges.php:1636 +#: server_privileges.php:1656 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -4746,91 +4784,91 @@ msgid "" "sreload the privileges%s before you continue." msgstr "" -#: server_privileges.php:1684 +#: server_privileges.php:1704 msgid "The selected user was not found in the privilege table." msgstr "" -#: server_privileges.php:1724 +#: server_privileges.php:1744 msgid "Column-specific privileges" msgstr "" -#: server_privileges.php:1925 +#: server_privileges.php:1945 msgid "Add privileges on the following database" msgstr "" -#: server_privileges.php:1943 +#: server_privileges.php:1963 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" -#: server_privileges.php:1946 +#: server_privileges.php:1966 msgid "Add privileges on the following table" msgstr "" -#: server_privileges.php:2003 +#: server_privileges.php:2023 msgid "Change Login Information / Copy User" msgstr "" -#: server_privileges.php:2006 +#: server_privileges.php:2026 msgid "Create a new user with the same privileges and ..." msgstr "" -#: server_privileges.php:2008 +#: server_privileges.php:2028 msgid "... keep the old one." msgstr "" -#: server_privileges.php:2009 +#: server_privileges.php:2029 msgid " ... delete the old one from the user tables." msgstr "" -#: server_privileges.php:2010 +#: server_privileges.php:2030 msgid "" " ... revoke all active privileges from the old one and delete it afterwards." msgstr "" -#: server_privileges.php:2011 +#: server_privileges.php:2031 msgid "" " ... delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" -#: server_privileges.php:2033 +#: server_privileges.php:2054 msgid "Database for user" msgstr "" -#: server_privileges.php:2037 +#: server_privileges.php:2058 #, fuzzy #| msgid "None" msgctxt "Create none database for user" msgid "None" msgstr "Geen" -#: server_privileges.php:2038 +#: server_privileges.php:2059 msgid "Create database with same name and grant all privileges" msgstr "" -#: server_privileges.php:2039 +#: server_privileges.php:2060 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "" -#: server_privileges.php:2042 +#: server_privileges.php:2063 #, php-format msgid "Grant all privileges on database "%s"" msgstr "" -#: server_privileges.php:2065 +#: server_privileges.php:2086 #, php-format msgid "Users having access to "%s"" msgstr "" -#: server_privileges.php:2173 +#: server_privileges.php:2194 msgid "global" msgstr "" -#: server_privileges.php:2175 +#: server_privileges.php:2196 msgid "database-specific" msgstr "" -#: server_privileges.php:2177 +#: server_privileges.php:2198 msgid "wildcard" msgstr "" @@ -7506,6 +7544,10 @@ msgstr "" msgid "Show insert query" msgstr "" +#: tbl_change.php:1143 +msgid "and then" +msgstr "" + #: tbl_change.php:1147 msgid "Go back to previous page" msgstr "Terug na vorige bladsy" @@ -7587,7 +7629,7 @@ msgstr "" msgid "Add to index  %s column(s)" msgstr "Voeg by indeks  %s kolom(me)" -#: tbl_indexes.php:256 tbl_structure.php:589 tbl_structure.php:600 +#: tbl_indexes.php:256 tbl_structure.php:587 tbl_structure.php:598 msgid "Column count has to be larger than zero." msgstr "" @@ -7703,39 +7745,39 @@ msgstr "Toets referential integrity:" msgid "Show tables" msgstr "Wys tabelle" -#: tbl_printview.php:310 tbl_structure.php:656 +#: tbl_printview.php:310 tbl_structure.php:654 msgid "Space usage" msgstr "Spasie verbruik" -#: tbl_printview.php:314 tbl_structure.php:660 +#: tbl_printview.php:314 tbl_structure.php:658 msgid "Usage" msgstr "Gebruik" -#: tbl_printview.php:341 tbl_structure.php:687 +#: tbl_printview.php:341 tbl_structure.php:685 msgid "Effective" msgstr "Effektief" -#: tbl_printview.php:366 tbl_structure.php:725 +#: tbl_printview.php:366 tbl_structure.php:723 msgid "Row Statistics" msgstr "Ry Statistiek" -#: tbl_printview.php:369 tbl_structure.php:728 +#: tbl_printview.php:369 tbl_structure.php:726 msgid "Statements" msgstr "Stellings" -#: tbl_printview.php:380 tbl_structure.php:740 +#: tbl_printview.php:380 tbl_structure.php:738 msgid "static" msgstr "" -#: tbl_printview.php:382 tbl_structure.php:742 +#: tbl_printview.php:382 tbl_structure.php:740 msgid "dynamic" msgstr "dinamies" -#: tbl_printview.php:404 tbl_structure.php:785 +#: tbl_printview.php:404 tbl_structure.php:783 msgid "Row length" msgstr "Ry lengte" -#: tbl_printview.php:414 tbl_structure.php:793 +#: tbl_printview.php:414 tbl_structure.php:791 msgid " Row size " msgstr " Ry grootte " @@ -7807,49 +7849,49 @@ msgstr "Geen" msgid "Column %s has been dropped" msgstr "Tabel %s is verwyder" -#: tbl_structure.php:385 +#: tbl_structure.php:384 #, php-format msgid "A primary key has been added on %s" msgstr "'n primere sleutel is bygevoeg op %s" -#: tbl_structure.php:400 tbl_structure.php:414 tbl_structure.php:428 +#: tbl_structure.php:398 tbl_structure.php:412 tbl_structure.php:426 #, php-format msgid "An index has been added on %s" msgstr "'n Indeks is bygevoeg op %s" -#: tbl_structure.php:506 tbl_structure.php:508 +#: tbl_structure.php:504 tbl_structure.php:506 msgid "Relation view" msgstr "Relasie uitsig" -#: tbl_structure.php:515 tbl_structure.php:517 +#: tbl_structure.php:513 tbl_structure.php:515 msgid "Propose table structure" msgstr "Stel tabel struktuur voor" -#: tbl_structure.php:540 +#: tbl_structure.php:538 #, fuzzy msgid "Add column" msgstr "Voeg 'n nuwe veld by" -#: tbl_structure.php:554 +#: tbl_structure.php:552 msgid "At End of Table" msgstr "By Einde van Tabel" -#: tbl_structure.php:555 +#: tbl_structure.php:553 msgid "At Beginning of Table" msgstr "By Begin van Tabel" -#: tbl_structure.php:556 +#: tbl_structure.php:554 #, php-format msgid "After %s" msgstr "Na %s" -#: tbl_structure.php:594 +#: tbl_structure.php:592 #, fuzzy, php-format #| msgid "Create an index on %s columns" msgid "Create an index on  %s columns" msgstr "Skep 'n indeks op %s kolomme" -#: tbl_structure.php:756 +#: tbl_structure.php:754 msgid "partitioned" msgstr "" @@ -8188,10 +8230,6 @@ msgstr "Hernoem tabel na" #~ msgid "has been altered." #~ msgstr "is verander." -#, fuzzy -#~ msgid "Reload privileges" -#~ msgstr "Geen Regte" - #, fuzzy #~| msgid "Select All" #~ msgctxt "Create SELECT * query" diff --git a/po/ar.po b/po/ar.po index 2abf41bd6..3146a8dce 100755 --- a/po/ar.po +++ b/po/ar.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-06-13 09:03-0400\n" +"POT-Creation-Date: 2010-06-22 00:55+0530\n" "PO-Revision-Date: 2010-05-29 14:16+0200\n" "Last-Translator: Ahmed \n" "Language-Team: arabic \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:1514 +#: libraries/display_tbl.lib.php:417 server_privileges.php:1534 msgid "Show all" msgstr "شاهد الكل" -#: browse_foreigners.php:82 libraries/common.lib.php:2313 +#: browse_foreigners.php:82 libraries/common.lib.php:2317 #: 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,18 +38,18 @@ 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:2831 -#: libraries/common.lib.php:2838 libraries/db_links.inc.php:75 +#: db_structure.php:106 libraries/common.lib.php:2835 +#: libraries/common.lib.php:2842 libraries/db_links.inc.php:75 #: libraries/tbl_links.inc.php:63 msgid "Search" msgstr "ابحث" -#: browse_foreigners.php:153 db_operations.php:385 db_operations.php:429 -#: db_operations.php:499 db_operations.php:609 db_search.php:362 -#: db_structure.php:567 js/messages.php:48 libraries/Config.class.php:1046 +#: browse_foreigners.php:153 db_operations.php:394 db_operations.php:438 +#: db_operations.php:508 db_operations.php:618 db_search.php:362 +#: db_structure.php:565 js/messages.php:53 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:1335 libraries/common.lib.php:2288 +#: libraries/common.lib.php:1335 libraries/common.lib.php:2292 #: 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,15 +60,15 @@ 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:664 server_privileges.php:1624 -#: server_privileges.php:1971 server_privileges.php:2018 -#: server_privileges.php:2057 server_replication.php:235 +#: server_privileges.php:665 server_privileges.php:1644 +#: server_privileges.php:1991 server_privileges.php:2038 +#: server_privileges.php:2078 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 #: tbl_operations.php:302 tbl_operations.php:499 tbl_operations.php:561 -#: tbl_operations.php:681 tbl_select.php:327 tbl_structure.php:562 -#: tbl_structure.php:597 tbl_tracking.php:395 tbl_tracking.php:512 +#: tbl_operations.php:681 tbl_select.php:327 tbl_structure.php:560 +#: tbl_structure.php:595 tbl_tracking.php:395 tbl_tracking.php:512 #: view_create.php:182 view_operations.php:101 msgid "Go" msgstr " تنفيذ " @@ -94,7 +94,7 @@ msgstr "استخدم هذه القيمة" msgid "Database %1$s has been created." msgstr "" -#: db_datadict.php:49 db_operations.php:378 +#: db_datadict.php:49 db_operations.php:387 msgid "Database comment: " msgstr "ملاحظة قاعدة البيانات: " @@ -121,10 +121,10 @@ 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:2070 +#: pdf_schema.php:1263 pdf_schema.php:1284 server_privileges.php:2091 #: 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 +#: tbl_structure.php:657 tbl_tracking.php:274 tbl_tracking.php:321 msgid "Type" msgstr "النوع" @@ -137,7 +137,7 @@ msgstr "النوع" msgid "Null" msgstr "خالي" -#: db_datadict.php:178 db_structure.php:501 libraries/export/htmlword.php:247 +#: db_datadict.php:178 db_structure.php:499 libraries/export/htmlword.php:247 #: libraries/export/latex.php:360 libraries/export/odt.php:303 #: libraries/export/texytext.php:236 libraries/tbl_properties.inc.php:106 #: pdf_schema.php:1266 pdf_schema.php:1287 tbl_printview.php:146 @@ -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: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 +#: pdf_schema.php:1344 server_privileges.php:1588 server_privileges.php:1599 +#: server_privileges.php:1909 server_privileges.php:1914 +#: server_privileges.php:2208 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:1565 -#: server_privileges.php:1579 server_privileges.php:1889 -#: server_privileges.php:1892 server_privileges.php:2187 sql.php:193 +#: server_databases.php:64 server_privileges.php:1585 +#: server_privileges.php:1599 server_privileges.php:1909 +#: server_privileges.php:1912 server_privileges.php:2208 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" @@ -210,125 +210,121 @@ msgstr "تحديد الكل" msgid "Unselect All" msgstr "إلغاء تحديد الكل" -#: db_operations.php:38 tbl_create.php:54 +#: db_operations.php:43 tbl_create.php:54 msgid "The database name is empty!" msgstr "إسم قاعدة البيانات خالي!" -#: db_operations.php:236 +#: db_operations.php:241 #, php-format msgid "Database %s has been renamed to %s" msgstr "تم إعادة تسمية قاعدة البيانات %s إلى %s" -#: db_operations.php:240 +#: db_operations.php:245 #, php-format msgid "Database %s has been copied to %s" msgstr "تم نسخ قاعدة البيانات %s إلى %s" -#: db_operations.php:412 +#: db_operations.php:421 msgid "Rename database to" msgstr "أعد تسمية قاعدة البيانات ﺇﻠﻰ" -#: db_operations.php:417 server_processlist.php:57 +#: db_operations.php:426 server_processlist.php:57 msgid "Command" msgstr "أمر" -#: db_operations.php:429 tbl_change.php:1143 -msgid "and then" -msgstr "وبعدها" - -#: db_operations.php:455 +#: db_operations.php:464 msgid "Copy database to" msgstr "إنسخ قاعدة البيانات إلى" -#: db_operations.php:462 tbl_operations.php:528 tbl_tracking.php:388 +#: db_operations.php:471 tbl_operations.php:528 tbl_tracking.php:388 msgid "Structure only" msgstr "البنية فقط" -#: db_operations.php:463 tbl_operations.php:529 tbl_tracking.php:390 +#: db_operations.php:472 tbl_operations.php:529 tbl_tracking.php:390 msgid "Structure and data" msgstr "البنية والبيانات" -#: db_operations.php:464 tbl_operations.php:530 tbl_tracking.php:389 +#: db_operations.php:473 tbl_operations.php:530 tbl_tracking.php:389 msgid "Data only" msgstr "بيانات فقط" -#: db_operations.php:472 +#: db_operations.php:481 msgid "CREATE DATABASE before copying" msgstr "CREATE DATABASE قبل النسخ" -#: db_operations.php:475 libraries/export/sql.php:52 +#: db_operations.php:484 libraries/export/sql.php:52 #: libraries/export/sql.php:74 libraries/export/sql.php:76 #: libraries/export/sql.php:82 tbl_operations.php:536 #, php-format msgid "Add %s" msgstr "أضف %s" -#: db_operations.php:479 libraries/export/sql.php:78 tbl_operations.php:299 +#: db_operations.php:488 libraries/export/sql.php:78 tbl_operations.php:299 #: tbl_operations.php:538 msgid "Add AUTO_INCREMENT value" msgstr "أضف قيمة AUTO_INCREMENT" -#: db_operations.php:483 tbl_operations.php:545 +#: db_operations.php:492 tbl_operations.php:545 msgid "Add constraints" msgstr "أضف قيودا" -#: db_operations.php:496 +#: db_operations.php:505 msgid "Switch to copied database" msgstr "" -#: db_operations.php:537 +#: db_operations.php:546 msgid "BLOB Repository" msgstr "" -#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1352 -#: libraries/server_links.inc.php:49 server_processlist.php:59 +#: db_operations.php:549 db_tracking.php:76 libraries/common.lib.php:1352 +#: libraries/server_links.inc.php:50 server_processlist.php:59 #: tbl_tracking.php:596 test/theme.php:101 msgid "Status" msgstr "وضع" -#: db_operations.php:548 +#: db_operations.php:557 #, fuzzy #| msgid "Enabled" msgctxt "BLOB repository" msgid "Enabled" msgstr "مفعل" -#: db_operations.php:552 +#: db_operations.php:561 msgid "Disable" msgstr "عطل" -#: db_operations.php:562 +#: db_operations.php:571 msgid "Damaged" msgstr "" -#: db_operations.php:566 +#: db_operations.php:575 #, fuzzy #| msgid "Repair" msgctxt "BLOB repository" msgid "Repair" msgstr "صلح" -#: db_operations.php:574 +#: db_operations.php:583 #, fuzzy #| msgid "Disabled" msgctxt "BLOB repository" msgid "Disabled" msgstr "معطل" -#: db_operations.php:578 +#: db_operations.php:587 msgid "Enable" msgstr "فعل" -#: db_operations.php:602 libraries/Index.class.php:448 +#: db_operations.php:611 libraries/Index.class.php:448 #: libraries/db_structure.lib.php:62 libraries/mysql_charsets.lib.php:107 #: libraries/tbl_properties.inc.php:107 libraries/tbl_properties.inc.php:730 #: server_collations.php:54 server_collations.php:66 server_databases.php:111 #: tbl_operations.php:363 tbl_select.php:137 tbl_structure.php:179 -#: tbl_structure.php:767 tbl_tracking.php:275 tbl_tracking.php:326 +#: tbl_structure.php:765 tbl_tracking.php:275 tbl_tracking.php:326 msgid "Collation" msgstr "Collation" -#: db_operations.php:615 main.php:316 pdf_schema.php:34 +#: db_operations.php:624 main.php:316 pdf_schema.php:34 #, php-format msgid "" "The additional features for working with linked tables have been " @@ -337,14 +333,14 @@ msgstr "" "تم تعطيل المزايا الإضافية للعمل بالجداول المترابطة. لمعرفة السبب اضغط %sهنا%" "s." -#: db_operations.php:648 +#: db_operations.php:657 msgid "Edit PDF Pages" 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:1665 -#: server_privileges.php:1721 server_privileges.php:1985 +#: libraries/header.inc.php:130 pdf_pages.php:424 server_privileges.php:1685 +#: server_privileges.php:1741 server_privileges.php:2005 #: server_synchronize.php:423 server_synchronize.php:866 tbl_tracking.php:592 #: test/theme.php:75 msgid "Table" @@ -353,7 +349,7 @@ msgstr "الجدول" #: db_printview.php:105 libraries/db_structure.lib.php:56 #: libraries/header_printview.inc.php:63 libraries/import.lib.php:146 #: navigation.php:638 navigation.php:660 server_databases.php:122 -#: tbl_printview.php:394 tbl_structure.php:365 tbl_structure.php:777 +#: tbl_printview.php:394 tbl_structure.php:365 tbl_structure.php:775 msgid "Rows" msgstr "صفوف" @@ -361,30 +357,30 @@ msgstr "صفوف" msgid "Size" msgstr "الحجم" -#: db_printview.php:162 db_structure.php:457 libraries/export/sql.php:559 +#: db_printview.php:162 db_structure.php:455 libraries/export/sql.php:559 #: libraries/export/sql.php:899 msgid "in use" msgstr "قيد الإستعمال" #: db_printview.php:187 libraries/db_info.inc.php:88 #: libraries/export/sql.php:514 pdf_schema.php:1241 tbl_printview.php:434 -#: tbl_structure.php:809 +#: tbl_structure.php:807 msgid "Creation" msgstr "الإنشاء" #: db_printview.php:196 libraries/db_info.inc.php:93 #: libraries/export/sql.php:519 pdf_schema.php:1246 tbl_printview.php:444 -#: tbl_structure.php:817 +#: tbl_structure.php:815 msgid "Last update" msgstr "التحديث الأخير" #: db_printview.php:205 libraries/db_info.inc.php:98 #: libraries/export/sql.php:524 pdf_schema.php:1251 tbl_printview.php:454 -#: tbl_structure.php:825 +#: tbl_structure.php:823 msgid "Last check" msgstr "التحقق الأخير" -#: db_printview.php:222 db_structure.php:480 +#: db_printview.php:222 db_structure.php:478 #, fuzzy, php-format #| msgid "%s table(s)" msgid "%s table" @@ -445,7 +441,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:297 tbl_change.php:1031 tbl_indexes.php:250 +#: server_privileges.php:298 tbl_change.php:1031 tbl_indexes.php:250 #: tbl_select.php:288 msgid "Or" msgstr "أو" @@ -518,9 +514,9 @@ 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:2833 +#: db_structure.php:105 libraries/common.lib.php:2837 #: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50 -#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:467 +#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:465 msgid "Browse" msgstr "استعراض" @@ -565,36 +561,36 @@ 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:2832 libraries/sql_query_form.lib.php:334 +#: libraries/common.lib.php:2836 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:2829 libraries/common.lib.php:2836 +#: libraries/common.lib.php:2833 libraries/common.lib.php:2840 #: 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:1106 #: libraries/tbl_links.inc.php:56 pmd_general.php:134 -#: server_privileges.php:593 server_replication.php:315 tbl_tracking.php:269 +#: server_privileges.php:594 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:1656 +#: db_structure.php:543 db_structure.php:544 db_tracking.php:91 +#: libraries/Index.class.php:483 libraries/common.lib.php:1657 #: 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 -#: tbl_structure.php:152 tbl_structure.php:471 +#: tbl_structure.php:152 tbl_structure.php:469 msgid "Drop" 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:1655 +#: db_structure.php:541 db_structure.php:542 libraries/common.lib.php:1656 #: libraries/mult_submits.inc.php:39 libraries/tbl_links.inc.php:105 msgid "Empty" msgstr "إفراغ محتوى" @@ -604,111 +600,111 @@ msgstr "إفراغ محتوى" msgid "Table %s has been emptied" msgstr "جدول %s أفرغت محتوياتها" -#: db_structure.php:326 libraries/tbl_links.inc.php:133 +#: db_structure.php:325 libraries/tbl_links.inc.php:133 #, php-format msgid "View %s has been dropped" msgstr "" -#: db_structure.php:326 libraries/tbl_links.inc.php:133 +#: db_structure.php:325 libraries/tbl_links.inc.php:133 #, php-format msgid "Table %s has been dropped" msgstr "جدول %s حذفت" -#: db_structure.php:333 +#: db_structure.php:332 msgid "Tracking is active." msgstr "" -#: db_structure.php:335 +#: db_structure.php:334 msgid "Tracking is not active." msgstr "" -#: db_structure.php:420 libraries/display_tbl.lib.php:1944 +#: db_structure.php:418 libraries/display_tbl.lib.php:1944 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation%" "s." msgstr "" -#: db_structure.php:434 db_structure.php:448 libraries/header.inc.php:126 +#: db_structure.php:432 db_structure.php:446 libraries/header.inc.php:130 #: libraries/tbl_info.inc.php:66 tbl_structure.php:185 test/theme.php:74 msgid "View" msgstr "" -#: db_structure.php:485 libraries/db_structure.lib.php:49 -#: libraries/server_links.inc.php:70 server_replication.php:33 +#: db_structure.php:483 libraries/db_structure.lib.php:49 +#: libraries/server_links.inc.php:71 server_replication.php:33 #: server_replication.php:164 server_status.php:369 msgid "Replication" msgstr "" -#: db_structure.php:489 +#: db_structure.php:487 msgid "Sum" msgstr "المجموع" -#: db_structure.php:496 libraries/StorageEngine.class.php:356 +#: db_structure.php:494 libraries/StorageEngine.class.php:356 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "" -#: db_structure.php:524 db_structure.php:541 db_structure.php:542 +#: db_structure.php:522 db_structure.php:539 db_structure.php:540 #: 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:1596 tbl_structure.php:455 -#: tbl_structure.php:464 +#: server_databases.php:351 server_privileges.php:1616 tbl_structure.php:453 +#: tbl_structure.php:462 msgid "With selected:" msgstr ": على المحدد" -#: db_structure.php:527 libraries/display_tbl.lib.php:2076 -#: server_databases.php:348 server_privileges.php:569 -#: server_privileges.php:1599 tbl_structure.php:458 +#: db_structure.php:525 libraries/display_tbl.lib.php:2076 +#: server_databases.php:348 server_privileges.php:570 +#: server_privileges.php:1619 tbl_structure.php:456 msgid "Check All" msgstr "اختر الكل" -#: db_structure.php:531 libraries/display_tbl.lib.php:2077 +#: db_structure.php:529 libraries/display_tbl.lib.php:2077 #: libraries/replication_gui.lib.php:33 server_databases.php:350 -#: server_privileges.php:572 server_privileges.php:1603 tbl_structure.php:462 +#: server_privileges.php:573 server_privileges.php:1623 tbl_structure.php:460 msgid "Uncheck All" msgstr "إلغاء تحديد الكل" -#: db_structure.php:536 +#: db_structure.php:534 msgid "Check tables having overhead" msgstr "تحقق من overhead" -#: db_structure.php:547 db_structure.php:548 db_structure.php:599 +#: db_structure.php:545 db_structure.php:546 db_structure.php:597 #: libraries/display_tbl.lib.php:2180 libraries/mult_submits.inc.php:28 -#: tbl_structure.php:492 tbl_structure.php:494 +#: tbl_structure.php:490 tbl_structure.php:492 msgid "Print view" msgstr "عرض نسخة للطباعة" -#: db_structure.php:549 db_structure.php:550 libraries/mult_submits.inc.php:42 +#: db_structure.php:547 db_structure.php:548 libraries/mult_submits.inc.php:42 #: tbl_operations.php:581 msgid "Check table" msgstr "التحقق من الجدول" -#: db_structure.php:551 db_structure.php:552 libraries/mult_submits.inc.php:47 -#: tbl_operations.php:621 tbl_structure.php:709 tbl_structure.php:711 +#: db_structure.php:549 db_structure.php:550 libraries/mult_submits.inc.php:47 +#: tbl_operations.php:621 tbl_structure.php:707 tbl_structure.php:709 msgid "Optimize table" msgstr "ضغط الجدول" -#: db_structure.php:553 db_structure.php:554 libraries/mult_submits.inc.php:52 +#: db_structure.php:551 db_structure.php:552 libraries/mult_submits.inc.php:52 #: tbl_operations.php:611 msgid "Repair table" msgstr "إصلاح الجدول" -#: db_structure.php:555 db_structure.php:556 libraries/mult_submits.inc.php:57 +#: db_structure.php:553 db_structure.php:554 libraries/mult_submits.inc.php:57 #: tbl_operations.php:601 msgid "Analyze table" msgstr "تحليل الجدول" -#: db_structure.php:557 db_structure.php:558 libraries/db_links.inc.php:71 +#: db_structure.php:555 db_structure.php:556 libraries/db_links.inc.php:71 #: 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:1380 +#: libraries/server_links.inc.php:85 libraries/tbl_links.inc.php:82 +#: pmd_pdf.php:84 pmd_pdf.php:109 server_privileges.php:1397 #: setup/frames/menu.inc.php:22 tbl_row_action.php:59 msgid "Export" msgstr "تصدير" -#: db_structure.php:606 libraries/display_pdf_schema.lib.php:44 +#: db_structure.php:604 libraries/display_pdf_schema.lib.php:44 msgid "Data Dictionary" msgstr "قاموس البيانات" @@ -719,10 +715,10 @@ msgstr "" #: db_tracking.php:71 libraries/export/htmlword.php:86 #: libraries/export/latex.php:148 libraries/export/odt.php:113 #: libraries/export/sql.php:342 libraries/export/texytext.php:84 -#: libraries/export/xml.php:255 libraries/header.inc.php:106 +#: libraries/export/xml.php:255 libraries/header.inc.php:110 #: libraries/header_printview.inc.php:58 server_databases.php:169 -#: server_privileges.php:1660 server_privileges.php:1721 -#: server_privileges.php:1979 server_processlist.php:56 +#: server_privileges.php:1680 server_privileges.php:1741 +#: server_privileges.php:1999 server_processlist.php:56 #: server_synchronize.php:1179 server_synchronize.php:1183 #: tbl_tracking.php:591 test/theme.php:65 msgid "Database" @@ -742,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:1542 server_privileges.php:1725 -#: server_privileges.php:2073 tbl_structure.php:187 +#: server_privileges.php:1562 server_privileges.php:1745 +#: server_privileges.php:2094 tbl_structure.php:187 msgid "Action" msgstr "العملية" @@ -777,8 +773,8 @@ msgstr "" msgid "Untracked tables" msgstr "" -#: db_tracking.php:172 db_tracking.php:174 tbl_structure.php:528 -#: tbl_structure.php:530 +#: db_tracking.php:172 db_tracking.php:174 tbl_structure.php:526 +#: tbl_structure.php:528 msgid "Track table" msgstr "" @@ -932,185 +928,234 @@ msgstr "اسم المستضيف فارغ!" msgid "The user name is empty!" msgstr "اسم المستخدم فارغ!" -#: js/messages.php:44 server_privileges.php:1236 user_password.php:70 +#: js/messages.php:44 server_privileges.php:1241 user_password.php:70 msgid "The password is empty!" msgstr "كلمة السر فارغة !" -#: js/messages.php:45 server_privileges.php:1234 user_password.php:73 +#: js/messages.php:45 server_privileges.php:1239 user_password.php:73 msgid "The passwords aren't the same!" msgstr "كلمتا السر غير متشابهتان !" -#: js/messages.php:49 pmd_general.php:342 pmd_general.php:379 +#: js/messages.php:46 +#, fuzzy +#| msgid "Add a new User" +msgid "Add a New User" +msgstr "أضف مستخدم جديد" + +#: js/messages.php:47 js/messages.php:54 pmd_general.php:342 +#: pmd_general.php:379 msgid "Cancel" msgstr "ألغ" -#: js/messages.php:52 pmd_save_pos.php:54 +#: js/messages.php:48 +#, fuzzy +#| msgid "Create" +msgid "Create User" +msgstr "تكوين" + +#: js/messages.php:49 +#, fuzzy +#| msgid "Reloading the privileges" +msgid "Reloading Privileges" +msgstr "قيد إعادة قراءة الصلاحيات." + +#: js/messages.php:50 +#, fuzzy +#| msgid "Remove selected users" +msgid "Removing Selected Users" +msgstr "احذف المستخدمين المحددين" + +#: js/messages.php:57 +#, fuzzy +#| msgid "Log in" +msgid "Loading" +msgstr "دخول" + +#: js/messages.php:58 +#, fuzzy +#| msgid "Processes" +msgid "Processing Request" +msgstr "معالَجات" + +#: js/messages.php:59 +msgid "Error in Processing Request" +msgstr "" + +#: js/messages.php:60 +msgid "Dropping Column" +msgstr "" + +#: js/messages.php:61 +msgid "Adding Primary Key" +msgstr "" + +#: js/messages.php:64 pmd_save_pos.php:54 msgid "Modifications have been saved" msgstr "تمت التعديلات" -#: js/messages.php:53 pmd_relation_upd.php:49 +#: js/messages.php:65 pmd_relation_upd.php:49 msgid "Relation deleted" msgstr "" -#: js/messages.php:54 pmd_relation_new.php:64 +#: js/messages.php:66 pmd_relation_new.php:64 msgid "FOREIGN KEY relation added" msgstr "" -#: js/messages.php:55 pmd_relation_new.php:86 +#: js/messages.php:67 pmd_relation_new.php:86 msgid "Internal relation added" msgstr "" -#: js/messages.php:56 pmd_relation_new.php:63 pmd_relation_new.php:88 +#: js/messages.php:68 pmd_relation_new.php:63 pmd_relation_new.php:88 msgid "Error: Relation not added." msgstr "" -#: js/messages.php:57 pmd_relation_new.php:31 +#: js/messages.php:69 pmd_relation_new.php:31 msgid "Error: relation already exists." msgstr "" -#: js/messages.php:58 +#: js/messages.php:70 msgid "Error saving coordinates for Designer." msgstr "" -#: js/messages.php:59 libraries/relation.lib.php:107 +#: js/messages.php:71 libraries/relation.lib.php:107 #: libraries/relation.lib.php:119 msgid "General relation features" msgstr "المزايا العامّة للرابط" -#: js/messages.php:59 libraries/relation.lib.php:101 +#: js/messages.php:71 libraries/relation.lib.php:101 #: libraries/relation.lib.php:108 msgid "Disabled" msgstr "معطل" -#: js/messages.php:60 +#: js/messages.php:72 msgid "Select referenced key" msgstr "" -#: js/messages.php:61 +#: js/messages.php:73 msgid "Select Foreign Key" msgstr "" -#: js/messages.php:62 +#: js/messages.php:74 msgid "Please select the primary key or a unique key" msgstr "" -#: js/messages.php:63 pmd_general.php:77 tbl_relation.php:548 +#: js/messages.php:75 pmd_general.php:77 tbl_relation.php:548 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" msgstr "اختر الحقل لإظهاره" #. l10n: Display text for calendar close link -#: js/messages.php:73 +#: js/messages.php:85 #, fuzzy #| msgid "Donate" msgid "Done" msgstr "تبرع" #. l10n: Display text for previous month link in calendar -#: js/messages.php:75 +#: js/messages.php:87 #, fuzzy #| msgid "Previous" msgid "Prev" msgstr "سابق" #. l10n: Display text for next month link in calendar -#: js/messages.php:77 libraries/common.lib.php:2353 -#: libraries/common.lib.php:2356 libraries/display_tbl.lib.php:338 +#: js/messages.php:89 libraries/common.lib.php:2357 +#: libraries/common.lib.php:2360 libraries/display_tbl.lib.php:338 #: server_binlog.php:205 server_binlog.php:207 tbl_printview.php:424 -#: tbl_structure.php:801 +#: tbl_structure.php:799 msgid "Next" msgstr "التالي" #. l10n: Display text for current month link in calendar -#: js/messages.php:79 +#: js/messages.php:91 #, fuzzy #| msgid "Total" msgid "Today" msgstr "مجموع كلي" -#: js/messages.php:82 +#: js/messages.php:94 msgid "January" msgstr "يناير" -#: js/messages.php:83 +#: js/messages.php:95 msgid "February" msgstr "فبراير" -#: js/messages.php:84 +#: js/messages.php:96 #, fuzzy #| msgid "Mar" msgid "March" msgstr "مارس" -#: js/messages.php:85 +#: js/messages.php:97 #, fuzzy #| msgid "Apr" msgid "April" msgstr "أبريل" -#: js/messages.php:86 +#: js/messages.php:98 msgid "May" msgstr "مايو" -#: js/messages.php:87 +#: js/messages.php:99 #, fuzzy #| msgid "Jun" msgid "June" msgstr "يونيو" -#: js/messages.php:88 +#: js/messages.php:100 #, fuzzy #| msgid "Jul" msgid "July" msgstr "يوليو" -#: js/messages.php:89 +#: js/messages.php:101 #, fuzzy #| msgid "Aug" msgid "August" msgstr "أغسطس" -#: js/messages.php:90 +#: js/messages.php:102 msgid "September" msgstr "سبتمبر" -#: js/messages.php:91 +#: js/messages.php:103 #, fuzzy #| msgid "Oct" msgid "October" msgstr "أكتوبر" -#: js/messages.php:92 +#: js/messages.php:104 msgid "November" msgstr "نوفمبر" -#: js/messages.php:93 +#: js/messages.php:105 msgid "December" msgstr "ديسمبر" #. l10n: Short month name -#: js/messages.php:97 libraries/common.lib.php:1557 +#: js/messages.php:109 libraries/common.lib.php:1557 msgid "Jan" msgstr "يناير" #. l10n: Short month name -#: js/messages.php:99 libraries/common.lib.php:1559 +#: js/messages.php:111 libraries/common.lib.php:1559 msgid "Feb" msgstr "فبراير" #. l10n: Short month name -#: js/messages.php:101 libraries/common.lib.php:1561 +#: js/messages.php:113 libraries/common.lib.php:1561 msgid "Mar" msgstr "مارس" #. l10n: Short month name -#: js/messages.php:103 libraries/common.lib.php:1563 +#: js/messages.php:115 libraries/common.lib.php:1563 msgid "Apr" msgstr "أبريل" #. l10n: Short month name -#: js/messages.php:105 libraries/common.lib.php:1565 +#: js/messages.php:117 libraries/common.lib.php:1565 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1118,174 +1163,174 @@ msgid "May" msgstr "مايو" #. l10n: Short month name -#: js/messages.php:107 libraries/common.lib.php:1567 +#: js/messages.php:119 libraries/common.lib.php:1567 msgid "Jun" msgstr "يونيو" #. l10n: Short month name -#: js/messages.php:109 libraries/common.lib.php:1569 +#: js/messages.php:121 libraries/common.lib.php:1569 msgid "Jul" msgstr "يوليو" #. l10n: Short month name -#: js/messages.php:111 libraries/common.lib.php:1571 +#: js/messages.php:123 libraries/common.lib.php:1571 msgid "Aug" msgstr "أغسطس" #. l10n: Short month name -#: js/messages.php:113 libraries/common.lib.php:1573 +#: js/messages.php:125 libraries/common.lib.php:1573 msgid "Sep" msgstr "سبتمبر" #. l10n: Short month name -#: js/messages.php:115 libraries/common.lib.php:1575 +#: js/messages.php:127 libraries/common.lib.php:1575 msgid "Oct" msgstr "أكتوبر" #. l10n: Short month name -#: js/messages.php:117 libraries/common.lib.php:1577 +#: js/messages.php:129 libraries/common.lib.php:1577 msgid "Nov" msgstr "نوفمبر" #. l10n: Short month name -#: js/messages.php:119 libraries/common.lib.php:1579 +#: js/messages.php:131 libraries/common.lib.php:1579 msgid "Dec" msgstr "ديسمبر" -#: js/messages.php:122 +#: js/messages.php:134 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "الأحد" -#: js/messages.php:123 +#: js/messages.php:135 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "الإثنين" -#: js/messages.php:124 +#: js/messages.php:136 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "الثلاثاء" -#: js/messages.php:125 +#: js/messages.php:137 msgid "Wednesday" msgstr "الأربعاء" -#: js/messages.php:126 +#: js/messages.php:138 msgid "Thursday" msgstr "الخميس" -#: js/messages.php:127 +#: js/messages.php:139 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "الجمعة" -#: js/messages.php:128 +#: js/messages.php:140 msgid "Saturday" msgstr "السبت" #. l10n: Short week day name -#: js/messages.php:132 libraries/common.lib.php:1582 +#: js/messages.php:144 libraries/common.lib.php:1582 msgid "Sun" msgstr "الأحد" #. l10n: Short week day name -#: js/messages.php:134 libraries/common.lib.php:1584 +#: js/messages.php:146 libraries/common.lib.php:1584 msgid "Mon" msgstr "الإثنين" #. l10n: Short week day name -#: js/messages.php:136 libraries/common.lib.php:1586 +#: js/messages.php:148 libraries/common.lib.php:1586 msgid "Tue" msgstr "الثلاثاء" #. l10n: Short week day name -#: js/messages.php:138 libraries/common.lib.php:1588 +#: js/messages.php:150 libraries/common.lib.php:1588 msgid "Wed" msgstr "الأربعاء" #. l10n: Short week day name -#: js/messages.php:140 libraries/common.lib.php:1590 +#: js/messages.php:152 libraries/common.lib.php:1590 msgid "Thu" msgstr "الخميس" #. l10n: Short week day name -#: js/messages.php:142 libraries/common.lib.php:1592 +#: js/messages.php:154 libraries/common.lib.php:1592 msgid "Fri" msgstr "الجمعة" #. l10n: Short week day name -#: js/messages.php:144 libraries/common.lib.php:1594 +#: js/messages.php:156 libraries/common.lib.php:1594 msgid "Sat" msgstr "السبت" #. l10n: Minimal week day name -#: js/messages.php:148 +#: js/messages.php:160 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "الأحد" #. l10n: Minimal week day name -#: js/messages.php:150 +#: js/messages.php:162 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "الإثنين" #. l10n: Minimal week day name -#: js/messages.php:152 +#: js/messages.php:164 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "الثلاثاء" #. l10n: Minimal week day name -#: js/messages.php:154 +#: js/messages.php:166 #, fuzzy #| msgid "Wed" msgid "We" msgstr "الأربعاء" #. l10n: Minimal week day name -#: js/messages.php:156 +#: js/messages.php:168 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "الخميس" #. l10n: Minimal week day name -#: js/messages.php:158 +#: js/messages.php:170 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "الجمعة" #. l10n: Minimal week day name -#: js/messages.php:160 +#: js/messages.php:172 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "السبت" #. l10n: Column header for week of the year in calendar -#: js/messages.php:162 +#: js/messages.php:174 msgid "Wk" msgstr "الأسبوع" -#: js/messages.php:164 +#: js/messages.php:176 msgid "Hour" msgstr "الساعة" -#: js/messages.php:165 +#: js/messages.php:177 msgid "Minute" msgstr "الدقيقة" -#: js/messages.php:166 +#: js/messages.php:178 msgid "Second" msgstr "الثانية" @@ -1340,7 +1385,7 @@ msgstr "فهارس" #: libraries/Index.class.php:444 libraries/mult_submits.inc.php:103 #: libraries/tbl_properties.inc.php:519 tbl_structure.php:33 -#: tbl_structure.php:155 tbl_structure.php:159 tbl_structure.php:474 +#: tbl_structure.php:155 tbl_structure.php:159 tbl_structure.php:472 #: tbl_tracking.php:322 msgid "Unique" msgstr "مميز" @@ -1381,8 +1426,8 @@ msgid "" "removed." msgstr "الفهارس %1$s و %2$s متساويان ويمكن حذف أحدهما." -#: libraries/List_Database.class.php:431 libraries/server_links.inc.php:41 -#: server_databases.php:88 server_privileges.php:1660 +#: libraries/List_Database.class.php:431 libraries/server_links.inc.php:42 +#: server_databases.php:88 server_privileges.php:1680 #: setup/lib/messages.inc.php:110 test/theme.php:93 msgid "Databases" msgstr "قاعدة بيانات" @@ -1547,7 +1592,7 @@ msgstr "كلمة السر:" msgid "Server Choice" msgstr "اختيار الخادم" -#: libraries/auth/cookie.auth.lib.php:320 libraries/header.inc.php:59 +#: libraries/auth/cookie.auth.lib.php:320 libraries/header.inc.php:63 msgid "Cookies must be enabled past this point." msgstr "يجب تفعيل دعم الكوكيز في هذه المرحلة." @@ -1627,7 +1672,7 @@ msgstr "" "لا يمكن استخدام iconv ولا libiconv ولا عملية recode_string في حين يحدد " "الامتداد أنه محمل. تأكد من إعدادات PHP." -#: libraries/common.inc.php:583 +#: libraries/common.inc.php:587 msgid "" "phpMyAdmin was unable to read your configuration file!
This might " "happen if PHP finds a parse error in it or PHP cannot find the file.
إن حصلت " "على صفحة فارغة، فكل شيء على ما يرام." -#: libraries/common.inc.php:594 +#: libraries/common.inc.php:598 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "" -#: libraries/common.inc.php:599 +#: libraries/common.inc.php:603 msgid "" "The $cfg['PmaAbsoluteUri'] directive MUST be set in your " "configuration file!" @@ -1655,27 +1700,27 @@ msgstr "" "المتغير $cfg['PmaAbsoluteUri'] يجب تعديله " "في ملف التعريف !" -#: libraries/common.inc.php:629 +#: libraries/common.inc.php:633 #, php-format msgid "Invalid server index: %s" msgstr "فهرس خادم غير صحيح: %s" -#: libraries/common.inc.php:636 +#: libraries/common.inc.php:640 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" -#: libraries/common.inc.php:645 libraries/header.inc.php:96 +#: libraries/common.inc.php:649 libraries/header.inc.php:100 #: libraries/select_server.lib.php:41 libraries/select_server.lib.php:47 #: main.php:185 test/theme.php:57 msgid "Server" msgstr "خادم" -#: libraries/common.inc.php:823 +#: libraries/common.inc.php:827 msgid "Invalid authentication method set in configuration:" msgstr "" -#: libraries/common.inc.php:926 +#: libraries/common.inc.php:930 #, php-format msgid "You should upgrade to %s %s or later." msgstr "عليك التحديث إلى %s %s أو لاحقا." @@ -1806,45 +1851,45 @@ msgstr "." msgid "%B %d, %Y at %I:%M %p" msgstr "%d %B %Y الساعة %H:%M" -#: libraries/common.lib.php:1907 +#: libraries/common.lib.php:1911 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s يوم، %s ساعة، %s دقيقة و%s ثانية" -#: libraries/common.lib.php:2322 libraries/common.lib.php:2325 +#: libraries/common.lib.php:2326 libraries/common.lib.php:2329 #: libraries/display_tbl.lib.php:290 server_status.php:719 msgid "Begin" msgstr "بداية" -#: libraries/common.lib.php:2323 libraries/common.lib.php:2326 +#: libraries/common.lib.php:2327 libraries/common.lib.php:2330 #: libraries/display_tbl.lib.php:291 server_binlog.php:168 #: server_binlog.php:170 msgid "Previous" msgstr "سابق" -#: libraries/common.lib.php:2354 libraries/common.lib.php:2357 +#: libraries/common.lib.php:2358 libraries/common.lib.php:2361 #: libraries/display_tbl.lib.php:353 msgid "End" msgstr "نهاية" -#: libraries/common.lib.php:2430 +#: libraries/common.lib.php:2434 #, php-format msgid "Jump to database "%s"." msgstr "إذهب إلى قاعدة بيانات "%s"." -#: libraries/common.lib.php:2450 +#: libraries/common.lib.php:2454 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" -#: libraries/common.lib.php:2830 libraries/common.lib.php:2837 +#: libraries/common.lib.php:2834 libraries/common.lib.php:2841 #: libraries/db_links.inc.php:68 libraries/export/sql.php:25 -#: libraries/import/sql.php:18 libraries/server_links.inc.php:45 +#: libraries/import/sql.php:18 libraries/server_links.inc.php:46 #: libraries/tbl_links.inc.php:60 querywindow.php:99 test/theme.php:97 msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2839 libraries/db_links.inc.php:104 +#: libraries/common.lib.php:2843 libraries/db_links.inc.php:104 #: libraries/tbl_links.inc.php:95 libraries/tbl_links.inc.php:117 #: view_operations.php:89 msgid "Operations" @@ -1891,15 +1936,15 @@ msgstr "استعلام بواسطة مثال" msgid "Designer" msgstr "" -#: libraries/db_links.inc.php:98 libraries/server_links.inc.php:88 +#: libraries/db_links.inc.php:98 libraries/server_links.inc.php:89 #: libraries/tbl_links.inc.php:91 pmd_pdf.php:84 pmd_pdf.php:110 #: setup/frames/menu.inc.php:21 msgid "Import" msgstr "استورد" -#: libraries/db_links.inc.php:111 libraries/server_links.inc.php:66 -#: server_privileges.php:111 server_privileges.php:1722 -#: server_privileges.php:2071 test/theme.php:117 +#: libraries/db_links.inc.php:111 libraries/server_links.inc.php:67 +#: server_privileges.php:112 server_privileges.php:1742 +#: server_privileges.php:2092 test/theme.php:117 msgid "Privileges" msgstr "الإمتيازات" @@ -1918,7 +1963,7 @@ msgid "" msgstr "" #: libraries/db_structure.lib.php:69 server_databases.php:142 -#: tbl_printview.php:336 tbl_structure.php:682 +#: tbl_printview.php:336 tbl_structure.php:680 msgid "Overhead" msgstr "الفوقي" @@ -1935,7 +1980,7 @@ msgstr "" msgid "(or the local MySQL server's socket is not correctly configured)" msgstr "" -#: libraries/dbi/mysql.dbi.lib.php:362 tbl_structure.php:608 +#: libraries/dbi/mysql.dbi.lib.php:362 tbl_structure.php:606 msgid "Details..." msgstr "" @@ -1945,22 +1990,22 @@ msgid "Change password" msgstr "تغيير كلمة السر" #: libraries/display_change_password.lib.php:35 -#: libraries/replication_gui.lib.php:345 server_privileges.php:807 +#: libraries/replication_gui.lib.php:345 server_privileges.php:808 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:796 -#: server_privileges.php:800 server_privileges.php:811 -#: server_privileges.php:1538 server_synchronize.php:1175 +#: libraries/replication_gui.lib.php:349 server_privileges.php:797 +#: server_privileges.php:801 server_privileges.php:812 +#: server_privileges.php:1558 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:815 server_privileges.php:818 +#: server_privileges.php:816 server_privileges.php:819 msgid "Re-type" msgstr "أعد كتابة" @@ -1973,12 +2018,12 @@ msgid "MySQL 4.0 compatible" msgstr "" #: libraries/display_change_password.lib.php:72 -#: libraries/replication_gui.lib.php:360 server_privileges.php:822 +#: libraries/replication_gui.lib.php:360 server_privileges.php:823 msgid "Generate Password" msgstr "" #: libraries/display_change_password.lib.php:75 -#: libraries/replication_gui.lib.php:363 server_privileges.php:825 +#: libraries/replication_gui.lib.php:363 server_privileges.php:826 msgid "Generate" msgstr "ولد" @@ -1991,8 +2036,8 @@ msgstr "تكوين قاعدة بيانات جديدة" msgid "Create" msgstr "تكوين" -#: libraries/display_create_database.lib.php:40 server_privileges.php:113 -#: server_privileges.php:1427 server_replication.php:35 +#: libraries/display_create_database.lib.php:40 server_privileges.php:114 +#: server_privileges.php:1447 server_replication.php:35 msgid "No Privileges" msgstr "امتياز غير موجود" @@ -2080,7 +2125,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:1875 server_processlist.php:75 +#: server_privileges.php:1895 server_processlist.php:75 msgid "None" msgstr "لا شيء" @@ -2264,7 +2309,7 @@ msgstr "رتب حسب المفتاح" #: libraries/import/docsql.php:34 libraries/import/ldi.php:47 #: libraries/import/ods.php:30 libraries/import/sql.php:20 #: libraries/import/xls.php:26 libraries/import/xlsx.php:26 -#: libraries/import/xml.php:25 tbl_select.php:267 tbl_structure.php:753 +#: libraries/import/xml.php:25 tbl_select.php:267 tbl_structure.php:751 msgid "Options" msgstr "خيارات" @@ -2341,7 +2386,7 @@ msgstr "استغرق الاستعلام %01.4f ثانية" #: libraries/display_tbl.lib.php:2089 libraries/mult_submits.inc.php:113 #: querywindow.php:125 querywindow.php:129 querywindow.php:132 -#: tbl_structure.php:25 tbl_structure.php:150 tbl_structure.php:470 +#: tbl_structure.php:25 tbl_structure.php:150 tbl_structure.php:468 msgid "Change" msgstr "تغيير" @@ -2407,7 +2452,7 @@ msgstr "" #: libraries/engines/innodb.lib.php:194 server_databases.php:137 #: server_databases.php:305 server_status.php:525 server_status.php:586 -#: server_status.php:607 tbl_printview.php:351 tbl_structure.php:696 +#: server_status.php:607 tbl_printview.php:351 tbl_structure.php:694 msgid "Total" msgstr "مجموع كلي" @@ -2652,7 +2697,7 @@ msgid "" msgstr "" #: libraries/export/codegen.php:37 setup/lib/messages.inc.php:88 -#: tbl_printview.php:376 tbl_structure.php:737 +#: tbl_printview.php:376 tbl_structure.php:735 msgid "Format" msgstr "صيغة" @@ -2724,8 +2769,8 @@ 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:576 server_replication.php:316 tbl_printview.php:317 -#: tbl_structure.php:665 +#: server_privileges.php:577 server_replication.php:316 tbl_printview.php:317 +#: tbl_structure.php:663 msgid "Data" msgstr "بيانات" @@ -2774,9 +2819,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:731 -#: server_privileges.php:734 server_privileges.php:790 -#: server_privileges.php:1537 server_privileges.php:2069 +#: libraries/replication_gui.lib.php:329 server_privileges.php:732 +#: server_privileges.php:735 server_privileges.php:791 +#: server_privileges.php:1557 server_privileges.php:2090 #: server_processlist.php:55 server_synchronize.php:1159 msgid "Host" msgstr "المزود" @@ -2971,7 +3016,7 @@ msgstr "" msgid "Open new phpMyAdmin window" msgstr "" -#: libraries/header.inc.php:115 +#: libraries/header.inc.php:119 msgid "New table" msgstr "" @@ -3128,20 +3173,20 @@ 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 +#: tbl_structure.php:471 msgid "Primary" msgstr "أساسي" #: libraries/mult_submits.inc.php:98 libraries/tbl_properties.inc.php:116 #: libraries/tbl_properties.inc.php:525 tbl_printview.php:326 #: tbl_structure.php:31 tbl_structure.php:154 tbl_structure.php:158 -#: tbl_structure.php:475 tbl_structure.php:673 +#: tbl_structure.php:473 tbl_structure.php:671 msgid "Index" msgstr "فهرست" #: libraries/mult_submits.inc.php:108 libraries/tbl_properties.inc.php:531 #: tbl_structure.php:35 tbl_structure.php:156 tbl_structure.php:160 -#: tbl_structure.php:478 +#: tbl_structure.php:476 msgid "Fulltext" msgstr "النص كاملا" @@ -3442,8 +3487,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:711 -#: server_privileges.php:714 server_privileges.php:721 +#: libraries/replication_gui.lib.php:259 server_privileges.php:712 +#: server_privileges.php:715 server_privileges.php:722 #: server_synchronize.php:1171 msgid "User name" msgstr "اسم المستخدم" @@ -3467,7 +3512,7 @@ msgstr "متغير" #: 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 +#: tbl_structure.php:727 msgid "Value" msgstr "القيمة" @@ -3485,34 +3530,34 @@ msgstr "" msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:254 server_privileges.php:716 +#: libraries/replication_gui.lib.php:254 server_privileges.php:717 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:717 -#: server_privileges.php:784 server_privileges.php:808 -#: server_privileges.php:1928 server_privileges.php:1958 +#: libraries/replication_gui.lib.php:346 server_privileges.php:718 +#: server_privileges.php:785 server_privileges.php:809 +#: server_privileges.php:1948 server_privileges.php:1978 msgid "Use text field" msgstr "استخدم حقل نص" -#: libraries/replication_gui.lib.php:302 server_privileges.php:764 +#: libraries/replication_gui.lib.php:302 server_privileges.php:765 msgid "Any host" msgstr "أي مزود" -#: libraries/replication_gui.lib.php:306 server_privileges.php:768 +#: libraries/replication_gui.lib.php:306 server_privileges.php:769 msgid "Local" msgstr "محلي" -#: libraries/replication_gui.lib.php:312 server_privileges.php:773 +#: libraries/replication_gui.lib.php:312 server_privileges.php:774 msgid "This Host" msgstr "هذا المضيف" -#: libraries/replication_gui.lib.php:318 server_privileges.php:779 +#: libraries/replication_gui.lib.php:318 server_privileges.php:780 msgid "Use Host Table" msgstr "استخدم الجدول المضيف" -#: libraries/replication_gui.lib.php:331 server_privileges.php:792 +#: libraries/replication_gui.lib.php:331 server_privileges.php:793 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -3546,29 +3591,29 @@ msgstr "" msgid "Servers" msgstr "خوادم" -#: libraries/server_links.inc.php:53 server_engines.php:112 +#: libraries/server_links.inc.php:54 server_engines.php:112 #: server_engines.php:116 server_status.php:415 test/theme.php:105 msgid "Variables" msgstr "متغيرات" -#: libraries/server_links.inc.php:57 test/theme.php:109 +#: libraries/server_links.inc.php:58 test/theme.php:109 msgid "Charsets" msgstr "مجموعات المحارف" -#: libraries/server_links.inc.php:61 test/theme.php:113 +#: libraries/server_links.inc.php:62 test/theme.php:113 msgid "Engines" msgstr "محركات" -#: libraries/server_links.inc.php:76 server_binlog.php:110 +#: libraries/server_links.inc.php:77 server_binlog.php:110 #: server_status.php:364 test/theme.php:121 msgid "Binary log" msgstr "سجل ثنائي" -#: libraries/server_links.inc.php:80 +#: libraries/server_links.inc.php:81 msgid "Processes" msgstr "معالَجات" -#: libraries/server_links.inc.php:92 server_synchronize.php:1092 +#: libraries/server_links.inc.php:93 server_synchronize.php:1092 #: server_synchronize.php:1100 msgid "Synchronize" msgstr "" @@ -3811,13 +3856,13 @@ msgstr "" msgid "Save" msgstr "حفظ" -#: libraries/tbl_properties.inc.php:780 tbl_structure.php:542 +#: libraries/tbl_properties.inc.php:780 tbl_structure.php:540 #, fuzzy, php-format #| msgid "Add into comments" msgid "Add %s column(s)" msgstr "أضف إلى الملاحظات" -#: libraries/tbl_properties.inc.php:784 tbl_structure.php:536 +#: libraries/tbl_properties.inc.php:784 tbl_structure.php:534 #, fuzzy #| msgid "You have to choose at least one column to display" msgid "You have to add at least one column." @@ -3996,8 +4041,8 @@ msgstr "إلغاء" msgid "Protocol version" msgstr "" -#: main.php:189 server_privileges.php:1389 server_privileges.php:1536 -#: server_privileges.php:1650 server_privileges.php:2068 +#: main.php:189 server_privileges.php:1406 server_privileges.php:1556 +#: server_privileges.php:1670 server_privileges.php:2089 #: server_processlist.php:54 msgid "User" msgstr "المستخدم" @@ -4425,111 +4470,111 @@ msgstr "" msgid "View dump (schema) of databases" msgstr "اعرض أو احفظ بناء قواعد البيانات." -#: server_privileges.php:24 server_privileges.php:266 +#: server_privileges.php:25 server_privileges.php:267 msgid "Includes all privileges except GRANT." msgstr "يتضمن كل الصلاحيات عدا GRANT." -#: server_privileges.php:25 server_privileges.php:192 -#: server_privileges.php:515 +#: server_privileges.php:26 server_privileges.php:193 +#: server_privileges.php:516 msgid "Allows altering the structure of existing tables." msgstr "يسمح بتعديل بناء الجداول الموجودة مسبقا." -#: server_privileges.php:26 server_privileges.php:208 -#: server_privileges.php:521 +#: server_privileges.php:27 server_privileges.php:209 +#: server_privileges.php:522 msgid "Allows altering and dropping stored routines." msgstr "" -#: server_privileges.php:27 server_privileges.php:184 -#: server_privileges.php:514 +#: server_privileges.php:28 server_privileges.php:185 +#: server_privileges.php:515 msgid "Allows creating new databases and tables." msgstr "يسمح بإنشاء قواعد بيانات وجداول جديدة." -#: server_privileges.php:28 server_privileges.php:207 -#: server_privileges.php:520 +#: server_privileges.php:29 server_privileges.php:208 +#: server_privileges.php:521 msgid "Allows creating stored routines." msgstr "" -#: server_privileges.php:29 server_privileges.php:514 +#: server_privileges.php:30 server_privileges.php:515 msgid "Allows creating new tables." msgstr "يسمح بإنشاء جداول جديدة." -#: server_privileges.php:30 server_privileges.php:195 -#: server_privileges.php:518 +#: server_privileges.php:31 server_privileges.php:196 +#: server_privileges.php:519 msgid "Allows creating temporary tables." msgstr "يسمح بإنشاء جداول مؤقتة." -#: server_privileges.php:31 server_privileges.php:209 -#: server_privileges.php:554 +#: server_privileges.php:32 server_privileges.php:210 +#: server_privileges.php:555 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 +#: server_privileges.php:33 server_privileges.php:200 +#: server_privileges.php:204 server_privileges.php:527 +#: server_privileges.php:531 msgid "Allows creating new views." msgstr "" -#: server_privileges.php:33 server_privileges.php:183 -#: server_privileges.php:506 +#: server_privileges.php:34 server_privileges.php:184 +#: server_privileges.php:507 msgid "Allows deleting data." msgstr "يسمح بحذف البيانات." -#: server_privileges.php:34 server_privileges.php:185 -#: server_privileges.php:517 +#: server_privileges.php:35 server_privileges.php:186 +#: server_privileges.php:518 msgid "Allows dropping databases and tables." msgstr "يسمح بحذف قواعد البيانات." -#: server_privileges.php:35 server_privileges.php:517 +#: server_privileges.php:36 server_privileges.php:518 msgid "Allows dropping tables." msgstr "يسمح بحذف الجداول." -#: server_privileges.php:36 server_privileges.php:200 -#: server_privileges.php:534 +#: server_privileges.php:37 server_privileges.php:201 +#: server_privileges.php:535 msgid "Allows to set up events for the event scheduler" msgstr "" -#: server_privileges.php:37 server_privileges.php:210 -#: server_privileges.php:522 +#: server_privileges.php:38 server_privileges.php:211 +#: server_privileges.php:523 msgid "Allows executing stored routines." msgstr "" -#: server_privileges.php:38 server_privileges.php:189 -#: server_privileges.php:509 +#: server_privileges.php:39 server_privileges.php:190 +#: server_privileges.php:510 msgid "Allows importing data from and exporting data into files." msgstr "يسمح باستيراد وتصدير البيانات من وإلى الملفّات." -#: server_privileges.php:39 server_privileges.php:540 +#: server_privileges.php:40 server_privileges.php:541 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "يسمح بإضافة المستخدمين والصلاحيات دون إعادة قراءة جداول الصلاحيات." -#: server_privileges.php:40 server_privileges.php:191 -#: server_privileges.php:516 +#: server_privileges.php:41 server_privileges.php:192 +#: server_privileges.php:517 msgid "Allows creating and dropping indexes." msgstr "يسمح بإنشاء وحذف الفهارس." -#: server_privileges.php:41 server_privileges.php:181 -#: server_privileges.php:442 server_privileges.php:504 +#: server_privileges.php:42 server_privileges.php:182 +#: server_privileges.php:443 server_privileges.php:505 msgid "Allows inserting and replacing data." msgstr "يسمح بإضافة واستبدال البيانات." -#: server_privileges.php:42 server_privileges.php:196 -#: server_privileges.php:549 +#: server_privileges.php:43 server_privileges.php:197 +#: server_privileges.php:550 msgid "Allows locking tables for the current thread." msgstr "يسمح بقفل الجداول للعملية الحالية." -#: server_privileges.php:43 server_privileges.php:646 -#: server_privileges.php:648 +#: server_privileges.php:44 server_privileges.php:647 +#: server_privileges.php:649 msgid "Limits the number of new connections the user may open per hour." msgstr "يحد من عدد الاتصالات الجديدة التي يمكن للمستخدم فتحها بكل ساعة." -#: server_privileges.php:44 server_privileges.php:634 -#: server_privileges.php:636 +#: server_privileges.php:45 server_privileges.php:635 +#: server_privileges.php:637 msgid "Limits the number of queries the user may send to the server per hour." msgstr "يحد عدد الاستعلامات التي يستطيع المستخدم إرسالها إلى الخادم بكل ساعة." -#: server_privileges.php:45 server_privileges.php:640 -#: server_privileges.php:642 +#: server_privileges.php:46 server_privileges.php:641 +#: server_privileges.php:643 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -4537,58 +4582,58 @@ msgstr "" "يحد عدد الأوامر التي ينفذها المستخدم بكل ساعة، والتي تغير أي جدول أو قاعدة " "بيانات." -#: server_privileges.php:46 server_privileges.php:652 -#: server_privileges.php:654 +#: server_privileges.php:47 server_privileges.php:653 +#: server_privileges.php:655 msgid "Limits the number of simultaneous connections the user may have." msgstr "" -#: server_privileges.php:47 server_privileges.php:188 -#: server_privileges.php:544 +#: server_privileges.php:48 server_privileges.php:189 +#: server_privileges.php:545 msgid "Allows viewing processes of all users" msgstr "" -#: server_privileges.php:48 server_privileges.php:190 -#: server_privileges.php:448 server_privileges.php:550 +#: server_privileges.php:49 server_privileges.php:191 +#: server_privileges.php:449 server_privileges.php:551 msgid "Has no effect in this MySQL version." msgstr "ليس له أي تأثير في نسخة MySQL الحالية." -#: server_privileges.php:49 server_privileges.php:186 -#: server_privileges.php:545 +#: server_privileges.php:50 server_privileges.php:187 +#: server_privileges.php:546 msgid "Allows reloading server settings and flushing the server's caches." msgstr "يسمح بإعادة تحميل إعدادات الخادم وتفريغ كاش الخادم." -#: server_privileges.php:50 server_privileges.php:198 -#: server_privileges.php:552 +#: server_privileges.php:51 server_privileges.php:199 +#: server_privileges.php:553 msgid "Allows the user to ask where the slaves / masters are." msgstr "يعطي الحق للمستخدم بالسؤال عن مكان وجود slaves/masters." -#: server_privileges.php:51 server_privileges.php:197 -#: server_privileges.php:553 +#: server_privileges.php:52 server_privileges.php:198 +#: server_privileges.php:554 msgid "Needed for the replication slaves." msgstr "مطلوب لتوابع لاستنساخ." -#: server_privileges.php:52 server_privileges.php:180 -#: server_privileges.php:439 server_privileges.php:503 +#: server_privileges.php:53 server_privileges.php:181 +#: server_privileges.php:440 server_privileges.php:504 msgid "Allows reading data." msgstr "يسمح بقراءة البيانات." -#: server_privileges.php:53 server_privileges.php:193 -#: server_privileges.php:547 +#: server_privileges.php:54 server_privileges.php:194 +#: server_privileges.php:548 msgid "Gives access to the complete list of databases." msgstr "يسمح بالوصول لقائمة أسماء جميع قواعد البيانات." -#: server_privileges.php:54 server_privileges.php:204 -#: server_privileges.php:206 server_privileges.php:519 +#: server_privileges.php:55 server_privileges.php:205 +#: server_privileges.php:207 server_privileges.php:520 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "" -#: server_privileges.php:55 server_privileges.php:187 -#: server_privileges.php:546 +#: server_privileges.php:56 server_privileges.php:188 +#: server_privileges.php:547 msgid "Allows shutting down the server." msgstr "يسمح بإيقاف عمل الخادم." -#: server_privileges.php:56 server_privileges.php:194 -#: server_privileges.php:543 +#: server_privileges.php:57 server_privileges.php:195 +#: server_privileges.php:544 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -4597,156 +4642,156 @@ msgstr "" "يسمح بالاتصال، حتى لو وصل حد عدد الاتصالات للأقصى.، مطلوب للمهام الإدارية " "كضبط الإعدادات العامة other users." -#: server_privileges.php:57 server_privileges.php:201 -#: server_privileges.php:535 +#: server_privileges.php:58 server_privileges.php:202 +#: server_privileges.php:536 msgid "Allows creating and dropping triggers" msgstr "" -#: server_privileges.php:58 server_privileges.php:182 -#: server_privileges.php:445 server_privileges.php:505 +#: server_privileges.php:59 server_privileges.php:183 +#: server_privileges.php:446 server_privileges.php:506 msgid "Allows changing data." msgstr "يسمح بتعديل البيانات." -#: server_privileges.php:59 server_privileges.php:260 +#: server_privileges.php:60 server_privileges.php:261 msgid "No privileges." msgstr "لا صلاحيات." -#: server_privileges.php:302 server_privileges.php:303 +#: server_privileges.php:303 server_privileges.php:304 #, fuzzy #| msgid "None" msgctxt "None privileges" msgid "None" msgstr "لا شيء" -#: server_privileges.php:431 server_privileges.php:566 -#: server_privileges.php:1718 server_privileges.php:1724 +#: server_privileges.php:432 server_privileges.php:567 +#: server_privileges.php:1738 server_privileges.php:1744 msgid "Table-specific privileges" msgstr "صلاحيات خاصة بالجدول" -#: server_privileges.php:432 server_privileges.php:574 -#: server_privileges.php:1540 +#: server_privileges.php:433 server_privileges.php:575 +#: server_privileges.php:1560 msgid " Note: MySQL privilege names are expressed in English " msgstr " ملاحظه: اسم الامتياز لـMySQL يظهر ويقرأ باللغة الإنجليزية فقط " -#: server_privileges.php:563 server_privileges.php:1539 +#: server_privileges.php:564 server_privileges.php:1559 msgid "Global privileges" msgstr "صلاحيات عامة" -#: server_privileges.php:565 server_privileges.php:1718 +#: server_privileges.php:566 server_privileges.php:1738 msgid "Database-specific privileges" msgstr "صلاحيات خاصة بقاعدة البيانات" -#: server_privileges.php:610 +#: server_privileges.php:611 msgid "Administration" msgstr "إدارة" -#: server_privileges.php:630 +#: server_privileges.php:631 msgid "Resource limits" msgstr "حدود المصادر" -#: server_privileges.php:631 +#: server_privileges.php:632 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "ملاحظة: تغيير هذه الخيارات للرقم 0 )صفر( يلغي الحد." -#: server_privileges.php:708 +#: server_privileges.php:709 msgid "Login Information" msgstr "بيانات الدخول" -#: server_privileges.php:802 +#: server_privileges.php:803 msgid "Do not change the password" msgstr "لاتغير كلمة السر" -#: server_privileges.php:843 server_privileges.php:2205 +#: server_privileges.php:844 server_privileges.php:2226 #, fuzzy #| msgid "No user(s) found." msgid "No user found." msgstr "المستخدم(ون) لم يتم إيجادهم." -#: server_privileges.php:887 +#: server_privileges.php:888 #, php-format msgid "The user %s already exists!" msgstr "اسم المستخدم %s موجود مسبقاً!" -#: server_privileges.php:970 +#: server_privileges.php:971 msgid "You have added a new user." msgstr "لقد أضفت مستخدم جديد." -#: server_privileges.php:1191 +#: server_privileges.php:1196 #, php-format msgid "You have updated the privileges for %s." msgstr "لقد جددت وحدثت الإمتيازات لـ %s." -#: server_privileges.php:1215 +#: server_privileges.php:1220 #, php-format msgid "You have revoked the privileges for %s" msgstr "لقد أبطلت الامتيازات لـ %s" -#: server_privileges.php:1251 +#: server_privileges.php:1256 #, php-format msgid "The password for %s was changed successfully." msgstr "تم تغيير كلمة المرور لـ %s بنجاح." -#: server_privileges.php:1271 +#: server_privileges.php:1276 #, php-format msgid "Deleting %s" msgstr "قيد حذف %s" -#: server_privileges.php:1282 +#: server_privileges.php:1287 msgid "No users selected for deleting!" msgstr "" -#: server_privileges.php:1285 +#: server_privileges.php:1290 msgid "Reloading the privileges" msgstr "قيد إعادة قراءة الصلاحيات." -#: server_privileges.php:1300 +#: server_privileges.php:1305 msgid "The selected users have been deleted successfully." msgstr "تم حذف المستخدمين المحددين بنجاح." -#: server_privileges.php:1335 +#: server_privileges.php:1344 msgid "The privileges were reloaded successfully." msgstr "تم إعادة قراءة الصلاحيات بنجاح." -#: server_privileges.php:1363 server_privileges.php:1649 +#: server_privileges.php:1380 server_privileges.php:1669 msgid "Edit Privileges" msgstr "تحرير الامتيازات" -#: server_privileges.php:1372 +#: server_privileges.php:1389 msgid "Revoke" msgstr "إبطال" -#: server_privileges.php:1404 +#: server_privileges.php:1424 msgid "User overview" msgstr "معلومات المستخدم" -#: server_privileges.php:1541 server_privileges.php:1723 -#: server_privileges.php:2072 +#: server_privileges.php:1561 server_privileges.php:1743 +#: server_privileges.php:2093 msgid "Grant" msgstr "منح" -#: server_privileges.php:1560 server_privileges.php:2162 +#: server_privileges.php:1580 server_privileges.php:2183 msgid "Any" msgstr "أي" -#: server_privileges.php:1609 server_privileges.php:1633 -#: server_privileges.php:2027 server_privileges.php:2216 +#: server_privileges.php:1629 server_privileges.php:1653 +#: server_privileges.php:2048 server_privileges.php:2237 msgid "Add a new User" msgstr "أضف مستخدم جديد" -#: server_privileges.php:1614 +#: server_privileges.php:1634 msgid "Remove selected users" msgstr "احذف المستخدمين المحددين" -#: server_privileges.php:1617 +#: server_privileges.php:1637 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 +#: server_privileges.php:1638 server_privileges.php:1639 +#: server_privileges.php:1640 msgid "Drop the databases that have the same names as the users." msgstr "احذف قواعد البيانات التي لها نفس أسماء المستخدمين." -#: server_privileges.php:1636 +#: server_privileges.php:1656 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -4759,91 +4804,91 @@ msgstr "" "ما تم التعديل عليها يدويا. في هذه الحالة، عليك %s بإعادة قراءة الصلاحيات %s " "قبل أن تكمل." -#: server_privileges.php:1684 +#: server_privileges.php:1704 msgid "The selected user was not found in the privilege table." msgstr "المستخدم المحدد غير موجود في جدول الصلاحيات." -#: server_privileges.php:1724 +#: server_privileges.php:1744 msgid "Column-specific privileges" msgstr "صلاحيات خاصة بالحقل" -#: server_privileges.php:1925 +#: server_privileges.php:1945 msgid "Add privileges on the following database" msgstr "إضافة الصلاحيات على قاعدة البيانات التالية" -#: server_privileges.php:1943 +#: server_privileges.php:1963 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" -#: server_privileges.php:1946 +#: server_privileges.php:1966 msgid "Add privileges on the following table" msgstr "إضافة الصلاحيات على الجدول التالي" -#: server_privileges.php:2003 +#: server_privileges.php:2023 msgid "Change Login Information / Copy User" msgstr "غير معلومات الدخول / انسخ اسم مستخدم" -#: server_privileges.php:2006 +#: server_privileges.php:2026 msgid "Create a new user with the same privileges and ..." msgstr "أضف اسم مستخدم جديد بنفس الصلاحيات و..." -#: server_privileges.php:2008 +#: server_privileges.php:2028 msgid "... keep the old one." msgstr " ... أبق القديم." -#: server_privileges.php:2009 +#: server_privileges.php:2029 msgid " ... delete the old one from the user tables." msgstr " ... احذف القديم من جداول المستخدمين." -#: server_privileges.php:2010 +#: server_privileges.php:2030 msgid "" " ... revoke all active privileges from the old one and delete it afterwards." msgstr " ... استعد كل الصلاحيات الفعالة من القديم واحذهم بعد ذلك." -#: server_privileges.php:2011 +#: server_privileges.php:2031 msgid "" " ... delete the old one from the user tables and reload the privileges " "afterwards." msgstr " ... احذف القديم من جداول المستخدمين وأعد قراءة الصلاحيات بعد ذلك." -#: server_privileges.php:2033 +#: server_privileges.php:2054 msgid "Database for user" msgstr "" -#: server_privileges.php:2037 +#: server_privileges.php:2058 #, fuzzy #| msgid "None" msgctxt "Create none database for user" msgid "None" msgstr "لا شيء" -#: server_privileges.php:2038 +#: server_privileges.php:2059 msgid "Create database with same name and grant all privileges" msgstr "" -#: server_privileges.php:2039 +#: server_privileges.php:2060 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "" -#: server_privileges.php:2042 +#: server_privileges.php:2063 #, php-format msgid "Grant all privileges on database "%s"" msgstr "" -#: server_privileges.php:2065 +#: server_privileges.php:2086 #, php-format msgid "Users having access to "%s"" msgstr "المستخدمين ذوي صلاحية الوصول إلى "%s"" -#: server_privileges.php:2173 +#: server_privileges.php:2194 msgid "global" msgstr "عام" -#: server_privileges.php:2175 +#: server_privileges.php:2196 msgid "database-specific" msgstr "خاص بقاعدة بيانات" -#: server_privileges.php:2177 +#: server_privileges.php:2198 msgid "wildcard" msgstr "حرف شامل" @@ -7493,6 +7538,10 @@ msgstr "" msgid "Show insert query" msgstr "" +#: tbl_change.php:1143 +msgid "and then" +msgstr "وبعدها" + #: tbl_change.php:1147 msgid "Go back to previous page" msgstr "الرجوع إلى الصفحة السابقة" @@ -7572,7 +7621,7 @@ msgstr "" msgid "Add to index  %s column(s)" msgstr "إضافه كفهرس  %s صف(ـوف)" -#: tbl_indexes.php:256 tbl_structure.php:589 tbl_structure.php:600 +#: tbl_indexes.php:256 tbl_structure.php:587 tbl_structure.php:598 msgid "Column count has to be larger than zero." msgstr "" @@ -7686,39 +7735,39 @@ msgstr "تحديد التكامل المرجعي:" msgid "Show tables" msgstr "شاهد الجدول" -#: tbl_printview.php:310 tbl_structure.php:656 +#: tbl_printview.php:310 tbl_structure.php:654 msgid "Space usage" msgstr "المساحة المستغلة" -#: tbl_printview.php:314 tbl_structure.php:660 +#: tbl_printview.php:314 tbl_structure.php:658 msgid "Usage" msgstr "المساحة" -#: tbl_printview.php:341 tbl_structure.php:687 +#: tbl_printview.php:341 tbl_structure.php:685 msgid "Effective" msgstr "فعال" -#: tbl_printview.php:366 tbl_structure.php:725 +#: tbl_printview.php:366 tbl_structure.php:723 msgid "Row Statistics" msgstr "إحصائيات" -#: tbl_printview.php:369 tbl_structure.php:728 +#: tbl_printview.php:369 tbl_structure.php:726 msgid "Statements" msgstr "أوامر" -#: tbl_printview.php:380 tbl_structure.php:740 +#: tbl_printview.php:380 tbl_structure.php:738 msgid "static" msgstr "" -#: tbl_printview.php:382 tbl_structure.php:742 +#: tbl_printview.php:382 tbl_structure.php:740 msgid "dynamic" msgstr "ديناميكي" -#: tbl_printview.php:404 tbl_structure.php:785 +#: tbl_printview.php:404 tbl_structure.php:783 msgid "Row length" msgstr "طول الصف" -#: tbl_printview.php:414 tbl_structure.php:793 +#: tbl_printview.php:414 tbl_structure.php:791 msgid " Row size " msgstr " مقاس الصف " @@ -7790,50 +7839,50 @@ msgstr "لا شيء" msgid "Column %s has been dropped" msgstr "جدول %s حذفت" -#: tbl_structure.php:385 +#: tbl_structure.php:384 #, php-format msgid "A primary key has been added on %s" msgstr "لقد أُضيف المفتاح الأساسي في %s" -#: tbl_structure.php:400 tbl_structure.php:414 tbl_structure.php:428 +#: tbl_structure.php:398 tbl_structure.php:412 tbl_structure.php:426 #, php-format msgid "An index has been added on %s" msgstr "لقد أُضيف الفهرس في %s" -#: tbl_structure.php:506 tbl_structure.php:508 +#: tbl_structure.php:504 tbl_structure.php:506 msgid "Relation view" msgstr "عرض الروابط" -#: tbl_structure.php:515 tbl_structure.php:517 +#: tbl_structure.php:513 tbl_structure.php:515 msgid "Propose table structure" msgstr "اقترح بناء الجدول" -#: tbl_structure.php:540 +#: tbl_structure.php:538 #, fuzzy #| msgid "Add into comments" msgid "Add column" msgstr "أضف إلى الملاحظات" -#: tbl_structure.php:554 +#: tbl_structure.php:552 msgid "At End of Table" msgstr "في نهاية الجدول" -#: tbl_structure.php:555 +#: tbl_structure.php:553 msgid "At Beginning of Table" msgstr "في بداية الجدول" -#: tbl_structure.php:556 +#: tbl_structure.php:554 #, php-format msgid "After %s" msgstr "بعد %s" -#: tbl_structure.php:594 +#: tbl_structure.php:592 #, fuzzy, php-format #| msgid "Create an index on %s columns" msgid "Create an index on  %s columns" msgstr "تصميم فهرسه على %s عمود" -#: tbl_structure.php:756 +#: tbl_structure.php:754 msgid "partitioned" msgstr "" diff --git a/po/az.po b/po/az.po index d666b4e22..b2cfe1eb9 100755 --- a/po/az.po +++ b/po/az.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-06-13 09:03-0400\n" +"POT-Creation-Date: 2010-06-22 00:55+0530\n" "PO-Revision-Date: 2010-03-12 09:11+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: azerbaijani \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:1514 +#: libraries/display_tbl.lib.php:417 server_privileges.php:1534 msgid "Show all" msgstr "Hamısını göster" -#: browse_foreigners.php:82 libraries/common.lib.php:2313 +#: browse_foreigners.php:82 libraries/common.lib.php:2317 #: 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,18 +34,18 @@ 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:2831 -#: libraries/common.lib.php:2838 libraries/db_links.inc.php:75 +#: db_structure.php:106 libraries/common.lib.php:2835 +#: libraries/common.lib.php:2842 libraries/db_links.inc.php:75 #: libraries/tbl_links.inc.php:63 msgid "Search" msgstr "Axtarış" -#: browse_foreigners.php:153 db_operations.php:385 db_operations.php:429 -#: db_operations.php:499 db_operations.php:609 db_search.php:362 -#: db_structure.php:567 js/messages.php:48 libraries/Config.class.php:1046 +#: browse_foreigners.php:153 db_operations.php:394 db_operations.php:438 +#: db_operations.php:508 db_operations.php:618 db_search.php:362 +#: db_structure.php:565 js/messages.php:53 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:1335 libraries/common.lib.php:2288 +#: libraries/common.lib.php:1335 libraries/common.lib.php:2292 #: 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,15 +56,15 @@ msgstr "Axtarış" #: 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:664 server_privileges.php:1624 -#: server_privileges.php:1971 server_privileges.php:2018 -#: server_privileges.php:2057 server_replication.php:235 +#: server_privileges.php:665 server_privileges.php:1644 +#: server_privileges.php:1991 server_privileges.php:2038 +#: server_privileges.php:2078 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 #: tbl_operations.php:302 tbl_operations.php:499 tbl_operations.php:561 -#: tbl_operations.php:681 tbl_select.php:327 tbl_structure.php:562 -#: tbl_structure.php:597 tbl_tracking.php:395 tbl_tracking.php:512 +#: tbl_operations.php:681 tbl_select.php:327 tbl_structure.php:560 +#: tbl_structure.php:595 tbl_tracking.php:395 tbl_tracking.php:512 #: view_create.php:182 view_operations.php:101 msgid "Go" msgstr "Davam" @@ -90,7 +90,7 @@ msgstr "" msgid "Database %1$s has been created." msgstr "%s bazası leğv edildi." -#: db_datadict.php:49 db_operations.php:378 +#: db_datadict.php:49 db_operations.php:387 msgid "Database comment: " msgstr "Baza qısa izahatı: " @@ -117,10 +117,10 @@ 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:2070 +#: pdf_schema.php:1263 pdf_schema.php:1284 server_privileges.php:2091 #: 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 +#: tbl_structure.php:657 tbl_tracking.php:274 tbl_tracking.php:321 msgid "Type" msgstr "Tip" @@ -133,7 +133,7 @@ msgstr "Tip" msgid "Null" msgstr "Null" -#: db_datadict.php:178 db_structure.php:501 libraries/export/htmlword.php:247 +#: db_datadict.php:178 db_structure.php:499 libraries/export/htmlword.php:247 #: libraries/export/latex.php:360 libraries/export/odt.php:303 #: libraries/export/texytext.php:236 libraries/tbl_properties.inc.php:106 #: pdf_schema.php:1266 pdf_schema.php:1287 tbl_printview.php:146 @@ -161,9 +161,9 @@ msgstr "Qısa İzahatlar" #: 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: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 +#: pdf_schema.php:1344 server_privileges.php:1588 server_privileges.php:1599 +#: server_privileges.php:1909 server_privileges.php:1914 +#: server_privileges.php:2208 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 "Xeyir" @@ -177,9 +177,9 @@ msgstr "Xeyir" #: 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:1565 -#: server_privileges.php:1579 server_privileges.php:1889 -#: server_privileges.php:1892 server_privileges.php:2187 sql.php:193 +#: server_databases.php:64 server_privileges.php:1585 +#: server_privileges.php:1599 server_privileges.php:1909 +#: server_privileges.php:1912 server_privileges.php:2208 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" @@ -206,131 +206,127 @@ msgstr "Hamısını Seç" msgid "Unselect All" msgstr "Heç birini seçme" -#: db_operations.php:38 tbl_create.php:54 +#: db_operations.php:43 tbl_create.php:54 #, fuzzy msgid "The database name is empty!" msgstr "Cedveli adı boşdur!" -#: db_operations.php:236 +#: db_operations.php:241 #, fuzzy, php-format msgid "Database %s has been renamed to %s" msgstr "%s cedveli %s olaraq yeniden adlandırılmışdır" -#: db_operations.php:240 +#: db_operations.php:245 #, fuzzy, php-format msgid "Database %s has been copied to %s" msgstr "%s cedveli %s - e kopyalandı." -#: db_operations.php:412 +#: db_operations.php:421 #, fuzzy msgid "Rename database to" msgstr "Cedveli yeniden adlandır" -#: db_operations.php:417 server_processlist.php:57 +#: db_operations.php:426 server_processlist.php:57 msgid "Command" msgstr "Komanda Tipi" -#: db_operations.php:429 tbl_change.php:1143 -msgid "and then" -msgstr "" - -#: db_operations.php:455 +#: db_operations.php:464 #, fuzzy msgid "Copy database to" msgstr "Baza seçilmemişdir ve ya mövcud deyildir." -#: db_operations.php:462 tbl_operations.php:528 tbl_tracking.php:388 +#: db_operations.php:471 tbl_operations.php:528 tbl_tracking.php:388 msgid "Structure only" msgstr "Sadece quruluş" -#: db_operations.php:463 tbl_operations.php:529 tbl_tracking.php:390 +#: db_operations.php:472 tbl_operations.php:529 tbl_tracking.php:390 msgid "Structure and data" msgstr "Quruluş ve me'lumat" -#: db_operations.php:464 tbl_operations.php:530 tbl_tracking.php:389 +#: db_operations.php:473 tbl_operations.php:530 tbl_tracking.php:389 msgid "Data only" msgstr "Sadece me'lumat" -#: db_operations.php:472 +#: db_operations.php:481 msgid "CREATE DATABASE before copying" msgstr "" -#: db_operations.php:475 libraries/export/sql.php:52 +#: db_operations.php:484 libraries/export/sql.php:52 #: libraries/export/sql.php:74 libraries/export/sql.php:76 #: libraries/export/sql.php:82 tbl_operations.php:536 #, php-format msgid "Add %s" msgstr "" -#: db_operations.php:479 libraries/export/sql.php:78 tbl_operations.php:299 +#: db_operations.php:488 libraries/export/sql.php:78 tbl_operations.php:299 #: tbl_operations.php:538 msgid "Add AUTO_INCREMENT value" msgstr "AUTO_INCREMENT deyeri elave et" -#: db_operations.php:483 tbl_operations.php:545 +#: db_operations.php:492 tbl_operations.php:545 msgid "Add constraints" msgstr "" -#: db_operations.php:496 +#: db_operations.php:505 #, fuzzy msgid "Switch to copied database" msgstr "Kopyalanmış cedvele keç" -#: db_operations.php:537 +#: db_operations.php:546 msgid "BLOB Repository" msgstr "" -#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1352 -#: libraries/server_links.inc.php:49 server_processlist.php:59 +#: db_operations.php:549 db_tracking.php:76 libraries/common.lib.php:1352 +#: libraries/server_links.inc.php:50 server_processlist.php:59 #: tbl_tracking.php:596 test/theme.php:101 msgid "Status" msgstr "Status" -#: db_operations.php:548 +#: db_operations.php:557 #, fuzzy #| msgid "Enabled" msgctxt "BLOB repository" msgid "Enabled" msgstr "Enabled" -#: db_operations.php:552 +#: db_operations.php:561 #, fuzzy msgid "Disable" msgstr "Söndürülüb" -#: db_operations.php:562 +#: db_operations.php:571 msgid "Damaged" msgstr "" -#: db_operations.php:566 +#: db_operations.php:575 #, fuzzy msgctxt "BLOB repository" msgid "Repair" msgstr "Cedveli te'mir et" -#: db_operations.php:574 +#: db_operations.php:583 #, fuzzy #| msgid "Disabled" msgctxt "BLOB repository" msgid "Disabled" msgstr "Söndürülüb" -#: db_operations.php:578 +#: db_operations.php:587 #, fuzzy msgid "Enable" msgstr "Enabled" -#: db_operations.php:602 libraries/Index.class.php:448 +#: db_operations.php:611 libraries/Index.class.php:448 #: libraries/db_structure.lib.php:62 libraries/mysql_charsets.lib.php:107 #: libraries/tbl_properties.inc.php:107 libraries/tbl_properties.inc.php:730 #: server_collations.php:54 server_collations.php:66 server_databases.php:111 #: tbl_operations.php:363 tbl_select.php:137 tbl_structure.php:179 -#: tbl_structure.php:767 tbl_tracking.php:275 tbl_tracking.php:326 +#: tbl_structure.php:765 tbl_tracking.php:275 tbl_tracking.php:326 #, fuzzy msgid "Collation" msgstr "Quruluş" -#: db_operations.php:615 main.php:316 pdf_schema.php:34 +#: db_operations.php:624 main.php:316 pdf_schema.php:34 #, php-format msgid "" "The additional features for working with linked tables have been " @@ -339,14 +335,14 @@ msgstr "" "Elaqelendirilmiş cedveller üçün nezerde tutulmuş be'zi xüsusiyyetler " "passivleşdirilmişdir. Sebebini aydınlaşdırmaq üçün %sbax%s." -#: db_operations.php:648 +#: db_operations.php:657 msgid "Edit PDF Pages" msgstr "PDF Sehifelerini Deyişdir" #: 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:1665 -#: server_privileges.php:1721 server_privileges.php:1985 +#: libraries/header.inc.php:130 pdf_pages.php:424 server_privileges.php:1685 +#: server_privileges.php:1741 server_privileges.php:2005 #: server_synchronize.php:423 server_synchronize.php:866 tbl_tracking.php:592 #: test/theme.php:75 msgid "Table" @@ -355,7 +351,7 @@ msgstr "Cedvel" #: db_printview.php:105 libraries/db_structure.lib.php:56 #: libraries/header_printview.inc.php:63 libraries/import.lib.php:146 #: navigation.php:638 navigation.php:660 server_databases.php:122 -#: tbl_printview.php:394 tbl_structure.php:365 tbl_structure.php:777 +#: tbl_printview.php:394 tbl_structure.php:365 tbl_structure.php:775 msgid "Rows" msgstr "Sıra sayı" @@ -363,30 +359,30 @@ msgstr "Sıra sayı" msgid "Size" msgstr "Boy" -#: db_printview.php:162 db_structure.php:457 libraries/export/sql.php:559 +#: db_printview.php:162 db_structure.php:455 libraries/export/sql.php:559 #: libraries/export/sql.php:899 msgid "in use" msgstr "istifadede" #: db_printview.php:187 libraries/db_info.inc.php:88 #: libraries/export/sql.php:514 pdf_schema.php:1241 tbl_printview.php:434 -#: tbl_structure.php:809 +#: tbl_structure.php:807 msgid "Creation" msgstr "Quruluş" #: db_printview.php:196 libraries/db_info.inc.php:93 #: libraries/export/sql.php:519 pdf_schema.php:1246 tbl_printview.php:444 -#: tbl_structure.php:817 +#: tbl_structure.php:815 msgid "Last update" msgstr "En son yenilenme" #: db_printview.php:205 libraries/db_info.inc.php:98 #: libraries/export/sql.php:524 pdf_schema.php:1251 tbl_printview.php:454 -#: tbl_structure.php:825 +#: tbl_structure.php:823 msgid "Last check" msgstr "En son yoxlama" -#: db_printview.php:222 db_structure.php:480 +#: db_printview.php:222 db_structure.php:478 #, fuzzy, php-format #| msgid "%s table(s)" msgid "%s table" @@ -447,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:297 tbl_change.php:1031 tbl_indexes.php:250 +#: server_privileges.php:298 tbl_change.php:1031 tbl_indexes.php:250 #: tbl_select.php:288 msgid "Or" msgstr "ya da" @@ -520,9 +516,9 @@ msgstr "%s uyğunluq tapıldı (%s cedvelinde)" #: 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:2833 +#: db_structure.php:105 libraries/common.lib.php:2837 #: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50 -#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:467 +#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:465 msgid "Browse" msgstr "İçindekiler" @@ -567,36 +563,36 @@ msgstr "Inside table(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:2832 libraries/sql_query_form.lib.php:334 +#: libraries/common.lib.php:2836 libraries/sql_query_form.lib.php:334 #: libraries/sql_query_form.lib.php:337 libraries/tbl_links.inc.php:76 msgid "Insert" msgstr "Elave et" #: db_structure.php:83 db_structure.php:96 db_structure.php:109 -#: libraries/common.lib.php:2829 libraries/common.lib.php:2836 +#: libraries/common.lib.php:2833 libraries/common.lib.php:2840 #: 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:1106 #: libraries/tbl_links.inc.php:56 pmd_general.php:134 -#: server_privileges.php:593 server_replication.php:315 tbl_tracking.php:269 +#: server_privileges.php:594 server_replication.php:315 tbl_tracking.php:269 msgid "Structure" msgstr "Quruluş" #: 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:1656 +#: db_structure.php:543 db_structure.php:544 db_tracking.php:91 +#: libraries/Index.class.php:483 libraries/common.lib.php:1657 #: 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 -#: tbl_structure.php:152 tbl_structure.php:471 +#: tbl_structure.php:152 tbl_structure.php:469 msgid "Drop" msgstr "Leğv et" #: 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:1655 +#: db_structure.php:541 db_structure.php:542 libraries/common.lib.php:1656 #: libraries/mult_submits.inc.php:39 libraries/tbl_links.inc.php:105 msgid "Empty" msgstr "Boşalt" @@ -606,112 +602,112 @@ msgstr "Boşalt" msgid "Table %s has been emptied" msgstr "%s cedveli boşaldıldı" -#: db_structure.php:326 libraries/tbl_links.inc.php:133 +#: db_structure.php:325 libraries/tbl_links.inc.php:133 #, fuzzy, php-format msgid "View %s has been dropped" msgstr "%s sahesi leğv edildi" -#: db_structure.php:326 libraries/tbl_links.inc.php:133 +#: db_structure.php:325 libraries/tbl_links.inc.php:133 #, php-format msgid "Table %s has been dropped" msgstr "%s cedveli leğv edildi" -#: db_structure.php:333 +#: db_structure.php:332 msgid "Tracking is active." msgstr "" -#: db_structure.php:335 +#: db_structure.php:334 msgid "Tracking is not active." msgstr "" -#: db_structure.php:420 libraries/display_tbl.lib.php:1944 +#: db_structure.php:418 libraries/display_tbl.lib.php:1944 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation%" "s." msgstr "" -#: db_structure.php:434 db_structure.php:448 libraries/header.inc.php:126 +#: db_structure.php:432 db_structure.php:446 libraries/header.inc.php:130 #: libraries/tbl_info.inc.php:66 tbl_structure.php:185 test/theme.php:74 msgid "View" msgstr "" -#: db_structure.php:485 libraries/db_structure.lib.php:49 -#: libraries/server_links.inc.php:70 server_replication.php:33 +#: db_structure.php:483 libraries/db_structure.lib.php:49 +#: libraries/server_links.inc.php:71 server_replication.php:33 #: server_replication.php:164 server_status.php:369 #, fuzzy msgid "Replication" msgstr "Relations" -#: db_structure.php:489 +#: db_structure.php:487 msgid "Sum" msgstr "Cemi" -#: db_structure.php:496 libraries/StorageEngine.class.php:356 +#: db_structure.php:494 libraries/StorageEngine.class.php:356 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "%s bu MySQL serverinde esas depolama motoru olaraq qurulmuşdur." -#: db_structure.php:524 db_structure.php:541 db_structure.php:542 +#: db_structure.php:522 db_structure.php:539 db_structure.php:540 #: 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:1596 tbl_structure.php:455 -#: tbl_structure.php:464 +#: server_databases.php:351 server_privileges.php:1616 tbl_structure.php:453 +#: tbl_structure.php:462 msgid "With selected:" msgstr "Seçilenleri:" -#: db_structure.php:527 libraries/display_tbl.lib.php:2076 -#: server_databases.php:348 server_privileges.php:569 -#: server_privileges.php:1599 tbl_structure.php:458 +#: db_structure.php:525 libraries/display_tbl.lib.php:2076 +#: server_databases.php:348 server_privileges.php:570 +#: server_privileges.php:1619 tbl_structure.php:456 msgid "Check All" msgstr "Hamısını Seç" -#: db_structure.php:531 libraries/display_tbl.lib.php:2077 +#: db_structure.php:529 libraries/display_tbl.lib.php:2077 #: libraries/replication_gui.lib.php:33 server_databases.php:350 -#: server_privileges.php:572 server_privileges.php:1603 tbl_structure.php:462 +#: server_privileges.php:573 server_privileges.php:1623 tbl_structure.php:460 msgid "Uncheck All" msgstr "Heç Birini Seçme" -#: db_structure.php:536 +#: db_structure.php:534 msgid "Check tables having overhead" msgstr "" -#: db_structure.php:547 db_structure.php:548 db_structure.php:599 +#: db_structure.php:545 db_structure.php:546 db_structure.php:597 #: libraries/display_tbl.lib.php:2180 libraries/mult_submits.inc.php:28 -#: tbl_structure.php:492 tbl_structure.php:494 +#: tbl_structure.php:490 tbl_structure.php:492 msgid "Print view" msgstr "Çap görüntüsü" -#: db_structure.php:549 db_structure.php:550 libraries/mult_submits.inc.php:42 +#: db_structure.php:547 db_structure.php:548 libraries/mult_submits.inc.php:42 #: tbl_operations.php:581 msgid "Check table" msgstr "Cedveli yoxla" -#: db_structure.php:551 db_structure.php:552 libraries/mult_submits.inc.php:47 -#: tbl_operations.php:621 tbl_structure.php:709 tbl_structure.php:711 +#: db_structure.php:549 db_structure.php:550 libraries/mult_submits.inc.php:47 +#: tbl_operations.php:621 tbl_structure.php:707 tbl_structure.php:709 msgid "Optimize table" msgstr "Cedveli optimallaşdır" -#: db_structure.php:553 db_structure.php:554 libraries/mult_submits.inc.php:52 +#: db_structure.php:551 db_structure.php:552 libraries/mult_submits.inc.php:52 #: tbl_operations.php:611 msgid "Repair table" msgstr "Cedveli te'mir et" -#: db_structure.php:555 db_structure.php:556 libraries/mult_submits.inc.php:57 +#: db_structure.php:553 db_structure.php:554 libraries/mult_submits.inc.php:57 #: tbl_operations.php:601 msgid "Analyze table" msgstr "Cedveli analiz et" -#: db_structure.php:557 db_structure.php:558 libraries/db_links.inc.php:71 +#: db_structure.php:555 db_structure.php:556 libraries/db_links.inc.php:71 #: 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:1380 +#: libraries/server_links.inc.php:85 libraries/tbl_links.inc.php:82 +#: pmd_pdf.php:84 pmd_pdf.php:109 server_privileges.php:1397 #: setup/frames/menu.inc.php:22 tbl_row_action.php:59 msgid "Export" msgstr "Eksport" -#: db_structure.php:606 libraries/display_pdf_schema.lib.php:44 +#: db_structure.php:604 libraries/display_pdf_schema.lib.php:44 msgid "Data Dictionary" msgstr "Me'lumat lüğeti" @@ -722,10 +718,10 @@ msgstr "" #: db_tracking.php:71 libraries/export/htmlword.php:86 #: libraries/export/latex.php:148 libraries/export/odt.php:113 #: libraries/export/sql.php:342 libraries/export/texytext.php:84 -#: libraries/export/xml.php:255 libraries/header.inc.php:106 +#: libraries/export/xml.php:255 libraries/header.inc.php:110 #: libraries/header_printview.inc.php:58 server_databases.php:169 -#: server_privileges.php:1660 server_privileges.php:1721 -#: server_privileges.php:1979 server_processlist.php:56 +#: server_privileges.php:1680 server_privileges.php:1741 +#: server_privileges.php:1999 server_processlist.php:56 #: server_synchronize.php:1179 server_synchronize.php:1183 #: tbl_tracking.php:591 test/theme.php:65 msgid "Database" @@ -746,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:1542 server_privileges.php:1725 -#: server_privileges.php:2073 tbl_structure.php:187 +#: server_privileges.php:1562 server_privileges.php:1745 +#: server_privileges.php:2094 tbl_structure.php:187 msgid "Action" msgstr "Fealiyyetler" @@ -783,8 +779,8 @@ msgstr "Sadece quruluş" msgid "Untracked tables" msgstr "" -#: db_tracking.php:172 db_tracking.php:174 tbl_structure.php:528 -#: tbl_structure.php:530 +#: db_tracking.php:172 db_tracking.php:174 tbl_structure.php:526 +#: tbl_structure.php:528 #, fuzzy msgid "Track table" msgstr "Cedveli yoxla" @@ -942,189 +938,235 @@ msgstr "Host adı boşdur!" msgid "The user name is empty!" msgstr "İstifadeçi adı boş qaldı!" -#: js/messages.php:44 server_privileges.php:1236 user_password.php:70 +#: js/messages.php:44 server_privileges.php:1241 user_password.php:70 msgid "The password is empty!" msgstr "Parol boşdur!" -#: js/messages.php:45 server_privileges.php:1234 user_password.php:73 +#: js/messages.php:45 server_privileges.php:1239 user_password.php:73 msgid "The passwords aren't the same!" msgstr "Girdiyiniz parollar eyni deyil!" -#: js/messages.php:49 pmd_general.php:342 pmd_general.php:379 +#: js/messages.php:46 +#, fuzzy +#| msgid "Add a new User" +msgid "Add a New User" +msgstr "Yeni İstifadeçi elave Et" + +#: js/messages.php:47 js/messages.php:54 pmd_general.php:342 +#: pmd_general.php:379 msgid "Cancel" msgstr "" -#: js/messages.php:52 pmd_save_pos.php:54 +#: js/messages.php:48 +#, fuzzy +msgid "Create User" +msgstr "Server versiyası" + +#: js/messages.php:49 +#, fuzzy +msgid "Reloading Privileges" +msgstr "Qlobal selahiyyetler" + +#: js/messages.php:50 +#, fuzzy +#| msgid "Remove selected users" +msgid "Removing Selected Users" +msgstr "Remove selected users" + +#: js/messages.php:57 +#, fuzzy +msgid "Loading" +msgstr "Yerli" + +#: js/messages.php:58 +#, fuzzy +#| msgid "Processes" +msgid "Processing Request" +msgstr "Prosesler" + +#: js/messages.php:59 +msgid "Error in Processing Request" +msgstr "" + +#: js/messages.php:60 +msgid "Dropping Column" +msgstr "" + +#: js/messages.php:61 +msgid "Adding Primary Key" +msgstr "" + +#: js/messages.php:64 pmd_save_pos.php:54 msgid "Modifications have been saved" msgstr "Modifications have been saved" -#: js/messages.php:53 pmd_relation_upd.php:49 +#: js/messages.php:65 pmd_relation_upd.php:49 #, fuzzy msgid "Relation deleted" msgstr "Relation view" -#: js/messages.php:54 pmd_relation_new.php:64 +#: js/messages.php:66 pmd_relation_new.php:64 msgid "FOREIGN KEY relation added" msgstr "" -#: js/messages.php:55 pmd_relation_new.php:86 +#: js/messages.php:67 pmd_relation_new.php:86 #, fuzzy msgid "Internal relation added" msgstr "Ümumi elaqe variantları" -#: js/messages.php:56 pmd_relation_new.php:63 pmd_relation_new.php:88 +#: js/messages.php:68 pmd_relation_new.php:63 pmd_relation_new.php:88 msgid "Error: Relation not added." msgstr "" -#: js/messages.php:57 pmd_relation_new.php:31 +#: js/messages.php:69 pmd_relation_new.php:31 msgid "Error: relation already exists." msgstr "" -#: js/messages.php:58 +#: js/messages.php:70 msgid "Error saving coordinates for Designer." msgstr "" -#: js/messages.php:59 libraries/relation.lib.php:107 +#: js/messages.php:71 libraries/relation.lib.php:107 #: libraries/relation.lib.php:119 msgid "General relation features" msgstr "Ümumi elaqe variantları" -#: js/messages.php:59 libraries/relation.lib.php:101 +#: js/messages.php:71 libraries/relation.lib.php:101 #: libraries/relation.lib.php:108 msgid "Disabled" msgstr "Söndürülüb" -#: js/messages.php:60 +#: js/messages.php:72 msgid "Select referenced key" msgstr "" -#: js/messages.php:61 +#: js/messages.php:73 msgid "Select Foreign Key" msgstr "" -#: js/messages.php:62 +#: js/messages.php:74 msgid "Please select the primary key or a unique key" msgstr "" -#: js/messages.php:63 pmd_general.php:77 tbl_relation.php:548 +#: js/messages.php:75 pmd_general.php:77 tbl_relation.php:548 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" msgstr "Gösterilecek Saheni Seç" #. l10n: Display text for calendar close link -#: js/messages.php:73 +#: js/messages.php:85 #, fuzzy #| msgid "None" msgid "Done" msgstr "Heç biri" #. l10n: Display text for previous month link in calendar -#: js/messages.php:75 +#: js/messages.php:87 #, fuzzy #| msgid "Previous" msgid "Prev" msgstr "Evvelki" #. l10n: Display text for next month link in calendar -#: js/messages.php:77 libraries/common.lib.php:2353 -#: libraries/common.lib.php:2356 libraries/display_tbl.lib.php:338 +#: js/messages.php:89 libraries/common.lib.php:2357 +#: libraries/common.lib.php:2360 libraries/display_tbl.lib.php:338 #: server_binlog.php:205 server_binlog.php:207 tbl_printview.php:424 -#: tbl_structure.php:801 +#: tbl_structure.php:799 msgid "Next" msgstr "Sonrakı" #. l10n: Display text for current month link in calendar -#: js/messages.php:79 +#: js/messages.php:91 #, fuzzy #| msgid "Total" msgid "Today" msgstr "Cemi" -#: js/messages.php:82 +#: js/messages.php:94 #, fuzzy #| msgid "Binary" msgid "January" msgstr "Binary" -#: js/messages.php:83 +#: js/messages.php:95 msgid "February" msgstr "" -#: js/messages.php:84 +#: js/messages.php:96 #, fuzzy #| msgid "Mar" msgid "March" msgstr "Mar" -#: js/messages.php:85 +#: js/messages.php:97 #, fuzzy #| msgid "Apr" msgid "April" msgstr "Apr" -#: js/messages.php:86 +#: js/messages.php:98 msgid "May" msgstr "May" -#: js/messages.php:87 +#: js/messages.php:99 #, fuzzy #| msgid "Jun" msgid "June" msgstr "İyun" -#: js/messages.php:88 +#: js/messages.php:100 #, fuzzy #| msgid "Jul" msgid "July" msgstr "İyul" -#: js/messages.php:89 +#: js/messages.php:101 #, fuzzy #| msgid "Aug" msgid "August" msgstr "Avq" -#: js/messages.php:90 +#: js/messages.php:102 msgid "September" msgstr "" -#: js/messages.php:91 +#: js/messages.php:103 #, fuzzy #| msgid "Oct" msgid "October" msgstr "Okt" -#: js/messages.php:92 +#: js/messages.php:104 msgid "November" msgstr "" -#: js/messages.php:93 +#: js/messages.php:105 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:97 libraries/common.lib.php:1557 +#: js/messages.php:109 libraries/common.lib.php:1557 msgid "Jan" msgstr "Yan" #. l10n: Short month name -#: js/messages.php:99 libraries/common.lib.php:1559 +#: js/messages.php:111 libraries/common.lib.php:1559 msgid "Feb" msgstr "Fev" #. l10n: Short month name -#: js/messages.php:101 libraries/common.lib.php:1561 +#: js/messages.php:113 libraries/common.lib.php:1561 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:103 libraries/common.lib.php:1563 +#: js/messages.php:115 libraries/common.lib.php:1563 msgid "Apr" msgstr "Apr" #. l10n: Short month name -#: js/messages.php:105 libraries/common.lib.php:1565 +#: js/messages.php:117 libraries/common.lib.php:1565 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1132,176 +1174,176 @@ msgid "May" msgstr "May" #. l10n: Short month name -#: js/messages.php:107 libraries/common.lib.php:1567 +#: js/messages.php:119 libraries/common.lib.php:1567 msgid "Jun" msgstr "İyun" #. l10n: Short month name -#: js/messages.php:109 libraries/common.lib.php:1569 +#: js/messages.php:121 libraries/common.lib.php:1569 msgid "Jul" msgstr "İyul" #. l10n: Short month name -#: js/messages.php:111 libraries/common.lib.php:1571 +#: js/messages.php:123 libraries/common.lib.php:1571 msgid "Aug" msgstr "Avq" #. l10n: Short month name -#: js/messages.php:113 libraries/common.lib.php:1573 +#: js/messages.php:125 libraries/common.lib.php:1573 msgid "Sep" msgstr "Sent" #. l10n: Short month name -#: js/messages.php:115 libraries/common.lib.php:1575 +#: js/messages.php:127 libraries/common.lib.php:1575 msgid "Oct" msgstr "Okt" #. l10n: Short month name -#: js/messages.php:117 libraries/common.lib.php:1577 +#: js/messages.php:129 libraries/common.lib.php:1577 msgid "Nov" msgstr "Noy" #. l10n: Short month name -#: js/messages.php:119 libraries/common.lib.php:1579 +#: js/messages.php:131 libraries/common.lib.php:1579 msgid "Dec" msgstr "Dek" -#: js/messages.php:122 +#: js/messages.php:134 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "Baz" -#: js/messages.php:123 +#: js/messages.php:135 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "Baz Ert" -#: js/messages.php:124 +#: js/messages.php:136 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "Çerş Axş" -#: js/messages.php:125 +#: js/messages.php:137 msgid "Wednesday" msgstr "" -#: js/messages.php:126 +#: js/messages.php:138 msgid "Thursday" msgstr "" -#: js/messages.php:127 +#: js/messages.php:139 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "Cüme" -#: js/messages.php:128 +#: js/messages.php:140 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:132 libraries/common.lib.php:1582 +#: js/messages.php:144 libraries/common.lib.php:1582 msgid "Sun" msgstr "Baz" #. l10n: Short week day name -#: js/messages.php:134 libraries/common.lib.php:1584 +#: js/messages.php:146 libraries/common.lib.php:1584 msgid "Mon" msgstr "Baz Ert" #. l10n: Short week day name -#: js/messages.php:136 libraries/common.lib.php:1586 +#: js/messages.php:148 libraries/common.lib.php:1586 msgid "Tue" msgstr "Çerş Axş" #. l10n: Short week day name -#: js/messages.php:138 libraries/common.lib.php:1588 +#: js/messages.php:150 libraries/common.lib.php:1588 msgid "Wed" msgstr "Çerş" #. l10n: Short week day name -#: js/messages.php:140 libraries/common.lib.php:1590 +#: js/messages.php:152 libraries/common.lib.php:1590 msgid "Thu" msgstr "Cüme Axş" #. l10n: Short week day name -#: js/messages.php:142 libraries/common.lib.php:1592 +#: js/messages.php:154 libraries/common.lib.php:1592 msgid "Fri" msgstr "Cüme" #. l10n: Short week day name -#: js/messages.php:144 libraries/common.lib.php:1594 +#: js/messages.php:156 libraries/common.lib.php:1594 msgid "Sat" msgstr "Şen" #. l10n: Minimal week day name -#: js/messages.php:148 +#: js/messages.php:160 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "Baz" #. l10n: Minimal week day name -#: js/messages.php:150 +#: js/messages.php:162 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "Baz Ert" #. l10n: Minimal week day name -#: js/messages.php:152 +#: js/messages.php:164 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "Çerş Axş" #. l10n: Minimal week day name -#: js/messages.php:154 +#: js/messages.php:166 #, fuzzy #| msgid "Wed" msgid "We" msgstr "Çerş" #. l10n: Minimal week day name -#: js/messages.php:156 +#: js/messages.php:168 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "Cüme Axş" #. l10n: Minimal week day name -#: js/messages.php:158 +#: js/messages.php:170 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "Cüme" #. l10n: Minimal week day name -#: js/messages.php:160 +#: js/messages.php:172 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "Şen" #. l10n: Column header for week of the year in calendar -#: js/messages.php:162 +#: js/messages.php:174 msgid "Wk" msgstr "" -#: js/messages.php:164 +#: js/messages.php:176 msgid "Hour" msgstr "" -#: js/messages.php:165 +#: js/messages.php:177 #, fuzzy #| msgid "in use" msgid "Minute" msgstr "istifadede" -#: js/messages.php:166 +#: js/messages.php:178 #, fuzzy #| msgid "per second" msgid "Second" @@ -1358,7 +1400,7 @@ msgstr "Indeksler" #: libraries/Index.class.php:444 libraries/mult_submits.inc.php:103 #: libraries/tbl_properties.inc.php:519 tbl_structure.php:33 -#: tbl_structure.php:155 tbl_structure.php:159 tbl_structure.php:474 +#: tbl_structure.php:155 tbl_structure.php:159 tbl_structure.php:472 #: tbl_tracking.php:322 msgid "Unique" msgstr "Unikal" @@ -1400,8 +1442,8 @@ msgid "" "removed." msgstr "" -#: libraries/List_Database.class.php:431 libraries/server_links.inc.php:41 -#: server_databases.php:88 server_privileges.php:1660 +#: libraries/List_Database.class.php:431 libraries/server_links.inc.php:42 +#: server_databases.php:88 server_privileges.php:1680 #: setup/lib/messages.inc.php:110 test/theme.php:93 msgid "Databases" msgstr "Me'lumat Bazaları" @@ -1564,7 +1606,7 @@ msgstr "Parol:" msgid "Server Choice" msgstr "Quraşdırılmış Serverler" -#: libraries/auth/cookie.auth.lib.php:320 libraries/header.inc.php:59 +#: libraries/auth/cookie.auth.lib.php:320 libraries/header.inc.php:63 msgid "Cookies must be enabled past this point." msgstr "Sisteme girebilmeniz üçün çerez faylları (cookie-ler) aktiv olmalıdır." @@ -1644,7 +1686,7 @@ msgstr "" "Can not use iconv nor libiconv nor recode_string function while extension " "reports to be loaded. Check your php configuration." -#: libraries/common.inc.php:583 +#: libraries/common.inc.php:587 msgid "" "phpMyAdmin was unable to read your configuration file!
This might " "happen if PHP finds a parse error in it or PHP cannot find the file.
Eger boş sehife ile qarşılaşsanız, demek ki, " "her şey qaydasındadır." -#: libraries/common.inc.php:594 +#: libraries/common.inc.php:598 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "" -#: libraries/common.inc.php:599 +#: libraries/common.inc.php:603 msgid "" "The $cfg['PmaAbsoluteUri'] directive MUST be set in your " "configuration file!" @@ -1673,27 +1715,27 @@ msgstr "" "$cfg['PmaAbsoluteUri'] direktivi PMA konfiqurasiya faylınızda " "QURULMAMIŞDIR!" -#: libraries/common.inc.php:629 +#: libraries/common.inc.php:633 #, php-format msgid "Invalid server index: %s" msgstr "" -#: libraries/common.inc.php:636 +#: libraries/common.inc.php:640 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" -#: libraries/common.inc.php:645 libraries/header.inc.php:96 +#: libraries/common.inc.php:649 libraries/header.inc.php:100 #: libraries/select_server.lib.php:41 libraries/select_server.lib.php:47 #: main.php:185 test/theme.php:57 msgid "Server" msgstr "Server" -#: libraries/common.inc.php:823 +#: libraries/common.inc.php:827 msgid "Invalid authentication method set in configuration:" msgstr "" -#: libraries/common.inc.php:926 +#: libraries/common.inc.php:930 #, php-format msgid "You should upgrade to %s %s or later." msgstr "" @@ -1828,45 +1870,45 @@ msgstr "." msgid "%B %d, %Y at %I:%M %p" msgstr "%d %B, %Y saat %H:%M" -#: libraries/common.lib.php:1907 +#: libraries/common.lib.php:1911 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s gün, %s saat, %s deqiqe ve %s saniye" -#: libraries/common.lib.php:2322 libraries/common.lib.php:2325 +#: libraries/common.lib.php:2326 libraries/common.lib.php:2329 #: libraries/display_tbl.lib.php:290 server_status.php:719 msgid "Begin" msgstr "Başla" -#: libraries/common.lib.php:2323 libraries/common.lib.php:2326 +#: libraries/common.lib.php:2327 libraries/common.lib.php:2330 #: libraries/display_tbl.lib.php:291 server_binlog.php:168 #: server_binlog.php:170 msgid "Previous" msgstr "Evvelki" -#: libraries/common.lib.php:2354 libraries/common.lib.php:2357 +#: libraries/common.lib.php:2358 libraries/common.lib.php:2361 #: libraries/display_tbl.lib.php:353 msgid "End" msgstr "Son" -#: libraries/common.lib.php:2430 +#: libraries/common.lib.php:2434 #, php-format msgid "Jump to database "%s"." msgstr ""%s" me'lumat bazasına keç." -#: libraries/common.lib.php:2450 +#: libraries/common.lib.php:2454 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" -#: libraries/common.lib.php:2830 libraries/common.lib.php:2837 +#: libraries/common.lib.php:2834 libraries/common.lib.php:2841 #: libraries/db_links.inc.php:68 libraries/export/sql.php:25 -#: libraries/import/sql.php:18 libraries/server_links.inc.php:45 +#: libraries/import/sql.php:18 libraries/server_links.inc.php:46 #: libraries/tbl_links.inc.php:60 querywindow.php:99 test/theme.php:97 msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2839 libraries/db_links.inc.php:104 +#: libraries/common.lib.php:2843 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,16 +1957,16 @@ msgstr "Sorğu" msgid "Designer" msgstr "" -#: libraries/db_links.inc.php:98 libraries/server_links.inc.php:88 +#: libraries/db_links.inc.php:98 libraries/server_links.inc.php:89 #: libraries/tbl_links.inc.php:91 pmd_pdf.php:84 pmd_pdf.php:110 #: setup/frames/menu.inc.php:21 #, fuzzy msgid "Import" msgstr "Eksport" -#: libraries/db_links.inc.php:111 libraries/server_links.inc.php:66 -#: server_privileges.php:111 server_privileges.php:1722 -#: server_privileges.php:2071 test/theme.php:117 +#: libraries/db_links.inc.php:111 libraries/server_links.inc.php:67 +#: server_privileges.php:112 server_privileges.php:1742 +#: server_privileges.php:2092 test/theme.php:117 msgid "Privileges" msgstr "Selahiyyetler" @@ -1943,7 +1985,7 @@ msgid "" msgstr "" #: libraries/db_structure.lib.php:69 server_databases.php:142 -#: tbl_printview.php:336 tbl_structure.php:682 +#: tbl_printview.php:336 tbl_structure.php:680 msgid "Overhead" msgstr "Aşma deyeri" @@ -1960,7 +2002,7 @@ msgstr "" msgid "(or the local MySQL server's socket is not correctly configured)" msgstr "" -#: libraries/dbi/mysql.dbi.lib.php:362 tbl_structure.php:608 +#: libraries/dbi/mysql.dbi.lib.php:362 tbl_structure.php:606 msgid "Details..." msgstr "" @@ -1970,22 +2012,22 @@ msgid "Change password" msgstr "Parolu Deyişdir" #: libraries/display_change_password.lib.php:35 -#: libraries/replication_gui.lib.php:345 server_privileges.php:807 +#: libraries/replication_gui.lib.php:345 server_privileges.php:808 msgid "No Password" msgstr "Parol Yoxdur" #: 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:796 -#: server_privileges.php:800 server_privileges.php:811 -#: server_privileges.php:1538 server_synchronize.php:1175 +#: libraries/replication_gui.lib.php:349 server_privileges.php:797 +#: server_privileges.php:801 server_privileges.php:812 +#: server_privileges.php:1558 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:815 server_privileges.php:818 +#: server_privileges.php:816 server_privileges.php:819 msgid "Re-type" msgstr "Re-type" @@ -1998,12 +2040,12 @@ msgid "MySQL 4.0 compatible" msgstr "" #: libraries/display_change_password.lib.php:72 -#: libraries/replication_gui.lib.php:360 server_privileges.php:822 +#: libraries/replication_gui.lib.php:360 server_privileges.php:823 msgid "Generate Password" msgstr "" #: libraries/display_change_password.lib.php:75 -#: libraries/replication_gui.lib.php:363 server_privileges.php:825 +#: libraries/replication_gui.lib.php:363 server_privileges.php:826 #, fuzzy msgid "Generate" msgstr "Qurucu" @@ -2017,8 +2059,8 @@ msgstr "Yeni me'lumat bazası qur" msgid "Create" msgstr "Qur" -#: libraries/display_create_database.lib.php:40 server_privileges.php:113 -#: server_privileges.php:1427 server_replication.php:35 +#: libraries/display_create_database.lib.php:40 server_privileges.php:114 +#: server_privileges.php:1447 server_replication.php:35 msgid "No Privileges" msgstr "Selahiyyet çatışmazlığı" @@ -2107,7 +2149,7 @@ msgstr "Sıxışdı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:1875 server_processlist.php:75 +#: server_privileges.php:1895 server_processlist.php:75 msgid "None" msgstr "Heç biri" @@ -2291,7 +2333,7 @@ msgstr "" #: libraries/import/docsql.php:34 libraries/import/ldi.php:47 #: libraries/import/ods.php:30 libraries/import/sql.php:20 #: libraries/import/xls.php:26 libraries/import/xlsx.php:26 -#: libraries/import/xml.php:25 tbl_select.php:267 tbl_structure.php:753 +#: libraries/import/xml.php:25 tbl_select.php:267 tbl_structure.php:751 #, fuzzy msgid "Options" msgstr "Emeliyyatlar" @@ -2370,7 +2412,7 @@ msgstr "sorğu %01.4f saniyede icra edildi" #: libraries/display_tbl.lib.php:2089 libraries/mult_submits.inc.php:113 #: querywindow.php:125 querywindow.php:129 querywindow.php:132 -#: tbl_structure.php:25 tbl_structure.php:150 tbl_structure.php:470 +#: tbl_structure.php:25 tbl_structure.php:150 tbl_structure.php:468 msgid "Change" msgstr "Deyişdir" @@ -2438,7 +2480,7 @@ msgstr "" #: libraries/engines/innodb.lib.php:194 server_databases.php:137 #: server_databases.php:305 server_status.php:525 server_status.php:586 -#: server_status.php:607 tbl_printview.php:351 tbl_structure.php:696 +#: server_status.php:607 tbl_printview.php:351 tbl_structure.php:694 msgid "Total" msgstr "Cemi" @@ -2685,7 +2727,7 @@ msgid "" msgstr "" #: libraries/export/codegen.php:37 setup/lib/messages.inc.php:88 -#: tbl_printview.php:376 tbl_structure.php:737 +#: tbl_printview.php:376 tbl_structure.php:735 msgid "Format" msgstr "Format" @@ -2757,8 +2799,8 @@ 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:576 server_replication.php:316 tbl_printview.php:317 -#: tbl_structure.php:665 +#: server_privileges.php:577 server_replication.php:316 tbl_printview.php:317 +#: tbl_structure.php:663 msgid "Data" msgstr "Me'lumat" @@ -2807,9 +2849,9 @@ msgstr "MIME-tipi" #: 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:731 -#: server_privileges.php:734 server_privileges.php:790 -#: server_privileges.php:1537 server_privileges.php:2069 +#: libraries/replication_gui.lib.php:329 server_privileges.php:732 +#: server_privileges.php:735 server_privileges.php:791 +#: server_privileges.php:1557 server_privileges.php:2090 #: server_processlist.php:55 server_synchronize.php:1159 msgid "Host" msgstr "Host" @@ -3009,7 +3051,7 @@ msgstr "" msgid "Open new phpMyAdmin window" msgstr "" -#: libraries/header.inc.php:115 +#: libraries/header.inc.php:119 #, fuzzy msgid "New table" msgstr "Cedvel yoxdur" @@ -3169,20 +3211,20 @@ 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 +#: tbl_structure.php:471 msgid "Primary" msgstr "Birinci Dereceli" #: libraries/mult_submits.inc.php:98 libraries/tbl_properties.inc.php:116 #: libraries/tbl_properties.inc.php:525 tbl_printview.php:326 #: tbl_structure.php:31 tbl_structure.php:154 tbl_structure.php:158 -#: tbl_structure.php:475 tbl_structure.php:673 +#: tbl_structure.php:473 tbl_structure.php:671 msgid "Index" msgstr "İndeks" #: libraries/mult_submits.inc.php:108 libraries/tbl_properties.inc.php:531 #: tbl_structure.php:35 tbl_structure.php:156 tbl_structure.php:160 -#: tbl_structure.php:478 +#: tbl_structure.php:476 msgid "Fulltext" msgstr "Tam metn (Fulltext)" @@ -3488,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:711 -#: server_privileges.php:714 server_privileges.php:721 +#: libraries/replication_gui.lib.php:259 server_privileges.php:712 +#: server_privileges.php:715 server_privileges.php:722 #: server_synchronize.php:1171 msgid "User name" msgstr "İstifadeçi adı" @@ -3514,7 +3556,7 @@ msgstr "Deyişen" #: 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 +#: tbl_structure.php:727 msgid "Value" msgstr "Deyer" @@ -3533,34 +3575,34 @@ msgstr "" msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:254 server_privileges.php:716 +#: libraries/replication_gui.lib.php:254 server_privileges.php:717 msgid "Any user" msgstr "Her hansı istifadeçi" #: 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 +#: libraries/replication_gui.lib.php:346 server_privileges.php:718 +#: server_privileges.php:785 server_privileges.php:809 +#: server_privileges.php:1948 server_privileges.php:1978 msgid "Use text field" msgstr "Use text field" -#: libraries/replication_gui.lib.php:302 server_privileges.php:764 +#: libraries/replication_gui.lib.php:302 server_privileges.php:765 msgid "Any host" msgstr "Her hansı host" -#: libraries/replication_gui.lib.php:306 server_privileges.php:768 +#: libraries/replication_gui.lib.php:306 server_privileges.php:769 msgid "Local" msgstr "Yerli" -#: libraries/replication_gui.lib.php:312 server_privileges.php:773 +#: libraries/replication_gui.lib.php:312 server_privileges.php:774 msgid "This Host" msgstr "Bu Host" -#: libraries/replication_gui.lib.php:318 server_privileges.php:779 +#: libraries/replication_gui.lib.php:318 server_privileges.php:780 msgid "Use Host Table" msgstr "Use Host Table" -#: libraries/replication_gui.lib.php:331 server_privileges.php:792 +#: libraries/replication_gui.lib.php:331 server_privileges.php:793 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -3595,31 +3637,31 @@ msgstr "" msgid "Servers" msgstr "Server" -#: libraries/server_links.inc.php:53 server_engines.php:112 +#: libraries/server_links.inc.php:54 server_engines.php:112 #: server_engines.php:116 server_status.php:415 test/theme.php:105 msgid "Variables" msgstr "Deyişenler" -#: libraries/server_links.inc.php:57 test/theme.php:109 +#: libraries/server_links.inc.php:58 test/theme.php:109 #, fuzzy msgid "Charsets" msgstr "Charset" -#: libraries/server_links.inc.php:61 test/theme.php:113 +#: libraries/server_links.inc.php:62 test/theme.php:113 msgid "Engines" msgstr "Motorlar" -#: libraries/server_links.inc.php:76 server_binlog.php:110 +#: libraries/server_links.inc.php:77 server_binlog.php:110 #: server_status.php:364 test/theme.php:121 #, fuzzy msgid "Binary log" msgstr "Binary" -#: libraries/server_links.inc.php:80 +#: libraries/server_links.inc.php:81 msgid "Processes" msgstr "Prosesler" -#: libraries/server_links.inc.php:92 server_synchronize.php:1092 +#: libraries/server_links.inc.php:93 server_synchronize.php:1092 #: server_synchronize.php:1100 msgid "Synchronize" msgstr "" @@ -3869,12 +3911,12 @@ msgstr "" msgid "Save" msgstr "Qeyd Et" -#: libraries/tbl_properties.inc.php:780 tbl_structure.php:542 +#: libraries/tbl_properties.inc.php:780 tbl_structure.php:540 #, fuzzy, php-format msgid "Add %s column(s)" msgstr "Yeni sahe elave et" -#: libraries/tbl_properties.inc.php:784 tbl_structure.php:536 +#: libraries/tbl_properties.inc.php:784 tbl_structure.php:534 #, fuzzy #| msgid "You have to choose at least one column to display" msgid "You have to add at least one column." @@ -4058,8 +4100,8 @@ msgstr "Yenile" msgid "Protocol version" msgstr "" -#: main.php:189 server_privileges.php:1389 server_privileges.php:1536 -#: server_privileges.php:1650 server_privileges.php:2068 +#: main.php:189 server_privileges.php:1406 server_privileges.php:1556 +#: server_privileges.php:1670 server_privileges.php:2089 #: server_processlist.php:54 msgid "User" msgstr "İstifadeçi" @@ -4494,115 +4536,115 @@ msgstr "MySQL Depolama Motorları" msgid "View dump (schema) of databases" msgstr "Me'lumat bazalarının sxemini göster" -#: server_privileges.php:24 server_privileges.php:266 +#: server_privileges.php:25 server_privileges.php:267 msgid "Includes all privileges except GRANT." msgstr "GRANT-dan başqa bütün selahiyyetler daxildir." -#: server_privileges.php:25 server_privileges.php:192 -#: server_privileges.php:515 +#: server_privileges.php:26 server_privileges.php:193 +#: server_privileges.php:516 msgid "Allows altering the structure of existing tables." msgstr "Mövcud olan cedvellerin strukturunu deyişdirmeye icaze verir." -#: server_privileges.php:26 server_privileges.php:208 -#: server_privileges.php:521 +#: server_privileges.php:27 server_privileges.php:209 +#: server_privileges.php:522 #, fuzzy msgid "Allows altering and dropping stored routines." msgstr "Allows creating and dropping indexes." -#: server_privileges.php:27 server_privileges.php:184 -#: server_privileges.php:514 +#: server_privileges.php:28 server_privileges.php:185 +#: server_privileges.php:515 msgid "Allows creating new databases and tables." msgstr "Yeni bazalar ve cedveller qurmağa icaze verir." -#: server_privileges.php:28 server_privileges.php:207 -#: server_privileges.php:520 +#: server_privileges.php:29 server_privileges.php:208 +#: server_privileges.php:521 #, fuzzy msgid "Allows creating stored routines." msgstr "Yeni cedveller qurmağa icaze verir." -#: server_privileges.php:29 server_privileges.php:514 +#: server_privileges.php:30 server_privileges.php:515 msgid "Allows creating new tables." msgstr "Yeni cedveller qurmağa icaze verir." -#: server_privileges.php:30 server_privileges.php:195 -#: server_privileges.php:518 +#: server_privileges.php:31 server_privileges.php:196 +#: server_privileges.php:519 msgid "Allows creating temporary tables." msgstr "Keçici cedveller qurmağa icaze verir." -#: server_privileges.php:31 server_privileges.php:209 -#: server_privileges.php:554 +#: server_privileges.php:32 server_privileges.php:210 +#: server_privileges.php:555 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 +#: server_privileges.php:33 server_privileges.php:200 +#: server_privileges.php:204 server_privileges.php:527 +#: server_privileges.php:531 #, fuzzy msgid "Allows creating new views." msgstr "Yeni cedveller qurmağa icaze verir." -#: server_privileges.php:33 server_privileges.php:183 -#: server_privileges.php:506 +#: server_privileges.php:34 server_privileges.php:184 +#: server_privileges.php:507 msgid "Allows deleting data." msgstr "Me'lumat silmeye icaze verir." -#: server_privileges.php:34 server_privileges.php:185 -#: server_privileges.php:517 +#: server_privileges.php:35 server_privileges.php:186 +#: server_privileges.php:518 msgid "Allows dropping databases and tables." msgstr "Baza ve cedvel leğv etmeye icaze verir." -#: server_privileges.php:35 server_privileges.php:517 +#: server_privileges.php:36 server_privileges.php:518 msgid "Allows dropping tables." msgstr "Cedvelleri leğv etmeye icaze verir." -#: server_privileges.php:36 server_privileges.php:200 -#: server_privileges.php:534 +#: server_privileges.php:37 server_privileges.php:201 +#: server_privileges.php:535 msgid "Allows to set up events for the event scheduler" msgstr "" -#: server_privileges.php:37 server_privileges.php:210 -#: server_privileges.php:522 +#: server_privileges.php:38 server_privileges.php:211 +#: server_privileges.php:523 msgid "Allows executing stored routines." msgstr "" -#: server_privileges.php:38 server_privileges.php:189 -#: server_privileges.php:509 +#: server_privileges.php:39 server_privileges.php:190 +#: server_privileges.php:510 msgid "Allows importing data from and exporting data into files." msgstr "Allows importing data from and exporting data into files." -#: server_privileges.php:39 server_privileges.php:540 +#: server_privileges.php:40 server_privileges.php:541 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "Allows adding users and privileges without reloading the privilege tables." -#: server_privileges.php:40 server_privileges.php:191 -#: server_privileges.php:516 +#: server_privileges.php:41 server_privileges.php:192 +#: server_privileges.php:517 msgid "Allows creating and dropping indexes." msgstr "Allows creating and dropping indexes." -#: server_privileges.php:41 server_privileges.php:181 -#: server_privileges.php:442 server_privileges.php:504 +#: server_privileges.php:42 server_privileges.php:182 +#: server_privileges.php:443 server_privileges.php:505 msgid "Allows inserting and replacing data." msgstr "Allows inserting and replacing data." -#: server_privileges.php:42 server_privileges.php:196 -#: server_privileges.php:549 +#: server_privileges.php:43 server_privileges.php:197 +#: server_privileges.php:550 msgid "Allows locking tables for the current thread." msgstr "Allows locking tables for the current thread." -#: server_privileges.php:43 server_privileges.php:646 -#: server_privileges.php:648 +#: server_privileges.php:44 server_privileges.php:647 +#: server_privileges.php:649 msgid "Limits the number of new connections the user may open per hour." msgstr "Limits the number of new connections the user may open per hour." -#: server_privileges.php:44 server_privileges.php:634 -#: server_privileges.php:636 +#: server_privileges.php:45 server_privileges.php:635 +#: server_privileges.php:637 msgid "Limits the number of queries the user may send to the server per hour." msgstr "Limits the number of queries the user may send to the server per hour." -#: server_privileges.php:45 server_privileges.php:640 -#: server_privileges.php:642 +#: server_privileges.php:46 server_privileges.php:641 +#: server_privileges.php:643 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -4610,59 +4652,59 @@ 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 +#: server_privileges.php:47 server_privileges.php:653 +#: server_privileges.php:655 #, fuzzy msgid "Limits the number of simultaneous connections the user may have." msgstr "Limits the number of new connections the user may open per hour." -#: server_privileges.php:47 server_privileges.php:188 -#: server_privileges.php:544 +#: server_privileges.php:48 server_privileges.php:189 +#: server_privileges.php:545 msgid "Allows viewing processes of all users" msgstr "" -#: server_privileges.php:48 server_privileges.php:190 -#: server_privileges.php:448 server_privileges.php:550 +#: server_privileges.php:49 server_privileges.php:191 +#: server_privileges.php:449 server_privileges.php:551 msgid "Has no effect in this MySQL version." msgstr "Has no effect in this MySQL version." -#: server_privileges.php:49 server_privileges.php:186 -#: server_privileges.php:545 +#: server_privileges.php:50 server_privileges.php:187 +#: server_privileges.php:546 msgid "Allows reloading server settings and flushing the server's caches." msgstr "Allows reloading server settings and flushing the server's caches." -#: server_privileges.php:50 server_privileges.php:198 -#: server_privileges.php:552 +#: server_privileges.php:51 server_privileges.php:199 +#: server_privileges.php:553 msgid "Allows the user to ask where the slaves / masters are." msgstr "Gives the right to the user to ask where the slaves / masters are." -#: server_privileges.php:51 server_privileges.php:197 -#: server_privileges.php:553 +#: server_privileges.php:52 server_privileges.php:198 +#: server_privileges.php:554 msgid "Needed for the replication slaves." msgstr "Needed for the replication slaves." -#: server_privileges.php:52 server_privileges.php:180 -#: server_privileges.php:439 server_privileges.php:503 +#: server_privileges.php:53 server_privileges.php:181 +#: server_privileges.php:440 server_privileges.php:504 msgid "Allows reading data." msgstr "Allows reading data." -#: server_privileges.php:53 server_privileges.php:193 -#: server_privileges.php:547 +#: server_privileges.php:54 server_privileges.php:194 +#: server_privileges.php:548 msgid "Gives access to the complete list of databases." msgstr "Gives access to the complete list of databases." -#: server_privileges.php:54 server_privileges.php:204 -#: server_privileges.php:206 server_privileges.php:519 +#: server_privileges.php:55 server_privileges.php:205 +#: server_privileges.php:207 server_privileges.php:520 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "" -#: server_privileges.php:55 server_privileges.php:187 -#: server_privileges.php:546 +#: server_privileges.php:56 server_privileges.php:188 +#: server_privileges.php:547 msgid "Allows shutting down the server." msgstr "Allows shutting down the server." -#: server_privileges.php:56 server_privileges.php:194 -#: server_privileges.php:543 +#: server_privileges.php:57 server_privileges.php:195 +#: server_privileges.php:544 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -4672,158 +4714,158 @@ msgstr "" "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 +#: server_privileges.php:58 server_privileges.php:202 +#: server_privileges.php:536 #, fuzzy msgid "Allows creating and dropping triggers" msgstr "Allows creating and dropping indexes." -#: server_privileges.php:58 server_privileges.php:182 -#: server_privileges.php:445 server_privileges.php:505 +#: server_privileges.php:59 server_privileges.php:183 +#: server_privileges.php:446 server_privileges.php:506 msgid "Allows changing data." msgstr "Allows changing data." -#: server_privileges.php:59 server_privileges.php:260 +#: server_privileges.php:60 server_privileges.php:261 msgid "No privileges." msgstr "Selahiyyet te'yin edilmedi." -#: server_privileges.php:302 server_privileges.php:303 +#: server_privileges.php:303 server_privileges.php:304 #, fuzzy #| msgid "None" msgctxt "None privileges" msgid "None" msgstr "Heç biri" -#: server_privileges.php:431 server_privileges.php:566 -#: server_privileges.php:1718 server_privileges.php:1724 +#: server_privileges.php:432 server_privileges.php:567 +#: server_privileges.php:1738 server_privileges.php:1744 msgid "Table-specific privileges" msgstr "Cedvelexas selahiyyetler" -#: server_privileges.php:432 server_privileges.php:574 -#: server_privileges.php:1540 +#: server_privileges.php:433 server_privileges.php:575 +#: server_privileges.php:1560 msgid " Note: MySQL privilege names are expressed in English " msgstr " Qeyd: MySQL selahiyyet adları ingilis dilinde ifade edilmişdir " -#: server_privileges.php:563 server_privileges.php:1539 +#: server_privileges.php:564 server_privileges.php:1559 msgid "Global privileges" msgstr "Qlobal selahiyyetler" -#: server_privileges.php:565 server_privileges.php:1718 +#: server_privileges.php:566 server_privileges.php:1738 msgid "Database-specific privileges" msgstr "Me'lumat Bazasına Mexsus Selahiyyetler" -#: server_privileges.php:610 +#: server_privileges.php:611 msgid "Administration" msgstr "Administrasiya" -#: server_privileges.php:630 +#: server_privileges.php:631 msgid "Resource limits" msgstr "Resource limits" -#: server_privileges.php:631 +#: server_privileges.php:632 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "Qeyd: Bu variantları 0 (sıfır)-a çevirmek hüdudu (limiti) qaldıracaq." -#: server_privileges.php:708 +#: server_privileges.php:709 msgid "Login Information" msgstr "Sisteme Giriş Me'lumatı" -#: server_privileges.php:802 +#: server_privileges.php:803 msgid "Do not change the password" msgstr "Parolu deyişdirme" -#: server_privileges.php:843 server_privileges.php:2205 +#: server_privileges.php:844 server_privileges.php:2226 #, fuzzy #| msgid "No user(s) found." msgid "No user found." msgstr "İstifadeçi(ler) tapılmadı." -#: server_privileges.php:887 +#: server_privileges.php:888 #, php-format msgid "The user %s already exists!" msgstr "%s istifadeçisi mövcuddur!" -#: server_privileges.php:970 +#: server_privileges.php:971 msgid "You have added a new user." msgstr "Yeni istifadeçi elave etdiniz." -#: server_privileges.php:1191 +#: server_privileges.php:1196 #, php-format msgid "You have updated the privileges for %s." msgstr "You have updated the privileges for %s." -#: server_privileges.php:1215 +#: server_privileges.php:1220 #, php-format msgid "You have revoked the privileges for %s" msgstr "You have revoked the privileges for %s" -#: server_privileges.php:1251 +#: server_privileges.php:1256 #, php-format msgid "The password for %s was changed successfully." msgstr "%s üçün parol müveffeqiyyetle deyişdirilmişdir." -#: server_privileges.php:1271 +#: server_privileges.php:1276 #, php-format msgid "Deleting %s" msgstr "%s silinir" -#: server_privileges.php:1282 +#: server_privileges.php:1287 msgid "No users selected for deleting!" msgstr "" -#: server_privileges.php:1285 +#: server_privileges.php:1290 msgid "Reloading the privileges" msgstr "Reloading the privileges" -#: server_privileges.php:1300 +#: server_privileges.php:1305 msgid "The selected users have been deleted successfully." msgstr "The selected users have been deleted successfully." -#: server_privileges.php:1335 +#: server_privileges.php:1344 msgid "The privileges were reloaded successfully." msgstr "The privileges were reloaded successfully." -#: server_privileges.php:1363 server_privileges.php:1649 +#: server_privileges.php:1380 server_privileges.php:1669 msgid "Edit Privileges" msgstr "Selahiyyetleri Deyişdir" -#: server_privileges.php:1372 +#: server_privileges.php:1389 msgid "Revoke" msgstr "Revoke" -#: server_privileges.php:1404 +#: server_privileges.php:1424 msgid "User overview" msgstr "User overview" -#: server_privileges.php:1541 server_privileges.php:1723 -#: server_privileges.php:2072 +#: server_privileges.php:1561 server_privileges.php:1743 +#: server_privileges.php:2093 msgid "Grant" msgstr "İcaze ver" -#: server_privileges.php:1560 server_privileges.php:2162 +#: server_privileges.php:1580 server_privileges.php:2183 msgid "Any" msgstr "Her hansı" -#: server_privileges.php:1609 server_privileges.php:1633 -#: server_privileges.php:2027 server_privileges.php:2216 +#: server_privileges.php:1629 server_privileges.php:1653 +#: server_privileges.php:2048 server_privileges.php:2237 msgid "Add a new User" msgstr "Yeni İstifadeçi elave Et" -#: server_privileges.php:1614 +#: server_privileges.php:1634 msgid "Remove selected users" msgstr "Remove selected users" -#: server_privileges.php:1617 +#: server_privileges.php:1637 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:1618 server_privileges.php:1619 -#: server_privileges.php:1620 +#: server_privileges.php:1638 server_privileges.php:1639 +#: server_privileges.php:1640 msgid "Drop the databases that have the same names as the users." msgstr "İstifadeçilerle eyni adlı me'lumat bazalarını leğv et." -#: server_privileges.php:1636 +#: server_privileges.php:1656 #, fuzzy, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -4836,48 +4878,48 @@ msgstr "" "içerisindekiler webserver-in istifade etdiklerinden ferqli ola biler. Bu " "halda, davam etmeden evvel, selahiyyetleri %syeniden yüklemelisiniz%s." -#: server_privileges.php:1684 +#: server_privileges.php:1704 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:1724 +#: server_privileges.php:1744 msgid "Column-specific privileges" msgstr "Sütunaxas Selahiyyetler" -#: server_privileges.php:1925 +#: server_privileges.php:1945 msgid "Add privileges on the following database" msgstr "Aşağıdakı me'lumat bazası üçün selahiyyet müeyyen et" -#: server_privileges.php:1943 +#: server_privileges.php:1963 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" -#: server_privileges.php:1946 +#: server_privileges.php:1966 msgid "Add privileges on the following table" msgstr "Aşağıdakı cedvel üçün selahiyyetler müeyyen et" -#: server_privileges.php:2003 +#: server_privileges.php:2023 msgid "Change Login Information / Copy User" msgstr "Sistem Giriş Me'lumatını Deyişdir / İstifadeçini Kopyala" -#: server_privileges.php:2006 +#: server_privileges.php:2026 msgid "Create a new user with the same privileges and ..." msgstr "Eyni selahiyyetlere sahib yeni istifadeçi qur ve ..." -#: server_privileges.php:2008 +#: server_privileges.php:2028 msgid "... keep the old one." msgstr "... köhnesini saxla." -#: server_privileges.php:2009 +#: server_privileges.php:2029 msgid " ... delete the old one from the user tables." msgstr " ... istifadeçi cedvellerinden köhnesini sil." -#: server_privileges.php:2010 +#: server_privileges.php:2030 msgid "" " ... revoke all active privileges from the old one and delete it afterwards." msgstr " ... köhne istifadeçinin selahiyyetlerini elinden alaraq onu sil." -#: server_privileges.php:2011 +#: server_privileges.php:2031 msgid "" " ... delete the old one from the user tables and reload the privileges " "afterwards." @@ -4885,44 +4927,44 @@ msgstr "" " ... istifadeçi cedvellerinden köhnesini sil ve ardından selahiyyetleri " "yeniden yükle." -#: server_privileges.php:2033 +#: server_privileges.php:2054 msgid "Database for user" msgstr "" -#: server_privileges.php:2037 +#: server_privileges.php:2058 #, fuzzy #| msgid "None" msgctxt "Create none database for user" msgid "None" msgstr "Heç biri" -#: server_privileges.php:2038 +#: server_privileges.php:2059 msgid "Create database with same name and grant all privileges" msgstr "" -#: server_privileges.php:2039 +#: server_privileges.php:2060 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "" -#: server_privileges.php:2042 +#: server_privileges.php:2063 #, fuzzy, php-format msgid "Grant all privileges on database "%s"" msgstr ""%s" bazası üçün selahiyyetleri gözden keçir." -#: server_privileges.php:2065 +#: server_privileges.php:2086 #, php-format msgid "Users having access to "%s"" msgstr "Users having access to "%s"" -#: server_privileges.php:2173 +#: server_privileges.php:2194 msgid "global" msgstr "qlobal" -#: server_privileges.php:2175 +#: server_privileges.php:2196 msgid "database-specific" msgstr "bazayaxas" -#: server_privileges.php:2177 +#: server_privileges.php:2198 msgid "wildcard" msgstr "xüsusi işare" @@ -7615,6 +7657,10 @@ msgstr "" msgid "Show insert query" msgstr "" +#: tbl_change.php:1143 +msgid "and then" +msgstr "" + #: tbl_change.php:1147 msgid "Go back to previous page" msgstr "Evvelki sehifeye qayıt" @@ -7693,7 +7739,7 @@ msgstr "(\"PRIMARY\" sadece birinci dereceli açarın adı olmalıdır!)" msgid "Add to index  %s column(s)" msgstr "İndekse  %s sütun elave et" -#: tbl_indexes.php:256 tbl_structure.php:589 tbl_structure.php:600 +#: tbl_indexes.php:256 tbl_structure.php:587 tbl_structure.php:598 msgid "Column count has to be larger than zero." msgstr "" @@ -7810,39 +7856,39 @@ msgstr "Check referential integrity:" msgid "Show tables" msgstr "Cedvelleri göster" -#: tbl_printview.php:310 tbl_structure.php:656 +#: tbl_printview.php:310 tbl_structure.php:654 msgid "Space usage" msgstr "Yer istifadesi" -#: tbl_printview.php:314 tbl_structure.php:660 +#: tbl_printview.php:314 tbl_structure.php:658 msgid "Usage" msgstr "Miqdar" -#: tbl_printview.php:341 tbl_structure.php:687 +#: tbl_printview.php:341 tbl_structure.php:685 msgid "Effective" msgstr "Effektiv" -#: tbl_printview.php:366 tbl_structure.php:725 +#: tbl_printview.php:366 tbl_structure.php:723 msgid "Row Statistics" msgstr "Sıra Statistikası" -#: tbl_printview.php:369 tbl_structure.php:728 +#: tbl_printview.php:369 tbl_structure.php:726 msgid "Statements" msgstr "Variantlar" -#: tbl_printview.php:380 tbl_structure.php:740 +#: tbl_printview.php:380 tbl_structure.php:738 msgid "static" msgstr "" -#: tbl_printview.php:382 tbl_structure.php:742 +#: tbl_printview.php:382 tbl_structure.php:740 msgid "dynamic" msgstr "dinamik" -#: tbl_printview.php:404 tbl_structure.php:785 +#: tbl_printview.php:404 tbl_structure.php:783 msgid "Row length" msgstr "Sıra uzunluğu" -#: tbl_printview.php:414 tbl_structure.php:793 +#: tbl_printview.php:414 tbl_structure.php:791 msgid " Row size " msgstr " Sıra boyu " @@ -7914,49 +7960,49 @@ msgstr "Heç biri" msgid "Column %s has been dropped" msgstr "%s cedveli leğv edildi" -#: tbl_structure.php:385 +#: tbl_structure.php:384 #, php-format msgid "A primary key has been added on %s" msgstr "%s üzerine Birinci Dereceli Açar elave edildi." -#: tbl_structure.php:400 tbl_structure.php:414 tbl_structure.php:428 +#: tbl_structure.php:398 tbl_structure.php:412 tbl_structure.php:426 #, php-format msgid "An index has been added on %s" msgstr "%s üzerine indeks elave edildi" -#: tbl_structure.php:506 tbl_structure.php:508 +#: tbl_structure.php:504 tbl_structure.php:506 msgid "Relation view" msgstr "Relation view" -#: tbl_structure.php:515 tbl_structure.php:517 +#: tbl_structure.php:513 tbl_structure.php:515 msgid "Propose table structure" msgstr "Alternativ cedvel strukturu" -#: tbl_structure.php:540 +#: tbl_structure.php:538 #, fuzzy msgid "Add column" msgstr "Yeni sahe elave et" -#: tbl_structure.php:554 +#: tbl_structure.php:552 msgid "At End of Table" msgstr "Cedvelin sonuna" -#: tbl_structure.php:555 +#: tbl_structure.php:553 msgid "At Beginning of Table" msgstr "Cedvelin başına" -#: tbl_structure.php:556 +#: tbl_structure.php:554 #, php-format msgid "After %s" msgstr "Sonra: %s" -#: tbl_structure.php:594 +#: tbl_structure.php:592 #, fuzzy, php-format #| msgid "Create an index on %s columns" msgid "Create an index on  %s columns" msgstr " %s sütunda indeks yarat" -#: tbl_structure.php:756 +#: tbl_structure.php:754 msgid "partitioned" msgstr "" @@ -8354,10 +8400,6 @@ msgstr "Cedveli yeniden adlandır" #~ msgid "Process list" #~ msgstr "Proses Siyahısı" -#, fuzzy -#~ msgid "Reload privileges" -#~ msgstr "Qlobal selahiyyetler" - #~ msgid "" #~ "The users will still have the USAGE privilege until the privileges are " #~ "reloaded." diff --git a/po/be.po b/po/be.po index f3096575a..c920eb447 100755 --- a/po/be.po +++ b/po/be.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-06-13 09:03-0400\n" +"POT-Creation-Date: 2010-06-22 00:55+0530\n" "PO-Revision-Date: 2010-03-12 09:12+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: belarusian_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:1514 +#: libraries/display_tbl.lib.php:417 server_privileges.php:1534 msgid "Show all" msgstr "Паказаць усе" -#: browse_foreigners.php:82 libraries/common.lib.php:2313 +#: browse_foreigners.php:82 libraries/common.lib.php:2317 #: 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,18 +37,18 @@ 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:2831 -#: libraries/common.lib.php:2838 libraries/db_links.inc.php:75 +#: db_structure.php:106 libraries/common.lib.php:2835 +#: libraries/common.lib.php:2842 libraries/db_links.inc.php:75 #: libraries/tbl_links.inc.php:63 msgid "Search" msgstr "Пошук" -#: browse_foreigners.php:153 db_operations.php:385 db_operations.php:429 -#: db_operations.php:499 db_operations.php:609 db_search.php:362 -#: db_structure.php:567 js/messages.php:48 libraries/Config.class.php:1046 +#: browse_foreigners.php:153 db_operations.php:394 db_operations.php:438 +#: db_operations.php:508 db_operations.php:618 db_search.php:362 +#: db_structure.php:565 js/messages.php:53 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:1335 libraries/common.lib.php:2288 +#: libraries/common.lib.php:1335 libraries/common.lib.php:2292 #: 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,15 +59,15 @@ 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:664 server_privileges.php:1624 -#: server_privileges.php:1971 server_privileges.php:2018 -#: server_privileges.php:2057 server_replication.php:235 +#: server_privileges.php:665 server_privileges.php:1644 +#: server_privileges.php:1991 server_privileges.php:2038 +#: server_privileges.php:2078 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 #: tbl_operations.php:302 tbl_operations.php:499 tbl_operations.php:561 -#: tbl_operations.php:681 tbl_select.php:327 tbl_structure.php:562 -#: tbl_structure.php:597 tbl_tracking.php:395 tbl_tracking.php:512 +#: tbl_operations.php:681 tbl_select.php:327 tbl_structure.php:560 +#: tbl_structure.php:595 tbl_tracking.php:395 tbl_tracking.php:512 #: view_create.php:182 view_operations.php:101 msgid "Go" msgstr "Панеслася" @@ -93,7 +93,7 @@ msgstr "Выкарыстоўваць гэта значэньне" msgid "Database %1$s has been created." msgstr "База дадзеных %1$s створаная." -#: db_datadict.php:49 db_operations.php:378 +#: db_datadict.php:49 db_operations.php:387 msgid "Database comment: " msgstr "Камэнтар да базы дадзеных: " @@ -120,10 +120,10 @@ 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:2070 +#: pdf_schema.php:1263 pdf_schema.php:1284 server_privileges.php:2091 #: 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 +#: tbl_structure.php:657 tbl_tracking.php:274 tbl_tracking.php:321 msgid "Type" msgstr "Тып" @@ -136,7 +136,7 @@ msgstr "Тып" msgid "Null" msgstr "Нуль" -#: db_datadict.php:178 db_structure.php:501 libraries/export/htmlword.php:247 +#: db_datadict.php:178 db_structure.php:499 libraries/export/htmlword.php:247 #: libraries/export/latex.php:360 libraries/export/odt.php:303 #: libraries/export/texytext.php:236 libraries/tbl_properties.inc.php:106 #: pdf_schema.php:1266 pdf_schema.php:1287 tbl_printview.php:146 @@ -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: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 +#: pdf_schema.php:1344 server_privileges.php:1588 server_privileges.php:1599 +#: server_privileges.php:1909 server_privileges.php:1914 +#: server_privileges.php:2208 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:1565 -#: server_privileges.php:1579 server_privileges.php:1889 -#: server_privileges.php:1892 server_privileges.php:2187 sql.php:193 +#: server_databases.php:64 server_privileges.php:1585 +#: server_privileges.php:1599 server_privileges.php:1909 +#: server_privileges.php:1912 server_privileges.php:2208 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" @@ -209,127 +209,123 @@ msgstr "Выбраць усё" msgid "Unselect All" msgstr "Зьняць усе адзнакі" -#: db_operations.php:38 tbl_create.php:54 +#: db_operations.php:43 tbl_create.php:54 msgid "The database name is empty!" msgstr "Імя базы дадзеных не пазначанае!" -#: db_operations.php:236 +#: db_operations.php:241 #, php-format msgid "Database %s has been renamed to %s" msgstr "База дадзеных %s была перайменаваная ў %s" -#: db_operations.php:240 +#: db_operations.php:245 #, php-format msgid "Database %s has been copied to %s" msgstr "База дадзеных %s была скапіяваная ў %s" -#: db_operations.php:412 +#: db_operations.php:421 msgid "Rename database to" msgstr "Перайменаваць базу дадзеных у" -#: db_operations.php:417 server_processlist.php:57 +#: db_operations.php:426 server_processlist.php:57 msgid "Command" msgstr "Каманда" -#: db_operations.php:429 tbl_change.php:1143 -msgid "and then" -msgstr "і пасьля" - -#: db_operations.php:455 +#: db_operations.php:464 msgid "Copy database to" msgstr "Капіяваць базу дадзеных у" -#: db_operations.php:462 tbl_operations.php:528 tbl_tracking.php:388 +#: db_operations.php:471 tbl_operations.php:528 tbl_tracking.php:388 msgid "Structure only" msgstr "Толькі структуру" -#: db_operations.php:463 tbl_operations.php:529 tbl_tracking.php:390 +#: db_operations.php:472 tbl_operations.php:529 tbl_tracking.php:390 msgid "Structure and data" msgstr "Структуру і дадзеныя" -#: db_operations.php:464 tbl_operations.php:530 tbl_tracking.php:389 +#: db_operations.php:473 tbl_operations.php:530 tbl_tracking.php:389 msgid "Data only" msgstr "Толькі дадзеныя" -#: db_operations.php:472 +#: db_operations.php:481 msgid "CREATE DATABASE before copying" msgstr "выканаць CREATE DATABASE перад капіяваньнем" -#: db_operations.php:475 libraries/export/sql.php:52 +#: db_operations.php:484 libraries/export/sql.php:52 #: libraries/export/sql.php:74 libraries/export/sql.php:76 #: libraries/export/sql.php:82 tbl_operations.php:536 #, php-format msgid "Add %s" msgstr "Дадаць %s" -#: db_operations.php:479 libraries/export/sql.php:78 tbl_operations.php:299 +#: db_operations.php:488 libraries/export/sql.php:78 tbl_operations.php:299 #: tbl_operations.php:538 msgid "Add AUTO_INCREMENT value" msgstr "Дадаць значэньне AUTO_INCREMENT" -#: db_operations.php:483 tbl_operations.php:545 +#: db_operations.php:492 tbl_operations.php:545 msgid "Add constraints" msgstr "Дадаць абмежаваньні" -#: db_operations.php:496 +#: db_operations.php:505 msgid "Switch to copied database" msgstr "Перайсьці да скапіяванай базы дадзеных" -#: db_operations.php:537 +#: db_operations.php:546 msgid "BLOB Repository" msgstr "" -#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1352 -#: libraries/server_links.inc.php:49 server_processlist.php:59 +#: db_operations.php:549 db_tracking.php:76 libraries/common.lib.php:1352 +#: libraries/server_links.inc.php:50 server_processlist.php:59 #: tbl_tracking.php:596 test/theme.php:101 msgid "Status" msgstr "Стан" -#: db_operations.php:548 +#: db_operations.php:557 #, fuzzy #| msgid "Enabled" msgctxt "BLOB repository" msgid "Enabled" msgstr "Уключана" -#: db_operations.php:552 +#: db_operations.php:561 #, fuzzy msgid "Disable" msgstr "Адключана" -#: db_operations.php:562 +#: db_operations.php:571 msgid "Damaged" msgstr "" -#: db_operations.php:566 +#: db_operations.php:575 #, fuzzy #| msgid "Repair" msgctxt "BLOB repository" msgid "Repair" msgstr "Адрамантаваць" -#: db_operations.php:574 +#: db_operations.php:583 #, fuzzy #| msgid "Disabled" msgctxt "BLOB repository" msgid "Disabled" msgstr "Адключана" -#: db_operations.php:578 +#: db_operations.php:587 #, fuzzy msgid "Enable" msgstr "Уключана" -#: db_operations.php:602 libraries/Index.class.php:448 +#: db_operations.php:611 libraries/Index.class.php:448 #: libraries/db_structure.lib.php:62 libraries/mysql_charsets.lib.php:107 #: libraries/tbl_properties.inc.php:107 libraries/tbl_properties.inc.php:730 #: server_collations.php:54 server_collations.php:66 server_databases.php:111 #: tbl_operations.php:363 tbl_select.php:137 tbl_structure.php:179 -#: tbl_structure.php:767 tbl_tracking.php:275 tbl_tracking.php:326 +#: tbl_structure.php:765 tbl_tracking.php:275 tbl_tracking.php:326 msgid "Collation" msgstr "Супастаўленьне" -#: db_operations.php:615 main.php:316 pdf_schema.php:34 +#: db_operations.php:624 main.php:316 pdf_schema.php:34 #, php-format msgid "" "The additional features for working with linked tables have been " @@ -338,14 +334,14 @@ msgstr "" "Дадатковыя магчымасьці работы з зьвязанымі табліцамі былі адключаныя. Каб " "высьветліць чаму, націсьніце %sтут%s." -#: db_operations.php:648 +#: db_operations.php:657 msgid "Edit PDF Pages" 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:1665 -#: server_privileges.php:1721 server_privileges.php:1985 +#: libraries/header.inc.php:130 pdf_pages.php:424 server_privileges.php:1685 +#: server_privileges.php:1741 server_privileges.php:2005 #: server_synchronize.php:423 server_synchronize.php:866 tbl_tracking.php:592 #: test/theme.php:75 msgid "Table" @@ -354,7 +350,7 @@ msgstr "Табліца" #: db_printview.php:105 libraries/db_structure.lib.php:56 #: libraries/header_printview.inc.php:63 libraries/import.lib.php:146 #: navigation.php:638 navigation.php:660 server_databases.php:122 -#: tbl_printview.php:394 tbl_structure.php:365 tbl_structure.php:777 +#: tbl_printview.php:394 tbl_structure.php:365 tbl_structure.php:775 msgid "Rows" msgstr "Радкі" @@ -362,30 +358,30 @@ msgstr "Радкі" msgid "Size" msgstr "Памер" -#: db_printview.php:162 db_structure.php:457 libraries/export/sql.php:559 +#: db_printview.php:162 db_structure.php:455 libraries/export/sql.php:559 #: libraries/export/sql.php:899 msgid "in use" msgstr "выкарыстоўваецца" #: db_printview.php:187 libraries/db_info.inc.php:88 #: libraries/export/sql.php:514 pdf_schema.php:1241 tbl_printview.php:434 -#: tbl_structure.php:809 +#: tbl_structure.php:807 msgid "Creation" msgstr "Створаная" #: db_printview.php:196 libraries/db_info.inc.php:93 #: libraries/export/sql.php:519 pdf_schema.php:1246 tbl_printview.php:444 -#: tbl_structure.php:817 +#: tbl_structure.php:815 msgid "Last update" msgstr "Апошняе абнаўленьне" #: db_printview.php:205 libraries/db_info.inc.php:98 #: libraries/export/sql.php:524 pdf_schema.php:1251 tbl_printview.php:454 -#: tbl_structure.php:825 +#: tbl_structure.php:823 msgid "Last check" msgstr "Апошняя праверка" -#: db_printview.php:222 db_structure.php:480 +#: db_printview.php:222 db_structure.php:478 #, fuzzy, php-format #| msgid "%s table(s)" msgid "%s table" @@ -446,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:297 tbl_change.php:1031 tbl_indexes.php:250 +#: server_privileges.php:298 tbl_change.php:1031 tbl_indexes.php:250 #: tbl_select.php:288 msgid "Or" msgstr "Або" @@ -519,9 +515,9 @@ 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:2833 +#: db_structure.php:105 libraries/common.lib.php:2837 #: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50 -#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:467 +#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:465 msgid "Browse" msgstr "Прагляд" @@ -566,36 +562,36 @@ 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:2832 libraries/sql_query_form.lib.php:334 +#: libraries/common.lib.php:2836 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:2829 libraries/common.lib.php:2836 +#: libraries/common.lib.php:2833 libraries/common.lib.php:2840 #: 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:1106 #: libraries/tbl_links.inc.php:56 pmd_general.php:134 -#: server_privileges.php:593 server_replication.php:315 tbl_tracking.php:269 +#: server_privileges.php:594 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:1656 +#: db_structure.php:543 db_structure.php:544 db_tracking.php:91 +#: libraries/Index.class.php:483 libraries/common.lib.php:1657 #: 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 -#: tbl_structure.php:152 tbl_structure.php:471 +#: tbl_structure.php:152 tbl_structure.php:469 msgid "Drop" 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:1655 +#: db_structure.php:541 db_structure.php:542 libraries/common.lib.php:1656 #: libraries/mult_submits.inc.php:39 libraries/tbl_links.inc.php:105 msgid "Empty" msgstr "Ачысьціць" @@ -605,25 +601,25 @@ msgstr "Ачысьціць" msgid "Table %s has been emptied" msgstr "Табліца %s была ачышчаная" -#: db_structure.php:326 libraries/tbl_links.inc.php:133 +#: db_structure.php:325 libraries/tbl_links.inc.php:133 #, php-format msgid "View %s has been dropped" msgstr "Выгляд %s быў выдалены" -#: db_structure.php:326 libraries/tbl_links.inc.php:133 +#: db_structure.php:325 libraries/tbl_links.inc.php:133 #, php-format msgid "Table %s has been dropped" msgstr "Табліца %s была выдаленая" -#: db_structure.php:333 +#: db_structure.php:332 msgid "Tracking is active." msgstr "" -#: db_structure.php:335 +#: db_structure.php:334 msgid "Tracking is not active." msgstr "" -#: db_structure.php:420 libraries/display_tbl.lib.php:1944 +#: db_structure.php:418 libraries/display_tbl.lib.php:1944 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation%" @@ -632,88 +628,88 @@ msgstr "" "Гэты прагляд мае толькі такую колькасьць радкоў. Калі ласка, зьвярніцеся да %" "sдакумэнтацыі%s." -#: db_structure.php:434 db_structure.php:448 libraries/header.inc.php:126 +#: db_structure.php:432 db_structure.php:446 libraries/header.inc.php:130 #: libraries/tbl_info.inc.php:66 tbl_structure.php:185 test/theme.php:74 msgid "View" msgstr "Выгляд" -#: db_structure.php:485 libraries/db_structure.lib.php:49 -#: libraries/server_links.inc.php:70 server_replication.php:33 +#: db_structure.php:483 libraries/db_structure.lib.php:49 +#: libraries/server_links.inc.php:71 server_replication.php:33 #: server_replication.php:164 server_status.php:369 msgid "Replication" msgstr "Рэплікацыя" -#: db_structure.php:489 +#: db_structure.php:487 msgid "Sum" msgstr "Усяго" -#: db_structure.php:496 libraries/StorageEngine.class.php:356 +#: db_structure.php:494 libraries/StorageEngine.class.php:356 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "" "%s зьяўляецца машынай захаваньня дадзеных па змоўчаньні на гэтым MySQL-" "сэрвэры." -#: db_structure.php:524 db_structure.php:541 db_structure.php:542 +#: db_structure.php:522 db_structure.php:539 db_structure.php:540 #: 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:1596 tbl_structure.php:455 -#: tbl_structure.php:464 +#: server_databases.php:351 server_privileges.php:1616 tbl_structure.php:453 +#: tbl_structure.php:462 msgid "With selected:" msgstr "З адзначанымі:" -#: db_structure.php:527 libraries/display_tbl.lib.php:2076 -#: server_databases.php:348 server_privileges.php:569 -#: server_privileges.php:1599 tbl_structure.php:458 +#: db_structure.php:525 libraries/display_tbl.lib.php:2076 +#: server_databases.php:348 server_privileges.php:570 +#: server_privileges.php:1619 tbl_structure.php:456 msgid "Check All" msgstr "Адзначыць усё" -#: db_structure.php:531 libraries/display_tbl.lib.php:2077 +#: db_structure.php:529 libraries/display_tbl.lib.php:2077 #: libraries/replication_gui.lib.php:33 server_databases.php:350 -#: server_privileges.php:572 server_privileges.php:1603 tbl_structure.php:462 +#: server_privileges.php:573 server_privileges.php:1623 tbl_structure.php:460 msgid "Uncheck All" msgstr "Зьняць усе адзнакі" -#: db_structure.php:536 +#: db_structure.php:534 msgid "Check tables having overhead" msgstr "Адзначыць тыя, што патрабуюць аптымізацыі" -#: db_structure.php:547 db_structure.php:548 db_structure.php:599 +#: db_structure.php:545 db_structure.php:546 db_structure.php:597 #: libraries/display_tbl.lib.php:2180 libraries/mult_submits.inc.php:28 -#: tbl_structure.php:492 tbl_structure.php:494 +#: tbl_structure.php:490 tbl_structure.php:492 msgid "Print view" msgstr "Вэрсія для друку" -#: db_structure.php:549 db_structure.php:550 libraries/mult_submits.inc.php:42 +#: db_structure.php:547 db_structure.php:548 libraries/mult_submits.inc.php:42 #: tbl_operations.php:581 msgid "Check table" msgstr "Праверыць табліцу" -#: db_structure.php:551 db_structure.php:552 libraries/mult_submits.inc.php:47 -#: tbl_operations.php:621 tbl_structure.php:709 tbl_structure.php:711 +#: db_structure.php:549 db_structure.php:550 libraries/mult_submits.inc.php:47 +#: tbl_operations.php:621 tbl_structure.php:707 tbl_structure.php:709 msgid "Optimize table" msgstr "Аптымізаваць табліцу" -#: db_structure.php:553 db_structure.php:554 libraries/mult_submits.inc.php:52 +#: db_structure.php:551 db_structure.php:552 libraries/mult_submits.inc.php:52 #: tbl_operations.php:611 msgid "Repair table" msgstr "Рамантаваць табліцу" -#: db_structure.php:555 db_structure.php:556 libraries/mult_submits.inc.php:57 +#: db_structure.php:553 db_structure.php:554 libraries/mult_submits.inc.php:57 #: tbl_operations.php:601 msgid "Analyze table" msgstr "Аналізаваць табліцу" -#: db_structure.php:557 db_structure.php:558 libraries/db_links.inc.php:71 +#: db_structure.php:555 db_structure.php:556 libraries/db_links.inc.php:71 #: 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:1380 +#: libraries/server_links.inc.php:85 libraries/tbl_links.inc.php:82 +#: pmd_pdf.php:84 pmd_pdf.php:109 server_privileges.php:1397 #: setup/frames/menu.inc.php:22 tbl_row_action.php:59 msgid "Export" msgstr "Экспарт" -#: db_structure.php:606 libraries/display_pdf_schema.lib.php:44 +#: db_structure.php:604 libraries/display_pdf_schema.lib.php:44 msgid "Data Dictionary" msgstr "Слоўнік дадзеных" @@ -725,10 +721,10 @@ msgstr "Праверыць табліцу" #: db_tracking.php:71 libraries/export/htmlword.php:86 #: libraries/export/latex.php:148 libraries/export/odt.php:113 #: libraries/export/sql.php:342 libraries/export/texytext.php:84 -#: libraries/export/xml.php:255 libraries/header.inc.php:106 +#: libraries/export/xml.php:255 libraries/header.inc.php:110 #: libraries/header_printview.inc.php:58 server_databases.php:169 -#: server_privileges.php:1660 server_privileges.php:1721 -#: server_privileges.php:1979 server_processlist.php:56 +#: server_privileges.php:1680 server_privileges.php:1741 +#: server_privileges.php:1999 server_processlist.php:56 #: server_synchronize.php:1179 server_synchronize.php:1183 #: tbl_tracking.php:591 test/theme.php:65 msgid "Database" @@ -750,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:1542 server_privileges.php:1725 -#: server_privileges.php:2073 tbl_structure.php:187 +#: server_privileges.php:1562 server_privileges.php:1745 +#: server_privileges.php:2094 tbl_structure.php:187 msgid "Action" msgstr "Дзеяньне" @@ -788,8 +784,8 @@ msgstr "Толькі структуру" msgid "Untracked tables" msgstr "Праверыць табліцу" -#: db_tracking.php:172 db_tracking.php:174 tbl_structure.php:528 -#: tbl_structure.php:530 +#: db_tracking.php:172 db_tracking.php:174 tbl_structure.php:526 +#: tbl_structure.php:528 #, fuzzy msgid "Track table" msgstr "Праверыць табліцу" @@ -960,186 +956,233 @@ msgstr "Пустое імя хосту!" msgid "The user name is empty!" msgstr "Пустое імя карыстальніка!" -#: js/messages.php:44 server_privileges.php:1236 user_password.php:70 +#: js/messages.php:44 server_privileges.php:1241 user_password.php:70 msgid "The password is empty!" msgstr "Пусты пароль!" -#: js/messages.php:45 server_privileges.php:1234 user_password.php:73 +#: js/messages.php:45 server_privileges.php:1239 user_password.php:73 msgid "The passwords aren't the same!" msgstr "Паролі не супадаюць!" -#: js/messages.php:49 pmd_general.php:342 pmd_general.php:379 +#: js/messages.php:46 +#, fuzzy +#| msgid "Add a new User" +msgid "Add a New User" +msgstr "Дадаць новага карыстальніка" + +#: js/messages.php:47 js/messages.php:54 pmd_general.php:342 +#: pmd_general.php:379 msgid "Cancel" msgstr "Скасаваць" -#: js/messages.php:52 pmd_save_pos.php:54 +#: js/messages.php:48 +#, fuzzy +msgid "Create User" +msgstr "Стварыць сувязь" + +#: js/messages.php:49 +#, fuzzy +#| msgid "Reload privileges" +msgid "Reloading Privileges" +msgstr "Перазагрузіць прывілеі" + +#: js/messages.php:50 +#, fuzzy +#| msgid "Remove selected users" +msgid "Removing Selected Users" +msgstr "Выдаліць выбраных карыстальнікаў" + +#: js/messages.php:57 +#, fuzzy +msgid "Loading" +msgstr "Лякальны" + +#: js/messages.php:58 +#, fuzzy +#| msgid "Processes" +msgid "Processing Request" +msgstr "Працэсы" + +#: js/messages.php:59 +msgid "Error in Processing Request" +msgstr "" + +#: js/messages.php:60 +msgid "Dropping Column" +msgstr "" + +#: js/messages.php:61 +msgid "Adding Primary Key" +msgstr "" + +#: js/messages.php:64 pmd_save_pos.php:54 msgid "Modifications have been saved" msgstr "Мадыфікацыі былі захаваныя" -#: js/messages.php:53 pmd_relation_upd.php:49 +#: js/messages.php:65 pmd_relation_upd.php:49 msgid "Relation deleted" msgstr "Сувязь выдаленая" -#: js/messages.php:54 pmd_relation_new.php:64 +#: js/messages.php:66 pmd_relation_new.php:64 msgid "FOREIGN KEY relation added" msgstr "Сувязь FOREIGN KEY была дададзеная" -#: js/messages.php:55 pmd_relation_new.php:86 +#: js/messages.php:67 pmd_relation_new.php:86 msgid "Internal relation added" msgstr "Унутраная сувязь дададзеная" -#: js/messages.php:56 pmd_relation_new.php:63 pmd_relation_new.php:88 +#: js/messages.php:68 pmd_relation_new.php:63 pmd_relation_new.php:88 msgid "Error: Relation not added." msgstr "Памылка: сувязь не дададзеная." -#: js/messages.php:57 pmd_relation_new.php:31 +#: js/messages.php:69 pmd_relation_new.php:31 msgid "Error: relation already exists." msgstr "Памылка: сувязь ужо існуе." -#: js/messages.php:58 +#: js/messages.php:70 msgid "Error saving coordinates for Designer." msgstr "Памылка захаваньня каардынатаў." -#: js/messages.php:59 libraries/relation.lib.php:107 +#: js/messages.php:71 libraries/relation.lib.php:107 #: libraries/relation.lib.php:119 msgid "General relation features" msgstr "Магчымасьці асноўных сувязяў" -#: js/messages.php:59 libraries/relation.lib.php:101 +#: js/messages.php:71 libraries/relation.lib.php:101 #: libraries/relation.lib.php:108 msgid "Disabled" msgstr "Адключана" -#: js/messages.php:60 +#: js/messages.php:72 msgid "Select referenced key" msgstr "Выберыце спасылкавы ключ" -#: js/messages.php:61 +#: js/messages.php:73 msgid "Select Foreign Key" msgstr "Выберыце зьнешні ключ" -#: js/messages.php:62 +#: js/messages.php:74 msgid "Please select the primary key or a unique key" msgstr "Калі ласка, выберыце першасны (PRIMARY) альбо ўнікальны ключ (UNIQUE)" -#: js/messages.php:63 pmd_general.php:77 tbl_relation.php:548 +#: js/messages.php:75 pmd_general.php:77 tbl_relation.php:548 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" msgstr "Выберыце поле для адлюстраваньня" #. l10n: Display text for calendar close link -#: js/messages.php:73 +#: js/messages.php:85 #, fuzzy msgid "Done" msgstr "Дадзеныя" #. l10n: Display text for previous month link in calendar -#: js/messages.php:75 +#: js/messages.php:87 #, fuzzy #| msgid "Previous" msgid "Prev" msgstr "Папярэдняя старонка" #. l10n: Display text for next month link in calendar -#: js/messages.php:77 libraries/common.lib.php:2353 -#: libraries/common.lib.php:2356 libraries/display_tbl.lib.php:338 +#: js/messages.php:89 libraries/common.lib.php:2357 +#: libraries/common.lib.php:2360 libraries/display_tbl.lib.php:338 #: server_binlog.php:205 server_binlog.php:207 tbl_printview.php:424 -#: tbl_structure.php:801 +#: tbl_structure.php:799 msgid "Next" msgstr "Наступная старонка" #. l10n: Display text for current month link in calendar -#: js/messages.php:79 +#: js/messages.php:91 #, fuzzy #| msgid "Total" msgid "Today" msgstr "Агулам" -#: js/messages.php:82 +#: js/messages.php:94 #, fuzzy #| msgid "Binary" msgid "January" msgstr "Двайковы" -#: js/messages.php:83 +#: js/messages.php:95 msgid "February" msgstr "" -#: js/messages.php:84 +#: js/messages.php:96 #, fuzzy #| msgid "Mar" msgid "March" msgstr "Сак" -#: js/messages.php:85 +#: js/messages.php:97 #, fuzzy #| msgid "Apr" msgid "April" msgstr "Кра" -#: js/messages.php:86 +#: js/messages.php:98 msgid "May" msgstr "Тра" -#: js/messages.php:87 +#: js/messages.php:99 #, fuzzy #| msgid "Jun" msgid "June" msgstr "Чэр" -#: js/messages.php:88 +#: js/messages.php:100 #, fuzzy #| msgid "Jul" msgid "July" msgstr "Ліп" -#: js/messages.php:89 +#: js/messages.php:101 #, fuzzy #| msgid "Aug" msgid "August" msgstr "Жні" -#: js/messages.php:90 +#: js/messages.php:102 msgid "September" msgstr "" -#: js/messages.php:91 +#: js/messages.php:103 #, fuzzy #| msgid "Oct" msgid "October" msgstr "Кас" -#: js/messages.php:92 +#: js/messages.php:104 msgid "November" msgstr "" -#: js/messages.php:93 +#: js/messages.php:105 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:97 libraries/common.lib.php:1557 +#: js/messages.php:109 libraries/common.lib.php:1557 msgid "Jan" msgstr "Сту" #. l10n: Short month name -#: js/messages.php:99 libraries/common.lib.php:1559 +#: js/messages.php:111 libraries/common.lib.php:1559 msgid "Feb" msgstr "Лют" #. l10n: Short month name -#: js/messages.php:101 libraries/common.lib.php:1561 +#: js/messages.php:113 libraries/common.lib.php:1561 msgid "Mar" msgstr "Сак" #. l10n: Short month name -#: js/messages.php:103 libraries/common.lib.php:1563 +#: js/messages.php:115 libraries/common.lib.php:1563 msgid "Apr" msgstr "Кра" #. l10n: Short month name -#: js/messages.php:105 libraries/common.lib.php:1565 +#: js/messages.php:117 libraries/common.lib.php:1565 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1147,178 +1190,178 @@ msgid "May" msgstr "Тра" #. l10n: Short month name -#: js/messages.php:107 libraries/common.lib.php:1567 +#: js/messages.php:119 libraries/common.lib.php:1567 msgid "Jun" msgstr "Чэр" #. l10n: Short month name -#: js/messages.php:109 libraries/common.lib.php:1569 +#: js/messages.php:121 libraries/common.lib.php:1569 msgid "Jul" msgstr "Ліп" #. l10n: Short month name -#: js/messages.php:111 libraries/common.lib.php:1571 +#: js/messages.php:123 libraries/common.lib.php:1571 msgid "Aug" msgstr "Жні" #. l10n: Short month name -#: js/messages.php:113 libraries/common.lib.php:1573 +#: js/messages.php:125 libraries/common.lib.php:1573 msgid "Sep" msgstr "Вер" #. l10n: Short month name -#: js/messages.php:115 libraries/common.lib.php:1575 +#: js/messages.php:127 libraries/common.lib.php:1575 msgid "Oct" msgstr "Кас" #. l10n: Short month name -#: js/messages.php:117 libraries/common.lib.php:1577 +#: js/messages.php:129 libraries/common.lib.php:1577 msgid "Nov" msgstr "Ліс" #. l10n: Short month name -#: js/messages.php:119 libraries/common.lib.php:1579 +#: js/messages.php:131 libraries/common.lib.php:1579 msgid "Dec" msgstr "Сьн" -#: js/messages.php:122 +#: js/messages.php:134 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "Ндз" -#: js/messages.php:123 +#: js/messages.php:135 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "Пан" -#: js/messages.php:124 +#: js/messages.php:136 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "Аўт" -#: js/messages.php:125 +#: js/messages.php:137 msgid "Wednesday" msgstr "" -#: js/messages.php:126 +#: js/messages.php:138 msgid "Thursday" msgstr "" -#: js/messages.php:127 +#: js/messages.php:139 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "Пят" -#: js/messages.php:128 +#: js/messages.php:140 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:132 libraries/common.lib.php:1582 +#: js/messages.php:144 libraries/common.lib.php:1582 msgid "Sun" msgstr "Ндз" #. l10n: Short week day name -#: js/messages.php:134 libraries/common.lib.php:1584 +#: js/messages.php:146 libraries/common.lib.php:1584 msgid "Mon" msgstr "Пан" #. l10n: Short week day name -#: js/messages.php:136 libraries/common.lib.php:1586 +#: js/messages.php:148 libraries/common.lib.php:1586 msgid "Tue" msgstr "Аўт" #. l10n: Short week day name -#: js/messages.php:138 libraries/common.lib.php:1588 +#: js/messages.php:150 libraries/common.lib.php:1588 msgid "Wed" msgstr "Сер" #. l10n: Short week day name -#: js/messages.php:140 libraries/common.lib.php:1590 +#: js/messages.php:152 libraries/common.lib.php:1590 msgid "Thu" msgstr "Цач" #. l10n: Short week day name -#: js/messages.php:142 libraries/common.lib.php:1592 +#: js/messages.php:154 libraries/common.lib.php:1592 msgid "Fri" msgstr "Пят" #. l10n: Short week day name -#: js/messages.php:144 libraries/common.lib.php:1594 +#: js/messages.php:156 libraries/common.lib.php:1594 msgid "Sat" msgstr "Суб" #. l10n: Minimal week day name -#: js/messages.php:148 +#: js/messages.php:160 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "Ндз" #. l10n: Minimal week day name -#: js/messages.php:150 +#: js/messages.php:162 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "Пан" #. l10n: Minimal week day name -#: js/messages.php:152 +#: js/messages.php:164 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "Аўт" #. l10n: Minimal week day name -#: js/messages.php:154 +#: js/messages.php:166 #, fuzzy #| msgid "Wed" msgid "We" msgstr "Сер" #. l10n: Minimal week day name -#: js/messages.php:156 +#: js/messages.php:168 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "Цач" #. l10n: Minimal week day name -#: js/messages.php:158 +#: js/messages.php:170 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "Пят" #. l10n: Minimal week day name -#: js/messages.php:160 +#: js/messages.php:172 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "Суб" #. l10n: Column header for week of the year in calendar -#: js/messages.php:162 +#: js/messages.php:174 #, fuzzy #| msgid "Wiki" msgid "Wk" msgstr "Wiki" -#: js/messages.php:164 +#: js/messages.php:176 msgid "Hour" msgstr "" -#: js/messages.php:165 +#: js/messages.php:177 #, fuzzy #| msgid "in use" msgid "Minute" msgstr "выкарыстоўваецца" -#: js/messages.php:166 +#: js/messages.php:178 #, fuzzy #| msgid "per second" msgid "Second" @@ -1379,7 +1422,7 @@ msgstr "Індэксы" #: libraries/Index.class.php:444 libraries/mult_submits.inc.php:103 #: libraries/tbl_properties.inc.php:519 tbl_structure.php:33 -#: tbl_structure.php:155 tbl_structure.php:159 tbl_structure.php:474 +#: tbl_structure.php:155 tbl_structure.php:159 tbl_structure.php:472 #: tbl_tracking.php:322 msgid "Unique" msgstr "Унікальнае" @@ -1422,8 +1465,8 @@ msgstr "" "Падобна, што індэксы %1$s і %2$s зьяўляюцца аднолькавымі, а таму адзін зь " "іх, магчыма, можна выдаліць." -#: libraries/List_Database.class.php:431 libraries/server_links.inc.php:41 -#: server_databases.php:88 server_privileges.php:1660 +#: libraries/List_Database.class.php:431 libraries/server_links.inc.php:42 +#: server_databases.php:88 server_privileges.php:1680 #: setup/lib/messages.inc.php:110 test/theme.php:93 msgid "Databases" msgstr "Базы дадзеных" @@ -1595,7 +1638,7 @@ msgstr "Пароль:" msgid "Server Choice" msgstr "Выбар сэрвэра" -#: libraries/auth/cookie.auth.lib.php:320 libraries/header.inc.php:59 +#: libraries/auth/cookie.auth.lib.php:320 libraries/header.inc.php:63 msgid "Cookies must be enabled past this point." msgstr "Cookies мусяць быць уключанымі пасьля гэтага месца." @@ -1678,7 +1721,7 @@ msgstr "" "час, як пашырэньне паведамляе, што яно загружанае. Праверце вашую " "канфігурацыю PHP." -#: libraries/common.inc.php:583 +#: libraries/common.inc.php:587 msgid "" "phpMyAdmin was unable to read your configuration file!
This might " "happen if PHP finds a parse error in it or PHP cannot find the file.
Калі вы атрымаеце чыстую старонку, значыць, усё добра." -#: libraries/common.inc.php:594 +#: libraries/common.inc.php:598 #, fuzzy, php-format #| msgid "Could not load default configuration from: \"%1$s\"" msgid "Could not load default configuration from: %1$s" msgstr "Немагчыма загрузіць канфігурацыю па змоўчаньні з: \"%1$s\"" -#: libraries/common.inc.php:599 +#: libraries/common.inc.php:603 msgid "" "The $cfg['PmaAbsoluteUri'] directive MUST be set in your " "configuration file!" @@ -1708,29 +1751,29 @@ msgstr "" "Дырэктыва $cfg['PmaAbsoluteUri'] ПАВІННА быць вызначаная ў вашым " "канфігурацыйным файле!" -#: libraries/common.inc.php:629 +#: libraries/common.inc.php:633 #, fuzzy, php-format #| msgid "Invalid server index: \"%s\"" msgid "Invalid server index: %s" msgstr "Некарэктны індэкс сэрвэра: \"%s\"" -#: libraries/common.inc.php:636 +#: libraries/common.inc.php:640 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" "Няправільнае імя хосту для сэрвэра %1$s. Калі ласка, праверце канфігурыцыю." -#: libraries/common.inc.php:645 libraries/header.inc.php:96 +#: libraries/common.inc.php:649 libraries/header.inc.php:100 #: libraries/select_server.lib.php:41 libraries/select_server.lib.php:47 #: main.php:185 test/theme.php:57 msgid "Server" msgstr "Сэрвэр" -#: libraries/common.inc.php:823 +#: libraries/common.inc.php:827 msgid "Invalid authentication method set in configuration:" msgstr "У канфігурацыі вызначаны некарэктны мэтад аўтэнтыфікацыі:" -#: libraries/common.inc.php:926 +#: libraries/common.inc.php:930 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Вам трэба абнавіць %s да вэрсіі %s ці пазьнейшай." @@ -1865,46 +1908,46 @@ msgstr "." msgid "%B %d, %Y at %I:%M %p" msgstr "%d %B %Y, %H:%M" -#: libraries/common.lib.php:1907 +#: libraries/common.lib.php:1911 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s дзён, %s гадзінаў, %s хвілінаў і %s сэкундаў" -#: libraries/common.lib.php:2322 libraries/common.lib.php:2325 +#: libraries/common.lib.php:2326 libraries/common.lib.php:2329 #: libraries/display_tbl.lib.php:290 server_status.php:719 msgid "Begin" msgstr "Першая старонка" -#: libraries/common.lib.php:2323 libraries/common.lib.php:2326 +#: libraries/common.lib.php:2327 libraries/common.lib.php:2330 #: libraries/display_tbl.lib.php:291 server_binlog.php:168 #: server_binlog.php:170 msgid "Previous" msgstr "Папярэдняя старонка" -#: libraries/common.lib.php:2354 libraries/common.lib.php:2357 +#: libraries/common.lib.php:2358 libraries/common.lib.php:2361 #: libraries/display_tbl.lib.php:353 msgid "End" msgstr "Апошняя старонка" -#: libraries/common.lib.php:2430 +#: libraries/common.lib.php:2434 #, php-format msgid "Jump to database "%s"." msgstr "Перайсьці да базы дадзеных "%s"." -#: libraries/common.lib.php:2450 +#: libraries/common.lib.php:2454 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" "Існуе вядомая памылка з выкарыстаньнем парамэтра %s, глядзіце апісаньне на %s" -#: libraries/common.lib.php:2830 libraries/common.lib.php:2837 +#: libraries/common.lib.php:2834 libraries/common.lib.php:2841 #: libraries/db_links.inc.php:68 libraries/export/sql.php:25 -#: libraries/import/sql.php:18 libraries/server_links.inc.php:45 +#: libraries/import/sql.php:18 libraries/server_links.inc.php:46 #: libraries/tbl_links.inc.php:60 querywindow.php:99 test/theme.php:97 msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2839 libraries/db_links.inc.php:104 +#: libraries/common.lib.php:2843 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,15 +1995,15 @@ msgstr "Запыт згодна прыкладу" msgid "Designer" msgstr "Дызайнэр" -#: libraries/db_links.inc.php:98 libraries/server_links.inc.php:88 +#: libraries/db_links.inc.php:98 libraries/server_links.inc.php:89 #: libraries/tbl_links.inc.php:91 pmd_pdf.php:84 pmd_pdf.php:110 #: setup/frames/menu.inc.php:21 msgid "Import" msgstr "Імрарт" -#: libraries/db_links.inc.php:111 libraries/server_links.inc.php:66 -#: server_privileges.php:111 server_privileges.php:1722 -#: server_privileges.php:2071 test/theme.php:117 +#: libraries/db_links.inc.php:111 libraries/server_links.inc.php:67 +#: server_privileges.php:112 server_privileges.php:1742 +#: server_privileges.php:2092 test/theme.php:117 msgid "Privileges" msgstr "Прывілеі" @@ -1979,7 +2022,7 @@ msgid "" msgstr "Значэньне можа быць прыблізным. Гл. FAQ 3.11" #: libraries/db_structure.lib.php:69 server_databases.php:142 -#: tbl_printview.php:336 tbl_structure.php:682 +#: tbl_printview.php:336 tbl_structure.php:680 msgid "Overhead" msgstr "Выкарыстаньне рэсурсаў" @@ -1998,7 +2041,7 @@ msgstr "Сэрвэр не адказвае" msgid "(or the local MySQL server's socket is not correctly configured)" msgstr "(або сокет лякальнага сэрвэра MySQL не сканфігураваны правільна)" -#: libraries/dbi/mysql.dbi.lib.php:362 tbl_structure.php:608 +#: libraries/dbi/mysql.dbi.lib.php:362 tbl_structure.php:606 msgid "Details..." msgstr "Падрабязьней..." @@ -2008,22 +2051,22 @@ msgid "Change password" msgstr "Зьмяніць пароль" #: libraries/display_change_password.lib.php:35 -#: libraries/replication_gui.lib.php:345 server_privileges.php:807 +#: libraries/replication_gui.lib.php:345 server_privileges.php:808 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:796 -#: server_privileges.php:800 server_privileges.php:811 -#: server_privileges.php:1538 server_synchronize.php:1175 +#: libraries/replication_gui.lib.php:349 server_privileges.php:797 +#: server_privileges.php:801 server_privileges.php:812 +#: server_privileges.php:1558 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:815 server_privileges.php:818 +#: server_privileges.php:816 server_privileges.php:819 msgid "Re-type" msgstr "Пацьверджаньне" @@ -2038,12 +2081,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:822 +#: libraries/replication_gui.lib.php:360 server_privileges.php:823 msgid "Generate Password" msgstr "Згенэраваць пароль" #: libraries/display_change_password.lib.php:75 -#: libraries/replication_gui.lib.php:363 server_privileges.php:825 +#: libraries/replication_gui.lib.php:363 server_privileges.php:826 msgid "Generate" msgstr "Згенэраваць" @@ -2056,8 +2099,8 @@ msgstr "Стварыць новую базу дадзеных" msgid "Create" msgstr "Стварыць" -#: libraries/display_create_database.lib.php:40 server_privileges.php:113 -#: server_privileges.php:1427 server_replication.php:35 +#: libraries/display_create_database.lib.php:40 server_privileges.php:114 +#: server_privileges.php:1447 server_replication.php:35 msgid "No Privileges" msgstr "Без прывілеяў" @@ -2150,7 +2193,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:1875 server_processlist.php:75 +#: server_privileges.php:1895 server_processlist.php:75 msgid "None" msgstr "Няма" @@ -2341,7 +2384,7 @@ msgstr "Сартаваць па ключы" #: libraries/import/docsql.php:34 libraries/import/ldi.php:47 #: libraries/import/ods.php:30 libraries/import/sql.php:20 #: libraries/import/xls.php:26 libraries/import/xlsx.php:26 -#: libraries/import/xml.php:25 tbl_select.php:267 tbl_structure.php:753 +#: libraries/import/xml.php:25 tbl_select.php:267 tbl_structure.php:751 msgid "Options" msgstr "Налады" @@ -2418,7 +2461,7 @@ msgstr "Запыт выконваўся %01.4f сэк" #: libraries/display_tbl.lib.php:2089 libraries/mult_submits.inc.php:113 #: querywindow.php:125 querywindow.php:129 querywindow.php:132 -#: tbl_structure.php:25 tbl_structure.php:150 tbl_structure.php:470 +#: tbl_structure.php:25 tbl_structure.php:150 tbl_structure.php:468 msgid "Change" msgstr "Зьмяніць" @@ -2488,7 +2531,7 @@ msgstr "Выкарыстаньне пулу буфэру" #: libraries/engines/innodb.lib.php:194 server_databases.php:137 #: server_databases.php:305 server_status.php:525 server_status.php:586 -#: server_status.php:607 tbl_printview.php:351 tbl_structure.php:696 +#: server_status.php:607 tbl_printview.php:351 tbl_structure.php:694 msgid "Total" msgstr "Агулам" @@ -2777,7 +2820,7 @@ msgstr "" "будуць перайменаваныя і ім будзе дадзены чарговы найвышэйшы нумар." #: libraries/export/codegen.php:37 setup/lib/messages.inc.php:88 -#: tbl_printview.php:376 tbl_structure.php:737 +#: tbl_printview.php:376 tbl_structure.php:735 msgid "Format" msgstr "Фармат" @@ -2849,8 +2892,8 @@ 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:576 server_replication.php:316 tbl_printview.php:317 -#: tbl_structure.php:665 +#: server_privileges.php:577 server_replication.php:316 tbl_printview.php:317 +#: tbl_structure.php:663 msgid "Data" msgstr "Дадзеныя" @@ -2899,9 +2942,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:731 -#: server_privileges.php:734 server_privileges.php:790 -#: server_privileges.php:1537 server_privileges.php:2069 +#: libraries/replication_gui.lib.php:329 server_privileges.php:732 +#: server_privileges.php:735 server_privileges.php:791 +#: server_privileges.php:1557 server_privileges.php:2090 #: server_processlist.php:55 server_synchronize.php:1159 msgid "Host" msgstr "Хост" @@ -3100,7 +3143,7 @@ msgstr "Тып экспарту" msgid "Open new phpMyAdmin window" msgstr "Адкрыць новае акно phpMyAdmin" -#: libraries/header.inc.php:115 +#: libraries/header.inc.php:119 #, fuzzy msgid "New table" msgstr "Няма табліц" @@ -3263,20 +3306,20 @@ 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 +#: tbl_structure.php:471 msgid "Primary" msgstr "Першасны" #: libraries/mult_submits.inc.php:98 libraries/tbl_properties.inc.php:116 #: libraries/tbl_properties.inc.php:525 tbl_printview.php:326 #: tbl_structure.php:31 tbl_structure.php:154 tbl_structure.php:158 -#: tbl_structure.php:475 tbl_structure.php:673 +#: tbl_structure.php:473 tbl_structure.php:671 msgid "Index" msgstr "Індэкс" #: libraries/mult_submits.inc.php:108 libraries/tbl_properties.inc.php:531 #: tbl_structure.php:35 tbl_structure.php:156 tbl_structure.php:160 -#: tbl_structure.php:478 +#: tbl_structure.php:476 msgid "Fulltext" msgstr "Поўнатэкстэкставае" @@ -3579,8 +3622,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:711 -#: server_privileges.php:714 server_privileges.php:721 +#: libraries/replication_gui.lib.php:259 server_privileges.php:712 +#: server_privileges.php:715 server_privileges.php:722 #: server_synchronize.php:1171 msgid "User name" msgstr "Імя карыстальніка" @@ -3607,7 +3650,7 @@ msgstr "Зьменная" #: 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 +#: tbl_structure.php:727 msgid "Value" msgstr "Значэньне" @@ -3625,34 +3668,34 @@ msgstr "" msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:254 server_privileges.php:716 +#: libraries/replication_gui.lib.php:254 server_privileges.php:717 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:717 -#: server_privileges.php:784 server_privileges.php:808 -#: server_privileges.php:1928 server_privileges.php:1958 +#: libraries/replication_gui.lib.php:346 server_privileges.php:718 +#: server_privileges.php:785 server_privileges.php:809 +#: server_privileges.php:1948 server_privileges.php:1978 msgid "Use text field" msgstr "Выкарыстоўваць тэкставае поле" -#: libraries/replication_gui.lib.php:302 server_privileges.php:764 +#: libraries/replication_gui.lib.php:302 server_privileges.php:765 msgid "Any host" msgstr "Любы хост" -#: libraries/replication_gui.lib.php:306 server_privileges.php:768 +#: libraries/replication_gui.lib.php:306 server_privileges.php:769 msgid "Local" msgstr "Лякальны" -#: libraries/replication_gui.lib.php:312 server_privileges.php:773 +#: libraries/replication_gui.lib.php:312 server_privileges.php:774 msgid "This Host" msgstr "Гэты хост" -#: libraries/replication_gui.lib.php:318 server_privileges.php:779 +#: libraries/replication_gui.lib.php:318 server_privileges.php:780 msgid "Use Host Table" msgstr "Выкарыстоўваць табліцу хостаў" -#: libraries/replication_gui.lib.php:331 server_privileges.php:792 +#: libraries/replication_gui.lib.php:331 server_privileges.php:793 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -3686,29 +3729,29 @@ msgstr "Невядомая мова: %1$s." msgid "Servers" msgstr "Сэрвэры" -#: libraries/server_links.inc.php:53 server_engines.php:112 +#: libraries/server_links.inc.php:54 server_engines.php:112 #: server_engines.php:116 server_status.php:415 test/theme.php:105 msgid "Variables" msgstr "Зьменныя" -#: libraries/server_links.inc.php:57 test/theme.php:109 +#: libraries/server_links.inc.php:58 test/theme.php:109 msgid "Charsets" msgstr "Кадыроўкі" -#: libraries/server_links.inc.php:61 test/theme.php:113 +#: libraries/server_links.inc.php:62 test/theme.php:113 msgid "Engines" msgstr "Машыны" -#: libraries/server_links.inc.php:76 server_binlog.php:110 +#: libraries/server_links.inc.php:77 server_binlog.php:110 #: server_status.php:364 test/theme.php:121 msgid "Binary log" msgstr "Двайковы лог" -#: libraries/server_links.inc.php:80 +#: libraries/server_links.inc.php:81 msgid "Processes" msgstr "Працэсы" -#: libraries/server_links.inc.php:92 server_synchronize.php:1092 +#: libraries/server_links.inc.php:93 server_synchronize.php:1092 #: server_synchronize.php:1100 msgid "Synchronize" msgstr "" @@ -3962,13 +4005,13 @@ msgstr "Азначэньне PARTITION" msgid "Save" msgstr "Захаваць" -#: libraries/tbl_properties.inc.php:780 tbl_structure.php:542 +#: libraries/tbl_properties.inc.php:780 tbl_structure.php:540 #, fuzzy, php-format #| msgid "Add %s field(s)" msgid "Add %s column(s)" msgstr "Дадаць %s новыя палі" -#: libraries/tbl_properties.inc.php:784 tbl_structure.php:536 +#: libraries/tbl_properties.inc.php:784 tbl_structure.php:534 #, fuzzy #| msgid "You have to add at least one field." msgid "You have to add at least one column." @@ -4184,8 +4227,8 @@ msgstr "Скінуць" msgid "Protocol version" msgstr "Вэрсія пратаколу" -#: main.php:189 server_privileges.php:1389 server_privileges.php:1536 -#: server_privileges.php:1650 server_privileges.php:2068 +#: main.php:189 server_privileges.php:1406 server_privileges.php:1556 +#: server_privileges.php:1670 server_privileges.php:2089 #: server_processlist.php:54 msgid "User" msgstr "Карыстальнік" @@ -4638,119 +4681,119 @@ msgstr "Машыны захаваньня дадзеных" msgid "View dump (schema) of databases" msgstr "Праглядзець дамп (схему) базаў дадзеных" -#: server_privileges.php:24 server_privileges.php:266 +#: server_privileges.php:25 server_privileges.php:267 msgid "Includes all privileges except GRANT." msgstr "Уключае ўсе прывілеі, апроч GRANT." -#: server_privileges.php:25 server_privileges.php:192 -#: server_privileges.php:515 +#: server_privileges.php:26 server_privileges.php:193 +#: server_privileges.php:516 msgid "Allows altering the structure of existing tables." msgstr "Дазваляе зьмяняць структуру існых табліц." -#: server_privileges.php:26 server_privileges.php:208 -#: server_privileges.php:521 +#: server_privileges.php:27 server_privileges.php:209 +#: server_privileges.php:522 msgid "Allows altering and dropping stored routines." msgstr "Дазваляе зьмяняць і выдаляць праграмы, якія захоўваюцца." -#: server_privileges.php:27 server_privileges.php:184 -#: server_privileges.php:514 +#: server_privileges.php:28 server_privileges.php:185 +#: server_privileges.php:515 msgid "Allows creating new databases and tables." msgstr "Дазваляе ствараць новыя базы дадзеных і табліцы." -#: server_privileges.php:28 server_privileges.php:207 -#: server_privileges.php:520 +#: server_privileges.php:29 server_privileges.php:208 +#: server_privileges.php:521 msgid "Allows creating stored routines." msgstr "Дазваляе ствараць праграмы, якія захоўваюцца." -#: server_privileges.php:29 server_privileges.php:514 +#: server_privileges.php:30 server_privileges.php:515 msgid "Allows creating new tables." msgstr "Дазваляе ствараць новыя табліцы." -#: server_privileges.php:30 server_privileges.php:195 -#: server_privileges.php:518 +#: server_privileges.php:31 server_privileges.php:196 +#: server_privileges.php:519 msgid "Allows creating temporary tables." msgstr "Дазваляе ствараць часовыя табліцы." -#: server_privileges.php:31 server_privileges.php:209 -#: server_privileges.php:554 +#: server_privileges.php:32 server_privileges.php:210 +#: server_privileges.php:555 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 +#: server_privileges.php:33 server_privileges.php:200 +#: server_privileges.php:204 server_privileges.php:527 +#: server_privileges.php:531 msgid "Allows creating new views." msgstr "Дазваляе ствараць новыя прагляды." -#: server_privileges.php:33 server_privileges.php:183 -#: server_privileges.php:506 +#: server_privileges.php:34 server_privileges.php:184 +#: server_privileges.php:507 msgid "Allows deleting data." msgstr "Дазваляе выдаляць дадзеныя." -#: server_privileges.php:34 server_privileges.php:185 -#: server_privileges.php:517 +#: server_privileges.php:35 server_privileges.php:186 +#: server_privileges.php:518 msgid "Allows dropping databases and tables." msgstr "Дазваляе выдаляць базы дадзеных і табліцы." -#: server_privileges.php:35 server_privileges.php:517 +#: server_privileges.php:36 server_privileges.php:518 msgid "Allows dropping tables." msgstr "Дазваляе выдаляць табліцы." -#: server_privileges.php:36 server_privileges.php:200 -#: server_privileges.php:534 +#: server_privileges.php:37 server_privileges.php:201 +#: server_privileges.php:535 msgid "Allows to set up events for the event scheduler" msgstr "Дазваляе ствараць падзеі ў пляніроўніку падзеяў" -#: server_privileges.php:37 server_privileges.php:210 -#: server_privileges.php:522 +#: server_privileges.php:38 server_privileges.php:211 +#: server_privileges.php:523 msgid "Allows executing stored routines." msgstr "Дазваляе выкананьне праграмаў, якія захоўваюцца." -#: server_privileges.php:38 server_privileges.php:189 -#: server_privileges.php:509 +#: server_privileges.php:39 server_privileges.php:190 +#: server_privileges.php:510 msgid "Allows importing data from and exporting data into files." msgstr "" "Дазваляе імпартаваць дадзеныя з файлаў і экспартаваць дадзеныя ў файлы." -#: server_privileges.php:39 server_privileges.php:540 +#: server_privileges.php:40 server_privileges.php:541 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "Дазваляе дадаваць карыстальнікаў і прывілеі без перазагрузкі табліц " "прывілеяў." -#: server_privileges.php:40 server_privileges.php:191 -#: server_privileges.php:516 +#: server_privileges.php:41 server_privileges.php:192 +#: server_privileges.php:517 msgid "Allows creating and dropping indexes." msgstr "Дазваляе ствараць і выдаляць індэксы." -#: server_privileges.php:41 server_privileges.php:181 -#: server_privileges.php:442 server_privileges.php:504 +#: server_privileges.php:42 server_privileges.php:182 +#: server_privileges.php:443 server_privileges.php:505 msgid "Allows inserting and replacing data." msgstr "Дазваляе ўстаўляць і замяняць дадзеныя." -#: server_privileges.php:42 server_privileges.php:196 -#: server_privileges.php:549 +#: server_privileges.php:43 server_privileges.php:197 +#: server_privileges.php:550 msgid "Allows locking tables for the current thread." msgstr "Дазваляе блякаваць табліцы для бягучага патоку." -#: server_privileges.php:43 server_privileges.php:646 -#: server_privileges.php:648 +#: server_privileges.php:44 server_privileges.php:647 +#: server_privileges.php:649 msgid "Limits the number of new connections the user may open per hour." msgstr "" "Абмяжоўвае колькасьць новых злучэньняў, якія карыстальнік можа адкрыць на " "працягу гадзіны." -#: server_privileges.php:44 server_privileges.php:634 -#: server_privileges.php:636 +#: server_privileges.php:45 server_privileges.php:635 +#: server_privileges.php:637 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" "Абмяжоўвае колькасьць запытаў, якія карыстальнік можа адправіць на сэрвэр на " "працягу гадзіны." -#: server_privileges.php:45 server_privileges.php:640 -#: server_privileges.php:642 +#: server_privileges.php:46 server_privileges.php:641 +#: server_privileges.php:643 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -4758,59 +4801,59 @@ msgstr "" "Абмяжоўвае колькасьць камандаў, зьмяняючых любую табліцу або базу дадзеных, " "якія карыстальнік можа выканаць на працягу гадзіны." -#: server_privileges.php:46 server_privileges.php:652 -#: server_privileges.php:654 +#: server_privileges.php:47 server_privileges.php:653 +#: server_privileges.php:655 msgid "Limits the number of simultaneous connections the user may have." msgstr "" "Абмяжоўвае колькасьць адначасовых злучэньняў, якія можа мець карыстальнік." -#: server_privileges.php:47 server_privileges.php:188 -#: server_privileges.php:544 +#: server_privileges.php:48 server_privileges.php:189 +#: server_privileges.php:545 msgid "Allows viewing processes of all users" msgstr "Дазваляе праглядаць працэсы ўсіх карыстальнікаў" -#: server_privileges.php:48 server_privileges.php:190 -#: server_privileges.php:448 server_privileges.php:550 +#: server_privileges.php:49 server_privileges.php:191 +#: server_privileges.php:449 server_privileges.php:551 msgid "Has no effect in this MySQL version." msgstr "Не працуе ў гэтай вэрсіі MySQL." -#: server_privileges.php:49 server_privileges.php:186 -#: server_privileges.php:545 +#: server_privileges.php:50 server_privileges.php:187 +#: server_privileges.php:546 msgid "Allows reloading server settings and flushing the server's caches." msgstr "Дазваляе перазагружаць налады сэрвэра і ачышчаць кэш сэрвэра." -#: server_privileges.php:50 server_privileges.php:198 -#: server_privileges.php:552 +#: server_privileges.php:51 server_privileges.php:199 +#: server_privileges.php:553 msgid "Allows the user to ask where the slaves / masters are." msgstr "Дазваляе карыстальніку пытацца, дзе знаходзяцца slaves / masters." -#: server_privileges.php:51 server_privileges.php:197 -#: server_privileges.php:553 +#: server_privileges.php:52 server_privileges.php:198 +#: server_privileges.php:554 msgid "Needed for the replication slaves." msgstr "Неабходна для рэплікацыі slaves." -#: server_privileges.php:52 server_privileges.php:180 -#: server_privileges.php:439 server_privileges.php:503 +#: server_privileges.php:53 server_privileges.php:181 +#: server_privileges.php:440 server_privileges.php:504 msgid "Allows reading data." msgstr "Дазваляе чытаць дадзеныя." -#: server_privileges.php:53 server_privileges.php:193 -#: server_privileges.php:547 +#: server_privileges.php:54 server_privileges.php:194 +#: server_privileges.php:548 msgid "Gives access to the complete list of databases." msgstr "Дае доступ да поўнага сьпісу базаў дадзеных." -#: server_privileges.php:54 server_privileges.php:204 -#: server_privileges.php:206 server_privileges.php:519 +#: server_privileges.php:55 server_privileges.php:205 +#: server_privileges.php:207 server_privileges.php:520 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Дазваляе выкананьне запытаў SHOW CREATE VIEW." -#: server_privileges.php:55 server_privileges.php:187 -#: server_privileges.php:546 +#: server_privileges.php:56 server_privileges.php:188 +#: server_privileges.php:547 msgid "Allows shutting down the server." msgstr "Дазваляе спыняць сэрвэр." -#: server_privileges.php:56 server_privileges.php:194 -#: server_privileges.php:543 +#: server_privileges.php:57 server_privileges.php:195 +#: server_privileges.php:544 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -4820,156 +4863,156 @@ msgstr "" "Патрабуецца для большасьці адміністратыўных апэрацыяў, такіх як вызначэньне " "глябальных зьменных або спыненьне патокаў іншых карыстальнікаў." -#: server_privileges.php:57 server_privileges.php:201 -#: server_privileges.php:535 +#: server_privileges.php:58 server_privileges.php:202 +#: server_privileges.php:536 msgid "Allows creating and dropping triggers" msgstr "Дазваляе стварэньне і выдаленьне трыгераў" -#: server_privileges.php:58 server_privileges.php:182 -#: server_privileges.php:445 server_privileges.php:505 +#: server_privileges.php:59 server_privileges.php:183 +#: server_privileges.php:446 server_privileges.php:506 msgid "Allows changing data." msgstr "Дазваляе зьмяняць дадзеныя." -#: server_privileges.php:59 server_privileges.php:260 +#: server_privileges.php:60 server_privileges.php:261 msgid "No privileges." msgstr "Без прывілеяў." -#: server_privileges.php:302 server_privileges.php:303 +#: server_privileges.php:303 server_privileges.php:304 #, fuzzy #| msgid "None" msgctxt "None privileges" msgid "None" msgstr "Няма" -#: server_privileges.php:431 server_privileges.php:566 -#: server_privileges.php:1718 server_privileges.php:1724 +#: server_privileges.php:432 server_privileges.php:567 +#: server_privileges.php:1738 server_privileges.php:1744 msgid "Table-specific privileges" msgstr "Прывілеі, спэцыфічныя для табліцы" -#: server_privileges.php:432 server_privileges.php:574 -#: server_privileges.php:1540 +#: server_privileges.php:433 server_privileges.php:575 +#: server_privileges.php:1560 msgid " Note: MySQL privilege names are expressed in English " msgstr " Заўвага: імёны прывілеяў MySQL задаюцца па-ангельску " -#: server_privileges.php:563 server_privileges.php:1539 +#: server_privileges.php:564 server_privileges.php:1559 msgid "Global privileges" msgstr "Глябальныя прывілеі" -#: server_privileges.php:565 server_privileges.php:1718 +#: server_privileges.php:566 server_privileges.php:1738 msgid "Database-specific privileges" msgstr "Спэцыфічныя прывілеі базы дадзеных" -#: server_privileges.php:610 +#: server_privileges.php:611 msgid "Administration" msgstr "Адміністраваньне" -#: server_privileges.php:630 +#: server_privileges.php:631 msgid "Resource limits" msgstr "Абмежаваньні рэсурсаў" -#: server_privileges.php:631 +#: server_privileges.php:632 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "Заўвага: Пазначэньне гэтых опцыяў як 0 (нуль) здымае абмежаваньне." -#: server_privileges.php:708 +#: server_privileges.php:709 msgid "Login Information" msgstr "Інфармацыя пра ўваход" -#: server_privileges.php:802 +#: server_privileges.php:803 msgid "Do not change the password" msgstr "Не зьмяняць пароль" -#: server_privileges.php:843 server_privileges.php:2205 +#: server_privileges.php:844 server_privileges.php:2226 #, fuzzy #| msgid "No user(s) found." msgid "No user found." msgstr "Не знойдзены карыстальнік." -#: server_privileges.php:887 +#: server_privileges.php:888 #, php-format msgid "The user %s already exists!" msgstr "Карыстальнік %s ужо існуе!" -#: server_privileges.php:970 +#: server_privileges.php:971 msgid "You have added a new user." msgstr "Быў дададзены новы карыстальнік." -#: server_privileges.php:1191 +#: server_privileges.php:1196 #, php-format msgid "You have updated the privileges for %s." msgstr "Вы зьмянілі прывілеі для %s." -#: server_privileges.php:1215 +#: server_privileges.php:1220 #, php-format msgid "You have revoked the privileges for %s" msgstr "Вы анулявалі прывілеі для %s" -#: server_privileges.php:1251 +#: server_privileges.php:1256 #, php-format msgid "The password for %s was changed successfully." msgstr "Пароль для %s пасьпяхова зьменены." -#: server_privileges.php:1271 +#: server_privileges.php:1276 #, php-format msgid "Deleting %s" msgstr "Выдаленьне %s" -#: server_privileges.php:1282 +#: server_privileges.php:1287 msgid "No users selected for deleting!" msgstr "На выбраныя карыстальнікі для выдаленьня!" -#: server_privileges.php:1285 +#: server_privileges.php:1290 msgid "Reloading the privileges" msgstr "Перазагрузіць прывілеі" -#: server_privileges.php:1300 +#: server_privileges.php:1305 msgid "The selected users have been deleted successfully." msgstr "Выбраныя карыстальнікі былі пасьпяхова выдаленыя." -#: server_privileges.php:1335 +#: server_privileges.php:1344 msgid "The privileges were reloaded successfully." msgstr "Прывілеі былі пасьпяхова перазагружаныя." -#: server_privileges.php:1363 server_privileges.php:1649 +#: server_privileges.php:1380 server_privileges.php:1669 msgid "Edit Privileges" msgstr "Рэдагаваць прывілеі" -#: server_privileges.php:1372 +#: server_privileges.php:1389 msgid "Revoke" msgstr "Ануляваць" -#: server_privileges.php:1404 +#: server_privileges.php:1424 msgid "User overview" msgstr "Карыстальнікі" -#: server_privileges.php:1541 server_privileges.php:1723 -#: server_privileges.php:2072 +#: server_privileges.php:1561 server_privileges.php:1743 +#: server_privileges.php:2093 msgid "Grant" msgstr "Grant" -#: server_privileges.php:1560 server_privileges.php:2162 +#: server_privileges.php:1580 server_privileges.php:2183 msgid "Any" msgstr "Любы" -#: server_privileges.php:1609 server_privileges.php:1633 -#: server_privileges.php:2027 server_privileges.php:2216 +#: server_privileges.php:1629 server_privileges.php:1653 +#: server_privileges.php:2048 server_privileges.php:2237 msgid "Add a new User" msgstr "Дадаць новага карыстальніка" -#: server_privileges.php:1614 +#: server_privileges.php:1634 msgid "Remove selected users" msgstr "Выдаліць выбраных карыстальнікаў" -#: server_privileges.php:1617 +#: server_privileges.php:1637 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 +#: server_privileges.php:1638 server_privileges.php:1639 +#: server_privileges.php:1640 msgid "Drop the databases that have the same names as the users." msgstr "Выдаліць базы дадзеных, якія маюць такія ж імёны як і карыстальнікі." -#: server_privileges.php:1636 +#: server_privileges.php:1656 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -4982,50 +5025,50 @@ msgstr "" "якія выкарыстоўвае сэрвэр, калі яны былі зьмененыя ўручную. У гэтым выпадку " "вам трэба %sперазагрузіць прывілеі%s да таго, як вы працягнеце." -#: server_privileges.php:1684 +#: server_privileges.php:1704 msgid "The selected user was not found in the privilege table." msgstr "Вылучаны карыстальнік ня знойдзены ў табліцы прывілеяў." -#: server_privileges.php:1724 +#: server_privileges.php:1744 msgid "Column-specific privileges" msgstr "Спэцыфічныя прывілеі калёнак" -#: server_privileges.php:1925 +#: server_privileges.php:1945 msgid "Add privileges on the following database" msgstr "Дадаць прывілеі на наступную базу" -#: server_privileges.php:1943 +#: server_privileges.php:1963 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" "Сымбалі падстаноўкі _ і % мусяць быць экранаванымі сымбалем \\ для іх " "літаральнага выкарыстаньня" -#: server_privileges.php:1946 +#: server_privileges.php:1966 msgid "Add privileges on the following table" msgstr "Дадаць прывілеі на наступную табліцу" -#: server_privileges.php:2003 +#: server_privileges.php:2023 msgid "Change Login Information / Copy User" msgstr "Зьмяніць рэгістрацыйную інфармацыю / Капіяваць карыстальніка" -#: server_privileges.php:2006 +#: server_privileges.php:2026 msgid "Create a new user with the same privileges and ..." msgstr "Стварыць новага карыстальніка з такімі ж прывілеямі і ..." -#: server_privileges.php:2008 +#: server_privileges.php:2028 msgid "... keep the old one." msgstr "... пакінуць старога." -#: server_privileges.php:2009 +#: server_privileges.php:2029 msgid " ... delete the old one from the user tables." msgstr " ... выдаліць старога з табліцы карыстальнікаў." -#: server_privileges.php:2010 +#: server_privileges.php:2030 msgid "" " ... revoke all active privileges from the old one and delete it afterwards." msgstr " ... ануляваць усе актыўныя прывілеі старога і пасьля выдаліць яго." -#: server_privileges.php:2011 +#: server_privileges.php:2031 msgid "" " ... delete the old one from the user tables and reload the privileges " "afterwards." @@ -5033,45 +5076,45 @@ msgstr "" " ... выдаліць старога з табліцы карыстальнікаў і пасьля перазагрузіць " "прывілеі." -#: server_privileges.php:2033 +#: server_privileges.php:2054 msgid "Database for user" msgstr "База дадзеных для карыстальніка" -#: server_privileges.php:2037 +#: server_privileges.php:2058 #, fuzzy #| msgid "None" msgctxt "Create none database for user" msgid "None" msgstr "Няма" -#: server_privileges.php:2038 +#: server_privileges.php:2059 msgid "Create database with same name and grant all privileges" msgstr "Стварыць базу дадзеных з такім самым імем і надзяліць усімі прывілеямі" -#: server_privileges.php:2039 +#: server_privileges.php:2060 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "" "Надзяліць усімі прывілеямі базы з іменамі па масцы (імя карыстальніка_%)" -#: server_privileges.php:2042 +#: server_privileges.php:2063 #, fuzzy, php-format msgid "Grant all privileges on database "%s"" msgstr "Праверыць прывілеі для базы "%s"." -#: server_privileges.php:2065 +#: server_privileges.php:2086 #, php-format msgid "Users having access to "%s"" msgstr "Карыстальнікі з правамі доступу да "%s"" -#: server_privileges.php:2173 +#: server_privileges.php:2194 msgid "global" msgstr "глябальны" -#: server_privileges.php:2175 +#: server_privileges.php:2196 msgid "database-specific" msgstr "спэцыфічны для базы дадзеных" -#: server_privileges.php:2177 +#: server_privileges.php:2198 msgid "wildcard" msgstr "шаблён" @@ -7924,6 +7967,10 @@ msgstr "" msgid "Show insert query" msgstr "У выглядзе SQL-запыту" +#: tbl_change.php:1143 +msgid "and then" +msgstr "і пасьля" + #: tbl_change.php:1147 msgid "Go back to previous page" msgstr "Перайсьці да папярэдняй старонкі" @@ -8005,7 +8052,7 @@ msgstr "" msgid "Add to index  %s column(s)" msgstr "Дадаць да індэкса  %s калёнку(і)" -#: tbl_indexes.php:256 tbl_structure.php:589 tbl_structure.php:600 +#: tbl_indexes.php:256 tbl_structure.php:587 tbl_structure.php:598 msgid "Column count has to be larger than zero." msgstr "Колькасьць калёнак мусіць быць большай за нуль." @@ -8119,39 +8166,39 @@ msgstr "Праверыць цэласнасьць дадзеных:" msgid "Show tables" msgstr "Паказаць табліцы" -#: tbl_printview.php:310 tbl_structure.php:656 +#: tbl_printview.php:310 tbl_structure.php:654 msgid "Space usage" msgstr "Выкарыстаньне прасторы" -#: tbl_printview.php:314 tbl_structure.php:660 +#: tbl_printview.php:314 tbl_structure.php:658 msgid "Usage" msgstr "Выкарыстаньне" -#: tbl_printview.php:341 tbl_structure.php:687 +#: tbl_printview.php:341 tbl_structure.php:685 msgid "Effective" msgstr "Эфэктыўнасьць" -#: tbl_printview.php:366 tbl_structure.php:725 +#: tbl_printview.php:366 tbl_structure.php:723 msgid "Row Statistics" msgstr "Статыстыка радку" -#: tbl_printview.php:369 tbl_structure.php:728 +#: tbl_printview.php:369 tbl_structure.php:726 msgid "Statements" msgstr "Выразы" -#: tbl_printview.php:380 tbl_structure.php:740 +#: tbl_printview.php:380 tbl_structure.php:738 msgid "static" msgstr "" -#: tbl_printview.php:382 tbl_structure.php:742 +#: tbl_printview.php:382 tbl_structure.php:740 msgid "dynamic" msgstr "дынамічны" -#: tbl_printview.php:404 tbl_structure.php:785 +#: tbl_printview.php:404 tbl_structure.php:783 msgid "Row length" msgstr "Даўжыня радка" -#: tbl_printview.php:414 tbl_structure.php:793 +#: tbl_printview.php:414 tbl_structure.php:791 msgid " Row size " msgstr " Памер радка " @@ -8225,50 +8272,50 @@ msgstr "Няма" msgid "Column %s has been dropped" msgstr "Табліца %s была выдаленая" -#: tbl_structure.php:385 +#: tbl_structure.php:384 #, php-format msgid "A primary key has been added on %s" msgstr "Першасны ключ быў дададзены да %s" -#: tbl_structure.php:400 tbl_structure.php:414 tbl_structure.php:428 +#: tbl_structure.php:398 tbl_structure.php:412 tbl_structure.php:426 #, php-format msgid "An index has been added on %s" msgstr "Быў дададзены індэкс для %s" -#: tbl_structure.php:506 tbl_structure.php:508 +#: tbl_structure.php:504 tbl_structure.php:506 msgid "Relation view" msgstr "Прагляд залежнасьцяў" -#: tbl_structure.php:515 tbl_structure.php:517 +#: tbl_structure.php:513 tbl_structure.php:515 msgid "Propose table structure" msgstr "Прапанаваная структура табліцы" -#: tbl_structure.php:540 +#: tbl_structure.php:538 #, fuzzy #| msgid "Add %s field(s)" msgid "Add column" msgstr "Дадаць %s новыя палі" -#: tbl_structure.php:554 +#: tbl_structure.php:552 msgid "At End of Table" msgstr "У канцы табліцы" -#: tbl_structure.php:555 +#: tbl_structure.php:553 msgid "At Beginning of Table" msgstr "У пачатку табліцы" -#: tbl_structure.php:556 +#: tbl_structure.php:554 #, php-format msgid "After %s" msgstr "Пасьля %s" -#: tbl_structure.php:594 +#: tbl_structure.php:592 #, fuzzy, php-format #| msgid "Create an index on %s columns" msgid "Create an index on  %s columns" msgstr "Стварыць індэкс на %s калёнках" -#: tbl_structure.php:756 +#: tbl_structure.php:754 msgid "partitioned" msgstr "падзеленая на сэкцыі" @@ -8726,9 +8773,6 @@ msgstr "Перайменаваць табліцу ў" #~ msgid "Process list" #~ msgstr "Сьпіс працэсаў" -#~ msgid "Reload privileges" -#~ msgstr "Перазагрузіць прывілеі" - #~ msgid "" #~ "The users will still have the USAGE privilege until the privileges are " #~ "reloaded." diff --git a/po/be@latin.po b/po/be@latin.po index 9cff1a971..624964e6c 100755 --- a/po/be@latin.po +++ b/po/be@latin.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-06-13 09:03-0400\n" +"POT-Creation-Date: 2010-06-22 00:55+0530\n" "PO-Revision-Date: 2010-03-30 23:09+0200\n" "Last-Translator: Michal \n" "Language-Team: belarusian_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:1514 +#: libraries/display_tbl.lib.php:417 server_privileges.php:1534 msgid "Show all" msgstr "Pakazać usie" -#: browse_foreigners.php:82 libraries/common.lib.php:2313 +#: browse_foreigners.php:82 libraries/common.lib.php:2317 #: 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,18 +39,18 @@ 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:2831 -#: libraries/common.lib.php:2838 libraries/db_links.inc.php:75 +#: db_structure.php:106 libraries/common.lib.php:2835 +#: libraries/common.lib.php:2842 libraries/db_links.inc.php:75 #: libraries/tbl_links.inc.php:63 msgid "Search" msgstr "Pošuk" -#: browse_foreigners.php:153 db_operations.php:385 db_operations.php:429 -#: db_operations.php:499 db_operations.php:609 db_search.php:362 -#: db_structure.php:567 js/messages.php:48 libraries/Config.class.php:1046 +#: browse_foreigners.php:153 db_operations.php:394 db_operations.php:438 +#: db_operations.php:508 db_operations.php:618 db_search.php:362 +#: db_structure.php:565 js/messages.php:53 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:1335 libraries/common.lib.php:2288 +#: libraries/common.lib.php:1335 libraries/common.lib.php:2292 #: 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,15 +61,15 @@ msgstr "Pošuk" #: 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:664 server_privileges.php:1624 -#: server_privileges.php:1971 server_privileges.php:2018 -#: server_privileges.php:2057 server_replication.php:235 +#: server_privileges.php:665 server_privileges.php:1644 +#: server_privileges.php:1991 server_privileges.php:2038 +#: server_privileges.php:2078 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 #: tbl_operations.php:302 tbl_operations.php:499 tbl_operations.php:561 -#: tbl_operations.php:681 tbl_select.php:327 tbl_structure.php:562 -#: tbl_structure.php:597 tbl_tracking.php:395 tbl_tracking.php:512 +#: tbl_operations.php:681 tbl_select.php:327 tbl_structure.php:560 +#: tbl_structure.php:595 tbl_tracking.php:395 tbl_tracking.php:512 #: view_create.php:182 view_operations.php:101 msgid "Go" msgstr "Paniesłasia" @@ -95,7 +95,7 @@ msgstr "Vykarystoŭvać heta značeńnie" msgid "Database %1$s has been created." msgstr "Baza dadzienych %1$s stvoranaja." -#: db_datadict.php:49 db_operations.php:378 +#: db_datadict.php:49 db_operations.php:387 msgid "Database comment: " msgstr "Kamentar da bazy dadzienych: " @@ -122,10 +122,10 @@ msgstr "Nazvy kalonak" #: 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:2070 +#: pdf_schema.php:1263 pdf_schema.php:1284 server_privileges.php:2091 #: 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 +#: tbl_structure.php:657 tbl_tracking.php:274 tbl_tracking.php:321 msgid "Type" msgstr "Typ" @@ -138,7 +138,7 @@ msgstr "Typ" msgid "Null" msgstr "Nul" -#: db_datadict.php:178 db_structure.php:501 libraries/export/htmlword.php:247 +#: db_datadict.php:178 db_structure.php:499 libraries/export/htmlword.php:247 #: libraries/export/latex.php:360 libraries/export/odt.php:303 #: libraries/export/texytext.php:236 libraries/tbl_properties.inc.php:106 #: pdf_schema.php:1266 pdf_schema.php:1287 tbl_printview.php:146 @@ -166,9 +166,9 @@ msgstr "Kamentary" #: 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: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 +#: pdf_schema.php:1344 server_privileges.php:1588 server_privileges.php:1599 +#: server_privileges.php:1909 server_privileges.php:1914 +#: server_privileges.php:2208 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" @@ -182,9 +182,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:1565 -#: server_privileges.php:1579 server_privileges.php:1889 -#: server_privileges.php:1892 server_privileges.php:2187 sql.php:193 +#: server_databases.php:64 server_privileges.php:1585 +#: server_privileges.php:1599 server_privileges.php:1909 +#: server_privileges.php:1912 server_privileges.php:2208 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" @@ -211,125 +211,121 @@ msgstr "Vybrać usio" msgid "Unselect All" msgstr "Źniać usie adznaki" -#: db_operations.php:38 tbl_create.php:54 +#: db_operations.php:43 tbl_create.php:54 msgid "The database name is empty!" msgstr "Imia bazy dadzienych nie paznačanaje!" -#: db_operations.php:236 +#: db_operations.php:241 #, php-format msgid "Database %s has been renamed to %s" msgstr "Baza dadzienych %s była pierajmienavanaja ŭ %s" -#: db_operations.php:240 +#: db_operations.php:245 #, php-format msgid "Database %s has been copied to %s" msgstr "Baza dadzienych %s była skapijavanaja ŭ %s" -#: db_operations.php:412 +#: db_operations.php:421 msgid "Rename database to" msgstr "Pierajmienavać bazu dadzienych u" -#: db_operations.php:417 server_processlist.php:57 +#: db_operations.php:426 server_processlist.php:57 msgid "Command" msgstr "Kamanda" -#: db_operations.php:429 tbl_change.php:1143 -msgid "and then" -msgstr "i paśla" - -#: db_operations.php:455 +#: db_operations.php:464 msgid "Copy database to" msgstr "Kapijavać bazu dadzienych u" -#: db_operations.php:462 tbl_operations.php:528 tbl_tracking.php:388 +#: db_operations.php:471 tbl_operations.php:528 tbl_tracking.php:388 msgid "Structure only" msgstr "Tolki strukturu" -#: db_operations.php:463 tbl_operations.php:529 tbl_tracking.php:390 +#: db_operations.php:472 tbl_operations.php:529 tbl_tracking.php:390 msgid "Structure and data" msgstr "Strukturu i dadzienyja" -#: db_operations.php:464 tbl_operations.php:530 tbl_tracking.php:389 +#: db_operations.php:473 tbl_operations.php:530 tbl_tracking.php:389 msgid "Data only" msgstr "Tolki dadzienyja" -#: db_operations.php:472 +#: db_operations.php:481 msgid "CREATE DATABASE before copying" msgstr "vykanać CREATE DATABASE pierad kapijavańniem" -#: db_operations.php:475 libraries/export/sql.php:52 +#: db_operations.php:484 libraries/export/sql.php:52 #: libraries/export/sql.php:74 libraries/export/sql.php:76 #: libraries/export/sql.php:82 tbl_operations.php:536 #, php-format msgid "Add %s" msgstr "Dadać %s" -#: db_operations.php:479 libraries/export/sql.php:78 tbl_operations.php:299 +#: db_operations.php:488 libraries/export/sql.php:78 tbl_operations.php:299 #: tbl_operations.php:538 msgid "Add AUTO_INCREMENT value" msgstr "Dadać značeńnie AUTO_INCREMENT" -#: db_operations.php:483 tbl_operations.php:545 +#: db_operations.php:492 tbl_operations.php:545 msgid "Add constraints" msgstr "Dadać abmiežavańni" -#: db_operations.php:496 +#: db_operations.php:505 msgid "Switch to copied database" msgstr "Pierajści da skapijavanaj bazy dadzienych" -#: db_operations.php:537 +#: db_operations.php:546 msgid "BLOB Repository" msgstr "" -#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1352 -#: libraries/server_links.inc.php:49 server_processlist.php:59 +#: db_operations.php:549 db_tracking.php:76 libraries/common.lib.php:1352 +#: libraries/server_links.inc.php:50 server_processlist.php:59 #: tbl_tracking.php:596 test/theme.php:101 msgid "Status" msgstr "Stan" -#: db_operations.php:548 +#: db_operations.php:557 #, fuzzy #| msgid "Enabled" msgctxt "BLOB repository" msgid "Enabled" msgstr "Uklučana" -#: db_operations.php:552 +#: db_operations.php:561 msgid "Disable" msgstr "" -#: db_operations.php:562 +#: db_operations.php:571 msgid "Damaged" msgstr "" -#: db_operations.php:566 +#: db_operations.php:575 #, fuzzy #| msgid "Repair" msgctxt "BLOB repository" msgid "Repair" msgstr "Adramantavać" -#: db_operations.php:574 +#: db_operations.php:583 #, fuzzy #| msgid "Disabled" msgctxt "BLOB repository" msgid "Disabled" msgstr "Adklučana" -#: db_operations.php:578 +#: db_operations.php:587 msgid "Enable" msgstr "" -#: db_operations.php:602 libraries/Index.class.php:448 +#: db_operations.php:611 libraries/Index.class.php:448 #: libraries/db_structure.lib.php:62 libraries/mysql_charsets.lib.php:107 #: libraries/tbl_properties.inc.php:107 libraries/tbl_properties.inc.php:730 #: server_collations.php:54 server_collations.php:66 server_databases.php:111 #: tbl_operations.php:363 tbl_select.php:137 tbl_structure.php:179 -#: tbl_structure.php:767 tbl_tracking.php:275 tbl_tracking.php:326 +#: tbl_structure.php:765 tbl_tracking.php:275 tbl_tracking.php:326 msgid "Collation" msgstr "Supastaŭleńnie" -#: db_operations.php:615 main.php:316 pdf_schema.php:34 +#: db_operations.php:624 main.php:316 pdf_schema.php:34 #, php-format msgid "" "The additional features for working with linked tables have been " @@ -338,14 +334,14 @@ msgstr "" "Dadatkovyja mahčymaści raboty z źviazanymi tablicami byli adklučanyja. Kab " "vyśvietlić čamu, naciśnicie %stut%s." -#: db_operations.php:648 +#: db_operations.php:657 msgid "Edit PDF Pages" msgstr "Redagavać PDF-staronki" #: 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:1665 -#: server_privileges.php:1721 server_privileges.php:1985 +#: libraries/header.inc.php:130 pdf_pages.php:424 server_privileges.php:1685 +#: server_privileges.php:1741 server_privileges.php:2005 #: server_synchronize.php:423 server_synchronize.php:866 tbl_tracking.php:592 #: test/theme.php:75 msgid "Table" @@ -354,7 +350,7 @@ msgstr "Tablica" #: db_printview.php:105 libraries/db_structure.lib.php:56 #: libraries/header_printview.inc.php:63 libraries/import.lib.php:146 #: navigation.php:638 navigation.php:660 server_databases.php:122 -#: tbl_printview.php:394 tbl_structure.php:365 tbl_structure.php:777 +#: tbl_printview.php:394 tbl_structure.php:365 tbl_structure.php:775 msgid "Rows" msgstr "Radki" @@ -362,30 +358,30 @@ msgstr "Radki" msgid "Size" msgstr "Pamier" -#: db_printview.php:162 db_structure.php:457 libraries/export/sql.php:559 +#: db_printview.php:162 db_structure.php:455 libraries/export/sql.php:559 #: libraries/export/sql.php:899 msgid "in use" msgstr "vykarystoŭvajecca" #: db_printview.php:187 libraries/db_info.inc.php:88 #: libraries/export/sql.php:514 pdf_schema.php:1241 tbl_printview.php:434 -#: tbl_structure.php:809 +#: tbl_structure.php:807 msgid "Creation" msgstr "Stvoranaja" #: db_printview.php:196 libraries/db_info.inc.php:93 #: libraries/export/sql.php:519 pdf_schema.php:1246 tbl_printview.php:444 -#: tbl_structure.php:817 +#: tbl_structure.php:815 msgid "Last update" msgstr "Apošniaje abnaŭleńnie" #: db_printview.php:205 libraries/db_info.inc.php:98 #: libraries/export/sql.php:524 pdf_schema.php:1251 tbl_printview.php:454 -#: tbl_structure.php:825 +#: tbl_structure.php:823 msgid "Last check" msgstr "Apošniaja pravierka" -#: db_printview.php:222 db_structure.php:480 +#: db_printview.php:222 db_structure.php:478 #, fuzzy, php-format #| msgid "%s table(s)" msgid "%s table" @@ -447,7 +443,7 @@ msgstr "Vydalić" #: 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:297 tbl_change.php:1031 tbl_indexes.php:250 +#: server_privileges.php:298 tbl_change.php:1031 tbl_indexes.php:250 #: tbl_select.php:288 msgid "Or" msgstr "Abo" @@ -520,9 +516,9 @@ msgstr "%s supadzieńniaŭ u tablicy %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:2833 +#: db_structure.php:105 libraries/common.lib.php:2837 #: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50 -#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:467 +#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:465 msgid "Browse" msgstr "Prahlad" @@ -567,36 +563,36 @@ msgstr "Unutry 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:2832 libraries/sql_query_form.lib.php:334 +#: libraries/common.lib.php:2836 libraries/sql_query_form.lib.php:334 #: libraries/sql_query_form.lib.php:337 libraries/tbl_links.inc.php:76 msgid "Insert" msgstr "Ustavić" #: db_structure.php:83 db_structure.php:96 db_structure.php:109 -#: libraries/common.lib.php:2829 libraries/common.lib.php:2836 +#: libraries/common.lib.php:2833 libraries/common.lib.php:2840 #: 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:1106 #: libraries/tbl_links.inc.php:56 pmd_general.php:134 -#: server_privileges.php:593 server_replication.php:315 tbl_tracking.php:269 +#: server_privileges.php:594 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:1656 +#: db_structure.php:543 db_structure.php:544 db_tracking.php:91 +#: libraries/Index.class.php:483 libraries/common.lib.php:1657 #: 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 -#: tbl_structure.php:152 tbl_structure.php:471 +#: tbl_structure.php:152 tbl_structure.php:469 msgid "Drop" msgstr "Vydalić" #: 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:1655 +#: db_structure.php:541 db_structure.php:542 libraries/common.lib.php:1656 #: libraries/mult_submits.inc.php:39 libraries/tbl_links.inc.php:105 msgid "Empty" msgstr "Ačyścić" @@ -606,25 +602,25 @@ msgstr "Ačyścić" msgid "Table %s has been emptied" msgstr "Tablica %s była ačyščanaja" -#: db_structure.php:326 libraries/tbl_links.inc.php:133 +#: db_structure.php:325 libraries/tbl_links.inc.php:133 #, php-format msgid "View %s has been dropped" msgstr "Vyhlad %s byŭ vydaleny" -#: db_structure.php:326 libraries/tbl_links.inc.php:133 +#: db_structure.php:325 libraries/tbl_links.inc.php:133 #, php-format msgid "Table %s has been dropped" msgstr "Tablica %s była vydalenaja" -#: db_structure.php:333 +#: db_structure.php:332 msgid "Tracking is active." msgstr "" -#: db_structure.php:335 +#: db_structure.php:334 msgid "Tracking is not active." msgstr "" -#: db_structure.php:420 libraries/display_tbl.lib.php:1944 +#: db_structure.php:418 libraries/display_tbl.lib.php:1944 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation%" @@ -633,88 +629,88 @@ msgstr "" "Hety prahlad maje tolki takuju kolkaść radkoŭ. Kali łaska, źviarniciesia da %" "sdakumentacyi%s." -#: db_structure.php:434 db_structure.php:448 libraries/header.inc.php:126 +#: db_structure.php:432 db_structure.php:446 libraries/header.inc.php:130 #: libraries/tbl_info.inc.php:66 tbl_structure.php:185 test/theme.php:74 msgid "View" msgstr "Vyhlad" -#: db_structure.php:485 libraries/db_structure.lib.php:49 -#: libraries/server_links.inc.php:70 server_replication.php:33 +#: db_structure.php:483 libraries/db_structure.lib.php:49 +#: libraries/server_links.inc.php:71 server_replication.php:33 #: server_replication.php:164 server_status.php:369 msgid "Replication" msgstr "Replikacyja" -#: db_structure.php:489 +#: db_structure.php:487 msgid "Sum" msgstr "Usiaho" -#: db_structure.php:496 libraries/StorageEngine.class.php:356 +#: db_structure.php:494 libraries/StorageEngine.class.php:356 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "" "%s źjaŭlajecca mašynaj zachavańnia dadzienych pa zmoŭčańni na hetym MySQL-" "servery." -#: db_structure.php:524 db_structure.php:541 db_structure.php:542 +#: db_structure.php:522 db_structure.php:539 db_structure.php:540 #: 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:1596 tbl_structure.php:455 -#: tbl_structure.php:464 +#: server_databases.php:351 server_privileges.php:1616 tbl_structure.php:453 +#: tbl_structure.php:462 msgid "With selected:" msgstr "Z adznačanymi:" -#: db_structure.php:527 libraries/display_tbl.lib.php:2076 -#: server_databases.php:348 server_privileges.php:569 -#: server_privileges.php:1599 tbl_structure.php:458 +#: db_structure.php:525 libraries/display_tbl.lib.php:2076 +#: server_databases.php:348 server_privileges.php:570 +#: server_privileges.php:1619 tbl_structure.php:456 msgid "Check All" msgstr "Adznačyć usio" -#: db_structure.php:531 libraries/display_tbl.lib.php:2077 +#: db_structure.php:529 libraries/display_tbl.lib.php:2077 #: libraries/replication_gui.lib.php:33 server_databases.php:350 -#: server_privileges.php:572 server_privileges.php:1603 tbl_structure.php:462 +#: server_privileges.php:573 server_privileges.php:1623 tbl_structure.php:460 msgid "Uncheck All" msgstr "Źniać usie adznaki" -#: db_structure.php:536 +#: db_structure.php:534 msgid "Check tables having overhead" msgstr "Adznačyć tyja, što patrabujuć aptymizacyi" -#: db_structure.php:547 db_structure.php:548 db_structure.php:599 +#: db_structure.php:545 db_structure.php:546 db_structure.php:597 #: libraries/display_tbl.lib.php:2180 libraries/mult_submits.inc.php:28 -#: tbl_structure.php:492 tbl_structure.php:494 +#: tbl_structure.php:490 tbl_structure.php:492 msgid "Print view" msgstr "Versija dla druku" -#: db_structure.php:549 db_structure.php:550 libraries/mult_submits.inc.php:42 +#: db_structure.php:547 db_structure.php:548 libraries/mult_submits.inc.php:42 #: tbl_operations.php:581 msgid "Check table" msgstr "Pravieryć tablicu" -#: db_structure.php:551 db_structure.php:552 libraries/mult_submits.inc.php:47 -#: tbl_operations.php:621 tbl_structure.php:709 tbl_structure.php:711 +#: db_structure.php:549 db_structure.php:550 libraries/mult_submits.inc.php:47 +#: tbl_operations.php:621 tbl_structure.php:707 tbl_structure.php:709 msgid "Optimize table" msgstr "Aptymizavać tablicu" -#: db_structure.php:553 db_structure.php:554 libraries/mult_submits.inc.php:52 +#: db_structure.php:551 db_structure.php:552 libraries/mult_submits.inc.php:52 #: tbl_operations.php:611 msgid "Repair table" msgstr "Ramantavać tablicu" -#: db_structure.php:555 db_structure.php:556 libraries/mult_submits.inc.php:57 +#: db_structure.php:553 db_structure.php:554 libraries/mult_submits.inc.php:57 #: tbl_operations.php:601 msgid "Analyze table" msgstr "Analizavać tablicu" -#: db_structure.php:557 db_structure.php:558 libraries/db_links.inc.php:71 +#: db_structure.php:555 db_structure.php:556 libraries/db_links.inc.php:71 #: 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:1380 +#: libraries/server_links.inc.php:85 libraries/tbl_links.inc.php:82 +#: pmd_pdf.php:84 pmd_pdf.php:109 server_privileges.php:1397 #: setup/frames/menu.inc.php:22 tbl_row_action.php:59 msgid "Export" msgstr "Ekspart" -#: db_structure.php:606 libraries/display_pdf_schema.lib.php:44 +#: db_structure.php:604 libraries/display_pdf_schema.lib.php:44 msgid "Data Dictionary" msgstr "Słoŭnik dadzienych" @@ -725,10 +721,10 @@ msgstr "" #: db_tracking.php:71 libraries/export/htmlword.php:86 #: libraries/export/latex.php:148 libraries/export/odt.php:113 #: libraries/export/sql.php:342 libraries/export/texytext.php:84 -#: libraries/export/xml.php:255 libraries/header.inc.php:106 +#: libraries/export/xml.php:255 libraries/header.inc.php:110 #: libraries/header_printview.inc.php:58 server_databases.php:169 -#: server_privileges.php:1660 server_privileges.php:1721 -#: server_privileges.php:1979 server_processlist.php:56 +#: server_privileges.php:1680 server_privileges.php:1741 +#: server_privileges.php:1999 server_processlist.php:56 #: server_synchronize.php:1179 server_synchronize.php:1183 #: tbl_tracking.php:591 test/theme.php:65 msgid "Database" @@ -748,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:1542 server_privileges.php:1725 -#: server_privileges.php:2073 tbl_structure.php:187 +#: server_privileges.php:1562 server_privileges.php:1745 +#: server_privileges.php:2094 tbl_structure.php:187 msgid "Action" msgstr "Dziejańnie" @@ -783,8 +779,8 @@ msgstr "" msgid "Untracked tables" msgstr "" -#: db_tracking.php:172 db_tracking.php:174 tbl_structure.php:528 -#: tbl_structure.php:530 +#: db_tracking.php:172 db_tracking.php:174 tbl_structure.php:526 +#: tbl_structure.php:528 msgid "Track table" msgstr "" @@ -953,187 +949,236 @@ msgstr "Pustoje imia chostu!" msgid "The user name is empty!" msgstr "Pustoje imia karystalnika!" -#: js/messages.php:44 server_privileges.php:1236 user_password.php:70 +#: js/messages.php:44 server_privileges.php:1241 user_password.php:70 msgid "The password is empty!" msgstr "Pusty parol!" -#: js/messages.php:45 server_privileges.php:1234 user_password.php:73 +#: js/messages.php:45 server_privileges.php:1239 user_password.php:73 msgid "The passwords aren't the same!" msgstr "Paroli nie supadajuć!" -#: js/messages.php:49 pmd_general.php:342 pmd_general.php:379 +#: js/messages.php:46 +#, fuzzy +#| msgid "Add a new User" +msgid "Add a New User" +msgstr "Dadać novaha karystalnika" + +#: js/messages.php:47 js/messages.php:54 pmd_general.php:342 +#: pmd_general.php:379 msgid "Cancel" msgstr "Skasavać" -#: js/messages.php:52 pmd_save_pos.php:54 +#: js/messages.php:48 +#, fuzzy +#| msgid "Create" +msgid "Create User" +msgstr "Stvaryć" + +#: js/messages.php:49 +#, fuzzy +#| msgid "Reload privileges" +msgid "Reloading Privileges" +msgstr "Pierazahruzić pryvilei" + +#: js/messages.php:50 +#, fuzzy +#| msgid "Remove selected users" +msgid "Removing Selected Users" +msgstr "Vydalić vybranych karystalnikaŭ" + +#: js/messages.php:57 +#, fuzzy +#| msgid "Log in" +msgid "Loading" +msgstr "Uvachod u systemu" + +#: js/messages.php:58 +#, fuzzy +#| msgid "Processes" +msgid "Processing Request" +msgstr "Pracesy" + +#: js/messages.php:59 +msgid "Error in Processing Request" +msgstr "" + +#: js/messages.php:60 +msgid "Dropping Column" +msgstr "" + +#: js/messages.php:61 +msgid "Adding Primary Key" +msgstr "" + +#: js/messages.php:64 pmd_save_pos.php:54 msgid "Modifications have been saved" msgstr "Madyfikacyi byli zachavanyja" -#: js/messages.php:53 pmd_relation_upd.php:49 +#: js/messages.php:65 pmd_relation_upd.php:49 msgid "Relation deleted" msgstr "Suviaź vydalenaja" -#: js/messages.php:54 pmd_relation_new.php:64 +#: js/messages.php:66 pmd_relation_new.php:64 msgid "FOREIGN KEY relation added" msgstr "Suviaź FOREIGN KEY była dadadzienaja" -#: js/messages.php:55 pmd_relation_new.php:86 +#: js/messages.php:67 pmd_relation_new.php:86 msgid "Internal relation added" msgstr "Unutranaja suviaź dadadzienaja" -#: js/messages.php:56 pmd_relation_new.php:63 pmd_relation_new.php:88 +#: js/messages.php:68 pmd_relation_new.php:63 pmd_relation_new.php:88 msgid "Error: Relation not added." msgstr "Pamyłka: suviaź nie dadadzienaja." -#: js/messages.php:57 pmd_relation_new.php:31 +#: js/messages.php:69 pmd_relation_new.php:31 msgid "Error: relation already exists." msgstr "Pamyłka: suviaź užo isnuje." -#: js/messages.php:58 +#: js/messages.php:70 msgid "Error saving coordinates for Designer." msgstr "Pamyłka zachavańnia kaardynataŭ." -#: js/messages.php:59 libraries/relation.lib.php:107 +#: js/messages.php:71 libraries/relation.lib.php:107 #: libraries/relation.lib.php:119 msgid "General relation features" msgstr "Mahčymaści asnoŭnych suviaziaŭ" -#: js/messages.php:59 libraries/relation.lib.php:101 +#: js/messages.php:71 libraries/relation.lib.php:101 #: libraries/relation.lib.php:108 msgid "Disabled" msgstr "Adklučana" -#: js/messages.php:60 +#: js/messages.php:72 msgid "Select referenced key" msgstr "Vybierycie spasyłkavy kluč" -#: js/messages.php:61 +#: js/messages.php:73 msgid "Select Foreign Key" msgstr "Vybierycie źniešni kluč" -#: js/messages.php:62 +#: js/messages.php:74 msgid "Please select the primary key or a unique key" msgstr "Kali łaska, vybierycie pieršasny (PRIMARY) albo ŭnikalny kluč (UNIQUE)" -#: js/messages.php:63 pmd_general.php:77 tbl_relation.php:548 +#: js/messages.php:75 pmd_general.php:77 tbl_relation.php:548 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" msgstr "Vybierycie pole dla adlustravańnia" #. l10n: Display text for calendar close link -#: js/messages.php:73 +#: js/messages.php:85 #, fuzzy #| msgid "None" msgid "Done" msgstr "Nijakaja" #. l10n: Display text for previous month link in calendar -#: js/messages.php:75 +#: js/messages.php:87 #, fuzzy #| msgid "Previous" msgid "Prev" msgstr "Papiaredniaja staronka" #. l10n: Display text for next month link in calendar -#: js/messages.php:77 libraries/common.lib.php:2353 -#: libraries/common.lib.php:2356 libraries/display_tbl.lib.php:338 +#: js/messages.php:89 libraries/common.lib.php:2357 +#: libraries/common.lib.php:2360 libraries/display_tbl.lib.php:338 #: server_binlog.php:205 server_binlog.php:207 tbl_printview.php:424 -#: tbl_structure.php:801 +#: tbl_structure.php:799 msgid "Next" msgstr "Nastupnaja staronka" #. l10n: Display text for current month link in calendar -#: js/messages.php:79 +#: js/messages.php:91 #, fuzzy #| msgid "Total" msgid "Today" msgstr "Ahułam" -#: js/messages.php:82 +#: js/messages.php:94 #, fuzzy #| msgid "Binary" msgid "January" msgstr "Dvajkovy" -#: js/messages.php:83 +#: js/messages.php:95 msgid "February" msgstr "" -#: js/messages.php:84 +#: js/messages.php:96 #, fuzzy #| msgid "Mar" msgid "March" msgstr "Sak" -#: js/messages.php:85 +#: js/messages.php:97 #, fuzzy #| msgid "Apr" msgid "April" msgstr "Kra" -#: js/messages.php:86 +#: js/messages.php:98 msgid "May" msgstr "Tra" -#: js/messages.php:87 +#: js/messages.php:99 #, fuzzy #| msgid "Jun" msgid "June" msgstr "Čer" -#: js/messages.php:88 +#: js/messages.php:100 #, fuzzy #| msgid "Jul" msgid "July" msgstr "Lip" -#: js/messages.php:89 +#: js/messages.php:101 #, fuzzy #| msgid "Aug" msgid "August" msgstr "Žni" -#: js/messages.php:90 +#: js/messages.php:102 msgid "September" msgstr "" -#: js/messages.php:91 +#: js/messages.php:103 #, fuzzy #| msgid "Oct" msgid "October" msgstr "Kas" -#: js/messages.php:92 +#: js/messages.php:104 msgid "November" msgstr "" -#: js/messages.php:93 +#: js/messages.php:105 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:97 libraries/common.lib.php:1557 +#: js/messages.php:109 libraries/common.lib.php:1557 msgid "Jan" msgstr "Stu" #. l10n: Short month name -#: js/messages.php:99 libraries/common.lib.php:1559 +#: js/messages.php:111 libraries/common.lib.php:1559 msgid "Feb" msgstr "Lut" #. l10n: Short month name -#: js/messages.php:101 libraries/common.lib.php:1561 +#: js/messages.php:113 libraries/common.lib.php:1561 msgid "Mar" msgstr "Sak" #. l10n: Short month name -#: js/messages.php:103 libraries/common.lib.php:1563 +#: js/messages.php:115 libraries/common.lib.php:1563 msgid "Apr" msgstr "Kra" #. l10n: Short month name -#: js/messages.php:105 libraries/common.lib.php:1565 +#: js/messages.php:117 libraries/common.lib.php:1565 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1141,178 +1186,178 @@ msgid "May" msgstr "Tra" #. l10n: Short month name -#: js/messages.php:107 libraries/common.lib.php:1567 +#: js/messages.php:119 libraries/common.lib.php:1567 msgid "Jun" msgstr "Čer" #. l10n: Short month name -#: js/messages.php:109 libraries/common.lib.php:1569 +#: js/messages.php:121 libraries/common.lib.php:1569 msgid "Jul" msgstr "Lip" #. l10n: Short month name -#: js/messages.php:111 libraries/common.lib.php:1571 +#: js/messages.php:123 libraries/common.lib.php:1571 msgid "Aug" msgstr "Žni" #. l10n: Short month name -#: js/messages.php:113 libraries/common.lib.php:1573 +#: js/messages.php:125 libraries/common.lib.php:1573 msgid "Sep" msgstr "Vier" #. l10n: Short month name -#: js/messages.php:115 libraries/common.lib.php:1575 +#: js/messages.php:127 libraries/common.lib.php:1575 msgid "Oct" msgstr "Kas" #. l10n: Short month name -#: js/messages.php:117 libraries/common.lib.php:1577 +#: js/messages.php:129 libraries/common.lib.php:1577 msgid "Nov" msgstr "Lis" #. l10n: Short month name -#: js/messages.php:119 libraries/common.lib.php:1579 +#: js/messages.php:131 libraries/common.lib.php:1579 msgid "Dec" msgstr "Śn" -#: js/messages.php:122 +#: js/messages.php:134 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "Ndz" -#: js/messages.php:123 +#: js/messages.php:135 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "Pan" -#: js/messages.php:124 +#: js/messages.php:136 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "Aŭt" -#: js/messages.php:125 +#: js/messages.php:137 msgid "Wednesday" msgstr "" -#: js/messages.php:126 +#: js/messages.php:138 msgid "Thursday" msgstr "" -#: js/messages.php:127 +#: js/messages.php:139 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "Piat" -#: js/messages.php:128 +#: js/messages.php:140 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:132 libraries/common.lib.php:1582 +#: js/messages.php:144 libraries/common.lib.php:1582 msgid "Sun" msgstr "Ndz" #. l10n: Short week day name -#: js/messages.php:134 libraries/common.lib.php:1584 +#: js/messages.php:146 libraries/common.lib.php:1584 msgid "Mon" msgstr "Pan" #. l10n: Short week day name -#: js/messages.php:136 libraries/common.lib.php:1586 +#: js/messages.php:148 libraries/common.lib.php:1586 msgid "Tue" msgstr "Aŭt" #. l10n: Short week day name -#: js/messages.php:138 libraries/common.lib.php:1588 +#: js/messages.php:150 libraries/common.lib.php:1588 msgid "Wed" msgstr "Sier" #. l10n: Short week day name -#: js/messages.php:140 libraries/common.lib.php:1590 +#: js/messages.php:152 libraries/common.lib.php:1590 msgid "Thu" msgstr "Cač" #. l10n: Short week day name -#: js/messages.php:142 libraries/common.lib.php:1592 +#: js/messages.php:154 libraries/common.lib.php:1592 msgid "Fri" msgstr "Piat" #. l10n: Short week day name -#: js/messages.php:144 libraries/common.lib.php:1594 +#: js/messages.php:156 libraries/common.lib.php:1594 msgid "Sat" msgstr "Sub" #. l10n: Minimal week day name -#: js/messages.php:148 +#: js/messages.php:160 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "Ndz" #. l10n: Minimal week day name -#: js/messages.php:150 +#: js/messages.php:162 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "Pan" #. l10n: Minimal week day name -#: js/messages.php:152 +#: js/messages.php:164 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "Aŭt" #. l10n: Minimal week day name -#: js/messages.php:154 +#: js/messages.php:166 #, fuzzy #| msgid "Wed" msgid "We" msgstr "Sier" #. l10n: Minimal week day name -#: js/messages.php:156 +#: js/messages.php:168 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "Cač" #. l10n: Minimal week day name -#: js/messages.php:158 +#: js/messages.php:170 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "Piat" #. l10n: Minimal week day name -#: js/messages.php:160 +#: js/messages.php:172 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "Sub" #. l10n: Column header for week of the year in calendar -#: js/messages.php:162 +#: js/messages.php:174 #, fuzzy #| msgid "Wiki" msgid "Wk" msgstr "Wiki" -#: js/messages.php:164 +#: js/messages.php:176 msgid "Hour" msgstr "" -#: js/messages.php:165 +#: js/messages.php:177 #, fuzzy #| msgid "in use" msgid "Minute" msgstr "vykarystoŭvajecca" -#: js/messages.php:166 +#: js/messages.php:178 #, fuzzy #| msgid "per second" msgid "Second" @@ -1374,7 +1419,7 @@ msgstr "Indeksy" #: libraries/Index.class.php:444 libraries/mult_submits.inc.php:103 #: libraries/tbl_properties.inc.php:519 tbl_structure.php:33 -#: tbl_structure.php:155 tbl_structure.php:159 tbl_structure.php:474 +#: tbl_structure.php:155 tbl_structure.php:159 tbl_structure.php:472 #: tbl_tracking.php:322 msgid "Unique" msgstr "Unikalnaje" @@ -1417,8 +1462,8 @@ msgstr "" "Padobna, što indeksy %1$s i %2$s źjaŭlajucca adnolkavymi, a tamu adzin ź " "ich, mahčyma, možna vydalić." -#: libraries/List_Database.class.php:431 libraries/server_links.inc.php:41 -#: server_databases.php:88 server_privileges.php:1660 +#: libraries/List_Database.class.php:431 libraries/server_links.inc.php:42 +#: server_databases.php:88 server_privileges.php:1680 #: setup/lib/messages.inc.php:110 test/theme.php:93 msgid "Databases" msgstr "Bazy dadzienych" @@ -1590,7 +1635,7 @@ msgstr "Parol:" msgid "Server Choice" msgstr "Vybar servera" -#: libraries/auth/cookie.auth.lib.php:320 libraries/header.inc.php:59 +#: libraries/auth/cookie.auth.lib.php:320 libraries/header.inc.php:63 msgid "Cookies must be enabled past this point." msgstr "Cookies musiać być uklučanymi paśla hetaha miesca." @@ -1673,7 +1718,7 @@ msgstr "" "toj čas, jak pašyreńnie paviedamlaje, što jano zahružanaje. Praviercie " "vašuju kanfihuracyju PHP." -#: libraries/common.inc.php:583 +#: libraries/common.inc.php:587 msgid "" "phpMyAdmin was unable to read your configuration file!
This might " "happen if PHP finds a parse error in it or PHP cannot find the file.
$cfg['PmaAbsoluteUri'] directive MUST be set in your " "configuration file!" @@ -1703,30 +1748,30 @@ msgstr "" "Dyrektyva $cfg['PmaAbsoluteUri'] PAVINNA być vyznačanaja ŭ vašym " "kanfihuracyjnym fajle!" -#: libraries/common.inc.php:629 +#: libraries/common.inc.php:633 #, fuzzy, php-format #| msgid "Invalid server index: \"%s\"" msgid "Invalid server index: %s" msgstr "Niekarektny indeks servera: \"%s\"" -#: libraries/common.inc.php:636 +#: libraries/common.inc.php:640 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" "Niapravilnaje imia chostu dla servera %1$s. Kali łaska, praviercie " "kanfihurycyju." -#: libraries/common.inc.php:645 libraries/header.inc.php:96 +#: libraries/common.inc.php:649 libraries/header.inc.php:100 #: libraries/select_server.lib.php:41 libraries/select_server.lib.php:47 #: main.php:185 test/theme.php:57 msgid "Server" msgstr "Server" -#: libraries/common.inc.php:823 +#: libraries/common.inc.php:827 msgid "Invalid authentication method set in configuration:" msgstr "U kanfihuracyi vyznačany niekarektny metad aŭtentyfikacyi:" -#: libraries/common.inc.php:926 +#: libraries/common.inc.php:930 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Vam treba abnavić %s da versii %s ci paźniejšaj." @@ -1859,47 +1904,47 @@ msgstr "." msgid "%B %d, %Y at %I:%M %p" msgstr "%d %B %Y, %H:%M" -#: libraries/common.lib.php:1907 +#: libraries/common.lib.php:1911 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s dzion, %s hadzinaŭ, %s chvilinaŭ i %s sekundaŭ" -#: libraries/common.lib.php:2322 libraries/common.lib.php:2325 +#: libraries/common.lib.php:2326 libraries/common.lib.php:2329 #: libraries/display_tbl.lib.php:290 server_status.php:719 msgid "Begin" msgstr "Pieršaja staronka" -#: libraries/common.lib.php:2323 libraries/common.lib.php:2326 +#: libraries/common.lib.php:2327 libraries/common.lib.php:2330 #: libraries/display_tbl.lib.php:291 server_binlog.php:168 #: server_binlog.php:170 msgid "Previous" msgstr "Papiaredniaja staronka" -#: libraries/common.lib.php:2354 libraries/common.lib.php:2357 +#: libraries/common.lib.php:2358 libraries/common.lib.php:2361 #: libraries/display_tbl.lib.php:353 msgid "End" msgstr "Apošniaja staronka" -#: libraries/common.lib.php:2430 +#: libraries/common.lib.php:2434 #, php-format msgid "Jump to database "%s"." msgstr "Pierajści da bazy dadzienych \"%s\"." -#: libraries/common.lib.php:2450 +#: libraries/common.lib.php:2454 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" "Isnuje viadomaja pamyłka z vykarystańniem parametra %s, hladzicie apisańnie " "na %s" -#: libraries/common.lib.php:2830 libraries/common.lib.php:2837 +#: libraries/common.lib.php:2834 libraries/common.lib.php:2841 #: libraries/db_links.inc.php:68 libraries/export/sql.php:25 -#: libraries/import/sql.php:18 libraries/server_links.inc.php:45 +#: libraries/import/sql.php:18 libraries/server_links.inc.php:46 #: libraries/tbl_links.inc.php:60 querywindow.php:99 test/theme.php:97 msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2839 libraries/db_links.inc.php:104 +#: libraries/common.lib.php:2843 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,15 +1992,15 @@ msgstr "Zapyt zhodna prykładu" msgid "Designer" msgstr "Dyzajner" -#: libraries/db_links.inc.php:98 libraries/server_links.inc.php:88 +#: libraries/db_links.inc.php:98 libraries/server_links.inc.php:89 #: libraries/tbl_links.inc.php:91 pmd_pdf.php:84 pmd_pdf.php:110 #: setup/frames/menu.inc.php:21 msgid "Import" msgstr "Imrart" -#: libraries/db_links.inc.php:111 libraries/server_links.inc.php:66 -#: server_privileges.php:111 server_privileges.php:1722 -#: server_privileges.php:2071 test/theme.php:117 +#: libraries/db_links.inc.php:111 libraries/server_links.inc.php:67 +#: server_privileges.php:112 server_privileges.php:1742 +#: server_privileges.php:2092 test/theme.php:117 msgid "Privileges" msgstr "Pryvilei" @@ -1974,7 +2019,7 @@ msgid "" msgstr "Značeńnie moža być prybliznym. Hł. FAQ 3.11" #: libraries/db_structure.lib.php:69 server_databases.php:142 -#: tbl_printview.php:336 tbl_structure.php:682 +#: tbl_printview.php:336 tbl_structure.php:680 msgid "Overhead" msgstr "Vykarystańnie resursaŭ" @@ -1993,7 +2038,7 @@ msgstr "Server nie adkazvaje" msgid "(or the local MySQL server's socket is not correctly configured)" msgstr "(abo sokiet lakalnaha servera MySQL nie skanfihuravany pravilna)" -#: libraries/dbi/mysql.dbi.lib.php:362 tbl_structure.php:608 +#: libraries/dbi/mysql.dbi.lib.php:362 tbl_structure.php:606 msgid "Details..." msgstr "Padrabiaźniej..." @@ -2003,22 +2048,22 @@ msgid "Change password" msgstr "Źmianić parol" #: libraries/display_change_password.lib.php:35 -#: libraries/replication_gui.lib.php:345 server_privileges.php:807 +#: libraries/replication_gui.lib.php:345 server_privileges.php:808 msgid "No Password" msgstr "Biez parola" #: 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:796 -#: server_privileges.php:800 server_privileges.php:811 -#: server_privileges.php:1538 server_synchronize.php:1175 +#: libraries/replication_gui.lib.php:349 server_privileges.php:797 +#: server_privileges.php:801 server_privileges.php:812 +#: server_privileges.php:1558 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:815 server_privileges.php:818 +#: server_privileges.php:816 server_privileges.php:819 msgid "Re-type" msgstr "Paćvierdžańnie" @@ -2033,12 +2078,12 @@ msgid "MySQL 4.0 compatible" msgstr "Sumiaščalnaje z MySQL 4.0" #: libraries/display_change_password.lib.php:72 -#: libraries/replication_gui.lib.php:360 server_privileges.php:822 +#: libraries/replication_gui.lib.php:360 server_privileges.php:823 msgid "Generate Password" msgstr "Zgieneravać parol" #: libraries/display_change_password.lib.php:75 -#: libraries/replication_gui.lib.php:363 server_privileges.php:825 +#: libraries/replication_gui.lib.php:363 server_privileges.php:826 msgid "Generate" msgstr "Zgieneravać" @@ -2051,8 +2096,8 @@ msgstr "Stvaryć novuju bazu dadzienych" msgid "Create" msgstr "Stvaryć" -#: libraries/display_create_database.lib.php:40 server_privileges.php:113 -#: server_privileges.php:1427 server_replication.php:35 +#: libraries/display_create_database.lib.php:40 server_privileges.php:114 +#: server_privileges.php:1447 server_replication.php:35 msgid "No Privileges" msgstr "Biez pryvilejaŭ" @@ -2145,7 +2190,7 @@ msgstr "Ścisk" #: 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:1875 server_processlist.php:75 +#: server_privileges.php:1895 server_processlist.php:75 msgid "None" msgstr "Nijakaja" @@ -2336,7 +2381,7 @@ msgstr "Sartavać pa klučy" #: libraries/import/docsql.php:34 libraries/import/ldi.php:47 #: libraries/import/ods.php:30 libraries/import/sql.php:20 #: libraries/import/xls.php:26 libraries/import/xlsx.php:26 -#: libraries/import/xml.php:25 tbl_select.php:267 tbl_structure.php:753 +#: libraries/import/xml.php:25 tbl_select.php:267 tbl_structure.php:751 msgid "Options" msgstr "Nałady" @@ -2413,7 +2458,7 @@ msgstr "Zapyt vykonvaŭsia %01.4f sek" #: libraries/display_tbl.lib.php:2089 libraries/mult_submits.inc.php:113 #: querywindow.php:125 querywindow.php:129 querywindow.php:132 -#: tbl_structure.php:25 tbl_structure.php:150 tbl_structure.php:470 +#: tbl_structure.php:25 tbl_structure.php:150 tbl_structure.php:468 msgid "Change" msgstr "Źmianić" @@ -2483,7 +2528,7 @@ msgstr "Vykarystańnie pułu buferu" #: libraries/engines/innodb.lib.php:194 server_databases.php:137 #: server_databases.php:305 server_status.php:525 server_status.php:586 -#: server_status.php:607 tbl_printview.php:351 tbl_structure.php:696 +#: server_status.php:607 tbl_printview.php:351 tbl_structure.php:694 msgid "Total" msgstr "Ahułam" @@ -2776,7 +2821,7 @@ msgstr "" "pierajmienavanyja i im budzie dadzieny čarhovy najvyšejšy numar." #: libraries/export/codegen.php:37 setup/lib/messages.inc.php:88 -#: tbl_printview.php:376 tbl_structure.php:737 +#: tbl_printview.php:376 tbl_structure.php:735 msgid "Format" msgstr "Farmat" @@ -2848,8 +2893,8 @@ 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:576 server_replication.php:316 tbl_printview.php:317 -#: tbl_structure.php:665 +#: server_privileges.php:577 server_replication.php:316 tbl_printview.php:317 +#: tbl_structure.php:663 msgid "Data" msgstr "Dadzienyja" @@ -2898,9 +2943,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:731 -#: server_privileges.php:734 server_privileges.php:790 -#: server_privileges.php:1537 server_privileges.php:2069 +#: libraries/replication_gui.lib.php:329 server_privileges.php:732 +#: server_privileges.php:735 server_privileges.php:791 +#: server_privileges.php:1557 server_privileges.php:2090 #: server_processlist.php:55 server_synchronize.php:1159 msgid "Host" msgstr "Chost" @@ -3095,7 +3140,7 @@ msgstr "" msgid "Open new phpMyAdmin window" msgstr "Adkryć novaje akno phpMyAdmin" -#: libraries/header.inc.php:115 +#: libraries/header.inc.php:119 msgid "New table" msgstr "" @@ -3253,20 +3298,20 @@ 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 +#: tbl_structure.php:471 msgid "Primary" msgstr "Pieršasny" #: libraries/mult_submits.inc.php:98 libraries/tbl_properties.inc.php:116 #: libraries/tbl_properties.inc.php:525 tbl_printview.php:326 #: tbl_structure.php:31 tbl_structure.php:154 tbl_structure.php:158 -#: tbl_structure.php:475 tbl_structure.php:673 +#: tbl_structure.php:473 tbl_structure.php:671 msgid "Index" msgstr "Indeks" #: libraries/mult_submits.inc.php:108 libraries/tbl_properties.inc.php:531 #: tbl_structure.php:35 tbl_structure.php:156 tbl_structure.php:160 -#: tbl_structure.php:478 +#: tbl_structure.php:476 msgid "Fulltext" msgstr "Poŭnatekstekstavaje" @@ -3569,8 +3614,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:711 -#: server_privileges.php:714 server_privileges.php:721 +#: libraries/replication_gui.lib.php:259 server_privileges.php:712 +#: server_privileges.php:715 server_privileges.php:722 #: server_synchronize.php:1171 msgid "User name" msgstr "Imia karystalnika" @@ -3594,7 +3639,7 @@ msgstr "Źmiennaja" #: 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 +#: tbl_structure.php:727 msgid "Value" msgstr "Značeńnie" @@ -3612,34 +3657,34 @@ msgstr "" msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:254 server_privileges.php:716 +#: libraries/replication_gui.lib.php:254 server_privileges.php:717 msgid "Any user" msgstr "Luby karystalnik" #: 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 +#: libraries/replication_gui.lib.php:346 server_privileges.php:718 +#: server_privileges.php:785 server_privileges.php:809 +#: server_privileges.php:1948 server_privileges.php:1978 msgid "Use text field" msgstr "Vykarystoŭvać tekstavaje pole" -#: libraries/replication_gui.lib.php:302 server_privileges.php:764 +#: libraries/replication_gui.lib.php:302 server_privileges.php:765 msgid "Any host" msgstr "Luby chost" -#: libraries/replication_gui.lib.php:306 server_privileges.php:768 +#: libraries/replication_gui.lib.php:306 server_privileges.php:769 msgid "Local" msgstr "Lakalny" -#: libraries/replication_gui.lib.php:312 server_privileges.php:773 +#: libraries/replication_gui.lib.php:312 server_privileges.php:774 msgid "This Host" msgstr "Hety chost" -#: libraries/replication_gui.lib.php:318 server_privileges.php:779 +#: libraries/replication_gui.lib.php:318 server_privileges.php:780 msgid "Use Host Table" msgstr "Vykarystoŭvać tablicu chostaŭ" -#: libraries/replication_gui.lib.php:331 server_privileges.php:792 +#: libraries/replication_gui.lib.php:331 server_privileges.php:793 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -3673,29 +3718,29 @@ msgstr "Nieviadomaja mova: %1$s." msgid "Servers" msgstr "Servery" -#: libraries/server_links.inc.php:53 server_engines.php:112 +#: libraries/server_links.inc.php:54 server_engines.php:112 #: server_engines.php:116 server_status.php:415 test/theme.php:105 msgid "Variables" msgstr "Źmiennyja" -#: libraries/server_links.inc.php:57 test/theme.php:109 +#: libraries/server_links.inc.php:58 test/theme.php:109 msgid "Charsets" msgstr "Kadyroŭki" -#: libraries/server_links.inc.php:61 test/theme.php:113 +#: libraries/server_links.inc.php:62 test/theme.php:113 msgid "Engines" msgstr "Mašyny" -#: libraries/server_links.inc.php:76 server_binlog.php:110 +#: libraries/server_links.inc.php:77 server_binlog.php:110 #: server_status.php:364 test/theme.php:121 msgid "Binary log" msgstr "Dvajkovy łog" -#: libraries/server_links.inc.php:80 +#: libraries/server_links.inc.php:81 msgid "Processes" msgstr "Pracesy" -#: libraries/server_links.inc.php:92 server_synchronize.php:1092 +#: libraries/server_links.inc.php:93 server_synchronize.php:1092 #: server_synchronize.php:1100 msgid "Synchronize" msgstr "" @@ -3947,13 +3992,13 @@ msgstr "Aznačeńnie PARTITION" msgid "Save" msgstr "Zachavać" -#: libraries/tbl_properties.inc.php:780 tbl_structure.php:542 +#: libraries/tbl_properties.inc.php:780 tbl_structure.php:540 #, fuzzy, php-format #| msgid "Add %s field(s)" msgid "Add %s column(s)" msgstr "Dadać %s novyja pali" -#: libraries/tbl_properties.inc.php:784 tbl_structure.php:536 +#: libraries/tbl_properties.inc.php:784 tbl_structure.php:534 #, fuzzy #| msgid "You have to add at least one field." msgid "You have to add at least one column." @@ -4172,8 +4217,8 @@ msgstr "Skinuć" msgid "Protocol version" msgstr "Versija pratakołu" -#: main.php:189 server_privileges.php:1389 server_privileges.php:1536 -#: server_privileges.php:1650 server_privileges.php:2068 +#: main.php:189 server_privileges.php:1406 server_privileges.php:1556 +#: server_privileges.php:1670 server_privileges.php:2089 #: server_processlist.php:54 msgid "User" msgstr "Karystalnik" @@ -4624,119 +4669,119 @@ msgstr "Mašyny zachavańnia dadzienych" msgid "View dump (schema) of databases" msgstr "Prahladzieć damp (schiemu) bazaŭ dadzienych" -#: server_privileges.php:24 server_privileges.php:266 +#: server_privileges.php:25 server_privileges.php:267 msgid "Includes all privileges except GRANT." msgstr "Uklučaje ŭsie pryvilei, aproč GRANT." -#: server_privileges.php:25 server_privileges.php:192 -#: server_privileges.php:515 +#: server_privileges.php:26 server_privileges.php:193 +#: server_privileges.php:516 msgid "Allows altering the structure of existing tables." msgstr "Dazvalaje źmianiać strukturu isnych tablic." -#: server_privileges.php:26 server_privileges.php:208 -#: server_privileges.php:521 +#: server_privileges.php:27 server_privileges.php:209 +#: server_privileges.php:522 msgid "Allows altering and dropping stored routines." msgstr "Dazvalaje źmianiać i vydalać pragramy, jakija zachoŭvajucca." -#: server_privileges.php:27 server_privileges.php:184 -#: server_privileges.php:514 +#: server_privileges.php:28 server_privileges.php:185 +#: server_privileges.php:515 msgid "Allows creating new databases and tables." msgstr "Dazvalaje stvarać novyja bazy dadzienych i tablicy." -#: server_privileges.php:28 server_privileges.php:207 -#: server_privileges.php:520 +#: server_privileges.php:29 server_privileges.php:208 +#: server_privileges.php:521 msgid "Allows creating stored routines." msgstr "Dazvalaje stvarać pragramy, jakija zachoŭvajucca." -#: server_privileges.php:29 server_privileges.php:514 +#: server_privileges.php:30 server_privileges.php:515 msgid "Allows creating new tables." msgstr "Dazvalaje stvarać novyja tablicy." -#: server_privileges.php:30 server_privileges.php:195 -#: server_privileges.php:518 +#: server_privileges.php:31 server_privileges.php:196 +#: server_privileges.php:519 msgid "Allows creating temporary tables." msgstr "Dazvalaje stvarać časovyja tablicy." -#: server_privileges.php:31 server_privileges.php:209 -#: server_privileges.php:554 +#: server_privileges.php:32 server_privileges.php:210 +#: server_privileges.php:555 msgid "Allows creating, dropping and renaming user accounts." msgstr "" "Dazvalaje stvarać, vydalać i pierajmianoŭvać ulikovyja zapisy karystalnikaŭ" -#: server_privileges.php:32 server_privileges.php:199 -#: server_privileges.php:203 server_privileges.php:526 -#: server_privileges.php:530 +#: server_privileges.php:33 server_privileges.php:200 +#: server_privileges.php:204 server_privileges.php:527 +#: server_privileges.php:531 msgid "Allows creating new views." msgstr "Dazvalaje stvarać novyja prahlady." -#: server_privileges.php:33 server_privileges.php:183 -#: server_privileges.php:506 +#: server_privileges.php:34 server_privileges.php:184 +#: server_privileges.php:507 msgid "Allows deleting data." msgstr "Dazvalaje vydalać dadzienyja." -#: server_privileges.php:34 server_privileges.php:185 -#: server_privileges.php:517 +#: server_privileges.php:35 server_privileges.php:186 +#: server_privileges.php:518 msgid "Allows dropping databases and tables." msgstr "Dazvalaje vydalać bazy dadzienych i tablicy." -#: server_privileges.php:35 server_privileges.php:517 +#: server_privileges.php:36 server_privileges.php:518 msgid "Allows dropping tables." msgstr "Dazvalaje vydalać tablicy." -#: server_privileges.php:36 server_privileges.php:200 -#: server_privileges.php:534 +#: server_privileges.php:37 server_privileges.php:201 +#: server_privileges.php:535 msgid "Allows to set up events for the event scheduler" msgstr "Dazvalaje stvarać padziei ŭ planiroŭniku padziejaŭ" -#: server_privileges.php:37 server_privileges.php:210 -#: server_privileges.php:522 +#: server_privileges.php:38 server_privileges.php:211 +#: server_privileges.php:523 msgid "Allows executing stored routines." msgstr "Dazvalaje vykanańnie pragramaŭ, jakija zachoŭvajucca." -#: server_privileges.php:38 server_privileges.php:189 -#: server_privileges.php:509 +#: server_privileges.php:39 server_privileges.php:190 +#: server_privileges.php:510 msgid "Allows importing data from and exporting data into files." msgstr "" "Dazvalaje impartavać dadzienyja z fajłaŭ i ekspartavać dadzienyja ŭ fajły." -#: server_privileges.php:39 server_privileges.php:540 +#: server_privileges.php:40 server_privileges.php:541 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "Dazvalaje dadavać karystalnikaŭ i pryvilei biez pierazahruzki tablic " "pryvilejaŭ." -#: server_privileges.php:40 server_privileges.php:191 -#: server_privileges.php:516 +#: server_privileges.php:41 server_privileges.php:192 +#: server_privileges.php:517 msgid "Allows creating and dropping indexes." msgstr "Dazvalaje stvarać i vydalać indeksy." -#: server_privileges.php:41 server_privileges.php:181 -#: server_privileges.php:442 server_privileges.php:504 +#: server_privileges.php:42 server_privileges.php:182 +#: server_privileges.php:443 server_privileges.php:505 msgid "Allows inserting and replacing data." msgstr "Dazvalaje ŭstaŭlać i zamianiać dadzienyja." -#: server_privileges.php:42 server_privileges.php:196 -#: server_privileges.php:549 +#: server_privileges.php:43 server_privileges.php:197 +#: server_privileges.php:550 msgid "Allows locking tables for the current thread." msgstr "Dazvalaje blakavać tablicy dla biahučaha patoku." -#: server_privileges.php:43 server_privileges.php:646 -#: server_privileges.php:648 +#: server_privileges.php:44 server_privileges.php:647 +#: server_privileges.php:649 msgid "Limits the number of new connections the user may open per hour." msgstr "" "Abmiažoŭvaje kolkaść novych złučeńniaŭ, jakija karystalnik moža adkryć na " "praciahu hadziny." -#: server_privileges.php:44 server_privileges.php:634 -#: server_privileges.php:636 +#: server_privileges.php:45 server_privileges.php:635 +#: server_privileges.php:637 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" "Abmiažoŭvaje kolkaść zapytaŭ, jakija karystalnik moža adpravić na server na " "praciahu hadziny." -#: server_privileges.php:45 server_privileges.php:640 -#: server_privileges.php:642 +#: server_privileges.php:46 server_privileges.php:641 +#: server_privileges.php:643 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -4744,59 +4789,59 @@ msgstr "" "Abmiažoŭvaje kolkaść kamandaŭ, źmianiajučych lubuju tablicu abo bazu " "dadzienych, jakija karystalnik moža vykanać na praciahu hadziny." -#: server_privileges.php:46 server_privileges.php:652 -#: server_privileges.php:654 +#: server_privileges.php:47 server_privileges.php:653 +#: server_privileges.php:655 msgid "Limits the number of simultaneous connections the user may have." msgstr "" "Abmiažoŭvaje kolkaść adnačasovych złučeńniaŭ, jakija moža mieć karystalnik." -#: server_privileges.php:47 server_privileges.php:188 -#: server_privileges.php:544 +#: server_privileges.php:48 server_privileges.php:189 +#: server_privileges.php:545 msgid "Allows viewing processes of all users" msgstr "Dazvalaje prahladać pracesy ŭsich karystalnikaŭ" -#: server_privileges.php:48 server_privileges.php:190 -#: server_privileges.php:448 server_privileges.php:550 +#: server_privileges.php:49 server_privileges.php:191 +#: server_privileges.php:449 server_privileges.php:551 msgid "Has no effect in this MySQL version." msgstr "Nie pracuje ŭ hetaj versii MySQL." -#: server_privileges.php:49 server_privileges.php:186 -#: server_privileges.php:545 +#: server_privileges.php:50 server_privileges.php:187 +#: server_privileges.php:546 msgid "Allows reloading server settings and flushing the server's caches." msgstr "Dazvalaje pierazahružać nałady servera i ačyščać keš servera." -#: server_privileges.php:50 server_privileges.php:198 -#: server_privileges.php:552 +#: server_privileges.php:51 server_privileges.php:199 +#: server_privileges.php:553 msgid "Allows the user to ask where the slaves / masters are." msgstr "Dazvalaje karystalniku pytacca, dzie znachodziacca slaves / masters." -#: server_privileges.php:51 server_privileges.php:197 -#: server_privileges.php:553 +#: server_privileges.php:52 server_privileges.php:198 +#: server_privileges.php:554 msgid "Needed for the replication slaves." msgstr "Nieabchodna dla replikacyi slaves." -#: server_privileges.php:52 server_privileges.php:180 -#: server_privileges.php:439 server_privileges.php:503 +#: server_privileges.php:53 server_privileges.php:181 +#: server_privileges.php:440 server_privileges.php:504 msgid "Allows reading data." msgstr "Dazvalaje čytać dadzienyja." -#: server_privileges.php:53 server_privileges.php:193 -#: server_privileges.php:547 +#: server_privileges.php:54 server_privileges.php:194 +#: server_privileges.php:548 msgid "Gives access to the complete list of databases." msgstr "Daje dostup da poŭnaha śpisu bazaŭ dadzienych." -#: server_privileges.php:54 server_privileges.php:204 -#: server_privileges.php:206 server_privileges.php:519 +#: server_privileges.php:55 server_privileges.php:205 +#: server_privileges.php:207 server_privileges.php:520 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Dazvalaje vykanańnie zapytaŭ SHOW CREATE VIEW." -#: server_privileges.php:55 server_privileges.php:187 -#: server_privileges.php:546 +#: server_privileges.php:56 server_privileges.php:188 +#: server_privileges.php:547 msgid "Allows shutting down the server." msgstr "Dazvalaje spyniać server." -#: server_privileges.php:56 server_privileges.php:194 -#: server_privileges.php:543 +#: server_privileges.php:57 server_privileges.php:195 +#: server_privileges.php:544 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -4806,157 +4851,157 @@ msgstr "" "Patrabujecca dla bolšaści administratyŭnych aperacyjaŭ, takich jak " "vyznačeńnie hlabalnych źmiennych abo spynieńnie patokaŭ inšych karystalnikaŭ." -#: server_privileges.php:57 server_privileges.php:201 -#: server_privileges.php:535 +#: server_privileges.php:58 server_privileges.php:202 +#: server_privileges.php:536 msgid "Allows creating and dropping triggers" msgstr "Dazvalaje stvareńnie i vydaleńnie tryhieraŭ" -#: server_privileges.php:58 server_privileges.php:182 -#: server_privileges.php:445 server_privileges.php:505 +#: server_privileges.php:59 server_privileges.php:183 +#: server_privileges.php:446 server_privileges.php:506 msgid "Allows changing data." msgstr "Dazvalaje źmianiać dadzienyja." -#: server_privileges.php:59 server_privileges.php:260 +#: server_privileges.php:60 server_privileges.php:261 msgid "No privileges." msgstr "Biez pryvilejaŭ." -#: server_privileges.php:302 server_privileges.php:303 +#: server_privileges.php:303 server_privileges.php:304 #, fuzzy #| msgid "None" msgctxt "None privileges" msgid "None" msgstr "Nijakaja" -#: server_privileges.php:431 server_privileges.php:566 -#: server_privileges.php:1718 server_privileges.php:1724 +#: server_privileges.php:432 server_privileges.php:567 +#: server_privileges.php:1738 server_privileges.php:1744 msgid "Table-specific privileges" msgstr "Pryvilei, specyfičnyja dla tablicy" -#: server_privileges.php:432 server_privileges.php:574 -#: server_privileges.php:1540 +#: server_privileges.php:433 server_privileges.php:575 +#: server_privileges.php:1560 msgid " Note: MySQL privilege names are expressed in English " msgstr " Zaŭvaha: imiony pryvilejaŭ MySQL zadajucca pa-anhielsku " -#: server_privileges.php:563 server_privileges.php:1539 +#: server_privileges.php:564 server_privileges.php:1559 msgid "Global privileges" msgstr "Hlabalnyja pryvilei" -#: server_privileges.php:565 server_privileges.php:1718 +#: server_privileges.php:566 server_privileges.php:1738 msgid "Database-specific privileges" msgstr "Specyfičnyja pryvilei bazy dadzienych" -#: server_privileges.php:610 +#: server_privileges.php:611 msgid "Administration" msgstr "Administravańnie" -#: server_privileges.php:630 +#: server_privileges.php:631 msgid "Resource limits" msgstr "Abmiežavańni resursaŭ" -#: server_privileges.php:631 +#: server_privileges.php:632 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "Zaŭvaha: Paznačeńnie hetych opcyjaŭ jak 0 (nul) zdymaje abmiežavańnie." -#: server_privileges.php:708 +#: server_privileges.php:709 msgid "Login Information" msgstr "Infarmacyja pra ŭvachod" -#: server_privileges.php:802 +#: server_privileges.php:803 msgid "Do not change the password" msgstr "Nie źmianiać parol" -#: server_privileges.php:843 server_privileges.php:2205 +#: server_privileges.php:844 server_privileges.php:2226 #, fuzzy #| msgid "No user(s) found." msgid "No user found." msgstr "Nie znojdzieny karystalnik." -#: server_privileges.php:887 +#: server_privileges.php:888 #, php-format msgid "The user %s already exists!" msgstr "Karystalnik %s užo isnuje!" -#: server_privileges.php:970 +#: server_privileges.php:971 msgid "You have added a new user." msgstr "Byŭ dadadzieny novy karystalnik." -#: server_privileges.php:1191 +#: server_privileges.php:1196 #, php-format msgid "You have updated the privileges for %s." msgstr "Vy źmianili pryvilei dla %s." -#: server_privileges.php:1215 +#: server_privileges.php:1220 #, php-format msgid "You have revoked the privileges for %s" msgstr "Vy anulavali pryvilei dla %s" -#: server_privileges.php:1251 +#: server_privileges.php:1256 #, php-format msgid "The password for %s was changed successfully." msgstr "Parol dla %s paśpiachova źmienieny." -#: server_privileges.php:1271 +#: server_privileges.php:1276 #, php-format msgid "Deleting %s" msgstr "Vydaleńnie %s" -#: server_privileges.php:1282 +#: server_privileges.php:1287 msgid "No users selected for deleting!" msgstr "Na vybranyja karystalniki dla vydaleńnia!" -#: server_privileges.php:1285 +#: server_privileges.php:1290 msgid "Reloading the privileges" msgstr "Pierazahruzić pryvilei" -#: server_privileges.php:1300 +#: server_privileges.php:1305 msgid "The selected users have been deleted successfully." msgstr "Vybranyja karystalniki byli paśpiachova vydalenyja." -#: server_privileges.php:1335 +#: server_privileges.php:1344 msgid "The privileges were reloaded successfully." msgstr "Pryvilei byli paśpiachova pierazahružanyja." -#: server_privileges.php:1363 server_privileges.php:1649 +#: server_privileges.php:1380 server_privileges.php:1669 msgid "Edit Privileges" msgstr "Redagavać pryvilei" -#: server_privileges.php:1372 +#: server_privileges.php:1389 msgid "Revoke" msgstr "Anulavać" -#: server_privileges.php:1404 +#: server_privileges.php:1424 msgid "User overview" msgstr "Karystalniki" -#: server_privileges.php:1541 server_privileges.php:1723 -#: server_privileges.php:2072 +#: server_privileges.php:1561 server_privileges.php:1743 +#: server_privileges.php:2093 msgid "Grant" msgstr "Grant" -#: server_privileges.php:1560 server_privileges.php:2162 +#: server_privileges.php:1580 server_privileges.php:2183 msgid "Any" msgstr "Luby" -#: server_privileges.php:1609 server_privileges.php:1633 -#: server_privileges.php:2027 server_privileges.php:2216 +#: server_privileges.php:1629 server_privileges.php:1653 +#: server_privileges.php:2048 server_privileges.php:2237 msgid "Add a new User" msgstr "Dadać novaha karystalnika" -#: server_privileges.php:1614 +#: server_privileges.php:1634 msgid "Remove selected users" msgstr "Vydalić vybranych karystalnikaŭ" -#: server_privileges.php:1617 +#: server_privileges.php:1637 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "Anulavać usie aktyŭnyja pryvilei karystalnikaŭ i paśla vydalić ich." -#: server_privileges.php:1618 server_privileges.php:1619 -#: server_privileges.php:1620 +#: server_privileges.php:1638 server_privileges.php:1639 +#: server_privileges.php:1640 msgid "Drop the databases that have the same names as the users." msgstr "" "Vydalić bazy dadzienych, jakija majuć takija ž imiony jak i karystalniki." -#: server_privileges.php:1636 +#: server_privileges.php:1656 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -4969,96 +5014,96 @@ msgstr "" "jakija vykarystoŭvaje server, kali jany byli źmienienyja ŭručnuju. U hetym " "vypadku vam treba %spierazahruzić pryvilei%s da taho, jak vy praciahniecie." -#: server_privileges.php:1684 +#: server_privileges.php:1704 msgid "The selected user was not found in the privilege table." msgstr "Vyłučany karystalnik nia znojdzieny ŭ tablicy pryvilejaŭ." -#: server_privileges.php:1724 +#: server_privileges.php:1744 msgid "Column-specific privileges" msgstr "Specyfičnyja pryvilei kalonak" -#: server_privileges.php:1925 +#: server_privileges.php:1945 msgid "Add privileges on the following database" msgstr "Dadać pryvilei na nastupnuju bazu" -#: server_privileges.php:1943 +#: server_privileges.php:1963 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" "Symbali padstanoŭki % i _ musiać być ekranavanymi symbalem \\ dla ich " "litaralnaha vykarystańnia" -#: server_privileges.php:1946 +#: server_privileges.php:1966 msgid "Add privileges on the following table" msgstr "Dadać pryvilei na nastupnuju tablicu" -#: server_privileges.php:2003 +#: server_privileges.php:2023 msgid "Change Login Information / Copy User" msgstr "Źmianić rehistracyjnuju infarmacyju / Kapijavać karystalnika" -#: server_privileges.php:2006 +#: server_privileges.php:2026 msgid "Create a new user with the same privileges and ..." msgstr "Stvaryć novaha karystalnika z takimi ž pryvilejami i ..." -#: server_privileges.php:2008 +#: server_privileges.php:2028 msgid "... keep the old one." msgstr "... pakinuć staroha." -#: server_privileges.php:2009 +#: server_privileges.php:2029 msgid " ... delete the old one from the user tables." msgstr " ... vydalić staroha z tablicy karystalnikaŭ." -#: server_privileges.php:2010 +#: server_privileges.php:2030 msgid "" " ... revoke all active privileges from the old one and delete it afterwards." msgstr " ... anulavać usie aktyŭnyja pryvilei staroha i paśla vydalić jaho." -#: server_privileges.php:2011 +#: server_privileges.php:2031 msgid "" " ... delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" " ... vydalić staroha z tablicy karystalnikaŭ i paśla pierazahruzić pryvilei." -#: server_privileges.php:2033 +#: server_privileges.php:2054 msgid "Database for user" msgstr "Baza dadzienych dla karystalnika" -#: server_privileges.php:2037 +#: server_privileges.php:2058 #, fuzzy #| msgid "None" msgctxt "Create none database for user" msgid "None" msgstr "Nijakaja" -#: server_privileges.php:2038 +#: server_privileges.php:2059 msgid "Create database with same name and grant all privileges" msgstr "" "Stvaryć bazu dadzienych z takim samym imiem i nadzialić usimi pryvilejami" -#: server_privileges.php:2039 +#: server_privileges.php:2060 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "" "Nadzialić usimi pryvilejami bazy z imienami pa mascy (imia karystalnika_%)" -#: server_privileges.php:2042 +#: server_privileges.php:2063 #, php-format msgid "Grant all privileges on database "%s"" msgstr "" -#: server_privileges.php:2065 +#: server_privileges.php:2086 #, php-format msgid "Users having access to "%s"" msgstr "Karystalniki z pravami dostupu da \"%s\"" -#: server_privileges.php:2173 +#: server_privileges.php:2194 msgid "global" msgstr "hlabalny" -#: server_privileges.php:2175 +#: server_privileges.php:2196 msgid "database-specific" msgstr "specyfičny dla bazy dadzienych" -#: server_privileges.php:2177 +#: server_privileges.php:2198 msgid "wildcard" msgstr "šablon" @@ -7847,6 +7892,10 @@ msgstr "" msgid "Show insert query" msgstr "" +#: tbl_change.php:1143 +msgid "and then" +msgstr "i paśla" + #: tbl_change.php:1147 msgid "Go back to previous page" msgstr "Pierajści da papiaredniaj staronki" @@ -7927,7 +7976,7 @@ msgstr "(\"PRIMARY\" musić być imiem pieršasnaha kluča i tolki jaho!)" msgid "Add to index  %s column(s)" msgstr "Dadać da indeksa %s kalonku(i)" -#: tbl_indexes.php:256 tbl_structure.php:589 tbl_structure.php:600 +#: tbl_indexes.php:256 tbl_structure.php:587 tbl_structure.php:598 msgid "Column count has to be larger than zero." msgstr "Kolkaść kalonak musić być bolšaj za nul." @@ -8041,39 +8090,39 @@ msgstr "Pravieryć cełasnaść dadzienych:" msgid "Show tables" msgstr "Pakazać tablicy" -#: tbl_printview.php:310 tbl_structure.php:656 +#: tbl_printview.php:310 tbl_structure.php:654 msgid "Space usage" msgstr "Vykarystańnie prastory" -#: tbl_printview.php:314 tbl_structure.php:660 +#: tbl_printview.php:314 tbl_structure.php:658 msgid "Usage" msgstr "Vykarystańnie" -#: tbl_printview.php:341 tbl_structure.php:687 +#: tbl_printview.php:341 tbl_structure.php:685 msgid "Effective" msgstr "Efektyŭnaść" -#: tbl_printview.php:366 tbl_structure.php:725 +#: tbl_printview.php:366 tbl_structure.php:723 msgid "Row Statistics" msgstr "Statystyka radku" -#: tbl_printview.php:369 tbl_structure.php:728 +#: tbl_printview.php:369 tbl_structure.php:726 msgid "Statements" msgstr "Vyrazy" -#: tbl_printview.php:380 tbl_structure.php:740 +#: tbl_printview.php:380 tbl_structure.php:738 msgid "static" msgstr "" -#: tbl_printview.php:382 tbl_structure.php:742 +#: tbl_printview.php:382 tbl_structure.php:740 msgid "dynamic" msgstr "dynamičny" -#: tbl_printview.php:404 tbl_structure.php:785 +#: tbl_printview.php:404 tbl_structure.php:783 msgid "Row length" msgstr "Daŭžynia radka" -#: tbl_printview.php:414 tbl_structure.php:793 +#: tbl_printview.php:414 tbl_structure.php:791 msgid " Row size " msgstr " Pamier radka " @@ -8147,50 +8196,50 @@ msgstr "Nijakaja" msgid "Column %s has been dropped" msgstr "Tablica %s była vydalenaja" -#: tbl_structure.php:385 +#: tbl_structure.php:384 #, php-format msgid "A primary key has been added on %s" msgstr "Pieršasny kluč byŭ dadadzieny da %s" -#: tbl_structure.php:400 tbl_structure.php:414 tbl_structure.php:428 +#: tbl_structure.php:398 tbl_structure.php:412 tbl_structure.php:426 #, php-format msgid "An index has been added on %s" msgstr "Byŭ dadadzieny indeks dla %s" -#: tbl_structure.php:506 tbl_structure.php:508 +#: tbl_structure.php:504 tbl_structure.php:506 msgid "Relation view" msgstr "Prahlad zaležnaściaŭ" -#: tbl_structure.php:515 tbl_structure.php:517 +#: tbl_structure.php:513 tbl_structure.php:515 msgid "Propose table structure" msgstr "Prapanavanaja struktura tablicy" -#: tbl_structure.php:540 +#: tbl_structure.php:538 #, fuzzy #| msgid "Add %s field(s)" msgid "Add column" msgstr "Dadać %s novyja pali" -#: tbl_structure.php:554 +#: tbl_structure.php:552 msgid "At End of Table" msgstr "U kancy tablicy" -#: tbl_structure.php:555 +#: tbl_structure.php:553 msgid "At Beginning of Table" msgstr "U pačatku tablicy" -#: tbl_structure.php:556 +#: tbl_structure.php:554 #, php-format msgid "After %s" msgstr "Paśla %s" -#: tbl_structure.php:594 +#: tbl_structure.php:592 #, fuzzy, php-format #| msgid "Create an index on %s columns" msgid "Create an index on  %s columns" msgstr "Stvaryć indeks na %s kalonkach" -#: tbl_structure.php:756 +#: tbl_structure.php:754 msgid "partitioned" msgstr "padzielenaja na sekcyi" @@ -8617,9 +8666,6 @@ msgstr "" #~ msgid "Process list" #~ msgstr "Śpis pracesaŭ" -#~ msgid "Reload privileges" -#~ msgstr "Pierazahruzić pryvilei" - #~ msgid "" #~ "The users will still have the USAGE privilege until the privileges are " #~ "reloaded." diff --git a/po/bg.po b/po/bg.po index 6010e294b..f576d1248 100755 --- a/po/bg.po +++ b/po/bg.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-06-13 09:03-0400\n" +"POT-Creation-Date: 2010-06-22 00:55+0530\n" "PO-Revision-Date: 2010-06-11 17:28+0200\n" "Last-Translator: \n" "Language-Team: bulgarian \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:1514 +#: libraries/display_tbl.lib.php:417 server_privileges.php:1534 msgid "Show all" msgstr "Покажи всички" -#: browse_foreigners.php:82 libraries/common.lib.php:2313 +#: browse_foreigners.php:82 libraries/common.lib.php:2317 #: 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,18 +38,18 @@ 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:2831 -#: libraries/common.lib.php:2838 libraries/db_links.inc.php:75 +#: db_structure.php:106 libraries/common.lib.php:2835 +#: libraries/common.lib.php:2842 libraries/db_links.inc.php:75 #: libraries/tbl_links.inc.php:63 msgid "Search" msgstr "Търсене" -#: browse_foreigners.php:153 db_operations.php:385 db_operations.php:429 -#: db_operations.php:499 db_operations.php:609 db_search.php:362 -#: db_structure.php:567 js/messages.php:48 libraries/Config.class.php:1046 +#: browse_foreigners.php:153 db_operations.php:394 db_operations.php:438 +#: db_operations.php:508 db_operations.php:618 db_search.php:362 +#: db_structure.php:565 js/messages.php:53 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:1335 libraries/common.lib.php:2288 +#: libraries/common.lib.php:1335 libraries/common.lib.php:2292 #: 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,15 +60,15 @@ 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:664 server_privileges.php:1624 -#: server_privileges.php:1971 server_privileges.php:2018 -#: server_privileges.php:2057 server_replication.php:235 +#: server_privileges.php:665 server_privileges.php:1644 +#: server_privileges.php:1991 server_privileges.php:2038 +#: server_privileges.php:2078 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 #: tbl_operations.php:302 tbl_operations.php:499 tbl_operations.php:561 -#: tbl_operations.php:681 tbl_select.php:327 tbl_structure.php:562 -#: tbl_structure.php:597 tbl_tracking.php:395 tbl_tracking.php:512 +#: tbl_operations.php:681 tbl_select.php:327 tbl_structure.php:560 +#: tbl_structure.php:595 tbl_tracking.php:395 tbl_tracking.php:512 #: view_create.php:182 view_operations.php:101 msgid "Go" msgstr "Изпълнение" @@ -94,7 +94,7 @@ msgstr "Използвахте тази стойност" msgid "Database %1$s has been created." msgstr "Базата данни %1$s беше създадена." -#: db_datadict.php:49 db_operations.php:378 +#: db_datadict.php:49 db_operations.php:387 msgid "Database comment: " msgstr "Коментар към базата от данни: " @@ -121,10 +121,10 @@ 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:2070 +#: pdf_schema.php:1263 pdf_schema.php:1284 server_privileges.php:2091 #: 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 +#: tbl_structure.php:657 tbl_tracking.php:274 tbl_tracking.php:321 msgid "Type" msgstr "Тип" @@ -137,7 +137,7 @@ msgstr "Тип" msgid "Null" msgstr "Празно" -#: db_datadict.php:178 db_structure.php:501 libraries/export/htmlword.php:247 +#: db_datadict.php:178 db_structure.php:499 libraries/export/htmlword.php:247 #: libraries/export/latex.php:360 libraries/export/odt.php:303 #: libraries/export/texytext.php:236 libraries/tbl_properties.inc.php:106 #: pdf_schema.php:1266 pdf_schema.php:1287 tbl_printview.php:146 @@ -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: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 +#: pdf_schema.php:1344 server_privileges.php:1588 server_privileges.php:1599 +#: server_privileges.php:1909 server_privileges.php:1914 +#: server_privileges.php:2208 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:1565 -#: server_privileges.php:1579 server_privileges.php:1889 -#: server_privileges.php:1892 server_privileges.php:2187 sql.php:193 +#: server_databases.php:64 server_privileges.php:1585 +#: server_privileges.php:1599 server_privileges.php:1909 +#: server_privileges.php:1912 server_privileges.php:2208 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" @@ -210,126 +210,122 @@ msgstr "Селектиране на всичко" msgid "Unselect All" msgstr "Деселектиране на всичко" -#: db_operations.php:38 tbl_create.php:54 +#: db_operations.php:43 tbl_create.php:54 msgid "The database name is empty!" msgstr "Името на базата от данни е празно!" -#: db_operations.php:236 +#: db_operations.php:241 #, php-format msgid "Database %s has been renamed to %s" msgstr "Базата данни %s беше преименувана на %s" -#: db_operations.php:240 +#: db_operations.php:245 #, php-format msgid "Database %s has been copied to %s" msgstr "База от данни %s беше копирана като %s" -#: db_operations.php:412 +#: db_operations.php:421 msgid "Rename database to" msgstr "Преименуване на базата от данни на" -#: db_operations.php:417 server_processlist.php:57 +#: db_operations.php:426 server_processlist.php:57 msgid "Command" msgstr "Команда" -#: db_operations.php:429 tbl_change.php:1143 -msgid "and then" -msgstr "и след това" - -#: db_operations.php:455 +#: db_operations.php:464 msgid "Copy database to" msgstr "Копиране на базата от данни в" -#: db_operations.php:462 tbl_operations.php:528 tbl_tracking.php:388 +#: db_operations.php:471 tbl_operations.php:528 tbl_tracking.php:388 msgid "Structure only" msgstr "Само структурата" -#: db_operations.php:463 tbl_operations.php:529 tbl_tracking.php:390 +#: db_operations.php:472 tbl_operations.php:529 tbl_tracking.php:390 msgid "Structure and data" msgstr "Структурата и данните" -#: db_operations.php:464 tbl_operations.php:530 tbl_tracking.php:389 +#: db_operations.php:473 tbl_operations.php:530 tbl_tracking.php:389 msgid "Data only" msgstr "Само данните" -#: db_operations.php:472 +#: db_operations.php:481 msgid "CREATE DATABASE before copying" msgstr "Изпълняване на CREATE DATABASE преди копирането" -#: db_operations.php:475 libraries/export/sql.php:52 +#: db_operations.php:484 libraries/export/sql.php:52 #: libraries/export/sql.php:74 libraries/export/sql.php:76 #: libraries/export/sql.php:82 tbl_operations.php:536 #, php-format msgid "Add %s" msgstr "Добавяне на %s" -#: db_operations.php:479 libraries/export/sql.php:78 tbl_operations.php:299 +#: db_operations.php:488 libraries/export/sql.php:78 tbl_operations.php:299 #: tbl_operations.php:538 msgid "Add AUTO_INCREMENT value" msgstr "Добавяне на AUTO_INCREMENT" -#: db_operations.php:483 tbl_operations.php:545 +#: db_operations.php:492 tbl_operations.php:545 msgid "Add constraints" msgstr "Добавяне на ограничение" -#: db_operations.php:496 +#: db_operations.php:505 msgid "Switch to copied database" msgstr "Прехвърляна към копираната база от данни" -#: db_operations.php:537 +#: db_operations.php:546 msgid "BLOB Repository" msgstr "BLOB хранилище" -#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1352 -#: libraries/server_links.inc.php:49 server_processlist.php:59 +#: db_operations.php:549 db_tracking.php:76 libraries/common.lib.php:1352 +#: libraries/server_links.inc.php:50 server_processlist.php:59 #: tbl_tracking.php:596 test/theme.php:101 msgid "Status" msgstr "Състояние" -#: db_operations.php:548 +#: db_operations.php:557 #, fuzzy #| msgid "Enabled" msgctxt "BLOB repository" msgid "Enabled" msgstr "Позволено" -#: db_operations.php:552 +#: db_operations.php:561 #, fuzzy msgid "Disable" msgstr "Забранено" -#: db_operations.php:562 +#: db_operations.php:571 msgid "Damaged" msgstr "" -#: db_operations.php:566 +#: db_operations.php:575 #, fuzzy msgctxt "BLOB repository" msgid "Repair" msgstr "Поправяне на таблицата" -#: db_operations.php:574 +#: db_operations.php:583 #, fuzzy #| msgid "Disabled" msgctxt "BLOB repository" msgid "Disabled" msgstr "Забранено" -#: db_operations.php:578 +#: db_operations.php:587 #, fuzzy msgid "Enable" msgstr "Позволено" -#: db_operations.php:602 libraries/Index.class.php:448 +#: db_operations.php:611 libraries/Index.class.php:448 #: libraries/db_structure.lib.php:62 libraries/mysql_charsets.lib.php:107 #: libraries/tbl_properties.inc.php:107 libraries/tbl_properties.inc.php:730 #: server_collations.php:54 server_collations.php:66 server_databases.php:111 #: tbl_operations.php:363 tbl_select.php:137 tbl_structure.php:179 -#: tbl_structure.php:767 tbl_tracking.php:275 tbl_tracking.php:326 +#: tbl_structure.php:765 tbl_tracking.php:275 tbl_tracking.php:326 msgid "Collation" msgstr "Колация" -#: db_operations.php:615 main.php:316 pdf_schema.php:34 +#: db_operations.php:624 main.php:316 pdf_schema.php:34 #, php-format msgid "" "The additional features for working with linked tables have been " @@ -338,14 +334,14 @@ msgstr "" "Допълнителните възможности за работа със свързани (linked) таблици са " "деактивирани. За да разберете защо кликнете %sтук%s." -#: db_operations.php:648 +#: db_operations.php:657 msgid "Edit PDF Pages" 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:1665 -#: server_privileges.php:1721 server_privileges.php:1985 +#: libraries/header.inc.php:130 pdf_pages.php:424 server_privileges.php:1685 +#: server_privileges.php:1741 server_privileges.php:2005 #: server_synchronize.php:423 server_synchronize.php:866 tbl_tracking.php:592 #: test/theme.php:75 msgid "Table" @@ -354,7 +350,7 @@ msgstr "Таблица " #: db_printview.php:105 libraries/db_structure.lib.php:56 #: libraries/header_printview.inc.php:63 libraries/import.lib.php:146 #: navigation.php:638 navigation.php:660 server_databases.php:122 -#: tbl_printview.php:394 tbl_structure.php:365 tbl_structure.php:777 +#: tbl_printview.php:394 tbl_structure.php:365 tbl_structure.php:775 msgid "Rows" msgstr "Редове" @@ -362,30 +358,30 @@ msgstr "Редове" msgid "Size" msgstr "Размер" -#: db_printview.php:162 db_structure.php:457 libraries/export/sql.php:559 +#: db_printview.php:162 db_structure.php:455 libraries/export/sql.php:559 #: libraries/export/sql.php:899 msgid "in use" msgstr "Заето" #: db_printview.php:187 libraries/db_info.inc.php:88 #: libraries/export/sql.php:514 pdf_schema.php:1241 tbl_printview.php:434 -#: tbl_structure.php:809 +#: tbl_structure.php:807 msgid "Creation" msgstr "Дата на създаване" #: db_printview.php:196 libraries/db_info.inc.php:93 #: libraries/export/sql.php:519 pdf_schema.php:1246 tbl_printview.php:444 -#: tbl_structure.php:817 +#: tbl_structure.php:815 msgid "Last update" msgstr "Последно обновление" #: db_printview.php:205 libraries/db_info.inc.php:98 #: libraries/export/sql.php:524 pdf_schema.php:1251 tbl_printview.php:454 -#: tbl_structure.php:825 +#: tbl_structure.php:823 msgid "Last check" msgstr "Последна проверка" -#: db_printview.php:222 db_structure.php:480 +#: db_printview.php:222 db_structure.php:478 #, fuzzy, php-format #| msgid "%s table(s)" msgid "%s table" @@ -446,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:297 tbl_change.php:1031 tbl_indexes.php:250 +#: server_privileges.php:298 tbl_change.php:1031 tbl_indexes.php:250 #: tbl_select.php:288 msgid "Or" msgstr "или" @@ -519,9 +515,9 @@ 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:2833 +#: db_structure.php:105 libraries/common.lib.php:2837 #: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50 -#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:467 +#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:465 msgid "Browse" msgstr "Прелистване" @@ -566,36 +562,36 @@ 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:2832 libraries/sql_query_form.lib.php:334 +#: libraries/common.lib.php:2836 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:2829 libraries/common.lib.php:2836 +#: libraries/common.lib.php:2833 libraries/common.lib.php:2840 #: 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:1106 #: libraries/tbl_links.inc.php:56 pmd_general.php:134 -#: server_privileges.php:593 server_replication.php:315 tbl_tracking.php:269 +#: server_privileges.php:594 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:1656 +#: db_structure.php:543 db_structure.php:544 db_tracking.php:91 +#: libraries/Index.class.php:483 libraries/common.lib.php:1657 #: 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 -#: tbl_structure.php:152 tbl_structure.php:471 +#: tbl_structure.php:152 tbl_structure.php:469 msgid "Drop" 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:1655 +#: db_structure.php:541 db_structure.php:542 libraries/common.lib.php:1656 #: libraries/mult_submits.inc.php:39 libraries/tbl_links.inc.php:105 msgid "Empty" msgstr "Изчистване" @@ -605,111 +601,111 @@ msgstr "Изчистване" msgid "Table %s has been emptied" msgstr "Таблицата %s беше изчистена" -#: db_structure.php:326 libraries/tbl_links.inc.php:133 +#: db_structure.php:325 libraries/tbl_links.inc.php:133 #, php-format msgid "View %s has been dropped" msgstr "Изглед %s беше изтрит" -#: db_structure.php:326 libraries/tbl_links.inc.php:133 +#: db_structure.php:325 libraries/tbl_links.inc.php:133 #, php-format msgid "Table %s has been dropped" msgstr "Таблицата %s беше изтрита" -#: db_structure.php:333 +#: db_structure.php:332 msgid "Tracking is active." msgstr "" -#: db_structure.php:335 +#: db_structure.php:334 msgid "Tracking is not active." msgstr "" -#: db_structure.php:420 libraries/display_tbl.lib.php:1944 +#: db_structure.php:418 libraries/display_tbl.lib.php:1944 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation%" "s." msgstr "" -#: db_structure.php:434 db_structure.php:448 libraries/header.inc.php:126 +#: db_structure.php:432 db_structure.php:446 libraries/header.inc.php:130 #: libraries/tbl_info.inc.php:66 tbl_structure.php:185 test/theme.php:74 msgid "View" msgstr "Изглед" -#: db_structure.php:485 libraries/db_structure.lib.php:49 -#: libraries/server_links.inc.php:70 server_replication.php:33 +#: db_structure.php:483 libraries/db_structure.lib.php:49 +#: libraries/server_links.inc.php:71 server_replication.php:33 #: server_replication.php:164 server_status.php:369 msgid "Replication" msgstr "Репликация" -#: db_structure.php:489 +#: db_structure.php:487 msgid "Sum" msgstr "Сума" -#: db_structure.php:496 libraries/StorageEngine.class.php:356 +#: db_structure.php:494 libraries/StorageEngine.class.php:356 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "%s е хранилището на данни по подразбиране на този MySQL сървър." -#: db_structure.php:524 db_structure.php:541 db_structure.php:542 +#: db_structure.php:522 db_structure.php:539 db_structure.php:540 #: 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:1596 tbl_structure.php:455 -#: tbl_structure.php:464 +#: server_databases.php:351 server_privileges.php:1616 tbl_structure.php:453 +#: tbl_structure.php:462 msgid "With selected:" msgstr "Когато има отметка:" -#: db_structure.php:527 libraries/display_tbl.lib.php:2076 -#: server_databases.php:348 server_privileges.php:569 -#: server_privileges.php:1599 tbl_structure.php:458 +#: db_structure.php:525 libraries/display_tbl.lib.php:2076 +#: server_databases.php:348 server_privileges.php:570 +#: server_privileges.php:1619 tbl_structure.php:456 msgid "Check All" msgstr "Маркиране на всичко" -#: db_structure.php:531 libraries/display_tbl.lib.php:2077 +#: db_structure.php:529 libraries/display_tbl.lib.php:2077 #: libraries/replication_gui.lib.php:33 server_databases.php:350 -#: server_privileges.php:572 server_privileges.php:1603 tbl_structure.php:462 +#: server_privileges.php:573 server_privileges.php:1623 tbl_structure.php:460 msgid "Uncheck All" msgstr "Размаркиране на всичко" -#: db_structure.php:536 +#: db_structure.php:534 msgid "Check tables having overhead" msgstr "Маркиране на таблиците със загубено място" -#: db_structure.php:547 db_structure.php:548 db_structure.php:599 +#: db_structure.php:545 db_structure.php:546 db_structure.php:597 #: libraries/display_tbl.lib.php:2180 libraries/mult_submits.inc.php:28 -#: tbl_structure.php:492 tbl_structure.php:494 +#: tbl_structure.php:490 tbl_structure.php:492 msgid "Print view" msgstr "Преглед за печат" -#: db_structure.php:549 db_structure.php:550 libraries/mult_submits.inc.php:42 +#: db_structure.php:547 db_structure.php:548 libraries/mult_submits.inc.php:42 #: tbl_operations.php:581 msgid "Check table" msgstr "Проверка на таблицата" -#: db_structure.php:551 db_structure.php:552 libraries/mult_submits.inc.php:47 -#: tbl_operations.php:621 tbl_structure.php:709 tbl_structure.php:711 +#: db_structure.php:549 db_structure.php:550 libraries/mult_submits.inc.php:47 +#: tbl_operations.php:621 tbl_structure.php:707 tbl_structure.php:709 msgid "Optimize table" msgstr "Оптимизация на таблицата" -#: db_structure.php:553 db_structure.php:554 libraries/mult_submits.inc.php:52 +#: db_structure.php:551 db_structure.php:552 libraries/mult_submits.inc.php:52 #: tbl_operations.php:611 msgid "Repair table" msgstr "Поправяне на таблицата" -#: db_structure.php:555 db_structure.php:556 libraries/mult_submits.inc.php:57 +#: db_structure.php:553 db_structure.php:554 libraries/mult_submits.inc.php:57 #: tbl_operations.php:601 msgid "Analyze table" msgstr "Анализиране на таблицата" -#: db_structure.php:557 db_structure.php:558 libraries/db_links.inc.php:71 +#: db_structure.php:555 db_structure.php:556 libraries/db_links.inc.php:71 #: 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:1380 +#: libraries/server_links.inc.php:85 libraries/tbl_links.inc.php:82 +#: pmd_pdf.php:84 pmd_pdf.php:109 server_privileges.php:1397 #: setup/frames/menu.inc.php:22 tbl_row_action.php:59 msgid "Export" msgstr "Експортиране" -#: db_structure.php:606 libraries/display_pdf_schema.lib.php:44 +#: db_structure.php:604 libraries/display_pdf_schema.lib.php:44 msgid "Data Dictionary" msgstr "Речник на данните" @@ -720,10 +716,10 @@ msgstr "" #: db_tracking.php:71 libraries/export/htmlword.php:86 #: libraries/export/latex.php:148 libraries/export/odt.php:113 #: libraries/export/sql.php:342 libraries/export/texytext.php:84 -#: libraries/export/xml.php:255 libraries/header.inc.php:106 +#: libraries/export/xml.php:255 libraries/header.inc.php:110 #: libraries/header_printview.inc.php:58 server_databases.php:169 -#: server_privileges.php:1660 server_privileges.php:1721 -#: server_privileges.php:1979 server_processlist.php:56 +#: server_privileges.php:1680 server_privileges.php:1741 +#: server_privileges.php:1999 server_processlist.php:56 #: server_synchronize.php:1179 server_synchronize.php:1183 #: tbl_tracking.php:591 test/theme.php:65 msgid "Database" @@ -744,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:1542 server_privileges.php:1725 -#: server_privileges.php:2073 tbl_structure.php:187 +#: server_privileges.php:1562 server_privileges.php:1745 +#: server_privileges.php:2094 tbl_structure.php:187 msgid "Action" msgstr "Действие" @@ -781,8 +777,8 @@ msgstr "Само структурата" msgid "Untracked tables" msgstr "" -#: db_tracking.php:172 db_tracking.php:174 tbl_structure.php:528 -#: tbl_structure.php:530 +#: db_tracking.php:172 db_tracking.php:174 tbl_structure.php:526 +#: tbl_structure.php:528 #, fuzzy msgid "Track table" msgstr "Проверка на таблицата" @@ -944,189 +940,236 @@ msgstr "Името на хоста е празно!" msgid "The user name is empty!" msgstr "Потребителското име е празно!" -#: js/messages.php:44 server_privileges.php:1236 user_password.php:70 +#: js/messages.php:44 server_privileges.php:1241 user_password.php:70 msgid "The password is empty!" msgstr "Паролата е празна!" -#: js/messages.php:45 server_privileges.php:1234 user_password.php:73 +#: js/messages.php:45 server_privileges.php:1239 user_password.php:73 msgid "The passwords aren't the same!" msgstr "Паролата не е същата!" -#: js/messages.php:49 pmd_general.php:342 pmd_general.php:379 +#: js/messages.php:46 +#, fuzzy +#| msgid "Add a new User" +msgid "Add a New User" +msgstr "Добавяне на нов потребител." + +#: js/messages.php:47 js/messages.php:54 pmd_general.php:342 +#: pmd_general.php:379 msgid "Cancel" msgstr "" -#: js/messages.php:52 pmd_save_pos.php:54 +#: js/messages.php:48 +#, fuzzy +msgid "Create User" +msgstr "Версия на сървъра" + +#: js/messages.php:49 +#, fuzzy +#| msgid "Reloading the privileges" +msgid "Reloading Privileges" +msgstr "Презареждане на привилегиите" + +#: js/messages.php:50 +#, fuzzy +#| msgid "Remove selected users" +msgid "Removing Selected Users" +msgstr "Отстраняване на избраните потребители" + +#: js/messages.php:57 +#, fuzzy +msgid "Loading" +msgstr "Локален" + +#: js/messages.php:58 +#, fuzzy +#| msgid "Processes" +msgid "Processing Request" +msgstr "Процеси" + +#: js/messages.php:59 +msgid "Error in Processing Request" +msgstr "" + +#: js/messages.php:60 +msgid "Dropping Column" +msgstr "" + +#: js/messages.php:61 +msgid "Adding Primary Key" +msgstr "" + +#: js/messages.php:64 pmd_save_pos.php:54 msgid "Modifications have been saved" msgstr "Промените бяха съхранени" -#: js/messages.php:53 pmd_relation_upd.php:49 +#: js/messages.php:65 pmd_relation_upd.php:49 #, fuzzy msgid "Relation deleted" msgstr "Преглед на релациите" -#: js/messages.php:54 pmd_relation_new.php:64 +#: js/messages.php:66 pmd_relation_new.php:64 msgid "FOREIGN KEY relation added" msgstr "" -#: js/messages.php:55 pmd_relation_new.php:86 +#: js/messages.php:67 pmd_relation_new.php:86 #, fuzzy msgid "Internal relation added" msgstr "Вътрешни релации" -#: js/messages.php:56 pmd_relation_new.php:63 pmd_relation_new.php:88 +#: js/messages.php:68 pmd_relation_new.php:63 pmd_relation_new.php:88 msgid "Error: Relation not added." msgstr "" -#: js/messages.php:57 pmd_relation_new.php:31 +#: js/messages.php:69 pmd_relation_new.php:31 msgid "Error: relation already exists." msgstr "" -#: js/messages.php:58 +#: js/messages.php:70 msgid "Error saving coordinates for Designer." msgstr "" -#: js/messages.php:59 libraries/relation.lib.php:107 +#: js/messages.php:71 libraries/relation.lib.php:107 #: libraries/relation.lib.php:119 msgid "General relation features" msgstr "Общи възможности на релациите" -#: js/messages.php:59 libraries/relation.lib.php:101 +#: js/messages.php:71 libraries/relation.lib.php:101 #: libraries/relation.lib.php:108 msgid "Disabled" msgstr "Забранено" -#: js/messages.php:60 +#: js/messages.php:72 msgid "Select referenced key" msgstr "" -#: js/messages.php:61 +#: js/messages.php:73 msgid "Select Foreign Key" msgstr "" -#: js/messages.php:62 +#: js/messages.php:74 msgid "Please select the primary key or a unique key" msgstr "" -#: js/messages.php:63 pmd_general.php:77 tbl_relation.php:548 +#: js/messages.php:75 pmd_general.php:77 tbl_relation.php:548 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" msgstr "Изберете Полета за показване" #. l10n: Display text for calendar close link -#: js/messages.php:73 +#: js/messages.php:85 #, fuzzy #| msgid "None" msgid "Done" msgstr "Няма" #. l10n: Display text for previous month link in calendar -#: js/messages.php:75 +#: js/messages.php:87 #, fuzzy #| msgid "Previous" msgid "Prev" msgstr "Предишен" #. l10n: Display text for next month link in calendar -#: js/messages.php:77 libraries/common.lib.php:2353 -#: libraries/common.lib.php:2356 libraries/display_tbl.lib.php:338 +#: js/messages.php:89 libraries/common.lib.php:2357 +#: libraries/common.lib.php:2360 libraries/display_tbl.lib.php:338 #: server_binlog.php:205 server_binlog.php:207 tbl_printview.php:424 -#: tbl_structure.php:801 +#: tbl_structure.php:799 msgid "Next" msgstr "Следващ" #. l10n: Display text for current month link in calendar -#: js/messages.php:79 +#: js/messages.php:91 #, fuzzy #| msgid "Total" msgid "Today" msgstr "Общо" -#: js/messages.php:82 +#: js/messages.php:94 #, fuzzy #| msgid "Binary" msgid "January" msgstr " Двоично " -#: js/messages.php:83 +#: js/messages.php:95 msgid "February" msgstr "" -#: js/messages.php:84 +#: js/messages.php:96 #, fuzzy #| msgid "Mar" msgid "March" msgstr "март" -#: js/messages.php:85 +#: js/messages.php:97 #, fuzzy #| msgid "Apr" msgid "April" msgstr "април" -#: js/messages.php:86 +#: js/messages.php:98 msgid "May" msgstr "май" -#: js/messages.php:87 +#: js/messages.php:99 #, fuzzy #| msgid "Jun" msgid "June" msgstr "юни" -#: js/messages.php:88 +#: js/messages.php:100 #, fuzzy #| msgid "Jul" msgid "July" msgstr "юли" -#: js/messages.php:89 +#: js/messages.php:101 #, fuzzy #| msgid "Aug" msgid "August" msgstr "август" -#: js/messages.php:90 +#: js/messages.php:102 msgid "September" msgstr "" -#: js/messages.php:91 +#: js/messages.php:103 #, fuzzy #| msgid "Oct" msgid "October" msgstr "октомври" -#: js/messages.php:92 +#: js/messages.php:104 msgid "November" msgstr "" -#: js/messages.php:93 +#: js/messages.php:105 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:97 libraries/common.lib.php:1557 +#: js/messages.php:109 libraries/common.lib.php:1557 msgid "Jan" msgstr "януари" #. l10n: Short month name -#: js/messages.php:99 libraries/common.lib.php:1559 +#: js/messages.php:111 libraries/common.lib.php:1559 msgid "Feb" msgstr "февруари" #. l10n: Short month name -#: js/messages.php:101 libraries/common.lib.php:1561 +#: js/messages.php:113 libraries/common.lib.php:1561 msgid "Mar" msgstr "март" #. l10n: Short month name -#: js/messages.php:103 libraries/common.lib.php:1563 +#: js/messages.php:115 libraries/common.lib.php:1563 msgid "Apr" msgstr "април" #. l10n: Short month name -#: js/messages.php:105 libraries/common.lib.php:1565 +#: js/messages.php:117 libraries/common.lib.php:1565 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1134,176 +1177,176 @@ msgid "May" msgstr "май" #. l10n: Short month name -#: js/messages.php:107 libraries/common.lib.php:1567 +#: js/messages.php:119 libraries/common.lib.php:1567 msgid "Jun" msgstr "юни" #. l10n: Short month name -#: js/messages.php:109 libraries/common.lib.php:1569 +#: js/messages.php:121 libraries/common.lib.php:1569 msgid "Jul" msgstr "юли" #. l10n: Short month name -#: js/messages.php:111 libraries/common.lib.php:1571 +#: js/messages.php:123 libraries/common.lib.php:1571 msgid "Aug" msgstr "август" #. l10n: Short month name -#: js/messages.php:113 libraries/common.lib.php:1573 +#: js/messages.php:125 libraries/common.lib.php:1573 msgid "Sep" msgstr "септември" #. l10n: Short month name -#: js/messages.php:115 libraries/common.lib.php:1575 +#: js/messages.php:127 libraries/common.lib.php:1575 msgid "Oct" msgstr "октомври" #. l10n: Short month name -#: js/messages.php:117 libraries/common.lib.php:1577 +#: js/messages.php:129 libraries/common.lib.php:1577 msgid "Nov" msgstr "ноември" #. l10n: Short month name -#: js/messages.php:119 libraries/common.lib.php:1579 +#: js/messages.php:131 libraries/common.lib.php:1579 msgid "Dec" msgstr "декември" -#: js/messages.php:122 +#: js/messages.php:134 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "нд" -#: js/messages.php:123 +#: js/messages.php:135 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "пн" -#: js/messages.php:124 +#: js/messages.php:136 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "вт" -#: js/messages.php:125 +#: js/messages.php:137 msgid "Wednesday" msgstr "" -#: js/messages.php:126 +#: js/messages.php:138 msgid "Thursday" msgstr "" -#: js/messages.php:127 +#: js/messages.php:139 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "пт" -#: js/messages.php:128 +#: js/messages.php:140 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:132 libraries/common.lib.php:1582 +#: js/messages.php:144 libraries/common.lib.php:1582 msgid "Sun" msgstr "нд" #. l10n: Short week day name -#: js/messages.php:134 libraries/common.lib.php:1584 +#: js/messages.php:146 libraries/common.lib.php:1584 msgid "Mon" msgstr "пн" #. l10n: Short week day name -#: js/messages.php:136 libraries/common.lib.php:1586 +#: js/messages.php:148 libraries/common.lib.php:1586 msgid "Tue" msgstr "вт" #. l10n: Short week day name -#: js/messages.php:138 libraries/common.lib.php:1588 +#: js/messages.php:150 libraries/common.lib.php:1588 msgid "Wed" msgstr "ср" #. l10n: Short week day name -#: js/messages.php:140 libraries/common.lib.php:1590 +#: js/messages.php:152 libraries/common.lib.php:1590 msgid "Thu" msgstr "чт" #. l10n: Short week day name -#: js/messages.php:142 libraries/common.lib.php:1592 +#: js/messages.php:154 libraries/common.lib.php:1592 msgid "Fri" msgstr "пт" #. l10n: Short week day name -#: js/messages.php:144 libraries/common.lib.php:1594 +#: js/messages.php:156 libraries/common.lib.php:1594 msgid "Sat" msgstr "сб" #. l10n: Minimal week day name -#: js/messages.php:148 +#: js/messages.php:160 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "нд" #. l10n: Minimal week day name -#: js/messages.php:150 +#: js/messages.php:162 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "пн" #. l10n: Minimal week day name -#: js/messages.php:152 +#: js/messages.php:164 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "вт" #. l10n: Minimal week day name -#: js/messages.php:154 +#: js/messages.php:166 #, fuzzy #| msgid "Wed" msgid "We" msgstr "ср" #. l10n: Minimal week day name -#: js/messages.php:156 +#: js/messages.php:168 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "чт" #. l10n: Minimal week day name -#: js/messages.php:158 +#: js/messages.php:170 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "пт" #. l10n: Minimal week day name -#: js/messages.php:160 +#: js/messages.php:172 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "сб" #. l10n: Column header for week of the year in calendar -#: js/messages.php:162 +#: js/messages.php:174 msgid "Wk" msgstr "" -#: js/messages.php:164 +#: js/messages.php:176 msgid "Hour" msgstr "" -#: js/messages.php:165 +#: js/messages.php:177 #, fuzzy #| msgid "in use" msgid "Minute" msgstr "Заето" -#: js/messages.php:166 +#: js/messages.php:178 #, fuzzy #| msgid "per second" msgid "Second" @@ -1361,7 +1404,7 @@ msgstr "Индекси" #: libraries/Index.class.php:444 libraries/mult_submits.inc.php:103 #: libraries/tbl_properties.inc.php:519 tbl_structure.php:33 -#: tbl_structure.php:155 tbl_structure.php:159 tbl_structure.php:474 +#: tbl_structure.php:155 tbl_structure.php:159 tbl_structure.php:472 #: tbl_tracking.php:322 msgid "Unique" msgstr "Уникално" @@ -1403,8 +1446,8 @@ msgid "" "removed." msgstr "" -#: libraries/List_Database.class.php:431 libraries/server_links.inc.php:41 -#: server_databases.php:88 server_privileges.php:1660 +#: libraries/List_Database.class.php:431 libraries/server_links.inc.php:42 +#: server_databases.php:88 server_privileges.php:1680 #: setup/lib/messages.inc.php:110 test/theme.php:93 msgid "Databases" msgstr "Бази от данни" @@ -1572,7 +1615,7 @@ msgstr "Парола:" msgid "Server Choice" msgstr "Избор на сървър" -#: libraries/auth/cookie.auth.lib.php:320 libraries/header.inc.php:59 +#: libraries/auth/cookie.auth.lib.php:320 libraries/header.inc.php:63 msgid "Cookies must be enabled past this point." msgstr "Оттук нататък са необходими \"Cookies\"." @@ -1654,7 +1697,7 @@ msgstr "" "докато протоколите за разширенията са заредени. Проверете конфигурацията на " "PHP." -#: libraries/common.inc.php:583 +#: libraries/common.inc.php:587 msgid "" "phpMyAdmin was unable to read your configuration file!
This might " "happen if PHP finds a parse error in it or PHP cannot find the file.
Ако се " "изведе празна страница, всички е наред." -#: libraries/common.inc.php:594 +#: libraries/common.inc.php:598 #, fuzzy, php-format #| msgid "Could not load default configuration from: \"%1$s\"" msgid "Could not load default configuration from: %1$s" msgstr "Конфигурацията по подразбиране не може да бъде заредена от: \"%1$s\"" -#: libraries/common.inc.php:599 +#: libraries/common.inc.php:603 msgid "" "The $cfg['PmaAbsoluteUri'] directive MUST be set in your " "configuration file!" @@ -1684,27 +1727,27 @@ msgstr "" "На $cfg['PmaAbsoluteUri'] ТРЯБВА да се зададе стойност в " "конфигурационния файл!" -#: libraries/common.inc.php:629 +#: libraries/common.inc.php:633 #, php-format msgid "Invalid server index: %s" msgstr "" -#: libraries/common.inc.php:636 +#: libraries/common.inc.php:640 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" -#: libraries/common.inc.php:645 libraries/header.inc.php:96 +#: libraries/common.inc.php:649 libraries/header.inc.php:100 #: libraries/select_server.lib.php:41 libraries/select_server.lib.php:47 #: main.php:185 test/theme.php:57 msgid "Server" msgstr "Сървър" -#: libraries/common.inc.php:823 +#: libraries/common.inc.php:827 msgid "Invalid authentication method set in configuration:" msgstr "" -#: libraries/common.inc.php:926 +#: libraries/common.inc.php:930 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Трябва да ъпгрейднете към %s %s или по-късно." @@ -1839,45 +1882,45 @@ msgstr "." msgid "%B %d, %Y at %I:%M %p" msgstr "%e %B %Y в %H:%M" -#: libraries/common.lib.php:1907 +#: libraries/common.lib.php:1911 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s дена, %s часа, %s минути и %s секунди" -#: libraries/common.lib.php:2322 libraries/common.lib.php:2325 +#: libraries/common.lib.php:2326 libraries/common.lib.php:2329 #: libraries/display_tbl.lib.php:290 server_status.php:719 msgid "Begin" msgstr "Начало" -#: libraries/common.lib.php:2323 libraries/common.lib.php:2326 +#: libraries/common.lib.php:2327 libraries/common.lib.php:2330 #: libraries/display_tbl.lib.php:291 server_binlog.php:168 #: server_binlog.php:170 msgid "Previous" msgstr "Предишен" -#: libraries/common.lib.php:2354 libraries/common.lib.php:2357 +#: libraries/common.lib.php:2358 libraries/common.lib.php:2361 #: libraries/display_tbl.lib.php:353 msgid "End" msgstr "Край" -#: libraries/common.lib.php:2430 +#: libraries/common.lib.php:2434 #, php-format msgid "Jump to database "%s"." msgstr "Скочи към база от данни "%s"." -#: libraries/common.lib.php:2450 +#: libraries/common.lib.php:2454 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" -#: libraries/common.lib.php:2830 libraries/common.lib.php:2837 +#: libraries/common.lib.php:2834 libraries/common.lib.php:2841 #: libraries/db_links.inc.php:68 libraries/export/sql.php:25 -#: libraries/import/sql.php:18 libraries/server_links.inc.php:45 +#: libraries/import/sql.php:18 libraries/server_links.inc.php:46 #: libraries/tbl_links.inc.php:60 querywindow.php:99 test/theme.php:97 msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2839 libraries/db_links.inc.php:104 +#: libraries/common.lib.php:2843 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,15 +1968,15 @@ msgstr "Запитване по пример" msgid "Designer" msgstr "" -#: libraries/db_links.inc.php:98 libraries/server_links.inc.php:88 +#: libraries/db_links.inc.php:98 libraries/server_links.inc.php:89 #: libraries/tbl_links.inc.php:91 pmd_pdf.php:84 pmd_pdf.php:110 #: setup/frames/menu.inc.php:21 msgid "Import" msgstr "Импортиране" -#: libraries/db_links.inc.php:111 libraries/server_links.inc.php:66 -#: server_privileges.php:111 server_privileges.php:1722 -#: server_privileges.php:2071 test/theme.php:117 +#: libraries/db_links.inc.php:111 libraries/server_links.inc.php:67 +#: server_privileges.php:112 server_privileges.php:1742 +#: server_privileges.php:2092 test/theme.php:117 msgid "Privileges" msgstr "Привилегии" @@ -1952,7 +1995,7 @@ msgid "" msgstr "Може да има приблизителна стойност. Виж FAQ 3.11" #: libraries/db_structure.lib.php:69 server_databases.php:142 -#: tbl_printview.php:336 tbl_structure.php:682 +#: tbl_printview.php:336 tbl_structure.php:680 msgid "Overhead" msgstr "Загубено място" @@ -1969,7 +2012,7 @@ msgstr "Няма отговор от сървъра" msgid "(or the local MySQL server's socket is not correctly configured)" msgstr "" -#: libraries/dbi/mysql.dbi.lib.php:362 tbl_structure.php:608 +#: libraries/dbi/mysql.dbi.lib.php:362 tbl_structure.php:606 msgid "Details..." msgstr "" @@ -1979,22 +2022,22 @@ msgid "Change password" msgstr "Смяна на паролата" #: libraries/display_change_password.lib.php:35 -#: libraries/replication_gui.lib.php:345 server_privileges.php:807 +#: libraries/replication_gui.lib.php:345 server_privileges.php:808 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:796 -#: server_privileges.php:800 server_privileges.php:811 -#: server_privileges.php:1538 server_synchronize.php:1175 +#: libraries/replication_gui.lib.php:349 server_privileges.php:797 +#: server_privileges.php:801 server_privileges.php:812 +#: server_privileges.php:1558 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:815 server_privileges.php:818 +#: server_privileges.php:816 server_privileges.php:819 msgid "Re-type" msgstr "Отново" @@ -2009,12 +2052,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:822 +#: libraries/replication_gui.lib.php:360 server_privileges.php:823 msgid "Generate Password" msgstr "Генериране на парола" #: libraries/display_change_password.lib.php:75 -#: libraries/replication_gui.lib.php:363 server_privileges.php:825 +#: libraries/replication_gui.lib.php:363 server_privileges.php:826 msgid "Generate" msgstr "Генериране" @@ -2027,8 +2070,8 @@ msgstr "Създаване на нова БД" msgid "Create" msgstr "Създай" -#: libraries/display_create_database.lib.php:40 server_privileges.php:113 -#: server_privileges.php:1427 server_replication.php:35 +#: libraries/display_create_database.lib.php:40 server_privileges.php:114 +#: server_privileges.php:1447 server_replication.php:35 msgid "No Privileges" msgstr "Няма привилегии" @@ -2113,7 +2156,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:1875 server_processlist.php:75 +#: server_privileges.php:1895 server_processlist.php:75 msgid "None" msgstr "Няма" @@ -2299,7 +2342,7 @@ msgstr "Сортиране по ключ" #: libraries/import/docsql.php:34 libraries/import/ldi.php:47 #: libraries/import/ods.php:30 libraries/import/sql.php:20 #: libraries/import/xls.php:26 libraries/import/xlsx.php:26 -#: libraries/import/xml.php:25 tbl_select.php:267 tbl_structure.php:753 +#: libraries/import/xml.php:25 tbl_select.php:267 tbl_structure.php:751 #, fuzzy msgid "Options" msgstr "Операции" @@ -2378,7 +2421,7 @@ msgstr "Заявката отне %01.4f секунди" #: libraries/display_tbl.lib.php:2089 libraries/mult_submits.inc.php:113 #: querywindow.php:125 querywindow.php:129 querywindow.php:132 -#: tbl_structure.php:25 tbl_structure.php:150 tbl_structure.php:470 +#: tbl_structure.php:25 tbl_structure.php:150 tbl_structure.php:468 msgid "Change" msgstr "Променяне" @@ -2445,7 +2488,7 @@ msgstr "" #: libraries/engines/innodb.lib.php:194 server_databases.php:137 #: server_databases.php:305 server_status.php:525 server_status.php:586 -#: server_status.php:607 tbl_printview.php:351 tbl_structure.php:696 +#: server_status.php:607 tbl_printview.php:351 tbl_structure.php:694 msgid "Total" msgstr "Общо" @@ -2693,7 +2736,7 @@ msgid "" msgstr "" #: libraries/export/codegen.php:37 setup/lib/messages.inc.php:88 -#: tbl_printview.php:376 tbl_structure.php:737 +#: tbl_printview.php:376 tbl_structure.php:735 msgid "Format" msgstr "Формат" @@ -2765,8 +2808,8 @@ 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:576 server_replication.php:316 tbl_printview.php:317 -#: tbl_structure.php:665 +#: server_privileges.php:577 server_replication.php:316 tbl_printview.php:317 +#: tbl_structure.php:663 msgid "Data" msgstr "Данни" @@ -2815,9 +2858,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:731 -#: server_privileges.php:734 server_privileges.php:790 -#: server_privileges.php:1537 server_privileges.php:2069 +#: libraries/replication_gui.lib.php:329 server_privileges.php:732 +#: server_privileges.php:735 server_privileges.php:791 +#: server_privileges.php:1557 server_privileges.php:2090 #: server_processlist.php:55 server_synchronize.php:1159 msgid "Host" msgstr "Хост" @@ -3015,7 +3058,7 @@ msgstr "" msgid "Open new phpMyAdmin window" msgstr "Отваряне на нов прозорец с phpMyAdmin" -#: libraries/header.inc.php:115 +#: libraries/header.inc.php:119 #, fuzzy msgid "New table" msgstr "Няма таблици" @@ -3177,20 +3220,20 @@ 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 +#: tbl_structure.php:471 msgid "Primary" msgstr "PRIMARY" #: libraries/mult_submits.inc.php:98 libraries/tbl_properties.inc.php:116 #: libraries/tbl_properties.inc.php:525 tbl_printview.php:326 #: tbl_structure.php:31 tbl_structure.php:154 tbl_structure.php:158 -#: tbl_structure.php:475 tbl_structure.php:673 +#: tbl_structure.php:473 tbl_structure.php:671 msgid "Index" msgstr "Индекс" #: libraries/mult_submits.inc.php:108 libraries/tbl_properties.inc.php:531 #: tbl_structure.php:35 tbl_structure.php:156 tbl_structure.php:160 -#: tbl_structure.php:478 +#: tbl_structure.php:476 msgid "Fulltext" msgstr "Пълнотекстово" @@ -3493,8 +3536,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:711 -#: server_privileges.php:714 server_privileges.php:721 +#: libraries/replication_gui.lib.php:259 server_privileges.php:712 +#: server_privileges.php:715 server_privileges.php:722 #: server_synchronize.php:1171 msgid "User name" msgstr "Потребителско име" @@ -3519,7 +3562,7 @@ msgstr "Променлива" #: 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 +#: tbl_structure.php:727 msgid "Value" msgstr "Стойност" @@ -3538,34 +3581,34 @@ msgstr "" msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:254 server_privileges.php:716 +#: libraries/replication_gui.lib.php:254 server_privileges.php:717 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:717 -#: server_privileges.php:784 server_privileges.php:808 -#: server_privileges.php:1928 server_privileges.php:1958 +#: libraries/replication_gui.lib.php:346 server_privileges.php:718 +#: server_privileges.php:785 server_privileges.php:809 +#: server_privileges.php:1948 server_privileges.php:1978 msgid "Use text field" msgstr "Използвай текстовото поле" -#: libraries/replication_gui.lib.php:302 server_privileges.php:764 +#: libraries/replication_gui.lib.php:302 server_privileges.php:765 msgid "Any host" msgstr "Всеки хост" -#: libraries/replication_gui.lib.php:306 server_privileges.php:768 +#: libraries/replication_gui.lib.php:306 server_privileges.php:769 msgid "Local" msgstr "Локален" -#: libraries/replication_gui.lib.php:312 server_privileges.php:773 +#: libraries/replication_gui.lib.php:312 server_privileges.php:774 msgid "This Host" msgstr "Този Хост" -#: libraries/replication_gui.lib.php:318 server_privileges.php:779 +#: libraries/replication_gui.lib.php:318 server_privileges.php:780 msgid "Use Host Table" msgstr "Използвай таблица Host" -#: libraries/replication_gui.lib.php:331 server_privileges.php:792 +#: libraries/replication_gui.lib.php:331 server_privileges.php:793 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -3599,30 +3642,30 @@ msgstr "" msgid "Servers" msgstr "Сървъри" -#: libraries/server_links.inc.php:53 server_engines.php:112 +#: libraries/server_links.inc.php:54 server_engines.php:112 #: server_engines.php:116 server_status.php:415 test/theme.php:105 msgid "Variables" msgstr "Променливи" -#: libraries/server_links.inc.php:57 test/theme.php:109 +#: libraries/server_links.inc.php:58 test/theme.php:109 msgid "Charsets" msgstr "Набори от знации" -#: libraries/server_links.inc.php:61 test/theme.php:113 +#: libraries/server_links.inc.php:62 test/theme.php:113 msgid "Engines" msgstr "Хранилища" -#: libraries/server_links.inc.php:76 server_binlog.php:110 +#: libraries/server_links.inc.php:77 server_binlog.php:110 #: server_status.php:364 test/theme.php:121 #, fuzzy msgid "Binary log" msgstr " Двоично " -#: libraries/server_links.inc.php:80 +#: libraries/server_links.inc.php:81 msgid "Processes" msgstr "Процеси" -#: libraries/server_links.inc.php:92 server_synchronize.php:1092 +#: libraries/server_links.inc.php:93 server_synchronize.php:1092 #: server_synchronize.php:1100 msgid "Synchronize" msgstr "Синхронизиране" @@ -3875,13 +3918,13 @@ msgstr "" msgid "Save" msgstr "Записване" -#: libraries/tbl_properties.inc.php:780 tbl_structure.php:542 +#: libraries/tbl_properties.inc.php:780 tbl_structure.php:540 #, fuzzy, php-format #| msgid "Add %s field(s)" msgid "Add %s column(s)" msgstr "Добавяне на %s поле(та)" -#: libraries/tbl_properties.inc.php:784 tbl_structure.php:536 +#: libraries/tbl_properties.inc.php:784 tbl_structure.php:534 #, fuzzy #| msgid "You have to add at least one field." msgid "You have to add at least one column." @@ -4074,8 +4117,8 @@ msgstr "Изчистване" msgid "Protocol version" msgstr "Версия на протокола" -#: main.php:189 server_privileges.php:1389 server_privileges.php:1536 -#: server_privileges.php:1650 server_privileges.php:2068 +#: main.php:189 server_privileges.php:1406 server_privileges.php:1556 +#: server_privileges.php:1670 server_privileges.php:2089 #: server_processlist.php:54 msgid "User" msgstr "Потребител" @@ -4511,118 +4554,118 @@ msgstr "Хранилища на данни" msgid "View dump (schema) of databases" msgstr "Преглед на схемата на базата от данни" -#: server_privileges.php:24 server_privileges.php:266 +#: server_privileges.php:25 server_privileges.php:267 msgid "Includes all privileges except GRANT." msgstr "Включва всички привилегии освен GRANT." -#: server_privileges.php:25 server_privileges.php:192 -#: server_privileges.php:515 +#: server_privileges.php:26 server_privileges.php:193 +#: server_privileges.php:516 msgid "Allows altering the structure of existing tables." msgstr "Позволява променяне на структурата на съществуващи таблици." -#: server_privileges.php:26 server_privileges.php:208 -#: server_privileges.php:521 +#: server_privileges.php:27 server_privileges.php:209 +#: server_privileges.php:522 msgid "Allows altering and dropping stored routines." msgstr "Позволяване на променяне и издриване на Съхранени Процедури." -#: server_privileges.php:27 server_privileges.php:184 -#: server_privileges.php:514 +#: server_privileges.php:28 server_privileges.php:185 +#: server_privileges.php:515 msgid "Allows creating new databases and tables." msgstr "Позволява създаване на нови бази от данни и таблици." -#: server_privileges.php:28 server_privileges.php:207 -#: server_privileges.php:520 +#: server_privileges.php:29 server_privileges.php:208 +#: server_privileges.php:521 msgid "Allows creating stored routines." msgstr "Позволяване на създаването на Съхранени Процедури." -#: server_privileges.php:29 server_privileges.php:514 +#: server_privileges.php:30 server_privileges.php:515 msgid "Allows creating new tables." msgstr "Позволява създаване на нови таблици." -#: server_privileges.php:30 server_privileges.php:195 -#: server_privileges.php:518 +#: server_privileges.php:31 server_privileges.php:196 +#: server_privileges.php:519 msgid "Allows creating temporary tables." msgstr "Позволява създаването на временни таблици." -#: server_privileges.php:31 server_privileges.php:209 -#: server_privileges.php:554 +#: server_privileges.php:32 server_privileges.php:210 +#: server_privileges.php:555 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 +#: server_privileges.php:33 server_privileges.php:200 +#: server_privileges.php:204 server_privileges.php:527 +#: server_privileges.php:531 msgid "Allows creating new views." msgstr "Позволяване на създаването на нови Изгледи." -#: server_privileges.php:33 server_privileges.php:183 -#: server_privileges.php:506 +#: server_privileges.php:34 server_privileges.php:184 +#: server_privileges.php:507 msgid "Allows deleting data." msgstr "Позволява изтриване на данни." -#: server_privileges.php:34 server_privileges.php:185 -#: server_privileges.php:517 +#: server_privileges.php:35 server_privileges.php:186 +#: server_privileges.php:518 msgid "Allows dropping databases and tables." msgstr "Позволява изтриване на бази от данни и таблици." -#: server_privileges.php:35 server_privileges.php:517 +#: server_privileges.php:36 server_privileges.php:518 msgid "Allows dropping tables." msgstr "Позволява изтриване на таблици." -#: server_privileges.php:36 server_privileges.php:200 -#: server_privileges.php:534 +#: server_privileges.php:37 server_privileges.php:201 +#: server_privileges.php:535 msgid "Allows to set up events for the event scheduler" msgstr "" -#: server_privileges.php:37 server_privileges.php:210 -#: server_privileges.php:522 +#: server_privileges.php:38 server_privileges.php:211 +#: server_privileges.php:523 msgid "Allows executing stored routines." msgstr "Позволяване на стартирането на Съхранени Процедури." -#: server_privileges.php:38 server_privileges.php:189 -#: server_privileges.php:509 +#: server_privileges.php:39 server_privileges.php:190 +#: server_privileges.php:510 msgid "Allows importing data from and exporting data into files." msgstr "Позволява импортиране на данни от и експортиране на данни във файлове." -#: server_privileges.php:39 server_privileges.php:540 +#: server_privileges.php:40 server_privileges.php:541 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "Позволява добавяне на потребители и привилегии без презареждане на таблицата " "с привилегиите." -#: server_privileges.php:40 server_privileges.php:191 -#: server_privileges.php:516 +#: server_privileges.php:41 server_privileges.php:192 +#: server_privileges.php:517 msgid "Allows creating and dropping indexes." msgstr "Позволява създаване и премахване на индекси." -#: server_privileges.php:41 server_privileges.php:181 -#: server_privileges.php:442 server_privileges.php:504 +#: server_privileges.php:42 server_privileges.php:182 +#: server_privileges.php:443 server_privileges.php:505 msgid "Allows inserting and replacing data." msgstr "Позволява вмъкване и заменяне на данни." -#: server_privileges.php:42 server_privileges.php:196 -#: server_privileges.php:549 +#: server_privileges.php:43 server_privileges.php:197 +#: server_privileges.php:550 msgid "Allows locking tables for the current thread." msgstr "Позволява заключване на таблици за текущата нишка." -#: server_privileges.php:43 server_privileges.php:646 -#: server_privileges.php:648 +#: server_privileges.php:44 server_privileges.php:647 +#: server_privileges.php:649 msgid "Limits the number of new connections the user may open per hour." msgstr "" "Ограничава броя на новите конекции, които потребителя може да отвори на час." -#: server_privileges.php:44 server_privileges.php:634 -#: server_privileges.php:636 +#: server_privileges.php:45 server_privileges.php:635 +#: server_privileges.php:637 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" "Ограничава броя на заявките, които потребителя може да изпрати към сървъра " "на час." -#: server_privileges.php:45 server_privileges.php:640 -#: server_privileges.php:642 +#: server_privileges.php:46 server_privileges.php:641 +#: server_privileges.php:643 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -4630,62 +4673,62 @@ msgstr "" "Ограничава броя на командите, които променят някоя таблица или база от " "данни, които даден потребител може да стартира за час." -#: server_privileges.php:46 server_privileges.php:652 -#: server_privileges.php:654 +#: server_privileges.php:47 server_privileges.php:653 +#: server_privileges.php:655 #, fuzzy msgid "Limits the number of simultaneous connections the user may have." msgstr "" "Ограничава броя на новите конекции, които потребителя може да отвори на час." -#: server_privileges.php:47 server_privileges.php:188 -#: server_privileges.php:544 +#: server_privileges.php:48 server_privileges.php:189 +#: server_privileges.php:545 msgid "Allows viewing processes of all users" msgstr "" -#: server_privileges.php:48 server_privileges.php:190 -#: server_privileges.php:448 server_privileges.php:550 +#: server_privileges.php:49 server_privileges.php:191 +#: server_privileges.php:449 server_privileges.php:551 msgid "Has no effect in this MySQL version." msgstr "Няма ефект в тази версия на MySQL." -#: server_privileges.php:49 server_privileges.php:186 -#: server_privileges.php:545 +#: server_privileges.php:50 server_privileges.php:187 +#: server_privileges.php:546 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" "Позволява презареждане на сървърните настройки и изчистване(flashing) на " "кеша на сървъра." -#: server_privileges.php:50 server_privileges.php:198 -#: server_privileges.php:552 +#: server_privileges.php:51 server_privileges.php:199 +#: server_privileges.php:553 msgid "Allows the user to ask where the slaves / masters are." msgstr "Дава правото на потребител да знае къде са slaves / masters." -#: server_privileges.php:51 server_privileges.php:197 -#: server_privileges.php:553 +#: server_privileges.php:52 server_privileges.php:198 +#: server_privileges.php:554 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 +#: server_privileges.php:53 server_privileges.php:181 +#: server_privileges.php:440 server_privileges.php:504 msgid "Allows reading data." msgstr "Позволява четене на данни." -#: server_privileges.php:53 server_privileges.php:193 -#: server_privileges.php:547 +#: server_privileges.php:54 server_privileges.php:194 +#: server_privileges.php:548 msgid "Gives access to the complete list of databases." msgstr "Дава достъп до пълния списък на базите данни." -#: server_privileges.php:54 server_privileges.php:204 -#: server_privileges.php:206 server_privileges.php:519 +#: server_privileges.php:55 server_privileges.php:205 +#: server_privileges.php:207 server_privileges.php:520 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Позволяване на изпълнението на SHOW CREATE VIEW заявки." -#: server_privileges.php:55 server_privileges.php:187 -#: server_privileges.php:546 +#: server_privileges.php:56 server_privileges.php:188 +#: server_privileges.php:547 msgid "Allows shutting down the server." msgstr "Позволява спиране на сървъра." -#: server_privileges.php:56 server_privileges.php:194 -#: server_privileges.php:543 +#: server_privileges.php:57 server_privileges.php:195 +#: server_privileges.php:544 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -4695,161 +4738,161 @@ msgstr "" "Изисква се за повечето административни операции, като установяване на " "глобални променливи или спиране на нишка на други потребители." -#: server_privileges.php:57 server_privileges.php:201 -#: server_privileges.php:535 +#: server_privileges.php:58 server_privileges.php:202 +#: server_privileges.php:536 #, fuzzy msgid "Allows creating and dropping triggers" msgstr "Позволява създаване и премахване на индекси." -#: server_privileges.php:58 server_privileges.php:182 -#: server_privileges.php:445 server_privileges.php:505 +#: server_privileges.php:59 server_privileges.php:183 +#: server_privileges.php:446 server_privileges.php:506 msgid "Allows changing data." msgstr "Позволява промяна на данни." -#: server_privileges.php:59 server_privileges.php:260 +#: server_privileges.php:60 server_privileges.php:261 msgid "No privileges." msgstr "Няма привилегии." -#: server_privileges.php:302 server_privileges.php:303 +#: server_privileges.php:303 server_privileges.php:304 #, fuzzy #| msgid "None" msgctxt "None privileges" msgid "None" msgstr "Няма" -#: server_privileges.php:431 server_privileges.php:566 -#: server_privileges.php:1718 server_privileges.php:1724 +#: server_privileges.php:432 server_privileges.php:567 +#: server_privileges.php:1738 server_privileges.php:1744 msgid "Table-specific privileges" msgstr "Привилегии специфични за таблицата" -#: server_privileges.php:432 server_privileges.php:574 -#: server_privileges.php:1540 +#: server_privileges.php:433 server_privileges.php:575 +#: server_privileges.php:1560 msgid " Note: MySQL privilege names are expressed in English " msgstr "" " Забележка: Имената на привилегиите на MySQL са показани на английски. " -#: server_privileges.php:563 server_privileges.php:1539 +#: server_privileges.php:564 server_privileges.php:1559 msgid "Global privileges" msgstr "Глобални привилегии" -#: server_privileges.php:565 server_privileges.php:1718 +#: server_privileges.php:566 server_privileges.php:1738 msgid "Database-specific privileges" msgstr "Привилегии специфични за базата от данни" -#: server_privileges.php:610 +#: server_privileges.php:611 msgid "Administration" msgstr "Администрация" -#: server_privileges.php:630 +#: server_privileges.php:631 msgid "Resource limits" msgstr "Ресурсни ограничения" -#: server_privileges.php:631 +#: server_privileges.php:632 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "" "Забележка: Установяването на тези опции с 0 (нула) премахва ограничението." -#: server_privileges.php:708 +#: server_privileges.php:709 msgid "Login Information" msgstr "Информация за логване" -#: server_privileges.php:802 +#: server_privileges.php:803 msgid "Do not change the password" msgstr "Да не се сменя паролата" -#: server_privileges.php:843 server_privileges.php:2205 +#: server_privileges.php:844 server_privileges.php:2226 #, fuzzy #| msgid "No user(s) found." msgid "No user found." msgstr "Няма потребител(и)." -#: server_privileges.php:887 +#: server_privileges.php:888 #, php-format msgid "The user %s already exists!" msgstr "Потребител %s вече съществува!" -#: server_privileges.php:970 +#: server_privileges.php:971 msgid "You have added a new user." msgstr "Вие добавихте нов потребител." -#: server_privileges.php:1191 +#: server_privileges.php:1196 #, php-format msgid "You have updated the privileges for %s." msgstr "Вие променихте привилегиите за %s." -#: server_privileges.php:1215 +#: server_privileges.php:1220 #, php-format msgid "You have revoked the privileges for %s" msgstr "Вие отменихте привилегиите за %s" -#: server_privileges.php:1251 +#: server_privileges.php:1256 #, php-format msgid "The password for %s was changed successfully." msgstr "Паролата на %s беше променена успешно." -#: server_privileges.php:1271 +#: server_privileges.php:1276 #, php-format msgid "Deleting %s" msgstr "Изтриване на %s" -#: server_privileges.php:1282 +#: server_privileges.php:1287 msgid "No users selected for deleting!" msgstr "Не за избрани потребители за изтриване!" -#: server_privileges.php:1285 +#: server_privileges.php:1290 msgid "Reloading the privileges" msgstr "Презареждане на привилегиите" -#: server_privileges.php:1300 +#: server_privileges.php:1305 msgid "The selected users have been deleted successfully." msgstr "Избраните потребители бяха изтрити успешно." -#: server_privileges.php:1335 +#: server_privileges.php:1344 msgid "The privileges were reloaded successfully." msgstr "Привилегиите бяха презаредени успешно." -#: server_privileges.php:1363 server_privileges.php:1649 +#: server_privileges.php:1380 server_privileges.php:1669 msgid "Edit Privileges" msgstr "Редактиране на привилегиите" -#: server_privileges.php:1372 +#: server_privileges.php:1389 msgid "Revoke" msgstr "Отменяне" -#: server_privileges.php:1404 +#: server_privileges.php:1424 msgid "User overview" msgstr "Преглед на потребителите" -#: server_privileges.php:1541 server_privileges.php:1723 -#: server_privileges.php:2072 +#: server_privileges.php:1561 server_privileges.php:1743 +#: server_privileges.php:2093 msgid "Grant" msgstr "Дадени" -#: server_privileges.php:1560 server_privileges.php:2162 +#: server_privileges.php:1580 server_privileges.php:2183 msgid "Any" msgstr "всеки" -#: server_privileges.php:1609 server_privileges.php:1633 -#: server_privileges.php:2027 server_privileges.php:2216 +#: server_privileges.php:1629 server_privileges.php:1653 +#: server_privileges.php:2048 server_privileges.php:2237 msgid "Add a new User" msgstr "Добавяне на нов потребител." -#: server_privileges.php:1614 +#: server_privileges.php:1634 msgid "Remove selected users" msgstr "Отстраняване на избраните потребители" -#: server_privileges.php:1617 +#: server_privileges.php:1637 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 +#: server_privileges.php:1638 server_privileges.php:1639 +#: server_privileges.php:1640 msgid "Drop the databases that have the same names as the users." msgstr "" "Изтриване на базите от данни които имат имена като тези на потребителите." -#: server_privileges.php:1636 +#: server_privileges.php:1656 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -4863,49 +4906,49 @@ msgstr "" "ръка. В този случай, трябва да %sпрезаредите привилегиите%s преди да " "продължите." -#: server_privileges.php:1684 +#: server_privileges.php:1704 msgid "The selected user was not found in the privilege table." msgstr "Избрания потребител не беше открит в таблицата с привилегиите." -#: server_privileges.php:1724 +#: server_privileges.php:1744 msgid "Column-specific privileges" msgstr "Привилегии специфични за колоната" -#: server_privileges.php:1925 +#: server_privileges.php:1945 msgid "Add privileges on the following database" msgstr "Добавяне на привилегии към следната база от данни" -#: server_privileges.php:1943 +#: server_privileges.php:1963 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" -#: server_privileges.php:1946 +#: server_privileges.php:1966 msgid "Add privileges on the following table" msgstr "Добавяне на привилегии към следната таблица" -#: server_privileges.php:2003 +#: server_privileges.php:2023 msgid "Change Login Information / Copy User" msgstr "Промяна на логин информацията / Копиране на потребител" -#: server_privileges.php:2006 +#: server_privileges.php:2026 msgid "Create a new user with the same privileges and ..." msgstr "Създаване нов потребител със същите привилегии и ..." -#: server_privileges.php:2008 +#: server_privileges.php:2028 msgid "... keep the old one." msgstr "... запазване на стария." -#: server_privileges.php:2009 +#: server_privileges.php:2029 msgid " ... delete the old one from the user tables." msgstr " ... изтриване на стария от таблицата на потребителите." -#: server_privileges.php:2010 +#: server_privileges.php:2030 msgid "" " ... revoke all active privileges from the old one and delete it afterwards." msgstr "" " ... отменяне на всички активни привилегии от стария и след това изтриване." -#: server_privileges.php:2011 +#: server_privileges.php:2031 msgid "" " ... delete the old one from the user tables and reload the privileges " "afterwards." @@ -4913,44 +4956,44 @@ msgstr "" " ... изтриване на стария от таблицата на потребителите и след това " "презареждане на привилегиите." -#: server_privileges.php:2033 +#: server_privileges.php:2054 msgid "Database for user" msgstr "База от данни за потребителя" -#: server_privileges.php:2037 +#: server_privileges.php:2058 #, fuzzy #| msgid "None" msgctxt "Create none database for user" msgid "None" msgstr "Няма" -#: server_privileges.php:2038 +#: server_privileges.php:2059 msgid "Create database with same name and grant all privileges" msgstr "Създаване на база от данни със същото име и даване на пълни привилегии" -#: server_privileges.php:2039 +#: server_privileges.php:2060 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "" -#: server_privileges.php:2042 +#: server_privileges.php:2063 #, php-format msgid "Grant all privileges on database "%s"" msgstr "Даване на пълни привилегии над база от данни "%s"." -#: server_privileges.php:2065 +#: server_privileges.php:2086 #, php-format msgid "Users having access to "%s"" msgstr "Потребители които имат достъп до "%s"" -#: server_privileges.php:2173 +#: server_privileges.php:2194 msgid "global" msgstr "глобален" -#: server_privileges.php:2175 +#: server_privileges.php:2196 msgid "database-specific" msgstr "специфични за базата от данни" -#: server_privileges.php:2177 +#: server_privileges.php:2198 msgid "wildcard" msgstr "знак за заместване" @@ -7656,6 +7699,10 @@ msgstr "" msgid "Show insert query" msgstr "" +#: tbl_change.php:1143 +msgid "and then" +msgstr "и след това" + #: tbl_change.php:1147 msgid "Go back to previous page" msgstr "връщане обратно" @@ -7738,7 +7785,7 @@ msgstr "" msgid "Add to index  %s column(s)" msgstr "  %s колона(и) беше(яха)добавени към индекса " -#: tbl_indexes.php:256 tbl_structure.php:589 tbl_structure.php:600 +#: tbl_indexes.php:256 tbl_structure.php:587 tbl_structure.php:598 msgid "Column count has to be larger than zero." msgstr "Броя на колоните трябва да е по-голям от нула." @@ -7855,39 +7902,39 @@ msgstr "Проверка на интегритета на връзките" msgid "Show tables" msgstr "Покажи таблиците" -#: tbl_printview.php:310 tbl_structure.php:656 +#: tbl_printview.php:310 tbl_structure.php:654 msgid "Space usage" msgstr "Използвано място" -#: tbl_printview.php:314 tbl_structure.php:660 +#: tbl_printview.php:314 tbl_structure.php:658 msgid "Usage" msgstr "Използвани" -#: tbl_printview.php:341 tbl_structure.php:687 +#: tbl_printview.php:341 tbl_structure.php:685 msgid "Effective" msgstr "Ефективни" -#: tbl_printview.php:366 tbl_structure.php:725 +#: tbl_printview.php:366 tbl_structure.php:723 msgid "Row Statistics" msgstr "Статистика за редовете" -#: tbl_printview.php:369 tbl_structure.php:728 +#: tbl_printview.php:369 tbl_structure.php:726 msgid "Statements" msgstr "Заявление" -#: tbl_printview.php:380 tbl_structure.php:740 +#: tbl_printview.php:380 tbl_structure.php:738 msgid "static" msgstr "" -#: tbl_printview.php:382 tbl_structure.php:742 +#: tbl_printview.php:382 tbl_structure.php:740 msgid "dynamic" msgstr "динамичен" -#: tbl_printview.php:404 tbl_structure.php:785 +#: tbl_printview.php:404 tbl_structure.php:783 msgid "Row length" msgstr "Дължина на реда" -#: tbl_printview.php:414 tbl_structure.php:793 +#: tbl_printview.php:414 tbl_structure.php:791 msgid " Row size " msgstr " Размер на ред " @@ -7960,50 +8007,50 @@ msgstr "Няма" msgid "Column %s has been dropped" msgstr "Таблицата %s беше изтрита" -#: tbl_structure.php:385 +#: tbl_structure.php:384 #, php-format msgid "A primary key has been added on %s" msgstr "Беше добавен първичен ключ към %s" -#: tbl_structure.php:400 tbl_structure.php:414 tbl_structure.php:428 +#: tbl_structure.php:398 tbl_structure.php:412 tbl_structure.php:426 #, php-format msgid "An index has been added on %s" msgstr "Беше добавен индекс на %s" -#: tbl_structure.php:506 tbl_structure.php:508 +#: tbl_structure.php:504 tbl_structure.php:506 msgid "Relation view" msgstr "Преглед на релациите" -#: tbl_structure.php:515 tbl_structure.php:517 +#: tbl_structure.php:513 tbl_structure.php:515 msgid "Propose table structure" msgstr "Анализ на таблицата" -#: tbl_structure.php:540 +#: tbl_structure.php:538 #, fuzzy #| msgid "Add %s field(s)" msgid "Add column" msgstr "Добавяне на %s поле(та)" -#: tbl_structure.php:554 +#: tbl_structure.php:552 msgid "At End of Table" msgstr "в края на таблицата" -#: tbl_structure.php:555 +#: tbl_structure.php:553 msgid "At Beginning of Table" msgstr "в началото на таблицата" -#: tbl_structure.php:556 +#: tbl_structure.php:554 #, php-format msgid "After %s" msgstr "след %s" -#: tbl_structure.php:594 +#: tbl_structure.php:592 #, fuzzy, php-format #| msgid "Create an index on %s columns" msgid "Create an index on  %s columns" msgstr "Създаване на индекс върху  %s колони" -#: tbl_structure.php:756 +#: tbl_structure.php:754 msgid "partitioned" msgstr "" diff --git a/po/bn.po b/po/bn.po index c16cd6e05..2d2db1ca0 100755 --- a/po/bn.po +++ b/po/bn.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-06-13 09:03-0400\n" +"POT-Creation-Date: 2010-06-22 00:55+0530\n" "PO-Revision-Date: 2010-03-12 09:11+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: bangla \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:1514 +#: libraries/display_tbl.lib.php:417 server_privileges.php:1534 msgid "Show all" msgstr "Show all" -#: browse_foreigners.php:82 libraries/common.lib.php:2313 +#: browse_foreigners.php:82 libraries/common.lib.php:2317 #: 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,18 +37,18 @@ 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:2831 -#: libraries/common.lib.php:2838 libraries/db_links.inc.php:75 +#: db_structure.php:106 libraries/common.lib.php:2835 +#: libraries/common.lib.php:2842 libraries/db_links.inc.php:75 #: libraries/tbl_links.inc.php:63 msgid "Search" msgstr "খুঁজুন" -#: browse_foreigners.php:153 db_operations.php:385 db_operations.php:429 -#: db_operations.php:499 db_operations.php:609 db_search.php:362 -#: db_structure.php:567 js/messages.php:48 libraries/Config.class.php:1046 +#: browse_foreigners.php:153 db_operations.php:394 db_operations.php:438 +#: db_operations.php:508 db_operations.php:618 db_search.php:362 +#: db_structure.php:565 js/messages.php:53 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:1335 libraries/common.lib.php:2288 +#: libraries/common.lib.php:1335 libraries/common.lib.php:2292 #: 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,15 +59,15 @@ 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:664 server_privileges.php:1624 -#: server_privileges.php:1971 server_privileges.php:2018 -#: server_privileges.php:2057 server_replication.php:235 +#: server_privileges.php:665 server_privileges.php:1644 +#: server_privileges.php:1991 server_privileges.php:2038 +#: server_privileges.php:2078 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 #: tbl_operations.php:302 tbl_operations.php:499 tbl_operations.php:561 -#: tbl_operations.php:681 tbl_select.php:327 tbl_structure.php:562 -#: tbl_structure.php:597 tbl_tracking.php:395 tbl_tracking.php:512 +#: tbl_operations.php:681 tbl_select.php:327 tbl_structure.php:560 +#: tbl_structure.php:595 tbl_tracking.php:395 tbl_tracking.php:512 #: view_create.php:182 view_operations.php:101 msgid "Go" msgstr "Go" @@ -93,7 +93,7 @@ msgstr "Use this value" msgid "Database %1$s has been created." msgstr "%s ডাটাবেজ মুছে ফেলা হয়েছে" -#: db_datadict.php:49 db_operations.php:378 +#: db_datadict.php:49 db_operations.php:387 msgid "Database comment: " msgstr "ডাটাবেজ মন্তব্যসমূহঃ" @@ -120,10 +120,10 @@ 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:2070 +#: pdf_schema.php:1263 pdf_schema.php:1284 server_privileges.php:2091 #: 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 +#: tbl_structure.php:657 tbl_tracking.php:274 tbl_tracking.php:321 msgid "Type" msgstr "Type" @@ -136,7 +136,7 @@ msgstr "Type" msgid "Null" msgstr "খালি" -#: db_datadict.php:178 db_structure.php:501 libraries/export/htmlword.php:247 +#: db_datadict.php:178 db_structure.php:499 libraries/export/htmlword.php:247 #: libraries/export/latex.php:360 libraries/export/odt.php:303 #: libraries/export/texytext.php:236 libraries/tbl_properties.inc.php:106 #: pdf_schema.php:1266 pdf_schema.php:1287 tbl_printview.php:146 @@ -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: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 +#: pdf_schema.php:1344 server_privileges.php:1588 server_privileges.php:1599 +#: server_privileges.php:1909 server_privileges.php:1914 +#: server_privileges.php:2208 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:1565 -#: server_privileges.php:1579 server_privileges.php:1889 -#: server_privileges.php:1892 server_privileges.php:2187 sql.php:193 +#: server_databases.php:64 server_privileges.php:1585 +#: server_privileges.php:1599 server_privileges.php:1909 +#: server_privileges.php:1912 server_privileges.php:2208 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" @@ -209,126 +209,122 @@ msgstr "সব সিলেক্ট করুন" msgid "Unselect All" msgstr "Unselect All" -#: db_operations.php:38 tbl_create.php:54 +#: db_operations.php:43 tbl_create.php:54 msgid "The database name is empty!" msgstr "ডাটাবেজ এর নাম দেওয়া হয়নি" -#: db_operations.php:236 +#: db_operations.php:241 #, php-format msgid "Database %s has been renamed to %s" msgstr "Database %s has been renamed to %s" -#: db_operations.php:240 +#: db_operations.php:245 #, php-format msgid "Database %s has been copied to %s" msgstr "%s ডাটাবেজ় %s তে কপি করা হয়েছে" -#: db_operations.php:412 +#: db_operations.php:421 msgid "Rename database to" msgstr "ডাটাবেজ রিনেম কর" -#: db_operations.php:417 server_processlist.php:57 +#: db_operations.php:426 server_processlist.php:57 msgid "Command" msgstr "নির্দেশ" -#: db_operations.php:429 tbl_change.php:1143 -msgid "and then" -msgstr "এবং তারপর" - -#: db_operations.php:455 +#: db_operations.php:464 msgid "Copy database to" msgstr "ডাটাবেজ কপি করঃ" -#: db_operations.php:462 tbl_operations.php:528 tbl_tracking.php:388 +#: db_operations.php:471 tbl_operations.php:528 tbl_tracking.php:388 msgid "Structure only" msgstr "Structure only" -#: db_operations.php:463 tbl_operations.php:529 tbl_tracking.php:390 +#: db_operations.php:472 tbl_operations.php:529 tbl_tracking.php:390 msgid "Structure and data" msgstr "Structure and data" -#: db_operations.php:464 tbl_operations.php:530 tbl_tracking.php:389 +#: db_operations.php:473 tbl_operations.php:530 tbl_tracking.php:389 msgid "Data only" msgstr "শুধু ডাটা" -#: db_operations.php:472 +#: db_operations.php:481 msgid "CREATE DATABASE before copying" msgstr "কপি করার আগে ডাটাবেজ় তৈরী কর" -#: db_operations.php:475 libraries/export/sql.php:52 +#: db_operations.php:484 libraries/export/sql.php:52 #: libraries/export/sql.php:74 libraries/export/sql.php:76 #: libraries/export/sql.php:82 tbl_operations.php:536 #, php-format msgid "Add %s" msgstr "Add %s" -#: db_operations.php:479 libraries/export/sql.php:78 tbl_operations.php:299 +#: db_operations.php:488 libraries/export/sql.php:78 tbl_operations.php:299 #: tbl_operations.php:538 msgid "Add AUTO_INCREMENT value" msgstr "Add AUTO_INCREMENT value" -#: db_operations.php:483 tbl_operations.php:545 +#: db_operations.php:492 tbl_operations.php:545 msgid "Add constraints" msgstr "Add constraints" -#: db_operations.php:496 +#: db_operations.php:505 msgid "Switch to copied database" msgstr "Switch to copied database" -#: db_operations.php:537 +#: db_operations.php:546 msgid "BLOB Repository" msgstr "" -#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1352 -#: libraries/server_links.inc.php:49 server_processlist.php:59 +#: db_operations.php:549 db_tracking.php:76 libraries/common.lib.php:1352 +#: libraries/server_links.inc.php:50 server_processlist.php:59 #: tbl_tracking.php:596 test/theme.php:101 msgid "Status" msgstr "অবস্থা" -#: db_operations.php:548 +#: db_operations.php:557 #, fuzzy #| msgid "Enabled" msgctxt "BLOB repository" msgid "Enabled" msgstr "Enabled" -#: db_operations.php:552 +#: db_operations.php:561 #, fuzzy msgid "Disable" msgstr "বন্ধ করা হয়েছে" -#: db_operations.php:562 +#: db_operations.php:571 msgid "Damaged" msgstr "" -#: db_operations.php:566 +#: db_operations.php:575 #, fuzzy msgctxt "BLOB repository" msgid "Repair" msgstr "টেবিল রিপেয়ার করুন" -#: db_operations.php:574 +#: db_operations.php:583 #, fuzzy #| msgid "Disabled" msgctxt "BLOB repository" msgid "Disabled" msgstr "বন্ধ করা হয়েছে" -#: db_operations.php:578 +#: db_operations.php:587 #, fuzzy msgid "Enable" msgstr "Enabled" -#: db_operations.php:602 libraries/Index.class.php:448 +#: db_operations.php:611 libraries/Index.class.php:448 #: libraries/db_structure.lib.php:62 libraries/mysql_charsets.lib.php:107 #: libraries/tbl_properties.inc.php:107 libraries/tbl_properties.inc.php:730 #: server_collations.php:54 server_collations.php:66 server_databases.php:111 #: tbl_operations.php:363 tbl_select.php:137 tbl_structure.php:179 -#: tbl_structure.php:767 tbl_tracking.php:275 tbl_tracking.php:326 +#: tbl_structure.php:765 tbl_tracking.php:275 tbl_tracking.php:326 msgid "Collation" msgstr "Collation" -#: db_operations.php:615 main.php:316 pdf_schema.php:34 +#: db_operations.php:624 main.php:316 pdf_schema.php:34 #, php-format msgid "" "The additional features for working with linked tables have been " @@ -337,14 +333,14 @@ msgstr "" "The additional features for working with linked tables have been " "deactivated. To find out why click %shere%s." -#: db_operations.php:648 +#: db_operations.php:657 msgid "Edit PDF Pages" 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:1665 -#: server_privileges.php:1721 server_privileges.php:1985 +#: libraries/header.inc.php:130 pdf_pages.php:424 server_privileges.php:1685 +#: server_privileges.php:1741 server_privileges.php:2005 #: server_synchronize.php:423 server_synchronize.php:866 tbl_tracking.php:592 #: test/theme.php:75 msgid "Table" @@ -353,7 +349,7 @@ msgstr "টেবিল" #: db_printview.php:105 libraries/db_structure.lib.php:56 #: libraries/header_printview.inc.php:63 libraries/import.lib.php:146 #: navigation.php:638 navigation.php:660 server_databases.php:122 -#: tbl_printview.php:394 tbl_structure.php:365 tbl_structure.php:777 +#: tbl_printview.php:394 tbl_structure.php:365 tbl_structure.php:775 msgid "Rows" msgstr "Rows" @@ -361,30 +357,30 @@ msgstr "Rows" msgid "Size" msgstr "আকার" -#: db_printview.php:162 db_structure.php:457 libraries/export/sql.php:559 +#: db_printview.php:162 db_structure.php:455 libraries/export/sql.php:559 #: libraries/export/sql.php:899 msgid "in use" msgstr "in use" #: db_printview.php:187 libraries/db_info.inc.php:88 #: libraries/export/sql.php:514 pdf_schema.php:1241 tbl_printview.php:434 -#: tbl_structure.php:809 +#: tbl_structure.php:807 msgid "Creation" msgstr "Creation" #: db_printview.php:196 libraries/db_info.inc.php:93 #: libraries/export/sql.php:519 pdf_schema.php:1246 tbl_printview.php:444 -#: tbl_structure.php:817 +#: tbl_structure.php:815 msgid "Last update" msgstr "সর্বশেষ আপডেট" #: db_printview.php:205 libraries/db_info.inc.php:98 #: libraries/export/sql.php:524 pdf_schema.php:1251 tbl_printview.php:454 -#: tbl_structure.php:825 +#: tbl_structure.php:823 msgid "Last check" msgstr "Last check" -#: db_printview.php:222 db_structure.php:480 +#: db_printview.php:222 db_structure.php:478 #, fuzzy, php-format #| msgid "%s table(s)" msgid "%s table" @@ -445,7 +441,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:297 tbl_change.php:1031 tbl_indexes.php:250 +#: server_privileges.php:298 tbl_change.php:1031 tbl_indexes.php:250 #: tbl_select.php:288 msgid "Or" msgstr "অথবা" @@ -518,9 +514,9 @@ 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:2833 +#: db_structure.php:105 libraries/common.lib.php:2837 #: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50 -#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:467 +#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:465 msgid "Browse" msgstr "ব্রাউজ করুন" @@ -565,36 +561,36 @@ msgstr "Inside table(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:2832 libraries/sql_query_form.lib.php:334 +#: libraries/common.lib.php:2836 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:2829 libraries/common.lib.php:2836 +#: libraries/common.lib.php:2833 libraries/common.lib.php:2840 #: 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:1106 #: libraries/tbl_links.inc.php:56 pmd_general.php:134 -#: server_privileges.php:593 server_replication.php:315 tbl_tracking.php:269 +#: server_privileges.php:594 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:1656 +#: db_structure.php:543 db_structure.php:544 db_tracking.php:91 +#: libraries/Index.class.php:483 libraries/common.lib.php:1657 #: 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 -#: tbl_structure.php:152 tbl_structure.php:471 +#: tbl_structure.php:152 tbl_structure.php:469 msgid "Drop" 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:1655 +#: db_structure.php:541 db_structure.php:542 libraries/common.lib.php:1656 #: libraries/mult_submits.inc.php:39 libraries/tbl_links.inc.php:105 msgid "Empty" msgstr "খালি" @@ -604,111 +600,111 @@ msgstr "খালি" msgid "Table %s has been emptied" msgstr "Table %s has been emptied" -#: db_structure.php:326 libraries/tbl_links.inc.php:133 +#: db_structure.php:325 libraries/tbl_links.inc.php:133 #, php-format msgid "View %s has been dropped" msgstr "View %s has been dropped" -#: db_structure.php:326 libraries/tbl_links.inc.php:133 +#: db_structure.php:325 libraries/tbl_links.inc.php:133 #, php-format msgid "Table %s has been dropped" msgstr "Table %s has been dropped" -#: db_structure.php:333 +#: db_structure.php:332 msgid "Tracking is active." msgstr "" -#: db_structure.php:335 +#: db_structure.php:334 msgid "Tracking is not active." msgstr "" -#: db_structure.php:420 libraries/display_tbl.lib.php:1944 +#: db_structure.php:418 libraries/display_tbl.lib.php:1944 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation%" "s." msgstr "" -#: db_structure.php:434 db_structure.php:448 libraries/header.inc.php:126 +#: db_structure.php:432 db_structure.php:446 libraries/header.inc.php:130 #: libraries/tbl_info.inc.php:66 tbl_structure.php:185 test/theme.php:74 msgid "View" msgstr "View" -#: db_structure.php:485 libraries/db_structure.lib.php:49 -#: libraries/server_links.inc.php:70 server_replication.php:33 +#: db_structure.php:483 libraries/db_structure.lib.php:49 +#: libraries/server_links.inc.php:71 server_replication.php:33 #: server_replication.php:164 server_status.php:369 msgid "Replication" msgstr "Replication" -#: db_structure.php:489 +#: db_structure.php:487 msgid "Sum" msgstr "যোগফল" -#: db_structure.php:496 libraries/StorageEngine.class.php:356 +#: db_structure.php:494 libraries/StorageEngine.class.php:356 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "%s MySQL সার্ভার এর ডিফল্ট ষ্টোরেজ ইঞ্জিন" -#: db_structure.php:524 db_structure.php:541 db_structure.php:542 +#: db_structure.php:522 db_structure.php:539 db_structure.php:540 #: 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:1596 tbl_structure.php:455 -#: tbl_structure.php:464 +#: server_databases.php:351 server_privileges.php:1616 tbl_structure.php:453 +#: tbl_structure.php:462 msgid "With selected:" msgstr "With selected:" -#: db_structure.php:527 libraries/display_tbl.lib.php:2076 -#: server_databases.php:348 server_privileges.php:569 -#: server_privileges.php:1599 tbl_structure.php:458 +#: db_structure.php:525 libraries/display_tbl.lib.php:2076 +#: server_databases.php:348 server_privileges.php:570 +#: server_privileges.php:1619 tbl_structure.php:456 msgid "Check All" msgstr "সব পরীক্ষা করুন" -#: db_structure.php:531 libraries/display_tbl.lib.php:2077 +#: db_structure.php:529 libraries/display_tbl.lib.php:2077 #: libraries/replication_gui.lib.php:33 server_databases.php:350 -#: server_privileges.php:572 server_privileges.php:1603 tbl_structure.php:462 +#: server_privileges.php:573 server_privileges.php:1623 tbl_structure.php:460 msgid "Uncheck All" msgstr "Uncheck All" -#: db_structure.php:536 +#: db_structure.php:534 msgid "Check tables having overhead" msgstr "ওভারহেড সহ টেবিল পরীক্ষা কর" -#: db_structure.php:547 db_structure.php:548 db_structure.php:599 +#: db_structure.php:545 db_structure.php:546 db_structure.php:597 #: libraries/display_tbl.lib.php:2180 libraries/mult_submits.inc.php:28 -#: tbl_structure.php:492 tbl_structure.php:494 +#: tbl_structure.php:490 tbl_structure.php:492 msgid "Print view" msgstr "Print view" -#: db_structure.php:549 db_structure.php:550 libraries/mult_submits.inc.php:42 +#: db_structure.php:547 db_structure.php:548 libraries/mult_submits.inc.php:42 #: tbl_operations.php:581 msgid "Check table" msgstr "টেবিল পরীক্ষা কর" -#: db_structure.php:551 db_structure.php:552 libraries/mult_submits.inc.php:47 -#: tbl_operations.php:621 tbl_structure.php:709 tbl_structure.php:711 +#: db_structure.php:549 db_structure.php:550 libraries/mult_submits.inc.php:47 +#: tbl_operations.php:621 tbl_structure.php:707 tbl_structure.php:709 msgid "Optimize table" msgstr "টেবিল অপটিমাইজ করুন" -#: db_structure.php:553 db_structure.php:554 libraries/mult_submits.inc.php:52 +#: db_structure.php:551 db_structure.php:552 libraries/mult_submits.inc.php:52 #: tbl_operations.php:611 msgid "Repair table" msgstr "টেবিল রিপেয়ার করুন" -#: db_structure.php:555 db_structure.php:556 libraries/mult_submits.inc.php:57 +#: db_structure.php:553 db_structure.php:554 libraries/mult_submits.inc.php:57 #: tbl_operations.php:601 msgid "Analyze table" msgstr "টেবিল বিশ্লেষণ কর" -#: db_structure.php:557 db_structure.php:558 libraries/db_links.inc.php:71 +#: db_structure.php:555 db_structure.php:556 libraries/db_links.inc.php:71 #: 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:1380 +#: libraries/server_links.inc.php:85 libraries/tbl_links.inc.php:82 +#: pmd_pdf.php:84 pmd_pdf.php:109 server_privileges.php:1397 #: setup/frames/menu.inc.php:22 tbl_row_action.php:59 msgid "Export" msgstr "Export" -#: db_structure.php:606 libraries/display_pdf_schema.lib.php:44 +#: db_structure.php:604 libraries/display_pdf_schema.lib.php:44 msgid "Data Dictionary" msgstr "ডাটা অভিধান" @@ -720,10 +716,10 @@ msgstr "টেবিল পরীক্ষা কর" #: db_tracking.php:71 libraries/export/htmlword.php:86 #: libraries/export/latex.php:148 libraries/export/odt.php:113 #: libraries/export/sql.php:342 libraries/export/texytext.php:84 -#: libraries/export/xml.php:255 libraries/header.inc.php:106 +#: libraries/export/xml.php:255 libraries/header.inc.php:110 #: libraries/header_printview.inc.php:58 server_databases.php:169 -#: server_privileges.php:1660 server_privileges.php:1721 -#: server_privileges.php:1979 server_processlist.php:56 +#: server_privileges.php:1680 server_privileges.php:1741 +#: server_privileges.php:1999 server_processlist.php:56 #: server_synchronize.php:1179 server_synchronize.php:1183 #: tbl_tracking.php:591 test/theme.php:65 msgid "Database" @@ -745,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:1542 server_privileges.php:1725 -#: server_privileges.php:2073 tbl_structure.php:187 +#: server_privileges.php:1562 server_privileges.php:1745 +#: server_privileges.php:2094 tbl_structure.php:187 msgid "Action" msgstr "Action" @@ -783,8 +779,8 @@ msgstr "Structure only" msgid "Untracked tables" msgstr "টেবিল পরীক্ষা কর" -#: db_tracking.php:172 db_tracking.php:174 tbl_structure.php:528 -#: tbl_structure.php:530 +#: db_tracking.php:172 db_tracking.php:174 tbl_structure.php:526 +#: tbl_structure.php:528 #, fuzzy msgid "Track table" msgstr "টেবিল পরীক্ষা কর" @@ -950,188 +946,235 @@ msgstr "হোষ্ট নাম পূরন করা হয়নি" msgid "The user name is empty!" msgstr "The user name is empty!" -#: js/messages.php:44 server_privileges.php:1236 user_password.php:70 +#: js/messages.php:44 server_privileges.php:1241 user_password.php:70 msgid "The password is empty!" msgstr "পাসওয়ার্ড দেওয়া হয়নি" -#: js/messages.php:45 server_privileges.php:1234 user_password.php:73 +#: js/messages.php:45 server_privileges.php:1239 user_password.php:73 msgid "The passwords aren't the same!" msgstr "The passwords aren't the same!" -#: js/messages.php:49 pmd_general.php:342 pmd_general.php:379 +#: js/messages.php:46 +#, fuzzy +#| msgid "Add a new User" +msgid "Add a New User" +msgstr "একটি নতুন ইউজার যোগ করুন" + +#: js/messages.php:47 js/messages.php:54 pmd_general.php:342 +#: pmd_general.php:379 msgid "Cancel" msgstr "" -#: js/messages.php:52 pmd_save_pos.php:54 +#: js/messages.php:48 +#, fuzzy +msgid "Create User" +msgstr "Server version" + +#: js/messages.php:49 +#, fuzzy +#| msgid "Reload privileges" +msgid "Reloading Privileges" +msgstr "Reload privileges" + +#: js/messages.php:50 +#, fuzzy +#| msgid "Remove selected users" +msgid "Removing Selected Users" +msgstr "Remove selected users" + +#: js/messages.php:57 +#, fuzzy +msgid "Loading" +msgstr "লোকাল" + +#: js/messages.php:58 +#, fuzzy +#| msgid "Processes" +msgid "Processing Request" +msgstr "Processes" + +#: js/messages.php:59 +msgid "Error in Processing Request" +msgstr "" + +#: js/messages.php:60 +msgid "Dropping Column" +msgstr "" + +#: js/messages.php:61 +msgid "Adding Primary Key" +msgstr "" + +#: js/messages.php:64 pmd_save_pos.php:54 msgid "Modifications have been saved" msgstr "Modifications have been saved" -#: js/messages.php:53 pmd_relation_upd.php:49 +#: js/messages.php:65 pmd_relation_upd.php:49 #, fuzzy msgid "Relation deleted" msgstr "Relation view" -#: js/messages.php:54 pmd_relation_new.php:64 +#: js/messages.php:66 pmd_relation_new.php:64 msgid "FOREIGN KEY relation added" msgstr "" -#: js/messages.php:55 pmd_relation_new.php:86 +#: js/messages.php:67 pmd_relation_new.php:86 #, fuzzy msgid "Internal relation added" msgstr "Internal relations" -#: js/messages.php:56 pmd_relation_new.php:63 pmd_relation_new.php:88 +#: js/messages.php:68 pmd_relation_new.php:63 pmd_relation_new.php:88 msgid "Error: Relation not added." msgstr "" -#: js/messages.php:57 pmd_relation_new.php:31 +#: js/messages.php:69 pmd_relation_new.php:31 msgid "Error: relation already exists." msgstr "" -#: js/messages.php:58 +#: js/messages.php:70 msgid "Error saving coordinates for Designer." msgstr "" -#: js/messages.php:59 libraries/relation.lib.php:107 +#: js/messages.php:71 libraries/relation.lib.php:107 #: libraries/relation.lib.php:119 msgid "General relation features" msgstr "General relation features" -#: js/messages.php:59 libraries/relation.lib.php:101 +#: js/messages.php:71 libraries/relation.lib.php:101 #: libraries/relation.lib.php:108 msgid "Disabled" msgstr "বন্ধ করা হয়েছে" -#: js/messages.php:60 +#: js/messages.php:72 msgid "Select referenced key" msgstr "" -#: js/messages.php:61 +#: js/messages.php:73 msgid "Select Foreign Key" msgstr "" -#: js/messages.php:62 +#: js/messages.php:74 msgid "Please select the primary key or a unique key" msgstr "" -#: js/messages.php:63 pmd_general.php:77 tbl_relation.php:548 +#: js/messages.php:75 pmd_general.php:77 tbl_relation.php:548 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" msgstr "প্রদর্শনের জন্য ক্ষেত্র পছন্দ কর" #. l10n: Display text for calendar close link -#: js/messages.php:73 +#: js/messages.php:85 #, fuzzy msgid "Done" msgstr "ডাটা" #. l10n: Display text for previous month link in calendar -#: js/messages.php:75 +#: js/messages.php:87 #, fuzzy #| msgid "Previous" msgid "Prev" msgstr "পূর্ববর্তী" #. l10n: Display text for next month link in calendar -#: js/messages.php:77 libraries/common.lib.php:2353 -#: libraries/common.lib.php:2356 libraries/display_tbl.lib.php:338 +#: js/messages.php:89 libraries/common.lib.php:2357 +#: libraries/common.lib.php:2360 libraries/display_tbl.lib.php:338 #: server_binlog.php:205 server_binlog.php:207 tbl_printview.php:424 -#: tbl_structure.php:801 +#: tbl_structure.php:799 msgid "Next" msgstr "পরবর্তী" #. l10n: Display text for current month link in calendar -#: js/messages.php:79 +#: js/messages.php:91 #, fuzzy #| msgid "Total" msgid "Today" msgstr "মোট" -#: js/messages.php:82 +#: js/messages.php:94 #, fuzzy #| msgid "Binary" msgid "January" msgstr "বাইনারী" -#: js/messages.php:83 +#: js/messages.php:95 msgid "February" msgstr "" -#: js/messages.php:84 +#: js/messages.php:96 #, fuzzy #| msgid "Mar" msgid "March" msgstr "মার্চ" -#: js/messages.php:85 +#: js/messages.php:97 #, fuzzy #| msgid "Apr" msgid "April" msgstr "এপ্রিল" -#: js/messages.php:86 +#: js/messages.php:98 msgid "May" msgstr "মে" -#: js/messages.php:87 +#: js/messages.php:99 #, fuzzy #| msgid "Jun" msgid "June" msgstr "জুন" -#: js/messages.php:88 +#: js/messages.php:100 #, fuzzy #| msgid "Jul" msgid "July" msgstr "জুলাই" -#: js/messages.php:89 +#: js/messages.php:101 #, fuzzy #| msgid "Aug" msgid "August" msgstr "আগস্ট" -#: js/messages.php:90 +#: js/messages.php:102 msgid "September" msgstr "" -#: js/messages.php:91 +#: js/messages.php:103 #, fuzzy #| msgid "Oct" msgid "October" msgstr "অক্টোবর" -#: js/messages.php:92 +#: js/messages.php:104 msgid "November" msgstr "" -#: js/messages.php:93 +#: js/messages.php:105 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:97 libraries/common.lib.php:1557 +#: js/messages.php:109 libraries/common.lib.php:1557 msgid "Jan" msgstr "জানুয়ারী" #. l10n: Short month name -#: js/messages.php:99 libraries/common.lib.php:1559 +#: js/messages.php:111 libraries/common.lib.php:1559 msgid "Feb" msgstr "ফেব্রুয়ারী" #. l10n: Short month name -#: js/messages.php:101 libraries/common.lib.php:1561 +#: js/messages.php:113 libraries/common.lib.php:1561 msgid "Mar" msgstr "মার্চ" #. l10n: Short month name -#: js/messages.php:103 libraries/common.lib.php:1563 +#: js/messages.php:115 libraries/common.lib.php:1563 msgid "Apr" msgstr "এপ্রিল" #. l10n: Short month name -#: js/messages.php:105 libraries/common.lib.php:1565 +#: js/messages.php:117 libraries/common.lib.php:1565 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1139,176 +1182,176 @@ msgid "May" msgstr "মে" #. l10n: Short month name -#: js/messages.php:107 libraries/common.lib.php:1567 +#: js/messages.php:119 libraries/common.lib.php:1567 msgid "Jun" msgstr "জুন" #. l10n: Short month name -#: js/messages.php:109 libraries/common.lib.php:1569 +#: js/messages.php:121 libraries/common.lib.php:1569 msgid "Jul" msgstr "জুলাই" #. l10n: Short month name -#: js/messages.php:111 libraries/common.lib.php:1571 +#: js/messages.php:123 libraries/common.lib.php:1571 msgid "Aug" msgstr "আগস্ট" #. l10n: Short month name -#: js/messages.php:113 libraries/common.lib.php:1573 +#: js/messages.php:125 libraries/common.lib.php:1573 msgid "Sep" msgstr "সেপ্টেমবর" #. l10n: Short month name -#: js/messages.php:115 libraries/common.lib.php:1575 +#: js/messages.php:127 libraries/common.lib.php:1575 msgid "Oct" msgstr "অক্টোবর" #. l10n: Short month name -#: js/messages.php:117 libraries/common.lib.php:1577 +#: js/messages.php:129 libraries/common.lib.php:1577 msgid "Nov" msgstr "নভেম্বর" #. l10n: Short month name -#: js/messages.php:119 libraries/common.lib.php:1579 +#: js/messages.php:131 libraries/common.lib.php:1579 msgid "Dec" msgstr "ডিসেম্বর" -#: js/messages.php:122 +#: js/messages.php:134 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "রবিবার" -#: js/messages.php:123 +#: js/messages.php:135 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "সোমবার" -#: js/messages.php:124 +#: js/messages.php:136 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "মঙ্গলবার" -#: js/messages.php:125 +#: js/messages.php:137 msgid "Wednesday" msgstr "" -#: js/messages.php:126 +#: js/messages.php:138 msgid "Thursday" msgstr "" -#: js/messages.php:127 +#: js/messages.php:139 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "শুক্রবার" -#: js/messages.php:128 +#: js/messages.php:140 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:132 libraries/common.lib.php:1582 +#: js/messages.php:144 libraries/common.lib.php:1582 msgid "Sun" msgstr "রবিবার" #. l10n: Short week day name -#: js/messages.php:134 libraries/common.lib.php:1584 +#: js/messages.php:146 libraries/common.lib.php:1584 msgid "Mon" msgstr "সোমবার" #. l10n: Short week day name -#: js/messages.php:136 libraries/common.lib.php:1586 +#: js/messages.php:148 libraries/common.lib.php:1586 msgid "Tue" msgstr "মঙ্গলবার" #. l10n: Short week day name -#: js/messages.php:138 libraries/common.lib.php:1588 +#: js/messages.php:150 libraries/common.lib.php:1588 msgid "Wed" msgstr "বুধবার" #. l10n: Short week day name -#: js/messages.php:140 libraries/common.lib.php:1590 +#: js/messages.php:152 libraries/common.lib.php:1590 msgid "Thu" msgstr "বৃহস্পতিবার" #. l10n: Short week day name -#: js/messages.php:142 libraries/common.lib.php:1592 +#: js/messages.php:154 libraries/common.lib.php:1592 msgid "Fri" msgstr "শুক্রবার" #. l10n: Short week day name -#: js/messages.php:144 libraries/common.lib.php:1594 +#: js/messages.php:156 libraries/common.lib.php:1594 msgid "Sat" msgstr "শনিবার" #. l10n: Minimal week day name -#: js/messages.php:148 +#: js/messages.php:160 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "রবিবার" #. l10n: Minimal week day name -#: js/messages.php:150 +#: js/messages.php:162 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "সোমবার" #. l10n: Minimal week day name -#: js/messages.php:152 +#: js/messages.php:164 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "মঙ্গলবার" #. l10n: Minimal week day name -#: js/messages.php:154 +#: js/messages.php:166 #, fuzzy #| msgid "Wed" msgid "We" msgstr "বুধবার" #. l10n: Minimal week day name -#: js/messages.php:156 +#: js/messages.php:168 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "বৃহস্পতিবার" #. l10n: Minimal week day name -#: js/messages.php:158 +#: js/messages.php:170 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "শুক্রবার" #. l10n: Minimal week day name -#: js/messages.php:160 +#: js/messages.php:172 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "শনিবার" #. l10n: Column header for week of the year in calendar -#: js/messages.php:162 +#: js/messages.php:174 msgid "Wk" msgstr "" -#: js/messages.php:164 +#: js/messages.php:176 msgid "Hour" msgstr "" -#: js/messages.php:165 +#: js/messages.php:177 #, fuzzy #| msgid "in use" msgid "Minute" msgstr "in use" -#: js/messages.php:166 +#: js/messages.php:178 #, fuzzy #| msgid "per second" msgid "Second" @@ -1366,7 +1409,7 @@ msgstr "ইন্ডেস্ক সমূহ" #: libraries/Index.class.php:444 libraries/mult_submits.inc.php:103 #: libraries/tbl_properties.inc.php:519 tbl_structure.php:33 -#: tbl_structure.php:155 tbl_structure.php:159 tbl_structure.php:474 +#: tbl_structure.php:155 tbl_structure.php:159 tbl_structure.php:472 #: tbl_tracking.php:322 msgid "Unique" msgstr "Unique" @@ -1408,8 +1451,8 @@ msgid "" "removed." msgstr "" -#: libraries/List_Database.class.php:431 libraries/server_links.inc.php:41 -#: server_databases.php:88 server_privileges.php:1660 +#: libraries/List_Database.class.php:431 libraries/server_links.inc.php:42 +#: server_databases.php:88 server_privileges.php:1680 #: setup/lib/messages.inc.php:110 test/theme.php:93 msgid "Databases" msgstr "ডাটাবেজসমূহ Databases" @@ -1580,7 +1623,7 @@ msgstr "পাসওয়ার্ড" msgid "Server Choice" msgstr "Server Choice" -#: libraries/auth/cookie.auth.lib.php:320 libraries/header.inc.php:59 +#: libraries/auth/cookie.auth.lib.php:320 libraries/header.inc.php:63 msgid "Cookies must be enabled past this point." msgstr "Cookies must be enabled past this point." @@ -1660,7 +1703,7 @@ msgstr "" "Couldn't use either the iconv, libiconv or recode_string functions, although " "the necessary extensions appear to be loaded. Check your PHP configuration." -#: libraries/common.inc.php:583 +#: libraries/common.inc.php:587 msgid "" "phpMyAdmin was unable to read your configuration file!
This might " "happen if PHP finds a parse error in it or PHP cannot find the file.
If you receive a blank page, everything " "is fine." -#: libraries/common.inc.php:594 +#: libraries/common.inc.php:598 #, fuzzy, php-format #| msgid "Could not load default configuration from: \"%1$s\"" msgid "Could not load default configuration from: %1$s" msgstr "\"%1$s\" হতে ডিফল্ট কনফিগারেশন লোড করা যায়নি" -#: libraries/common.inc.php:599 +#: libraries/common.inc.php:603 msgid "" "The $cfg['PmaAbsoluteUri'] directive MUST be set in your " "configuration file!" @@ -1690,28 +1733,28 @@ msgstr "" "The $cfg['PmaAbsoluteUri'] directive MUST be set in your " "configuration file!" -#: libraries/common.inc.php:629 +#: libraries/common.inc.php:633 #, fuzzy, php-format #| msgid "Invalid server index: \"%s\"" msgid "Invalid server index: %s" msgstr "Invalid server index: \"%s\"" -#: libraries/common.inc.php:636 +#: libraries/common.inc.php:640 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "Invalid hostname for server %1$s. Please review your configuration." -#: libraries/common.inc.php:645 libraries/header.inc.php:96 +#: libraries/common.inc.php:649 libraries/header.inc.php:100 #: libraries/select_server.lib.php:41 libraries/select_server.lib.php:47 #: main.php:185 test/theme.php:57 msgid "Server" msgstr "সার্ভার" -#: libraries/common.inc.php:823 +#: libraries/common.inc.php:827 msgid "Invalid authentication method set in configuration:" msgstr "Invalid authentication method set in configuration:" -#: libraries/common.inc.php:926 +#: libraries/common.inc.php:930 #, php-format msgid "You should upgrade to %s %s or later." msgstr "You should upgrade to %s %s or later." @@ -1845,45 +1888,45 @@ msgstr "." msgid "%B %d, %Y at %I:%M %p" msgstr "%B %d, %Y at %I:%M %p" -#: libraries/common.lib.php:1907 +#: libraries/common.lib.php:1911 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s দিন, %s মাস, %s মিনিট and %s সেকেণ্ড" -#: libraries/common.lib.php:2322 libraries/common.lib.php:2325 +#: libraries/common.lib.php:2326 libraries/common.lib.php:2329 #: libraries/display_tbl.lib.php:290 server_status.php:719 msgid "Begin" msgstr "শুরু" -#: libraries/common.lib.php:2323 libraries/common.lib.php:2326 +#: libraries/common.lib.php:2327 libraries/common.lib.php:2330 #: libraries/display_tbl.lib.php:291 server_binlog.php:168 #: server_binlog.php:170 msgid "Previous" msgstr "পূর্ববর্তী" -#: libraries/common.lib.php:2354 libraries/common.lib.php:2357 +#: libraries/common.lib.php:2358 libraries/common.lib.php:2361 #: libraries/display_tbl.lib.php:353 msgid "End" msgstr "End" -#: libraries/common.lib.php:2430 +#: libraries/common.lib.php:2434 #, php-format msgid "Jump to database "%s"." msgstr "Jump to database "%s"." -#: libraries/common.lib.php:2450 +#: libraries/common.lib.php:2454 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" -#: libraries/common.lib.php:2830 libraries/common.lib.php:2837 +#: libraries/common.lib.php:2834 libraries/common.lib.php:2841 #: libraries/db_links.inc.php:68 libraries/export/sql.php:25 -#: libraries/import/sql.php:18 libraries/server_links.inc.php:45 +#: libraries/import/sql.php:18 libraries/server_links.inc.php:46 #: libraries/tbl_links.inc.php:60 querywindow.php:99 test/theme.php:97 msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2839 libraries/db_links.inc.php:104 +#: libraries/common.lib.php:2843 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,15 +1978,15 @@ msgstr "Query" msgid "Designer" msgstr "" -#: libraries/db_links.inc.php:98 libraries/server_links.inc.php:88 +#: libraries/db_links.inc.php:98 libraries/server_links.inc.php:89 #: libraries/tbl_links.inc.php:91 pmd_pdf.php:84 pmd_pdf.php:110 #: setup/frames/menu.inc.php:21 msgid "Import" msgstr "ইম্পোর্ট কর" -#: libraries/db_links.inc.php:111 libraries/server_links.inc.php:66 -#: server_privileges.php:111 server_privileges.php:1722 -#: server_privileges.php:2071 test/theme.php:117 +#: libraries/db_links.inc.php:111 libraries/server_links.inc.php:67 +#: server_privileges.php:112 server_privileges.php:1742 +#: server_privileges.php:2092 test/theme.php:117 msgid "Privileges" msgstr "Privileges" @@ -1962,7 +2005,7 @@ msgid "" msgstr "হয়ত আনুমানিক। FAQ ৩.১১ দেখ। " #: libraries/db_structure.lib.php:69 server_databases.php:142 -#: tbl_printview.php:336 tbl_structure.php:682 +#: tbl_printview.php:336 tbl_structure.php:680 msgid "Overhead" msgstr "Overhead" @@ -1979,7 +2022,7 @@ msgstr "The server is not responding" msgid "(or the local MySQL server's socket is not correctly configured)" msgstr "(or the local MySQL server's socket is not correctly configured)" -#: libraries/dbi/mysql.dbi.lib.php:362 tbl_structure.php:608 +#: libraries/dbi/mysql.dbi.lib.php:362 tbl_structure.php:606 msgid "Details..." msgstr "" @@ -1989,22 +2032,22 @@ msgid "Change password" msgstr "পাসওয়ার্ড পরিবর্তন কর" #: libraries/display_change_password.lib.php:35 -#: libraries/replication_gui.lib.php:345 server_privileges.php:807 +#: libraries/replication_gui.lib.php:345 server_privileges.php:808 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:796 -#: server_privileges.php:800 server_privileges.php:811 -#: server_privileges.php:1538 server_synchronize.php:1175 +#: libraries/replication_gui.lib.php:349 server_privileges.php:797 +#: server_privileges.php:801 server_privileges.php:812 +#: server_privileges.php:1558 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:815 server_privileges.php:818 +#: server_privileges.php:816 server_privileges.php:819 msgid "Re-type" msgstr "Re-type" @@ -2019,12 +2062,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:822 +#: libraries/replication_gui.lib.php:360 server_privileges.php:823 msgid "Generate Password" msgstr "পাসওয়ার্ড তৈরী কর" #: libraries/display_change_password.lib.php:75 -#: libraries/replication_gui.lib.php:363 server_privileges.php:825 +#: libraries/replication_gui.lib.php:363 server_privileges.php:826 msgid "Generate" msgstr "তৈরী কর" @@ -2037,8 +2080,8 @@ msgstr "নতুন ডাটাবেজ় তৈরী কর" msgid "Create" msgstr "তৈরী করুন" -#: libraries/display_create_database.lib.php:40 server_privileges.php:113 -#: server_privileges.php:1427 server_replication.php:35 +#: libraries/display_create_database.lib.php:40 server_privileges.php:114 +#: server_privileges.php:1447 server_replication.php:35 msgid "No Privileges" msgstr "কোন সুবিধা নাই" @@ -2129,7 +2172,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:1875 server_processlist.php:75 +#: server_privileges.php:1895 server_processlist.php:75 msgid "None" msgstr "কোনটিই নয়" @@ -2319,7 +2362,7 @@ msgstr "Sort by key" #: libraries/import/docsql.php:34 libraries/import/ldi.php:47 #: libraries/import/ods.php:30 libraries/import/sql.php:20 #: libraries/import/xls.php:26 libraries/import/xlsx.php:26 -#: libraries/import/xml.php:25 tbl_select.php:267 tbl_structure.php:753 +#: libraries/import/xml.php:25 tbl_select.php:267 tbl_structure.php:751 #, fuzzy msgid "Options" msgstr "Operations" @@ -2398,7 +2441,7 @@ msgstr "Query took %01.4f sec" #: libraries/display_tbl.lib.php:2089 libraries/mult_submits.inc.php:113 #: querywindow.php:125 querywindow.php:129 querywindow.php:132 -#: tbl_structure.php:25 tbl_structure.php:150 tbl_structure.php:470 +#: tbl_structure.php:25 tbl_structure.php:150 tbl_structure.php:468 msgid "Change" msgstr "Change" @@ -2468,7 +2511,7 @@ msgstr "Buffer Pool Usage" #: libraries/engines/innodb.lib.php:194 server_databases.php:137 #: server_databases.php:305 server_status.php:525 server_status.php:586 -#: server_status.php:607 tbl_printview.php:351 tbl_structure.php:696 +#: server_status.php:607 tbl_printview.php:351 tbl_structure.php:694 msgid "Total" msgstr "মোট" @@ -2729,7 +2772,7 @@ msgid "" msgstr "" #: libraries/export/codegen.php:37 setup/lib/messages.inc.php:88 -#: tbl_printview.php:376 tbl_structure.php:737 +#: tbl_printview.php:376 tbl_structure.php:735 msgid "Format" msgstr "ফরমেট" @@ -2801,8 +2844,8 @@ 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:576 server_replication.php:316 tbl_printview.php:317 -#: tbl_structure.php:665 +#: server_privileges.php:577 server_replication.php:316 tbl_printview.php:317 +#: tbl_structure.php:663 msgid "Data" msgstr "ডাটা" @@ -2851,9 +2894,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:731 -#: server_privileges.php:734 server_privileges.php:790 -#: server_privileges.php:1537 server_privileges.php:2069 +#: libraries/replication_gui.lib.php:329 server_privileges.php:732 +#: server_privileges.php:735 server_privileges.php:791 +#: server_privileges.php:1557 server_privileges.php:2090 #: server_processlist.php:55 server_synchronize.php:1159 msgid "Host" msgstr "হোষ্ট" @@ -3054,7 +3097,7 @@ msgstr "Export type" msgid "Open new phpMyAdmin window" msgstr "Open new phpMyAdmin window" -#: libraries/header.inc.php:115 +#: libraries/header.inc.php:119 #, fuzzy msgid "New table" msgstr "কোন টেবিল নাই" @@ -3218,20 +3261,20 @@ 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 +#: tbl_structure.php:471 msgid "Primary" msgstr "প্রাথমিক" #: libraries/mult_submits.inc.php:98 libraries/tbl_properties.inc.php:116 #: libraries/tbl_properties.inc.php:525 tbl_printview.php:326 #: tbl_structure.php:31 tbl_structure.php:154 tbl_structure.php:158 -#: tbl_structure.php:475 tbl_structure.php:673 +#: tbl_structure.php:473 tbl_structure.php:671 msgid "Index" msgstr "ইন্ডেস্ক" #: libraries/mult_submits.inc.php:108 libraries/tbl_properties.inc.php:531 #: tbl_structure.php:35 tbl_structure.php:156 tbl_structure.php:160 -#: tbl_structure.php:478 +#: tbl_structure.php:476 msgid "Fulltext" msgstr "Fulltext" @@ -3533,8 +3576,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:711 -#: server_privileges.php:714 server_privileges.php:721 +#: libraries/replication_gui.lib.php:259 server_privileges.php:712 +#: server_privileges.php:715 server_privileges.php:722 #: server_synchronize.php:1171 msgid "User name" msgstr "ব্যাভারকারীর নাম" @@ -3561,7 +3604,7 @@ msgstr "চলক" #: 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 +#: tbl_structure.php:727 msgid "Value" msgstr "মান" @@ -3579,34 +3622,34 @@ msgstr "" msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:254 server_privileges.php:716 +#: libraries/replication_gui.lib.php:254 server_privileges.php:717 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:717 -#: server_privileges.php:784 server_privileges.php:808 -#: server_privileges.php:1928 server_privileges.php:1958 +#: libraries/replication_gui.lib.php:346 server_privileges.php:718 +#: server_privileges.php:785 server_privileges.php:809 +#: server_privileges.php:1948 server_privileges.php:1978 msgid "Use text field" msgstr "Use text field" -#: libraries/replication_gui.lib.php:302 server_privileges.php:764 +#: libraries/replication_gui.lib.php:302 server_privileges.php:765 msgid "Any host" msgstr "যেকোন হোষ্ট" -#: libraries/replication_gui.lib.php:306 server_privileges.php:768 +#: libraries/replication_gui.lib.php:306 server_privileges.php:769 msgid "Local" msgstr "লোকাল" -#: libraries/replication_gui.lib.php:312 server_privileges.php:773 +#: libraries/replication_gui.lib.php:312 server_privileges.php:774 msgid "This Host" msgstr "This Host" -#: libraries/replication_gui.lib.php:318 server_privileges.php:779 +#: libraries/replication_gui.lib.php:318 server_privileges.php:780 msgid "Use Host Table" msgstr "Use Host Table" -#: libraries/replication_gui.lib.php:331 server_privileges.php:792 +#: libraries/replication_gui.lib.php:331 server_privileges.php:793 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -3640,29 +3683,29 @@ msgstr "Unknown language: %1$s." msgid "Servers" msgstr "সার্ভারসমূহ" -#: libraries/server_links.inc.php:53 server_engines.php:112 +#: libraries/server_links.inc.php:54 server_engines.php:112 #: server_engines.php:116 server_status.php:415 test/theme.php:105 msgid "Variables" msgstr "চলকসমূহ" -#: libraries/server_links.inc.php:57 test/theme.php:109 +#: libraries/server_links.inc.php:58 test/theme.php:109 msgid "Charsets" msgstr "Charsets" -#: libraries/server_links.inc.php:61 test/theme.php:113 +#: libraries/server_links.inc.php:62 test/theme.php:113 msgid "Engines" msgstr "ইঞ্জিনসমূহ" -#: libraries/server_links.inc.php:76 server_binlog.php:110 +#: libraries/server_links.inc.php:77 server_binlog.php:110 #: server_status.php:364 test/theme.php:121 msgid "Binary log" msgstr "বাইনারী লগ" -#: libraries/server_links.inc.php:80 +#: libraries/server_links.inc.php:81 msgid "Processes" msgstr "Processes" -#: libraries/server_links.inc.php:92 server_synchronize.php:1092 +#: libraries/server_links.inc.php:93 server_synchronize.php:1092 #: server_synchronize.php:1100 msgid "Synchronize" msgstr "" @@ -3912,13 +3955,13 @@ msgstr "" msgid "Save" msgstr "সেভ করুন" -#: libraries/tbl_properties.inc.php:780 tbl_structure.php:542 +#: libraries/tbl_properties.inc.php:780 tbl_structure.php:540 #, fuzzy, php-format #| msgid "Add %s field(s)" msgid "Add %s column(s)" msgstr " %s ক্ষেত্রসমূহ যোগ কর" -#: libraries/tbl_properties.inc.php:784 tbl_structure.php:536 +#: libraries/tbl_properties.inc.php:784 tbl_structure.php:534 #, fuzzy #| msgid "You have to add at least one field." msgid "You have to add at least one column." @@ -4131,8 +4174,8 @@ msgstr "রিসেট করুন" msgid "Protocol version" msgstr "Protocol version" -#: main.php:189 server_privileges.php:1389 server_privileges.php:1536 -#: server_privileges.php:1650 server_privileges.php:2068 +#: main.php:189 server_privileges.php:1406 server_privileges.php:1556 +#: server_privileges.php:1670 server_privileges.php:2089 #: server_processlist.php:54 msgid "User" msgstr "User" @@ -4578,112 +4621,112 @@ msgstr "Storage Engines" msgid "View dump (schema) of databases" msgstr "View dump (schema) of databases" -#: server_privileges.php:24 server_privileges.php:266 +#: server_privileges.php:25 server_privileges.php:267 msgid "Includes all privileges except GRANT." msgstr "Includes all privileges except GRANT." -#: server_privileges.php:25 server_privileges.php:192 -#: server_privileges.php:515 +#: server_privileges.php:26 server_privileges.php:193 +#: server_privileges.php:516 msgid "Allows altering the structure of existing tables." msgstr "Allows altering the structure of existing tables." -#: server_privileges.php:26 server_privileges.php:208 -#: server_privileges.php:521 +#: server_privileges.php:27 server_privileges.php:209 +#: server_privileges.php:522 msgid "Allows altering and dropping stored routines." msgstr "Allows altering and dropping stored routines." -#: server_privileges.php:27 server_privileges.php:184 -#: server_privileges.php:514 +#: server_privileges.php:28 server_privileges.php:185 +#: server_privileges.php:515 msgid "Allows creating new databases and tables." msgstr "Allows creating new databases and tables." -#: server_privileges.php:28 server_privileges.php:207 -#: server_privileges.php:520 +#: server_privileges.php:29 server_privileges.php:208 +#: server_privileges.php:521 msgid "Allows creating stored routines." msgstr "Allows creating stored routines." -#: server_privileges.php:29 server_privileges.php:514 +#: server_privileges.php:30 server_privileges.php:515 msgid "Allows creating new tables." msgstr "Allows creating new tables." -#: server_privileges.php:30 server_privileges.php:195 -#: server_privileges.php:518 +#: server_privileges.php:31 server_privileges.php:196 +#: server_privileges.php:519 msgid "Allows creating temporary tables." msgstr "Allows creating temporary tables." -#: server_privileges.php:31 server_privileges.php:209 -#: server_privileges.php:554 +#: server_privileges.php:32 server_privileges.php:210 +#: server_privileges.php:555 msgid "Allows creating, dropping and renaming user accounts." msgstr "Allows creating, dropping and renaming user accounts." -#: server_privileges.php:32 server_privileges.php:199 -#: server_privileges.php:203 server_privileges.php:526 -#: server_privileges.php:530 +#: server_privileges.php:33 server_privileges.php:200 +#: server_privileges.php:204 server_privileges.php:527 +#: server_privileges.php:531 msgid "Allows creating new views." msgstr "Allows creating new views." -#: server_privileges.php:33 server_privileges.php:183 -#: server_privileges.php:506 +#: server_privileges.php:34 server_privileges.php:184 +#: server_privileges.php:507 msgid "Allows deleting data." msgstr "Allows deleting data." -#: server_privileges.php:34 server_privileges.php:185 -#: server_privileges.php:517 +#: server_privileges.php:35 server_privileges.php:186 +#: server_privileges.php:518 msgid "Allows dropping databases and tables." msgstr "Allows dropping databases and tables." -#: server_privileges.php:35 server_privileges.php:517 +#: server_privileges.php:36 server_privileges.php:518 msgid "Allows dropping tables." msgstr "Allows dropping tables." -#: server_privileges.php:36 server_privileges.php:200 -#: server_privileges.php:534 +#: server_privileges.php:37 server_privileges.php:201 +#: server_privileges.php:535 msgid "Allows to set up events for the event scheduler" msgstr "" -#: server_privileges.php:37 server_privileges.php:210 -#: server_privileges.php:522 +#: server_privileges.php:38 server_privileges.php:211 +#: server_privileges.php:523 msgid "Allows executing stored routines." msgstr "Allows executing stored routines." -#: server_privileges.php:38 server_privileges.php:189 -#: server_privileges.php:509 +#: server_privileges.php:39 server_privileges.php:190 +#: server_privileges.php:510 msgid "Allows importing data from and exporting data into files." msgstr "Allows importing data from and exporting data into files." -#: server_privileges.php:39 server_privileges.php:540 +#: server_privileges.php:40 server_privileges.php:541 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "Allows adding users and privileges without reloading the privilege tables." -#: server_privileges.php:40 server_privileges.php:191 -#: server_privileges.php:516 +#: server_privileges.php:41 server_privileges.php:192 +#: server_privileges.php:517 msgid "Allows creating and dropping indexes." msgstr "Allows creating and dropping indexes." -#: server_privileges.php:41 server_privileges.php:181 -#: server_privileges.php:442 server_privileges.php:504 +#: server_privileges.php:42 server_privileges.php:182 +#: server_privileges.php:443 server_privileges.php:505 msgid "Allows inserting and replacing data." msgstr "Allows inserting and replacing data." -#: server_privileges.php:42 server_privileges.php:196 -#: server_privileges.php:549 +#: server_privileges.php:43 server_privileges.php:197 +#: server_privileges.php:550 msgid "Allows locking tables for the current thread." msgstr "Allows locking tables for the current thread." -#: server_privileges.php:43 server_privileges.php:646 -#: server_privileges.php:648 +#: server_privileges.php:44 server_privileges.php:647 +#: server_privileges.php:649 msgid "Limits the number of new connections the user may open per hour." msgstr "Limits the number of new connections the user may open per hour." -#: server_privileges.php:44 server_privileges.php:634 -#: server_privileges.php:636 +#: server_privileges.php:45 server_privileges.php:635 +#: server_privileges.php:637 msgid "Limits the number of queries the user may send to the server per hour." msgstr "Limits the number of queries the user may send to the server per hour." -#: server_privileges.php:45 server_privileges.php:640 -#: server_privileges.php:642 +#: server_privileges.php:46 server_privileges.php:641 +#: server_privileges.php:643 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -4691,58 +4734,58 @@ 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 +#: server_privileges.php:47 server_privileges.php:653 +#: server_privileges.php:655 msgid "Limits the number of simultaneous connections the user may have." msgstr "Limits the number of simultaneous connections the user may have." -#: server_privileges.php:47 server_privileges.php:188 -#: server_privileges.php:544 +#: server_privileges.php:48 server_privileges.php:189 +#: server_privileges.php:545 msgid "Allows viewing processes of all users" msgstr "" -#: server_privileges.php:48 server_privileges.php:190 -#: server_privileges.php:448 server_privileges.php:550 +#: server_privileges.php:49 server_privileges.php:191 +#: server_privileges.php:449 server_privileges.php:551 msgid "Has no effect in this MySQL version." msgstr "Has no effect in this MySQL version." -#: server_privileges.php:49 server_privileges.php:186 -#: server_privileges.php:545 +#: server_privileges.php:50 server_privileges.php:187 +#: server_privileges.php:546 msgid "Allows reloading server settings and flushing the server's caches." msgstr "Allows reloading server settings and flushing the server's caches." -#: server_privileges.php:50 server_privileges.php:198 -#: server_privileges.php:552 +#: server_privileges.php:51 server_privileges.php:199 +#: server_privileges.php:553 msgid "Allows the user to ask where the slaves / masters are." msgstr "Allows the user to ask where the slaves / masters are." -#: server_privileges.php:51 server_privileges.php:197 -#: server_privileges.php:553 +#: server_privileges.php:52 server_privileges.php:198 +#: server_privileges.php:554 msgid "Needed for the replication slaves." msgstr "Needed for the replication slaves." -#: server_privileges.php:52 server_privileges.php:180 -#: server_privileges.php:439 server_privileges.php:503 +#: server_privileges.php:53 server_privileges.php:181 +#: server_privileges.php:440 server_privileges.php:504 msgid "Allows reading data." msgstr "Allows reading data." -#: server_privileges.php:53 server_privileges.php:193 -#: server_privileges.php:547 +#: server_privileges.php:54 server_privileges.php:194 +#: server_privileges.php:548 msgid "Gives access to the complete list of databases." msgstr "Gives access to the complete list of databases." -#: server_privileges.php:54 server_privileges.php:204 -#: server_privileges.php:206 server_privileges.php:519 +#: server_privileges.php:55 server_privileges.php:205 +#: server_privileges.php:207 server_privileges.php:520 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Allows performing SHOW CREATE VIEW queries." -#: server_privileges.php:55 server_privileges.php:187 -#: server_privileges.php:546 +#: server_privileges.php:56 server_privileges.php:188 +#: server_privileges.php:547 msgid "Allows shutting down the server." msgstr "Allows shutting down the server." -#: server_privileges.php:56 server_privileges.php:194 -#: server_privileges.php:543 +#: server_privileges.php:57 server_privileges.php:195 +#: server_privileges.php:544 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -4752,160 +4795,160 @@ msgstr "" "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 +#: server_privileges.php:58 server_privileges.php:202 +#: server_privileges.php:536 #, fuzzy msgid "Allows creating and dropping triggers" msgstr "Allows creating and dropping indexes." -#: server_privileges.php:58 server_privileges.php:182 -#: server_privileges.php:445 server_privileges.php:505 +#: server_privileges.php:59 server_privileges.php:183 +#: server_privileges.php:446 server_privileges.php:506 msgid "Allows changing data." msgstr "Allows changing data." -#: server_privileges.php:59 server_privileges.php:260 +#: server_privileges.php:60 server_privileges.php:261 msgid "No privileges." msgstr "No privileges." -#: server_privileges.php:302 server_privileges.php:303 +#: server_privileges.php:303 server_privileges.php:304 #, fuzzy #| msgid "None" msgctxt "None privileges" msgid "None" msgstr "কোনটিই নয়" -#: server_privileges.php:431 server_privileges.php:566 -#: server_privileges.php:1718 server_privileges.php:1724 +#: server_privileges.php:432 server_privileges.php:567 +#: server_privileges.php:1738 server_privileges.php:1744 msgid "Table-specific privileges" msgstr "Table-specific privileges" -#: server_privileges.php:432 server_privileges.php:574 -#: server_privileges.php:1540 +#: server_privileges.php:433 server_privileges.php:575 +#: server_privileges.php:1560 msgid " Note: MySQL privilege names are expressed in English " msgstr "" "নোটঃ MySQL সুবিধাসমূহের নাম ইংরেজীতে প্রকাশ করা হয় Note: MySQL privilege " "names are expressed in English " -#: server_privileges.php:563 server_privileges.php:1539 +#: server_privileges.php:564 server_privileges.php:1559 msgid "Global privileges" msgstr "Global privileges" -#: server_privileges.php:565 server_privileges.php:1718 +#: server_privileges.php:566 server_privileges.php:1738 msgid "Database-specific privileges" msgstr "ডাটাবেজ-নির্দিষ্ট সুবিধাসমূহ" -#: server_privileges.php:610 +#: server_privileges.php:611 msgid "Administration" msgstr "Administration" -#: server_privileges.php:630 +#: server_privileges.php:631 msgid "Resource limits" msgstr "Resource limits" -#: server_privileges.php:631 +#: server_privileges.php:632 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "Note: Setting these options to 0 (zero) removes the limit." -#: server_privileges.php:708 +#: server_privileges.php:709 msgid "Login Information" msgstr "Login Information" -#: server_privileges.php:802 +#: server_privileges.php:803 msgid "Do not change the password" msgstr "Do not change the password" -#: server_privileges.php:843 server_privileges.php:2205 +#: server_privileges.php:844 server_privileges.php:2226 #, fuzzy #| msgid "No user(s) found." msgid "No user found." msgstr "No user(s) found." -#: server_privileges.php:887 +#: server_privileges.php:888 #, php-format msgid "The user %s already exists!" msgstr "The user %s already exists!" -#: server_privileges.php:970 +#: server_privileges.php:971 msgid "You have added a new user." msgstr "আপনি একটি নতুন ইউজার যোগ করেছেন" -#: server_privileges.php:1191 +#: server_privileges.php:1196 #, php-format msgid "You have updated the privileges for %s." msgstr "You have updated the privileges for %s." -#: server_privileges.php:1215 +#: server_privileges.php:1220 #, php-format msgid "You have revoked the privileges for %s" msgstr "You have revoked the privileges for %s" -#: server_privileges.php:1251 +#: server_privileges.php:1256 #, php-format msgid "The password for %s was changed successfully." msgstr "The password for %s was changed successfully." -#: server_privileges.php:1271 +#: server_privileges.php:1276 #, php-format msgid "Deleting %s" msgstr "%s মুছে ফেলা হচ্ছে" -#: server_privileges.php:1282 +#: server_privileges.php:1287 msgid "No users selected for deleting!" msgstr "মুছে ফেলার জন্য কোন ব্যাবহারকারী চিহ্নিত করা হয়নি" -#: server_privileges.php:1285 +#: server_privileges.php:1290 msgid "Reloading the privileges" msgstr "Reloading the privileges" -#: server_privileges.php:1300 +#: server_privileges.php:1305 msgid "The selected users have been deleted successfully." msgstr "The selected users have been deleted successfully." -#: server_privileges.php:1335 +#: server_privileges.php:1344 msgid "The privileges were reloaded successfully." msgstr "The privileges were reloaded successfully." -#: server_privileges.php:1363 server_privileges.php:1649 +#: server_privileges.php:1380 server_privileges.php:1669 msgid "Edit Privileges" msgstr "সুবিধাসমূহ সম্পাদনা কর" -#: server_privileges.php:1372 +#: server_privileges.php:1389 msgid "Revoke" msgstr "Revoke" -#: server_privileges.php:1404 +#: server_privileges.php:1424 msgid "User overview" msgstr "User overview" -#: server_privileges.php:1541 server_privileges.php:1723 -#: server_privileges.php:2072 +#: server_privileges.php:1561 server_privileges.php:1743 +#: server_privileges.php:2093 msgid "Grant" msgstr "Grant" -#: server_privileges.php:1560 server_privileges.php:2162 +#: server_privileges.php:1580 server_privileges.php:2183 msgid "Any" msgstr "যেকোন" -#: server_privileges.php:1609 server_privileges.php:1633 -#: server_privileges.php:2027 server_privileges.php:2216 +#: server_privileges.php:1629 server_privileges.php:1653 +#: server_privileges.php:2048 server_privileges.php:2237 msgid "Add a new User" msgstr "একটি নতুন ইউজার যোগ করুন" -#: server_privileges.php:1614 +#: server_privileges.php:1634 msgid "Remove selected users" msgstr "Remove selected users" -#: server_privileges.php:1617 +#: server_privileges.php:1637 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:1618 server_privileges.php:1619 -#: server_privileges.php:1620 +#: server_privileges.php:1638 server_privileges.php:1639 +#: server_privileges.php:1640 msgid "Drop the databases that have the same names as the users." msgstr "ব্যাবহারকারীর নামে নাম এমন ডাটাবেজসমূহ মুছে ফেল" -#: server_privileges.php:1636 +#: server_privileges.php:1656 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -4918,51 +4961,51 @@ msgstr "" "server uses, if they have been changed manually. In this case, you should %" "sreload the privileges%s before you continue." -#: server_privileges.php:1684 +#: server_privileges.php:1704 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:1724 +#: server_privileges.php:1744 msgid "Column-specific privileges" msgstr "কলাম নির্দিষ্ট সুবিধাসমূহ" -#: server_privileges.php:1925 +#: server_privileges.php:1945 msgid "Add privileges on the following database" msgstr "নিচের ডাটাবেইজ এ সুবিধাসমূহ যোগ কর" -#: server_privileges.php:1943 +#: server_privileges.php:1963 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:1946 +#: server_privileges.php:1966 msgid "Add privileges on the following table" msgstr "নিচের টেবিল এ সুবিধাসমূহ যোগ কর" -#: server_privileges.php:2003 +#: server_privileges.php:2023 msgid "Change Login Information / Copy User" msgstr "" "লগ ইন তথ্য পরিবর্তন কর অথবা ব্যাবহারকারী কপি করChange Login Information / Copy " "User" -#: server_privileges.php:2006 +#: server_privileges.php:2026 msgid "Create a new user with the same privileges and ..." msgstr "একই সুবিধা সহ নতুন আরেকটি ব্যাবহারকারী তৈরী করুন..." -#: server_privileges.php:2008 +#: server_privileges.php:2028 msgid "... keep the old one." msgstr "... পুরাতনটা রেখে দাও" -#: server_privileges.php:2009 +#: server_privileges.php:2029 msgid " ... delete the old one from the user tables." msgstr " ...ব্যাবহারকারীর টেবিলগুলো থেকে পুরাতনটি মুছে ফেল" -#: server_privileges.php:2010 +#: server_privileges.php:2030 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:2011 +#: server_privileges.php:2031 msgid "" " ... delete the old one from the user tables and reload the privileges " "afterwards." @@ -4970,46 +5013,46 @@ msgstr "" " ... ব্যাবহারকারীর টেবিলগুলো থেকে পুরাতনটি মুছে ফেল এবং এরপর সুবিধাসমূহ পুনরায় লোড " "কর" -#: server_privileges.php:2033 +#: server_privileges.php:2054 msgid "Database for user" msgstr "ব্যাবহারকারীর জন্য ডাটাবেজ" -#: server_privileges.php:2037 +#: server_privileges.php:2058 #, fuzzy #| msgid "None" msgctxt "Create none database for user" msgid "None" msgstr "কোনটিই নয়" -#: server_privileges.php:2038 +#: server_privileges.php:2059 msgid "Create database with same name and grant all privileges" msgstr "" "একই নামে ডাটাবেজ তৈরী কর এবং সকল সুবিধাসমূহ মঞ্জুর করCreate database with same " "name and grant all privileges" -#: server_privileges.php:2039 +#: server_privileges.php:2060 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "Grant all privileges on wildcard name (username_%)" -#: server_privileges.php:2042 +#: server_privileges.php:2063 #, fuzzy, php-format msgid "Grant all privileges on database "%s"" msgstr "Check privileges for database "%s"." -#: server_privileges.php:2065 +#: server_privileges.php:2086 #, php-format msgid "Users having access to "%s"" msgstr "Users having access to "%s"" -#: server_privileges.php:2173 +#: server_privileges.php:2194 msgid "global" msgstr "global" -#: server_privileges.php:2175 +#: server_privileges.php:2196 msgid "database-specific" msgstr "ডাটাবেজ-নির্দিষ্ট" -#: server_privileges.php:2177 +#: server_privileges.php:2198 msgid "wildcard" msgstr "wildcard" @@ -7832,6 +7875,10 @@ msgstr "" msgid "Show insert query" msgstr "" +#: tbl_change.php:1143 +msgid "and then" +msgstr "এবং তারপর" + #: tbl_change.php:1147 msgid "Go back to previous page" msgstr "পূর্বের পাতায় ফিরে যাও" @@ -7912,7 +7959,7 @@ msgstr "" msgid "Add to index  %s column(s)" msgstr "Index এ যোগ কর  %s column(s)" -#: tbl_indexes.php:256 tbl_structure.php:589 tbl_structure.php:600 +#: tbl_indexes.php:256 tbl_structure.php:587 tbl_structure.php:598 msgid "Column count has to be larger than zero." msgstr "Column count has to be larger than zero." @@ -8029,39 +8076,39 @@ msgstr "Check referential integrity:" msgid "Show tables" msgstr "Show tables" -#: tbl_printview.php:310 tbl_structure.php:656 +#: tbl_printview.php:310 tbl_structure.php:654 msgid "Space usage" msgstr "Space usage" -#: tbl_printview.php:314 tbl_structure.php:660 +#: tbl_printview.php:314 tbl_structure.php:658 msgid "Usage" msgstr "ব্যাবহার" -#: tbl_printview.php:341 tbl_structure.php:687 +#: tbl_printview.php:341 tbl_structure.php:685 msgid "Effective" msgstr "Effective" -#: tbl_printview.php:366 tbl_structure.php:725 +#: tbl_printview.php:366 tbl_structure.php:723 msgid "Row Statistics" msgstr "Row Statistics" -#: tbl_printview.php:369 tbl_structure.php:728 +#: tbl_printview.php:369 tbl_structure.php:726 msgid "Statements" msgstr "Statements" -#: tbl_printview.php:380 tbl_structure.php:740 +#: tbl_printview.php:380 tbl_structure.php:738 msgid "static" msgstr "" -#: tbl_printview.php:382 tbl_structure.php:742 +#: tbl_printview.php:382 tbl_structure.php:740 msgid "dynamic" msgstr "ডায়নামিক" -#: tbl_printview.php:404 tbl_structure.php:785 +#: tbl_printview.php:404 tbl_structure.php:783 msgid "Row length" msgstr "সাড়ির দৈর্ঘ্য" -#: tbl_printview.php:414 tbl_structure.php:793 +#: tbl_printview.php:414 tbl_structure.php:791 msgid " Row size " msgstr " সাড়ির আকার" @@ -8133,50 +8180,50 @@ msgstr "কোনটিই নয়" msgid "Column %s has been dropped" msgstr "Table %s has been dropped" -#: tbl_structure.php:385 +#: tbl_structure.php:384 #, php-format msgid "A primary key has been added on %s" msgstr "একটি প্রাইমারী কী যোগ করা হয়েছে %s" -#: tbl_structure.php:400 tbl_structure.php:414 tbl_structure.php:428 +#: tbl_structure.php:398 tbl_structure.php:412 tbl_structure.php:426 #, php-format msgid "An index has been added on %s" msgstr "একটি Index যোগ করা হয়েছে %s" -#: tbl_structure.php:506 tbl_structure.php:508 +#: tbl_structure.php:504 tbl_structure.php:506 msgid "Relation view" msgstr "Relation view" -#: tbl_structure.php:515 tbl_structure.php:517 +#: tbl_structure.php:513 tbl_structure.php:515 msgid "Propose table structure" msgstr "Propose table structure" -#: tbl_structure.php:540 +#: tbl_structure.php:538 #, fuzzy #| msgid "Add %s field(s)" msgid "Add column" msgstr " %s ক্ষেত্রসমূহ যোগ কর" -#: tbl_structure.php:554 +#: tbl_structure.php:552 msgid "At End of Table" msgstr "টেবিলের শেষে" -#: tbl_structure.php:555 +#: tbl_structure.php:553 msgid "At Beginning of Table" msgstr "টেবিলের শুরুতে" -#: tbl_structure.php:556 +#: tbl_structure.php:554 #, php-format msgid "After %s" msgstr "After %s" -#: tbl_structure.php:594 +#: tbl_structure.php:592 #, fuzzy, php-format #| msgid "Create an index on %s columns" msgid "Create an index on  %s columns" msgstr "Create an index on %s columns" -#: tbl_structure.php:756 +#: tbl_structure.php:754 msgid "partitioned" msgstr "" @@ -8621,9 +8668,6 @@ msgstr "টেবিল রিনেম করুন" #~ msgid "Process list" #~ msgstr "Process list" -#~ msgid "Reload privileges" -#~ msgstr "Reload privileges" - #~ msgid "" #~ "The users will still have the USAGE privilege until the privileges are " #~ "reloaded." diff --git a/po/bs.po b/po/bs.po index 5387e0a6f..befc1a767 100755 --- a/po/bs.po +++ b/po/bs.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-06-13 09:03-0400\n" +"POT-Creation-Date: 2010-06-22 00:55+0530\n" "PO-Revision-Date: 2010-03-12 09:12+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: bosnian \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:1514 +#: libraries/display_tbl.lib.php:417 server_privileges.php:1534 msgid "Show all" msgstr "Prikaži sve" -#: browse_foreigners.php:82 libraries/common.lib.php:2313 +#: browse_foreigners.php:82 libraries/common.lib.php:2317 #: 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,18 +37,18 @@ 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:2831 -#: libraries/common.lib.php:2838 libraries/db_links.inc.php:75 +#: db_structure.php:106 libraries/common.lib.php:2835 +#: libraries/common.lib.php:2842 libraries/db_links.inc.php:75 #: libraries/tbl_links.inc.php:63 msgid "Search" msgstr "Pretraživanje" -#: browse_foreigners.php:153 db_operations.php:385 db_operations.php:429 -#: db_operations.php:499 db_operations.php:609 db_search.php:362 -#: db_structure.php:567 js/messages.php:48 libraries/Config.class.php:1046 +#: browse_foreigners.php:153 db_operations.php:394 db_operations.php:438 +#: db_operations.php:508 db_operations.php:618 db_search.php:362 +#: db_structure.php:565 js/messages.php:53 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:1335 libraries/common.lib.php:2288 +#: libraries/common.lib.php:1335 libraries/common.lib.php:2292 #: 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,15 +59,15 @@ 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:664 server_privileges.php:1624 -#: server_privileges.php:1971 server_privileges.php:2018 -#: server_privileges.php:2057 server_replication.php:235 +#: server_privileges.php:665 server_privileges.php:1644 +#: server_privileges.php:1991 server_privileges.php:2038 +#: server_privileges.php:2078 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 #: tbl_operations.php:302 tbl_operations.php:499 tbl_operations.php:561 -#: tbl_operations.php:681 tbl_select.php:327 tbl_structure.php:562 -#: tbl_structure.php:597 tbl_tracking.php:395 tbl_tracking.php:512 +#: tbl_operations.php:681 tbl_select.php:327 tbl_structure.php:560 +#: tbl_structure.php:595 tbl_tracking.php:395 tbl_tracking.php:512 #: view_create.php:182 view_operations.php:101 msgid "Go" msgstr "Kreni" @@ -93,7 +93,7 @@ msgstr "Koristi ovu vrijednost" msgid "Database %1$s has been created." msgstr "Baza %s je odbačena." -#: db_datadict.php:49 db_operations.php:378 +#: db_datadict.php:49 db_operations.php:387 msgid "Database comment: " msgstr "Komentar baze:" @@ -120,10 +120,10 @@ 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:2070 +#: pdf_schema.php:1263 pdf_schema.php:1284 server_privileges.php:2091 #: 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 +#: tbl_structure.php:657 tbl_tracking.php:274 tbl_tracking.php:321 msgid "Type" msgstr "Tip" @@ -136,7 +136,7 @@ msgstr "Tip" msgid "Null" msgstr "Null" -#: db_datadict.php:178 db_structure.php:501 libraries/export/htmlword.php:247 +#: db_datadict.php:178 db_structure.php:499 libraries/export/htmlword.php:247 #: libraries/export/latex.php:360 libraries/export/odt.php:303 #: libraries/export/texytext.php:236 libraries/tbl_properties.inc.php:106 #: pdf_schema.php:1266 pdf_schema.php:1287 tbl_printview.php:146 @@ -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: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 +#: pdf_schema.php:1344 server_privileges.php:1588 server_privileges.php:1599 +#: server_privileges.php:1909 server_privileges.php:1914 +#: server_privileges.php:2208 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:1565 -#: server_privileges.php:1579 server_privileges.php:1889 -#: server_privileges.php:1892 server_privileges.php:2187 sql.php:193 +#: server_databases.php:64 server_privileges.php:1585 +#: server_privileges.php:1599 server_privileges.php:1909 +#: server_privileges.php:1912 server_privileges.php:2208 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" @@ -209,130 +209,126 @@ msgstr "Izaberi sve" msgid "Unselect All" msgstr "ništa" -#: db_operations.php:38 tbl_create.php:54 +#: db_operations.php:43 tbl_create.php:54 #, fuzzy msgid "The database name is empty!" msgstr "Ima tabele je prazno!" -#: db_operations.php:236 +#: db_operations.php:241 #, fuzzy, php-format msgid "Database %s has been renamed to %s" msgstr "Tabeli %s promjenjeno ime u %s" -#: db_operations.php:240 +#: db_operations.php:245 #, fuzzy, php-format msgid "Database %s has been copied to %s" msgstr "Tabela %s je kopirana u %s." -#: db_operations.php:412 +#: db_operations.php:421 #, fuzzy msgid "Rename database to" msgstr "Promjeni ime tabele u " -#: db_operations.php:417 server_processlist.php:57 +#: db_operations.php:426 server_processlist.php:57 msgid "Command" msgstr "Naredba" -#: db_operations.php:429 tbl_change.php:1143 -msgid "and then" -msgstr "" - -#: db_operations.php:455 +#: db_operations.php:464 #, fuzzy msgid "Copy database to" msgstr "Baza ne postoji" -#: db_operations.php:462 tbl_operations.php:528 tbl_tracking.php:388 +#: db_operations.php:471 tbl_operations.php:528 tbl_tracking.php:388 msgid "Structure only" msgstr "Samo struktura" -#: db_operations.php:463 tbl_operations.php:529 tbl_tracking.php:390 +#: db_operations.php:472 tbl_operations.php:529 tbl_tracking.php:390 msgid "Structure and data" msgstr "Struktura i podatci" -#: db_operations.php:464 tbl_operations.php:530 tbl_tracking.php:389 +#: db_operations.php:473 tbl_operations.php:530 tbl_tracking.php:389 msgid "Data only" msgstr "Samo podaci" -#: db_operations.php:472 +#: db_operations.php:481 msgid "CREATE DATABASE before copying" msgstr "" -#: db_operations.php:475 libraries/export/sql.php:52 +#: db_operations.php:484 libraries/export/sql.php:52 #: libraries/export/sql.php:74 libraries/export/sql.php:76 #: libraries/export/sql.php:82 tbl_operations.php:536 #, php-format msgid "Add %s" msgstr "" -#: db_operations.php:479 libraries/export/sql.php:78 tbl_operations.php:299 +#: db_operations.php:488 libraries/export/sql.php:78 tbl_operations.php:299 #: tbl_operations.php:538 msgid "Add AUTO_INCREMENT value" msgstr "Dodaj AUTO_INCREMENT vrijednost" -#: db_operations.php:483 tbl_operations.php:545 +#: db_operations.php:492 tbl_operations.php:545 msgid "Add constraints" msgstr "" -#: db_operations.php:496 +#: db_operations.php:505 #, fuzzy msgid "Switch to copied database" msgstr "Pređi na kopiranu tabelu" -#: db_operations.php:537 +#: db_operations.php:546 msgid "BLOB Repository" msgstr "" -#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1352 -#: libraries/server_links.inc.php:49 server_processlist.php:59 +#: db_operations.php:549 db_tracking.php:76 libraries/common.lib.php:1352 +#: libraries/server_links.inc.php:50 server_processlist.php:59 #: tbl_tracking.php:596 test/theme.php:101 msgid "Status" msgstr "Status" -#: db_operations.php:548 +#: db_operations.php:557 #, fuzzy #| msgid "Enabled" msgctxt "BLOB repository" msgid "Enabled" msgstr "Omogućeno" -#: db_operations.php:552 +#: db_operations.php:561 #, fuzzy msgid "Disable" msgstr "Onemogućeno" -#: db_operations.php:562 +#: db_operations.php:571 msgid "Damaged" msgstr "" -#: db_operations.php:566 +#: db_operations.php:575 #, fuzzy msgctxt "BLOB repository" msgid "Repair" msgstr "Popravi tabelu" -#: db_operations.php:574 +#: db_operations.php:583 #, fuzzy #| msgid "Disabled" msgctxt "BLOB repository" msgid "Disabled" msgstr "Onemogućeno" -#: db_operations.php:578 +#: db_operations.php:587 #, fuzzy msgid "Enable" msgstr "Omogućeno" -#: db_operations.php:602 libraries/Index.class.php:448 +#: db_operations.php:611 libraries/Index.class.php:448 #: libraries/db_structure.lib.php:62 libraries/mysql_charsets.lib.php:107 #: libraries/tbl_properties.inc.php:107 libraries/tbl_properties.inc.php:730 #: server_collations.php:54 server_collations.php:66 server_databases.php:111 #: tbl_operations.php:363 tbl_select.php:137 tbl_structure.php:179 -#: tbl_structure.php:767 tbl_tracking.php:275 tbl_tracking.php:326 +#: tbl_structure.php:765 tbl_tracking.php:275 tbl_tracking.php:326 msgid "Collation" msgstr "Sortiranje" -#: db_operations.php:615 main.php:316 pdf_schema.php:34 +#: db_operations.php:624 main.php:316 pdf_schema.php:34 #, php-format msgid "" "The additional features for working with linked tables have been " @@ -341,14 +337,14 @@ msgstr "" "Dodatne mogućnosti za rad sa povezanim tabelama su isključene. Da biste " "saznali zašto, kliknite %sovde%s." -#: db_operations.php:648 +#: db_operations.php:657 msgid "Edit PDF Pages" msgstr "Izmena 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:1665 -#: server_privileges.php:1721 server_privileges.php:1985 +#: libraries/header.inc.php:130 pdf_pages.php:424 server_privileges.php:1685 +#: server_privileges.php:1741 server_privileges.php:2005 #: server_synchronize.php:423 server_synchronize.php:866 tbl_tracking.php:592 #: test/theme.php:75 msgid "Table" @@ -357,7 +353,7 @@ msgstr "Tabela" #: db_printview.php:105 libraries/db_structure.lib.php:56 #: libraries/header_printview.inc.php:63 libraries/import.lib.php:146 #: navigation.php:638 navigation.php:660 server_databases.php:122 -#: tbl_printview.php:394 tbl_structure.php:365 tbl_structure.php:777 +#: tbl_printview.php:394 tbl_structure.php:365 tbl_structure.php:775 msgid "Rows" msgstr "Redova" @@ -365,30 +361,30 @@ msgstr "Redova" msgid "Size" msgstr "Veličina" -#: db_printview.php:162 db_structure.php:457 libraries/export/sql.php:559 +#: db_printview.php:162 db_structure.php:455 libraries/export/sql.php:559 #: libraries/export/sql.php:899 msgid "in use" msgstr "se koristi" #: db_printview.php:187 libraries/db_info.inc.php:88 #: libraries/export/sql.php:514 pdf_schema.php:1241 tbl_printview.php:434 -#: tbl_structure.php:809 +#: tbl_structure.php:807 msgid "Creation" msgstr "Napravljeno" #: db_printview.php:196 libraries/db_info.inc.php:93 #: libraries/export/sql.php:519 pdf_schema.php:1246 tbl_printview.php:444 -#: tbl_structure.php:817 +#: tbl_structure.php:815 msgid "Last update" msgstr "Posljednja izmjena" #: db_printview.php:205 libraries/db_info.inc.php:98 #: libraries/export/sql.php:524 pdf_schema.php:1251 tbl_printview.php:454 -#: tbl_structure.php:825 +#: tbl_structure.php:823 msgid "Last check" msgstr "Posljednja provjera" -#: db_printview.php:222 db_structure.php:480 +#: db_printview.php:222 db_structure.php:478 #, fuzzy, php-format #| msgid "%s table(s)" msgid "%s table" @@ -449,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:297 tbl_change.php:1031 tbl_indexes.php:250 +#: server_privileges.php:298 tbl_change.php:1031 tbl_indexes.php:250 #: tbl_select.php:288 msgid "Or" msgstr "ili" @@ -522,9 +518,9 @@ 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:2833 +#: db_structure.php:105 libraries/common.lib.php:2837 #: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50 -#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:467 +#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:465 msgid "Browse" msgstr "Pregled" @@ -569,36 +565,36 @@ 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:2832 libraries/sql_query_form.lib.php:334 +#: libraries/common.lib.php:2836 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:2829 libraries/common.lib.php:2836 +#: libraries/common.lib.php:2833 libraries/common.lib.php:2840 #: 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:1106 #: libraries/tbl_links.inc.php:56 pmd_general.php:134 -#: server_privileges.php:593 server_replication.php:315 tbl_tracking.php:269 +#: server_privileges.php:594 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:1656 +#: db_structure.php:543 db_structure.php:544 db_tracking.php:91 +#: libraries/Index.class.php:483 libraries/common.lib.php:1657 #: 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 -#: tbl_structure.php:152 tbl_structure.php:471 +#: tbl_structure.php:152 tbl_structure.php:469 msgid "Drop" 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:1655 +#: db_structure.php:541 db_structure.php:542 libraries/common.lib.php:1656 #: libraries/mult_submits.inc.php:39 libraries/tbl_links.inc.php:105 msgid "Empty" msgstr "Isprazni" @@ -608,112 +604,112 @@ msgstr "Isprazni" msgid "Table %s has been emptied" msgstr "Tabela %s je ispražnjena" -#: db_structure.php:326 libraries/tbl_links.inc.php:133 +#: db_structure.php:325 libraries/tbl_links.inc.php:133 #, fuzzy, php-format msgid "View %s has been dropped" msgstr "Polje %s je obrisano" -#: db_structure.php:326 libraries/tbl_links.inc.php:133 +#: db_structure.php:325 libraries/tbl_links.inc.php:133 #, php-format msgid "Table %s has been dropped" msgstr "Tabela %s je odbačena" -#: db_structure.php:333 +#: db_structure.php:332 msgid "Tracking is active." msgstr "" -#: db_structure.php:335 +#: db_structure.php:334 msgid "Tracking is not active." msgstr "" -#: db_structure.php:420 libraries/display_tbl.lib.php:1944 +#: db_structure.php:418 libraries/display_tbl.lib.php:1944 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation%" "s." msgstr "" -#: db_structure.php:434 db_structure.php:448 libraries/header.inc.php:126 +#: db_structure.php:432 db_structure.php:446 libraries/header.inc.php:130 #: libraries/tbl_info.inc.php:66 tbl_structure.php:185 test/theme.php:74 msgid "View" msgstr "" -#: db_structure.php:485 libraries/db_structure.lib.php:49 -#: libraries/server_links.inc.php:70 server_replication.php:33 +#: db_structure.php:483 libraries/db_structure.lib.php:49 +#: libraries/server_links.inc.php:71 server_replication.php:33 #: server_replication.php:164 server_status.php:369 #, fuzzy msgid "Replication" msgstr "Relacije" -#: db_structure.php:489 +#: db_structure.php:487 msgid "Sum" msgstr "Ukupno" -#: db_structure.php:496 libraries/StorageEngine.class.php:356 +#: db_structure.php:494 libraries/StorageEngine.class.php:356 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "" -#: db_structure.php:524 db_structure.php:541 db_structure.php:542 +#: db_structure.php:522 db_structure.php:539 db_structure.php:540 #: 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:1596 tbl_structure.php:455 -#: tbl_structure.php:464 +#: server_databases.php:351 server_privileges.php:1616 tbl_structure.php:453 +#: tbl_structure.php:462 msgid "With selected:" msgstr "Označeno:" -#: db_structure.php:527 libraries/display_tbl.lib.php:2076 -#: server_databases.php:348 server_privileges.php:569 -#: server_privileges.php:1599 tbl_structure.php:458 +#: db_structure.php:525 libraries/display_tbl.lib.php:2076 +#: server_databases.php:348 server_privileges.php:570 +#: server_privileges.php:1619 tbl_structure.php:456 msgid "Check All" msgstr "Označi sve" -#: db_structure.php:531 libraries/display_tbl.lib.php:2077 +#: db_structure.php:529 libraries/display_tbl.lib.php:2077 #: libraries/replication_gui.lib.php:33 server_databases.php:350 -#: server_privileges.php:572 server_privileges.php:1603 tbl_structure.php:462 +#: server_privileges.php:573 server_privileges.php:1623 tbl_structure.php:460 msgid "Uncheck All" msgstr "nijedno" -#: db_structure.php:536 +#: db_structure.php:534 msgid "Check tables having overhead" msgstr "" -#: db_structure.php:547 db_structure.php:548 db_structure.php:599 +#: db_structure.php:545 db_structure.php:546 db_structure.php:597 #: libraries/display_tbl.lib.php:2180 libraries/mult_submits.inc.php:28 -#: tbl_structure.php:492 tbl_structure.php:494 +#: tbl_structure.php:490 tbl_structure.php:492 msgid "Print view" msgstr "Za štampu" -#: db_structure.php:549 db_structure.php:550 libraries/mult_submits.inc.php:42 +#: db_structure.php:547 db_structure.php:548 libraries/mult_submits.inc.php:42 #: tbl_operations.php:581 msgid "Check table" msgstr "Provjeri tabelu" -#: db_structure.php:551 db_structure.php:552 libraries/mult_submits.inc.php:47 -#: tbl_operations.php:621 tbl_structure.php:709 tbl_structure.php:711 +#: db_structure.php:549 db_structure.php:550 libraries/mult_submits.inc.php:47 +#: tbl_operations.php:621 tbl_structure.php:707 tbl_structure.php:709 msgid "Optimize table" msgstr "Optimiziraj tabelu" -#: db_structure.php:553 db_structure.php:554 libraries/mult_submits.inc.php:52 +#: db_structure.php:551 db_structure.php:552 libraries/mult_submits.inc.php:52 #: tbl_operations.php:611 msgid "Repair table" msgstr "Popravi tabelu" -#: db_structure.php:555 db_structure.php:556 libraries/mult_submits.inc.php:57 +#: db_structure.php:553 db_structure.php:554 libraries/mult_submits.inc.php:57 #: tbl_operations.php:601 msgid "Analyze table" msgstr "Analiziraj tabelu" -#: db_structure.php:557 db_structure.php:558 libraries/db_links.inc.php:71 +#: db_structure.php:555 db_structure.php:556 libraries/db_links.inc.php:71 #: 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:1380 +#: libraries/server_links.inc.php:85 libraries/tbl_links.inc.php:82 +#: pmd_pdf.php:84 pmd_pdf.php:109 server_privileges.php:1397 #: setup/frames/menu.inc.php:22 tbl_row_action.php:59 msgid "Export" msgstr "Izvoz" -#: db_structure.php:606 libraries/display_pdf_schema.lib.php:44 +#: db_structure.php:604 libraries/display_pdf_schema.lib.php:44 msgid "Data Dictionary" msgstr "Rečnik podataka" @@ -724,10 +720,10 @@ msgstr "" #: db_tracking.php:71 libraries/export/htmlword.php:86 #: libraries/export/latex.php:148 libraries/export/odt.php:113 #: libraries/export/sql.php:342 libraries/export/texytext.php:84 -#: libraries/export/xml.php:255 libraries/header.inc.php:106 +#: libraries/export/xml.php:255 libraries/header.inc.php:110 #: libraries/header_printview.inc.php:58 server_databases.php:169 -#: server_privileges.php:1660 server_privileges.php:1721 -#: server_privileges.php:1979 server_processlist.php:56 +#: server_privileges.php:1680 server_privileges.php:1741 +#: server_privileges.php:1999 server_processlist.php:56 #: server_synchronize.php:1179 server_synchronize.php:1183 #: tbl_tracking.php:591 test/theme.php:65 msgid "Database" @@ -748,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:1542 server_privileges.php:1725 -#: server_privileges.php:2073 tbl_structure.php:187 +#: server_privileges.php:1562 server_privileges.php:1745 +#: server_privileges.php:2094 tbl_structure.php:187 msgid "Action" msgstr "Akcija" @@ -785,8 +781,8 @@ msgstr "Samo struktura" msgid "Untracked tables" msgstr "" -#: db_tracking.php:172 db_tracking.php:174 tbl_structure.php:528 -#: tbl_structure.php:530 +#: db_tracking.php:172 db_tracking.php:174 tbl_structure.php:526 +#: tbl_structure.php:528 #, fuzzy msgid "Track table" msgstr "Provjeri tabelu" @@ -942,189 +938,235 @@ msgstr "Ime hosta je prazno!" msgid "The user name is empty!" msgstr "Ime korisnika nije unijeto!" -#: js/messages.php:44 server_privileges.php:1236 user_password.php:70 +#: js/messages.php:44 server_privileges.php:1241 user_password.php:70 msgid "The password is empty!" msgstr "Lozinka je prazna!" -#: js/messages.php:45 server_privileges.php:1234 user_password.php:73 +#: js/messages.php:45 server_privileges.php:1239 user_password.php:73 msgid "The passwords aren't the same!" msgstr "Lozinke nisu identične!" -#: js/messages.php:49 pmd_general.php:342 pmd_general.php:379 +#: js/messages.php:46 +#, fuzzy +#| msgid "Add a new User" +msgid "Add a New User" +msgstr "Dodaj novog korisnika" + +#: js/messages.php:47 js/messages.php:54 pmd_general.php:342 +#: pmd_general.php:379 msgid "Cancel" msgstr "" -#: js/messages.php:52 pmd_save_pos.php:54 +#: js/messages.php:48 +#, fuzzy +msgid "Create User" +msgstr "Verzija servera" + +#: js/messages.php:49 +#, fuzzy +msgid "Reloading Privileges" +msgstr "Globalne privilegije" + +#: js/messages.php:50 +#, fuzzy +#| msgid "Remove selected users" +msgid "Removing Selected Users" +msgstr "Ukloni izabrane korisnike" + +#: js/messages.php:57 +#, fuzzy +msgid "Loading" +msgstr "Lokalni" + +#: js/messages.php:58 +#, fuzzy +#| msgid "Processes" +msgid "Processing Request" +msgstr "Procesi" + +#: js/messages.php:59 +msgid "Error in Processing Request" +msgstr "" + +#: js/messages.php:60 +msgid "Dropping Column" +msgstr "" + +#: js/messages.php:61 +msgid "Adding Primary Key" +msgstr "" + +#: js/messages.php:64 pmd_save_pos.php:54 msgid "Modifications have been saved" msgstr "Izmjene su sačuvane" -#: js/messages.php:53 pmd_relation_upd.php:49 +#: js/messages.php:65 pmd_relation_upd.php:49 #, fuzzy msgid "Relation deleted" msgstr "Relacioni pogled" -#: js/messages.php:54 pmd_relation_new.php:64 +#: js/messages.php:66 pmd_relation_new.php:64 msgid "FOREIGN KEY relation added" msgstr "" -#: js/messages.php:55 pmd_relation_new.php:86 +#: js/messages.php:67 pmd_relation_new.php:86 #, fuzzy msgid "Internal relation added" msgstr "Opšte osobine relacija" -#: js/messages.php:56 pmd_relation_new.php:63 pmd_relation_new.php:88 +#: js/messages.php:68 pmd_relation_new.php:63 pmd_relation_new.php:88 msgid "Error: Relation not added." msgstr "" -#: js/messages.php:57 pmd_relation_new.php:31 +#: js/messages.php:69 pmd_relation_new.php:31 msgid "Error: relation already exists." msgstr "" -#: js/messages.php:58 +#: js/messages.php:70 msgid "Error saving coordinates for Designer." msgstr "" -#: js/messages.php:59 libraries/relation.lib.php:107 +#: js/messages.php:71 libraries/relation.lib.php:107 #: libraries/relation.lib.php:119 msgid "General relation features" msgstr "Opšte osobine relacija" -#: js/messages.php:59 libraries/relation.lib.php:101 +#: js/messages.php:71 libraries/relation.lib.php:101 #: libraries/relation.lib.php:108 msgid "Disabled" msgstr "Onemogućeno" -#: js/messages.php:60 +#: js/messages.php:72 msgid "Select referenced key" msgstr "" -#: js/messages.php:61 +#: js/messages.php:73 msgid "Select Foreign Key" msgstr "" -#: js/messages.php:62 +#: js/messages.php:74 msgid "Please select the primary key or a unique key" msgstr "" -#: js/messages.php:63 pmd_general.php:77 tbl_relation.php:548 +#: js/messages.php:75 pmd_general.php:77 tbl_relation.php:548 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" msgstr "Izaberi polja za prikaz" #. l10n: Display text for calendar close link -#: js/messages.php:73 +#: js/messages.php:85 #, fuzzy #| msgid "None" msgid "Done" msgstr "nema" #. l10n: Display text for previous month link in calendar -#: js/messages.php:75 +#: js/messages.php:87 #, fuzzy #| msgid "Previous" msgid "Prev" msgstr "Prethodna" #. l10n: Display text for next month link in calendar -#: js/messages.php:77 libraries/common.lib.php:2353 -#: libraries/common.lib.php:2356 libraries/display_tbl.lib.php:338 +#: js/messages.php:89 libraries/common.lib.php:2357 +#: libraries/common.lib.php:2360 libraries/display_tbl.lib.php:338 #: server_binlog.php:205 server_binlog.php:207 tbl_printview.php:424 -#: tbl_structure.php:801 +#: tbl_structure.php:799 msgid "Next" msgstr "Slijedeći" #. l10n: Display text for current month link in calendar -#: js/messages.php:79 +#: js/messages.php:91 #, fuzzy #| msgid "Total" msgid "Today" msgstr "Ukupno" -#: js/messages.php:82 +#: js/messages.php:94 #, fuzzy #| msgid "Binary" msgid "January" msgstr "Binarni" -#: js/messages.php:83 +#: js/messages.php:95 msgid "February" msgstr "" -#: js/messages.php:84 +#: js/messages.php:96 #, fuzzy #| msgid "Mar" msgid "March" msgstr "mar" -#: js/messages.php:85 +#: js/messages.php:97 #, fuzzy #| msgid "Apr" msgid "April" msgstr "apr" -#: js/messages.php:86 +#: js/messages.php:98 msgid "May" msgstr "maj" -#: js/messages.php:87 +#: js/messages.php:99 #, fuzzy #| msgid "Jun" msgid "June" msgstr "jun" -#: js/messages.php:88 +#: js/messages.php:100 #, fuzzy #| msgid "Jul" msgid "July" msgstr "jul" -#: js/messages.php:89 +#: js/messages.php:101 #, fuzzy #| msgid "Aug" msgid "August" msgstr "aug" -#: js/messages.php:90 +#: js/messages.php:102 msgid "September" msgstr "" -#: js/messages.php:91 +#: js/messages.php:103 #, fuzzy #| msgid "Oct" msgid "October" msgstr "okt" -#: js/messages.php:92 +#: js/messages.php:104 msgid "November" msgstr "" -#: js/messages.php:93 +#: js/messages.php:105 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:97 libraries/common.lib.php:1557 +#: js/messages.php:109 libraries/common.lib.php:1557 msgid "Jan" msgstr "jan" #. l10n: Short month name -#: js/messages.php:99 libraries/common.lib.php:1559 +#: js/messages.php:111 libraries/common.lib.php:1559 msgid "Feb" msgstr "feb" #. l10n: Short month name -#: js/messages.php:101 libraries/common.lib.php:1561 +#: js/messages.php:113 libraries/common.lib.php:1561 msgid "Mar" msgstr "mar" #. l10n: Short month name -#: js/messages.php:103 libraries/common.lib.php:1563 +#: js/messages.php:115 libraries/common.lib.php:1563 msgid "Apr" msgstr "apr" #. l10n: Short month name -#: js/messages.php:105 libraries/common.lib.php:1565 +#: js/messages.php:117 libraries/common.lib.php:1565 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1132,176 +1174,176 @@ msgid "May" msgstr "maj" #. l10n: Short month name -#: js/messages.php:107 libraries/common.lib.php:1567 +#: js/messages.php:119 libraries/common.lib.php:1567 msgid "Jun" msgstr "jun" #. l10n: Short month name -#: js/messages.php:109 libraries/common.lib.php:1569 +#: js/messages.php:121 libraries/common.lib.php:1569 msgid "Jul" msgstr "jul" #. l10n: Short month name -#: js/messages.php:111 libraries/common.lib.php:1571 +#: js/messages.php:123 libraries/common.lib.php:1571 msgid "Aug" msgstr "aug" #. l10n: Short month name -#: js/messages.php:113 libraries/common.lib.php:1573 +#: js/messages.php:125 libraries/common.lib.php:1573 msgid "Sep" msgstr "sep" #. l10n: Short month name -#: js/messages.php:115 libraries/common.lib.php:1575 +#: js/messages.php:127 libraries/common.lib.php:1575 msgid "Oct" msgstr "okt" #. l10n: Short month name -#: js/messages.php:117 libraries/common.lib.php:1577 +#: js/messages.php:129 libraries/common.lib.php:1577 msgid "Nov" msgstr "nov" #. l10n: Short month name -#: js/messages.php:119 libraries/common.lib.php:1579 +#: js/messages.php:131 libraries/common.lib.php:1579 msgid "Dec" msgstr "dec" -#: js/messages.php:122 +#: js/messages.php:134 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "Ned" -#: js/messages.php:123 +#: js/messages.php:135 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "Pon" -#: js/messages.php:124 +#: js/messages.php:136 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "Uto" -#: js/messages.php:125 +#: js/messages.php:137 msgid "Wednesday" msgstr "" -#: js/messages.php:126 +#: js/messages.php:138 msgid "Thursday" msgstr "" -#: js/messages.php:127 +#: js/messages.php:139 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "Pet" -#: js/messages.php:128 +#: js/messages.php:140 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:132 libraries/common.lib.php:1582 +#: js/messages.php:144 libraries/common.lib.php:1582 msgid "Sun" msgstr "Ned" #. l10n: Short week day name -#: js/messages.php:134 libraries/common.lib.php:1584 +#: js/messages.php:146 libraries/common.lib.php:1584 msgid "Mon" msgstr "Pon" #. l10n: Short week day name -#: js/messages.php:136 libraries/common.lib.php:1586 +#: js/messages.php:148 libraries/common.lib.php:1586 msgid "Tue" msgstr "Uto" #. l10n: Short week day name -#: js/messages.php:138 libraries/common.lib.php:1588 +#: js/messages.php:150 libraries/common.lib.php:1588 msgid "Wed" msgstr "Sri" #. l10n: Short week day name -#: js/messages.php:140 libraries/common.lib.php:1590 +#: js/messages.php:152 libraries/common.lib.php:1590 msgid "Thu" msgstr "Čet" #. l10n: Short week day name -#: js/messages.php:142 libraries/common.lib.php:1592 +#: js/messages.php:154 libraries/common.lib.php:1592 msgid "Fri" msgstr "Pet" #. l10n: Short week day name -#: js/messages.php:144 libraries/common.lib.php:1594 +#: js/messages.php:156 libraries/common.lib.php:1594 msgid "Sat" msgstr "Sub" #. l10n: Minimal week day name -#: js/messages.php:148 +#: js/messages.php:160 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "Ned" #. l10n: Minimal week day name -#: js/messages.php:150 +#: js/messages.php:162 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "Pon" #. l10n: Minimal week day name -#: js/messages.php:152 +#: js/messages.php:164 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "Uto" #. l10n: Minimal week day name -#: js/messages.php:154 +#: js/messages.php:166 #, fuzzy #| msgid "Wed" msgid "We" msgstr "Sri" #. l10n: Minimal week day name -#: js/messages.php:156 +#: js/messages.php:168 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "Čet" #. l10n: Minimal week day name -#: js/messages.php:158 +#: js/messages.php:170 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "Pet" #. l10n: Minimal week day name -#: js/messages.php:160 +#: js/messages.php:172 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "Sub" #. l10n: Column header for week of the year in calendar -#: js/messages.php:162 +#: js/messages.php:174 msgid "Wk" msgstr "" -#: js/messages.php:164 +#: js/messages.php:176 msgid "Hour" msgstr "" -#: js/messages.php:165 +#: js/messages.php:177 #, fuzzy #| msgid "in use" msgid "Minute" msgstr "se koristi" -#: js/messages.php:166 +#: js/messages.php:178 #, fuzzy #| msgid "per second" msgid "Second" @@ -1358,7 +1400,7 @@ msgstr "Ključevi" #: libraries/Index.class.php:444 libraries/mult_submits.inc.php:103 #: libraries/tbl_properties.inc.php:519 tbl_structure.php:33 -#: tbl_structure.php:155 tbl_structure.php:159 tbl_structure.php:474 +#: tbl_structure.php:155 tbl_structure.php:159 tbl_structure.php:472 #: tbl_tracking.php:322 msgid "Unique" msgstr "Jedinstveni" @@ -1400,8 +1442,8 @@ msgid "" "removed." msgstr "" -#: libraries/List_Database.class.php:431 libraries/server_links.inc.php:41 -#: server_databases.php:88 server_privileges.php:1660 +#: libraries/List_Database.class.php:431 libraries/server_links.inc.php:42 +#: server_databases.php:88 server_privileges.php:1680 #: setup/lib/messages.inc.php:110 test/theme.php:93 msgid "Databases" msgstr "Baze" @@ -1568,7 +1610,7 @@ msgstr "Lozinka:" msgid "Server Choice" msgstr "Izbor servera" -#: libraries/auth/cookie.auth.lib.php:320 libraries/header.inc.php:59 +#: libraries/auth/cookie.auth.lib.php:320 libraries/header.inc.php:63 msgid "Cookies must be enabled past this point." msgstr "Kolačići (Cookies) moraju u ovom slučaju biti aktivirani." @@ -1648,7 +1690,7 @@ msgstr "" "Ne mogu da koristim iconv ili libiconv ili recode_string funkcije iako " "ekstenzija prijavljuje da je učitana. Proverite vašu PHP konfiguraciju." -#: libraries/common.inc.php:583 +#: libraries/common.inc.php:587 msgid "" "phpMyAdmin was unable to read your configuration file!
This might " "happen if PHP finds a parse error in it or PHP cannot find the file.
Ako dobijete praznu stranu, sve je u redu." -#: libraries/common.inc.php:594 +#: libraries/common.inc.php:598 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "" -#: libraries/common.inc.php:599 +#: libraries/common.inc.php:603 msgid "" "The $cfg['PmaAbsoluteUri'] directive MUST be set in your " "configuration file!" @@ -1676,27 +1718,27 @@ msgstr "" "$cfg['PmaAbsoluteUri'] direktiva MORA biti podješena u " "konfiguracionoj datoteci!" -#: libraries/common.inc.php:629 +#: libraries/common.inc.php:633 #, php-format msgid "Invalid server index: %s" msgstr "" -#: libraries/common.inc.php:636 +#: libraries/common.inc.php:640 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" -#: libraries/common.inc.php:645 libraries/header.inc.php:96 +#: libraries/common.inc.php:649 libraries/header.inc.php:100 #: libraries/select_server.lib.php:41 libraries/select_server.lib.php:47 #: main.php:185 test/theme.php:57 msgid "Server" msgstr "Server" -#: libraries/common.inc.php:823 +#: libraries/common.inc.php:827 msgid "Invalid authentication method set in configuration:" msgstr "" -#: libraries/common.inc.php:926 +#: libraries/common.inc.php:930 #, php-format msgid "You should upgrade to %s %s or later." msgstr "" @@ -1829,45 +1871,45 @@ msgstr "." msgid "%B %d, %Y at %I:%M %p" msgstr "%d. %B %Y. u %H:%M" -#: libraries/common.lib.php:1907 +#: libraries/common.lib.php:1911 #, 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:2322 libraries/common.lib.php:2325 +#: libraries/common.lib.php:2326 libraries/common.lib.php:2329 #: libraries/display_tbl.lib.php:290 server_status.php:719 msgid "Begin" msgstr "Početak" -#: libraries/common.lib.php:2323 libraries/common.lib.php:2326 +#: libraries/common.lib.php:2327 libraries/common.lib.php:2330 #: libraries/display_tbl.lib.php:291 server_binlog.php:168 #: server_binlog.php:170 msgid "Previous" msgstr "Prethodna" -#: libraries/common.lib.php:2354 libraries/common.lib.php:2357 +#: libraries/common.lib.php:2358 libraries/common.lib.php:2361 #: libraries/display_tbl.lib.php:353 msgid "End" msgstr "Kraj" -#: libraries/common.lib.php:2430 +#: libraries/common.lib.php:2434 #, php-format msgid "Jump to database "%s"." msgstr "Pređi na bazu "%s"." -#: libraries/common.lib.php:2450 +#: libraries/common.lib.php:2454 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" -#: libraries/common.lib.php:2830 libraries/common.lib.php:2837 +#: libraries/common.lib.php:2834 libraries/common.lib.php:2841 #: libraries/db_links.inc.php:68 libraries/export/sql.php:25 -#: libraries/import/sql.php:18 libraries/server_links.inc.php:45 +#: libraries/import/sql.php:18 libraries/server_links.inc.php:46 #: libraries/tbl_links.inc.php:60 querywindow.php:99 test/theme.php:97 msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2839 libraries/db_links.inc.php:104 +#: libraries/common.lib.php:2843 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,16 +1957,16 @@ msgstr "Upit po primeru" msgid "Designer" msgstr "" -#: libraries/db_links.inc.php:98 libraries/server_links.inc.php:88 +#: libraries/db_links.inc.php:98 libraries/server_links.inc.php:89 #: libraries/tbl_links.inc.php:91 pmd_pdf.php:84 pmd_pdf.php:110 #: setup/frames/menu.inc.php:21 #, fuzzy msgid "Import" msgstr "Izvoz" -#: libraries/db_links.inc.php:111 libraries/server_links.inc.php:66 -#: server_privileges.php:111 server_privileges.php:1722 -#: server_privileges.php:2071 test/theme.php:117 +#: libraries/db_links.inc.php:111 libraries/server_links.inc.php:67 +#: server_privileges.php:112 server_privileges.php:1742 +#: server_privileges.php:2092 test/theme.php:117 msgid "Privileges" msgstr "Privilegije" @@ -1943,7 +1985,7 @@ msgid "" msgstr "" #: libraries/db_structure.lib.php:69 server_databases.php:142 -#: tbl_printview.php:336 tbl_structure.php:682 +#: tbl_printview.php:336 tbl_structure.php:680 msgid "Overhead" msgstr "Prekoračenje" @@ -1960,7 +2002,7 @@ msgstr "" msgid "(or the local MySQL server's socket is not correctly configured)" msgstr "" -#: libraries/dbi/mysql.dbi.lib.php:362 tbl_structure.php:608 +#: libraries/dbi/mysql.dbi.lib.php:362 tbl_structure.php:606 msgid "Details..." msgstr "" @@ -1970,22 +2012,22 @@ msgid "Change password" msgstr "Promeni lozinku" #: libraries/display_change_password.lib.php:35 -#: libraries/replication_gui.lib.php:345 server_privileges.php:807 +#: libraries/replication_gui.lib.php:345 server_privileges.php:808 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:796 -#: server_privileges.php:800 server_privileges.php:811 -#: server_privileges.php:1538 server_synchronize.php:1175 +#: libraries/replication_gui.lib.php:349 server_privileges.php:797 +#: server_privileges.php:801 server_privileges.php:812 +#: server_privileges.php:1558 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:815 server_privileges.php:818 +#: server_privileges.php:816 server_privileges.php:819 msgid "Re-type" msgstr "Ponovite unos" @@ -1998,12 +2040,12 @@ msgid "MySQL 4.0 compatible" msgstr "" #: libraries/display_change_password.lib.php:72 -#: libraries/replication_gui.lib.php:360 server_privileges.php:822 +#: libraries/replication_gui.lib.php:360 server_privileges.php:823 msgid "Generate Password" msgstr "" #: libraries/display_change_password.lib.php:75 -#: libraries/replication_gui.lib.php:363 server_privileges.php:825 +#: libraries/replication_gui.lib.php:363 server_privileges.php:826 #, fuzzy msgid "Generate" msgstr "Generirao" @@ -2017,8 +2059,8 @@ msgstr "Napravi novu bazu podataka" msgid "Create" msgstr "Napravi" -#: libraries/display_create_database.lib.php:40 server_privileges.php:113 -#: server_privileges.php:1427 server_replication.php:35 +#: libraries/display_create_database.lib.php:40 server_privileges.php:114 +#: server_privileges.php:1447 server_replication.php:35 msgid "No Privileges" msgstr "Nema privilegija" @@ -2107,7 +2149,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:1875 server_processlist.php:75 +#: server_privileges.php:1895 server_processlist.php:75 msgid "None" msgstr "nema" @@ -2291,7 +2333,7 @@ msgstr "" #: libraries/import/docsql.php:34 libraries/import/ldi.php:47 #: libraries/import/ods.php:30 libraries/import/sql.php:20 #: libraries/import/xls.php:26 libraries/import/xlsx.php:26 -#: libraries/import/xml.php:25 tbl_select.php:267 tbl_structure.php:753 +#: libraries/import/xml.php:25 tbl_select.php:267 tbl_structure.php:751 #, fuzzy msgid "Options" msgstr "Operacije" @@ -2370,7 +2412,7 @@ msgstr "Upit je trajao %01.4f sekundi" #: libraries/display_tbl.lib.php:2089 libraries/mult_submits.inc.php:113 #: querywindow.php:125 querywindow.php:129 querywindow.php:132 -#: tbl_structure.php:25 tbl_structure.php:150 tbl_structure.php:470 +#: tbl_structure.php:25 tbl_structure.php:150 tbl_structure.php:468 msgid "Change" msgstr "Promijeni" @@ -2438,7 +2480,7 @@ msgstr "" #: libraries/engines/innodb.lib.php:194 server_databases.php:137 #: server_databases.php:305 server_status.php:525 server_status.php:586 -#: server_status.php:607 tbl_printview.php:351 tbl_structure.php:696 +#: server_status.php:607 tbl_printview.php:351 tbl_structure.php:694 msgid "Total" msgstr "Ukupno" @@ -2684,7 +2726,7 @@ msgid "" msgstr "" #: libraries/export/codegen.php:37 setup/lib/messages.inc.php:88 -#: tbl_printview.php:376 tbl_structure.php:737 +#: tbl_printview.php:376 tbl_structure.php:735 msgid "Format" msgstr "Format" @@ -2756,8 +2798,8 @@ 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:576 server_replication.php:316 tbl_printview.php:317 -#: tbl_structure.php:665 +#: server_privileges.php:577 server_replication.php:316 tbl_printview.php:317 +#: tbl_structure.php:663 msgid "Data" msgstr "Podaci" @@ -2807,9 +2849,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:731 -#: server_privileges.php:734 server_privileges.php:790 -#: server_privileges.php:1537 server_privileges.php:2069 +#: libraries/replication_gui.lib.php:329 server_privileges.php:732 +#: server_privileges.php:735 server_privileges.php:791 +#: server_privileges.php:1557 server_privileges.php:2090 #: server_processlist.php:55 server_synchronize.php:1159 msgid "Host" msgstr "Host" @@ -3008,7 +3050,7 @@ msgstr "" msgid "Open new phpMyAdmin window" msgstr "" -#: libraries/header.inc.php:115 +#: libraries/header.inc.php:119 #, fuzzy msgid "New table" msgstr "Nema tabela" @@ -3168,20 +3210,20 @@ 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 +#: tbl_structure.php:471 msgid "Primary" msgstr "Primarni" #: libraries/mult_submits.inc.php:98 libraries/tbl_properties.inc.php:116 #: libraries/tbl_properties.inc.php:525 tbl_printview.php:326 #: tbl_structure.php:31 tbl_structure.php:154 tbl_structure.php:158 -#: tbl_structure.php:475 tbl_structure.php:673 +#: tbl_structure.php:473 tbl_structure.php:671 msgid "Index" msgstr "Ključ" #: libraries/mult_submits.inc.php:108 libraries/tbl_properties.inc.php:531 #: tbl_structure.php:35 tbl_structure.php:156 tbl_structure.php:160 -#: tbl_structure.php:478 +#: tbl_structure.php:476 msgid "Fulltext" msgstr "Tekst ključ" @@ -3487,8 +3529,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:711 -#: server_privileges.php:714 server_privileges.php:721 +#: libraries/replication_gui.lib.php:259 server_privileges.php:712 +#: server_privileges.php:715 server_privileges.php:722 #: server_synchronize.php:1171 msgid "User name" msgstr "Ime korisnika" @@ -3513,7 +3555,7 @@ msgstr "Promjenljiva" #: 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 +#: tbl_structure.php:727 msgid "Value" msgstr "Vrijednost" @@ -3532,34 +3574,34 @@ msgstr "" msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:254 server_privileges.php:716 +#: libraries/replication_gui.lib.php:254 server_privileges.php:717 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:717 -#: server_privileges.php:784 server_privileges.php:808 -#: server_privileges.php:1928 server_privileges.php:1958 +#: libraries/replication_gui.lib.php:346 server_privileges.php:718 +#: server_privileges.php:785 server_privileges.php:809 +#: server_privileges.php:1948 server_privileges.php:1978 msgid "Use text field" msgstr "Koristi tekst polje" -#: libraries/replication_gui.lib.php:302 server_privileges.php:764 +#: libraries/replication_gui.lib.php:302 server_privileges.php:765 msgid "Any host" msgstr "Bilo koji host" -#: libraries/replication_gui.lib.php:306 server_privileges.php:768 +#: libraries/replication_gui.lib.php:306 server_privileges.php:769 msgid "Local" msgstr "Lokalni" -#: libraries/replication_gui.lib.php:312 server_privileges.php:773 +#: libraries/replication_gui.lib.php:312 server_privileges.php:774 msgid "This Host" msgstr "Ovaj server" -#: libraries/replication_gui.lib.php:318 server_privileges.php:779 +#: libraries/replication_gui.lib.php:318 server_privileges.php:780 msgid "Use Host Table" msgstr "Koristi tabelu hosta" -#: libraries/replication_gui.lib.php:331 server_privileges.php:792 +#: libraries/replication_gui.lib.php:331 server_privileges.php:793 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -3594,30 +3636,30 @@ msgstr "" msgid "Servers" msgstr "Server" -#: libraries/server_links.inc.php:53 server_engines.php:112 +#: libraries/server_links.inc.php:54 server_engines.php:112 #: server_engines.php:116 server_status.php:415 test/theme.php:105 msgid "Variables" msgstr "Promjenljive" -#: libraries/server_links.inc.php:57 test/theme.php:109 +#: libraries/server_links.inc.php:58 test/theme.php:109 msgid "Charsets" msgstr "Kodne strane" -#: libraries/server_links.inc.php:61 test/theme.php:113 +#: libraries/server_links.inc.php:62 test/theme.php:113 msgid "Engines" msgstr "" -#: libraries/server_links.inc.php:76 server_binlog.php:110 +#: libraries/server_links.inc.php:77 server_binlog.php:110 #: server_status.php:364 test/theme.php:121 #, fuzzy msgid "Binary log" msgstr "Binarni" -#: libraries/server_links.inc.php:80 +#: libraries/server_links.inc.php:81 msgid "Processes" msgstr "Procesi" -#: libraries/server_links.inc.php:92 server_synchronize.php:1092 +#: libraries/server_links.inc.php:93 server_synchronize.php:1092 #: server_synchronize.php:1100 msgid "Synchronize" msgstr "" @@ -3866,12 +3908,12 @@ msgstr "" msgid "Save" msgstr "Sačuvaj" -#: libraries/tbl_properties.inc.php:780 tbl_structure.php:542 +#: libraries/tbl_properties.inc.php:780 tbl_structure.php:540 #, fuzzy, php-format msgid "Add %s column(s)" msgstr "Dodaj novo polje" -#: libraries/tbl_properties.inc.php:784 tbl_structure.php:536 +#: libraries/tbl_properties.inc.php:784 tbl_structure.php:534 #, fuzzy #| msgid "You have to choose at least one column to display" msgid "You have to add at least one column." @@ -4054,8 +4096,8 @@ msgstr "Resetuj" msgid "Protocol version" msgstr "" -#: main.php:189 server_privileges.php:1389 server_privileges.php:1536 -#: server_privileges.php:1650 server_privileges.php:2068 +#: main.php:189 server_privileges.php:1406 server_privileges.php:1556 +#: server_privileges.php:1670 server_privileges.php:2089 #: server_processlist.php:54 msgid "User" msgstr "Korisnik" @@ -4490,116 +4532,116 @@ msgstr "" msgid "View dump (schema) of databases" msgstr "Prikaži sadržaj (shemu) baze" -#: server_privileges.php:24 server_privileges.php:266 +#: server_privileges.php:25 server_privileges.php:267 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 +#: server_privileges.php:26 server_privileges.php:193 +#: server_privileges.php:516 msgid "Allows altering the structure of existing tables." msgstr "Dozvoljava izmjenu struktura postojećih tabela." -#: server_privileges.php:26 server_privileges.php:208 -#: server_privileges.php:521 +#: server_privileges.php:27 server_privileges.php:209 +#: server_privileges.php:522 #, fuzzy msgid "Allows altering and dropping stored routines." msgstr "Dozvoljava kreiranje i brisanje ključeva." -#: server_privileges.php:27 server_privileges.php:184 -#: server_privileges.php:514 +#: server_privileges.php:28 server_privileges.php:185 +#: server_privileges.php:515 msgid "Allows creating new databases and tables." msgstr "Dozvoljava kreiranje novih baza i tabela." -#: server_privileges.php:28 server_privileges.php:207 -#: server_privileges.php:520 +#: server_privileges.php:29 server_privileges.php:208 +#: server_privileges.php:521 #, fuzzy msgid "Allows creating stored routines." msgstr "Dozvoljava kreiranje novih tabela." -#: server_privileges.php:29 server_privileges.php:514 +#: server_privileges.php:30 server_privileges.php:515 msgid "Allows creating new tables." msgstr "Dozvoljava kreiranje novih tabela." -#: server_privileges.php:30 server_privileges.php:195 -#: server_privileges.php:518 +#: server_privileges.php:31 server_privileges.php:196 +#: server_privileges.php:519 msgid "Allows creating temporary tables." msgstr "Dozvoljava kreiranje privremenih tabela.." -#: server_privileges.php:31 server_privileges.php:209 -#: server_privileges.php:554 +#: server_privileges.php:32 server_privileges.php:210 +#: server_privileges.php:555 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 +#: server_privileges.php:33 server_privileges.php:200 +#: server_privileges.php:204 server_privileges.php:527 +#: server_privileges.php:531 #, fuzzy msgid "Allows creating new views." msgstr "Dozvoljava kreiranje novih tabela." -#: server_privileges.php:33 server_privileges.php:183 -#: server_privileges.php:506 +#: server_privileges.php:34 server_privileges.php:184 +#: server_privileges.php:507 msgid "Allows deleting data." msgstr "Dozvoljava brisanje podataka." -#: server_privileges.php:34 server_privileges.php:185 -#: server_privileges.php:517 +#: server_privileges.php:35 server_privileges.php:186 +#: server_privileges.php:518 msgid "Allows dropping databases and tables." msgstr "Dozvoljava odbacivanje baza i tabela." -#: server_privileges.php:35 server_privileges.php:517 +#: server_privileges.php:36 server_privileges.php:518 msgid "Allows dropping tables." msgstr "Dozvoljava odbacivanje tabela." -#: server_privileges.php:36 server_privileges.php:200 -#: server_privileges.php:534 +#: server_privileges.php:37 server_privileges.php:201 +#: server_privileges.php:535 msgid "Allows to set up events for the event scheduler" msgstr "" -#: server_privileges.php:37 server_privileges.php:210 -#: server_privileges.php:522 +#: server_privileges.php:38 server_privileges.php:211 +#: server_privileges.php:523 msgid "Allows executing stored routines." msgstr "" -#: server_privileges.php:38 server_privileges.php:189 -#: server_privileges.php:509 +#: server_privileges.php:39 server_privileges.php:190 +#: server_privileges.php:510 msgid "Allows importing data from and exporting data into files." msgstr "Dozvoljava uvoz podataka i njihov izvoz u datoteke." -#: server_privileges.php:39 server_privileges.php:540 +#: server_privileges.php:40 server_privileges.php:541 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "Dozvoljava dodavanje korisnika i privilegija bez ponovnog učitavanja tabela " "privilegija." -#: server_privileges.php:40 server_privileges.php:191 -#: server_privileges.php:516 +#: server_privileges.php:41 server_privileges.php:192 +#: server_privileges.php:517 msgid "Allows creating and dropping indexes." msgstr "Dozvoljava kreiranje i brisanje ključeva." -#: server_privileges.php:41 server_privileges.php:181 -#: server_privileges.php:442 server_privileges.php:504 +#: server_privileges.php:42 server_privileges.php:182 +#: server_privileges.php:443 server_privileges.php:505 msgid "Allows inserting and replacing data." msgstr "Dozvoljava umetanje i zamjenu podataka." -#: server_privileges.php:42 server_privileges.php:196 -#: server_privileges.php:549 +#: server_privileges.php:43 server_privileges.php:197 +#: server_privileges.php:550 msgid "Allows locking tables for the current thread." msgstr "Dozvoljava zaključavanje tabela tekućim procesima." -#: server_privileges.php:43 server_privileges.php:646 -#: server_privileges.php:648 +#: server_privileges.php:44 server_privileges.php:647 +#: server_privileges.php:649 msgid "Limits the number of new connections the user may open per hour." msgstr "Ograničava broj novih konekcija koje korisnik može ta otvori na sat." -#: server_privileges.php:44 server_privileges.php:634 -#: server_privileges.php:636 +#: server_privileges.php:45 server_privileges.php:635 +#: server_privileges.php:637 msgid "Limits the number of queries the user may send to the server per hour." msgstr "Ograničava broj upita koje korisnik može da uputi serveru za sat." -#: server_privileges.php:45 server_privileges.php:640 -#: server_privileges.php:642 +#: server_privileges.php:46 server_privileges.php:641 +#: server_privileges.php:643 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -4607,60 +4649,60 @@ 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 +#: server_privileges.php:47 server_privileges.php:653 +#: server_privileges.php:655 #, fuzzy msgid "Limits the number of simultaneous connections the user may have." msgstr "Ograničava broj novih konekcija koje korisnik može ta otvori na sat." -#: server_privileges.php:47 server_privileges.php:188 -#: server_privileges.php:544 +#: server_privileges.php:48 server_privileges.php:189 +#: server_privileges.php:545 msgid "Allows viewing processes of all users" msgstr "" -#: server_privileges.php:48 server_privileges.php:190 -#: server_privileges.php:448 server_privileges.php:550 +#: server_privileges.php:49 server_privileges.php:191 +#: server_privileges.php:449 server_privileges.php:551 msgid "Has no effect in this MySQL version." msgstr "Nema efekta u ovoj verziji MySQL-a." -#: server_privileges.php:49 server_privileges.php:186 -#: server_privileges.php:545 +#: server_privileges.php:50 server_privileges.php:187 +#: server_privileges.php:546 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" "Dozvoljava ponovno učitavanje podešavanja servera i pražnjenje keša servera." -#: server_privileges.php:50 server_privileges.php:198 -#: server_privileges.php:552 +#: server_privileges.php:51 server_privileges.php:199 +#: server_privileges.php:553 msgid "Allows the user to ask where the slaves / masters are." msgstr "Daje pravo korisniku da pita gde su glavni/pomoćni serveri." -#: server_privileges.php:51 server_privileges.php:197 -#: server_privileges.php:553 +#: server_privileges.php:52 server_privileges.php:198 +#: server_privileges.php:554 msgid "Needed for the replication slaves." msgstr "Potrebno zbog pomoćnih servera za replikaciju." -#: server_privileges.php:52 server_privileges.php:180 -#: server_privileges.php:439 server_privileges.php:503 +#: server_privileges.php:53 server_privileges.php:181 +#: server_privileges.php:440 server_privileges.php:504 msgid "Allows reading data." msgstr "Dozvoljava čitanje podataka." -#: server_privileges.php:53 server_privileges.php:193 -#: server_privileges.php:547 +#: server_privileges.php:54 server_privileges.php:194 +#: server_privileges.php:548 msgid "Gives access to the complete list of databases." msgstr "Daje pristup kompletnoj listi baza." -#: server_privileges.php:54 server_privileges.php:204 -#: server_privileges.php:206 server_privileges.php:519 +#: server_privileges.php:55 server_privileges.php:205 +#: server_privileges.php:207 server_privileges.php:520 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "" -#: server_privileges.php:55 server_privileges.php:187 -#: server_privileges.php:546 +#: server_privileges.php:56 server_privileges.php:188 +#: server_privileges.php:547 msgid "Allows shutting down the server." msgstr "Dozvoljava gašenje servera." -#: server_privileges.php:56 server_privileges.php:194 -#: server_privileges.php:543 +#: server_privileges.php:57 server_privileges.php:195 +#: server_privileges.php:544 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -4670,157 +4712,157 @@ msgstr "" "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 +#: server_privileges.php:58 server_privileges.php:202 +#: server_privileges.php:536 #, fuzzy msgid "Allows creating and dropping triggers" msgstr "Dozvoljava kreiranje i brisanje ključeva." -#: server_privileges.php:58 server_privileges.php:182 -#: server_privileges.php:445 server_privileges.php:505 +#: server_privileges.php:59 server_privileges.php:183 +#: server_privileges.php:446 server_privileges.php:506 msgid "Allows changing data." msgstr "Dozvoljava izmenu podataka." -#: server_privileges.php:59 server_privileges.php:260 +#: server_privileges.php:60 server_privileges.php:261 msgid "No privileges." msgstr "Nema privilegija." -#: server_privileges.php:302 server_privileges.php:303 +#: server_privileges.php:303 server_privileges.php:304 #, fuzzy #| msgid "None" msgctxt "None privileges" msgid "None" msgstr "nema" -#: server_privileges.php:431 server_privileges.php:566 -#: server_privileges.php:1718 server_privileges.php:1724 +#: server_privileges.php:432 server_privileges.php:567 +#: server_privileges.php:1738 server_privileges.php:1744 msgid "Table-specific privileges" msgstr "Privilegije vezane za tabele" -#: server_privileges.php:432 server_privileges.php:574 -#: server_privileges.php:1540 +#: server_privileges.php:433 server_privileges.php:575 +#: server_privileges.php:1560 msgid " Note: MySQL privilege names are expressed in English " msgstr " Napomena: MySQL imena privilegija moraju da budu na engleskom " -#: server_privileges.php:563 server_privileges.php:1539 +#: server_privileges.php:564 server_privileges.php:1559 msgid "Global privileges" msgstr "Globalne privilegije" -#: server_privileges.php:565 server_privileges.php:1718 +#: server_privileges.php:566 server_privileges.php:1738 msgid "Database-specific privileges" msgstr "Privilegije vezane za bazu" -#: server_privileges.php:610 +#: server_privileges.php:611 msgid "Administration" msgstr "Administracija" -#: server_privileges.php:630 +#: server_privileges.php:631 msgid "Resource limits" msgstr "Ograničenja resursa" -#: server_privileges.php:631 +#: server_privileges.php:632 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "Napomena: Postavljanje ovih opcija na 0 (nulu) uklanja limite." -#: server_privileges.php:708 +#: server_privileges.php:709 msgid "Login Information" msgstr "Podatci o prijavi" -#: server_privileges.php:802 +#: server_privileges.php:803 msgid "Do not change the password" msgstr "Nemoj da mijenjaš lozinku" -#: server_privileges.php:843 server_privileges.php:2205 +#: server_privileges.php:844 server_privileges.php:2226 #, fuzzy #| msgid "No user(s) found." msgid "No user found." msgstr "Korisnik nije nađen." -#: server_privileges.php:887 +#: server_privileges.php:888 #, php-format msgid "The user %s already exists!" msgstr "Korisnik %s već postoji!" -#: server_privileges.php:970 +#: server_privileges.php:971 msgid "You have added a new user." msgstr "Dodali ste novog korisnika." -#: server_privileges.php:1191 +#: server_privileges.php:1196 #, php-format msgid "You have updated the privileges for %s." msgstr "Ažurirali ste privilegije za %s." -#: server_privileges.php:1215 +#: server_privileges.php:1220 #, php-format msgid "You have revoked the privileges for %s" msgstr "Zabranili ste privilegije za %s" -#: server_privileges.php:1251 +#: server_privileges.php:1256 #, php-format msgid "The password for %s was changed successfully." msgstr "Lozinka za %s je uspješno promjenjena." -#: server_privileges.php:1271 +#: server_privileges.php:1276 #, php-format msgid "Deleting %s" msgstr "Brišem %s" -#: server_privileges.php:1282 +#: server_privileges.php:1287 msgid "No users selected for deleting!" msgstr "" -#: server_privileges.php:1285 +#: server_privileges.php:1290 msgid "Reloading the privileges" msgstr "Ponovo učitavam privilegije" -#: server_privileges.php:1300 +#: server_privileges.php:1305 msgid "The selected users have been deleted successfully." msgstr "Izabrani korisnici su uspješno obrisani." -#: server_privileges.php:1335 +#: server_privileges.php:1344 msgid "The privileges were reloaded successfully." msgstr "Privilegije su uspešno ponovo učitane." -#: server_privileges.php:1363 server_privileges.php:1649 +#: server_privileges.php:1380 server_privileges.php:1669 msgid "Edit Privileges" msgstr "Promijeni privilegije" -#: server_privileges.php:1372 +#: server_privileges.php:1389 msgid "Revoke" msgstr "Zabrani" -#: server_privileges.php:1404 +#: server_privileges.php:1424 msgid "User overview" msgstr "Pregled korisnika" -#: server_privileges.php:1541 server_privileges.php:1723 -#: server_privileges.php:2072 +#: server_privileges.php:1561 server_privileges.php:1743 +#: server_privileges.php:2093 msgid "Grant" msgstr "Omogući" -#: server_privileges.php:1560 server_privileges.php:2162 +#: server_privileges.php:1580 server_privileges.php:2183 msgid "Any" msgstr "Bilo koji" -#: server_privileges.php:1609 server_privileges.php:1633 -#: server_privileges.php:2027 server_privileges.php:2216 +#: server_privileges.php:1629 server_privileges.php:1653 +#: server_privileges.php:2048 server_privileges.php:2237 msgid "Add a new User" msgstr "Dodaj novog korisnika" -#: server_privileges.php:1614 +#: server_privileges.php:1634 msgid "Remove selected users" msgstr "Ukloni izabrane korisnike" -#: server_privileges.php:1617 +#: server_privileges.php:1637 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:1618 server_privileges.php:1619 -#: server_privileges.php:1620 +#: server_privileges.php:1638 server_privileges.php:1639 +#: server_privileges.php:1640 msgid "Drop the databases that have the same names as the users." msgstr "Odbaci baze koje se zovu isto kao korisnici." -#: server_privileges.php:1636 +#: server_privileges.php:1656 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -4833,92 +4875,92 @@ msgstr "" "server koristi ako su izvršene ručne izmjene. U tom slučaju %sponovo " "učitajte privilegije%s pre nego što nastavite." -#: server_privileges.php:1684 +#: server_privileges.php:1704 msgid "The selected user was not found in the privilege table." msgstr "Izabrani korisnik nije pronađen u tabeli privilegija." -#: server_privileges.php:1724 +#: server_privileges.php:1744 msgid "Column-specific privileges" msgstr "Privilegije vezane za kolone" -#: server_privileges.php:1925 +#: server_privileges.php:1945 msgid "Add privileges on the following database" msgstr "Dodaj privilegije na slijedećoj bazi" -#: server_privileges.php:1943 +#: server_privileges.php:1963 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" -#: server_privileges.php:1946 +#: server_privileges.php:1966 msgid "Add privileges on the following table" msgstr "Dodaj privilegije na slijedećoj tabeli" -#: server_privileges.php:2003 +#: server_privileges.php:2023 msgid "Change Login Information / Copy User" msgstr "Promeni informacije o prijavi / Kopiraj korisnika" -#: server_privileges.php:2006 +#: server_privileges.php:2026 msgid "Create a new user with the same privileges and ..." msgstr "Napravi novog korisnika sa istim privilegijama i ..." -#: server_privileges.php:2008 +#: server_privileges.php:2028 msgid "... keep the old one." msgstr "... sačuvaj stare." -#: server_privileges.php:2009 +#: server_privileges.php:2029 msgid " ... delete the old one from the user tables." msgstr " ... obriši stare iz tabela korisnika." -#: server_privileges.php:2010 +#: server_privileges.php:2030 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:2011 +#: server_privileges.php:2031 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:2033 +#: server_privileges.php:2054 msgid "Database for user" msgstr "" -#: server_privileges.php:2037 +#: server_privileges.php:2058 #, fuzzy #| msgid "None" msgctxt "Create none database for user" msgid "None" msgstr "nema" -#: server_privileges.php:2038 +#: server_privileges.php:2059 msgid "Create database with same name and grant all privileges" msgstr "" -#: server_privileges.php:2039 +#: server_privileges.php:2060 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "" -#: server_privileges.php:2042 +#: server_privileges.php:2063 #, fuzzy, php-format msgid "Grant all privileges on database "%s"" msgstr "Provjeri privilegije za bazu "%s"." -#: server_privileges.php:2065 +#: server_privileges.php:2086 #, php-format msgid "Users having access to "%s"" msgstr "Korisnici koji imaju pristup "%s"" -#: server_privileges.php:2173 +#: server_privileges.php:2194 msgid "global" msgstr "globalno" -#: server_privileges.php:2175 +#: server_privileges.php:2196 msgid "database-specific" msgstr "Specifično za bazu" -#: server_privileges.php:2177 +#: server_privileges.php:2198 msgid "wildcard" msgstr "Džoker" @@ -7608,6 +7650,10 @@ msgstr "" msgid "Show insert query" msgstr "" +#: tbl_change.php:1143 +msgid "and then" +msgstr "" + #: tbl_change.php:1147 msgid "Go back to previous page" msgstr "Nazad na prethodnu stranu" @@ -7687,7 +7733,7 @@ msgstr "(\"PRIMARY\" mora biti ime samo primarnog ključa!)" msgid "Add to index  %s column(s)" msgstr "Dodaj u ključ  %s kolona(e)" -#: tbl_indexes.php:256 tbl_structure.php:589 tbl_structure.php:600 +#: tbl_indexes.php:256 tbl_structure.php:587 tbl_structure.php:598 msgid "Column count has to be larger than zero." msgstr "" @@ -7804,39 +7850,39 @@ msgstr "Proveri referencijalni integritet:" msgid "Show tables" msgstr "Prikaži tabele" -#: tbl_printview.php:310 tbl_structure.php:656 +#: tbl_printview.php:310 tbl_structure.php:654 msgid "Space usage" msgstr "Zauzeće" -#: tbl_printview.php:314 tbl_structure.php:660 +#: tbl_printview.php:314 tbl_structure.php:658 msgid "Usage" msgstr "Zauzeće" -#: tbl_printview.php:341 tbl_structure.php:687 +#: tbl_printview.php:341 tbl_structure.php:685 msgid "Effective" msgstr "Efektivne" -#: tbl_printview.php:366 tbl_structure.php:725 +#: tbl_printview.php:366 tbl_structure.php:723 msgid "Row Statistics" msgstr "Statistike reda" -#: tbl_printview.php:369 tbl_structure.php:728 +#: tbl_printview.php:369 tbl_structure.php:726 msgid "Statements" msgstr "Ime" -#: tbl_printview.php:380 tbl_structure.php:740 +#: tbl_printview.php:380 tbl_structure.php:738 msgid "static" msgstr "" -#: tbl_printview.php:382 tbl_structure.php:742 +#: tbl_printview.php:382 tbl_structure.php:740 msgid "dynamic" msgstr "dinamički" -#: tbl_printview.php:404 tbl_structure.php:785 +#: tbl_printview.php:404 tbl_structure.php:783 msgid "Row length" msgstr "Dužina reda" -#: tbl_printview.php:414 tbl_structure.php:793 +#: tbl_printview.php:414 tbl_structure.php:791 msgid " Row size " msgstr "Veličina reda" @@ -7909,49 +7955,49 @@ msgstr "nema" msgid "Column %s has been dropped" msgstr "Tabela %s je odbačena" -#: tbl_structure.php:385 +#: tbl_structure.php:384 #, php-format msgid "A primary key has been added on %s" msgstr "Osnovni ključ je upravo dodan %s" -#: tbl_structure.php:400 tbl_structure.php:414 tbl_structure.php:428 +#: tbl_structure.php:398 tbl_structure.php:412 tbl_structure.php:426 #, php-format msgid "An index has been added on %s" msgstr "Ključ je upravo dodan %s" -#: tbl_structure.php:506 tbl_structure.php:508 +#: tbl_structure.php:504 tbl_structure.php:506 msgid "Relation view" msgstr "Relacioni pogled" -#: tbl_structure.php:515 tbl_structure.php:517 +#: tbl_structure.php:513 tbl_structure.php:515 msgid "Propose table structure" msgstr "Predloži strukturu tabele" -#: tbl_structure.php:540 +#: tbl_structure.php:538 #, fuzzy msgid "Add column" msgstr "Dodaj novo polje" -#: tbl_structure.php:554 +#: tbl_structure.php:552 msgid "At End of Table" msgstr "Na kraju tabele" -#: tbl_structure.php:555 +#: tbl_structure.php:553 msgid "At Beginning of Table" msgstr "Na početku tabele" -#: tbl_structure.php:556 +#: tbl_structure.php:554 #, php-format msgid "After %s" msgstr "Poslije %s" -#: tbl_structure.php:594 +#: tbl_structure.php:592 #, fuzzy, php-format #| msgid "Create an index on %s columns" msgid "Create an index on  %s columns" msgstr "Napravi ključ na %s kolona" -#: tbl_structure.php:756 +#: tbl_structure.php:754 msgid "partitioned" msgstr "" @@ -8338,10 +8384,6 @@ msgstr "Promjeni ime tabele u " #~ msgid "Process list" #~ msgstr "Lista procesa" -#, fuzzy -#~ msgid "Reload privileges" -#~ msgstr "Globalne privilegije" - #~ msgid "" #~ "The users will still have the USAGE privilege until the privileges are " #~ "reloaded." diff --git a/po/ca.po b/po/ca.po index 805e2be9b..587ad6d2a 100755 --- a/po/ca.po +++ b/po/ca.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-06-13 09:03-0400\n" +"POT-Creation-Date: 2010-06-22 00:55+0530\n" "PO-Revision-Date: 2010-03-12 09:13+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: catalan \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:1514 +#: libraries/display_tbl.lib.php:417 server_privileges.php:1534 msgid "Show all" msgstr "Mostra tot" -#: browse_foreigners.php:82 libraries/common.lib.php:2313 +#: browse_foreigners.php:82 libraries/common.lib.php:2317 #: 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,18 +37,18 @@ 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:2831 -#: libraries/common.lib.php:2838 libraries/db_links.inc.php:75 +#: db_structure.php:106 libraries/common.lib.php:2835 +#: libraries/common.lib.php:2842 libraries/db_links.inc.php:75 #: libraries/tbl_links.inc.php:63 msgid "Search" msgstr "Cerca" -#: browse_foreigners.php:153 db_operations.php:385 db_operations.php:429 -#: db_operations.php:499 db_operations.php:609 db_search.php:362 -#: db_structure.php:567 js/messages.php:48 libraries/Config.class.php:1046 +#: browse_foreigners.php:153 db_operations.php:394 db_operations.php:438 +#: db_operations.php:508 db_operations.php:618 db_search.php:362 +#: db_structure.php:565 js/messages.php:53 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:1335 libraries/common.lib.php:2288 +#: libraries/common.lib.php:1335 libraries/common.lib.php:2292 #: 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,15 +59,15 @@ 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:664 server_privileges.php:1624 -#: server_privileges.php:1971 server_privileges.php:2018 -#: server_privileges.php:2057 server_replication.php:235 +#: server_privileges.php:665 server_privileges.php:1644 +#: server_privileges.php:1991 server_privileges.php:2038 +#: server_privileges.php:2078 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 #: tbl_operations.php:302 tbl_operations.php:499 tbl_operations.php:561 -#: tbl_operations.php:681 tbl_select.php:327 tbl_structure.php:562 -#: tbl_structure.php:597 tbl_tracking.php:395 tbl_tracking.php:512 +#: tbl_operations.php:681 tbl_select.php:327 tbl_structure.php:560 +#: tbl_structure.php:595 tbl_tracking.php:395 tbl_tracking.php:512 #: view_create.php:182 view_operations.php:101 msgid "Go" msgstr "Executa" @@ -93,7 +93,7 @@ msgstr "Fes servir aquest valor" msgid "Database %1$s has been created." msgstr "S'ha creat la base de dades %1$s." -#: db_datadict.php:49 db_operations.php:378 +#: db_datadict.php:49 db_operations.php:387 msgid "Database comment: " msgstr "Comentaris de la Base de Dades: " @@ -120,10 +120,10 @@ msgstr "Nom de les columnes" #: 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:2070 +#: pdf_schema.php:1263 pdf_schema.php:1284 server_privileges.php:2091 #: 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 +#: tbl_structure.php:657 tbl_tracking.php:274 tbl_tracking.php:321 msgid "Type" msgstr "Tipus" @@ -136,7 +136,7 @@ msgstr "Tipus" msgid "Null" msgstr "Nul" -#: db_datadict.php:178 db_structure.php:501 libraries/export/htmlword.php:247 +#: db_datadict.php:178 db_structure.php:499 libraries/export/htmlword.php:247 #: libraries/export/latex.php:360 libraries/export/odt.php:303 #: libraries/export/texytext.php:236 libraries/tbl_properties.inc.php:106 #: pdf_schema.php:1266 pdf_schema.php:1287 tbl_printview.php:146 @@ -164,9 +164,9 @@ msgstr "Comentaris" #: 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: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 +#: pdf_schema.php:1344 server_privileges.php:1588 server_privileges.php:1599 +#: server_privileges.php:1909 server_privileges.php:1914 +#: server_privileges.php:2208 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 +180,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:1565 -#: server_privileges.php:1579 server_privileges.php:1889 -#: server_privileges.php:1892 server_privileges.php:2187 sql.php:193 +#: server_databases.php:64 server_privileges.php:1585 +#: server_privileges.php:1599 server_privileges.php:1909 +#: server_privileges.php:1912 server_privileges.php:2208 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" @@ -209,125 +209,121 @@ msgstr "Tria Tot" msgid "Unselect All" msgstr "Desmarca tot" -#: db_operations.php:38 tbl_create.php:54 +#: db_operations.php:43 tbl_create.php:54 msgid "The database name is empty!" msgstr "El nom de la base de dades és buit!" -#: db_operations.php:236 +#: db_operations.php:241 #, php-format msgid "Database %s has been renamed to %s" msgstr "Base de dades %s reanomenada a %s" -#: db_operations.php:240 +#: db_operations.php:245 #, php-format msgid "Database %s has been copied to %s" msgstr "La Base de dades %s s'ha copiat a %s" -#: db_operations.php:412 +#: db_operations.php:421 msgid "Rename database to" msgstr "Reanomena base de dades a" -#: db_operations.php:417 server_processlist.php:57 +#: db_operations.php:426 server_processlist.php:57 msgid "Command" msgstr "Ordre" -#: db_operations.php:429 tbl_change.php:1143 -msgid "and then" -msgstr "i llavors" - -#: db_operations.php:455 +#: db_operations.php:464 msgid "Copy database to" msgstr "Còpia base de dades a" -#: db_operations.php:462 tbl_operations.php:528 tbl_tracking.php:388 +#: db_operations.php:471 tbl_operations.php:528 tbl_tracking.php:388 msgid "Structure only" msgstr "Només l'estructura" -#: db_operations.php:463 tbl_operations.php:529 tbl_tracking.php:390 +#: db_operations.php:472 tbl_operations.php:529 tbl_tracking.php:390 msgid "Structure and data" msgstr "Estructura i dades" -#: db_operations.php:464 tbl_operations.php:530 tbl_tracking.php:389 +#: db_operations.php:473 tbl_operations.php:530 tbl_tracking.php:389 msgid "Data only" msgstr "Només dades" -#: db_operations.php:472 +#: db_operations.php:481 msgid "CREATE DATABASE before copying" msgstr "Inclou CREATE DATABASE abans de copiar" -#: db_operations.php:475 libraries/export/sql.php:52 +#: db_operations.php:484 libraries/export/sql.php:52 #: libraries/export/sql.php:74 libraries/export/sql.php:76 #: libraries/export/sql.php:82 tbl_operations.php:536 #, php-format msgid "Add %s" msgstr "Afegeix %s" -#: db_operations.php:479 libraries/export/sql.php:78 tbl_operations.php:299 +#: db_operations.php:488 libraries/export/sql.php:78 tbl_operations.php:299 #: tbl_operations.php:538 msgid "Add AUTO_INCREMENT value" msgstr "Afegeix valor AUTO_INCREMENT" -#: db_operations.php:483 tbl_operations.php:545 +#: db_operations.php:492 tbl_operations.php:545 msgid "Add constraints" msgstr "Afegeix restriccions" -#: db_operations.php:496 +#: db_operations.php:505 msgid "Switch to copied database" msgstr "Canvia a la base de dades copiada" -#: db_operations.php:537 +#: db_operations.php:546 msgid "BLOB Repository" msgstr "Repositori BLOB" -#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1352 -#: libraries/server_links.inc.php:49 server_processlist.php:59 +#: db_operations.php:549 db_tracking.php:76 libraries/common.lib.php:1352 +#: libraries/server_links.inc.php:50 server_processlist.php:59 #: tbl_tracking.php:596 test/theme.php:101 msgid "Status" msgstr "Estat" -#: db_operations.php:548 +#: db_operations.php:557 #, fuzzy #| msgid "Enabled" msgctxt "BLOB repository" msgid "Enabled" msgstr "Activat" -#: db_operations.php:552 +#: db_operations.php:561 msgid "Disable" msgstr "Desactiva" -#: db_operations.php:562 +#: db_operations.php:571 msgid "Damaged" msgstr "Fet malbé" -#: db_operations.php:566 +#: db_operations.php:575 #, fuzzy #| msgid "Repair" msgctxt "BLOB repository" msgid "Repair" msgstr "Repara" -#: db_operations.php:574 +#: db_operations.php:583 #, fuzzy #| msgid "Disabled" msgctxt "BLOB repository" msgid "Disabled" msgstr "Desactivat" -#: db_operations.php:578 +#: db_operations.php:587 msgid "Enable" msgstr "Activa" -#: db_operations.php:602 libraries/Index.class.php:448 +#: db_operations.php:611 libraries/Index.class.php:448 #: libraries/db_structure.lib.php:62 libraries/mysql_charsets.lib.php:107 #: libraries/tbl_properties.inc.php:107 libraries/tbl_properties.inc.php:730 #: server_collations.php:54 server_collations.php:66 server_databases.php:111 #: tbl_operations.php:363 tbl_select.php:137 tbl_structure.php:179 -#: tbl_structure.php:767 tbl_tracking.php:275 tbl_tracking.php:326 +#: tbl_structure.php:765 tbl_tracking.php:275 tbl_tracking.php:326 msgid "Collation" msgstr "Ordenació" -#: db_operations.php:615 main.php:316 pdf_schema.php:34 +#: db_operations.php:624 main.php:316 pdf_schema.php:34 #, php-format msgid "" "The additional features for working with linked tables have been " @@ -336,14 +332,14 @@ msgstr "" "Les característiques addicionals per treballar amb taules enllaçades s'han " "desactivat. Per saber perquè prem a %saquí%s." -#: db_operations.php:648 +#: db_operations.php:657 msgid "Edit PDF Pages" msgstr "Edita pàgines 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:1665 -#: server_privileges.php:1721 server_privileges.php:1985 +#: libraries/header.inc.php:130 pdf_pages.php:424 server_privileges.php:1685 +#: server_privileges.php:1741 server_privileges.php:2005 #: server_synchronize.php:423 server_synchronize.php:866 tbl_tracking.php:592 #: test/theme.php:75 msgid "Table" @@ -352,7 +348,7 @@ msgstr "Taula" #: db_printview.php:105 libraries/db_structure.lib.php:56 #: libraries/header_printview.inc.php:63 libraries/import.lib.php:146 #: navigation.php:638 navigation.php:660 server_databases.php:122 -#: tbl_printview.php:394 tbl_structure.php:365 tbl_structure.php:777 +#: tbl_printview.php:394 tbl_structure.php:365 tbl_structure.php:775 msgid "Rows" msgstr "Fila" @@ -360,30 +356,30 @@ msgstr "Fila" msgid "Size" msgstr "Mida" -#: db_printview.php:162 db_structure.php:457 libraries/export/sql.php:559 +#: db_printview.php:162 db_structure.php:455 libraries/export/sql.php:559 #: libraries/export/sql.php:899 msgid "in use" msgstr "en ús" #: db_printview.php:187 libraries/db_info.inc.php:88 #: libraries/export/sql.php:514 pdf_schema.php:1241 tbl_printview.php:434 -#: tbl_structure.php:809 +#: tbl_structure.php:807 msgid "Creation" msgstr "Creació" #: db_printview.php:196 libraries/db_info.inc.php:93 #: libraries/export/sql.php:519 pdf_schema.php:1246 tbl_printview.php:444 -#: tbl_structure.php:817 +#: tbl_structure.php:815 msgid "Last update" msgstr "Darrera actualització" #: db_printview.php:205 libraries/db_info.inc.php:98 #: libraries/export/sql.php:524 pdf_schema.php:1251 tbl_printview.php:454 -#: tbl_structure.php:825 +#: tbl_structure.php:823 msgid "Last check" msgstr "Darrera comprovació" -#: db_printview.php:222 db_structure.php:480 +#: db_printview.php:222 db_structure.php:478 #, fuzzy, php-format #| msgid "%s table(s)" msgid "%s table" @@ -444,7 +440,7 @@ msgstr "Sup" #: 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:297 tbl_change.php:1031 tbl_indexes.php:250 +#: server_privileges.php:298 tbl_change.php:1031 tbl_indexes.php:250 #: tbl_select.php:288 msgid "Or" msgstr "O" @@ -517,9 +513,9 @@ msgstr "%s resultat(s) a la taula %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:2833 +#: db_structure.php:105 libraries/common.lib.php:2837 #: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50 -#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:467 +#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:465 msgid "Browse" msgstr "Navega" @@ -564,36 +560,36 @@ msgstr "Camp interior:" #: 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:2832 libraries/sql_query_form.lib.php:334 +#: libraries/common.lib.php:2836 libraries/sql_query_form.lib.php:334 #: libraries/sql_query_form.lib.php:337 libraries/tbl_links.inc.php:76 msgid "Insert" msgstr "Insereix" #: db_structure.php:83 db_structure.php:96 db_structure.php:109 -#: libraries/common.lib.php:2829 libraries/common.lib.php:2836 +#: libraries/common.lib.php:2833 libraries/common.lib.php:2840 #: 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:1106 #: libraries/tbl_links.inc.php:56 pmd_general.php:134 -#: server_privileges.php:593 server_replication.php:315 tbl_tracking.php:269 +#: server_privileges.php:594 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:1656 +#: db_structure.php:543 db_structure.php:544 db_tracking.php:91 +#: libraries/Index.class.php:483 libraries/common.lib.php:1657 #: 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 -#: tbl_structure.php:152 tbl_structure.php:471 +#: tbl_structure.php:152 tbl_structure.php:469 msgid "Drop" 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:1655 +#: db_structure.php:541 db_structure.php:542 libraries/common.lib.php:1656 #: libraries/mult_submits.inc.php:39 libraries/tbl_links.inc.php:105 msgid "Empty" msgstr "Buida" @@ -603,25 +599,25 @@ msgstr "Buida" msgid "Table %s has been emptied" msgstr "S'ha buidat la taula %s" -#: db_structure.php:326 libraries/tbl_links.inc.php:133 +#: db_structure.php:325 libraries/tbl_links.inc.php:133 #, php-format msgid "View %s has been dropped" msgstr "Vista %s esborrada" -#: db_structure.php:326 libraries/tbl_links.inc.php:133 +#: db_structure.php:325 libraries/tbl_links.inc.php:133 #, php-format msgid "Table %s has been dropped" msgstr "S'ha esborrat la taula %s" -#: db_structure.php:333 +#: db_structure.php:332 msgid "Tracking is active." msgstr "El seguiment està actiu." -#: db_structure.php:335 +#: db_structure.php:334 msgid "Tracking is not active." msgstr "El seguiment no està actiu." -#: db_structure.php:420 libraries/display_tbl.lib.php:1944 +#: db_structure.php:418 libraries/display_tbl.lib.php:1944 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation%" @@ -629,86 +625,86 @@ msgid "" msgstr "" "Aquesta vista té al menys aques nombre de files. Consulta %sdocumentation%s." -#: db_structure.php:434 db_structure.php:448 libraries/header.inc.php:126 +#: db_structure.php:432 db_structure.php:446 libraries/header.inc.php:130 #: libraries/tbl_info.inc.php:66 tbl_structure.php:185 test/theme.php:74 msgid "View" msgstr "Vista" -#: db_structure.php:485 libraries/db_structure.lib.php:49 -#: libraries/server_links.inc.php:70 server_replication.php:33 +#: db_structure.php:483 libraries/db_structure.lib.php:49 +#: libraries/server_links.inc.php:71 server_replication.php:33 #: server_replication.php:164 server_status.php:369 msgid "Replication" msgstr "Replicació" -#: db_structure.php:489 +#: db_structure.php:487 msgid "Sum" msgstr "Suma" -#: db_structure.php:496 libraries/StorageEngine.class.php:356 +#: db_structure.php:494 libraries/StorageEngine.class.php:356 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "%s és el motor d'emmagatzematge per defecte en aquest servidor MySQL." -#: db_structure.php:524 db_structure.php:541 db_structure.php:542 +#: db_structure.php:522 db_structure.php:539 db_structure.php:540 #: 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:1596 tbl_structure.php:455 -#: tbl_structure.php:464 +#: server_databases.php:351 server_privileges.php:1616 tbl_structure.php:453 +#: tbl_structure.php:462 msgid "With selected:" msgstr "Amb marca:" -#: db_structure.php:527 libraries/display_tbl.lib.php:2076 -#: server_databases.php:348 server_privileges.php:569 -#: server_privileges.php:1599 tbl_structure.php:458 +#: db_structure.php:525 libraries/display_tbl.lib.php:2076 +#: server_databases.php:348 server_privileges.php:570 +#: server_privileges.php:1619 tbl_structure.php:456 msgid "Check All" msgstr "Marcar-ho tot" -#: db_structure.php:531 libraries/display_tbl.lib.php:2077 +#: db_structure.php:529 libraries/display_tbl.lib.php:2077 #: libraries/replication_gui.lib.php:33 server_databases.php:350 -#: server_privileges.php:572 server_privileges.php:1603 tbl_structure.php:462 +#: server_privileges.php:573 server_privileges.php:1623 tbl_structure.php:460 msgid "Uncheck All" msgstr "Desmarcar tot" -#: db_structure.php:536 +#: db_structure.php:534 msgid "Check tables having overhead" msgstr "Comprova taules desfragmentades" -#: db_structure.php:547 db_structure.php:548 db_structure.php:599 +#: db_structure.php:545 db_structure.php:546 db_structure.php:597 #: libraries/display_tbl.lib.php:2180 libraries/mult_submits.inc.php:28 -#: tbl_structure.php:492 tbl_structure.php:494 +#: tbl_structure.php:490 tbl_structure.php:492 msgid "Print view" msgstr "Imprimeix vista" -#: db_structure.php:549 db_structure.php:550 libraries/mult_submits.inc.php:42 +#: db_structure.php:547 db_structure.php:548 libraries/mult_submits.inc.php:42 #: tbl_operations.php:581 msgid "Check table" msgstr "Verifica la taula" -#: db_structure.php:551 db_structure.php:552 libraries/mult_submits.inc.php:47 -#: tbl_operations.php:621 tbl_structure.php:709 tbl_structure.php:711 +#: db_structure.php:549 db_structure.php:550 libraries/mult_submits.inc.php:47 +#: tbl_operations.php:621 tbl_structure.php:707 tbl_structure.php:709 msgid "Optimize table" msgstr "Optimitza la taula" -#: db_structure.php:553 db_structure.php:554 libraries/mult_submits.inc.php:52 +#: db_structure.php:551 db_structure.php:552 libraries/mult_submits.inc.php:52 #: tbl_operations.php:611 msgid "Repair table" msgstr "Repara la taula" -#: db_structure.php:555 db_structure.php:556 libraries/mult_submits.inc.php:57 +#: db_structure.php:553 db_structure.php:554 libraries/mult_submits.inc.php:57 #: tbl_operations.php:601 msgid "Analyze table" msgstr "Analitza la taula" -#: db_structure.php:557 db_structure.php:558 libraries/db_links.inc.php:71 +#: db_structure.php:555 db_structure.php:556 libraries/db_links.inc.php:71 #: 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:1380 +#: libraries/server_links.inc.php:85 libraries/tbl_links.inc.php:82 +#: pmd_pdf.php:84 pmd_pdf.php:109 server_privileges.php:1397 #: setup/frames/menu.inc.php:22 tbl_row_action.php:59 msgid "Export" msgstr "Exporta" -#: db_structure.php:606 libraries/display_pdf_schema.lib.php:44 +#: db_structure.php:604 libraries/display_pdf_schema.lib.php:44 msgid "Data Dictionary" msgstr "Diccionari de Dades" @@ -719,10 +715,10 @@ msgstr "Taules seguides" #: db_tracking.php:71 libraries/export/htmlword.php:86 #: libraries/export/latex.php:148 libraries/export/odt.php:113 #: libraries/export/sql.php:342 libraries/export/texytext.php:84 -#: libraries/export/xml.php:255 libraries/header.inc.php:106 +#: libraries/export/xml.php:255 libraries/header.inc.php:110 #: libraries/header_printview.inc.php:58 server_databases.php:169 -#: server_privileges.php:1660 server_privileges.php:1721 -#: server_privileges.php:1979 server_processlist.php:56 +#: server_privileges.php:1680 server_privileges.php:1741 +#: server_privileges.php:1999 server_processlist.php:56 #: server_synchronize.php:1179 server_synchronize.php:1183 #: tbl_tracking.php:591 test/theme.php:65 msgid "Database" @@ -742,8 +738,8 @@ msgstr "Actualitzat" #: db_tracking.php:77 libraries/Index.class.php:440 #: libraries/db_structure.lib.php:53 server_databases.php:203 -#: server_privileges.php:1542 server_privileges.php:1725 -#: server_privileges.php:2073 tbl_structure.php:187 +#: server_privileges.php:1562 server_privileges.php:1745 +#: server_privileges.php:2094 tbl_structure.php:187 msgid "Action" msgstr "Acció" @@ -777,8 +773,8 @@ msgstr "Instantània de l'estructura" msgid "Untracked tables" msgstr "Taules no seguides" -#: db_tracking.php:172 db_tracking.php:174 tbl_structure.php:528 -#: tbl_structure.php:530 +#: db_tracking.php:172 db_tracking.php:174 tbl_structure.php:526 +#: tbl_structure.php:528 msgid "Track table" msgstr "Segueix taula" @@ -948,187 +944,236 @@ msgstr "El nom del servidor és buit!" msgid "The user name is empty!" msgstr "El nom d'usuari és buit!" -#: js/messages.php:44 server_privileges.php:1236 user_password.php:70 +#: js/messages.php:44 server_privileges.php:1241 user_password.php:70 msgid "The password is empty!" msgstr "La contrasenya és buida!" -#: js/messages.php:45 server_privileges.php:1234 user_password.php:73 +#: js/messages.php:45 server_privileges.php:1239 user_password.php:73 msgid "The passwords aren't the same!" msgstr "Les contrasenyes no coincideixen!" -#: js/messages.php:49 pmd_general.php:342 pmd_general.php:379 +#: js/messages.php:46 +#, fuzzy +#| msgid "Add a new User" +msgid "Add a New User" +msgstr "Afegeix un usuari nou" + +#: js/messages.php:47 js/messages.php:54 pmd_general.php:342 +#: pmd_general.php:379 msgid "Cancel" msgstr "Cancel.lar" -#: js/messages.php:52 pmd_save_pos.php:54 +#: js/messages.php:48 +#, fuzzy +#| msgid "Create version" +msgid "Create User" +msgstr "Crea versió" + +#: js/messages.php:49 +#, fuzzy +#| msgid "Reload privileges" +msgid "Reloading Privileges" +msgstr "Recarrega els permisos" + +#: js/messages.php:50 +#, fuzzy +#| msgid "Remove selected users" +msgid "Removing Selected Users" +msgstr "Treu els usuaris triats" + +#: js/messages.php:57 +#, fuzzy +#| msgid "Load" +msgid "Loading" +msgstr "Carregar" + +#: js/messages.php:58 +#, fuzzy +#| msgid "Processes" +msgid "Processing Request" +msgstr "Processos" + +#: js/messages.php:59 +msgid "Error in Processing Request" +msgstr "" + +#: js/messages.php:60 +msgid "Dropping Column" +msgstr "" + +#: js/messages.php:61 +msgid "Adding Primary Key" +msgstr "" + +#: js/messages.php:64 pmd_save_pos.php:54 msgid "Modifications have been saved" msgstr "Les modificacions han estat desades" -#: js/messages.php:53 pmd_relation_upd.php:49 +#: js/messages.php:65 pmd_relation_upd.php:49 msgid "Relation deleted" msgstr "Relació esborrada" -#: js/messages.php:54 pmd_relation_new.php:64 +#: js/messages.php:66 pmd_relation_new.php:64 msgid "FOREIGN KEY relation added" msgstr "Afegida relació de FOREIGN KEY" -#: js/messages.php:55 pmd_relation_new.php:86 +#: js/messages.php:67 pmd_relation_new.php:86 msgid "Internal relation added" msgstr "Afegida relació interna" -#: js/messages.php:56 pmd_relation_new.php:63 pmd_relation_new.php:88 +#: js/messages.php:68 pmd_relation_new.php:63 pmd_relation_new.php:88 msgid "Error: Relation not added." msgstr "Error: La relació no s'ha afegit." -#: js/messages.php:57 pmd_relation_new.php:31 +#: js/messages.php:69 pmd_relation_new.php:31 msgid "Error: relation already exists." msgstr "Error: La relació ja existeix." -#: js/messages.php:58 +#: js/messages.php:70 msgid "Error saving coordinates for Designer." msgstr "Error desant coordenades per al Dissenyador." -#: js/messages.php:59 libraries/relation.lib.php:107 +#: js/messages.php:71 libraries/relation.lib.php:107 #: libraries/relation.lib.php:119 msgid "General relation features" msgstr "Característiques generals de relacions" -#: js/messages.php:59 libraries/relation.lib.php:101 +#: js/messages.php:71 libraries/relation.lib.php:101 #: libraries/relation.lib.php:108 msgid "Disabled" msgstr "Desactivat" -#: js/messages.php:60 +#: js/messages.php:72 msgid "Select referenced key" msgstr "Tria la clau referenciada" -#: js/messages.php:61 +#: js/messages.php:73 msgid "Select Foreign Key" msgstr "Tria una clau externa" -#: js/messages.php:62 +#: js/messages.php:74 msgid "Please select the primary key or a unique key" msgstr "Tria la clau principal o una clau única" -#: js/messages.php:63 pmd_general.php:77 tbl_relation.php:548 +#: js/messages.php:75 pmd_general.php:77 tbl_relation.php:548 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" msgstr "Tria el camp a mostrar" #. l10n: Display text for calendar close link -#: js/messages.php:73 +#: js/messages.php:85 #, fuzzy #| msgid "Donate" msgid "Done" msgstr "Donacions" #. l10n: Display text for previous month link in calendar -#: js/messages.php:75 +#: js/messages.php:87 #, fuzzy #| msgid "Previous" msgid "Prev" msgstr "Anterior" #. l10n: Display text for next month link in calendar -#: js/messages.php:77 libraries/common.lib.php:2353 -#: libraries/common.lib.php:2356 libraries/display_tbl.lib.php:338 +#: js/messages.php:89 libraries/common.lib.php:2357 +#: libraries/common.lib.php:2360 libraries/display_tbl.lib.php:338 #: server_binlog.php:205 server_binlog.php:207 tbl_printview.php:424 -#: tbl_structure.php:801 +#: tbl_structure.php:799 msgid "Next" msgstr "Següent" #. l10n: Display text for current month link in calendar -#: js/messages.php:79 +#: js/messages.php:91 #, fuzzy #| msgid "Total" msgid "Today" msgstr "Total" -#: js/messages.php:82 +#: js/messages.php:94 #, fuzzy #| msgid "Binary" msgid "January" msgstr " Binari " -#: js/messages.php:83 +#: js/messages.php:95 msgid "February" msgstr "" -#: js/messages.php:84 +#: js/messages.php:96 #, fuzzy #| msgid "Mar" msgid "March" msgstr "Mar" -#: js/messages.php:85 +#: js/messages.php:97 #, fuzzy #| msgid "Apr" msgid "April" msgstr "Abr" -#: js/messages.php:86 +#: js/messages.php:98 msgid "May" msgstr "Mai" -#: js/messages.php:87 +#: js/messages.php:99 #, fuzzy #| msgid "Jun" msgid "June" msgstr "Jun" -#: js/messages.php:88 +#: js/messages.php:100 #, fuzzy #| msgid "Jul" msgid "July" msgstr "Jul" -#: js/messages.php:89 +#: js/messages.php:101 #, fuzzy #| msgid "Aug" msgid "August" msgstr "Ago" -#: js/messages.php:90 +#: js/messages.php:102 msgid "September" msgstr "" -#: js/messages.php:91 +#: js/messages.php:103 #, fuzzy #| msgid "Oct" msgid "October" msgstr "Oct" -#: js/messages.php:92 +#: js/messages.php:104 msgid "November" msgstr "" -#: js/messages.php:93 +#: js/messages.php:105 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:97 libraries/common.lib.php:1557 +#: js/messages.php:109 libraries/common.lib.php:1557 msgid "Jan" msgstr "Gen" #. l10n: Short month name -#: js/messages.php:99 libraries/common.lib.php:1559 +#: js/messages.php:111 libraries/common.lib.php:1559 msgid "Feb" msgstr "Feb" #. l10n: Short month name -#: js/messages.php:101 libraries/common.lib.php:1561 +#: js/messages.php:113 libraries/common.lib.php:1561 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:103 libraries/common.lib.php:1563 +#: js/messages.php:115 libraries/common.lib.php:1563 msgid "Apr" msgstr "Abr" #. l10n: Short month name -#: js/messages.php:105 libraries/common.lib.php:1565 +#: js/messages.php:117 libraries/common.lib.php:1565 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1136,178 +1181,178 @@ msgid "May" msgstr "Mai" #. l10n: Short month name -#: js/messages.php:107 libraries/common.lib.php:1567 +#: js/messages.php:119 libraries/common.lib.php:1567 msgid "Jun" msgstr "Jun" #. l10n: Short month name -#: js/messages.php:109 libraries/common.lib.php:1569 +#: js/messages.php:121 libraries/common.lib.php:1569 msgid "Jul" msgstr "Jul" #. l10n: Short month name -#: js/messages.php:111 libraries/common.lib.php:1571 +#: js/messages.php:123 libraries/common.lib.php:1571 msgid "Aug" msgstr "Ago" #. l10n: Short month name -#: js/messages.php:113 libraries/common.lib.php:1573 +#: js/messages.php:125 libraries/common.lib.php:1573 msgid "Sep" msgstr "Set" #. l10n: Short month name -#: js/messages.php:115 libraries/common.lib.php:1575 +#: js/messages.php:127 libraries/common.lib.php:1575 msgid "Oct" msgstr "Oct" #. l10n: Short month name -#: js/messages.php:117 libraries/common.lib.php:1577 +#: js/messages.php:129 libraries/common.lib.php:1577 msgid "Nov" msgstr "Nov" #. l10n: Short month name -#: js/messages.php:119 libraries/common.lib.php:1579 +#: js/messages.php:131 libraries/common.lib.php:1579 msgid "Dec" msgstr "Dec" -#: js/messages.php:122 +#: js/messages.php:134 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "Diu" -#: js/messages.php:123 +#: js/messages.php:135 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "Dll" -#: js/messages.php:124 +#: js/messages.php:136 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "Dma" -#: js/messages.php:125 +#: js/messages.php:137 msgid "Wednesday" msgstr "" -#: js/messages.php:126 +#: js/messages.php:138 msgid "Thursday" msgstr "" -#: js/messages.php:127 +#: js/messages.php:139 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "Div" -#: js/messages.php:128 +#: js/messages.php:140 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:132 libraries/common.lib.php:1582 +#: js/messages.php:144 libraries/common.lib.php:1582 msgid "Sun" msgstr "Diu" #. l10n: Short week day name -#: js/messages.php:134 libraries/common.lib.php:1584 +#: js/messages.php:146 libraries/common.lib.php:1584 msgid "Mon" msgstr "Dll" #. l10n: Short week day name -#: js/messages.php:136 libraries/common.lib.php:1586 +#: js/messages.php:148 libraries/common.lib.php:1586 msgid "Tue" msgstr "Dma" #. l10n: Short week day name -#: js/messages.php:138 libraries/common.lib.php:1588 +#: js/messages.php:150 libraries/common.lib.php:1588 msgid "Wed" msgstr "Dcr" #. l10n: Short week day name -#: js/messages.php:140 libraries/common.lib.php:1590 +#: js/messages.php:152 libraries/common.lib.php:1590 msgid "Thu" msgstr "Dij" #. l10n: Short week day name -#: js/messages.php:142 libraries/common.lib.php:1592 +#: js/messages.php:154 libraries/common.lib.php:1592 msgid "Fri" msgstr "Div" #. l10n: Short week day name -#: js/messages.php:144 libraries/common.lib.php:1594 +#: js/messages.php:156 libraries/common.lib.php:1594 msgid "Sat" msgstr "Dis" #. l10n: Minimal week day name -#: js/messages.php:148 +#: js/messages.php:160 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "Diu" #. l10n: Minimal week day name -#: js/messages.php:150 +#: js/messages.php:162 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "Dll" #. l10n: Minimal week day name -#: js/messages.php:152 +#: js/messages.php:164 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "Dma" #. l10n: Minimal week day name -#: js/messages.php:154 +#: js/messages.php:166 #, fuzzy #| msgid "Wed" msgid "We" msgstr "Dcr" #. l10n: Minimal week day name -#: js/messages.php:156 +#: js/messages.php:168 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "Dij" #. l10n: Minimal week day name -#: js/messages.php:158 +#: js/messages.php:170 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "Div" #. l10n: Minimal week day name -#: js/messages.php:160 +#: js/messages.php:172 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "Dis" #. l10n: Column header for week of the year in calendar -#: js/messages.php:162 +#: js/messages.php:174 #, fuzzy #| msgid "Wiki" msgid "Wk" msgstr "Wiki" -#: js/messages.php:164 +#: js/messages.php:176 msgid "Hour" msgstr "" -#: js/messages.php:165 +#: js/messages.php:177 #, fuzzy #| msgid "in use" msgid "Minute" msgstr "en ús" -#: js/messages.php:166 +#: js/messages.php:178 #, fuzzy #| msgid "per second" msgid "Second" @@ -1367,7 +1412,7 @@ msgstr "Indexos" #: libraries/Index.class.php:444 libraries/mult_submits.inc.php:103 #: libraries/tbl_properties.inc.php:519 tbl_structure.php:33 -#: tbl_structure.php:155 tbl_structure.php:159 tbl_structure.php:474 +#: tbl_structure.php:155 tbl_structure.php:159 tbl_structure.php:472 #: tbl_tracking.php:322 msgid "Unique" msgstr "Única" @@ -1410,8 +1455,8 @@ msgstr "" "Els indexs %1$s i %2$s semblen iguals i un d'ells possiblement es podria " "esborrar." -#: libraries/List_Database.class.php:431 libraries/server_links.inc.php:41 -#: server_databases.php:88 server_privileges.php:1660 +#: libraries/List_Database.class.php:431 libraries/server_links.inc.php:42 +#: server_databases.php:88 server_privileges.php:1680 #: setup/lib/messages.inc.php:110 test/theme.php:93 msgid "Databases" msgstr "Bases de dades" @@ -1584,7 +1629,7 @@ msgstr "Contrasenya:" msgid "Server Choice" msgstr "Elecció de Servidor" -#: libraries/auth/cookie.auth.lib.php:320 libraries/header.inc.php:59 +#: libraries/auth/cookie.auth.lib.php:320 libraries/header.inc.php:63 msgid "Cookies must be enabled past this point." msgstr "" "A partir d'aquest punt és necessari tenir les galetes (cookies) activades." @@ -1667,7 +1712,7 @@ msgstr "" "No es pot utilitzar iconv ni libiconv ni la funció recode_string mentre es " "carrega l'extensió d'informes. Comprova la configuració de php." -#: libraries/common.inc.php:583 +#: libraries/common.inc.php:587 msgid "" "phpMyAdmin was unable to read your configuration file!
This might " "happen if PHP finds a parse error in it or PHP cannot find the file.
Si rebs una pàgina " "en blanc, tot està bé." -#: libraries/common.inc.php:594 +#: libraries/common.inc.php:598 #, fuzzy, php-format #| msgid "Could not load default configuration from: \"%1$s\"" msgid "Could not load default configuration from: %1$s" msgstr "No es pot carregar la configuració per defecte des de: \"%1$s\"" -#: libraries/common.inc.php:599 +#: libraries/common.inc.php:603 msgid "" "The $cfg['PmaAbsoluteUri'] directive MUST be set in your " "configuration file!" @@ -1697,29 +1742,29 @@ msgstr "" "La directiva $cfg['PmaAbsoluteUri'] HA d'estar a l'arxiu de " "configuració!" -#: libraries/common.inc.php:629 +#: libraries/common.inc.php:633 #, fuzzy, php-format #| msgid "Invalid server index: \"%s\"" msgid "Invalid server index: %s" msgstr "Index de servidor invàlid: \"%s\"" -#: libraries/common.inc.php:636 +#: libraries/common.inc.php:640 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" "Nom de host invàlid pel servidor %1$s. Si us plau, reviseu la configuració." -#: libraries/common.inc.php:645 libraries/header.inc.php:96 +#: libraries/common.inc.php:649 libraries/header.inc.php:100 #: libraries/select_server.lib.php:41 libraries/select_server.lib.php:47 #: main.php:185 test/theme.php:57 msgid "Server" msgstr "Servidor" -#: libraries/common.inc.php:823 +#: libraries/common.inc.php:827 msgid "Invalid authentication method set in configuration:" msgstr "Mètode d'identificació incorrecte establert a la configuració:" -#: libraries/common.inc.php:926 +#: libraries/common.inc.php:930 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Es necessari actualitzar a %s %s o posterior." @@ -1854,45 +1899,45 @@ msgstr "," msgid "%B %d, %Y at %I:%M %p" msgstr "%d-%m-%Y a les %H:%M:%S" -#: libraries/common.lib.php:1907 +#: libraries/common.lib.php:1911 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s dies, %s hores, %s minuts i %s segons" -#: libraries/common.lib.php:2322 libraries/common.lib.php:2325 +#: libraries/common.lib.php:2326 libraries/common.lib.php:2329 #: libraries/display_tbl.lib.php:290 server_status.php:719 msgid "Begin" msgstr "Inici" -#: libraries/common.lib.php:2323 libraries/common.lib.php:2326 +#: libraries/common.lib.php:2327 libraries/common.lib.php:2330 #: libraries/display_tbl.lib.php:291 server_binlog.php:168 #: server_binlog.php:170 msgid "Previous" msgstr "Anterior" -#: libraries/common.lib.php:2354 libraries/common.lib.php:2357 +#: libraries/common.lib.php:2358 libraries/common.lib.php:2361 #: libraries/display_tbl.lib.php:353 msgid "End" msgstr "Final" -#: libraries/common.lib.php:2430 +#: libraries/common.lib.php:2434 #, php-format msgid "Jump to database "%s"." msgstr "Vés a la Base de Dades "%s"." -#: libraries/common.lib.php:2450 +#: libraries/common.lib.php:2454 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "La funcionalitat %s es veu afectada per un error conegut, veieu %s" -#: libraries/common.lib.php:2830 libraries/common.lib.php:2837 +#: libraries/common.lib.php:2834 libraries/common.lib.php:2841 #: libraries/db_links.inc.php:68 libraries/export/sql.php:25 -#: libraries/import/sql.php:18 libraries/server_links.inc.php:45 +#: libraries/import/sql.php:18 libraries/server_links.inc.php:46 #: libraries/tbl_links.inc.php:60 querywindow.php:99 test/theme.php:97 msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2839 libraries/db_links.inc.php:104 +#: libraries/common.lib.php:2843 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,15 +1984,15 @@ msgstr "Consulta segons exemple" msgid "Designer" msgstr "Dissenyador" -#: libraries/db_links.inc.php:98 libraries/server_links.inc.php:88 +#: libraries/db_links.inc.php:98 libraries/server_links.inc.php:89 #: libraries/tbl_links.inc.php:91 pmd_pdf.php:84 pmd_pdf.php:110 #: setup/frames/menu.inc.php:21 msgid "Import" msgstr "Importa" -#: libraries/db_links.inc.php:111 libraries/server_links.inc.php:66 -#: server_privileges.php:111 server_privileges.php:1722 -#: server_privileges.php:2071 test/theme.php:117 +#: libraries/db_links.inc.php:111 libraries/server_links.inc.php:67 +#: server_privileges.php:112 server_privileges.php:1742 +#: server_privileges.php:2092 test/theme.php:117 msgid "Privileges" msgstr "Permisos" @@ -1966,7 +2011,7 @@ msgid "" msgstr "Pot ser aproximat. Veieu PFC (FAQ) 3.11" #: libraries/db_structure.lib.php:69 server_databases.php:142 -#: tbl_printview.php:336 tbl_structure.php:682 +#: tbl_printview.php:336 tbl_structure.php:680 msgid "Overhead" msgstr "Defragmentat" @@ -1985,7 +2030,7 @@ msgstr "El servidor no respon" msgid "(or the local MySQL server's socket is not correctly configured)" msgstr "(o el sòcol del servidor local MySQL no està configurat correctament)" -#: libraries/dbi/mysql.dbi.lib.php:362 tbl_structure.php:608 +#: libraries/dbi/mysql.dbi.lib.php:362 tbl_structure.php:606 msgid "Details..." msgstr "Detalls..." @@ -1995,22 +2040,22 @@ msgid "Change password" msgstr "Canvi de contrasenya" #: libraries/display_change_password.lib.php:35 -#: libraries/replication_gui.lib.php:345 server_privileges.php:807 +#: libraries/replication_gui.lib.php:345 server_privileges.php:808 msgid "No Password" msgstr "Sense contrasenya" #: 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:796 -#: server_privileges.php:800 server_privileges.php:811 -#: server_privileges.php:1538 server_synchronize.php:1175 +#: libraries/replication_gui.lib.php:349 server_privileges.php:797 +#: server_privileges.php:801 server_privileges.php:812 +#: server_privileges.php:1558 server_synchronize.php:1175 msgid "Password" msgstr "Contrasenya" #: libraries/display_change_password.lib.php:46 #: libraries/replication_gui.lib.php:353 libraries/replication_gui.lib.php:356 -#: server_privileges.php:815 server_privileges.php:818 +#: server_privileges.php:816 server_privileges.php:819 msgid "Re-type" msgstr "Reescriu" @@ -2025,12 +2070,12 @@ msgid "MySQL 4.0 compatible" msgstr "Compatible amb MySQL 4.0" #: libraries/display_change_password.lib.php:72 -#: libraries/replication_gui.lib.php:360 server_privileges.php:822 +#: libraries/replication_gui.lib.php:360 server_privileges.php:823 msgid "Generate Password" msgstr "Genera una Contrasenya" #: libraries/display_change_password.lib.php:75 -#: libraries/replication_gui.lib.php:363 server_privileges.php:825 +#: libraries/replication_gui.lib.php:363 server_privileges.php:826 msgid "Generate" msgstr "Genera" @@ -2043,8 +2088,8 @@ msgstr "Crea una nova base de dades" msgid "Create" msgstr "Crea" -#: libraries/display_create_database.lib.php:40 server_privileges.php:113 -#: server_privileges.php:1427 server_replication.php:35 +#: libraries/display_create_database.lib.php:40 server_privileges.php:114 +#: server_privileges.php:1447 server_replication.php:35 msgid "No Privileges" msgstr "Sense permisos" @@ -2136,7 +2181,7 @@ msgstr "Compresió" #: 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:1875 server_processlist.php:75 +#: server_privileges.php:1895 server_processlist.php:75 msgid "None" msgstr "Res" @@ -2333,7 +2378,7 @@ msgstr "Classifica per la clau" #: libraries/import/docsql.php:34 libraries/import/ldi.php:47 #: libraries/import/ods.php:30 libraries/import/sql.php:20 #: libraries/import/xls.php:26 libraries/import/xlsx.php:26 -#: libraries/import/xml.php:25 tbl_select.php:267 tbl_structure.php:753 +#: libraries/import/xml.php:25 tbl_select.php:267 tbl_structure.php:751 msgid "Options" msgstr "Opcions" @@ -2410,7 +2455,7 @@ msgstr "La consulta tarda %01.4f seg" #: libraries/display_tbl.lib.php:2089 libraries/mult_submits.inc.php:113 #: querywindow.php:125 querywindow.php:129 querywindow.php:132 -#: tbl_structure.php:25 tbl_structure.php:150 tbl_structure.php:470 +#: tbl_structure.php:25 tbl_structure.php:150 tbl_structure.php:468 msgid "Change" msgstr "Canvi" @@ -2481,7 +2526,7 @@ msgstr "Ús del grup de memòries intermitges" #: libraries/engines/innodb.lib.php:194 server_databases.php:137 #: server_databases.php:305 server_status.php:525 server_status.php:586 -#: server_status.php:607 tbl_printview.php:351 tbl_structure.php:696 +#: server_status.php:607 tbl_printview.php:351 tbl_structure.php:694 msgid "Total" msgstr "Total" @@ -2770,7 +2815,7 @@ msgstr "" "donarà el pròxim número més alt." #: libraries/export/codegen.php:37 setup/lib/messages.inc.php:88 -#: tbl_printview.php:376 tbl_structure.php:737 +#: tbl_printview.php:376 tbl_structure.php:735 msgid "Format" msgstr "Format" @@ -2844,8 +2889,8 @@ 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:576 server_replication.php:316 tbl_printview.php:317 -#: tbl_structure.php:665 +#: server_privileges.php:577 server_replication.php:316 tbl_printview.php:317 +#: tbl_structure.php:663 msgid "Data" msgstr "Dades" @@ -2894,9 +2939,9 @@ msgstr "Tipus 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:731 -#: server_privileges.php:734 server_privileges.php:790 -#: server_privileges.php:1537 server_privileges.php:2069 +#: libraries/replication_gui.lib.php:329 server_privileges.php:732 +#: server_privileges.php:735 server_privileges.php:791 +#: server_privileges.php:1557 server_privileges.php:2090 #: server_processlist.php:55 server_synchronize.php:1159 msgid "Host" msgstr "Servidor" @@ -3091,7 +3136,7 @@ msgstr "Exporta contingut" msgid "Open new phpMyAdmin window" msgstr "Obrir nova finestra de phpMyAdmin" -#: libraries/header.inc.php:115 +#: libraries/header.inc.php:119 #, fuzzy msgid "New table" msgstr "No hi ha taules" @@ -3256,20 +3301,20 @@ 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 +#: tbl_structure.php:471 msgid "Primary" msgstr "Principal" #: libraries/mult_submits.inc.php:98 libraries/tbl_properties.inc.php:116 #: libraries/tbl_properties.inc.php:525 tbl_printview.php:326 #: tbl_structure.php:31 tbl_structure.php:154 tbl_structure.php:158 -#: tbl_structure.php:475 tbl_structure.php:673 +#: tbl_structure.php:473 tbl_structure.php:671 msgid "Index" msgstr "Índex" #: libraries/mult_submits.inc.php:108 libraries/tbl_properties.inc.php:531 #: tbl_structure.php:35 tbl_structure.php:156 tbl_structure.php:160 -#: tbl_structure.php:478 +#: tbl_structure.php:476 msgid "Fulltext" msgstr "Text sencer" @@ -3574,8 +3619,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:711 -#: server_privileges.php:714 server_privileges.php:721 +#: libraries/replication_gui.lib.php:259 server_privileges.php:712 +#: server_privileges.php:715 server_privileges.php:722 #: server_synchronize.php:1171 msgid "User name" msgstr "Nom d'usuari" @@ -3599,7 +3644,7 @@ msgstr "Variable" #: 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 +#: tbl_structure.php:727 msgid "Value" msgstr "Valor" @@ -3619,34 +3664,34 @@ msgstr "" msgid "Add slave replication user" msgstr "Afegeix l'usuari esclau de replicació" -#: libraries/replication_gui.lib.php:254 server_privileges.php:716 +#: libraries/replication_gui.lib.php:254 server_privileges.php:717 msgid "Any user" msgstr "Qualsevol usuari" #: 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 +#: libraries/replication_gui.lib.php:346 server_privileges.php:718 +#: server_privileges.php:785 server_privileges.php:809 +#: server_privileges.php:1948 server_privileges.php:1978 msgid "Use text field" msgstr "Usa camp de text" -#: libraries/replication_gui.lib.php:302 server_privileges.php:764 +#: libraries/replication_gui.lib.php:302 server_privileges.php:765 msgid "Any host" msgstr "Qualsevol servidor" -#: libraries/replication_gui.lib.php:306 server_privileges.php:768 +#: libraries/replication_gui.lib.php:306 server_privileges.php:769 msgid "Local" msgstr "Local" -#: libraries/replication_gui.lib.php:312 server_privileges.php:773 +#: libraries/replication_gui.lib.php:312 server_privileges.php:774 msgid "This Host" msgstr "Aquest Host" -#: libraries/replication_gui.lib.php:318 server_privileges.php:779 +#: libraries/replication_gui.lib.php:318 server_privileges.php:780 msgid "Use Host Table" msgstr "Utilitza la Taula de Hosts" -#: libraries/replication_gui.lib.php:331 server_privileges.php:792 +#: libraries/replication_gui.lib.php:331 server_privileges.php:793 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -3682,29 +3727,29 @@ msgstr "Idioma desconegut: %1$s." msgid "Servers" msgstr "Servidors" -#: libraries/server_links.inc.php:53 server_engines.php:112 +#: libraries/server_links.inc.php:54 server_engines.php:112 #: server_engines.php:116 server_status.php:415 test/theme.php:105 msgid "Variables" msgstr "Variables" -#: libraries/server_links.inc.php:57 test/theme.php:109 +#: libraries/server_links.inc.php:58 test/theme.php:109 msgid "Charsets" msgstr "Jocs de caràcters" -#: libraries/server_links.inc.php:61 test/theme.php:113 +#: libraries/server_links.inc.php:62 test/theme.php:113 msgid "Engines" msgstr "Motors" -#: libraries/server_links.inc.php:76 server_binlog.php:110 +#: libraries/server_links.inc.php:77 server_binlog.php:110 #: server_status.php:364 test/theme.php:121 msgid "Binary log" msgstr "Registre binari" -#: libraries/server_links.inc.php:80 +#: libraries/server_links.inc.php:81 msgid "Processes" msgstr "Processos" -#: libraries/server_links.inc.php:92 server_synchronize.php:1092 +#: libraries/server_links.inc.php:93 server_synchronize.php:1092 #: server_synchronize.php:1100 msgid "Synchronize" msgstr "Sincronitza" @@ -3954,13 +3999,13 @@ msgstr "Definicio de PARTICIÓ" msgid "Save" msgstr "Desa" -#: libraries/tbl_properties.inc.php:780 tbl_structure.php:542 +#: libraries/tbl_properties.inc.php:780 tbl_structure.php:540 #, fuzzy, php-format #| msgid "Add column(s)" msgid "Add %s column(s)" msgstr "Afegeix columna(es)" -#: libraries/tbl_properties.inc.php:784 tbl_structure.php:536 +#: libraries/tbl_properties.inc.php:784 tbl_structure.php:534 #, fuzzy #| msgid "You have to add at least one field." msgid "You have to add at least one column." @@ -4172,8 +4217,8 @@ msgstr "Reinicia" msgid "Protocol version" msgstr "Versió del protocol" -#: main.php:189 server_privileges.php:1389 server_privileges.php:1536 -#: server_privileges.php:1650 server_privileges.php:2068 +#: main.php:189 server_privileges.php:1406 server_privileges.php:1556 +#: server_privileges.php:1670 server_privileges.php:2089 #: server_processlist.php:54 msgid "User" msgstr "Usuari" @@ -4636,114 +4681,114 @@ msgstr "Motors d'emmagatzematge" msgid "View dump (schema) of databases" msgstr "Veure volcat (esquema) de les bases de dades" -#: server_privileges.php:24 server_privileges.php:266 +#: server_privileges.php:25 server_privileges.php:267 msgid "Includes all privileges except GRANT." msgstr "Inclou tots els permisos excepte GRANT (atorgar)." -#: server_privileges.php:25 server_privileges.php:192 -#: server_privileges.php:515 +#: server_privileges.php:26 server_privileges.php:193 +#: server_privileges.php:516 msgid "Allows altering the structure of existing tables." msgstr "Permet alterar l'estructura de taules existents." -#: server_privileges.php:26 server_privileges.php:208 -#: server_privileges.php:521 +#: server_privileges.php:27 server_privileges.php:209 +#: server_privileges.php:522 msgid "Allows altering and dropping stored routines." msgstr "Permet alterar i esborrar rutines enmagatzemades." -#: server_privileges.php:27 server_privileges.php:184 -#: server_privileges.php:514 +#: server_privileges.php:28 server_privileges.php:185 +#: server_privileges.php:515 msgid "Allows creating new databases and tables." msgstr "Permet crear noves bases de dades i taules." -#: server_privileges.php:28 server_privileges.php:207 -#: server_privileges.php:520 +#: server_privileges.php:29 server_privileges.php:208 +#: server_privileges.php:521 msgid "Allows creating stored routines." msgstr "Permet crear rutines enmgatzemades." -#: server_privileges.php:29 server_privileges.php:514 +#: server_privileges.php:30 server_privileges.php:515 msgid "Allows creating new tables." msgstr "Permet crear noves taules." -#: server_privileges.php:30 server_privileges.php:195 -#: server_privileges.php:518 +#: server_privileges.php:31 server_privileges.php:196 +#: server_privileges.php:519 msgid "Allows creating temporary tables." msgstr "Permet crear taules temporals." -#: server_privileges.php:31 server_privileges.php:209 -#: server_privileges.php:554 +#: server_privileges.php:32 server_privileges.php:210 +#: server_privileges.php:555 msgid "Allows creating, dropping and renaming user accounts." msgstr "Permet crear, esborrar i reanomenar comptes d'usuari." -#: server_privileges.php:32 server_privileges.php:199 -#: server_privileges.php:203 server_privileges.php:526 -#: server_privileges.php:530 +#: server_privileges.php:33 server_privileges.php:200 +#: server_privileges.php:204 server_privileges.php:527 +#: server_privileges.php:531 msgid "Allows creating new views." msgstr "Permet crear noves vistes." -#: server_privileges.php:33 server_privileges.php:183 -#: server_privileges.php:506 +#: server_privileges.php:34 server_privileges.php:184 +#: server_privileges.php:507 msgid "Allows deleting data." msgstr "Permet esborrar dades." -#: server_privileges.php:34 server_privileges.php:185 -#: server_privileges.php:517 +#: server_privileges.php:35 server_privileges.php:186 +#: server_privileges.php:518 msgid "Allows dropping databases and tables." msgstr "Permet eliminar bases de dades i taules." -#: server_privileges.php:35 server_privileges.php:517 +#: server_privileges.php:36 server_privileges.php:518 msgid "Allows dropping tables." msgstr "Permet eliminar taules." -#: server_privileges.php:36 server_privileges.php:200 -#: server_privileges.php:534 +#: server_privileges.php:37 server_privileges.php:201 +#: server_privileges.php:535 msgid "Allows to set up events for the event scheduler" msgstr "Permet establir events per al planificador d'events" -#: server_privileges.php:37 server_privileges.php:210 -#: server_privileges.php:522 +#: server_privileges.php:38 server_privileges.php:211 +#: server_privileges.php:523 msgid "Allows executing stored routines." msgstr "Permet executar rutines enmagatzemades." -#: server_privileges.php:38 server_privileges.php:189 -#: server_privileges.php:509 +#: server_privileges.php:39 server_privileges.php:190 +#: server_privileges.php:510 msgid "Allows importing data from and exporting data into files." msgstr "Permet importar i exportar dades amb arxius externs." -#: server_privileges.php:39 server_privileges.php:540 +#: server_privileges.php:40 server_privileges.php:541 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "Permet afegir usuaris i permisos sense tenir que recarregar les taules de " "permisos." -#: server_privileges.php:40 server_privileges.php:191 -#: server_privileges.php:516 +#: server_privileges.php:41 server_privileges.php:192 +#: server_privileges.php:517 msgid "Allows creating and dropping indexes." msgstr "Permet crear i eliminar indexs." -#: server_privileges.php:41 server_privileges.php:181 -#: server_privileges.php:442 server_privileges.php:504 +#: server_privileges.php:42 server_privileges.php:182 +#: server_privileges.php:443 server_privileges.php:505 msgid "Allows inserting and replacing data." msgstr "Permet inserir i modificar dades." -#: server_privileges.php:42 server_privileges.php:196 -#: server_privileges.php:549 +#: server_privileges.php:43 server_privileges.php:197 +#: server_privileges.php:550 msgid "Allows locking tables for the current thread." msgstr "Permet bloquejar taules per l'actual fil d'execució." -#: server_privileges.php:43 server_privileges.php:646 -#: server_privileges.php:648 +#: server_privileges.php:44 server_privileges.php:647 +#: server_privileges.php:649 msgid "Limits the number of new connections the user may open per hour." msgstr "Limita el numero de noves connexions que pot obrir l'usuari per hora." -#: server_privileges.php:44 server_privileges.php:634 -#: server_privileges.php:636 +#: server_privileges.php:45 server_privileges.php:635 +#: server_privileges.php:637 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" "Limita el numero de consultes que pot enviar l'usuari al servidor per hora." -#: server_privileges.php:45 server_privileges.php:640 -#: server_privileges.php:642 +#: server_privileges.php:46 server_privileges.php:641 +#: server_privileges.php:643 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -4751,61 +4796,61 @@ msgstr "" "Limita el numero d'ordres que pot executar l'usuari canviant qualsevol taula " "o base de dades per hora." -#: server_privileges.php:46 server_privileges.php:652 -#: server_privileges.php:654 +#: server_privileges.php:47 server_privileges.php:653 +#: server_privileges.php:655 msgid "Limits the number of simultaneous connections the user may have." msgstr "Límita el nombre de connexions simultànies que l'usuari pot tenir." -#: server_privileges.php:47 server_privileges.php:188 -#: server_privileges.php:544 +#: server_privileges.php:48 server_privileges.php:189 +#: server_privileges.php:545 msgid "Allows viewing processes of all users" msgstr "Permet veure processos de tots els usuaris" -#: server_privileges.php:48 server_privileges.php:190 -#: server_privileges.php:448 server_privileges.php:550 +#: server_privileges.php:49 server_privileges.php:191 +#: server_privileges.php:449 server_privileges.php:551 msgid "Has no effect in this MySQL version." msgstr "No té efecte en aquesta versió de MySQL." -#: server_privileges.php:49 server_privileges.php:186 -#: server_privileges.php:545 +#: server_privileges.php:50 server_privileges.php:187 +#: server_privileges.php:546 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" "Permet recarregar les configuracions del servidor i buidar les seves " "memòries cau." -#: server_privileges.php:50 server_privileges.php:198 -#: server_privileges.php:552 +#: server_privileges.php:51 server_privileges.php:199 +#: server_privileges.php:553 msgid "Allows the user to ask where the slaves / masters are." msgstr "" "Dona el dret a l'usuari de preguntar quins servidors mestres / esclaus hi ha." -#: server_privileges.php:51 server_privileges.php:197 -#: server_privileges.php:553 +#: server_privileges.php:52 server_privileges.php:198 +#: server_privileges.php:554 msgid "Needed for the replication slaves." msgstr "Es necessari per a la replicació en servidors esclaus." -#: server_privileges.php:52 server_privileges.php:180 -#: server_privileges.php:439 server_privileges.php:503 +#: server_privileges.php:53 server_privileges.php:181 +#: server_privileges.php:440 server_privileges.php:504 msgid "Allows reading data." msgstr "Permet llegir dades." -#: server_privileges.php:53 server_privileges.php:193 -#: server_privileges.php:547 +#: server_privileges.php:54 server_privileges.php:194 +#: server_privileges.php:548 msgid "Gives access to the complete list of databases." msgstr "Dona accés a la llista completa de bases de dades." -#: server_privileges.php:54 server_privileges.php:204 -#: server_privileges.php:206 server_privileges.php:519 +#: server_privileges.php:55 server_privileges.php:205 +#: server_privileges.php:207 server_privileges.php:520 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Permet fer consultes de tipus SHOW CREATE VIEW." -#: server_privileges.php:55 server_privileges.php:187 -#: server_privileges.php:546 +#: server_privileges.php:56 server_privileges.php:188 +#: server_privileges.php:547 msgid "Allows shutting down the server." msgstr "Permet parar el servidor." -#: server_privileges.php:56 server_privileges.php:194 -#: server_privileges.php:543 +#: server_privileges.php:57 server_privileges.php:195 +#: server_privileges.php:544 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -4815,157 +4860,157 @@ msgstr "" "permés; Es necessari per moltes operacions d'administració com ara establir " "variables globals o bé cancel.lar fils d'execució d'altres usuaris." -#: server_privileges.php:57 server_privileges.php:201 -#: server_privileges.php:535 +#: server_privileges.php:58 server_privileges.php:202 +#: server_privileges.php:536 msgid "Allows creating and dropping triggers" msgstr "Permet crear i eliminar disparadors (triggers)" -#: server_privileges.php:58 server_privileges.php:182 -#: server_privileges.php:445 server_privileges.php:505 +#: server_privileges.php:59 server_privileges.php:183 +#: server_privileges.php:446 server_privileges.php:506 msgid "Allows changing data." msgstr "Permet canviar dades." -#: server_privileges.php:59 server_privileges.php:260 +#: server_privileges.php:60 server_privileges.php:261 msgid "No privileges." msgstr "Sense permisos." -#: server_privileges.php:302 server_privileges.php:303 +#: server_privileges.php:303 server_privileges.php:304 #, fuzzy #| msgid "None" msgctxt "None privileges" msgid "None" msgstr "Res" -#: server_privileges.php:431 server_privileges.php:566 -#: server_privileges.php:1718 server_privileges.php:1724 +#: server_privileges.php:432 server_privileges.php:567 +#: server_privileges.php:1738 server_privileges.php:1744 msgid "Table-specific privileges" msgstr "Permisos especifics de taula" -#: server_privileges.php:432 server_privileges.php:574 -#: server_privileges.php:1540 +#: server_privileges.php:433 server_privileges.php:575 +#: server_privileges.php:1560 msgid " Note: MySQL privilege names are expressed in English " msgstr " Nota: Els noms dels privilegis del MySQL són en idioma anglès " -#: server_privileges.php:563 server_privileges.php:1539 +#: server_privileges.php:564 server_privileges.php:1559 msgid "Global privileges" msgstr "Permisos generals" -#: server_privileges.php:565 server_privileges.php:1718 +#: server_privileges.php:566 server_privileges.php:1738 msgid "Database-specific privileges" msgstr "Permisos especifics de Base de dades" -#: server_privileges.php:610 +#: server_privileges.php:611 msgid "Administration" msgstr "Administració" -#: server_privileges.php:630 +#: server_privileges.php:631 msgid "Resource limits" msgstr "Limit de recursos" -#: server_privileges.php:631 +#: server_privileges.php:632 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "Nota: Es treu el limit establint aquestes opcions a 0 (zero)." -#: server_privileges.php:708 +#: server_privileges.php:709 msgid "Login Information" msgstr "Informació d'Identificació" -#: server_privileges.php:802 +#: server_privileges.php:803 msgid "Do not change the password" msgstr "No canviïs la contrasenya" -#: server_privileges.php:843 server_privileges.php:2205 +#: server_privileges.php:844 server_privileges.php:2226 #, fuzzy #| msgid "No user(s) found." msgid "No user found." msgstr "No s'han trobat usuaris." -#: server_privileges.php:887 +#: server_privileges.php:888 #, php-format msgid "The user %s already exists!" msgstr "L'usuari %s ja existeix!" -#: server_privileges.php:970 +#: server_privileges.php:971 msgid "You have added a new user." msgstr "Has afegit un usuari nou." -#: server_privileges.php:1191 +#: server_privileges.php:1196 #, php-format msgid "You have updated the privileges for %s." msgstr "Heu actualitzat els permisos de %s." -#: server_privileges.php:1215 +#: server_privileges.php:1220 #, php-format msgid "You have revoked the privileges for %s" msgstr "Has tret els permisos per %s" -#: server_privileges.php:1251 +#: server_privileges.php:1256 #, php-format msgid "The password for %s was changed successfully." msgstr "La contrasenya per %s s'ha canviat correctament." -#: server_privileges.php:1271 +#: server_privileges.php:1276 #, php-format msgid "Deleting %s" msgstr "Esborrant %s" -#: server_privileges.php:1282 +#: server_privileges.php:1287 msgid "No users selected for deleting!" msgstr "No s\\han triat usuaris per esborrar!" -#: server_privileges.php:1285 +#: server_privileges.php:1290 msgid "Reloading the privileges" msgstr "Recarregant permisos" -#: server_privileges.php:1300 +#: server_privileges.php:1305 msgid "The selected users have been deleted successfully." msgstr "S'han esborrat correctament els usuaris triats." -#: server_privileges.php:1335 +#: server_privileges.php:1344 msgid "The privileges were reloaded successfully." msgstr "Els permisos s'han recarregat correctament." -#: server_privileges.php:1363 server_privileges.php:1649 +#: server_privileges.php:1380 server_privileges.php:1669 msgid "Edit Privileges" msgstr "Edita permisos" -#: server_privileges.php:1372 +#: server_privileges.php:1389 msgid "Revoke" msgstr "Treu" -#: server_privileges.php:1404 +#: server_privileges.php:1424 msgid "User overview" msgstr "Informació general de l'usuari" -#: server_privileges.php:1541 server_privileges.php:1723 -#: server_privileges.php:2072 +#: server_privileges.php:1561 server_privileges.php:1743 +#: server_privileges.php:2093 msgid "Grant" msgstr "Atorga" -#: server_privileges.php:1560 server_privileges.php:2162 +#: server_privileges.php:1580 server_privileges.php:2183 msgid "Any" msgstr "Qualsevol" -#: server_privileges.php:1609 server_privileges.php:1633 -#: server_privileges.php:2027 server_privileges.php:2216 +#: server_privileges.php:1629 server_privileges.php:1653 +#: server_privileges.php:2048 server_privileges.php:2237 msgid "Add a new User" msgstr "Afegeix un usuari nou" -#: server_privileges.php:1614 +#: server_privileges.php:1634 msgid "Remove selected users" msgstr "Treu els usuaris triats" -#: server_privileges.php:1617 +#: server_privileges.php:1637 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "Treu tots els permisos actius dels usuaris i els esborra després." -#: server_privileges.php:1618 server_privileges.php:1619 -#: server_privileges.php:1620 +#: server_privileges.php:1638 server_privileges.php:1639 +#: server_privileges.php:1640 msgid "Drop the databases that have the same names as the users." msgstr "" "Esborra les bases de dades que tenen els mateixos noms que els usuaris." -#: server_privileges.php:1636 +#: server_privileges.php:1656 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -4978,49 +5023,49 @@ msgstr "" "permisos que utilitza el servidor si s'han fet canvis manualment. En aquest " "cas, es necessari %srecarregar els permisos%s abans de continuar." -#: server_privileges.php:1684 +#: server_privileges.php:1704 msgid "The selected user was not found in the privilege table." msgstr "No s'ha trobat l'usuari triat a la taula de permisos." -#: server_privileges.php:1724 +#: server_privileges.php:1744 msgid "Column-specific privileges" msgstr "Permisos específics de columna" -#: server_privileges.php:1925 +#: server_privileges.php:1945 msgid "Add privileges on the following database" msgstr "Afegeix permisos a la següent base de dades" -#: server_privileges.php:1943 +#: server_privileges.php:1963 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" "Els comodins _ i % han de marcar-se amb una \\ per usar-los literalment" -#: server_privileges.php:1946 +#: server_privileges.php:1966 msgid "Add privileges on the following table" msgstr "Afegeix permisos a la següent taula" -#: server_privileges.php:2003 +#: server_privileges.php:2023 msgid "Change Login Information / Copy User" msgstr "Canvi d'Informació de Connexió / Copia d'Usuari" -#: server_privileges.php:2006 +#: server_privileges.php:2026 msgid "Create a new user with the same privileges and ..." msgstr "Crea un nou usuari amb els mateixos permisos i ..." -#: server_privileges.php:2008 +#: server_privileges.php:2028 msgid "... keep the old one." msgstr "... respecta l'antic." -#: server_privileges.php:2009 +#: server_privileges.php:2029 msgid " ... delete the old one from the user tables." msgstr " ... esborra l'antic de les taules d'usuaris." -#: server_privileges.php:2010 +#: server_privileges.php:2030 msgid "" " ... revoke all active privileges from the old one and delete it afterwards." msgstr " ... treu tots els permisos actius de l'antic i esborra'l després." -#: server_privileges.php:2011 +#: server_privileges.php:2031 msgid "" " ... delete the old one from the user tables and reload the privileges " "afterwards." @@ -5028,44 +5073,44 @@ msgstr "" " ... esborra l'antic de les taules d'usuaris i recarrega els permisos " "després." -#: server_privileges.php:2033 +#: server_privileges.php:2054 msgid "Database for user" msgstr "Base de dades per usuari" -#: server_privileges.php:2037 +#: server_privileges.php:2058 #, fuzzy #| msgid "None" msgctxt "Create none database for user" msgid "None" msgstr "Res" -#: server_privileges.php:2038 +#: server_privileges.php:2059 msgid "Create database with same name and grant all privileges" msgstr "Crea una base de dades amb el mateix nom i atorga tots els permisos" -#: server_privileges.php:2039 +#: server_privileges.php:2060 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "Atorga tots els permisos en un nom comodí (nomusuari_%)" -#: server_privileges.php:2042 +#: server_privileges.php:2063 #, php-format msgid "Grant all privileges on database "%s"" msgstr "Atorga tots els permisos a la base de dades "%s"" -#: server_privileges.php:2065 +#: server_privileges.php:2086 #, php-format msgid "Users having access to "%s"" msgstr "Usuaris amb accés a "%s"" -#: server_privileges.php:2173 +#: server_privileges.php:2194 msgid "global" msgstr "global" -#: server_privileges.php:2175 +#: server_privileges.php:2196 msgid "database-specific" msgstr "específic de la base de dades" -#: server_privileges.php:2177 +#: server_privileges.php:2198 msgid "wildcard" msgstr "comodins" @@ -8111,6 +8156,10 @@ msgstr "" msgid "Show insert query" msgstr "Mostrant consulta SQL" +#: tbl_change.php:1143 +msgid "and then" +msgstr "i llavors" + #: tbl_change.php:1147 msgid "Go back to previous page" msgstr "Torna" @@ -8193,7 +8242,7 @@ msgstr "" msgid "Add to index  %s column(s)" msgstr "Afegeix a l'índex %s columna(es)  " -#: tbl_indexes.php:256 tbl_structure.php:589 tbl_structure.php:600 +#: tbl_indexes.php:256 tbl_structure.php:587 tbl_structure.php:598 msgid "Column count has to be larger than zero." msgstr "El comptador de columnes ha de ser més gran que zero." @@ -8307,39 +8356,39 @@ msgstr "Comprova la integritat referencial:" msgid "Show tables" msgstr "Mostra taules" -#: tbl_printview.php:310 tbl_structure.php:656 +#: tbl_printview.php:310 tbl_structure.php:654 msgid "Space usage" msgstr "Utilització d'espai" -#: tbl_printview.php:314 tbl_structure.php:660 +#: tbl_printview.php:314 tbl_structure.php:658 msgid "Usage" msgstr "Ús" -#: tbl_printview.php:341 tbl_structure.php:687 +#: tbl_printview.php:341 tbl_structure.php:685 msgid "Effective" msgstr "Efectiu" -#: tbl_printview.php:366 tbl_structure.php:725 +#: tbl_printview.php:366 tbl_structure.php:723 msgid "Row Statistics" msgstr "Estadística de files" -#: tbl_printview.php:369 tbl_structure.php:728 +#: tbl_printview.php:369 tbl_structure.php:726 msgid "Statements" msgstr "Sentències" -#: tbl_printview.php:380 tbl_structure.php:740 +#: tbl_printview.php:380 tbl_structure.php:738 msgid "static" msgstr "estàtic" -#: tbl_printview.php:382 tbl_structure.php:742 +#: tbl_printview.php:382 tbl_structure.php:740 msgid "dynamic" msgstr "dinàmic" -#: tbl_printview.php:404 tbl_structure.php:785 +#: tbl_printview.php:404 tbl_structure.php:783 msgid "Row length" msgstr "Tamany de fila" -#: tbl_printview.php:414 tbl_structure.php:793 +#: tbl_printview.php:414 tbl_structure.php:791 msgid " Row size " msgstr "Mida de fila " @@ -8416,50 +8465,50 @@ msgstr "Res" msgid "Column %s has been dropped" msgstr "S'ha esborrat la taula %s" -#: tbl_structure.php:385 +#: tbl_structure.php:384 #, php-format msgid "A primary key has been added on %s" msgstr "S'ha afegit una clau principal a %s" -#: tbl_structure.php:400 tbl_structure.php:414 tbl_structure.php:428 +#: tbl_structure.php:398 tbl_structure.php:412 tbl_structure.php:426 #, php-format msgid "An index has been added on %s" msgstr "S'ha afegit un índex a %s" -#: tbl_structure.php:506 tbl_structure.php:508 +#: tbl_structure.php:504 tbl_structure.php:506 msgid "Relation view" msgstr "Vista de Relacions" -#: tbl_structure.php:515 tbl_structure.php:517 +#: tbl_structure.php:513 tbl_structure.php:515 msgid "Propose table structure" msgstr "Proposa una estructura de taula" -#: tbl_structure.php:540 +#: tbl_structure.php:538 #, fuzzy #| msgid "Add column(s)" msgid "Add column" msgstr "Afegeix columna(es)" -#: tbl_structure.php:554 +#: tbl_structure.php:552 msgid "At End of Table" msgstr "Al final de la taula" -#: tbl_structure.php:555 +#: tbl_structure.php:553 msgid "At Beginning of Table" msgstr "Al principi de la taula" -#: tbl_structure.php:556 +#: tbl_structure.php:554 #, php-format msgid "After %s" msgstr "Darrere de %s" -#: tbl_structure.php:594 +#: tbl_structure.php:592 #, fuzzy, php-format #| msgid "Create an index on %s columns" msgid "Create an index on  %s columns" msgstr "Crea un índex de columnes %s: " -#: tbl_structure.php:756 +#: tbl_structure.php:754 msgid "partitioned" msgstr "particionat" @@ -8954,9 +9003,6 @@ msgstr "Reanomena les taules a" #~ msgid "Process list" #~ msgstr "Llista de processos" -#~ msgid "Reload privileges" -#~ msgstr "Recarrega els permisos" - #~ msgid "" #~ "The users will still have the USAGE privilege until the privileges are " #~ "reloaded." diff --git a/po/cs.po b/po/cs.po index 002784dc4..26a8fedc7 100755 --- a/po/cs.po +++ b/po/cs.po @@ -5,7 +5,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-13 09:03-0400\n" +"POT-Creation-Date: 2010-06-22 00:55+0530\n" "PO-Revision-Date: 2010-06-08 10:43+0200\n" "Last-Translator: Michal \n" "Language-Team: czech \n" @@ -17,11 +17,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:1514 +#: libraries/display_tbl.lib.php:417 server_privileges.php:1534 msgid "Show all" msgstr "Zobrazit vše" -#: browse_foreigners.php:82 libraries/common.lib.php:2313 +#: browse_foreigners.php:82 libraries/common.lib.php:2317 #: 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 @@ -40,18 +40,18 @@ 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:2831 -#: libraries/common.lib.php:2838 libraries/db_links.inc.php:75 +#: db_structure.php:106 libraries/common.lib.php:2835 +#: libraries/common.lib.php:2842 libraries/db_links.inc.php:75 #: libraries/tbl_links.inc.php:63 msgid "Search" msgstr "Vyhledávání" -#: browse_foreigners.php:153 db_operations.php:385 db_operations.php:429 -#: db_operations.php:499 db_operations.php:609 db_search.php:362 -#: db_structure.php:567 js/messages.php:48 libraries/Config.class.php:1046 +#: browse_foreigners.php:153 db_operations.php:394 db_operations.php:438 +#: db_operations.php:508 db_operations.php:618 db_search.php:362 +#: db_structure.php:565 js/messages.php:53 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:1335 libraries/common.lib.php:2288 +#: libraries/common.lib.php:1335 libraries/common.lib.php:2292 #: 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 @@ -62,15 +62,15 @@ msgstr "Vyhledávání" #: 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:664 server_privileges.php:1624 -#: server_privileges.php:1971 server_privileges.php:2018 -#: server_privileges.php:2057 server_replication.php:235 +#: server_privileges.php:665 server_privileges.php:1644 +#: server_privileges.php:1991 server_privileges.php:2038 +#: server_privileges.php:2078 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 #: tbl_operations.php:302 tbl_operations.php:499 tbl_operations.php:561 -#: tbl_operations.php:681 tbl_select.php:327 tbl_structure.php:562 -#: tbl_structure.php:597 tbl_tracking.php:395 tbl_tracking.php:512 +#: tbl_operations.php:681 tbl_select.php:327 tbl_structure.php:560 +#: tbl_structure.php:595 tbl_tracking.php:395 tbl_tracking.php:512 #: view_create.php:182 view_operations.php:101 msgid "Go" msgstr "Proveď" @@ -96,7 +96,7 @@ msgstr "Použít tuto hodnotu" msgid "Database %1$s has been created." msgstr "Byla vytvořena databáze %1$s." -#: db_datadict.php:49 db_operations.php:378 +#: db_datadict.php:49 db_operations.php:387 msgid "Database comment: " msgstr "Komentář k databázi: " @@ -121,10 +121,10 @@ msgstr "Pole" #: 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:2070 +#: pdf_schema.php:1263 pdf_schema.php:1284 server_privileges.php:2091 #: 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 +#: tbl_structure.php:657 tbl_tracking.php:274 tbl_tracking.php:321 msgid "Type" msgstr "Typ" @@ -137,7 +137,7 @@ msgstr "Typ" msgid "Null" msgstr "Nulový" -#: db_datadict.php:178 db_structure.php:501 libraries/export/htmlword.php:247 +#: db_datadict.php:178 db_structure.php:499 libraries/export/htmlword.php:247 #: libraries/export/latex.php:360 libraries/export/odt.php:303 #: libraries/export/texytext.php:236 libraries/tbl_properties.inc.php:106 #: pdf_schema.php:1266 pdf_schema.php:1287 tbl_printview.php:146 @@ -165,9 +165,9 @@ msgstr "Komentáře" #: 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: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 +#: pdf_schema.php:1344 server_privileges.php:1588 server_privileges.php:1599 +#: server_privileges.php:1909 server_privileges.php:1914 +#: server_privileges.php:2208 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:1565 -#: server_privileges.php:1579 server_privileges.php:1889 -#: server_privileges.php:1892 server_privileges.php:2187 sql.php:193 +#: server_databases.php:64 server_privileges.php:1585 +#: server_privileges.php:1599 server_privileges.php:1909 +#: server_privileges.php:1912 server_privileges.php:2208 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" @@ -210,119 +210,115 @@ msgstr "Vybrat vše" msgid "Unselect All" msgstr "Odznačit vše" -#: db_operations.php:38 tbl_create.php:54 +#: db_operations.php:43 tbl_create.php:54 msgid "The database name is empty!" msgstr "Jméno databáze je prázdné!" -#: db_operations.php:236 +#: db_operations.php:241 #, php-format msgid "Database %s has been renamed to %s" msgstr "Databáze %s byla přejmenována na %s" -#: db_operations.php:240 +#: db_operations.php:245 #, php-format msgid "Database %s has been copied to %s" msgstr "Databáze %s byla zkopírována na %s" -#: db_operations.php:412 +#: db_operations.php:421 msgid "Rename database to" msgstr "Přejmenovat databázi na" -#: db_operations.php:417 server_processlist.php:57 +#: db_operations.php:426 server_processlist.php:57 msgid "Command" msgstr "Příkaz" -#: db_operations.php:429 tbl_change.php:1143 -msgid "and then" -msgstr "a poté" - -#: db_operations.php:455 +#: db_operations.php:464 msgid "Copy database to" msgstr "Zkopírovat databázi na" -#: db_operations.php:462 tbl_operations.php:528 tbl_tracking.php:388 +#: db_operations.php:471 tbl_operations.php:528 tbl_tracking.php:388 msgid "Structure only" msgstr "Pouze strukturu" -#: db_operations.php:463 tbl_operations.php:529 tbl_tracking.php:390 +#: db_operations.php:472 tbl_operations.php:529 tbl_tracking.php:390 msgid "Structure and data" msgstr "Strukturu a data" -#: db_operations.php:464 tbl_operations.php:530 tbl_tracking.php:389 +#: db_operations.php:473 tbl_operations.php:530 tbl_tracking.php:389 msgid "Data only" msgstr "Jen data" -#: db_operations.php:472 +#: db_operations.php:481 msgid "CREATE DATABASE before copying" msgstr "Vytvořit databázi před kopírováním (CREATE DATABASE)" -#: db_operations.php:475 libraries/export/sql.php:52 +#: db_operations.php:484 libraries/export/sql.php:52 #: libraries/export/sql.php:74 libraries/export/sql.php:76 #: libraries/export/sql.php:82 tbl_operations.php:536 #, php-format msgid "Add %s" msgstr "Přidat %s" -#: db_operations.php:479 libraries/export/sql.php:78 tbl_operations.php:299 +#: db_operations.php:488 libraries/export/sql.php:78 tbl_operations.php:299 #: tbl_operations.php:538 msgid "Add AUTO_INCREMENT value" msgstr "Přidat hodnotu AUTO_INCREMENT" -#: db_operations.php:483 tbl_operations.php:545 +#: db_operations.php:492 tbl_operations.php:545 msgid "Add constraints" msgstr "Přidat integritní omezení" -#: db_operations.php:496 +#: db_operations.php:505 msgid "Switch to copied database" msgstr "Přepnout na zkopírovanou databázi" -#: db_operations.php:537 +#: db_operations.php:546 msgid "BLOB Repository" msgstr "Skladiště BLOBů" -#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1352 -#: libraries/server_links.inc.php:49 server_processlist.php:59 +#: db_operations.php:549 db_tracking.php:76 libraries/common.lib.php:1352 +#: libraries/server_links.inc.php:50 server_processlist.php:59 #: tbl_tracking.php:596 test/theme.php:101 msgid "Status" msgstr "Stav" -#: db_operations.php:548 +#: db_operations.php:557 msgctxt "BLOB repository" msgid "Enabled" msgstr "Zapnuté" -#: db_operations.php:552 +#: db_operations.php:561 msgid "Disable" msgstr "Vypnout" -#: db_operations.php:562 +#: db_operations.php:571 msgid "Damaged" msgstr "Poškozené" -#: db_operations.php:566 +#: db_operations.php:575 msgctxt "BLOB repository" msgid "Repair" msgstr "Opravit" -#: db_operations.php:574 +#: db_operations.php:583 msgctxt "BLOB repository" msgid "Disabled" msgstr "Vypnuté" -#: db_operations.php:578 +#: db_operations.php:587 msgid "Enable" msgstr "Zapnout" -#: db_operations.php:602 libraries/Index.class.php:448 +#: db_operations.php:611 libraries/Index.class.php:448 #: libraries/db_structure.lib.php:62 libraries/mysql_charsets.lib.php:107 #: libraries/tbl_properties.inc.php:107 libraries/tbl_properties.inc.php:730 #: server_collations.php:54 server_collations.php:66 server_databases.php:111 #: tbl_operations.php:363 tbl_select.php:137 tbl_structure.php:179 -#: tbl_structure.php:767 tbl_tracking.php:275 tbl_tracking.php:326 +#: tbl_structure.php:765 tbl_tracking.php:275 tbl_tracking.php:326 msgid "Collation" msgstr "Porovnávání" -#: db_operations.php:615 main.php:316 pdf_schema.php:34 +#: db_operations.php:624 main.php:316 pdf_schema.php:34 #, php-format msgid "" "The additional features for working with linked tables have been " @@ -331,14 +327,14 @@ msgstr "" "Některé z rozšířených funkcí phpMyAdmina nelze používat. %sZde%s zjistíte " "proč." -#: db_operations.php:648 +#: db_operations.php:657 msgid "Edit PDF Pages" msgstr "Upravit 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:1665 -#: server_privileges.php:1721 server_privileges.php:1985 +#: libraries/header.inc.php:130 pdf_pages.php:424 server_privileges.php:1685 +#: server_privileges.php:1741 server_privileges.php:2005 #: server_synchronize.php:423 server_synchronize.php:866 tbl_tracking.php:592 #: test/theme.php:75 msgid "Table" @@ -347,7 +343,7 @@ msgstr "Tabulka" #: db_printview.php:105 libraries/db_structure.lib.php:56 #: libraries/header_printview.inc.php:63 libraries/import.lib.php:146 #: navigation.php:638 navigation.php:660 server_databases.php:122 -#: tbl_printview.php:394 tbl_structure.php:365 tbl_structure.php:777 +#: tbl_printview.php:394 tbl_structure.php:365 tbl_structure.php:775 msgid "Rows" msgstr "Řádků" @@ -355,30 +351,30 @@ msgstr "Řádků" msgid "Size" msgstr "Velikost" -#: db_printview.php:162 db_structure.php:457 libraries/export/sql.php:559 +#: db_printview.php:162 db_structure.php:455 libraries/export/sql.php:559 #: libraries/export/sql.php:899 msgid "in use" msgstr "právě se používá" #: db_printview.php:187 libraries/db_info.inc.php:88 #: libraries/export/sql.php:514 pdf_schema.php:1241 tbl_printview.php:434 -#: tbl_structure.php:809 +#: tbl_structure.php:807 msgid "Creation" msgstr "Vytvoření" #: db_printview.php:196 libraries/db_info.inc.php:93 #: libraries/export/sql.php:519 pdf_schema.php:1246 tbl_printview.php:444 -#: tbl_structure.php:817 +#: tbl_structure.php:815 msgid "Last update" msgstr "Poslední změna" #: db_printview.php:205 libraries/db_info.inc.php:98 #: libraries/export/sql.php:524 pdf_schema.php:1251 tbl_printview.php:454 -#: tbl_structure.php:825 +#: tbl_structure.php:823 msgid "Last check" msgstr "Poslední kontrola" -#: db_printview.php:222 db_structure.php:480 +#: db_printview.php:222 db_structure.php:478 #, php-format msgid "%s table" msgid_plural "%s tables" @@ -439,7 +435,7 @@ msgstr "smazat" #: 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:297 tbl_change.php:1031 tbl_indexes.php:250 +#: server_privileges.php:298 tbl_change.php:1031 tbl_indexes.php:250 #: tbl_select.php:288 msgid "Or" msgstr "nebo" @@ -508,9 +504,9 @@ msgstr "%s odpovídající(ch) záznam(ů) v tabulce %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:2833 +#: db_structure.php:105 libraries/common.lib.php:2837 #: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50 -#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:467 +#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:465 msgid "Browse" msgstr "Projít" @@ -553,36 +549,36 @@ msgstr "Uvnitř pole:" #: 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:2832 libraries/sql_query_form.lib.php:334 +#: libraries/common.lib.php:2836 libraries/sql_query_form.lib.php:334 #: libraries/sql_query_form.lib.php:337 libraries/tbl_links.inc.php:76 msgid "Insert" msgstr "Vložit" #: db_structure.php:83 db_structure.php:96 db_structure.php:109 -#: libraries/common.lib.php:2829 libraries/common.lib.php:2836 +#: libraries/common.lib.php:2833 libraries/common.lib.php:2840 #: 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:1106 #: libraries/tbl_links.inc.php:56 pmd_general.php:134 -#: server_privileges.php:593 server_replication.php:315 tbl_tracking.php:269 +#: server_privileges.php:594 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:1656 +#: db_structure.php:543 db_structure.php:544 db_tracking.php:91 +#: libraries/Index.class.php:483 libraries/common.lib.php:1657 #: 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 -#: tbl_structure.php:152 tbl_structure.php:471 +#: tbl_structure.php:152 tbl_structure.php:469 msgid "Drop" msgstr "Odstranit" #: 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:1655 +#: db_structure.php:541 db_structure.php:542 libraries/common.lib.php:1656 #: libraries/mult_submits.inc.php:39 libraries/tbl_links.inc.php:105 msgid "Empty" msgstr "Vyprázdnit" @@ -592,25 +588,25 @@ msgstr "Vyprázdnit" msgid "Table %s has been emptied" msgstr "Tabulka %s byla vyprázdněna" -#: db_structure.php:326 libraries/tbl_links.inc.php:133 +#: db_structure.php:325 libraries/tbl_links.inc.php:133 #, php-format msgid "View %s has been dropped" msgstr "Pohled %s byl odstraněn" -#: db_structure.php:326 libraries/tbl_links.inc.php:133 +#: db_structure.php:325 libraries/tbl_links.inc.php:133 #, php-format msgid "Table %s has been dropped" msgstr "Tabulka %s byla odstraněna" -#: db_structure.php:333 +#: db_structure.php:332 msgid "Tracking is active." msgstr "Sledování je zapnuté." -#: db_structure.php:335 +#: db_structure.php:334 msgid "Tracking is not active." msgstr "Sledování není zapnuté." -#: db_structure.php:420 libraries/display_tbl.lib.php:1944 +#: db_structure.php:418 libraries/display_tbl.lib.php:1944 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation%" @@ -618,86 +614,86 @@ msgid "" msgstr "" "Tento pohled má alespoň tolik řádek. Podrobnosti naleznete v %sdokumentaci%s." -#: db_structure.php:434 db_structure.php:448 libraries/header.inc.php:126 +#: db_structure.php:432 db_structure.php:446 libraries/header.inc.php:130 #: libraries/tbl_info.inc.php:66 tbl_structure.php:185 test/theme.php:74 msgid "View" msgstr "Pohled" -#: db_structure.php:485 libraries/db_structure.lib.php:49 -#: libraries/server_links.inc.php:70 server_replication.php:33 +#: db_structure.php:483 libraries/db_structure.lib.php:49 +#: libraries/server_links.inc.php:71 server_replication.php:33 #: server_replication.php:164 server_status.php:369 msgid "Replication" msgstr "Replikace" -#: db_structure.php:489 +#: db_structure.php:487 msgid "Sum" msgstr "Celkem" -#: db_structure.php:496 libraries/StorageEngine.class.php:356 +#: db_structure.php:494 libraries/StorageEngine.class.php:356 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "%s je výchozí úložiště na tomto MySQL serveru." -#: db_structure.php:524 db_structure.php:541 db_structure.php:542 +#: db_structure.php:522 db_structure.php:539 db_structure.php:540 #: 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:1596 tbl_structure.php:455 -#: tbl_structure.php:464 +#: server_databases.php:351 server_privileges.php:1616 tbl_structure.php:453 +#: tbl_structure.php:462 msgid "With selected:" msgstr "Zaškrtnuté:" -#: db_structure.php:527 libraries/display_tbl.lib.php:2076 -#: server_databases.php:348 server_privileges.php:569 -#: server_privileges.php:1599 tbl_structure.php:458 +#: db_structure.php:525 libraries/display_tbl.lib.php:2076 +#: server_databases.php:348 server_privileges.php:570 +#: server_privileges.php:1619 tbl_structure.php:456 msgid "Check All" msgstr "Zaškrtnout vše" -#: db_structure.php:531 libraries/display_tbl.lib.php:2077 +#: db_structure.php:529 libraries/display_tbl.lib.php:2077 #: libraries/replication_gui.lib.php:33 server_databases.php:350 -#: server_privileges.php:572 server_privileges.php:1603 tbl_structure.php:462 +#: server_privileges.php:573 server_privileges.php:1623 tbl_structure.php:460 msgid "Uncheck All" msgstr "Odškrtnout vše" -#: db_structure.php:536 +#: db_structure.php:534 msgid "Check tables having overhead" msgstr "Zaškrtnout neoptimální" -#: db_structure.php:547 db_structure.php:548 db_structure.php:599 +#: db_structure.php:545 db_structure.php:546 db_structure.php:597 #: libraries/display_tbl.lib.php:2180 libraries/mult_submits.inc.php:28 -#: tbl_structure.php:492 tbl_structure.php:494 +#: tbl_structure.php:490 tbl_structure.php:492 msgid "Print view" msgstr "Náhled pro tisk" -#: db_structure.php:549 db_structure.php:550 libraries/mult_submits.inc.php:42 +#: db_structure.php:547 db_structure.php:548 libraries/mult_submits.inc.php:42 #: tbl_operations.php:581 msgid "Check table" msgstr "Zkontrolovat tabulku" -#: db_structure.php:551 db_structure.php:552 libraries/mult_submits.inc.php:47 -#: tbl_operations.php:621 tbl_structure.php:709 tbl_structure.php:711 +#: db_structure.php:549 db_structure.php:550 libraries/mult_submits.inc.php:47 +#: tbl_operations.php:621 tbl_structure.php:707 tbl_structure.php:709 msgid "Optimize table" msgstr "Optimalizovat tabulku" -#: db_structure.php:553 db_structure.php:554 libraries/mult_submits.inc.php:52 +#: db_structure.php:551 db_structure.php:552 libraries/mult_submits.inc.php:52 #: tbl_operations.php:611 msgid "Repair table" msgstr "Opravit tabulku" -#: db_structure.php:555 db_structure.php:556 libraries/mult_submits.inc.php:57 +#: db_structure.php:553 db_structure.php:554 libraries/mult_submits.inc.php:57 #: tbl_operations.php:601 msgid "Analyze table" msgstr "Analyzovat tabulku" -#: db_structure.php:557 db_structure.php:558 libraries/db_links.inc.php:71 +#: db_structure.php:555 db_structure.php:556 libraries/db_links.inc.php:71 #: 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:1380 +#: libraries/server_links.inc.php:85 libraries/tbl_links.inc.php:82 +#: pmd_pdf.php:84 pmd_pdf.php:109 server_privileges.php:1397 #: setup/frames/menu.inc.php:22 tbl_row_action.php:59 msgid "Export" msgstr "Export" -#: db_structure.php:606 libraries/display_pdf_schema.lib.php:44 +#: db_structure.php:604 libraries/display_pdf_schema.lib.php:44 msgid "Data Dictionary" msgstr "Datový slovník" @@ -708,10 +704,10 @@ msgstr "Sledované tabulky" #: db_tracking.php:71 libraries/export/htmlword.php:86 #: libraries/export/latex.php:148 libraries/export/odt.php:113 #: libraries/export/sql.php:342 libraries/export/texytext.php:84 -#: libraries/export/xml.php:255 libraries/header.inc.php:106 +#: libraries/export/xml.php:255 libraries/header.inc.php:110 #: libraries/header_printview.inc.php:58 server_databases.php:169 -#: server_privileges.php:1660 server_privileges.php:1721 -#: server_privileges.php:1979 server_processlist.php:56 +#: server_privileges.php:1680 server_privileges.php:1741 +#: server_privileges.php:1999 server_processlist.php:56 #: server_synchronize.php:1179 server_synchronize.php:1183 #: tbl_tracking.php:591 test/theme.php:65 msgid "Database" @@ -731,8 +727,8 @@ msgstr "Aktualizováno" #: db_tracking.php:77 libraries/Index.class.php:440 #: libraries/db_structure.lib.php:53 server_databases.php:203 -#: server_privileges.php:1542 server_privileges.php:1725 -#: server_privileges.php:2073 tbl_structure.php:187 +#: server_privileges.php:1562 server_privileges.php:1745 +#: server_privileges.php:2094 tbl_structure.php:187 msgid "Action" msgstr "Akce" @@ -766,8 +762,8 @@ msgstr "Snímek struktury" msgid "Untracked tables" msgstr "Nesledované tabulky" -#: db_tracking.php:172 db_tracking.php:174 tbl_structure.php:528 -#: tbl_structure.php:530 +#: db_tracking.php:172 db_tracking.php:174 tbl_structure.php:526 +#: tbl_structure.php:528 msgid "Track table" msgstr "Sledovat tabulku" @@ -934,316 +930,365 @@ msgstr "Jméno počítače je prázdné!" msgid "The user name is empty!" msgstr "Jméno uživatele je prázdné!" -#: js/messages.php:44 server_privileges.php:1236 user_password.php:70 +#: js/messages.php:44 server_privileges.php:1241 user_password.php:70 msgid "The password is empty!" msgstr "Heslo je prázdné!" -#: js/messages.php:45 server_privileges.php:1234 user_password.php:73 +#: js/messages.php:45 server_privileges.php:1239 user_password.php:73 msgid "The passwords aren't the same!" msgstr "Hesla nejsou stejná!" -#: js/messages.php:49 pmd_general.php:342 pmd_general.php:379 +#: js/messages.php:46 +#, fuzzy +#| msgid "Add a new User" +msgid "Add a New User" +msgstr "Přidat nového uživatele" + +#: js/messages.php:47 js/messages.php:54 pmd_general.php:342 +#: pmd_general.php:379 msgid "Cancel" msgstr "Zrušit" -#: js/messages.php:52 pmd_save_pos.php:54 +#: js/messages.php:48 +#, fuzzy +#| msgid "Create version" +msgid "Create User" +msgstr "Vytvořit verzi" + +#: js/messages.php:49 +#, fuzzy +#| msgid "Reloading the privileges" +msgid "Reloading Privileges" +msgstr "Načítám oprávnění" + +#: js/messages.php:50 +#, fuzzy +#| msgid "Remove selected users" +msgid "Removing Selected Users" +msgstr "Odstranit vybrané uživatele" + +#: js/messages.php:57 +#, fuzzy +#| msgid "Load" +msgid "Loading" +msgstr "Nahrát" + +#: js/messages.php:58 +#, fuzzy +#| msgid "Processes" +msgid "Processing Request" +msgstr "Procesy" + +#: js/messages.php:59 +msgid "Error in Processing Request" +msgstr "" + +#: js/messages.php:60 +msgid "Dropping Column" +msgstr "" + +#: js/messages.php:61 +msgid "Adding Primary Key" +msgstr "" + +#: js/messages.php:64 pmd_save_pos.php:54 msgid "Modifications have been saved" msgstr "Změny byly uloženy" -#: js/messages.php:53 pmd_relation_upd.php:49 +#: js/messages.php:65 pmd_relation_upd.php:49 msgid "Relation deleted" msgstr "Relace smazána" -#: js/messages.php:54 pmd_relation_new.php:64 +#: js/messages.php:66 pmd_relation_new.php:64 msgid "FOREIGN KEY relation added" msgstr "Relace FOREIGN KEY byla vytvořena" -#: js/messages.php:55 pmd_relation_new.php:86 +#: js/messages.php:67 pmd_relation_new.php:86 msgid "Internal relation added" msgstr "Interní relace vytvořena" -#: js/messages.php:56 pmd_relation_new.php:63 pmd_relation_new.php:88 +#: js/messages.php:68 pmd_relation_new.php:63 pmd_relation_new.php:88 msgid "Error: Relation not added." msgstr "Chyba: relace nebyla přidána." -#: js/messages.php:57 pmd_relation_new.php:31 +#: js/messages.php:69 pmd_relation_new.php:31 msgid "Error: relation already exists." msgstr "Chyba: relace již existuje." -#: js/messages.php:58 +#: js/messages.php:70 msgid "Error saving coordinates for Designer." msgstr "Chyba při ukládání souřadnic pro Návrháře." -#: js/messages.php:59 libraries/relation.lib.php:107 +#: js/messages.php:71 libraries/relation.lib.php:107 #: libraries/relation.lib.php:119 msgid "General relation features" msgstr "Obecné funkce relací" -#: js/messages.php:59 libraries/relation.lib.php:101 +#: js/messages.php:71 libraries/relation.lib.php:101 #: libraries/relation.lib.php:108 msgid "Disabled" msgstr "Vypnuto" -#: js/messages.php:60 +#: js/messages.php:72 msgid "Select referenced key" msgstr "Zvolte odkazovaný klíč" -#: js/messages.php:61 +#: js/messages.php:73 msgid "Select Foreign Key" msgstr "Zvolte cizí klíč" -#: js/messages.php:62 +#: js/messages.php:74 msgid "Please select the primary key or a unique key" msgstr "Zvolte, prosím, primární nebo unikátní klíč" -#: js/messages.php:63 pmd_general.php:77 tbl_relation.php:548 +#: js/messages.php:75 pmd_general.php:77 tbl_relation.php:548 msgid "Choose column to display" msgstr "Zvolte která pole zobrazit" #. l10n: Display text for calendar close link -#: js/messages.php:73 +#: js/messages.php:85 msgid "Done" msgstr "Hotovo" #. l10n: Display text for previous month link in calendar -#: js/messages.php:75 +#: js/messages.php:87 msgid "Prev" msgstr "Předchozí" #. l10n: Display text for next month link in calendar -#: js/messages.php:77 libraries/common.lib.php:2353 -#: libraries/common.lib.php:2356 libraries/display_tbl.lib.php:338 +#: js/messages.php:89 libraries/common.lib.php:2357 +#: libraries/common.lib.php:2360 libraries/display_tbl.lib.php:338 #: server_binlog.php:205 server_binlog.php:207 tbl_printview.php:424 -#: tbl_structure.php:801 +#: tbl_structure.php:799 msgid "Next" msgstr "Další" #. l10n: Display text for current month link in calendar -#: js/messages.php:79 +#: js/messages.php:91 msgid "Today" msgstr "Dnešek" -#: js/messages.php:82 +#: js/messages.php:94 msgid "January" msgstr "leden" -#: js/messages.php:83 +#: js/messages.php:95 msgid "February" msgstr "únor" -#: js/messages.php:84 +#: js/messages.php:96 msgid "March" msgstr "březen" -#: js/messages.php:85 +#: js/messages.php:97 msgid "April" msgstr "duben" -#: js/messages.php:86 +#: js/messages.php:98 msgid "May" msgstr "květen" -#: js/messages.php:87 +#: js/messages.php:99 msgid "June" msgstr "červen" -#: js/messages.php:88 +#: js/messages.php:100 msgid "July" msgstr "červenec" -#: js/messages.php:89 +#: js/messages.php:101 msgid "August" msgstr "srpen" -#: js/messages.php:90 +#: js/messages.php:102 msgid "September" msgstr "září" -#: js/messages.php:91 +#: js/messages.php:103 msgid "October" msgstr "říjen" -#: js/messages.php:92 +#: js/messages.php:104 msgid "November" msgstr "listopad" -#: js/messages.php:93 +#: js/messages.php:105 msgid "December" msgstr "prosinec" #. l10n: Short month name -#: js/messages.php:97 libraries/common.lib.php:1557 +#: js/messages.php:109 libraries/common.lib.php:1557 msgid "Jan" msgstr "led" #. l10n: Short month name -#: js/messages.php:99 libraries/common.lib.php:1559 +#: js/messages.php:111 libraries/common.lib.php:1559 msgid "Feb" msgstr "úno" #. l10n: Short month name -#: js/messages.php:101 libraries/common.lib.php:1561 +#: js/messages.php:113 libraries/common.lib.php:1561 msgid "Mar" msgstr "bře" #. l10n: Short month name -#: js/messages.php:103 libraries/common.lib.php:1563 +#: js/messages.php:115 libraries/common.lib.php:1563 msgid "Apr" msgstr "dub" #. l10n: Short month name -#: js/messages.php:105 libraries/common.lib.php:1565 +#: js/messages.php:117 libraries/common.lib.php:1565 msgctxt "Short month name" msgid "May" msgstr "kvě" #. l10n: Short month name -#: js/messages.php:107 libraries/common.lib.php:1567 +#: js/messages.php:119 libraries/common.lib.php:1567 msgid "Jun" msgstr "čen" #. l10n: Short month name -#: js/messages.php:109 libraries/common.lib.php:1569 +#: js/messages.php:121 libraries/common.lib.php:1569 msgid "Jul" msgstr "čec" #. l10n: Short month name -#: js/messages.php:111 libraries/common.lib.php:1571 +#: js/messages.php:123 libraries/common.lib.php:1571 msgid "Aug" msgstr "srp" #. l10n: Short month name -#: js/messages.php:113 libraries/common.lib.php:1573 +#: js/messages.php:125 libraries/common.lib.php:1573 msgid "Sep" msgstr "zář" #. l10n: Short month name -#: js/messages.php:115 libraries/common.lib.php:1575 +#: js/messages.php:127 libraries/common.lib.php:1575 msgid "Oct" msgstr "říj" #. l10n: Short month name -#: js/messages.php:117 libraries/common.lib.php:1577 +#: js/messages.php:129 libraries/common.lib.php:1577 msgid "Nov" msgstr "lis" #. l10n: Short month name -#: js/messages.php:119 libraries/common.lib.php:1579 +#: js/messages.php:131 libraries/common.lib.php:1579 msgid "Dec" msgstr "pro" -#: js/messages.php:122 +#: js/messages.php:134 msgid "Sunday" msgstr "Neděle" -#: js/messages.php:123 +#: js/messages.php:135 msgid "Monday" msgstr "Pondělí" -#: js/messages.php:124 +#: js/messages.php:136 msgid "Tuesday" msgstr "Úterý" -#: js/messages.php:125 +#: js/messages.php:137 msgid "Wednesday" msgstr "Středa" -#: js/messages.php:126 +#: js/messages.php:138 msgid "Thursday" msgstr "Čtvrtek" -#: js/messages.php:127 +#: js/messages.php:139 msgid "Friday" msgstr "Pátek" -#: js/messages.php:128 +#: js/messages.php:140 msgid "Saturday" msgstr "Sobota" #. l10n: Short week day name -#: js/messages.php:132 libraries/common.lib.php:1582 +#: js/messages.php:144 libraries/common.lib.php:1582 msgid "Sun" msgstr "Ned" #. l10n: Short week day name -#: js/messages.php:134 libraries/common.lib.php:1584 +#: js/messages.php:146 libraries/common.lib.php:1584 msgid "Mon" msgstr "Pon" #. l10n: Short week day name -#: js/messages.php:136 libraries/common.lib.php:1586 +#: js/messages.php:148 libraries/common.lib.php:1586 msgid "Tue" msgstr "Úte" #. l10n: Short week day name -#: js/messages.php:138 libraries/common.lib.php:1588 +#: js/messages.php:150 libraries/common.lib.php:1588 msgid "Wed" msgstr "Stř" #. l10n: Short week day name -#: js/messages.php:140 libraries/common.lib.php:1590 +#: js/messages.php:152 libraries/common.lib.php:1590 msgid "Thu" msgstr "Čtv" #. l10n: Short week day name -#: js/messages.php:142 libraries/common.lib.php:1592 +#: js/messages.php:154 libraries/common.lib.php:1592 msgid "Fri" msgstr "Pát" #. l10n: Short week day name -#: js/messages.php:144 libraries/common.lib.php:1594 +#: js/messages.php:156 libraries/common.lib.php:1594 msgid "Sat" msgstr "Sob" #. l10n: Minimal week day name -#: js/messages.php:148 +#: js/messages.php:160 msgid "Su" msgstr "Ne" #. l10n: Minimal week day name -#: js/messages.php:150 +#: js/messages.php:162 msgid "Mo" msgstr "Po" #. l10n: Minimal week day name -#: js/messages.php:152 +#: js/messages.php:164 msgid "Tu" msgstr "Út" #. l10n: Minimal week day name -#: js/messages.php:154 +#: js/messages.php:166 msgid "We" msgstr "St" #. l10n: Minimal week day name -#: js/messages.php:156 +#: js/messages.php:168 msgid "Th" msgstr "Čt" #. l10n: Minimal week day name -#: js/messages.php:158 +#: js/messages.php:170 msgid "Fr" msgstr "Pá" #. l10n: Minimal week day name -#: js/messages.php:160 +#: js/messages.php:172 msgid "Sa" msgstr "So" #. l10n: Column header for week of the year in calendar -#: js/messages.php:162 +#: js/messages.php:174 msgid "Wk" msgstr "Týd" -#: js/messages.php:164 +#: js/messages.php:176 msgid "Hour" msgstr "Hodiny" -#: js/messages.php:165 +#: js/messages.php:177 msgid "Minute" msgstr "Minuty" -#: js/messages.php:166 +#: js/messages.php:178 msgid "Second" msgstr "Sekundy" @@ -1303,7 +1348,7 @@ msgstr "Indexy" #: libraries/Index.class.php:444 libraries/mult_submits.inc.php:103 #: libraries/tbl_properties.inc.php:519 tbl_structure.php:33 -#: tbl_structure.php:155 tbl_structure.php:159 tbl_structure.php:474 +#: tbl_structure.php:155 tbl_structure.php:159 tbl_structure.php:472 #: tbl_tracking.php:322 msgid "Unique" msgstr "Unikátní" @@ -1346,8 +1391,8 @@ msgstr "" "Indexy %1$s a %2$s vypadají stejné a jeden z nich by pravděpodobně mohl být " "odstraněn." -#: libraries/List_Database.class.php:431 libraries/server_links.inc.php:41 -#: server_databases.php:88 server_privileges.php:1660 +#: libraries/List_Database.class.php:431 libraries/server_links.inc.php:42 +#: server_databases.php:88 server_privileges.php:1680 #: setup/lib/messages.inc.php:110 test/theme.php:93 msgid "Databases" msgstr "Databáze" @@ -1518,7 +1563,7 @@ msgstr "Heslo:" msgid "Server Choice" msgstr "Server" -#: libraries/auth/cookie.auth.lib.php:320 libraries/header.inc.php:59 +#: libraries/auth/cookie.auth.lib.php:320 libraries/header.inc.php:63 msgid "Cookies must be enabled past this point." msgstr "Přihlášení vyžaduje povolené cookies." @@ -1600,7 +1645,7 @@ msgstr "" "Nelze použít funkce iconv ani libiconv ani recode_string, přestože rozšíření " "jsou nahrána. Zkontrolujte nastavení PHP." -#: libraries/common.inc.php:583 +#: libraries/common.inc.php:587 msgid "" "phpMyAdmin was unable to read your configuration file!
This might " "happen if PHP finds a parse error in it or PHP cannot find the file.
Pokud získáte prázdnou " "stránku, všechno je v pořádku." -#: libraries/common.inc.php:594 +#: libraries/common.inc.php:598 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "Nepodařilo se nahrát výchozí konfiguraci ze souboru: %1$s" -#: libraries/common.inc.php:599 +#: libraries/common.inc.php:603 msgid "" "The $cfg['PmaAbsoluteUri'] directive MUST be set in your " "configuration file!" @@ -1629,27 +1674,27 @@ msgstr "" "Parametr $cfg['PmaAbsoluteUri'] MUSÍ být nastaven v konfiguračním " "souboru!" -#: libraries/common.inc.php:629 +#: libraries/common.inc.php:633 #, php-format msgid "Invalid server index: %s" msgstr "Chybný index serveru: „%s“" -#: libraries/common.inc.php:636 +#: libraries/common.inc.php:640 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "Chybné jméno serveru pro server %1$s. Prosím zkontrolujte nastavení." -#: libraries/common.inc.php:645 libraries/header.inc.php:96 +#: libraries/common.inc.php:649 libraries/header.inc.php:100 #: libraries/select_server.lib.php:41 libraries/select_server.lib.php:47 #: main.php:185 test/theme.php:57 msgid "Server" msgstr "Server" -#: libraries/common.inc.php:823 +#: libraries/common.inc.php:827 msgid "Invalid authentication method set in configuration:" msgstr "V konfiguraci máte špatnou autentizační metodu:" -#: libraries/common.inc.php:926 +#: libraries/common.inc.php:930 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Měli byste aktualizovat %s na verzi %s nebo vyšší." @@ -1780,45 +1825,45 @@ msgstr "." msgid "%B %d, %Y at %I:%M %p" msgstr "%a %d. %b %Y, %H:%M" -#: libraries/common.lib.php:1907 +#: libraries/common.lib.php:1911 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s dnů, %s hodin, %s minut a %s sekund" -#: libraries/common.lib.php:2322 libraries/common.lib.php:2325 +#: libraries/common.lib.php:2326 libraries/common.lib.php:2329 #: libraries/display_tbl.lib.php:290 server_status.php:719 msgid "Begin" msgstr "Začátek" -#: libraries/common.lib.php:2323 libraries/common.lib.php:2326 +#: libraries/common.lib.php:2327 libraries/common.lib.php:2330 #: libraries/display_tbl.lib.php:291 server_binlog.php:168 #: server_binlog.php:170 msgid "Previous" msgstr "Předchozí" -#: libraries/common.lib.php:2354 libraries/common.lib.php:2357 +#: libraries/common.lib.php:2358 libraries/common.lib.php:2361 #: libraries/display_tbl.lib.php:353 msgid "End" msgstr "Konec" -#: libraries/common.lib.php:2430 +#: libraries/common.lib.php:2434 #, php-format msgid "Jump to database "%s"." msgstr "Přejít na databázi „%s“." -#: libraries/common.lib.php:2450 +#: libraries/common.lib.php:2454 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "Funkčnost %s je omezena známou chybou, viz %s" -#: libraries/common.lib.php:2830 libraries/common.lib.php:2837 +#: libraries/common.lib.php:2834 libraries/common.lib.php:2841 #: libraries/db_links.inc.php:68 libraries/export/sql.php:25 -#: libraries/import/sql.php:18 libraries/server_links.inc.php:45 +#: libraries/import/sql.php:18 libraries/server_links.inc.php:46 #: libraries/tbl_links.inc.php:60 querywindow.php:99 test/theme.php:97 msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2839 libraries/db_links.inc.php:104 +#: libraries/common.lib.php:2843 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,15 +1912,15 @@ msgstr "Dotaz" msgid "Designer" msgstr "Návrhář" -#: libraries/db_links.inc.php:98 libraries/server_links.inc.php:88 +#: libraries/db_links.inc.php:98 libraries/server_links.inc.php:89 #: libraries/tbl_links.inc.php:91 pmd_pdf.php:84 pmd_pdf.php:110 #: setup/frames/menu.inc.php:21 msgid "Import" msgstr "Import" -#: libraries/db_links.inc.php:111 libraries/server_links.inc.php:66 -#: server_privileges.php:111 server_privileges.php:1722 -#: server_privileges.php:2071 test/theme.php:117 +#: libraries/db_links.inc.php:111 libraries/server_links.inc.php:67 +#: server_privileges.php:112 server_privileges.php:1742 +#: server_privileges.php:2092 test/theme.php:117 msgid "Privileges" msgstr "Oprávnění" @@ -1896,7 +1941,7 @@ msgstr "" "FAQ 3.11[/a]" #: libraries/db_structure.lib.php:69 server_databases.php:142 -#: tbl_printview.php:336 tbl_structure.php:682 +#: tbl_printview.php:336 tbl_structure.php:680 msgid "Overhead" msgstr "Navíc" @@ -1914,7 +1959,7 @@ msgstr "Server neodpovídá" msgid "(or the local MySQL server's socket is not correctly configured)" msgstr "(nebo není správně nastaven lokální socket MySQL serveru)" -#: libraries/dbi/mysql.dbi.lib.php:362 tbl_structure.php:608 +#: libraries/dbi/mysql.dbi.lib.php:362 tbl_structure.php:606 msgid "Details..." msgstr "Podrobnosti..." @@ -1924,22 +1969,22 @@ msgid "Change password" msgstr "Změnit heslo" #: libraries/display_change_password.lib.php:35 -#: libraries/replication_gui.lib.php:345 server_privileges.php:807 +#: libraries/replication_gui.lib.php:345 server_privileges.php:808 msgid "No Password" msgstr "Žádné 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:796 -#: server_privileges.php:800 server_privileges.php:811 -#: server_privileges.php:1538 server_synchronize.php:1175 +#: libraries/replication_gui.lib.php:349 server_privileges.php:797 +#: server_privileges.php:801 server_privileges.php:812 +#: server_privileges.php:1558 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:815 server_privileges.php:818 +#: server_privileges.php:816 server_privileges.php:819 msgid "Re-type" msgstr "Heslo znovu" @@ -1952,12 +1997,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:822 +#: libraries/replication_gui.lib.php:360 server_privileges.php:823 msgid "Generate Password" msgstr "Vytvořit heslo" #: libraries/display_change_password.lib.php:75 -#: libraries/replication_gui.lib.php:363 server_privileges.php:825 +#: libraries/replication_gui.lib.php:363 server_privileges.php:826 msgid "Generate" msgstr "Vytvořit" @@ -1970,8 +2015,8 @@ msgstr "Vytvořit novou databázi" msgid "Create" msgstr "Vytvořit" -#: libraries/display_create_database.lib.php:40 server_privileges.php:113 -#: server_privileges.php:1427 server_replication.php:35 +#: libraries/display_create_database.lib.php:40 server_privileges.php:114 +#: server_privileges.php:1447 server_replication.php:35 msgid "No Privileges" msgstr "Nemáte oprávnění" @@ -2058,7 +2103,7 @@ msgstr "Komprese" #: 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:1875 server_processlist.php:75 +#: server_privileges.php:1895 server_processlist.php:75 msgid "None" msgstr "Žádná" @@ -2252,7 +2297,7 @@ msgstr "Setřídit podle klíče" #: libraries/import/docsql.php:34 libraries/import/ldi.php:47 #: libraries/import/ods.php:30 libraries/import/sql.php:20 #: libraries/import/xls.php:26 libraries/import/xlsx.php:26 -#: libraries/import/xml.php:25 tbl_select.php:267 tbl_structure.php:753 +#: libraries/import/xml.php:25 tbl_select.php:267 tbl_structure.php:751 msgid "Options" msgstr "Nastavení" @@ -2327,7 +2372,7 @@ msgstr "dotaz trval %01.4f sekund" #: libraries/display_tbl.lib.php:2089 libraries/mult_submits.inc.php:113 #: querywindow.php:125 querywindow.php:129 querywindow.php:132 -#: tbl_structure.php:25 tbl_structure.php:150 tbl_structure.php:470 +#: tbl_structure.php:25 tbl_structure.php:150 tbl_structure.php:468 msgid "Change" msgstr "Změnit" @@ -2395,7 +2440,7 @@ msgstr "Využití vyrovnávací paměti" #: libraries/engines/innodb.lib.php:194 server_databases.php:137 #: server_databases.php:305 server_status.php:525 server_status.php:586 -#: server_status.php:607 tbl_printview.php:351 tbl_structure.php:696 +#: server_status.php:607 tbl_printview.php:351 tbl_structure.php:694 msgid "Total" msgstr "Celkem" @@ -2679,7 +2724,7 @@ msgstr "" "soubory vymazány. Jinak jsou soubory přejmenovány a označeny vyšším číslem." #: libraries/export/codegen.php:37 setup/lib/messages.inc.php:88 -#: tbl_printview.php:376 tbl_structure.php:737 +#: tbl_printview.php:376 tbl_structure.php:735 msgid "Format" msgstr "Formát" @@ -2743,8 +2788,8 @@ 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:576 server_replication.php:316 tbl_printview.php:317 -#: tbl_structure.php:665 +#: server_privileges.php:577 server_replication.php:316 tbl_printview.php:317 +#: tbl_structure.php:663 msgid "Data" msgstr "Data" @@ -2793,9 +2838,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:731 -#: server_privileges.php:734 server_privileges.php:790 -#: server_privileges.php:1537 server_privileges.php:2069 +#: libraries/replication_gui.lib.php:329 server_privileges.php:732 +#: server_privileges.php:735 server_privileges.php:791 +#: server_privileges.php:1557 server_privileges.php:2090 #: server_processlist.php:55 server_synchronize.php:1159 msgid "Host" msgstr "Počítač" @@ -2988,7 +3033,7 @@ msgstr "Exportovat obsah" msgid "Open new phpMyAdmin window" msgstr "Otevřít nové okno phpMyAdmina" -#: libraries/header.inc.php:115 +#: libraries/header.inc.php:119 msgid "New table" msgstr "Nová tabulka" @@ -3145,20 +3190,20 @@ msgstr "Převést na Kanu" #: 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 +#: tbl_structure.php:471 msgid "Primary" msgstr "Primární" #: libraries/mult_submits.inc.php:98 libraries/tbl_properties.inc.php:116 #: libraries/tbl_properties.inc.php:525 tbl_printview.php:326 #: tbl_structure.php:31 tbl_structure.php:154 tbl_structure.php:158 -#: tbl_structure.php:475 tbl_structure.php:673 +#: tbl_structure.php:473 tbl_structure.php:671 msgid "Index" msgstr "Index" #: libraries/mult_submits.inc.php:108 libraries/tbl_properties.inc.php:531 #: tbl_structure.php:35 tbl_structure.php:156 tbl_structure.php:160 -#: tbl_structure.php:478 +#: tbl_structure.php:476 msgid "Fulltext" msgstr "Fulltext" @@ -3468,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:711 -#: server_privileges.php:714 server_privileges.php:721 +#: libraries/replication_gui.lib.php:259 server_privileges.php:712 +#: server_privileges.php:715 server_privileges.php:722 #: server_synchronize.php:1171 msgid "User name" msgstr "Jméno uživatele" @@ -3493,7 +3538,7 @@ msgstr "Proměnná" #: 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 +#: tbl_structure.php:727 msgid "Value" msgstr "Hodnota" @@ -3513,34 +3558,34 @@ msgstr "" msgid "Add slave replication user" msgstr "Přidat replikačního uživatele pro podřízený server" -#: libraries/replication_gui.lib.php:254 server_privileges.php:716 +#: libraries/replication_gui.lib.php:254 server_privileges.php:717 msgid "Any user" msgstr "Jakýkoliv uživatel" #: 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 +#: libraries/replication_gui.lib.php:346 server_privileges.php:718 +#: server_privileges.php:785 server_privileges.php:809 +#: server_privileges.php:1948 server_privileges.php:1978 msgid "Use text field" msgstr "Použít textové pole" -#: libraries/replication_gui.lib.php:302 server_privileges.php:764 +#: libraries/replication_gui.lib.php:302 server_privileges.php:765 msgid "Any host" msgstr "Jakýkoliv počítač" -#: libraries/replication_gui.lib.php:306 server_privileges.php:768 +#: libraries/replication_gui.lib.php:306 server_privileges.php:769 msgid "Local" msgstr "Lokální" -#: libraries/replication_gui.lib.php:312 server_privileges.php:773 +#: libraries/replication_gui.lib.php:312 server_privileges.php:774 msgid "This Host" msgstr "Tento počítač" -#: libraries/replication_gui.lib.php:318 server_privileges.php:779 +#: libraries/replication_gui.lib.php:318 server_privileges.php:780 msgid "Use Host Table" msgstr "Použít tabulku Host" -#: libraries/replication_gui.lib.php:331 server_privileges.php:792 +#: libraries/replication_gui.lib.php:331 server_privileges.php:793 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -3576,29 +3621,29 @@ msgstr "Neznámý jazyk: %1$s." msgid "Servers" msgstr "Servery" -#: libraries/server_links.inc.php:53 server_engines.php:112 +#: libraries/server_links.inc.php:54 server_engines.php:112 #: server_engines.php:116 server_status.php:415 test/theme.php:105 msgid "Variables" msgstr "Proměnné" -#: libraries/server_links.inc.php:57 test/theme.php:109 +#: libraries/server_links.inc.php:58 test/theme.php:109 msgid "Charsets" msgstr "Znakové sady" -#: libraries/server_links.inc.php:61 test/theme.php:113 +#: libraries/server_links.inc.php:62 test/theme.php:113 msgid "Engines" msgstr "Úložiště" -#: libraries/server_links.inc.php:76 server_binlog.php:110 +#: libraries/server_links.inc.php:77 server_binlog.php:110 #: server_status.php:364 test/theme.php:121 msgid "Binary log" msgstr "Binární log" -#: libraries/server_links.inc.php:80 +#: libraries/server_links.inc.php:81 msgid "Processes" msgstr "Procesy" -#: libraries/server_links.inc.php:92 server_synchronize.php:1092 +#: libraries/server_links.inc.php:93 server_synchronize.php:1092 #: server_synchronize.php:1100 msgid "Synchronize" msgstr "Synchronizace" @@ -3836,12 +3881,12 @@ msgstr "Definice PARTITION" msgid "Save" msgstr "Uložit" -#: libraries/tbl_properties.inc.php:780 tbl_structure.php:542 +#: libraries/tbl_properties.inc.php:780 tbl_structure.php:540 #, php-format msgid "Add %s column(s)" msgstr "Přidat %s polí" -#: libraries/tbl_properties.inc.php:784 tbl_structure.php:536 +#: libraries/tbl_properties.inc.php:784 tbl_structure.php:534 msgid "You have to add at least one column." msgstr "Musíte přidat alespoň jedno pole." @@ -4010,8 +4055,8 @@ msgstr "Původní" msgid "Protocol version" msgstr "Verze protokolu" -#: main.php:189 server_privileges.php:1389 server_privileges.php:1536 -#: server_privileges.php:1650 server_privileges.php:2068 +#: main.php:189 server_privileges.php:1406 server_privileges.php:1556 +#: server_privileges.php:1670 server_privileges.php:2089 #: server_processlist.php:54 msgid "User" msgstr "Uživatel" @@ -4451,114 +4496,114 @@ msgstr "Úložiště" msgid "View dump (schema) of databases" msgstr "Export databází" -#: server_privileges.php:24 server_privileges.php:266 +#: server_privileges.php:25 server_privileges.php:267 msgid "Includes all privileges except GRANT." msgstr "Všechna oprávnění kromě GRANT." -#: server_privileges.php:25 server_privileges.php:192 -#: server_privileges.php:515 +#: server_privileges.php:26 server_privileges.php:193 +#: server_privileges.php:516 msgid "Allows altering the structure of existing tables." msgstr "Umožňuje měnit strukturu existujících tabulek." -#: server_privileges.php:26 server_privileges.php:208 -#: server_privileges.php:521 +#: server_privileges.php:27 server_privileges.php:209 +#: server_privileges.php:522 msgid "Allows altering and dropping stored routines." msgstr "Umožňuje měnit a rušit uložené procedury." -#: server_privileges.php:27 server_privileges.php:184 -#: server_privileges.php:514 +#: server_privileges.php:28 server_privileges.php:185 +#: server_privileges.php:515 msgid "Allows creating new databases and tables." msgstr "Umožňuje vytvářet nové databáze a tabulky." -#: server_privileges.php:28 server_privileges.php:207 -#: server_privileges.php:520 +#: server_privileges.php:29 server_privileges.php:208 +#: server_privileges.php:521 msgid "Allows creating stored routines." msgstr "Umožňuje vytvářet uložené procedury." -#: server_privileges.php:29 server_privileges.php:514 +#: server_privileges.php:30 server_privileges.php:515 msgid "Allows creating new tables." msgstr "Umožňuje vytvářet nové tabulky." -#: server_privileges.php:30 server_privileges.php:195 -#: server_privileges.php:518 +#: server_privileges.php:31 server_privileges.php:196 +#: server_privileges.php:519 msgid "Allows creating temporary tables." msgstr "Umožňuje vytvářet dočasné tabulky." -#: server_privileges.php:31 server_privileges.php:209 -#: server_privileges.php:554 +#: server_privileges.php:32 server_privileges.php:210 +#: server_privileges.php:555 msgid "Allows creating, dropping and renaming user accounts." msgstr "Umožňuje vytvářet, rušit a přejmenovávat účty uživatelů." -#: server_privileges.php:32 server_privileges.php:199 -#: server_privileges.php:203 server_privileges.php:526 -#: server_privileges.php:530 +#: server_privileges.php:33 server_privileges.php:200 +#: server_privileges.php:204 server_privileges.php:527 +#: server_privileges.php:531 msgid "Allows creating new views." msgstr "Umožňuje vytvářet nové pohledy." -#: server_privileges.php:33 server_privileges.php:183 -#: server_privileges.php:506 +#: server_privileges.php:34 server_privileges.php:184 +#: server_privileges.php:507 msgid "Allows deleting data." msgstr "Umožňuje mazat data." -#: server_privileges.php:34 server_privileges.php:185 -#: server_privileges.php:517 +#: server_privileges.php:35 server_privileges.php:186 +#: server_privileges.php:518 msgid "Allows dropping databases and tables." msgstr "Umožňuje odstranit databáze a tabulky." -#: server_privileges.php:35 server_privileges.php:517 +#: server_privileges.php:36 server_privileges.php:518 msgid "Allows dropping tables." msgstr "Umožňuje odstranit tabulky." -#: server_privileges.php:36 server_privileges.php:200 -#: server_privileges.php:534 +#: server_privileges.php:37 server_privileges.php:201 +#: server_privileges.php:535 msgid "Allows to set up events for the event scheduler" msgstr "Umožňuje plánovat úlohy pomocí plánovače" -#: server_privileges.php:37 server_privileges.php:210 -#: server_privileges.php:522 +#: server_privileges.php:38 server_privileges.php:211 +#: server_privileges.php:523 msgid "Allows executing stored routines." msgstr "Umožňuje spouštět uložené procedury." -#: server_privileges.php:38 server_privileges.php:189 -#: server_privileges.php:509 +#: server_privileges.php:39 server_privileges.php:190 +#: server_privileges.php:510 msgid "Allows importing data from and exporting data into files." msgstr "Umožňuje importovat a exportovat data z/do souborů na serveru." -#: server_privileges.php:39 server_privileges.php:540 +#: server_privileges.php:40 server_privileges.php:541 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "Umožňuje přidávat uživatele a oprávnění bez znovunačítání tabulek " "s oprávněními." -#: server_privileges.php:40 server_privileges.php:191 -#: server_privileges.php:516 +#: server_privileges.php:41 server_privileges.php:192 +#: server_privileges.php:517 msgid "Allows creating and dropping indexes." msgstr "Umožňuje vytvářet a rušit indexy." -#: server_privileges.php:41 server_privileges.php:181 -#: server_privileges.php:442 server_privileges.php:504 +#: server_privileges.php:42 server_privileges.php:182 +#: server_privileges.php:443 server_privileges.php:505 msgid "Allows inserting and replacing data." msgstr "Umožňuje vkládat a přepisovat data." -#: server_privileges.php:42 server_privileges.php:196 -#: server_privileges.php:549 +#: server_privileges.php:43 server_privileges.php:197 +#: server_privileges.php:550 msgid "Allows locking tables for the current thread." msgstr "Umožňuje zamknout tabulku pro aktuální vlákno." -#: server_privileges.php:43 server_privileges.php:646 -#: server_privileges.php:648 +#: server_privileges.php:44 server_privileges.php:647 +#: server_privileges.php:649 msgid "Limits the number of new connections the user may open per hour." msgstr "" "Omezuje počet nových připojení, která může uživatel vytvořit za hodinu." -#: server_privileges.php:44 server_privileges.php:634 -#: server_privileges.php:636 +#: server_privileges.php:45 server_privileges.php:635 +#: server_privileges.php:637 msgid "Limits the number of queries the user may send to the server per hour." msgstr "Omezuje, kolik dotazů může uživatel odeslat serveru za hodinu." -#: server_privileges.php:45 server_privileges.php:640 -#: server_privileges.php:642 +#: server_privileges.php:46 server_privileges.php:641 +#: server_privileges.php:643 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -4566,60 +4611,60 @@ msgstr "" "Omezuje, kolik dotazů měnících nějakou tabulku nebo databázi může uživatel " "spustit za hodinu." -#: server_privileges.php:46 server_privileges.php:652 -#: server_privileges.php:654 +#: server_privileges.php:47 server_privileges.php:653 +#: server_privileges.php:655 msgid "Limits the number of simultaneous connections the user may have." msgstr "Omezuje počet současných připojení uživatele." -#: server_privileges.php:47 server_privileges.php:188 -#: server_privileges.php:544 +#: server_privileges.php:48 server_privileges.php:189 +#: server_privileges.php:545 msgid "Allows viewing processes of all users" msgstr "Umožňuje prohlížet procesy všech uživatelů" -#: server_privileges.php:48 server_privileges.php:190 -#: server_privileges.php:448 server_privileges.php:550 +#: server_privileges.php:49 server_privileges.php:191 +#: server_privileges.php:449 server_privileges.php:551 msgid "Has no effect in this MySQL version." msgstr "Nemá žádný vliv v této verzi MySQL." -#: server_privileges.php:49 server_privileges.php:186 -#: server_privileges.php:545 +#: server_privileges.php:50 server_privileges.php:187 +#: server_privileges.php:546 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" "Umožňuje znovu načíst nastavení a vyprázdnění vyrovnávacích pamětí MySQL " "serveru." -#: server_privileges.php:50 server_privileges.php:198 -#: server_privileges.php:552 +#: server_privileges.php:51 server_privileges.php:199 +#: server_privileges.php:553 msgid "Allows the user to ask where the slaves / masters are." msgstr "Umožní uživateli zjistit, kde je hlavní / pomocný server." -#: server_privileges.php:51 server_privileges.php:197 -#: server_privileges.php:553 +#: server_privileges.php:52 server_privileges.php:198 +#: server_privileges.php:554 msgid "Needed for the replication slaves." msgstr "Potřebné pro replikaci pomocných serverů." -#: server_privileges.php:52 server_privileges.php:180 -#: server_privileges.php:439 server_privileges.php:503 +#: server_privileges.php:53 server_privileges.php:181 +#: server_privileges.php:440 server_privileges.php:504 msgid "Allows reading data." msgstr "Umožňuje vybírat data." -#: server_privileges.php:53 server_privileges.php:193 -#: server_privileges.php:547 +#: server_privileges.php:54 server_privileges.php:194 +#: server_privileges.php:548 msgid "Gives access to the complete list of databases." msgstr "Umožňuje přístup k úplnému seznamu databází." -#: server_privileges.php:54 server_privileges.php:204 -#: server_privileges.php:206 server_privileges.php:519 +#: server_privileges.php:55 server_privileges.php:205 +#: server_privileges.php:207 server_privileges.php:520 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Umožňuje spuštění dotazu SHOW CREATE VIEW." -#: server_privileges.php:55 server_privileges.php:187 -#: server_privileges.php:546 +#: server_privileges.php:56 server_privileges.php:188 +#: server_privileges.php:547 msgid "Allows shutting down the server." msgstr "Umožňuje vypnout server." -#: server_privileges.php:56 server_privileges.php:194 -#: server_privileges.php:543 +#: server_privileges.php:57 server_privileges.php:195 +#: server_privileges.php:544 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -4629,152 +4674,152 @@ msgstr "" "pro většinu operací pro správu serveru jako nastavování globálních " "proměnných a zabíjení vláken jiných uživatelů." -#: server_privileges.php:57 server_privileges.php:201 -#: server_privileges.php:535 +#: server_privileges.php:58 server_privileges.php:202 +#: server_privileges.php:536 msgid "Allows creating and dropping triggers" msgstr "Umožňuje vytváření a mazání spouští" -#: server_privileges.php:58 server_privileges.php:182 -#: server_privileges.php:445 server_privileges.php:505 +#: server_privileges.php:59 server_privileges.php:183 +#: server_privileges.php:446 server_privileges.php:506 msgid "Allows changing data." msgstr "Umožňuje měnit data." -#: server_privileges.php:59 server_privileges.php:260 +#: server_privileges.php:60 server_privileges.php:261 msgid "No privileges." msgstr "Žádná oprávnění." -#: server_privileges.php:302 server_privileges.php:303 +#: server_privileges.php:303 server_privileges.php:304 msgctxt "None privileges" msgid "None" msgstr "Žádná" -#: server_privileges.php:431 server_privileges.php:566 -#: server_privileges.php:1718 server_privileges.php:1724 +#: server_privileges.php:432 server_privileges.php:567 +#: server_privileges.php:1738 server_privileges.php:1744 msgid "Table-specific privileges" msgstr "Oprávnění pro jednotlivé tabulky" -#: server_privileges.php:432 server_privileges.php:574 -#: server_privileges.php:1540 +#: server_privileges.php:433 server_privileges.php:575 +#: server_privileges.php:1560 msgid " Note: MySQL privilege names are expressed in English " msgstr " Poznámka: názvy oprávnění v MySQL jsou uváděny anglicky " -#: server_privileges.php:563 server_privileges.php:1539 +#: server_privileges.php:564 server_privileges.php:1559 msgid "Global privileges" msgstr "Globální oprávnění" -#: server_privileges.php:565 server_privileges.php:1718 +#: server_privileges.php:566 server_privileges.php:1738 msgid "Database-specific privileges" msgstr "Oprávnění pro jednotlivé databáze" -#: server_privileges.php:610 +#: server_privileges.php:611 msgid "Administration" msgstr "Správa" -#: server_privileges.php:630 +#: server_privileges.php:631 msgid "Resource limits" msgstr "Omezení zdrojů" -#: server_privileges.php:631 +#: server_privileges.php:632 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "Poznámka: Nastavení těchto parametrů na 0 (nulu) odstraní omezení." -#: server_privileges.php:708 +#: server_privileges.php:709 msgid "Login Information" msgstr "Přihlašování" -#: server_privileges.php:802 +#: server_privileges.php:803 msgid "Do not change the password" msgstr "Neměnit heslo" -#: server_privileges.php:843 server_privileges.php:2205 +#: server_privileges.php:844 server_privileges.php:2226 msgid "No user found." msgstr "Nebyl nalezen žádný uživatel." -#: server_privileges.php:887 +#: server_privileges.php:888 #, php-format msgid "The user %s already exists!" msgstr "Uživatel %s již existuje!" -#: server_privileges.php:970 +#: server_privileges.php:971 msgid "You have added a new user." msgstr "Uživatel byl přidán." -#: server_privileges.php:1191 +#: server_privileges.php:1196 #, php-format msgid "You have updated the privileges for %s." msgstr "Byla aktualizována oprávnění pro %s." -#: server_privileges.php:1215 +#: server_privileges.php:1220 #, php-format msgid "You have revoked the privileges for %s" msgstr "Byla zrušena práva pro %s" -#: server_privileges.php:1251 +#: server_privileges.php:1256 #, php-format msgid "The password for %s was changed successfully." msgstr "Heslo pro %s bylo úspěšně změněno." -#: server_privileges.php:1271 +#: server_privileges.php:1276 #, php-format msgid "Deleting %s" msgstr "Odstraňuji %s" -#: server_privileges.php:1282 +#: server_privileges.php:1287 msgid "No users selected for deleting!" msgstr "Musíte vybrat uživatele, které chcete odstranit!" -#: server_privileges.php:1285 +#: server_privileges.php:1290 msgid "Reloading the privileges" msgstr "Načítám oprávnění" -#: server_privileges.php:1300 +#: server_privileges.php:1305 msgid "The selected users have been deleted successfully." msgstr "Vybraní uživatelé byli úspěšně odstraněni." -#: server_privileges.php:1335 +#: server_privileges.php:1344 msgid "The privileges were reloaded successfully." msgstr "Oprávnění byla načtena úspěšně." -#: server_privileges.php:1363 server_privileges.php:1649 +#: server_privileges.php:1380 server_privileges.php:1669 msgid "Edit Privileges" msgstr "Upravit oprávnění" -#: server_privileges.php:1372 +#: server_privileges.php:1389 msgid "Revoke" msgstr "Zrušit" -#: server_privileges.php:1404 +#: server_privileges.php:1424 msgid "User overview" msgstr "Přehled uživatelů" -#: server_privileges.php:1541 server_privileges.php:1723 -#: server_privileges.php:2072 +#: server_privileges.php:1561 server_privileges.php:1743 +#: server_privileges.php:2093 msgid "Grant" msgstr "Přidělování" -#: server_privileges.php:1560 server_privileges.php:2162 +#: server_privileges.php:1580 server_privileges.php:2183 msgid "Any" msgstr "Jakýkoliv" -#: server_privileges.php:1609 server_privileges.php:1633 -#: server_privileges.php:2027 server_privileges.php:2216 +#: server_privileges.php:1629 server_privileges.php:1653 +#: server_privileges.php:2048 server_privileges.php:2237 msgid "Add a new User" msgstr "Přidat nového uživatele" -#: server_privileges.php:1614 +#: server_privileges.php:1634 msgid "Remove selected users" msgstr "Odstranit vybrané uživatele" -#: server_privileges.php:1617 +#: server_privileges.php:1637 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "Odebrat uživatelům veškerá oprávnění a poté je odstranit z tabulek." -#: server_privileges.php:1618 server_privileges.php:1619 -#: server_privileges.php:1620 +#: server_privileges.php:1638 server_privileges.php:1639 +#: server_privileges.php:1640 msgid "Drop the databases that have the same names as the users." msgstr "Odstranit databáze se stejnými jmény jako uživatelé." -#: server_privileges.php:1636 +#: server_privileges.php:1656 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -4787,91 +4832,91 @@ msgstr "" "tyto tabulky upravovány. V tomto případě je vhodné provést %snové načtení " "oprávnění%s před pokračováním." -#: server_privileges.php:1684 +#: server_privileges.php:1704 msgid "The selected user was not found in the privilege table." msgstr "Zvolený uživatel nebyl nalezen v tabulce oprávnění." -#: server_privileges.php:1724 +#: server_privileges.php:1744 msgid "Column-specific privileges" msgstr "Oprávnění pro jednotlivá pole" -#: server_privileges.php:1925 +#: server_privileges.php:1945 msgid "Add privileges on the following database" msgstr "Přidat oprávnění pro databázi" -#: server_privileges.php:1943 +#: server_privileges.php:1963 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" "Zástupné znaky _ a % by měly být escapovány pomocí \\ pokud je chcete použít " "jako znak" -#: server_privileges.php:1946 +#: server_privileges.php:1966 msgid "Add privileges on the following table" msgstr "Přidat oprávnění pro tabulku" -#: server_privileges.php:2003 +#: server_privileges.php:2023 msgid "Change Login Information / Copy User" msgstr "Změnit informace o uživateli / Kopírovat uživatele" -#: server_privileges.php:2006 +#: server_privileges.php:2026 msgid "Create a new user with the same privileges and ..." msgstr "Vytvořit nového uživatele se stejnými oprávněními a ..." -#: server_privileges.php:2008 +#: server_privileges.php:2028 msgid "... keep the old one." msgstr "... zachovat původního uživatele." -#: server_privileges.php:2009 +#: server_privileges.php:2029 msgid " ... delete the old one from the user tables." msgstr " ... smazat původního uživatele ze všech tabulek." -#: server_privileges.php:2010 +#: server_privileges.php:2030 msgid "" " ... revoke all active privileges from the old one and delete it afterwards." msgstr " ... odebrat všechna oprávnění původnímu uživateli a poté ho smazat." -#: server_privileges.php:2011 +#: server_privileges.php:2031 msgid "" " ... delete the old one from the user tables and reload the privileges " "afterwards." msgstr " ... smazat uživatele a poté znovu načíst oprávnění." -#: server_privileges.php:2033 +#: server_privileges.php:2054 msgid "Database for user" msgstr "Databáze pro uživatele" -#: server_privileges.php:2037 +#: server_privileges.php:2058 msgctxt "Create none database for user" msgid "None" msgstr "Žádná" -#: server_privileges.php:2038 +#: server_privileges.php:2059 msgid "Create database with same name and grant all privileges" msgstr "Vytvořit databázi stejného jména a přidělit všechna oprávnění" -#: server_privileges.php:2039 +#: server_privileges.php:2060 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "Přidělit všechna oprávnění na jméno odpovídající masce (uživatel\\_%)" -#: server_privileges.php:2042 +#: server_privileges.php:2063 #, php-format msgid "Grant all privileges on database "%s"" msgstr "Přidělit všechna oprávnění na databázi "%s"" -#: server_privileges.php:2065 +#: server_privileges.php:2086 #, php-format msgid "Users having access to "%s"" msgstr "Uživatelé mající přístup k „%s“" -#: server_privileges.php:2173 +#: server_privileges.php:2194 msgid "global" msgstr "globální" -#: server_privileges.php:2175 +#: server_privileges.php:2196 msgid "database-specific" msgstr "závislé na databázi" -#: server_privileges.php:2177 +#: server_privileges.php:2198 msgid "wildcard" msgstr "maska" @@ -7819,6 +7864,10 @@ msgstr "Vložit jako nový řádek a ignorovat chyby" msgid "Show insert query" msgstr "Zobrazit dotaz pro vložení" +#: tbl_change.php:1143 +msgid "and then" +msgstr "a poté" + #: tbl_change.php:1147 msgid "Go back to previous page" msgstr "Návrat na předchozí stránku" @@ -7899,7 +7948,7 @@ msgstr "(„PRIMARY“ musí být jméno pouze primárního klíč msgid "Add to index  %s column(s)" msgstr "Přidat %s polí do indexu" -#: tbl_indexes.php:256 tbl_structure.php:589 tbl_structure.php:600 +#: tbl_indexes.php:256 tbl_structure.php:587 tbl_structure.php:598 msgid "Column count has to be larger than zero." msgstr "Počet polí musí být větší než nula." @@ -8011,39 +8060,39 @@ msgstr "Zkontrolovat integritu odkazů:" msgid "Show tables" msgstr "Zobrazit tabulky" -#: tbl_printview.php:310 tbl_structure.php:656 +#: tbl_printview.php:310 tbl_structure.php:654 msgid "Space usage" msgstr "Využití místa" -#: tbl_printview.php:314 tbl_structure.php:660 +#: tbl_printview.php:314 tbl_structure.php:658 msgid "Usage" msgstr "Používá" -#: tbl_printview.php:341 tbl_structure.php:687 +#: tbl_printview.php:341 tbl_structure.php:685 msgid "Effective" msgstr "Efektivní" -#: tbl_printview.php:366 tbl_structure.php:725 +#: tbl_printview.php:366 tbl_structure.php:723 msgid "Row Statistics" msgstr "Statistika řádků" -#: tbl_printview.php:369 tbl_structure.php:728 +#: tbl_printview.php:369 tbl_structure.php:726 msgid "Statements" msgstr "Údaj" -#: tbl_printview.php:380 tbl_structure.php:740 +#: tbl_printview.php:380 tbl_structure.php:738 msgid "static" msgstr "statický" -#: tbl_printview.php:382 tbl_structure.php:742 +#: tbl_printview.php:382 tbl_structure.php:740 msgid "dynamic" msgstr "dynamický" -#: tbl_printview.php:404 tbl_structure.php:785 +#: tbl_printview.php:404 tbl_structure.php:783 msgid "Row length" msgstr "Délka řádku" -#: tbl_printview.php:414 tbl_structure.php:793 +#: tbl_printview.php:414 tbl_structure.php:791 msgid " Row size " msgstr " Velikost řádku " @@ -8109,47 +8158,47 @@ msgstr "Žádná" msgid "Column %s has been dropped" msgstr "Pole %s byla odstraněno" -#: tbl_structure.php:385 +#: tbl_structure.php:384 #, php-format msgid "A primary key has been added on %s" msgstr "V tabulce %s byl vytvořen primární klíč" -#: tbl_structure.php:400 tbl_structure.php:414 tbl_structure.php:428 +#: tbl_structure.php:398 tbl_structure.php:412 tbl_structure.php:426 #, php-format msgid "An index has been added on %s" msgstr "Na poli %s byl vytvořen index" -#: tbl_structure.php:506 tbl_structure.php:508 +#: tbl_structure.php:504 tbl_structure.php:506 msgid "Relation view" msgstr "Zobrazit relace" -#: tbl_structure.php:515 tbl_structure.php:517 +#: tbl_structure.php:513 tbl_structure.php:515 msgid "Propose table structure" msgstr "Navrhnout strukturu tabulky" -#: tbl_structure.php:540 +#: tbl_structure.php:538 msgid "Add column" msgstr "Přidat sloupec" -#: tbl_structure.php:554 +#: tbl_structure.php:552 msgid "At End of Table" msgstr "Na konci tabulky" -#: tbl_structure.php:555 +#: tbl_structure.php:553 msgid "At Beginning of Table" msgstr "Na začátku tabulky" -#: tbl_structure.php:556 +#: tbl_structure.php:554 #, php-format msgid "After %s" msgstr "Po %s" -#: tbl_structure.php:594 +#: tbl_structure.php:592 #, php-format msgid "Create an index on  %s columns" msgstr "Vytvořit index na  %s polích" -#: tbl_structure.php:756 +#: tbl_structure.php:754 msgid "partitioned" msgstr "používá oddíly" diff --git a/po/cy.po b/po/cy.po index af42610f4..00aae916f 100644 --- a/po/cy.po +++ b/po/cy.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-06-13 09:03-0400\n" +"POT-Creation-Date: 2010-06-22 00:55+0530\n" "PO-Revision-Date: 2010-06-07 20:23+0200\n" "Last-Translator: \n" "Language-Team: Welsh \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:1514 +#: libraries/display_tbl.lib.php:417 server_privileges.php:1534 msgid "Show all" msgstr "Dangos pob" -#: browse_foreigners.php:82 libraries/common.lib.php:2313 +#: browse_foreigners.php:82 libraries/common.lib.php:2317 #: 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,18 +41,18 @@ 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:2831 -#: libraries/common.lib.php:2838 libraries/db_links.inc.php:75 +#: db_structure.php:106 libraries/common.lib.php:2835 +#: libraries/common.lib.php:2842 libraries/db_links.inc.php:75 #: libraries/tbl_links.inc.php:63 msgid "Search" msgstr "Chwilio" -#: browse_foreigners.php:153 db_operations.php:385 db_operations.php:429 -#: db_operations.php:499 db_operations.php:609 db_search.php:362 -#: db_structure.php:567 js/messages.php:48 libraries/Config.class.php:1046 +#: browse_foreigners.php:153 db_operations.php:394 db_operations.php:438 +#: db_operations.php:508 db_operations.php:618 db_search.php:362 +#: db_structure.php:565 js/messages.php:53 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:1335 libraries/common.lib.php:2288 +#: libraries/common.lib.php:1335 libraries/common.lib.php:2292 #: 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,15 +63,15 @@ msgstr "Chwilio" #: 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:664 server_privileges.php:1624 -#: server_privileges.php:1971 server_privileges.php:2018 -#: server_privileges.php:2057 server_replication.php:235 +#: server_privileges.php:665 server_privileges.php:1644 +#: server_privileges.php:1991 server_privileges.php:2038 +#: server_privileges.php:2078 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 #: tbl_operations.php:302 tbl_operations.php:499 tbl_operations.php:561 -#: tbl_operations.php:681 tbl_select.php:327 tbl_structure.php:562 -#: tbl_structure.php:597 tbl_tracking.php:395 tbl_tracking.php:512 +#: tbl_operations.php:681 tbl_select.php:327 tbl_structure.php:560 +#: tbl_structure.php:595 tbl_tracking.php:395 tbl_tracking.php:512 #: view_create.php:182 view_operations.php:101 msgid "Go" msgstr "Ewch" @@ -97,7 +97,7 @@ msgstr "Defnyddiwch y gwerth hwn" msgid "Database %1$s has been created." msgstr "Cafodd y gronfa ddata %1$s ei chreu." -#: db_datadict.php:49 db_operations.php:378 +#: db_datadict.php:49 db_operations.php:387 msgid "Database comment: " msgstr "Sylw cronfa ddata:" @@ -122,10 +122,10 @@ msgstr "Colofn" #: 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:2070 +#: pdf_schema.php:1263 pdf_schema.php:1284 server_privileges.php:2091 #: 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 +#: tbl_structure.php:657 tbl_tracking.php:274 tbl_tracking.php:321 msgid "Type" msgstr "Math" @@ -138,7 +138,7 @@ msgstr "Math" msgid "Null" msgstr "Null" -#: db_datadict.php:178 db_structure.php:501 libraries/export/htmlword.php:247 +#: db_datadict.php:178 db_structure.php:499 libraries/export/htmlword.php:247 #: libraries/export/latex.php:360 libraries/export/odt.php:303 #: libraries/export/texytext.php:236 libraries/tbl_properties.inc.php:106 #: pdf_schema.php:1266 pdf_schema.php:1287 tbl_printview.php:146 @@ -166,9 +166,9 @@ msgstr "Sylwadau" #: 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: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 +#: pdf_schema.php:1344 server_privileges.php:1588 server_privileges.php:1599 +#: server_privileges.php:1909 server_privileges.php:1914 +#: server_privileges.php:2208 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 "Na" @@ -182,9 +182,9 @@ msgstr "Na" #: 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:1565 -#: server_privileges.php:1579 server_privileges.php:1889 -#: server_privileges.php:1892 server_privileges.php:2187 sql.php:193 +#: server_databases.php:64 server_privileges.php:1585 +#: server_privileges.php:1599 server_privileges.php:1909 +#: server_privileges.php:1912 server_privileges.php:2208 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" @@ -211,119 +211,115 @@ msgstr "Dewis Pob" msgid "Unselect All" msgstr "Dad-ddewis Pob" -#: db_operations.php:38 tbl_create.php:54 +#: db_operations.php:43 tbl_create.php:54 msgid "The database name is empty!" msgstr "Mae enw'r gronfa ddata'n wag!" -#: db_operations.php:236 +#: db_operations.php:241 #, php-format msgid "Database %s has been renamed to %s" msgstr "Cafodd cronfa ddata %s ei hailenwi i %s" -#: db_operations.php:240 +#: db_operations.php:245 #, php-format msgid "Database %s has been copied to %s" msgstr "Cafodd y gronfa ddata %s ei chopïo i %s" -#: db_operations.php:412 +#: db_operations.php:421 msgid "Rename database to" msgstr "Ailenwch y gronfa ddata i" -#: db_operations.php:417 server_processlist.php:57 +#: db_operations.php:426 server_processlist.php:57 msgid "Command" msgstr "Gorchymyn" -#: db_operations.php:429 tbl_change.php:1143 -msgid "and then" -msgstr "ac yna" - -#: db_operations.php:455 +#: db_operations.php:464 msgid "Copy database to" msgstr "Copïwch y gronfa ddata i" -#: db_operations.php:462 tbl_operations.php:528 tbl_tracking.php:388 +#: db_operations.php:471 tbl_operations.php:528 tbl_tracking.php:388 msgid "Structure only" msgstr "Strwythur yn unig" -#: db_operations.php:463 tbl_operations.php:529 tbl_tracking.php:390 +#: db_operations.php:472 tbl_operations.php:529 tbl_tracking.php:390 msgid "Structure and data" msgstr "Strwythur a data" -#: db_operations.php:464 tbl_operations.php:530 tbl_tracking.php:389 +#: db_operations.php:473 tbl_operations.php:530 tbl_tracking.php:389 msgid "Data only" msgstr "Data yn unig" -#: db_operations.php:472 +#: db_operations.php:481 msgid "CREATE DATABASE before copying" msgstr "Defnyddiwch CREATE DATABASE cyn copïo" -#: db_operations.php:475 libraries/export/sql.php:52 +#: db_operations.php:484 libraries/export/sql.php:52 #: libraries/export/sql.php:74 libraries/export/sql.php:76 #: libraries/export/sql.php:82 tbl_operations.php:536 #, php-format msgid "Add %s" msgstr "Ychwanegwch %s" -#: db_operations.php:479 libraries/export/sql.php:78 tbl_operations.php:299 +#: db_operations.php:488 libraries/export/sql.php:78 tbl_operations.php:299 #: tbl_operations.php:538 msgid "Add AUTO_INCREMENT value" msgstr "Ychwanegwch werth AUTO_INCREMENT" -#: db_operations.php:483 tbl_operations.php:545 +#: db_operations.php:492 tbl_operations.php:545 msgid "Add constraints" msgstr "Ychwanegwch cyfyngiadau" -#: db_operations.php:496 +#: db_operations.php:505 msgid "Switch to copied database" msgstr "Newidiwch i'r gronfa ddata a gopïwyd" -#: db_operations.php:537 +#: db_operations.php:546 msgid "BLOB Repository" msgstr "Ystorfa BLOB" -#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1352 -#: libraries/server_links.inc.php:49 server_processlist.php:59 +#: db_operations.php:549 db_tracking.php:76 libraries/common.lib.php:1352 +#: libraries/server_links.inc.php:50 server_processlist.php:59 #: tbl_tracking.php:596 test/theme.php:101 msgid "Status" msgstr "Statws" -#: db_operations.php:548 +#: db_operations.php:557 msgctxt "BLOB repository" msgid "Enabled" msgstr "Galluogwyd" -#: db_operations.php:552 +#: db_operations.php:561 msgid "Disable" msgstr "Analluogwch" -#: db_operations.php:562 +#: db_operations.php:571 msgid "Damaged" msgstr "Wedi difrodi" -#: db_operations.php:566 +#: db_operations.php:575 msgctxt "BLOB repository" msgid "Repair" msgstr "Trwsiwch" -#: db_operations.php:574 +#: db_operations.php:583 msgctxt "BLOB repository" msgid "Disabled" msgstr "Analluogwyd" -#: db_operations.php:578 +#: db_operations.php:587 msgid "Enable" msgstr "Galluogwch" -#: db_operations.php:602 libraries/Index.class.php:448 +#: db_operations.php:611 libraries/Index.class.php:448 #: libraries/db_structure.lib.php:62 libraries/mysql_charsets.lib.php:107 #: libraries/tbl_properties.inc.php:107 libraries/tbl_properties.inc.php:730 #: server_collations.php:54 server_collations.php:66 server_databases.php:111 #: tbl_operations.php:363 tbl_select.php:137 tbl_structure.php:179 -#: tbl_structure.php:767 tbl_tracking.php:275 tbl_tracking.php:326 +#: tbl_structure.php:765 tbl_tracking.php:275 tbl_tracking.php:326 msgid "Collation" msgstr "Coladiad" -#: db_operations.php:615 main.php:316 pdf_schema.php:34 +#: db_operations.php:624 main.php:316 pdf_schema.php:34 #, php-format msgid "" "The additional features for working with linked tables have been " @@ -332,14 +328,14 @@ msgstr "" "Mae'r nodweddion ar gyfer gweithio gyda thablau sydd wedi cysylltu wedi'u " "hanalluogi. Pwyswch %syma%s i ddarganfod pam." -#: db_operations.php:648 +#: db_operations.php:657 msgid "Edit PDF Pages" msgstr "Golygwch Dudalennau 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:1665 -#: server_privileges.php:1721 server_privileges.php:1985 +#: libraries/header.inc.php:130 pdf_pages.php:424 server_privileges.php:1685 +#: server_privileges.php:1741 server_privileges.php:2005 #: server_synchronize.php:423 server_synchronize.php:866 tbl_tracking.php:592 #: test/theme.php:75 msgid "Table" @@ -348,7 +344,7 @@ msgstr "Tabl" #: db_printview.php:105 libraries/db_structure.lib.php:56 #: libraries/header_printview.inc.php:63 libraries/import.lib.php:146 #: navigation.php:638 navigation.php:660 server_databases.php:122 -#: tbl_printview.php:394 tbl_structure.php:365 tbl_structure.php:777 +#: tbl_printview.php:394 tbl_structure.php:365 tbl_structure.php:775 msgid "Rows" msgstr "Rhesi" @@ -356,30 +352,30 @@ msgstr "Rhesi" msgid "Size" msgstr "Maint" -#: db_printview.php:162 db_structure.php:457 libraries/export/sql.php:559 +#: db_printview.php:162 db_structure.php:455 libraries/export/sql.php:559 #: libraries/export/sql.php:899 msgid "in use" msgstr "ar ddefnydd" #: db_printview.php:187 libraries/db_info.inc.php:88 #: libraries/export/sql.php:514 pdf_schema.php:1241 tbl_printview.php:434 -#: tbl_structure.php:809 +#: tbl_structure.php:807 msgid "Creation" msgstr "Cread" #: db_printview.php:196 libraries/db_info.inc.php:93 #: libraries/export/sql.php:519 pdf_schema.php:1246 tbl_printview.php:444 -#: tbl_structure.php:817 +#: tbl_structure.php:815 msgid "Last update" msgstr "Diweddariad diwethaf" #: db_printview.php:205 libraries/db_info.inc.php:98 #: libraries/export/sql.php:524 pdf_schema.php:1251 tbl_printview.php:454 -#: tbl_structure.php:825 +#: tbl_structure.php:823 msgid "Last check" msgstr "Gwiriad diwethaf" -#: db_printview.php:222 db_structure.php:480 +#: db_printview.php:222 db_structure.php:478 #, php-format msgid "%s table" msgid_plural "%s tables" @@ -439,7 +435,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:297 tbl_change.php:1031 tbl_indexes.php:250 +#: server_privileges.php:298 tbl_change.php:1031 tbl_indexes.php:250 #: tbl_select.php:288 msgid "Or" msgstr "Or" @@ -508,9 +504,9 @@ msgstr "%s ergyd mewn tabl %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:2833 +#: db_structure.php:105 libraries/common.lib.php:2837 #: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50 -#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:467 +#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:465 msgid "Browse" msgstr "Porwch" @@ -553,36 +549,36 @@ msgstr "Tu fewn colofn:" #: 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:2832 libraries/sql_query_form.lib.php:334 +#: libraries/common.lib.php:2836 libraries/sql_query_form.lib.php:334 #: libraries/sql_query_form.lib.php:337 libraries/tbl_links.inc.php:76 msgid "Insert" msgstr "Mewnosod" #: db_structure.php:83 db_structure.php:96 db_structure.php:109 -#: libraries/common.lib.php:2829 libraries/common.lib.php:2836 +#: libraries/common.lib.php:2833 libraries/common.lib.php:2840 #: 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:1106 #: libraries/tbl_links.inc.php:56 pmd_general.php:134 -#: server_privileges.php:593 server_replication.php:315 tbl_tracking.php:269 +#: server_privileges.php:594 server_replication.php:315 tbl_tracking.php:269 msgid "Structure" msgstr "Strwythur" #: 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:1656 +#: db_structure.php:543 db_structure.php:544 db_tracking.php:91 +#: libraries/Index.class.php:483 libraries/common.lib.php:1657 #: 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 -#: tbl_structure.php:152 tbl_structure.php:471 +#: tbl_structure.php:152 tbl_structure.php:469 msgid "Drop" msgstr "Gollwng" #: 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:1655 +#: db_structure.php:541 db_structure.php:542 libraries/common.lib.php:1656 #: libraries/mult_submits.inc.php:39 libraries/tbl_links.inc.php:105 msgid "Empty" msgstr "Gwagu" @@ -592,25 +588,25 @@ msgstr "Gwagu" msgid "Table %s has been emptied" msgstr "Cafodd tabl %s ei wagu" -#: db_structure.php:326 libraries/tbl_links.inc.php:133 +#: db_structure.php:325 libraries/tbl_links.inc.php:133 #, php-format msgid "View %s has been dropped" msgstr "Cafodd golwg %s ei ollwng" -#: db_structure.php:326 libraries/tbl_links.inc.php:133 +#: db_structure.php:325 libraries/tbl_links.inc.php:133 #, php-format msgid "Table %s has been dropped" msgstr "Cafodd tabl %s ei ollwng" -#: db_structure.php:333 +#: db_structure.php:332 msgid "Tracking is active." msgstr "Mae tracio'n weithredol" -#: db_structure.php:335 +#: db_structure.php:334 msgid "Tracking is not active." msgstr "Nid yw tracio'n weithredol" -#: db_structure.php:420 libraries/display_tbl.lib.php:1944 +#: db_structure.php:418 libraries/display_tbl.lib.php:1944 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation%" @@ -618,86 +614,86 @@ msgid "" msgstr "" "Mae gan yr olwg hon o leiaf y nifer hwn o resi. Gweler y %sdogfennaeth%s." -#: db_structure.php:434 db_structure.php:448 libraries/header.inc.php:126 +#: db_structure.php:432 db_structure.php:446 libraries/header.inc.php:130 #: libraries/tbl_info.inc.php:66 tbl_structure.php:185 test/theme.php:74 msgid "View" msgstr "Dangos" -#: db_structure.php:485 libraries/db_structure.lib.php:49 -#: libraries/server_links.inc.php:70 server_replication.php:33 +#: db_structure.php:483 libraries/db_structure.lib.php:49 +#: libraries/server_links.inc.php:71 server_replication.php:33 #: server_replication.php:164 server_status.php:369 msgid "Replication" msgstr "Dyblygiad" -#: db_structure.php:489 +#: db_structure.php:487 msgid "Sum" msgstr "Swm" -#: db_structure.php:496 libraries/StorageEngine.class.php:356 +#: db_structure.php:494 libraries/StorageEngine.class.php:356 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "%s yw'r peiriant storio diofyn ar y gweinydd MySQL hwn." -#: db_structure.php:524 db_structure.php:541 db_structure.php:542 +#: db_structure.php:522 db_structure.php:539 db_structure.php:540 #: 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:1596 tbl_structure.php:455 -#: tbl_structure.php:464 +#: server_databases.php:351 server_privileges.php:1616 tbl_structure.php:453 +#: tbl_structure.php:462 msgid "With selected:" msgstr "Gyda'r dewis:" -#: db_structure.php:527 libraries/display_tbl.lib.php:2076 -#: server_databases.php:348 server_privileges.php:569 -#: server_privileges.php:1599 tbl_structure.php:458 +#: db_structure.php:525 libraries/display_tbl.lib.php:2076 +#: server_databases.php:348 server_privileges.php:570 +#: server_privileges.php:1619 tbl_structure.php:456 msgid "Check All" msgstr "Dewis Pob" -#: db_structure.php:531 libraries/display_tbl.lib.php:2077 +#: db_structure.php:529 libraries/display_tbl.lib.php:2077 #: libraries/replication_gui.lib.php:33 server_databases.php:350 -#: server_privileges.php:572 server_privileges.php:1603 tbl_structure.php:462 +#: server_privileges.php:573 server_privileges.php:1623 tbl_structure.php:460 msgid "Uncheck All" msgstr "Dad-ddewis Pob" -#: db_structure.php:536 +#: db_structure.php:534 msgid "Check tables having overhead" msgstr "Gwiriwch dablau â gorbenion" -#: db_structure.php:547 db_structure.php:548 db_structure.php:599 +#: db_structure.php:545 db_structure.php:546 db_structure.php:597 #: libraries/display_tbl.lib.php:2180 libraries/mult_submits.inc.php:28 -#: tbl_structure.php:492 tbl_structure.php:494 +#: tbl_structure.php:490 tbl_structure.php:492 msgid "Print view" msgstr "Argraffu golwg" -#: db_structure.php:549 db_structure.php:550 libraries/mult_submits.inc.php:42 +#: db_structure.php:547 db_structure.php:548 libraries/mult_submits.inc.php:42 #: tbl_operations.php:581 msgid "Check table" msgstr "Gwirio tabl" -#: db_structure.php:551 db_structure.php:552 libraries/mult_submits.inc.php:47 -#: tbl_operations.php:621 tbl_structure.php:709 tbl_structure.php:711 +#: db_structure.php:549 db_structure.php:550 libraries/mult_submits.inc.php:47 +#: tbl_operations.php:621 tbl_structure.php:707 tbl_structure.php:709 msgid "Optimize table" msgstr "Optimeiddio tabl" -#: db_structure.php:553 db_structure.php:554 libraries/mult_submits.inc.php:52 +#: db_structure.php:551 db_structure.php:552 libraries/mult_submits.inc.php:52 #: tbl_operations.php:611 msgid "Repair table" msgstr "Trwsio tabl" -#: db_structure.php:555 db_structure.php:556 libraries/mult_submits.inc.php:57 +#: db_structure.php:553 db_structure.php:554 libraries/mult_submits.inc.php:57 #: tbl_operations.php:601 msgid "Analyze table" msgstr "Dadansoddi tabl" -#: db_structure.php:557 db_structure.php:558 libraries/db_links.inc.php:71 +#: db_structure.php:555 db_structure.php:556 libraries/db_links.inc.php:71 #: 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:1380 +#: libraries/server_links.inc.php:85 libraries/tbl_links.inc.php:82 +#: pmd_pdf.php:84 pmd_pdf.php:109 server_privileges.php:1397 #: setup/frames/menu.inc.php:22 tbl_row_action.php:59 msgid "Export" msgstr "Allforio" -#: db_structure.php:606 libraries/display_pdf_schema.lib.php:44 +#: db_structure.php:604 libraries/display_pdf_schema.lib.php:44 msgid "Data Dictionary" msgstr "Geiriadur Data" @@ -708,10 +704,10 @@ msgstr "Tablau a draciwyd" #: db_tracking.php:71 libraries/export/htmlword.php:86 #: libraries/export/latex.php:148 libraries/export/odt.php:113 #: libraries/export/sql.php:342 libraries/export/texytext.php:84 -#: libraries/export/xml.php:255 libraries/header.inc.php:106 +#: libraries/export/xml.php:255 libraries/header.inc.php:110 #: libraries/header_printview.inc.php:58 server_databases.php:169 -#: server_privileges.php:1660 server_privileges.php:1721 -#: server_privileges.php:1979 server_processlist.php:56 +#: server_privileges.php:1680 server_privileges.php:1741 +#: server_privileges.php:1999 server_processlist.php:56 #: server_synchronize.php:1179 server_synchronize.php:1183 #: tbl_tracking.php:591 test/theme.php:65 msgid "Database" @@ -731,8 +727,8 @@ msgstr "Diweddarwyd" #: db_tracking.php:77 libraries/Index.class.php:440 #: libraries/db_structure.lib.php:53 server_databases.php:203 -#: server_privileges.php:1542 server_privileges.php:1725 -#: server_privileges.php:2073 tbl_structure.php:187 +#: server_privileges.php:1562 server_privileges.php:1745 +#: server_privileges.php:2094 tbl_structure.php:187 msgid "Action" msgstr "Gweithred" @@ -766,8 +762,8 @@ msgstr "Ciplun strwythur" msgid "Untracked tables" msgstr "Tablau heb dracio " -#: db_tracking.php:172 db_tracking.php:174 tbl_structure.php:528 -#: tbl_structure.php:530 +#: db_tracking.php:172 db_tracking.php:174 tbl_structure.php:526 +#: tbl_structure.php:528 msgid "Track table" msgstr "Tracio tabl" @@ -931,316 +927,363 @@ msgstr "Mae enw'r gwesteiwr yn wag!" msgid "The user name is empty!" msgstr "Mae enw'r defnyddiwr yn wag!" -#: js/messages.php:44 server_privileges.php:1236 user_password.php:70 +#: js/messages.php:44 server_privileges.php:1241 user_password.php:70 msgid "The password is empty!" msgstr "Mae'r cyfrinair yn wag!" -#: js/messages.php:45 server_privileges.php:1234 user_password.php:73 +#: js/messages.php:45 server_privileges.php:1239 user_password.php:73 msgid "The passwords aren't the same!" msgstr "Nid yw'r cyfrineiriau'n debyg!" -#: js/messages.php:49 pmd_general.php:342 pmd_general.php:379 +#: js/messages.php:46 +#, fuzzy +#| msgid "Add a new server" +msgid "Add a New User" +msgstr "Ychwanegwch weinydd newydd" + +#: js/messages.php:47 js/messages.php:54 pmd_general.php:342 +#: pmd_general.php:379 msgid "Cancel" msgstr "Diddymu" -#: js/messages.php:52 pmd_save_pos.php:54 +#: js/messages.php:48 +#, fuzzy +#| msgid "Create version" +msgid "Create User" +msgstr "Crëwch fersiwn" + +#: js/messages.php:49 +#, fuzzy +#| msgid "No Privileges" +msgid "Reloading Privileges" +msgstr "Dim Breintiau" + +#: js/messages.php:50 +msgid "Removing Selected Users" +msgstr "" + +#: js/messages.php:57 +#, fuzzy +#| msgid "Load" +msgid "Loading" +msgstr "llwytho" + +#: js/messages.php:58 +#, fuzzy +#| msgid "Processes" +msgid "Processing Request" +msgstr "Prosesau" + +#: js/messages.php:59 +msgid "Error in Processing Request" +msgstr "" + +#: js/messages.php:60 +msgid "Dropping Column" +msgstr "" + +#: js/messages.php:61 +msgid "Adding Primary Key" +msgstr "" + +#: js/messages.php:64 pmd_save_pos.php:54 msgid "Modifications have been saved" msgstr "Cafodd yr addasiadau eu cadw" -#: js/messages.php:53 pmd_relation_upd.php:49 +#: js/messages.php:65 pmd_relation_upd.php:49 msgid "Relation deleted" msgstr "Perthynas wedi'i ddileu" -#: js/messages.php:54 pmd_relation_new.php:64 +#: js/messages.php:66 pmd_relation_new.php:64 msgid "FOREIGN KEY relation added" msgstr "Perthynas FOREIGN KEY wedi'i ychwanegu" -#: js/messages.php:55 pmd_relation_new.php:86 +#: js/messages.php:67 pmd_relation_new.php:86 msgid "Internal relation added" msgstr "Perthynas mewnol wedi'i ychwanegu" -#: js/messages.php:56 pmd_relation_new.php:63 pmd_relation_new.php:88 +#: js/messages.php:68 pmd_relation_new.php:63 pmd_relation_new.php:88 msgid "Error: Relation not added." msgstr "Gwall: Perthynas heb ei ychwanegu." -#: js/messages.php:57 pmd_relation_new.php:31 +#: js/messages.php:69 pmd_relation_new.php:31 msgid "Error: relation already exists." msgstr "Gwall: perthynas yn bodoli yn barod." -#: js/messages.php:58 +#: js/messages.php:70 msgid "Error saving coordinates for Designer." msgstr "Gwall wrth gadw cyfesurynnau ar gyfer y Dyluniwr." -#: js/messages.php:59 libraries/relation.lib.php:107 +#: js/messages.php:71 libraries/relation.lib.php:107 #: libraries/relation.lib.php:119 msgid "General relation features" msgstr "Nodweddion perthynas cyffredinol" -#: js/messages.php:59 libraries/relation.lib.php:101 +#: js/messages.php:71 libraries/relation.lib.php:101 #: libraries/relation.lib.php:108 msgid "Disabled" msgstr "Analluogwyd" -#: js/messages.php:60 +#: js/messages.php:72 msgid "Select referenced key" msgstr "" -#: js/messages.php:61 +#: js/messages.php:73 msgid "Select Foreign Key" msgstr "Dewis Allwedd Estron" -#: js/messages.php:62 +#: js/messages.php:74 msgid "Please select the primary key or a unique key" msgstr "" -#: js/messages.php:63 pmd_general.php:77 tbl_relation.php:548 +#: js/messages.php:75 pmd_general.php:77 tbl_relation.php:548 msgid "Choose column to display" msgstr "Dewis colofn i'w dangos" #. l10n: Display text for calendar close link -#: js/messages.php:73 +#: js/messages.php:85 msgid "Done" msgstr "Gorffen" #. l10n: Display text for previous month link in calendar -#: js/messages.php:75 +#: js/messages.php:87 msgid "Prev" msgstr "Cynt" #. l10n: Display text for next month link in calendar -#: js/messages.php:77 libraries/common.lib.php:2353 -#: libraries/common.lib.php:2356 libraries/display_tbl.lib.php:338 +#: js/messages.php:89 libraries/common.lib.php:2357 +#: libraries/common.lib.php:2360 libraries/display_tbl.lib.php:338 #: server_binlog.php:205 server_binlog.php:207 tbl_printview.php:424 -#: tbl_structure.php:801 +#: tbl_structure.php:799 msgid "Next" msgstr "Nesaf" #. l10n: Display text for current month link in calendar -#: js/messages.php:79 +#: js/messages.php:91 msgid "Today" msgstr "Heddiw" -#: js/messages.php:82 +#: js/messages.php:94 msgid "January" msgstr "Ionawr" -#: js/messages.php:83 +#: js/messages.php:95 msgid "February" msgstr "Chwefror" -#: js/messages.php:84 +#: js/messages.php:96 msgid "March" msgstr "Mawrth" -#: js/messages.php:85 +#: js/messages.php:97 msgid "April" msgstr "Ebrill" -#: js/messages.php:86 +#: js/messages.php:98 msgid "May" msgstr "Mai" -#: js/messages.php:87 +#: js/messages.php:99 msgid "June" msgstr "Mehefin" -#: js/messages.php:88 +#: js/messages.php:100 msgid "July" msgstr "Gorffennaf" -#: js/messages.php:89 +#: js/messages.php:101 msgid "August" msgstr "Awst" -#: js/messages.php:90 +#: js/messages.php:102 msgid "September" msgstr "Medi" -#: js/messages.php:91 +#: js/messages.php:103 msgid "October" msgstr "Hydref" -#: js/messages.php:92 +#: js/messages.php:104 msgid "November" msgstr "Tachwedd" -#: js/messages.php:93 +#: js/messages.php:105 msgid "December" msgstr "Rhagfyr" #. l10n: Short month name -#: js/messages.php:97 libraries/common.lib.php:1557 +#: js/messages.php:109 libraries/common.lib.php:1557 msgid "Jan" msgstr "Ion" #. l10n: Short month name -#: js/messages.php:99 libraries/common.lib.php:1559 +#: js/messages.php:111 libraries/common.lib.php:1559 msgid "Feb" msgstr "Chwe" #. l10n: Short month name -#: js/messages.php:101 libraries/common.lib.php:1561 +#: js/messages.php:113 libraries/common.lib.php:1561 msgid "Mar" msgstr "Maw" #. l10n: Short month name -#: js/messages.php:103 libraries/common.lib.php:1563 +#: js/messages.php:115 libraries/common.lib.php:1563 msgid "Apr" msgstr "Ebr" #. l10n: Short month name -#: js/messages.php:105 libraries/common.lib.php:1565 +#: js/messages.php:117 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:1567 +#: js/messages.php:119 libraries/common.lib.php:1567 msgid "Jun" msgstr "Meh" #. l10n: Short month name -#: js/messages.php:109 libraries/common.lib.php:1569 +#: js/messages.php:121 libraries/common.lib.php:1569 msgid "Jul" msgstr "Gor" #. l10n: Short month name -#: js/messages.php:111 libraries/common.lib.php:1571 +#: js/messages.php:123 libraries/common.lib.php:1571 msgid "Aug" msgstr "Aws" #. l10n: Short month name -#: js/messages.php:113 libraries/common.lib.php:1573 +#: js/messages.php:125 libraries/common.lib.php:1573 msgid "Sep" msgstr "Med" #. l10n: Short month name -#: js/messages.php:115 libraries/common.lib.php:1575 +#: js/messages.php:127 libraries/common.lib.php:1575 msgid "Oct" msgstr "Hyd" #. l10n: Short month name -#: js/messages.php:117 libraries/common.lib.php:1577 +#: js/messages.php:129 libraries/common.lib.php:1577 msgid "Nov" msgstr "Tach" #. l10n: Short month name -#: js/messages.php:119 libraries/common.lib.php:1579 +#: js/messages.php:131 libraries/common.lib.php:1579 msgid "Dec" msgstr "Rhag" -#: js/messages.php:122 +#: js/messages.php:134 msgid "Sunday" msgstr "Dydd Sul" -#: js/messages.php:123 +#: js/messages.php:135 msgid "Monday" msgstr "Dydd Llun" -#: js/messages.php:124 +#: js/messages.php:136 msgid "Tuesday" msgstr "Dydd Mawrth" -#: js/messages.php:125 +#: js/messages.php:137 msgid "Wednesday" msgstr "DYdd Mercher" -#: js/messages.php:126 +#: js/messages.php:138 msgid "Thursday" msgstr "Dydd Iau" -#: js/messages.php:127 +#: js/messages.php:139 msgid "Friday" msgstr "Dydd Gwener" -#: js/messages.php:128 +#: js/messages.php:140 msgid "Saturday" msgstr "Dydd Sadwrn" #. l10n: Short week day name -#: js/messages.php:132 libraries/common.lib.php:1582 +#: js/messages.php:144 libraries/common.lib.php:1582 msgid "Sun" msgstr "Sul" #. l10n: Short week day name -#: js/messages.php:134 libraries/common.lib.php:1584 +#: js/messages.php:146 libraries/common.lib.php:1584 msgid "Mon" msgstr "Llun" #. l10n: Short week day name -#: js/messages.php:136 libraries/common.lib.php:1586 +#: js/messages.php:148 libraries/common.lib.php:1586 msgid "Tue" msgstr "Maw" #. l10n: Short week day name -#: js/messages.php:138 libraries/common.lib.php:1588 +#: js/messages.php:150 libraries/common.lib.php:1588 msgid "Wed" msgstr "Mer" #. l10n: Short week day name -#: js/messages.php:140 libraries/common.lib.php:1590 +#: js/messages.php:152 libraries/common.lib.php:1590 msgid "Thu" msgstr "Iau" #. l10n: Short week day name -#: js/messages.php:142 libraries/common.lib.php:1592 +#: js/messages.php:154 libraries/common.lib.php:1592 msgid "Fri" msgstr "Gwe" #. l10n: Short week day name -#: js/messages.php:144 libraries/common.lib.php:1594 +#: js/messages.php:156 libraries/common.lib.php:1594 msgid "Sat" msgstr "Sad" #. l10n: Minimal week day name -#: js/messages.php:148 +#: js/messages.php:160 msgid "Su" msgstr "Su" #. l10n: Minimal week day name -#: js/messages.php:150 +#: js/messages.php:162 msgid "Mo" msgstr "Llu" #. l10n: Minimal week day name -#: js/messages.php:152 +#: js/messages.php:164 msgid "Tu" msgstr "Ma" #. l10n: Minimal week day name -#: js/messages.php:154 +#: js/messages.php:166 msgid "We" msgstr "Me" #. l10n: Minimal week day name -#: js/messages.php:156 +#: js/messages.php:168 msgid "Th" msgstr "Ia" #. l10n: Minimal week day name -#: js/messages.php:158 +#: js/messages.php:170 msgid "Fr" msgstr "Gw" #. l10n: Minimal week day name -#: js/messages.php:160 +#: js/messages.php:172 msgid "Sa" msgstr "Sa" #. l10n: Column header for week of the year in calendar -#: js/messages.php:162 +#: js/messages.php:174 msgid "Wk" msgstr "Wy" -#: js/messages.php:164 +#: js/messages.php:176 msgid "Hour" msgstr "Awr" -#: js/messages.php:165 +#: js/messages.php:177 msgid "Minute" msgstr "Munud" -#: js/messages.php:166 +#: js/messages.php:178 msgid "Second" msgstr "Eiliad" @@ -1295,7 +1338,7 @@ msgstr "Indecsau" #: libraries/Index.class.php:444 libraries/mult_submits.inc.php:103 #: libraries/tbl_properties.inc.php:519 tbl_structure.php:33 -#: tbl_structure.php:155 tbl_structure.php:159 tbl_structure.php:474 +#: tbl_structure.php:155 tbl_structure.php:159 tbl_structure.php:472 #: tbl_tracking.php:322 msgid "Unique" msgstr "Unigryw" @@ -1338,8 +1381,8 @@ msgstr "" "Mae'n edrych fel bod yr indecsau %1$s a %2$s yn hafal. Gallwch chi dynnu un " "ohonyn nhw." -#: libraries/List_Database.class.php:431 libraries/server_links.inc.php:41 -#: server_databases.php:88 server_privileges.php:1660 +#: libraries/List_Database.class.php:431 libraries/server_links.inc.php:42 +#: server_databases.php:88 server_privileges.php:1680 #: setup/lib/messages.inc.php:110 test/theme.php:93 msgid "Databases" msgstr "Cronfeydd Data" @@ -1510,7 +1553,7 @@ msgstr "Cyfrinair:" msgid "Server Choice" msgstr "Dewis Gweinydd" -#: libraries/auth/cookie.auth.lib.php:320 libraries/header.inc.php:59 +#: libraries/auth/cookie.auth.lib.php:320 libraries/header.inc.php:63 msgid "Cookies must be enabled past this point." msgstr "Mae'n rhaid bod cwcis wedi'u galluogi heibio'r pwynt hwn." @@ -1587,7 +1630,7 @@ msgid "" "necessary extensions appear to be loaded. Check your PHP configuration." msgstr "" -#: libraries/common.inc.php:583 +#: libraries/common.inc.php:587 msgid "" "phpMyAdmin was unable to read your configuration file!
This might " "happen if PHP finds a parse error in it or PHP cannot find the file.
$cfg['PmaAbsoluteUri'] directive MUST be set in your " "configuration file!" msgstr "" -#: libraries/common.inc.php:629 +#: libraries/common.inc.php:633 #, php-format msgid "Invalid server index: %s" msgstr "Indecs gweinydd annilys: %s" -#: libraries/common.inc.php:636 +#: libraries/common.inc.php:640 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" "Enw gwesteiwr annilys ar gyfer gweinydd %1$s. Adolygwch eich ffurfwedd." -#: libraries/common.inc.php:645 libraries/header.inc.php:96 +#: libraries/common.inc.php:649 libraries/header.inc.php:100 #: libraries/select_server.lib.php:41 libraries/select_server.lib.php:47 #: main.php:185 test/theme.php:57 msgid "Server" msgstr "Gweinydd" -#: libraries/common.inc.php:823 +#: libraries/common.inc.php:827 msgid "Invalid authentication method set in configuration:" msgstr "" -#: libraries/common.inc.php:926 +#: libraries/common.inc.php:930 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Dylech uwchraddio i %s %s neu'n well." @@ -1760,45 +1803,45 @@ msgstr "." msgid "%B %d, %Y at %I:%M %p" msgstr "%B %d, %Y am %I:%M %p" -#: libraries/common.lib.php:1907 +#: libraries/common.lib.php:1911 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s diwrnod, %s awr, %s munud a %s eiliad" -#: libraries/common.lib.php:2322 libraries/common.lib.php:2325 +#: libraries/common.lib.php:2326 libraries/common.lib.php:2329 #: libraries/display_tbl.lib.php:290 server_status.php:719 msgid "Begin" msgstr "Dechrau" -#: libraries/common.lib.php:2323 libraries/common.lib.php:2326 +#: libraries/common.lib.php:2327 libraries/common.lib.php:2330 #: libraries/display_tbl.lib.php:291 server_binlog.php:168 #: server_binlog.php:170 msgid "Previous" msgstr "Cynt" -#: libraries/common.lib.php:2354 libraries/common.lib.php:2357 +#: libraries/common.lib.php:2358 libraries/common.lib.php:2361 #: libraries/display_tbl.lib.php:353 msgid "End" msgstr "Diwedd" -#: libraries/common.lib.php:2430 +#: libraries/common.lib.php:2434 #, php-format msgid "Jump to database "%s"." msgstr "Neidio i gronfa ddata "%s"." -#: libraries/common.lib.php:2450 +#: libraries/common.lib.php:2454 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" -#: libraries/common.lib.php:2830 libraries/common.lib.php:2837 +#: libraries/common.lib.php:2834 libraries/common.lib.php:2841 #: libraries/db_links.inc.php:68 libraries/export/sql.php:25 -#: libraries/import/sql.php:18 libraries/server_links.inc.php:45 +#: libraries/import/sql.php:18 libraries/server_links.inc.php:46 #: libraries/tbl_links.inc.php:60 querywindow.php:99 test/theme.php:97 msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2839 libraries/db_links.inc.php:104 +#: libraries/common.lib.php:2843 libraries/db_links.inc.php:104 #: libraries/tbl_links.inc.php:95 libraries/tbl_links.inc.php:117 #: view_operations.php:89 msgid "Operations" @@ -1845,15 +1888,15 @@ msgstr "Ymholiad" msgid "Designer" msgstr "Dyluniwr" -#: libraries/db_links.inc.php:98 libraries/server_links.inc.php:88 +#: libraries/db_links.inc.php:98 libraries/server_links.inc.php:89 #: libraries/tbl_links.inc.php:91 pmd_pdf.php:84 pmd_pdf.php:110 #: setup/frames/menu.inc.php:21 msgid "Import" msgstr "Mewnforio" -#: libraries/db_links.inc.php:111 libraries/server_links.inc.php:66 -#: server_privileges.php:111 server_privileges.php:1722 -#: server_privileges.php:2071 test/theme.php:117 +#: libraries/db_links.inc.php:111 libraries/server_links.inc.php:67 +#: server_privileges.php:112 server_privileges.php:1742 +#: server_privileges.php:2092 test/theme.php:117 msgid "Privileges" msgstr "Breintiau" @@ -1872,7 +1915,7 @@ msgid "" msgstr "" #: libraries/db_structure.lib.php:69 server_databases.php:142 -#: tbl_printview.php:336 tbl_structure.php:682 +#: tbl_printview.php:336 tbl_structure.php:680 msgid "Overhead" msgstr "Gorbenion" @@ -1889,7 +1932,7 @@ msgstr "Dyw'r gweinydd ddim yn ymateb" msgid "(or the local MySQL server's socket is not correctly configured)" msgstr "" -#: libraries/dbi/mysql.dbi.lib.php:362 tbl_structure.php:608 +#: libraries/dbi/mysql.dbi.lib.php:362 tbl_structure.php:606 msgid "Details..." msgstr "Manylion..." @@ -1899,22 +1942,22 @@ msgid "Change password" msgstr "Newid cyfrinair" #: libraries/display_change_password.lib.php:35 -#: libraries/replication_gui.lib.php:345 server_privileges.php:807 +#: libraries/replication_gui.lib.php:345 server_privileges.php:808 msgid "No Password" msgstr "Dim Cyfrinair" #: 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:796 -#: server_privileges.php:800 server_privileges.php:811 -#: server_privileges.php:1538 server_synchronize.php:1175 +#: libraries/replication_gui.lib.php:349 server_privileges.php:797 +#: server_privileges.php:801 server_privileges.php:812 +#: server_privileges.php:1558 server_synchronize.php:1175 msgid "Password" msgstr "Cyfrinair" #: libraries/display_change_password.lib.php:46 #: libraries/replication_gui.lib.php:353 libraries/replication_gui.lib.php:356 -#: server_privileges.php:815 server_privileges.php:818 +#: server_privileges.php:816 server_privileges.php:819 msgid "Re-type" msgstr "Ail-deipiwch" @@ -1927,12 +1970,12 @@ msgid "MySQL 4.0 compatible" msgstr "MySQL 4.0-cytûn" #: libraries/display_change_password.lib.php:72 -#: libraries/replication_gui.lib.php:360 server_privileges.php:822 +#: libraries/replication_gui.lib.php:360 server_privileges.php:823 msgid "Generate Password" msgstr "Generadu Cyfrinair" #: libraries/display_change_password.lib.php:75 -#: libraries/replication_gui.lib.php:363 server_privileges.php:825 +#: libraries/replication_gui.lib.php:363 server_privileges.php:826 msgid "Generate" msgstr "Generadu" @@ -1945,8 +1988,8 @@ msgstr "Creu cronfa ddata newydd" msgid "Create" msgstr "Creu" -#: libraries/display_create_database.lib.php:40 server_privileges.php:113 -#: server_privileges.php:1427 server_replication.php:35 +#: libraries/display_create_database.lib.php:40 server_privileges.php:114 +#: server_privileges.php:1447 server_replication.php:35 msgid "No Privileges" msgstr "Dim Breintiau" @@ -1956,7 +1999,6 @@ msgstr "Mae'n rhaid i'r tabl gael o leiaf un golofn." #: libraries/display_create_table.lib.php:48 #, php-format -#, possible-php-format msgid "Create table on database %s" msgstr "Creu tabl mewn cronfa ddata %s" @@ -2030,7 +2072,7 @@ msgstr "Cywasgiad" #: 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:1875 server_processlist.php:75 +#: server_privileges.php:1895 server_processlist.php:75 msgid "None" msgstr "Dim" @@ -2216,7 +2258,7 @@ msgstr "Trefnu gan allwedd" #: libraries/import/docsql.php:34 libraries/import/ldi.php:47 #: libraries/import/ods.php:30 libraries/import/sql.php:20 #: libraries/import/xls.php:26 libraries/import/xlsx.php:26 -#: libraries/import/xml.php:25 tbl_select.php:267 tbl_structure.php:753 +#: libraries/import/xml.php:25 tbl_select.php:267 tbl_structure.php:751 msgid "Options" msgstr "Opsiynau" @@ -2291,7 +2333,7 @@ msgstr "Cymerodd yr ymholiad %01.4f eiliad" #: libraries/display_tbl.lib.php:2089 libraries/mult_submits.inc.php:113 #: querywindow.php:125 querywindow.php:129 querywindow.php:132 -#: tbl_structure.php:25 tbl_structure.php:150 tbl_structure.php:470 +#: tbl_structure.php:25 tbl_structure.php:150 tbl_structure.php:468 msgid "Change" msgstr "Newid" @@ -2357,7 +2399,7 @@ msgstr "Defnydd Pwll Byffer" #: libraries/engines/innodb.lib.php:194 server_databases.php:137 #: server_databases.php:305 server_status.php:525 server_status.php:586 -#: server_status.php:607 tbl_printview.php:351 tbl_structure.php:696 +#: server_status.php:607 tbl_printview.php:351 tbl_structure.php:694 msgid "Total" msgstr "Cyfanswm" @@ -2602,7 +2644,7 @@ msgid "" msgstr "" #: libraries/export/codegen.php:37 setup/lib/messages.inc.php:88 -#: tbl_printview.php:376 tbl_structure.php:737 +#: tbl_printview.php:376 tbl_structure.php:735 msgid "Format" msgstr "Fformat" @@ -2666,9 +2708,8 @@ 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:576 server_replication.php:316 tbl_printview.php:317 -#: tbl_structure.php:665 -#: server_privileges.php:537 +#: server_privileges.php:577 server_replication.php:316 tbl_printview.php:317 +#: tbl_structure.php:663 msgid "Data" msgstr "Data" @@ -2717,15 +2758,10 @@ msgstr "Math 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:731 -#: server_privileges.php:734 server_privileges.php:790 -#: server_privileges.php:1537 server_privileges.php:2069 +#: libraries/replication_gui.lib.php:329 server_privileges.php:732 +#: server_privileges.php:735 server_privileges.php:791 +#: server_privileges.php:1557 server_privileges.php:2090 #: server_processlist.php:55 server_synchronize.php:1159 -#: server_privileges.php:692 -#: server_privileges.php:695 -#: server_privileges.php:751 -#: server_privileges.php:1498 -#: server_privileges.php:2030 msgid "Host" msgstr "Gwesteiwr" @@ -2917,7 +2953,7 @@ msgstr "" msgid "Open new phpMyAdmin window" msgstr "" -#: libraries/header.inc.php:115 +#: libraries/header.inc.php:119 msgid "New table" msgstr "" @@ -3072,20 +3108,20 @@ 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 +#: tbl_structure.php:471 msgid "Primary" msgstr "Cynradd" #: libraries/mult_submits.inc.php:98 libraries/tbl_properties.inc.php:116 #: libraries/tbl_properties.inc.php:525 tbl_printview.php:326 #: tbl_structure.php:31 tbl_structure.php:154 tbl_structure.php:158 -#: tbl_structure.php:475 tbl_structure.php:673 +#: tbl_structure.php:473 tbl_structure.php:671 msgid "Index" msgstr "Indecs" #: libraries/mult_submits.inc.php:108 libraries/tbl_properties.inc.php:531 #: tbl_structure.php:35 tbl_structure.php:156 tbl_structure.php:160 -#: tbl_structure.php:478 +#: tbl_structure.php:476 msgid "Fulltext" msgstr "Testunllawn" @@ -3386,8 +3422,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:711 -#: server_privileges.php:714 server_privileges.php:721 +#: libraries/replication_gui.lib.php:259 server_privileges.php:712 +#: server_privileges.php:715 server_privileges.php:722 #: server_synchronize.php:1171 msgid "User name" msgstr "" @@ -3411,7 +3447,7 @@ 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 +#: tbl_structure.php:727 msgid "Value" msgstr "Gwerth" @@ -3429,34 +3465,34 @@ msgstr "" msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:254 server_privileges.php:716 +#: libraries/replication_gui.lib.php:254 server_privileges.php:717 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 +#: libraries/replication_gui.lib.php:346 server_privileges.php:718 +#: server_privileges.php:785 server_privileges.php:809 +#: server_privileges.php:1948 server_privileges.php:1978 msgid "Use text field" msgstr "Defnyddiwch faes testun" -#: libraries/replication_gui.lib.php:302 server_privileges.php:764 +#: libraries/replication_gui.lib.php:302 server_privileges.php:765 msgid "Any host" msgstr "Unrhyw westeiwr" -#: libraries/replication_gui.lib.php:306 server_privileges.php:768 +#: libraries/replication_gui.lib.php:306 server_privileges.php:769 msgid "Local" msgstr "Lleol" -#: libraries/replication_gui.lib.php:312 server_privileges.php:773 +#: libraries/replication_gui.lib.php:312 server_privileges.php:774 msgid "This Host" msgstr "Y Gwesteiwr Hwn" -#: libraries/replication_gui.lib.php:318 server_privileges.php:779 +#: libraries/replication_gui.lib.php:318 server_privileges.php:780 msgid "Use Host Table" msgstr "Defnyddiwch Dabl Gwesteiwyr" -#: libraries/replication_gui.lib.php:331 server_privileges.php:792 +#: libraries/replication_gui.lib.php:331 server_privileges.php:793 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -3490,29 +3526,29 @@ msgstr "Iaith anhysbys: %1$s." msgid "Servers" msgstr "Gweinyddion" -#: libraries/server_links.inc.php:53 server_engines.php:112 +#: libraries/server_links.inc.php:54 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 +#: libraries/server_links.inc.php:58 test/theme.php:109 msgid "Charsets" msgstr "Setiau nod" -#: libraries/server_links.inc.php:61 test/theme.php:113 +#: libraries/server_links.inc.php:62 test/theme.php:113 msgid "Engines" msgstr "Peiriannau" -#: libraries/server_links.inc.php:76 server_binlog.php:110 +#: libraries/server_links.inc.php:77 server_binlog.php:110 #: server_status.php:364 test/theme.php:121 msgid "Binary log" msgstr "Log deuaidd" -#: libraries/server_links.inc.php:80 +#: libraries/server_links.inc.php:81 msgid "Processes" msgstr "Prosesau" -#: libraries/server_links.inc.php:92 server_synchronize.php:1092 +#: libraries/server_links.inc.php:93 server_synchronize.php:1092 #: server_synchronize.php:1100 msgid "Synchronize" msgstr "Cydamseru" @@ -3723,12 +3759,12 @@ msgstr "Diffiniad PARTITION" msgid "Save" msgstr "Cadw" -#: libraries/tbl_properties.inc.php:780 tbl_structure.php:542 +#: libraries/tbl_properties.inc.php:780 tbl_structure.php:540 #, php-format msgid "Add %s column(s)" msgstr "Ychwanegwch %s colofn" -#: libraries/tbl_properties.inc.php:784 tbl_structure.php:536 +#: libraries/tbl_properties.inc.php:784 tbl_structure.php:534 msgid "You have to add at least one column." msgstr "Rydych chi wedi ychwanegu o leiaf un golofn." @@ -3860,8 +3896,8 @@ msgstr "Ailosod" 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 +#: main.php:189 server_privileges.php:1406 server_privileges.php:1556 +#: server_privileges.php:1670 server_privileges.php:2089 #: server_processlist.php:54 msgid "User" msgstr "Defnyddiwr" @@ -4274,320 +4310,320 @@ msgstr "Peiriannau Storio" msgid "View dump (schema) of databases" msgstr "Gwylio dadlwythiad (sgema) cronfeydd data" -#: server_privileges.php:24 server_privileges.php:266 +#: server_privileges.php:25 server_privileges.php:267 msgid "Includes all privileges except GRANT." msgstr "" -#: server_privileges.php:25 server_privileges.php:192 -#: server_privileges.php:515 +#: server_privileges.php:26 server_privileges.php:193 +#: server_privileges.php:516 msgid "Allows altering the structure of existing tables." msgstr "" -#: server_privileges.php:26 server_privileges.php:208 -#: server_privileges.php:521 +#: server_privileges.php:27 server_privileges.php:209 +#: server_privileges.php:522 msgid "Allows altering and dropping stored routines." msgstr "" -#: server_privileges.php:27 server_privileges.php:184 -#: server_privileges.php:514 +#: server_privileges.php:28 server_privileges.php:185 +#: server_privileges.php:515 msgid "Allows creating new databases and tables." msgstr "" -#: server_privileges.php:28 server_privileges.php:207 -#: server_privileges.php:520 +#: server_privileges.php:29 server_privileges.php:208 +#: server_privileges.php:521 msgid "Allows creating stored routines." msgstr "" -#: server_privileges.php:29 server_privileges.php:514 +#: server_privileges.php:30 server_privileges.php:515 msgid "Allows creating new tables." msgstr "" -#: server_privileges.php:30 server_privileges.php:195 -#: server_privileges.php:518 +#: server_privileges.php:31 server_privileges.php:196 +#: server_privileges.php:519 msgid "Allows creating temporary tables." msgstr "" -#: server_privileges.php:31 server_privileges.php:209 -#: server_privileges.php:554 +#: server_privileges.php:32 server_privileges.php:210 +#: server_privileges.php:555 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 +#: server_privileges.php:33 server_privileges.php:200 +#: server_privileges.php:204 server_privileges.php:527 +#: server_privileges.php:531 msgid "Allows creating new views." msgstr "" -#: server_privileges.php:33 server_privileges.php:183 -#: server_privileges.php:506 +#: server_privileges.php:34 server_privileges.php:184 +#: server_privileges.php:507 msgid "Allows deleting data." msgstr "" -#: server_privileges.php:34 server_privileges.php:185 -#: server_privileges.php:517 +#: server_privileges.php:35 server_privileges.php:186 +#: server_privileges.php:518 msgid "Allows dropping databases and tables." msgstr "" -#: server_privileges.php:35 server_privileges.php:517 +#: server_privileges.php:36 server_privileges.php:518 msgid "Allows dropping tables." msgstr "" -#: server_privileges.php:36 server_privileges.php:200 -#: server_privileges.php:534 +#: server_privileges.php:37 server_privileges.php:201 +#: server_privileges.php:535 msgid "Allows to set up events for the event scheduler" msgstr "" -#: server_privileges.php:37 server_privileges.php:210 -#: server_privileges.php:522 +#: server_privileges.php:38 server_privileges.php:211 +#: server_privileges.php:523 msgid "Allows executing stored routines." msgstr "" -#: server_privileges.php:38 server_privileges.php:189 -#: server_privileges.php:509 +#: server_privileges.php:39 server_privileges.php:190 +#: server_privileges.php:510 msgid "Allows importing data from and exporting data into files." msgstr "" -#: server_privileges.php:39 server_privileges.php:540 +#: server_privileges.php:40 server_privileges.php:541 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" -#: server_privileges.php:40 server_privileges.php:191 -#: server_privileges.php:516 +#: server_privileges.php:41 server_privileges.php:192 +#: server_privileges.php:517 msgid "Allows creating and dropping indexes." msgstr "" -#: server_privileges.php:41 server_privileges.php:181 -#: server_privileges.php:442 server_privileges.php:504 +#: server_privileges.php:42 server_privileges.php:182 +#: server_privileges.php:443 server_privileges.php:505 msgid "Allows inserting and replacing data." msgstr "" -#: server_privileges.php:42 server_privileges.php:196 -#: server_privileges.php:549 +#: server_privileges.php:43 server_privileges.php:197 +#: server_privileges.php:550 msgid "Allows locking tables for the current thread." msgstr "" -#: server_privileges.php:43 server_privileges.php:646 -#: server_privileges.php:648 +#: server_privileges.php:44 server_privileges.php:647 +#: server_privileges.php:649 msgid "Limits the number of new connections the user may open per hour." msgstr "" -#: server_privileges.php:44 server_privileges.php:634 -#: server_privileges.php:636 +#: server_privileges.php:45 server_privileges.php:635 +#: server_privileges.php:637 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" -#: server_privileges.php:45 server_privileges.php:640 -#: server_privileges.php:642 +#: server_privileges.php:46 server_privileges.php:641 +#: server_privileges.php:643 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." msgstr "" -#: server_privileges.php:46 server_privileges.php:652 -#: server_privileges.php:654 +#: server_privileges.php:47 server_privileges.php:653 +#: server_privileges.php:655 msgid "Limits the number of simultaneous connections the user may have." msgstr "" -#: server_privileges.php:47 server_privileges.php:188 -#: server_privileges.php:544 +#: server_privileges.php:48 server_privileges.php:189 +#: server_privileges.php:545 msgid "Allows viewing processes of all users" msgstr "" -#: server_privileges.php:48 server_privileges.php:190 -#: server_privileges.php:448 server_privileges.php:550 +#: server_privileges.php:49 server_privileges.php:191 +#: server_privileges.php:449 server_privileges.php:551 msgid "Has no effect in this MySQL version." msgstr "" -#: server_privileges.php:49 server_privileges.php:186 -#: server_privileges.php:545 +#: server_privileges.php:50 server_privileges.php:187 +#: server_privileges.php:546 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" -#: server_privileges.php:50 server_privileges.php:198 -#: server_privileges.php:552 +#: server_privileges.php:51 server_privileges.php:199 +#: server_privileges.php:553 msgid "Allows the user to ask where the slaves / masters are." msgstr "" -#: server_privileges.php:51 server_privileges.php:197 -#: server_privileges.php:553 +#: server_privileges.php:52 server_privileges.php:198 +#: server_privileges.php:554 msgid "Needed for the replication slaves." msgstr "" -#: server_privileges.php:52 server_privileges.php:180 -#: server_privileges.php:439 server_privileges.php:503 +#: server_privileges.php:53 server_privileges.php:181 +#: server_privileges.php:440 server_privileges.php:504 msgid "Allows reading data." msgstr "" -#: server_privileges.php:53 server_privileges.php:193 -#: server_privileges.php:547 +#: server_privileges.php:54 server_privileges.php:194 +#: server_privileges.php:548 msgid "Gives access to the complete list of databases." msgstr "" -#: server_privileges.php:54 server_privileges.php:204 -#: server_privileges.php:206 server_privileges.php:519 +#: server_privileges.php:55 server_privileges.php:205 +#: server_privileges.php:207 server_privileges.php:520 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "" -#: server_privileges.php:55 server_privileges.php:187 -#: server_privileges.php:546 +#: server_privileges.php:56 server_privileges.php:188 +#: server_privileges.php:547 msgid "Allows shutting down the server." msgstr "" -#: server_privileges.php:56 server_privileges.php:194 -#: server_privileges.php:543 +#: server_privileges.php:57 server_privileges.php:195 +#: server_privileges.php:544 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " "killing threads of other users." msgstr "" -#: server_privileges.php:57 server_privileges.php:201 -#: server_privileges.php:535 +#: server_privileges.php:58 server_privileges.php:202 +#: server_privileges.php:536 msgid "Allows creating and dropping triggers" msgstr "" -#: server_privileges.php:58 server_privileges.php:182 -#: server_privileges.php:445 server_privileges.php:505 +#: server_privileges.php:59 server_privileges.php:183 +#: server_privileges.php:446 server_privileges.php:506 msgid "Allows changing data." msgstr "" -#: server_privileges.php:59 server_privileges.php:260 +#: server_privileges.php:60 server_privileges.php:261 msgid "No privileges." msgstr "" -#: server_privileges.php:302 server_privileges.php:303 +#: server_privileges.php:303 server_privileges.php:304 msgctxt "None privileges" msgid "None" msgstr "Dim" -#: server_privileges.php:431 server_privileges.php:566 -#: server_privileges.php:1718 server_privileges.php:1724 +#: server_privileges.php:432 server_privileges.php:567 +#: server_privileges.php:1738 server_privileges.php:1744 msgid "Table-specific privileges" msgstr "" -#: server_privileges.php:432 server_privileges.php:574 -#: server_privileges.php:1540 +#: server_privileges.php:433 server_privileges.php:575 +#: server_privileges.php:1560 msgid " Note: MySQL privilege names are expressed in English " msgstr "" -#: server_privileges.php:563 server_privileges.php:1539 +#: server_privileges.php:564 server_privileges.php:1559 msgid "Global privileges" msgstr "" -#: server_privileges.php:565 server_privileges.php:1718 +#: server_privileges.php:566 server_privileges.php:1738 msgid "Database-specific privileges" msgstr "" -#: server_privileges.php:610 +#: server_privileges.php:611 msgid "Administration" msgstr "" -#: server_privileges.php:630 +#: server_privileges.php:631 msgid "Resource limits" msgstr "" -#: server_privileges.php:631 +#: server_privileges.php:632 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "" -#: server_privileges.php:708 +#: server_privileges.php:709 msgid "Login Information" msgstr "" -#: server_privileges.php:802 +#: server_privileges.php:803 msgid "Do not change the password" msgstr "" -#: server_privileges.php:843 server_privileges.php:2205 +#: server_privileges.php:844 server_privileges.php:2226 msgid "No user found." msgstr "" -#: server_privileges.php:887 +#: server_privileges.php:888 #, php-format msgid "The user %s already exists!" msgstr "" -#: server_privileges.php:970 +#: server_privileges.php:971 msgid "You have added a new user." msgstr "" -#: server_privileges.php:1191 +#: server_privileges.php:1196 #, php-format msgid "You have updated the privileges for %s." msgstr "" -#: server_privileges.php:1215 +#: server_privileges.php:1220 #, php-format msgid "You have revoked the privileges for %s" msgstr "" -#: server_privileges.php:1251 +#: server_privileges.php:1256 #, php-format msgid "The password for %s was changed successfully." msgstr "" -#: server_privileges.php:1271 +#: server_privileges.php:1276 #, php-format msgid "Deleting %s" msgstr "" -#: server_privileges.php:1282 +#: server_privileges.php:1287 msgid "No users selected for deleting!" msgstr "" -#: server_privileges.php:1285 +#: server_privileges.php:1290 msgid "Reloading the privileges" msgstr "" -#: server_privileges.php:1300 +#: server_privileges.php:1305 msgid "The selected users have been deleted successfully." msgstr "" -#: server_privileges.php:1335 +#: server_privileges.php:1344 msgid "The privileges were reloaded successfully." msgstr "" -#: server_privileges.php:1363 server_privileges.php:1649 +#: server_privileges.php:1380 server_privileges.php:1669 msgid "Edit Privileges" msgstr "" -#: server_privileges.php:1372 +#: server_privileges.php:1389 msgid "Revoke" msgstr "" -#: server_privileges.php:1404 +#: server_privileges.php:1424 msgid "User overview" msgstr "" -#: server_privileges.php:1541 server_privileges.php:1723 -#: server_privileges.php:2072 +#: server_privileges.php:1561 server_privileges.php:1743 +#: server_privileges.php:2093 msgid "Grant" msgstr "" -#: server_privileges.php:1560 server_privileges.php:2162 +#: server_privileges.php:1580 server_privileges.php:2183 msgid "Any" msgstr "" -#: server_privileges.php:1609 server_privileges.php:1633 -#: server_privileges.php:2027 server_privileges.php:2216 +#: server_privileges.php:1629 server_privileges.php:1653 +#: server_privileges.php:2048 server_privileges.php:2237 msgid "Add a new User" msgstr "" -#: server_privileges.php:1614 +#: server_privileges.php:1634 msgid "Remove selected users" msgstr "" -#: server_privileges.php:1617 +#: server_privileges.php:1637 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 +#: server_privileges.php:1638 server_privileges.php:1639 +#: server_privileges.php:1640 msgid "Drop the databases that have the same names as the users." msgstr "" -#: server_privileges.php:1636 +#: server_privileges.php:1656 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -4596,89 +4632,89 @@ msgid "" "sreload the privileges%s before you continue." msgstr "" -#: server_privileges.php:1684 +#: server_privileges.php:1704 msgid "The selected user was not found in the privilege table." msgstr "" -#: server_privileges.php:1724 +#: server_privileges.php:1744 msgid "Column-specific privileges" msgstr "" -#: server_privileges.php:1925 +#: server_privileges.php:1945 msgid "Add privileges on the following database" msgstr "" -#: server_privileges.php:1943 +#: server_privileges.php:1963 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" -#: server_privileges.php:1946 +#: server_privileges.php:1966 msgid "Add privileges on the following table" msgstr "" -#: server_privileges.php:2003 +#: server_privileges.php:2023 msgid "Change Login Information / Copy User" msgstr "" -#: server_privileges.php:2006 +#: server_privileges.php:2026 msgid "Create a new user with the same privileges and ..." msgstr "" -#: server_privileges.php:2008 +#: server_privileges.php:2028 msgid "... keep the old one." msgstr "" -#: server_privileges.php:2009 +#: server_privileges.php:2029 msgid " ... delete the old one from the user tables." msgstr "" -#: server_privileges.php:2010 +#: server_privileges.php:2030 msgid "" " ... revoke all active privileges from the old one and delete it afterwards." msgstr "" -#: server_privileges.php:2011 +#: server_privileges.php:2031 msgid "" " ... delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" -#: server_privileges.php:2033 +#: server_privileges.php:2054 msgid "Database for user" msgstr "" -#: server_privileges.php:2037 +#: server_privileges.php:2058 msgctxt "Create none database for user" msgid "None" msgstr "" -#: server_privileges.php:2038 +#: server_privileges.php:2059 msgid "Create database with same name and grant all privileges" msgstr "" -#: server_privileges.php:2039 +#: server_privileges.php:2060 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "" -#: server_privileges.php:2042 +#: server_privileges.php:2063 #, php-format msgid "Grant all privileges on database "%s"" msgstr "" -#: server_privileges.php:2065 +#: server_privileges.php:2086 #, php-format msgid "Users having access to "%s"" msgstr "" -#: server_privileges.php:2173 +#: server_privileges.php:2194 msgid "global" msgstr "" -#: server_privileges.php:2175 +#: server_privileges.php:2196 msgid "database-specific" msgstr "" -#: server_privileges.php:2177 +#: server_privileges.php:2198 msgid "wildcard" msgstr "" @@ -7073,8 +7109,8 @@ msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output" msgstr "" -"Dangos cysylltiad i allbwn " -"[a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a]" +"Dangos cysylltiad i allbwn [a@http://php.net/manual/function.phpinfo.php]" +"phpinfo()[/a]" #: setup/lib/messages.inc.php:339 msgid "Show phpinfo() link" @@ -7321,6 +7357,10 @@ msgstr "" msgid "Show insert query" msgstr "Dangos ymholiad mewnosod" +#: tbl_change.php:1143 +msgid "and then" +msgstr "ac yna" + #: tbl_change.php:1147 msgid "Go back to previous page" msgstr "Dychwelyd i'r dudalen flaenorol" @@ -7401,7 +7441,7 @@ msgstr "" msgid "Add to index  %s column(s)" msgstr "" -#: tbl_indexes.php:256 tbl_structure.php:589 tbl_structure.php:600 +#: tbl_indexes.php:256 tbl_structure.php:587 tbl_structure.php:598 msgid "Column count has to be larger than zero." msgstr "" @@ -7478,7 +7518,6 @@ msgstr "Cynhaliaeth ymraniadau" #: tbl_operations.php:659 #, php-format -#, possible-php-format msgid "Partition %s" msgstr "Ymraniad %s" @@ -7514,39 +7553,39 @@ msgstr "" msgid "Show tables" msgstr "" -#: tbl_printview.php:310 tbl_structure.php:656 +#: tbl_printview.php:310 tbl_structure.php:654 msgid "Space usage" msgstr "" -#: tbl_printview.php:314 tbl_structure.php:660 +#: tbl_printview.php:314 tbl_structure.php:658 msgid "Usage" msgstr "" -#: tbl_printview.php:341 tbl_structure.php:687 +#: tbl_printview.php:341 tbl_structure.php:685 msgid "Effective" msgstr "" -#: tbl_printview.php:366 tbl_structure.php:725 +#: tbl_printview.php:366 tbl_structure.php:723 msgid "Row Statistics" msgstr "" -#: tbl_printview.php:369 tbl_structure.php:728 +#: tbl_printview.php:369 tbl_structure.php:726 msgid "Statements" msgstr "" -#: tbl_printview.php:380 tbl_structure.php:740 +#: tbl_printview.php:380 tbl_structure.php:738 msgid "static" msgstr "" -#: tbl_printview.php:382 tbl_structure.php:742 +#: tbl_printview.php:382 tbl_structure.php:740 msgid "dynamic" msgstr "" -#: tbl_printview.php:404 tbl_structure.php:785 +#: tbl_printview.php:404 tbl_structure.php:783 msgid "Row length" msgstr "" -#: tbl_printview.php:414 tbl_structure.php:793 +#: tbl_printview.php:414 tbl_structure.php:791 msgid " Row size " msgstr "" @@ -7611,47 +7650,47 @@ msgstr "" msgid "Column %s has been dropped" msgstr "" -#: tbl_structure.php:385 +#: tbl_structure.php:384 #, php-format msgid "A primary key has been added on %s" msgstr "" -#: tbl_structure.php:400 tbl_structure.php:414 tbl_structure.php:428 +#: tbl_structure.php:398 tbl_structure.php:412 tbl_structure.php:426 #, php-format msgid "An index has been added on %s" msgstr "" -#: tbl_structure.php:506 tbl_structure.php:508 +#: tbl_structure.php:504 tbl_structure.php:506 msgid "Relation view" msgstr "" -#: tbl_structure.php:515 tbl_structure.php:517 +#: tbl_structure.php:513 tbl_structure.php:515 msgid "Propose table structure" msgstr "" -#: tbl_structure.php:540 +#: tbl_structure.php:538 msgid "Add column" msgstr "" -#: tbl_structure.php:554 +#: tbl_structure.php:552 msgid "At End of Table" msgstr "" -#: tbl_structure.php:555 +#: tbl_structure.php:553 msgid "At Beginning of Table" msgstr "" -#: tbl_structure.php:556 +#: tbl_structure.php:554 #, php-format msgid "After %s" msgstr "" -#: tbl_structure.php:594 +#: tbl_structure.php:592 #, php-format msgid "Create an index on  %s columns" msgstr "" -#: tbl_structure.php:756 +#: tbl_structure.php:754 msgid "partitioned" msgstr "" diff --git a/po/da.po b/po/da.po index 76bdb442c..03fb4b63a 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-13 09:03-0400\n" +"POT-Creation-Date: 2010-06-22 00:55+0530\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:1514 +#: libraries/display_tbl.lib.php:417 server_privileges.php:1534 msgid "Show all" msgstr "Vis alle" -#: browse_foreigners.php:82 libraries/common.lib.php:2313 +#: browse_foreigners.php:82 libraries/common.lib.php:2317 #: 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,18 +37,18 @@ 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:2831 -#: libraries/common.lib.php:2838 libraries/db_links.inc.php:75 +#: db_structure.php:106 libraries/common.lib.php:2835 +#: libraries/common.lib.php:2842 libraries/db_links.inc.php:75 #: libraries/tbl_links.inc.php:63 msgid "Search" msgstr "Søg" -#: browse_foreigners.php:153 db_operations.php:385 db_operations.php:429 -#: db_operations.php:499 db_operations.php:609 db_search.php:362 -#: db_structure.php:567 js/messages.php:48 libraries/Config.class.php:1046 +#: browse_foreigners.php:153 db_operations.php:394 db_operations.php:438 +#: db_operations.php:508 db_operations.php:618 db_search.php:362 +#: db_structure.php:565 js/messages.php:53 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:1335 libraries/common.lib.php:2288 +#: libraries/common.lib.php:1335 libraries/common.lib.php:2292 #: 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,15 +59,15 @@ 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:664 server_privileges.php:1624 -#: server_privileges.php:1971 server_privileges.php:2018 -#: server_privileges.php:2057 server_replication.php:235 +#: server_privileges.php:665 server_privileges.php:1644 +#: server_privileges.php:1991 server_privileges.php:2038 +#: server_privileges.php:2078 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 #: tbl_operations.php:302 tbl_operations.php:499 tbl_operations.php:561 -#: tbl_operations.php:681 tbl_select.php:327 tbl_structure.php:562 -#: tbl_structure.php:597 tbl_tracking.php:395 tbl_tracking.php:512 +#: tbl_operations.php:681 tbl_select.php:327 tbl_structure.php:560 +#: tbl_structure.php:595 tbl_tracking.php:395 tbl_tracking.php:512 #: view_create.php:182 view_operations.php:101 msgid "Go" msgstr "Udfør" @@ -93,7 +93,7 @@ msgstr "Brug denne værdi" msgid "Database %1$s has been created." msgstr "" -#: db_datadict.php:49 db_operations.php:378 +#: db_datadict.php:49 db_operations.php:387 msgid "Database comment: " msgstr "Databasekommentar: " @@ -120,10 +120,10 @@ 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:2070 +#: pdf_schema.php:1263 pdf_schema.php:1284 server_privileges.php:2091 #: 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 +#: tbl_structure.php:657 tbl_tracking.php:274 tbl_tracking.php:321 msgid "Type" msgstr "Datatype" @@ -136,7 +136,7 @@ msgstr "Datatype" msgid "Null" msgstr "Nulværdi" -#: db_datadict.php:178 db_structure.php:501 libraries/export/htmlword.php:247 +#: db_datadict.php:178 db_structure.php:499 libraries/export/htmlword.php:247 #: libraries/export/latex.php:360 libraries/export/odt.php:303 #: libraries/export/texytext.php:236 libraries/tbl_properties.inc.php:106 #: pdf_schema.php:1266 pdf_schema.php:1287 tbl_printview.php:146 @@ -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: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 +#: pdf_schema.php:1344 server_privileges.php:1588 server_privileges.php:1599 +#: server_privileges.php:1909 server_privileges.php:1914 +#: server_privileges.php:2208 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:1565 -#: server_privileges.php:1579 server_privileges.php:1889 -#: server_privileges.php:1892 server_privileges.php:2187 sql.php:193 +#: server_databases.php:64 server_privileges.php:1585 +#: server_privileges.php:1599 server_privileges.php:1909 +#: server_privileges.php:1912 server_privileges.php:2208 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" @@ -209,125 +209,121 @@ msgstr "Vælg alle" msgid "Unselect All" msgstr "Fravælg alle" -#: db_operations.php:38 tbl_create.php:54 +#: db_operations.php:43 tbl_create.php:54 msgid "The database name is empty!" msgstr "Databasenavnet er tomt!" -#: db_operations.php:236 +#: db_operations.php:241 #, php-format msgid "Database %s has been renamed to %s" msgstr "Database %s er blevet omdøbt til %s" -#: db_operations.php:240 +#: db_operations.php:245 #, php-format msgid "Database %s has been copied to %s" msgstr "Database %s er blevet kopieret til %s" -#: db_operations.php:412 +#: db_operations.php:421 msgid "Rename database to" msgstr "Omdøb database til" -#: db_operations.php:417 server_processlist.php:57 +#: db_operations.php:426 server_processlist.php:57 msgid "Command" msgstr "Kommando" -#: db_operations.php:429 tbl_change.php:1143 -msgid "and then" -msgstr "og derefter" - -#: db_operations.php:455 +#: db_operations.php:464 msgid "Copy database to" msgstr "Kopiér database til" -#: db_operations.php:462 tbl_operations.php:528 tbl_tracking.php:388 +#: db_operations.php:471 tbl_operations.php:528 tbl_tracking.php:388 msgid "Structure only" msgstr "Kun strukturen" -#: db_operations.php:463 tbl_operations.php:529 tbl_tracking.php:390 +#: db_operations.php:472 tbl_operations.php:529 tbl_tracking.php:390 msgid "Structure and data" msgstr "Struktur og data" -#: db_operations.php:464 tbl_operations.php:530 tbl_tracking.php:389 +#: db_operations.php:473 tbl_operations.php:530 tbl_tracking.php:389 msgid "Data only" msgstr "Kun data" -#: db_operations.php:472 +#: db_operations.php:481 msgid "CREATE DATABASE before copying" msgstr "CREATE DATABASE før kopiering" -#: db_operations.php:475 libraries/export/sql.php:52 +#: db_operations.php:484 libraries/export/sql.php:52 #: libraries/export/sql.php:74 libraries/export/sql.php:76 #: libraries/export/sql.php:82 tbl_operations.php:536 #, php-format msgid "Add %s" msgstr "Tilføj %s" -#: db_operations.php:479 libraries/export/sql.php:78 tbl_operations.php:299 +#: db_operations.php:488 libraries/export/sql.php:78 tbl_operations.php:299 #: tbl_operations.php:538 msgid "Add AUTO_INCREMENT value" msgstr "Tilføj AUTO_INCREMENT værdi" -#: db_operations.php:483 tbl_operations.php:545 +#: db_operations.php:492 tbl_operations.php:545 msgid "Add constraints" msgstr "Tilføj begrænsninger" -#: db_operations.php:496 +#: db_operations.php:505 msgid "Switch to copied database" msgstr "Skift til den kopierede database" -#: db_operations.php:537 +#: db_operations.php:546 msgid "BLOB Repository" msgstr "" -#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1352 -#: libraries/server_links.inc.php:49 server_processlist.php:59 +#: db_operations.php:549 db_tracking.php:76 libraries/common.lib.php:1352 +#: libraries/server_links.inc.php:50 server_processlist.php:59 #: tbl_tracking.php:596 test/theme.php:101 msgid "Status" msgstr "Status" -#: db_operations.php:548 +#: db_operations.php:557 #, fuzzy #| msgid "Enabled" msgctxt "BLOB repository" msgid "Enabled" msgstr "Slået til" -#: db_operations.php:552 +#: db_operations.php:561 msgid "Disable" msgstr "" -#: db_operations.php:562 +#: db_operations.php:571 msgid "Damaged" msgstr "" -#: db_operations.php:566 +#: db_operations.php:575 #, fuzzy #| msgid "Repair table" msgctxt "BLOB repository" msgid "Repair" msgstr "Reparer tabel" -#: db_operations.php:574 +#: db_operations.php:583 #, fuzzy #| msgid "Disabled" msgctxt "BLOB repository" msgid "Disabled" msgstr "Slået fra" -#: db_operations.php:578 +#: db_operations.php:587 msgid "Enable" msgstr "" -#: db_operations.php:602 libraries/Index.class.php:448 +#: db_operations.php:611 libraries/Index.class.php:448 #: libraries/db_structure.lib.php:62 libraries/mysql_charsets.lib.php:107 #: libraries/tbl_properties.inc.php:107 libraries/tbl_properties.inc.php:730 #: server_collations.php:54 server_collations.php:66 server_databases.php:111 #: tbl_operations.php:363 tbl_select.php:137 tbl_structure.php:179 -#: tbl_structure.php:767 tbl_tracking.php:275 tbl_tracking.php:326 +#: tbl_structure.php:765 tbl_tracking.php:275 tbl_tracking.php:326 msgid "Collation" msgstr "Kollation (Collation)" -#: db_operations.php:615 main.php:316 pdf_schema.php:34 +#: db_operations.php:624 main.php:316 pdf_schema.php:34 #, php-format msgid "" "The additional features for working with linked tables have been " @@ -336,14 +332,14 @@ msgstr "" "De ekstra features for at arbejde med linkede tabeller er deaktiveret. For " "at se hvorfor, klik %sher%s." -#: db_operations.php:648 +#: db_operations.php:657 msgid "Edit PDF Pages" 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:1665 -#: server_privileges.php:1721 server_privileges.php:1985 +#: libraries/header.inc.php:130 pdf_pages.php:424 server_privileges.php:1685 +#: server_privileges.php:1741 server_privileges.php:2005 #: server_synchronize.php:423 server_synchronize.php:866 tbl_tracking.php:592 #: test/theme.php:75 msgid "Table" @@ -352,7 +348,7 @@ msgstr "Tabel" #: db_printview.php:105 libraries/db_structure.lib.php:56 #: libraries/header_printview.inc.php:63 libraries/import.lib.php:146 #: navigation.php:638 navigation.php:660 server_databases.php:122 -#: tbl_printview.php:394 tbl_structure.php:365 tbl_structure.php:777 +#: tbl_printview.php:394 tbl_structure.php:365 tbl_structure.php:775 msgid "Rows" msgstr "Rækker" @@ -360,30 +356,30 @@ msgstr "Rækker" msgid "Size" msgstr "Størrelse" -#: db_printview.php:162 db_structure.php:457 libraries/export/sql.php:559 +#: db_printview.php:162 db_structure.php:455 libraries/export/sql.php:559 #: libraries/export/sql.php:899 msgid "in use" msgstr "i brug" #: db_printview.php:187 libraries/db_info.inc.php:88 #: libraries/export/sql.php:514 pdf_schema.php:1241 tbl_printview.php:434 -#: tbl_structure.php:809 +#: tbl_structure.php:807 msgid "Creation" msgstr "Oprettelse" #: db_printview.php:196 libraries/db_info.inc.php:93 #: libraries/export/sql.php:519 pdf_schema.php:1246 tbl_printview.php:444 -#: tbl_structure.php:817 +#: tbl_structure.php:815 msgid "Last update" msgstr "Sidste opdatering" #: db_printview.php:205 libraries/db_info.inc.php:98 #: libraries/export/sql.php:524 pdf_schema.php:1251 tbl_printview.php:454 -#: tbl_structure.php:825 +#: tbl_structure.php:823 msgid "Last check" msgstr "Sidste check" -#: db_printview.php:222 db_structure.php:480 +#: db_printview.php:222 db_structure.php:478 #, fuzzy, php-format #| msgid "%s table(s)" msgid "%s table" @@ -444,7 +440,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:297 tbl_change.php:1031 tbl_indexes.php:250 +#: server_privileges.php:298 tbl_change.php:1031 tbl_indexes.php:250 #: tbl_select.php:288 msgid "Or" msgstr "Eller" @@ -517,9 +513,9 @@ 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:2833 +#: db_structure.php:105 libraries/common.lib.php:2837 #: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50 -#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:467 +#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:465 msgid "Browse" msgstr "Vis" @@ -564,36 +560,36 @@ 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:2832 libraries/sql_query_form.lib.php:334 +#: libraries/common.lib.php:2836 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:2829 libraries/common.lib.php:2836 +#: libraries/common.lib.php:2833 libraries/common.lib.php:2840 #: 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:1106 #: libraries/tbl_links.inc.php:56 pmd_general.php:134 -#: server_privileges.php:593 server_replication.php:315 tbl_tracking.php:269 +#: server_privileges.php:594 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:1656 +#: db_structure.php:543 db_structure.php:544 db_tracking.php:91 +#: libraries/Index.class.php:483 libraries/common.lib.php:1657 #: 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 -#: tbl_structure.php:152 tbl_structure.php:471 +#: tbl_structure.php:152 tbl_structure.php:469 msgid "Drop" 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:1655 +#: db_structure.php:541 db_structure.php:542 libraries/common.lib.php:1656 #: libraries/mult_submits.inc.php:39 libraries/tbl_links.inc.php:105 msgid "Empty" msgstr "Tøm" @@ -603,111 +599,111 @@ msgstr "Tøm" msgid "Table %s has been emptied" msgstr "Tabel %s er tømt" -#: db_structure.php:326 libraries/tbl_links.inc.php:133 +#: db_structure.php:325 libraries/tbl_links.inc.php:133 #, php-format msgid "View %s has been dropped" msgstr "Visning %s er blevet droppet" -#: db_structure.php:326 libraries/tbl_links.inc.php:133 +#: db_structure.php:325 libraries/tbl_links.inc.php:133 #, php-format msgid "Table %s has been dropped" msgstr "Tabel %s er slettet" -#: db_structure.php:333 +#: db_structure.php:332 msgid "Tracking is active." msgstr "" -#: db_structure.php:335 +#: db_structure.php:334 msgid "Tracking is not active." msgstr "" -#: db_structure.php:420 libraries/display_tbl.lib.php:1944 +#: db_structure.php:418 libraries/display_tbl.lib.php:1944 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation%" "s." msgstr "" -#: db_structure.php:434 db_structure.php:448 libraries/header.inc.php:126 +#: db_structure.php:432 db_structure.php:446 libraries/header.inc.php:130 #: libraries/tbl_info.inc.php:66 tbl_structure.php:185 test/theme.php:74 msgid "View" msgstr "Visning" -#: db_structure.php:485 libraries/db_structure.lib.php:49 -#: libraries/server_links.inc.php:70 server_replication.php:33 +#: db_structure.php:483 libraries/db_structure.lib.php:49 +#: libraries/server_links.inc.php:71 server_replication.php:33 #: server_replication.php:164 server_status.php:369 msgid "Replication" msgstr "Replikering" -#: db_structure.php:489 +#: db_structure.php:487 msgid "Sum" msgstr "Sum" -#: db_structure.php:496 libraries/StorageEngine.class.php:356 +#: db_structure.php:494 libraries/StorageEngine.class.php:356 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "%s er standard datalageret på denne MySQL-server." -#: db_structure.php:524 db_structure.php:541 db_structure.php:542 +#: db_structure.php:522 db_structure.php:539 db_structure.php:540 #: 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:1596 tbl_structure.php:455 -#: tbl_structure.php:464 +#: server_databases.php:351 server_privileges.php:1616 tbl_structure.php:453 +#: tbl_structure.php:462 msgid "With selected:" msgstr "Med det markerede:" -#: db_structure.php:527 libraries/display_tbl.lib.php:2076 -#: server_databases.php:348 server_privileges.php:569 -#: server_privileges.php:1599 tbl_structure.php:458 +#: db_structure.php:525 libraries/display_tbl.lib.php:2076 +#: server_databases.php:348 server_privileges.php:570 +#: server_privileges.php:1619 tbl_structure.php:456 msgid "Check All" msgstr "Afmærk alt" -#: db_structure.php:531 libraries/display_tbl.lib.php:2077 +#: db_structure.php:529 libraries/display_tbl.lib.php:2077 #: libraries/replication_gui.lib.php:33 server_databases.php:350 -#: server_privileges.php:572 server_privileges.php:1603 tbl_structure.php:462 +#: server_privileges.php:573 server_privileges.php:1623 tbl_structure.php:460 msgid "Uncheck All" msgstr "Fjern alle mærker" -#: db_structure.php:536 +#: db_structure.php:534 msgid "Check tables having overhead" msgstr "Check tabeller der har overhead" -#: db_structure.php:547 db_structure.php:548 db_structure.php:599 +#: db_structure.php:545 db_structure.php:546 db_structure.php:597 #: libraries/display_tbl.lib.php:2180 libraries/mult_submits.inc.php:28 -#: tbl_structure.php:492 tbl_structure.php:494 +#: tbl_structure.php:490 tbl_structure.php:492 msgid "Print view" msgstr "Vis (udskriftvenlig)" -#: db_structure.php:549 db_structure.php:550 libraries/mult_submits.inc.php:42 +#: db_structure.php:547 db_structure.php:548 libraries/mult_submits.inc.php:42 #: tbl_operations.php:581 msgid "Check table" msgstr "Tjek tabel" -#: db_structure.php:551 db_structure.php:552 libraries/mult_submits.inc.php:47 -#: tbl_operations.php:621 tbl_structure.php:709 tbl_structure.php:711 +#: db_structure.php:549 db_structure.php:550 libraries/mult_submits.inc.php:47 +#: tbl_operations.php:621 tbl_structure.php:707 tbl_structure.php:709 msgid "Optimize table" msgstr "Optimer tabel" -#: db_structure.php:553 db_structure.php:554 libraries/mult_submits.inc.php:52 +#: db_structure.php:551 db_structure.php:552 libraries/mult_submits.inc.php:52 #: tbl_operations.php:611 msgid "Repair table" msgstr "Reparer tabel" -#: db_structure.php:555 db_structure.php:556 libraries/mult_submits.inc.php:57 +#: db_structure.php:553 db_structure.php:554 libraries/mult_submits.inc.php:57 #: tbl_operations.php:601 msgid "Analyze table" msgstr "Analysér tabel" -#: db_structure.php:557 db_structure.php:558 libraries/db_links.inc.php:71 +#: db_structure.php:555 db_structure.php:556 libraries/db_links.inc.php:71 #: 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:1380 +#: libraries/server_links.inc.php:85 libraries/tbl_links.inc.php:82 +#: pmd_pdf.php:84 pmd_pdf.php:109 server_privileges.php:1397 #: setup/frames/menu.inc.php:22 tbl_row_action.php:59 msgid "Export" msgstr "Eksport" -#: db_structure.php:606 libraries/display_pdf_schema.lib.php:44 +#: db_structure.php:604 libraries/display_pdf_schema.lib.php:44 msgid "Data Dictionary" msgstr "Data Dictionary" @@ -718,10 +714,10 @@ msgstr "" #: db_tracking.php:71 libraries/export/htmlword.php:86 #: libraries/export/latex.php:148 libraries/export/odt.php:113 #: libraries/export/sql.php:342 libraries/export/texytext.php:84 -#: libraries/export/xml.php:255 libraries/header.inc.php:106 +#: libraries/export/xml.php:255 libraries/header.inc.php:110 #: libraries/header_printview.inc.php:58 server_databases.php:169 -#: server_privileges.php:1660 server_privileges.php:1721 -#: server_privileges.php:1979 server_processlist.php:56 +#: server_privileges.php:1680 server_privileges.php:1741 +#: server_privileges.php:1999 server_processlist.php:56 #: server_synchronize.php:1179 server_synchronize.php:1183 #: tbl_tracking.php:591 test/theme.php:65 msgid "Database" @@ -741,8 +737,8 @@ msgstr "" #: db_tracking.php:77 libraries/Index.class.php:440 #: libraries/db_structure.lib.php:53 server_databases.php:203 -#: server_privileges.php:1542 server_privileges.php:1725 -#: server_privileges.php:2073 tbl_structure.php:187 +#: server_privileges.php:1562 server_privileges.php:1745 +#: server_privileges.php:2094 tbl_structure.php:187 msgid "Action" msgstr "Handling" @@ -776,8 +772,8 @@ msgstr "" msgid "Untracked tables" msgstr "" -#: db_tracking.php:172 db_tracking.php:174 tbl_structure.php:528 -#: tbl_structure.php:530 +#: db_tracking.php:172 db_tracking.php:174 tbl_structure.php:526 +#: tbl_structure.php:528 msgid "Track table" msgstr "" @@ -946,187 +942,236 @@ msgstr "Der er intet værtsnavn!" msgid "The user name is empty!" msgstr "Intet brugernavn!" -#: js/messages.php:44 server_privileges.php:1236 user_password.php:70 +#: js/messages.php:44 server_privileges.php:1241 user_password.php:70 msgid "The password is empty!" msgstr "Der er ikke angivet noget kodeord!" -#: js/messages.php:45 server_privileges.php:1234 user_password.php:73 +#: js/messages.php:45 server_privileges.php:1239 user_password.php:73 msgid "The passwords aren't the same!" msgstr "De to kodeord er ikke ens!" -#: js/messages.php:49 pmd_general.php:342 pmd_general.php:379 +#: js/messages.php:46 +#, fuzzy +#| msgid "Add a new User" +msgid "Add a New User" +msgstr "Tilføj en ny bruger" + +#: js/messages.php:47 js/messages.php:54 pmd_general.php:342 +#: pmd_general.php:379 msgid "Cancel" msgstr "Annuller" -#: js/messages.php:52 pmd_save_pos.php:54 +#: js/messages.php:48 +#, fuzzy +#| msgid "Create" +msgid "Create User" +msgstr "Opret" + +#: js/messages.php:49 +#, fuzzy +#| msgid "Reload privileges" +msgid "Reloading Privileges" +msgstr "Genindlæs privilegier" + +#: js/messages.php:50 +#, fuzzy +#| msgid "Remove selected users" +msgid "Removing Selected Users" +msgstr "Fjern valgte brugere" + +#: js/messages.php:57 +#, fuzzy +#| msgid "Log in" +msgid "Loading" +msgstr "Login" + +#: js/messages.php:58 +#, fuzzy +#| msgid "Processes" +msgid "Processing Request" +msgstr "Processer" + +#: js/messages.php:59 +msgid "Error in Processing Request" +msgstr "" + +#: js/messages.php:60 +msgid "Dropping Column" +msgstr "" + +#: js/messages.php:61 +msgid "Adding Primary Key" +msgstr "" + +#: js/messages.php:64 pmd_save_pos.php:54 msgid "Modifications have been saved" msgstr "Rettelserne er gemt!" -#: js/messages.php:53 pmd_relation_upd.php:49 +#: js/messages.php:65 pmd_relation_upd.php:49 msgid "Relation deleted" msgstr "Relation slettet" -#: js/messages.php:54 pmd_relation_new.php:64 +#: js/messages.php:66 pmd_relation_new.php:64 msgid "FOREIGN KEY relation added" msgstr "" -#: js/messages.php:55 pmd_relation_new.php:86 +#: js/messages.php:67 pmd_relation_new.php:86 msgid "Internal relation added" msgstr "Intern relation tilføjet" -#: js/messages.php:56 pmd_relation_new.php:63 pmd_relation_new.php:88 +#: js/messages.php:68 pmd_relation_new.php:63 pmd_relation_new.php:88 msgid "Error: Relation not added." msgstr "Fejl: Relation ikke tilføjet." -#: js/messages.php:57 pmd_relation_new.php:31 +#: js/messages.php:69 pmd_relation_new.php:31 msgid "Error: relation already exists." msgstr "Fejl: Relation findes allerede." -#: js/messages.php:58 +#: js/messages.php:70 msgid "Error saving coordinates for Designer." msgstr "Fejl ved lagring af koordinater for Designer." -#: js/messages.php:59 libraries/relation.lib.php:107 +#: js/messages.php:71 libraries/relation.lib.php:107 #: libraries/relation.lib.php:119 msgid "General relation features" msgstr "Generelle relationsmuligheder" -#: js/messages.php:59 libraries/relation.lib.php:101 +#: js/messages.php:71 libraries/relation.lib.php:101 #: libraries/relation.lib.php:108 msgid "Disabled" msgstr "Slået fra" -#: js/messages.php:60 +#: js/messages.php:72 msgid "Select referenced key" msgstr "Vælg refereret nøgle" -#: js/messages.php:61 +#: js/messages.php:73 msgid "Select Foreign Key" msgstr "Vælg fremmednøgle" -#: js/messages.php:62 +#: js/messages.php:74 msgid "Please select the primary key or a unique key" msgstr "Vælg venligst den primære nøgle eller en unik nøgle" -#: js/messages.php:63 pmd_general.php:77 tbl_relation.php:548 +#: js/messages.php:75 pmd_general.php:77 tbl_relation.php:548 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" msgstr "Vælg felt der skal vises" #. l10n: Display text for calendar close link -#: js/messages.php:73 +#: js/messages.php:85 #, fuzzy #| msgid "None" msgid "Done" msgstr "Ingen" #. l10n: Display text for previous month link in calendar -#: js/messages.php:75 +#: js/messages.php:87 #, fuzzy #| msgid "Previous" msgid "Prev" msgstr "Forrige" #. l10n: Display text for next month link in calendar -#: js/messages.php:77 libraries/common.lib.php:2353 -#: libraries/common.lib.php:2356 libraries/display_tbl.lib.php:338 +#: js/messages.php:89 libraries/common.lib.php:2357 +#: libraries/common.lib.php:2360 libraries/display_tbl.lib.php:338 #: server_binlog.php:205 server_binlog.php:207 tbl_printview.php:424 -#: tbl_structure.php:801 +#: tbl_structure.php:799 msgid "Next" msgstr "Næste" #. l10n: Display text for current month link in calendar -#: js/messages.php:79 +#: js/messages.php:91 #, fuzzy #| msgid "Total" msgid "Today" msgstr "Total" -#: js/messages.php:82 +#: js/messages.php:94 #, fuzzy #| msgid "Binary" msgid "January" msgstr " Binært " -#: js/messages.php:83 +#: js/messages.php:95 msgid "February" msgstr "" -#: js/messages.php:84 +#: js/messages.php:96 #, fuzzy #| msgid "Mar" msgid "March" msgstr "mar" -#: js/messages.php:85 +#: js/messages.php:97 #, fuzzy #| msgid "Apr" msgid "April" msgstr "apr" -#: js/messages.php:86 +#: js/messages.php:98 msgid "May" msgstr "maj" -#: js/messages.php:87 +#: js/messages.php:99 #, fuzzy #| msgid "Jun" msgid "June" msgstr "jun" -#: js/messages.php:88 +#: js/messages.php:100 #, fuzzy #| msgid "Jul" msgid "July" msgstr "jul" -#: js/messages.php:89 +#: js/messages.php:101 #, fuzzy #| msgid "Aug" msgid "August" msgstr "aug" -#: js/messages.php:90 +#: js/messages.php:102 msgid "September" msgstr "" -#: js/messages.php:91 +#: js/messages.php:103 #, fuzzy #| msgid "Oct" msgid "October" msgstr "okt" -#: js/messages.php:92 +#: js/messages.php:104 msgid "November" msgstr "" -#: js/messages.php:93 +#: js/messages.php:105 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:97 libraries/common.lib.php:1557 +#: js/messages.php:109 libraries/common.lib.php:1557 msgid "Jan" msgstr "jan" #. l10n: Short month name -#: js/messages.php:99 libraries/common.lib.php:1559 +#: js/messages.php:111 libraries/common.lib.php:1559 msgid "Feb" msgstr "feb" #. l10n: Short month name -#: js/messages.php:101 libraries/common.lib.php:1561 +#: js/messages.php:113 libraries/common.lib.php:1561 msgid "Mar" msgstr "mar" #. l10n: Short month name -#: js/messages.php:103 libraries/common.lib.php:1563 +#: js/messages.php:115 libraries/common.lib.php:1563 msgid "Apr" msgstr "apr" #. l10n: Short month name -#: js/messages.php:105 libraries/common.lib.php:1565 +#: js/messages.php:117 libraries/common.lib.php:1565 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1134,176 +1179,176 @@ msgid "May" msgstr "maj" #. l10n: Short month name -#: js/messages.php:107 libraries/common.lib.php:1567 +#: js/messages.php:119 libraries/common.lib.php:1567 msgid "Jun" msgstr "jun" #. l10n: Short month name -#: js/messages.php:109 libraries/common.lib.php:1569 +#: js/messages.php:121 libraries/common.lib.php:1569 msgid "Jul" msgstr "jul" #. l10n: Short month name -#: js/messages.php:111 libraries/common.lib.php:1571 +#: js/messages.php:123 libraries/common.lib.php:1571 msgid "Aug" msgstr "aug" #. l10n: Short month name -#: js/messages.php:113 libraries/common.lib.php:1573 +#: js/messages.php:125 libraries/common.lib.php:1573 msgid "Sep" msgstr "sep" #. l10n: Short month name -#: js/messages.php:115 libraries/common.lib.php:1575 +#: js/messages.php:127 libraries/common.lib.php:1575 msgid "Oct" msgstr "okt" #. l10n: Short month name -#: js/messages.php:117 libraries/common.lib.php:1577 +#: js/messages.php:129 libraries/common.lib.php:1577 msgid "Nov" msgstr "nov" #. l10n: Short month name -#: js/messages.php:119 libraries/common.lib.php:1579 +#: js/messages.php:131 libraries/common.lib.php:1579 msgid "Dec" msgstr "dec" -#: js/messages.php:122 +#: js/messages.php:134 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "søn" -#: js/messages.php:123 +#: js/messages.php:135 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "man" -#: js/messages.php:124 +#: js/messages.php:136 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "tir" -#: js/messages.php:125 +#: js/messages.php:137 msgid "Wednesday" msgstr "" -#: js/messages.php:126 +#: js/messages.php:138 msgid "Thursday" msgstr "" -#: js/messages.php:127 +#: js/messages.php:139 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "fre" -#: js/messages.php:128 +#: js/messages.php:140 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:132 libraries/common.lib.php:1582 +#: js/messages.php:144 libraries/common.lib.php:1582 msgid "Sun" msgstr "søn" #. l10n: Short week day name -#: js/messages.php:134 libraries/common.lib.php:1584 +#: js/messages.php:146 libraries/common.lib.php:1584 msgid "Mon" msgstr "man" #. l10n: Short week day name -#: js/messages.php:136 libraries/common.lib.php:1586 +#: js/messages.php:148 libraries/common.lib.php:1586 msgid "Tue" msgstr "tir" #. l10n: Short week day name -#: js/messages.php:138 libraries/common.lib.php:1588 +#: js/messages.php:150 libraries/common.lib.php:1588 msgid "Wed" msgstr "ons" #. l10n: Short week day name -#: js/messages.php:140 libraries/common.lib.php:1590 +#: js/messages.php:152 libraries/common.lib.php:1590 msgid "Thu" msgstr "tor" #. l10n: Short week day name -#: js/messages.php:142 libraries/common.lib.php:1592 +#: js/messages.php:154 libraries/common.lib.php:1592 msgid "Fri" msgstr "fre" #. l10n: Short week day name -#: js/messages.php:144 libraries/common.lib.php:1594 +#: js/messages.php:156 libraries/common.lib.php:1594 msgid "Sat" msgstr "lør" #. l10n: Minimal week day name -#: js/messages.php:148 +#: js/messages.php:160 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "søn" #. l10n: Minimal week day name -#: js/messages.php:150 +#: js/messages.php:162 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "man" #. l10n: Minimal week day name -#: js/messages.php:152 +#: js/messages.php:164 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "tir" #. l10n: Minimal week day name -#: js/messages.php:154 +#: js/messages.php:166 #, fuzzy #| msgid "Wed" msgid "We" msgstr "ons" #. l10n: Minimal week day name -#: js/messages.php:156 +#: js/messages.php:168 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "tor" #. l10n: Minimal week day name -#: js/messages.php:158 +#: js/messages.php:170 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "fre" #. l10n: Minimal week day name -#: js/messages.php:160 +#: js/messages.php:172 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "lør" #. l10n: Column header for week of the year in calendar -#: js/messages.php:162 +#: js/messages.php:174 msgid "Wk" msgstr "" -#: js/messages.php:164 +#: js/messages.php:176 msgid "Hour" msgstr "" -#: js/messages.php:165 +#: js/messages.php:177 #, fuzzy #| msgid "in use" msgid "Minute" msgstr "i brug" -#: js/messages.php:166 +#: js/messages.php:178 #, fuzzy #| msgid "per second" msgid "Second" @@ -1362,7 +1407,7 @@ msgstr "Indeks" #: libraries/Index.class.php:444 libraries/mult_submits.inc.php:103 #: libraries/tbl_properties.inc.php:519 tbl_structure.php:33 -#: tbl_structure.php:155 tbl_structure.php:159 tbl_structure.php:474 +#: tbl_structure.php:155 tbl_structure.php:159 tbl_structure.php:472 #: tbl_tracking.php:322 msgid "Unique" msgstr "Unik" @@ -1403,8 +1448,8 @@ msgid "" "removed." msgstr "" -#: libraries/List_Database.class.php:431 libraries/server_links.inc.php:41 -#: server_databases.php:88 server_privileges.php:1660 +#: libraries/List_Database.class.php:431 libraries/server_links.inc.php:42 +#: server_databases.php:88 server_privileges.php:1680 #: setup/lib/messages.inc.php:110 test/theme.php:93 msgid "Databases" msgstr "Databaser" @@ -1576,7 +1621,7 @@ msgstr "Kodeord:" msgid "Server Choice" msgstr "Server valg" -#: libraries/auth/cookie.auth.lib.php:320 libraries/header.inc.php:59 +#: libraries/auth/cookie.auth.lib.php:320 libraries/header.inc.php:63 msgid "Cookies must be enabled past this point." msgstr "Herefter skal cookies være slået til." @@ -1657,7 +1702,7 @@ msgstr "" "Kan ikke bruge iconv ejheller libiconv eller recode_string funktionen omend " "udvidelsen ser ud til at være indlæst. Check din PHP-konfiguration." -#: libraries/common.inc.php:583 +#: libraries/common.inc.php:587 msgid "" "phpMyAdmin was unable to read your configuration file!
This might " "happen if PHP finds a parse error in it or PHP cannot find the file.
Hvis du får en blank side, er alt i orden." -#: libraries/common.inc.php:594 +#: libraries/common.inc.php:598 #, fuzzy, php-format #| msgid "Could not load default configuration from: \"%1$s\"" msgid "Could not load default configuration from: %1$s" msgstr "Kunne ikke indlæse standardkonfiguration fra: \"%1$s\"" -#: libraries/common.inc.php:599 +#: libraries/common.inc.php:603 msgid "" "The $cfg['PmaAbsoluteUri'] directive MUST be set in your " "configuration file!" @@ -1686,29 +1731,29 @@ msgstr "" "$cfg['PmaAbsoluteUri'] direktivet SKAL være sat i din " "konfigurationsfil!" -#: libraries/common.inc.php:629 +#: libraries/common.inc.php:633 #, fuzzy, php-format #| msgid "Invalid server index: \"%s\"" msgid "Invalid server index: %s" msgstr "Ugyldigt server indeks: \"%s\"" -#: libraries/common.inc.php:636 +#: libraries/common.inc.php:640 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" "Ugyldigt hostnavn for server %1$s. Gennemgå venligst din konfiguration." -#: libraries/common.inc.php:645 libraries/header.inc.php:96 +#: libraries/common.inc.php:649 libraries/header.inc.php:100 #: libraries/select_server.lib.php:41 libraries/select_server.lib.php:47 #: main.php:185 test/theme.php:57 msgid "Server" msgstr "Server" -#: libraries/common.inc.php:823 +#: libraries/common.inc.php:827 msgid "Invalid authentication method set in configuration:" msgstr "Ugyldig autorisationsmetode sat i konfiguration:" -#: libraries/common.inc.php:926 +#: libraries/common.inc.php:930 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Du burde opdatere til %s %s eller senere." @@ -1841,45 +1886,45 @@ msgstr "," msgid "%B %d, %Y at %I:%M %p" msgstr "%d. %m %Y kl. %H:%M:%S" -#: libraries/common.lib.php:1907 +#: libraries/common.lib.php:1911 #, 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:2322 libraries/common.lib.php:2325 +#: libraries/common.lib.php:2326 libraries/common.lib.php:2329 #: libraries/display_tbl.lib.php:290 server_status.php:719 msgid "Begin" msgstr "Start" -#: libraries/common.lib.php:2323 libraries/common.lib.php:2326 +#: libraries/common.lib.php:2327 libraries/common.lib.php:2330 #: libraries/display_tbl.lib.php:291 server_binlog.php:168 #: server_binlog.php:170 msgid "Previous" msgstr "Forrige" -#: libraries/common.lib.php:2354 libraries/common.lib.php:2357 +#: libraries/common.lib.php:2358 libraries/common.lib.php:2361 #: libraries/display_tbl.lib.php:353 msgid "End" msgstr "Slut" -#: libraries/common.lib.php:2430 +#: libraries/common.lib.php:2434 #, php-format msgid "Jump to database "%s"." msgstr "Hop til database "%s"." -#: libraries/common.lib.php:2450 +#: libraries/common.lib.php:2454 #, 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:2830 libraries/common.lib.php:2837 +#: libraries/common.lib.php:2834 libraries/common.lib.php:2841 #: libraries/db_links.inc.php:68 libraries/export/sql.php:25 -#: libraries/import/sql.php:18 libraries/server_links.inc.php:45 +#: libraries/import/sql.php:18 libraries/server_links.inc.php:46 #: libraries/tbl_links.inc.php:60 querywindow.php:99 test/theme.php:97 msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2839 libraries/db_links.inc.php:104 +#: libraries/common.lib.php:2843 libraries/db_links.inc.php:104 #: libraries/tbl_links.inc.php:95 libraries/tbl_links.inc.php:117 #: view_operations.php:89 msgid "Operations" @@ -1928,15 +1973,15 @@ msgstr "Foresp. via eks." msgid "Designer" msgstr "Designer" -#: libraries/db_links.inc.php:98 libraries/server_links.inc.php:88 +#: libraries/db_links.inc.php:98 libraries/server_links.inc.php:89 #: libraries/tbl_links.inc.php:91 pmd_pdf.php:84 pmd_pdf.php:110 #: setup/frames/menu.inc.php:21 msgid "Import" msgstr "Import" -#: libraries/db_links.inc.php:111 libraries/server_links.inc.php:66 -#: server_privileges.php:111 server_privileges.php:1722 -#: server_privileges.php:2071 test/theme.php:117 +#: libraries/db_links.inc.php:111 libraries/server_links.inc.php:67 +#: server_privileges.php:112 server_privileges.php:1742 +#: server_privileges.php:2092 test/theme.php:117 msgid "Privileges" msgstr "Privilegier" @@ -1955,7 +2000,7 @@ msgid "" msgstr "Kan være anslået. Se FAQ 3.11" #: libraries/db_structure.lib.php:69 server_databases.php:142 -#: tbl_printview.php:336 tbl_structure.php:682 +#: tbl_printview.php:336 tbl_structure.php:680 msgid "Overhead" msgstr "Overhead" @@ -1973,7 +2018,7 @@ msgstr "Serveren svarer ikke" msgid "(or the local MySQL server's socket is not correctly configured)" msgstr "(eller den lokale MySQL servers socket er ikke korrekt konfigureret)" -#: libraries/dbi/mysql.dbi.lib.php:362 tbl_structure.php:608 +#: libraries/dbi/mysql.dbi.lib.php:362 tbl_structure.php:606 msgid "Details..." msgstr "" @@ -1983,22 +2028,22 @@ msgid "Change password" msgstr "Ændre kodeord" #: libraries/display_change_password.lib.php:35 -#: libraries/replication_gui.lib.php:345 server_privileges.php:807 +#: libraries/replication_gui.lib.php:345 server_privileges.php:808 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:796 -#: server_privileges.php:800 server_privileges.php:811 -#: server_privileges.php:1538 server_synchronize.php:1175 +#: libraries/replication_gui.lib.php:349 server_privileges.php:797 +#: server_privileges.php:801 server_privileges.php:812 +#: server_privileges.php:1558 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:815 server_privileges.php:818 +#: server_privileges.php:816 server_privileges.php:819 msgid "Re-type" msgstr "Skriv igen" @@ -2013,12 +2058,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:822 +#: libraries/replication_gui.lib.php:360 server_privileges.php:823 msgid "Generate Password" msgstr "Generér Kodeord" #: libraries/display_change_password.lib.php:75 -#: libraries/replication_gui.lib.php:363 server_privileges.php:825 +#: libraries/replication_gui.lib.php:363 server_privileges.php:826 msgid "Generate" msgstr "Generér" @@ -2031,8 +2076,8 @@ msgstr "Opret ny database" msgid "Create" msgstr "Opret" -#: libraries/display_create_database.lib.php:40 server_privileges.php:113 -#: server_privileges.php:1427 server_replication.php:35 +#: libraries/display_create_database.lib.php:40 server_privileges.php:114 +#: server_privileges.php:1447 server_replication.php:35 msgid "No Privileges" msgstr "Ingen privilegier" @@ -2123,7 +2168,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:1875 server_processlist.php:75 +#: server_privileges.php:1895 server_processlist.php:75 msgid "None" msgstr "Ingen" @@ -2314,7 +2359,7 @@ msgstr "Sorteringsnøgle" #: libraries/import/docsql.php:34 libraries/import/ldi.php:47 #: libraries/import/ods.php:30 libraries/import/sql.php:20 #: libraries/import/xls.php:26 libraries/import/xlsx.php:26 -#: libraries/import/xml.php:25 tbl_select.php:267 tbl_structure.php:753 +#: libraries/import/xml.php:25 tbl_select.php:267 tbl_structure.php:751 msgid "Options" msgstr "Indstillinger" @@ -2391,7 +2436,7 @@ msgstr "Forepørgsel tog %01.4f sek" #: libraries/display_tbl.lib.php:2089 libraries/mult_submits.inc.php:113 #: querywindow.php:125 querywindow.php:129 querywindow.php:132 -#: tbl_structure.php:25 tbl_structure.php:150 tbl_structure.php:470 +#: tbl_structure.php:25 tbl_structure.php:150 tbl_structure.php:468 msgid "Change" msgstr "Ændre" @@ -2461,7 +2506,7 @@ msgstr "Buffer Pool Forbrug" #: libraries/engines/innodb.lib.php:194 server_databases.php:137 #: server_databases.php:305 server_status.php:525 server_status.php:586 -#: server_status.php:607 tbl_printview.php:351 tbl_structure.php:696 +#: server_status.php:607 tbl_printview.php:351 tbl_structure.php:694 msgid "Total" msgstr "Total" @@ -2720,7 +2765,7 @@ msgid "" msgstr "" #: libraries/export/codegen.php:37 setup/lib/messages.inc.php:88 -#: tbl_printview.php:376 tbl_structure.php:737 +#: tbl_printview.php:376 tbl_structure.php:735 msgid "Format" msgstr "Format" @@ -2792,8 +2837,8 @@ 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:576 server_replication.php:316 tbl_printview.php:317 -#: tbl_structure.php:665 +#: server_privileges.php:577 server_replication.php:316 tbl_printview.php:317 +#: tbl_structure.php:663 msgid "Data" msgstr "Data" @@ -2842,9 +2887,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:731 -#: server_privileges.php:734 server_privileges.php:790 -#: server_privileges.php:1537 server_privileges.php:2069 +#: libraries/replication_gui.lib.php:329 server_privileges.php:732 +#: server_privileges.php:735 server_privileges.php:791 +#: server_privileges.php:1557 server_privileges.php:2090 #: server_processlist.php:55 server_synchronize.php:1159 msgid "Host" msgstr "Vært" @@ -3039,7 +3084,7 @@ msgstr "" msgid "Open new phpMyAdmin window" msgstr "Åbn nyt phpMyAdmin vindue" -#: libraries/header.inc.php:115 +#: libraries/header.inc.php:119 msgid "New table" msgstr "" @@ -3197,20 +3242,20 @@ 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 +#: tbl_structure.php:471 msgid "Primary" msgstr "Primær" #: libraries/mult_submits.inc.php:98 libraries/tbl_properties.inc.php:116 #: libraries/tbl_properties.inc.php:525 tbl_printview.php:326 #: tbl_structure.php:31 tbl_structure.php:154 tbl_structure.php:158 -#: tbl_structure.php:475 tbl_structure.php:673 +#: tbl_structure.php:473 tbl_structure.php:671 msgid "Index" msgstr "Indeks" #: libraries/mult_submits.inc.php:108 libraries/tbl_properties.inc.php:531 #: tbl_structure.php:35 tbl_structure.php:156 tbl_structure.php:160 -#: tbl_structure.php:478 +#: tbl_structure.php:476 msgid "Fulltext" msgstr "Fuldtekst" @@ -3513,8 +3558,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:711 -#: server_privileges.php:714 server_privileges.php:721 +#: libraries/replication_gui.lib.php:259 server_privileges.php:712 +#: server_privileges.php:715 server_privileges.php:722 #: server_synchronize.php:1171 msgid "User name" msgstr "Brugernavn" @@ -3538,7 +3583,7 @@ msgstr "Variabel" #: 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 +#: tbl_structure.php:727 msgid "Value" msgstr "Værdi" @@ -3556,34 +3601,34 @@ msgstr "" msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:254 server_privileges.php:716 +#: libraries/replication_gui.lib.php:254 server_privileges.php:717 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:717 -#: server_privileges.php:784 server_privileges.php:808 -#: server_privileges.php:1928 server_privileges.php:1958 +#: libraries/replication_gui.lib.php:346 server_privileges.php:718 +#: server_privileges.php:785 server_privileges.php:809 +#: server_privileges.php:1948 server_privileges.php:1978 msgid "Use text field" msgstr "Brug tekstfelt" -#: libraries/replication_gui.lib.php:302 server_privileges.php:764 +#: libraries/replication_gui.lib.php:302 server_privileges.php:765 msgid "Any host" msgstr "Enhver vært" -#: libraries/replication_gui.lib.php:306 server_privileges.php:768 +#: libraries/replication_gui.lib.php:306 server_privileges.php:769 msgid "Local" msgstr "Lokal" -#: libraries/replication_gui.lib.php:312 server_privileges.php:773 +#: libraries/replication_gui.lib.php:312 server_privileges.php:774 msgid "This Host" msgstr "Denne Host" -#: libraries/replication_gui.lib.php:318 server_privileges.php:779 +#: libraries/replication_gui.lib.php:318 server_privileges.php:780 msgid "Use Host Table" msgstr "Brug Host Tabel" -#: libraries/replication_gui.lib.php:331 server_privileges.php:792 +#: libraries/replication_gui.lib.php:331 server_privileges.php:793 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -3617,29 +3662,29 @@ msgstr "Ukendt sprog: %1$s." msgid "Servers" msgstr "Servere" -#: libraries/server_links.inc.php:53 server_engines.php:112 +#: libraries/server_links.inc.php:54 server_engines.php:112 #: server_engines.php:116 server_status.php:415 test/theme.php:105 msgid "Variables" msgstr "Variabler" -#: libraries/server_links.inc.php:57 test/theme.php:109 +#: libraries/server_links.inc.php:58 test/theme.php:109 msgid "Charsets" msgstr "Tegnsæt" -#: libraries/server_links.inc.php:61 test/theme.php:113 +#: libraries/server_links.inc.php:62 test/theme.php:113 msgid "Engines" msgstr "Lagre" -#: libraries/server_links.inc.php:76 server_binlog.php:110 +#: libraries/server_links.inc.php:77 server_binlog.php:110 #: server_status.php:364 test/theme.php:121 msgid "Binary log" msgstr "Binær log" -#: libraries/server_links.inc.php:80 +#: libraries/server_links.inc.php:81 msgid "Processes" msgstr "Processer" -#: libraries/server_links.inc.php:92 server_synchronize.php:1092 +#: libraries/server_links.inc.php:93 server_synchronize.php:1092 #: server_synchronize.php:1100 msgid "Synchronize" msgstr "" @@ -3889,13 +3934,13 @@ msgstr "" msgid "Save" msgstr "Gem" -#: libraries/tbl_properties.inc.php:780 tbl_structure.php:542 +#: libraries/tbl_properties.inc.php:780 tbl_structure.php:540 #, fuzzy, php-format #| msgid "Add %s field(s)" msgid "Add %s column(s)" msgstr "Tilføj %s felt(er)" -#: libraries/tbl_properties.inc.php:784 tbl_structure.php:536 +#: libraries/tbl_properties.inc.php:784 tbl_structure.php:534 #, fuzzy #| msgid "You have to add at least one field." msgid "You have to add at least one column." @@ -4108,8 +4153,8 @@ msgstr "Nulstil" msgid "Protocol version" msgstr "Protokolversion" -#: main.php:189 server_privileges.php:1389 server_privileges.php:1536 -#: server_privileges.php:1650 server_privileges.php:2068 +#: main.php:189 server_privileges.php:1406 server_privileges.php:1556 +#: server_privileges.php:1670 server_privileges.php:2089 #: server_processlist.php:54 msgid "User" msgstr "Bruger" @@ -4557,114 +4602,114 @@ msgstr "Datalagre" msgid "View dump (schema) of databases" msgstr "Vis dump (skema) for databaser" -#: server_privileges.php:24 server_privileges.php:266 +#: server_privileges.php:25 server_privileges.php:267 msgid "Includes all privileges except GRANT." msgstr "Inkluderer alle privilegier pånær GRANT." -#: server_privileges.php:25 server_privileges.php:192 -#: server_privileges.php:515 +#: server_privileges.php:26 server_privileges.php:193 +#: server_privileges.php:516 msgid "Allows altering the structure of existing tables." msgstr "Tillader ændring af strukturen på eksisterende tabeller." -#: server_privileges.php:26 server_privileges.php:208 -#: server_privileges.php:521 +#: server_privileges.php:27 server_privileges.php:209 +#: server_privileges.php:522 msgid "Allows altering and dropping stored routines." msgstr "Tillader ændring og sletning af gemte rutiner." -#: server_privileges.php:27 server_privileges.php:184 -#: server_privileges.php:514 +#: server_privileges.php:28 server_privileges.php:185 +#: server_privileges.php:515 msgid "Allows creating new databases and tables." msgstr "Tillader oprettelse af nye databaser og tabeller." -#: server_privileges.php:28 server_privileges.php:207 -#: server_privileges.php:520 +#: server_privileges.php:29 server_privileges.php:208 +#: server_privileges.php:521 msgid "Allows creating stored routines." msgstr "Tillader oprettelse af gemte rutiner." -#: server_privileges.php:29 server_privileges.php:514 +#: server_privileges.php:30 server_privileges.php:515 msgid "Allows creating new tables." msgstr "Tillader oprettelse af nye tabeller." -#: server_privileges.php:30 server_privileges.php:195 -#: server_privileges.php:518 +#: server_privileges.php:31 server_privileges.php:196 +#: server_privileges.php:519 msgid "Allows creating temporary tables." msgstr "Tillader oprettelse af midlertidige tabeller." -#: server_privileges.php:31 server_privileges.php:209 -#: server_privileges.php:554 +#: server_privileges.php:32 server_privileges.php:210 +#: server_privileges.php:555 msgid "Allows creating, dropping and renaming user accounts." msgstr "Tillader oprettelse, sletning og omdøbning af brugerkonti." -#: server_privileges.php:32 server_privileges.php:199 -#: server_privileges.php:203 server_privileges.php:526 -#: server_privileges.php:530 +#: server_privileges.php:33 server_privileges.php:200 +#: server_privileges.php:204 server_privileges.php:527 +#: server_privileges.php:531 msgid "Allows creating new views." msgstr "Tillader oprettelse af nye Allows creating new views." -#: server_privileges.php:33 server_privileges.php:183 -#: server_privileges.php:506 +#: server_privileges.php:34 server_privileges.php:184 +#: server_privileges.php:507 msgid "Allows deleting data." msgstr "Tillader sletning af data." -#: server_privileges.php:34 server_privileges.php:185 -#: server_privileges.php:517 +#: server_privileges.php:35 server_privileges.php:186 +#: server_privileges.php:518 msgid "Allows dropping databases and tables." msgstr "Tillader at droppe databaser og tabeller." -#: server_privileges.php:35 server_privileges.php:517 +#: server_privileges.php:36 server_privileges.php:518 msgid "Allows dropping tables." msgstr "Tillader at droppe tabeller." -#: server_privileges.php:36 server_privileges.php:200 -#: server_privileges.php:534 +#: server_privileges.php:37 server_privileges.php:201 +#: server_privileges.php:535 msgid "Allows to set up events for the event scheduler" msgstr "" -#: server_privileges.php:37 server_privileges.php:210 -#: server_privileges.php:522 +#: server_privileges.php:38 server_privileges.php:211 +#: server_privileges.php:523 msgid "Allows executing stored routines." msgstr "Tillader udførelse af gemte rutiner." -#: server_privileges.php:38 server_privileges.php:189 -#: server_privileges.php:509 +#: server_privileges.php:39 server_privileges.php:190 +#: server_privileges.php:510 msgid "Allows importing data from and exporting data into files." msgstr "Tillader import af data fra og eksport af data til filer." -#: server_privileges.php:39 server_privileges.php:540 +#: server_privileges.php:40 server_privileges.php:541 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "Tillader oprettelse af brugere og privilegier uden at genindlæse privilegie-" "tabellerne." -#: server_privileges.php:40 server_privileges.php:191 -#: server_privileges.php:516 +#: server_privileges.php:41 server_privileges.php:192 +#: server_privileges.php:517 msgid "Allows creating and dropping indexes." msgstr "Tillader at skabe og droppe indeks." -#: server_privileges.php:41 server_privileges.php:181 -#: server_privileges.php:442 server_privileges.php:504 +#: server_privileges.php:42 server_privileges.php:182 +#: server_privileges.php:443 server_privileges.php:505 msgid "Allows inserting and replacing data." msgstr "Tillader indsættelse og erstatning af data." -#: server_privileges.php:42 server_privileges.php:196 -#: server_privileges.php:549 +#: server_privileges.php:43 server_privileges.php:197 +#: server_privileges.php:550 msgid "Allows locking tables for the current thread." msgstr "Tillader låsning af tabeller for nuværende tråd." -#: server_privileges.php:43 server_privileges.php:646 -#: server_privileges.php:648 +#: server_privileges.php:44 server_privileges.php:647 +#: server_privileges.php:649 msgid "Limits the number of new connections the user may open per hour." msgstr "Begrænser antallet af nye forbindelser brugeren må åbne pr. time." -#: server_privileges.php:44 server_privileges.php:634 -#: server_privileges.php:636 +#: server_privileges.php:45 server_privileges.php:635 +#: server_privileges.php:637 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" "Begrænser antallet af forespørgsler brugeren må sende til serveren pr. time." -#: server_privileges.php:45 server_privileges.php:640 -#: server_privileges.php:642 +#: server_privileges.php:46 server_privileges.php:641 +#: server_privileges.php:643 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -4672,58 +4717,58 @@ 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 +#: server_privileges.php:47 server_privileges.php:653 +#: server_privileges.php:655 msgid "Limits the number of simultaneous connections the user may have." msgstr "Begrænser antallet af samtidige forbindelser brugere må have." -#: server_privileges.php:47 server_privileges.php:188 -#: server_privileges.php:544 +#: server_privileges.php:48 server_privileges.php:189 +#: server_privileges.php:545 msgid "Allows viewing processes of all users" msgstr "" -#: server_privileges.php:48 server_privileges.php:190 -#: server_privileges.php:448 server_privileges.php:550 +#: server_privileges.php:49 server_privileges.php:191 +#: server_privileges.php:449 server_privileges.php:551 msgid "Has no effect in this MySQL version." msgstr "Har ingen effekt i denne MySQL version." -#: server_privileges.php:49 server_privileges.php:186 -#: server_privileges.php:545 +#: server_privileges.php:50 server_privileges.php:187 +#: server_privileges.php:546 msgid "Allows reloading server settings and flushing the server's caches." msgstr "Tillader genindlæsning af serverindstillinger og tømning af caches." -#: server_privileges.php:50 server_privileges.php:198 -#: server_privileges.php:552 +#: server_privileges.php:51 server_privileges.php:199 +#: server_privileges.php:553 msgid "Allows the user to ask where the slaves / masters are." msgstr "Giver brugeren rettigheder til at spørge hvor Slaves / Masters er." -#: server_privileges.php:51 server_privileges.php:197 -#: server_privileges.php:553 +#: server_privileges.php:52 server_privileges.php:198 +#: server_privileges.php:554 msgid "Needed for the replication slaves." msgstr "Nødvendigt for replikationsslaverne." -#: server_privileges.php:52 server_privileges.php:180 -#: server_privileges.php:439 server_privileges.php:503 +#: server_privileges.php:53 server_privileges.php:181 +#: server_privileges.php:440 server_privileges.php:504 msgid "Allows reading data." msgstr "Tillader læsning af data." -#: server_privileges.php:53 server_privileges.php:193 -#: server_privileges.php:547 +#: server_privileges.php:54 server_privileges.php:194 +#: server_privileges.php:548 msgid "Gives access to the complete list of databases." msgstr "Giver adgang til den fuldstændige liste over databaser." -#: server_privileges.php:54 server_privileges.php:204 -#: server_privileges.php:206 server_privileges.php:519 +#: server_privileges.php:55 server_privileges.php:205 +#: server_privileges.php:207 server_privileges.php:520 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Tillader udførelse af SHOW CREATE VIEW forespørgsler." -#: server_privileges.php:55 server_privileges.php:187 -#: server_privileges.php:546 +#: server_privileges.php:56 server_privileges.php:188 +#: server_privileges.php:547 msgid "Allows shutting down the server." msgstr "Tillader nedlukning af serveren." -#: server_privileges.php:56 server_privileges.php:194 -#: server_privileges.php:543 +#: server_privileges.php:57 server_privileges.php:195 +#: server_privileges.php:544 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -4733,158 +4778,158 @@ msgstr "" "Nødvendigt for de fleste administrative operationer som indstilling af " "globale variabler eller for at dræbe andre brugeres tråde." -#: server_privileges.php:57 server_privileges.php:201 -#: server_privileges.php:535 +#: server_privileges.php:58 server_privileges.php:202 +#: server_privileges.php:536 msgid "Allows creating and dropping triggers" msgstr "" -#: server_privileges.php:58 server_privileges.php:182 -#: server_privileges.php:445 server_privileges.php:505 +#: server_privileges.php:59 server_privileges.php:183 +#: server_privileges.php:446 server_privileges.php:506 msgid "Allows changing data." msgstr "Tillader ændring af data." -#: server_privileges.php:59 server_privileges.php:260 +#: server_privileges.php:60 server_privileges.php:261 msgid "No privileges." msgstr "Ingen privilegier." -#: server_privileges.php:302 server_privileges.php:303 +#: server_privileges.php:303 server_privileges.php:304 #, fuzzy #| msgid "None" msgctxt "None privileges" msgid "None" msgstr "Ingen" -#: server_privileges.php:431 server_privileges.php:566 -#: server_privileges.php:1718 server_privileges.php:1724 +#: server_privileges.php:432 server_privileges.php:567 +#: server_privileges.php:1738 server_privileges.php:1744 msgid "Table-specific privileges" msgstr "Tabel-specifikke privilegier" -#: server_privileges.php:432 server_privileges.php:574 -#: server_privileges.php:1540 +#: server_privileges.php:433 server_privileges.php:575 +#: server_privileges.php:1560 msgid " Note: MySQL privilege names are expressed in English " msgstr " NB: Navne på MySQL privilegier er på engelsk " -#: server_privileges.php:563 server_privileges.php:1539 +#: server_privileges.php:564 server_privileges.php:1559 msgid "Global privileges" msgstr "Globale privilegier" -#: server_privileges.php:565 server_privileges.php:1718 +#: server_privileges.php:566 server_privileges.php:1738 msgid "Database-specific privileges" msgstr "Database-specifikke privilegier" -#: server_privileges.php:610 +#: server_privileges.php:611 msgid "Administration" msgstr "Administration" -#: server_privileges.php:630 +#: server_privileges.php:631 msgid "Resource limits" msgstr "Ressourcebegrænsninger" -#: server_privileges.php:631 +#: server_privileges.php:632 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "" "Bemærk: Indstilling af disse værdier til 0 (nul) fjerner begrænsningen." -#: server_privileges.php:708 +#: server_privileges.php:709 msgid "Login Information" msgstr "Login-information" -#: server_privileges.php:802 +#: server_privileges.php:803 msgid "Do not change the password" msgstr "Kodeord må ikke ændres" -#: server_privileges.php:843 server_privileges.php:2205 +#: server_privileges.php:844 server_privileges.php:2226 #, fuzzy #| msgid "No user(s) found." msgid "No user found." msgstr "Ingen bruger(e) fundet." -#: server_privileges.php:887 +#: server_privileges.php:888 #, php-format msgid "The user %s already exists!" msgstr "Brugeren %s findes i forvejen!" -#: server_privileges.php:970 +#: server_privileges.php:971 msgid "You have added a new user." msgstr "Du har tilføjet en ny bruger." -#: server_privileges.php:1191 +#: server_privileges.php:1196 #, php-format msgid "You have updated the privileges for %s." msgstr "Du har opdateret privilegierne for %s." -#: server_privileges.php:1215 +#: server_privileges.php:1220 #, php-format msgid "You have revoked the privileges for %s" msgstr "Du har tilbagekaldt privilegierne for %s" -#: server_privileges.php:1251 +#: server_privileges.php:1256 #, php-format msgid "The password for %s was changed successfully." msgstr "Kodeordet for %s blev korrekt udskiftet." -#: server_privileges.php:1271 +#: server_privileges.php:1276 #, php-format msgid "Deleting %s" msgstr "Sletter %s" -#: server_privileges.php:1282 +#: server_privileges.php:1287 msgid "No users selected for deleting!" msgstr "Ingen brugere valgt til sletning!" -#: server_privileges.php:1285 +#: server_privileges.php:1290 msgid "Reloading the privileges" msgstr "Genindlæs privilegierne" -#: server_privileges.php:1300 +#: server_privileges.php:1305 msgid "The selected users have been deleted successfully." msgstr "De valgte brugere er blevet korrekt slettet." -#: server_privileges.php:1335 +#: server_privileges.php:1344 msgid "The privileges were reloaded successfully." msgstr "Privilegierne blev korrekt genindlæst." -#: server_privileges.php:1363 server_privileges.php:1649 +#: server_privileges.php:1380 server_privileges.php:1669 msgid "Edit Privileges" msgstr "Ret privilegier" -#: server_privileges.php:1372 +#: server_privileges.php:1389 msgid "Revoke" msgstr "Tilbagekald" -#: server_privileges.php:1404 +#: server_privileges.php:1424 msgid "User overview" msgstr "Brugeroversigt" -#: server_privileges.php:1541 server_privileges.php:1723 -#: server_privileges.php:2072 +#: server_privileges.php:1561 server_privileges.php:1743 +#: server_privileges.php:2093 msgid "Grant" msgstr "Tildel" -#: server_privileges.php:1560 server_privileges.php:2162 +#: server_privileges.php:1580 server_privileges.php:2183 msgid "Any" msgstr "Enhver" -#: server_privileges.php:1609 server_privileges.php:1633 -#: server_privileges.php:2027 server_privileges.php:2216 +#: server_privileges.php:1629 server_privileges.php:1653 +#: server_privileges.php:2048 server_privileges.php:2237 msgid "Add a new User" msgstr "Tilføj en ny bruger" -#: server_privileges.php:1614 +#: server_privileges.php:1634 msgid "Remove selected users" msgstr "Fjern valgte brugere" -#: server_privileges.php:1617 +#: server_privileges.php:1637 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:1618 server_privileges.php:1619 -#: server_privileges.php:1620 +#: server_privileges.php:1638 server_privileges.php:1639 +#: server_privileges.php:1640 msgid "Drop the databases that have the same names as the users." msgstr "Drop databaser der har samme navne som brugernes." -#: server_privileges.php:1636 +#: server_privileges.php:1656 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -4898,50 +4943,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:1684 +#: server_privileges.php:1704 msgid "The selected user was not found in the privilege table." msgstr "Den valgte bruger blev ikke fundet i privilegietabellen." -#: server_privileges.php:1724 +#: server_privileges.php:1744 msgid "Column-specific privileges" msgstr "Kolonne-specifikke privilegier" -#: server_privileges.php:1925 +#: server_privileges.php:1945 msgid "Add privileges on the following database" msgstr "Tilføj privilegier på følgende database" -#: server_privileges.php:1943 +#: server_privileges.php:1963 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" -#: server_privileges.php:1946 +#: server_privileges.php:1966 msgid "Add privileges on the following table" msgstr "Tilføj privileges på følgende tabel" -#: server_privileges.php:2003 +#: server_privileges.php:2023 msgid "Change Login Information / Copy User" msgstr "Ret Login-information / Kopiér bruger" -#: server_privileges.php:2006 +#: server_privileges.php:2026 msgid "Create a new user with the same privileges and ..." msgstr "Opret en bruger med samme privilegier og ..." -#: server_privileges.php:2008 +#: server_privileges.php:2028 msgid "... keep the old one." msgstr "... behold den gamle." -#: server_privileges.php:2009 +#: server_privileges.php:2029 msgid " ... delete the old one from the user tables." msgstr " ... slet den gamle fra brugertabellerne." -#: server_privileges.php:2010 +#: server_privileges.php:2030 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:2011 +#: server_privileges.php:2031 msgid "" " ... delete the old one from the user tables and reload the privileges " "afterwards." @@ -4949,44 +4994,44 @@ msgstr "" " ... slet den gamle fra brugertabellerne og genindlæs privilegierne " "efterfølgende." -#: server_privileges.php:2033 +#: server_privileges.php:2054 msgid "Database for user" msgstr "Database for bruger" -#: server_privileges.php:2037 +#: server_privileges.php:2058 #, fuzzy #| msgid "None" msgctxt "Create none database for user" msgid "None" msgstr "Ingen" -#: server_privileges.php:2038 +#: server_privileges.php:2059 msgid "Create database with same name and grant all privileges" msgstr "Opret database med samme navn og tildel alle privilegier" -#: server_privileges.php:2039 +#: server_privileges.php:2060 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "Tildel alle privilegier til jokertegn-navn (brugernavn_%)" -#: server_privileges.php:2042 +#: server_privileges.php:2063 #, php-format msgid "Grant all privileges on database "%s"" msgstr "" -#: server_privileges.php:2065 +#: server_privileges.php:2086 #, php-format msgid "Users having access to "%s"" msgstr "Brugere med adgang til "%s"" -#: server_privileges.php:2173 +#: server_privileges.php:2194 msgid "global" msgstr "global" -#: server_privileges.php:2175 +#: server_privileges.php:2196 msgid "database-specific" msgstr "database-specifik" -#: server_privileges.php:2177 +#: server_privileges.php:2198 msgid "wildcard" msgstr "jokertegn" @@ -7758,6 +7803,10 @@ msgstr "" msgid "Show insert query" msgstr "" +#: tbl_change.php:1143 +msgid "and then" +msgstr "og derefter" + #: tbl_change.php:1147 msgid "Go back to previous page" msgstr "Tilbage til foregående side" @@ -7839,7 +7888,7 @@ msgstr "" msgid "Add to index  %s column(s)" msgstr "Føj til indeks  %s kolonne(r)" -#: tbl_indexes.php:256 tbl_structure.php:589 tbl_structure.php:600 +#: tbl_indexes.php:256 tbl_structure.php:587 tbl_structure.php:598 msgid "Column count has to be larger than zero." msgstr "Kolonneantal skal være større end nul." @@ -7953,39 +8002,39 @@ msgstr "Check reference-integriteten" msgid "Show tables" msgstr "Vis tabeller" -#: tbl_printview.php:310 tbl_structure.php:656 +#: tbl_printview.php:310 tbl_structure.php:654 msgid "Space usage" msgstr "Pladsforbrug" -#: tbl_printview.php:314 tbl_structure.php:660 +#: tbl_printview.php:314 tbl_structure.php:658 msgid "Usage" msgstr "Benyttelse" -#: tbl_printview.php:341 tbl_structure.php:687 +#: tbl_printview.php:341 tbl_structure.php:685 msgid "Effective" msgstr "Effektiv" -#: tbl_printview.php:366 tbl_structure.php:725 +#: tbl_printview.php:366 tbl_structure.php:723 msgid "Row Statistics" msgstr "Række-statistik" -#: tbl_printview.php:369 tbl_structure.php:728 +#: tbl_printview.php:369 tbl_structure.php:726 msgid "Statements" msgstr "Erklæringer" -#: tbl_printview.php:380 tbl_structure.php:740 +#: tbl_printview.php:380 tbl_structure.php:738 msgid "static" msgstr "" -#: tbl_printview.php:382 tbl_structure.php:742 +#: tbl_printview.php:382 tbl_structure.php:740 msgid "dynamic" msgstr "dynamisk" -#: tbl_printview.php:404 tbl_structure.php:785 +#: tbl_printview.php:404 tbl_structure.php:783 msgid "Row length" msgstr "Rækkelængde" -#: tbl_printview.php:414 tbl_structure.php:793 +#: tbl_printview.php:414 tbl_structure.php:791 msgid " Row size " msgstr " Rækkestørrelse " @@ -8057,50 +8106,50 @@ msgstr "Ingen" msgid "Column %s has been dropped" msgstr "Tabel %s er slettet" -#: tbl_structure.php:385 +#: tbl_structure.php:384 #, php-format msgid "A primary key has been added on %s" msgstr "En primær nøgle er blevet tilføjet til %s" -#: tbl_structure.php:400 tbl_structure.php:414 tbl_structure.php:428 +#: tbl_structure.php:398 tbl_structure.php:412 tbl_structure.php:426 #, php-format msgid "An index has been added on %s" msgstr "Der er tilføjet et indeks til %s" -#: tbl_structure.php:506 tbl_structure.php:508 +#: tbl_structure.php:504 tbl_structure.php:506 msgid "Relation view" msgstr "Se Relationer" -#: tbl_structure.php:515 tbl_structure.php:517 +#: tbl_structure.php:513 tbl_structure.php:515 msgid "Propose table structure" msgstr "Foreslå tabelstruktur" -#: tbl_structure.php:540 +#: tbl_structure.php:538 #, fuzzy #| msgid "Add %s field(s)" msgid "Add column" msgstr "Tilføj %s felt(er)" -#: tbl_structure.php:554 +#: tbl_structure.php:552 msgid "At End of Table" msgstr "I slutningen af tabel" -#: tbl_structure.php:555 +#: tbl_structure.php:553 msgid "At Beginning of Table" msgstr "I begyndelsen af tabel" -#: tbl_structure.php:556 +#: tbl_structure.php:554 #, php-format msgid "After %s" msgstr "Efter %s" -#: tbl_structure.php:594 +#: tbl_structure.php:592 #, fuzzy, php-format #| msgid "Create an index on %s columns" msgid "Create an index on  %s columns" msgstr "Dan et indeks på %s kolonner" -#: tbl_structure.php:756 +#: tbl_structure.php:754 msgid "partitioned" msgstr "" @@ -8520,9 +8569,6 @@ msgstr "" #~ msgid "Process list" #~ msgstr "Procesliste" -#~ msgid "Reload privileges" -#~ msgstr "Genindlæs privilegier" - #~ msgid "" #~ "The users will still have the USAGE privilege until the privileges are " #~ "reloaded." diff --git a/po/de.po b/po/de.po index c783712f4..bdd9c09e2 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-13 09:03-0400\n" +"POT-Creation-Date: 2010-06-22 00:55+0530\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:1514 +#: libraries/display_tbl.lib.php:417 server_privileges.php:1534 msgid "Show all" msgstr "Alles anzeigen" -#: browse_foreigners.php:82 libraries/common.lib.php:2313 +#: browse_foreigners.php:82 libraries/common.lib.php:2317 #: 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,18 +38,18 @@ 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:2831 -#: libraries/common.lib.php:2838 libraries/db_links.inc.php:75 +#: db_structure.php:106 libraries/common.lib.php:2835 +#: libraries/common.lib.php:2842 libraries/db_links.inc.php:75 #: libraries/tbl_links.inc.php:63 msgid "Search" msgstr "Suche" -#: browse_foreigners.php:153 db_operations.php:385 db_operations.php:429 -#: db_operations.php:499 db_operations.php:609 db_search.php:362 -#: db_structure.php:567 js/messages.php:48 libraries/Config.class.php:1046 +#: browse_foreigners.php:153 db_operations.php:394 db_operations.php:438 +#: db_operations.php:508 db_operations.php:618 db_search.php:362 +#: db_structure.php:565 js/messages.php:53 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:1335 libraries/common.lib.php:2288 +#: libraries/common.lib.php:1335 libraries/common.lib.php:2292 #: 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,15 +60,15 @@ 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:664 server_privileges.php:1624 -#: server_privileges.php:1971 server_privileges.php:2018 -#: server_privileges.php:2057 server_replication.php:235 +#: server_privileges.php:665 server_privileges.php:1644 +#: server_privileges.php:1991 server_privileges.php:2038 +#: server_privileges.php:2078 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 #: tbl_operations.php:302 tbl_operations.php:499 tbl_operations.php:561 -#: tbl_operations.php:681 tbl_select.php:327 tbl_structure.php:562 -#: tbl_structure.php:597 tbl_tracking.php:395 tbl_tracking.php:512 +#: tbl_operations.php:681 tbl_select.php:327 tbl_structure.php:560 +#: tbl_structure.php:595 tbl_tracking.php:395 tbl_tracking.php:512 #: view_create.php:182 view_operations.php:101 msgid "Go" msgstr "OK" @@ -94,7 +94,7 @@ msgstr "Diesen Wert verwenden" msgid "Database %1$s has been created." msgstr "Die Datenbank %1$s wurde erzeugt." -#: db_datadict.php:49 db_operations.php:378 +#: db_datadict.php:49 db_operations.php:387 msgid "Database comment: " msgstr "Datenbankkommentar: " @@ -121,10 +121,10 @@ 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:2070 +#: pdf_schema.php:1263 pdf_schema.php:1284 server_privileges.php:2091 #: 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 +#: tbl_structure.php:657 tbl_tracking.php:274 tbl_tracking.php:321 msgid "Type" msgstr "Typ" @@ -137,7 +137,7 @@ msgstr "Typ" msgid "Null" msgstr "Null" -#: db_datadict.php:178 db_structure.php:501 libraries/export/htmlword.php:247 +#: db_datadict.php:178 db_structure.php:499 libraries/export/htmlword.php:247 #: libraries/export/latex.php:360 libraries/export/odt.php:303 #: libraries/export/texytext.php:236 libraries/tbl_properties.inc.php:106 #: pdf_schema.php:1266 pdf_schema.php:1287 tbl_printview.php:146 @@ -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: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 +#: pdf_schema.php:1344 server_privileges.php:1588 server_privileges.php:1599 +#: server_privileges.php:1909 server_privileges.php:1914 +#: server_privileges.php:2208 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:1565 -#: server_privileges.php:1579 server_privileges.php:1889 -#: server_privileges.php:1892 server_privileges.php:2187 sql.php:193 +#: server_databases.php:64 server_privileges.php:1585 +#: server_privileges.php:1599 server_privileges.php:1909 +#: server_privileges.php:1912 server_privileges.php:2208 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" @@ -210,119 +210,115 @@ msgstr "Alle auswählen" msgid "Unselect All" msgstr "Auswahl entfernen" -#: db_operations.php:38 tbl_create.php:54 +#: db_operations.php:43 tbl_create.php:54 msgid "The database name is empty!" msgstr "Der Datenbankname ist leer!" -#: db_operations.php:236 +#: db_operations.php:241 #, php-format msgid "Database %s has been renamed to %s" msgstr "Datenbank %s wurde umbenannt zu %s" -#: db_operations.php:240 +#: db_operations.php:245 #, php-format msgid "Database %s has been copied to %s" msgstr "Datenbank %s wurde nach %s kopiert" -#: db_operations.php:412 +#: db_operations.php:421 msgid "Rename database to" msgstr "Datenbank umbenennen in" -#: db_operations.php:417 server_processlist.php:57 +#: db_operations.php:426 server_processlist.php:57 msgid "Command" msgstr "Befehl" -#: db_operations.php:429 tbl_change.php:1143 -msgid "and then" -msgstr "und dann" - -#: db_operations.php:455 +#: db_operations.php:464 msgid "Copy database to" msgstr "Datenbank kopieren nach" -#: db_operations.php:462 tbl_operations.php:528 tbl_tracking.php:388 +#: db_operations.php:471 tbl_operations.php:528 tbl_tracking.php:388 msgid "Structure only" msgstr "Nur Struktur" -#: db_operations.php:463 tbl_operations.php:529 tbl_tracking.php:390 +#: db_operations.php:472 tbl_operations.php:529 tbl_tracking.php:390 msgid "Structure and data" msgstr "Struktur und Daten" -#: db_operations.php:464 tbl_operations.php:530 tbl_tracking.php:389 +#: db_operations.php:473 tbl_operations.php:530 tbl_tracking.php:389 msgid "Data only" msgstr "Nur Daten" -#: db_operations.php:472 +#: db_operations.php:481 msgid "CREATE DATABASE before copying" msgstr "Vor dem Kopieren CREATE DATABASE ausführen." -#: db_operations.php:475 libraries/export/sql.php:52 +#: db_operations.php:484 libraries/export/sql.php:52 #: libraries/export/sql.php:74 libraries/export/sql.php:76 #: libraries/export/sql.php:82 tbl_operations.php:536 #, php-format msgid "Add %s" msgstr "Füge %s hinzu" -#: db_operations.php:479 libraries/export/sql.php:78 tbl_operations.php:299 +#: db_operations.php:488 libraries/export/sql.php:78 tbl_operations.php:299 #: tbl_operations.php:538 msgid "Add AUTO_INCREMENT value" msgstr "AUTO_INCREMENT-Wert hinzufügen" -#: db_operations.php:483 tbl_operations.php:545 +#: db_operations.php:492 tbl_operations.php:545 msgid "Add constraints" msgstr "Constraints hinzufügen" -#: db_operations.php:496 +#: db_operations.php:505 msgid "Switch to copied database" msgstr "Zu kopierter Datenbank wechseln" -#: db_operations.php:537 +#: db_operations.php:546 msgid "BLOB Repository" msgstr "BLOB-Repository" -#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1352 -#: libraries/server_links.inc.php:49 server_processlist.php:59 +#: db_operations.php:549 db_tracking.php:76 libraries/common.lib.php:1352 +#: libraries/server_links.inc.php:50 server_processlist.php:59 #: tbl_tracking.php:596 test/theme.php:101 msgid "Status" msgstr "Status" -#: db_operations.php:548 +#: db_operations.php:557 msgctxt "BLOB repository" msgid "Enabled" msgstr "Aktiviert" -#: db_operations.php:552 +#: db_operations.php:561 msgid "Disable" msgstr "Deaktivieren" -#: db_operations.php:562 +#: db_operations.php:571 msgid "Damaged" msgstr "Beschädigt" -#: db_operations.php:566 +#: db_operations.php:575 msgctxt "BLOB repository" msgid "Repair" msgstr "Reparieren" -#: db_operations.php:574 +#: db_operations.php:583 msgctxt "BLOB repository" msgid "Disabled" msgstr "Deaktiviert" -#: db_operations.php:578 +#: db_operations.php:587 msgid "Enable" msgstr "Aktivieren" -#: db_operations.php:602 libraries/Index.class.php:448 +#: db_operations.php:611 libraries/Index.class.php:448 #: libraries/db_structure.lib.php:62 libraries/mysql_charsets.lib.php:107 #: libraries/tbl_properties.inc.php:107 libraries/tbl_properties.inc.php:730 #: server_collations.php:54 server_collations.php:66 server_databases.php:111 #: tbl_operations.php:363 tbl_select.php:137 tbl_structure.php:179 -#: tbl_structure.php:767 tbl_tracking.php:275 tbl_tracking.php:326 +#: tbl_structure.php:765 tbl_tracking.php:275 tbl_tracking.php:326 msgid "Collation" msgstr "Kollation" -#: db_operations.php:615 main.php:316 pdf_schema.php:34 +#: db_operations.php:624 main.php:316 pdf_schema.php:34 #, php-format msgid "" "The additional features for working with linked tables have been " @@ -331,14 +327,14 @@ msgstr "" "Die zusätzlichen Funktionen für verknüpfte Tabellen wurden automatisch " "deaktiviert. Klicken Sie %shier%s um herauszufinden warum." -#: db_operations.php:648 +#: db_operations.php:657 msgid "Edit PDF Pages" 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:1665 -#: server_privileges.php:1721 server_privileges.php:1985 +#: libraries/header.inc.php:130 pdf_pages.php:424 server_privileges.php:1685 +#: server_privileges.php:1741 server_privileges.php:2005 #: server_synchronize.php:423 server_synchronize.php:866 tbl_tracking.php:592 #: test/theme.php:75 msgid "Table" @@ -347,7 +343,7 @@ msgstr "Tabelle" #: db_printview.php:105 libraries/db_structure.lib.php:56 #: libraries/header_printview.inc.php:63 libraries/import.lib.php:146 #: navigation.php:638 navigation.php:660 server_databases.php:122 -#: tbl_printview.php:394 tbl_structure.php:365 tbl_structure.php:777 +#: tbl_printview.php:394 tbl_structure.php:365 tbl_structure.php:775 msgid "Rows" msgstr "Zeilen" @@ -355,30 +351,30 @@ msgstr "Zeilen" msgid "Size" msgstr "Größe" -#: db_printview.php:162 db_structure.php:457 libraries/export/sql.php:559 +#: db_printview.php:162 db_structure.php:455 libraries/export/sql.php:559 #: libraries/export/sql.php:899 msgid "in use" msgstr "in Benutzung" #: db_printview.php:187 libraries/db_info.inc.php:88 #: libraries/export/sql.php:514 pdf_schema.php:1241 tbl_printview.php:434 -#: tbl_structure.php:809 +#: tbl_structure.php:807 msgid "Creation" msgstr "Erzeugt am" #: db_printview.php:196 libraries/db_info.inc.php:93 #: libraries/export/sql.php:519 pdf_schema.php:1246 tbl_printview.php:444 -#: tbl_structure.php:817 +#: tbl_structure.php:815 msgid "Last update" msgstr "Aktualisiert am" #: db_printview.php:205 libraries/db_info.inc.php:98 #: libraries/export/sql.php:524 pdf_schema.php:1251 tbl_printview.php:454 -#: tbl_structure.php:825 +#: tbl_structure.php:823 msgid "Last check" msgstr "Letzter Check am" -#: db_printview.php:222 db_structure.php:480 +#: db_printview.php:222 db_structure.php:478 #, php-format msgid "%s table" msgid_plural "%s tables" @@ -438,7 +434,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:297 tbl_change.php:1031 tbl_indexes.php:250 +#: server_privileges.php:298 tbl_change.php:1031 tbl_indexes.php:250 #: tbl_select.php:288 msgid "Or" msgstr "oder" @@ -509,9 +505,9 @@ 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:2833 +#: db_structure.php:105 libraries/common.lib.php:2837 #: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50 -#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:467 +#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:465 msgid "Browse" msgstr "Anzeigen" @@ -556,36 +552,36 @@ 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:2832 libraries/sql_query_form.lib.php:334 +#: libraries/common.lib.php:2836 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:2829 libraries/common.lib.php:2836 +#: libraries/common.lib.php:2833 libraries/common.lib.php:2840 #: 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:1106 #: libraries/tbl_links.inc.php:56 pmd_general.php:134 -#: server_privileges.php:593 server_replication.php:315 tbl_tracking.php:269 +#: server_privileges.php:594 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:1656 +#: db_structure.php:543 db_structure.php:544 db_tracking.php:91 +#: libraries/Index.class.php:483 libraries/common.lib.php:1657 #: 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 -#: tbl_structure.php:152 tbl_structure.php:471 +#: tbl_structure.php:152 tbl_structure.php:469 msgid "Drop" 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:1655 +#: db_structure.php:541 db_structure.php:542 libraries/common.lib.php:1656 #: libraries/mult_submits.inc.php:39 libraries/tbl_links.inc.php:105 msgid "Empty" msgstr "Leeren" @@ -595,25 +591,25 @@ msgstr "Leeren" msgid "Table %s has been emptied" msgstr "Die Tabelle %s wurde geleert." -#: db_structure.php:326 libraries/tbl_links.inc.php:133 +#: db_structure.php:325 libraries/tbl_links.inc.php:133 #, php-format msgid "View %s has been dropped" msgstr "Die Ansicht %s wurde gelöscht" -#: db_structure.php:326 libraries/tbl_links.inc.php:133 +#: db_structure.php:325 libraries/tbl_links.inc.php:133 #, php-format msgid "Table %s has been dropped" msgstr "Die Tabelle %s wurde gelöscht." -#: db_structure.php:333 +#: db_structure.php:332 msgid "Tracking is active." msgstr "Tracking ist aktiviert." -#: db_structure.php:335 +#: db_structure.php:334 msgid "Tracking is not active." msgstr "Tracking ist nicht aktiviert." -#: db_structure.php:420 libraries/display_tbl.lib.php:1944 +#: db_structure.php:418 libraries/display_tbl.lib.php:1944 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation%" @@ -622,86 +618,86 @@ msgstr "" "Dieser View hat mindestens diese Anzahl von Zeilen. Bitte lesen Sie die %" "sDokumentation%s." -#: db_structure.php:434 db_structure.php:448 libraries/header.inc.php:126 +#: db_structure.php:432 db_structure.php:446 libraries/header.inc.php:130 #: libraries/tbl_info.inc.php:66 tbl_structure.php:185 test/theme.php:74 msgid "View" msgstr "Ansicht" -#: db_structure.php:485 libraries/db_structure.lib.php:49 -#: libraries/server_links.inc.php:70 server_replication.php:33 +#: db_structure.php:483 libraries/db_structure.lib.php:49 +#: libraries/server_links.inc.php:71 server_replication.php:33 #: server_replication.php:164 server_status.php:369 msgid "Replication" msgstr "Replikation" -#: db_structure.php:489 +#: db_structure.php:487 msgid "Sum" msgstr "Gesamt" -#: db_structure.php:496 libraries/StorageEngine.class.php:356 +#: db_structure.php:494 libraries/StorageEngine.class.php:356 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "Neue Tabellen werden standardmäßig im Format %s angelegt." -#: db_structure.php:524 db_structure.php:541 db_structure.php:542 +#: db_structure.php:522 db_structure.php:539 db_structure.php:540 #: 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:1596 tbl_structure.php:455 -#: tbl_structure.php:464 +#: server_databases.php:351 server_privileges.php:1616 tbl_structure.php:453 +#: tbl_structure.php:462 msgid "With selected:" msgstr "markierte:" -#: db_structure.php:527 libraries/display_tbl.lib.php:2076 -#: server_databases.php:348 server_privileges.php:569 -#: server_privileges.php:1599 tbl_structure.php:458 +#: db_structure.php:525 libraries/display_tbl.lib.php:2076 +#: server_databases.php:348 server_privileges.php:570 +#: server_privileges.php:1619 tbl_structure.php:456 msgid "Check All" msgstr "Alle auswählen" -#: db_structure.php:531 libraries/display_tbl.lib.php:2077 +#: db_structure.php:529 libraries/display_tbl.lib.php:2077 #: libraries/replication_gui.lib.php:33 server_databases.php:350 -#: server_privileges.php:572 server_privileges.php:1603 tbl_structure.php:462 +#: server_privileges.php:573 server_privileges.php:1623 tbl_structure.php:460 msgid "Uncheck All" msgstr "Auswahl entfernen" -#: db_structure.php:536 +#: db_structure.php:534 msgid "Check tables having overhead" msgstr "Tabellen m. Überhang ausw." -#: db_structure.php:547 db_structure.php:548 db_structure.php:599 +#: db_structure.php:545 db_structure.php:546 db_structure.php:597 #: libraries/display_tbl.lib.php:2180 libraries/mult_submits.inc.php:28 -#: tbl_structure.php:492 tbl_structure.php:494 +#: tbl_structure.php:490 tbl_structure.php:492 msgid "Print view" msgstr "Druckansicht" -#: db_structure.php:549 db_structure.php:550 libraries/mult_submits.inc.php:42 +#: db_structure.php:547 db_structure.php:548 libraries/mult_submits.inc.php:42 #: tbl_operations.php:581 msgid "Check table" msgstr "Überprüfe Tabelle" -#: db_structure.php:551 db_structure.php:552 libraries/mult_submits.inc.php:47 -#: tbl_operations.php:621 tbl_structure.php:709 tbl_structure.php:711 +#: db_structure.php:549 db_structure.php:550 libraries/mult_submits.inc.php:47 +#: tbl_operations.php:621 tbl_structure.php:707 tbl_structure.php:709 msgid "Optimize table" msgstr "Optimiere Tabelle" -#: db_structure.php:553 db_structure.php:554 libraries/mult_submits.inc.php:52 +#: db_structure.php:551 db_structure.php:552 libraries/mult_submits.inc.php:52 #: tbl_operations.php:611 msgid "Repair table" msgstr "Repariere Tabelle" -#: db_structure.php:555 db_structure.php:556 libraries/mult_submits.inc.php:57 +#: db_structure.php:553 db_structure.php:554 libraries/mult_submits.inc.php:57 #: tbl_operations.php:601 msgid "Analyze table" msgstr "Analysiere Tabelle" -#: db_structure.php:557 db_structure.php:558 libraries/db_links.inc.php:71 +#: db_structure.php:555 db_structure.php:556 libraries/db_links.inc.php:71 #: 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:1380 +#: libraries/server_links.inc.php:85 libraries/tbl_links.inc.php:82 +#: pmd_pdf.php:84 pmd_pdf.php:109 server_privileges.php:1397 #: setup/frames/menu.inc.php:22 tbl_row_action.php:59 msgid "Export" msgstr "Exportieren" -#: db_structure.php:606 libraries/display_pdf_schema.lib.php:44 +#: db_structure.php:604 libraries/display_pdf_schema.lib.php:44 msgid "Data Dictionary" msgstr "Strukturverzeichnis" @@ -712,10 +708,10 @@ msgstr "Verfolgte Tabellen" #: db_tracking.php:71 libraries/export/htmlword.php:86 #: libraries/export/latex.php:148 libraries/export/odt.php:113 #: libraries/export/sql.php:342 libraries/export/texytext.php:84 -#: libraries/export/xml.php:255 libraries/header.inc.php:106 +#: libraries/export/xml.php:255 libraries/header.inc.php:110 #: libraries/header_printview.inc.php:58 server_databases.php:169 -#: server_privileges.php:1660 server_privileges.php:1721 -#: server_privileges.php:1979 server_processlist.php:56 +#: server_privileges.php:1680 server_privileges.php:1741 +#: server_privileges.php:1999 server_processlist.php:56 #: server_synchronize.php:1179 server_synchronize.php:1183 #: tbl_tracking.php:591 test/theme.php:65 msgid "Database" @@ -735,8 +731,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:1542 server_privileges.php:1725 -#: server_privileges.php:2073 tbl_structure.php:187 +#: server_privileges.php:1562 server_privileges.php:1745 +#: server_privileges.php:2094 tbl_structure.php:187 msgid "Action" msgstr "Aktion" @@ -770,8 +766,8 @@ msgstr "Struktur Schnapschuss" msgid "Untracked tables" msgstr "Nicht verfolgte Tabellen" -#: db_tracking.php:172 db_tracking.php:174 tbl_structure.php:528 -#: tbl_structure.php:530 +#: db_tracking.php:172 db_tracking.php:174 tbl_structure.php:526 +#: tbl_structure.php:528 msgid "Track table" msgstr "Verfolge Tabelle" @@ -941,316 +937,365 @@ msgstr "Es wurde kein Host angegeben!" msgid "The user name is empty!" msgstr "Kein Benutzername eingegeben!" -#: js/messages.php:44 server_privileges.php:1236 user_password.php:70 +#: js/messages.php:44 server_privileges.php:1241 user_password.php:70 msgid "The password is empty!" msgstr "Es wurde kein Passwort angegeben!" -#: js/messages.php:45 server_privileges.php:1234 user_password.php:73 +#: js/messages.php:45 server_privileges.php:1239 user_password.php:73 msgid "The passwords aren't the same!" msgstr "Die eingegebenen Passwörter sind nicht identisch!" -#: js/messages.php:49 pmd_general.php:342 pmd_general.php:379 +#: js/messages.php:46 +#, fuzzy +#| msgid "Add a new User" +msgid "Add a New User" +msgstr "Neuen Benutzer hinzufügen" + +#: js/messages.php:47 js/messages.php:54 pmd_general.php:342 +#: pmd_general.php:379 msgid "Cancel" msgstr "Abbrechen" -#: js/messages.php:52 pmd_save_pos.php:54 +#: js/messages.php:48 +#, fuzzy +#| msgid "Create version" +msgid "Create User" +msgstr "Erzeuge Version" + +#: js/messages.php:49 +#, fuzzy +#| msgid "Reloading the privileges" +msgid "Reloading Privileges" +msgstr "Lade die Benutzertabellen neu" + +#: js/messages.php:50 +#, fuzzy +#| msgid "Remove selected users" +msgid "Removing Selected Users" +msgstr "Die ausgewählten Benutzer löschen" + +#: js/messages.php:57 +#, fuzzy +#| msgid "Load" +msgid "Loading" +msgstr "Laden" + +#: js/messages.php:58 +#, fuzzy +#| msgid "Processes" +msgid "Processing Request" +msgstr "Prozesse" + +#: js/messages.php:59 +msgid "Error in Processing Request" +msgstr "" + +#: js/messages.php:60 +msgid "Dropping Column" +msgstr "" + +#: js/messages.php:61 +msgid "Adding Primary Key" +msgstr "" + +#: js/messages.php:64 pmd_save_pos.php:54 msgid "Modifications have been saved" msgstr "Änderungen gespeichert." -#: js/messages.php:53 pmd_relation_upd.php:49 +#: js/messages.php:65 pmd_relation_upd.php:49 msgid "Relation deleted" msgstr "Verknüpfung gelöscht" -#: js/messages.php:54 pmd_relation_new.php:64 +#: js/messages.php:66 pmd_relation_new.php:64 msgid "FOREIGN KEY relation added" msgstr "FOREIGN KEY Relation hinzugefügt" -#: js/messages.php:55 pmd_relation_new.php:86 +#: js/messages.php:67 pmd_relation_new.php:86 msgid "Internal relation added" msgstr "Interne Verknüpfung hinzugefügt" -#: js/messages.php:56 pmd_relation_new.php:63 pmd_relation_new.php:88 +#: js/messages.php:68 pmd_relation_new.php:63 pmd_relation_new.php:88 msgid "Error: Relation not added." msgstr "Fehler: Verknüpfung nicht hinzugefügt." -#: js/messages.php:57 pmd_relation_new.php:31 +#: js/messages.php:69 pmd_relation_new.php:31 msgid "Error: relation already exists." msgstr "Fehler: Verknüpfung existiert bereits." -#: js/messages.php:58 +#: js/messages.php:70 msgid "Error saving coordinates for Designer." msgstr "Fehler beim speichern der Koordinaten für den Designer." -#: js/messages.php:59 libraries/relation.lib.php:107 +#: js/messages.php:71 libraries/relation.lib.php:107 #: libraries/relation.lib.php:119 msgid "General relation features" msgstr "Allgemeine Verknüpfungsfunktionen" -#: js/messages.php:59 libraries/relation.lib.php:101 +#: js/messages.php:71 libraries/relation.lib.php:101 #: libraries/relation.lib.php:108 msgid "Disabled" msgstr "Deaktiviert" -#: js/messages.php:60 +#: js/messages.php:72 msgid "Select referenced key" msgstr "Wählen Sie den referenzierten Schlüssel" -#: js/messages.php:61 +#: js/messages.php:73 msgid "Select Foreign Key" msgstr "Wähle Fremdschlüssel" -#: js/messages.php:62 +#: js/messages.php:74 msgid "Please select the primary key or a unique key" msgstr "Bitte den PRIMARY KEY oder einen UNIQUE KEY wählen" -#: js/messages.php:63 pmd_general.php:77 tbl_relation.php:548 +#: js/messages.php:75 pmd_general.php:77 tbl_relation.php:548 msgid "Choose column to display" msgstr "Anzuzeigende Spalte auswählen" #. l10n: Display text for calendar close link -#: js/messages.php:73 +#: js/messages.php:85 msgid "Done" msgstr "Fertig" #. l10n: Display text for previous month link in calendar -#: js/messages.php:75 +#: js/messages.php:87 msgid "Prev" msgstr "Vorherige" #. l10n: Display text for next month link in calendar -#: js/messages.php:77 libraries/common.lib.php:2353 -#: libraries/common.lib.php:2356 libraries/display_tbl.lib.php:338 +#: js/messages.php:89 libraries/common.lib.php:2357 +#: libraries/common.lib.php:2360 libraries/display_tbl.lib.php:338 #: server_binlog.php:205 server_binlog.php:207 tbl_printview.php:424 -#: tbl_structure.php:801 +#: tbl_structure.php:799 msgid "Next" msgstr "Nächste" #. l10n: Display text for current month link in calendar -#: js/messages.php:79 +#: js/messages.php:91 msgid "Today" msgstr "Heute" -#: js/messages.php:82 +#: js/messages.php:94 msgid "January" msgstr "Januar" -#: js/messages.php:83 +#: js/messages.php:95 msgid "February" msgstr "Februar" -#: js/messages.php:84 +#: js/messages.php:96 msgid "March" msgstr "März" -#: js/messages.php:85 +#: js/messages.php:97 msgid "April" msgstr "April" -#: js/messages.php:86 +#: js/messages.php:98 msgid "May" msgstr "Mai" -#: js/messages.php:87 +#: js/messages.php:99 msgid "June" msgstr "Juni" -#: js/messages.php:88 +#: js/messages.php:100 msgid "July" msgstr "Juli" -#: js/messages.php:89 +#: js/messages.php:101 msgid "August" msgstr "August" -#: js/messages.php:90 +#: js/messages.php:102 msgid "September" msgstr "September" -#: js/messages.php:91 +#: js/messages.php:103 msgid "October" msgstr "Oktober" -#: js/messages.php:92 +#: js/messages.php:104 msgid "November" msgstr "November" -#: js/messages.php:93 +#: js/messages.php:105 msgid "December" msgstr "Dezember" #. l10n: Short month name -#: js/messages.php:97 libraries/common.lib.php:1557 +#: js/messages.php:109 libraries/common.lib.php:1557 msgid "Jan" msgstr "Januar" #. l10n: Short month name -#: js/messages.php:99 libraries/common.lib.php:1559 +#: js/messages.php:111 libraries/common.lib.php:1559 msgid "Feb" msgstr "Februar" #. l10n: Short month name -#: js/messages.php:101 libraries/common.lib.php:1561 +#: js/messages.php:113 libraries/common.lib.php:1561 msgid "Mar" msgstr "März" #. l10n: Short month name -#: js/messages.php:103 libraries/common.lib.php:1563 +#: js/messages.php:115 libraries/common.lib.php:1563 msgid "Apr" msgstr "April" #. l10n: Short month name -#: js/messages.php:105 libraries/common.lib.php:1565 +#: js/messages.php:117 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:1567 +#: js/messages.php:119 libraries/common.lib.php:1567 msgid "Jun" msgstr "Juni" #. l10n: Short month name -#: js/messages.php:109 libraries/common.lib.php:1569 +#: js/messages.php:121 libraries/common.lib.php:1569 msgid "Jul" msgstr "Juli" #. l10n: Short month name -#: js/messages.php:111 libraries/common.lib.php:1571 +#: js/messages.php:123 libraries/common.lib.php:1571 msgid "Aug" msgstr "August" #. l10n: Short month name -#: js/messages.php:113 libraries/common.lib.php:1573 +#: js/messages.php:125 libraries/common.lib.php:1573 msgid "Sep" msgstr "September" #. l10n: Short month name -#: js/messages.php:115 libraries/common.lib.php:1575 +#: js/messages.php:127 libraries/common.lib.php:1575 msgid "Oct" msgstr "Oktober" #. l10n: Short month name -#: js/messages.php:117 libraries/common.lib.php:1577 +#: js/messages.php:129 libraries/common.lib.php:1577 msgid "Nov" msgstr "November" #. l10n: Short month name -#: js/messages.php:119 libraries/common.lib.php:1579 +#: js/messages.php:131 libraries/common.lib.php:1579 msgid "Dec" msgstr "Dezember" -#: js/messages.php:122 +#: js/messages.php:134 msgid "Sunday" msgstr "Sonntag" -#: js/messages.php:123 +#: js/messages.php:135 msgid "Monday" msgstr "Montag" -#: js/messages.php:124 +#: js/messages.php:136 msgid "Tuesday" msgstr "Dienstag" -#: js/messages.php:125 +#: js/messages.php:137 msgid "Wednesday" msgstr "Mittwoch" -#: js/messages.php:126 +#: js/messages.php:138 msgid "Thursday" msgstr "Donnerstag" -#: js/messages.php:127 +#: js/messages.php:139 msgid "Friday" msgstr "Freitag" -#: js/messages.php:128 +#: js/messages.php:140 msgid "Saturday" msgstr "Samstag" #. l10n: Short week day name -#: js/messages.php:132 libraries/common.lib.php:1582 +#: js/messages.php:144 libraries/common.lib.php:1582 msgid "Sun" msgstr "So" #. l10n: Short week day name -#: js/messages.php:134 libraries/common.lib.php:1584 +#: js/messages.php:146 libraries/common.lib.php:1584 msgid "Mon" msgstr "Mo" #. l10n: Short week day name -#: js/messages.php:136 libraries/common.lib.php:1586 +#: js/messages.php:148 libraries/common.lib.php:1586 msgid "Tue" msgstr "Di" #. l10n: Short week day name -#: js/messages.php:138 libraries/common.lib.php:1588 +#: js/messages.php:150 libraries/common.lib.php:1588 msgid "Wed" msgstr "Mi" #. l10n: Short week day name -#: js/messages.php:140 libraries/common.lib.php:1590 +#: js/messages.php:152 libraries/common.lib.php:1590 msgid "Thu" msgstr "Do" #. l10n: Short week day name -#: js/messages.php:142 libraries/common.lib.php:1592 +#: js/messages.php:154 libraries/common.lib.php:1592 msgid "Fri" msgstr "Fr" #. l10n: Short week day name -#: js/messages.php:144 libraries/common.lib.php:1594 +#: js/messages.php:156 libraries/common.lib.php:1594 msgid "Sat" msgstr "Sa" #. l10n: Minimal week day name -#: js/messages.php:148 +#: js/messages.php:160 msgid "Su" msgstr "So" #. l10n: Minimal week day name -#: js/messages.php:150 +#: js/messages.php:162 msgid "Mo" msgstr "Mo" #. l10n: Minimal week day name -#: js/messages.php:152 +#: js/messages.php:164 msgid "Tu" msgstr "Di" #. l10n: Minimal week day name -#: js/messages.php:154 +#: js/messages.php:166 msgid "We" msgstr "Mi" #. l10n: Minimal week day name -#: js/messages.php:156 +#: js/messages.php:168 msgid "Th" msgstr "Do" #. l10n: Minimal week day name -#: js/messages.php:158 +#: js/messages.php:170 msgid "Fr" msgstr "Fr" #. l10n: Minimal week day name -#: js/messages.php:160 +#: js/messages.php:172 msgid "Sa" msgstr "Sa" #. l10n: Column header for week of the year in calendar -#: js/messages.php:162 +#: js/messages.php:174 msgid "Wk" msgstr "Wo" -#: js/messages.php:164 +#: js/messages.php:176 msgid "Hour" msgstr "Stunde" -#: js/messages.php:165 +#: js/messages.php:177 msgid "Minute" msgstr "Minute" -#: js/messages.php:166 +#: js/messages.php:178 msgid "Second" msgstr "Sekunde" @@ -1309,7 +1354,7 @@ msgstr "Indizes" #: libraries/Index.class.php:444 libraries/mult_submits.inc.php:103 #: libraries/tbl_properties.inc.php:519 tbl_structure.php:33 -#: tbl_structure.php:155 tbl_structure.php:159 tbl_structure.php:474 +#: tbl_structure.php:155 tbl_structure.php:159 tbl_structure.php:472 #: tbl_tracking.php:322 msgid "Unique" msgstr "Unique" @@ -1352,8 +1397,8 @@ msgstr "" "Die Indizes %1$s und %2$s scheinen gleich zu sein und einer könnte " "möglicherweise entfernt werden." -#: libraries/List_Database.class.php:431 libraries/server_links.inc.php:41 -#: server_databases.php:88 server_privileges.php:1660 +#: libraries/List_Database.class.php:431 libraries/server_links.inc.php:42 +#: server_databases.php:88 server_privileges.php:1680 #: setup/lib/messages.inc.php:110 test/theme.php:93 msgid "Databases" msgstr "Datenbanken" @@ -1528,7 +1573,7 @@ msgstr "Passwort:" msgid "Server Choice" msgstr "Server Auswählen" -#: libraries/auth/cookie.auth.lib.php:320 libraries/header.inc.php:59 +#: libraries/auth/cookie.auth.lib.php:320 libraries/header.inc.php:63 msgid "Cookies must be enabled past this point." msgstr "Ab diesem Punkt müssen Cookies aktiviert sein." @@ -1614,7 +1659,7 @@ msgstr "" "werden, obwohl die benötigten php-Erweiterungen angeblich geladen wurden. " "Bitte überprüfen Sie Ihre PHP-Konfiguration." -#: libraries/common.inc.php:583 +#: libraries/common.inc.php:587 msgid "" "phpMyAdmin was unable to read your configuration file!
This might " "happen if PHP finds a parse error in it or PHP cannot find the file.
Wenn " "Sie eine leere Seite erhalten, ist Ihre Konfigurationsdatei in Ordnung." -#: libraries/common.inc.php:594 +#: libraries/common.inc.php:598 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "Fehler beim Laden der Standard-Konfiguration von: %1$s" -#: libraries/common.inc.php:599 +#: libraries/common.inc.php:603 msgid "" "The $cfg['PmaAbsoluteUri'] directive MUST be set in your " "configuration file!" @@ -1643,29 +1688,29 @@ msgstr "" "Das $cfg['PmaAbsoluteUri']-Verzeichnis MUSS in Ihrer " "Konfigurationsdatei angegeben werden!" -#: libraries/common.inc.php:629 +#: libraries/common.inc.php:633 #, php-format msgid "Invalid server index: %s" msgstr "Ungültige Server-Nummer: %s" -#: libraries/common.inc.php:636 +#: libraries/common.inc.php:640 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" "Ungültiger Host-Name für Server %1$s. Bitte überprüfen Sie Ihre " "Konfiguration." -#: libraries/common.inc.php:645 libraries/header.inc.php:96 +#: libraries/common.inc.php:649 libraries/header.inc.php:100 #: libraries/select_server.lib.php:41 libraries/select_server.lib.php:47 #: main.php:185 test/theme.php:57 msgid "Server" msgstr "Server" -#: libraries/common.inc.php:823 +#: libraries/common.inc.php:827 msgid "Invalid authentication method set in configuration:" msgstr "Ungültige Authentifikationsmethode:" -#: libraries/common.inc.php:926 +#: libraries/common.inc.php:930 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Sie sollten auf %s %s oder neuer umsteigen." @@ -1796,47 +1841,47 @@ msgstr "," msgid "%B %d, %Y at %I:%M %p" msgstr "%d. %B %Y um %H:%M" -#: libraries/common.lib.php:1907 +#: libraries/common.lib.php:1911 #, 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:2322 libraries/common.lib.php:2325 +#: libraries/common.lib.php:2326 libraries/common.lib.php:2329 #: libraries/display_tbl.lib.php:290 server_status.php:719 msgid "Begin" msgstr "Anfang" -#: libraries/common.lib.php:2323 libraries/common.lib.php:2326 +#: libraries/common.lib.php:2327 libraries/common.lib.php:2330 #: libraries/display_tbl.lib.php:291 server_binlog.php:168 #: server_binlog.php:170 msgid "Previous" msgstr "Vorherige" -#: libraries/common.lib.php:2354 libraries/common.lib.php:2357 +#: libraries/common.lib.php:2358 libraries/common.lib.php:2361 #: libraries/display_tbl.lib.php:353 msgid "End" msgstr "Ende" -#: libraries/common.lib.php:2430 +#: libraries/common.lib.php:2434 #, php-format msgid "Jump to database "%s"." msgstr "Zur Datenbank "%s" springen." -#: libraries/common.lib.php:2450 +#: libraries/common.lib.php:2454 #, 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:2830 libraries/common.lib.php:2837 +#: libraries/common.lib.php:2834 libraries/common.lib.php:2841 #: libraries/db_links.inc.php:68 libraries/export/sql.php:25 -#: libraries/import/sql.php:18 libraries/server_links.inc.php:45 +#: libraries/import/sql.php:18 libraries/server_links.inc.php:46 #: libraries/tbl_links.inc.php:60 querywindow.php:99 test/theme.php:97 msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2839 libraries/db_links.inc.php:104 +#: libraries/common.lib.php:2843 libraries/db_links.inc.php:104 #: libraries/tbl_links.inc.php:95 libraries/tbl_links.inc.php:117 #: view_operations.php:89 msgid "Operations" @@ -1885,15 +1930,15 @@ msgstr "Abfrageeditor" msgid "Designer" msgstr "Designer" -#: libraries/db_links.inc.php:98 libraries/server_links.inc.php:88 +#: libraries/db_links.inc.php:98 libraries/server_links.inc.php:89 #: libraries/tbl_links.inc.php:91 pmd_pdf.php:84 pmd_pdf.php:110 #: setup/frames/menu.inc.php:21 msgid "Import" msgstr "Importieren" -#: libraries/db_links.inc.php:111 libraries/server_links.inc.php:66 -#: server_privileges.php:111 server_privileges.php:1722 -#: server_privileges.php:2071 test/theme.php:117 +#: libraries/db_links.inc.php:111 libraries/server_links.inc.php:67 +#: server_privileges.php:112 server_privileges.php:1742 +#: server_privileges.php:2092 test/theme.php:117 msgid "Privileges" msgstr "Rechte" @@ -1913,7 +1958,7 @@ msgstr "" "Es kann sich hierbei um Näherungswerte handeln. Bitte lesen Sie auch FAQ 3.11" #: libraries/db_structure.lib.php:69 server_databases.php:142 -#: tbl_printview.php:336 tbl_structure.php:682 +#: tbl_printview.php:336 tbl_structure.php:680 msgid "Overhead" msgstr "Überhang" @@ -1934,7 +1979,7 @@ msgstr "" "(evtl. ist auch der Socket des lokalen MySQL-Servers socket nicht korrekt " "konfiguriert)" -#: libraries/dbi/mysql.dbi.lib.php:362 tbl_structure.php:608 +#: libraries/dbi/mysql.dbi.lib.php:362 tbl_structure.php:606 msgid "Details..." msgstr "Details ..." @@ -1944,22 +1989,22 @@ msgid "Change password" msgstr "Passwort ändern" #: libraries/display_change_password.lib.php:35 -#: libraries/replication_gui.lib.php:345 server_privileges.php:807 +#: libraries/replication_gui.lib.php:345 server_privileges.php:808 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:796 -#: server_privileges.php:800 server_privileges.php:811 -#: server_privileges.php:1538 server_synchronize.php:1175 +#: libraries/replication_gui.lib.php:349 server_privileges.php:797 +#: server_privileges.php:801 server_privileges.php:812 +#: server_privileges.php:1558 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:815 server_privileges.php:818 +#: server_privileges.php:816 server_privileges.php:819 msgid "Re-type" msgstr "Wiederholen" @@ -1972,12 +2017,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:822 +#: libraries/replication_gui.lib.php:360 server_privileges.php:823 msgid "Generate Password" msgstr "Passwort generieren" #: libraries/display_change_password.lib.php:75 -#: libraries/replication_gui.lib.php:363 server_privileges.php:825 +#: libraries/replication_gui.lib.php:363 server_privileges.php:826 msgid "Generate" msgstr "Generieren" @@ -1990,8 +2035,8 @@ msgstr "Neue Datenbank anlegen" msgid "Create" msgstr "Anlegen" -#: libraries/display_create_database.lib.php:40 server_privileges.php:113 -#: server_privileges.php:1427 server_replication.php:35 +#: libraries/display_create_database.lib.php:40 server_privileges.php:114 +#: server_privileges.php:1447 server_replication.php:35 msgid "No Privileges" msgstr "Keine Rechte" @@ -2083,7 +2128,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:1875 server_processlist.php:75 +#: server_privileges.php:1895 server_processlist.php:75 msgid "None" msgstr "keine" @@ -2280,7 +2325,7 @@ msgstr "Nach Schlüssel sortieren" #: libraries/import/docsql.php:34 libraries/import/ldi.php:47 #: libraries/import/ods.php:30 libraries/import/sql.php:20 #: libraries/import/xls.php:26 libraries/import/xlsx.php:26 -#: libraries/import/xml.php:25 tbl_select.php:267 tbl_structure.php:753 +#: libraries/import/xml.php:25 tbl_select.php:267 tbl_structure.php:751 msgid "Options" msgstr "Optionen" @@ -2358,7 +2403,7 @@ msgstr "die Abfrage dauerte %01.4f sek." #: libraries/display_tbl.lib.php:2089 libraries/mult_submits.inc.php:113 #: querywindow.php:125 querywindow.php:129 querywindow.php:132 -#: tbl_structure.php:25 tbl_structure.php:150 tbl_structure.php:470 +#: tbl_structure.php:25 tbl_structure.php:150 tbl_structure.php:468 msgid "Change" msgstr "Ändern" @@ -2428,7 +2473,7 @@ msgstr "Auslastung des Puffer-Pools" #: libraries/engines/innodb.lib.php:194 server_databases.php:137 #: server_databases.php:305 server_status.php:525 server_status.php:586 -#: server_status.php:607 tbl_printview.php:351 tbl_structure.php:696 +#: server_status.php:607 tbl_printview.php:351 tbl_structure.php:694 msgid "Total" msgstr "Insgesamt" @@ -2712,7 +2757,7 @@ msgstr "" "ansonsten werden sie umbenannt und bekommen die nächsthöhere Nummer." #: libraries/export/codegen.php:37 setup/lib/messages.inc.php:88 -#: tbl_printview.php:376 tbl_structure.php:737 +#: tbl_printview.php:376 tbl_structure.php:735 msgid "Format" msgstr "Format" @@ -2784,8 +2829,8 @@ 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:576 server_replication.php:316 tbl_printview.php:317 -#: tbl_structure.php:665 +#: server_privileges.php:577 server_replication.php:316 tbl_printview.php:317 +#: tbl_structure.php:663 msgid "Data" msgstr "Daten" @@ -2834,9 +2879,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:731 -#: server_privileges.php:734 server_privileges.php:790 -#: server_privileges.php:1537 server_privileges.php:2069 +#: libraries/replication_gui.lib.php:329 server_privileges.php:732 +#: server_privileges.php:735 server_privileges.php:791 +#: server_privileges.php:1557 server_privileges.php:2090 #: server_processlist.php:55 server_synchronize.php:1159 msgid "Host" msgstr "Host" @@ -3032,7 +3077,7 @@ msgstr "Export-Inhalte" msgid "Open new phpMyAdmin window" msgstr "Neues phpMyAdmin-Fenster" -#: libraries/header.inc.php:115 +#: libraries/header.inc.php:119 msgid "New table" msgstr "Neue Tabelle" @@ -3193,20 +3238,20 @@ msgstr "Nach Kana konvertieren" #: 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 +#: tbl_structure.php:471 msgid "Primary" msgstr "Primärschlüssel" #: libraries/mult_submits.inc.php:98 libraries/tbl_properties.inc.php:116 #: libraries/tbl_properties.inc.php:525 tbl_printview.php:326 #: tbl_structure.php:31 tbl_structure.php:154 tbl_structure.php:158 -#: tbl_structure.php:475 tbl_structure.php:673 +#: tbl_structure.php:473 tbl_structure.php:671 msgid "Index" msgstr "Index" #: libraries/mult_submits.inc.php:108 libraries/tbl_properties.inc.php:531 #: tbl_structure.php:35 tbl_structure.php:156 tbl_structure.php:160 -#: tbl_structure.php:478 +#: tbl_structure.php:476 msgid "Fulltext" msgstr "Volltext" @@ -3518,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:711 -#: server_privileges.php:714 server_privileges.php:721 +#: libraries/replication_gui.lib.php:259 server_privileges.php:712 +#: server_privileges.php:715 server_privileges.php:722 #: server_synchronize.php:1171 msgid "User name" msgstr "Benutzername" @@ -3543,7 +3588,7 @@ msgstr "Variable" #: 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 +#: tbl_structure.php:727 msgid "Value" msgstr "Wert" @@ -3563,34 +3608,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:716 +#: libraries/replication_gui.lib.php:254 server_privileges.php:717 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:717 -#: server_privileges.php:784 server_privileges.php:808 -#: server_privileges.php:1928 server_privileges.php:1958 +#: libraries/replication_gui.lib.php:346 server_privileges.php:718 +#: server_privileges.php:785 server_privileges.php:809 +#: server_privileges.php:1948 server_privileges.php:1978 msgid "Use text field" msgstr "Textfeld verwenden" -#: libraries/replication_gui.lib.php:302 server_privileges.php:764 +#: libraries/replication_gui.lib.php:302 server_privileges.php:765 msgid "Any host" msgstr "Jeder Host" -#: libraries/replication_gui.lib.php:306 server_privileges.php:768 +#: libraries/replication_gui.lib.php:306 server_privileges.php:769 msgid "Local" msgstr "Lokal" -#: libraries/replication_gui.lib.php:312 server_privileges.php:773 +#: libraries/replication_gui.lib.php:312 server_privileges.php:774 msgid "This Host" msgstr "Dieser Host" -#: libraries/replication_gui.lib.php:318 server_privileges.php:779 +#: libraries/replication_gui.lib.php:318 server_privileges.php:780 msgid "Use Host Table" msgstr "Verwende Hosttabelle" -#: libraries/replication_gui.lib.php:331 server_privileges.php:792 +#: libraries/replication_gui.lib.php:331 server_privileges.php:793 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -3626,29 +3671,29 @@ msgstr "Unbekannte Sprache: \"%1$s\"." msgid "Servers" msgstr "Server" -#: libraries/server_links.inc.php:53 server_engines.php:112 +#: libraries/server_links.inc.php:54 server_engines.php:112 #: server_engines.php:116 server_status.php:415 test/theme.php:105 msgid "Variables" msgstr "Variablen" -#: libraries/server_links.inc.php:57 test/theme.php:109 +#: libraries/server_links.inc.php:58 test/theme.php:109 msgid "Charsets" msgstr "Zeichensätze" -#: libraries/server_links.inc.php:61 test/theme.php:113 +#: libraries/server_links.inc.php:62 test/theme.php:113 msgid "Engines" msgstr "Formate" -#: libraries/server_links.inc.php:76 server_binlog.php:110 +#: libraries/server_links.inc.php:77 server_binlog.php:110 #: server_status.php:364 test/theme.php:121 msgid "Binary log" msgstr "Binäres Protokoll" -#: libraries/server_links.inc.php:80 +#: libraries/server_links.inc.php:81 msgid "Processes" msgstr "Prozesse" -#: libraries/server_links.inc.php:92 server_synchronize.php:1092 +#: libraries/server_links.inc.php:93 server_synchronize.php:1092 #: server_synchronize.php:1100 msgid "Synchronize" msgstr "Gleiche ab" @@ -3900,12 +3945,12 @@ msgstr "PARTITION Definition" msgid "Save" msgstr "Speichern" -#: libraries/tbl_properties.inc.php:780 tbl_structure.php:542 +#: libraries/tbl_properties.inc.php:780 tbl_structure.php:540 #, php-format msgid "Add %s column(s)" msgstr "%s Spalte(n) einfügen" -#: libraries/tbl_properties.inc.php:784 tbl_structure.php:536 +#: libraries/tbl_properties.inc.php:784 tbl_structure.php:534 #, fuzzy #| msgid "You have to add at least one field." msgid "You have to add at least one column." @@ -4130,8 +4175,8 @@ msgstr "Zurücksetzen" msgid "Protocol version" msgstr "Protokoll-Version" -#: main.php:189 server_privileges.php:1389 server_privileges.php:1536 -#: server_privileges.php:1650 server_privileges.php:2068 +#: main.php:189 server_privileges.php:1406 server_privileges.php:1556 +#: server_privileges.php:1670 server_privileges.php:2089 #: server_processlist.php:54 msgid "User" msgstr "Benutzer" @@ -4591,117 +4636,117 @@ msgstr "Tabellenformate" msgid "View dump (schema) of databases" msgstr "Dump (Schema) der Datenbanken anzeigen" -#: server_privileges.php:24 server_privileges.php:266 +#: server_privileges.php:25 server_privileges.php:267 msgid "Includes all privileges except GRANT." msgstr "Enthält alle Rechte bis auf GRANT." -#: server_privileges.php:25 server_privileges.php:192 -#: server_privileges.php:515 +#: server_privileges.php:26 server_privileges.php:193 +#: server_privileges.php:516 msgid "Allows altering the structure of existing tables." msgstr "Erlaubt das Verändern der Struktur bestehender Tabellen." -#: server_privileges.php:26 server_privileges.php:208 -#: server_privileges.php:521 +#: server_privileges.php:27 server_privileges.php:209 +#: server_privileges.php:522 msgid "Allows altering and dropping stored routines." msgstr "Erlaubt das Verändern und Löschen von Routinen." -#: server_privileges.php:27 server_privileges.php:184 -#: server_privileges.php:514 +#: server_privileges.php:28 server_privileges.php:185 +#: server_privileges.php:515 msgid "Allows creating new databases and tables." msgstr "Erlaubt das Erstellen neuer Datenbanken und Tabellen." -#: server_privileges.php:28 server_privileges.php:207 -#: server_privileges.php:520 +#: server_privileges.php:29 server_privileges.php:208 +#: server_privileges.php:521 msgid "Allows creating stored routines." msgstr "Erlaubt das Erstellen von gespeicherten Routinen." -#: server_privileges.php:29 server_privileges.php:514 +#: server_privileges.php:30 server_privileges.php:515 msgid "Allows creating new tables." msgstr "Erlaubt das Erstellen neuer Tabellen." -#: server_privileges.php:30 server_privileges.php:195 -#: server_privileges.php:518 +#: server_privileges.php:31 server_privileges.php:196 +#: server_privileges.php:519 msgid "Allows creating temporary tables." msgstr "Erlaubt das Erstellen temporärer Tabellen." -#: server_privileges.php:31 server_privileges.php:209 -#: server_privileges.php:554 +#: server_privileges.php:32 server_privileges.php:210 +#: server_privileges.php:555 msgid "Allows creating, dropping and renaming user accounts." msgstr "Erlaubt das Erstellen, Löschen und Umbenennen von Benutzern." -#: server_privileges.php:32 server_privileges.php:199 -#: server_privileges.php:203 server_privileges.php:526 -#: server_privileges.php:530 +#: server_privileges.php:33 server_privileges.php:200 +#: server_privileges.php:204 server_privileges.php:527 +#: server_privileges.php:531 msgid "Allows creating new views." msgstr "Erlaubt das Erstellen von Views." -#: server_privileges.php:33 server_privileges.php:183 -#: server_privileges.php:506 +#: server_privileges.php:34 server_privileges.php:184 +#: server_privileges.php:507 msgid "Allows deleting data." msgstr "Erlaubt das Löschen von Daten." -#: server_privileges.php:34 server_privileges.php:185 -#: server_privileges.php:517 +#: server_privileges.php:35 server_privileges.php:186 +#: server_privileges.php:518 msgid "Allows dropping databases and tables." msgstr "Erlaubt das Löschen ganzer Datenbanken und Tabellen." -#: server_privileges.php:35 server_privileges.php:517 +#: server_privileges.php:36 server_privileges.php:518 msgid "Allows dropping tables." msgstr "Erlaubt das Löschen ganzer Tabellen." -#: server_privileges.php:36 server_privileges.php:200 -#: server_privileges.php:534 +#: server_privileges.php:37 server_privileges.php:201 +#: server_privileges.php:535 msgid "Allows to set up events for the event scheduler" msgstr "Erlaubt das Anlegen von Events für den Event-Scheduler" -#: server_privileges.php:37 server_privileges.php:210 -#: server_privileges.php:522 +#: server_privileges.php:38 server_privileges.php:211 +#: server_privileges.php:523 msgid "Allows executing stored routines." msgstr "Erlaubt das Ausführen von Routinen." -#: server_privileges.php:38 server_privileges.php:189 -#: server_privileges.php:509 +#: server_privileges.php:39 server_privileges.php:190 +#: server_privileges.php:510 msgid "Allows importing data from and exporting data into files." msgstr "" "Erlaubt das Importieren von Daten aus und das Exportieren in externe Dateien." -#: server_privileges.php:39 server_privileges.php:540 +#: server_privileges.php:40 server_privileges.php:541 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "Erlaubt das Hinzufügen von Benutzern und Rechten ohne den die " "Benutzerprofile neu laden zu müssen." -#: server_privileges.php:40 server_privileges.php:191 -#: server_privileges.php:516 +#: server_privileges.php:41 server_privileges.php:192 +#: server_privileges.php:517 msgid "Allows creating and dropping indexes." msgstr "Erlaubt das Erstellen und Löschen von Indizes." -#: server_privileges.php:41 server_privileges.php:181 -#: server_privileges.php:442 server_privileges.php:504 +#: server_privileges.php:42 server_privileges.php:182 +#: server_privileges.php:443 server_privileges.php:505 msgid "Allows inserting and replacing data." msgstr "Erlaubt das Hinzufügen und Ersetzen von Daten." -#: server_privileges.php:42 server_privileges.php:196 -#: server_privileges.php:549 +#: server_privileges.php:43 server_privileges.php:197 +#: server_privileges.php:550 msgid "Allows locking tables for the current thread." msgstr "Erlaubt die Sperrung bestimmter Tabellen." -#: server_privileges.php:43 server_privileges.php:646 -#: server_privileges.php:648 +#: server_privileges.php:44 server_privileges.php:647 +#: server_privileges.php:649 msgid "Limits the number of new connections the user may open per hour." msgstr "" "Begrenzt die Anzahl neuer Verbindungen, welche ein Benutzer pro Stunde " "aufbauen darf." -#: server_privileges.php:44 server_privileges.php:634 -#: server_privileges.php:636 +#: server_privileges.php:45 server_privileges.php:635 +#: server_privileges.php:637 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" "Begrenzt die Anzahl der Abfragen, welche ein Benutzer pro Stunde senden darf." -#: server_privileges.php:45 server_privileges.php:640 -#: server_privileges.php:642 +#: server_privileges.php:46 server_privileges.php:641 +#: server_privileges.php:643 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -4709,63 +4754,63 @@ 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 +#: server_privileges.php:47 server_privileges.php:653 +#: server_privileges.php:655 msgid "Limits the number of simultaneous connections the user may have." msgstr "" "Beschränkt die Anzahl der gleichzeitigen Verbindungen für diesen Benutzer." -#: server_privileges.php:47 server_privileges.php:188 -#: server_privileges.php:544 +#: server_privileges.php:48 server_privileges.php:189 +#: server_privileges.php:545 msgid "Allows viewing processes of all users" msgstr "Erlaubt die Anzeige der Prozesse aller Benutzer" -#: server_privileges.php:48 server_privileges.php:190 -#: server_privileges.php:448 server_privileges.php:550 +#: server_privileges.php:49 server_privileges.php:191 +#: server_privileges.php:449 server_privileges.php:551 msgid "Has no effect in this MySQL version." msgstr "Hat keinen Effekt in dieser MySQL-Version." -#: server_privileges.php:49 server_privileges.php:186 -#: server_privileges.php:545 +#: server_privileges.php:50 server_privileges.php:187 +#: server_privileges.php:546 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" "Erlaubt das erneute Laden von Servereinstellungen und das Leeren der " "Zwischenspeicher zur Laufzeit." -#: server_privileges.php:50 server_privileges.php:198 -#: server_privileges.php:552 +#: server_privileges.php:51 server_privileges.php:199 +#: server_privileges.php:553 msgid "Allows the user to ask where the slaves / masters are." msgstr "" "Erlaubt dem Benutzer zu fragen, wo sich die Master- bzw. Slave-Systeme " "befinden" -#: server_privileges.php:51 server_privileges.php:197 -#: server_privileges.php:553 +#: server_privileges.php:52 server_privileges.php:198 +#: server_privileges.php:554 msgid "Needed for the replication slaves." msgstr "Wird für die Replication-Slave-Systeme benötigt." -#: server_privileges.php:52 server_privileges.php:180 -#: server_privileges.php:439 server_privileges.php:503 +#: server_privileges.php:53 server_privileges.php:181 +#: server_privileges.php:440 server_privileges.php:504 msgid "Allows reading data." msgstr "Erlaubt das Auslesen von Daten." -#: server_privileges.php:53 server_privileges.php:193 -#: server_privileges.php:547 +#: server_privileges.php:54 server_privileges.php:194 +#: server_privileges.php:548 msgid "Gives access to the complete list of databases." msgstr "Gewährt Zugang zur vollständigen Datenbankliste." -#: server_privileges.php:54 server_privileges.php:204 -#: server_privileges.php:206 server_privileges.php:519 +#: server_privileges.php:55 server_privileges.php:205 +#: server_privileges.php:207 server_privileges.php:520 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Erlaubt das Ausführen von 'SHOW CREATE VIEW'." -#: server_privileges.php:55 server_privileges.php:187 -#: server_privileges.php:546 +#: server_privileges.php:56 server_privileges.php:188 +#: server_privileges.php:547 msgid "Allows shutting down the server." msgstr "Erlaubt das Beenden des Servers." -#: server_privileges.php:56 server_privileges.php:194 -#: server_privileges.php:543 +#: server_privileges.php:57 server_privileges.php:195 +#: server_privileges.php:544 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -4775,154 +4820,154 @@ msgstr "" "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 +#: server_privileges.php:58 server_privileges.php:202 +#: server_privileges.php:536 msgid "Allows creating and dropping triggers" msgstr "Erlaubt das Erzeugen und Löschen Triggern" -#: server_privileges.php:58 server_privileges.php:182 -#: server_privileges.php:445 server_privileges.php:505 +#: server_privileges.php:59 server_privileges.php:183 +#: server_privileges.php:446 server_privileges.php:506 msgid "Allows changing data." msgstr "Erlaubt das Verändern von gespeicherten Daten." -#: server_privileges.php:59 server_privileges.php:260 +#: server_privileges.php:60 server_privileges.php:261 msgid "No privileges." msgstr "Keine Rechte." -#: server_privileges.php:302 server_privileges.php:303 +#: server_privileges.php:303 server_privileges.php:304 msgctxt "None privileges" msgid "None" msgstr "Kein(e)" -#: server_privileges.php:431 server_privileges.php:566 -#: server_privileges.php:1718 server_privileges.php:1724 +#: server_privileges.php:432 server_privileges.php:567 +#: server_privileges.php:1738 server_privileges.php:1744 msgid "Table-specific privileges" msgstr "Tabellenspezifische Rechte" -#: server_privileges.php:432 server_privileges.php:574 -#: server_privileges.php:1540 +#: server_privileges.php:433 server_privileges.php:575 +#: server_privileges.php:1560 msgid " Note: MySQL privilege names are expressed in English " msgstr "MySQL-Rechte werden auf Englisch angegeben." -#: server_privileges.php:563 server_privileges.php:1539 +#: server_privileges.php:564 server_privileges.php:1559 msgid "Global privileges" msgstr "Globale Rechte" -#: server_privileges.php:565 server_privileges.php:1718 +#: server_privileges.php:566 server_privileges.php:1738 msgid "Database-specific privileges" msgstr "Datenbankspezifische Rechte" -#: server_privileges.php:610 +#: server_privileges.php:611 msgid "Administration" msgstr "Administration" -#: server_privileges.php:630 +#: server_privileges.php:631 msgid "Resource limits" msgstr "Ressourcenbeschränkungen" -#: server_privileges.php:631 +#: server_privileges.php:632 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "Der Wert 0 (null) entfernt die Beschränkung." -#: server_privileges.php:708 +#: server_privileges.php:709 msgid "Login Information" msgstr "Anmelde-Informationen" -#: server_privileges.php:802 +#: server_privileges.php:803 msgid "Do not change the password" msgstr "Passwort nicht verändert" -#: server_privileges.php:843 server_privileges.php:2205 +#: server_privileges.php:844 server_privileges.php:2226 msgid "No user found." msgstr "Es wurde kein Benutzer gefunden." -#: server_privileges.php:887 +#: server_privileges.php:888 #, php-format msgid "The user %s already exists!" msgstr "Der Benutzer %s existiert bereits!" -#: server_privileges.php:970 +#: server_privileges.php:971 msgid "You have added a new user." msgstr "Der Benutzer wurde hinzugefügt." -#: server_privileges.php:1191 +#: server_privileges.php:1196 #, php-format msgid "You have updated the privileges for %s." msgstr "Die Rechte für %s wurden geändert." -#: server_privileges.php:1215 +#: server_privileges.php:1220 #, php-format msgid "You have revoked the privileges for %s" msgstr "Sie haben die Rechte für %s entfernt." -#: server_privileges.php:1251 +#: server_privileges.php:1256 #, php-format msgid "The password for %s was changed successfully." msgstr "Das Passwort für %s wurde geändert." -#: server_privileges.php:1271 +#: server_privileges.php:1276 #, php-format msgid "Deleting %s" msgstr "Lösche %s" -#: server_privileges.php:1282 +#: server_privileges.php:1287 msgid "No users selected for deleting!" msgstr "Es wurden keine Benutzer zum Löschen ausgewählt!" -#: server_privileges.php:1285 +#: server_privileges.php:1290 msgid "Reloading the privileges" msgstr "Lade die Benutzertabellen neu" -#: server_privileges.php:1300 +#: server_privileges.php:1305 msgid "The selected users have been deleted successfully." msgstr "Die gewählten Benutzer wurden gelöscht." -#: server_privileges.php:1335 +#: server_privileges.php:1344 msgid "The privileges were reloaded successfully." msgstr "Die Benutzerprofile wurden neu geladen." -#: server_privileges.php:1363 server_privileges.php:1649 +#: server_privileges.php:1380 server_privileges.php:1669 msgid "Edit Privileges" msgstr "Rechte ändern" -#: server_privileges.php:1372 +#: server_privileges.php:1389 msgid "Revoke" msgstr "Entfernen" -#: server_privileges.php:1404 +#: server_privileges.php:1424 msgid "User overview" msgstr "Benutzerübersicht" -#: server_privileges.php:1541 server_privileges.php:1723 -#: server_privileges.php:2072 +#: server_privileges.php:1561 server_privileges.php:1743 +#: server_privileges.php:2093 msgid "Grant" msgstr "GRANT" -#: server_privileges.php:1560 server_privileges.php:2162 +#: server_privileges.php:1580 server_privileges.php:2183 msgid "Any" msgstr "Jeder" -#: server_privileges.php:1609 server_privileges.php:1633 -#: server_privileges.php:2027 server_privileges.php:2216 +#: server_privileges.php:1629 server_privileges.php:1653 +#: server_privileges.php:2048 server_privileges.php:2237 msgid "Add a new User" msgstr "Neuen Benutzer hinzufügen" -#: server_privileges.php:1614 +#: server_privileges.php:1634 msgid "Remove selected users" msgstr "Die ausgewählten Benutzer löschen" -#: server_privileges.php:1617 +#: server_privileges.php:1637 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:1618 server_privileges.php:1619 -#: server_privileges.php:1620 +#: server_privileges.php:1638 server_privileges.php:1639 +#: server_privileges.php:1640 msgid "Drop the databases that have the same names as the users." msgstr "Die gleichnamigen Datenbanken löschen." -#: server_privileges.php:1636 +#: server_privileges.php:1656 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -4936,93 +4981,93 @@ msgstr "" "vorgenommen wurden. In diesem Fall sollten Sie %sdie Benutzerprofile neu " "laden%s bevor Sie fortfahren." -#: server_privileges.php:1684 +#: server_privileges.php:1704 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:1724 +#: server_privileges.php:1744 msgid "Column-specific privileges" msgstr "Spaltenspezifische Rechte" -#: server_privileges.php:1925 +#: server_privileges.php:1945 msgid "Add privileges on the following database" msgstr "Rechte zu folgender Datenbank hinzufügen" -#: server_privileges.php:1943 +#: server_privileges.php:1963 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:1946 +#: server_privileges.php:1966 msgid "Add privileges on the following table" msgstr "Rechte zu folgender Tabelle hinzufügen" -#: server_privileges.php:2003 +#: server_privileges.php:2023 msgid "Change Login Information / Copy User" msgstr "Anmelde-Information ändern / Benutzer kopieren" -#: server_privileges.php:2006 +#: server_privileges.php:2026 msgid "Create a new user with the same privileges and ..." msgstr "Erstelle einen neuen Benutzer mit identischen Rechten und ..." -#: server_privileges.php:2008 +#: server_privileges.php:2028 msgid "... keep the old one." msgstr "... behalte den alten bei." -#: server_privileges.php:2009 +#: server_privileges.php:2029 msgid " ... delete the old one from the user tables." msgstr " ... lösche den alten von den Benutzertabellen." -#: server_privileges.php:2010 +#: server_privileges.php:2030 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:2011 +#: server_privileges.php:2031 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:2033 +#: server_privileges.php:2054 msgid "Database for user" msgstr "Datenbank für Benutzer" -#: server_privileges.php:2037 +#: server_privileges.php:2058 msgctxt "Create none database for user" msgid "None" msgstr "Kein(e)" -#: server_privileges.php:2038 +#: server_privileges.php:2059 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:2039 +#: server_privileges.php:2060 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "" "Gewähre alle Rechte auf Datenbanken die mit dem Benuterznamen beginnen " "(username\\_%)" -#: server_privileges.php:2042 +#: server_privileges.php:2063 #, php-format msgid "Grant all privileges on database "%s"" msgstr "Gewähre alle Rechte auf die Datenbank "%s"" -#: server_privileges.php:2065 +#: server_privileges.php:2086 #, php-format msgid "Users having access to "%s"" msgstr "Benutzer mit Zugriff auf "%s"" -#: server_privileges.php:2173 +#: server_privileges.php:2194 msgid "global" msgstr "global" -#: server_privileges.php:2175 +#: server_privileges.php:2196 msgid "database-specific" msgstr "datenbankspezifisch" -#: server_privileges.php:2177 +#: server_privileges.php:2198 msgid "wildcard" msgstr "Platzhalter" @@ -8062,6 +8107,10 @@ msgstr "Als neue Zeile einfügen und Fehler ignorieren" msgid "Show insert query" msgstr "Zeige insert Abfrage" +#: tbl_change.php:1143 +msgid "and then" +msgstr "und dann" + #: tbl_change.php:1147 msgid "Go back to previous page" msgstr "zurück" @@ -8142,7 +8191,7 @@ msgstr "Der Name des Primärschlüssels darf nur \"PRIMARY\" lauten." msgid "Add to index  %s column(s)" msgstr "%s Spalten zum Index hinzufügen" -#: tbl_indexes.php:256 tbl_structure.php:589 tbl_structure.php:600 +#: tbl_indexes.php:256 tbl_structure.php:587 tbl_structure.php:598 msgid "Column count has to be larger than zero." msgstr "Die Spaltenanzahl muss größer als 0 sein." @@ -8255,39 +8304,39 @@ msgstr "Prüfe referentielle Integrität:" msgid "Show tables" msgstr "Tabellen anzeigen" -#: tbl_printview.php:310 tbl_structure.php:656 +#: tbl_printview.php:310 tbl_structure.php:654 msgid "Space usage" msgstr "Speicherplatzverbrauch" -#: tbl_printview.php:314 tbl_structure.php:660 +#: tbl_printview.php:314 tbl_structure.php:658 msgid "Usage" msgstr "Verbrauch" -#: tbl_printview.php:341 tbl_structure.php:687 +#: tbl_printview.php:341 tbl_structure.php:685 msgid "Effective" msgstr "Effektiv" -#: tbl_printview.php:366 tbl_structure.php:725 +#: tbl_printview.php:366 tbl_structure.php:723 msgid "Row Statistics" msgstr "Zeilenstatistik" -#: tbl_printview.php:369 tbl_structure.php:728 +#: tbl_printview.php:369 tbl_structure.php:726 msgid "Statements" msgstr "Angaben" -#: tbl_printview.php:380 tbl_structure.php:740 +#: tbl_printview.php:380 tbl_structure.php:738 msgid "static" msgstr "statisch" -#: tbl_printview.php:382 tbl_structure.php:742 +#: tbl_printview.php:382 tbl_structure.php:740 msgid "dynamic" msgstr "dynamisch" -#: tbl_printview.php:404 tbl_structure.php:785 +#: tbl_printview.php:404 tbl_structure.php:783 msgid "Row length" msgstr "Zeilenlänge" -#: tbl_printview.php:414 tbl_structure.php:793 +#: tbl_printview.php:414 tbl_structure.php:791 msgid " Row size " msgstr "Zeilengröße" @@ -8359,49 +8408,49 @@ msgstr "kein(e)" msgid "Column %s has been dropped" msgstr "Die Tabelle %s wurde gelöscht." -#: tbl_structure.php:385 +#: tbl_structure.php:384 #, php-format msgid "A primary key has been added on %s" msgstr "Ein Primärschlüssel wurde in %s erzeugt" -#: tbl_structure.php:400 tbl_structure.php:414 tbl_structure.php:428 +#: tbl_structure.php:398 tbl_structure.php:412 tbl_structure.php:426 #, php-format msgid "An index has been added on %s" msgstr "Ein Index wurde in %s erzeugt" -#: tbl_structure.php:506 tbl_structure.php:508 +#: tbl_structure.php:504 tbl_structure.php:506 msgid "Relation view" msgstr "Beziehungsübersicht" -#: tbl_structure.php:515 tbl_structure.php:517 +#: tbl_structure.php:513 tbl_structure.php:515 msgid "Propose table structure" msgstr "Tabellenstruktur analysieren" -#: tbl_structure.php:540 +#: tbl_structure.php:538 #, fuzzy #| msgid "Add column(s)" msgid "Add column" msgstr "Spalte(n) einfügen" -#: tbl_structure.php:554 +#: tbl_structure.php:552 msgid "At End of Table" msgstr "An das Ende der Tabelle" -#: tbl_structure.php:555 +#: tbl_structure.php:553 msgid "At Beginning of Table" msgstr "An den Anfang der Tabelle" -#: tbl_structure.php:556 +#: tbl_structure.php:554 #, php-format msgid "After %s" msgstr "Nach %s" -#: tbl_structure.php:594 +#: tbl_structure.php:592 #, php-format msgid "Create an index on  %s columns" msgstr "Index über %s Spalten anlegen" -#: tbl_structure.php:756 +#: tbl_structure.php:754 msgid "partitioned" msgstr "partitioniert" diff --git a/po/el.po b/po/el.po index daf1ffffd..ed9fa5c5a 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-13 09:03-0400\n" +"POT-Creation-Date: 2010-06-22 00:55+0530\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:1514 +#: libraries/display_tbl.lib.php:417 server_privileges.php:1534 msgid "Show all" msgstr "Εμφάνιση όλων" -#: browse_foreigners.php:82 libraries/common.lib.php:2313 +#: browse_foreigners.php:82 libraries/common.lib.php:2317 #: 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,18 +38,18 @@ 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:2831 -#: libraries/common.lib.php:2838 libraries/db_links.inc.php:75 +#: db_structure.php:106 libraries/common.lib.php:2835 +#: libraries/common.lib.php:2842 libraries/db_links.inc.php:75 #: libraries/tbl_links.inc.php:63 msgid "Search" msgstr "Αναζήτηση" -#: browse_foreigners.php:153 db_operations.php:385 db_operations.php:429 -#: db_operations.php:499 db_operations.php:609 db_search.php:362 -#: db_structure.php:567 js/messages.php:48 libraries/Config.class.php:1046 +#: browse_foreigners.php:153 db_operations.php:394 db_operations.php:438 +#: db_operations.php:508 db_operations.php:618 db_search.php:362 +#: db_structure.php:565 js/messages.php:53 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:1335 libraries/common.lib.php:2288 +#: libraries/common.lib.php:1335 libraries/common.lib.php:2292 #: 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,15 +60,15 @@ 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:664 server_privileges.php:1624 -#: server_privileges.php:1971 server_privileges.php:2018 -#: server_privileges.php:2057 server_replication.php:235 +#: server_privileges.php:665 server_privileges.php:1644 +#: server_privileges.php:1991 server_privileges.php:2038 +#: server_privileges.php:2078 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 #: tbl_operations.php:302 tbl_operations.php:499 tbl_operations.php:561 -#: tbl_operations.php:681 tbl_select.php:327 tbl_structure.php:562 -#: tbl_structure.php:597 tbl_tracking.php:395 tbl_tracking.php:512 +#: tbl_operations.php:681 tbl_select.php:327 tbl_structure.php:560 +#: tbl_structure.php:595 tbl_tracking.php:395 tbl_tracking.php:512 #: view_create.php:182 view_operations.php:101 msgid "Go" msgstr "Εκτέλεση" @@ -94,7 +94,7 @@ msgstr "Χρήση αυτής της τιμής" msgid "Database %1$s has been created." msgstr "Δημιουργήθηκε η βάση δεδομένων %1$s." -#: db_datadict.php:49 db_operations.php:378 +#: db_datadict.php:49 db_operations.php:387 msgid "Database comment: " msgstr "Σχόλιο βάσης: " @@ -121,10 +121,10 @@ 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:2070 +#: pdf_schema.php:1263 pdf_schema.php:1284 server_privileges.php:2091 #: 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 +#: tbl_structure.php:657 tbl_tracking.php:274 tbl_tracking.php:321 msgid "Type" msgstr "Τύπος" @@ -137,7 +137,7 @@ msgstr "Τύπος" msgid "Null" msgstr "Κενό" -#: db_datadict.php:178 db_structure.php:501 libraries/export/htmlword.php:247 +#: db_datadict.php:178 db_structure.php:499 libraries/export/htmlword.php:247 #: libraries/export/latex.php:360 libraries/export/odt.php:303 #: libraries/export/texytext.php:236 libraries/tbl_properties.inc.php:106 #: pdf_schema.php:1266 pdf_schema.php:1287 tbl_printview.php:146 @@ -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: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 +#: pdf_schema.php:1344 server_privileges.php:1588 server_privileges.php:1599 +#: server_privileges.php:1909 server_privileges.php:1914 +#: server_privileges.php:2208 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:1565 -#: server_privileges.php:1579 server_privileges.php:1889 -#: server_privileges.php:1892 server_privileges.php:2187 sql.php:193 +#: server_databases.php:64 server_privileges.php:1585 +#: server_privileges.php:1599 server_privileges.php:1909 +#: server_privileges.php:1912 server_privileges.php:2208 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" @@ -210,122 +210,118 @@ msgstr "Επιλογή όλων" msgid "Unselect All" msgstr "Απεπιλογή όλων" -#: db_operations.php:38 tbl_create.php:54 +#: db_operations.php:43 tbl_create.php:54 msgid "The database name is empty!" msgstr "Το όνομα της βάσης δεδομένων είναι κενό!" -#: db_operations.php:236 +#: db_operations.php:241 #, php-format msgid "Database %s has been renamed to %s" msgstr "Η βάση δεδομένων %s μετονομάστηκε σε %s" -#: db_operations.php:240 +#: db_operations.php:245 #, php-format msgid "Database %s has been copied to %s" msgstr "Η βάση δεδομένων %s αντιγράφηκε στη %s" -#: db_operations.php:412 +#: db_operations.php:421 msgid "Rename database to" msgstr "Μετονομασία βάσης δεδομένων σε" -#: db_operations.php:417 server_processlist.php:57 +#: db_operations.php:426 server_processlist.php:57 msgid "Command" msgstr "Εντολή" -#: db_operations.php:429 tbl_change.php:1143 -msgid "and then" -msgstr "και μετά" - -#: db_operations.php:455 +#: db_operations.php:464 msgid "Copy database to" msgstr "Αντιγραφή βάσης δεδομένων σε" -#: db_operations.php:462 tbl_operations.php:528 tbl_tracking.php:388 +#: db_operations.php:471 tbl_operations.php:528 tbl_tracking.php:388 msgid "Structure only" msgstr "Μόνο η δομή" -#: db_operations.php:463 tbl_operations.php:529 tbl_tracking.php:390 +#: db_operations.php:472 tbl_operations.php:529 tbl_tracking.php:390 msgid "Structure and data" msgstr "Δομή και δεδομένα" -#: db_operations.php:464 tbl_operations.php:530 tbl_tracking.php:389 +#: db_operations.php:473 tbl_operations.php:530 tbl_tracking.php:389 msgid "Data only" msgstr "Μόνο τα δεδομένα" -#: db_operations.php:472 +#: db_operations.php:481 msgid "CREATE DATABASE before copying" msgstr "ΔΗΜΙΟΥΡΓΙΑ ΒΑΣΗΣ ΔΕΔΟΜΕΝΩΝ πριν την αντιγραφή" -#: db_operations.php:475 libraries/export/sql.php:52 +#: db_operations.php:484 libraries/export/sql.php:52 #: libraries/export/sql.php:74 libraries/export/sql.php:76 #: libraries/export/sql.php:82 tbl_operations.php:536 #, php-format msgid "Add %s" msgstr "Προσθήκη %s" -#: db_operations.php:479 libraries/export/sql.php:78 tbl_operations.php:299 +#: db_operations.php:488 libraries/export/sql.php:78 tbl_operations.php:299 #: tbl_operations.php:538 msgid "Add AUTO_INCREMENT value" msgstr "Προσθήκη τιμής AUTO_INCREMENT" -#: db_operations.php:483 tbl_operations.php:545 +#: db_operations.php:492 tbl_operations.php:545 msgid "Add constraints" msgstr "Προσθήκη περιορισμών" -#: db_operations.php:496 +#: db_operations.php:505 msgid "Switch to copied database" msgstr "Αλλαγή στο αντίγραφο της βάσης δεδομένων" -#: db_operations.php:537 +#: db_operations.php:546 msgid "BLOB Repository" msgstr "Αποθήκη BLOB" -#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1352 -#: libraries/server_links.inc.php:49 server_processlist.php:59 +#: db_operations.php:549 db_tracking.php:76 libraries/common.lib.php:1352 +#: libraries/server_links.inc.php:50 server_processlist.php:59 #: tbl_tracking.php:596 test/theme.php:101 msgid "Status" msgstr "Κατάσταση" -#: db_operations.php:548 +#: db_operations.php:557 #, fuzzy msgctxt "BLOB repository" msgid "Enabled" msgstr "Ενεργοποιημένο" -#: db_operations.php:552 +#: db_operations.php:561 msgid "Disable" msgstr "Απενεργοποίηση" -#: db_operations.php:562 +#: db_operations.php:571 msgid "Damaged" msgstr "Καταστράφηκε" -#: db_operations.php:566 +#: db_operations.php:575 #, fuzzy msgctxt "BLOB repository" msgid "Repair" msgstr "Επιδιόρθωση" -#: db_operations.php:574 +#: db_operations.php:583 #, fuzzy msgctxt "BLOB repository" msgid "Disabled" msgstr "Απενεργοποιημένο" -#: db_operations.php:578 +#: db_operations.php:587 msgid "Enable" msgstr "Ενεργοποίηση" -#: db_operations.php:602 libraries/Index.class.php:448 +#: db_operations.php:611 libraries/Index.class.php:448 #: libraries/db_structure.lib.php:62 libraries/mysql_charsets.lib.php:107 #: libraries/tbl_properties.inc.php:107 libraries/tbl_properties.inc.php:730 #: server_collations.php:54 server_collations.php:66 server_databases.php:111 #: tbl_operations.php:363 tbl_select.php:137 tbl_structure.php:179 -#: tbl_structure.php:767 tbl_tracking.php:275 tbl_tracking.php:326 +#: tbl_structure.php:765 tbl_tracking.php:275 tbl_tracking.php:326 msgid "Collation" msgstr "Σύνθεση" -#: db_operations.php:615 main.php:316 pdf_schema.php:34 +#: db_operations.php:624 main.php:316 pdf_schema.php:34 #, php-format msgid "" "The additional features for working with linked tables have been " @@ -334,14 +330,14 @@ msgstr "" "Οι επιπρόσθετες λειτουργίες για εργασία με συσχετισμένους πίνακες έχουν " "απενεργοποιηθεί. Για να μάθετε γιατί, πατήστε %sεδώ%s." -#: db_operations.php:648 +#: db_operations.php:657 msgid "Edit PDF Pages" 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:1665 -#: server_privileges.php:1721 server_privileges.php:1985 +#: libraries/header.inc.php:130 pdf_pages.php:424 server_privileges.php:1685 +#: server_privileges.php:1741 server_privileges.php:2005 #: server_synchronize.php:423 server_synchronize.php:866 tbl_tracking.php:592 #: test/theme.php:75 msgid "Table" @@ -350,7 +346,7 @@ msgstr "Πίνακας " #: db_printview.php:105 libraries/db_structure.lib.php:56 #: libraries/header_printview.inc.php:63 libraries/import.lib.php:146 #: navigation.php:638 navigation.php:660 server_databases.php:122 -#: tbl_printview.php:394 tbl_structure.php:365 tbl_structure.php:777 +#: tbl_printview.php:394 tbl_structure.php:365 tbl_structure.php:775 msgid "Rows" msgstr "Εγγραφές" @@ -358,30 +354,30 @@ msgstr "Εγγραφές" msgid "Size" msgstr "Μέγεθος" -#: db_printview.php:162 db_structure.php:457 libraries/export/sql.php:559 +#: db_printview.php:162 db_structure.php:455 libraries/export/sql.php:559 #: libraries/export/sql.php:899 msgid "in use" msgstr "σε χρήση" #: db_printview.php:187 libraries/db_info.inc.php:88 #: libraries/export/sql.php:514 pdf_schema.php:1241 tbl_printview.php:434 -#: tbl_structure.php:809 +#: tbl_structure.php:807 msgid "Creation" msgstr "Δημιουργία" #: db_printview.php:196 libraries/db_info.inc.php:93 #: libraries/export/sql.php:519 pdf_schema.php:1246 tbl_printview.php:444 -#: tbl_structure.php:817 +#: tbl_structure.php:815 msgid "Last update" msgstr "Τελευταία ενημέρωση" #: db_printview.php:205 libraries/db_info.inc.php:98 #: libraries/export/sql.php:524 pdf_schema.php:1251 tbl_printview.php:454 -#: tbl_structure.php:825 +#: tbl_structure.php:823 msgid "Last check" msgstr "τελευταίος έλεγχος" -#: db_printview.php:222 db_structure.php:480 +#: db_printview.php:222 db_structure.php:478 #, fuzzy, php-format #| msgid "%s table(s)" msgid "%s table" @@ -442,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:297 tbl_change.php:1031 tbl_indexes.php:250 +#: server_privileges.php:298 tbl_change.php:1031 tbl_indexes.php:250 #: tbl_select.php:288 msgid "Or" msgstr "Ή" @@ -515,9 +511,9 @@ 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:2833 +#: db_structure.php:105 libraries/common.lib.php:2837 #: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50 -#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:467 +#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:465 msgid "Browse" msgstr "Περιήγηση" @@ -562,36 +558,36 @@ 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:2832 libraries/sql_query_form.lib.php:334 +#: libraries/common.lib.php:2836 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:2829 libraries/common.lib.php:2836 +#: libraries/common.lib.php:2833 libraries/common.lib.php:2840 #: 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:1106 #: libraries/tbl_links.inc.php:56 pmd_general.php:134 -#: server_privileges.php:593 server_replication.php:315 tbl_tracking.php:269 +#: server_privileges.php:594 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:1656 +#: db_structure.php:543 db_structure.php:544 db_tracking.php:91 +#: libraries/Index.class.php:483 libraries/common.lib.php:1657 #: 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 -#: tbl_structure.php:152 tbl_structure.php:471 +#: tbl_structure.php:152 tbl_structure.php:469 msgid "Drop" 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:1655 +#: db_structure.php:541 db_structure.php:542 libraries/common.lib.php:1656 #: libraries/mult_submits.inc.php:39 libraries/tbl_links.inc.php:105 msgid "Empty" msgstr "Άδειασμα" @@ -601,25 +597,25 @@ msgstr "Άδειασμα" msgid "Table %s has been emptied" msgstr "Ο Πίνακας %s άδειασε" -#: db_structure.php:326 libraries/tbl_links.inc.php:133 +#: db_structure.php:325 libraries/tbl_links.inc.php:133 #, php-format msgid "View %s has been dropped" msgstr "Η προβολή %s διαγράφτηκε" -#: db_structure.php:326 libraries/tbl_links.inc.php:133 +#: db_structure.php:325 libraries/tbl_links.inc.php:133 #, php-format msgid "Table %s has been dropped" msgstr "Ο Πίνακας %s διεγράφη" -#: db_structure.php:333 +#: db_structure.php:332 msgid "Tracking is active." msgstr "Η παρακολούθηση είναι ενεργοποιημένη." -#: db_structure.php:335 +#: db_structure.php:334 msgid "Tracking is not active." msgstr "Η παρακολούθηση δεν έιναι ενεργοποιημένη." -#: db_structure.php:420 libraries/display_tbl.lib.php:1944 +#: db_structure.php:418 libraries/display_tbl.lib.php:1944 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation%" @@ -628,87 +624,87 @@ msgstr "" "Αυτή η προβολή έχει τουλάχιστον αυτό τον αριθμό γραμμών. Λεπτομέρειες στην %" "sτεκμηρίωση%s." -#: db_structure.php:434 db_structure.php:448 libraries/header.inc.php:126 +#: db_structure.php:432 db_structure.php:446 libraries/header.inc.php:130 #: libraries/tbl_info.inc.php:66 tbl_structure.php:185 test/theme.php:74 msgid "View" msgstr "Προβολή" -#: db_structure.php:485 libraries/db_structure.lib.php:49 -#: libraries/server_links.inc.php:70 server_replication.php:33 +#: db_structure.php:483 libraries/db_structure.lib.php:49 +#: libraries/server_links.inc.php:71 server_replication.php:33 #: server_replication.php:164 server_status.php:369 msgid "Replication" msgstr "Αναπαραγωγή" -#: db_structure.php:489 +#: db_structure.php:487 msgid "Sum" msgstr "Σύνολο" -#: db_structure.php:496 libraries/StorageEngine.class.php:356 +#: db_structure.php:494 libraries/StorageEngine.class.php:356 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "" "Η %s είναι η προεπιλεγμένη μηχανή αποθήκευσης σε αυτόν τον διακομιστή MySQL." -#: db_structure.php:524 db_structure.php:541 db_structure.php:542 +#: db_structure.php:522 db_structure.php:539 db_structure.php:540 #: 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:1596 tbl_structure.php:455 -#: tbl_structure.php:464 +#: server_databases.php:351 server_privileges.php:1616 tbl_structure.php:453 +#: tbl_structure.php:462 msgid "With selected:" msgstr "Με τους επιλεγμένους:" -#: db_structure.php:527 libraries/display_tbl.lib.php:2076 -#: server_databases.php:348 server_privileges.php:569 -#: server_privileges.php:1599 tbl_structure.php:458 +#: db_structure.php:525 libraries/display_tbl.lib.php:2076 +#: server_databases.php:348 server_privileges.php:570 +#: server_privileges.php:1619 tbl_structure.php:456 msgid "Check All" msgstr "Επιλογή όλων" -#: db_structure.php:531 libraries/display_tbl.lib.php:2077 +#: db_structure.php:529 libraries/display_tbl.lib.php:2077 #: libraries/replication_gui.lib.php:33 server_databases.php:350 -#: server_privileges.php:572 server_privileges.php:1603 tbl_structure.php:462 +#: server_privileges.php:573 server_privileges.php:1623 tbl_structure.php:460 msgid "Uncheck All" msgstr "Απεπιλογή όλων" -#: db_structure.php:536 +#: db_structure.php:534 msgid "Check tables having overhead" msgstr "Επιλογή πινάκων με περίσσεια" -#: db_structure.php:547 db_structure.php:548 db_structure.php:599 +#: db_structure.php:545 db_structure.php:546 db_structure.php:597 #: libraries/display_tbl.lib.php:2180 libraries/mult_submits.inc.php:28 -#: tbl_structure.php:492 tbl_structure.php:494 +#: tbl_structure.php:490 tbl_structure.php:492 msgid "Print view" msgstr "Εμφάνιση για εκτύπωση" -#: db_structure.php:549 db_structure.php:550 libraries/mult_submits.inc.php:42 +#: db_structure.php:547 db_structure.php:548 libraries/mult_submits.inc.php:42 #: tbl_operations.php:581 msgid "Check table" msgstr "Έλεγχος πίνακα" -#: db_structure.php:551 db_structure.php:552 libraries/mult_submits.inc.php:47 -#: tbl_operations.php:621 tbl_structure.php:709 tbl_structure.php:711 +#: db_structure.php:549 db_structure.php:550 libraries/mult_submits.inc.php:47 +#: tbl_operations.php:621 tbl_structure.php:707 tbl_structure.php:709 msgid "Optimize table" msgstr "Βελτιστοποίηση Πίνακα" -#: db_structure.php:553 db_structure.php:554 libraries/mult_submits.inc.php:52 +#: db_structure.php:551 db_structure.php:552 libraries/mult_submits.inc.php:52 #: tbl_operations.php:611 msgid "Repair table" msgstr "Επιδιόρθωση πίνακα" -#: db_structure.php:555 db_structure.php:556 libraries/mult_submits.inc.php:57 +#: db_structure.php:553 db_structure.php:554 libraries/mult_submits.inc.php:57 #: tbl_operations.php:601 msgid "Analyze table" msgstr "Ανάλυση Πίνακα" -#: db_structure.php:557 db_structure.php:558 libraries/db_links.inc.php:71 +#: db_structure.php:555 db_structure.php:556 libraries/db_links.inc.php:71 #: 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:1380 +#: libraries/server_links.inc.php:85 libraries/tbl_links.inc.php:82 +#: pmd_pdf.php:84 pmd_pdf.php:109 server_privileges.php:1397 #: setup/frames/menu.inc.php:22 tbl_row_action.php:59 msgid "Export" msgstr "Εξαγωγή" -#: db_structure.php:606 libraries/display_pdf_schema.lib.php:44 +#: db_structure.php:604 libraries/display_pdf_schema.lib.php:44 msgid "Data Dictionary" msgstr "Περιληπτικός πίνακας δεδομένων" @@ -719,10 +715,10 @@ msgstr "Παρακολουθούμενοι πίνακες" #: db_tracking.php:71 libraries/export/htmlword.php:86 #: libraries/export/latex.php:148 libraries/export/odt.php:113 #: libraries/export/sql.php:342 libraries/export/texytext.php:84 -#: libraries/export/xml.php:255 libraries/header.inc.php:106 +#: libraries/export/xml.php:255 libraries/header.inc.php:110 #: libraries/header_printview.inc.php:58 server_databases.php:169 -#: server_privileges.php:1660 server_privileges.php:1721 -#: server_privileges.php:1979 server_processlist.php:56 +#: server_privileges.php:1680 server_privileges.php:1741 +#: server_privileges.php:1999 server_processlist.php:56 #: server_synchronize.php:1179 server_synchronize.php:1183 #: tbl_tracking.php:591 test/theme.php:65 msgid "Database" @@ -742,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:1542 server_privileges.php:1725 -#: server_privileges.php:2073 tbl_structure.php:187 +#: server_privileges.php:1562 server_privileges.php:1745 +#: server_privileges.php:2094 tbl_structure.php:187 msgid "Action" msgstr "Ενέργεια" @@ -777,8 +773,8 @@ msgstr "Στιγμιότυπο δομής" msgid "Untracked tables" msgstr "Μη παρακολουθούμενοι πίνακες" -#: db_tracking.php:172 db_tracking.php:174 tbl_structure.php:528 -#: tbl_structure.php:530 +#: db_tracking.php:172 db_tracking.php:174 tbl_structure.php:526 +#: tbl_structure.php:528 msgid "Track table" msgstr "Παρακολούθηση πίνακα" @@ -948,342 +944,391 @@ msgstr "Το όνομα του Συστήματος είναι κενό!" msgid "The user name is empty!" msgstr "Το όνομα του χρήστη είναι κενό!" -#: js/messages.php:44 server_privileges.php:1236 user_password.php:70 +#: js/messages.php:44 server_privileges.php:1241 user_password.php:70 msgid "The password is empty!" msgstr "Ο Κωδικός Πρόσβασης είναι κενός!" -#: js/messages.php:45 server_privileges.php:1234 user_password.php:73 +#: js/messages.php:45 server_privileges.php:1239 user_password.php:73 msgid "The passwords aren't the same!" msgstr "Οι κωδικοί πρόσβασης δεν είναι ίδιοι!" -#: js/messages.php:49 pmd_general.php:342 pmd_general.php:379 +#: js/messages.php:46 +#, fuzzy +#| msgid "Add a new User" +msgid "Add a New User" +msgstr "Προσθήκη νέου Χρήστη" + +#: js/messages.php:47 js/messages.php:54 pmd_general.php:342 +#: pmd_general.php:379 msgid "Cancel" msgstr "Άκυρο" -#: js/messages.php:52 pmd_save_pos.php:54 +#: js/messages.php:48 +#, fuzzy +#| msgid "Create version" +msgid "Create User" +msgstr "Δημιουργία έκδοσης" + +#: js/messages.php:49 +#, fuzzy +#| msgid "Reload privileges" +msgid "Reloading Privileges" +msgstr "Επαναφόρτωση δικαιωμάτων" + +#: js/messages.php:50 +#, fuzzy +#| msgid "Remove selected users" +msgid "Removing Selected Users" +msgstr "Διαγραφή των επιλεγμένων χρηστών" + +#: js/messages.php:57 +#, fuzzy +#| msgid "Load" +msgid "Loading" +msgstr "Φόρτωση" + +#: js/messages.php:58 +#, fuzzy +#| msgid "Processes" +msgid "Processing Request" +msgstr "Διεργασίες" + +#: js/messages.php:59 +msgid "Error in Processing Request" +msgstr "" + +#: js/messages.php:60 +msgid "Dropping Column" +msgstr "" + +#: js/messages.php:61 +msgid "Adding Primary Key" +msgstr "" + +#: js/messages.php:64 pmd_save_pos.php:54 msgid "Modifications have been saved" msgstr "Οι αλλαγές αποθηκεύτηκαν" -#: js/messages.php:53 pmd_relation_upd.php:49 +#: js/messages.php:65 pmd_relation_upd.php:49 msgid "Relation deleted" msgstr "Η συσχέτιση διαγράφηκε" -#: js/messages.php:54 pmd_relation_new.php:64 +#: js/messages.php:66 pmd_relation_new.php:64 msgid "FOREIGN KEY relation added" msgstr "Προστέθηκε η συσχέτιση ΜΗ ΔΙΑΚΡΙΤΟΥ ΚΛΕΙΔΙΟΥ (FOREIGN KEY)" -#: js/messages.php:55 pmd_relation_new.php:86 +#: js/messages.php:67 pmd_relation_new.php:86 msgid "Internal relation added" msgstr "Η εσωτερική συσχέτιση προστέθηκε" -#: js/messages.php:56 pmd_relation_new.php:63 pmd_relation_new.php:88 +#: js/messages.php:68 pmd_relation_new.php:63 pmd_relation_new.php:88 msgid "Error: Relation not added." msgstr "Σφάλμα: Δεν προστέθηκε η συσχέτιση." -#: js/messages.php:57 pmd_relation_new.php:31 +#: js/messages.php:69 pmd_relation_new.php:31 msgid "Error: relation already exists." msgstr "Σφάλμα: Η συσχέτιση υπαρχει ήδη." -#: js/messages.php:58 +#: js/messages.php:70 msgid "Error saving coordinates for Designer." msgstr "Σφάλμα αποθήκευσης συντεταγμένων για τον Σχεδιαστή." -#: js/messages.php:59 libraries/relation.lib.php:107 +#: js/messages.php:71 libraries/relation.lib.php:107 #: libraries/relation.lib.php:119 msgid "General relation features" msgstr "Γενικές λειτουργίες συσχέτισης" -#: js/messages.php:59 libraries/relation.lib.php:101 +#: js/messages.php:71 libraries/relation.lib.php:101 #: libraries/relation.lib.php:108 msgid "Disabled" msgstr "Απενεργοποιημένη" -#: js/messages.php:60 +#: js/messages.php:72 msgid "Select referenced key" msgstr "Επιλέξτε αναφερθέν κλειδί" -#: js/messages.php:61 +#: js/messages.php:73 msgid "Select Foreign Key" msgstr "Επιλέξτε Μη Διακριτό Κλειδί" -#: js/messages.php:62 +#: js/messages.php:74 msgid "Please select the primary key or a unique key" msgstr "Επιλέξτε το πρωτεύον κλειδί ή ένα μοναδικό κλειδί" -#: js/messages.php:63 pmd_general.php:77 tbl_relation.php:548 +#: js/messages.php:75 pmd_general.php:77 tbl_relation.php:548 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" msgstr "Επιλέξτε πεδίο για εμφάνιση" #. l10n: Display text for calendar close link -#: js/messages.php:73 +#: js/messages.php:85 #, fuzzy msgid "Done" msgstr "Δωρεά" #. l10n: Display text for previous month link in calendar -#: js/messages.php:75 +#: js/messages.php:87 #, fuzzy msgid "Prev" msgstr "Προηγούμενο" #. l10n: Display text for next month link in calendar -#: js/messages.php:77 libraries/common.lib.php:2353 -#: libraries/common.lib.php:2356 libraries/display_tbl.lib.php:338 +#: js/messages.php:89 libraries/common.lib.php:2357 +#: libraries/common.lib.php:2360 libraries/display_tbl.lib.php:338 #: server_binlog.php:205 server_binlog.php:207 tbl_printview.php:424 -#: tbl_structure.php:801 +#: tbl_structure.php:799 msgid "Next" msgstr "Επόμενο" #. l10n: Display text for current month link in calendar -#: js/messages.php:79 +#: js/messages.php:91 #, fuzzy msgid "Today" msgstr "Σύνολο" -#: js/messages.php:82 +#: js/messages.php:94 #, fuzzy msgid "January" msgstr "Δυαδικό" -#: js/messages.php:83 +#: js/messages.php:95 msgid "February" msgstr "" -#: js/messages.php:84 +#: js/messages.php:96 #, fuzzy msgid "March" msgstr "Μαρτίου" -#: js/messages.php:85 +#: js/messages.php:97 #, fuzzy msgid "April" msgstr "Απριλίου" -#: js/messages.php:86 +#: js/messages.php:98 msgid "May" msgstr "Μαΐου" -#: js/messages.php:87 +#: js/messages.php:99 #, fuzzy msgid "June" msgstr "Ιουνίου" -#: js/messages.php:88 +#: js/messages.php:100 #, fuzzy msgid "July" msgstr "Ιουλίου" -#: js/messages.php:89 +#: js/messages.php:101 #, fuzzy msgid "August" msgstr "Αυγούστου" -#: js/messages.php:90 +#: js/messages.php:102 msgid "September" msgstr "" -#: js/messages.php:91 +#: js/messages.php:103 #, fuzzy msgid "October" msgstr "Οκτωβρίου" -#: js/messages.php:92 +#: js/messages.php:104 msgid "November" msgstr "" -#: js/messages.php:93 +#: js/messages.php:105 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:97 libraries/common.lib.php:1557 +#: js/messages.php:109 libraries/common.lib.php:1557 msgid "Jan" msgstr "Ιανουαρίου" #. l10n: Short month name -#: js/messages.php:99 libraries/common.lib.php:1559 +#: js/messages.php:111 libraries/common.lib.php:1559 msgid "Feb" msgstr "Φεβρουαρίου" #. l10n: Short month name -#: js/messages.php:101 libraries/common.lib.php:1561 +#: js/messages.php:113 libraries/common.lib.php:1561 msgid "Mar" msgstr "Μαρτίου" #. l10n: Short month name -#: js/messages.php:103 libraries/common.lib.php:1563 +#: js/messages.php:115 libraries/common.lib.php:1563 msgid "Apr" msgstr "Απριλίου" #. l10n: Short month name -#: js/messages.php:105 libraries/common.lib.php:1565 +#: js/messages.php:117 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:1567 +#: js/messages.php:119 libraries/common.lib.php:1567 msgid "Jun" msgstr "Ιουνίου" #. l10n: Short month name -#: js/messages.php:109 libraries/common.lib.php:1569 +#: js/messages.php:121 libraries/common.lib.php:1569 msgid "Jul" msgstr "Ιουλίου" #. l10n: Short month name -#: js/messages.php:111 libraries/common.lib.php:1571 +#: js/messages.php:123 libraries/common.lib.php:1571 msgid "Aug" msgstr "Αυγούστου" #. l10n: Short month name -#: js/messages.php:113 libraries/common.lib.php:1573 +#: js/messages.php:125 libraries/common.lib.php:1573 msgid "Sep" msgstr "Σεπτεμβρίου" #. l10n: Short month name -#: js/messages.php:115 libraries/common.lib.php:1575 +#: js/messages.php:127 libraries/common.lib.php:1575 msgid "Oct" msgstr "Οκτωβρίου" #. l10n: Short month name -#: js/messages.php:117 libraries/common.lib.php:1577 +#: js/messages.php:129 libraries/common.lib.php:1577 msgid "Nov" msgstr "Νοεμβρίου" #. l10n: Short month name -#: js/messages.php:119 libraries/common.lib.php:1579 +#: js/messages.php:131 libraries/common.lib.php:1579 msgid "Dec" msgstr "Δεκεμβρίου" -#: js/messages.php:122 +#: js/messages.php:134 #, fuzzy msgid "Sunday" msgstr "Κυριακή" -#: js/messages.php:123 +#: js/messages.php:135 #, fuzzy msgid "Monday" msgstr "Δευτέρα" -#: js/messages.php:124 +#: js/messages.php:136 #, fuzzy msgid "Tuesday" msgstr "Τρίτη" -#: js/messages.php:125 +#: js/messages.php:137 msgid "Wednesday" msgstr "" -#: js/messages.php:126 +#: js/messages.php:138 msgid "Thursday" msgstr "" -#: js/messages.php:127 +#: js/messages.php:139 #, fuzzy msgid "Friday" msgstr "Παρασκευή" -#: js/messages.php:128 +#: js/messages.php:140 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:132 libraries/common.lib.php:1582 +#: js/messages.php:144 libraries/common.lib.php:1582 msgid "Sun" msgstr "Κυριακή" #. l10n: Short week day name -#: js/messages.php:134 libraries/common.lib.php:1584 +#: js/messages.php:146 libraries/common.lib.php:1584 msgid "Mon" msgstr "Δευτέρα" #. l10n: Short week day name -#: js/messages.php:136 libraries/common.lib.php:1586 +#: js/messages.php:148 libraries/common.lib.php:1586 msgid "Tue" msgstr "Τρίτη" #. l10n: Short week day name -#: js/messages.php:138 libraries/common.lib.php:1588 +#: js/messages.php:150 libraries/common.lib.php:1588 msgid "Wed" msgstr "Τετάρτη" #. l10n: Short week day name -#: js/messages.php:140 libraries/common.lib.php:1590 +#: js/messages.php:152 libraries/common.lib.php:1590 msgid "Thu" msgstr "Πέμπτη" #. l10n: Short week day name -#: js/messages.php:142 libraries/common.lib.php:1592 +#: js/messages.php:154 libraries/common.lib.php:1592 msgid "Fri" msgstr "Παρασκευή" #. l10n: Short week day name -#: js/messages.php:144 libraries/common.lib.php:1594 +#: js/messages.php:156 libraries/common.lib.php:1594 msgid "Sat" msgstr "Σάββατο" #. l10n: Minimal week day name -#: js/messages.php:148 +#: js/messages.php:160 #, fuzzy msgid "Su" msgstr "Κυριακή" #. l10n: Minimal week day name -#: js/messages.php:150 +#: js/messages.php:162 #, fuzzy msgid "Mo" msgstr "Δευτέρα" #. l10n: Minimal week day name -#: js/messages.php:152 +#: js/messages.php:164 #, fuzzy msgid "Tu" msgstr "Τρίτη" #. l10n: Minimal week day name -#: js/messages.php:154 +#: js/messages.php:166 #, fuzzy msgid "We" msgstr "Τετάρτη" #. l10n: Minimal week day name -#: js/messages.php:156 +#: js/messages.php:168 #, fuzzy msgid "Th" msgstr "Πέμπτη" #. l10n: Minimal week day name -#: js/messages.php:158 +#: js/messages.php:170 #, fuzzy msgid "Fr" msgstr "Παρασκευή" #. l10n: Minimal week day name -#: js/messages.php:160 +#: js/messages.php:172 #, fuzzy msgid "Sa" msgstr "Σάββατο" #. l10n: Column header for week of the year in calendar -#: js/messages.php:162 +#: js/messages.php:174 #, fuzzy msgid "Wk" msgstr "Wiki" -#: js/messages.php:164 +#: js/messages.php:176 msgid "Hour" msgstr "" -#: js/messages.php:165 +#: js/messages.php:177 #, fuzzy msgid "Minute" msgstr "σε χρήση" -#: js/messages.php:166 +#: js/messages.php:178 #, fuzzy msgid "Second" msgstr "ανά δευτερόλεπτο" @@ -1343,7 +1388,7 @@ msgstr "Ευρετήρια" #: libraries/Index.class.php:444 libraries/mult_submits.inc.php:103 #: libraries/tbl_properties.inc.php:519 tbl_structure.php:33 -#: tbl_structure.php:155 tbl_structure.php:159 tbl_structure.php:474 +#: tbl_structure.php:155 tbl_structure.php:159 tbl_structure.php:472 #: tbl_tracking.php:322 msgid "Unique" msgstr "Μοναδικό" @@ -1386,8 +1431,8 @@ msgstr "" "Τα ευρετήρια %1$s και %2$s φαίνεται να είναι ίσα και ένα από αυτά μπορεί να " "απομακρυνθεί." -#: libraries/List_Database.class.php:431 libraries/server_links.inc.php:41 -#: server_databases.php:88 server_privileges.php:1660 +#: libraries/List_Database.class.php:431 libraries/server_links.inc.php:42 +#: server_databases.php:88 server_privileges.php:1680 #: setup/lib/messages.inc.php:110 test/theme.php:93 msgid "Databases" msgstr "Βάσεις Δεδομένων" @@ -1560,7 +1605,7 @@ msgstr "Κωδικός πρόσβασης:" msgid "Server Choice" msgstr "Επιλογή Διακομιστή" -#: libraries/auth/cookie.auth.lib.php:320 libraries/header.inc.php:59 +#: libraries/auth/cookie.auth.lib.php:320 libraries/header.inc.php:63 msgid "Cookies must be enabled past this point." msgstr "Από αυτό το σημείο πρέπει να έχετε ενεργοποιημένα cookies." @@ -1645,7 +1690,7 @@ msgstr "" "ρουτίνας recode_string, ενώ η επέκταση έχει φορτωθεί. Ελέξτε τις ρυθμίσεις " "της php." -#: libraries/common.inc.php:583 +#: libraries/common.inc.php:587 msgid "" "phpMyAdmin was unable to read your configuration file!
This might " "happen if PHP finds a parse error in it or PHP cannot find the file.
Εάν η php επιστρέψει μια λευκή σελίδα, όλα " "είναι σωστά." -#: libraries/common.inc.php:594 +#: libraries/common.inc.php:598 #, fuzzy, php-format msgid "Could not load default configuration from: %1$s" msgstr "Αδύνατη η φόρτωση της προεπιλεγμένης ρύθμισης από: «%1$s»" -#: libraries/common.inc.php:599 +#: libraries/common.inc.php:603 msgid "" "The $cfg['PmaAbsoluteUri'] directive MUST be set in your " "configuration file!" @@ -1675,29 +1720,29 @@ msgstr "" "Η εντολή $cfg['PmaAbsoluteUri'] ΠΡΕΠΕΙ να οριστεί στο αρχείο " "ρυθμίσεων!" -#: libraries/common.inc.php:629 +#: libraries/common.inc.php:633 #, fuzzy, php-format msgid "Invalid server index: %s" msgstr "Μη έγκυρο ευρετήριο διακομιστή: «%s»" -#: libraries/common.inc.php:636 +#: libraries/common.inc.php:640 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" "Μη έγκυρο όνομα διακομιστή για τον διακομιστή %1$s. Ξαναδείτε τις ρυθμίσεις " "σας." -#: libraries/common.inc.php:645 libraries/header.inc.php:96 +#: libraries/common.inc.php:649 libraries/header.inc.php:100 #: libraries/select_server.lib.php:41 libraries/select_server.lib.php:47 #: main.php:185 test/theme.php:57 msgid "Server" msgstr "Διακομιστής" -#: libraries/common.inc.php:823 +#: libraries/common.inc.php:827 msgid "Invalid authentication method set in configuration:" msgstr "Ορίστηκε εσφαλμένη μέθοδος πιστοποίησης στη ρύθμιση:" -#: libraries/common.inc.php:926 +#: libraries/common.inc.php:930 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Πρέπει να αναβαθμίσετε σε %s %s ή νεότερη." @@ -1829,45 +1874,45 @@ msgstr "," msgid "%B %d, %Y at %I:%M %p" msgstr "%d %B %Y στις %H:%M:%S" -#: libraries/common.lib.php:1907 +#: libraries/common.lib.php:1911 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s μέρες, %s ώρες, %s λεπτά %s δευτερόλεπτα" -#: libraries/common.lib.php:2322 libraries/common.lib.php:2325 +#: libraries/common.lib.php:2326 libraries/common.lib.php:2329 #: libraries/display_tbl.lib.php:290 server_status.php:719 msgid "Begin" msgstr "Κορυφή" -#: libraries/common.lib.php:2323 libraries/common.lib.php:2326 +#: libraries/common.lib.php:2327 libraries/common.lib.php:2330 #: libraries/display_tbl.lib.php:291 server_binlog.php:168 #: server_binlog.php:170 msgid "Previous" msgstr "Προηγούμενο" -#: libraries/common.lib.php:2354 libraries/common.lib.php:2357 +#: libraries/common.lib.php:2358 libraries/common.lib.php:2361 #: libraries/display_tbl.lib.php:353 msgid "End" msgstr "Τέλος" -#: libraries/common.lib.php:2430 +#: libraries/common.lib.php:2434 #, php-format msgid "Jump to database "%s"." msgstr "Μεταπήδηση στην βάση «%s»." -#: libraries/common.lib.php:2450 +#: libraries/common.lib.php:2454 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "Η λειτουργία %s έχει επηρρεαστεί από ένα γνωστό σφάλμα. Δείτε %s" -#: libraries/common.lib.php:2830 libraries/common.lib.php:2837 +#: libraries/common.lib.php:2834 libraries/common.lib.php:2841 #: libraries/db_links.inc.php:68 libraries/export/sql.php:25 -#: libraries/import/sql.php:18 libraries/server_links.inc.php:45 +#: libraries/import/sql.php:18 libraries/server_links.inc.php:46 #: libraries/tbl_links.inc.php:60 querywindow.php:99 test/theme.php:97 msgid "SQL" msgstr "Κώδικας SQL" -#: libraries/common.lib.php:2839 libraries/db_links.inc.php:104 +#: libraries/common.lib.php:2843 libraries/db_links.inc.php:104 #: libraries/tbl_links.inc.php:95 libraries/tbl_links.inc.php:117 #: view_operations.php:89 msgid "Operations" @@ -1916,15 +1961,15 @@ msgstr "Επερώτημα κατά παράδειγμα" msgid "Designer" msgstr "Σχεδιαστής" -#: libraries/db_links.inc.php:98 libraries/server_links.inc.php:88 +#: libraries/db_links.inc.php:98 libraries/server_links.inc.php:89 #: libraries/tbl_links.inc.php:91 pmd_pdf.php:84 pmd_pdf.php:110 #: setup/frames/menu.inc.php:21 msgid "Import" msgstr "Εισαγωγή" -#: libraries/db_links.inc.php:111 libraries/server_links.inc.php:66 -#: server_privileges.php:111 server_privileges.php:1722 -#: server_privileges.php:2071 test/theme.php:117 +#: libraries/db_links.inc.php:111 libraries/server_links.inc.php:67 +#: server_privileges.php:112 server_privileges.php:1742 +#: server_privileges.php:2092 test/theme.php:117 msgid "Privileges" msgstr "Δικαιώματα" @@ -1943,7 +1988,7 @@ msgid "" msgstr "Ίσως είναι κατά προσέγγιση. Δείτε τις ΣΑΕ 3.11" #: libraries/db_structure.lib.php:69 server_databases.php:142 -#: tbl_printview.php:336 tbl_structure.php:682 +#: tbl_printview.php:336 tbl_structure.php:680 msgid "Overhead" msgstr "Περίσσεια" @@ -1960,7 +2005,7 @@ msgstr "Ο διακομιστής δεν αποκρίνεται" msgid "(or the local MySQL server's socket is not correctly configured)" msgstr "(ή η τοπική υποδοχή του διακομιστή MySQL δεν έχει ρυθμιστεί σωστά)" -#: libraries/dbi/mysql.dbi.lib.php:362 tbl_structure.php:608 +#: libraries/dbi/mysql.dbi.lib.php:362 tbl_structure.php:606 msgid "Details..." msgstr "Λεπτομέρειες..." @@ -1970,22 +2015,22 @@ msgid "Change password" msgstr "Αλλαγή κωδικού πρόσβασης" #: libraries/display_change_password.lib.php:35 -#: libraries/replication_gui.lib.php:345 server_privileges.php:807 +#: libraries/replication_gui.lib.php:345 server_privileges.php:808 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:796 -#: server_privileges.php:800 server_privileges.php:811 -#: server_privileges.php:1538 server_synchronize.php:1175 +#: libraries/replication_gui.lib.php:349 server_privileges.php:797 +#: server_privileges.php:801 server_privileges.php:812 +#: server_privileges.php:1558 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:815 server_privileges.php:818 +#: server_privileges.php:816 server_privileges.php:819 msgid "Re-type" msgstr "Επαναεισαγωγή" @@ -1999,12 +2044,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:822 +#: libraries/replication_gui.lib.php:360 server_privileges.php:823 msgid "Generate Password" msgstr "Παραγωγή Κωδικού Πρόσβασης" #: libraries/display_change_password.lib.php:75 -#: libraries/replication_gui.lib.php:363 server_privileges.php:825 +#: libraries/replication_gui.lib.php:363 server_privileges.php:826 msgid "Generate" msgstr "Παραγωγή" @@ -2017,8 +2062,8 @@ msgstr "Δημιουργία νέας βάσης" msgid "Create" msgstr "Δημιουργία" -#: libraries/display_create_database.lib.php:40 server_privileges.php:113 -#: server_privileges.php:1427 server_replication.php:35 +#: libraries/display_create_database.lib.php:40 server_privileges.php:114 +#: server_privileges.php:1447 server_replication.php:35 msgid "No Privileges" msgstr "Χωρίς Δικαιώματα" @@ -2110,7 +2155,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:1875 server_processlist.php:75 +#: server_privileges.php:1895 server_processlist.php:75 msgid "None" msgstr "Καμία" @@ -2307,7 +2352,7 @@ msgstr "Ταξινόμηση ανά κλειδί" #: libraries/import/docsql.php:34 libraries/import/ldi.php:47 #: libraries/import/ods.php:30 libraries/import/sql.php:20 #: libraries/import/xls.php:26 libraries/import/xlsx.php:26 -#: libraries/import/xml.php:25 tbl_select.php:267 tbl_structure.php:753 +#: libraries/import/xml.php:25 tbl_select.php:267 tbl_structure.php:751 msgid "Options" msgstr "Επιλογές" @@ -2384,7 +2429,7 @@ msgstr "Το ερώτημα χρειάστηκε %01.4f δευτερόλεπτα #: libraries/display_tbl.lib.php:2089 libraries/mult_submits.inc.php:113 #: querywindow.php:125 querywindow.php:129 querywindow.php:132 -#: tbl_structure.php:25 tbl_structure.php:150 tbl_structure.php:470 +#: tbl_structure.php:25 tbl_structure.php:150 tbl_structure.php:468 msgid "Change" msgstr "Αλλαγή" @@ -2455,7 +2500,7 @@ msgstr "Χρήση Buffer Pool" #: libraries/engines/innodb.lib.php:194 server_databases.php:137 #: server_databases.php:305 server_status.php:525 server_status.php:586 -#: server_status.php:607 tbl_printview.php:351 tbl_structure.php:696 +#: server_status.php:607 tbl_printview.php:351 tbl_structure.php:694 msgid "Total" msgstr "Σύνολο" @@ -2747,7 +2792,7 @@ msgstr "" "τους δίδεται ο επόμενος αύξων αριθμός." #: libraries/export/codegen.php:37 setup/lib/messages.inc.php:88 -#: tbl_printview.php:376 tbl_structure.php:737 +#: tbl_printview.php:376 tbl_structure.php:735 msgid "Format" msgstr "Μορφοποίηση" @@ -2821,8 +2866,8 @@ 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:576 server_replication.php:316 tbl_printview.php:317 -#: tbl_structure.php:665 +#: server_privileges.php:577 server_replication.php:316 tbl_printview.php:317 +#: tbl_structure.php:663 msgid "Data" msgstr "Δεδομένα" @@ -2871,9 +2916,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:731 -#: server_privileges.php:734 server_privileges.php:790 -#: server_privileges.php:1537 server_privileges.php:2069 +#: libraries/replication_gui.lib.php:329 server_privileges.php:732 +#: server_privileges.php:735 server_privileges.php:791 +#: server_privileges.php:1557 server_privileges.php:2090 #: server_processlist.php:55 server_synchronize.php:1159 msgid "Host" msgstr "Σύστημα" @@ -3068,7 +3113,7 @@ msgstr "Εξαγωγή περιεχομένων" msgid "Open new phpMyAdmin window" msgstr "Άνοιγμα νέου παραθύρου phpMyAdmin" -#: libraries/header.inc.php:115 +#: libraries/header.inc.php:119 msgid "New table" msgstr "Νέος πίνακας" @@ -3229,20 +3274,20 @@ 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 +#: tbl_structure.php:471 msgid "Primary" msgstr "Πρωτεύον" #: libraries/mult_submits.inc.php:98 libraries/tbl_properties.inc.php:116 #: libraries/tbl_properties.inc.php:525 tbl_printview.php:326 #: tbl_structure.php:31 tbl_structure.php:154 tbl_structure.php:158 -#: tbl_structure.php:475 tbl_structure.php:673 +#: tbl_structure.php:473 tbl_structure.php:671 msgid "Index" msgstr "Ευρετήριο" #: libraries/mult_submits.inc.php:108 libraries/tbl_properties.inc.php:531 #: tbl_structure.php:35 tbl_structure.php:156 tbl_structure.php:160 -#: tbl_structure.php:478 +#: tbl_structure.php:476 msgid "Fulltext" msgstr "Πλήρες κείμενο" @@ -3547,8 +3592,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:711 -#: server_privileges.php:714 server_privileges.php:721 +#: libraries/replication_gui.lib.php:259 server_privileges.php:712 +#: server_privileges.php:715 server_privileges.php:722 #: server_synchronize.php:1171 msgid "User name" msgstr "Όνομα χρήστη" @@ -3572,7 +3617,7 @@ msgstr "Μεταβλητή" #: 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 +#: tbl_structure.php:727 msgid "Value" msgstr "Τιμή" @@ -3592,34 +3637,34 @@ msgstr "" msgid "Add slave replication user" msgstr "Προσθήκη δευτερέοντα χρήστη αναπαραγωγής" -#: libraries/replication_gui.lib.php:254 server_privileges.php:716 +#: libraries/replication_gui.lib.php:254 server_privileges.php:717 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:717 -#: server_privileges.php:784 server_privileges.php:808 -#: server_privileges.php:1928 server_privileges.php:1958 +#: libraries/replication_gui.lib.php:346 server_privileges.php:718 +#: server_privileges.php:785 server_privileges.php:809 +#: server_privileges.php:1948 server_privileges.php:1978 msgid "Use text field" msgstr "Χρησιμοποιήστε το πεδίο κειμένου" -#: libraries/replication_gui.lib.php:302 server_privileges.php:764 +#: libraries/replication_gui.lib.php:302 server_privileges.php:765 msgid "Any host" msgstr "Οποιοδήποτε Σύστημα" -#: libraries/replication_gui.lib.php:306 server_privileges.php:768 +#: libraries/replication_gui.lib.php:306 server_privileges.php:769 msgid "Local" msgstr "Τοπικό" -#: libraries/replication_gui.lib.php:312 server_privileges.php:773 +#: libraries/replication_gui.lib.php:312 server_privileges.php:774 msgid "This Host" msgstr "Αυτός ο διακομιστής" -#: libraries/replication_gui.lib.php:318 server_privileges.php:779 +#: libraries/replication_gui.lib.php:318 server_privileges.php:780 msgid "Use Host Table" msgstr "Χρήση Οικείου Πίνακα" -#: libraries/replication_gui.lib.php:331 server_privileges.php:792 +#: libraries/replication_gui.lib.php:331 server_privileges.php:793 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -3655,29 +3700,29 @@ msgstr "Άγνωστη γλώσσα: %1$s." msgid "Servers" msgstr "Διακομιστές" -#: libraries/server_links.inc.php:53 server_engines.php:112 +#: libraries/server_links.inc.php:54 server_engines.php:112 #: server_engines.php:116 server_status.php:415 test/theme.php:105 msgid "Variables" msgstr "Μεταβλητές" -#: libraries/server_links.inc.php:57 test/theme.php:109 +#: libraries/server_links.inc.php:58 test/theme.php:109 msgid "Charsets" msgstr "Σύνολο χαρακτήρων" -#: libraries/server_links.inc.php:61 test/theme.php:113 +#: libraries/server_links.inc.php:62 test/theme.php:113 msgid "Engines" msgstr "Μηχανές" -#: libraries/server_links.inc.php:76 server_binlog.php:110 +#: libraries/server_links.inc.php:77 server_binlog.php:110 #: server_status.php:364 test/theme.php:121 msgid "Binary log" msgstr "Δυαδικό αρχείο καταγραφής" -#: libraries/server_links.inc.php:80 +#: libraries/server_links.inc.php:81 msgid "Processes" msgstr "Διεργασίες" -#: libraries/server_links.inc.php:92 server_synchronize.php:1092 +#: libraries/server_links.inc.php:93 server_synchronize.php:1092 #: server_synchronize.php:1100 msgid "Synchronize" msgstr "Συγχρονισμός" @@ -3926,13 +3971,13 @@ msgstr "Ορισμός ΚΑΤΑΤΜΗΣΗΣ (PARTITION)" msgid "Save" msgstr "Αποθήκευση" -#: libraries/tbl_properties.inc.php:780 tbl_structure.php:542 +#: libraries/tbl_properties.inc.php:780 tbl_structure.php:540 #, fuzzy, php-format #| msgid "Add column(s)" msgid "Add %s column(s)" msgstr "Προσθήκη στήλης(ών)" -#: libraries/tbl_properties.inc.php:784 tbl_structure.php:536 +#: libraries/tbl_properties.inc.php:784 tbl_structure.php:534 #, fuzzy #| msgid "You have to add at least one field." msgid "You have to add at least one column." @@ -4152,8 +4197,8 @@ msgstr "Επαναφορά" msgid "Protocol version" msgstr "Έκδοση πρωτοκόλλου" -#: main.php:189 server_privileges.php:1389 server_privileges.php:1536 -#: server_privileges.php:1650 server_privileges.php:2068 +#: main.php:189 server_privileges.php:1406 server_privileges.php:1556 +#: server_privileges.php:1670 server_privileges.php:2089 #: server_processlist.php:54 msgid "User" msgstr "Χρήστης" @@ -4614,117 +4659,117 @@ msgstr "Μηχανές αποθήκευσης" msgid "View dump (schema) of databases" msgstr "Εμφάνισης σχήματος βάσεων" -#: server_privileges.php:24 server_privileges.php:266 +#: server_privileges.php:25 server_privileges.php:267 msgid "Includes all privileges except GRANT." msgstr "Περιλαμβάνει όλα τα δικαιώματα εκτός από το GRANT." -#: server_privileges.php:25 server_privileges.php:192 -#: server_privileges.php:515 +#: server_privileges.php:26 server_privileges.php:193 +#: server_privileges.php:516 msgid "Allows altering the structure of existing tables." msgstr "Επιτρέπει την αλλαγή δομής των υπαρχόντων πινάκων." -#: server_privileges.php:26 server_privileges.php:208 -#: server_privileges.php:521 +#: server_privileges.php:27 server_privileges.php:209 +#: server_privileges.php:522 msgid "Allows altering and dropping stored routines." msgstr "Επιτρέπει την αλλαγή και διαγραφή αποθηκευμένων εργασιών." -#: server_privileges.php:27 server_privileges.php:184 -#: server_privileges.php:514 +#: server_privileges.php:28 server_privileges.php:185 +#: server_privileges.php:515 msgid "Allows creating new databases and tables." msgstr "Επιτρέπει τη δημιουργία νέων βάσεων και πινάκων." -#: server_privileges.php:28 server_privileges.php:207 -#: server_privileges.php:520 +#: server_privileges.php:29 server_privileges.php:208 +#: server_privileges.php:521 msgid "Allows creating stored routines." msgstr "Επιτρέπει τη δημιουργία αποθηκευμένων εργασιών." -#: server_privileges.php:29 server_privileges.php:514 +#: server_privileges.php:30 server_privileges.php:515 msgid "Allows creating new tables." msgstr "Επιτρέπει τη δημιουργία νέων πινάκων." -#: server_privileges.php:30 server_privileges.php:195 -#: server_privileges.php:518 +#: server_privileges.php:31 server_privileges.php:196 +#: server_privileges.php:519 msgid "Allows creating temporary tables." msgstr "Επιτρέπει τη δημιουργία προσωρινών πινάκων." -#: server_privileges.php:31 server_privileges.php:209 -#: server_privileges.php:554 +#: server_privileges.php:32 server_privileges.php:210 +#: server_privileges.php:555 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 +#: server_privileges.php:33 server_privileges.php:200 +#: server_privileges.php:204 server_privileges.php:527 +#: server_privileges.php:531 msgid "Allows creating new views." msgstr "Επιτρέπει τη δημιουργία νέων προβολών." -#: server_privileges.php:33 server_privileges.php:183 -#: server_privileges.php:506 +#: server_privileges.php:34 server_privileges.php:184 +#: server_privileges.php:507 msgid "Allows deleting data." msgstr "Επιτρέπει τη διαγραφή δεδομένων." -#: server_privileges.php:34 server_privileges.php:185 -#: server_privileges.php:517 +#: server_privileges.php:35 server_privileges.php:186 +#: server_privileges.php:518 msgid "Allows dropping databases and tables." msgstr "Επιτρέπει τη διαγραφή βάσεων και πινάκων." -#: server_privileges.php:35 server_privileges.php:517 +#: server_privileges.php:36 server_privileges.php:518 msgid "Allows dropping tables." msgstr "Επιτρέπει τη διαγραφή πινάκων." -#: server_privileges.php:36 server_privileges.php:200 -#: server_privileges.php:534 +#: server_privileges.php:37 server_privileges.php:201 +#: server_privileges.php:535 msgid "Allows to set up events for the event scheduler" msgstr "Επιτρέπει τον ορισμό συμβάντων για τον προγραμματιστή συμβάντων" -#: server_privileges.php:37 server_privileges.php:210 -#: server_privileges.php:522 +#: server_privileges.php:38 server_privileges.php:211 +#: server_privileges.php:523 msgid "Allows executing stored routines." msgstr "Επιτρέπει την εκτέλεση αποθηκευμένων εργασιών." -#: server_privileges.php:38 server_privileges.php:189 -#: server_privileges.php:509 +#: server_privileges.php:39 server_privileges.php:190 +#: server_privileges.php:510 msgid "Allows importing data from and exporting data into files." msgstr "Επιτρέπει την εισαγωγή και εξαγωγή δεδομένων από και σε αρχεία." -#: server_privileges.php:39 server_privileges.php:540 +#: server_privileges.php:40 server_privileges.php:541 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "Επιτρέπει την προσθήκη χρηστών και δικαιωμάτων χωρίς να επαναφορτώσετε τους " "πίνακες δικαιωμάτων." -#: server_privileges.php:40 server_privileges.php:191 -#: server_privileges.php:516 +#: server_privileges.php:41 server_privileges.php:192 +#: server_privileges.php:517 msgid "Allows creating and dropping indexes." msgstr "Επιτρέπει την δημιουργία και την διαγραφή ευρετηρίων." -#: server_privileges.php:41 server_privileges.php:181 -#: server_privileges.php:442 server_privileges.php:504 +#: server_privileges.php:42 server_privileges.php:182 +#: server_privileges.php:443 server_privileges.php:505 msgid "Allows inserting and replacing data." msgstr "Επιτρέπει την εισαγωγή και την αντικατάσταση δεδομένων." -#: server_privileges.php:42 server_privileges.php:196 -#: server_privileges.php:549 +#: server_privileges.php:43 server_privileges.php:197 +#: server_privileges.php:550 msgid "Allows locking tables for the current thread." msgstr "Επιτρέπει το κλείδωμα πινάκων για την τρέχουσα λειτουργία." -#: server_privileges.php:43 server_privileges.php:646 -#: server_privileges.php:648 +#: server_privileges.php:44 server_privileges.php:647 +#: server_privileges.php:649 msgid "Limits the number of new connections the user may open per hour." msgstr "" "Περιορίζει τον αριθμό των νέων συνδέσεων που ο χρήστης μπορεί να ξεκινήσει " "ανά ώρα." -#: server_privileges.php:44 server_privileges.php:634 -#: server_privileges.php:636 +#: server_privileges.php:45 server_privileges.php:635 +#: server_privileges.php:637 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" "Περιορίζει τον αριθμό των ερωτημάτων που ο χρήστης μπορεί να στείλει στον " "διακομιστή ανά ώρα." -#: server_privileges.php:45 server_privileges.php:640 -#: server_privileges.php:642 +#: server_privileges.php:46 server_privileges.php:641 +#: server_privileges.php:643 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -4732,63 +4777,63 @@ msgstr "" "Περιορίζει τον αριθμό των αλλαγής πινάκων ή βάσεων που ο χρήστης μπορεί να " "εκετελέσει ανά ώρα." -#: server_privileges.php:46 server_privileges.php:652 -#: server_privileges.php:654 +#: server_privileges.php:47 server_privileges.php:653 +#: server_privileges.php:655 msgid "Limits the number of simultaneous connections the user may have." msgstr "" "Περιορίζει τον αριθμό των ταυτόχρονων συνδέσεων που μπορεί να έχει ο χρήστης." -#: server_privileges.php:47 server_privileges.php:188 -#: server_privileges.php:544 +#: server_privileges.php:48 server_privileges.php:189 +#: server_privileges.php:545 msgid "Allows viewing processes of all users" msgstr "Επιτρέπει την προβολή διεργασιών όλων των χρηστών" -#: server_privileges.php:48 server_privileges.php:190 -#: server_privileges.php:448 server_privileges.php:550 +#: server_privileges.php:49 server_privileges.php:191 +#: server_privileges.php:449 server_privileges.php:551 msgid "Has no effect in this MySQL version." msgstr "Δεν έχει χρήση σε αυτήν την έκδοση MySQL." -#: server_privileges.php:49 server_privileges.php:186 -#: server_privileges.php:545 +#: server_privileges.php:50 server_privileges.php:187 +#: server_privileges.php:546 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" "Επιτρέπει την επανεκκίνηση του διακομιστή και τον καθαρισμό των προσωρινών " "αρχείων του." -#: server_privileges.php:50 server_privileges.php:198 -#: server_privileges.php:552 +#: server_privileges.php:51 server_privileges.php:199 +#: server_privileges.php:553 msgid "Allows the user to ask where the slaves / masters are." msgstr "" "Δίνει το δικαίωμα στον χρήστη να βρει που είναι οι κύριοι και δευτερεύοντες " "διακομιστές." -#: server_privileges.php:51 server_privileges.php:197 -#: server_privileges.php:553 +#: server_privileges.php:52 server_privileges.php:198 +#: server_privileges.php:554 msgid "Needed for the replication slaves." msgstr "Απαιτείται για τους δευτερευόντες διακομιστές αναπαραγωγής." -#: server_privileges.php:52 server_privileges.php:180 -#: server_privileges.php:439 server_privileges.php:503 +#: server_privileges.php:53 server_privileges.php:181 +#: server_privileges.php:440 server_privileges.php:504 msgid "Allows reading data." msgstr "Επιτρέπει την ανάγνωση δεδομένων." -#: server_privileges.php:53 server_privileges.php:193 -#: server_privileges.php:547 +#: server_privileges.php:54 server_privileges.php:194 +#: server_privileges.php:548 msgid "Gives access to the complete list of databases." msgstr "Δίνει πρόσβαση στην πλήρη λίστα των βάσεων δεδομένων." -#: server_privileges.php:54 server_privileges.php:204 -#: server_privileges.php:206 server_privileges.php:519 +#: server_privileges.php:55 server_privileges.php:205 +#: server_privileges.php:207 server_privileges.php:520 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Επιτρέπει την εκτέλεση ερωτημάτων της μορφής SHOW CREATE VIEW." -#: server_privileges.php:55 server_privileges.php:187 -#: server_privileges.php:546 +#: server_privileges.php:56 server_privileges.php:188 +#: server_privileges.php:547 msgid "Allows shutting down the server." msgstr "Επιτρέπει την διακοπή λειτουργίας του διακομιστή." -#: server_privileges.php:56 server_privileges.php:194 -#: server_privileges.php:543 +#: server_privileges.php:57 server_privileges.php:195 +#: server_privileges.php:544 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -4798,157 +4843,157 @@ msgstr "" "καλυθφεί; Απαιτείται για τις περισσότερες λειτουργίες διαχείρισης όπως ο " "ορισμός γενικών μεταβλητών ή τη διακοπή λειτουργιών άλλων χρηστών." -#: server_privileges.php:57 server_privileges.php:201 -#: server_privileges.php:535 +#: server_privileges.php:58 server_privileges.php:202 +#: server_privileges.php:536 msgid "Allows creating and dropping triggers" msgstr "Επιτρέπει τη δημιουργία και διαγραφή υποδείξεων" -#: server_privileges.php:58 server_privileges.php:182 -#: server_privileges.php:445 server_privileges.php:505 +#: server_privileges.php:59 server_privileges.php:183 +#: server_privileges.php:446 server_privileges.php:506 msgid "Allows changing data." msgstr "Επιτρέπει την αλλαγή δεδομένων." -#: server_privileges.php:59 server_privileges.php:260 +#: server_privileges.php:60 server_privileges.php:261 msgid "No privileges." msgstr "Χωρίς δικαιώματα." -#: server_privileges.php:302 server_privileges.php:303 +#: server_privileges.php:303 server_privileges.php:304 #, fuzzy msgctxt "None privileges" msgid "None" msgstr "Καμία" -#: server_privileges.php:431 server_privileges.php:566 -#: server_privileges.php:1718 server_privileges.php:1724 +#: server_privileges.php:432 server_privileges.php:567 +#: server_privileges.php:1738 server_privileges.php:1744 msgid "Table-specific privileges" msgstr "Δικαιώματα πινάκων" -#: server_privileges.php:432 server_privileges.php:574 -#: server_privileges.php:1540 +#: server_privileges.php:433 server_privileges.php:575 +#: server_privileges.php:1560 msgid " Note: MySQL privilege names are expressed in English " msgstr " Σημείωση: Τα ονόματα δικαιωμάτων της MySQL εκφράζονται στα Αγγλικά " -#: server_privileges.php:563 server_privileges.php:1539 +#: server_privileges.php:564 server_privileges.php:1559 msgid "Global privileges" msgstr "Γενικά δικαιώματα" -#: server_privileges.php:565 server_privileges.php:1718 +#: server_privileges.php:566 server_privileges.php:1738 msgid "Database-specific privileges" msgstr "Δικαιώματα βάσης δεδομένων" -#: server_privileges.php:610 +#: server_privileges.php:611 msgid "Administration" msgstr "Διαχείριση" -#: server_privileges.php:630 +#: server_privileges.php:631 msgid "Resource limits" msgstr "Όρια πόρων" -#: server_privileges.php:631 +#: server_privileges.php:632 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "" "Σημείωση: Αν ορίσετε αυτές τις επιλογές σε 0 (μηδέν) αφαιρείτε ο περιορισμός." -#: server_privileges.php:708 +#: server_privileges.php:709 msgid "Login Information" msgstr "Πληροφορίες Σύνδεσης" -#: server_privileges.php:802 +#: server_privileges.php:803 msgid "Do not change the password" msgstr "Διατήρηση κωδικού πρόσβασης" -#: server_privileges.php:843 server_privileges.php:2205 +#: server_privileges.php:844 server_privileges.php:2226 #, fuzzy #| msgid "No user(s) found." msgid "No user found." msgstr "Δεν βρέθηκαν χρήστες." -#: server_privileges.php:887 +#: server_privileges.php:888 #, php-format msgid "The user %s already exists!" msgstr "Ο χρήστης %s υπάρχει ήδη!" -#: server_privileges.php:970 +#: server_privileges.php:971 msgid "You have added a new user." msgstr "Προσθέσατε ένα νέο χρήστη." -#: server_privileges.php:1191 +#: server_privileges.php:1196 #, php-format msgid "You have updated the privileges for %s." msgstr "Τα δικαιώματα του χρήστη %s ενημερώθηκαν." -#: server_privileges.php:1215 +#: server_privileges.php:1220 #, php-format msgid "You have revoked the privileges for %s" msgstr "Ανακαλέσατε τα δικαιώματα για %s" -#: server_privileges.php:1251 +#: server_privileges.php:1256 #, php-format msgid "The password for %s was changed successfully." msgstr "Ο Κωδικός Πρόσβασης για τον χρήστη %s άλλαξε επιτυχώς." -#: server_privileges.php:1271 +#: server_privileges.php:1276 #, php-format msgid "Deleting %s" msgstr "Διαγραφή %s" -#: server_privileges.php:1282 +#: server_privileges.php:1287 msgid "No users selected for deleting!" msgstr "Δεν επιλέχθηκαν χρήστες για διαγραφή!" -#: server_privileges.php:1285 +#: server_privileges.php:1290 msgid "Reloading the privileges" msgstr "Επαναφόρτωση δικαιωμάτων" -#: server_privileges.php:1300 +#: server_privileges.php:1305 msgid "The selected users have been deleted successfully." msgstr "Οι επιλεγμένοι χρήστες διεγράφησαν επιτυχώς." -#: server_privileges.php:1335 +#: server_privileges.php:1344 msgid "The privileges were reloaded successfully." msgstr "Τα δικαιώματα επαναφορτώθηκαν επιτυχώς." -#: server_privileges.php:1363 server_privileges.php:1649 +#: server_privileges.php:1380 server_privileges.php:1669 msgid "Edit Privileges" msgstr "Επεξεργασία Δικαιωμάτων" -#: server_privileges.php:1372 +#: server_privileges.php:1389 msgid "Revoke" msgstr "Ανάκληση" -#: server_privileges.php:1404 +#: server_privileges.php:1424 msgid "User overview" msgstr "Περίληψη χρηστών" -#: server_privileges.php:1541 server_privileges.php:1723 -#: server_privileges.php:2072 +#: server_privileges.php:1561 server_privileges.php:1743 +#: server_privileges.php:2093 msgid "Grant" msgstr "Χορήγηση" -#: server_privileges.php:1560 server_privileges.php:2162 +#: server_privileges.php:1580 server_privileges.php:2183 msgid "Any" msgstr "Οποιοδήποτε" -#: server_privileges.php:1609 server_privileges.php:1633 -#: server_privileges.php:2027 server_privileges.php:2216 +#: server_privileges.php:1629 server_privileges.php:1653 +#: server_privileges.php:2048 server_privileges.php:2237 msgid "Add a new User" msgstr "Προσθήκη νέου Χρήστη" -#: server_privileges.php:1614 +#: server_privileges.php:1634 msgid "Remove selected users" msgstr "Διαγραφή των επιλεγμένων χρηστών" -#: server_privileges.php:1617 +#: server_privileges.php:1637 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 +#: server_privileges.php:1638 server_privileges.php:1639 +#: server_privileges.php:1640 msgid "Drop the databases that have the same names as the users." msgstr "Διαγραφή βάσεων δεδομένων που έχουν ίδια ονόματα με χρήστες." -#: server_privileges.php:1636 +#: server_privileges.php:1656 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -4962,50 +5007,50 @@ msgstr "" "αλλαγές χειροκίνητα. Σε αυτήν την περίπτωση, θα πρέπει να %sεπαναφορτώσετε " "τα δικαιώματα%s πριν συνεχίσετε." -#: server_privileges.php:1684 +#: server_privileges.php:1704 msgid "The selected user was not found in the privilege table." msgstr "Ο επιλεγμένος χρήστης δεν βρέθηκε στον πίνακα δικαιωμάτων." -#: server_privileges.php:1724 +#: server_privileges.php:1744 msgid "Column-specific privileges" msgstr "Δικαιώματα πεδίων" -#: server_privileges.php:1925 +#: server_privileges.php:1945 msgid "Add privileges on the following database" msgstr "Προσθήκη δικαιωμάτων στην ακόλουθη βάση δεδομένων" -#: server_privileges.php:1943 +#: server_privileges.php:1963 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" "Οι χαρακτήρες μπαλαντέρ _ και % πρέπει να γραφούν μπροστά με \\ για να " "χρησιμοποιηθούν" -#: server_privileges.php:1946 +#: server_privileges.php:1966 msgid "Add privileges on the following table" msgstr "Προσθήκη δεδομένων στον ακόλουθο πίνακα" -#: server_privileges.php:2003 +#: server_privileges.php:2023 msgid "Change Login Information / Copy User" msgstr "Αλλαγή Στοιχείων Πρόσβασης / Αντιγραφή Χρήστη" -#: server_privileges.php:2006 +#: server_privileges.php:2026 msgid "Create a new user with the same privileges and ..." msgstr "Δημιουργία νέου χρήστη με τα ίδια δικαιώματα και ..." -#: server_privileges.php:2008 +#: server_privileges.php:2028 msgid "... keep the old one." msgstr "... διατήρηση του παλιού χρήστη." -#: server_privileges.php:2009 +#: server_privileges.php:2029 msgid " ... delete the old one from the user tables." msgstr " ... διαγραφή του παλιού χρήστη από τους πίνακες χρηστών." -#: server_privileges.php:2010 +#: server_privileges.php:2030 msgid "" " ... revoke all active privileges from the old one and delete it afterwards." msgstr " ... ανάκληση των δικαιωμάτων του παλιού χρήστη και διαγραφή του." -#: server_privileges.php:2011 +#: server_privileges.php:2031 msgid "" " ... delete the old one from the user tables and reload the privileges " "afterwards." @@ -5013,44 +5058,44 @@ msgstr "" " ... διαγραφή του παλιού χρήστη από τους πίνακες χρηστών και επαναφόρτωση " "των δικαιωμάτων." -#: server_privileges.php:2033 +#: server_privileges.php:2054 msgid "Database for user" msgstr "Βάση δεδομένων για χρήστη" -#: server_privileges.php:2037 +#: server_privileges.php:2058 #, fuzzy msgctxt "Create none database for user" msgid "None" msgstr "Καμία" -#: server_privileges.php:2038 +#: server_privileges.php:2059 msgid "Create database with same name and grant all privileges" msgstr "" "Δημιουργία βάσης δεδομένων με το ίδιο όνομα και με πλήρη δικαιώματα χρήσης" -#: server_privileges.php:2039 +#: server_privileges.php:2060 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "Πλήρη δικαιώματα σε όνομα μπαλαντέρ (username\\_%)" -#: server_privileges.php:2042 +#: server_privileges.php:2063 #, php-format msgid "Grant all privileges on database "%s"" msgstr "Πλήρη δικαιώματα στη βάση δεδομένων «%s»" -#: server_privileges.php:2065 +#: server_privileges.php:2086 #, php-format msgid "Users having access to "%s"" msgstr "Χρήστες με πρόσβαση στη βάση «%s»" -#: server_privileges.php:2173 +#: server_privileges.php:2194 msgid "global" msgstr "Γενικός" -#: server_privileges.php:2175 +#: server_privileges.php:2196 msgid "database-specific" msgstr "Χρήστης Βάσης" -#: server_privileges.php:2177 +#: server_privileges.php:2198 msgid "wildcard" msgstr "μπαλαντέρ" @@ -8133,6 +8178,10 @@ msgstr "Εισαγωγή ως νέα γραμμή και παράβλεψη σφ msgid "Show insert query" msgstr "Εμφάνιση ερωτήματος SQL" +#: tbl_change.php:1143 +msgid "and then" +msgstr "και μετά" + #: tbl_change.php:1147 msgid "Go back to previous page" msgstr "Επιστροφή" @@ -8215,7 +8264,7 @@ msgstr "" msgid "Add to index  %s column(s)" msgstr "Προσθήκη στο ευρετήριο «%s» στήλης(ών)" -#: tbl_indexes.php:256 tbl_structure.php:589 tbl_structure.php:600 +#: tbl_indexes.php:256 tbl_structure.php:587 tbl_structure.php:598 msgid "Column count has to be larger than zero." msgstr "Το πλήθος των στηλών δεν πρέπει να είναι μηδέν." @@ -8328,39 +8377,39 @@ msgstr "Έλεγχος ακεραιότητας συσχετίσεων:" msgid "Show tables" msgstr "Εμφάνιση πινάκων" -#: tbl_printview.php:310 tbl_structure.php:656 +#: tbl_printview.php:310 tbl_structure.php:654 msgid "Space usage" msgstr "Χρήση χώρου" -#: tbl_printview.php:314 tbl_structure.php:660 +#: tbl_printview.php:314 tbl_structure.php:658 msgid "Usage" msgstr "Χρήση" -#: tbl_printview.php:341 tbl_structure.php:687 +#: tbl_printview.php:341 tbl_structure.php:685 msgid "Effective" msgstr "Αποτελεσματικός" -#: tbl_printview.php:366 tbl_structure.php:725 +#: tbl_printview.php:366 tbl_structure.php:723 msgid "Row Statistics" msgstr "Στατιστικά Εγγραφών" -#: tbl_printview.php:369 tbl_structure.php:728 +#: tbl_printview.php:369 tbl_structure.php:726 msgid "Statements" msgstr "Δηλώσεις" -#: tbl_printview.php:380 tbl_structure.php:740 +#: tbl_printview.php:380 tbl_structure.php:738 msgid "static" msgstr "στατικό" -#: tbl_printview.php:382 tbl_structure.php:742 +#: tbl_printview.php:382 tbl_structure.php:740 msgid "dynamic" msgstr "δυναμικά" -#: tbl_printview.php:404 tbl_structure.php:785 +#: tbl_printview.php:404 tbl_structure.php:783 msgid "Row length" msgstr "Μέγεθος Γραμμής" -#: tbl_printview.php:414 tbl_structure.php:793 +#: tbl_printview.php:414 tbl_structure.php:791 msgid " Row size " msgstr " Μέγεθος Εγγραφής " @@ -8435,49 +8484,49 @@ msgstr "Καμία" msgid "Column %s has been dropped" msgstr "Ο Πίνακας %s διεγράφη" -#: tbl_structure.php:385 +#: tbl_structure.php:384 #, php-format msgid "A primary key has been added on %s" msgstr "Ένα πρωτεύον κλειδί προστέθηκε στο %s" -#: tbl_structure.php:400 tbl_structure.php:414 tbl_structure.php:428 +#: tbl_structure.php:398 tbl_structure.php:412 tbl_structure.php:426 #, php-format msgid "An index has been added on %s" msgstr "Ένα ευρετήριο προστέθηκε στο %s" -#: tbl_structure.php:506 tbl_structure.php:508 +#: tbl_structure.php:504 tbl_structure.php:506 msgid "Relation view" msgstr "Εμφάνιση συσχετίσεων" -#: tbl_structure.php:515 tbl_structure.php:517 +#: tbl_structure.php:513 tbl_structure.php:515 msgid "Propose table structure" msgstr "Προτεινόμενη δομή πίνακα" -#: tbl_structure.php:540 +#: tbl_structure.php:538 #, fuzzy #| msgid "Add column(s)" msgid "Add column" msgstr "Προσθήκη στήλης(ών)" -#: tbl_structure.php:554 +#: tbl_structure.php:552 msgid "At End of Table" msgstr "Στο τέλος του Πίνακα" -#: tbl_structure.php:555 +#: tbl_structure.php:553 msgid "At Beginning of Table" msgstr "Στην αρχή του Πίνακα" -#: tbl_structure.php:556 +#: tbl_structure.php:554 #, php-format msgid "After %s" msgstr "Μετά το %s" -#: tbl_structure.php:594 +#: tbl_structure.php:592 #, fuzzy, php-format msgid "Create an index on  %s columns" msgstr "Δημιουργία ευρετηρίου σε «%s» πεδία" -#: tbl_structure.php:756 +#: tbl_structure.php:754 msgid "partitioned" msgstr "κατατμήθηκε" @@ -8919,9 +8968,6 @@ msgstr "Μετονομασία πίνακα σε" #~ msgid "Process list" #~ msgstr "Λίστα διεργασιών" -#~ msgid "Reload privileges" -#~ msgstr "Επαναφόρτωση δικαιωμάτων" - #~ msgid "" #~ "The users will still have the USAGE privilege until the privileges are " #~ "reloaded." diff --git a/po/en_GB.po b/po/en_GB.po index c000b24a3..0a3c5a3d6 100755 --- a/po/en_GB.po +++ b/po/en_GB.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-13 09:03-0400\n" +"POT-Creation-Date: 2010-06-22 00:55+0530\n" "PO-Revision-Date: 2010-06-09 10:42+0200\n" "Last-Translator: Michal \n" "Language-Team: english-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:1514 +#: libraries/display_tbl.lib.php:417 server_privileges.php:1534 msgid "Show all" msgstr "Show all" -#: browse_foreigners.php:82 libraries/common.lib.php:2313 +#: browse_foreigners.php:82 libraries/common.lib.php:2317 #: 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,18 +38,18 @@ 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:2831 -#: libraries/common.lib.php:2838 libraries/db_links.inc.php:75 +#: db_structure.php:106 libraries/common.lib.php:2835 +#: libraries/common.lib.php:2842 libraries/db_links.inc.php:75 #: libraries/tbl_links.inc.php:63 msgid "Search" msgstr "Search" -#: browse_foreigners.php:153 db_operations.php:385 db_operations.php:429 -#: db_operations.php:499 db_operations.php:609 db_search.php:362 -#: db_structure.php:567 js/messages.php:48 libraries/Config.class.php:1046 +#: browse_foreigners.php:153 db_operations.php:394 db_operations.php:438 +#: db_operations.php:508 db_operations.php:618 db_search.php:362 +#: db_structure.php:565 js/messages.php:53 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:1335 libraries/common.lib.php:2288 +#: libraries/common.lib.php:1335 libraries/common.lib.php:2292 #: 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,15 +60,15 @@ 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:664 server_privileges.php:1624 -#: server_privileges.php:1971 server_privileges.php:2018 -#: server_privileges.php:2057 server_replication.php:235 +#: server_privileges.php:665 server_privileges.php:1644 +#: server_privileges.php:1991 server_privileges.php:2038 +#: server_privileges.php:2078 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 #: tbl_operations.php:302 tbl_operations.php:499 tbl_operations.php:561 -#: tbl_operations.php:681 tbl_select.php:327 tbl_structure.php:562 -#: tbl_structure.php:597 tbl_tracking.php:395 tbl_tracking.php:512 +#: tbl_operations.php:681 tbl_select.php:327 tbl_structure.php:560 +#: tbl_structure.php:595 tbl_tracking.php:395 tbl_tracking.php:512 #: view_create.php:182 view_operations.php:101 msgid "Go" msgstr "Go" @@ -94,7 +94,7 @@ msgstr "Use this value" msgid "Database %1$s has been created." msgstr "Database %1$s has been created." -#: db_datadict.php:49 db_operations.php:378 +#: db_datadict.php:49 db_operations.php:387 msgid "Database comment: " msgstr "Database comment: " @@ -119,10 +119,10 @@ 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:2070 +#: pdf_schema.php:1263 pdf_schema.php:1284 server_privileges.php:2091 #: 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 +#: tbl_structure.php:657 tbl_tracking.php:274 tbl_tracking.php:321 msgid "Type" msgstr "Type" @@ -135,7 +135,7 @@ msgstr "Type" msgid "Null" msgstr "Null" -#: db_datadict.php:178 db_structure.php:501 libraries/export/htmlword.php:247 +#: db_datadict.php:178 db_structure.php:499 libraries/export/htmlword.php:247 #: libraries/export/latex.php:360 libraries/export/odt.php:303 #: libraries/export/texytext.php:236 libraries/tbl_properties.inc.php:106 #: pdf_schema.php:1266 pdf_schema.php:1287 tbl_printview.php:146 @@ -163,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: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 +#: pdf_schema.php:1344 server_privileges.php:1588 server_privileges.php:1599 +#: server_privileges.php:1909 server_privileges.php:1914 +#: server_privileges.php:2208 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" @@ -179,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:1565 -#: server_privileges.php:1579 server_privileges.php:1889 -#: server_privileges.php:1892 server_privileges.php:2187 sql.php:193 +#: server_databases.php:64 server_privileges.php:1585 +#: server_privileges.php:1599 server_privileges.php:1909 +#: server_privileges.php:1912 server_privileges.php:2208 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" @@ -208,119 +208,115 @@ msgstr "Select All" msgid "Unselect All" msgstr "Unselect All" -#: db_operations.php:38 tbl_create.php:54 +#: db_operations.php:43 tbl_create.php:54 msgid "The database name is empty!" msgstr "The database name is empty!" -#: db_operations.php:236 +#: db_operations.php:241 #, php-format msgid "Database %s has been renamed to %s" msgstr "Database %s has been renamed to %s" -#: db_operations.php:240 +#: db_operations.php:245 #, php-format msgid "Database %s has been copied to %s" msgstr "Database %s has been copied to %s" -#: db_operations.php:412 +#: db_operations.php:421 msgid "Rename database to" msgstr "Rename database to" -#: db_operations.php:417 server_processlist.php:57 +#: db_operations.php:426 server_processlist.php:57 msgid "Command" msgstr "Command" -#: db_operations.php:429 tbl_change.php:1143 -msgid "and then" -msgstr "and then" - -#: db_operations.php:455 +#: db_operations.php:464 msgid "Copy database to" msgstr "Copy database to" -#: db_operations.php:462 tbl_operations.php:528 tbl_tracking.php:388 +#: db_operations.php:471 tbl_operations.php:528 tbl_tracking.php:388 msgid "Structure only" msgstr "Structure only" -#: db_operations.php:463 tbl_operations.php:529 tbl_tracking.php:390 +#: db_operations.php:472 tbl_operations.php:529 tbl_tracking.php:390 msgid "Structure and data" msgstr "Structure and data" -#: db_operations.php:464 tbl_operations.php:530 tbl_tracking.php:389 +#: db_operations.php:473 tbl_operations.php:530 tbl_tracking.php:389 msgid "Data only" msgstr "Data only" -#: db_operations.php:472 +#: db_operations.php:481 msgid "CREATE DATABASE before copying" msgstr "CREATE DATABASE before copying" -#: db_operations.php:475 libraries/export/sql.php:52 +#: db_operations.php:484 libraries/export/sql.php:52 #: libraries/export/sql.php:74 libraries/export/sql.php:76 #: libraries/export/sql.php:82 tbl_operations.php:536 #, php-format msgid "Add %s" msgstr "Add %s" -#: db_operations.php:479 libraries/export/sql.php:78 tbl_operations.php:299 +#: db_operations.php:488 libraries/export/sql.php:78 tbl_operations.php:299 #: tbl_operations.php:538 msgid "Add AUTO_INCREMENT value" msgstr "Add AUTO_INCREMENT value" -#: db_operations.php:483 tbl_operations.php:545 +#: db_operations.php:492 tbl_operations.php:545 msgid "Add constraints" msgstr "Add constraints" -#: db_operations.php:496 +#: db_operations.php:505 msgid "Switch to copied database" msgstr "Switch to copied database" -#: db_operations.php:537 +#: db_operations.php:546 msgid "BLOB Repository" msgstr "BLOB Repository" -#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1352 -#: libraries/server_links.inc.php:49 server_processlist.php:59 +#: db_operations.php:549 db_tracking.php:76 libraries/common.lib.php:1352 +#: libraries/server_links.inc.php:50 server_processlist.php:59 #: tbl_tracking.php:596 test/theme.php:101 msgid "Status" msgstr "Status" -#: db_operations.php:548 +#: db_operations.php:557 msgctxt "BLOB repository" msgid "Enabled" msgstr "Enabled" -#: db_operations.php:552 +#: db_operations.php:561 msgid "Disable" msgstr "Disable" -#: db_operations.php:562 +#: db_operations.php:571 msgid "Damaged" msgstr "Damaged" -#: db_operations.php:566 +#: db_operations.php:575 msgctxt "BLOB repository" msgid "Repair" msgstr "Repair" -#: db_operations.php:574 +#: db_operations.php:583 msgctxt "BLOB repository" msgid "Disabled" msgstr "Disabled" -#: db_operations.php:578 +#: db_operations.php:587 msgid "Enable" msgstr "Enable" -#: db_operations.php:602 libraries/Index.class.php:448 +#: db_operations.php:611 libraries/Index.class.php:448 #: libraries/db_structure.lib.php:62 libraries/mysql_charsets.lib.php:107 #: libraries/tbl_properties.inc.php:107 libraries/tbl_properties.inc.php:730 #: server_collations.php:54 server_collations.php:66 server_databases.php:111 #: tbl_operations.php:363 tbl_select.php:137 tbl_structure.php:179 -#: tbl_structure.php:767 tbl_tracking.php:275 tbl_tracking.php:326 +#: tbl_structure.php:765 tbl_tracking.php:275 tbl_tracking.php:326 msgid "Collation" msgstr "Collation" -#: db_operations.php:615 main.php:316 pdf_schema.php:34 +#: db_operations.php:624 main.php:316 pdf_schema.php:34 #, php-format msgid "" "The additional features for working with linked tables have been " @@ -329,14 +325,14 @@ msgstr "" "The additional features for working with linked tables have been " "deactivated. To find out why click %shere%s." -#: db_operations.php:648 +#: db_operations.php:657 msgid "Edit PDF Pages" 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:1665 -#: server_privileges.php:1721 server_privileges.php:1985 +#: libraries/header.inc.php:130 pdf_pages.php:424 server_privileges.php:1685 +#: server_privileges.php:1741 server_privileges.php:2005 #: server_synchronize.php:423 server_synchronize.php:866 tbl_tracking.php:592 #: test/theme.php:75 msgid "Table" @@ -345,7 +341,7 @@ msgstr "Table" #: db_printview.php:105 libraries/db_structure.lib.php:56 #: libraries/header_printview.inc.php:63 libraries/import.lib.php:146 #: navigation.php:638 navigation.php:660 server_databases.php:122 -#: tbl_printview.php:394 tbl_structure.php:365 tbl_structure.php:777 +#: tbl_printview.php:394 tbl_structure.php:365 tbl_structure.php:775 msgid "Rows" msgstr "Rows" @@ -353,30 +349,30 @@ msgstr "Rows" msgid "Size" msgstr "Size" -#: db_printview.php:162 db_structure.php:457 libraries/export/sql.php:559 +#: db_printview.php:162 db_structure.php:455 libraries/export/sql.php:559 #: libraries/export/sql.php:899 msgid "in use" msgstr "in use" #: db_printview.php:187 libraries/db_info.inc.php:88 #: libraries/export/sql.php:514 pdf_schema.php:1241 tbl_printview.php:434 -#: tbl_structure.php:809 +#: tbl_structure.php:807 msgid "Creation" msgstr "Creation" #: db_printview.php:196 libraries/db_info.inc.php:93 #: libraries/export/sql.php:519 pdf_schema.php:1246 tbl_printview.php:444 -#: tbl_structure.php:817 +#: tbl_structure.php:815 msgid "Last update" msgstr "Last update" #: db_printview.php:205 libraries/db_info.inc.php:98 #: libraries/export/sql.php:524 pdf_schema.php:1251 tbl_printview.php:454 -#: tbl_structure.php:825 +#: tbl_structure.php:823 msgid "Last check" msgstr "Last check" -#: db_printview.php:222 db_structure.php:480 +#: db_printview.php:222 db_structure.php:478 #, php-format msgid "%s table" msgid_plural "%s tables" @@ -436,7 +432,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:297 tbl_change.php:1031 tbl_indexes.php:250 +#: server_privileges.php:298 tbl_change.php:1031 tbl_indexes.php:250 #: tbl_select.php:288 msgid "Or" msgstr "Or" @@ -505,9 +501,9 @@ 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:2833 +#: db_structure.php:105 libraries/common.lib.php:2837 #: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50 -#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:467 +#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:465 msgid "Browse" msgstr "Browse" @@ -550,36 +546,36 @@ 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:2832 libraries/sql_query_form.lib.php:334 +#: libraries/common.lib.php:2836 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:2829 libraries/common.lib.php:2836 +#: libraries/common.lib.php:2833 libraries/common.lib.php:2840 #: 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:1106 #: libraries/tbl_links.inc.php:56 pmd_general.php:134 -#: server_privileges.php:593 server_replication.php:315 tbl_tracking.php:269 +#: server_privileges.php:594 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:1656 +#: db_structure.php:543 db_structure.php:544 db_tracking.php:91 +#: libraries/Index.class.php:483 libraries/common.lib.php:1657 #: 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 -#: tbl_structure.php:152 tbl_structure.php:471 +#: tbl_structure.php:152 tbl_structure.php:469 msgid "Drop" 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:1655 +#: db_structure.php:541 db_structure.php:542 libraries/common.lib.php:1656 #: libraries/mult_submits.inc.php:39 libraries/tbl_links.inc.php:105 msgid "Empty" msgstr "Empty" @@ -589,25 +585,25 @@ msgstr "Empty" msgid "Table %s has been emptied" msgstr "Table %s has been emptied" -#: db_structure.php:326 libraries/tbl_links.inc.php:133 +#: db_structure.php:325 libraries/tbl_links.inc.php:133 #, php-format msgid "View %s has been dropped" msgstr "View %s has been dropped" -#: db_structure.php:326 libraries/tbl_links.inc.php:133 +#: db_structure.php:325 libraries/tbl_links.inc.php:133 #, php-format msgid "Table %s has been dropped" msgstr "Table %s has been dropped" -#: db_structure.php:333 +#: db_structure.php:332 msgid "Tracking is active." msgstr "Tracking is active." -#: db_structure.php:335 +#: db_structure.php:334 msgid "Tracking is not active." msgstr "Tracking is not active." -#: db_structure.php:420 libraries/display_tbl.lib.php:1944 +#: db_structure.php:418 libraries/display_tbl.lib.php:1944 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation%" @@ -616,86 +612,86 @@ msgstr "" "This view has at least this number of rows. Please refer to %sdocumentation%" "s." -#: db_structure.php:434 db_structure.php:448 libraries/header.inc.php:126 +#: db_structure.php:432 db_structure.php:446 libraries/header.inc.php:130 #: libraries/tbl_info.inc.php:66 tbl_structure.php:185 test/theme.php:74 msgid "View" msgstr "View" -#: db_structure.php:485 libraries/db_structure.lib.php:49 -#: libraries/server_links.inc.php:70 server_replication.php:33 +#: db_structure.php:483 libraries/db_structure.lib.php:49 +#: libraries/server_links.inc.php:71 server_replication.php:33 #: server_replication.php:164 server_status.php:369 msgid "Replication" msgstr "Replication" -#: db_structure.php:489 +#: db_structure.php:487 msgid "Sum" msgstr "Sum" -#: db_structure.php:496 libraries/StorageEngine.class.php:356 +#: db_structure.php:494 libraries/StorageEngine.class.php:356 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "%s is the default storage engine on this MySQL server." -#: db_structure.php:524 db_structure.php:541 db_structure.php:542 +#: db_structure.php:522 db_structure.php:539 db_structure.php:540 #: 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:1596 tbl_structure.php:455 -#: tbl_structure.php:464 +#: server_databases.php:351 server_privileges.php:1616 tbl_structure.php:453 +#: tbl_structure.php:462 msgid "With selected:" msgstr "With selected:" -#: db_structure.php:527 libraries/display_tbl.lib.php:2076 -#: server_databases.php:348 server_privileges.php:569 -#: server_privileges.php:1599 tbl_structure.php:458 +#: db_structure.php:525 libraries/display_tbl.lib.php:2076 +#: server_databases.php:348 server_privileges.php:570 +#: server_privileges.php:1619 tbl_structure.php:456 msgid "Check All" msgstr "Check All" -#: db_structure.php:531 libraries/display_tbl.lib.php:2077 +#: db_structure.php:529 libraries/display_tbl.lib.php:2077 #: libraries/replication_gui.lib.php:33 server_databases.php:350 -#: server_privileges.php:572 server_privileges.php:1603 tbl_structure.php:462 +#: server_privileges.php:573 server_privileges.php:1623 tbl_structure.php:460 msgid "Uncheck All" msgstr "Uncheck All" -#: db_structure.php:536 +#: db_structure.php:534 msgid "Check tables having overhead" msgstr "Check tables having overhead" -#: db_structure.php:547 db_structure.php:548 db_structure.php:599 +#: db_structure.php:545 db_structure.php:546 db_structure.php:597 #: libraries/display_tbl.lib.php:2180 libraries/mult_submits.inc.php:28 -#: tbl_structure.php:492 tbl_structure.php:494 +#: tbl_structure.php:490 tbl_structure.php:492 msgid "Print view" msgstr "Print view" -#: db_structure.php:549 db_structure.php:550 libraries/mult_submits.inc.php:42 +#: db_structure.php:547 db_structure.php:548 libraries/mult_submits.inc.php:42 #: tbl_operations.php:581 msgid "Check table" msgstr "Check table" -#: db_structure.php:551 db_structure.php:552 libraries/mult_submits.inc.php:47 -#: tbl_operations.php:621 tbl_structure.php:709 tbl_structure.php:711 +#: db_structure.php:549 db_structure.php:550 libraries/mult_submits.inc.php:47 +#: tbl_operations.php:621 tbl_structure.php:707 tbl_structure.php:709 msgid "Optimize table" msgstr "Optimise table" -#: db_structure.php:553 db_structure.php:554 libraries/mult_submits.inc.php:52 +#: db_structure.php:551 db_structure.php:552 libraries/mult_submits.inc.php:52 #: tbl_operations.php:611 msgid "Repair table" msgstr "Repair table" -#: db_structure.php:555 db_structure.php:556 libraries/mult_submits.inc.php:57 +#: db_structure.php:553 db_structure.php:554 libraries/mult_submits.inc.php:57 #: tbl_operations.php:601 msgid "Analyze table" msgstr "Analyse table" -#: db_structure.php:557 db_structure.php:558 libraries/db_links.inc.php:71 +#: db_structure.php:555 db_structure.php:556 libraries/db_links.inc.php:71 #: 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:1380 +#: libraries/server_links.inc.php:85 libraries/tbl_links.inc.php:82 +#: pmd_pdf.php:84 pmd_pdf.php:109 server_privileges.php:1397 #: setup/frames/menu.inc.php:22 tbl_row_action.php:59 msgid "Export" msgstr "Export" -#: db_structure.php:606 libraries/display_pdf_schema.lib.php:44 +#: db_structure.php:604 libraries/display_pdf_schema.lib.php:44 msgid "Data Dictionary" msgstr "Data Dictionary" @@ -706,10 +702,10 @@ msgstr "Tracked tables" #: db_tracking.php:71 libraries/export/htmlword.php:86 #: libraries/export/latex.php:148 libraries/export/odt.php:113 #: libraries/export/sql.php:342 libraries/export/texytext.php:84 -#: libraries/export/xml.php:255 libraries/header.inc.php:106 +#: libraries/export/xml.php:255 libraries/header.inc.php:110 #: libraries/header_printview.inc.php:58 server_databases.php:169 -#: server_privileges.php:1660 server_privileges.php:1721 -#: server_privileges.php:1979 server_processlist.php:56 +#: server_privileges.php:1680 server_privileges.php:1741 +#: server_privileges.php:1999 server_processlist.php:56 #: server_synchronize.php:1179 server_synchronize.php:1183 #: tbl_tracking.php:591 test/theme.php:65 msgid "Database" @@ -729,8 +725,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:1542 server_privileges.php:1725 -#: server_privileges.php:2073 tbl_structure.php:187 +#: server_privileges.php:1562 server_privileges.php:1745 +#: server_privileges.php:2094 tbl_structure.php:187 msgid "Action" msgstr "Action" @@ -764,8 +760,8 @@ msgstr "Structure snapshot" msgid "Untracked tables" msgstr "Untracked tables" -#: db_tracking.php:172 db_tracking.php:174 tbl_structure.php:528 -#: tbl_structure.php:530 +#: db_tracking.php:172 db_tracking.php:174 tbl_structure.php:526 +#: tbl_structure.php:528 msgid "Track table" msgstr "Track table" @@ -929,316 +925,365 @@ 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:1236 user_password.php:70 +#: js/messages.php:44 server_privileges.php:1241 user_password.php:70 msgid "The password is empty!" msgstr "The password is empty!" -#: js/messages.php:45 server_privileges.php:1234 user_password.php:73 +#: js/messages.php:45 server_privileges.php:1239 user_password.php:73 msgid "The passwords aren't the same!" msgstr "The passwords aren't the same!" -#: js/messages.php:49 pmd_general.php:342 pmd_general.php:379 +#: js/messages.php:46 +#, fuzzy +#| msgid "Add a new User" +msgid "Add a New User" +msgstr "Add a new User" + +#: js/messages.php:47 js/messages.php:54 pmd_general.php:342 +#: pmd_general.php:379 msgid "Cancel" msgstr "Cancel" -#: js/messages.php:52 pmd_save_pos.php:54 +#: js/messages.php:48 +#, fuzzy +#| msgid "Create version" +msgid "Create User" +msgstr "Create version" + +#: js/messages.php:49 +#, fuzzy +#| msgid "Reloading the privileges" +msgid "Reloading Privileges" +msgstr "Reloading the privileges" + +#: js/messages.php:50 +#, fuzzy +#| msgid "Remove selected users" +msgid "Removing Selected Users" +msgstr "Remove selected users" + +#: js/messages.php:57 +#, fuzzy +#| msgid "Load" +msgid "Loading" +msgstr "Load" + +#: js/messages.php:58 +#, fuzzy +#| msgid "Processes" +msgid "Processing Request" +msgstr "Processes" + +#: js/messages.php:59 +msgid "Error in Processing Request" +msgstr "" + +#: js/messages.php:60 +msgid "Dropping Column" +msgstr "" + +#: js/messages.php:61 +msgid "Adding Primary Key" +msgstr "" + +#: js/messages.php:64 pmd_save_pos.php:54 msgid "Modifications have been saved" msgstr "Modifications have been saved" -#: js/messages.php:53 pmd_relation_upd.php:49 +#: js/messages.php:65 pmd_relation_upd.php:49 msgid "Relation deleted" msgstr "Relation deleted" -#: js/messages.php:54 pmd_relation_new.php:64 +#: js/messages.php:66 pmd_relation_new.php:64 msgid "FOREIGN KEY relation added" msgstr "FOREIGN KEY relation added" -#: js/messages.php:55 pmd_relation_new.php:86 +#: js/messages.php:67 pmd_relation_new.php:86 msgid "Internal relation added" msgstr "Internal relation added" -#: js/messages.php:56 pmd_relation_new.php:63 pmd_relation_new.php:88 +#: js/messages.php:68 pmd_relation_new.php:63 pmd_relation_new.php:88 msgid "Error: Relation not added." msgstr "Error: Relation not added." -#: js/messages.php:57 pmd_relation_new.php:31 +#: js/messages.php:69 pmd_relation_new.php:31 msgid "Error: relation already exists." msgstr "Error: relation already exists." -#: js/messages.php:58 +#: js/messages.php:70 msgid "Error saving coordinates for Designer." msgstr "Error saving coordinates for Designer." -#: js/messages.php:59 libraries/relation.lib.php:107 +#: js/messages.php:71 libraries/relation.lib.php:107 #: libraries/relation.lib.php:119 msgid "General relation features" msgstr "General relation features" -#: js/messages.php:59 libraries/relation.lib.php:101 +#: js/messages.php:71 libraries/relation.lib.php:101 #: libraries/relation.lib.php:108 msgid "Disabled" msgstr "Disabled" -#: js/messages.php:60 +#: js/messages.php:72 msgid "Select referenced key" msgstr "Select referenced key" -#: js/messages.php:61 +#: js/messages.php:73 msgid "Select Foreign Key" msgstr "Select Foreign Key" -#: js/messages.php:62 +#: js/messages.php:74 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 +#: js/messages.php:75 pmd_general.php:77 tbl_relation.php:548 msgid "Choose column to display" msgstr "Choose column to display" #. l10n: Display text for calendar close link -#: js/messages.php:73 +#: js/messages.php:85 msgid "Done" msgstr "Done" #. l10n: Display text for previous month link in calendar -#: js/messages.php:75 +#: js/messages.php:87 msgid "Prev" msgstr "Prev" #. l10n: Display text for next month link in calendar -#: js/messages.php:77 libraries/common.lib.php:2353 -#: libraries/common.lib.php:2356 libraries/display_tbl.lib.php:338 +#: js/messages.php:89 libraries/common.lib.php:2357 +#: libraries/common.lib.php:2360 libraries/display_tbl.lib.php:338 #: server_binlog.php:205 server_binlog.php:207 tbl_printview.php:424 -#: tbl_structure.php:801 +#: tbl_structure.php:799 msgid "Next" msgstr "Next" #. l10n: Display text for current month link in calendar -#: js/messages.php:79 +#: js/messages.php:91 msgid "Today" msgstr "Today" -#: js/messages.php:82 +#: js/messages.php:94 msgid "January" msgstr "January" -#: js/messages.php:83 +#: js/messages.php:95 msgid "February" msgstr "February" -#: js/messages.php:84 +#: js/messages.php:96 msgid "March" msgstr "March" -#: js/messages.php:85 +#: js/messages.php:97 msgid "April" msgstr "April" -#: js/messages.php:86 +#: js/messages.php:98 msgid "May" msgstr "May" -#: js/messages.php:87 +#: js/messages.php:99 msgid "June" msgstr "June" -#: js/messages.php:88 +#: js/messages.php:100 msgid "July" msgstr "July" -#: js/messages.php:89 +#: js/messages.php:101 msgid "August" msgstr "August" -#: js/messages.php:90 +#: js/messages.php:102 msgid "September" msgstr "September" -#: js/messages.php:91 +#: js/messages.php:103 msgid "October" msgstr "October" -#: js/messages.php:92 +#: js/messages.php:104 msgid "November" msgstr "November" -#: js/messages.php:93 +#: js/messages.php:105 msgid "December" msgstr "December" #. l10n: Short month name -#: js/messages.php:97 libraries/common.lib.php:1557 +#: js/messages.php:109 libraries/common.lib.php:1557 msgid "Jan" msgstr "Jan" #. l10n: Short month name -#: js/messages.php:99 libraries/common.lib.php:1559 +#: js/messages.php:111 libraries/common.lib.php:1559 msgid "Feb" msgstr "Feb" #. l10n: Short month name -#: js/messages.php:101 libraries/common.lib.php:1561 +#: js/messages.php:113 libraries/common.lib.php:1561 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:103 libraries/common.lib.php:1563 +#: js/messages.php:115 libraries/common.lib.php:1563 msgid "Apr" msgstr "Apr" #. l10n: Short month name -#: js/messages.php:105 libraries/common.lib.php:1565 +#: js/messages.php:117 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:1567 +#: js/messages.php:119 libraries/common.lib.php:1567 msgid "Jun" msgstr "Jun" #. l10n: Short month name -#: js/messages.php:109 libraries/common.lib.php:1569 +#: js/messages.php:121 libraries/common.lib.php:1569 msgid "Jul" msgstr "Jul" #. l10n: Short month name -#: js/messages.php:111 libraries/common.lib.php:1571 +#: js/messages.php:123 libraries/common.lib.php:1571 msgid "Aug" msgstr "Aug" #. l10n: Short month name -#: js/messages.php:113 libraries/common.lib.php:1573 +#: js/messages.php:125 libraries/common.lib.php:1573 msgid "Sep" msgstr "Sep" #. l10n: Short month name -#: js/messages.php:115 libraries/common.lib.php:1575 +#: js/messages.php:127 libraries/common.lib.php:1575 msgid "Oct" msgstr "Oct" #. l10n: Short month name -#: js/messages.php:117 libraries/common.lib.php:1577 +#: js/messages.php:129 libraries/common.lib.php:1577 msgid "Nov" msgstr "Nov" #. l10n: Short month name -#: js/messages.php:119 libraries/common.lib.php:1579 +#: js/messages.php:131 libraries/common.lib.php:1579 msgid "Dec" msgstr "Dec" -#: js/messages.php:122 +#: js/messages.php:134 msgid "Sunday" msgstr "Sunday" -#: js/messages.php:123 +#: js/messages.php:135 msgid "Monday" msgstr "Monday" -#: js/messages.php:124 +#: js/messages.php:136 msgid "Tuesday" msgstr "Tuesday" -#: js/messages.php:125 +#: js/messages.php:137 msgid "Wednesday" msgstr "Wednesday" -#: js/messages.php:126 +#: js/messages.php:138 msgid "Thursday" msgstr "Thursday" -#: js/messages.php:127 +#: js/messages.php:139 msgid "Friday" msgstr "Friday" -#: js/messages.php:128 +#: js/messages.php:140 msgid "Saturday" msgstr "Saturday" #. l10n: Short week day name -#: js/messages.php:132 libraries/common.lib.php:1582 +#: js/messages.php:144 libraries/common.lib.php:1582 msgid "Sun" msgstr "Sun" #. l10n: Short week day name -#: js/messages.php:134 libraries/common.lib.php:1584 +#: js/messages.php:146 libraries/common.lib.php:1584 msgid "Mon" msgstr "Mon" #. l10n: Short week day name -#: js/messages.php:136 libraries/common.lib.php:1586 +#: js/messages.php:148 libraries/common.lib.php:1586 msgid "Tue" msgstr "Tue" #. l10n: Short week day name -#: js/messages.php:138 libraries/common.lib.php:1588 +#: js/messages.php:150 libraries/common.lib.php:1588 msgid "Wed" msgstr "Wed" #. l10n: Short week day name -#: js/messages.php:140 libraries/common.lib.php:1590 +#: js/messages.php:152 libraries/common.lib.php:1590 msgid "Thu" msgstr "Thu" #. l10n: Short week day name -#: js/messages.php:142 libraries/common.lib.php:1592 +#: js/messages.php:154 libraries/common.lib.php:1592 msgid "Fri" msgstr "Fri" #. l10n: Short week day name -#: js/messages.php:144 libraries/common.lib.php:1594 +#: js/messages.php:156 libraries/common.lib.php:1594 msgid "Sat" msgstr "Sat" #. l10n: Minimal week day name -#: js/messages.php:148 +#: js/messages.php:160 msgid "Su" msgstr "Su" #. l10n: Minimal week day name -#: js/messages.php:150 +#: js/messages.php:162 msgid "Mo" msgstr "Mo" #. l10n: Minimal week day name -#: js/messages.php:152 +#: js/messages.php:164 msgid "Tu" msgstr "Tu" #. l10n: Minimal week day name -#: js/messages.php:154 +#: js/messages.php:166 msgid "We" msgstr "We" #. l10n: Minimal week day name -#: js/messages.php:156 +#: js/messages.php:168 msgid "Th" msgstr "Th" #. l10n: Minimal week day name -#: js/messages.php:158 +#: js/messages.php:170 msgid "Fr" msgstr "Fr" #. l10n: Minimal week day name -#: js/messages.php:160 +#: js/messages.php:172 msgid "Sa" msgstr "Sa" #. l10n: Column header for week of the year in calendar -#: js/messages.php:162 +#: js/messages.php:174 msgid "Wk" msgstr "Wk" -#: js/messages.php:164 +#: js/messages.php:176 msgid "Hour" msgstr "Hour" -#: js/messages.php:165 +#: js/messages.php:177 msgid "Minute" msgstr "Minute" -#: js/messages.php:166 +#: js/messages.php:178 msgid "Second" msgstr "Second" @@ -1298,7 +1343,7 @@ msgstr "Indexes" #: libraries/Index.class.php:444 libraries/mult_submits.inc.php:103 #: libraries/tbl_properties.inc.php:519 tbl_structure.php:33 -#: tbl_structure.php:155 tbl_structure.php:159 tbl_structure.php:474 +#: tbl_structure.php:155 tbl_structure.php:159 tbl_structure.php:472 #: tbl_tracking.php:322 msgid "Unique" msgstr "Unique" @@ -1341,8 +1386,8 @@ msgstr "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " "removed." -#: libraries/List_Database.class.php:431 libraries/server_links.inc.php:41 -#: server_databases.php:88 server_privileges.php:1660 +#: libraries/List_Database.class.php:431 libraries/server_links.inc.php:42 +#: server_databases.php:88 server_privileges.php:1680 #: setup/lib/messages.inc.php:110 test/theme.php:93 msgid "Databases" msgstr "Databases" @@ -1511,7 +1556,7 @@ msgstr "Password:" msgid "Server Choice" msgstr "Server Choice" -#: libraries/auth/cookie.auth.lib.php:320 libraries/header.inc.php:59 +#: libraries/auth/cookie.auth.lib.php:320 libraries/header.inc.php:63 msgid "Cookies must be enabled past this point." msgstr "Cookies must be enabled past this point." @@ -1592,7 +1637,7 @@ msgstr "" "Couldn't use the iconv, libiconv, or recode_string functions, although the " "necessary extensions appear to be loaded. Check your PHP configuration." -#: libraries/common.inc.php:583 +#: libraries/common.inc.php:587 msgid "" "phpMyAdmin was unable to read your configuration file!
This might " "happen if PHP finds a parse error in it or PHP cannot find the file.
If you receive a blank page, everything " "is fine." -#: libraries/common.inc.php:594 +#: libraries/common.inc.php:598 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "Could not load default configuration from: %1$s" -#: libraries/common.inc.php:599 +#: libraries/common.inc.php:603 msgid "" "The $cfg['PmaAbsoluteUri'] directive MUST be set in your " "configuration file!" @@ -1621,27 +1666,27 @@ msgstr "" "The $cfg['PmaAbsoluteUri'] directive MUST be set in your " "configuration file!" -#: libraries/common.inc.php:629 +#: libraries/common.inc.php:633 #, php-format msgid "Invalid server index: %s" msgstr "Invalid server index: %s" -#: libraries/common.inc.php:636 +#: libraries/common.inc.php:640 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "Invalid hostname for server %1$s. Please review your configuration." -#: libraries/common.inc.php:645 libraries/header.inc.php:96 +#: libraries/common.inc.php:649 libraries/header.inc.php:100 #: libraries/select_server.lib.php:41 libraries/select_server.lib.php:47 #: main.php:185 test/theme.php:57 msgid "Server" msgstr "Server" -#: libraries/common.inc.php:823 +#: libraries/common.inc.php:827 msgid "Invalid authentication method set in configuration:" msgstr "Invalid authentication method set in configuration:" -#: libraries/common.inc.php:926 +#: libraries/common.inc.php:930 #, php-format msgid "You should upgrade to %s %s or later." msgstr "You should upgrade to %s %s or later." @@ -1772,45 +1817,45 @@ msgstr "." msgid "%B %d, %Y at %I:%M %p" msgstr "%B %d, %Y at %I:%M %p" -#: libraries/common.lib.php:1907 +#: libraries/common.lib.php:1911 #, 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:2322 libraries/common.lib.php:2325 +#: libraries/common.lib.php:2326 libraries/common.lib.php:2329 #: libraries/display_tbl.lib.php:290 server_status.php:719 msgid "Begin" msgstr "Begin" -#: libraries/common.lib.php:2323 libraries/common.lib.php:2326 +#: libraries/common.lib.php:2327 libraries/common.lib.php:2330 #: libraries/display_tbl.lib.php:291 server_binlog.php:168 #: server_binlog.php:170 msgid "Previous" msgstr "Previous" -#: libraries/common.lib.php:2354 libraries/common.lib.php:2357 +#: libraries/common.lib.php:2358 libraries/common.lib.php:2361 #: libraries/display_tbl.lib.php:353 msgid "End" msgstr "End" -#: libraries/common.lib.php:2430 +#: libraries/common.lib.php:2434 #, php-format msgid "Jump to database "%s"." msgstr "Jump to database "%s"." -#: libraries/common.lib.php:2450 +#: libraries/common.lib.php:2454 #, 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:2830 libraries/common.lib.php:2837 +#: libraries/common.lib.php:2834 libraries/common.lib.php:2841 #: libraries/db_links.inc.php:68 libraries/export/sql.php:25 -#: libraries/import/sql.php:18 libraries/server_links.inc.php:45 +#: libraries/import/sql.php:18 libraries/server_links.inc.php:46 #: libraries/tbl_links.inc.php:60 querywindow.php:99 test/theme.php:97 msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2839 libraries/db_links.inc.php:104 +#: libraries/common.lib.php:2843 libraries/db_links.inc.php:104 #: libraries/tbl_links.inc.php:95 libraries/tbl_links.inc.php:117 #: view_operations.php:89 msgid "Operations" @@ -1859,15 +1904,15 @@ msgstr "Query" msgid "Designer" msgstr "Designer" -#: libraries/db_links.inc.php:98 libraries/server_links.inc.php:88 +#: libraries/db_links.inc.php:98 libraries/server_links.inc.php:89 #: libraries/tbl_links.inc.php:91 pmd_pdf.php:84 pmd_pdf.php:110 #: setup/frames/menu.inc.php:21 msgid "Import" msgstr "Import" -#: libraries/db_links.inc.php:111 libraries/server_links.inc.php:66 -#: server_privileges.php:111 server_privileges.php:1722 -#: server_privileges.php:2071 test/theme.php:117 +#: libraries/db_links.inc.php:111 libraries/server_links.inc.php:67 +#: server_privileges.php:112 server_privileges.php:1742 +#: server_privileges.php:2092 test/theme.php:117 msgid "Privileges" msgstr "Privileges" @@ -1888,7 +1933,7 @@ msgstr "" "3.11[/a]" #: libraries/db_structure.lib.php:69 server_databases.php:142 -#: tbl_printview.php:336 tbl_structure.php:682 +#: tbl_printview.php:336 tbl_structure.php:680 msgid "Overhead" msgstr "Overhead" @@ -1905,7 +1950,7 @@ msgstr "The server is not responding" msgid "(or the local MySQL server's socket is not correctly configured)" msgstr "(or the local MySQL server's socket is not correctly configured)" -#: libraries/dbi/mysql.dbi.lib.php:362 tbl_structure.php:608 +#: libraries/dbi/mysql.dbi.lib.php:362 tbl_structure.php:606 msgid "Details..." msgstr "Details..." @@ -1915,22 +1960,22 @@ msgid "Change password" msgstr "Change password" #: libraries/display_change_password.lib.php:35 -#: libraries/replication_gui.lib.php:345 server_privileges.php:807 +#: libraries/replication_gui.lib.php:345 server_privileges.php:808 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:796 -#: server_privileges.php:800 server_privileges.php:811 -#: server_privileges.php:1538 server_synchronize.php:1175 +#: libraries/replication_gui.lib.php:349 server_privileges.php:797 +#: server_privileges.php:801 server_privileges.php:812 +#: server_privileges.php:1558 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:815 server_privileges.php:818 +#: server_privileges.php:816 server_privileges.php:819 msgid "Re-type" msgstr "Re-type" @@ -1943,12 +1988,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:822 +#: libraries/replication_gui.lib.php:360 server_privileges.php:823 msgid "Generate Password" msgstr "Generate Password" #: libraries/display_change_password.lib.php:75 -#: libraries/replication_gui.lib.php:363 server_privileges.php:825 +#: libraries/replication_gui.lib.php:363 server_privileges.php:826 msgid "Generate" msgstr "Generate" @@ -1961,8 +2006,8 @@ msgstr "Create new database" msgid "Create" msgstr "Create" -#: libraries/display_create_database.lib.php:40 server_privileges.php:113 -#: server_privileges.php:1427 server_replication.php:35 +#: libraries/display_create_database.lib.php:40 server_privileges.php:114 +#: server_privileges.php:1447 server_replication.php:35 msgid "No Privileges" msgstr "No Privileges" @@ -2048,7 +2093,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:1875 server_processlist.php:75 +#: server_privileges.php:1895 server_processlist.php:75 msgid "None" msgstr "None" @@ -2239,7 +2284,7 @@ msgstr "Sort by key" #: libraries/import/docsql.php:34 libraries/import/ldi.php:47 #: libraries/import/ods.php:30 libraries/import/sql.php:20 #: libraries/import/xls.php:26 libraries/import/xlsx.php:26 -#: libraries/import/xml.php:25 tbl_select.php:267 tbl_structure.php:753 +#: libraries/import/xml.php:25 tbl_select.php:267 tbl_structure.php:751 msgid "Options" msgstr "Options" @@ -2314,7 +2359,7 @@ msgstr "Query took %01.4f sec" #: libraries/display_tbl.lib.php:2089 libraries/mult_submits.inc.php:113 #: querywindow.php:125 querywindow.php:129 querywindow.php:132 -#: tbl_structure.php:25 tbl_structure.php:150 tbl_structure.php:470 +#: tbl_structure.php:25 tbl_structure.php:150 tbl_structure.php:468 msgid "Change" msgstr "Change" @@ -2384,7 +2429,7 @@ msgstr "Buffer Pool Usage" #: libraries/engines/innodb.lib.php:194 server_databases.php:137 #: server_databases.php:305 server_status.php:525 server_status.php:586 -#: server_status.php:607 tbl_printview.php:351 tbl_structure.php:696 +#: server_status.php:607 tbl_printview.php:351 tbl_structure.php:694 msgid "Total" msgstr "Total" @@ -2669,7 +2714,7 @@ msgstr "" "number." #: libraries/export/codegen.php:37 setup/lib/messages.inc.php:88 -#: tbl_printview.php:376 tbl_structure.php:737 +#: tbl_printview.php:376 tbl_structure.php:735 msgid "Format" msgstr "Format" @@ -2733,8 +2778,8 @@ 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:576 server_replication.php:316 tbl_printview.php:317 -#: tbl_structure.php:665 +#: server_privileges.php:577 server_replication.php:316 tbl_printview.php:317 +#: tbl_structure.php:663 msgid "Data" msgstr "Data" @@ -2783,9 +2828,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:731 -#: server_privileges.php:734 server_privileges.php:790 -#: server_privileges.php:1537 server_privileges.php:2069 +#: libraries/replication_gui.lib.php:329 server_privileges.php:732 +#: server_privileges.php:735 server_privileges.php:791 +#: server_privileges.php:1557 server_privileges.php:2090 #: server_processlist.php:55 server_synchronize.php:1159 msgid "Host" msgstr "Host" @@ -2978,7 +3023,7 @@ msgstr "Export contents" msgid "Open new phpMyAdmin window" msgstr "Open new phpMyAdmin window" -#: libraries/header.inc.php:115 +#: libraries/header.inc.php:119 msgid "New table" msgstr "New table" @@ -3137,20 +3182,20 @@ msgstr "Convert to Kana" #: 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 +#: tbl_structure.php:471 msgid "Primary" msgstr "Primary" #: libraries/mult_submits.inc.php:98 libraries/tbl_properties.inc.php:116 #: libraries/tbl_properties.inc.php:525 tbl_printview.php:326 #: tbl_structure.php:31 tbl_structure.php:154 tbl_structure.php:158 -#: tbl_structure.php:475 tbl_structure.php:673 +#: tbl_structure.php:473 tbl_structure.php:671 msgid "Index" msgstr "Index" #: libraries/mult_submits.inc.php:108 libraries/tbl_properties.inc.php:531 #: tbl_structure.php:35 tbl_structure.php:156 tbl_structure.php:160 -#: tbl_structure.php:478 +#: tbl_structure.php:476 msgid "Fulltext" msgstr "Fulltext" @@ -3457,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:711 -#: server_privileges.php:714 server_privileges.php:721 +#: libraries/replication_gui.lib.php:259 server_privileges.php:712 +#: server_privileges.php:715 server_privileges.php:722 #: server_synchronize.php:1171 msgid "User name" msgstr "User name" @@ -3482,7 +3527,7 @@ msgstr "Variable" #: 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 +#: tbl_structure.php:727 msgid "Value" msgstr "Value" @@ -3502,34 +3547,34 @@ msgstr "" msgid "Add slave replication user" msgstr "Add slave replication user" -#: libraries/replication_gui.lib.php:254 server_privileges.php:716 +#: libraries/replication_gui.lib.php:254 server_privileges.php:717 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:717 -#: server_privileges.php:784 server_privileges.php:808 -#: server_privileges.php:1928 server_privileges.php:1958 +#: libraries/replication_gui.lib.php:346 server_privileges.php:718 +#: server_privileges.php:785 server_privileges.php:809 +#: server_privileges.php:1948 server_privileges.php:1978 msgid "Use text field" msgstr "Use text field" -#: libraries/replication_gui.lib.php:302 server_privileges.php:764 +#: libraries/replication_gui.lib.php:302 server_privileges.php:765 msgid "Any host" msgstr "Any host" -#: libraries/replication_gui.lib.php:306 server_privileges.php:768 +#: libraries/replication_gui.lib.php:306 server_privileges.php:769 msgid "Local" msgstr "Local" -#: libraries/replication_gui.lib.php:312 server_privileges.php:773 +#: libraries/replication_gui.lib.php:312 server_privileges.php:774 msgid "This Host" msgstr "This Host" -#: libraries/replication_gui.lib.php:318 server_privileges.php:779 +#: libraries/replication_gui.lib.php:318 server_privileges.php:780 msgid "Use Host Table" msgstr "Use Host Table" -#: libraries/replication_gui.lib.php:331 server_privileges.php:792 +#: libraries/replication_gui.lib.php:331 server_privileges.php:793 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -3565,29 +3610,29 @@ msgstr "Unknown language: %1$s." msgid "Servers" msgstr "Servers" -#: libraries/server_links.inc.php:53 server_engines.php:112 +#: libraries/server_links.inc.php:54 server_engines.php:112 #: server_engines.php:116 server_status.php:415 test/theme.php:105 msgid "Variables" msgstr "Variables" -#: libraries/server_links.inc.php:57 test/theme.php:109 +#: libraries/server_links.inc.php:58 test/theme.php:109 msgid "Charsets" msgstr "Charsets" -#: libraries/server_links.inc.php:61 test/theme.php:113 +#: libraries/server_links.inc.php:62 test/theme.php:113 msgid "Engines" msgstr "Engines" -#: libraries/server_links.inc.php:76 server_binlog.php:110 +#: libraries/server_links.inc.php:77 server_binlog.php:110 #: server_status.php:364 test/theme.php:121 msgid "Binary log" msgstr "Binary log" -#: libraries/server_links.inc.php:80 +#: libraries/server_links.inc.php:81 msgid "Processes" msgstr "Processes" -#: libraries/server_links.inc.php:92 server_synchronize.php:1092 +#: libraries/server_links.inc.php:93 server_synchronize.php:1092 #: server_synchronize.php:1100 msgid "Synchronize" msgstr "Synchronise" @@ -3825,12 +3870,12 @@ msgstr "PARTITION definition" msgid "Save" msgstr "Save" -#: libraries/tbl_properties.inc.php:780 tbl_structure.php:542 +#: libraries/tbl_properties.inc.php:780 tbl_structure.php:540 #, php-format msgid "Add %s column(s)" msgstr "Add %s column(s)" -#: libraries/tbl_properties.inc.php:784 tbl_structure.php:536 +#: libraries/tbl_properties.inc.php:784 tbl_structure.php:534 msgid "You have to add at least one column." msgstr "You have to add at least one column." @@ -4003,8 +4048,8 @@ msgstr "Reset" msgid "Protocol version" msgstr "Protocol version" -#: main.php:189 server_privileges.php:1389 server_privileges.php:1536 -#: server_privileges.php:1650 server_privileges.php:2068 +#: main.php:189 server_privileges.php:1406 server_privileges.php:1556 +#: server_privileges.php:1670 server_privileges.php:2089 #: server_processlist.php:54 msgid "User" msgstr "User" @@ -4447,112 +4492,112 @@ msgstr "Storage Engines" msgid "View dump (schema) of databases" msgstr "View dump (schema) of databases" -#: server_privileges.php:24 server_privileges.php:266 +#: server_privileges.php:25 server_privileges.php:267 msgid "Includes all privileges except GRANT." msgstr "Includes all privileges except GRANT." -#: server_privileges.php:25 server_privileges.php:192 -#: server_privileges.php:515 +#: server_privileges.php:26 server_privileges.php:193 +#: server_privileges.php:516 msgid "Allows altering the structure of existing tables." msgstr "Allows altering the structure of existing tables." -#: server_privileges.php:26 server_privileges.php:208 -#: server_privileges.php:521 +#: server_privileges.php:27 server_privileges.php:209 +#: server_privileges.php:522 msgid "Allows altering and dropping stored routines." msgstr "Allows altering and dropping stored routines." -#: server_privileges.php:27 server_privileges.php:184 -#: server_privileges.php:514 +#: server_privileges.php:28 server_privileges.php:185 +#: server_privileges.php:515 msgid "Allows creating new databases and tables." msgstr "Allows creating new databases and tables." -#: server_privileges.php:28 server_privileges.php:207 -#: server_privileges.php:520 +#: server_privileges.php:29 server_privileges.php:208 +#: server_privileges.php:521 msgid "Allows creating stored routines." msgstr "Allows creating stored routines." -#: server_privileges.php:29 server_privileges.php:514 +#: server_privileges.php:30 server_privileges.php:515 msgid "Allows creating new tables." msgstr "Allows creating new tables." -#: server_privileges.php:30 server_privileges.php:195 -#: server_privileges.php:518 +#: server_privileges.php:31 server_privileges.php:196 +#: server_privileges.php:519 msgid "Allows creating temporary tables." msgstr "Allows creating temporary tables." -#: server_privileges.php:31 server_privileges.php:209 -#: server_privileges.php:554 +#: server_privileges.php:32 server_privileges.php:210 +#: server_privileges.php:555 msgid "Allows creating, dropping and renaming user accounts." msgstr "Allows creating, dropping and renaming user accounts." -#: server_privileges.php:32 server_privileges.php:199 -#: server_privileges.php:203 server_privileges.php:526 -#: server_privileges.php:530 +#: server_privileges.php:33 server_privileges.php:200 +#: server_privileges.php:204 server_privileges.php:527 +#: server_privileges.php:531 msgid "Allows creating new views." msgstr "Allows creating new views." -#: server_privileges.php:33 server_privileges.php:183 -#: server_privileges.php:506 +#: server_privileges.php:34 server_privileges.php:184 +#: server_privileges.php:507 msgid "Allows deleting data." msgstr "Allows deleting data." -#: server_privileges.php:34 server_privileges.php:185 -#: server_privileges.php:517 +#: server_privileges.php:35 server_privileges.php:186 +#: server_privileges.php:518 msgid "Allows dropping databases and tables." msgstr "Allows dropping databases and tables." -#: server_privileges.php:35 server_privileges.php:517 +#: server_privileges.php:36 server_privileges.php:518 msgid "Allows dropping tables." msgstr "Allows dropping tables." -#: server_privileges.php:36 server_privileges.php:200 -#: server_privileges.php:534 +#: server_privileges.php:37 server_privileges.php:201 +#: server_privileges.php:535 msgid "Allows to set up events for the event scheduler" msgstr "Allows to set up events for the event scheduler" -#: server_privileges.php:37 server_privileges.php:210 -#: server_privileges.php:522 +#: server_privileges.php:38 server_privileges.php:211 +#: server_privileges.php:523 msgid "Allows executing stored routines." msgstr "Allows executing stored routines." -#: server_privileges.php:38 server_privileges.php:189 -#: server_privileges.php:509 +#: server_privileges.php:39 server_privileges.php:190 +#: server_privileges.php:510 msgid "Allows importing data from and exporting data into files." msgstr "Allows importing data from and exporting data into files." -#: server_privileges.php:39 server_privileges.php:540 +#: server_privileges.php:40 server_privileges.php:541 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "Allows adding users and privileges without reloading the privilege tables." -#: server_privileges.php:40 server_privileges.php:191 -#: server_privileges.php:516 +#: server_privileges.php:41 server_privileges.php:192 +#: server_privileges.php:517 msgid "Allows creating and dropping indexes." msgstr "Allows creating and dropping indexes." -#: server_privileges.php:41 server_privileges.php:181 -#: server_privileges.php:442 server_privileges.php:504 +#: server_privileges.php:42 server_privileges.php:182 +#: server_privileges.php:443 server_privileges.php:505 msgid "Allows inserting and replacing data." msgstr "Allows inserting and replacing data." -#: server_privileges.php:42 server_privileges.php:196 -#: server_privileges.php:549 +#: server_privileges.php:43 server_privileges.php:197 +#: server_privileges.php:550 msgid "Allows locking tables for the current thread." msgstr "Allows locking tables for the current thread." -#: server_privileges.php:43 server_privileges.php:646 -#: server_privileges.php:648 +#: server_privileges.php:44 server_privileges.php:647 +#: server_privileges.php:649 msgid "Limits the number of new connections the user may open per hour." msgstr "Limits the number of new connections the user may open per hour." -#: server_privileges.php:44 server_privileges.php:634 -#: server_privileges.php:636 +#: server_privileges.php:45 server_privileges.php:635 +#: server_privileges.php:637 msgid "Limits the number of queries the user may send to the server per hour." msgstr "Limits the number of queries the user may send to the server per hour." -#: server_privileges.php:45 server_privileges.php:640 -#: server_privileges.php:642 +#: server_privileges.php:46 server_privileges.php:641 +#: server_privileges.php:643 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -4560,58 +4605,58 @@ 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 +#: server_privileges.php:47 server_privileges.php:653 +#: server_privileges.php:655 msgid "Limits the number of simultaneous connections the user may have." msgstr "Limits the number of simultaneous connections the user may have." -#: server_privileges.php:47 server_privileges.php:188 -#: server_privileges.php:544 +#: server_privileges.php:48 server_privileges.php:189 +#: server_privileges.php:545 msgid "Allows viewing processes of all users" msgstr "Allows viewing processes of all users" -#: server_privileges.php:48 server_privileges.php:190 -#: server_privileges.php:448 server_privileges.php:550 +#: server_privileges.php:49 server_privileges.php:191 +#: server_privileges.php:449 server_privileges.php:551 msgid "Has no effect in this MySQL version." msgstr "Has no effect in this MySQL version." -#: server_privileges.php:49 server_privileges.php:186 -#: server_privileges.php:545 +#: server_privileges.php:50 server_privileges.php:187 +#: server_privileges.php:546 msgid "Allows reloading server settings and flushing the server's caches." msgstr "Allows reloading server settings and flushing the server's caches." -#: server_privileges.php:50 server_privileges.php:198 -#: server_privileges.php:552 +#: server_privileges.php:51 server_privileges.php:199 +#: server_privileges.php:553 msgid "Allows the user to ask where the slaves / masters are." msgstr "Allows the user to ask where the slaves / masters are." -#: server_privileges.php:51 server_privileges.php:197 -#: server_privileges.php:553 +#: server_privileges.php:52 server_privileges.php:198 +#: server_privileges.php:554 msgid "Needed for the replication slaves." msgstr "Needed for the replication slaves." -#: server_privileges.php:52 server_privileges.php:180 -#: server_privileges.php:439 server_privileges.php:503 +#: server_privileges.php:53 server_privileges.php:181 +#: server_privileges.php:440 server_privileges.php:504 msgid "Allows reading data." msgstr "Allows reading data." -#: server_privileges.php:53 server_privileges.php:193 -#: server_privileges.php:547 +#: server_privileges.php:54 server_privileges.php:194 +#: server_privileges.php:548 msgid "Gives access to the complete list of databases." msgstr "Gives access to the complete list of databases." -#: server_privileges.php:54 server_privileges.php:204 -#: server_privileges.php:206 server_privileges.php:519 +#: server_privileges.php:55 server_privileges.php:205 +#: server_privileges.php:207 server_privileges.php:520 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Allows performing SHOW CREATE VIEW queries." -#: server_privileges.php:55 server_privileges.php:187 -#: server_privileges.php:546 +#: server_privileges.php:56 server_privileges.php:188 +#: server_privileges.php:547 msgid "Allows shutting down the server." msgstr "Allows shutting down the server." -#: server_privileges.php:56 server_privileges.php:194 -#: server_privileges.php:543 +#: server_privileges.php:57 server_privileges.php:195 +#: server_privileges.php:544 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -4621,153 +4666,153 @@ msgstr "" "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 +#: server_privileges.php:58 server_privileges.php:202 +#: server_privileges.php:536 msgid "Allows creating and dropping triggers" msgstr "Allows creating and dropping triggers" -#: server_privileges.php:58 server_privileges.php:182 -#: server_privileges.php:445 server_privileges.php:505 +#: server_privileges.php:59 server_privileges.php:183 +#: server_privileges.php:446 server_privileges.php:506 msgid "Allows changing data." msgstr "Allows changing data." -#: server_privileges.php:59 server_privileges.php:260 +#: server_privileges.php:60 server_privileges.php:261 msgid "No privileges." msgstr "No privileges." -#: server_privileges.php:302 server_privileges.php:303 +#: server_privileges.php:303 server_privileges.php:304 msgctxt "None privileges" msgid "None" msgstr "None" -#: server_privileges.php:431 server_privileges.php:566 -#: server_privileges.php:1718 server_privileges.php:1724 +#: server_privileges.php:432 server_privileges.php:567 +#: server_privileges.php:1738 server_privileges.php:1744 msgid "Table-specific privileges" msgstr "Table-specific privileges" -#: server_privileges.php:432 server_privileges.php:574 -#: server_privileges.php:1540 +#: server_privileges.php:433 server_privileges.php:575 +#: server_privileges.php:1560 msgid " Note: MySQL privilege names are expressed in English " msgstr " Note: MySQL privilege names are expressed in English " -#: server_privileges.php:563 server_privileges.php:1539 +#: server_privileges.php:564 server_privileges.php:1559 msgid "Global privileges" msgstr "Global privileges" -#: server_privileges.php:565 server_privileges.php:1718 +#: server_privileges.php:566 server_privileges.php:1738 msgid "Database-specific privileges" msgstr "Database-specific privileges" -#: server_privileges.php:610 +#: server_privileges.php:611 msgid "Administration" msgstr "Administration" -#: server_privileges.php:630 +#: server_privileges.php:631 msgid "Resource limits" msgstr "Resource limits" -#: server_privileges.php:631 +#: server_privileges.php:632 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "Note: Setting these options to 0 (zero) removes the limit." -#: server_privileges.php:708 +#: server_privileges.php:709 msgid "Login Information" msgstr "Login Information" -#: server_privileges.php:802 +#: server_privileges.php:803 msgid "Do not change the password" msgstr "Do not change the password" -#: server_privileges.php:843 server_privileges.php:2205 +#: server_privileges.php:844 server_privileges.php:2226 msgid "No user found." msgstr "No user found." -#: server_privileges.php:887 +#: server_privileges.php:888 #, php-format msgid "The user %s already exists!" msgstr "The user %s already exists!" -#: server_privileges.php:970 +#: server_privileges.php:971 msgid "You have added a new user." msgstr "You have added a new user." -#: server_privileges.php:1191 +#: server_privileges.php:1196 #, php-format msgid "You have updated the privileges for %s." msgstr "You have updated the privileges for %s." -#: server_privileges.php:1215 +#: server_privileges.php:1220 #, php-format msgid "You have revoked the privileges for %s" msgstr "You have revoked the privileges for %s" -#: server_privileges.php:1251 +#: server_privileges.php:1256 #, php-format msgid "The password for %s was changed successfully." msgstr "The password for %s was changed successfully." -#: server_privileges.php:1271 +#: server_privileges.php:1276 #, php-format msgid "Deleting %s" msgstr "Deleting %s" -#: server_privileges.php:1282 +#: server_privileges.php:1287 msgid "No users selected for deleting!" msgstr "No users selected for deleting!" -#: server_privileges.php:1285 +#: server_privileges.php:1290 msgid "Reloading the privileges" msgstr "Reloading the privileges" -#: server_privileges.php:1300 +#: server_privileges.php:1305 msgid "The selected users have been deleted successfully." msgstr "The selected users have been deleted successfully." -#: server_privileges.php:1335 +#: server_privileges.php:1344 msgid "The privileges were reloaded successfully." msgstr "The privileges were reloaded successfully." -#: server_privileges.php:1363 server_privileges.php:1649 +#: server_privileges.php:1380 server_privileges.php:1669 msgid "Edit Privileges" msgstr "Edit Privileges" -#: server_privileges.php:1372 +#: server_privileges.php:1389 msgid "Revoke" msgstr "Revoke" -#: server_privileges.php:1404 +#: server_privileges.php:1424 msgid "User overview" msgstr "User overview" -#: server_privileges.php:1541 server_privileges.php:1723 -#: server_privileges.php:2072 +#: server_privileges.php:1561 server_privileges.php:1743 +#: server_privileges.php:2093 msgid "Grant" msgstr "Grant" -#: server_privileges.php:1560 server_privileges.php:2162 +#: server_privileges.php:1580 server_privileges.php:2183 msgid "Any" msgstr "Any" -#: server_privileges.php:1609 server_privileges.php:1633 -#: server_privileges.php:2027 server_privileges.php:2216 +#: server_privileges.php:1629 server_privileges.php:1653 +#: server_privileges.php:2048 server_privileges.php:2237 msgid "Add a new User" msgstr "Add a new User" -#: server_privileges.php:1614 +#: server_privileges.php:1634 msgid "Remove selected users" msgstr "Remove selected users" -#: server_privileges.php:1617 +#: server_privileges.php:1637 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:1618 server_privileges.php:1619 -#: server_privileges.php:1620 +#: server_privileges.php:1638 server_privileges.php:1639 +#: server_privileges.php:1640 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:1636 +#: server_privileges.php:1656 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -4780,49 +4825,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:1684 +#: server_privileges.php:1704 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:1724 +#: server_privileges.php:1744 msgid "Column-specific privileges" msgstr "Column-specific privileges" -#: server_privileges.php:1925 +#: server_privileges.php:1945 msgid "Add privileges on the following database" msgstr "Add privileges on the following database" -#: server_privileges.php:1943 +#: server_privileges.php:1963 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:1946 +#: server_privileges.php:1966 msgid "Add privileges on the following table" msgstr "Add privileges on the following table" -#: server_privileges.php:2003 +#: server_privileges.php:2023 msgid "Change Login Information / Copy User" msgstr "Change Login Information / Copy User" -#: server_privileges.php:2006 +#: server_privileges.php:2026 msgid "Create a new user with the same privileges and ..." msgstr "Create a new user with the same privileges and ..." -#: server_privileges.php:2008 +#: server_privileges.php:2028 msgid "... keep the old one." msgstr "... keep the old one." -#: server_privileges.php:2009 +#: server_privileges.php:2029 msgid " ... delete the old one from the user tables." msgstr " ... delete the old one from the user tables." -#: server_privileges.php:2010 +#: server_privileges.php:2030 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:2011 +#: server_privileges.php:2031 msgid "" " ... delete the old one from the user tables and reload the privileges " "afterwards." @@ -4830,42 +4875,42 @@ msgstr "" " ... delete the old one from the user tables and reload the privileges " "afterwards." -#: server_privileges.php:2033 +#: server_privileges.php:2054 msgid "Database for user" msgstr "Database for user" -#: server_privileges.php:2037 +#: server_privileges.php:2058 msgctxt "Create none database for user" msgid "None" msgstr "None" -#: server_privileges.php:2038 +#: server_privileges.php:2059 msgid "Create database with same name and grant all privileges" msgstr "Create database with same name and grant all privileges" -#: server_privileges.php:2039 +#: server_privileges.php:2060 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "Grant all privileges on wildcard name (username\\_%)" -#: server_privileges.php:2042 +#: server_privileges.php:2063 #, php-format msgid "Grant all privileges on database "%s"" msgstr "Grant all privileges on database "%s"" -#: server_privileges.php:2065 +#: server_privileges.php:2086 #, php-format msgid "Users having access to "%s"" msgstr "Users having access to "%s"" -#: server_privileges.php:2173 +#: server_privileges.php:2194 msgid "global" msgstr "global" -#: server_privileges.php:2175 +#: server_privileges.php:2196 msgid "database-specific" msgstr "database-specific" -#: server_privileges.php:2177 +#: server_privileges.php:2198 msgid "wildcard" msgstr "wildcard" @@ -7812,6 +7857,10 @@ msgstr "Insert as new row and ignore errors" msgid "Show insert query" msgstr "Show insert query" +#: tbl_change.php:1143 +msgid "and then" +msgstr "and then" + #: tbl_change.php:1147 msgid "Go back to previous page" msgstr "Go back to previous page" @@ -7892,7 +7941,7 @@ msgstr "" msgid "Add to index  %s column(s)" msgstr "Add to index  %s column(s)" -#: tbl_indexes.php:256 tbl_structure.php:589 tbl_structure.php:600 +#: tbl_indexes.php:256 tbl_structure.php:587 tbl_structure.php:598 msgid "Column count has to be larger than zero." msgstr "Column count has to be larger than zero." @@ -8004,39 +8053,39 @@ msgstr "Check referential integrity:" msgid "Show tables" msgstr "Show tables" -#: tbl_printview.php:310 tbl_structure.php:656 +#: tbl_printview.php:310 tbl_structure.php:654 msgid "Space usage" msgstr "Space usage" -#: tbl_printview.php:314 tbl_structure.php:660 +#: tbl_printview.php:314 tbl_structure.php:658 msgid "Usage" msgstr "Usage" -#: tbl_printview.php:341 tbl_structure.php:687 +#: tbl_printview.php:341 tbl_structure.php:685 msgid "Effective" msgstr "Effective" -#: tbl_printview.php:366 tbl_structure.php:725 +#: tbl_printview.php:366 tbl_structure.php:723 msgid "Row Statistics" msgstr "Row Statistics" -#: tbl_printview.php:369 tbl_structure.php:728 +#: tbl_printview.php:369 tbl_structure.php:726 msgid "Statements" msgstr "Statements" -#: tbl_printview.php:380 tbl_structure.php:740 +#: tbl_printview.php:380 tbl_structure.php:738 msgid "static" msgstr "static" -#: tbl_printview.php:382 tbl_structure.php:742 +#: tbl_printview.php:382 tbl_structure.php:740 msgid "dynamic" msgstr "dynamic" -#: tbl_printview.php:404 tbl_structure.php:785 +#: tbl_printview.php:404 tbl_structure.php:783 msgid "Row length" msgstr "Row length" -#: tbl_printview.php:414 tbl_structure.php:793 +#: tbl_printview.php:414 tbl_structure.php:791 msgid " Row size " msgstr " Row size " @@ -8103,47 +8152,47 @@ msgstr "None" msgid "Column %s has been dropped" msgstr "Column %s has been dropped" -#: tbl_structure.php:385 +#: tbl_structure.php:384 #, php-format msgid "A primary key has been added on %s" msgstr "A primary key has been added on %s" -#: tbl_structure.php:400 tbl_structure.php:414 tbl_structure.php:428 +#: tbl_structure.php:398 tbl_structure.php:412 tbl_structure.php:426 #, php-format msgid "An index has been added on %s" msgstr "An index has been added on %s" -#: tbl_structure.php:506 tbl_structure.php:508 +#: tbl_structure.php:504 tbl_structure.php:506 msgid "Relation view" msgstr "Relation view" -#: tbl_structure.php:515 tbl_structure.php:517 +#: tbl_structure.php:513 tbl_structure.php:515 msgid "Propose table structure" msgstr "Propose table structure" -#: tbl_structure.php:540 +#: tbl_structure.php:538 msgid "Add column" msgstr "Add column" -#: tbl_structure.php:554 +#: tbl_structure.php:552 msgid "At End of Table" msgstr "At End of Table" -#: tbl_structure.php:555 +#: tbl_structure.php:553 msgid "At Beginning of Table" msgstr "At Beginning of Table" -#: tbl_structure.php:556 +#: tbl_structure.php:554 #, php-format msgid "After %s" msgstr "After %s" -#: tbl_structure.php:594 +#: tbl_structure.php:592 #, php-format msgid "Create an index on  %s columns" msgstr "Create an index on  %s columns" -#: tbl_structure.php:756 +#: tbl_structure.php:754 msgid "partitioned" msgstr "partitioned" diff --git a/po/es.po b/po/es.po index e584b516c..bb6cd980d 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-13 09:03-0400\n" +"POT-Creation-Date: 2010-06-22 00:55+0530\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:1514 +#: libraries/display_tbl.lib.php:417 server_privileges.php:1534 msgid "Show all" msgstr "Mostrar todo" -#: browse_foreigners.php:82 libraries/common.lib.php:2313 +#: browse_foreigners.php:82 libraries/common.lib.php:2317 #: 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,18 +38,18 @@ 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:2831 -#: libraries/common.lib.php:2838 libraries/db_links.inc.php:75 +#: db_structure.php:106 libraries/common.lib.php:2835 +#: libraries/common.lib.php:2842 libraries/db_links.inc.php:75 #: libraries/tbl_links.inc.php:63 msgid "Search" msgstr "Buscar" -#: browse_foreigners.php:153 db_operations.php:385 db_operations.php:429 -#: db_operations.php:499 db_operations.php:609 db_search.php:362 -#: db_structure.php:567 js/messages.php:48 libraries/Config.class.php:1046 +#: browse_foreigners.php:153 db_operations.php:394 db_operations.php:438 +#: db_operations.php:508 db_operations.php:618 db_search.php:362 +#: db_structure.php:565 js/messages.php:53 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:1335 libraries/common.lib.php:2288 +#: libraries/common.lib.php:1335 libraries/common.lib.php:2292 #: 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,15 +60,15 @@ 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:664 server_privileges.php:1624 -#: server_privileges.php:1971 server_privileges.php:2018 -#: server_privileges.php:2057 server_replication.php:235 +#: server_privileges.php:665 server_privileges.php:1644 +#: server_privileges.php:1991 server_privileges.php:2038 +#: server_privileges.php:2078 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 #: tbl_operations.php:302 tbl_operations.php:499 tbl_operations.php:561 -#: tbl_operations.php:681 tbl_select.php:327 tbl_structure.php:562 -#: tbl_structure.php:597 tbl_tracking.php:395 tbl_tracking.php:512 +#: tbl_operations.php:681 tbl_select.php:327 tbl_structure.php:560 +#: tbl_structure.php:595 tbl_tracking.php:395 tbl_tracking.php:512 #: view_create.php:182 view_operations.php:101 msgid "Go" msgstr "Continuar" @@ -94,7 +94,7 @@ msgstr "Use este valor" msgid "Database %1$s has been created." msgstr "La base de datos %1$s se creó." -#: db_datadict.php:49 db_operations.php:378 +#: db_datadict.php:49 db_operations.php:387 msgid "Database comment: " msgstr "Comentario de la base de datos: " @@ -121,10 +121,10 @@ 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:2070 +#: pdf_schema.php:1263 pdf_schema.php:1284 server_privileges.php:2091 #: 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 +#: tbl_structure.php:657 tbl_tracking.php:274 tbl_tracking.php:321 msgid "Type" msgstr "Tipo" @@ -137,7 +137,7 @@ msgstr "Tipo" msgid "Null" msgstr "Nulo" -#: db_datadict.php:178 db_structure.php:501 libraries/export/htmlword.php:247 +#: db_datadict.php:178 db_structure.php:499 libraries/export/htmlword.php:247 #: libraries/export/latex.php:360 libraries/export/odt.php:303 #: libraries/export/texytext.php:236 libraries/tbl_properties.inc.php:106 #: pdf_schema.php:1266 pdf_schema.php:1287 tbl_printview.php:146 @@ -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: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 +#: pdf_schema.php:1344 server_privileges.php:1588 server_privileges.php:1599 +#: server_privileges.php:1909 server_privileges.php:1914 +#: server_privileges.php:2208 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:1565 -#: server_privileges.php:1579 server_privileges.php:1889 -#: server_privileges.php:1892 server_privileges.php:2187 sql.php:193 +#: server_databases.php:64 server_privileges.php:1585 +#: server_privileges.php:1599 server_privileges.php:1909 +#: server_privileges.php:1912 server_privileges.php:2208 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" @@ -210,125 +210,121 @@ msgstr "Seleccionar todo" msgid "Unselect All" msgstr "Deseleccionar todo" -#: db_operations.php:38 tbl_create.php:54 +#: db_operations.php:43 tbl_create.php:54 msgid "The database name is empty!" msgstr "¡El nombre de la base de datos está vacío!" -#: db_operations.php:236 +#: db_operations.php:241 #, php-format msgid "Database %s has been renamed to %s" msgstr "La base de datos %s ha sido cambiada de nombre a %s" -#: db_operations.php:240 +#: db_operations.php:245 #, php-format msgid "Database %s has been copied to %s" msgstr "La base de datos %s ha sido copiada a %s" -#: db_operations.php:412 +#: db_operations.php:421 msgid "Rename database to" msgstr "Cambiar el nombre de la base de datos a" -#: db_operations.php:417 server_processlist.php:57 +#: db_operations.php:426 server_processlist.php:57 msgid "Command" msgstr "Comando" -#: db_operations.php:429 tbl_change.php:1143 -msgid "and then" -msgstr "y luego" - -#: db_operations.php:455 +#: db_operations.php:464 msgid "Copy database to" msgstr "Copiar la base de datos a" -#: db_operations.php:462 tbl_operations.php:528 tbl_tracking.php:388 +#: db_operations.php:471 tbl_operations.php:528 tbl_tracking.php:388 msgid "Structure only" msgstr "Únicamente la estructura " -#: db_operations.php:463 tbl_operations.php:529 tbl_tracking.php:390 +#: db_operations.php:472 tbl_operations.php:529 tbl_tracking.php:390 msgid "Structure and data" msgstr "Estructura y datos" -#: db_operations.php:464 tbl_operations.php:530 tbl_tracking.php:389 +#: db_operations.php:473 tbl_operations.php:530 tbl_tracking.php:389 msgid "Data only" msgstr "Solamente datos" -#: db_operations.php:472 +#: db_operations.php:481 msgid "CREATE DATABASE before copying" msgstr "CREAR BASE DE DATOS antes de copiar" -#: db_operations.php:475 libraries/export/sql.php:52 +#: db_operations.php:484 libraries/export/sql.php:52 #: libraries/export/sql.php:74 libraries/export/sql.php:76 #: libraries/export/sql.php:82 tbl_operations.php:536 #, php-format msgid "Add %s" msgstr "Añada %s" -#: db_operations.php:479 libraries/export/sql.php:78 tbl_operations.php:299 +#: db_operations.php:488 libraries/export/sql.php:78 tbl_operations.php:299 #: tbl_operations.php:538 msgid "Add AUTO_INCREMENT value" msgstr "Añadir el valor AUTO_INCREMENT" -#: db_operations.php:483 tbl_operations.php:545 +#: db_operations.php:492 tbl_operations.php:545 msgid "Add constraints" msgstr "Añadir restricciones" -#: db_operations.php:496 +#: db_operations.php:505 msgid "Switch to copied database" msgstr "Seleccionar la base de datos copiada" -#: db_operations.php:537 +#: db_operations.php:546 msgid "BLOB Repository" msgstr "Repositorio BLOB" -#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1352 -#: libraries/server_links.inc.php:49 server_processlist.php:59 +#: db_operations.php:549 db_tracking.php:76 libraries/common.lib.php:1352 +#: libraries/server_links.inc.php:50 server_processlist.php:59 #: tbl_tracking.php:596 test/theme.php:101 msgid "Status" msgstr "Estado actual" -#: db_operations.php:548 +#: db_operations.php:557 #, fuzzy #| msgid "Enabled" msgctxt "BLOB repository" msgid "Enabled" msgstr "Habilitado" -#: db_operations.php:552 +#: db_operations.php:561 msgid "Disable" msgstr "Deshabilite" -#: db_operations.php:562 +#: db_operations.php:571 msgid "Damaged" msgstr "Dañado" -#: db_operations.php:566 +#: db_operations.php:575 #, fuzzy #| msgid "Repair" msgctxt "BLOB repository" msgid "Repair" msgstr "Repare" -#: db_operations.php:574 +#: db_operations.php:583 #, fuzzy #| msgid "Disabled" msgctxt "BLOB repository" msgid "Disabled" msgstr "Deshabilitado" -#: db_operations.php:578 +#: db_operations.php:587 msgid "Enable" msgstr "Habilite" -#: db_operations.php:602 libraries/Index.class.php:448 +#: db_operations.php:611 libraries/Index.class.php:448 #: libraries/db_structure.lib.php:62 libraries/mysql_charsets.lib.php:107 #: libraries/tbl_properties.inc.php:107 libraries/tbl_properties.inc.php:730 #: server_collations.php:54 server_collations.php:66 server_databases.php:111 #: tbl_operations.php:363 tbl_select.php:137 tbl_structure.php:179 -#: tbl_structure.php:767 tbl_tracking.php:275 tbl_tracking.php:326 +#: tbl_structure.php:765 tbl_tracking.php:275 tbl_tracking.php:326 msgid "Collation" msgstr "Cotejamiento" -#: db_operations.php:615 main.php:316 pdf_schema.php:34 +#: db_operations.php:624 main.php:316 pdf_schema.php:34 #, php-format msgid "" "The additional features for working with linked tables have been " @@ -337,14 +333,14 @@ msgstr "" "Las opciones adicionales para trabajar con tablas vinculadas fueron " "desactivadas. Para saber porqué, dé clic %saquí%s." -#: db_operations.php:648 +#: db_operations.php:657 msgid "Edit PDF Pages" 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:1665 -#: server_privileges.php:1721 server_privileges.php:1985 +#: libraries/header.inc.php:130 pdf_pages.php:424 server_privileges.php:1685 +#: server_privileges.php:1741 server_privileges.php:2005 #: server_synchronize.php:423 server_synchronize.php:866 tbl_tracking.php:592 #: test/theme.php:75 msgid "Table" @@ -353,7 +349,7 @@ msgstr "Tabla" #: db_printview.php:105 libraries/db_structure.lib.php:56 #: libraries/header_printview.inc.php:63 libraries/import.lib.php:146 #: navigation.php:638 navigation.php:660 server_databases.php:122 -#: tbl_printview.php:394 tbl_structure.php:365 tbl_structure.php:777 +#: tbl_printview.php:394 tbl_structure.php:365 tbl_structure.php:775 msgid "Rows" msgstr "Filas" @@ -361,30 +357,30 @@ msgstr "Filas" msgid "Size" msgstr "Tamaño" -#: db_printview.php:162 db_structure.php:457 libraries/export/sql.php:559 +#: db_printview.php:162 db_structure.php:455 libraries/export/sql.php:559 #: libraries/export/sql.php:899 msgid "in use" msgstr "en uso" #: db_printview.php:187 libraries/db_info.inc.php:88 #: libraries/export/sql.php:514 pdf_schema.php:1241 tbl_printview.php:434 -#: tbl_structure.php:809 +#: tbl_structure.php:807 msgid "Creation" msgstr "Creación" #: db_printview.php:196 libraries/db_info.inc.php:93 #: libraries/export/sql.php:519 pdf_schema.php:1246 tbl_printview.php:444 -#: tbl_structure.php:817 +#: tbl_structure.php:815 msgid "Last update" msgstr "Última actualización" #: db_printview.php:205 libraries/db_info.inc.php:98 #: libraries/export/sql.php:524 pdf_schema.php:1251 tbl_printview.php:454 -#: tbl_structure.php:825 +#: tbl_structure.php:823 msgid "Last check" msgstr "Última revisión" -#: db_printview.php:222 db_structure.php:480 +#: db_printview.php:222 db_structure.php:478 #, fuzzy, php-format #| msgid "%s table(s)" msgid "%s table" @@ -445,7 +441,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:297 tbl_change.php:1031 tbl_indexes.php:250 +#: server_privileges.php:298 tbl_change.php:1031 tbl_indexes.php:250 #: tbl_select.php:288 msgid "Or" msgstr "O" @@ -518,9 +514,9 @@ 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:2833 +#: db_structure.php:105 libraries/common.lib.php:2837 #: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50 -#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:467 +#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:465 msgid "Browse" msgstr "Examinar" @@ -565,36 +561,36 @@ 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:2832 libraries/sql_query_form.lib.php:334 +#: libraries/common.lib.php:2836 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:2829 libraries/common.lib.php:2836 +#: libraries/common.lib.php:2833 libraries/common.lib.php:2840 #: 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:1106 #: libraries/tbl_links.inc.php:56 pmd_general.php:134 -#: server_privileges.php:593 server_replication.php:315 tbl_tracking.php:269 +#: server_privileges.php:594 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:1656 +#: db_structure.php:543 db_structure.php:544 db_tracking.php:91 +#: libraries/Index.class.php:483 libraries/common.lib.php:1657 #: 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 -#: tbl_structure.php:152 tbl_structure.php:471 +#: tbl_structure.php:152 tbl_structure.php:469 msgid "Drop" 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:1655 +#: db_structure.php:541 db_structure.php:542 libraries/common.lib.php:1656 #: libraries/mult_submits.inc.php:39 libraries/tbl_links.inc.php:105 msgid "Empty" msgstr "Vaciar" @@ -604,25 +600,25 @@ msgstr "Vaciar" msgid "Table %s has been emptied" msgstr "Se ha vaciado la tabla %s" -#: db_structure.php:326 libraries/tbl_links.inc.php:133 +#: db_structure.php:325 libraries/tbl_links.inc.php:133 #, php-format msgid "View %s has been dropped" msgstr "Se descartó el modo de visualización %s" -#: db_structure.php:326 libraries/tbl_links.inc.php:133 +#: db_structure.php:325 libraries/tbl_links.inc.php:133 #, php-format msgid "Table %s has been dropped" msgstr "Se ha eliminado la tabla %s" -#: db_structure.php:333 +#: db_structure.php:332 msgid "Tracking is active." msgstr "" -#: db_structure.php:335 +#: db_structure.php:334 msgid "Tracking is not active." msgstr "" -#: db_structure.php:420 libraries/display_tbl.lib.php:1944 +#: db_structure.php:418 libraries/display_tbl.lib.php:1944 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation%" @@ -631,87 +627,87 @@ msgstr "" "Esta vista tiene al menos este número de filas. Por favor, refiérase a la %" "sdocumentation%s." -#: db_structure.php:434 db_structure.php:448 libraries/header.inc.php:126 +#: db_structure.php:432 db_structure.php:446 libraries/header.inc.php:130 #: libraries/tbl_info.inc.php:66 tbl_structure.php:185 test/theme.php:74 msgid "View" msgstr "Visualizar" -#: db_structure.php:485 libraries/db_structure.lib.php:49 -#: libraries/server_links.inc.php:70 server_replication.php:33 +#: db_structure.php:483 libraries/db_structure.lib.php:49 +#: libraries/server_links.inc.php:71 server_replication.php:33 #: server_replication.php:164 server_status.php:369 msgid "Replication" msgstr "Replicación" -#: db_structure.php:489 +#: db_structure.php:487 msgid "Sum" msgstr "Número de filas" -#: db_structure.php:496 libraries/StorageEngine.class.php:356 +#: db_structure.php:494 libraries/StorageEngine.class.php:356 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "" "%s es el motor de almacenamiento predeterminado en este servidor MySQL." -#: db_structure.php:524 db_structure.php:541 db_structure.php:542 +#: db_structure.php:522 db_structure.php:539 db_structure.php:540 #: 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:1596 tbl_structure.php:455 -#: tbl_structure.php:464 +#: server_databases.php:351 server_privileges.php:1616 tbl_structure.php:453 +#: tbl_structure.php:462 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:569 -#: server_privileges.php:1599 tbl_structure.php:458 +#: db_structure.php:525 libraries/display_tbl.lib.php:2076 +#: server_databases.php:348 server_privileges.php:570 +#: server_privileges.php:1619 tbl_structure.php:456 msgid "Check All" msgstr "Marcar todos/as" -#: db_structure.php:531 libraries/display_tbl.lib.php:2077 +#: db_structure.php:529 libraries/display_tbl.lib.php:2077 #: libraries/replication_gui.lib.php:33 server_databases.php:350 -#: server_privileges.php:572 server_privileges.php:1603 tbl_structure.php:462 +#: server_privileges.php:573 server_privileges.php:1623 tbl_structure.php:460 msgid "Uncheck All" msgstr "Desmarcar todos" -#: db_structure.php:536 +#: db_structure.php:534 msgid "Check tables having overhead" msgstr "Marcar las tablas con residuo a depurar" -#: db_structure.php:547 db_structure.php:548 db_structure.php:599 +#: db_structure.php:545 db_structure.php:546 db_structure.php:597 #: libraries/display_tbl.lib.php:2180 libraries/mult_submits.inc.php:28 -#: tbl_structure.php:492 tbl_structure.php:494 +#: tbl_structure.php:490 tbl_structure.php:492 msgid "Print view" msgstr "Vista de impresión" -#: db_structure.php:549 db_structure.php:550 libraries/mult_submits.inc.php:42 +#: db_structure.php:547 db_structure.php:548 libraries/mult_submits.inc.php:42 #: tbl_operations.php:581 msgid "Check table" msgstr "Revisar la tabla" -#: db_structure.php:551 db_structure.php:552 libraries/mult_submits.inc.php:47 -#: tbl_operations.php:621 tbl_structure.php:709 tbl_structure.php:711 +#: db_structure.php:549 db_structure.php:550 libraries/mult_submits.inc.php:47 +#: tbl_operations.php:621 tbl_structure.php:707 tbl_structure.php:709 msgid "Optimize table" msgstr "Optimizar la tabla" -#: db_structure.php:553 db_structure.php:554 libraries/mult_submits.inc.php:52 +#: db_structure.php:551 db_structure.php:552 libraries/mult_submits.inc.php:52 #: tbl_operations.php:611 msgid "Repair table" msgstr "Reparar la tabla" -#: db_structure.php:555 db_structure.php:556 libraries/mult_submits.inc.php:57 +#: db_structure.php:553 db_structure.php:554 libraries/mult_submits.inc.php:57 #: tbl_operations.php:601 msgid "Analyze table" msgstr "Analizar la tabla" -#: db_structure.php:557 db_structure.php:558 libraries/db_links.inc.php:71 +#: db_structure.php:555 db_structure.php:556 libraries/db_links.inc.php:71 #: 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:1380 +#: libraries/server_links.inc.php:85 libraries/tbl_links.inc.php:82 +#: pmd_pdf.php:84 pmd_pdf.php:109 server_privileges.php:1397 #: setup/frames/menu.inc.php:22 tbl_row_action.php:59 msgid "Export" msgstr "Exportar" -#: db_structure.php:606 libraries/display_pdf_schema.lib.php:44 +#: db_structure.php:604 libraries/display_pdf_schema.lib.php:44 msgid "Data Dictionary" msgstr "Diccionario de datos" @@ -723,10 +719,10 @@ msgstr "Saltarse las tablas bloqueadas" #: db_tracking.php:71 libraries/export/htmlword.php:86 #: libraries/export/latex.php:148 libraries/export/odt.php:113 #: libraries/export/sql.php:342 libraries/export/texytext.php:84 -#: libraries/export/xml.php:255 libraries/header.inc.php:106 +#: libraries/export/xml.php:255 libraries/header.inc.php:110 #: libraries/header_printview.inc.php:58 server_databases.php:169 -#: server_privileges.php:1660 server_privileges.php:1721 -#: server_privileges.php:1979 server_processlist.php:56 +#: server_privileges.php:1680 server_privileges.php:1741 +#: server_privileges.php:1999 server_processlist.php:56 #: server_synchronize.php:1179 server_synchronize.php:1183 #: tbl_tracking.php:591 test/theme.php:65 msgid "Database" @@ -748,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:1542 server_privileges.php:1725 -#: server_privileges.php:2073 tbl_structure.php:187 +#: server_privileges.php:1562 server_privileges.php:1745 +#: server_privileges.php:2094 tbl_structure.php:187 msgid "Action" msgstr "Acción" @@ -786,8 +782,8 @@ msgstr "Únicamente la estructura " msgid "Untracked tables" msgstr "Saltarse las tablas bloqueadas" -#: db_tracking.php:172 db_tracking.php:174 tbl_structure.php:528 -#: tbl_structure.php:530 +#: db_tracking.php:172 db_tracking.php:174 tbl_structure.php:526 +#: tbl_structure.php:528 #, fuzzy msgid "Track table" msgstr "Revisar la tabla" @@ -960,187 +956,235 @@ 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:1236 user_password.php:70 +#: js/messages.php:44 server_privileges.php:1241 user_password.php:70 msgid "The password is empty!" msgstr "¡La contraseña está vacía!" -#: js/messages.php:45 server_privileges.php:1234 user_password.php:73 +#: js/messages.php:45 server_privileges.php:1239 user_password.php:73 msgid "The passwords aren't the same!" msgstr "¡Las contraseñas no coinciden!" -#: js/messages.php:49 pmd_general.php:342 pmd_general.php:379 +#: js/messages.php:46 +#, fuzzy +#| msgid "Add a new User" +msgid "Add a New User" +msgstr "Agregar un nuevo usuario" + +#: js/messages.php:47 js/messages.php:54 pmd_general.php:342 +#: pmd_general.php:379 msgid "Cancel" msgstr "Cancelar" -#: js/messages.php:52 pmd_save_pos.php:54 +#: js/messages.php:48 +#, fuzzy +msgid "Create User" +msgstr "Crear relación" + +#: js/messages.php:49 +#, fuzzy +#| msgid "Reload privileges" +msgid "Reloading Privileges" +msgstr "Cargar los privilegios nuevamente" + +#: js/messages.php:50 +#, fuzzy +#| msgid "Remove selected users" +msgid "Removing Selected Users" +msgstr "Eliminar a los usuarios seleccionados" + +#: js/messages.php:57 +#, fuzzy +#| msgid "Load" +msgid "Loading" +msgstr "Cargar" + +#: js/messages.php:58 +#, fuzzy +#| msgid "Processes" +msgid "Processing Request" +msgstr "Procesos" + +#: js/messages.php:59 +msgid "Error in Processing Request" +msgstr "" + +#: js/messages.php:60 +msgid "Dropping Column" +msgstr "" + +#: js/messages.php:61 +msgid "Adding Primary Key" +msgstr "" + +#: js/messages.php:64 pmd_save_pos.php:54 msgid "Modifications have been saved" msgstr "Se han guardado las modificaciones" -#: js/messages.php:53 pmd_relation_upd.php:49 +#: js/messages.php:65 pmd_relation_upd.php:49 msgid "Relation deleted" msgstr "La relación fue eliminada" -#: js/messages.php:54 pmd_relation_new.php:64 +#: js/messages.php:66 pmd_relation_new.php:64 msgid "FOREIGN KEY relation added" msgstr "Se añadió una relación FOREIGN KEY" -#: js/messages.php:55 pmd_relation_new.php:86 +#: js/messages.php:67 pmd_relation_new.php:86 msgid "Internal relation added" msgstr "Se añadió la relación interna" -#: js/messages.php:56 pmd_relation_new.php:63 pmd_relation_new.php:88 +#: js/messages.php:68 pmd_relation_new.php:63 pmd_relation_new.php:88 msgid "Error: Relation not added." msgstr "Error: no se añadió la relación." -#: js/messages.php:57 pmd_relation_new.php:31 +#: js/messages.php:69 pmd_relation_new.php:31 msgid "Error: relation already exists." msgstr "Error: la relación ya existe." -#: js/messages.php:58 +#: js/messages.php:70 msgid "Error saving coordinates for Designer." msgstr "Error guardando las coordenadas para el Diseñador." -#: js/messages.php:59 libraries/relation.lib.php:107 +#: js/messages.php:71 libraries/relation.lib.php:107 #: libraries/relation.lib.php:119 msgid "General relation features" msgstr "Opciones de relación general" -#: js/messages.php:59 libraries/relation.lib.php:101 +#: js/messages.php:71 libraries/relation.lib.php:101 #: libraries/relation.lib.php:108 msgid "Disabled" msgstr "Deshabilitado" -#: js/messages.php:60 +#: js/messages.php:72 msgid "Select referenced key" msgstr "Seleccione la llave de referencia" -#: js/messages.php:61 +#: js/messages.php:73 msgid "Select Foreign Key" msgstr "Seleccione la llave extranjera (foreign key)" -#: js/messages.php:62 +#: js/messages.php:74 msgid "Please select the primary key or a unique key" msgstr "Por favor, seleccione la clave primaria o una clave única" -#: js/messages.php:63 pmd_general.php:77 tbl_relation.php:548 +#: js/messages.php:75 pmd_general.php:77 tbl_relation.php:548 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" msgstr "Elegir el campo a mostrar" #. l10n: Display text for calendar close link -#: js/messages.php:73 +#: js/messages.php:85 #, fuzzy #| msgid "Donate" msgid "Done" msgstr "Donación" #. l10n: Display text for previous month link in calendar -#: js/messages.php:75 +#: js/messages.php:87 #, fuzzy #| msgid "Previous" msgid "Prev" msgstr "Previo" #. l10n: Display text for next month link in calendar -#: js/messages.php:77 libraries/common.lib.php:2353 -#: libraries/common.lib.php:2356 libraries/display_tbl.lib.php:338 +#: js/messages.php:89 libraries/common.lib.php:2357 +#: libraries/common.lib.php:2360 libraries/display_tbl.lib.php:338 #: server_binlog.php:205 server_binlog.php:207 tbl_printview.php:424 -#: tbl_structure.php:801 +#: tbl_structure.php:799 msgid "Next" msgstr "Próxima" #. l10n: Display text for current month link in calendar -#: js/messages.php:79 +#: js/messages.php:91 #, fuzzy #| msgid "Total" msgid "Today" msgstr "Total" -#: js/messages.php:82 +#: js/messages.php:94 #, fuzzy #| msgid "Binary" msgid "January" msgstr " Binario " -#: js/messages.php:83 +#: js/messages.php:95 msgid "February" msgstr "" -#: js/messages.php:84 +#: js/messages.php:96 #, fuzzy #| msgid "Mar" msgid "March" msgstr "Mar" -#: js/messages.php:85 +#: js/messages.php:97 #, fuzzy #| msgid "Apr" msgid "April" msgstr "Abr" -#: js/messages.php:86 +#: js/messages.php:98 msgid "May" msgstr "May" -#: js/messages.php:87 +#: js/messages.php:99 #, fuzzy #| msgid "Jun" msgid "June" msgstr "Jun" -#: js/messages.php:88 +#: js/messages.php:100 #, fuzzy #| msgid "Jul" msgid "July" msgstr "Jul" -#: js/messages.php:89 +#: js/messages.php:101 #, fuzzy #| msgid "Aug" msgid "August" msgstr "Ago" -#: js/messages.php:90 +#: js/messages.php:102 msgid "September" msgstr "" -#: js/messages.php:91 +#: js/messages.php:103 #, fuzzy #| msgid "Oct" msgid "October" msgstr "Oct" -#: js/messages.php:92 +#: js/messages.php:104 msgid "November" msgstr "" -#: js/messages.php:93 +#: js/messages.php:105 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:97 libraries/common.lib.php:1557 +#: js/messages.php:109 libraries/common.lib.php:1557 msgid "Jan" msgstr "Ene" #. l10n: Short month name -#: js/messages.php:99 libraries/common.lib.php:1559 +#: js/messages.php:111 libraries/common.lib.php:1559 msgid "Feb" msgstr "Feb" #. l10n: Short month name -#: js/messages.php:101 libraries/common.lib.php:1561 +#: js/messages.php:113 libraries/common.lib.php:1561 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:103 libraries/common.lib.php:1563 +#: js/messages.php:115 libraries/common.lib.php:1563 msgid "Apr" msgstr "Abr" #. l10n: Short month name -#: js/messages.php:105 libraries/common.lib.php:1565 +#: js/messages.php:117 libraries/common.lib.php:1565 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1148,178 +1192,178 @@ msgid "May" msgstr "May" #. l10n: Short month name -#: js/messages.php:107 libraries/common.lib.php:1567 +#: js/messages.php:119 libraries/common.lib.php:1567 msgid "Jun" msgstr "Jun" #. l10n: Short month name -#: js/messages.php:109 libraries/common.lib.php:1569 +#: js/messages.php:121 libraries/common.lib.php:1569 msgid "Jul" msgstr "Jul" #. l10n: Short month name -#: js/messages.php:111 libraries/common.lib.php:1571 +#: js/messages.php:123 libraries/common.lib.php:1571 msgid "Aug" msgstr "Ago" #. l10n: Short month name -#: js/messages.php:113 libraries/common.lib.php:1573 +#: js/messages.php:125 libraries/common.lib.php:1573 msgid "Sep" msgstr "Sep" #. l10n: Short month name -#: js/messages.php:115 libraries/common.lib.php:1575 +#: js/messages.php:127 libraries/common.lib.php:1575 msgid "Oct" msgstr "Oct" #. l10n: Short month name -#: js/messages.php:117 libraries/common.lib.php:1577 +#: js/messages.php:129 libraries/common.lib.php:1577 msgid "Nov" msgstr "Nov" #. l10n: Short month name -#: js/messages.php:119 libraries/common.lib.php:1579 +#: js/messages.php:131 libraries/common.lib.php:1579 msgid "Dec" msgstr "Dic" -#: js/messages.php:122 +#: js/messages.php:134 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "Dom" -#: js/messages.php:123 +#: js/messages.php:135 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "Lun" -#: js/messages.php:124 +#: js/messages.php:136 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "Mar" -#: js/messages.php:125 +#: js/messages.php:137 msgid "Wednesday" msgstr "" -#: js/messages.php:126 +#: js/messages.php:138 msgid "Thursday" msgstr "" -#: js/messages.php:127 +#: js/messages.php:139 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "Vie" -#: js/messages.php:128 +#: js/messages.php:140 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:132 libraries/common.lib.php:1582 +#: js/messages.php:144 libraries/common.lib.php:1582 msgid "Sun" msgstr "Dom" #. l10n: Short week day name -#: js/messages.php:134 libraries/common.lib.php:1584 +#: js/messages.php:146 libraries/common.lib.php:1584 msgid "Mon" msgstr "Lun" #. l10n: Short week day name -#: js/messages.php:136 libraries/common.lib.php:1586 +#: js/messages.php:148 libraries/common.lib.php:1586 msgid "Tue" msgstr "Mar" #. l10n: Short week day name -#: js/messages.php:138 libraries/common.lib.php:1588 +#: js/messages.php:150 libraries/common.lib.php:1588 msgid "Wed" msgstr "Mie" #. l10n: Short week day name -#: js/messages.php:140 libraries/common.lib.php:1590 +#: js/messages.php:152 libraries/common.lib.php:1590 msgid "Thu" msgstr "Jue" #. l10n: Short week day name -#: js/messages.php:142 libraries/common.lib.php:1592 +#: js/messages.php:154 libraries/common.lib.php:1592 msgid "Fri" msgstr "Vie" #. l10n: Short week day name -#: js/messages.php:144 libraries/common.lib.php:1594 +#: js/messages.php:156 libraries/common.lib.php:1594 msgid "Sat" msgstr "Sab" #. l10n: Minimal week day name -#: js/messages.php:148 +#: js/messages.php:160 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "Dom" #. l10n: Minimal week day name -#: js/messages.php:150 +#: js/messages.php:162 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "Lun" #. l10n: Minimal week day name -#: js/messages.php:152 +#: js/messages.php:164 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "Mar" #. l10n: Minimal week day name -#: js/messages.php:154 +#: js/messages.php:166 #, fuzzy #| msgid "Wed" msgid "We" msgstr "Mie" #. l10n: Minimal week day name -#: js/messages.php:156 +#: js/messages.php:168 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "Jue" #. l10n: Minimal week day name -#: js/messages.php:158 +#: js/messages.php:170 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "Vie" #. l10n: Minimal week day name -#: js/messages.php:160 +#: js/messages.php:172 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "Sab" #. l10n: Column header for week of the year in calendar -#: js/messages.php:162 +#: js/messages.php:174 #, fuzzy #| msgid "Wiki" msgid "Wk" msgstr "Wiki" -#: js/messages.php:164 +#: js/messages.php:176 msgid "Hour" msgstr "" -#: js/messages.php:165 +#: js/messages.php:177 #, fuzzy #| msgid "in use" msgid "Minute" msgstr "en uso" -#: js/messages.php:166 +#: js/messages.php:178 #, fuzzy #| msgid "per second" msgid "Second" @@ -1380,7 +1424,7 @@ msgstr "Índices" #: libraries/Index.class.php:444 libraries/mult_submits.inc.php:103 #: libraries/tbl_properties.inc.php:519 tbl_structure.php:33 -#: tbl_structure.php:155 tbl_structure.php:159 tbl_structure.php:474 +#: tbl_structure.php:155 tbl_structure.php:159 tbl_structure.php:472 #: tbl_tracking.php:322 msgid "Unique" msgstr "Único" @@ -1423,8 +1467,8 @@ msgstr "" "Los índices %1$s y %2$s parecen ser iguales y posiblemente se puede remover " "uno." -#: libraries/List_Database.class.php:431 libraries/server_links.inc.php:41 -#: server_databases.php:88 server_privileges.php:1660 +#: libraries/List_Database.class.php:431 libraries/server_links.inc.php:42 +#: server_databases.php:88 server_privileges.php:1680 #: setup/lib/messages.inc.php:110 test/theme.php:93 msgid "Databases" msgstr "Bases de datos" @@ -1603,7 +1647,7 @@ msgstr "Contraseña:" msgid "Server Choice" msgstr "Elección del servidor" -#: libraries/auth/cookie.auth.lib.php:320 libraries/header.inc.php:59 +#: libraries/auth/cookie.auth.lib.php:320 libraries/header.inc.php:63 msgid "Cookies must be enabled past this point." msgstr "Las \"cookies\" deben estar habilitadas." @@ -1687,7 +1731,7 @@ msgstr "" "No se puede utilizar iconv ni libiconv ni la función recode_string mientras " "se carga la extensión de informes. Comprueba la configuración de php." -#: libraries/common.inc.php:583 +#: libraries/common.inc.php:587 msgid "" "phpMyAdmin was unable to read your configuration file!
This might " "happen if PHP finds a parse error in it or PHP cannot find the file.
Si recibe una página en blanco, todo está correcto." -#: libraries/common.inc.php:594 +#: libraries/common.inc.php:598 #, fuzzy, php-format #| msgid "Could not load default configuration from: \"%1$s\"" msgid "Could not load default configuration from: %1$s" msgstr "No fue posible cargar la configuración predeterminada desde: \"%1$s\"" -#: libraries/common.inc.php:599 +#: libraries/common.inc.php:603 msgid "" "The $cfg['PmaAbsoluteUri'] directive MUST be set in your " "configuration file!" @@ -1717,30 +1761,30 @@ msgstr "" "El contenido de $cfg['PmaAbsoluteUri'] ¡DEBE constar en config.inc." "php!" -#: libraries/common.inc.php:629 +#: libraries/common.inc.php:633 #, fuzzy, php-format #| msgid "Invalid server index: \"%s\"" msgid "Invalid server index: %s" msgstr "No es válido el índice del servidor: \"%s\"" -#: libraries/common.inc.php:636 +#: libraries/common.inc.php:640 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" "El nombre del host no es válido para el servidor %1$s. Por favor, revise su " "configuración." -#: libraries/common.inc.php:645 libraries/header.inc.php:96 +#: libraries/common.inc.php:649 libraries/header.inc.php:100 #: libraries/select_server.lib.php:41 libraries/select_server.lib.php:47 #: main.php:185 test/theme.php:57 msgid "Server" msgstr "Servidor" -#: libraries/common.inc.php:823 +#: libraries/common.inc.php:827 msgid "Invalid authentication method set in configuration:" msgstr "El método de autenticación no es válido en la configuración actual:" -#: libraries/common.inc.php:926 +#: libraries/common.inc.php:930 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Usted debería actualizar su %s a la versión %s o más reciente." @@ -1873,45 +1917,45 @@ msgstr "." msgid "%B %d, %Y at %I:%M %p" msgstr "%d-%m-%Y a las %H:%M:%S" -#: libraries/common.lib.php:1907 +#: libraries/common.lib.php:1911 #, 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:2322 libraries/common.lib.php:2325 +#: libraries/common.lib.php:2326 libraries/common.lib.php:2329 #: libraries/display_tbl.lib.php:290 server_status.php:719 msgid "Begin" msgstr "Empezar" -#: libraries/common.lib.php:2323 libraries/common.lib.php:2326 +#: libraries/common.lib.php:2327 libraries/common.lib.php:2330 #: libraries/display_tbl.lib.php:291 server_binlog.php:168 #: server_binlog.php:170 msgid "Previous" msgstr "Previo" -#: libraries/common.lib.php:2354 libraries/common.lib.php:2357 +#: libraries/common.lib.php:2358 libraries/common.lib.php:2361 #: libraries/display_tbl.lib.php:353 msgid "End" msgstr "Fin" -#: libraries/common.lib.php:2430 +#: libraries/common.lib.php:2434 #, php-format msgid "Jump to database "%s"." msgstr "Saltar a la base de datos "%s"." -#: libraries/common.lib.php:2450 +#: libraries/common.lib.php:2454 #, 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:2830 libraries/common.lib.php:2837 +#: libraries/common.lib.php:2834 libraries/common.lib.php:2841 #: libraries/db_links.inc.php:68 libraries/export/sql.php:25 -#: libraries/import/sql.php:18 libraries/server_links.inc.php:45 +#: libraries/import/sql.php:18 libraries/server_links.inc.php:46 #: libraries/tbl_links.inc.php:60 querywindow.php:99 test/theme.php:97 msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2839 libraries/db_links.inc.php:104 +#: libraries/common.lib.php:2843 libraries/db_links.inc.php:104 #: libraries/tbl_links.inc.php:95 libraries/tbl_links.inc.php:117 #: view_operations.php:89 msgid "Operations" @@ -1960,15 +2004,15 @@ msgstr "Generar una consulta" msgid "Designer" msgstr "Diseñador" -#: libraries/db_links.inc.php:98 libraries/server_links.inc.php:88 +#: libraries/db_links.inc.php:98 libraries/server_links.inc.php:89 #: libraries/tbl_links.inc.php:91 pmd_pdf.php:84 pmd_pdf.php:110 #: setup/frames/menu.inc.php:21 msgid "Import" msgstr "Importar" -#: libraries/db_links.inc.php:111 libraries/server_links.inc.php:66 -#: server_privileges.php:111 server_privileges.php:1722 -#: server_privileges.php:2071 test/theme.php:117 +#: libraries/db_links.inc.php:111 libraries/server_links.inc.php:67 +#: server_privileges.php:112 server_privileges.php:1742 +#: server_privileges.php:2092 test/theme.php:117 msgid "Privileges" msgstr "Privilegios" @@ -1987,7 +2031,7 @@ msgid "" msgstr "Podría ser aproximado. Léase la FAQ 3.11" #: libraries/db_structure.lib.php:69 server_databases.php:142 -#: tbl_printview.php:336 tbl_structure.php:682 +#: tbl_printview.php:336 tbl_structure.php:680 msgid "Overhead" msgstr "Residuo a depurar" @@ -2007,7 +2051,7 @@ msgid "(or the local MySQL server's socket is not correctly configured)" msgstr "" "(o el socket del servidor MySQL local no está configurado correctamente)" -#: libraries/dbi/mysql.dbi.lib.php:362 tbl_structure.php:608 +#: libraries/dbi/mysql.dbi.lib.php:362 tbl_structure.php:606 msgid "Details..." msgstr "Detalles..." @@ -2017,22 +2061,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:807 +#: libraries/replication_gui.lib.php:345 server_privileges.php:808 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:796 -#: server_privileges.php:800 server_privileges.php:811 -#: server_privileges.php:1538 server_synchronize.php:1175 +#: libraries/replication_gui.lib.php:349 server_privileges.php:797 +#: server_privileges.php:801 server_privileges.php:812 +#: server_privileges.php:1558 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:815 server_privileges.php:818 +#: server_privileges.php:816 server_privileges.php:819 msgid "Re-type" msgstr "Debe volver a escribir" @@ -2047,12 +2091,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:822 +#: libraries/replication_gui.lib.php:360 server_privileges.php:823 msgid "Generate Password" msgstr "Generar la contraseña" #: libraries/display_change_password.lib.php:75 -#: libraries/replication_gui.lib.php:363 server_privileges.php:825 +#: libraries/replication_gui.lib.php:363 server_privileges.php:826 msgid "Generate" msgstr "Generar" @@ -2065,8 +2109,8 @@ msgstr "Crear nueva base de datos" msgid "Create" msgstr "Crear" -#: libraries/display_create_database.lib.php:40 server_privileges.php:113 -#: server_privileges.php:1427 server_replication.php:35 +#: libraries/display_create_database.lib.php:40 server_privileges.php:114 +#: server_privileges.php:1447 server_replication.php:35 msgid "No Privileges" msgstr "Sin privilegios" @@ -2160,7 +2204,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:1875 server_processlist.php:75 +#: server_privileges.php:1895 server_processlist.php:75 msgid "None" msgstr "Ninguna" @@ -2355,7 +2399,7 @@ msgstr "Organizar según la clave" #: libraries/import/docsql.php:34 libraries/import/ldi.php:47 #: libraries/import/ods.php:30 libraries/import/sql.php:20 #: libraries/import/xls.php:26 libraries/import/xlsx.php:26 -#: libraries/import/xml.php:25 tbl_select.php:267 tbl_structure.php:753 +#: libraries/import/xml.php:25 tbl_select.php:267 tbl_structure.php:751 msgid "Options" msgstr "Opciones" @@ -2432,7 +2476,7 @@ msgstr "La consulta tardó %01.4f seg" #: libraries/display_tbl.lib.php:2089 libraries/mult_submits.inc.php:113 #: querywindow.php:125 querywindow.php:129 querywindow.php:132 -#: tbl_structure.php:25 tbl_structure.php:150 tbl_structure.php:470 +#: tbl_structure.php:25 tbl_structure.php:150 tbl_structure.php:468 msgid "Change" msgstr "Cambiar" @@ -2504,7 +2548,7 @@ 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:525 server_status.php:586 -#: server_status.php:607 tbl_printview.php:351 tbl_structure.php:696 +#: server_status.php:607 tbl_printview.php:351 tbl_structure.php:694 msgid "Total" msgstr "Total" @@ -2800,7 +2844,7 @@ msgstr "" "reciben el siguiente número más alto." #: libraries/export/codegen.php:37 setup/lib/messages.inc.php:88 -#: tbl_printview.php:376 tbl_structure.php:737 +#: tbl_printview.php:376 tbl_structure.php:735 msgid "Format" msgstr "Formato" @@ -2872,8 +2916,8 @@ 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:576 server_replication.php:316 tbl_printview.php:317 -#: tbl_structure.php:665 +#: server_privileges.php:577 server_replication.php:316 tbl_printview.php:317 +#: tbl_structure.php:663 msgid "Data" msgstr "Datos" @@ -2922,9 +2966,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:731 -#: server_privileges.php:734 server_privileges.php:790 -#: server_privileges.php:1537 server_privileges.php:2069 +#: libraries/replication_gui.lib.php:329 server_privileges.php:732 +#: server_privileges.php:735 server_privileges.php:791 +#: server_privileges.php:1557 server_privileges.php:2090 #: server_processlist.php:55 server_synchronize.php:1159 msgid "Host" msgstr "Servidor" @@ -3125,7 +3169,7 @@ msgstr "Exportar las opciones predeterminadas" msgid "Open new phpMyAdmin window" msgstr "Abrir nueva ventana de phpMyAdmin" -#: libraries/header.inc.php:115 +#: libraries/header.inc.php:119 #, fuzzy msgid "New table" msgstr "No existen tablas" @@ -3289,20 +3333,20 @@ 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 +#: tbl_structure.php:471 msgid "Primary" msgstr "Primaria" #: libraries/mult_submits.inc.php:98 libraries/tbl_properties.inc.php:116 #: libraries/tbl_properties.inc.php:525 tbl_printview.php:326 #: tbl_structure.php:31 tbl_structure.php:154 tbl_structure.php:158 -#: tbl_structure.php:475 tbl_structure.php:673 +#: tbl_structure.php:473 tbl_structure.php:671 msgid "Index" msgstr "Índice" #: libraries/mult_submits.inc.php:108 libraries/tbl_properties.inc.php:531 #: tbl_structure.php:35 tbl_structure.php:156 tbl_structure.php:160 -#: tbl_structure.php:478 +#: tbl_structure.php:476 msgid "Fulltext" msgstr "Texto completo" @@ -3606,8 +3650,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:711 -#: server_privileges.php:714 server_privileges.php:721 +#: libraries/replication_gui.lib.php:259 server_privileges.php:712 +#: server_privileges.php:715 server_privileges.php:722 #: server_synchronize.php:1171 msgid "User name" msgstr "Nombre de usuario" @@ -3634,7 +3678,7 @@ msgstr "Variable" #: 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 +#: tbl_structure.php:727 msgid "Value" msgstr "Valor" @@ -3652,34 +3696,34 @@ msgstr "" msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:254 server_privileges.php:716 +#: libraries/replication_gui.lib.php:254 server_privileges.php:717 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:717 -#: server_privileges.php:784 server_privileges.php:808 -#: server_privileges.php:1928 server_privileges.php:1958 +#: libraries/replication_gui.lib.php:346 server_privileges.php:718 +#: server_privileges.php:785 server_privileges.php:809 +#: server_privileges.php:1948 server_privileges.php:1978 msgid "Use text field" msgstr "Use el campo de texto" -#: libraries/replication_gui.lib.php:302 server_privileges.php:764 +#: libraries/replication_gui.lib.php:302 server_privileges.php:765 msgid "Any host" msgstr "Cualquier servidor" -#: libraries/replication_gui.lib.php:306 server_privileges.php:768 +#: libraries/replication_gui.lib.php:306 server_privileges.php:769 msgid "Local" msgstr "Local" -#: libraries/replication_gui.lib.php:312 server_privileges.php:773 +#: libraries/replication_gui.lib.php:312 server_privileges.php:774 msgid "This Host" msgstr "Este Host" -#: libraries/replication_gui.lib.php:318 server_privileges.php:779 +#: libraries/replication_gui.lib.php:318 server_privileges.php:780 msgid "Use Host Table" msgstr "Usar la tabla Anfitrión (Host)" -#: libraries/replication_gui.lib.php:331 server_privileges.php:792 +#: libraries/replication_gui.lib.php:331 server_privileges.php:793 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -3713,29 +3757,29 @@ msgstr "Idioma desconocido: %1$s." msgid "Servers" msgstr "Servidores" -#: libraries/server_links.inc.php:53 server_engines.php:112 +#: libraries/server_links.inc.php:54 server_engines.php:112 #: server_engines.php:116 server_status.php:415 test/theme.php:105 msgid "Variables" msgstr "Variables" -#: libraries/server_links.inc.php:57 test/theme.php:109 +#: libraries/server_links.inc.php:58 test/theme.php:109 msgid "Charsets" msgstr "Juegos de caracteres" -#: libraries/server_links.inc.php:61 test/theme.php:113 +#: libraries/server_links.inc.php:62 test/theme.php:113 msgid "Engines" msgstr "Motores" -#: libraries/server_links.inc.php:76 server_binlog.php:110 +#: libraries/server_links.inc.php:77 server_binlog.php:110 #: server_status.php:364 test/theme.php:121 msgid "Binary log" msgstr "Log binario" -#: libraries/server_links.inc.php:80 +#: libraries/server_links.inc.php:81 msgid "Processes" msgstr "Procesos" -#: libraries/server_links.inc.php:92 server_synchronize.php:1092 +#: libraries/server_links.inc.php:93 server_synchronize.php:1092 #: server_synchronize.php:1100 msgid "Synchronize" msgstr "" @@ -3990,13 +4034,13 @@ msgstr "definición de la PARTICIÓN" msgid "Save" msgstr "Grabar" -#: libraries/tbl_properties.inc.php:780 tbl_structure.php:542 +#: libraries/tbl_properties.inc.php:780 tbl_structure.php:540 #, fuzzy, php-format #| msgid "Add %s field(s)" msgid "Add %s column(s)" msgstr "Añadir %s campo(s)" -#: libraries/tbl_properties.inc.php:784 tbl_structure.php:536 +#: libraries/tbl_properties.inc.php:784 tbl_structure.php:534 #, fuzzy #| msgid "You have to add at least one field." msgid "You have to add at least one column." @@ -4213,8 +4257,8 @@ msgstr "Reiniciar" msgid "Protocol version" msgstr "Versión del protocolo" -#: main.php:189 server_privileges.php:1389 server_privileges.php:1536 -#: server_privileges.php:1650 server_privileges.php:2068 +#: main.php:189 server_privileges.php:1406 server_privileges.php:1556 +#: server_privileges.php:1670 server_privileges.php:2089 #: server_processlist.php:54 msgid "User" msgstr "Usuario" @@ -4673,116 +4717,116 @@ msgstr "Motores de almacenamiento" msgid "View dump (schema) of databases" msgstr "Ver el volcado (schema) de la base de datos" -#: server_privileges.php:24 server_privileges.php:266 +#: server_privileges.php:25 server_privileges.php:267 msgid "Includes all privileges except GRANT." msgstr "Incluye todos los privilegios excepto GRANT (CONCEDER)." -#: server_privileges.php:25 server_privileges.php:192 -#: server_privileges.php:515 +#: server_privileges.php:26 server_privileges.php:193 +#: server_privileges.php:516 msgid "Allows altering the structure of existing tables." msgstr "Permite alterar la estructura de las tablas existentes." -#: server_privileges.php:26 server_privileges.php:208 -#: server_privileges.php:521 +#: server_privileges.php:27 server_privileges.php:209 +#: server_privileges.php:522 msgid "Allows altering and dropping stored routines." msgstr "Permite alterar y eliminar las rutinas almacenadas." -#: server_privileges.php:27 server_privileges.php:184 -#: server_privileges.php:514 +#: server_privileges.php:28 server_privileges.php:185 +#: server_privileges.php:515 msgid "Allows creating new databases and tables." msgstr "Permite crear nuevas bases de datos y tablas." -#: server_privileges.php:28 server_privileges.php:207 -#: server_privileges.php:520 +#: server_privileges.php:29 server_privileges.php:208 +#: server_privileges.php:521 msgid "Allows creating stored routines." msgstr "Permite crear el almacenamiento de rutinas." -#: server_privileges.php:29 server_privileges.php:514 +#: server_privileges.php:30 server_privileges.php:515 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 +#: server_privileges.php:31 server_privileges.php:196 +#: server_privileges.php:519 msgid "Allows creating temporary tables." msgstr "Permite la creación de tablas temporales." -#: server_privileges.php:31 server_privileges.php:209 -#: server_privileges.php:554 +#: server_privileges.php:32 server_privileges.php:210 +#: server_privileges.php:555 msgid "Allows creating, dropping and renaming user accounts." msgstr "Permite crear, eliminar y cambiar el nombre de las cuentas de usuario." -#: server_privileges.php:32 server_privileges.php:199 -#: server_privileges.php:203 server_privileges.php:526 -#: server_privileges.php:530 +#: server_privileges.php:33 server_privileges.php:200 +#: server_privileges.php:204 server_privileges.php:527 +#: server_privileges.php:531 msgid "Allows creating new views." msgstr "Permite crear nuevas vistas." -#: server_privileges.php:33 server_privileges.php:183 -#: server_privileges.php:506 +#: server_privileges.php:34 server_privileges.php:184 +#: server_privileges.php:507 msgid "Allows deleting data." msgstr "Permite borrar datos." -#: server_privileges.php:34 server_privileges.php:185 -#: server_privileges.php:517 +#: server_privileges.php:35 server_privileges.php:186 +#: server_privileges.php:518 msgid "Allows dropping databases and tables." msgstr "Permite eliminar bases de datos y tablas." -#: server_privileges.php:35 server_privileges.php:517 +#: server_privileges.php:36 server_privileges.php:518 msgid "Allows dropping tables." msgstr "Permite eliminar tablas." -#: server_privileges.php:36 server_privileges.php:200 -#: server_privileges.php:534 +#: server_privileges.php:37 server_privileges.php:201 +#: server_privileges.php:535 msgid "Allows to set up events for the event scheduler" msgstr "Permite organizar los eventos para el gestor de eventos" -#: server_privileges.php:37 server_privileges.php:210 -#: server_privileges.php:522 +#: server_privileges.php:38 server_privileges.php:211 +#: server_privileges.php:523 msgid "Allows executing stored routines." msgstr "Permite ejecutar las rutinas almacenadas." -#: server_privileges.php:38 server_privileges.php:189 -#: server_privileges.php:509 +#: server_privileges.php:39 server_privileges.php:190 +#: server_privileges.php:510 msgid "Allows importing data from and exporting data into files." msgstr "Permite importar y exportar datos de y hacia archivos." -#: server_privileges.php:39 server_privileges.php:540 +#: server_privileges.php:40 server_privileges.php:541 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "Permite añadir usuarios y privilegios sin conectarse nuevamente a la tabla " "de privilegios." -#: server_privileges.php:40 server_privileges.php:191 -#: server_privileges.php:516 +#: server_privileges.php:41 server_privileges.php:192 +#: server_privileges.php:517 msgid "Allows creating and dropping indexes." msgstr "Permite crear y eliminar índices." -#: server_privileges.php:41 server_privileges.php:181 -#: server_privileges.php:442 server_privileges.php:504 +#: server_privileges.php:42 server_privileges.php:182 +#: server_privileges.php:443 server_privileges.php:505 msgid "Allows inserting and replacing data." msgstr "Permite insertar y reemplazar datos." -#: server_privileges.php:42 server_privileges.php:196 -#: server_privileges.php:549 +#: server_privileges.php:43 server_privileges.php:197 +#: server_privileges.php:550 msgid "Allows locking tables for the current thread." msgstr "Permite poner candados a las tablas para el proceso actual." -#: server_privileges.php:43 server_privileges.php:646 -#: server_privileges.php:648 +#: server_privileges.php:44 server_privileges.php:647 +#: server_privileges.php:649 msgid "Limits the number of new connections the user may open per hour." msgstr "" "Limita el número de conexiones nuevas que el usuario puede abrir por hora." -#: server_privileges.php:44 server_privileges.php:634 -#: server_privileges.php:636 +#: server_privileges.php:45 server_privileges.php:635 +#: server_privileges.php:637 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" "Limita el número de consultas que el usuario puede enviar al servidor por " "hora." -#: server_privileges.php:45 server_privileges.php:640 -#: server_privileges.php:642 +#: server_privileges.php:46 server_privileges.php:641 +#: server_privileges.php:643 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -4790,63 +4834,63 @@ msgstr "" "Limita el número de comandos que cambian cualquier tabla o base de datos que " "el usuario puede ejecutar por hora." -#: server_privileges.php:46 server_privileges.php:652 -#: server_privileges.php:654 +#: server_privileges.php:47 server_privileges.php:653 +#: server_privileges.php:655 msgid "Limits the number of simultaneous connections the user may have." msgstr "Limita el número de conexiones simultáneas que el usuario pueda tener." -#: server_privileges.php:47 server_privileges.php:188 -#: server_privileges.php:544 +#: server_privileges.php:48 server_privileges.php:189 +#: server_privileges.php:545 msgid "Allows viewing processes of all users" msgstr "Permite ver los procesos de todos los usuarios" -#: server_privileges.php:48 server_privileges.php:190 -#: server_privileges.php:448 server_privileges.php:550 +#: server_privileges.php:49 server_privileges.php:191 +#: server_privileges.php:449 server_privileges.php:551 msgid "Has no effect in this MySQL version." msgstr "No tiene efecto en esta versión de MySQL." -#: server_privileges.php:49 server_privileges.php:186 -#: server_privileges.php:545 +#: server_privileges.php:50 server_privileges.php:187 +#: server_privileges.php:546 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" "Permite volver a cargar los parámetros del servidor y depurar los cachés del " "servidor." -#: server_privileges.php:50 server_privileges.php:198 -#: server_privileges.php:552 +#: server_privileges.php:51 server_privileges.php:199 +#: server_privileges.php:553 msgid "Allows the user to ask where the slaves / masters are." msgstr "" "Da el derecho al usuario para preguntar dónde están los \"esclavos / masters" "\"." -#: server_privileges.php:51 server_privileges.php:197 -#: server_privileges.php:553 +#: server_privileges.php:52 server_privileges.php:198 +#: server_privileges.php:554 msgid "Needed for the replication slaves." msgstr "Necesario para los \"esclavos\" de replicación." -#: server_privileges.php:52 server_privileges.php:180 -#: server_privileges.php:439 server_privileges.php:503 +#: server_privileges.php:53 server_privileges.php:181 +#: server_privileges.php:440 server_privileges.php:504 msgid "Allows reading data." msgstr "Permite leer los datos." -#: server_privileges.php:53 server_privileges.php:193 -#: server_privileges.php:547 +#: server_privileges.php:54 server_privileges.php:194 +#: server_privileges.php:548 msgid "Gives access to the complete list of databases." msgstr "Concede acceso a la lista completa de bases de datos." -#: server_privileges.php:54 server_privileges.php:204 -#: server_privileges.php:206 server_privileges.php:519 +#: server_privileges.php:55 server_privileges.php:205 +#: server_privileges.php:207 server_privileges.php:520 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "" "Permite llevar a cabo las consultas SHOW CREATE VIEW (MOSTRAR CREAR VER)." -#: server_privileges.php:55 server_privileges.php:187 -#: server_privileges.php:546 +#: server_privileges.php:56 server_privileges.php:188 +#: server_privileges.php:547 msgid "Allows shutting down the server." msgstr "Permite desconectar el servidor." -#: server_privileges.php:56 server_privileges.php:194 -#: server_privileges.php:543 +#: server_privileges.php:57 server_privileges.php:195 +#: server_privileges.php:544 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -4857,161 +4901,161 @@ msgstr "" "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 +#: server_privileges.php:58 server_privileges.php:202 +#: server_privileges.php:536 msgid "Allows creating and dropping triggers" msgstr "Permite crear y eliminar un evento desencadenante" -#: server_privileges.php:58 server_privileges.php:182 -#: server_privileges.php:445 server_privileges.php:505 +#: server_privileges.php:59 server_privileges.php:183 +#: server_privileges.php:446 server_privileges.php:506 msgid "Allows changing data." msgstr "Permite cambiar los datos." -#: server_privileges.php:59 server_privileges.php:260 +#: server_privileges.php:60 server_privileges.php:261 msgid "No privileges." msgstr "Sin privilegios." -#: server_privileges.php:302 server_privileges.php:303 +#: server_privileges.php:303 server_privileges.php:304 #, fuzzy #| msgid "None" msgctxt "None privileges" msgid "None" msgstr "Ninguna" -#: server_privileges.php:431 server_privileges.php:566 -#: server_privileges.php:1718 server_privileges.php:1724 +#: server_privileges.php:432 server_privileges.php:567 +#: server_privileges.php:1738 server_privileges.php:1744 msgid "Table-specific privileges" msgstr "Privilegios específicos para la tabla" -#: server_privileges.php:432 server_privileges.php:574 -#: server_privileges.php:1540 +#: server_privileges.php:433 server_privileges.php:575 +#: server_privileges.php:1560 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:563 server_privileges.php:1539 +#: server_privileges.php:564 server_privileges.php:1559 msgid "Global privileges" msgstr "Privilegios globales" -#: server_privileges.php:565 server_privileges.php:1718 +#: server_privileges.php:566 server_privileges.php:1738 msgid "Database-specific privileges" msgstr "Privilegios específicos para la base de datos" -#: server_privileges.php:610 +#: server_privileges.php:611 msgid "Administration" msgstr "Administración" -#: server_privileges.php:630 +#: server_privileges.php:631 msgid "Resource limits" msgstr "Límites de recursos" -#: server_privileges.php:631 +#: server_privileges.php:632 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "" "Nota: si cambia los parámetros de estas opciones a 0 (cero), remueve el " "límite." -#: server_privileges.php:708 +#: server_privileges.php:709 msgid "Login Information" msgstr "Información de la cuenta" -#: server_privileges.php:802 +#: server_privileges.php:803 msgid "Do not change the password" msgstr "No cambiar la contraseña" -#: server_privileges.php:843 server_privileges.php:2205 +#: server_privileges.php:844 server_privileges.php:2226 #, fuzzy #| msgid "No user(s) found." msgid "No user found." msgstr "Usuario(s) no encontrado(s)." -#: server_privileges.php:887 +#: server_privileges.php:888 #, php-format msgid "The user %s already exists!" msgstr "¡El usuario %s ya existe!" -#: server_privileges.php:970 +#: server_privileges.php:971 msgid "You have added a new user." msgstr "Ha agregado un nuevo usuario." -#: server_privileges.php:1191 +#: server_privileges.php:1196 #, php-format msgid "You have updated the privileges for %s." msgstr "Ha actualizado los privilegios para %s." -#: server_privileges.php:1215 +#: server_privileges.php:1220 #, php-format msgid "You have revoked the privileges for %s" msgstr "Ha revocado los privilegios para %s" -#: server_privileges.php:1251 +#: server_privileges.php:1256 #, php-format msgid "The password for %s was changed successfully." msgstr "La contraseña para %s se cambió exitosamente." -#: server_privileges.php:1271 +#: server_privileges.php:1276 #, php-format msgid "Deleting %s" msgstr "Borrando %s" -#: server_privileges.php:1282 +#: server_privileges.php:1287 msgid "No users selected for deleting!" msgstr "¡No se han seleccionado usuarios para eliminar!" -#: server_privileges.php:1285 +#: server_privileges.php:1290 msgid "Reloading the privileges" msgstr "Cargando los privilegios nuevamente" -#: server_privileges.php:1300 +#: server_privileges.php:1305 msgid "The selected users have been deleted successfully." msgstr "Los usuarios seleccionados fueron borrados exitosamente." -#: server_privileges.php:1335 +#: server_privileges.php:1344 msgid "The privileges were reloaded successfully." msgstr "Los privilegios fueron cargados nuevamente de manera exitosa." -#: server_privileges.php:1363 server_privileges.php:1649 +#: server_privileges.php:1380 server_privileges.php:1669 msgid "Edit Privileges" msgstr "Editar los privilegios" -#: server_privileges.php:1372 +#: server_privileges.php:1389 msgid "Revoke" msgstr "Revocar" -#: server_privileges.php:1404 +#: server_privileges.php:1424 msgid "User overview" msgstr "Vista global de usuarios" -#: server_privileges.php:1541 server_privileges.php:1723 -#: server_privileges.php:2072 +#: server_privileges.php:1561 server_privileges.php:1743 +#: server_privileges.php:2093 msgid "Grant" msgstr "Conceder" -#: server_privileges.php:1560 server_privileges.php:2162 +#: server_privileges.php:1580 server_privileges.php:2183 msgid "Any" msgstr "cualquiera" -#: server_privileges.php:1609 server_privileges.php:1633 -#: server_privileges.php:2027 server_privileges.php:2216 +#: server_privileges.php:1629 server_privileges.php:1653 +#: server_privileges.php:2048 server_privileges.php:2237 msgid "Add a new User" msgstr "Agregar un nuevo usuario" -#: server_privileges.php:1614 +#: server_privileges.php:1634 msgid "Remove selected users" msgstr "Eliminar a los usuarios seleccionados" -#: server_privileges.php:1617 +#: server_privileges.php:1637 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:1618 server_privileges.php:1619 -#: server_privileges.php:1620 +#: server_privileges.php:1638 server_privileges.php:1639 +#: server_privileges.php:1640 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:1636 +#: server_privileges.php:1656 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -5025,50 +5069,50 @@ msgstr "" "manuales en él. En este caso, nuevamente deberá %scargar la página de " "privilegios%s antes de continuar." -#: server_privileges.php:1684 +#: server_privileges.php:1704 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:1724 +#: server_privileges.php:1744 msgid "Column-specific privileges" msgstr "Privilegios específicos para la columna" -#: server_privileges.php:1925 +#: server_privileges.php:1945 msgid "Add privileges on the following database" msgstr "Añadir privilegios a esta base de datos" -#: server_privileges.php:1943 +#: server_privileges.php:1963 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:1946 +#: server_privileges.php:1966 msgid "Add privileges on the following table" msgstr "Añadir privilegios a esta tabla" -#: server_privileges.php:2003 +#: server_privileges.php:2023 msgid "Change Login Information / Copy User" msgstr "Cambiar la información de la cuenta / Copiar el usuario" -#: server_privileges.php:2006 +#: server_privileges.php:2026 msgid "Create a new user with the same privileges and ..." msgstr "Crear un nuevo usuario con los mismos privilegios y..." -#: server_privileges.php:2008 +#: server_privileges.php:2028 msgid "... keep the old one." msgstr "...mantener el anterior." -#: server_privileges.php:2009 +#: server_privileges.php:2029 msgid " ... delete the old one from the user tables." msgstr " ...borrar el viejo de las tablas de usuario." -#: server_privileges.php:2010 +#: server_privileges.php:2030 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:2011 +#: server_privileges.php:2031 msgid "" " ... delete the old one from the user tables and reload the privileges " "afterwards." @@ -5076,46 +5120,46 @@ msgstr "" " ...borrar el viejo de las tablas de usuario y luego volver a cargar los " "privilegios." -#: server_privileges.php:2033 +#: server_privileges.php:2054 msgid "Database for user" msgstr "Base de datos para el usuario" -#: server_privileges.php:2037 +#: server_privileges.php:2058 #, fuzzy #| msgid "None" msgctxt "Create none database for user" msgid "None" msgstr "Ninguna" -#: server_privileges.php:2038 +#: server_privileges.php:2059 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:2039 +#: server_privileges.php:2060 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "" "Otorgue todos los privilegios al nombre que contiene comodín (username\\_%)" -#: server_privileges.php:2042 +#: server_privileges.php:2063 #, fuzzy, php-format msgid "Grant all privileges on database "%s"" msgstr "Revisar los privilegios para la base de datos "%s"." -#: server_privileges.php:2065 +#: server_privileges.php:2086 #, php-format msgid "Users having access to "%s"" msgstr "Usuarios con acceso a "%s"" -#: server_privileges.php:2173 +#: server_privileges.php:2194 msgid "global" msgstr "global" -#: server_privileges.php:2175 +#: server_privileges.php:2196 msgid "database-specific" msgstr "específico para la base de datos" -#: server_privileges.php:2177 +#: server_privileges.php:2198 msgid "wildcard" msgstr "comodín" @@ -8115,6 +8159,10 @@ msgstr "" msgid "Show insert query" msgstr "Mostrando la consulta SQL" +#: tbl_change.php:1143 +msgid "and then" +msgstr "y luego" + #: tbl_change.php:1147 msgid "Go back to previous page" msgstr "Volver" @@ -8197,7 +8245,7 @@ msgstr "" msgid "Add to index  %s column(s)" msgstr "Añadir al índice  %s columna(s)" -#: tbl_indexes.php:256 tbl_structure.php:589 tbl_structure.php:600 +#: tbl_indexes.php:256 tbl_structure.php:587 tbl_structure.php:598 msgid "Column count has to be larger than zero." msgstr "El número de columnas debe ser superior a cero." @@ -8311,39 +8359,39 @@ msgstr "Comprobar la integridad referencial:" msgid "Show tables" msgstr "Mostrar las tablas" -#: tbl_printview.php:310 tbl_structure.php:656 +#: tbl_printview.php:310 tbl_structure.php:654 msgid "Space usage" msgstr "Espacio utilizado" -#: tbl_printview.php:314 tbl_structure.php:660 +#: tbl_printview.php:314 tbl_structure.php:658 msgid "Usage" msgstr "Uso" -#: tbl_printview.php:341 tbl_structure.php:687 +#: tbl_printview.php:341 tbl_structure.php:685 msgid "Effective" msgstr "Efectivo/a" -#: tbl_printview.php:366 tbl_structure.php:725 +#: tbl_printview.php:366 tbl_structure.php:723 msgid "Row Statistics" msgstr "Estadísticas de la fila" -#: tbl_printview.php:369 tbl_structure.php:728 +#: tbl_printview.php:369 tbl_structure.php:726 msgid "Statements" msgstr "Enunciado" -#: tbl_printview.php:380 tbl_structure.php:740 +#: tbl_printview.php:380 tbl_structure.php:738 msgid "static" msgstr "" -#: tbl_printview.php:382 tbl_structure.php:742 +#: tbl_printview.php:382 tbl_structure.php:740 msgid "dynamic" msgstr "dinámico/a" -#: tbl_printview.php:404 tbl_structure.php:785 +#: tbl_printview.php:404 tbl_structure.php:783 msgid "Row length" msgstr "Longitud de la fila" -#: tbl_printview.php:414 tbl_structure.php:793 +#: tbl_printview.php:414 tbl_structure.php:791 msgid " Row size " msgstr " Tamaño de la fila " @@ -8421,50 +8469,50 @@ msgstr "Ninguna" msgid "Column %s has been dropped" msgstr "Se ha eliminado la tabla %s" -#: tbl_structure.php:385 +#: tbl_structure.php:384 #, php-format msgid "A primary key has been added on %s" msgstr "Se añadió una clave primaria en %s" -#: tbl_structure.php:400 tbl_structure.php:414 tbl_structure.php:428 +#: tbl_structure.php:398 tbl_structure.php:412 tbl_structure.php:426 #, php-format msgid "An index has been added on %s" msgstr "Se añadió un índice en %s" -#: tbl_structure.php:506 tbl_structure.php:508 +#: tbl_structure.php:504 tbl_structure.php:506 msgid "Relation view" msgstr "Vista de relaciones" -#: tbl_structure.php:515 tbl_structure.php:517 +#: tbl_structure.php:513 tbl_structure.php:515 msgid "Propose table structure" msgstr "Planteamiento de la estructura de tabla" -#: tbl_structure.php:540 +#: tbl_structure.php:538 #, fuzzy #| msgid "Add %s field(s)" msgid "Add column" msgstr "Añadir %s campo(s)" -#: tbl_structure.php:554 +#: tbl_structure.php:552 msgid "At End of Table" msgstr "Al final de la tabla" -#: tbl_structure.php:555 +#: tbl_structure.php:553 msgid "At Beginning of Table" msgstr "Al comienzo de la tabla" -#: tbl_structure.php:556 +#: tbl_structure.php:554 #, php-format msgid "After %s" msgstr "Después de %s" -#: tbl_structure.php:594 +#: tbl_structure.php:592 #, fuzzy, php-format #| msgid "Create an index on %s columns" msgid "Create an index on  %s columns" msgstr "Crear un índice en %s columna(s)" -#: tbl_structure.php:756 +#: tbl_structure.php:754 msgid "partitioned" msgstr "particionado" @@ -8934,9 +8982,6 @@ msgstr "Cambiar el nombre de la tabla a" #~ msgid "Process list" #~ msgstr "Lista de procesos" -#~ msgid "Reload privileges" -#~ msgstr "Cargar los privilegios nuevamente" - #~ msgid "" #~ "The users will still have the USAGE privilege until the privileges are " #~ "reloaded." diff --git a/po/et.po b/po/et.po index ff24c6467..fa368b81b 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-13 09:03-0400\n" +"POT-Creation-Date: 2010-06-22 00:55+0530\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:1514 +#: libraries/display_tbl.lib.php:417 server_privileges.php:1534 msgid "Show all" msgstr "Näita kõiki" -#: browse_foreigners.php:82 libraries/common.lib.php:2313 +#: browse_foreigners.php:82 libraries/common.lib.php:2317 #: 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,18 +37,18 @@ 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:2831 -#: libraries/common.lib.php:2838 libraries/db_links.inc.php:75 +#: db_structure.php:106 libraries/common.lib.php:2835 +#: libraries/common.lib.php:2842 libraries/db_links.inc.php:75 #: libraries/tbl_links.inc.php:63 msgid "Search" msgstr "Otsi" -#: browse_foreigners.php:153 db_operations.php:385 db_operations.php:429 -#: db_operations.php:499 db_operations.php:609 db_search.php:362 -#: db_structure.php:567 js/messages.php:48 libraries/Config.class.php:1046 +#: browse_foreigners.php:153 db_operations.php:394 db_operations.php:438 +#: db_operations.php:508 db_operations.php:618 db_search.php:362 +#: db_structure.php:565 js/messages.php:53 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:1335 libraries/common.lib.php:2288 +#: libraries/common.lib.php:1335 libraries/common.lib.php:2292 #: 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,15 +59,15 @@ 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:664 server_privileges.php:1624 -#: server_privileges.php:1971 server_privileges.php:2018 -#: server_privileges.php:2057 server_replication.php:235 +#: server_privileges.php:665 server_privileges.php:1644 +#: server_privileges.php:1991 server_privileges.php:2038 +#: server_privileges.php:2078 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 #: tbl_operations.php:302 tbl_operations.php:499 tbl_operations.php:561 -#: tbl_operations.php:681 tbl_select.php:327 tbl_structure.php:562 -#: tbl_structure.php:597 tbl_tracking.php:395 tbl_tracking.php:512 +#: tbl_operations.php:681 tbl_select.php:327 tbl_structure.php:560 +#: tbl_structure.php:595 tbl_tracking.php:395 tbl_tracking.php:512 #: view_create.php:182 view_operations.php:101 msgid "Go" msgstr "Mine" @@ -93,7 +93,7 @@ msgstr "Kasuta seda väärtust" msgid "Database %1$s has been created." msgstr "Andmebaas %s kustutatud." -#: db_datadict.php:49 db_operations.php:378 +#: db_datadict.php:49 db_operations.php:387 msgid "Database comment: " msgstr "Andmebaasi kommentaar: " @@ -120,10 +120,10 @@ 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:2070 +#: pdf_schema.php:1263 pdf_schema.php:1284 server_privileges.php:2091 #: 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 +#: tbl_structure.php:657 tbl_tracking.php:274 tbl_tracking.php:321 msgid "Type" msgstr "Tüüp" @@ -136,7 +136,7 @@ msgstr "Tüüp" msgid "Null" msgstr "Null" -#: db_datadict.php:178 db_structure.php:501 libraries/export/htmlword.php:247 +#: db_datadict.php:178 db_structure.php:499 libraries/export/htmlword.php:247 #: libraries/export/latex.php:360 libraries/export/odt.php:303 #: libraries/export/texytext.php:236 libraries/tbl_properties.inc.php:106 #: pdf_schema.php:1266 pdf_schema.php:1287 tbl_printview.php:146 @@ -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: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 +#: pdf_schema.php:1344 server_privileges.php:1588 server_privileges.php:1599 +#: server_privileges.php:1909 server_privileges.php:1914 +#: server_privileges.php:2208 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:1565 -#: server_privileges.php:1579 server_privileges.php:1889 -#: server_privileges.php:1892 server_privileges.php:2187 sql.php:193 +#: server_databases.php:64 server_privileges.php:1585 +#: server_privileges.php:1599 server_privileges.php:1909 +#: server_privileges.php:1912 server_privileges.php:2208 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" @@ -209,126 +209,122 @@ msgstr "Märgista kõik" msgid "Unselect All" msgstr "Puhasta kõik" -#: db_operations.php:38 tbl_create.php:54 +#: db_operations.php:43 tbl_create.php:54 msgid "The database name is empty!" msgstr "Andmebaasi nimi on tühi!" -#: db_operations.php:236 +#: db_operations.php:241 #, php-format msgid "Database %s has been renamed to %s" msgstr "Andmebaas %s on ümber nimetatud %s" -#: db_operations.php:240 +#: db_operations.php:245 #, php-format msgid "Database %s has been copied to %s" msgstr "Andmebaas %s on kopeeritud %s" -#: db_operations.php:412 +#: db_operations.php:421 msgid "Rename database to" msgstr "Nimeta andmebaas ümber" -#: db_operations.php:417 server_processlist.php:57 +#: db_operations.php:426 server_processlist.php:57 msgid "Command" msgstr "Käsk" -#: db_operations.php:429 tbl_change.php:1143 -msgid "and then" -msgstr "ja siis" - -#: db_operations.php:455 +#: db_operations.php:464 msgid "Copy database to" msgstr "Kopeeri andmebaas" -#: db_operations.php:462 tbl_operations.php:528 tbl_tracking.php:388 +#: db_operations.php:471 tbl_operations.php:528 tbl_tracking.php:388 msgid "Structure only" msgstr "Ainult struktuur" -#: db_operations.php:463 tbl_operations.php:529 tbl_tracking.php:390 +#: db_operations.php:472 tbl_operations.php:529 tbl_tracking.php:390 msgid "Structure and data" msgstr "Struktuur ja andmed" -#: db_operations.php:464 tbl_operations.php:530 tbl_tracking.php:389 +#: db_operations.php:473 tbl_operations.php:530 tbl_tracking.php:389 msgid "Data only" msgstr "Ainult andmed" -#: db_operations.php:472 +#: db_operations.php:481 msgid "CREATE DATABASE before copying" msgstr "CREATE DATABASE enne kopeerimist" -#: db_operations.php:475 libraries/export/sql.php:52 +#: db_operations.php:484 libraries/export/sql.php:52 #: libraries/export/sql.php:74 libraries/export/sql.php:76 #: libraries/export/sql.php:82 tbl_operations.php:536 #, php-format msgid "Add %s" msgstr "Lisa %s" -#: db_operations.php:479 libraries/export/sql.php:78 tbl_operations.php:299 +#: db_operations.php:488 libraries/export/sql.php:78 tbl_operations.php:299 #: tbl_operations.php:538 msgid "Add AUTO_INCREMENT value" msgstr "Lisa AUTO_INCREMENT väärtus" -#: db_operations.php:483 tbl_operations.php:545 +#: db_operations.php:492 tbl_operations.php:545 msgid "Add constraints" msgstr "Lisa piirangud" -#: db_operations.php:496 +#: db_operations.php:505 msgid "Switch to copied database" msgstr "Mine kopeeritud andmebaasile" -#: db_operations.php:537 +#: db_operations.php:546 msgid "BLOB Repository" msgstr "" -#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1352 -#: libraries/server_links.inc.php:49 server_processlist.php:59 +#: db_operations.php:549 db_tracking.php:76 libraries/common.lib.php:1352 +#: libraries/server_links.inc.php:50 server_processlist.php:59 #: tbl_tracking.php:596 test/theme.php:101 msgid "Status" msgstr "Staatus" -#: db_operations.php:548 +#: db_operations.php:557 #, fuzzy #| msgid "Enabled" msgctxt "BLOB repository" msgid "Enabled" msgstr "Lubatud" -#: db_operations.php:552 +#: db_operations.php:561 #, fuzzy msgid "Disable" msgstr "Keelatud" -#: db_operations.php:562 +#: db_operations.php:571 msgid "Damaged" msgstr "" -#: db_operations.php:566 +#: db_operations.php:575 #, fuzzy msgctxt "BLOB repository" msgid "Repair" msgstr "Paranda tabelit" -#: db_operations.php:574 +#: db_operations.php:583 #, fuzzy #| msgid "Disabled" msgctxt "BLOB repository" msgid "Disabled" msgstr "Keelatud" -#: db_operations.php:578 +#: db_operations.php:587 #, fuzzy msgid "Enable" msgstr "Lubatud" -#: db_operations.php:602 libraries/Index.class.php:448 +#: db_operations.php:611 libraries/Index.class.php:448 #: libraries/db_structure.lib.php:62 libraries/mysql_charsets.lib.php:107 #: libraries/tbl_properties.inc.php:107 libraries/tbl_properties.inc.php:730 #: server_collations.php:54 server_collations.php:66 server_databases.php:111 #: tbl_operations.php:363 tbl_select.php:137 tbl_structure.php:179 -#: tbl_structure.php:767 tbl_tracking.php:275 tbl_tracking.php:326 +#: tbl_structure.php:765 tbl_tracking.php:275 tbl_tracking.php:326 msgid "Collation" msgstr "Määrang" -#: db_operations.php:615 main.php:316 pdf_schema.php:34 +#: db_operations.php:624 main.php:316 pdf_schema.php:34 #, php-format msgid "" "The additional features for working with linked tables have been " @@ -337,14 +333,14 @@ msgstr "" "Lisavõimalused töötamiseks lingitud tabelitega on deaktiveeritud. Et lugeda " "miks see nii on, vajutage %ssiia%s." -#: db_operations.php:648 +#: db_operations.php:657 msgid "Edit PDF Pages" 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:1665 -#: server_privileges.php:1721 server_privileges.php:1985 +#: libraries/header.inc.php:130 pdf_pages.php:424 server_privileges.php:1685 +#: server_privileges.php:1741 server_privileges.php:2005 #: server_synchronize.php:423 server_synchronize.php:866 tbl_tracking.php:592 #: test/theme.php:75 msgid "Table" @@ -353,7 +349,7 @@ msgstr "Tabel" #: db_printview.php:105 libraries/db_structure.lib.php:56 #: libraries/header_printview.inc.php:63 libraries/import.lib.php:146 #: navigation.php:638 navigation.php:660 server_databases.php:122 -#: tbl_printview.php:394 tbl_structure.php:365 tbl_structure.php:777 +#: tbl_printview.php:394 tbl_structure.php:365 tbl_structure.php:775 msgid "Rows" msgstr "Ridu" @@ -361,30 +357,30 @@ msgstr "Ridu" msgid "Size" msgstr "Suurus" -#: db_printview.php:162 db_structure.php:457 libraries/export/sql.php:559 +#: db_printview.php:162 db_structure.php:455 libraries/export/sql.php:559 #: libraries/export/sql.php:899 msgid "in use" msgstr "kasutusel" #: db_printview.php:187 libraries/db_info.inc.php:88 #: libraries/export/sql.php:514 pdf_schema.php:1241 tbl_printview.php:434 -#: tbl_structure.php:809 +#: tbl_structure.php:807 msgid "Creation" msgstr "Loodud" #: db_printview.php:196 libraries/db_info.inc.php:93 #: libraries/export/sql.php:519 pdf_schema.php:1246 tbl_printview.php:444 -#: tbl_structure.php:817 +#: tbl_structure.php:815 msgid "Last update" msgstr "Viimane muudatus" #: db_printview.php:205 libraries/db_info.inc.php:98 #: libraries/export/sql.php:524 pdf_schema.php:1251 tbl_printview.php:454 -#: tbl_structure.php:825 +#: tbl_structure.php:823 msgid "Last check" msgstr "Viimane vaatamine" -#: db_printview.php:222 db_structure.php:480 +#: db_printview.php:222 db_structure.php:478 #, fuzzy, php-format #| msgid "%s table(s)" msgid "%s table" @@ -445,7 +441,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:297 tbl_change.php:1031 tbl_indexes.php:250 +#: server_privileges.php:298 tbl_change.php:1031 tbl_indexes.php:250 #: tbl_select.php:288 msgid "Or" msgstr "või" @@ -518,9 +514,9 @@ 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:2833 +#: db_structure.php:105 libraries/common.lib.php:2837 #: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50 -#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:467 +#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:465 msgid "Browse" msgstr "Vaata" @@ -565,36 +561,36 @@ 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:2832 libraries/sql_query_form.lib.php:334 +#: libraries/common.lib.php:2836 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:2829 libraries/common.lib.php:2836 +#: libraries/common.lib.php:2833 libraries/common.lib.php:2840 #: 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:1106 #: libraries/tbl_links.inc.php:56 pmd_general.php:134 -#: server_privileges.php:593 server_replication.php:315 tbl_tracking.php:269 +#: server_privileges.php:594 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:1656 +#: db_structure.php:543 db_structure.php:544 db_tracking.php:91 +#: libraries/Index.class.php:483 libraries/common.lib.php:1657 #: 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 -#: tbl_structure.php:152 tbl_structure.php:471 +#: tbl_structure.php:152 tbl_structure.php:469 msgid "Drop" 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:1655 +#: db_structure.php:541 db_structure.php:542 libraries/common.lib.php:1656 #: libraries/mult_submits.inc.php:39 libraries/tbl_links.inc.php:105 msgid "Empty" msgstr "Tühjenda" @@ -604,111 +600,111 @@ msgstr "Tühjenda" msgid "Table %s has been emptied" msgstr "Tabel %s tühjendatud" -#: db_structure.php:326 libraries/tbl_links.inc.php:133 +#: db_structure.php:325 libraries/tbl_links.inc.php:133 #, php-format msgid "View %s has been dropped" msgstr "Vaade %s on kustutatud" -#: db_structure.php:326 libraries/tbl_links.inc.php:133 +#: db_structure.php:325 libraries/tbl_links.inc.php:133 #, php-format msgid "Table %s has been dropped" msgstr "Tabel %s kustutatud" -#: db_structure.php:333 +#: db_structure.php:332 msgid "Tracking is active." msgstr "" -#: db_structure.php:335 +#: db_structure.php:334 msgid "Tracking is not active." msgstr "" -#: db_structure.php:420 libraries/display_tbl.lib.php:1944 +#: db_structure.php:418 libraries/display_tbl.lib.php:1944 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation%" "s." msgstr "" -#: db_structure.php:434 db_structure.php:448 libraries/header.inc.php:126 +#: db_structure.php:432 db_structure.php:446 libraries/header.inc.php:130 #: libraries/tbl_info.inc.php:66 tbl_structure.php:185 test/theme.php:74 msgid "View" msgstr "Vaade" -#: db_structure.php:485 libraries/db_structure.lib.php:49 -#: libraries/server_links.inc.php:70 server_replication.php:33 +#: db_structure.php:483 libraries/db_structure.lib.php:49 +#: libraries/server_links.inc.php:71 server_replication.php:33 #: server_replication.php:164 server_status.php:369 msgid "Replication" msgstr "Tiražeerimine" -#: db_structure.php:489 +#: db_structure.php:487 msgid "Sum" msgstr "Summa" -#: db_structure.php:496 libraries/StorageEngine.class.php:356 +#: db_structure.php:494 libraries/StorageEngine.class.php:356 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "%s on vaikimisi varundusmootor sellele MySQL serverile." -#: db_structure.php:524 db_structure.php:541 db_structure.php:542 +#: db_structure.php:522 db_structure.php:539 db_structure.php:540 #: 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:1596 tbl_structure.php:455 -#: tbl_structure.php:464 +#: server_databases.php:351 server_privileges.php:1616 tbl_structure.php:453 +#: tbl_structure.php:462 msgid "With selected:" msgstr "Valitud:" -#: db_structure.php:527 libraries/display_tbl.lib.php:2076 -#: server_databases.php:348 server_privileges.php:569 -#: server_privileges.php:1599 tbl_structure.php:458 +#: db_structure.php:525 libraries/display_tbl.lib.php:2076 +#: server_databases.php:348 server_privileges.php:570 +#: server_privileges.php:1619 tbl_structure.php:456 msgid "Check All" msgstr "Märgista kõik" -#: db_structure.php:531 libraries/display_tbl.lib.php:2077 +#: db_structure.php:529 libraries/display_tbl.lib.php:2077 #: libraries/replication_gui.lib.php:33 server_databases.php:350 -#: server_privileges.php:572 server_privileges.php:1603 tbl_structure.php:462 +#: server_privileges.php:573 server_privileges.php:1623 tbl_structure.php:460 msgid "Uncheck All" msgstr "Puhasta kõik" -#: db_structure.php:536 +#: db_structure.php:534 msgid "Check tables having overhead" msgstr "Kontrolli ülekulusid" -#: db_structure.php:547 db_structure.php:548 db_structure.php:599 +#: db_structure.php:545 db_structure.php:546 db_structure.php:597 #: libraries/display_tbl.lib.php:2180 libraries/mult_submits.inc.php:28 -#: tbl_structure.php:492 tbl_structure.php:494 +#: tbl_structure.php:490 tbl_structure.php:492 msgid "Print view" msgstr "Trükivaade" -#: db_structure.php:549 db_structure.php:550 libraries/mult_submits.inc.php:42 +#: db_structure.php:547 db_structure.php:548 libraries/mult_submits.inc.php:42 #: tbl_operations.php:581 msgid "Check table" msgstr "Kontrolli tabelit" -#: db_structure.php:551 db_structure.php:552 libraries/mult_submits.inc.php:47 -#: tbl_operations.php:621 tbl_structure.php:709 tbl_structure.php:711 +#: db_structure.php:549 db_structure.php:550 libraries/mult_submits.inc.php:47 +#: tbl_operations.php:621 tbl_structure.php:707 tbl_structure.php:709 msgid "Optimize table" msgstr "Optimiseeri tabelit" -#: db_structure.php:553 db_structure.php:554 libraries/mult_submits.inc.php:52 +#: db_structure.php:551 db_structure.php:552 libraries/mult_submits.inc.php:52 #: tbl_operations.php:611 msgid "Repair table" msgstr "Paranda tabelit" -#: db_structure.php:555 db_structure.php:556 libraries/mult_submits.inc.php:57 +#: db_structure.php:553 db_structure.php:554 libraries/mult_submits.inc.php:57 #: tbl_operations.php:601 msgid "Analyze table" msgstr "Analüüsi tabelit" -#: db_structure.php:557 db_structure.php:558 libraries/db_links.inc.php:71 +#: db_structure.php:555 db_structure.php:556 libraries/db_links.inc.php:71 #: 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:1380 +#: libraries/server_links.inc.php:85 libraries/tbl_links.inc.php:82 +#: pmd_pdf.php:84 pmd_pdf.php:109 server_privileges.php:1397 #: setup/frames/menu.inc.php:22 tbl_row_action.php:59 msgid "Export" msgstr "Ekspordi" -#: db_structure.php:606 libraries/display_pdf_schema.lib.php:44 +#: db_structure.php:604 libraries/display_pdf_schema.lib.php:44 msgid "Data Dictionary" msgstr "Andmesõnastik" @@ -720,10 +716,10 @@ msgstr "Kontrolli tabelit" #: db_tracking.php:71 libraries/export/htmlword.php:86 #: libraries/export/latex.php:148 libraries/export/odt.php:113 #: libraries/export/sql.php:342 libraries/export/texytext.php:84 -#: libraries/export/xml.php:255 libraries/header.inc.php:106 +#: libraries/export/xml.php:255 libraries/header.inc.php:110 #: libraries/header_printview.inc.php:58 server_databases.php:169 -#: server_privileges.php:1660 server_privileges.php:1721 -#: server_privileges.php:1979 server_processlist.php:56 +#: server_privileges.php:1680 server_privileges.php:1741 +#: server_privileges.php:1999 server_processlist.php:56 #: server_synchronize.php:1179 server_synchronize.php:1183 #: tbl_tracking.php:591 test/theme.php:65 msgid "Database" @@ -745,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:1542 server_privileges.php:1725 -#: server_privileges.php:2073 tbl_structure.php:187 +#: server_privileges.php:1562 server_privileges.php:1745 +#: server_privileges.php:2094 tbl_structure.php:187 msgid "Action" msgstr "Tegevus" @@ -783,8 +779,8 @@ msgstr "Ainult struktuur" msgid "Untracked tables" msgstr "Kontrolli tabelit" -#: db_tracking.php:172 db_tracking.php:174 tbl_structure.php:528 -#: tbl_structure.php:530 +#: db_tracking.php:172 db_tracking.php:174 tbl_structure.php:526 +#: tbl_structure.php:528 #, fuzzy msgid "Track table" msgstr "Kontrolli tabelit" @@ -952,186 +948,233 @@ msgstr "Masin on tühi!" msgid "The user name is empty!" msgstr "Kasutajanimi on tühi!" -#: js/messages.php:44 server_privileges.php:1236 user_password.php:70 +#: js/messages.php:44 server_privileges.php:1241 user_password.php:70 msgid "The password is empty!" msgstr "Parool on tühi!" -#: js/messages.php:45 server_privileges.php:1234 user_password.php:73 +#: js/messages.php:45 server_privileges.php:1239 user_password.php:73 msgid "The passwords aren't the same!" msgstr "Paroolid ei ühti!" -#: js/messages.php:49 pmd_general.php:342 pmd_general.php:379 +#: js/messages.php:46 +#, fuzzy +#| msgid "Add a new User" +msgid "Add a New User" +msgstr "Lisa uus kasutaja" + +#: js/messages.php:47 js/messages.php:54 pmd_general.php:342 +#: pmd_general.php:379 msgid "Cancel" msgstr "Katkesta" -#: js/messages.php:52 pmd_save_pos.php:54 +#: js/messages.php:48 +#, fuzzy +msgid "Create User" +msgstr "Suhte loomine (relation)" + +#: js/messages.php:49 +#, fuzzy +#| msgid "Reload privileges" +msgid "Reloading Privileges" +msgstr "Lae privileegid uuesti" + +#: js/messages.php:50 +#, fuzzy +#| msgid "Remove selected users" +msgid "Removing Selected Users" +msgstr "Eemalda valitud kasutajad" + +#: js/messages.php:57 +#, fuzzy +msgid "Loading" +msgstr "Lokaalne" + +#: js/messages.php:58 +#, fuzzy +#| msgid "Processes" +msgid "Processing Request" +msgstr "Protsessid" + +#: js/messages.php:59 +msgid "Error in Processing Request" +msgstr "" + +#: js/messages.php:60 +msgid "Dropping Column" +msgstr "" + +#: js/messages.php:61 +msgid "Adding Primary Key" +msgstr "" + +#: js/messages.php:64 pmd_save_pos.php:54 msgid "Modifications have been saved" msgstr "Muutused salvestatud" -#: js/messages.php:53 pmd_relation_upd.php:49 +#: js/messages.php:65 pmd_relation_upd.php:49 msgid "Relation deleted" msgstr "Suhe kustutatud" -#: js/messages.php:54 pmd_relation_new.php:64 +#: js/messages.php:66 pmd_relation_new.php:64 msgid "FOREIGN KEY relation added" msgstr "" -#: js/messages.php:55 pmd_relation_new.php:86 +#: js/messages.php:67 pmd_relation_new.php:86 msgid "Internal relation added" msgstr "Sisemine suhe loodud" -#: js/messages.php:56 pmd_relation_new.php:63 pmd_relation_new.php:88 +#: js/messages.php:68 pmd_relation_new.php:63 pmd_relation_new.php:88 msgid "Error: Relation not added." msgstr "" -#: js/messages.php:57 pmd_relation_new.php:31 +#: js/messages.php:69 pmd_relation_new.php:31 msgid "Error: relation already exists." msgstr "" -#: js/messages.php:58 +#: js/messages.php:70 msgid "Error saving coordinates for Designer." msgstr "" -#: js/messages.php:59 libraries/relation.lib.php:107 +#: js/messages.php:71 libraries/relation.lib.php:107 #: libraries/relation.lib.php:119 msgid "General relation features" msgstr "Peamised seoste võimalused" -#: js/messages.php:59 libraries/relation.lib.php:101 +#: js/messages.php:71 libraries/relation.lib.php:101 #: libraries/relation.lib.php:108 msgid "Disabled" msgstr "Keelatud" -#: js/messages.php:60 +#: js/messages.php:72 msgid "Select referenced key" msgstr "Vali eelistus võti (referenced key)" -#: js/messages.php:61 +#: js/messages.php:73 msgid "Select Foreign Key" msgstr "Vali võõrvõti(Foreign Key)" -#: js/messages.php:62 +#: js/messages.php:74 msgid "Please select the primary key or a unique key" msgstr "Palun vali primaarne või unkaalne võti" -#: js/messages.php:63 pmd_general.php:77 tbl_relation.php:548 +#: js/messages.php:75 pmd_general.php:77 tbl_relation.php:548 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" msgstr "Vali väli mida kuvada" #. l10n: Display text for calendar close link -#: js/messages.php:73 +#: js/messages.php:85 #, fuzzy msgid "Done" msgstr "Andmed" #. l10n: Display text for previous month link in calendar -#: js/messages.php:75 +#: js/messages.php:87 #, fuzzy #| msgid "Previous" msgid "Prev" msgstr "Eelmine" #. l10n: Display text for next month link in calendar -#: js/messages.php:77 libraries/common.lib.php:2353 -#: libraries/common.lib.php:2356 libraries/display_tbl.lib.php:338 +#: js/messages.php:89 libraries/common.lib.php:2357 +#: libraries/common.lib.php:2360 libraries/display_tbl.lib.php:338 #: server_binlog.php:205 server_binlog.php:207 tbl_printview.php:424 -#: tbl_structure.php:801 +#: tbl_structure.php:799 msgid "Next" msgstr "Järgmine" #. l10n: Display text for current month link in calendar -#: js/messages.php:79 +#: js/messages.php:91 #, fuzzy #| msgid "Total" msgid "Today" msgstr "Kokku" -#: js/messages.php:82 +#: js/messages.php:94 #, fuzzy #| msgid "Binary" msgid "January" msgstr "Binaarne" -#: js/messages.php:83 +#: js/messages.php:95 msgid "February" msgstr "" -#: js/messages.php:84 +#: js/messages.php:96 #, fuzzy #| msgid "Mar" msgid "March" msgstr "Mär" -#: js/messages.php:85 +#: js/messages.php:97 #, fuzzy #| msgid "Apr" msgid "April" msgstr "Apr" -#: js/messages.php:86 +#: js/messages.php:98 msgid "May" msgstr "Mai" -#: js/messages.php:87 +#: js/messages.php:99 #, fuzzy #| msgid "Jun" msgid "June" msgstr "Jun" -#: js/messages.php:88 +#: js/messages.php:100 #, fuzzy #| msgid "Jul" msgid "July" msgstr "Jul" -#: js/messages.php:89 +#: js/messages.php:101 #, fuzzy #| msgid "Aug" msgid "August" msgstr "Aug" -#: js/messages.php:90 +#: js/messages.php:102 msgid "September" msgstr "" -#: js/messages.php:91 +#: js/messages.php:103 #, fuzzy #| msgid "Oct" msgid "October" msgstr "Okt" -#: js/messages.php:92 +#: js/messages.php:104 msgid "November" msgstr "" -#: js/messages.php:93 +#: js/messages.php:105 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:97 libraries/common.lib.php:1557 +#: js/messages.php:109 libraries/common.lib.php:1557 msgid "Jan" msgstr "Jan" #. l10n: Short month name -#: js/messages.php:99 libraries/common.lib.php:1559 +#: js/messages.php:111 libraries/common.lib.php:1559 msgid "Feb" msgstr "Veb" #. l10n: Short month name -#: js/messages.php:101 libraries/common.lib.php:1561 +#: js/messages.php:113 libraries/common.lib.php:1561 msgid "Mar" msgstr "Mär" #. l10n: Short month name -#: js/messages.php:103 libraries/common.lib.php:1563 +#: js/messages.php:115 libraries/common.lib.php:1563 msgid "Apr" msgstr "Apr" #. l10n: Short month name -#: js/messages.php:105 libraries/common.lib.php:1565 +#: js/messages.php:117 libraries/common.lib.php:1565 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1139,176 +1182,176 @@ msgid "May" msgstr "Mai" #. l10n: Short month name -#: js/messages.php:107 libraries/common.lib.php:1567 +#: js/messages.php:119 libraries/common.lib.php:1567 msgid "Jun" msgstr "Jun" #. l10n: Short month name -#: js/messages.php:109 libraries/common.lib.php:1569 +#: js/messages.php:121 libraries/common.lib.php:1569 msgid "Jul" msgstr "Jul" #. l10n: Short month name -#: js/messages.php:111 libraries/common.lib.php:1571 +#: js/messages.php:123 libraries/common.lib.php:1571 msgid "Aug" msgstr "Aug" #. l10n: Short month name -#: js/messages.php:113 libraries/common.lib.php:1573 +#: js/messages.php:125 libraries/common.lib.php:1573 msgid "Sep" msgstr "Sep" #. l10n: Short month name -#: js/messages.php:115 libraries/common.lib.php:1575 +#: js/messages.php:127 libraries/common.lib.php:1575 msgid "Oct" msgstr "Okt" #. l10n: Short month name -#: js/messages.php:117 libraries/common.lib.php:1577 +#: js/messages.php:129 libraries/common.lib.php:1577 msgid "Nov" msgstr "Nov" #. l10n: Short month name -#: js/messages.php:119 libraries/common.lib.php:1579 +#: js/messages.php:131 libraries/common.lib.php:1579 msgid "Dec" msgstr "Det" -#: js/messages.php:122 +#: js/messages.php:134 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "Püh" -#: js/messages.php:123 +#: js/messages.php:135 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "Esm" -#: js/messages.php:124 +#: js/messages.php:136 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "Tei" -#: js/messages.php:125 +#: js/messages.php:137 msgid "Wednesday" msgstr "" -#: js/messages.php:126 +#: js/messages.php:138 msgid "Thursday" msgstr "" -#: js/messages.php:127 +#: js/messages.php:139 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "Ree" -#: js/messages.php:128 +#: js/messages.php:140 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:132 libraries/common.lib.php:1582 +#: js/messages.php:144 libraries/common.lib.php:1582 msgid "Sun" msgstr "Püh" #. l10n: Short week day name -#: js/messages.php:134 libraries/common.lib.php:1584 +#: js/messages.php:146 libraries/common.lib.php:1584 msgid "Mon" msgstr "Esm" #. l10n: Short week day name -#: js/messages.php:136 libraries/common.lib.php:1586 +#: js/messages.php:148 libraries/common.lib.php:1586 msgid "Tue" msgstr "Tei" #. l10n: Short week day name -#: js/messages.php:138 libraries/common.lib.php:1588 +#: js/messages.php:150 libraries/common.lib.php:1588 msgid "Wed" msgstr "Kol" #. l10n: Short week day name -#: js/messages.php:140 libraries/common.lib.php:1590 +#: js/messages.php:152 libraries/common.lib.php:1590 msgid "Thu" msgstr "Nel" #. l10n: Short week day name -#: js/messages.php:142 libraries/common.lib.php:1592 +#: js/messages.php:154 libraries/common.lib.php:1592 msgid "Fri" msgstr "Ree" #. l10n: Short week day name -#: js/messages.php:144 libraries/common.lib.php:1594 +#: js/messages.php:156 libraries/common.lib.php:1594 msgid "Sat" msgstr "Lau" #. l10n: Minimal week day name -#: js/messages.php:148 +#: js/messages.php:160 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "Püh" #. l10n: Minimal week day name -#: js/messages.php:150 +#: js/messages.php:162 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "Esm" #. l10n: Minimal week day name -#: js/messages.php:152 +#: js/messages.php:164 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "Tei" #. l10n: Minimal week day name -#: js/messages.php:154 +#: js/messages.php:166 #, fuzzy #| msgid "Wed" msgid "We" msgstr "Kol" #. l10n: Minimal week day name -#: js/messages.php:156 +#: js/messages.php:168 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "Nel" #. l10n: Minimal week day name -#: js/messages.php:158 +#: js/messages.php:170 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "Ree" #. l10n: Minimal week day name -#: js/messages.php:160 +#: js/messages.php:172 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "Lau" #. l10n: Column header for week of the year in calendar -#: js/messages.php:162 +#: js/messages.php:174 msgid "Wk" msgstr "" -#: js/messages.php:164 +#: js/messages.php:176 msgid "Hour" msgstr "" -#: js/messages.php:165 +#: js/messages.php:177 #, fuzzy #| msgid "in use" msgid "Minute" msgstr "kasutusel" -#: js/messages.php:166 +#: js/messages.php:178 #, fuzzy #| msgid "per second" msgid "Second" @@ -1366,7 +1409,7 @@ msgstr "Indeksid" #: libraries/Index.class.php:444 libraries/mult_submits.inc.php:103 #: libraries/tbl_properties.inc.php:519 tbl_structure.php:33 -#: tbl_structure.php:155 tbl_structure.php:159 tbl_structure.php:474 +#: tbl_structure.php:155 tbl_structure.php:159 tbl_structure.php:472 #: tbl_tracking.php:322 msgid "Unique" msgstr "Unikaalne" @@ -1408,8 +1451,8 @@ msgid "" "removed." msgstr "" -#: libraries/List_Database.class.php:431 libraries/server_links.inc.php:41 -#: server_databases.php:88 server_privileges.php:1660 +#: libraries/List_Database.class.php:431 libraries/server_links.inc.php:42 +#: server_databases.php:88 server_privileges.php:1680 #: setup/lib/messages.inc.php:110 test/theme.php:93 msgid "Databases" msgstr "Andmebaasid" @@ -1579,7 +1622,7 @@ msgstr "Parool:" msgid "Server Choice" msgstr "Serveri valik" -#: libraries/auth/cookie.auth.lib.php:320 libraries/header.inc.php:59 +#: libraries/auth/cookie.auth.lib.php:320 libraries/header.inc.php:63 msgid "Cookies must be enabled past this point." msgstr "Küpsised(cookies) peavad alates sellest momendist lubatud olema." @@ -1659,7 +1702,7 @@ msgstr "" "Ei suuda kasutada iconv-d või libiconvi või recode_string funktsiooni kuigi " "moodul on installitud Kontrollige oma PHP konfiguratsiooni." -#: libraries/common.inc.php:583 +#: libraries/common.inc.php:587 msgid "" "phpMyAdmin was unable to read your configuration file!
This might " "happen if PHP finds a parse error in it or PHP cannot find the file.
Kui Teile kuvatakse tühi leht on " "kõik korras." -#: libraries/common.inc.php:594 +#: libraries/common.inc.php:598 #, fuzzy, php-format #| msgid "Could not load default configuration from: \"%1$s\"" msgid "Could not load default configuration from: %1$s" msgstr "Pole võimalik laadida vaikimisi seadete faili: \"%1$s\"" -#: libraries/common.inc.php:599 +#: libraries/common.inc.php:603 msgid "" "The $cfg['PmaAbsoluteUri'] directive MUST be set in your " "configuration file!" @@ -1689,28 +1732,28 @@ msgstr "" "$cfg['PmaAbsoluteUri'] konstant peab teie konfiguratsioonifailis " "määratud olema!" -#: libraries/common.inc.php:629 +#: libraries/common.inc.php:633 #, fuzzy, php-format #| msgid "Invalid server index: \"%s\"" msgid "Invalid server index: %s" msgstr "Vigane serveri indeks: \"%s\"" -#: libraries/common.inc.php:636 +#: libraries/common.inc.php:640 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "Vigane hostname serverile %1$s. Palun kontrolli seadeid." -#: libraries/common.inc.php:645 libraries/header.inc.php:96 +#: libraries/common.inc.php:649 libraries/header.inc.php:100 #: libraries/select_server.lib.php:41 libraries/select_server.lib.php:47 #: main.php:185 test/theme.php:57 msgid "Server" msgstr "Server" -#: libraries/common.inc.php:823 +#: libraries/common.inc.php:827 msgid "Invalid authentication method set in configuration:" msgstr "Vigane autoriseerimise meetod konfiguratsioonifailis:" -#: libraries/common.inc.php:926 +#: libraries/common.inc.php:930 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Te peaksite uuendama %s -i versioonini %s või uuemaks." @@ -1845,45 +1888,45 @@ msgstr "." msgid "%B %d, %Y at %I:%M %p" msgstr "%d.%m.%Y kell %H:%M:%S" -#: libraries/common.lib.php:1907 +#: libraries/common.lib.php:1911 #, 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:2322 libraries/common.lib.php:2325 +#: libraries/common.lib.php:2326 libraries/common.lib.php:2329 #: libraries/display_tbl.lib.php:290 server_status.php:719 msgid "Begin" msgstr "Algus" -#: libraries/common.lib.php:2323 libraries/common.lib.php:2326 +#: libraries/common.lib.php:2327 libraries/common.lib.php:2330 #: libraries/display_tbl.lib.php:291 server_binlog.php:168 #: server_binlog.php:170 msgid "Previous" msgstr "Eelmine" -#: libraries/common.lib.php:2354 libraries/common.lib.php:2357 +#: libraries/common.lib.php:2358 libraries/common.lib.php:2361 #: libraries/display_tbl.lib.php:353 msgid "End" msgstr "Lõpp" -#: libraries/common.lib.php:2430 +#: libraries/common.lib.php:2434 #, php-format msgid "Jump to database "%s"." msgstr "Hüppa andmebaasile "%s"." -#: libraries/common.lib.php:2450 +#: libraries/common.lib.php:2454 #, 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:2830 libraries/common.lib.php:2837 +#: libraries/common.lib.php:2834 libraries/common.lib.php:2841 #: libraries/db_links.inc.php:68 libraries/export/sql.php:25 -#: libraries/import/sql.php:18 libraries/server_links.inc.php:45 +#: libraries/import/sql.php:18 libraries/server_links.inc.php:46 #: libraries/tbl_links.inc.php:60 querywindow.php:99 test/theme.php:97 msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2839 libraries/db_links.inc.php:104 +#: libraries/common.lib.php:2843 libraries/db_links.inc.php:104 #: libraries/tbl_links.inc.php:95 libraries/tbl_links.inc.php:117 #: view_operations.php:89 msgid "Operations" @@ -1932,15 +1975,15 @@ msgstr "Päring näite järgi" msgid "Designer" msgstr "Kujundaja" -#: libraries/db_links.inc.php:98 libraries/server_links.inc.php:88 +#: libraries/db_links.inc.php:98 libraries/server_links.inc.php:89 #: libraries/tbl_links.inc.php:91 pmd_pdf.php:84 pmd_pdf.php:110 #: setup/frames/menu.inc.php:21 msgid "Import" msgstr "Import" -#: libraries/db_links.inc.php:111 libraries/server_links.inc.php:66 -#: server_privileges.php:111 server_privileges.php:1722 -#: server_privileges.php:2071 test/theme.php:117 +#: libraries/db_links.inc.php:111 libraries/server_links.inc.php:67 +#: server_privileges.php:112 server_privileges.php:1742 +#: server_privileges.php:2092 test/theme.php:117 msgid "Privileges" msgstr "Privileegid" @@ -1959,7 +2002,7 @@ msgid "" msgstr "Võib olla umbkaudne. Vaadake FAQ 3.11" #: libraries/db_structure.lib.php:69 server_databases.php:142 -#: tbl_printview.php:336 tbl_structure.php:682 +#: tbl_printview.php:336 tbl_structure.php:680 msgid "Overhead" msgstr "Ülejääv" @@ -1976,7 +2019,7 @@ msgstr "Server ei vasta" msgid "(or the local MySQL server's socket is not correctly configured)" msgstr "(või kohaliku MySQL serveri soketid ei ole korrektselt seadistatud)" -#: libraries/dbi/mysql.dbi.lib.php:362 tbl_structure.php:608 +#: libraries/dbi/mysql.dbi.lib.php:362 tbl_structure.php:606 msgid "Details..." msgstr "" @@ -1986,22 +2029,22 @@ msgid "Change password" msgstr "Muuda parooli" #: libraries/display_change_password.lib.php:35 -#: libraries/replication_gui.lib.php:345 server_privileges.php:807 +#: libraries/replication_gui.lib.php:345 server_privileges.php:808 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:796 -#: server_privileges.php:800 server_privileges.php:811 -#: server_privileges.php:1538 server_synchronize.php:1175 +#: libraries/replication_gui.lib.php:349 server_privileges.php:797 +#: server_privileges.php:801 server_privileges.php:812 +#: server_privileges.php:1558 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:815 server_privileges.php:818 +#: server_privileges.php:816 server_privileges.php:819 msgid "Re-type" msgstr "Sisesta uuesti" @@ -2016,12 +2059,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:822 +#: libraries/replication_gui.lib.php:360 server_privileges.php:823 msgid "Generate Password" msgstr "Genereeri parool" #: libraries/display_change_password.lib.php:75 -#: libraries/replication_gui.lib.php:363 server_privileges.php:825 +#: libraries/replication_gui.lib.php:363 server_privileges.php:826 msgid "Generate" msgstr "Genereeri" @@ -2034,8 +2077,8 @@ msgstr "Loo uus andmebaas" msgid "Create" msgstr "Loo" -#: libraries/display_create_database.lib.php:40 server_privileges.php:113 -#: server_privileges.php:1427 server_replication.php:35 +#: libraries/display_create_database.lib.php:40 server_privileges.php:114 +#: server_privileges.php:1447 server_replication.php:35 msgid "No Privileges" msgstr "Ei oma ühtegi privileegi" @@ -2126,7 +2169,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:1875 server_processlist.php:75 +#: server_privileges.php:1895 server_processlist.php:75 msgid "None" msgstr "Pole" @@ -2315,7 +2358,7 @@ msgstr "Sorteeri võtme järgi" #: libraries/import/docsql.php:34 libraries/import/ldi.php:47 #: libraries/import/ods.php:30 libraries/import/sql.php:20 #: libraries/import/xls.php:26 libraries/import/xlsx.php:26 -#: libraries/import/xml.php:25 tbl_select.php:267 tbl_structure.php:753 +#: libraries/import/xml.php:25 tbl_select.php:267 tbl_structure.php:751 #, fuzzy msgid "Options" msgstr "Tegevused" @@ -2394,7 +2437,7 @@ msgstr "Päring kestis %01.4f sek" #: libraries/display_tbl.lib.php:2089 libraries/mult_submits.inc.php:113 #: querywindow.php:125 querywindow.php:129 querywindow.php:132 -#: tbl_structure.php:25 tbl_structure.php:150 tbl_structure.php:470 +#: tbl_structure.php:25 tbl_structure.php:150 tbl_structure.php:468 msgid "Change" msgstr "Muuda" @@ -2464,7 +2507,7 @@ msgstr "Puhverdusala kasutamine" #: libraries/engines/innodb.lib.php:194 server_databases.php:137 #: server_databases.php:305 server_status.php:525 server_status.php:586 -#: server_status.php:607 tbl_printview.php:351 tbl_structure.php:696 +#: server_status.php:607 tbl_printview.php:351 tbl_structure.php:694 msgid "Total" msgstr "Kokku" @@ -2725,7 +2768,7 @@ msgid "" msgstr "" #: libraries/export/codegen.php:37 setup/lib/messages.inc.php:88 -#: tbl_printview.php:376 tbl_structure.php:737 +#: tbl_printview.php:376 tbl_structure.php:735 msgid "Format" msgstr "Formaat" @@ -2797,8 +2840,8 @@ 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:576 server_replication.php:316 tbl_printview.php:317 -#: tbl_structure.php:665 +#: server_privileges.php:577 server_replication.php:316 tbl_printview.php:317 +#: tbl_structure.php:663 msgid "Data" msgstr "Andmed" @@ -2847,9 +2890,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:731 -#: server_privileges.php:734 server_privileges.php:790 -#: server_privileges.php:1537 server_privileges.php:2069 +#: libraries/replication_gui.lib.php:329 server_privileges.php:732 +#: server_privileges.php:735 server_privileges.php:791 +#: server_privileges.php:1557 server_privileges.php:2090 #: server_processlist.php:55 server_synchronize.php:1159 msgid "Host" msgstr "Masin" @@ -3048,7 +3091,7 @@ msgstr "Ekspordi tüüp" msgid "Open new phpMyAdmin window" msgstr "Ava uus phpMyAdmin aken" -#: libraries/header.inc.php:115 +#: libraries/header.inc.php:119 #, fuzzy msgid "New table" msgstr "Pole tabeleid" @@ -3211,20 +3254,20 @@ 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 +#: tbl_structure.php:471 msgid "Primary" msgstr "Primaarne" #: libraries/mult_submits.inc.php:98 libraries/tbl_properties.inc.php:116 #: libraries/tbl_properties.inc.php:525 tbl_printview.php:326 #: tbl_structure.php:31 tbl_structure.php:154 tbl_structure.php:158 -#: tbl_structure.php:475 tbl_structure.php:673 +#: tbl_structure.php:473 tbl_structure.php:671 msgid "Index" msgstr "Indeks" #: libraries/mult_submits.inc.php:108 libraries/tbl_properties.inc.php:531 #: tbl_structure.php:35 tbl_structure.php:156 tbl_structure.php:160 -#: tbl_structure.php:478 +#: tbl_structure.php:476 msgid "Fulltext" msgstr "Täistekst" @@ -3525,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:711 -#: server_privileges.php:714 server_privileges.php:721 +#: libraries/replication_gui.lib.php:259 server_privileges.php:712 +#: server_privileges.php:715 server_privileges.php:722 #: server_synchronize.php:1171 msgid "User name" msgstr "Kasutajanimi" @@ -3553,7 +3596,7 @@ msgstr "Muutuja" #: 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 +#: tbl_structure.php:727 msgid "Value" msgstr "Väärtus" @@ -3571,34 +3614,34 @@ msgstr "" msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:254 server_privileges.php:716 +#: libraries/replication_gui.lib.php:254 server_privileges.php:717 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:717 -#: server_privileges.php:784 server_privileges.php:808 -#: server_privileges.php:1928 server_privileges.php:1958 +#: libraries/replication_gui.lib.php:346 server_privileges.php:718 +#: server_privileges.php:785 server_privileges.php:809 +#: server_privileges.php:1948 server_privileges.php:1978 msgid "Use text field" msgstr "Kasutage tekstivälja" -#: libraries/replication_gui.lib.php:302 server_privileges.php:764 +#: libraries/replication_gui.lib.php:302 server_privileges.php:765 msgid "Any host" msgstr "Kõik masinad" -#: libraries/replication_gui.lib.php:306 server_privileges.php:768 +#: libraries/replication_gui.lib.php:306 server_privileges.php:769 msgid "Local" msgstr "Lokaalne" -#: libraries/replication_gui.lib.php:312 server_privileges.php:773 +#: libraries/replication_gui.lib.php:312 server_privileges.php:774 msgid "This Host" msgstr "Antud host" -#: libraries/replication_gui.lib.php:318 server_privileges.php:779 +#: libraries/replication_gui.lib.php:318 server_privileges.php:780 msgid "Use Host Table" msgstr "Kasuta host tabelit" -#: libraries/replication_gui.lib.php:331 server_privileges.php:792 +#: libraries/replication_gui.lib.php:331 server_privileges.php:793 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -3632,29 +3675,29 @@ msgstr "Tundmatu keel: %1$s." msgid "Servers" msgstr "Serverid" -#: libraries/server_links.inc.php:53 server_engines.php:112 +#: libraries/server_links.inc.php:54 server_engines.php:112 #: server_engines.php:116 server_status.php:415 test/theme.php:105 msgid "Variables" msgstr "Muutujad" -#: libraries/server_links.inc.php:57 test/theme.php:109 +#: libraries/server_links.inc.php:58 test/theme.php:109 msgid "Charsets" msgstr "Tähetabelid" -#: libraries/server_links.inc.php:61 test/theme.php:113 +#: libraries/server_links.inc.php:62 test/theme.php:113 msgid "Engines" msgstr "Mootor" -#: libraries/server_links.inc.php:76 server_binlog.php:110 +#: libraries/server_links.inc.php:77 server_binlog.php:110 #: server_status.php:364 test/theme.php:121 msgid "Binary log" msgstr "Binaarne logi" -#: libraries/server_links.inc.php:80 +#: libraries/server_links.inc.php:81 msgid "Processes" msgstr "Protsessid" -#: libraries/server_links.inc.php:92 server_synchronize.php:1092 +#: libraries/server_links.inc.php:93 server_synchronize.php:1092 #: server_synchronize.php:1100 msgid "Synchronize" msgstr "" @@ -3906,13 +3949,13 @@ msgstr "" msgid "Save" msgstr "Salvesta" -#: libraries/tbl_properties.inc.php:780 tbl_structure.php:542 +#: libraries/tbl_properties.inc.php:780 tbl_structure.php:540 #, fuzzy, php-format #| msgid "Add %s field(s)" msgid "Add %s column(s)" msgstr "Lisa %s väli(jad)" -#: libraries/tbl_properties.inc.php:784 tbl_structure.php:536 +#: libraries/tbl_properties.inc.php:784 tbl_structure.php:534 #, fuzzy #| msgid "You have to add at least one field." msgid "You have to add at least one column." @@ -4126,8 +4169,8 @@ msgstr "Tühista" msgid "Protocol version" msgstr "Protokolli versioon" -#: main.php:189 server_privileges.php:1389 server_privileges.php:1536 -#: server_privileges.php:1650 server_privileges.php:2068 +#: main.php:189 server_privileges.php:1406 server_privileges.php:1556 +#: server_privileges.php:1670 server_privileges.php:2089 #: server_processlist.php:54 msgid "User" msgstr "Kasutaja" @@ -4567,113 +4610,113 @@ msgstr "Varundusmootorid" msgid "View dump (schema) of databases" msgstr "Näita andmebaaside sisu (skeemi)" -#: server_privileges.php:24 server_privileges.php:266 +#: server_privileges.php:25 server_privileges.php:267 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 +#: server_privileges.php:26 server_privileges.php:193 +#: server_privileges.php:516 msgid "Allows altering the structure of existing tables." msgstr "Lubab muuta olemasolevate tabelite struktuure." -#: server_privileges.php:26 server_privileges.php:208 -#: server_privileges.php:521 +#: server_privileges.php:27 server_privileges.php:209 +#: server_privileges.php:522 msgid "Allows altering and dropping stored routines." msgstr "Lubabu salvestatud rutiinide muutmise ja kustutamise." -#: server_privileges.php:27 server_privileges.php:184 -#: server_privileges.php:514 +#: server_privileges.php:28 server_privileges.php:185 +#: server_privileges.php:515 msgid "Allows creating new databases and tables." msgstr "Lubab luua uusi andmebaase ja tabeleid." -#: server_privileges.php:28 server_privileges.php:207 -#: server_privileges.php:520 +#: server_privileges.php:29 server_privileges.php:208 +#: server_privileges.php:521 msgid "Allows creating stored routines." msgstr "Lubab salvestatud rutiinide loomise." -#: server_privileges.php:29 server_privileges.php:514 +#: server_privileges.php:30 server_privileges.php:515 msgid "Allows creating new tables." msgstr "Lubab luua uusi tabeleid." -#: server_privileges.php:30 server_privileges.php:195 -#: server_privileges.php:518 +#: server_privileges.php:31 server_privileges.php:196 +#: server_privileges.php:519 msgid "Allows creating temporary tables." msgstr "Lubab luua ajutisi tabeleid." -#: server_privileges.php:31 server_privileges.php:209 -#: server_privileges.php:554 +#: server_privileges.php:32 server_privileges.php:210 +#: server_privileges.php:555 msgid "Allows creating, dropping and renaming user accounts." msgstr "Lubab kasutajakontode loomise, kustutamise ja muutmise." -#: server_privileges.php:32 server_privileges.php:199 -#: server_privileges.php:203 server_privileges.php:526 -#: server_privileges.php:530 +#: server_privileges.php:33 server_privileges.php:200 +#: server_privileges.php:204 server_privileges.php:527 +#: server_privileges.php:531 msgid "Allows creating new views." msgstr "Lubab uute vaadete loomist." -#: server_privileges.php:33 server_privileges.php:183 -#: server_privileges.php:506 +#: server_privileges.php:34 server_privileges.php:184 +#: server_privileges.php:507 msgid "Allows deleting data." msgstr "Lubab kustutada infot." -#: server_privileges.php:34 server_privileges.php:185 -#: server_privileges.php:517 +#: server_privileges.php:35 server_privileges.php:186 +#: server_privileges.php:518 msgid "Allows dropping databases and tables." msgstr "Lubab kustuada andmebaase ja tabeleid." -#: server_privileges.php:35 server_privileges.php:517 +#: server_privileges.php:36 server_privileges.php:518 msgid "Allows dropping tables." msgstr "Lubab kustutada tabeleid.." -#: server_privileges.php:36 server_privileges.php:200 -#: server_privileges.php:534 +#: server_privileges.php:37 server_privileges.php:201 +#: server_privileges.php:535 msgid "Allows to set up events for the event scheduler" msgstr "" -#: server_privileges.php:37 server_privileges.php:210 -#: server_privileges.php:522 +#: server_privileges.php:38 server_privileges.php:211 +#: server_privileges.php:523 msgid "Allows executing stored routines." msgstr "Lubab salvestatud rutiinide käivituse." -#: server_privileges.php:38 server_privileges.php:189 -#: server_privileges.php:509 +#: server_privileges.php:39 server_privileges.php:190 +#: server_privileges.php:510 msgid "Allows importing data from and exporting data into files." msgstr "Lubab andmete eksportimist faili ja andmete importimist failidest." -#: server_privileges.php:39 server_privileges.php:540 +#: server_privileges.php:40 server_privileges.php:541 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "Lubab lisada kasutajaid ja privileege ilma privileges tabelit " "taaskäivitamata." -#: server_privileges.php:40 server_privileges.php:191 -#: server_privileges.php:516 +#: server_privileges.php:41 server_privileges.php:192 +#: server_privileges.php:517 msgid "Allows creating and dropping indexes." msgstr "Lubab luua ja kustutada indekseid." -#: server_privileges.php:41 server_privileges.php:181 -#: server_privileges.php:442 server_privileges.php:504 +#: server_privileges.php:42 server_privileges.php:182 +#: server_privileges.php:443 server_privileges.php:505 msgid "Allows inserting and replacing data." msgstr "Lubab lisada ja muuta infot." -#: server_privileges.php:42 server_privileges.php:196 -#: server_privileges.php:549 +#: server_privileges.php:43 server_privileges.php:197 +#: server_privileges.php:550 msgid "Allows locking tables for the current thread." msgstr "Lubab lukustada tabeleid aktiivse päringu tarbeks." -#: server_privileges.php:43 server_privileges.php:646 -#: server_privileges.php:648 +#: server_privileges.php:44 server_privileges.php:647 +#: server_privileges.php:649 msgid "Limits the number of new connections the user may open per hour." msgstr "Limiteerib ühenduste arvu tunnis kasutaja jaoks." -#: server_privileges.php:44 server_privileges.php:634 -#: server_privileges.php:636 +#: server_privileges.php:45 server_privileges.php:635 +#: server_privileges.php:637 msgid "Limits the number of queries the user may send to the server per hour." msgstr "Limiteerib päringute arvu tunnis kasutaja jaoks." -#: server_privileges.php:45 server_privileges.php:640 -#: server_privileges.php:642 +#: server_privileges.php:46 server_privileges.php:641 +#: server_privileges.php:643 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -4681,58 +4724,58 @@ 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 +#: server_privileges.php:47 server_privileges.php:653 +#: server_privileges.php:655 msgid "Limits the number of simultaneous connections the user may have." msgstr "Piirab ühenduste arvu mida kasutajal võib korraga olla." -#: server_privileges.php:47 server_privileges.php:188 -#: server_privileges.php:544 +#: server_privileges.php:48 server_privileges.php:189 +#: server_privileges.php:545 msgid "Allows viewing processes of all users" msgstr "" -#: server_privileges.php:48 server_privileges.php:190 -#: server_privileges.php:448 server_privileges.php:550 +#: server_privileges.php:49 server_privileges.php:191 +#: server_privileges.php:449 server_privileges.php:551 msgid "Has no effect in this MySQL version." msgstr "Ei oma antud MySQL versioonis mingit effekti." -#: server_privileges.php:49 server_privileges.php:186 -#: server_privileges.php:545 +#: server_privileges.php:50 server_privileges.php:187 +#: server_privileges.php:546 msgid "Allows reloading server settings and flushing the server's caches." msgstr "Lubab taaslaadida serveri seadmeid ja puhastada serveri cachet." -#: server_privileges.php:50 server_privileges.php:198 -#: server_privileges.php:552 +#: server_privileges.php:51 server_privileges.php:199 +#: server_privileges.php:553 msgid "Allows the user to ask where the slaves / masters are." msgstr "Lubab kasutajal küsida kus on slaved/masterid." -#: server_privileges.php:51 server_privileges.php:197 -#: server_privileges.php:553 +#: server_privileges.php:52 server_privileges.php:198 +#: server_privileges.php:554 msgid "Needed for the replication slaves." msgstr "Vajalik slavede paljundamiseks." -#: server_privileges.php:52 server_privileges.php:180 -#: server_privileges.php:439 server_privileges.php:503 +#: server_privileges.php:53 server_privileges.php:181 +#: server_privileges.php:440 server_privileges.php:504 msgid "Allows reading data." msgstr "Lubab lugeda infot." -#: server_privileges.php:53 server_privileges.php:193 -#: server_privileges.php:547 +#: server_privileges.php:54 server_privileges.php:194 +#: server_privileges.php:548 msgid "Gives access to the complete list of databases." msgstr "Annab ligipääsu kogu andmebaasilistingule." -#: server_privileges.php:54 server_privileges.php:204 -#: server_privileges.php:206 server_privileges.php:519 +#: server_privileges.php:55 server_privileges.php:205 +#: server_privileges.php:207 server_privileges.php:520 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Lubab SHOW CREATE VIEW päringute käivitamise." -#: server_privileges.php:55 server_privileges.php:187 -#: server_privileges.php:546 +#: server_privileges.php:56 server_privileges.php:188 +#: server_privileges.php:547 msgid "Allows shutting down the server." msgstr "Lubab serverit maha lasta." -#: server_privileges.php:56 server_privileges.php:194 -#: server_privileges.php:543 +#: server_privileges.php:57 server_privileges.php:195 +#: server_privileges.php:544 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -4742,158 +4785,158 @@ msgstr "" "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 +#: server_privileges.php:58 server_privileges.php:202 +#: server_privileges.php:536 #, fuzzy msgid "Allows creating and dropping triggers" msgstr "Lubab luua ja kustutada indekseid." -#: server_privileges.php:58 server_privileges.php:182 -#: server_privileges.php:445 server_privileges.php:505 +#: server_privileges.php:59 server_privileges.php:183 +#: server_privileges.php:446 server_privileges.php:506 msgid "Allows changing data." msgstr "Lubab muuta infot." -#: server_privileges.php:59 server_privileges.php:260 +#: server_privileges.php:60 server_privileges.php:261 msgid "No privileges." msgstr "Mitte ühtegi privileegi." -#: server_privileges.php:302 server_privileges.php:303 +#: server_privileges.php:303 server_privileges.php:304 #, fuzzy #| msgid "None" msgctxt "None privileges" msgid "None" msgstr "Pole" -#: server_privileges.php:431 server_privileges.php:566 -#: server_privileges.php:1718 server_privileges.php:1724 +#: server_privileges.php:432 server_privileges.php:567 +#: server_privileges.php:1738 server_privileges.php:1744 msgid "Table-specific privileges" msgstr "Tabel-spetsiifilised privileegid" -#: server_privileges.php:432 server_privileges.php:574 -#: server_privileges.php:1540 +#: server_privileges.php:433 server_privileges.php:575 +#: server_privileges.php:1560 msgid " Note: MySQL privilege names are expressed in English " msgstr " Märkus: MySQL privileegide nimed on ingliskeelsed " -#: server_privileges.php:563 server_privileges.php:1539 +#: server_privileges.php:564 server_privileges.php:1559 msgid "Global privileges" msgstr "Globaalsed privileegid" -#: server_privileges.php:565 server_privileges.php:1718 +#: server_privileges.php:566 server_privileges.php:1738 msgid "Database-specific privileges" msgstr "Andmebaas-spetsiifilised privileegid" -#: server_privileges.php:610 +#: server_privileges.php:611 msgid "Administration" msgstr "Administreerimine" -#: server_privileges.php:630 +#: server_privileges.php:631 msgid "Resource limits" msgstr "Ressursilimiidid" -#: server_privileges.php:631 +#: server_privileges.php:632 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "Märkus: Märkides antud seaded 0 (null), eemaldate limiidi." -#: server_privileges.php:708 +#: server_privileges.php:709 msgid "Login Information" msgstr "Logimise informatsioon" -#: server_privileges.php:802 +#: server_privileges.php:803 msgid "Do not change the password" msgstr "Ärge muutke parooli" -#: server_privileges.php:843 server_privileges.php:2205 +#: server_privileges.php:844 server_privileges.php:2226 #, fuzzy #| msgid "No user(s) found." msgid "No user found." msgstr "Ei leitud ühtegi kasutajat." -#: server_privileges.php:887 +#: server_privileges.php:888 #, php-format msgid "The user %s already exists!" msgstr "Kasutaja %s on juba olemas!" -#: server_privileges.php:970 +#: server_privileges.php:971 msgid "You have added a new user." msgstr "Te lisasite uue kasutaja." -#: server_privileges.php:1191 +#: server_privileges.php:1196 #, php-format msgid "You have updated the privileges for %s." msgstr "Te uuendasite privileege %s-l." -#: server_privileges.php:1215 +#: server_privileges.php:1220 #, php-format msgid "You have revoked the privileges for %s" msgstr "Te võtsite tagasi privileegid %s-lt" -#: server_privileges.php:1251 +#: server_privileges.php:1256 #, php-format msgid "The password for %s was changed successfully." msgstr "Kasutaja %s parool vahetati õnnestunult." -#: server_privileges.php:1271 +#: server_privileges.php:1276 #, php-format msgid "Deleting %s" msgstr "Kustutan %s" -#: server_privileges.php:1282 +#: server_privileges.php:1287 msgid "No users selected for deleting!" msgstr "Ühtegi kasutajat pole valitud kustutamiseks!" -#: server_privileges.php:1285 +#: server_privileges.php:1290 msgid "Reloading the privileges" msgstr "Taaslaen privileege" -#: server_privileges.php:1300 +#: server_privileges.php:1305 msgid "The selected users have been deleted successfully." msgstr "Valitud kasutajad on õnnestunult kustutatud." -#: server_privileges.php:1335 +#: server_privileges.php:1344 msgid "The privileges were reloaded successfully." msgstr "Privileegid taaslaeti edukalt." -#: server_privileges.php:1363 server_privileges.php:1649 +#: server_privileges.php:1380 server_privileges.php:1669 msgid "Edit Privileges" msgstr "Muuda privileege" -#: server_privileges.php:1372 +#: server_privileges.php:1389 msgid "Revoke" msgstr "Võta tagasi" -#: server_privileges.php:1404 +#: server_privileges.php:1424 msgid "User overview" msgstr "Kasutaja ülevaade" -#: server_privileges.php:1541 server_privileges.php:1723 -#: server_privileges.php:2072 +#: server_privileges.php:1561 server_privileges.php:1743 +#: server_privileges.php:2093 msgid "Grant" msgstr "Õigused" -#: server_privileges.php:1560 server_privileges.php:2162 +#: server_privileges.php:1580 server_privileges.php:2183 msgid "Any" msgstr "kõik" -#: server_privileges.php:1609 server_privileges.php:1633 -#: server_privileges.php:2027 server_privileges.php:2216 +#: server_privileges.php:1629 server_privileges.php:1653 +#: server_privileges.php:2048 server_privileges.php:2237 msgid "Add a new User" msgstr "Lisa uus kasutaja" -#: server_privileges.php:1614 +#: server_privileges.php:1634 msgid "Remove selected users" msgstr "Eemalda valitud kasutajad" -#: server_privileges.php:1617 +#: server_privileges.php:1637 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:1618 server_privileges.php:1619 -#: server_privileges.php:1620 +#: server_privileges.php:1638 server_privileges.php:1639 +#: server_privileges.php:1640 msgid "Drop the databases that have the same names as the users." msgstr "Kustuta andmebaasid millel on samad nimed nagu kasutajatel." -#: server_privileges.php:1636 +#: server_privileges.php:1656 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -4906,95 +4949,95 @@ msgstr "" "juhul kui olete käsitsi muudatusi teinud. Sellisel juhul peaksite te " "privileegid %staaslaadima%s enne jätkamist." -#: server_privileges.php:1684 +#: server_privileges.php:1704 msgid "The selected user was not found in the privilege table." msgstr "Valitud kasutajat ei leitud privileegide tabelist." -#: server_privileges.php:1724 +#: server_privileges.php:1744 msgid "Column-specific privileges" msgstr "Väli-spetsiifilised privileegid" -#: server_privileges.php:1925 +#: server_privileges.php:1945 msgid "Add privileges on the following database" msgstr "Lisa privileegid antud andmebaasile" -#: server_privileges.php:1943 +#: server_privileges.php:1963 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:1946 +#: server_privileges.php:1966 msgid "Add privileges on the following table" msgstr "Lisa privileegid antud tabelile" -#: server_privileges.php:2003 +#: server_privileges.php:2023 msgid "Change Login Information / Copy User" msgstr "Vaheta logimisinformatsiooni / Kopeeri kasutaja" -#: server_privileges.php:2006 +#: server_privileges.php:2026 msgid "Create a new user with the same privileges and ..." msgstr "Loo uus kasutaja samade privileegidega ja ..." -#: server_privileges.php:2008 +#: server_privileges.php:2028 msgid "... keep the old one." msgstr "... hoia vana alles." -#: server_privileges.php:2009 +#: server_privileges.php:2029 msgid " ... delete the old one from the user tables." msgstr " ... kustuta vana kasutajate tabelist." -#: server_privileges.php:2010 +#: server_privileges.php:2030 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:2011 +#: server_privileges.php:2031 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:2033 +#: server_privileges.php:2054 msgid "Database for user" msgstr "Andmebaas kasutajale" -#: server_privileges.php:2037 +#: server_privileges.php:2058 #, fuzzy #| msgid "None" msgctxt "Create none database for user" msgid "None" msgstr "Pole" -#: server_privileges.php:2038 +#: server_privileges.php:2059 msgid "Create database with same name and grant all privileges" msgstr "Loo sama nimega andmebaas ja anna kõik õigused" -#: server_privileges.php:2039 +#: server_privileges.php:2060 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "Anna kõik õigused Metanimele (username\\_%)" -#: server_privileges.php:2042 +#: server_privileges.php:2063 #, fuzzy, php-format msgid "Grant all privileges on database "%s"" msgstr "Kontrolli privileege andmebaasile "%s"." -#: server_privileges.php:2065 +#: server_privileges.php:2086 #, php-format msgid "Users having access to "%s"" msgstr "Kasutajad kellel on ligipääs "%s"" -#: server_privileges.php:2173 +#: server_privileges.php:2194 msgid "global" msgstr "globaalne" -#: server_privileges.php:2175 +#: server_privileges.php:2196 msgid "database-specific" msgstr "andmebaasipõhine" -#: server_privileges.php:2177 +#: server_privileges.php:2198 msgid "wildcard" msgstr "metamärk" @@ -7814,6 +7857,10 @@ msgstr "" msgid "Show insert query" msgstr "Näitan SQL päringut" +#: tbl_change.php:1143 +msgid "and then" +msgstr "ja siis" + #: tbl_change.php:1147 msgid "Go back to previous page" msgstr "Mine eelmisele lehele tagasi" @@ -7895,7 +7942,7 @@ msgstr "" msgid "Add to index  %s column(s)" msgstr "Lisa indeksisse  %s rida/read" -#: tbl_indexes.php:256 tbl_structure.php:589 tbl_structure.php:600 +#: tbl_indexes.php:256 tbl_structure.php:587 tbl_structure.php:598 msgid "Column count has to be larger than zero." msgstr "Veergude arv peab olema nullist suurem." @@ -8012,39 +8059,39 @@ msgstr "Kontrolli pärinevust:" msgid "Show tables" msgstr "Näita tabeleid" -#: tbl_printview.php:310 tbl_structure.php:656 +#: tbl_printview.php:310 tbl_structure.php:654 msgid "Space usage" msgstr "Ruumivõtt" -#: tbl_printview.php:314 tbl_structure.php:660 +#: tbl_printview.php:314 tbl_structure.php:658 msgid "Usage" msgstr "Kasutus" -#: tbl_printview.php:341 tbl_structure.php:687 +#: tbl_printview.php:341 tbl_structure.php:685 msgid "Effective" msgstr "Efektiivne" -#: tbl_printview.php:366 tbl_structure.php:725 +#: tbl_printview.php:366 tbl_structure.php:723 msgid "Row Statistics" msgstr "Rea statistika" -#: tbl_printview.php:369 tbl_structure.php:728 +#: tbl_printview.php:369 tbl_structure.php:726 msgid "Statements" msgstr "Parameerid" -#: tbl_printview.php:380 tbl_structure.php:740 +#: tbl_printview.php:380 tbl_structure.php:738 msgid "static" msgstr "" -#: tbl_printview.php:382 tbl_structure.php:742 +#: tbl_printview.php:382 tbl_structure.php:740 msgid "dynamic" msgstr "dünaamiline" -#: tbl_printview.php:404 tbl_structure.php:785 +#: tbl_printview.php:404 tbl_structure.php:783 msgid "Row length" msgstr "Rea pikkus" -#: tbl_printview.php:414 tbl_structure.php:793 +#: tbl_printview.php:414 tbl_structure.php:791 msgid " Row size " msgstr " rea suurus " @@ -8116,50 +8163,50 @@ msgstr "Pole" msgid "Column %s has been dropped" msgstr "Tabel %s kustutatud" -#: tbl_structure.php:385 +#: tbl_structure.php:384 #, php-format msgid "A primary key has been added on %s" msgstr "Primaarne võti lisati %s" -#: tbl_structure.php:400 tbl_structure.php:414 tbl_structure.php:428 +#: tbl_structure.php:398 tbl_structure.php:412 tbl_structure.php:426 #, php-format msgid "An index has been added on %s" msgstr "Indeks lisati %s" -#: tbl_structure.php:506 tbl_structure.php:508 +#: tbl_structure.php:504 tbl_structure.php:506 msgid "Relation view" msgstr "Pärinevuse vaade" -#: tbl_structure.php:515 tbl_structure.php:517 +#: tbl_structure.php:513 tbl_structure.php:515 msgid "Propose table structure" msgstr "Soovita tabeli struktuuri" -#: tbl_structure.php:540 +#: tbl_structure.php:538 #, fuzzy #| msgid "Add %s field(s)" msgid "Add column" msgstr "Lisa %s väli(jad)" -#: tbl_structure.php:554 +#: tbl_structure.php:552 msgid "At End of Table" msgstr "Tabeli lõppu" -#: tbl_structure.php:555 +#: tbl_structure.php:553 msgid "At Beginning of Table" msgstr "Tabeli algusesse" -#: tbl_structure.php:556 +#: tbl_structure.php:554 #, php-format msgid "After %s" msgstr "Peale %s" -#: tbl_structure.php:594 +#: tbl_structure.php:592 #, fuzzy, php-format #| msgid "Create an index on %s columns" msgid "Create an index on  %s columns" msgstr "Loo indeks  %s väljadest" -#: tbl_structure.php:756 +#: tbl_structure.php:754 msgid "partitioned" msgstr "" @@ -8600,9 +8647,6 @@ msgstr "Nimeta tabel ümber" #~ msgid "Process list" #~ msgstr "Protsessinimekiri" -#~ msgid "Reload privileges" -#~ msgstr "Lae privileegid uuesti" - #~ msgid "" #~ "The users will still have the USAGE privilege until the privileges are " #~ "reloaded." diff --git a/po/eu.po b/po/eu.po index 989506c87..72e5f5b1b 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-13 09:03-0400\n" +"POT-Creation-Date: 2010-06-22 00:55+0530\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:1514 +#: libraries/display_tbl.lib.php:417 server_privileges.php:1534 msgid "Show all" msgstr "Dena erakutsi" -#: browse_foreigners.php:82 libraries/common.lib.php:2313 +#: browse_foreigners.php:82 libraries/common.lib.php:2317 #: 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,18 +38,18 @@ 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:2831 -#: libraries/common.lib.php:2838 libraries/db_links.inc.php:75 +#: db_structure.php:106 libraries/common.lib.php:2835 +#: libraries/common.lib.php:2842 libraries/db_links.inc.php:75 #: libraries/tbl_links.inc.php:63 msgid "Search" msgstr "Bilatu" -#: browse_foreigners.php:153 db_operations.php:385 db_operations.php:429 -#: db_operations.php:499 db_operations.php:609 db_search.php:362 -#: db_structure.php:567 js/messages.php:48 libraries/Config.class.php:1046 +#: browse_foreigners.php:153 db_operations.php:394 db_operations.php:438 +#: db_operations.php:508 db_operations.php:618 db_search.php:362 +#: db_structure.php:565 js/messages.php:53 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:1335 libraries/common.lib.php:2288 +#: libraries/common.lib.php:1335 libraries/common.lib.php:2292 #: 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,15 +60,15 @@ 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:664 server_privileges.php:1624 -#: server_privileges.php:1971 server_privileges.php:2018 -#: server_privileges.php:2057 server_replication.php:235 +#: server_privileges.php:665 server_privileges.php:1644 +#: server_privileges.php:1991 server_privileges.php:2038 +#: server_privileges.php:2078 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 #: tbl_operations.php:302 tbl_operations.php:499 tbl_operations.php:561 -#: tbl_operations.php:681 tbl_select.php:327 tbl_structure.php:562 -#: tbl_structure.php:597 tbl_tracking.php:395 tbl_tracking.php:512 +#: tbl_operations.php:681 tbl_select.php:327 tbl_structure.php:560 +#: tbl_structure.php:595 tbl_tracking.php:395 tbl_tracking.php:512 #: view_create.php:182 view_operations.php:101 msgid "Go" msgstr "Joan" @@ -94,7 +94,7 @@ msgstr "Erabili balio hau" msgid "Database %1$s has been created." msgstr "%s datu-basea ezabatua izan da." -#: db_datadict.php:49 db_operations.php:378 +#: db_datadict.php:49 db_operations.php:387 msgid "Database comment: " msgstr "Datu-basearen iruzkina: " @@ -121,10 +121,10 @@ 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:2070 +#: pdf_schema.php:1263 pdf_schema.php:1284 server_privileges.php:2091 #: 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 +#: tbl_structure.php:657 tbl_tracking.php:274 tbl_tracking.php:321 msgid "Type" msgstr "Mota" @@ -137,7 +137,7 @@ msgstr "Mota" msgid "Null" msgstr "Nulua" -#: db_datadict.php:178 db_structure.php:501 libraries/export/htmlword.php:247 +#: db_datadict.php:178 db_structure.php:499 libraries/export/htmlword.php:247 #: libraries/export/latex.php:360 libraries/export/odt.php:303 #: libraries/export/texytext.php:236 libraries/tbl_properties.inc.php:106 #: pdf_schema.php:1266 pdf_schema.php:1287 tbl_printview.php:146 @@ -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: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 +#: pdf_schema.php:1344 server_privileges.php:1588 server_privileges.php:1599 +#: server_privileges.php:1909 server_privileges.php:1914 +#: server_privileges.php:2208 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:1565 -#: server_privileges.php:1579 server_privileges.php:1889 -#: server_privileges.php:1892 server_privileges.php:2187 sql.php:193 +#: server_databases.php:64 server_privileges.php:1585 +#: server_privileges.php:1599 server_privileges.php:1909 +#: server_privileges.php:1912 server_privileges.php:2208 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" @@ -210,130 +210,126 @@ msgstr "Dena hautatu" msgid "Unselect All" msgstr "Desautatu dena" -#: db_operations.php:38 tbl_create.php:54 +#: db_operations.php:43 tbl_create.php:54 #, fuzzy msgid "The database name is empty!" msgstr "Taularen izena hutsik dago!" -#: db_operations.php:236 +#: db_operations.php:241 #, fuzzy, php-format msgid "Database %s has been renamed to %s" msgstr "%s taula %s-(e)ra berrizendatua izan da" -#: db_operations.php:240 +#: db_operations.php:245 #, fuzzy, php-format msgid "Database %s has been copied to %s" msgstr "%s taula hona kopiatua izan da: %s." -#: db_operations.php:412 +#: db_operations.php:421 #, fuzzy msgid "Rename database to" msgstr "Taula berrizendatu izen honetara: " -#: db_operations.php:417 server_processlist.php:57 +#: db_operations.php:426 server_processlist.php:57 msgid "Command" msgstr "Komandoa" -#: db_operations.php:429 tbl_change.php:1143 -msgid "and then" -msgstr "eta orduan" - -#: db_operations.php:455 +#: db_operations.php:464 #, fuzzy msgid "Copy database to" msgstr "Datu-baserik ez" -#: db_operations.php:462 tbl_operations.php:528 tbl_tracking.php:388 +#: db_operations.php:471 tbl_operations.php:528 tbl_tracking.php:388 msgid "Structure only" msgstr "Egitura soilik" -#: db_operations.php:463 tbl_operations.php:529 tbl_tracking.php:390 +#: db_operations.php:472 tbl_operations.php:529 tbl_tracking.php:390 msgid "Structure and data" msgstr "Egitura eta datuak" -#: db_operations.php:464 tbl_operations.php:530 tbl_tracking.php:389 +#: db_operations.php:473 tbl_operations.php:530 tbl_tracking.php:389 msgid "Data only" msgstr "Datuak soilik" -#: db_operations.php:472 +#: db_operations.php:481 msgid "CREATE DATABASE before copying" msgstr "" -#: db_operations.php:475 libraries/export/sql.php:52 +#: db_operations.php:484 libraries/export/sql.php:52 #: libraries/export/sql.php:74 libraries/export/sql.php:76 #: libraries/export/sql.php:82 tbl_operations.php:536 #, php-format msgid "Add %s" msgstr "%s gehitu" -#: db_operations.php:479 libraries/export/sql.php:78 tbl_operations.php:299 +#: db_operations.php:488 libraries/export/sql.php:78 tbl_operations.php:299 #: tbl_operations.php:538 msgid "Add AUTO_INCREMENT value" msgstr "Gehitu AUTO_INCREMENT balioa" -#: db_operations.php:483 tbl_operations.php:545 +#: db_operations.php:492 tbl_operations.php:545 msgid "Add constraints" msgstr "Murrizketak gehitu" -#: db_operations.php:496 +#: db_operations.php:505 #, fuzzy msgid "Switch to copied database" msgstr "Kopiatutako taulara aldatu" -#: db_operations.php:537 +#: db_operations.php:546 msgid "BLOB Repository" msgstr "" -#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1352 -#: libraries/server_links.inc.php:49 server_processlist.php:59 +#: db_operations.php:549 db_tracking.php:76 libraries/common.lib.php:1352 +#: libraries/server_links.inc.php:50 server_processlist.php:59 #: tbl_tracking.php:596 test/theme.php:101 msgid "Status" msgstr "Egoera" -#: db_operations.php:548 +#: db_operations.php:557 #, fuzzy #| msgid "Enabled" msgctxt "BLOB repository" msgid "Enabled" msgstr "Gaituta" -#: db_operations.php:552 +#: db_operations.php:561 #, fuzzy msgid "Disable" msgstr "Ezgaituta" -#: db_operations.php:562 +#: db_operations.php:571 msgid "Damaged" msgstr "" -#: db_operations.php:566 +#: db_operations.php:575 #, fuzzy msgctxt "BLOB repository" msgid "Repair" msgstr "Taula konpondu" -#: db_operations.php:574 +#: db_operations.php:583 #, fuzzy #| msgid "Disabled" msgctxt "BLOB repository" msgid "Disabled" msgstr "Ezgaituta" -#: db_operations.php:578 +#: db_operations.php:587 #, fuzzy msgid "Enable" msgstr "Gaituta" -#: db_operations.php:602 libraries/Index.class.php:448 +#: db_operations.php:611 libraries/Index.class.php:448 #: libraries/db_structure.lib.php:62 libraries/mysql_charsets.lib.php:107 #: libraries/tbl_properties.inc.php:107 libraries/tbl_properties.inc.php:730 #: server_collations.php:54 server_collations.php:66 server_databases.php:111 #: tbl_operations.php:363 tbl_select.php:137 tbl_structure.php:179 -#: tbl_structure.php:767 tbl_tracking.php:275 tbl_tracking.php:326 +#: tbl_structure.php:765 tbl_tracking.php:275 tbl_tracking.php:326 msgid "Collation" msgstr "Ordenamendua" -#: db_operations.php:615 main.php:316 pdf_schema.php:34 +#: db_operations.php:624 main.php:316 pdf_schema.php:34 #, php-format msgid "" "The additional features for working with linked tables have been " @@ -342,14 +338,14 @@ msgstr "" "Estekatutako taulekin lan egiteko hobespen gehigarriak ezgaitu dira . " "Zergatia jakiteko egizu klik %shemen%s." -#: db_operations.php:648 +#: db_operations.php:657 msgid "Edit PDF Pages" 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:1665 -#: server_privileges.php:1721 server_privileges.php:1985 +#: libraries/header.inc.php:130 pdf_pages.php:424 server_privileges.php:1685 +#: server_privileges.php:1741 server_privileges.php:2005 #: server_synchronize.php:423 server_synchronize.php:866 tbl_tracking.php:592 #: test/theme.php:75 msgid "Table" @@ -358,7 +354,7 @@ msgstr "Taula" #: db_printview.php:105 libraries/db_structure.lib.php:56 #: libraries/header_printview.inc.php:63 libraries/import.lib.php:146 #: navigation.php:638 navigation.php:660 server_databases.php:122 -#: tbl_printview.php:394 tbl_structure.php:365 tbl_structure.php:777 +#: tbl_printview.php:394 tbl_structure.php:365 tbl_structure.php:775 msgid "Rows" msgstr "Errenkadak" @@ -366,30 +362,30 @@ msgstr "Errenkadak" msgid "Size" msgstr "Tamaina" -#: db_printview.php:162 db_structure.php:457 libraries/export/sql.php:559 +#: db_printview.php:162 db_structure.php:455 libraries/export/sql.php:559 #: libraries/export/sql.php:899 msgid "in use" msgstr "lanean" #: db_printview.php:187 libraries/db_info.inc.php:88 #: libraries/export/sql.php:514 pdf_schema.php:1241 tbl_printview.php:434 -#: tbl_structure.php:809 +#: tbl_structure.php:807 msgid "Creation" msgstr "Sortzea" #: db_printview.php:196 libraries/db_info.inc.php:93 #: libraries/export/sql.php:519 pdf_schema.php:1246 tbl_printview.php:444 -#: tbl_structure.php:817 +#: tbl_structure.php:815 msgid "Last update" msgstr "Azken eguneraketa" #: db_printview.php:205 libraries/db_info.inc.php:98 #: libraries/export/sql.php:524 pdf_schema.php:1251 tbl_printview.php:454 -#: tbl_structure.php:825 +#: tbl_structure.php:823 msgid "Last check" msgstr "Azken egiaztapena" -#: db_printview.php:222 db_structure.php:480 +#: db_printview.php:222 db_structure.php:478 #, fuzzy, php-format #| msgid "%s table(s)" msgid "%s table" @@ -450,7 +446,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:297 tbl_change.php:1031 tbl_indexes.php:250 +#: server_privileges.php:298 tbl_change.php:1031 tbl_indexes.php:250 #: tbl_select.php:288 msgid "Or" msgstr "Edo" @@ -523,9 +519,9 @@ 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:2833 +#: db_structure.php:105 libraries/common.lib.php:2837 #: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50 -#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:467 +#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:465 msgid "Browse" msgstr "Arakatu" @@ -570,36 +566,36 @@ 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:2832 libraries/sql_query_form.lib.php:334 +#: libraries/common.lib.php:2836 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:2829 libraries/common.lib.php:2836 +#: libraries/common.lib.php:2833 libraries/common.lib.php:2840 #: 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:1106 #: libraries/tbl_links.inc.php:56 pmd_general.php:134 -#: server_privileges.php:593 server_replication.php:315 tbl_tracking.php:269 +#: server_privileges.php:594 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:1656 +#: db_structure.php:543 db_structure.php:544 db_tracking.php:91 +#: libraries/Index.class.php:483 libraries/common.lib.php:1657 #: 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 -#: tbl_structure.php:152 tbl_structure.php:471 +#: tbl_structure.php:152 tbl_structure.php:469 msgid "Drop" 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:1655 +#: db_structure.php:541 db_structure.php:542 libraries/common.lib.php:1656 #: libraries/mult_submits.inc.php:39 libraries/tbl_links.inc.php:105 msgid "Empty" msgstr "Hutsik" @@ -609,112 +605,112 @@ msgstr "Hutsik" msgid "Table %s has been emptied" msgstr "%s taula hustu egin da" -#: db_structure.php:326 libraries/tbl_links.inc.php:133 +#: db_structure.php:325 libraries/tbl_links.inc.php:133 #, fuzzy, php-format msgid "View %s has been dropped" msgstr "%s eremua ezabatu da" -#: db_structure.php:326 libraries/tbl_links.inc.php:133 +#: db_structure.php:325 libraries/tbl_links.inc.php:133 #, php-format msgid "Table %s has been dropped" msgstr "%s taula ezabatu egin da" -#: db_structure.php:333 +#: db_structure.php:332 msgid "Tracking is active." msgstr "" -#: db_structure.php:335 +#: db_structure.php:334 msgid "Tracking is not active." msgstr "" -#: db_structure.php:420 libraries/display_tbl.lib.php:1944 +#: db_structure.php:418 libraries/display_tbl.lib.php:1944 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation%" "s." msgstr "" -#: db_structure.php:434 db_structure.php:448 libraries/header.inc.php:126 +#: db_structure.php:432 db_structure.php:446 libraries/header.inc.php:130 #: libraries/tbl_info.inc.php:66 tbl_structure.php:185 test/theme.php:74 msgid "View" msgstr "" -#: db_structure.php:485 libraries/db_structure.lib.php:49 -#: libraries/server_links.inc.php:70 server_replication.php:33 +#: db_structure.php:483 libraries/db_structure.lib.php:49 +#: libraries/server_links.inc.php:71 server_replication.php:33 #: server_replication.php:164 server_status.php:369 #, fuzzy msgid "Replication" msgstr "Erlazioak" -#: db_structure.php:489 +#: db_structure.php:487 msgid "Sum" msgstr "Gehiketa" -#: db_structure.php:496 libraries/StorageEngine.class.php:356 +#: db_structure.php:494 libraries/StorageEngine.class.php:356 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "" -#: db_structure.php:524 db_structure.php:541 db_structure.php:542 +#: db_structure.php:522 db_structure.php:539 db_structure.php:540 #: 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:1596 tbl_structure.php:455 -#: tbl_structure.php:464 +#: server_databases.php:351 server_privileges.php:1616 tbl_structure.php:453 +#: tbl_structure.php:462 msgid "With selected:" msgstr "Ikurdunak:" -#: db_structure.php:527 libraries/display_tbl.lib.php:2076 -#: server_databases.php:348 server_privileges.php:569 -#: server_privileges.php:1599 tbl_structure.php:458 +#: db_structure.php:525 libraries/display_tbl.lib.php:2076 +#: server_databases.php:348 server_privileges.php:570 +#: server_privileges.php:1619 tbl_structure.php:456 msgid "Check All" msgstr "Guztiak egiaztatu" -#: db_structure.php:531 libraries/display_tbl.lib.php:2077 +#: db_structure.php:529 libraries/display_tbl.lib.php:2077 #: libraries/replication_gui.lib.php:33 server_databases.php:350 -#: server_privileges.php:572 server_privileges.php:1603 tbl_structure.php:462 +#: server_privileges.php:573 server_privileges.php:1623 tbl_structure.php:460 msgid "Uncheck All" msgstr "Desautatu dena" -#: db_structure.php:536 +#: db_structure.php:534 msgid "Check tables having overhead" msgstr "Arazteko hondakinak egiaztatu" -#: db_structure.php:547 db_structure.php:548 db_structure.php:599 +#: db_structure.php:545 db_structure.php:546 db_structure.php:597 #: libraries/display_tbl.lib.php:2180 libraries/mult_submits.inc.php:28 -#: tbl_structure.php:492 tbl_structure.php:494 +#: tbl_structure.php:490 tbl_structure.php:492 msgid "Print view" msgstr "Inprimatzeko ikuspegia" -#: db_structure.php:549 db_structure.php:550 libraries/mult_submits.inc.php:42 +#: db_structure.php:547 db_structure.php:548 libraries/mult_submits.inc.php:42 #: tbl_operations.php:581 msgid "Check table" msgstr "Taula egiaztatu" -#: db_structure.php:551 db_structure.php:552 libraries/mult_submits.inc.php:47 -#: tbl_operations.php:621 tbl_structure.php:709 tbl_structure.php:711 +#: db_structure.php:549 db_structure.php:550 libraries/mult_submits.inc.php:47 +#: tbl_operations.php:621 tbl_structure.php:707 tbl_structure.php:709 msgid "Optimize table" msgstr "Taula optimizatu" -#: db_structure.php:553 db_structure.php:554 libraries/mult_submits.inc.php:52 +#: db_structure.php:551 db_structure.php:552 libraries/mult_submits.inc.php:52 #: tbl_operations.php:611 msgid "Repair table" msgstr "Taula konpondu" -#: db_structure.php:555 db_structure.php:556 libraries/mult_submits.inc.php:57 +#: db_structure.php:553 db_structure.php:554 libraries/mult_submits.inc.php:57 #: tbl_operations.php:601 msgid "Analyze table" msgstr "Taula aztertu" -#: db_structure.php:557 db_structure.php:558 libraries/db_links.inc.php:71 +#: db_structure.php:555 db_structure.php:556 libraries/db_links.inc.php:71 #: 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:1380 +#: libraries/server_links.inc.php:85 libraries/tbl_links.inc.php:82 +#: pmd_pdf.php:84 pmd_pdf.php:109 server_privileges.php:1397 #: setup/frames/menu.inc.php:22 tbl_row_action.php:59 msgid "Export" msgstr "Esportatu" -#: db_structure.php:606 libraries/display_pdf_schema.lib.php:44 +#: db_structure.php:604 libraries/display_pdf_schema.lib.php:44 msgid "Data Dictionary" msgstr "Datu-hiztegia" @@ -725,10 +721,10 @@ msgstr "" #: db_tracking.php:71 libraries/export/htmlword.php:86 #: libraries/export/latex.php:148 libraries/export/odt.php:113 #: libraries/export/sql.php:342 libraries/export/texytext.php:84 -#: libraries/export/xml.php:255 libraries/header.inc.php:106 +#: libraries/export/xml.php:255 libraries/header.inc.php:110 #: libraries/header_printview.inc.php:58 server_databases.php:169 -#: server_privileges.php:1660 server_privileges.php:1721 -#: server_privileges.php:1979 server_processlist.php:56 +#: server_privileges.php:1680 server_privileges.php:1741 +#: server_privileges.php:1999 server_processlist.php:56 #: server_synchronize.php:1179 server_synchronize.php:1183 #: tbl_tracking.php:591 test/theme.php:65 msgid "Database" @@ -749,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:1542 server_privileges.php:1725 -#: server_privileges.php:2073 tbl_structure.php:187 +#: server_privileges.php:1562 server_privileges.php:1745 +#: server_privileges.php:2094 tbl_structure.php:187 msgid "Action" msgstr "Ekintza" @@ -786,8 +782,8 @@ msgstr "Egitura soilik" msgid "Untracked tables" msgstr "" -#: db_tracking.php:172 db_tracking.php:174 tbl_structure.php:528 -#: tbl_structure.php:530 +#: db_tracking.php:172 db_tracking.php:174 tbl_structure.php:526 +#: tbl_structure.php:528 #, fuzzy msgid "Track table" msgstr "Taula egiaztatu" @@ -945,189 +941,235 @@ msgstr "Zerbitzariaren izena hutsik dago!" msgid "The user name is empty!" msgstr "Erabiltzailearen izena hutsik dago!" -#: js/messages.php:44 server_privileges.php:1236 user_password.php:70 +#: js/messages.php:44 server_privileges.php:1241 user_password.php:70 msgid "The password is empty!" msgstr "Pasahitza hutsik dago!" -#: js/messages.php:45 server_privileges.php:1234 user_password.php:73 +#: js/messages.php:45 server_privileges.php:1239 user_password.php:73 msgid "The passwords aren't the same!" msgstr "Pasahitzek ez dute bat egiten!" -#: js/messages.php:49 pmd_general.php:342 pmd_general.php:379 +#: js/messages.php:46 +#, fuzzy +#| msgid "Add a new User" +msgid "Add a New User" +msgstr "Erabiltzaile berria gehitu" + +#: js/messages.php:47 js/messages.php:54 pmd_general.php:342 +#: pmd_general.php:379 msgid "Cancel" msgstr "" -#: js/messages.php:52 pmd_save_pos.php:54 +#: js/messages.php:48 +#, fuzzy +msgid "Create User" +msgstr "Zerbitzariaren bertsioa" + +#: js/messages.php:49 +#, fuzzy +msgid "Reloading Privileges" +msgstr "Pribilegio orokorrak" + +#: js/messages.php:50 +#, fuzzy +#| msgid "Remove selected users" +msgid "Removing Selected Users" +msgstr "Hautatutako erabiltzaileak baztertu" + +#: js/messages.php:57 +#, fuzzy +msgid "Loading" +msgstr "Lokal" + +#: js/messages.php:58 +#, fuzzy +#| msgid "Processes" +msgid "Processing Request" +msgstr "Prozesuak" + +#: js/messages.php:59 +msgid "Error in Processing Request" +msgstr "" + +#: js/messages.php:60 +msgid "Dropping Column" +msgstr "" + +#: js/messages.php:61 +msgid "Adding Primary Key" +msgstr "" + +#: js/messages.php:64 pmd_save_pos.php:54 msgid "Modifications have been saved" msgstr "Aldaketak gorde dira" -#: js/messages.php:53 pmd_relation_upd.php:49 +#: js/messages.php:65 pmd_relation_upd.php:49 #, fuzzy msgid "Relation deleted" msgstr "Erlazioen ikuspegia" -#: js/messages.php:54 pmd_relation_new.php:64 +#: js/messages.php:66 pmd_relation_new.php:64 msgid "FOREIGN KEY relation added" msgstr "" -#: js/messages.php:55 pmd_relation_new.php:86 +#: js/messages.php:67 pmd_relation_new.php:86 #, fuzzy msgid "Internal relation added" msgstr "Barne-erlazioak" -#: js/messages.php:56 pmd_relation_new.php:63 pmd_relation_new.php:88 +#: js/messages.php:68 pmd_relation_new.php:63 pmd_relation_new.php:88 msgid "Error: Relation not added." msgstr "" -#: js/messages.php:57 pmd_relation_new.php:31 +#: js/messages.php:69 pmd_relation_new.php:31 msgid "Error: relation already exists." msgstr "" -#: js/messages.php:58 +#: js/messages.php:70 msgid "Error saving coordinates for Designer." msgstr "" -#: js/messages.php:59 libraries/relation.lib.php:107 +#: js/messages.php:71 libraries/relation.lib.php:107 #: libraries/relation.lib.php:119 msgid "General relation features" msgstr "Erlazioen ezaaugarri orokorrak" -#: js/messages.php:59 libraries/relation.lib.php:101 +#: js/messages.php:71 libraries/relation.lib.php:101 #: libraries/relation.lib.php:108 msgid "Disabled" msgstr "Ezgaituta" -#: js/messages.php:60 +#: js/messages.php:72 msgid "Select referenced key" msgstr "" -#: js/messages.php:61 +#: js/messages.php:73 msgid "Select Foreign Key" msgstr "" -#: js/messages.php:62 +#: js/messages.php:74 msgid "Please select the primary key or a unique key" msgstr "" -#: js/messages.php:63 pmd_general.php:77 tbl_relation.php:548 +#: js/messages.php:75 pmd_general.php:77 tbl_relation.php:548 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" msgstr "Aukeratu erakutsi beharreko eremua" #. l10n: Display text for calendar close link -#: js/messages.php:73 +#: js/messages.php:85 #, fuzzy #| msgid "None" msgid "Done" msgstr "Batez" #. l10n: Display text for previous month link in calendar -#: js/messages.php:75 +#: js/messages.php:87 #, fuzzy #| msgid "Previous" msgid "Prev" msgstr "Aurrekoa" #. l10n: Display text for next month link in calendar -#: js/messages.php:77 libraries/common.lib.php:2353 -#: libraries/common.lib.php:2356 libraries/display_tbl.lib.php:338 +#: js/messages.php:89 libraries/common.lib.php:2357 +#: libraries/common.lib.php:2360 libraries/display_tbl.lib.php:338 #: server_binlog.php:205 server_binlog.php:207 tbl_printview.php:424 -#: tbl_structure.php:801 +#: tbl_structure.php:799 msgid "Next" msgstr "Hurrengoa" #. l10n: Display text for current month link in calendar -#: js/messages.php:79 +#: js/messages.php:91 #, fuzzy #| msgid "Total" msgid "Today" msgstr "Gutira" -#: js/messages.php:82 +#: js/messages.php:94 #, fuzzy #| msgid "Binary" msgid "January" msgstr " Binarioa " -#: js/messages.php:83 +#: js/messages.php:95 msgid "February" msgstr "" -#: js/messages.php:84 +#: js/messages.php:96 #, fuzzy #| msgid "Mar" msgid "March" msgstr "Mar" -#: js/messages.php:85 +#: js/messages.php:97 #, fuzzy #| msgid "Apr" msgid "April" msgstr "Api" -#: js/messages.php:86 +#: js/messages.php:98 msgid "May" msgstr "Mai" -#: js/messages.php:87 +#: js/messages.php:99 #, fuzzy #| msgid "Jun" msgid "June" msgstr "Eka" -#: js/messages.php:88 +#: js/messages.php:100 #, fuzzy #| msgid "Jul" msgid "July" msgstr "Uzt" -#: js/messages.php:89 +#: js/messages.php:101 #, fuzzy #| msgid "Aug" msgid "August" msgstr "Abu" -#: js/messages.php:90 +#: js/messages.php:102 msgid "September" msgstr "" -#: js/messages.php:91 +#: js/messages.php:103 #, fuzzy #| msgid "Oct" msgid "October" msgstr "Urr" -#: js/messages.php:92 +#: js/messages.php:104 msgid "November" msgstr "" -#: js/messages.php:93 +#: js/messages.php:105 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:97 libraries/common.lib.php:1557 +#: js/messages.php:109 libraries/common.lib.php:1557 msgid "Jan" msgstr "Urt" #. l10n: Short month name -#: js/messages.php:99 libraries/common.lib.php:1559 +#: js/messages.php:111 libraries/common.lib.php:1559 msgid "Feb" msgstr "Ots" #. l10n: Short month name -#: js/messages.php:101 libraries/common.lib.php:1561 +#: js/messages.php:113 libraries/common.lib.php:1561 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:103 libraries/common.lib.php:1563 +#: js/messages.php:115 libraries/common.lib.php:1563 msgid "Apr" msgstr "Api" #. l10n: Short month name -#: js/messages.php:105 libraries/common.lib.php:1565 +#: js/messages.php:117 libraries/common.lib.php:1565 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1135,176 +1177,176 @@ msgid "May" msgstr "Mai" #. l10n: Short month name -#: js/messages.php:107 libraries/common.lib.php:1567 +#: js/messages.php:119 libraries/common.lib.php:1567 msgid "Jun" msgstr "Eka" #. l10n: Short month name -#: js/messages.php:109 libraries/common.lib.php:1569 +#: js/messages.php:121 libraries/common.lib.php:1569 msgid "Jul" msgstr "Uzt" #. l10n: Short month name -#: js/messages.php:111 libraries/common.lib.php:1571 +#: js/messages.php:123 libraries/common.lib.php:1571 msgid "Aug" msgstr "Abu" #. l10n: Short month name -#: js/messages.php:113 libraries/common.lib.php:1573 +#: js/messages.php:125 libraries/common.lib.php:1573 msgid "Sep" msgstr "Ira" #. l10n: Short month name -#: js/messages.php:115 libraries/common.lib.php:1575 +#: js/messages.php:127 libraries/common.lib.php:1575 msgid "Oct" msgstr "Urr" #. l10n: Short month name -#: js/messages.php:117 libraries/common.lib.php:1577 +#: js/messages.php:129 libraries/common.lib.php:1577 msgid "Nov" msgstr "Aza" #. l10n: Short month name -#: js/messages.php:119 libraries/common.lib.php:1579 +#: js/messages.php:131 libraries/common.lib.php:1579 msgid "Dec" msgstr "Abe" -#: js/messages.php:122 +#: js/messages.php:134 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "Iga" -#: js/messages.php:123 +#: js/messages.php:135 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "Astel" -#: js/messages.php:124 +#: js/messages.php:136 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "Astea" -#: js/messages.php:125 +#: js/messages.php:137 msgid "Wednesday" msgstr "" -#: js/messages.php:126 +#: js/messages.php:138 msgid "Thursday" msgstr "" -#: js/messages.php:127 +#: js/messages.php:139 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "Osti" -#: js/messages.php:128 +#: js/messages.php:140 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:132 libraries/common.lib.php:1582 +#: js/messages.php:144 libraries/common.lib.php:1582 msgid "Sun" msgstr "Iga" #. l10n: Short week day name -#: js/messages.php:134 libraries/common.lib.php:1584 +#: js/messages.php:146 libraries/common.lib.php:1584 msgid "Mon" msgstr "Astel" #. l10n: Short week day name -#: js/messages.php:136 libraries/common.lib.php:1586 +#: js/messages.php:148 libraries/common.lib.php:1586 msgid "Tue" msgstr "Astea" #. l10n: Short week day name -#: js/messages.php:138 libraries/common.lib.php:1588 +#: js/messages.php:150 libraries/common.lib.php:1588 msgid "Wed" msgstr "Astez" #. l10n: Short week day name -#: js/messages.php:140 libraries/common.lib.php:1590 +#: js/messages.php:152 libraries/common.lib.php:1590 msgid "Thu" msgstr "Oste" #. l10n: Short week day name -#: js/messages.php:142 libraries/common.lib.php:1592 +#: js/messages.php:154 libraries/common.lib.php:1592 msgid "Fri" msgstr "Osti" #. l10n: Short week day name -#: js/messages.php:144 libraries/common.lib.php:1594 +#: js/messages.php:156 libraries/common.lib.php:1594 msgid "Sat" msgstr "Lar" #. l10n: Minimal week day name -#: js/messages.php:148 +#: js/messages.php:160 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "Iga" #. l10n: Minimal week day name -#: js/messages.php:150 +#: js/messages.php:162 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "Astel" #. l10n: Minimal week day name -#: js/messages.php:152 +#: js/messages.php:164 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "Astea" #. l10n: Minimal week day name -#: js/messages.php:154 +#: js/messages.php:166 #, fuzzy #| msgid "Wed" msgid "We" msgstr "Astez" #. l10n: Minimal week day name -#: js/messages.php:156 +#: js/messages.php:168 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "Oste" #. l10n: Minimal week day name -#: js/messages.php:158 +#: js/messages.php:170 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "Osti" #. l10n: Minimal week day name -#: js/messages.php:160 +#: js/messages.php:172 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "Lar" #. l10n: Column header for week of the year in calendar -#: js/messages.php:162 +#: js/messages.php:174 msgid "Wk" msgstr "" -#: js/messages.php:164 +#: js/messages.php:176 msgid "Hour" msgstr "" -#: js/messages.php:165 +#: js/messages.php:177 #, fuzzy #| msgid "in use" msgid "Minute" msgstr "lanean" -#: js/messages.php:166 +#: js/messages.php:178 #, fuzzy #| msgid "per second" msgid "Second" @@ -1361,7 +1403,7 @@ msgstr "Indizeak" #: libraries/Index.class.php:444 libraries/mult_submits.inc.php:103 #: libraries/tbl_properties.inc.php:519 tbl_structure.php:33 -#: tbl_structure.php:155 tbl_structure.php:159 tbl_structure.php:474 +#: tbl_structure.php:155 tbl_structure.php:159 tbl_structure.php:472 #: tbl_tracking.php:322 msgid "Unique" msgstr "Bakarra" @@ -1403,8 +1445,8 @@ msgid "" "removed." msgstr "" -#: libraries/List_Database.class.php:431 libraries/server_links.inc.php:41 -#: server_databases.php:88 server_privileges.php:1660 +#: libraries/List_Database.class.php:431 libraries/server_links.inc.php:42 +#: server_databases.php:88 server_privileges.php:1680 #: setup/lib/messages.inc.php:110 test/theme.php:93 msgid "Databases" msgstr "Datu-baseak" @@ -1570,7 +1612,7 @@ msgstr "Pasahitza:" msgid "Server Choice" msgstr "Zerbitzariaren hautaketa" -#: libraries/auth/cookie.auth.lib.php:320 libraries/header.inc.php:59 +#: libraries/auth/cookie.auth.lib.php:320 libraries/header.inc.php:63 msgid "Cookies must be enabled past this point." msgstr "Puntu honetarako cookie-ek gaituta egon behar dute." @@ -1650,7 +1692,7 @@ msgstr "" "Ezin dira erabili ez iconv, ez libiconv ezta recode_string funtzioa " "luzapenen txostena kargatzen den bitartean. Berpasatu php-ren konfigurazioa." -#: libraries/common.inc.php:583 +#: libraries/common.inc.php:587 msgid "" "phpMyAdmin was unable to read your configuration file!
This might " "happen if PHP finds a parse error in it or PHP cannot find the file.
Orria txuriz jasoz gero, dena " "ondo legoke." -#: libraries/common.inc.php:594 +#: libraries/common.inc.php:598 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "" -#: libraries/common.inc.php:599 +#: libraries/common.inc.php:603 msgid "" "The $cfg['PmaAbsoluteUri'] directive MUST be set in your " "configuration file!" @@ -1680,27 +1722,27 @@ msgstr "" "$cfg['PmaAbsoluteUri'] direktibak zure konfigurazio fitxategian " "zehaztuta behar du egon!" -#: libraries/common.inc.php:629 +#: libraries/common.inc.php:633 #, php-format msgid "Invalid server index: %s" msgstr "" -#: libraries/common.inc.php:636 +#: libraries/common.inc.php:640 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" -#: libraries/common.inc.php:645 libraries/header.inc.php:96 +#: libraries/common.inc.php:649 libraries/header.inc.php:100 #: libraries/select_server.lib.php:41 libraries/select_server.lib.php:47 #: main.php:185 test/theme.php:57 msgid "Server" msgstr "Zerbitzaria" -#: libraries/common.inc.php:823 +#: libraries/common.inc.php:827 msgid "Invalid authentication method set in configuration:" msgstr "" -#: libraries/common.inc.php:926 +#: libraries/common.inc.php:930 #, php-format msgid "You should upgrade to %s %s or later." msgstr "%s %s bertsiora edo handiago batera eguneratu beharko zenuke." @@ -1831,45 +1873,45 @@ msgstr "." msgid "%B %d, %Y at %I:%M %p" msgstr "%Y-%m-%d, %H:%M:%S" -#: libraries/common.lib.php:1907 +#: libraries/common.lib.php:1911 #, 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:2322 libraries/common.lib.php:2325 +#: libraries/common.lib.php:2326 libraries/common.lib.php:2329 #: libraries/display_tbl.lib.php:290 server_status.php:719 msgid "Begin" msgstr "Hasi" -#: libraries/common.lib.php:2323 libraries/common.lib.php:2326 +#: libraries/common.lib.php:2327 libraries/common.lib.php:2330 #: libraries/display_tbl.lib.php:291 server_binlog.php:168 #: server_binlog.php:170 msgid "Previous" msgstr "Aurrekoa" -#: libraries/common.lib.php:2354 libraries/common.lib.php:2357 +#: libraries/common.lib.php:2358 libraries/common.lib.php:2361 #: libraries/display_tbl.lib.php:353 msgid "End" msgstr "Amaiera" -#: libraries/common.lib.php:2430 +#: libraries/common.lib.php:2434 #, php-format msgid "Jump to database "%s"." msgstr ""%s" datu-basera joan." -#: libraries/common.lib.php:2450 +#: libraries/common.lib.php:2454 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" -#: libraries/common.lib.php:2830 libraries/common.lib.php:2837 +#: libraries/common.lib.php:2834 libraries/common.lib.php:2841 #: libraries/db_links.inc.php:68 libraries/export/sql.php:25 -#: libraries/import/sql.php:18 libraries/server_links.inc.php:45 +#: libraries/import/sql.php:18 libraries/server_links.inc.php:46 #: libraries/tbl_links.inc.php:60 querywindow.php:99 test/theme.php:97 msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2839 libraries/db_links.inc.php:104 +#: libraries/common.lib.php:2843 libraries/db_links.inc.php:104 #: libraries/tbl_links.inc.php:95 libraries/tbl_links.inc.php:117 #: view_operations.php:89 msgid "Operations" @@ -1918,16 +1960,16 @@ msgstr "Kontsulta" msgid "Designer" msgstr "" -#: libraries/db_links.inc.php:98 libraries/server_links.inc.php:88 +#: libraries/db_links.inc.php:98 libraries/server_links.inc.php:89 #: libraries/tbl_links.inc.php:91 pmd_pdf.php:84 pmd_pdf.php:110 #: setup/frames/menu.inc.php:21 #, fuzzy msgid "Import" msgstr "Esportatu" -#: libraries/db_links.inc.php:111 libraries/server_links.inc.php:66 -#: server_privileges.php:111 server_privileges.php:1722 -#: server_privileges.php:2071 test/theme.php:117 +#: libraries/db_links.inc.php:111 libraries/server_links.inc.php:67 +#: server_privileges.php:112 server_privileges.php:1742 +#: server_privileges.php:2092 test/theme.php:117 msgid "Privileges" msgstr "Pribilegioak" @@ -1946,7 +1988,7 @@ msgid "" msgstr "" #: libraries/db_structure.lib.php:69 server_databases.php:142 -#: tbl_printview.php:336 tbl_structure.php:682 +#: tbl_printview.php:336 tbl_structure.php:680 msgid "Overhead" msgstr "Arazteko hondakina" @@ -1963,7 +2005,7 @@ msgstr "" msgid "(or the local MySQL server's socket is not correctly configured)" msgstr "" -#: libraries/dbi/mysql.dbi.lib.php:362 tbl_structure.php:608 +#: libraries/dbi/mysql.dbi.lib.php:362 tbl_structure.php:606 msgid "Details..." msgstr "" @@ -1973,22 +2015,22 @@ msgid "Change password" msgstr "Pasahitza aldatu" #: libraries/display_change_password.lib.php:35 -#: libraries/replication_gui.lib.php:345 server_privileges.php:807 +#: libraries/replication_gui.lib.php:345 server_privileges.php:808 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:796 -#: server_privileges.php:800 server_privileges.php:811 -#: server_privileges.php:1538 server_synchronize.php:1175 +#: libraries/replication_gui.lib.php:349 server_privileges.php:797 +#: server_privileges.php:801 server_privileges.php:812 +#: server_privileges.php:1558 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:815 server_privileges.php:818 +#: server_privileges.php:816 server_privileges.php:819 msgid "Re-type" msgstr "Berridatzi" @@ -2001,12 +2043,12 @@ msgid "MySQL 4.0 compatible" msgstr "" #: libraries/display_change_password.lib.php:72 -#: libraries/replication_gui.lib.php:360 server_privileges.php:822 +#: libraries/replication_gui.lib.php:360 server_privileges.php:823 msgid "Generate Password" msgstr "" #: libraries/display_change_password.lib.php:75 -#: libraries/replication_gui.lib.php:363 server_privileges.php:825 +#: libraries/replication_gui.lib.php:363 server_privileges.php:826 #, fuzzy msgid "Generate" msgstr "Egilea:" @@ -2020,8 +2062,8 @@ msgstr "Datu-base berri bat sortu" msgid "Create" msgstr "Sortu" -#: libraries/display_create_database.lib.php:40 server_privileges.php:113 -#: server_privileges.php:1427 server_replication.php:35 +#: libraries/display_create_database.lib.php:40 server_privileges.php:114 +#: server_privileges.php:1447 server_replication.php:35 msgid "No Privileges" msgstr "Pribilegiorik gabe" @@ -2110,7 +2152,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:1875 server_processlist.php:75 +#: server_privileges.php:1895 server_processlist.php:75 msgid "None" msgstr "Batez" @@ -2294,7 +2336,7 @@ msgstr "Gakoaren arabera ordenatu" #: libraries/import/docsql.php:34 libraries/import/ldi.php:47 #: libraries/import/ods.php:30 libraries/import/sql.php:20 #: libraries/import/xls.php:26 libraries/import/xlsx.php:26 -#: libraries/import/xml.php:25 tbl_select.php:267 tbl_structure.php:753 +#: libraries/import/xml.php:25 tbl_select.php:267 tbl_structure.php:751 #, fuzzy msgid "Options" msgstr "Eragiketak" @@ -2373,7 +2415,7 @@ msgstr "Kontsulta exekutatzeko denbora %01.4f seg" #: libraries/display_tbl.lib.php:2089 libraries/mult_submits.inc.php:113 #: querywindow.php:125 querywindow.php:129 querywindow.php:132 -#: tbl_structure.php:25 tbl_structure.php:150 tbl_structure.php:470 +#: tbl_structure.php:25 tbl_structure.php:150 tbl_structure.php:468 msgid "Change" msgstr "Aldatu" @@ -2441,7 +2483,7 @@ msgstr "" #: libraries/engines/innodb.lib.php:194 server_databases.php:137 #: server_databases.php:305 server_status.php:525 server_status.php:586 -#: server_status.php:607 tbl_printview.php:351 tbl_structure.php:696 +#: server_status.php:607 tbl_printview.php:351 tbl_structure.php:694 msgid "Total" msgstr "Gutira" @@ -2687,7 +2729,7 @@ msgid "" msgstr "" #: libraries/export/codegen.php:37 setup/lib/messages.inc.php:88 -#: tbl_printview.php:376 tbl_structure.php:737 +#: tbl_printview.php:376 tbl_structure.php:735 msgid "Format" msgstr "Formatoa" @@ -2759,8 +2801,8 @@ 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:576 server_replication.php:316 tbl_printview.php:317 -#: tbl_structure.php:665 +#: server_privileges.php:577 server_replication.php:316 tbl_printview.php:317 +#: tbl_structure.php:663 msgid "Data" msgstr "Datuak" @@ -2810,9 +2852,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:731 -#: server_privileges.php:734 server_privileges.php:790 -#: server_privileges.php:1537 server_privileges.php:2069 +#: libraries/replication_gui.lib.php:329 server_privileges.php:732 +#: server_privileges.php:735 server_privileges.php:791 +#: server_privileges.php:1557 server_privileges.php:2090 #: server_processlist.php:55 server_synchronize.php:1159 msgid "Host" msgstr "Zerbitzaria" @@ -3013,7 +3055,7 @@ msgstr "" msgid "Open new phpMyAdmin window" msgstr "" -#: libraries/header.inc.php:115 +#: libraries/header.inc.php:119 #, fuzzy msgid "New table" msgstr "Taularik ez" @@ -3173,20 +3215,20 @@ 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 +#: tbl_structure.php:471 msgid "Primary" msgstr "Lehen mailakoa" #: libraries/mult_submits.inc.php:98 libraries/tbl_properties.inc.php:116 #: libraries/tbl_properties.inc.php:525 tbl_printview.php:326 #: tbl_structure.php:31 tbl_structure.php:154 tbl_structure.php:158 -#: tbl_structure.php:475 tbl_structure.php:673 +#: tbl_structure.php:473 tbl_structure.php:671 msgid "Index" msgstr "Indizea" #: libraries/mult_submits.inc.php:108 libraries/tbl_properties.inc.php:531 #: tbl_structure.php:35 tbl_structure.php:156 tbl_structure.php:160 -#: tbl_structure.php:478 +#: tbl_structure.php:476 msgid "Fulltext" msgstr "Testu osoa" @@ -3493,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:711 -#: server_privileges.php:714 server_privileges.php:721 +#: libraries/replication_gui.lib.php:259 server_privileges.php:712 +#: server_privileges.php:715 server_privileges.php:722 #: server_synchronize.php:1171 msgid "User name" msgstr "Erabiltzaile-izena" @@ -3519,7 +3561,7 @@ msgstr "Aldagaia" #: 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 +#: tbl_structure.php:727 msgid "Value" msgstr "balioa" @@ -3538,34 +3580,34 @@ msgstr "" msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:254 server_privileges.php:716 +#: libraries/replication_gui.lib.php:254 server_privileges.php:717 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:717 -#: server_privileges.php:784 server_privileges.php:808 -#: server_privileges.php:1928 server_privileges.php:1958 +#: libraries/replication_gui.lib.php:346 server_privileges.php:718 +#: server_privileges.php:785 server_privileges.php:809 +#: server_privileges.php:1948 server_privileges.php:1978 msgid "Use text field" msgstr "Testu-eremua erabili" -#: libraries/replication_gui.lib.php:302 server_privileges.php:764 +#: libraries/replication_gui.lib.php:302 server_privileges.php:765 msgid "Any host" msgstr "Edozein ostalari" -#: libraries/replication_gui.lib.php:306 server_privileges.php:768 +#: libraries/replication_gui.lib.php:306 server_privileges.php:769 msgid "Local" msgstr "Lokal" -#: libraries/replication_gui.lib.php:312 server_privileges.php:773 +#: libraries/replication_gui.lib.php:312 server_privileges.php:774 msgid "This Host" msgstr "Host hau" -#: libraries/replication_gui.lib.php:318 server_privileges.php:779 +#: libraries/replication_gui.lib.php:318 server_privileges.php:780 msgid "Use Host Table" msgstr "Host taula erabili" -#: libraries/replication_gui.lib.php:331 server_privileges.php:792 +#: libraries/replication_gui.lib.php:331 server_privileges.php:793 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -3600,30 +3642,30 @@ msgstr "" msgid "Servers" msgstr "Zerbitzaria" -#: libraries/server_links.inc.php:53 server_engines.php:112 +#: libraries/server_links.inc.php:54 server_engines.php:112 #: server_engines.php:116 server_status.php:415 test/theme.php:105 msgid "Variables" msgstr "Aldagaiak" -#: libraries/server_links.inc.php:57 test/theme.php:109 +#: libraries/server_links.inc.php:58 test/theme.php:109 msgid "Charsets" msgstr "Karaktere-multzoa" -#: libraries/server_links.inc.php:61 test/theme.php:113 +#: libraries/server_links.inc.php:62 test/theme.php:113 msgid "Engines" msgstr "" -#: libraries/server_links.inc.php:76 server_binlog.php:110 +#: libraries/server_links.inc.php:77 server_binlog.php:110 #: server_status.php:364 test/theme.php:121 #, fuzzy msgid "Binary log" msgstr " Binarioa " -#: libraries/server_links.inc.php:80 +#: libraries/server_links.inc.php:81 msgid "Processes" msgstr "Prozesuak" -#: libraries/server_links.inc.php:92 server_synchronize.php:1092 +#: libraries/server_links.inc.php:93 server_synchronize.php:1092 #: server_synchronize.php:1100 msgid "Synchronize" msgstr "" @@ -3876,13 +3918,13 @@ msgstr "" msgid "Save" msgstr "Gorde" -#: libraries/tbl_properties.inc.php:780 tbl_structure.php:542 +#: libraries/tbl_properties.inc.php:780 tbl_structure.php:540 #, fuzzy, php-format #| msgid "Add %s field(s)" msgid "Add %s column(s)" msgstr "Gehitu %s zutabe" -#: libraries/tbl_properties.inc.php:784 tbl_structure.php:536 +#: libraries/tbl_properties.inc.php:784 tbl_structure.php:534 #, fuzzy #| msgid "You have to choose at least one column to display" msgid "You have to add at least one column." @@ -4068,8 +4110,8 @@ msgstr "Reset egin" msgid "Protocol version" msgstr "" -#: main.php:189 server_privileges.php:1389 server_privileges.php:1536 -#: server_privileges.php:1650 server_privileges.php:2068 +#: main.php:189 server_privileges.php:1406 server_privileges.php:1556 +#: server_privileges.php:1670 server_privileges.php:2089 #: server_processlist.php:54 msgid "User" msgstr "Erabiltzailea" @@ -4506,121 +4548,121 @@ msgstr "" msgid "View dump (schema) of databases" msgstr "Ikusi datu-baseen iraulketa (eskema)" -#: server_privileges.php:24 server_privileges.php:266 +#: server_privileges.php:25 server_privileges.php:267 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 +#: server_privileges.php:26 server_privileges.php:193 +#: server_privileges.php:516 msgid "Allows altering the structure of existing tables." msgstr "Uneko taulen egiturak aldatzea baimentzen du." -#: server_privileges.php:26 server_privileges.php:208 -#: server_privileges.php:521 +#: server_privileges.php:27 server_privileges.php:209 +#: server_privileges.php:522 #, fuzzy msgid "Allows altering and dropping stored routines." msgstr "Indizeak sortu eta ezabatzea baimentzen du." -#: server_privileges.php:27 server_privileges.php:184 -#: server_privileges.php:514 +#: server_privileges.php:28 server_privileges.php:185 +#: server_privileges.php:515 msgid "Allows creating new databases and tables." msgstr "Datu-base eta taula berriak sortzea baimentzen du." -#: server_privileges.php:28 server_privileges.php:207 -#: server_privileges.php:520 +#: server_privileges.php:29 server_privileges.php:208 +#: server_privileges.php:521 #, fuzzy msgid "Allows creating stored routines." msgstr "Taula berriak sortzea baimentzen du." -#: server_privileges.php:29 server_privileges.php:514 +#: server_privileges.php:30 server_privileges.php:515 msgid "Allows creating new tables." msgstr "Taula berriak sortzea baimentzen du." -#: server_privileges.php:30 server_privileges.php:195 -#: server_privileges.php:518 +#: server_privileges.php:31 server_privileges.php:196 +#: server_privileges.php:519 msgid "Allows creating temporary tables." msgstr "Aldi baterako taulak sortzea baimentzen du." -#: server_privileges.php:31 server_privileges.php:209 -#: server_privileges.php:554 +#: server_privileges.php:32 server_privileges.php:210 +#: server_privileges.php:555 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 +#: server_privileges.php:33 server_privileges.php:200 +#: server_privileges.php:204 server_privileges.php:527 +#: server_privileges.php:531 #, fuzzy msgid "Allows creating new views." msgstr "Taula berriak sortzea baimentzen du." -#: server_privileges.php:33 server_privileges.php:183 -#: server_privileges.php:506 +#: server_privileges.php:34 server_privileges.php:184 +#: server_privileges.php:507 msgid "Allows deleting data." msgstr "Datuak ezabatzea baimentzen du." -#: server_privileges.php:34 server_privileges.php:185 -#: server_privileges.php:517 +#: server_privileges.php:35 server_privileges.php:186 +#: server_privileges.php:518 msgid "Allows dropping databases and tables." msgstr "Datu-base eta taulak ezabatzea baimentzen du." -#: server_privileges.php:35 server_privileges.php:517 +#: server_privileges.php:36 server_privileges.php:518 msgid "Allows dropping tables." msgstr "Taulak ezabatzea baimentzen du." -#: server_privileges.php:36 server_privileges.php:200 -#: server_privileges.php:534 +#: server_privileges.php:37 server_privileges.php:201 +#: server_privileges.php:535 msgid "Allows to set up events for the event scheduler" msgstr "" -#: server_privileges.php:37 server_privileges.php:210 -#: server_privileges.php:522 +#: server_privileges.php:38 server_privileges.php:211 +#: server_privileges.php:523 msgid "Allows executing stored routines." msgstr "" -#: server_privileges.php:38 server_privileges.php:189 -#: server_privileges.php:509 +#: server_privileges.php:39 server_privileges.php:190 +#: server_privileges.php:510 msgid "Allows importing data from and exporting data into files." msgstr "" "Datuak fitxategietatik inportatzea eta fitxategietara esportatzea baimentzen " "du." -#: server_privileges.php:39 server_privileges.php:540 +#: server_privileges.php:40 server_privileges.php:541 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "Erabiltzaileak eta pribilegioak gehitzea baimentzen du pribilegioen taula " "berkargatu gabe." -#: server_privileges.php:40 server_privileges.php:191 -#: server_privileges.php:516 +#: server_privileges.php:41 server_privileges.php:192 +#: server_privileges.php:517 msgid "Allows creating and dropping indexes." msgstr "Indizeak sortu eta ezabatzea baimentzen du." -#: server_privileges.php:41 server_privileges.php:181 -#: server_privileges.php:442 server_privileges.php:504 +#: server_privileges.php:42 server_privileges.php:182 +#: server_privileges.php:443 server_privileges.php:505 msgid "Allows inserting and replacing data." msgstr "Datuak txertatu eta ordezkatzea baimentzen du." -#: server_privileges.php:42 server_privileges.php:196 -#: server_privileges.php:549 +#: server_privileges.php:43 server_privileges.php:197 +#: server_privileges.php:550 msgid "Allows locking tables for the current thread." msgstr "Momentuko harian taulak blokeatzea baimentzen du." -#: server_privileges.php:43 server_privileges.php:646 -#: server_privileges.php:648 +#: server_privileges.php:44 server_privileges.php:647 +#: server_privileges.php:649 msgid "Limits the number of new connections the user may open per hour." msgstr "" "Erabiltzaileak orduko ireki dezakeen konexio berrien kopurua mugatzen du." -#: server_privileges.php:44 server_privileges.php:634 -#: server_privileges.php:636 +#: server_privileges.php:45 server_privileges.php:635 +#: server_privileges.php:637 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" "Erabiltzaileak orduko zerbitzarira bidali dezakeen kontsulta kopurua " "mugatzen du." -#: server_privileges.php:45 server_privileges.php:640 -#: server_privileges.php:642 +#: server_privileges.php:46 server_privileges.php:641 +#: server_privileges.php:643 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -4628,62 +4670,62 @@ 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 +#: server_privileges.php:47 server_privileges.php:653 +#: server_privileges.php:655 #, fuzzy msgid "Limits the number of simultaneous connections the user may have." msgstr "" "Erabiltzaileak orduko ireki dezakeen konexio berrien kopurua mugatzen du." -#: server_privileges.php:47 server_privileges.php:188 -#: server_privileges.php:544 +#: server_privileges.php:48 server_privileges.php:189 +#: server_privileges.php:545 msgid "Allows viewing processes of all users" msgstr "" -#: server_privileges.php:48 server_privileges.php:190 -#: server_privileges.php:448 server_privileges.php:550 +#: server_privileges.php:49 server_privileges.php:191 +#: server_privileges.php:449 server_privileges.php:551 msgid "Has no effect in this MySQL version." msgstr "Ez du eraginik MySQL bertsio honetan." -#: server_privileges.php:49 server_privileges.php:186 -#: server_privileges.php:545 +#: server_privileges.php:50 server_privileges.php:187 +#: server_privileges.php:546 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" "Zerbitzariaren hobespenak berkargatu eta beraren cacheak hustea baimentzen " "du." -#: server_privileges.php:50 server_privileges.php:198 -#: server_privileges.php:552 +#: server_privileges.php:51 server_privileges.php:199 +#: server_privileges.php:553 msgid "Allows the user to ask where the slaves / masters are." msgstr "Erabiltzailea baimentzen du morroiak / nagusiak non dauden galdetzeko." -#: server_privileges.php:51 server_privileges.php:197 -#: server_privileges.php:553 +#: server_privileges.php:52 server_privileges.php:198 +#: server_privileges.php:554 msgid "Needed for the replication slaves." msgstr "Erreplikazio morroientzat beharrezkoa." -#: server_privileges.php:52 server_privileges.php:180 -#: server_privileges.php:439 server_privileges.php:503 +#: server_privileges.php:53 server_privileges.php:181 +#: server_privileges.php:440 server_privileges.php:504 msgid "Allows reading data." msgstr "Datuak irakurtzea baimentzen du." -#: server_privileges.php:53 server_privileges.php:193 -#: server_privileges.php:547 +#: server_privileges.php:54 server_privileges.php:194 +#: server_privileges.php:548 msgid "Gives access to the complete list of databases." msgstr "Datu-base zenrrenda osorako sarrera ahalbidetzen du." -#: server_privileges.php:54 server_privileges.php:204 -#: server_privileges.php:206 server_privileges.php:519 +#: server_privileges.php:55 server_privileges.php:205 +#: server_privileges.php:207 server_privileges.php:520 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "" -#: server_privileges.php:55 server_privileges.php:187 -#: server_privileges.php:546 +#: server_privileges.php:56 server_privileges.php:188 +#: server_privileges.php:547 msgid "Allows shutting down the server." msgstr "Zerbitzaria amatatzea baimentzen du." -#: server_privileges.php:56 server_privileges.php:194 -#: server_privileges.php:543 +#: server_privileges.php:57 server_privileges.php:195 +#: server_privileges.php:544 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -4693,158 +4735,158 @@ msgstr "" "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 +#: server_privileges.php:58 server_privileges.php:202 +#: server_privileges.php:536 #, fuzzy msgid "Allows creating and dropping triggers" msgstr "Indizeak sortu eta ezabatzea baimentzen du." -#: server_privileges.php:58 server_privileges.php:182 -#: server_privileges.php:445 server_privileges.php:505 +#: server_privileges.php:59 server_privileges.php:183 +#: server_privileges.php:446 server_privileges.php:506 msgid "Allows changing data." msgstr "Datuak aldatzea baimentzen du." -#: server_privileges.php:59 server_privileges.php:260 +#: server_privileges.php:60 server_privileges.php:261 msgid "No privileges." msgstr "Pribilegiorik ez." -#: server_privileges.php:302 server_privileges.php:303 +#: server_privileges.php:303 server_privileges.php:304 #, fuzzy #| msgid "None" msgctxt "None privileges" msgid "None" msgstr "Batez" -#: server_privileges.php:431 server_privileges.php:566 -#: server_privileges.php:1718 server_privileges.php:1724 +#: server_privileges.php:432 server_privileges.php:567 +#: server_privileges.php:1738 server_privileges.php:1744 msgid "Table-specific privileges" msgstr "Taularen pribilegio espezifikoak" -#: server_privileges.php:432 server_privileges.php:574 -#: server_privileges.php:1540 +#: server_privileges.php:433 server_privileges.php:575 +#: server_privileges.php:1560 msgid " Note: MySQL privilege names are expressed in English " msgstr " Oharra: MySQL-ren pribilegioen izenak ingelesez adierazita daude" -#: server_privileges.php:563 server_privileges.php:1539 +#: server_privileges.php:564 server_privileges.php:1559 msgid "Global privileges" msgstr "Pribilegio orokorrak" -#: server_privileges.php:565 server_privileges.php:1718 +#: server_privileges.php:566 server_privileges.php:1738 msgid "Database-specific privileges" msgstr "Datu-basearen pribilegio espezifikoak" -#: server_privileges.php:610 +#: server_privileges.php:611 msgid "Administration" msgstr "Kudeaketa" -#: server_privileges.php:630 +#: server_privileges.php:631 msgid "Resource limits" msgstr "Baliabideen mugak" -#: server_privileges.php:631 +#: server_privileges.php:632 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "Oharra: Aukera hauek zerora ezarriz gero muga kentzen da." -#: server_privileges.php:708 +#: server_privileges.php:709 msgid "Login Information" msgstr "Saioa hasteko informazioa" -#: server_privileges.php:802 +#: server_privileges.php:803 msgid "Do not change the password" msgstr "Pasahitza ez aldatu" -#: server_privileges.php:843 server_privileges.php:2205 +#: server_privileges.php:844 server_privileges.php:2226 #, fuzzy #| msgid "No user(s) found." msgid "No user found." msgstr "Ez da erabiltzailerik aurkitu." -#: server_privileges.php:887 +#: server_privileges.php:888 #, php-format msgid "The user %s already exists!" msgstr "%s erabiltzailea badago lehendik ere!" -#: server_privileges.php:970 +#: server_privileges.php:971 msgid "You have added a new user." msgstr "Erabiltzaile berria gehitu duzu." -#: server_privileges.php:1191 +#: server_privileges.php:1196 #, php-format msgid "You have updated the privileges for %s." msgstr "%s-aren pribilegioak eguneratu dituzu." -#: server_privileges.php:1215 +#: server_privileges.php:1220 #, php-format msgid "You have revoked the privileges for %s" msgstr "Zuk %s-(r)en pribilegioak ezeztatu dituzu" -#: server_privileges.php:1251 +#: server_privileges.php:1256 #, php-format msgid "The password for %s was changed successfully." msgstr "%s-arentzako pasahitza arrakastaz aldatua izan da." -#: server_privileges.php:1271 +#: server_privileges.php:1276 #, php-format msgid "Deleting %s" msgstr "%s ezabatzen" -#: server_privileges.php:1282 +#: server_privileges.php:1287 msgid "No users selected for deleting!" msgstr "" -#: server_privileges.php:1285 +#: server_privileges.php:1290 msgid "Reloading the privileges" msgstr "Pribilegioak berkargatzen" -#: server_privileges.php:1300 +#: server_privileges.php:1305 msgid "The selected users have been deleted successfully." msgstr "Hautatutako erabiltzaileak arrakastaz ezabatu dira." -#: server_privileges.php:1335 +#: server_privileges.php:1344 msgid "The privileges were reloaded successfully." msgstr "Pribilegioak arrakastaz berkargatu dira." -#: server_privileges.php:1363 server_privileges.php:1649 +#: server_privileges.php:1380 server_privileges.php:1669 msgid "Edit Privileges" msgstr "Editatu Pribilegioak" -#: server_privileges.php:1372 +#: server_privileges.php:1389 msgid "Revoke" msgstr "Ezeztatu" -#: server_privileges.php:1404 +#: server_privileges.php:1424 msgid "User overview" msgstr "Erabiltzailearen info orokorra" -#: server_privileges.php:1541 server_privileges.php:1723 -#: server_privileges.php:2072 +#: server_privileges.php:1561 server_privileges.php:1743 +#: server_privileges.php:2093 msgid "Grant" msgstr "Baimendu" -#: server_privileges.php:1560 server_privileges.php:2162 +#: server_privileges.php:1580 server_privileges.php:2183 msgid "Any" msgstr "Edozein" -#: server_privileges.php:1609 server_privileges.php:1633 -#: server_privileges.php:2027 server_privileges.php:2216 +#: server_privileges.php:1629 server_privileges.php:1653 +#: server_privileges.php:2048 server_privileges.php:2237 msgid "Add a new User" msgstr "Erabiltzaile berria gehitu" -#: server_privileges.php:1614 +#: server_privileges.php:1634 msgid "Remove selected users" msgstr "Hautatutako erabiltzaileak baztertu" -#: server_privileges.php:1617 +#: server_privileges.php:1637 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:1618 server_privileges.php:1619 -#: server_privileges.php:1620 +#: server_privileges.php:1638 server_privileges.php:1639 +#: server_privileges.php:1640 msgid "Drop the databases that have the same names as the users." msgstr "Erabiltzaileen izen berdina duten datu-baseak ezabatu." -#: server_privileges.php:1636 +#: server_privileges.php:1656 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -4858,49 +4900,49 @@ msgstr "" "daitezke. Kasu honetan, jarraitu aurretik %spribilegioak berkargatu%s " "beharko zenituzke." -#: server_privileges.php:1684 +#: server_privileges.php:1704 msgid "The selected user was not found in the privilege table." msgstr "Hautatutako erabiltzailea ez da pribilegioen taulan aurkitu." -#: server_privileges.php:1724 +#: server_privileges.php:1744 msgid "Column-specific privileges" msgstr "Zutabearen pribilegio espezifikoak" -#: server_privileges.php:1925 +#: server_privileges.php:1945 msgid "Add privileges on the following database" msgstr "Pribilegioak gehitu datu-base honetan" -#: server_privileges.php:1943 +#: server_privileges.php:1963 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" -#: server_privileges.php:1946 +#: server_privileges.php:1966 msgid "Add privileges on the following table" msgstr "Pribilegioak gehitu taula honetan " -#: server_privileges.php:2003 +#: server_privileges.php:2023 msgid "Change Login Information / Copy User" msgstr "Aldatu saioa hasteko informazioa / Erabiltzailea kopiatu" -#: server_privileges.php:2006 +#: server_privileges.php:2026 msgid "Create a new user with the same privileges and ..." msgstr "Erabiltzaile berri bat sortu pribilegio berdinekin eta ..." -#: server_privileges.php:2008 +#: server_privileges.php:2028 msgid "... keep the old one." msgstr "... mantendu aurrekoa." -#: server_privileges.php:2009 +#: server_privileges.php:2029 msgid " ... delete the old one from the user tables." msgstr " ... zaharra ezabatu erabiltzaileen tauletatik." -#: server_privileges.php:2010 +#: server_privileges.php:2030 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:2011 +#: server_privileges.php:2031 msgid "" " ... delete the old one from the user tables and reload the privileges " "afterwards." @@ -4908,44 +4950,44 @@ msgstr "" " ... zaharra ezabatu erabiltzaileen tauletatik eta ondoren berkargatu " "pribilegioak." -#: server_privileges.php:2033 +#: server_privileges.php:2054 msgid "Database for user" msgstr "" -#: server_privileges.php:2037 +#: server_privileges.php:2058 #, fuzzy #| msgid "None" msgctxt "Create none database for user" msgid "None" msgstr "Batez" -#: server_privileges.php:2038 +#: server_privileges.php:2059 msgid "Create database with same name and grant all privileges" msgstr "" -#: server_privileges.php:2039 +#: server_privileges.php:2060 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "" -#: server_privileges.php:2042 +#: server_privileges.php:2063 #, fuzzy, php-format msgid "Grant all privileges on database "%s"" msgstr ""%s" datu-basearen pribilegioak egiaztatu." -#: server_privileges.php:2065 +#: server_privileges.php:2086 #, php-format msgid "Users having access to "%s"" msgstr ""%s"-(e)ra sarbidea duten erabiltzaileak" -#: server_privileges.php:2173 +#: server_privileges.php:2194 msgid "global" msgstr "orokorra" -#: server_privileges.php:2175 +#: server_privileges.php:2196 msgid "database-specific" msgstr "Datubasearentzat espezifikoa" -#: server_privileges.php:2177 +#: server_privileges.php:2198 msgid "wildcard" msgstr "komodina" @@ -7637,6 +7679,10 @@ msgstr "" msgid "Show insert query" msgstr "" +#: tbl_change.php:1143 +msgid "and then" +msgstr "eta orduan" + #: tbl_change.php:1147 msgid "Go back to previous page" msgstr "Itzuli" @@ -7717,7 +7763,7 @@ msgstr "" msgid "Add to index  %s column(s)" msgstr " %s  zutabe indizean gehituta" -#: tbl_indexes.php:256 tbl_structure.php:589 tbl_structure.php:600 +#: tbl_indexes.php:256 tbl_structure.php:587 tbl_structure.php:598 msgid "Column count has to be larger than zero." msgstr "" @@ -7834,39 +7880,39 @@ msgstr "Erreferentzien integritatea egiaztatu:" msgid "Show tables" msgstr "Taulak erakutsi" -#: tbl_printview.php:310 tbl_structure.php:656 +#: tbl_printview.php:310 tbl_structure.php:654 msgid "Space usage" msgstr "Erabilitako lekua" -#: tbl_printview.php:314 tbl_structure.php:660 +#: tbl_printview.php:314 tbl_structure.php:658 msgid "Usage" msgstr "Erabilpena" -#: tbl_printview.php:341 tbl_structure.php:687 +#: tbl_printview.php:341 tbl_structure.php:685 msgid "Effective" msgstr "Eraginkorra" -#: tbl_printview.php:366 tbl_structure.php:725 +#: tbl_printview.php:366 tbl_structure.php:723 msgid "Row Statistics" msgstr "Errenkadaren estatistikak" -#: tbl_printview.php:369 tbl_structure.php:728 +#: tbl_printview.php:369 tbl_structure.php:726 msgid "Statements" msgstr "Sententziak" -#: tbl_printview.php:380 tbl_structure.php:740 +#: tbl_printview.php:380 tbl_structure.php:738 msgid "static" msgstr "" -#: tbl_printview.php:382 tbl_structure.php:742 +#: tbl_printview.php:382 tbl_structure.php:740 msgid "dynamic" msgstr "dinamikoa" -#: tbl_printview.php:404 tbl_structure.php:785 +#: tbl_printview.php:404 tbl_structure.php:783 msgid "Row length" msgstr "Errenkadaren luzera" -#: tbl_printview.php:414 tbl_structure.php:793 +#: tbl_printview.php:414 tbl_structure.php:791 msgid " Row size " msgstr " Errenkadaren tamaina " @@ -7939,50 +7985,50 @@ msgstr "Batez" msgid "Column %s has been dropped" msgstr "%s taula ezabatu egin da" -#: tbl_structure.php:385 +#: tbl_structure.php:384 #, php-format msgid "A primary key has been added on %s" msgstr "Lehen mailako gakoa gehitu zaio %s-(r)i" -#: tbl_structure.php:400 tbl_structure.php:414 tbl_structure.php:428 +#: tbl_structure.php:398 tbl_structure.php:412 tbl_structure.php:426 #, php-format msgid "An index has been added on %s" msgstr "Indize bat gehitu gehitu zaio %s-(r)i" -#: tbl_structure.php:506 tbl_structure.php:508 +#: tbl_structure.php:504 tbl_structure.php:506 msgid "Relation view" msgstr "Erlazioen ikuspegia" -#: tbl_structure.php:515 tbl_structure.php:517 +#: tbl_structure.php:513 tbl_structure.php:515 msgid "Propose table structure" msgstr "Taularen egituraren proposamena " -#: tbl_structure.php:540 +#: tbl_structure.php:538 #, fuzzy #| msgid "Add %s field(s)" msgid "Add column" msgstr "Gehitu %s zutabe" -#: tbl_structure.php:554 +#: tbl_structure.php:552 msgid "At End of Table" msgstr "Taularen amaieran" -#: tbl_structure.php:555 +#: tbl_structure.php:553 msgid "At Beginning of Table" msgstr "Taularen hasieran" -#: tbl_structure.php:556 +#: tbl_structure.php:554 #, php-format msgid "After %s" msgstr "%s(a)ren ondoren" -#: tbl_structure.php:594 +#: tbl_structure.php:592 #, fuzzy, php-format #| msgid "Create an index on %s columns" msgid "Create an index on  %s columns" msgstr "Indize bat sortu  %s  zutabetan" -#: tbl_structure.php:756 +#: tbl_structure.php:754 msgid "partitioned" msgstr "" @@ -8370,10 +8416,6 @@ msgstr "Taula berrizendatu izen honetara: " #~ msgid "Process list" #~ msgstr "Prozesuen zerrenda" -#, fuzzy -#~ msgid "Reload privileges" -#~ msgstr "Pribilegio orokorrak" - #~ msgid "" #~ "The users will still have the USAGE privilege until the privileges are " #~ "reloaded." diff --git a/po/fa.po b/po/fa.po index b9dcb2726..f3fdb01d3 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-13 09:03-0400\n" +"POT-Creation-Date: 2010-06-22 00:55+0530\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:1514 +#: libraries/display_tbl.lib.php:417 server_privileges.php:1534 msgid "Show all" msgstr "نمايش همه" -#: browse_foreigners.php:82 libraries/common.lib.php:2313 +#: browse_foreigners.php:82 libraries/common.lib.php:2317 #: 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,18 +35,18 @@ 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:2831 -#: libraries/common.lib.php:2838 libraries/db_links.inc.php:75 +#: db_structure.php:106 libraries/common.lib.php:2835 +#: libraries/common.lib.php:2842 libraries/db_links.inc.php:75 #: libraries/tbl_links.inc.php:63 msgid "Search" msgstr "جستجو" -#: browse_foreigners.php:153 db_operations.php:385 db_operations.php:429 -#: db_operations.php:499 db_operations.php:609 db_search.php:362 -#: db_structure.php:567 js/messages.php:48 libraries/Config.class.php:1046 +#: browse_foreigners.php:153 db_operations.php:394 db_operations.php:438 +#: db_operations.php:508 db_operations.php:618 db_search.php:362 +#: db_structure.php:565 js/messages.php:53 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:1335 libraries/common.lib.php:2288 +#: libraries/common.lib.php:1335 libraries/common.lib.php:2292 #: 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,15 +57,15 @@ 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:664 server_privileges.php:1624 -#: server_privileges.php:1971 server_privileges.php:2018 -#: server_privileges.php:2057 server_replication.php:235 +#: server_privileges.php:665 server_privileges.php:1644 +#: server_privileges.php:1991 server_privileges.php:2038 +#: server_privileges.php:2078 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 #: tbl_operations.php:302 tbl_operations.php:499 tbl_operations.php:561 -#: tbl_operations.php:681 tbl_select.php:327 tbl_structure.php:562 -#: tbl_structure.php:597 tbl_tracking.php:395 tbl_tracking.php:512 +#: tbl_operations.php:681 tbl_select.php:327 tbl_structure.php:560 +#: tbl_structure.php:595 tbl_tracking.php:395 tbl_tracking.php:512 #: view_create.php:182 view_operations.php:101 msgid "Go" msgstr "تاييد" @@ -91,7 +91,7 @@ msgstr "این مقدار را استفاده کنید" msgid "Database %1$s has been created." msgstr "پايگاه داده %s حذف گرديد." -#: db_datadict.php:49 db_operations.php:378 +#: db_datadict.php:49 db_operations.php:387 #, fuzzy msgid "Database comment: " msgstr "توضيحات جدول" @@ -119,10 +119,10 @@ 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:2070 +#: pdf_schema.php:1263 pdf_schema.php:1284 server_privileges.php:2091 #: 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 +#: tbl_structure.php:657 tbl_tracking.php:274 tbl_tracking.php:321 msgid "Type" msgstr "نوع" @@ -135,7 +135,7 @@ msgstr "نوع" msgid "Null" msgstr "خالي" -#: db_datadict.php:178 db_structure.php:501 libraries/export/htmlword.php:247 +#: db_datadict.php:178 db_structure.php:499 libraries/export/htmlword.php:247 #: libraries/export/latex.php:360 libraries/export/odt.php:303 #: libraries/export/texytext.php:236 libraries/tbl_properties.inc.php:106 #: pdf_schema.php:1266 pdf_schema.php:1287 tbl_printview.php:146 @@ -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: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 +#: pdf_schema.php:1344 server_privileges.php:1588 server_privileges.php:1599 +#: server_privileges.php:1909 server_privileges.php:1914 +#: server_privileges.php:2208 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:1565 -#: server_privileges.php:1579 server_privileges.php:1889 -#: server_privileges.php:1892 server_privileges.php:2187 sql.php:193 +#: server_databases.php:64 server_privileges.php:1585 +#: server_privileges.php:1599 server_privileges.php:1909 +#: server_privileges.php:1912 server_privileges.php:2208 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" @@ -208,127 +208,123 @@ msgstr "انتخاب همه" msgid "Unselect All" msgstr "عدم انتخاب همه" -#: db_operations.php:38 tbl_create.php:54 +#: db_operations.php:43 tbl_create.php:54 #, fuzzy msgid "The database name is empty!" msgstr "نام جدول وارد نشده‌است !" -#: db_operations.php:236 +#: db_operations.php:241 #, fuzzy, php-format msgid "Database %s has been renamed to %s" msgstr "جدول %s به %s تغيير نام داده‌شد" -#: db_operations.php:240 +#: db_operations.php:245 #, fuzzy, php-format msgid "Database %s has been copied to %s" msgstr "جدول %s به %s كپي شد." -#: db_operations.php:412 +#: db_operations.php:421 #, fuzzy msgid "Rename database to" msgstr "بازناميدن جدول به" -#: db_operations.php:417 server_processlist.php:57 +#: db_operations.php:426 server_processlist.php:57 msgid "Command" msgstr "دستور" -#: db_operations.php:429 tbl_change.php:1143 -msgid "and then" -msgstr "و سپس" - -#: db_operations.php:455 +#: db_operations.php:464 #, fuzzy msgid "Copy database to" msgstr "No databases" -#: db_operations.php:462 tbl_operations.php:528 tbl_tracking.php:388 +#: db_operations.php:471 tbl_operations.php:528 tbl_tracking.php:388 msgid "Structure only" msgstr "فقط ساختار" -#: db_operations.php:463 tbl_operations.php:529 tbl_tracking.php:390 +#: db_operations.php:472 tbl_operations.php:529 tbl_tracking.php:390 msgid "Structure and data" msgstr "ساختار و داده‌ها" -#: db_operations.php:464 tbl_operations.php:530 tbl_tracking.php:389 +#: db_operations.php:473 tbl_operations.php:530 tbl_tracking.php:389 msgid "Data only" msgstr "فقط داده‌ها" -#: db_operations.php:472 +#: db_operations.php:481 msgid "CREATE DATABASE before copying" msgstr "" -#: db_operations.php:475 libraries/export/sql.php:52 +#: db_operations.php:484 libraries/export/sql.php:52 #: libraries/export/sql.php:74 libraries/export/sql.php:76 #: libraries/export/sql.php:82 tbl_operations.php:536 #, php-format msgid "Add %s" msgstr "افزودن %s" -#: db_operations.php:479 libraries/export/sql.php:78 tbl_operations.php:299 +#: db_operations.php:488 libraries/export/sql.php:78 tbl_operations.php:299 #: tbl_operations.php:538 msgid "Add AUTO_INCREMENT value" msgstr "" -#: db_operations.php:483 tbl_operations.php:545 +#: db_operations.php:492 tbl_operations.php:545 msgid "Add constraints" msgstr "" -#: db_operations.php:496 +#: db_operations.php:505 msgid "Switch to copied database" msgstr "" -#: db_operations.php:537 +#: db_operations.php:546 msgid "BLOB Repository" msgstr "" -#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1352 -#: libraries/server_links.inc.php:49 server_processlist.php:59 +#: db_operations.php:549 db_tracking.php:76 libraries/common.lib.php:1352 +#: libraries/server_links.inc.php:50 server_processlist.php:59 #: tbl_tracking.php:596 test/theme.php:101 msgid "Status" msgstr "" -#: db_operations.php:548 +#: db_operations.php:557 msgctxt "BLOB repository" msgid "Enabled" msgstr "فعال شده" -#: db_operations.php:552 +#: db_operations.php:561 #, fuzzy msgid "Disable" msgstr "غيرفعال" -#: db_operations.php:562 +#: db_operations.php:571 msgid "Damaged" msgstr "" -#: db_operations.php:566 +#: db_operations.php:575 #, fuzzy msgctxt "BLOB repository" msgid "Repair" msgstr "مرمت جدول" -#: db_operations.php:574 +#: db_operations.php:583 #, fuzzy #| msgid "Disabled" msgctxt "BLOB repository" msgid "Disabled" msgstr "غيرفعال" -#: db_operations.php:578 +#: db_operations.php:587 #, fuzzy msgid "Enable" msgstr "فعال" -#: db_operations.php:602 libraries/Index.class.php:448 +#: db_operations.php:611 libraries/Index.class.php:448 #: libraries/db_structure.lib.php:62 libraries/mysql_charsets.lib.php:107 #: libraries/tbl_properties.inc.php:107 libraries/tbl_properties.inc.php:730 #: server_collations.php:54 server_collations.php:66 server_databases.php:111 #: tbl_operations.php:363 tbl_select.php:137 tbl_structure.php:179 -#: tbl_structure.php:767 tbl_tracking.php:275 tbl_tracking.php:326 +#: tbl_structure.php:765 tbl_tracking.php:275 tbl_tracking.php:326 msgid "Collation" msgstr "مقایسه" -#: db_operations.php:615 main.php:316 pdf_schema.php:34 +#: db_operations.php:624 main.php:316 pdf_schema.php:34 #, php-format msgid "" "The additional features for working with linked tables have been " @@ -337,14 +333,14 @@ msgstr "" "امكانات اضافي براي كاركردن با جدولهاي پيوندي غيرفعال شده‌است . براي پيداكردن " "دليل آن %sاينجا%s را بزنيد ." -#: db_operations.php:648 +#: db_operations.php:657 msgid "Edit PDF Pages" 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:1665 -#: server_privileges.php:1721 server_privileges.php:1985 +#: libraries/header.inc.php:130 pdf_pages.php:424 server_privileges.php:1685 +#: server_privileges.php:1741 server_privileges.php:2005 #: server_synchronize.php:423 server_synchronize.php:866 tbl_tracking.php:592 #: test/theme.php:75 msgid "Table" @@ -353,7 +349,7 @@ msgstr "جدول" #: db_printview.php:105 libraries/db_structure.lib.php:56 #: libraries/header_printview.inc.php:63 libraries/import.lib.php:146 #: navigation.php:638 navigation.php:660 server_databases.php:122 -#: tbl_printview.php:394 tbl_structure.php:365 tbl_structure.php:777 +#: tbl_printview.php:394 tbl_structure.php:365 tbl_structure.php:775 msgid "Rows" msgstr "سطرها" @@ -361,31 +357,31 @@ msgstr "سطرها" msgid "Size" msgstr "اندازه" -#: db_printview.php:162 db_structure.php:457 libraries/export/sql.php:559 +#: db_printview.php:162 db_structure.php:455 libraries/export/sql.php:559 #: libraries/export/sql.php:899 msgid "in use" msgstr "in use" #: db_printview.php:187 libraries/db_info.inc.php:88 #: libraries/export/sql.php:514 pdf_schema.php:1241 tbl_printview.php:434 -#: tbl_structure.php:809 +#: tbl_structure.php:807 #, fuzzy msgid "Creation" msgstr "ساختن" #: db_printview.php:196 libraries/db_info.inc.php:93 #: libraries/export/sql.php:519 pdf_schema.php:1246 tbl_printview.php:444 -#: tbl_structure.php:817 +#: tbl_structure.php:815 msgid "Last update" msgstr "" #: db_printview.php:205 libraries/db_info.inc.php:98 #: libraries/export/sql.php:524 pdf_schema.php:1251 tbl_printview.php:454 -#: tbl_structure.php:825 +#: tbl_structure.php:823 msgid "Last check" msgstr "" -#: db_printview.php:222 db_structure.php:480 +#: db_printview.php:222 db_structure.php:478 #, fuzzy, php-format #| msgid "%s table(s)" msgid "%s table" @@ -445,7 +441,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:297 tbl_change.php:1031 tbl_indexes.php:250 +#: server_privileges.php:298 tbl_change.php:1031 tbl_indexes.php:250 #: tbl_select.php:288 msgid "Or" msgstr "يا" @@ -518,9 +514,9 @@ 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:2833 +#: db_structure.php:105 libraries/common.lib.php:2837 #: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50 -#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:467 +#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:465 msgid "Browse" msgstr "مشاهده" @@ -565,36 +561,36 @@ 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:2832 libraries/sql_query_form.lib.php:334 +#: libraries/common.lib.php:2836 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:2829 libraries/common.lib.php:2836 +#: libraries/common.lib.php:2833 libraries/common.lib.php:2840 #: 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:1106 #: libraries/tbl_links.inc.php:56 pmd_general.php:134 -#: server_privileges.php:593 server_replication.php:315 tbl_tracking.php:269 +#: server_privileges.php:594 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:1656 +#: db_structure.php:543 db_structure.php:544 db_tracking.php:91 +#: libraries/Index.class.php:483 libraries/common.lib.php:1657 #: 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 -#: tbl_structure.php:152 tbl_structure.php:471 +#: tbl_structure.php:152 tbl_structure.php:469 msgid "Drop" 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:1655 +#: db_structure.php:541 db_structure.php:542 libraries/common.lib.php:1656 #: libraries/mult_submits.inc.php:39 libraries/tbl_links.inc.php:105 msgid "Empty" msgstr "خالي كردن" @@ -604,111 +600,111 @@ msgstr "خالي كردن" msgid "Table %s has been emptied" msgstr "جدول %s خالي شد" -#: db_structure.php:326 libraries/tbl_links.inc.php:133 +#: db_structure.php:325 libraries/tbl_links.inc.php:133 #, fuzzy, php-format msgid "View %s has been dropped" msgstr "ستون %s حذف گرديد" -#: db_structure.php:326 libraries/tbl_links.inc.php:133 +#: db_structure.php:325 libraries/tbl_links.inc.php:133 #, php-format msgid "Table %s has been dropped" msgstr "جدول %s حذف گرديد" -#: db_structure.php:333 +#: db_structure.php:332 msgid "Tracking is active." msgstr "" -#: db_structure.php:335 +#: db_structure.php:334 msgid "Tracking is not active." msgstr "" -#: db_structure.php:420 libraries/display_tbl.lib.php:1944 +#: db_structure.php:418 libraries/display_tbl.lib.php:1944 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation%" "s." msgstr "" -#: db_structure.php:434 db_structure.php:448 libraries/header.inc.php:126 +#: db_structure.php:432 db_structure.php:446 libraries/header.inc.php:130 #: libraries/tbl_info.inc.php:66 tbl_structure.php:185 test/theme.php:74 msgid "View" msgstr "نمایش" -#: db_structure.php:485 libraries/db_structure.lib.php:49 -#: libraries/server_links.inc.php:70 server_replication.php:33 +#: db_structure.php:483 libraries/db_structure.lib.php:49 +#: libraries/server_links.inc.php:71 server_replication.php:33 #: server_replication.php:164 server_status.php:369 msgid "Replication" msgstr "" -#: db_structure.php:489 +#: db_structure.php:487 msgid "Sum" msgstr "مجموع" -#: db_structure.php:496 libraries/StorageEngine.class.php:356 +#: db_structure.php:494 libraries/StorageEngine.class.php:356 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "" -#: db_structure.php:524 db_structure.php:541 db_structure.php:542 +#: db_structure.php:522 db_structure.php:539 db_structure.php:540 #: 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:1596 tbl_structure.php:455 -#: tbl_structure.php:464 +#: server_databases.php:351 server_privileges.php:1616 tbl_structure.php:453 +#: tbl_structure.php:462 msgid "With selected:" msgstr "موارد انتخاب‌شده :" -#: db_structure.php:527 libraries/display_tbl.lib.php:2076 -#: server_databases.php:348 server_privileges.php:569 -#: server_privileges.php:1599 tbl_structure.php:458 +#: db_structure.php:525 libraries/display_tbl.lib.php:2076 +#: server_databases.php:348 server_privileges.php:570 +#: server_privileges.php:1619 tbl_structure.php:456 msgid "Check All" msgstr "انتخاب همه" -#: db_structure.php:531 libraries/display_tbl.lib.php:2077 +#: db_structure.php:529 libraries/display_tbl.lib.php:2077 #: libraries/replication_gui.lib.php:33 server_databases.php:350 -#: server_privileges.php:572 server_privileges.php:1603 tbl_structure.php:462 +#: server_privileges.php:573 server_privileges.php:1623 tbl_structure.php:460 msgid "Uncheck All" msgstr "عدم انتخاب همه" -#: db_structure.php:536 +#: db_structure.php:534 msgid "Check tables having overhead" msgstr "" -#: db_structure.php:547 db_structure.php:548 db_structure.php:599 +#: db_structure.php:545 db_structure.php:546 db_structure.php:597 #: libraries/display_tbl.lib.php:2180 libraries/mult_submits.inc.php:28 -#: tbl_structure.php:492 tbl_structure.php:494 +#: tbl_structure.php:490 tbl_structure.php:492 msgid "Print view" msgstr "نماي چاپ" -#: db_structure.php:549 db_structure.php:550 libraries/mult_submits.inc.php:42 +#: db_structure.php:547 db_structure.php:548 libraries/mult_submits.inc.php:42 #: tbl_operations.php:581 msgid "Check table" msgstr "بررسي جدول" -#: db_structure.php:551 db_structure.php:552 libraries/mult_submits.inc.php:47 -#: tbl_operations.php:621 tbl_structure.php:709 tbl_structure.php:711 +#: db_structure.php:549 db_structure.php:550 libraries/mult_submits.inc.php:47 +#: tbl_operations.php:621 tbl_structure.php:707 tbl_structure.php:709 msgid "Optimize table" msgstr "بهينه‌سازي جدول" -#: db_structure.php:553 db_structure.php:554 libraries/mult_submits.inc.php:52 +#: db_structure.php:551 db_structure.php:552 libraries/mult_submits.inc.php:52 #: tbl_operations.php:611 msgid "Repair table" msgstr "مرمت جدول" -#: db_structure.php:555 db_structure.php:556 libraries/mult_submits.inc.php:57 +#: db_structure.php:553 db_structure.php:554 libraries/mult_submits.inc.php:57 #: tbl_operations.php:601 msgid "Analyze table" msgstr "تحليل جدول" -#: db_structure.php:557 db_structure.php:558 libraries/db_links.inc.php:71 +#: db_structure.php:555 db_structure.php:556 libraries/db_links.inc.php:71 #: 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:1380 +#: libraries/server_links.inc.php:85 libraries/tbl_links.inc.php:82 +#: pmd_pdf.php:84 pmd_pdf.php:109 server_privileges.php:1397 #: setup/frames/menu.inc.php:22 tbl_row_action.php:59 msgid "Export" msgstr "صدور" -#: db_structure.php:606 libraries/display_pdf_schema.lib.php:44 +#: db_structure.php:604 libraries/display_pdf_schema.lib.php:44 msgid "Data Dictionary" msgstr "فرهنگ داده‌ها" @@ -719,10 +715,10 @@ msgstr "" #: db_tracking.php:71 libraries/export/htmlword.php:86 #: libraries/export/latex.php:148 libraries/export/odt.php:113 #: libraries/export/sql.php:342 libraries/export/texytext.php:84 -#: libraries/export/xml.php:255 libraries/header.inc.php:106 +#: libraries/export/xml.php:255 libraries/header.inc.php:110 #: libraries/header_printview.inc.php:58 server_databases.php:169 -#: server_privileges.php:1660 server_privileges.php:1721 -#: server_privileges.php:1979 server_processlist.php:56 +#: server_privileges.php:1680 server_privileges.php:1741 +#: server_privileges.php:1999 server_processlist.php:56 #: server_synchronize.php:1179 server_synchronize.php:1183 #: tbl_tracking.php:591 test/theme.php:65 msgid "Database" @@ -743,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:1542 server_privileges.php:1725 -#: server_privileges.php:2073 tbl_structure.php:187 +#: server_privileges.php:1562 server_privileges.php:1745 +#: server_privileges.php:2094 tbl_structure.php:187 msgid "Action" msgstr "عمل" @@ -780,8 +776,8 @@ msgstr "فقط ساختار" msgid "Untracked tables" msgstr "" -#: db_tracking.php:172 db_tracking.php:174 tbl_structure.php:528 -#: tbl_structure.php:530 +#: db_tracking.php:172 db_tracking.php:174 tbl_structure.php:526 +#: tbl_structure.php:528 #, fuzzy msgid "Track table" msgstr "بررسي جدول" @@ -936,187 +932,230 @@ msgstr "نام ميزبان خالي است!" msgid "The user name is empty!" msgstr "نام كاربر خالي است!" -#: js/messages.php:44 server_privileges.php:1236 user_password.php:70 +#: js/messages.php:44 server_privileges.php:1241 user_password.php:70 msgid "The password is empty!" msgstr "اسم رمز خالي است!" -#: js/messages.php:45 server_privileges.php:1234 user_password.php:73 +#: js/messages.php:45 server_privileges.php:1239 user_password.php:73 msgid "The passwords aren't the same!" msgstr "اسم رمزها مانند هم نمي‌باشد!" -#: js/messages.php:49 pmd_general.php:342 pmd_general.php:379 +#: js/messages.php:46 +#, fuzzy +#| msgid "Add a new User" +msgid "Add a New User" +msgstr "افزودن يك كاربر جديد" + +#: js/messages.php:47 js/messages.php:54 pmd_general.php:342 +#: pmd_general.php:379 msgid "Cancel" msgstr "" -#: js/messages.php:52 pmd_save_pos.php:54 +#: js/messages.php:48 +#, fuzzy +msgid "Create User" +msgstr "نسخه سرور" + +#: js/messages.php:49 +#, fuzzy +#| msgid "Edit Privileges" +msgid "Reloading Privileges" +msgstr "ويرايش امتيازات" + +#: js/messages.php:50 +msgid "Removing Selected Users" +msgstr "" + +#: js/messages.php:57 +#, fuzzy +msgid "Loading" +msgstr "محلی" + +#: js/messages.php:58 +msgid "Processing Request" +msgstr "" + +#: js/messages.php:59 +msgid "Error in Processing Request" +msgstr "" + +#: js/messages.php:60 +msgid "Dropping Column" +msgstr "" + +#: js/messages.php:61 +msgid "Adding Primary Key" +msgstr "" + +#: js/messages.php:64 pmd_save_pos.php:54 msgid "Modifications have been saved" msgstr "اصلاحات ذخيره گرديد" -#: js/messages.php:53 pmd_relation_upd.php:49 +#: js/messages.php:65 pmd_relation_upd.php:49 msgid "Relation deleted" msgstr "" -#: js/messages.php:54 pmd_relation_new.php:64 +#: js/messages.php:66 pmd_relation_new.php:64 msgid "FOREIGN KEY relation added" msgstr "" -#: js/messages.php:55 pmd_relation_new.php:86 +#: js/messages.php:67 pmd_relation_new.php:86 msgid "Internal relation added" msgstr "" -#: js/messages.php:56 pmd_relation_new.php:63 pmd_relation_new.php:88 +#: js/messages.php:68 pmd_relation_new.php:63 pmd_relation_new.php:88 msgid "Error: Relation not added." msgstr "" -#: js/messages.php:57 pmd_relation_new.php:31 +#: js/messages.php:69 pmd_relation_new.php:31 msgid "Error: relation already exists." msgstr "" -#: js/messages.php:58 +#: js/messages.php:70 msgid "Error saving coordinates for Designer." msgstr "" -#: js/messages.php:59 libraries/relation.lib.php:107 +#: js/messages.php:71 libraries/relation.lib.php:107 #: libraries/relation.lib.php:119 msgid "General relation features" msgstr "" -#: js/messages.php:59 libraries/relation.lib.php:101 +#: js/messages.php:71 libraries/relation.lib.php:101 #: libraries/relation.lib.php:108 msgid "Disabled" msgstr "غيرفعال" -#: js/messages.php:60 +#: js/messages.php:72 msgid "Select referenced key" msgstr "" -#: js/messages.php:61 +#: js/messages.php:73 msgid "Select Foreign Key" msgstr "" -#: js/messages.php:62 +#: js/messages.php:74 msgid "Please select the primary key or a unique key" msgstr "" -#: js/messages.php:63 pmd_general.php:77 tbl_relation.php:548 +#: js/messages.php:75 pmd_general.php:77 tbl_relation.php:548 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" msgstr "ستون را براي نمايش انتخاب نماييد" #. l10n: Display text for calendar close link -#: js/messages.php:73 +#: js/messages.php:85 #, fuzzy #| msgid "None" msgid "Done" msgstr "خير" #. l10n: Display text for previous month link in calendar -#: js/messages.php:75 +#: js/messages.php:87 #, fuzzy #| msgid "Previous" msgid "Prev" msgstr "قبل" #. l10n: Display text for next month link in calendar -#: js/messages.php:77 libraries/common.lib.php:2353 -#: libraries/common.lib.php:2356 libraries/display_tbl.lib.php:338 +#: js/messages.php:89 libraries/common.lib.php:2357 +#: libraries/common.lib.php:2360 libraries/display_tbl.lib.php:338 #: server_binlog.php:205 server_binlog.php:207 tbl_printview.php:424 -#: tbl_structure.php:801 +#: tbl_structure.php:799 msgid "Next" msgstr "بعد" #. l10n: Display text for current month link in calendar -#: js/messages.php:79 +#: js/messages.php:91 #, fuzzy #| msgid "Total" msgid "Today" msgstr "جمع كل" -#: js/messages.php:82 +#: js/messages.php:94 #, fuzzy #| msgid "Binary" msgid "January" msgstr "دودويي" -#: js/messages.php:83 +#: js/messages.php:95 msgid "February" msgstr "" -#: js/messages.php:84 +#: js/messages.php:96 #, fuzzy #| msgid "Mar" msgid "March" msgstr "مارس" -#: js/messages.php:85 +#: js/messages.php:97 #, fuzzy #| msgid "Apr" msgid "April" msgstr "آوريل" -#: js/messages.php:86 +#: js/messages.php:98 msgid "May" msgstr "مي" -#: js/messages.php:87 +#: js/messages.php:99 #, fuzzy #| msgid "Jun" msgid "June" msgstr "ژوئن" -#: js/messages.php:88 +#: js/messages.php:100 #, fuzzy #| msgid "Jul" msgid "July" msgstr "جولاي" -#: js/messages.php:89 +#: js/messages.php:101 #, fuzzy #| msgid "Aug" msgid "August" msgstr "آگوست" -#: js/messages.php:90 +#: js/messages.php:102 msgid "September" msgstr "" -#: js/messages.php:91 +#: js/messages.php:103 #, fuzzy #| msgid "Oct" msgid "October" msgstr "اكتبر" -#: js/messages.php:92 +#: js/messages.php:104 msgid "November" msgstr "" -#: js/messages.php:93 +#: js/messages.php:105 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:97 libraries/common.lib.php:1557 +#: js/messages.php:109 libraries/common.lib.php:1557 msgid "Jan" msgstr "ژانويه" #. l10n: Short month name -#: js/messages.php:99 libraries/common.lib.php:1559 +#: js/messages.php:111 libraries/common.lib.php:1559 msgid "Feb" msgstr "فوريه" #. l10n: Short month name -#: js/messages.php:101 libraries/common.lib.php:1561 +#: js/messages.php:113 libraries/common.lib.php:1561 msgid "Mar" msgstr "مارس" #. l10n: Short month name -#: js/messages.php:103 libraries/common.lib.php:1563 +#: js/messages.php:115 libraries/common.lib.php:1563 msgid "Apr" msgstr "آوريل" #. l10n: Short month name -#: js/messages.php:105 libraries/common.lib.php:1565 +#: js/messages.php:117 libraries/common.lib.php:1565 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1124,174 +1163,174 @@ msgid "May" msgstr "مي" #. l10n: Short month name -#: js/messages.php:107 libraries/common.lib.php:1567 +#: js/messages.php:119 libraries/common.lib.php:1567 msgid "Jun" msgstr "ژوئن" #. l10n: Short month name -#: js/messages.php:109 libraries/common.lib.php:1569 +#: js/messages.php:121 libraries/common.lib.php:1569 msgid "Jul" msgstr "جولاي" #. l10n: Short month name -#: js/messages.php:111 libraries/common.lib.php:1571 +#: js/messages.php:123 libraries/common.lib.php:1571 msgid "Aug" msgstr "آگوست" #. l10n: Short month name -#: js/messages.php:113 libraries/common.lib.php:1573 +#: js/messages.php:125 libraries/common.lib.php:1573 msgid "Sep" msgstr "سپتامبر" #. l10n: Short month name -#: js/messages.php:115 libraries/common.lib.php:1575 +#: js/messages.php:127 libraries/common.lib.php:1575 msgid "Oct" msgstr "اكتبر" #. l10n: Short month name -#: js/messages.php:117 libraries/common.lib.php:1577 +#: js/messages.php:129 libraries/common.lib.php:1577 msgid "Nov" msgstr "نوامبر" #. l10n: Short month name -#: js/messages.php:119 libraries/common.lib.php:1579 +#: js/messages.php:131 libraries/common.lib.php:1579 msgid "Dec" msgstr "دسامبر" -#: js/messages.php:122 +#: js/messages.php:134 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "يكشنبه" -#: js/messages.php:123 +#: js/messages.php:135 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "دوشنبه" -#: js/messages.php:124 +#: js/messages.php:136 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "سه‌شنبه" -#: js/messages.php:125 +#: js/messages.php:137 msgid "Wednesday" msgstr "چهارشنبه" -#: js/messages.php:126 +#: js/messages.php:138 msgid "Thursday" msgstr "" -#: js/messages.php:127 +#: js/messages.php:139 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "جمعه" -#: js/messages.php:128 +#: js/messages.php:140 msgid "Saturday" msgstr "شنبه" #. l10n: Short week day name -#: js/messages.php:132 libraries/common.lib.php:1582 +#: js/messages.php:144 libraries/common.lib.php:1582 msgid "Sun" msgstr "يكشنبه" #. l10n: Short week day name -#: js/messages.php:134 libraries/common.lib.php:1584 +#: js/messages.php:146 libraries/common.lib.php:1584 msgid "Mon" msgstr "دوشنبه" #. l10n: Short week day name -#: js/messages.php:136 libraries/common.lib.php:1586 +#: js/messages.php:148 libraries/common.lib.php:1586 msgid "Tue" msgstr "سه‌شنبه" #. l10n: Short week day name -#: js/messages.php:138 libraries/common.lib.php:1588 +#: js/messages.php:150 libraries/common.lib.php:1588 msgid "Wed" msgstr "چهارشنبه" #. l10n: Short week day name -#: js/messages.php:140 libraries/common.lib.php:1590 +#: js/messages.php:152 libraries/common.lib.php:1590 msgid "Thu" msgstr "پنج‌شنبه" #. l10n: Short week day name -#: js/messages.php:142 libraries/common.lib.php:1592 +#: js/messages.php:154 libraries/common.lib.php:1592 msgid "Fri" msgstr "جمعه" #. l10n: Short week day name -#: js/messages.php:144 libraries/common.lib.php:1594 +#: js/messages.php:156 libraries/common.lib.php:1594 msgid "Sat" msgstr "شنبه" #. l10n: Minimal week day name -#: js/messages.php:148 +#: js/messages.php:160 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "يكشنبه" #. l10n: Minimal week day name -#: js/messages.php:150 +#: js/messages.php:162 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "دوشنبه" #. l10n: Minimal week day name -#: js/messages.php:152 +#: js/messages.php:164 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "سه‌شنبه" #. l10n: Minimal week day name -#: js/messages.php:154 +#: js/messages.php:166 #, fuzzy #| msgid "Wed" msgid "We" msgstr "چهارشنبه" #. l10n: Minimal week day name -#: js/messages.php:156 +#: js/messages.php:168 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "پنج‌شنبه" #. l10n: Minimal week day name -#: js/messages.php:158 +#: js/messages.php:170 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "جمعه" #. l10n: Minimal week day name -#: js/messages.php:160 +#: js/messages.php:172 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "شنبه" #. l10n: Column header for week of the year in calendar -#: js/messages.php:162 +#: js/messages.php:174 msgid "Wk" msgstr "هفته" -#: js/messages.php:164 +#: js/messages.php:176 msgid "Hour" msgstr "ساعت" -#: js/messages.php:165 +#: js/messages.php:177 msgid "Minute" msgstr "دقیقه" -#: js/messages.php:166 +#: js/messages.php:178 msgid "Second" msgstr " ثانیه" @@ -1346,7 +1385,7 @@ msgstr "فهرست‌ها" #: libraries/Index.class.php:444 libraries/mult_submits.inc.php:103 #: libraries/tbl_properties.inc.php:519 tbl_structure.php:33 -#: tbl_structure.php:155 tbl_structure.php:159 tbl_structure.php:474 +#: tbl_structure.php:155 tbl_structure.php:159 tbl_structure.php:472 #: tbl_tracking.php:322 msgid "Unique" msgstr "يكتا" @@ -1388,8 +1427,8 @@ msgid "" "removed." msgstr "" -#: libraries/List_Database.class.php:431 libraries/server_links.inc.php:41 -#: server_databases.php:88 server_privileges.php:1660 +#: libraries/List_Database.class.php:431 libraries/server_links.inc.php:42 +#: server_databases.php:88 server_privileges.php:1680 #: setup/lib/messages.inc.php:110 test/theme.php:93 msgid "Databases" msgstr "پايگاههاي داده" @@ -1552,7 +1591,7 @@ msgstr "اسم رمز:" msgid "Server Choice" msgstr "" -#: libraries/auth/cookie.auth.lib.php:320 libraries/header.inc.php:59 +#: libraries/auth/cookie.auth.lib.php:320 libraries/header.inc.php:63 msgid "Cookies must be enabled past this point." msgstr "" @@ -1630,7 +1669,7 @@ msgid "" "necessary extensions appear to be loaded. Check your PHP configuration." msgstr "" -#: libraries/common.inc.php:583 +#: libraries/common.inc.php:587 msgid "" "phpMyAdmin was unable to read your configuration file!
This might " "happen if PHP finds a parse error in it or PHP cannot find the file.
اگر يك صفحه خالي دريافت كرديد ، همه چيز " "درست است." -#: libraries/common.inc.php:594 +#: libraries/common.inc.php:598 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "" -#: libraries/common.inc.php:599 +#: libraries/common.inc.php:603 msgid "" "The $cfg['PmaAbsoluteUri'] directive MUST be set in your " "configuration file!" msgstr "" -#: libraries/common.inc.php:629 +#: libraries/common.inc.php:633 #, php-format msgid "Invalid server index: %s" msgstr "" -#: libraries/common.inc.php:636 +#: libraries/common.inc.php:640 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" -#: libraries/common.inc.php:645 libraries/header.inc.php:96 +#: libraries/common.inc.php:649 libraries/header.inc.php:100 #: libraries/select_server.lib.php:41 libraries/select_server.lib.php:47 #: main.php:185 test/theme.php:57 msgid "Server" msgstr "سرور" -#: libraries/common.inc.php:823 +#: libraries/common.inc.php:827 msgid "Invalid authentication method set in configuration:" msgstr "" -#: libraries/common.inc.php:926 +#: libraries/common.inc.php:930 #, php-format msgid "You should upgrade to %s %s or later." msgstr "" @@ -1812,45 +1851,45 @@ msgstr "." msgid "%B %d, %Y at %I:%M %p" msgstr "%d %B %Y ساعت %I:%M %p" -#: libraries/common.lib.php:1907 +#: libraries/common.lib.php:1911 #, 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:2322 libraries/common.lib.php:2325 +#: libraries/common.lib.php:2326 libraries/common.lib.php:2329 #: libraries/display_tbl.lib.php:290 server_status.php:719 msgid "Begin" msgstr "شروع" -#: libraries/common.lib.php:2323 libraries/common.lib.php:2326 +#: libraries/common.lib.php:2327 libraries/common.lib.php:2330 #: libraries/display_tbl.lib.php:291 server_binlog.php:168 #: server_binlog.php:170 msgid "Previous" msgstr "قبل" -#: libraries/common.lib.php:2354 libraries/common.lib.php:2357 +#: libraries/common.lib.php:2358 libraries/common.lib.php:2361 #: libraries/display_tbl.lib.php:353 msgid "End" msgstr "انتها" -#: libraries/common.lib.php:2430 +#: libraries/common.lib.php:2434 #, php-format msgid "Jump to database "%s"." msgstr "" -#: libraries/common.lib.php:2450 +#: libraries/common.lib.php:2454 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" -#: libraries/common.lib.php:2830 libraries/common.lib.php:2837 +#: libraries/common.lib.php:2834 libraries/common.lib.php:2841 #: libraries/db_links.inc.php:68 libraries/export/sql.php:25 -#: libraries/import/sql.php:18 libraries/server_links.inc.php:45 +#: libraries/import/sql.php:18 libraries/server_links.inc.php:46 #: libraries/tbl_links.inc.php:60 querywindow.php:99 test/theme.php:97 msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2839 libraries/db_links.inc.php:104 +#: libraries/common.lib.php:2843 libraries/db_links.inc.php:104 #: libraries/tbl_links.inc.php:95 libraries/tbl_links.inc.php:117 #: view_operations.php:89 msgid "Operations" @@ -1897,16 +1936,16 @@ msgstr "پرس و جو" msgid "Designer" msgstr "" -#: libraries/db_links.inc.php:98 libraries/server_links.inc.php:88 +#: libraries/db_links.inc.php:98 libraries/server_links.inc.php:89 #: libraries/tbl_links.inc.php:91 pmd_pdf.php:84 pmd_pdf.php:110 #: setup/frames/menu.inc.php:21 #, fuzzy msgid "Import" msgstr "صدور" -#: libraries/db_links.inc.php:111 libraries/server_links.inc.php:66 -#: server_privileges.php:111 server_privileges.php:1722 -#: server_privileges.php:2071 test/theme.php:117 +#: libraries/db_links.inc.php:111 libraries/server_links.inc.php:67 +#: server_privileges.php:112 server_privileges.php:1742 +#: server_privileges.php:2092 test/theme.php:117 msgid "Privileges" msgstr "امتيازات" @@ -1925,7 +1964,7 @@ msgid "" msgstr "" #: libraries/db_structure.lib.php:69 server_databases.php:142 -#: tbl_printview.php:336 tbl_structure.php:682 +#: tbl_printview.php:336 tbl_structure.php:680 msgid "Overhead" msgstr "" @@ -1942,7 +1981,7 @@ msgstr "" msgid "(or the local MySQL server's socket is not correctly configured)" msgstr "" -#: libraries/dbi/mysql.dbi.lib.php:362 tbl_structure.php:608 +#: libraries/dbi/mysql.dbi.lib.php:362 tbl_structure.php:606 msgid "Details..." msgstr "" @@ -1952,22 +1991,22 @@ msgid "Change password" msgstr "تغيير اسم رمز" #: libraries/display_change_password.lib.php:35 -#: libraries/replication_gui.lib.php:345 server_privileges.php:807 +#: libraries/replication_gui.lib.php:345 server_privileges.php:808 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:796 -#: server_privileges.php:800 server_privileges.php:811 -#: server_privileges.php:1538 server_synchronize.php:1175 +#: libraries/replication_gui.lib.php:349 server_privileges.php:797 +#: server_privileges.php:801 server_privileges.php:812 +#: server_privileges.php:1558 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:815 server_privileges.php:818 +#: server_privileges.php:816 server_privileges.php:819 msgid "Re-type" msgstr "تكرار" @@ -1980,12 +2019,12 @@ msgid "MySQL 4.0 compatible" msgstr "" #: libraries/display_change_password.lib.php:72 -#: libraries/replication_gui.lib.php:360 server_privileges.php:822 +#: libraries/replication_gui.lib.php:360 server_privileges.php:823 msgid "Generate Password" msgstr "" #: libraries/display_change_password.lib.php:75 -#: libraries/replication_gui.lib.php:363 server_privileges.php:825 +#: libraries/replication_gui.lib.php:363 server_privileges.php:826 #, fuzzy msgid "Generate" msgstr "توليد‌شده توسط" @@ -1999,8 +2038,8 @@ msgstr "ساخت پايگاه داده جديد" msgid "Create" msgstr "ساختن" -#: libraries/display_create_database.lib.php:40 server_privileges.php:113 -#: server_privileges.php:1427 server_replication.php:35 +#: libraries/display_create_database.lib.php:40 server_privileges.php:114 +#: server_privileges.php:1447 server_replication.php:35 #, fuzzy msgid "No Privileges" msgstr "امتيازات" @@ -2090,7 +2129,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:1875 server_processlist.php:75 +#: server_privileges.php:1895 server_processlist.php:75 msgid "None" msgstr "خير" @@ -2275,7 +2314,7 @@ msgstr "" #: libraries/import/docsql.php:34 libraries/import/ldi.php:47 #: libraries/import/ods.php:30 libraries/import/sql.php:20 #: libraries/import/xls.php:26 libraries/import/xlsx.php:26 -#: libraries/import/xml.php:25 tbl_select.php:267 tbl_structure.php:753 +#: libraries/import/xml.php:25 tbl_select.php:267 tbl_structure.php:751 #, fuzzy msgid "Options" msgstr "عمليات" @@ -2351,7 +2390,7 @@ msgstr "" #: libraries/display_tbl.lib.php:2089 libraries/mult_submits.inc.php:113 #: querywindow.php:125 querywindow.php:129 querywindow.php:132 -#: tbl_structure.php:25 tbl_structure.php:150 tbl_structure.php:470 +#: tbl_structure.php:25 tbl_structure.php:150 tbl_structure.php:468 msgid "Change" msgstr "تغيير" @@ -2419,7 +2458,7 @@ msgstr "" #: libraries/engines/innodb.lib.php:194 server_databases.php:137 #: server_databases.php:305 server_status.php:525 server_status.php:586 -#: server_status.php:607 tbl_printview.php:351 tbl_structure.php:696 +#: server_status.php:607 tbl_printview.php:351 tbl_structure.php:694 msgid "Total" msgstr "جمع كل" @@ -2664,7 +2703,7 @@ msgid "" msgstr "" #: libraries/export/codegen.php:37 setup/lib/messages.inc.php:88 -#: tbl_printview.php:376 tbl_structure.php:737 +#: tbl_printview.php:376 tbl_structure.php:735 msgid "Format" msgstr "قالب" @@ -2736,8 +2775,8 @@ 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:576 server_replication.php:316 tbl_printview.php:317 -#: tbl_structure.php:665 +#: server_privileges.php:577 server_replication.php:316 tbl_printview.php:317 +#: tbl_structure.php:663 msgid "Data" msgstr "داده" @@ -2787,9 +2826,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:731 -#: server_privileges.php:734 server_privileges.php:790 -#: server_privileges.php:1537 server_privileges.php:2069 +#: libraries/replication_gui.lib.php:329 server_privileges.php:732 +#: server_privileges.php:735 server_privileges.php:791 +#: server_privileges.php:1557 server_privileges.php:2090 #: server_processlist.php:55 server_synchronize.php:1159 msgid "Host" msgstr "ميزبان" @@ -2987,7 +3026,7 @@ msgstr "" msgid "Open new phpMyAdmin window" msgstr "" -#: libraries/header.inc.php:115 +#: libraries/header.inc.php:119 #, fuzzy msgid "New table" msgstr "No tables" @@ -3147,20 +3186,20 @@ 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 +#: tbl_structure.php:471 msgid "Primary" msgstr "اصلي" #: libraries/mult_submits.inc.php:98 libraries/tbl_properties.inc.php:116 #: libraries/tbl_properties.inc.php:525 tbl_printview.php:326 #: tbl_structure.php:31 tbl_structure.php:154 tbl_structure.php:158 -#: tbl_structure.php:475 tbl_structure.php:673 +#: tbl_structure.php:473 tbl_structure.php:671 msgid "Index" msgstr "فهرست" #: libraries/mult_submits.inc.php:108 libraries/tbl_properties.inc.php:531 #: tbl_structure.php:35 tbl_structure.php:156 tbl_structure.php:160 -#: tbl_structure.php:478 +#: tbl_structure.php:476 msgid "Fulltext" msgstr "كاملا متن" @@ -3464,8 +3503,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:711 -#: server_privileges.php:714 server_privileges.php:721 +#: libraries/replication_gui.lib.php:259 server_privileges.php:712 +#: server_privileges.php:715 server_privileges.php:722 #: server_synchronize.php:1171 msgid "User name" msgstr "نام كاربر" @@ -3490,7 +3529,7 @@ msgstr "متغییر" #: 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 +#: tbl_structure.php:727 msgid "Value" msgstr "مقدار" @@ -3509,34 +3548,34 @@ msgstr "" msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:254 server_privileges.php:716 +#: libraries/replication_gui.lib.php:254 server_privileges.php:717 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:717 -#: server_privileges.php:784 server_privileges.php:808 -#: server_privileges.php:1928 server_privileges.php:1958 +#: libraries/replication_gui.lib.php:346 server_privileges.php:718 +#: server_privileges.php:785 server_privileges.php:809 +#: server_privileges.php:1948 server_privileges.php:1978 msgid "Use text field" msgstr "" -#: libraries/replication_gui.lib.php:302 server_privileges.php:764 +#: libraries/replication_gui.lib.php:302 server_privileges.php:765 msgid "Any host" msgstr "همه ميزبانها" -#: libraries/replication_gui.lib.php:306 server_privileges.php:768 +#: libraries/replication_gui.lib.php:306 server_privileges.php:769 msgid "Local" msgstr "محلی" -#: libraries/replication_gui.lib.php:312 server_privileges.php:773 +#: libraries/replication_gui.lib.php:312 server_privileges.php:774 msgid "This Host" msgstr "" -#: libraries/replication_gui.lib.php:318 server_privileges.php:779 +#: libraries/replication_gui.lib.php:318 server_privileges.php:780 msgid "Use Host Table" msgstr "" -#: libraries/replication_gui.lib.php:331 server_privileges.php:792 +#: libraries/replication_gui.lib.php:331 server_privileges.php:793 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -3571,31 +3610,31 @@ msgstr "زبانِ ناشناس : %1$s." msgid "Servers" msgstr "سرور" -#: libraries/server_links.inc.php:53 server_engines.php:112 +#: libraries/server_links.inc.php:54 server_engines.php:112 #: server_engines.php:116 server_status.php:415 test/theme.php:105 #, fuzzy msgid "Variables" msgstr "متغییر" -#: libraries/server_links.inc.php:57 test/theme.php:109 +#: libraries/server_links.inc.php:58 test/theme.php:109 msgid "Charsets" msgstr "" -#: libraries/server_links.inc.php:61 test/theme.php:113 +#: libraries/server_links.inc.php:62 test/theme.php:113 msgid "Engines" msgstr "موتور" -#: libraries/server_links.inc.php:76 server_binlog.php:110 +#: libraries/server_links.inc.php:77 server_binlog.php:110 #: server_status.php:364 test/theme.php:121 #, fuzzy msgid "Binary log" msgstr "دودويي" -#: libraries/server_links.inc.php:80 +#: libraries/server_links.inc.php:81 msgid "Processes" msgstr "" -#: libraries/server_links.inc.php:92 server_synchronize.php:1092 +#: libraries/server_links.inc.php:93 server_synchronize.php:1092 #: server_synchronize.php:1100 msgid "Synchronize" msgstr "" @@ -3829,12 +3868,12 @@ msgstr "" msgid "Save" msgstr "ذخيره" -#: libraries/tbl_properties.inc.php:780 tbl_structure.php:542 +#: libraries/tbl_properties.inc.php:780 tbl_structure.php:540 #, fuzzy, php-format msgid "Add %s column(s)" msgstr "افزودن ستون جديد" -#: libraries/tbl_properties.inc.php:784 tbl_structure.php:536 +#: libraries/tbl_properties.inc.php:784 tbl_structure.php:534 #, fuzzy #| msgid "You have to choose at least one column to display" msgid "You have to add at least one column." @@ -3969,8 +4008,8 @@ msgstr "Reset" msgid "Protocol version" msgstr "" -#: main.php:189 server_privileges.php:1389 server_privileges.php:1536 -#: server_privileges.php:1650 server_privileges.php:2068 +#: main.php:189 server_privileges.php:1406 server_privileges.php:1556 +#: server_privileges.php:1670 server_privileges.php:2089 #: server_processlist.php:54 msgid "User" msgstr "كاربر" @@ -4401,326 +4440,326 @@ msgstr "" msgid "View dump (schema) of databases" msgstr "نمايش الگوي پايگاه داده" -#: server_privileges.php:24 server_privileges.php:266 +#: server_privileges.php:25 server_privileges.php:267 msgid "Includes all privileges except GRANT." msgstr "" -#: server_privileges.php:25 server_privileges.php:192 -#: server_privileges.php:515 +#: server_privileges.php:26 server_privileges.php:193 +#: server_privileges.php:516 msgid "Allows altering the structure of existing tables." msgstr "" -#: server_privileges.php:26 server_privileges.php:208 -#: server_privileges.php:521 +#: server_privileges.php:27 server_privileges.php:209 +#: server_privileges.php:522 msgid "Allows altering and dropping stored routines." msgstr "" -#: server_privileges.php:27 server_privileges.php:184 -#: server_privileges.php:514 +#: server_privileges.php:28 server_privileges.php:185 +#: server_privileges.php:515 msgid "Allows creating new databases and tables." msgstr "" -#: server_privileges.php:28 server_privileges.php:207 -#: server_privileges.php:520 +#: server_privileges.php:29 server_privileges.php:208 +#: server_privileges.php:521 msgid "Allows creating stored routines." msgstr "" -#: server_privileges.php:29 server_privileges.php:514 +#: server_privileges.php:30 server_privileges.php:515 msgid "Allows creating new tables." msgstr "" -#: server_privileges.php:30 server_privileges.php:195 -#: server_privileges.php:518 +#: server_privileges.php:31 server_privileges.php:196 +#: server_privileges.php:519 msgid "Allows creating temporary tables." msgstr "" -#: server_privileges.php:31 server_privileges.php:209 -#: server_privileges.php:554 +#: server_privileges.php:32 server_privileges.php:210 +#: server_privileges.php:555 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 +#: server_privileges.php:33 server_privileges.php:200 +#: server_privileges.php:204 server_privileges.php:527 +#: server_privileges.php:531 msgid "Allows creating new views." msgstr "" -#: server_privileges.php:33 server_privileges.php:183 -#: server_privileges.php:506 +#: server_privileges.php:34 server_privileges.php:184 +#: server_privileges.php:507 msgid "Allows deleting data." msgstr "" -#: server_privileges.php:34 server_privileges.php:185 -#: server_privileges.php:517 +#: server_privileges.php:35 server_privileges.php:186 +#: server_privileges.php:518 msgid "Allows dropping databases and tables." msgstr "" -#: server_privileges.php:35 server_privileges.php:517 +#: server_privileges.php:36 server_privileges.php:518 msgid "Allows dropping tables." msgstr "" -#: server_privileges.php:36 server_privileges.php:200 -#: server_privileges.php:534 +#: server_privileges.php:37 server_privileges.php:201 +#: server_privileges.php:535 msgid "Allows to set up events for the event scheduler" msgstr "" -#: server_privileges.php:37 server_privileges.php:210 -#: server_privileges.php:522 +#: server_privileges.php:38 server_privileges.php:211 +#: server_privileges.php:523 msgid "Allows executing stored routines." msgstr "" -#: server_privileges.php:38 server_privileges.php:189 -#: server_privileges.php:509 +#: server_privileges.php:39 server_privileges.php:190 +#: server_privileges.php:510 msgid "Allows importing data from and exporting data into files." msgstr "" -#: server_privileges.php:39 server_privileges.php:540 +#: server_privileges.php:40 server_privileges.php:541 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" -#: server_privileges.php:40 server_privileges.php:191 -#: server_privileges.php:516 +#: server_privileges.php:41 server_privileges.php:192 +#: server_privileges.php:517 msgid "Allows creating and dropping indexes." msgstr "" -#: server_privileges.php:41 server_privileges.php:181 -#: server_privileges.php:442 server_privileges.php:504 +#: server_privileges.php:42 server_privileges.php:182 +#: server_privileges.php:443 server_privileges.php:505 msgid "Allows inserting and replacing data." msgstr "" -#: server_privileges.php:42 server_privileges.php:196 -#: server_privileges.php:549 +#: server_privileges.php:43 server_privileges.php:197 +#: server_privileges.php:550 msgid "Allows locking tables for the current thread." msgstr "" -#: server_privileges.php:43 server_privileges.php:646 -#: server_privileges.php:648 +#: server_privileges.php:44 server_privileges.php:647 +#: server_privileges.php:649 msgid "Limits the number of new connections the user may open per hour." msgstr "" -#: server_privileges.php:44 server_privileges.php:634 -#: server_privileges.php:636 +#: server_privileges.php:45 server_privileges.php:635 +#: server_privileges.php:637 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" -#: server_privileges.php:45 server_privileges.php:640 -#: server_privileges.php:642 +#: server_privileges.php:46 server_privileges.php:641 +#: server_privileges.php:643 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." msgstr "" -#: server_privileges.php:46 server_privileges.php:652 -#: server_privileges.php:654 +#: server_privileges.php:47 server_privileges.php:653 +#: server_privileges.php:655 msgid "Limits the number of simultaneous connections the user may have." msgstr "" -#: server_privileges.php:47 server_privileges.php:188 -#: server_privileges.php:544 +#: server_privileges.php:48 server_privileges.php:189 +#: server_privileges.php:545 msgid "Allows viewing processes of all users" msgstr "" -#: server_privileges.php:48 server_privileges.php:190 -#: server_privileges.php:448 server_privileges.php:550 +#: server_privileges.php:49 server_privileges.php:191 +#: server_privileges.php:449 server_privileges.php:551 msgid "Has no effect in this MySQL version." msgstr "" -#: server_privileges.php:49 server_privileges.php:186 -#: server_privileges.php:545 +#: server_privileges.php:50 server_privileges.php:187 +#: server_privileges.php:546 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" -#: server_privileges.php:50 server_privileges.php:198 -#: server_privileges.php:552 +#: server_privileges.php:51 server_privileges.php:199 +#: server_privileges.php:553 msgid "Allows the user to ask where the slaves / masters are." msgstr "" -#: server_privileges.php:51 server_privileges.php:197 -#: server_privileges.php:553 +#: server_privileges.php:52 server_privileges.php:198 +#: server_privileges.php:554 msgid "Needed for the replication slaves." msgstr "" -#: server_privileges.php:52 server_privileges.php:180 -#: server_privileges.php:439 server_privileges.php:503 +#: server_privileges.php:53 server_privileges.php:181 +#: server_privileges.php:440 server_privileges.php:504 msgid "Allows reading data." msgstr "" -#: server_privileges.php:53 server_privileges.php:193 -#: server_privileges.php:547 +#: server_privileges.php:54 server_privileges.php:194 +#: server_privileges.php:548 msgid "Gives access to the complete list of databases." msgstr "" -#: server_privileges.php:54 server_privileges.php:204 -#: server_privileges.php:206 server_privileges.php:519 +#: server_privileges.php:55 server_privileges.php:205 +#: server_privileges.php:207 server_privileges.php:520 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "" -#: server_privileges.php:55 server_privileges.php:187 -#: server_privileges.php:546 +#: server_privileges.php:56 server_privileges.php:188 +#: server_privileges.php:547 msgid "Allows shutting down the server." msgstr "" -#: server_privileges.php:56 server_privileges.php:194 -#: server_privileges.php:543 +#: server_privileges.php:57 server_privileges.php:195 +#: server_privileges.php:544 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " "killing threads of other users." msgstr "" -#: server_privileges.php:57 server_privileges.php:201 -#: server_privileges.php:535 +#: server_privileges.php:58 server_privileges.php:202 +#: server_privileges.php:536 msgid "Allows creating and dropping triggers" msgstr "" -#: server_privileges.php:58 server_privileges.php:182 -#: server_privileges.php:445 server_privileges.php:505 +#: server_privileges.php:59 server_privileges.php:183 +#: server_privileges.php:446 server_privileges.php:506 msgid "Allows changing data." msgstr "" -#: server_privileges.php:59 server_privileges.php:260 +#: server_privileges.php:60 server_privileges.php:261 #, fuzzy msgid "No privileges." msgstr "امتيازات" -#: server_privileges.php:302 server_privileges.php:303 +#: server_privileges.php:303 server_privileges.php:304 #, fuzzy #| msgid "None" msgctxt "None privileges" msgid "None" msgstr "خير" -#: server_privileges.php:431 server_privileges.php:566 -#: server_privileges.php:1718 server_privileges.php:1724 +#: server_privileges.php:432 server_privileges.php:567 +#: server_privileges.php:1738 server_privileges.php:1744 msgid "Table-specific privileges" msgstr "" -#: server_privileges.php:432 server_privileges.php:574 -#: server_privileges.php:1540 +#: server_privileges.php:433 server_privileges.php:575 +#: server_privileges.php:1560 msgid " Note: MySQL privilege names are expressed in English " msgstr " نكته : نام امتيازات MySQL به زبان انگليسي بيان مي‌شود ." -#: server_privileges.php:563 server_privileges.php:1539 +#: server_privileges.php:564 server_privileges.php:1559 msgid "Global privileges" msgstr "" -#: server_privileges.php:565 server_privileges.php:1718 +#: server_privileges.php:566 server_privileges.php:1738 msgid "Database-specific privileges" msgstr "" -#: server_privileges.php:610 +#: server_privileges.php:611 msgid "Administration" msgstr "مدیریت" -#: server_privileges.php:630 +#: server_privileges.php:631 msgid "Resource limits" msgstr "" -#: server_privileges.php:631 +#: server_privileges.php:632 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "" -#: server_privileges.php:708 +#: server_privileges.php:709 msgid "Login Information" msgstr "اطلاعات ورود" -#: server_privileges.php:802 +#: server_privileges.php:803 msgid "Do not change the password" msgstr "عدم تغيير اسم رمز" -#: server_privileges.php:843 server_privileges.php:2205 +#: server_privileges.php:844 server_privileges.php:2226 #, fuzzy #| msgid "No user(s) found." msgid "No user found." msgstr "هيچ كاربري وچود ندارد." -#: server_privileges.php:887 +#: server_privileges.php:888 #, php-format msgid "The user %s already exists!" msgstr "" -#: server_privileges.php:970 +#: server_privileges.php:971 msgid "You have added a new user." msgstr "شما يك كاربر جديد اضافه كرديد." -#: server_privileges.php:1191 +#: server_privileges.php:1196 #, php-format msgid "You have updated the privileges for %s." msgstr "امتيازات %s به هنگام گرديد." -#: server_privileges.php:1215 +#: server_privileges.php:1220 #, php-format msgid "You have revoked the privileges for %s" msgstr "شما امتيازات %s را ابطال كرديد" -#: server_privileges.php:1251 +#: server_privileges.php:1256 #, php-format msgid "The password for %s was changed successfully." msgstr "" -#: server_privileges.php:1271 +#: server_privileges.php:1276 #, php-format msgid "Deleting %s" msgstr "در حال پاک کردن %s" -#: server_privileges.php:1282 +#: server_privileges.php:1287 msgid "No users selected for deleting!" msgstr "" -#: server_privileges.php:1285 +#: server_privileges.php:1290 msgid "Reloading the privileges" msgstr "" -#: server_privileges.php:1300 +#: server_privileges.php:1305 msgid "The selected users have been deleted successfully." msgstr "" -#: server_privileges.php:1335 +#: server_privileges.php:1344 msgid "The privileges were reloaded successfully." msgstr "" -#: server_privileges.php:1363 server_privileges.php:1649 +#: server_privileges.php:1380 server_privileges.php:1669 msgid "Edit Privileges" msgstr "ويرايش امتيازات" -#: server_privileges.php:1372 +#: server_privileges.php:1389 msgid "Revoke" msgstr "ابطال" -#: server_privileges.php:1404 +#: server_privileges.php:1424 msgid "User overview" msgstr "" -#: server_privileges.php:1541 server_privileges.php:1723 -#: server_privileges.php:2072 +#: server_privileges.php:1561 server_privileges.php:1743 +#: server_privileges.php:2093 #, fuzzy msgid "Grant" msgstr "چاپ" -#: server_privileges.php:1560 server_privileges.php:2162 +#: server_privileges.php:1580 server_privileges.php:2183 msgid "Any" msgstr "همه" -#: server_privileges.php:1609 server_privileges.php:1633 -#: server_privileges.php:2027 server_privileges.php:2216 +#: server_privileges.php:1629 server_privileges.php:1653 +#: server_privileges.php:2048 server_privileges.php:2237 msgid "Add a new User" msgstr "افزودن يك كاربر جديد" -#: server_privileges.php:1614 +#: server_privileges.php:1634 msgid "Remove selected users" msgstr "" -#: server_privileges.php:1617 +#: server_privileges.php:1637 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 +#: server_privileges.php:1638 server_privileges.php:1639 +#: server_privileges.php:1640 msgid "Drop the databases that have the same names as the users." msgstr "" -#: server_privileges.php:1636 +#: server_privileges.php:1656 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -4729,91 +4768,91 @@ msgid "" "sreload the privileges%s before you continue." msgstr "" -#: server_privileges.php:1684 +#: server_privileges.php:1704 msgid "The selected user was not found in the privilege table." msgstr "" -#: server_privileges.php:1724 +#: server_privileges.php:1744 msgid "Column-specific privileges" msgstr "" -#: server_privileges.php:1925 +#: server_privileges.php:1945 msgid "Add privileges on the following database" msgstr "" -#: server_privileges.php:1943 +#: server_privileges.php:1963 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" -#: server_privileges.php:1946 +#: server_privileges.php:1966 msgid "Add privileges on the following table" msgstr "" -#: server_privileges.php:2003 +#: server_privileges.php:2023 msgid "Change Login Information / Copy User" msgstr "" -#: server_privileges.php:2006 +#: server_privileges.php:2026 msgid "Create a new user with the same privileges and ..." msgstr "" -#: server_privileges.php:2008 +#: server_privileges.php:2028 msgid "... keep the old one." msgstr "" -#: server_privileges.php:2009 +#: server_privileges.php:2029 msgid " ... delete the old one from the user tables." msgstr "" -#: server_privileges.php:2010 +#: server_privileges.php:2030 msgid "" " ... revoke all active privileges from the old one and delete it afterwards." msgstr "" -#: server_privileges.php:2011 +#: server_privileges.php:2031 msgid "" " ... delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" -#: server_privileges.php:2033 +#: server_privileges.php:2054 msgid "Database for user" msgstr "" -#: server_privileges.php:2037 +#: server_privileges.php:2058 #, fuzzy #| msgid "None" msgctxt "Create none database for user" msgid "None" msgstr "خير" -#: server_privileges.php:2038 +#: server_privileges.php:2059 msgid "Create database with same name and grant all privileges" msgstr "" -#: server_privileges.php:2039 +#: server_privileges.php:2060 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "" -#: server_privileges.php:2042 +#: server_privileges.php:2063 #, php-format msgid "Grant all privileges on database "%s"" msgstr "" -#: server_privileges.php:2065 +#: server_privileges.php:2086 #, php-format msgid "Users having access to "%s"" msgstr "" -#: server_privileges.php:2173 +#: server_privileges.php:2194 msgid "global" msgstr "" -#: server_privileges.php:2175 +#: server_privileges.php:2196 msgid "database-specific" msgstr "" -#: server_privileges.php:2177 +#: server_privileges.php:2198 msgid "wildcard" msgstr "" @@ -7480,6 +7519,10 @@ msgstr "" msgid "Show insert query" msgstr "" +#: tbl_change.php:1143 +msgid "and then" +msgstr "و سپس" + #: tbl_change.php:1147 msgid "Go back to previous page" msgstr "برو به صفحه قبل" @@ -7559,7 +7602,7 @@ msgstr "(فقط و فقط بايد \"PRIMARY\" نام يك كليد اص msgid "Add to index  %s column(s)" msgstr "ساخت يك فهرست در %s ستون" -#: tbl_indexes.php:256 tbl_structure.php:589 tbl_structure.php:600 +#: tbl_indexes.php:256 tbl_structure.php:587 tbl_structure.php:598 msgid "Column count has to be larger than zero." msgstr "" @@ -7675,39 +7718,39 @@ msgstr "" msgid "Show tables" msgstr "نمايش جدولها" -#: tbl_printview.php:310 tbl_structure.php:656 +#: tbl_printview.php:310 tbl_structure.php:654 msgid "Space usage" msgstr "فضاي استفاده‌شده" -#: tbl_printview.php:314 tbl_structure.php:660 +#: tbl_printview.php:314 tbl_structure.php:658 msgid "Usage" msgstr "استفاده" -#: tbl_printview.php:341 tbl_structure.php:687 +#: tbl_printview.php:341 tbl_structure.php:685 msgid "Effective" msgstr "موثر" -#: tbl_printview.php:366 tbl_structure.php:725 +#: tbl_printview.php:366 tbl_structure.php:723 msgid "Row Statistics" msgstr "آمار سطرها" -#: tbl_printview.php:369 tbl_structure.php:728 +#: tbl_printview.php:369 tbl_structure.php:726 msgid "Statements" msgstr "شرج" -#: tbl_printview.php:380 tbl_structure.php:740 +#: tbl_printview.php:380 tbl_structure.php:738 msgid "static" msgstr "" -#: tbl_printview.php:382 tbl_structure.php:742 +#: tbl_printview.php:382 tbl_structure.php:740 msgid "dynamic" msgstr "پويا" -#: tbl_printview.php:404 tbl_structure.php:785 +#: tbl_printview.php:404 tbl_structure.php:783 msgid "Row length" msgstr "طول سطر" -#: tbl_printview.php:414 tbl_structure.php:793 +#: tbl_printview.php:414 tbl_structure.php:791 msgid " Row size " msgstr " اندازه سطر " @@ -7779,49 +7822,49 @@ msgstr "خير" msgid "Column %s has been dropped" msgstr "جدول %s حذف گرديد" -#: tbl_structure.php:385 +#: tbl_structure.php:384 #, php-format msgid "A primary key has been added on %s" msgstr "يك كليد اصلي در %s اضافه شد" -#: tbl_structure.php:400 tbl_structure.php:414 tbl_structure.php:428 +#: tbl_structure.php:398 tbl_structure.php:412 tbl_structure.php:426 #, php-format msgid "An index has been added on %s" msgstr "يك فهرست در %s اضافه گرديد." -#: tbl_structure.php:506 tbl_structure.php:508 +#: tbl_structure.php:504 tbl_structure.php:506 msgid "Relation view" msgstr "" -#: tbl_structure.php:515 tbl_structure.php:517 +#: tbl_structure.php:513 tbl_structure.php:515 msgid "Propose table structure" msgstr "پيشنهاد ساختار جدول" -#: tbl_structure.php:540 +#: tbl_structure.php:538 #, fuzzy msgid "Add column" msgstr "افزودن ستون جديد" -#: tbl_structure.php:554 +#: tbl_structure.php:552 msgid "At End of Table" msgstr "در انتهاي جدول" -#: tbl_structure.php:555 +#: tbl_structure.php:553 msgid "At Beginning of Table" msgstr "در ابتداي جدول" -#: tbl_structure.php:556 +#: tbl_structure.php:554 #, php-format msgid "After %s" msgstr "بعد از %s" -#: tbl_structure.php:594 +#: tbl_structure.php:592 #, fuzzy, php-format #| msgid "Create an index on %s columns" msgid "Create an index on  %s columns" msgstr "ساخت يك فهرست در %s ستون" -#: tbl_structure.php:756 +#: tbl_structure.php:754 msgid "partitioned" msgstr "" diff --git a/po/fi.po b/po/fi.po index 79347660d..dcc231104 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-13 09:03-0400\n" +"POT-Creation-Date: 2010-06-22 00:55+0530\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:1514 +#: libraries/display_tbl.lib.php:417 server_privileges.php:1534 msgid "Show all" msgstr "Näytä kaikki" -#: browse_foreigners.php:82 libraries/common.lib.php:2313 +#: browse_foreigners.php:82 libraries/common.lib.php:2317 #: 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,18 +38,18 @@ 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:2831 -#: libraries/common.lib.php:2838 libraries/db_links.inc.php:75 +#: db_structure.php:106 libraries/common.lib.php:2835 +#: libraries/common.lib.php:2842 libraries/db_links.inc.php:75 #: libraries/tbl_links.inc.php:63 msgid "Search" msgstr "Etsi" -#: browse_foreigners.php:153 db_operations.php:385 db_operations.php:429 -#: db_operations.php:499 db_operations.php:609 db_search.php:362 -#: db_structure.php:567 js/messages.php:48 libraries/Config.class.php:1046 +#: browse_foreigners.php:153 db_operations.php:394 db_operations.php:438 +#: db_operations.php:508 db_operations.php:618 db_search.php:362 +#: db_structure.php:565 js/messages.php:53 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:1335 libraries/common.lib.php:2288 +#: libraries/common.lib.php:1335 libraries/common.lib.php:2292 #: 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,15 +60,15 @@ 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:664 server_privileges.php:1624 -#: server_privileges.php:1971 server_privileges.php:2018 -#: server_privileges.php:2057 server_replication.php:235 +#: server_privileges.php:665 server_privileges.php:1644 +#: server_privileges.php:1991 server_privileges.php:2038 +#: server_privileges.php:2078 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 #: tbl_operations.php:302 tbl_operations.php:499 tbl_operations.php:561 -#: tbl_operations.php:681 tbl_select.php:327 tbl_structure.php:562 -#: tbl_structure.php:597 tbl_tracking.php:395 tbl_tracking.php:512 +#: tbl_operations.php:681 tbl_select.php:327 tbl_structure.php:560 +#: tbl_structure.php:595 tbl_tracking.php:395 tbl_tracking.php:512 #: view_create.php:182 view_operations.php:101 msgid "Go" msgstr "Siirry" @@ -94,7 +94,7 @@ msgstr "Käytä tätä arvoa" msgid "Database %1$s has been created." msgstr "Tietokanta %1$s on luotu." -#: db_datadict.php:49 db_operations.php:378 +#: db_datadict.php:49 db_operations.php:387 msgid "Database comment: " msgstr "Tietokannan kommentti: " @@ -121,10 +121,10 @@ 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:2070 +#: pdf_schema.php:1263 pdf_schema.php:1284 server_privileges.php:2091 #: 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 +#: tbl_structure.php:657 tbl_tracking.php:274 tbl_tracking.php:321 msgid "Type" msgstr "Tyyppi" @@ -137,7 +137,7 @@ msgstr "Tyyppi" msgid "Null" msgstr "Tyhjä" -#: db_datadict.php:178 db_structure.php:501 libraries/export/htmlword.php:247 +#: db_datadict.php:178 db_structure.php:499 libraries/export/htmlword.php:247 #: libraries/export/latex.php:360 libraries/export/odt.php:303 #: libraries/export/texytext.php:236 libraries/tbl_properties.inc.php:106 #: pdf_schema.php:1266 pdf_schema.php:1287 tbl_printview.php:146 @@ -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: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 +#: pdf_schema.php:1344 server_privileges.php:1588 server_privileges.php:1599 +#: server_privileges.php:1909 server_privileges.php:1914 +#: server_privileges.php:2208 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:1565 -#: server_privileges.php:1579 server_privileges.php:1889 -#: server_privileges.php:1892 server_privileges.php:2187 sql.php:193 +#: server_databases.php:64 server_privileges.php:1585 +#: server_privileges.php:1599 server_privileges.php:1909 +#: server_privileges.php:1912 server_privileges.php:2208 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" @@ -210,125 +210,121 @@ msgstr "Valitse kaikki" msgid "Unselect All" msgstr "Poista valinta kaikista" -#: db_operations.php:38 tbl_create.php:54 +#: db_operations.php:43 tbl_create.php:54 msgid "The database name is empty!" msgstr "Tietokannan nimi on tyhjä!" -#: db_operations.php:236 +#: db_operations.php:241 #, php-format msgid "Database %s has been renamed to %s" msgstr "Tietokannan %s nimi on nyt %s" -#: db_operations.php:240 +#: db_operations.php:245 #, php-format msgid "Database %s has been copied to %s" msgstr "Tietokanta %s on kopioitu tietokantaan %s" -#: db_operations.php:412 +#: db_operations.php:421 msgid "Rename database to" msgstr "Muuta tietokannan nimi" -#: db_operations.php:417 server_processlist.php:57 +#: db_operations.php:426 server_processlist.php:57 msgid "Command" msgstr "Komento" -#: db_operations.php:429 tbl_change.php:1143 -msgid "and then" -msgstr "ja sen jälkeen" - -#: db_operations.php:455 +#: db_operations.php:464 msgid "Copy database to" msgstr "Luo tietokannasta toinen tietokanta nimellä" -#: db_operations.php:462 tbl_operations.php:528 tbl_tracking.php:388 +#: db_operations.php:471 tbl_operations.php:528 tbl_tracking.php:388 msgid "Structure only" msgstr "Vain rakenne" -#: db_operations.php:463 tbl_operations.php:529 tbl_tracking.php:390 +#: db_operations.php:472 tbl_operations.php:529 tbl_tracking.php:390 msgid "Structure and data" msgstr "Rakenne ja tiedot" -#: db_operations.php:464 tbl_operations.php:530 tbl_tracking.php:389 +#: db_operations.php:473 tbl_operations.php:530 tbl_tracking.php:389 msgid "Data only" msgstr "Vain tiedot" -#: db_operations.php:472 +#: db_operations.php:481 msgid "CREATE DATABASE before copying" msgstr "Suorita CREATE DATABASE ennen kopioimista" -#: db_operations.php:475 libraries/export/sql.php:52 +#: db_operations.php:484 libraries/export/sql.php:52 #: libraries/export/sql.php:74 libraries/export/sql.php:76 #: libraries/export/sql.php:82 tbl_operations.php:536 #, php-format msgid "Add %s" msgstr "Lisää %s" -#: db_operations.php:479 libraries/export/sql.php:78 tbl_operations.php:299 +#: db_operations.php:488 libraries/export/sql.php:78 tbl_operations.php:299 #: tbl_operations.php:538 msgid "Add AUTO_INCREMENT value" msgstr "Lisää AUTO_INCREMENT-arvo" -#: db_operations.php:483 tbl_operations.php:545 +#: db_operations.php:492 tbl_operations.php:545 msgid "Add constraints" msgstr "Lisää rajoitteet" -#: db_operations.php:496 +#: db_operations.php:505 msgid "Switch to copied database" msgstr "Siirry kopioituun tietokantaan" -#: db_operations.php:537 +#: db_operations.php:546 msgid "BLOB Repository" msgstr "BLOB-tietokanta" -#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1352 -#: libraries/server_links.inc.php:49 server_processlist.php:59 +#: db_operations.php:549 db_tracking.php:76 libraries/common.lib.php:1352 +#: libraries/server_links.inc.php:50 server_processlist.php:59 #: tbl_tracking.php:596 test/theme.php:101 msgid "Status" msgstr "Tila" -#: db_operations.php:548 +#: db_operations.php:557 #, fuzzy #| msgid "Enabled" msgctxt "BLOB repository" msgid "Enabled" msgstr "Päällä" -#: db_operations.php:552 +#: db_operations.php:561 msgid "Disable" msgstr "Poista käytöstä" -#: db_operations.php:562 +#: db_operations.php:571 msgid "Damaged" msgstr "Vioittunut" -#: db_operations.php:566 +#: db_operations.php:575 #, fuzzy #| msgid "Repair" msgctxt "BLOB repository" msgid "Repair" msgstr "Korjaa" -#: db_operations.php:574 +#: db_operations.php:583 #, fuzzy #| msgid "Disabled" msgctxt "BLOB repository" msgid "Disabled" msgstr "Pois päältä" -#: db_operations.php:578 +#: db_operations.php:587 msgid "Enable" msgstr "Ota käyttöön" -#: db_operations.php:602 libraries/Index.class.php:448 +#: db_operations.php:611 libraries/Index.class.php:448 #: libraries/db_structure.lib.php:62 libraries/mysql_charsets.lib.php:107 #: libraries/tbl_properties.inc.php:107 libraries/tbl_properties.inc.php:730 #: server_collations.php:54 server_collations.php:66 server_databases.php:111 #: tbl_operations.php:363 tbl_select.php:137 tbl_structure.php:179 -#: tbl_structure.php:767 tbl_tracking.php:275 tbl_tracking.php:326 +#: tbl_structure.php:765 tbl_tracking.php:275 tbl_tracking.php:326 msgid "Collation" msgstr "Aakkosjärjestys" -#: db_operations.php:615 main.php:316 pdf_schema.php:34 +#: db_operations.php:624 main.php:316 pdf_schema.php:34 #, php-format msgid "" "The additional features for working with linked tables have been " @@ -337,14 +333,14 @@ msgstr "" "Linkitettyihin tauluihin liittyvät lisäominaisuudet eivät ole käytössä. " "Katso %slisätietoja%s." -#: db_operations.php:648 +#: db_operations.php:657 msgid "Edit PDF Pages" 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:1665 -#: server_privileges.php:1721 server_privileges.php:1985 +#: libraries/header.inc.php:130 pdf_pages.php:424 server_privileges.php:1685 +#: server_privileges.php:1741 server_privileges.php:2005 #: server_synchronize.php:423 server_synchronize.php:866 tbl_tracking.php:592 #: test/theme.php:75 msgid "Table" @@ -353,7 +349,7 @@ msgstr "Taulu" #: db_printview.php:105 libraries/db_structure.lib.php:56 #: libraries/header_printview.inc.php:63 libraries/import.lib.php:146 #: navigation.php:638 navigation.php:660 server_databases.php:122 -#: tbl_printview.php:394 tbl_structure.php:365 tbl_structure.php:777 +#: tbl_printview.php:394 tbl_structure.php:365 tbl_structure.php:775 msgid "Rows" msgstr "Kpl rivejä" @@ -361,30 +357,30 @@ msgstr "Kpl rivejä" msgid "Size" msgstr "Koko" -#: db_printview.php:162 db_structure.php:457 libraries/export/sql.php:559 +#: db_printview.php:162 db_structure.php:455 libraries/export/sql.php:559 #: libraries/export/sql.php:899 msgid "in use" msgstr "käytössä" #: db_printview.php:187 libraries/db_info.inc.php:88 #: libraries/export/sql.php:514 pdf_schema.php:1241 tbl_printview.php:434 -#: tbl_structure.php:809 +#: tbl_structure.php:807 msgid "Creation" msgstr "Luotu" #: db_printview.php:196 libraries/db_info.inc.php:93 #: libraries/export/sql.php:519 pdf_schema.php:1246 tbl_printview.php:444 -#: tbl_structure.php:817 +#: tbl_structure.php:815 msgid "Last update" msgstr "Viimeksi päivitetty" #: db_printview.php:205 libraries/db_info.inc.php:98 #: libraries/export/sql.php:524 pdf_schema.php:1251 tbl_printview.php:454 -#: tbl_structure.php:825 +#: tbl_structure.php:823 msgid "Last check" msgstr "Viimeksi tarkistettu" -#: db_printview.php:222 db_structure.php:480 +#: db_printview.php:222 db_structure.php:478 #, fuzzy, php-format #| msgid "%s table(s)" msgid "%s table" @@ -445,7 +441,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:297 tbl_change.php:1031 tbl_indexes.php:250 +#: server_privileges.php:298 tbl_change.php:1031 tbl_indexes.php:250 #: tbl_select.php:288 msgid "Or" msgstr "Tai" @@ -518,9 +514,9 @@ 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:2833 +#: db_structure.php:105 libraries/common.lib.php:2837 #: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50 -#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:467 +#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:465 msgid "Browse" msgstr "Selaa" @@ -565,36 +561,36 @@ 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:2832 libraries/sql_query_form.lib.php:334 +#: libraries/common.lib.php:2836 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:2829 libraries/common.lib.php:2836 +#: libraries/common.lib.php:2833 libraries/common.lib.php:2840 #: 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:1106 #: libraries/tbl_links.inc.php:56 pmd_general.php:134 -#: server_privileges.php:593 server_replication.php:315 tbl_tracking.php:269 +#: server_privileges.php:594 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:1656 +#: db_structure.php:543 db_structure.php:544 db_tracking.php:91 +#: libraries/Index.class.php:483 libraries/common.lib.php:1657 #: 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 -#: tbl_structure.php:152 tbl_structure.php:471 +#: tbl_structure.php:152 tbl_structure.php:469 msgid "Drop" 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:1655 +#: db_structure.php:541 db_structure.php:542 libraries/common.lib.php:1656 #: libraries/mult_submits.inc.php:39 libraries/tbl_links.inc.php:105 msgid "Empty" msgstr "Tyhjennä" @@ -604,25 +600,25 @@ msgstr "Tyhjennä" msgid "Table %s has been emptied" msgstr "Taulu %s on tyhjennetty" -#: db_structure.php:326 libraries/tbl_links.inc.php:133 +#: db_structure.php:325 libraries/tbl_links.inc.php:133 #, php-format msgid "View %s has been dropped" msgstr "Näkymä %s on poistettu" -#: db_structure.php:326 libraries/tbl_links.inc.php:133 +#: db_structure.php:325 libraries/tbl_links.inc.php:133 #, php-format msgid "Table %s has been dropped" msgstr "Taulu %s on poistettu" -#: db_structure.php:333 +#: db_structure.php:332 msgid "Tracking is active." msgstr "Seuranta on käytössä." -#: db_structure.php:335 +#: db_structure.php:334 msgid "Tracking is not active." msgstr "Seuranta ei ole käytössä." -#: db_structure.php:420 libraries/display_tbl.lib.php:1944 +#: db_structure.php:418 libraries/display_tbl.lib.php:1944 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation%" @@ -631,86 +627,86 @@ msgstr "" "Tässä näkymässä on vähintään tämän luvun verran rivejä. Katso lisätietoja %" "sohjeista%s." -#: db_structure.php:434 db_structure.php:448 libraries/header.inc.php:126 +#: db_structure.php:432 db_structure.php:446 libraries/header.inc.php:130 #: libraries/tbl_info.inc.php:66 tbl_structure.php:185 test/theme.php:74 msgid "View" msgstr "Näkymä" -#: db_structure.php:485 libraries/db_structure.lib.php:49 -#: libraries/server_links.inc.php:70 server_replication.php:33 +#: db_structure.php:483 libraries/db_structure.lib.php:49 +#: libraries/server_links.inc.php:71 server_replication.php:33 #: server_replication.php:164 server_status.php:369 msgid "Replication" msgstr "Replikaatio" -#: db_structure.php:489 +#: db_structure.php:487 msgid "Sum" msgstr "Summa" -#: db_structure.php:496 libraries/StorageEngine.class.php:356 +#: db_structure.php:494 libraries/StorageEngine.class.php:356 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "%s on tämän MySQL-palvelimen oletustallennusmoottori." -#: db_structure.php:524 db_structure.php:541 db_structure.php:542 +#: db_structure.php:522 db_structure.php:539 db_structure.php:540 #: 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:1596 tbl_structure.php:455 -#: tbl_structure.php:464 +#: server_databases.php:351 server_privileges.php:1616 tbl_structure.php:453 +#: tbl_structure.php:462 msgid "With selected:" msgstr "Valitut:" -#: db_structure.php:527 libraries/display_tbl.lib.php:2076 -#: server_databases.php:348 server_privileges.php:569 -#: server_privileges.php:1599 tbl_structure.php:458 +#: db_structure.php:525 libraries/display_tbl.lib.php:2076 +#: server_databases.php:348 server_privileges.php:570 +#: server_privileges.php:1619 tbl_structure.php:456 msgid "Check All" msgstr "Valitse kaikki" -#: db_structure.php:531 libraries/display_tbl.lib.php:2077 +#: db_structure.php:529 libraries/display_tbl.lib.php:2077 #: libraries/replication_gui.lib.php:33 server_databases.php:350 -#: server_privileges.php:572 server_privileges.php:1603 tbl_structure.php:462 +#: server_privileges.php:573 server_privileges.php:1623 tbl_structure.php:460 msgid "Uncheck All" msgstr "Poista valinta kaikista" -#: db_structure.php:536 +#: db_structure.php:534 msgid "Check tables having overhead" msgstr "Valitse taulut, joissa on ylijäämää" -#: db_structure.php:547 db_structure.php:548 db_structure.php:599 +#: db_structure.php:545 db_structure.php:546 db_structure.php:597 #: libraries/display_tbl.lib.php:2180 libraries/mult_submits.inc.php:28 -#: tbl_structure.php:492 tbl_structure.php:494 +#: tbl_structure.php:490 tbl_structure.php:492 msgid "Print view" msgstr "Tulostusversio" -#: db_structure.php:549 db_structure.php:550 libraries/mult_submits.inc.php:42 +#: db_structure.php:547 db_structure.php:548 libraries/mult_submits.inc.php:42 #: tbl_operations.php:581 msgid "Check table" msgstr "Tarkista taulu" -#: db_structure.php:551 db_structure.php:552 libraries/mult_submits.inc.php:47 -#: tbl_operations.php:621 tbl_structure.php:709 tbl_structure.php:711 +#: db_structure.php:549 db_structure.php:550 libraries/mult_submits.inc.php:47 +#: tbl_operations.php:621 tbl_structure.php:707 tbl_structure.php:709 msgid "Optimize table" msgstr "Optimoi taulu" -#: db_structure.php:553 db_structure.php:554 libraries/mult_submits.inc.php:52 +#: db_structure.php:551 db_structure.php:552 libraries/mult_submits.inc.php:52 #: tbl_operations.php:611 msgid "Repair table" msgstr "Korjaa taulu" -#: db_structure.php:555 db_structure.php:556 libraries/mult_submits.inc.php:57 +#: db_structure.php:553 db_structure.php:554 libraries/mult_submits.inc.php:57 #: tbl_operations.php:601 msgid "Analyze table" msgstr "Analysoi taulu" -#: db_structure.php:557 db_structure.php:558 libraries/db_links.inc.php:71 +#: db_structure.php:555 db_structure.php:556 libraries/db_links.inc.php:71 #: 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:1380 +#: libraries/server_links.inc.php:85 libraries/tbl_links.inc.php:82 +#: pmd_pdf.php:84 pmd_pdf.php:109 server_privileges.php:1397 #: setup/frames/menu.inc.php:22 tbl_row_action.php:59 msgid "Export" msgstr "Vienti" -#: db_structure.php:606 libraries/display_pdf_schema.lib.php:44 +#: db_structure.php:604 libraries/display_pdf_schema.lib.php:44 msgid "Data Dictionary" msgstr "Tietosanasto" @@ -721,10 +717,10 @@ msgstr "Seurattavat taulut" #: db_tracking.php:71 libraries/export/htmlword.php:86 #: libraries/export/latex.php:148 libraries/export/odt.php:113 #: libraries/export/sql.php:342 libraries/export/texytext.php:84 -#: libraries/export/xml.php:255 libraries/header.inc.php:106 +#: libraries/export/xml.php:255 libraries/header.inc.php:110 #: libraries/header_printview.inc.php:58 server_databases.php:169 -#: server_privileges.php:1660 server_privileges.php:1721 -#: server_privileges.php:1979 server_processlist.php:56 +#: server_privileges.php:1680 server_privileges.php:1741 +#: server_privileges.php:1999 server_processlist.php:56 #: server_synchronize.php:1179 server_synchronize.php:1183 #: tbl_tracking.php:591 test/theme.php:65 msgid "Database" @@ -744,8 +740,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:1542 server_privileges.php:1725 -#: server_privileges.php:2073 tbl_structure.php:187 +#: server_privileges.php:1562 server_privileges.php:1745 +#: server_privileges.php:2094 tbl_structure.php:187 msgid "Action" msgstr "Toiminnot" @@ -779,8 +775,8 @@ msgstr "Rakenteen kuvaus" msgid "Untracked tables" msgstr "Seuraamattomat taulut" -#: db_tracking.php:172 db_tracking.php:174 tbl_structure.php:528 -#: tbl_structure.php:530 +#: db_tracking.php:172 db_tracking.php:174 tbl_structure.php:526 +#: tbl_structure.php:528 msgid "Track table" msgstr "Seuraa taulua" @@ -947,187 +943,236 @@ msgstr "Palvelimen nimi puuttuu!" msgid "The user name is empty!" msgstr "Käyttäjän nimi puuttuu!" -#: js/messages.php:44 server_privileges.php:1236 user_password.php:70 +#: js/messages.php:44 server_privileges.php:1241 user_password.php:70 msgid "The password is empty!" msgstr "Salasana puuttuu!" -#: js/messages.php:45 server_privileges.php:1234 user_password.php:73 +#: js/messages.php:45 server_privileges.php:1239 user_password.php:73 msgid "The passwords aren't the same!" msgstr "Salasanat eivät ole samat!" -#: js/messages.php:49 pmd_general.php:342 pmd_general.php:379 +#: js/messages.php:46 +#, fuzzy +#| msgid "Add a new User" +msgid "Add a New User" +msgstr "Lisää uusi käyttäjä" + +#: js/messages.php:47 js/messages.php:54 pmd_general.php:342 +#: pmd_general.php:379 msgid "Cancel" msgstr "Peruuta" -#: js/messages.php:52 pmd_save_pos.php:54 +#: js/messages.php:48 +#, fuzzy +#| msgid "Create version" +msgid "Create User" +msgstr "Luo versio" + +#: js/messages.php:49 +#, fuzzy +#| msgid "Reload privileges" +msgid "Reloading Privileges" +msgstr "Lataa käyttöoikeudet uudelleen" + +#: js/messages.php:50 +#, fuzzy +#| msgid "Remove selected users" +msgid "Removing Selected Users" +msgstr "Poista valitut käyttäjät" + +#: js/messages.php:57 +#, fuzzy +#| msgid "Load" +msgid "Loading" +msgstr "Lataa asetukset" + +#: js/messages.php:58 +#, fuzzy +#| msgid "Processes" +msgid "Processing Request" +msgstr "Prosessit" + +#: js/messages.php:59 +msgid "Error in Processing Request" +msgstr "" + +#: js/messages.php:60 +msgid "Dropping Column" +msgstr "" + +#: js/messages.php:61 +msgid "Adding Primary Key" +msgstr "" + +#: js/messages.php:64 pmd_save_pos.php:54 msgid "Modifications have been saved" msgstr "Muutokset tallennettu" -#: js/messages.php:53 pmd_relation_upd.php:49 +#: js/messages.php:65 pmd_relation_upd.php:49 msgid "Relation deleted" msgstr "Relaatio poistettu" -#: js/messages.php:54 pmd_relation_new.php:64 +#: js/messages.php:66 pmd_relation_new.php:64 msgid "FOREIGN KEY relation added" msgstr "FOREIGN KEY -relaatio lisätty" -#: js/messages.php:55 pmd_relation_new.php:86 +#: js/messages.php:67 pmd_relation_new.php:86 msgid "Internal relation added" msgstr "Sisäinen relaatio luotu" -#: js/messages.php:56 pmd_relation_new.php:63 pmd_relation_new.php:88 +#: js/messages.php:68 pmd_relation_new.php:63 pmd_relation_new.php:88 msgid "Error: Relation not added." msgstr "Virhe: Relaatiota ei luotu." -#: js/messages.php:57 pmd_relation_new.php:31 +#: js/messages.php:69 pmd_relation_new.php:31 msgid "Error: relation already exists." msgstr "Virhe: relaatio on jo olemassa." -#: js/messages.php:58 +#: js/messages.php:70 msgid "Error saving coordinates for Designer." msgstr "Virhe tallennettaessa koordinaatteja Suunnittelijaan." -#: js/messages.php:59 libraries/relation.lib.php:107 +#: js/messages.php:71 libraries/relation.lib.php:107 #: libraries/relation.lib.php:119 msgid "General relation features" msgstr "Yleiset relaatio-ominaisuudet" -#: js/messages.php:59 libraries/relation.lib.php:101 +#: js/messages.php:71 libraries/relation.lib.php:101 #: libraries/relation.lib.php:108 msgid "Disabled" msgstr "Pois päältä" -#: js/messages.php:60 +#: js/messages.php:72 msgid "Select referenced key" msgstr "Valitse viitattava avain" -#: js/messages.php:61 +#: js/messages.php:73 msgid "Select Foreign Key" msgstr "Valitse liiteavain" -#: js/messages.php:62 +#: js/messages.php:74 msgid "Please select the primary key or a unique key" msgstr "Valitse perusavain tai uniikki avain" -#: js/messages.php:63 pmd_general.php:77 tbl_relation.php:548 +#: js/messages.php:75 pmd_general.php:77 tbl_relation.php:548 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" msgstr "Valitse näytettävä sarake" #. l10n: Display text for calendar close link -#: js/messages.php:73 +#: js/messages.php:85 #, fuzzy #| msgid "Donate" msgid "Done" msgstr "Lahjoita" #. l10n: Display text for previous month link in calendar -#: js/messages.php:75 +#: js/messages.php:87 #, fuzzy #| msgid "Previous" msgid "Prev" msgstr "Edellinen" #. l10n: Display text for next month link in calendar -#: js/messages.php:77 libraries/common.lib.php:2353 -#: libraries/common.lib.php:2356 libraries/display_tbl.lib.php:338 +#: js/messages.php:89 libraries/common.lib.php:2357 +#: libraries/common.lib.php:2360 libraries/display_tbl.lib.php:338 #: server_binlog.php:205 server_binlog.php:207 tbl_printview.php:424 -#: tbl_structure.php:801 +#: tbl_structure.php:799 msgid "Next" msgstr "Seuraava" #. l10n: Display text for current month link in calendar -#: js/messages.php:79 +#: js/messages.php:91 #, fuzzy #| msgid "Total" msgid "Today" msgstr "Yhteensä" -#: js/messages.php:82 +#: js/messages.php:94 #, fuzzy #| msgid "Binary" msgid "January" msgstr "Binääritietoa" -#: js/messages.php:83 +#: js/messages.php:95 msgid "February" msgstr "" -#: js/messages.php:84 +#: js/messages.php:96 #, fuzzy #| msgid "Mar" msgid "March" msgstr "Maalis" -#: js/messages.php:85 +#: js/messages.php:97 #, fuzzy #| msgid "Apr" msgid "April" msgstr "Huhti" -#: js/messages.php:86 +#: js/messages.php:98 msgid "May" msgstr "Touko" -#: js/messages.php:87 +#: js/messages.php:99 #, fuzzy #| msgid "Jun" msgid "June" msgstr "Kesä" -#: js/messages.php:88 +#: js/messages.php:100 #, fuzzy #| msgid "Jul" msgid "July" msgstr "Heinä" -#: js/messages.php:89 +#: js/messages.php:101 #, fuzzy #| msgid "Aug" msgid "August" msgstr "Elo" -#: js/messages.php:90 +#: js/messages.php:102 msgid "September" msgstr "" -#: js/messages.php:91 +#: js/messages.php:103 #, fuzzy #| msgid "Oct" msgid "October" msgstr "Loka" -#: js/messages.php:92 +#: js/messages.php:104 msgid "November" msgstr "" -#: js/messages.php:93 +#: js/messages.php:105 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:97 libraries/common.lib.php:1557 +#: js/messages.php:109 libraries/common.lib.php:1557 msgid "Jan" msgstr "Tammi" #. l10n: Short month name -#: js/messages.php:99 libraries/common.lib.php:1559 +#: js/messages.php:111 libraries/common.lib.php:1559 msgid "Feb" msgstr "Helmi" #. l10n: Short month name -#: js/messages.php:101 libraries/common.lib.php:1561 +#: js/messages.php:113 libraries/common.lib.php:1561 msgid "Mar" msgstr "Maalis" #. l10n: Short month name -#: js/messages.php:103 libraries/common.lib.php:1563 +#: js/messages.php:115 libraries/common.lib.php:1563 msgid "Apr" msgstr "Huhti" #. l10n: Short month name -#: js/messages.php:105 libraries/common.lib.php:1565 +#: js/messages.php:117 libraries/common.lib.php:1565 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1135,178 +1180,178 @@ msgid "May" msgstr "Touko" #. l10n: Short month name -#: js/messages.php:107 libraries/common.lib.php:1567 +#: js/messages.php:119 libraries/common.lib.php:1567 msgid "Jun" msgstr "Kesä" #. l10n: Short month name -#: js/messages.php:109 libraries/common.lib.php:1569 +#: js/messages.php:121 libraries/common.lib.php:1569 msgid "Jul" msgstr "Heinä" #. l10n: Short month name -#: js/messages.php:111 libraries/common.lib.php:1571 +#: js/messages.php:123 libraries/common.lib.php:1571 msgid "Aug" msgstr "Elo" #. l10n: Short month name -#: js/messages.php:113 libraries/common.lib.php:1573 +#: js/messages.php:125 libraries/common.lib.php:1573 msgid "Sep" msgstr "Syys" #. l10n: Short month name -#: js/messages.php:115 libraries/common.lib.php:1575 +#: js/messages.php:127 libraries/common.lib.php:1575 msgid "Oct" msgstr "Loka" #. l10n: Short month name -#: js/messages.php:117 libraries/common.lib.php:1577 +#: js/messages.php:129 libraries/common.lib.php:1577 msgid "Nov" msgstr "Marras" #. l10n: Short month name -#: js/messages.php:119 libraries/common.lib.php:1579 +#: js/messages.php:131 libraries/common.lib.php:1579 msgid "Dec" msgstr "Joulu" -#: js/messages.php:122 +#: js/messages.php:134 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "Su" -#: js/messages.php:123 +#: js/messages.php:135 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "Ma" -#: js/messages.php:124 +#: js/messages.php:136 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "Ti" -#: js/messages.php:125 +#: js/messages.php:137 msgid "Wednesday" msgstr "" -#: js/messages.php:126 +#: js/messages.php:138 msgid "Thursday" msgstr "" -#: js/messages.php:127 +#: js/messages.php:139 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "Pe" -#: js/messages.php:128 +#: js/messages.php:140 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:132 libraries/common.lib.php:1582 +#: js/messages.php:144 libraries/common.lib.php:1582 msgid "Sun" msgstr "Su" #. l10n: Short week day name -#: js/messages.php:134 libraries/common.lib.php:1584 +#: js/messages.php:146 libraries/common.lib.php:1584 msgid "Mon" msgstr "Ma" #. l10n: Short week day name -#: js/messages.php:136 libraries/common.lib.php:1586 +#: js/messages.php:148 libraries/common.lib.php:1586 msgid "Tue" msgstr "Ti" #. l10n: Short week day name -#: js/messages.php:138 libraries/common.lib.php:1588 +#: js/messages.php:150 libraries/common.lib.php:1588 msgid "Wed" msgstr "Ke" #. l10n: Short week day name -#: js/messages.php:140 libraries/common.lib.php:1590 +#: js/messages.php:152 libraries/common.lib.php:1590 msgid "Thu" msgstr "To" #. l10n: Short week day name -#: js/messages.php:142 libraries/common.lib.php:1592 +#: js/messages.php:154 libraries/common.lib.php:1592 msgid "Fri" msgstr "Pe" #. l10n: Short week day name -#: js/messages.php:144 libraries/common.lib.php:1594 +#: js/messages.php:156 libraries/common.lib.php:1594 msgid "Sat" msgstr "La" #. l10n: Minimal week day name -#: js/messages.php:148 +#: js/messages.php:160 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "Su" #. l10n: Minimal week day name -#: js/messages.php:150 +#: js/messages.php:162 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "Ma" #. l10n: Minimal week day name -#: js/messages.php:152 +#: js/messages.php:164 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "Ti" #. l10n: Minimal week day name -#: js/messages.php:154 +#: js/messages.php:166 #, fuzzy #| msgid "Wed" msgid "We" msgstr "Ke" #. l10n: Minimal week day name -#: js/messages.php:156 +#: js/messages.php:168 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "To" #. l10n: Minimal week day name -#: js/messages.php:158 +#: js/messages.php:170 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "Pe" #. l10n: Minimal week day name -#: js/messages.php:160 +#: js/messages.php:172 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "La" #. l10n: Column header for week of the year in calendar -#: js/messages.php:162 +#: js/messages.php:174 #, fuzzy #| msgid "Wiki" msgid "Wk" msgstr "Wiki" -#: js/messages.php:164 +#: js/messages.php:176 msgid "Hour" msgstr "" -#: js/messages.php:165 +#: js/messages.php:177 #, fuzzy #| msgid "in use" msgid "Minute" msgstr "käytössä" -#: js/messages.php:166 +#: js/messages.php:178 #, fuzzy #| msgid "per second" msgid "Second" @@ -1367,7 +1412,7 @@ msgstr "Indeksit" #: libraries/Index.class.php:444 libraries/mult_submits.inc.php:103 #: libraries/tbl_properties.inc.php:519 tbl_structure.php:33 -#: tbl_structure.php:155 tbl_structure.php:159 tbl_structure.php:474 +#: tbl_structure.php:155 tbl_structure.php:159 tbl_structure.php:472 #: tbl_tracking.php:322 msgid "Unique" msgstr "Uniikki" @@ -1410,8 +1455,8 @@ msgstr "" "Indeksit %1$s ja %2$s ovat ehkä samoja, ja niistä jompikumpi kannattanee " "poistaa." -#: libraries/List_Database.class.php:431 libraries/server_links.inc.php:41 -#: server_databases.php:88 server_privileges.php:1660 +#: libraries/List_Database.class.php:431 libraries/server_links.inc.php:42 +#: server_databases.php:88 server_privileges.php:1680 #: setup/lib/messages.inc.php:110 test/theme.php:93 msgid "Databases" msgstr "Tietokannat" @@ -1584,7 +1629,7 @@ msgstr "Salasana:" msgid "Server Choice" msgstr "Valitse palvelin" -#: libraries/auth/cookie.auth.lib.php:320 libraries/header.inc.php:59 +#: libraries/auth/cookie.auth.lib.php:320 libraries/header.inc.php:63 msgid "Cookies must be enabled past this point." msgstr "Selaimessa on oltava evästeet päällä tästä lähtien." @@ -1668,7 +1713,7 @@ msgstr "" "Iconv-, libiconv- tai recode_string-funktioita ei voitu käyttää. Tarkista " "PHP:n asetukset." -#: libraries/common.inc.php:583 +#: libraries/common.inc.php:587 msgid "" "phpMyAdmin was unable to read your configuration file!
This might " "happen if PHP finds a parse error in it or PHP cannot find the file.
Jos linkistä avautuva sivu on tyhjä, asetustiedostossa ei ollut virhettä." -#: libraries/common.inc.php:594 +#: libraries/common.inc.php:598 #, fuzzy, php-format #| msgid "Could not load default configuration from: \"%1$s\"" msgid "Could not load default configuration from: %1$s" msgstr "Oletusasetuksia ei voitu ladata kohteesta: \"%1$s\"" -#: libraries/common.inc.php:599 +#: libraries/common.inc.php:603 msgid "" "The $cfg['PmaAbsoluteUri'] directive MUST be set in your " "configuration file!" msgstr "$cfg['PmaAbsoluteUri'] täytyy määritellä asetustiedostossa!" -#: libraries/common.inc.php:629 +#: libraries/common.inc.php:633 #, fuzzy, php-format #| msgid "Invalid server index: \"%s\"" msgid "Invalid server index: %s" msgstr "Virheellinen palvelimen indeksi: \"%s\"" -#: libraries/common.inc.php:636 +#: libraries/common.inc.php:640 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "Palvelimella %1$s virheellinen nimi. Tarkista asetukset." -#: libraries/common.inc.php:645 libraries/header.inc.php:96 +#: libraries/common.inc.php:649 libraries/header.inc.php:100 #: libraries/select_server.lib.php:41 libraries/select_server.lib.php:47 #: main.php:185 test/theme.php:57 msgid "Server" msgstr "Palvelin" -#: libraries/common.inc.php:823 +#: libraries/common.inc.php:827 msgid "Invalid authentication method set in configuration:" msgstr "Asetuksissa on virheellinen todennustapa:" -#: libraries/common.inc.php:926 +#: libraries/common.inc.php:930 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Sinun tulisi päivittää versioon %s %s tai sitä uudempaan." @@ -1851,45 +1896,45 @@ msgstr "," msgid "%B %d, %Y at %I:%M %p" msgstr "%d.%m.%Y klo %H:%M" -#: libraries/common.lib.php:1907 +#: libraries/common.lib.php:1911 #, 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:2322 libraries/common.lib.php:2325 +#: libraries/common.lib.php:2326 libraries/common.lib.php:2329 #: libraries/display_tbl.lib.php:290 server_status.php:719 msgid "Begin" msgstr "Alkuun" -#: libraries/common.lib.php:2323 libraries/common.lib.php:2326 +#: libraries/common.lib.php:2327 libraries/common.lib.php:2330 #: libraries/display_tbl.lib.php:291 server_binlog.php:168 #: server_binlog.php:170 msgid "Previous" msgstr "Edellinen" -#: libraries/common.lib.php:2354 libraries/common.lib.php:2357 +#: libraries/common.lib.php:2358 libraries/common.lib.php:2361 #: libraries/display_tbl.lib.php:353 msgid "End" msgstr "Loppu" -#: libraries/common.lib.php:2430 +#: libraries/common.lib.php:2434 #, php-format msgid "Jump to database "%s"." msgstr "Siirry tietokantaan "%s"." -#: libraries/common.lib.php:2450 +#: libraries/common.lib.php:2454 #, 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:2830 libraries/common.lib.php:2837 +#: libraries/common.lib.php:2834 libraries/common.lib.php:2841 #: libraries/db_links.inc.php:68 libraries/export/sql.php:25 -#: libraries/import/sql.php:18 libraries/server_links.inc.php:45 +#: libraries/import/sql.php:18 libraries/server_links.inc.php:46 #: libraries/tbl_links.inc.php:60 querywindow.php:99 test/theme.php:97 msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2839 libraries/db_links.inc.php:104 +#: libraries/common.lib.php:2843 libraries/db_links.inc.php:104 #: libraries/tbl_links.inc.php:95 libraries/tbl_links.inc.php:117 #: view_operations.php:89 msgid "Operations" @@ -1936,15 +1981,15 @@ msgstr "Haku" msgid "Designer" msgstr "Suunnittelija" -#: libraries/db_links.inc.php:98 libraries/server_links.inc.php:88 +#: libraries/db_links.inc.php:98 libraries/server_links.inc.php:89 #: libraries/tbl_links.inc.php:91 pmd_pdf.php:84 pmd_pdf.php:110 #: setup/frames/menu.inc.php:21 msgid "Import" msgstr "Tuonti" -#: libraries/db_links.inc.php:111 libraries/server_links.inc.php:66 -#: server_privileges.php:111 server_privileges.php:1722 -#: server_privileges.php:2071 test/theme.php:117 +#: libraries/db_links.inc.php:111 libraries/server_links.inc.php:67 +#: server_privileges.php:112 server_privileges.php:1742 +#: server_privileges.php:2092 test/theme.php:117 msgid "Privileges" msgstr "Käyttöoikeudet" @@ -1963,7 +2008,7 @@ msgid "" msgstr "Saattaa olla summittainen. Katso FAQ 3.11" #: libraries/db_structure.lib.php:69 server_databases.php:142 -#: tbl_printview.php:336 tbl_structure.php:682 +#: tbl_printview.php:336 tbl_structure.php:680 msgid "Overhead" msgstr "Ylijäämä" @@ -1983,7 +2028,7 @@ msgstr "" "(tai paikallisen MySQL-palvelimen pistokkeen asetuksia ei ole määritelty " "oikein)" -#: libraries/dbi/mysql.dbi.lib.php:362 tbl_structure.php:608 +#: libraries/dbi/mysql.dbi.lib.php:362 tbl_structure.php:606 msgid "Details..." msgstr "Lisätiedot..." @@ -1993,22 +2038,22 @@ msgid "Change password" msgstr "Vaihda salasana" #: libraries/display_change_password.lib.php:35 -#: libraries/replication_gui.lib.php:345 server_privileges.php:807 +#: libraries/replication_gui.lib.php:345 server_privileges.php:808 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:796 -#: server_privileges.php:800 server_privileges.php:811 -#: server_privileges.php:1538 server_synchronize.php:1175 +#: libraries/replication_gui.lib.php:349 server_privileges.php:797 +#: server_privileges.php:801 server_privileges.php:812 +#: server_privileges.php:1558 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:815 server_privileges.php:818 +#: server_privileges.php:816 server_privileges.php:819 msgid "Re-type" msgstr "Kirjoita uudelleen" @@ -2023,12 +2068,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:822 +#: libraries/replication_gui.lib.php:360 server_privileges.php:823 msgid "Generate Password" msgstr "Keksi salasana" #: libraries/display_change_password.lib.php:75 -#: libraries/replication_gui.lib.php:363 server_privileges.php:825 +#: libraries/replication_gui.lib.php:363 server_privileges.php:826 msgid "Generate" msgstr "Keksi" @@ -2041,8 +2086,8 @@ msgstr "Luo uusi tietokanta" msgid "Create" msgstr "Luo" -#: libraries/display_create_database.lib.php:40 server_privileges.php:113 -#: server_privileges.php:1427 server_replication.php:35 +#: libraries/display_create_database.lib.php:40 server_privileges.php:114 +#: server_privileges.php:1447 server_replication.php:35 msgid "No Privileges" msgstr "Ei käyttöoikeuksia" @@ -2133,7 +2178,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:1875 server_processlist.php:75 +#: server_privileges.php:1895 server_processlist.php:75 msgid "None" msgstr "Ei mitään" @@ -2329,7 +2374,7 @@ msgstr "Lajittele avaimen mukaan" #: libraries/import/docsql.php:34 libraries/import/ldi.php:47 #: libraries/import/ods.php:30 libraries/import/sql.php:20 #: libraries/import/xls.php:26 libraries/import/xlsx.php:26 -#: libraries/import/xml.php:25 tbl_select.php:267 tbl_structure.php:753 +#: libraries/import/xml.php:25 tbl_select.php:267 tbl_structure.php:751 msgid "Options" msgstr "Valinnat" @@ -2406,7 +2451,7 @@ msgstr "kysely kesti %01.4f sek." #: libraries/display_tbl.lib.php:2089 libraries/mult_submits.inc.php:113 #: querywindow.php:125 querywindow.php:129 querywindow.php:132 -#: tbl_structure.php:25 tbl_structure.php:150 tbl_structure.php:470 +#: tbl_structure.php:25 tbl_structure.php:150 tbl_structure.php:468 msgid "Change" msgstr "Muokkaa" @@ -2475,7 +2520,7 @@ msgstr "Puskurivarannon käyttö" #: libraries/engines/innodb.lib.php:194 server_databases.php:137 #: server_databases.php:305 server_status.php:525 server_status.php:586 -#: server_status.php:607 tbl_printview.php:351 tbl_structure.php:696 +#: server_status.php:607 tbl_printview.php:351 tbl_structure.php:694 msgid "Total" msgstr "Yhteensä" @@ -2760,7 +2805,7 @@ msgstr "" "numero." #: libraries/export/codegen.php:37 setup/lib/messages.inc.php:88 -#: tbl_printview.php:376 tbl_structure.php:737 +#: tbl_printview.php:376 tbl_structure.php:735 msgid "Format" msgstr "Muoto" @@ -2834,8 +2879,8 @@ 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:576 server_replication.php:316 tbl_printview.php:317 -#: tbl_structure.php:665 +#: server_privileges.php:577 server_replication.php:316 tbl_printview.php:317 +#: tbl_structure.php:663 msgid "Data" msgstr "Tietoa" @@ -2884,9 +2929,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:731 -#: server_privileges.php:734 server_privileges.php:790 -#: server_privileges.php:1537 server_privileges.php:2069 +#: libraries/replication_gui.lib.php:329 server_privileges.php:732 +#: server_privileges.php:735 server_privileges.php:791 +#: server_privileges.php:1557 server_privileges.php:2090 #: server_processlist.php:55 server_synchronize.php:1159 msgid "Host" msgstr "Palvelin" @@ -3081,7 +3126,7 @@ msgstr "Vie sisällöt" msgid "Open new phpMyAdmin window" msgstr "Avaa uusi phpMyAdmin-ikkuna" -#: libraries/header.inc.php:115 +#: libraries/header.inc.php:119 #, fuzzy msgid "New table" msgstr "Ei tauluja" @@ -3245,20 +3290,20 @@ 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 +#: tbl_structure.php:471 msgid "Primary" msgstr "Perusavain" #: libraries/mult_submits.inc.php:98 libraries/tbl_properties.inc.php:116 #: libraries/tbl_properties.inc.php:525 tbl_printview.php:326 #: tbl_structure.php:31 tbl_structure.php:154 tbl_structure.php:158 -#: tbl_structure.php:475 tbl_structure.php:673 +#: tbl_structure.php:473 tbl_structure.php:671 msgid "Index" msgstr "Indeksi" #: libraries/mult_submits.inc.php:108 libraries/tbl_properties.inc.php:531 #: tbl_structure.php:35 tbl_structure.php:156 tbl_structure.php:160 -#: tbl_structure.php:478 +#: tbl_structure.php:476 msgid "Fulltext" msgstr "Koko teksti" @@ -3561,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:711 -#: server_privileges.php:714 server_privileges.php:721 +#: libraries/replication_gui.lib.php:259 server_privileges.php:712 +#: server_privileges.php:715 server_privileges.php:722 #: server_synchronize.php:1171 msgid "User name" msgstr "Käyttäjänimi" @@ -3586,7 +3631,7 @@ msgstr "Muuttuja" #: 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 +#: tbl_structure.php:727 msgid "Value" msgstr "Arvo" @@ -3606,34 +3651,34 @@ msgstr "" msgid "Add slave replication user" msgstr "Lisää alireplikaatiokäyttäjä" -#: libraries/replication_gui.lib.php:254 server_privileges.php:716 +#: libraries/replication_gui.lib.php:254 server_privileges.php:717 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:717 -#: server_privileges.php:784 server_privileges.php:808 -#: server_privileges.php:1928 server_privileges.php:1958 +#: libraries/replication_gui.lib.php:346 server_privileges.php:718 +#: server_privileges.php:785 server_privileges.php:809 +#: server_privileges.php:1948 server_privileges.php:1978 msgid "Use text field" msgstr "Käytä tekstikenttää" -#: libraries/replication_gui.lib.php:302 server_privileges.php:764 +#: libraries/replication_gui.lib.php:302 server_privileges.php:765 msgid "Any host" msgstr "Mikä tahansa palvelin" -#: libraries/replication_gui.lib.php:306 server_privileges.php:768 +#: libraries/replication_gui.lib.php:306 server_privileges.php:769 msgid "Local" msgstr "Paikallinen" -#: libraries/replication_gui.lib.php:312 server_privileges.php:773 +#: libraries/replication_gui.lib.php:312 server_privileges.php:774 msgid "This Host" msgstr "Tämä isäntä" -#: libraries/replication_gui.lib.php:318 server_privileges.php:779 +#: libraries/replication_gui.lib.php:318 server_privileges.php:780 msgid "Use Host Table" msgstr "Käytä isäntätaulua" -#: libraries/replication_gui.lib.php:331 server_privileges.php:792 +#: libraries/replication_gui.lib.php:331 server_privileges.php:793 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -3669,29 +3714,29 @@ msgstr "Tuntematon kieli: %1$s." msgid "Servers" msgstr "Palvelimet" -#: libraries/server_links.inc.php:53 server_engines.php:112 +#: libraries/server_links.inc.php:54 server_engines.php:112 #: server_engines.php:116 server_status.php:415 test/theme.php:105 msgid "Variables" msgstr "Muuttujat" -#: libraries/server_links.inc.php:57 test/theme.php:109 +#: libraries/server_links.inc.php:58 test/theme.php:109 msgid "Charsets" msgstr "Merkistöt" -#: libraries/server_links.inc.php:61 test/theme.php:113 +#: libraries/server_links.inc.php:62 test/theme.php:113 msgid "Engines" msgstr "Moottorit" -#: libraries/server_links.inc.php:76 server_binlog.php:110 +#: libraries/server_links.inc.php:77 server_binlog.php:110 #: server_status.php:364 test/theme.php:121 msgid "Binary log" msgstr "Binääriloki" -#: libraries/server_links.inc.php:80 +#: libraries/server_links.inc.php:81 msgid "Processes" msgstr "Prosessit" -#: libraries/server_links.inc.php:92 server_synchronize.php:1092 +#: libraries/server_links.inc.php:93 server_synchronize.php:1092 #: server_synchronize.php:1100 msgid "Synchronize" msgstr "Yhtenäistä" @@ -3937,13 +3982,13 @@ msgstr "PARTITION-määritelmä" msgid "Save" msgstr "Tallenna" -#: libraries/tbl_properties.inc.php:780 tbl_structure.php:542 +#: libraries/tbl_properties.inc.php:780 tbl_structure.php:540 #, fuzzy, php-format #| msgid "Add column(s)" msgid "Add %s column(s)" msgstr "Lisää sarake/sarakkeita" -#: libraries/tbl_properties.inc.php:784 tbl_structure.php:536 +#: libraries/tbl_properties.inc.php:784 tbl_structure.php:534 #, fuzzy #| msgid "You have to add at least one field." msgid "You have to add at least one column." @@ -4160,8 +4205,8 @@ msgstr "Nollaa" msgid "Protocol version" msgstr "Protokollan versio" -#: main.php:189 server_privileges.php:1389 server_privileges.php:1536 -#: server_privileges.php:1650 server_privileges.php:2068 +#: main.php:189 server_privileges.php:1406 server_privileges.php:1556 +#: server_privileges.php:1670 server_privileges.php:2089 #: server_processlist.php:54 msgid "User" msgstr "Käyttäjä" @@ -4620,114 +4665,114 @@ msgstr "Tallennusmoottorit" msgid "View dump (schema) of databases" msgstr "Näytä tietokannoista vedos (skeema)" -#: server_privileges.php:24 server_privileges.php:266 +#: server_privileges.php:25 server_privileges.php:267 msgid "Includes all privileges except GRANT." msgstr "Sisältää kaikki käyttöoikeudet GRANT-oikeutta lukuun ottamatta." -#: server_privileges.php:25 server_privileges.php:192 -#: server_privileges.php:515 +#: server_privileges.php:26 server_privileges.php:193 +#: server_privileges.php:516 msgid "Allows altering the structure of existing tables." msgstr "Sallii muuttaa olemassa olevien taulujen rakennetta." -#: server_privileges.php:26 server_privileges.php:208 -#: server_privileges.php:521 +#: server_privileges.php:27 server_privileges.php:209 +#: server_privileges.php:522 msgid "Allows altering and dropping stored routines." msgstr "Sallii talletettujen rutiinien muuntamisen ja poistamisen." -#: server_privileges.php:27 server_privileges.php:184 -#: server_privileges.php:514 +#: server_privileges.php:28 server_privileges.php:185 +#: server_privileges.php:515 msgid "Allows creating new databases and tables." msgstr "Sallii uusien tietokantojen ja taulujen luomisen." -#: server_privileges.php:28 server_privileges.php:207 -#: server_privileges.php:520 +#: server_privileges.php:29 server_privileges.php:208 +#: server_privileges.php:521 msgid "Allows creating stored routines." msgstr "Sallii talletettujen rutiinien luomisen." -#: server_privileges.php:29 server_privileges.php:514 +#: server_privileges.php:30 server_privileges.php:515 msgid "Allows creating new tables." msgstr "Sallii uusien taulujen luomisen." -#: server_privileges.php:30 server_privileges.php:195 -#: server_privileges.php:518 +#: server_privileges.php:31 server_privileges.php:196 +#: server_privileges.php:519 msgid "Allows creating temporary tables." msgstr "Sallii tilapäisten taulujen luomisen." -#: server_privileges.php:31 server_privileges.php:209 -#: server_privileges.php:554 +#: server_privileges.php:32 server_privileges.php:210 +#: server_privileges.php:555 msgid "Allows creating, dropping and renaming user accounts." msgstr "Sallii käyttäjätilien luomisen, poistamisen ja uudelleennimeämisen." -#: server_privileges.php:32 server_privileges.php:199 -#: server_privileges.php:203 server_privileges.php:526 -#: server_privileges.php:530 +#: server_privileges.php:33 server_privileges.php:200 +#: server_privileges.php:204 server_privileges.php:527 +#: server_privileges.php:531 msgid "Allows creating new views." msgstr "Sallii uusien näkymien luomisen." -#: server_privileges.php:33 server_privileges.php:183 -#: server_privileges.php:506 +#: server_privileges.php:34 server_privileges.php:184 +#: server_privileges.php:507 msgid "Allows deleting data." msgstr "Sallii tietojen poistamisen." -#: server_privileges.php:34 server_privileges.php:185 -#: server_privileges.php:517 +#: server_privileges.php:35 server_privileges.php:186 +#: server_privileges.php:518 msgid "Allows dropping databases and tables." msgstr "Sallii tietokantojen ja taulujen poistamisen." -#: server_privileges.php:35 server_privileges.php:517 +#: server_privileges.php:36 server_privileges.php:518 msgid "Allows dropping tables." msgstr "Sallii taulujen poistamisen." -#: server_privileges.php:36 server_privileges.php:200 -#: server_privileges.php:534 +#: server_privileges.php:37 server_privileges.php:201 +#: server_privileges.php:535 msgid "Allows to set up events for the event scheduler" msgstr "Sallii luoda tapahtuma-ajastimelle tapahtumia" -#: server_privileges.php:37 server_privileges.php:210 -#: server_privileges.php:522 +#: server_privileges.php:38 server_privileges.php:211 +#: server_privileges.php:523 msgid "Allows executing stored routines." msgstr "Sallii talletettujen rutiinien suorittamisen." -#: server_privileges.php:38 server_privileges.php:189 -#: server_privileges.php:509 +#: server_privileges.php:39 server_privileges.php:190 +#: server_privileges.php:510 msgid "Allows importing data from and exporting data into files." msgstr "Sallii tietojen tuomisen ja viemisen." -#: server_privileges.php:39 server_privileges.php:540 +#: server_privileges.php:40 server_privileges.php:541 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "Sallii käyttäjien ja käyttöoikeuksien lisäämisen lataamatta " "käyttöoikeustauluja uudestaan." -#: server_privileges.php:40 server_privileges.php:191 -#: server_privileges.php:516 +#: server_privileges.php:41 server_privileges.php:192 +#: server_privileges.php:517 msgid "Allows creating and dropping indexes." msgstr "Sallii indeksien luomisen ja poistamisen." -#: server_privileges.php:41 server_privileges.php:181 -#: server_privileges.php:442 server_privileges.php:504 +#: server_privileges.php:42 server_privileges.php:182 +#: server_privileges.php:443 server_privileges.php:505 msgid "Allows inserting and replacing data." msgstr "Sallii tietojen lisäämisen ja korvaamisen." -#: server_privileges.php:42 server_privileges.php:196 -#: server_privileges.php:549 +#: server_privileges.php:43 server_privileges.php:197 +#: server_privileges.php:550 msgid "Allows locking tables for the current thread." msgstr "Sallii taulujen lukitsemisen nykyiselle säikeelle." -#: server_privileges.php:43 server_privileges.php:646 -#: server_privileges.php:648 +#: server_privileges.php:44 server_privileges.php:647 +#: server_privileges.php:649 msgid "Limits the number of new connections the user may open per hour." msgstr "Rajoittaa käyttäjän tunnissa luomien uusien yhteyksien määrän." -#: server_privileges.php:44 server_privileges.php:634 -#: server_privileges.php:636 +#: server_privileges.php:45 server_privileges.php:635 +#: server_privileges.php:637 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" "Rajoittaa käyttäjän tunnissa palvelimelle lähettämien kyselyjen määrän." -#: server_privileges.php:45 server_privileges.php:640 -#: server_privileges.php:642 +#: server_privileges.php:46 server_privileges.php:641 +#: server_privileges.php:643 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -4735,60 +4780,60 @@ 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 +#: server_privileges.php:47 server_privileges.php:653 +#: server_privileges.php:655 msgid "Limits the number of simultaneous connections the user may have." msgstr "Rajoittaa käyttäjän yhtäaikaisten yhteyksien määrän." -#: server_privileges.php:47 server_privileges.php:188 -#: server_privileges.php:544 +#: server_privileges.php:48 server_privileges.php:189 +#: server_privileges.php:545 msgid "Allows viewing processes of all users" msgstr "Sallii kaikkien käyttäjien prosessien näyttämisen" -#: server_privileges.php:48 server_privileges.php:190 -#: server_privileges.php:448 server_privileges.php:550 +#: server_privileges.php:49 server_privileges.php:191 +#: server_privileges.php:449 server_privileges.php:551 msgid "Has no effect in this MySQL version." msgstr "Ei vaikutusta tässä MySQL-palvelimen versiossa." -#: server_privileges.php:49 server_privileges.php:186 -#: server_privileges.php:545 +#: server_privileges.php:50 server_privileges.php:187 +#: server_privileges.php:546 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" "Sallii palvelinasetusten uudelleenlataamisen ja palvelimen välimuistin " "tyhjentämisen." -#: server_privileges.php:50 server_privileges.php:198 -#: server_privileges.php:552 +#: server_privileges.php:51 server_privileges.php:199 +#: server_privileges.php:553 msgid "Allows the user to ask where the slaves / masters are." msgstr "Sallii käyttäjän kysyä, missä ali- ja pääpalvelimet sijaitsevat." -#: server_privileges.php:51 server_privileges.php:197 -#: server_privileges.php:553 +#: server_privileges.php:52 server_privileges.php:198 +#: server_privileges.php:554 msgid "Needed for the replication slaves." msgstr "Tarvitaan replikaatiota käyttävissä alipalvelimissa." -#: server_privileges.php:52 server_privileges.php:180 -#: server_privileges.php:439 server_privileges.php:503 +#: server_privileges.php:53 server_privileges.php:181 +#: server_privileges.php:440 server_privileges.php:504 msgid "Allows reading data." msgstr "Sallii tietojen lukemisen." -#: server_privileges.php:53 server_privileges.php:193 -#: server_privileges.php:547 +#: server_privileges.php:54 server_privileges.php:194 +#: server_privileges.php:548 msgid "Gives access to the complete list of databases." msgstr "Sallii koko tietokantaluettelon käytön." -#: server_privileges.php:54 server_privileges.php:204 -#: server_privileges.php:206 server_privileges.php:519 +#: server_privileges.php:55 server_privileges.php:205 +#: server_privileges.php:207 server_privileges.php:520 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Sallii SHOW CREATE VIEW -kyselyjen suorittamisen." -#: server_privileges.php:55 server_privileges.php:187 -#: server_privileges.php:546 +#: server_privileges.php:56 server_privileges.php:188 +#: server_privileges.php:547 msgid "Allows shutting down the server." msgstr "Sallii palvelimen sammuttamisen." -#: server_privileges.php:56 server_privileges.php:194 -#: server_privileges.php:543 +#: server_privileges.php:57 server_privileges.php:195 +#: server_privileges.php:544 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -4798,157 +4843,157 @@ msgstr "" "saavutettu; Tarvitaan useissa pääkäyttäjän toiminnoissa kuten globaalien " "muuttujien asettamisessa ja muitten käyttäjien säikeiden lopettamisessa." -#: server_privileges.php:57 server_privileges.php:201 -#: server_privileges.php:535 +#: server_privileges.php:58 server_privileges.php:202 +#: server_privileges.php:536 msgid "Allows creating and dropping triggers" msgstr "Sallii herättimien eli laukaisinten luomisen ja poistamisen" -#: server_privileges.php:58 server_privileges.php:182 -#: server_privileges.php:445 server_privileges.php:505 +#: server_privileges.php:59 server_privileges.php:183 +#: server_privileges.php:446 server_privileges.php:506 msgid "Allows changing data." msgstr "Sallii tietojen muuttamisen." -#: server_privileges.php:59 server_privileges.php:260 +#: server_privileges.php:60 server_privileges.php:261 msgid "No privileges." msgstr "Ei käyttöoikeuksia." -#: server_privileges.php:302 server_privileges.php:303 +#: server_privileges.php:303 server_privileges.php:304 #, fuzzy #| msgid "None" msgctxt "None privileges" msgid "None" msgstr "Ei mitään" -#: server_privileges.php:431 server_privileges.php:566 -#: server_privileges.php:1718 server_privileges.php:1724 +#: server_privileges.php:432 server_privileges.php:567 +#: server_privileges.php:1738 server_privileges.php:1744 msgid "Table-specific privileges" msgstr "Taulukohtaiset käyttöoikeudet" -#: server_privileges.php:432 server_privileges.php:574 -#: server_privileges.php:1540 +#: server_privileges.php:433 server_privileges.php:575 +#: server_privileges.php:1560 msgid " Note: MySQL privilege names are expressed in English " msgstr " Huom! MySQL-käyttöoikeuksien nimet ovat englanniksi! " -#: server_privileges.php:563 server_privileges.php:1539 +#: server_privileges.php:564 server_privileges.php:1559 msgid "Global privileges" msgstr "Globaalit käyttöoikeudet" -#: server_privileges.php:565 server_privileges.php:1718 +#: server_privileges.php:566 server_privileges.php:1738 msgid "Database-specific privileges" msgstr "Tietokantakohtaiset käyttöoikeudet" -#: server_privileges.php:610 +#: server_privileges.php:611 msgid "Administration" msgstr "Hallinta" -#: server_privileges.php:630 +#: server_privileges.php:631 msgid "Resource limits" msgstr "Resurssirajoitukset" -#: server_privileges.php:631 +#: server_privileges.php:632 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "Huom: Näiden valintojen asettaminen nollaksi (0) poistaa rajoituksen." -#: server_privileges.php:708 +#: server_privileges.php:709 msgid "Login Information" msgstr "Kirjautumistiedot" -#: server_privileges.php:802 +#: server_privileges.php:803 msgid "Do not change the password" msgstr "Älä vaihda salasanaa" -#: server_privileges.php:843 server_privileges.php:2205 +#: server_privileges.php:844 server_privileges.php:2226 #, fuzzy #| msgid "No user(s) found." msgid "No user found." msgstr "Käyttäjiä ei ole." -#: server_privileges.php:887 +#: server_privileges.php:888 #, php-format msgid "The user %s already exists!" msgstr "Käyttäjä %s on jo olemassa!" -#: server_privileges.php:970 +#: server_privileges.php:971 msgid "You have added a new user." msgstr "Uusi käyttäjä lisätty." -#: server_privileges.php:1191 +#: server_privileges.php:1196 #, 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:1215 +#: server_privileges.php:1220 #, php-format msgid "You have revoked the privileges for %s" msgstr "Käyttäjän %s käyttöoikeudet on poistettu" -#: server_privileges.php:1251 +#: server_privileges.php:1256 #, php-format msgid "The password for %s was changed successfully." msgstr "Käyttäjän %s salasanan vaihto onnistui." -#: server_privileges.php:1271 +#: server_privileges.php:1276 #, php-format msgid "Deleting %s" msgstr "Poistetaan: %s" -#: server_privileges.php:1282 +#: server_privileges.php:1287 msgid "No users selected for deleting!" msgstr "Yhtään käyttäjää ei valittu poistettavaksi!" -#: server_privileges.php:1285 +#: server_privileges.php:1290 msgid "Reloading the privileges" msgstr "Ladataan käyttöoikeuksia uudelleen" -#: server_privileges.php:1300 +#: server_privileges.php:1305 msgid "The selected users have been deleted successfully." msgstr "Valitsemiesi käyttäjien poisto onnistui." -#: server_privileges.php:1335 +#: server_privileges.php:1344 msgid "The privileges were reloaded successfully." msgstr "Käyttöoikeuksien uudelleenlataus onnistui." -#: server_privileges.php:1363 server_privileges.php:1649 +#: server_privileges.php:1380 server_privileges.php:1669 msgid "Edit Privileges" msgstr "Muokkaa käyttöoikeuksia" -#: server_privileges.php:1372 +#: server_privileges.php:1389 msgid "Revoke" msgstr "Pura käyttöoikeudet" -#: server_privileges.php:1404 +#: server_privileges.php:1424 msgid "User overview" msgstr "Käyttäjien yleiskatsaus" -#: server_privileges.php:1541 server_privileges.php:1723 -#: server_privileges.php:2072 +#: server_privileges.php:1561 server_privileges.php:1743 +#: server_privileges.php:2093 msgid "Grant" msgstr "Valtuudet (GRANT)" -#: server_privileges.php:1560 server_privileges.php:2162 +#: server_privileges.php:1580 server_privileges.php:2183 msgid "Any" msgstr "Mikä tahansa" -#: server_privileges.php:1609 server_privileges.php:1633 -#: server_privileges.php:2027 server_privileges.php:2216 +#: server_privileges.php:1629 server_privileges.php:1653 +#: server_privileges.php:2048 server_privileges.php:2237 msgid "Add a new User" msgstr "Lisää uusi käyttäjä" -#: server_privileges.php:1614 +#: server_privileges.php:1634 msgid "Remove selected users" msgstr "Poista valitut käyttäjät" -#: server_privileges.php:1617 +#: server_privileges.php:1637 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:1618 server_privileges.php:1619 -#: server_privileges.php:1620 +#: server_privileges.php:1638 server_privileges.php:1639 +#: server_privileges.php:1640 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:1636 +#: server_privileges.php:1656 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -4961,52 +5006,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:1684 +#: server_privileges.php:1704 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:1724 +#: server_privileges.php:1744 msgid "Column-specific privileges" msgstr "Sarakekohtaiset käyttöoikeudet" -#: server_privileges.php:1925 +#: server_privileges.php:1945 msgid "Add privileges on the following database" msgstr "Lisää käyttöoikeudet seuraavaan tietokantaan" -#: server_privileges.php:1943 +#: server_privileges.php:1963 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:1946 +#: server_privileges.php:1966 msgid "Add privileges on the following table" msgstr "Lisää käyttöoikeudet seuraavaan tauluun" -#: server_privileges.php:2003 +#: server_privileges.php:2023 msgid "Change Login Information / Copy User" msgstr "Vaihda kirjautumistietoja / Kopioi käyttäjä" -#: server_privileges.php:2006 +#: server_privileges.php:2026 msgid "Create a new user with the same privileges and ..." msgstr "Luo uusi käyttäjä samoilla käyttöoikeuksilla ja ..." -#: server_privileges.php:2008 +#: server_privileges.php:2028 msgid "... keep the old one." msgstr "... säilytä vanha käyttäjä." -#: server_privileges.php:2009 +#: server_privileges.php:2029 msgid " ... delete the old one from the user tables." msgstr " ... poista vanha käyttäjä käyttäjätauluista." -#: server_privileges.php:2010 +#: server_privileges.php:2030 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:2011 +#: server_privileges.php:2031 msgid "" " ... delete the old one from the user tables and reload the privileges " "afterwards." @@ -5014,45 +5059,45 @@ msgstr "" " ... poista vanha käyttäjä käyttäjätauluista ja lataa käyttöoikeudet sen " "jälkeen uudelleen." -#: server_privileges.php:2033 +#: server_privileges.php:2054 msgid "Database for user" msgstr "Tietokanta käyttäjälle" -#: server_privileges.php:2037 +#: server_privileges.php:2058 #, fuzzy #| msgid "None" msgctxt "Create none database for user" msgid "None" msgstr "Ei mitään" -#: server_privileges.php:2038 +#: server_privileges.php:2059 msgid "Create database with same name and grant all privileges" msgstr "Luo samanniminen tietokanta ja anna kaikki oikeudet" -#: server_privileges.php:2039 +#: server_privileges.php:2060 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "" "Anna kaikki oikeudet tietokannalle käyttäen korvausmerkkiä (username\\_%)" -#: server_privileges.php:2042 +#: server_privileges.php:2063 #, php-format msgid "Grant all privileges on database "%s"" msgstr "Anna tietokannalle "%s" kaikki oikeudet" -#: server_privileges.php:2065 +#: server_privileges.php:2086 #, php-format msgid "Users having access to "%s"" msgstr "Käyttäjät, joilla on oikeus käyttää kohdetta "%s"" -#: server_privileges.php:2173 +#: server_privileges.php:2194 msgid "global" msgstr "globaali" -#: server_privileges.php:2175 +#: server_privileges.php:2196 msgid "database-specific" msgstr "tietokantakohtainen" -#: server_privileges.php:2177 +#: server_privileges.php:2198 msgid "wildcard" msgstr "korvausmerkki" @@ -8092,6 +8137,10 @@ msgstr "" msgid "Show insert query" msgstr "Näytetään SQL-kysely" +#: tbl_change.php:1143 +msgid "and then" +msgstr "ja sen jälkeen" + #: tbl_change.php:1147 msgid "Go back to previous page" msgstr "Takaisin" @@ -8172,7 +8221,7 @@ msgstr "(\"PRIMARY\" saa olla vain ja ainoastaan perusavaimen nimenä!)" msgid "Add to index  %s column(s)" msgstr "Lisää indeksiin %s sarake(tta)" -#: tbl_indexes.php:256 tbl_structure.php:589 tbl_structure.php:600 +#: tbl_indexes.php:256 tbl_structure.php:587 tbl_structure.php:598 msgid "Column count has to be larger than zero." msgstr "Sarakkeiden määrän on oltava nollaa suurempi." @@ -8286,39 +8335,39 @@ msgstr "Tarkista viitteiden eheys:" msgid "Show tables" msgstr "Näytä taulut" -#: tbl_printview.php:310 tbl_structure.php:656 +#: tbl_printview.php:310 tbl_structure.php:654 msgid "Space usage" msgstr "Levytilan käyttö" -#: tbl_printview.php:314 tbl_structure.php:660 +#: tbl_printview.php:314 tbl_structure.php:658 msgid "Usage" msgstr "Käyttö" -#: tbl_printview.php:341 tbl_structure.php:687 +#: tbl_printview.php:341 tbl_structure.php:685 msgid "Effective" msgstr "Pätevä" -#: tbl_printview.php:366 tbl_structure.php:725 +#: tbl_printview.php:366 tbl_structure.php:723 msgid "Row Statistics" msgstr "Rivitilastot" -#: tbl_printview.php:369 tbl_structure.php:728 +#: tbl_printview.php:369 tbl_structure.php:726 msgid "Statements" msgstr "Tieto" -#: tbl_printview.php:380 tbl_structure.php:740 +#: tbl_printview.php:380 tbl_structure.php:738 msgid "static" msgstr "staattinen" -#: tbl_printview.php:382 tbl_structure.php:742 +#: tbl_printview.php:382 tbl_structure.php:740 msgid "dynamic" msgstr "dynaaminen" -#: tbl_printview.php:404 tbl_structure.php:785 +#: tbl_printview.php:404 tbl_structure.php:783 msgid "Row length" msgstr "Rivin pituus" -#: tbl_printview.php:414 tbl_structure.php:793 +#: tbl_printview.php:414 tbl_structure.php:791 msgid " Row size " msgstr " Rivin koko " @@ -8394,50 +8443,50 @@ msgstr "Ei mitään" msgid "Column %s has been dropped" msgstr "Taulu %s on poistettu" -#: tbl_structure.php:385 +#: tbl_structure.php:384 #, php-format msgid "A primary key has been added on %s" msgstr "Sarakkeelle %s on luotu perusavain" -#: tbl_structure.php:400 tbl_structure.php:414 tbl_structure.php:428 +#: tbl_structure.php:398 tbl_structure.php:412 tbl_structure.php:426 #, php-format msgid "An index has been added on %s" msgstr "Sarakkeelle %s on lisätty indeksi" -#: tbl_structure.php:506 tbl_structure.php:508 +#: tbl_structure.php:504 tbl_structure.php:506 msgid "Relation view" msgstr "Relaationäkymä" -#: tbl_structure.php:515 tbl_structure.php:517 +#: tbl_structure.php:513 tbl_structure.php:515 msgid "Propose table structure" msgstr "Esitä taulun rakenne" -#: tbl_structure.php:540 +#: tbl_structure.php:538 #, fuzzy #| msgid "Add column(s)" msgid "Add column" msgstr "Lisää sarake/sarakkeita" -#: tbl_structure.php:554 +#: tbl_structure.php:552 msgid "At End of Table" msgstr "Taulun loppuun" -#: tbl_structure.php:555 +#: tbl_structure.php:553 msgid "At Beginning of Table" msgstr "Taulun alkuun" -#: tbl_structure.php:556 +#: tbl_structure.php:554 #, php-format msgid "After %s" msgstr "Jälkeen sarakkeen: %s" -#: tbl_structure.php:594 +#: tbl_structure.php:592 #, fuzzy, php-format #| msgid "Create an index on %s columns" msgid "Create an index on  %s columns" msgstr "Luo  %s:n sarakkeen indeksi" -#: tbl_structure.php:756 +#: tbl_structure.php:754 msgid "partitioned" msgstr "ositettu" @@ -8926,9 +8975,6 @@ msgstr "Nimeä taulu uudelleen" #~ msgid "Process list" #~ msgstr "Prosessiluettelo" -#~ msgid "Reload privileges" -#~ msgstr "Lataa käyttöoikeudet uudelleen" - #~ msgid "" #~ "The users will still have the USAGE privilege until the privileges are " #~ "reloaded." diff --git a/po/fr.po b/po/fr.po index 6586fb631..ce21825fe 100755 --- a/po/fr.po +++ b/po/fr.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-13 09:03-0400\n" +"POT-Creation-Date: 2010-06-22 00:55+0530\n" "PO-Revision-Date: 2010-06-08 18:57+0200\n" "Last-Translator: Marc \n" "Language-Team: french \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:1514 +#: libraries/display_tbl.lib.php:417 server_privileges.php:1534 msgid "Show all" msgstr "Tout afficher" -#: browse_foreigners.php:82 libraries/common.lib.php:2313 +#: browse_foreigners.php:82 libraries/common.lib.php:2317 #: 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,18 +38,18 @@ 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:2831 -#: libraries/common.lib.php:2838 libraries/db_links.inc.php:75 +#: db_structure.php:106 libraries/common.lib.php:2835 +#: libraries/common.lib.php:2842 libraries/db_links.inc.php:75 #: libraries/tbl_links.inc.php:63 msgid "Search" msgstr "Rechercher" -#: browse_foreigners.php:153 db_operations.php:385 db_operations.php:429 -#: db_operations.php:499 db_operations.php:609 db_search.php:362 -#: db_structure.php:567 js/messages.php:48 libraries/Config.class.php:1046 +#: browse_foreigners.php:153 db_operations.php:394 db_operations.php:438 +#: db_operations.php:508 db_operations.php:618 db_search.php:362 +#: db_structure.php:565 js/messages.php:53 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:1335 libraries/common.lib.php:2288 +#: libraries/common.lib.php:1335 libraries/common.lib.php:2292 #: 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,15 +60,15 @@ 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:664 server_privileges.php:1624 -#: server_privileges.php:1971 server_privileges.php:2018 -#: server_privileges.php:2057 server_replication.php:235 +#: server_privileges.php:665 server_privileges.php:1644 +#: server_privileges.php:1991 server_privileges.php:2038 +#: server_privileges.php:2078 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 #: tbl_operations.php:302 tbl_operations.php:499 tbl_operations.php:561 -#: tbl_operations.php:681 tbl_select.php:327 tbl_structure.php:562 -#: tbl_structure.php:597 tbl_tracking.php:395 tbl_tracking.php:512 +#: tbl_operations.php:681 tbl_select.php:327 tbl_structure.php:560 +#: tbl_structure.php:595 tbl_tracking.php:395 tbl_tracking.php:512 #: view_create.php:182 view_operations.php:101 msgid "Go" msgstr "Exécuter" @@ -94,7 +94,7 @@ msgstr "Utiliser cette valeur" msgid "Database %1$s has been created." msgstr "La base de données %1$s a été créée." -#: db_datadict.php:49 db_operations.php:378 +#: db_datadict.php:49 db_operations.php:387 msgid "Database comment: " msgstr "Commentaire sur la base de données: " @@ -119,10 +119,10 @@ 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:2070 +#: pdf_schema.php:1263 pdf_schema.php:1284 server_privileges.php:2091 #: 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 +#: tbl_structure.php:657 tbl_tracking.php:274 tbl_tracking.php:321 msgid "Type" msgstr "Type" @@ -135,7 +135,7 @@ msgstr "Type" msgid "Null" msgstr "Null" -#: db_datadict.php:178 db_structure.php:501 libraries/export/htmlword.php:247 +#: db_datadict.php:178 db_structure.php:499 libraries/export/htmlword.php:247 #: libraries/export/latex.php:360 libraries/export/odt.php:303 #: libraries/export/texytext.php:236 libraries/tbl_properties.inc.php:106 #: pdf_schema.php:1266 pdf_schema.php:1287 tbl_printview.php:146 @@ -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: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 +#: pdf_schema.php:1344 server_privileges.php:1588 server_privileges.php:1599 +#: server_privileges.php:1909 server_privileges.php:1914 +#: server_privileges.php:2208 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:1565 -#: server_privileges.php:1579 server_privileges.php:1889 -#: server_privileges.php:1892 server_privileges.php:2187 sql.php:193 +#: server_databases.php:64 server_privileges.php:1585 +#: server_privileges.php:1599 server_privileges.php:1909 +#: server_privileges.php:1912 server_privileges.php:2208 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" @@ -208,119 +208,115 @@ msgstr "Tout sélectionner" msgid "Unselect All" msgstr "Tout désélectionner" -#: db_operations.php:38 tbl_create.php:54 +#: db_operations.php:43 tbl_create.php:54 msgid "The database name is empty!" msgstr "Le nom de la base de données est vide!" -#: db_operations.php:236 +#: db_operations.php:241 #, php-format msgid "Database %s has been renamed to %s" msgstr "La base de données %s a été renommée en %s" -#: db_operations.php:240 +#: db_operations.php:245 #, php-format msgid "Database %s has been copied to %s" msgstr "La base de données %s a été copiée sur %s" -#: db_operations.php:412 +#: db_operations.php:421 msgid "Rename database to" msgstr "Changer le nom de la base de données pour" -#: db_operations.php:417 server_processlist.php:57 +#: db_operations.php:426 server_processlist.php:57 msgid "Command" msgstr "Commande" -#: db_operations.php:429 tbl_change.php:1143 -msgid "and then" -msgstr "et ensuite" - -#: db_operations.php:455 +#: db_operations.php:464 msgid "Copy database to" msgstr "Copier la base de données vers" -#: db_operations.php:462 tbl_operations.php:528 tbl_tracking.php:388 +#: db_operations.php:471 tbl_operations.php:528 tbl_tracking.php:388 msgid "Structure only" msgstr "Structure seule" -#: db_operations.php:463 tbl_operations.php:529 tbl_tracking.php:390 +#: db_operations.php:472 tbl_operations.php:529 tbl_tracking.php:390 msgid "Structure and data" msgstr "Structure et données" -#: db_operations.php:464 tbl_operations.php:530 tbl_tracking.php:389 +#: db_operations.php:473 tbl_operations.php:530 tbl_tracking.php:389 msgid "Data only" msgstr "Données seulement" -#: db_operations.php:472 +#: db_operations.php:481 msgid "CREATE DATABASE before copying" msgstr "Faire CREATE DATABASE avant la copie" -#: db_operations.php:475 libraries/export/sql.php:52 +#: db_operations.php:484 libraries/export/sql.php:52 #: libraries/export/sql.php:74 libraries/export/sql.php:76 #: libraries/export/sql.php:82 tbl_operations.php:536 #, php-format msgid "Add %s" msgstr "Ajouter %s" -#: db_operations.php:479 libraries/export/sql.php:78 tbl_operations.php:299 +#: db_operations.php:488 libraries/export/sql.php:78 tbl_operations.php:299 #: tbl_operations.php:538 msgid "Add AUTO_INCREMENT value" msgstr "Inclure la valeur courante de l'AUTO_INCREMENT" -#: db_operations.php:483 tbl_operations.php:545 +#: db_operations.php:492 tbl_operations.php:545 msgid "Add constraints" msgstr "Inclure les contraintes de clés étrangères" -#: db_operations.php:496 +#: db_operations.php:505 msgid "Switch to copied database" msgstr "Aller à la base de données copiée" -#: db_operations.php:537 +#: db_operations.php:546 msgid "BLOB Repository" msgstr "Dépôt BLOB" -#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1352 -#: libraries/server_links.inc.php:49 server_processlist.php:59 +#: db_operations.php:549 db_tracking.php:76 libraries/common.lib.php:1352 +#: libraries/server_links.inc.php:50 server_processlist.php:59 #: tbl_tracking.php:596 test/theme.php:101 msgid "Status" msgstr "État" -#: db_operations.php:548 +#: db_operations.php:557 msgctxt "BLOB repository" msgid "Enabled" msgstr "activé" -#: db_operations.php:552 +#: db_operations.php:561 msgid "Disable" msgstr "Désactiver" -#: db_operations.php:562 +#: db_operations.php:571 msgid "Damaged" msgstr "Endommagé" -#: db_operations.php:566 +#: db_operations.php:575 msgctxt "BLOB repository" msgid "Repair" msgstr "Réparer" -#: db_operations.php:574 +#: db_operations.php:583 msgctxt "BLOB repository" msgid "Disabled" msgstr "désactivé" -#: db_operations.php:578 +#: db_operations.php:587 msgid "Enable" msgstr "Activer" -#: db_operations.php:602 libraries/Index.class.php:448 +#: db_operations.php:611 libraries/Index.class.php:448 #: libraries/db_structure.lib.php:62 libraries/mysql_charsets.lib.php:107 #: libraries/tbl_properties.inc.php:107 libraries/tbl_properties.inc.php:730 #: server_collations.php:54 server_collations.php:66 server_databases.php:111 #: tbl_operations.php:363 tbl_select.php:137 tbl_structure.php:179 -#: tbl_structure.php:767 tbl_tracking.php:275 tbl_tracking.php:326 +#: tbl_structure.php:765 tbl_tracking.php:275 tbl_tracking.php:326 msgid "Collation" msgstr "Interclassement" -#: db_operations.php:615 main.php:316 pdf_schema.php:34 +#: db_operations.php:624 main.php:316 pdf_schema.php:34 #, php-format msgid "" "The additional features for working with linked tables have been " @@ -329,14 +325,14 @@ msgstr "" "Certaines fonctionnalités ayant trait aux tables reliées sont désactivées. " "Pour une analyse du problème, cliquez %sici%s." -#: db_operations.php:648 +#: db_operations.php:657 msgid "Edit PDF Pages" 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:1665 -#: server_privileges.php:1721 server_privileges.php:1985 +#: libraries/header.inc.php:130 pdf_pages.php:424 server_privileges.php:1685 +#: server_privileges.php:1741 server_privileges.php:2005 #: server_synchronize.php:423 server_synchronize.php:866 tbl_tracking.php:592 #: test/theme.php:75 msgid "Table" @@ -345,7 +341,7 @@ msgstr "Table" #: db_printview.php:105 libraries/db_structure.lib.php:56 #: libraries/header_printview.inc.php:63 libraries/import.lib.php:146 #: navigation.php:638 navigation.php:660 server_databases.php:122 -#: tbl_printview.php:394 tbl_structure.php:365 tbl_structure.php:777 +#: tbl_printview.php:394 tbl_structure.php:365 tbl_structure.php:775 msgid "Rows" msgstr "Enregistrements" @@ -353,30 +349,30 @@ msgstr "Enregistrements" msgid "Size" msgstr "Taille" -#: db_printview.php:162 db_structure.php:457 libraries/export/sql.php:559 +#: db_printview.php:162 db_structure.php:455 libraries/export/sql.php:559 #: libraries/export/sql.php:899 msgid "in use" msgstr "utilisé" #: db_printview.php:187 libraries/db_info.inc.php:88 #: libraries/export/sql.php:514 pdf_schema.php:1241 tbl_printview.php:434 -#: tbl_structure.php:809 +#: tbl_structure.php:807 msgid "Creation" msgstr "Création" #: db_printview.php:196 libraries/db_info.inc.php:93 #: libraries/export/sql.php:519 pdf_schema.php:1246 tbl_printview.php:444 -#: tbl_structure.php:817 +#: tbl_structure.php:815 msgid "Last update" msgstr "Dernière modification" #: db_printview.php:205 libraries/db_info.inc.php:98 #: libraries/export/sql.php:524 pdf_schema.php:1251 tbl_printview.php:454 -#: tbl_structure.php:825 +#: tbl_structure.php:823 msgid "Last check" msgstr "Dernière vérification" -#: db_printview.php:222 db_structure.php:480 +#: db_printview.php:222 db_structure.php:478 #, php-format msgid "%s table" msgid_plural "%s tables" @@ -436,7 +432,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:297 tbl_change.php:1031 tbl_indexes.php:250 +#: server_privileges.php:298 tbl_change.php:1031 tbl_indexes.php:250 #: tbl_select.php:288 msgid "Or" msgstr "Ou" @@ -505,9 +501,9 @@ 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:2833 +#: db_structure.php:105 libraries/common.lib.php:2837 #: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50 -#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:467 +#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:465 msgid "Browse" msgstr "Afficher" @@ -550,36 +546,36 @@ 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:2832 libraries/sql_query_form.lib.php:334 +#: libraries/common.lib.php:2836 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:2829 libraries/common.lib.php:2836 +#: libraries/common.lib.php:2833 libraries/common.lib.php:2840 #: 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:1106 #: libraries/tbl_links.inc.php:56 pmd_general.php:134 -#: server_privileges.php:593 server_replication.php:315 tbl_tracking.php:269 +#: server_privileges.php:594 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:1656 +#: db_structure.php:543 db_structure.php:544 db_tracking.php:91 +#: libraries/Index.class.php:483 libraries/common.lib.php:1657 #: 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 -#: tbl_structure.php:152 tbl_structure.php:471 +#: tbl_structure.php:152 tbl_structure.php:469 msgid "Drop" 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:1655 +#: db_structure.php:541 db_structure.php:542 libraries/common.lib.php:1656 #: libraries/mult_submits.inc.php:39 libraries/tbl_links.inc.php:105 msgid "Empty" msgstr "Vider" @@ -589,25 +585,25 @@ msgstr "Vider" msgid "Table %s has been emptied" msgstr "La table %s a été vidée" -#: db_structure.php:326 libraries/tbl_links.inc.php:133 +#: db_structure.php:325 libraries/tbl_links.inc.php:133 #, php-format msgid "View %s has been dropped" msgstr "La vue %s a été supprimée" -#: db_structure.php:326 libraries/tbl_links.inc.php:133 +#: db_structure.php:325 libraries/tbl_links.inc.php:133 #, php-format msgid "Table %s has been dropped" msgstr "La table %s a été effacée" -#: db_structure.php:333 +#: db_structure.php:332 msgid "Tracking is active." msgstr "Le suivi est actif." -#: db_structure.php:335 +#: db_structure.php:334 msgid "Tracking is not active." msgstr "Le suivi n'est pas activé." -#: db_structure.php:420 libraries/display_tbl.lib.php:1944 +#: db_structure.php:418 libraries/display_tbl.lib.php:1944 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation%" @@ -616,86 +612,86 @@ msgstr "" "Cette vue contient au moins ce nombre d'enregistrements. Veuillez référer à %" "sdocumentation%s." -#: db_structure.php:434 db_structure.php:448 libraries/header.inc.php:126 +#: db_structure.php:432 db_structure.php:446 libraries/header.inc.php:130 #: libraries/tbl_info.inc.php:66 tbl_structure.php:185 test/theme.php:74 msgid "View" msgstr "Vue" -#: db_structure.php:485 libraries/db_structure.lib.php:49 -#: libraries/server_links.inc.php:70 server_replication.php:33 +#: db_structure.php:483 libraries/db_structure.lib.php:49 +#: libraries/server_links.inc.php:71 server_replication.php:33 #: server_replication.php:164 server_status.php:369 msgid "Replication" msgstr "Réplication" -#: db_structure.php:489 +#: db_structure.php:487 msgid "Sum" msgstr "Somme" -#: db_structure.php:496 libraries/StorageEngine.class.php:356 +#: db_structure.php:494 libraries/StorageEngine.class.php:356 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "Sur ce serveur MySQL, le moteur de stockage par défaut est %s." -#: db_structure.php:524 db_structure.php:541 db_structure.php:542 +#: db_structure.php:522 db_structure.php:539 db_structure.php:540 #: 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:1596 tbl_structure.php:455 -#: tbl_structure.php:464 +#: server_databases.php:351 server_privileges.php:1616 tbl_structure.php:453 +#: tbl_structure.php:462 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:569 -#: server_privileges.php:1599 tbl_structure.php:458 +#: db_structure.php:525 libraries/display_tbl.lib.php:2076 +#: server_databases.php:348 server_privileges.php:570 +#: server_privileges.php:1619 tbl_structure.php:456 msgid "Check All" msgstr "Tout cocher" -#: db_structure.php:531 libraries/display_tbl.lib.php:2077 +#: db_structure.php:529 libraries/display_tbl.lib.php:2077 #: libraries/replication_gui.lib.php:33 server_databases.php:350 -#: server_privileges.php:572 server_privileges.php:1603 tbl_structure.php:462 +#: server_privileges.php:573 server_privileges.php:1623 tbl_structure.php:460 msgid "Uncheck All" msgstr "Tout décocher" -#: db_structure.php:536 +#: db_structure.php:534 msgid "Check tables having overhead" msgstr "Cocher tables avec pertes" -#: db_structure.php:547 db_structure.php:548 db_structure.php:599 +#: db_structure.php:545 db_structure.php:546 db_structure.php:597 #: libraries/display_tbl.lib.php:2180 libraries/mult_submits.inc.php:28 -#: tbl_structure.php:492 tbl_structure.php:494 +#: tbl_structure.php:490 tbl_structure.php:492 msgid "Print view" msgstr "Version imprimable" -#: db_structure.php:549 db_structure.php:550 libraries/mult_submits.inc.php:42 +#: db_structure.php:547 db_structure.php:548 libraries/mult_submits.inc.php:42 #: tbl_operations.php:581 msgid "Check table" msgstr "Vérifier la table" -#: db_structure.php:551 db_structure.php:552 libraries/mult_submits.inc.php:47 -#: tbl_operations.php:621 tbl_structure.php:709 tbl_structure.php:711 +#: db_structure.php:549 db_structure.php:550 libraries/mult_submits.inc.php:47 +#: tbl_operations.php:621 tbl_structure.php:707 tbl_structure.php:709 msgid "Optimize table" msgstr "Optimiser la table" -#: db_structure.php:553 db_structure.php:554 libraries/mult_submits.inc.php:52 +#: db_structure.php:551 db_structure.php:552 libraries/mult_submits.inc.php:52 #: tbl_operations.php:611 msgid "Repair table" msgstr "Réparer la table" -#: db_structure.php:555 db_structure.php:556 libraries/mult_submits.inc.php:57 +#: db_structure.php:553 db_structure.php:554 libraries/mult_submits.inc.php:57 #: tbl_operations.php:601 msgid "Analyze table" msgstr "Analyser la table" -#: db_structure.php:557 db_structure.php:558 libraries/db_links.inc.php:71 +#: db_structure.php:555 db_structure.php:556 libraries/db_links.inc.php:71 #: 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:1380 +#: libraries/server_links.inc.php:85 libraries/tbl_links.inc.php:82 +#: pmd_pdf.php:84 pmd_pdf.php:109 server_privileges.php:1397 #: setup/frames/menu.inc.php:22 tbl_row_action.php:59 msgid "Export" msgstr "Exporter" -#: db_structure.php:606 libraries/display_pdf_schema.lib.php:44 +#: db_structure.php:604 libraries/display_pdf_schema.lib.php:44 msgid "Data Dictionary" msgstr "Dictionnaire de données" @@ -706,10 +702,10 @@ msgstr "Tables faisant l'objet d'un suivi" #: db_tracking.php:71 libraries/export/htmlword.php:86 #: libraries/export/latex.php:148 libraries/export/odt.php:113 #: libraries/export/sql.php:342 libraries/export/texytext.php:84 -#: libraries/export/xml.php:255 libraries/header.inc.php:106 +#: libraries/export/xml.php:255 libraries/header.inc.php:110 #: libraries/header_printview.inc.php:58 server_databases.php:169 -#: server_privileges.php:1660 server_privileges.php:1721 -#: server_privileges.php:1979 server_processlist.php:56 +#: server_privileges.php:1680 server_privileges.php:1741 +#: server_privileges.php:1999 server_processlist.php:56 #: server_synchronize.php:1179 server_synchronize.php:1183 #: tbl_tracking.php:591 test/theme.php:65 msgid "Database" @@ -729,8 +725,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:1542 server_privileges.php:1725 -#: server_privileges.php:2073 tbl_structure.php:187 +#: server_privileges.php:1562 server_privileges.php:1745 +#: server_privileges.php:2094 tbl_structure.php:187 msgid "Action" msgstr "Action" @@ -764,8 +760,8 @@ msgstr "Instantané" msgid "Untracked tables" msgstr "Tables ne faisant pas l'objet d'un suivi" -#: db_tracking.php:172 db_tracking.php:174 tbl_structure.php:528 -#: tbl_structure.php:530 +#: db_tracking.php:172 db_tracking.php:174 tbl_structure.php:526 +#: tbl_structure.php:528 msgid "Track table" msgstr "Suivre la table" @@ -941,316 +937,365 @@ 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:1236 user_password.php:70 +#: js/messages.php:44 server_privileges.php:1241 user_password.php:70 msgid "The password is empty!" msgstr "Le mot de passe est vide" -#: js/messages.php:45 server_privileges.php:1234 user_password.php:73 +#: js/messages.php:45 server_privileges.php:1239 user_password.php:73 msgid "The passwords aren't the same!" msgstr "Les mots de passe doivent être identiques" -#: js/messages.php:49 pmd_general.php:342 pmd_general.php:379 +#: js/messages.php:46 +#, fuzzy +#| msgid "Add a new User" +msgid "Add a New User" +msgstr "Ajouter un utilisateur" + +#: js/messages.php:47 js/messages.php:54 pmd_general.php:342 +#: pmd_general.php:379 msgid "Cancel" msgstr "Annuler" -#: js/messages.php:52 pmd_save_pos.php:54 +#: js/messages.php:48 +#, fuzzy +#| msgid "Create version" +msgid "Create User" +msgstr "Créer une version" + +#: js/messages.php:49 +#, fuzzy +#| msgid "Reloading the privileges" +msgid "Reloading Privileges" +msgstr "Chargement des privilèges en cours." + +#: js/messages.php:50 +#, fuzzy +#| msgid "Remove selected users" +msgid "Removing Selected Users" +msgstr "Effacer les utilisateurs sélectionnés." + +#: js/messages.php:57 +#, fuzzy +#| msgid "Load" +msgid "Loading" +msgstr "Charger" + +#: js/messages.php:58 +#, fuzzy +#| msgid "Processes" +msgid "Processing Request" +msgstr "Processus" + +#: js/messages.php:59 +msgid "Error in Processing Request" +msgstr "" + +#: js/messages.php:60 +msgid "Dropping Column" +msgstr "" + +#: js/messages.php:61 +msgid "Adding Primary Key" +msgstr "" + +#: js/messages.php:64 pmd_save_pos.php:54 msgid "Modifications have been saved" msgstr "Les modifications ont été sauvegardées." -#: js/messages.php:53 pmd_relation_upd.php:49 +#: js/messages.php:65 pmd_relation_upd.php:49 msgid "Relation deleted" msgstr "Relation supprimée" -#: js/messages.php:54 pmd_relation_new.php:64 +#: js/messages.php:66 pmd_relation_new.php:64 msgid "FOREIGN KEY relation added" msgstr "Relation de type FOREIGN KEY ajoutée" -#: js/messages.php:55 pmd_relation_new.php:86 +#: js/messages.php:67 pmd_relation_new.php:86 msgid "Internal relation added" msgstr "Relation interne ajoutée" -#: js/messages.php:56 pmd_relation_new.php:63 pmd_relation_new.php:88 +#: js/messages.php:68 pmd_relation_new.php:63 pmd_relation_new.php:88 msgid "Error: Relation not added." msgstr "Erreur: relation non ajoutée." -#: js/messages.php:57 pmd_relation_new.php:31 +#: js/messages.php:69 pmd_relation_new.php:31 msgid "Error: relation already exists." msgstr "Erreur: relation déjà existante." -#: js/messages.php:58 +#: js/messages.php:70 msgid "Error saving coordinates for Designer." msgstr "Erreur lors de la sauvegarde des coordonnées Concepteur." -#: js/messages.php:59 libraries/relation.lib.php:107 +#: js/messages.php:71 libraries/relation.lib.php:107 #: libraries/relation.lib.php:119 msgid "General relation features" msgstr "Fonctions relationnelles" -#: js/messages.php:59 libraries/relation.lib.php:101 +#: js/messages.php:71 libraries/relation.lib.php:101 #: libraries/relation.lib.php:108 msgid "Disabled" msgstr "désactivé" -#: js/messages.php:60 +#: js/messages.php:72 msgid "Select referenced key" msgstr "Sélectionnez la clé référencée" -#: js/messages.php:61 +#: js/messages.php:73 msgid "Select Foreign Key" msgstr "Choisissez la clé étrangère" -#: js/messages.php:62 +#: js/messages.php:74 msgid "Please select the primary key or a unique key" msgstr "Veuillez choisir la clé primaire ou un index unique" -#: js/messages.php:63 pmd_general.php:77 tbl_relation.php:548 +#: js/messages.php:75 pmd_general.php:77 tbl_relation.php:548 msgid "Choose column to display" msgstr "Colonne descriptive" #. l10n: Display text for calendar close link -#: js/messages.php:73 +#: js/messages.php:85 msgid "Done" msgstr "Fermer" #. l10n: Display text for previous month link in calendar -#: js/messages.php:75 +#: js/messages.php:87 msgid "Prev" msgstr "Précédent" #. l10n: Display text for next month link in calendar -#: js/messages.php:77 libraries/common.lib.php:2353 -#: libraries/common.lib.php:2356 libraries/display_tbl.lib.php:338 +#: js/messages.php:89 libraries/common.lib.php:2357 +#: libraries/common.lib.php:2360 libraries/display_tbl.lib.php:338 #: server_binlog.php:205 server_binlog.php:207 tbl_printview.php:424 -#: tbl_structure.php:801 +#: tbl_structure.php:799 msgid "Next" msgstr "Suivant" #. l10n: Display text for current month link in calendar -#: js/messages.php:79 +#: js/messages.php:91 msgid "Today" msgstr "Aujourd'hui" -#: js/messages.php:82 +#: js/messages.php:94 msgid "January" msgstr "Janvier" -#: js/messages.php:83 +#: js/messages.php:95 msgid "February" msgstr "Février" -#: js/messages.php:84 +#: js/messages.php:96 msgid "March" msgstr "Mars" -#: js/messages.php:85 +#: js/messages.php:97 msgid "April" msgstr "Avril" -#: js/messages.php:86 +#: js/messages.php:98 msgid "May" msgstr "Mai" -#: js/messages.php:87 +#: js/messages.php:99 msgid "June" msgstr "Juin" -#: js/messages.php:88 +#: js/messages.php:100 msgid "July" msgstr "Juillet" -#: js/messages.php:89 +#: js/messages.php:101 msgid "August" msgstr "Août" -#: js/messages.php:90 +#: js/messages.php:102 msgid "September" msgstr "Septembre" -#: js/messages.php:91 +#: js/messages.php:103 msgid "October" msgstr "Octobre" -#: js/messages.php:92 +#: js/messages.php:104 msgid "November" msgstr "Novembre" -#: js/messages.php:93 +#: js/messages.php:105 msgid "December" msgstr "Décembre" #. l10n: Short month name -#: js/messages.php:97 libraries/common.lib.php:1557 +#: js/messages.php:109 libraries/common.lib.php:1557 msgid "Jan" msgstr "Janvier" #. l10n: Short month name -#: js/messages.php:99 libraries/common.lib.php:1559 +#: js/messages.php:111 libraries/common.lib.php:1559 msgid "Feb" msgstr "Février" #. l10n: Short month name -#: js/messages.php:101 libraries/common.lib.php:1561 +#: js/messages.php:113 libraries/common.lib.php:1561 msgid "Mar" msgstr "Mars" #. l10n: Short month name -#: js/messages.php:103 libraries/common.lib.php:1563 +#: js/messages.php:115 libraries/common.lib.php:1563 msgid "Apr" msgstr "Avril" #. l10n: Short month name -#: js/messages.php:105 libraries/common.lib.php:1565 +#: js/messages.php:117 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:1567 +#: js/messages.php:119 libraries/common.lib.php:1567 msgid "Jun" msgstr "Juin" #. l10n: Short month name -#: js/messages.php:109 libraries/common.lib.php:1569 +#: js/messages.php:121 libraries/common.lib.php:1569 msgid "Jul" msgstr "Juillet" #. l10n: Short month name -#: js/messages.php:111 libraries/common.lib.php:1571 +#: js/messages.php:123 libraries/common.lib.php:1571 msgid "Aug" msgstr "Août" #. l10n: Short month name -#: js/messages.php:113 libraries/common.lib.php:1573 +#: js/messages.php:125 libraries/common.lib.php:1573 msgid "Sep" msgstr "Septembre" #. l10n: Short month name -#: js/messages.php:115 libraries/common.lib.php:1575 +#: js/messages.php:127 libraries/common.lib.php:1575 msgid "Oct" msgstr "Octobre" #. l10n: Short month name -#: js/messages.php:117 libraries/common.lib.php:1577 +#: js/messages.php:129 libraries/common.lib.php:1577 msgid "Nov" msgstr "Novembre" #. l10n: Short month name -#: js/messages.php:119 libraries/common.lib.php:1579 +#: js/messages.php:131 libraries/common.lib.php:1579 msgid "Dec" msgstr "Décembre" -#: js/messages.php:122 +#: js/messages.php:134 msgid "Sunday" msgstr "Dimanche" -#: js/messages.php:123 +#: js/messages.php:135 msgid "Monday" msgstr "Lundi" -#: js/messages.php:124 +#: js/messages.php:136 msgid "Tuesday" msgstr "Mardi" -#: js/messages.php:125 +#: js/messages.php:137 msgid "Wednesday" msgstr "Mercredi" -#: js/messages.php:126 +#: js/messages.php:138 msgid "Thursday" msgstr "Jeudi" -#: js/messages.php:127 +#: js/messages.php:139 msgid "Friday" msgstr "Vendredi" -#: js/messages.php:128 +#: js/messages.php:140 msgid "Saturday" msgstr "Samedi" #. l10n: Short week day name -#: js/messages.php:132 libraries/common.lib.php:1582 +#: js/messages.php:144 libraries/common.lib.php:1582 msgid "Sun" msgstr "Dim" #. l10n: Short week day name -#: js/messages.php:134 libraries/common.lib.php:1584 +#: js/messages.php:146 libraries/common.lib.php:1584 msgid "Mon" msgstr "Lun" #. l10n: Short week day name -#: js/messages.php:136 libraries/common.lib.php:1586 +#: js/messages.php:148 libraries/common.lib.php:1586 msgid "Tue" msgstr "Mar" #. l10n: Short week day name -#: js/messages.php:138 libraries/common.lib.php:1588 +#: js/messages.php:150 libraries/common.lib.php:1588 msgid "Wed" msgstr "Mer" #. l10n: Short week day name -#: js/messages.php:140 libraries/common.lib.php:1590 +#: js/messages.php:152 libraries/common.lib.php:1590 msgid "Thu" msgstr "Jeu" #. l10n: Short week day name -#: js/messages.php:142 libraries/common.lib.php:1592 +#: js/messages.php:154 libraries/common.lib.php:1592 msgid "Fri" msgstr "Ven" #. l10n: Short week day name -#: js/messages.php:144 libraries/common.lib.php:1594 +#: js/messages.php:156 libraries/common.lib.php:1594 msgid "Sat" msgstr "Sam" #. l10n: Minimal week day name -#: js/messages.php:148 +#: js/messages.php:160 msgid "Su" msgstr "Di" #. l10n: Minimal week day name -#: js/messages.php:150 +#: js/messages.php:162 msgid "Mo" msgstr "Lu" #. l10n: Minimal week day name -#: js/messages.php:152 +#: js/messages.php:164 msgid "Tu" msgstr "Ma" #. l10n: Minimal week day name -#: js/messages.php:154 +#: js/messages.php:166 msgid "We" msgstr "Me" #. l10n: Minimal week day name -#: js/messages.php:156 +#: js/messages.php:168 msgid "Th" msgstr "Je" #. l10n: Minimal week day name -#: js/messages.php:158 +#: js/messages.php:170 msgid "Fr" msgstr "Ve" #. l10n: Minimal week day name -#: js/messages.php:160 +#: js/messages.php:172 msgid "Sa" msgstr "Sa" #. l10n: Column header for week of the year in calendar -#: js/messages.php:162 +#: js/messages.php:174 msgid "Wk" msgstr "Sem" -#: js/messages.php:164 +#: js/messages.php:176 msgid "Hour" msgstr "Heure" -#: js/messages.php:165 +#: js/messages.php:177 msgid "Minute" msgstr "Minute" -#: js/messages.php:166 +#: js/messages.php:178 msgid "Second" msgstr "Seconde" @@ -1311,7 +1356,7 @@ msgstr "Index" #: libraries/Index.class.php:444 libraries/mult_submits.inc.php:103 #: libraries/tbl_properties.inc.php:519 tbl_structure.php:33 -#: tbl_structure.php:155 tbl_structure.php:159 tbl_structure.php:474 +#: tbl_structure.php:155 tbl_structure.php:159 tbl_structure.php:472 #: tbl_tracking.php:322 msgid "Unique" msgstr "Unique" @@ -1354,8 +1399,8 @@ msgstr "" "Les index %1$s et %2$s semblent identiques et l'un d'eux pourrait être " "supprimé." -#: libraries/List_Database.class.php:431 libraries/server_links.inc.php:41 -#: server_databases.php:88 server_privileges.php:1660 +#: libraries/List_Database.class.php:431 libraries/server_links.inc.php:42 +#: server_databases.php:88 server_privileges.php:1680 #: setup/lib/messages.inc.php:110 test/theme.php:93 msgid "Databases" msgstr "Bases de données" @@ -1527,7 +1572,7 @@ msgstr "Mot de passe :" msgid "Server Choice" msgstr "Choix du serveur" -#: libraries/auth/cookie.auth.lib.php:320 libraries/header.inc.php:59 +#: libraries/auth/cookie.auth.lib.php:320 libraries/header.inc.php:63 msgid "Cookies must be enabled past this point." msgstr "Vous devez accepter les cookies pour poursuivre." @@ -1610,7 +1655,7 @@ msgstr "" "ces extensions semblent chargées. Veuillez vérifier votre configuration de " "PHP." -#: libraries/common.inc.php:583 +#: libraries/common.inc.php:587 msgid "" "phpMyAdmin was unable to read your configuration file!
This might " "happen if PHP finds a parse error in it or PHP cannot find the file.
Si vous recevez une page blanche, aucune erreur " "n'a été détectée." -#: libraries/common.inc.php:594 +#: libraries/common.inc.php:598 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "Chargement de la configuration par défaut impossible depuis %1$s" # OK -#: libraries/common.inc.php:599 +#: libraries/common.inc.php:603 msgid "" "The $cfg['PmaAbsoluteUri'] directive MUST be set in your " "configuration file!" @@ -1640,30 +1685,30 @@ msgstr "" "Le paramètre $cfg['PmaAbsoluteUri'] DOIT être renseigné dans votre " "fichier de configuration !" -#: libraries/common.inc.php:629 +#: libraries/common.inc.php:633 #, php-format msgid "Invalid server index: %s" msgstr "Indice de serveur invalide: %s" -#: libraries/common.inc.php:636 +#: libraries/common.inc.php:640 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" "Nom d'hôte (hostname) invalide pour le serveur %1$s. Veuillez vérifier votre " "configuration." -#: libraries/common.inc.php:645 libraries/header.inc.php:96 +#: libraries/common.inc.php:649 libraries/header.inc.php:100 #: libraries/select_server.lib.php:41 libraries/select_server.lib.php:47 #: main.php:185 test/theme.php:57 msgid "Server" msgstr "Serveur" -#: libraries/common.inc.php:823 +#: libraries/common.inc.php:827 msgid "Invalid authentication method set in configuration:" msgstr "" "Le fichier de configuration contient un type d'authentification invalide :" -#: libraries/common.inc.php:926 +#: libraries/common.inc.php:930 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Vous devriez utiliser %s en version %s ou plus récente." @@ -1794,45 +1839,45 @@ msgstr "," msgid "%B %d, %Y at %I:%M %p" msgstr "%A %d %B %Y à %H:%M" -#: libraries/common.lib.php:1907 +#: libraries/common.lib.php:1911 #, 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:2322 libraries/common.lib.php:2325 +#: libraries/common.lib.php:2326 libraries/common.lib.php:2329 #: libraries/display_tbl.lib.php:290 server_status.php:719 msgid "Begin" msgstr "Début" -#: libraries/common.lib.php:2323 libraries/common.lib.php:2326 +#: libraries/common.lib.php:2327 libraries/common.lib.php:2330 #: libraries/display_tbl.lib.php:291 server_binlog.php:168 #: server_binlog.php:170 msgid "Previous" msgstr "Précédent" -#: libraries/common.lib.php:2354 libraries/common.lib.php:2357 +#: libraries/common.lib.php:2358 libraries/common.lib.php:2361 #: libraries/display_tbl.lib.php:353 msgid "End" msgstr "Fin" -#: libraries/common.lib.php:2430 +#: libraries/common.lib.php:2434 #, php-format msgid "Jump to database "%s"." msgstr "Aller à la base de données "%s"." -#: libraries/common.lib.php:2450 +#: libraries/common.lib.php:2454 #, 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:2830 libraries/common.lib.php:2837 +#: libraries/common.lib.php:2834 libraries/common.lib.php:2841 #: libraries/db_links.inc.php:68 libraries/export/sql.php:25 -#: libraries/import/sql.php:18 libraries/server_links.inc.php:45 +#: libraries/import/sql.php:18 libraries/server_links.inc.php:46 #: libraries/tbl_links.inc.php:60 querywindow.php:99 test/theme.php:97 msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2839 libraries/db_links.inc.php:104 +#: libraries/common.lib.php:2843 libraries/db_links.inc.php:104 #: libraries/tbl_links.inc.php:95 libraries/tbl_links.inc.php:117 #: view_operations.php:89 msgid "Operations" @@ -1881,15 +1926,15 @@ msgstr "Requête" msgid "Designer" msgstr "Concepteur" -#: libraries/db_links.inc.php:98 libraries/server_links.inc.php:88 +#: libraries/db_links.inc.php:98 libraries/server_links.inc.php:89 #: libraries/tbl_links.inc.php:91 pmd_pdf.php:84 pmd_pdf.php:110 #: setup/frames/menu.inc.php:21 msgid "Import" msgstr "Importer" -#: libraries/db_links.inc.php:111 libraries/server_links.inc.php:66 -#: server_privileges.php:111 server_privileges.php:1722 -#: server_privileges.php:2071 test/theme.php:117 +#: libraries/db_links.inc.php:111 libraries/server_links.inc.php:67 +#: server_privileges.php:112 server_privileges.php:1742 +#: server_privileges.php:2092 test/theme.php:117 msgid "Privileges" msgstr "Privilèges" @@ -1910,7 +1955,7 @@ msgstr "" "FAQ 3.11[/a]" #: libraries/db_structure.lib.php:69 server_databases.php:142 -#: tbl_printview.php:336 tbl_structure.php:682 +#: tbl_printview.php:336 tbl_structure.php:680 msgid "Overhead" msgstr "Perte" @@ -1930,7 +1975,7 @@ msgstr "" "(ou l'interface de connexion (socket) vers le serveur MySQL local n'est pas " "correctement configurée)" -#: libraries/dbi/mysql.dbi.lib.php:362 tbl_structure.php:608 +#: libraries/dbi/mysql.dbi.lib.php:362 tbl_structure.php:606 msgid "Details..." msgstr "Détails..." @@ -1940,22 +1985,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:807 +#: libraries/replication_gui.lib.php:345 server_privileges.php:808 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:796 -#: server_privileges.php:800 server_privileges.php:811 -#: server_privileges.php:1538 server_synchronize.php:1175 +#: libraries/replication_gui.lib.php:349 server_privileges.php:797 +#: server_privileges.php:801 server_privileges.php:812 +#: server_privileges.php:1558 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:815 server_privileges.php:818 +#: server_privileges.php:816 server_privileges.php:819 msgid "Re-type" msgstr "Entrer à nouveau" @@ -1968,12 +2013,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:822 +#: libraries/replication_gui.lib.php:360 server_privileges.php:823 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:825 +#: libraries/replication_gui.lib.php:363 server_privileges.php:826 msgid "Generate" msgstr "Générer" @@ -1986,8 +2031,8 @@ msgstr "Créer une base de données" msgid "Create" msgstr "Créer" -#: libraries/display_create_database.lib.php:40 server_privileges.php:113 -#: server_privileges.php:1427 server_replication.php:35 +#: libraries/display_create_database.lib.php:40 server_privileges.php:114 +#: server_privileges.php:1447 server_replication.php:35 msgid "No Privileges" msgstr "aucun privilège" @@ -2073,7 +2118,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:1875 server_processlist.php:75 +#: server_privileges.php:1895 server_processlist.php:75 msgid "None" msgstr "aucune" @@ -2265,7 +2310,7 @@ msgstr "Trier sur l'index" #: libraries/import/docsql.php:34 libraries/import/ldi.php:47 #: libraries/import/ods.php:30 libraries/import/sql.php:20 #: libraries/import/xls.php:26 libraries/import/xlsx.php:26 -#: libraries/import/xml.php:25 tbl_select.php:267 tbl_structure.php:753 +#: libraries/import/xml.php:25 tbl_select.php:267 tbl_structure.php:751 msgid "Options" msgstr "Options" @@ -2340,7 +2385,7 @@ msgstr "Traitement en %01.4f sec." #: libraries/display_tbl.lib.php:2089 libraries/mult_submits.inc.php:113 #: querywindow.php:125 querywindow.php:129 querywindow.php:132 -#: tbl_structure.php:25 tbl_structure.php:150 tbl_structure.php:470 +#: tbl_structure.php:25 tbl_structure.php:150 tbl_structure.php:468 msgid "Change" msgstr "Modifier" @@ -2410,7 +2455,7 @@ msgstr "Utilisation de la mémoire-tampon" #: libraries/engines/innodb.lib.php:194 server_databases.php:137 #: server_databases.php:305 server_status.php:525 server_status.php:586 -#: server_status.php:607 tbl_printview.php:351 tbl_structure.php:696 +#: server_status.php:607 tbl_printview.php:351 tbl_structure.php:694 msgid "Total" msgstr "Total" @@ -2703,7 +2748,7 @@ msgstr "" "plus anciens sont détruits, sinon ils sont renommés." #: libraries/export/codegen.php:37 setup/lib/messages.inc.php:88 -#: tbl_printview.php:376 tbl_structure.php:737 +#: tbl_printview.php:376 tbl_structure.php:735 msgid "Format" msgstr "format" @@ -2767,8 +2812,8 @@ 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:576 server_replication.php:316 tbl_printview.php:317 -#: tbl_structure.php:665 +#: server_privileges.php:577 server_replication.php:316 tbl_printview.php:317 +#: tbl_structure.php:663 msgid "Data" msgstr "Données" @@ -2817,9 +2862,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:731 -#: server_privileges.php:734 server_privileges.php:790 -#: server_privileges.php:1537 server_privileges.php:2069 +#: libraries/replication_gui.lib.php:329 server_privileges.php:732 +#: server_privileges.php:735 server_privileges.php:791 +#: server_privileges.php:1557 server_privileges.php:2090 #: server_processlist.php:55 server_synchronize.php:1159 msgid "Host" msgstr "Serveur" @@ -3013,7 +3058,7 @@ msgstr "Exporter le contenu" msgid "Open new phpMyAdmin window" msgstr "Ouvrir une nouvelle fenêtre phpMyAdmin" -#: libraries/header.inc.php:115 +#: libraries/header.inc.php:119 msgid "New table" msgstr "Nouvelle table" @@ -3172,20 +3217,20 @@ msgstr "Conversion en kana" #: 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 +#: tbl_structure.php:471 msgid "Primary" msgstr "Primaire" #: libraries/mult_submits.inc.php:98 libraries/tbl_properties.inc.php:116 #: libraries/tbl_properties.inc.php:525 tbl_printview.php:326 #: tbl_structure.php:31 tbl_structure.php:154 tbl_structure.php:158 -#: tbl_structure.php:475 tbl_structure.php:673 +#: tbl_structure.php:473 tbl_structure.php:671 msgid "Index" msgstr "Index" #: libraries/mult_submits.inc.php:108 libraries/tbl_properties.inc.php:531 #: tbl_structure.php:35 tbl_structure.php:156 tbl_structure.php:160 -#: tbl_structure.php:478 +#: tbl_structure.php:476 msgid "Fulltext" msgstr "Texte entier" @@ -3496,8 +3541,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:711 -#: server_privileges.php:714 server_privileges.php:721 +#: libraries/replication_gui.lib.php:259 server_privileges.php:712 +#: server_privileges.php:715 server_privileges.php:722 #: server_synchronize.php:1171 msgid "User name" msgstr "Nom d'utilisateur" @@ -3521,7 +3566,7 @@ msgstr "Variable" #: 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 +#: tbl_structure.php:727 msgid "Value" msgstr "Valeur" @@ -3541,34 +3586,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:716 +#: libraries/replication_gui.lib.php:254 server_privileges.php:717 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:717 -#: server_privileges.php:784 server_privileges.php:808 -#: server_privileges.php:1928 server_privileges.php:1958 +#: libraries/replication_gui.lib.php:346 server_privileges.php:718 +#: server_privileges.php:785 server_privileges.php:809 +#: server_privileges.php:1948 server_privileges.php:1978 msgid "Use text field" msgstr "Entrez une valeur" -#: libraries/replication_gui.lib.php:302 server_privileges.php:764 +#: libraries/replication_gui.lib.php:302 server_privileges.php:765 msgid "Any host" msgstr "Tout serveur" -#: libraries/replication_gui.lib.php:306 server_privileges.php:768 +#: libraries/replication_gui.lib.php:306 server_privileges.php:769 msgid "Local" msgstr "Local" -#: libraries/replication_gui.lib.php:312 server_privileges.php:773 +#: libraries/replication_gui.lib.php:312 server_privileges.php:774 msgid "This Host" msgstr "Ce serveur" -#: libraries/replication_gui.lib.php:318 server_privileges.php:779 +#: libraries/replication_gui.lib.php:318 server_privileges.php:780 msgid "Use Host Table" msgstr "Utiliser la table Host" -#: libraries/replication_gui.lib.php:331 server_privileges.php:792 +#: libraries/replication_gui.lib.php:331 server_privileges.php:793 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -3604,29 +3649,29 @@ msgstr "Langue inconnue: %1$s." msgid "Servers" msgstr "Serveurs" -#: libraries/server_links.inc.php:53 server_engines.php:112 +#: libraries/server_links.inc.php:54 server_engines.php:112 #: server_engines.php:116 server_status.php:415 test/theme.php:105 msgid "Variables" msgstr "Variables" -#: libraries/server_links.inc.php:57 test/theme.php:109 +#: libraries/server_links.inc.php:58 test/theme.php:109 msgid "Charsets" msgstr "Jeux de caractères" -#: libraries/server_links.inc.php:61 test/theme.php:113 +#: libraries/server_links.inc.php:62 test/theme.php:113 msgid "Engines" msgstr "Moteurs" -#: libraries/server_links.inc.php:76 server_binlog.php:110 +#: libraries/server_links.inc.php:77 server_binlog.php:110 #: server_status.php:364 test/theme.php:121 msgid "Binary log" msgstr "Log binaire" -#: libraries/server_links.inc.php:80 +#: libraries/server_links.inc.php:81 msgid "Processes" msgstr "Processus" -#: libraries/server_links.inc.php:92 server_synchronize.php:1092 +#: libraries/server_links.inc.php:93 server_synchronize.php:1092 #: server_synchronize.php:1100 msgid "Synchronize" msgstr "Synchroniser" @@ -3864,12 +3909,12 @@ msgstr "Définition de PARTITION" msgid "Save" msgstr "Sauvegarder" -#: libraries/tbl_properties.inc.php:780 tbl_structure.php:542 +#: libraries/tbl_properties.inc.php:780 tbl_structure.php:540 #, php-format msgid "Add %s column(s)" msgstr "Ajouter %s colonne(s)" -#: libraries/tbl_properties.inc.php:784 tbl_structure.php:536 +#: libraries/tbl_properties.inc.php:784 tbl_structure.php:534 msgid "You have to add at least one column." msgstr "Vous devez ajouter au moins une colonne." @@ -4045,8 +4090,8 @@ msgstr "Réinitialiser" msgid "Protocol version" msgstr "Version du protocole" -#: main.php:189 server_privileges.php:1389 server_privileges.php:1536 -#: server_privileges.php:1650 server_privileges.php:2068 +#: main.php:189 server_privileges.php:1406 server_privileges.php:1556 +#: server_privileges.php:1670 server_privileges.php:2089 #: server_processlist.php:54 msgid "User" msgstr "Utilisateur" @@ -4491,123 +4536,123 @@ msgstr "Moteurs de stockage" msgid "View dump (schema) of databases" msgstr "Schéma et/ou contenu des bases de données" -#: server_privileges.php:24 server_privileges.php:266 +#: server_privileges.php:25 server_privileges.php:267 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 +#: server_privileges.php:26 server_privileges.php:193 +#: server_privileges.php:516 msgid "Allows altering the structure of existing tables." msgstr "Permission de modifier la structure des tables existantes." -#: server_privileges.php:26 server_privileges.php:208 -#: server_privileges.php:521 +#: server_privileges.php:27 server_privileges.php:209 +#: server_privileges.php:522 msgid "Allows altering and dropping stored routines." msgstr "Permission de modifier et de supprimer des procédures stockées." -#: server_privileges.php:27 server_privileges.php:184 -#: server_privileges.php:514 +#: server_privileges.php:28 server_privileges.php:185 +#: server_privileges.php:515 msgid "Allows creating new databases and tables." msgstr "Permission de créer des bases de données et des tables." -#: server_privileges.php:28 server_privileges.php:207 -#: server_privileges.php:520 +#: server_privileges.php:29 server_privileges.php:208 +#: server_privileges.php:521 msgid "Allows creating stored routines." msgstr "Permission de créer des procédures stockées." -#: server_privileges.php:29 server_privileges.php:514 +#: server_privileges.php:30 server_privileges.php:515 msgid "Allows creating new tables." msgstr "Permission de créer des tables." -#: server_privileges.php:30 server_privileges.php:195 -#: server_privileges.php:518 +#: server_privileges.php:31 server_privileges.php:196 +#: server_privileges.php:519 msgid "Allows creating temporary tables." msgstr "Permission de créer des tables temporaires." -#: server_privileges.php:31 server_privileges.php:209 -#: server_privileges.php:554 +#: server_privileges.php:32 server_privileges.php:210 +#: server_privileges.php:555 msgid "Allows creating, dropping and renaming user accounts." msgstr "Permission de créer, supprimer et renommer des comptes utilisateurs" -#: server_privileges.php:32 server_privileges.php:199 -#: server_privileges.php:203 server_privileges.php:526 -#: server_privileges.php:530 +#: server_privileges.php:33 server_privileges.php:200 +#: server_privileges.php:204 server_privileges.php:527 +#: server_privileges.php:531 msgid "Allows creating new views." msgstr "Permission de créer des vues." -#: server_privileges.php:33 server_privileges.php:183 -#: server_privileges.php:506 +#: server_privileges.php:34 server_privileges.php:184 +#: server_privileges.php:507 msgid "Allows deleting data." msgstr "Permission de détruire des données" -#: server_privileges.php:34 server_privileges.php:185 -#: server_privileges.php:517 +#: server_privileges.php:35 server_privileges.php:186 +#: server_privileges.php:518 msgid "Allows dropping databases and tables." msgstr "Permission d'effacer des bases de données et des tables." -#: server_privileges.php:35 server_privileges.php:517 +#: server_privileges.php:36 server_privileges.php:518 msgid "Allows dropping tables." msgstr "Permission d'effacer des tables." -#: server_privileges.php:36 server_privileges.php:200 -#: server_privileges.php:534 +#: server_privileges.php:37 server_privileges.php:201 +#: server_privileges.php:535 msgid "Allows to set up events for the event scheduler" msgstr "" "Permission de mettre en place des événements pour le programmateur " "d'événements" -#: server_privileges.php:37 server_privileges.php:210 -#: server_privileges.php:522 +#: server_privileges.php:38 server_privileges.php:211 +#: server_privileges.php:523 msgid "Allows executing stored routines." msgstr "Permission d'exécuter des procédures stockées" -#: server_privileges.php:38 server_privileges.php:189 -#: server_privileges.php:509 +#: server_privileges.php:39 server_privileges.php:190 +#: server_privileges.php:510 msgid "Allows importing data from and exporting data into files." msgstr "" "Permission d'importer et d'exporter des données à partir de / dans des " "fichiers." -#: server_privileges.php:39 server_privileges.php:540 +#: server_privileges.php:40 server_privileges.php:541 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "Permission d'ajouter des utilisateurs et des privilèges sans avoir besoin de " "recharger les privilèges." -#: server_privileges.php:40 server_privileges.php:191 -#: server_privileges.php:516 +#: server_privileges.php:41 server_privileges.php:192 +#: server_privileges.php:517 msgid "Allows creating and dropping indexes." msgstr "Permission de créer et d'effacer des index." -#: server_privileges.php:41 server_privileges.php:181 -#: server_privileges.php:442 server_privileges.php:504 +#: server_privileges.php:42 server_privileges.php:182 +#: server_privileges.php:443 server_privileges.php:505 msgid "Allows inserting and replacing data." msgstr "Permission d'ajouter et de remplacer des données" -#: server_privileges.php:42 server_privileges.php:196 -#: server_privileges.php:549 +#: server_privileges.php:43 server_privileges.php:197 +#: server_privileges.php:550 msgid "Allows locking tables for the current thread." msgstr "" "Permission de verrouiller des enregistrements dans le fil courant (unité " "d'exécution)." -#: server_privileges.php:43 server_privileges.php:646 -#: server_privileges.php:648 +#: server_privileges.php:44 server_privileges.php:647 +#: server_privileges.php:649 msgid "Limits the number of new connections the user may open per hour." msgstr "" "Limite du nombre de nouvelles connexions qu'un utilisateur peut démarrer, " "par heure." -#: server_privileges.php:44 server_privileges.php:634 -#: server_privileges.php:636 +#: server_privileges.php:45 server_privileges.php:635 +#: server_privileges.php:637 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" "Limite du nombre de requêtes qu'un utilisateur peut envoyer au serveur, par " "heure." -#: server_privileges.php:45 server_privileges.php:640 -#: server_privileges.php:642 +#: server_privileges.php:46 server_privileges.php:641 +#: server_privileges.php:643 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -4615,63 +4660,63 @@ msgstr "" "Limite du nombre de commandes changeant une table ou base de données, qu'un " "utilisateur peut exécuter, par heure." -#: server_privileges.php:46 server_privileges.php:652 -#: server_privileges.php:654 +#: server_privileges.php:47 server_privileges.php:653 +#: server_privileges.php:655 msgid "Limits the number of simultaneous connections the user may have." msgstr "" "Limite le nombre de connexions simultanées autorisées pour un utilisateur." -#: server_privileges.php:47 server_privileges.php:188 -#: server_privileges.php:544 +#: server_privileges.php:48 server_privileges.php:189 +#: server_privileges.php:545 msgid "Allows viewing processes of all users" msgstr "Permission de voir les processus de tous les utilisateurs" -#: server_privileges.php:48 server_privileges.php:190 -#: server_privileges.php:448 server_privileges.php:550 +#: server_privileges.php:49 server_privileges.php:191 +#: server_privileges.php:449 server_privileges.php:551 msgid "Has no effect in this MySQL version." msgstr "Non effectif dans cette version de MySQL." -#: server_privileges.php:49 server_privileges.php:186 -#: server_privileges.php:545 +#: server_privileges.php:50 server_privileges.php:187 +#: server_privileges.php:546 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" "Permission de recharger les réglages du serveur, et de vidanger la mémoire " "cache." -#: server_privileges.php:50 server_privileges.php:198 -#: server_privileges.php:552 +#: server_privileges.php:51 server_privileges.php:199 +#: server_privileges.php:553 msgid "Allows the user to ask where the slaves / masters are." msgstr "" "Permission de demander où sont les maîtres et les esclaves (système de " "duplication)." -#: server_privileges.php:51 server_privileges.php:197 -#: server_privileges.php:553 +#: server_privileges.php:52 server_privileges.php:198 +#: server_privileges.php:554 msgid "Needed for the replication slaves." msgstr "Nécessaire pour les esclaves (système de duplication)." -#: server_privileges.php:52 server_privileges.php:180 -#: server_privileges.php:439 server_privileges.php:503 +#: server_privileges.php:53 server_privileges.php:181 +#: server_privileges.php:440 server_privileges.php:504 msgid "Allows reading data." msgstr "Permission de lire des données." -#: server_privileges.php:53 server_privileges.php:193 -#: server_privileges.php:547 +#: server_privileges.php:54 server_privileges.php:194 +#: server_privileges.php:548 msgid "Gives access to the complete list of databases." msgstr "Permission de voir la liste complète des noms de bases de données." -#: server_privileges.php:54 server_privileges.php:204 -#: server_privileges.php:206 server_privileges.php:519 +#: server_privileges.php:55 server_privileges.php:205 +#: server_privileges.php:207 server_privileges.php:520 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Permission d'exécuter SHOW CREATE VIEW." -#: server_privileges.php:55 server_privileges.php:187 -#: server_privileges.php:546 +#: server_privileges.php:56 server_privileges.php:188 +#: server_privileges.php:547 msgid "Allows shutting down the server." msgstr "Permission d'arrêter le serveur MySQL." -#: server_privileges.php:56 server_privileges.php:194 -#: server_privileges.php:543 +#: server_privileges.php:57 server_privileges.php:195 +#: server_privileges.php:544 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -4682,153 +4727,153 @@ msgstr "" "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 +#: server_privileges.php:58 server_privileges.php:202 +#: server_privileges.php:536 msgid "Allows creating and dropping triggers" msgstr "Permission de créer et de supprimer des déclencheurs" -#: server_privileges.php:58 server_privileges.php:182 -#: server_privileges.php:445 server_privileges.php:505 +#: server_privileges.php:59 server_privileges.php:183 +#: server_privileges.php:446 server_privileges.php:506 msgid "Allows changing data." msgstr "Permission de changer des données." -#: server_privileges.php:59 server_privileges.php:260 +#: server_privileges.php:60 server_privileges.php:261 msgid "No privileges." msgstr "Pas de privilèges" -#: server_privileges.php:302 server_privileges.php:303 +#: server_privileges.php:303 server_privileges.php:304 msgctxt "None privileges" msgid "None" msgstr "Aucun" -#: server_privileges.php:431 server_privileges.php:566 -#: server_privileges.php:1718 server_privileges.php:1724 +#: server_privileges.php:432 server_privileges.php:567 +#: server_privileges.php:1738 server_privileges.php:1744 msgid "Table-specific privileges" msgstr "Privilèges spécifiques à une table" -#: server_privileges.php:432 server_privileges.php:574 -#: server_privileges.php:1540 +#: server_privileges.php:433 server_privileges.php:575 +#: server_privileges.php:1560 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:563 server_privileges.php:1539 +#: server_privileges.php:564 server_privileges.php:1559 msgid "Global privileges" msgstr "Privilèges globaux" -#: server_privileges.php:565 server_privileges.php:1718 +#: server_privileges.php:566 server_privileges.php:1738 msgid "Database-specific privileges" msgstr "Privilèges spécifiques à une base de données" -#: server_privileges.php:610 +#: server_privileges.php:611 msgid "Administration" msgstr "Administration" -#: server_privileges.php:630 +#: server_privileges.php:631 msgid "Resource limits" msgstr "Limites de ressources." -#: server_privileges.php:631 +#: server_privileges.php:632 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "Note: Une valeur de 0 (zero) enlève la limite." -#: server_privileges.php:708 +#: server_privileges.php:709 msgid "Login Information" msgstr "Information pour la connexion" -#: server_privileges.php:802 +#: server_privileges.php:803 msgid "Do not change the password" msgstr "Conserver le mot de passe" -#: server_privileges.php:843 server_privileges.php:2205 +#: server_privileges.php:844 server_privileges.php:2226 msgid "No user found." msgstr "Aucun utilisateur n'a été trouvé." -#: server_privileges.php:887 +#: server_privileges.php:888 #, php-format msgid "The user %s already exists!" msgstr "L'utilisateur %s existe déjà!" -#: server_privileges.php:970 +#: server_privileges.php:971 msgid "You have added a new user." msgstr "Vous avez ajouté un utilisateur" -#: server_privileges.php:1191 +#: server_privileges.php:1196 #, php-format msgid "You have updated the privileges for %s." msgstr "Vous avez modifié les privilèges pour %s." -#: server_privileges.php:1215 +#: server_privileges.php:1220 #, php-format msgid "You have revoked the privileges for %s" msgstr "Vous avez révoqué les privilèges pour %s" -#: server_privileges.php:1251 +#: server_privileges.php:1256 #, php-format msgid "The password for %s was changed successfully." msgstr "Le mot de passe de %s a été changé." -#: server_privileges.php:1271 +#: server_privileges.php:1276 #, php-format msgid "Deleting %s" msgstr "Destruction de %s" -#: server_privileges.php:1282 +#: server_privileges.php:1287 msgid "No users selected for deleting!" msgstr "Aucun utilisateur n'a été choisi en vue de le détruire!" -#: server_privileges.php:1285 +#: server_privileges.php:1290 msgid "Reloading the privileges" msgstr "Chargement des privilèges en cours." -#: server_privileges.php:1300 +#: server_privileges.php:1305 msgid "The selected users have been deleted successfully." msgstr "Les utilisateurs sélectionnés ont été effacés." -#: server_privileges.php:1335 +#: server_privileges.php:1344 msgid "The privileges were reloaded successfully." msgstr "Les privilèges ont été rechargés." -#: server_privileges.php:1363 server_privileges.php:1649 +#: server_privileges.php:1380 server_privileges.php:1669 msgid "Edit Privileges" msgstr "Changer les privilèges" -#: server_privileges.php:1372 +#: server_privileges.php:1389 msgid "Revoke" msgstr "Révoquer" -#: server_privileges.php:1404 +#: server_privileges.php:1424 msgid "User overview" msgstr "Vue d'ensemble des utilisateurs" -#: server_privileges.php:1541 server_privileges.php:1723 -#: server_privileges.php:2072 +#: server_privileges.php:1561 server_privileges.php:1743 +#: server_privileges.php:2093 msgid "Grant" msgstr " «Grant »" -#: server_privileges.php:1560 server_privileges.php:2162 +#: server_privileges.php:1580 server_privileges.php:2183 msgid "Any" msgstr "N'importe quel" -#: server_privileges.php:1609 server_privileges.php:1633 -#: server_privileges.php:2027 server_privileges.php:2216 +#: server_privileges.php:1629 server_privileges.php:1653 +#: server_privileges.php:2048 server_privileges.php:2237 msgid "Add a new User" msgstr "Ajouter un utilisateur" -#: server_privileges.php:1614 +#: server_privileges.php:1634 msgid "Remove selected users" msgstr "Effacer les utilisateurs sélectionnés." -#: server_privileges.php:1617 +#: server_privileges.php:1637 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:1618 server_privileges.php:1619 -#: server_privileges.php:1620 +#: server_privileges.php:1638 server_privileges.php:1639 +#: server_privileges.php:1640 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:1636 +#: server_privileges.php:1656 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -4841,49 +4886,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:1684 +#: server_privileges.php:1704 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:1724 +#: server_privileges.php:1744 msgid "Column-specific privileges" msgstr "Privilèges de colonnes" -#: server_privileges.php:1925 +#: server_privileges.php:1945 msgid "Add privileges on the following database" msgstr "Ajouter des privilèges sur cette base de données" -#: server_privileges.php:1943 +#: server_privileges.php:1963 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:1946 +#: server_privileges.php:1966 msgid "Add privileges on the following table" msgstr "Ajouter des privilèges sur cette table" -#: server_privileges.php:2003 +#: server_privileges.php:2023 msgid "Change Login Information / Copy User" msgstr "Changement des informations de connexion / Copie d'utilisateur" -#: server_privileges.php:2006 +#: server_privileges.php:2026 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:2008 +#: server_privileges.php:2028 msgid "... keep the old one." msgstr "... conserver intact l'ancien utilisateur." -#: server_privileges.php:2009 +#: server_privileges.php:2029 msgid " ... delete the old one from the user tables." msgstr " ... supprimer l'ancien utilisateur." -#: server_privileges.php:2010 +#: server_privileges.php:2030 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:2011 +#: server_privileges.php:2031 msgid "" " ... delete the old one from the user tables and reload the privileges " "afterwards." @@ -4891,44 +4936,44 @@ msgstr "" " ... supprimer l'ancien utilisateur, puis recharger les privilèges au " "serveur." -#: server_privileges.php:2033 +#: server_privileges.php:2054 msgid "Database for user" msgstr "Base de données pour cet utilisateur" -#: server_privileges.php:2037 +#: server_privileges.php:2058 msgctxt "Create none database for user" msgid "None" msgstr "aucune" -#: server_privileges.php:2038 +#: server_privileges.php:2059 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:2039 +#: server_privileges.php:2060 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "Donner les privilèges passepartout (utilisateur\\_%)" -#: server_privileges.php:2042 +#: server_privileges.php:2063 #, 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:2065 +#: server_privileges.php:2086 #, php-format msgid "Users having access to "%s"" msgstr "Utilisateurs ayant accès à "%s"" -#: server_privileges.php:2173 +#: server_privileges.php:2194 msgid "global" msgstr "global" -#: server_privileges.php:2175 +#: server_privileges.php:2196 msgid "database-specific" msgstr "spécifique à cette base de données" -#: server_privileges.php:2177 +#: server_privileges.php:2198 msgid "wildcard" msgstr "passepartout" @@ -7915,6 +7960,10 @@ msgstr "Sauvegarder un nouvel enregistrement (ignorer les erreurs)" msgid "Show insert query" msgstr "Afficher l'énoncé d'insertion" +#: tbl_change.php:1143 +msgid "and then" +msgstr "et ensuite" + #: tbl_change.php:1147 msgid "Go back to previous page" msgstr "Retourner à la page précédente" @@ -7995,7 +8044,7 @@ msgstr "(«PRIMARY» doit et ne peut être que le nom d'une clé primaire msgid "Add to index  %s column(s)" msgstr "Ajouter à l'index %s colonne(s)" -#: tbl_indexes.php:256 tbl_structure.php:589 tbl_structure.php:600 +#: tbl_indexes.php:256 tbl_structure.php:587 tbl_structure.php:598 msgid "Column count has to be larger than zero." msgstr "Le nombre de champs doit être plus grand que zéro." @@ -8107,39 +8156,39 @@ msgstr "Vérifier l'intégrité référentielle" msgid "Show tables" msgstr "Afficher les tables" -#: tbl_printview.php:310 tbl_structure.php:656 +#: tbl_printview.php:310 tbl_structure.php:654 msgid "Space usage" msgstr "Espace utilisé" -#: tbl_printview.php:314 tbl_structure.php:660 +#: tbl_printview.php:314 tbl_structure.php:658 msgid "Usage" msgstr "Espace" -#: tbl_printview.php:341 tbl_structure.php:687 +#: tbl_printview.php:341 tbl_structure.php:685 msgid "Effective" msgstr "effectif" -#: tbl_printview.php:366 tbl_structure.php:725 +#: tbl_printview.php:366 tbl_structure.php:723 msgid "Row Statistics" msgstr "Statistiques" -#: tbl_printview.php:369 tbl_structure.php:728 +#: tbl_printview.php:369 tbl_structure.php:726 msgid "Statements" msgstr "Information" -#: tbl_printview.php:380 tbl_structure.php:740 +#: tbl_printview.php:380 tbl_structure.php:738 msgid "static" msgstr "statique" -#: tbl_printview.php:382 tbl_structure.php:742 +#: tbl_printview.php:382 tbl_structure.php:740 msgid "dynamic" msgstr "dynamique" -#: tbl_printview.php:404 tbl_structure.php:785 +#: tbl_printview.php:404 tbl_structure.php:783 msgid "Row length" msgstr "Longueur enr." -#: tbl_printview.php:414 tbl_structure.php:793 +#: tbl_printview.php:414 tbl_structure.php:791 msgid " Row size " msgstr " Taille enr. " @@ -8208,47 +8257,47 @@ msgstr "aucune" msgid "Column %s has been dropped" msgstr "La colonne %s a été effacée" -#: tbl_structure.php:385 +#: tbl_structure.php:384 #, php-format msgid "A primary key has been added on %s" msgstr "Une clé primaire a été ajoutée sur %s" -#: tbl_structure.php:400 tbl_structure.php:414 tbl_structure.php:428 +#: tbl_structure.php:398 tbl_structure.php:412 tbl_structure.php:426 #, php-format msgid "An index has been added on %s" msgstr "Un index a été ajouté sur %s" -#: tbl_structure.php:506 tbl_structure.php:508 +#: tbl_structure.php:504 tbl_structure.php:506 msgid "Relation view" msgstr "Gestion des relations" -#: tbl_structure.php:515 tbl_structure.php:517 +#: tbl_structure.php:513 tbl_structure.php:515 msgid "Propose table structure" msgstr "Suggérer des optimisations quant à la structure de la table" -#: tbl_structure.php:540 +#: tbl_structure.php:538 msgid "Add column" msgstr "Ajouter une colonne" -#: tbl_structure.php:554 +#: tbl_structure.php:552 msgid "At End of Table" msgstr "En fin de table" -#: tbl_structure.php:555 +#: tbl_structure.php:553 msgid "At Beginning of Table" msgstr "En début de table" -#: tbl_structure.php:556 +#: tbl_structure.php:554 #, php-format msgid "After %s" msgstr "Après %s" -#: tbl_structure.php:594 +#: tbl_structure.php:592 #, php-format msgid "Create an index on  %s columns" msgstr "Créer un index sur  %s colonnes" -#: tbl_structure.php:756 +#: tbl_structure.php:754 msgid "partitioned" msgstr "partitionné" diff --git a/po/gl.po b/po/gl.po index 1b13c4e78..31dd9b03a 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-13 09:03-0400\n" +"POT-Creation-Date: 2010-06-22 00:55+0530\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:1514 +#: libraries/display_tbl.lib.php:417 server_privileges.php:1534 msgid "Show all" msgstr "Ver todos os rexistros" -#: browse_foreigners.php:82 libraries/common.lib.php:2313 +#: browse_foreigners.php:82 libraries/common.lib.php:2317 #: 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,18 +38,18 @@ 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:2831 -#: libraries/common.lib.php:2838 libraries/db_links.inc.php:75 +#: db_structure.php:106 libraries/common.lib.php:2835 +#: libraries/common.lib.php:2842 libraries/db_links.inc.php:75 #: libraries/tbl_links.inc.php:63 msgid "Search" msgstr "Procurar" -#: browse_foreigners.php:153 db_operations.php:385 db_operations.php:429 -#: db_operations.php:499 db_operations.php:609 db_search.php:362 -#: db_structure.php:567 js/messages.php:48 libraries/Config.class.php:1046 +#: browse_foreigners.php:153 db_operations.php:394 db_operations.php:438 +#: db_operations.php:508 db_operations.php:618 db_search.php:362 +#: db_structure.php:565 js/messages.php:53 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:1335 libraries/common.lib.php:2288 +#: libraries/common.lib.php:1335 libraries/common.lib.php:2292 #: 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,15 +60,15 @@ 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:664 server_privileges.php:1624 -#: server_privileges.php:1971 server_privileges.php:2018 -#: server_privileges.php:2057 server_replication.php:235 +#: server_privileges.php:665 server_privileges.php:1644 +#: server_privileges.php:1991 server_privileges.php:2038 +#: server_privileges.php:2078 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 #: tbl_operations.php:302 tbl_operations.php:499 tbl_operations.php:561 -#: tbl_operations.php:681 tbl_select.php:327 tbl_structure.php:562 -#: tbl_structure.php:597 tbl_tracking.php:395 tbl_tracking.php:512 +#: tbl_operations.php:681 tbl_select.php:327 tbl_structure.php:560 +#: tbl_structure.php:595 tbl_tracking.php:395 tbl_tracking.php:512 #: view_create.php:182 view_operations.php:101 msgid "Go" msgstr "Executar" @@ -94,7 +94,7 @@ msgstr "Usar este valor" msgid "Database %1$s has been created." msgstr "Creouse a base de datos %1$s." -#: db_datadict.php:49 db_operations.php:378 +#: db_datadict.php:49 db_operations.php:387 msgid "Database comment: " msgstr "Comentario da base de datos: " @@ -121,10 +121,10 @@ 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:2070 +#: pdf_schema.php:1263 pdf_schema.php:1284 server_privileges.php:2091 #: 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 +#: tbl_structure.php:657 tbl_tracking.php:274 tbl_tracking.php:321 msgid "Type" msgstr "Tipo" @@ -137,7 +137,7 @@ msgstr "Tipo" msgid "Null" msgstr "Nulo" -#: db_datadict.php:178 db_structure.php:501 libraries/export/htmlword.php:247 +#: db_datadict.php:178 db_structure.php:499 libraries/export/htmlword.php:247 #: libraries/export/latex.php:360 libraries/export/odt.php:303 #: libraries/export/texytext.php:236 libraries/tbl_properties.inc.php:106 #: pdf_schema.php:1266 pdf_schema.php:1287 tbl_printview.php:146 @@ -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: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 +#: pdf_schema.php:1344 server_privileges.php:1588 server_privileges.php:1599 +#: server_privileges.php:1909 server_privileges.php:1914 +#: server_privileges.php:2208 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:1565 -#: server_privileges.php:1579 server_privileges.php:1889 -#: server_privileges.php:1892 server_privileges.php:2187 sql.php:193 +#: server_databases.php:64 server_privileges.php:1585 +#: server_privileges.php:1599 server_privileges.php:1909 +#: server_privileges.php:1912 server_privileges.php:2208 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" @@ -210,125 +210,121 @@ msgstr "Seleccionar todo" msgid "Unselect All" msgstr "Non seleccionar nada" -#: db_operations.php:38 tbl_create.php:54 +#: db_operations.php:43 tbl_create.php:54 msgid "The database name is empty!" msgstr "Ese nome de base de datos non existe." -#: db_operations.php:236 +#: db_operations.php:241 #, php-format msgid "Database %s has been renamed to %s" msgstr "Mudóuselle o nome á base de datos %s para %s" -#: db_operations.php:240 +#: db_operations.php:245 #, php-format msgid "Database %s has been copied to %s" msgstr "Copiuse a base de datos %s para %s" -#: db_operations.php:412 +#: db_operations.php:421 msgid "Rename database to" msgstr "Mudar o nome da base de datos para" -#: db_operations.php:417 server_processlist.php:57 +#: db_operations.php:426 server_processlist.php:57 msgid "Command" msgstr "Orde" -#: db_operations.php:429 tbl_change.php:1143 -msgid "and then" -msgstr "e despois" - -#: db_operations.php:455 +#: db_operations.php:464 msgid "Copy database to" msgstr "Copiar a base de datos para" -#: db_operations.php:462 tbl_operations.php:528 tbl_tracking.php:388 +#: db_operations.php:471 tbl_operations.php:528 tbl_tracking.php:388 msgid "Structure only" msgstr "Só a estrutura" -#: db_operations.php:463 tbl_operations.php:529 tbl_tracking.php:390 +#: db_operations.php:472 tbl_operations.php:529 tbl_tracking.php:390 msgid "Structure and data" msgstr "Estrutura e datos" -#: db_operations.php:464 tbl_operations.php:530 tbl_tracking.php:389 +#: db_operations.php:473 tbl_operations.php:530 tbl_tracking.php:389 msgid "Data only" msgstr "Só os datos" -#: db_operations.php:472 +#: db_operations.php:481 msgid "CREATE DATABASE before copying" msgstr "CREAR UNHA BASE DE DATOS antes de copiar" -#: db_operations.php:475 libraries/export/sql.php:52 +#: db_operations.php:484 libraries/export/sql.php:52 #: libraries/export/sql.php:74 libraries/export/sql.php:76 #: libraries/export/sql.php:82 tbl_operations.php:536 #, php-format msgid "Add %s" msgstr "Engadir %s" -#: db_operations.php:479 libraries/export/sql.php:78 tbl_operations.php:299 +#: db_operations.php:488 libraries/export/sql.php:78 tbl_operations.php:299 #: tbl_operations.php:538 msgid "Add AUTO_INCREMENT value" msgstr "Engadir o valor incremental (AUTO_INCREMENT)" -#: db_operations.php:483 tbl_operations.php:545 +#: db_operations.php:492 tbl_operations.php:545 msgid "Add constraints" msgstr "Engadir limitacións" -#: db_operations.php:496 +#: db_operations.php:505 msgid "Switch to copied database" msgstr "Pasar á base de datos copiada" -#: db_operations.php:537 +#: db_operations.php:546 msgid "BLOB Repository" msgstr "Repositorio de BLOB" -#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1352 -#: libraries/server_links.inc.php:49 server_processlist.php:59 +#: db_operations.php:549 db_tracking.php:76 libraries/common.lib.php:1352 +#: libraries/server_links.inc.php:50 server_processlist.php:59 #: tbl_tracking.php:596 test/theme.php:101 msgid "Status" msgstr "Estado" -#: db_operations.php:548 +#: db_operations.php:557 #, fuzzy #| msgid "Enabled" msgctxt "BLOB repository" msgid "Enabled" msgstr "Activado" -#: db_operations.php:552 +#: db_operations.php:561 msgid "Disable" msgstr "Desactivar" -#: db_operations.php:562 +#: db_operations.php:571 msgid "Damaged" msgstr "Danada" -#: db_operations.php:566 +#: db_operations.php:575 #, fuzzy #| msgid "Repair" msgctxt "BLOB repository" msgid "Repair" msgstr "Arranxar" -#: db_operations.php:574 +#: db_operations.php:583 #, fuzzy #| msgid "Disabled" msgctxt "BLOB repository" msgid "Disabled" msgstr "Desactivado" -#: db_operations.php:578 +#: db_operations.php:587 msgid "Enable" msgstr "Activar" -#: db_operations.php:602 libraries/Index.class.php:448 +#: db_operations.php:611 libraries/Index.class.php:448 #: libraries/db_structure.lib.php:62 libraries/mysql_charsets.lib.php:107 #: libraries/tbl_properties.inc.php:107 libraries/tbl_properties.inc.php:730 #: server_collations.php:54 server_collations.php:66 server_databases.php:111 #: tbl_operations.php:363 tbl_select.php:137 tbl_structure.php:179 -#: tbl_structure.php:767 tbl_tracking.php:275 tbl_tracking.php:326 +#: tbl_structure.php:765 tbl_tracking.php:275 tbl_tracking.php:326 msgid "Collation" msgstr "Orde alfabética" -#: db_operations.php:615 main.php:316 pdf_schema.php:34 +#: db_operations.php:624 main.php:316 pdf_schema.php:34 #, php-format msgid "" "The additional features for working with linked tables have been " @@ -337,14 +333,14 @@ msgstr "" "Desactivouse a funcionalidade adicional para o traballo con táboas " "vinculadas. Para saber o por que, prema %saquí%s." -#: db_operations.php:648 +#: db_operations.php:657 msgid "Edit PDF Pages" 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:1665 -#: server_privileges.php:1721 server_privileges.php:1985 +#: libraries/header.inc.php:130 pdf_pages.php:424 server_privileges.php:1685 +#: server_privileges.php:1741 server_privileges.php:2005 #: server_synchronize.php:423 server_synchronize.php:866 tbl_tracking.php:592 #: test/theme.php:75 msgid "Table" @@ -353,7 +349,7 @@ msgstr "Táboa" #: db_printview.php:105 libraries/db_structure.lib.php:56 #: libraries/header_printview.inc.php:63 libraries/import.lib.php:146 #: navigation.php:638 navigation.php:660 server_databases.php:122 -#: tbl_printview.php:394 tbl_structure.php:365 tbl_structure.php:777 +#: tbl_printview.php:394 tbl_structure.php:365 tbl_structure.php:775 msgid "Rows" msgstr "Fileiras" @@ -361,30 +357,30 @@ msgstr "Fileiras" msgid "Size" msgstr "Tamaño" -#: db_printview.php:162 db_structure.php:457 libraries/export/sql.php:559 +#: db_printview.php:162 db_structure.php:455 libraries/export/sql.php:559 #: libraries/export/sql.php:899 msgid "in use" msgstr "en uso" #: db_printview.php:187 libraries/db_info.inc.php:88 #: libraries/export/sql.php:514 pdf_schema.php:1241 tbl_printview.php:434 -#: tbl_structure.php:809 +#: tbl_structure.php:807 msgid "Creation" msgstr "Creación" #: db_printview.php:196 libraries/db_info.inc.php:93 #: libraries/export/sql.php:519 pdf_schema.php:1246 tbl_printview.php:444 -#: tbl_structure.php:817 +#: tbl_structure.php:815 msgid "Last update" msgstr "Actualización máis recente" #: db_printview.php:205 libraries/db_info.inc.php:98 #: libraries/export/sql.php:524 pdf_schema.php:1251 tbl_printview.php:454 -#: tbl_structure.php:825 +#: tbl_structure.php:823 msgid "Last check" msgstr "Comprobación máis recente" -#: db_printview.php:222 db_structure.php:480 +#: db_printview.php:222 db_structure.php:478 #, fuzzy, php-format #| msgid "%s table(s)" msgid "%s table" @@ -445,7 +441,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:297 tbl_change.php:1031 tbl_indexes.php:250 +#: server_privileges.php:298 tbl_change.php:1031 tbl_indexes.php:250 #: tbl_select.php:288 msgid "Or" msgstr "ou" @@ -518,9 +514,9 @@ 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:2833 +#: db_structure.php:105 libraries/common.lib.php:2837 #: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50 -#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:467 +#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:465 msgid "Browse" msgstr "Visualizar" @@ -565,36 +561,36 @@ 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:2832 libraries/sql_query_form.lib.php:334 +#: libraries/common.lib.php:2836 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:2829 libraries/common.lib.php:2836 +#: libraries/common.lib.php:2833 libraries/common.lib.php:2840 #: 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:1106 #: libraries/tbl_links.inc.php:56 pmd_general.php:134 -#: server_privileges.php:593 server_replication.php:315 tbl_tracking.php:269 +#: server_privileges.php:594 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:1656 +#: db_structure.php:543 db_structure.php:544 db_tracking.php:91 +#: libraries/Index.class.php:483 libraries/common.lib.php:1657 #: 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 -#: tbl_structure.php:152 tbl_structure.php:471 +#: tbl_structure.php:152 tbl_structure.php:469 msgid "Drop" 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:1655 +#: db_structure.php:541 db_structure.php:542 libraries/common.lib.php:1656 #: libraries/mult_submits.inc.php:39 libraries/tbl_links.inc.php:105 msgid "Empty" msgstr "Borrar" @@ -604,25 +600,25 @@ msgstr "Borrar" msgid "Table %s has been emptied" msgstr "Vaciouse a táboa %s" -#: db_structure.php:326 libraries/tbl_links.inc.php:133 +#: db_structure.php:325 libraries/tbl_links.inc.php:133 #, php-format msgid "View %s has been dropped" msgstr "Deixouse a vista %s" -#: db_structure.php:326 libraries/tbl_links.inc.php:133 +#: db_structure.php:325 libraries/tbl_links.inc.php:133 #, php-format msgid "Table %s has been dropped" msgstr "Eliminouse a táboa %s" -#: db_structure.php:333 +#: db_structure.php:332 msgid "Tracking is active." msgstr "O seguemento está activado." -#: db_structure.php:335 +#: db_structure.php:334 msgid "Tracking is not active." msgstr "O seguemento non está activado." -#: db_structure.php:420 libraries/display_tbl.lib.php:1944 +#: db_structure.php:418 libraries/display_tbl.lib.php:1944 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation%" @@ -631,86 +627,86 @@ msgstr "" "Esta vista ten, cando menos, este número de fileiras. Vexa a %sdocumentation%" "s." -#: db_structure.php:434 db_structure.php:448 libraries/header.inc.php:126 +#: db_structure.php:432 db_structure.php:446 libraries/header.inc.php:130 #: libraries/tbl_info.inc.php:66 tbl_structure.php:185 test/theme.php:74 msgid "View" msgstr "Vista" -#: db_structure.php:485 libraries/db_structure.lib.php:49 -#: libraries/server_links.inc.php:70 server_replication.php:33 +#: db_structure.php:483 libraries/db_structure.lib.php:49 +#: libraries/server_links.inc.php:71 server_replication.php:33 #: server_replication.php:164 server_status.php:369 msgid "Replication" msgstr "Replicación" -#: db_structure.php:489 +#: db_structure.php:487 msgid "Sum" msgstr "Suma" -#: db_structure.php:496 libraries/StorageEngine.class.php:356 +#: db_structure.php:494 libraries/StorageEngine.class.php:356 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "%s é o motor de almacenamento predefinido neste servidor de MySQL." -#: db_structure.php:524 db_structure.php:541 db_structure.php:542 +#: db_structure.php:522 db_structure.php:539 db_structure.php:540 #: 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:1596 tbl_structure.php:455 -#: tbl_structure.php:464 +#: server_databases.php:351 server_privileges.php:1616 tbl_structure.php:453 +#: tbl_structure.php:462 msgid "With selected:" msgstr "Todos os marcados" -#: db_structure.php:527 libraries/display_tbl.lib.php:2076 -#: server_databases.php:348 server_privileges.php:569 -#: server_privileges.php:1599 tbl_structure.php:458 +#: db_structure.php:525 libraries/display_tbl.lib.php:2076 +#: server_databases.php:348 server_privileges.php:570 +#: server_privileges.php:1619 tbl_structure.php:456 msgid "Check All" msgstr "Marcalos todos" -#: db_structure.php:531 libraries/display_tbl.lib.php:2077 +#: db_structure.php:529 libraries/display_tbl.lib.php:2077 #: libraries/replication_gui.lib.php:33 server_databases.php:350 -#: server_privileges.php:572 server_privileges.php:1603 tbl_structure.php:462 +#: server_privileges.php:573 server_privileges.php:1623 tbl_structure.php:460 msgid "Uncheck All" msgstr "Quitarlles as marcas a todos" -#: db_structure.php:536 +#: db_structure.php:534 msgid "Check tables having overhead" msgstr "Exceso na comprobación" -#: db_structure.php:547 db_structure.php:548 db_structure.php:599 +#: db_structure.php:545 db_structure.php:546 db_structure.php:597 #: libraries/display_tbl.lib.php:2180 libraries/mult_submits.inc.php:28 -#: tbl_structure.php:492 tbl_structure.php:494 +#: tbl_structure.php:490 tbl_structure.php:492 msgid "Print view" msgstr "Visualización previa da impresión" -#: db_structure.php:549 db_structure.php:550 libraries/mult_submits.inc.php:42 +#: db_structure.php:547 db_structure.php:548 libraries/mult_submits.inc.php:42 #: tbl_operations.php:581 msgid "Check table" msgstr "Verificar a táboa" -#: db_structure.php:551 db_structure.php:552 libraries/mult_submits.inc.php:47 -#: tbl_operations.php:621 tbl_structure.php:709 tbl_structure.php:711 +#: db_structure.php:549 db_structure.php:550 libraries/mult_submits.inc.php:47 +#: tbl_operations.php:621 tbl_structure.php:707 tbl_structure.php:709 msgid "Optimize table" msgstr "Optimizar a táboa" -#: db_structure.php:553 db_structure.php:554 libraries/mult_submits.inc.php:52 +#: db_structure.php:551 db_structure.php:552 libraries/mult_submits.inc.php:52 #: tbl_operations.php:611 msgid "Repair table" msgstr "Reparar a táboa" -#: db_structure.php:555 db_structure.php:556 libraries/mult_submits.inc.php:57 +#: db_structure.php:553 db_structure.php:554 libraries/mult_submits.inc.php:57 #: tbl_operations.php:601 msgid "Analyze table" msgstr "Analizar a táboa" -#: db_structure.php:557 db_structure.php:558 libraries/db_links.inc.php:71 +#: db_structure.php:555 db_structure.php:556 libraries/db_links.inc.php:71 #: 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:1380 +#: libraries/server_links.inc.php:85 libraries/tbl_links.inc.php:82 +#: pmd_pdf.php:84 pmd_pdf.php:109 server_privileges.php:1397 #: setup/frames/menu.inc.php:22 tbl_row_action.php:59 msgid "Export" msgstr "Exportar" -#: db_structure.php:606 libraries/display_pdf_schema.lib.php:44 +#: db_structure.php:604 libraries/display_pdf_schema.lib.php:44 msgid "Data Dictionary" msgstr "Dicionario de datos" @@ -721,10 +717,10 @@ msgstr "Táboas seguidas" #: db_tracking.php:71 libraries/export/htmlword.php:86 #: libraries/export/latex.php:148 libraries/export/odt.php:113 #: libraries/export/sql.php:342 libraries/export/texytext.php:84 -#: libraries/export/xml.php:255 libraries/header.inc.php:106 +#: libraries/export/xml.php:255 libraries/header.inc.php:110 #: libraries/header_printview.inc.php:58 server_databases.php:169 -#: server_privileges.php:1660 server_privileges.php:1721 -#: server_privileges.php:1979 server_processlist.php:56 +#: server_privileges.php:1680 server_privileges.php:1741 +#: server_privileges.php:1999 server_processlist.php:56 #: server_synchronize.php:1179 server_synchronize.php:1183 #: tbl_tracking.php:591 test/theme.php:65 msgid "Database" @@ -744,8 +740,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:1542 server_privileges.php:1725 -#: server_privileges.php:2073 tbl_structure.php:187 +#: server_privileges.php:1562 server_privileges.php:1745 +#: server_privileges.php:2094 tbl_structure.php:187 msgid "Action" msgstr "Acción" @@ -779,8 +775,8 @@ msgstr "Instantánea da estrutura" msgid "Untracked tables" msgstr "Táboas non seguidas" -#: db_tracking.php:172 db_tracking.php:174 tbl_structure.php:528 -#: tbl_structure.php:530 +#: db_tracking.php:172 db_tracking.php:174 tbl_structure.php:526 +#: tbl_structure.php:528 msgid "Track table" msgstr "Seguir a táboa" @@ -948,187 +944,236 @@ 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:1236 user_password.php:70 +#: js/messages.php:44 server_privileges.php:1241 user_password.php:70 msgid "The password is empty!" msgstr "O contrasinal está vacío!" -#: js/messages.php:45 server_privileges.php:1234 user_password.php:73 +#: js/messages.php:45 server_privileges.php:1239 user_password.php:73 msgid "The passwords aren't the same!" msgstr "Os contrasinais non son os mesmos." -#: js/messages.php:49 pmd_general.php:342 pmd_general.php:379 +#: js/messages.php:46 +#, fuzzy +#| msgid "Add a new User" +msgid "Add a New User" +msgstr "Engadir un usuario novo" + +#: js/messages.php:47 js/messages.php:54 pmd_general.php:342 +#: pmd_general.php:379 msgid "Cancel" msgstr "Cancelar" -#: js/messages.php:52 pmd_save_pos.php:54 +#: js/messages.php:48 +#, fuzzy +#| msgid "Create version" +msgid "Create User" +msgstr "Crear unha versión" + +#: js/messages.php:49 +#, fuzzy +#| msgid "Reload privileges" +msgid "Reloading Privileges" +msgstr "Volver a cargar os privilexios" + +#: js/messages.php:50 +#, fuzzy +#| msgid "Remove selected users" +msgid "Removing Selected Users" +msgstr "Eliminar os usuarios seleccionados" + +#: js/messages.php:57 +#, fuzzy +#| msgid "Load" +msgid "Loading" +msgstr "Cargar" + +#: js/messages.php:58 +#, fuzzy +#| msgid "Processes" +msgid "Processing Request" +msgstr "Procesos" + +#: js/messages.php:59 +msgid "Error in Processing Request" +msgstr "" + +#: js/messages.php:60 +msgid "Dropping Column" +msgstr "" + +#: js/messages.php:61 +msgid "Adding Primary Key" +msgstr "" + +#: js/messages.php:64 pmd_save_pos.php:54 msgid "Modifications have been saved" msgstr "Gardáronse as modificacións" -#: js/messages.php:53 pmd_relation_upd.php:49 +#: js/messages.php:65 pmd_relation_upd.php:49 msgid "Relation deleted" msgstr "Eliminouse a relación" -#: js/messages.php:54 pmd_relation_new.php:64 +#: js/messages.php:66 pmd_relation_new.php:64 msgid "FOREIGN KEY relation added" msgstr "Engadiuse unha relación cunha CHAVE EXTERNA" -#: js/messages.php:55 pmd_relation_new.php:86 +#: js/messages.php:67 pmd_relation_new.php:86 msgid "Internal relation added" msgstr "Engadiuse a relación interna" -#: js/messages.php:56 pmd_relation_new.php:63 pmd_relation_new.php:88 +#: js/messages.php:68 pmd_relation_new.php:63 pmd_relation_new.php:88 msgid "Error: Relation not added." msgstr "Erro: non se engadiu a relación." -#: js/messages.php:57 pmd_relation_new.php:31 +#: js/messages.php:69 pmd_relation_new.php:31 msgid "Error: relation already exists." msgstr "Erro: xa existe unha relación." -#: js/messages.php:58 +#: js/messages.php:70 msgid "Error saving coordinates for Designer." msgstr "Houbo un erro ao gardar as coordenadas para Deseñador." -#: js/messages.php:59 libraries/relation.lib.php:107 +#: js/messages.php:71 libraries/relation.lib.php:107 #: libraries/relation.lib.php:119 msgid "General relation features" msgstr "Características xerais das relacións" -#: js/messages.php:59 libraries/relation.lib.php:101 +#: js/messages.php:71 libraries/relation.lib.php:101 #: libraries/relation.lib.php:108 msgid "Disabled" msgstr "Desactivado" -#: js/messages.php:60 +#: js/messages.php:72 msgid "Select referenced key" msgstr "Seleccionar a chave referida" -#: js/messages.php:61 +#: js/messages.php:73 msgid "Select Foreign Key" msgstr "Escoller unha chave externa" -#: js/messages.php:62 +#: js/messages.php:74 msgid "Please select the primary key or a unique key" msgstr "Escolla a chave primaria ou unha chave única" -#: js/messages.php:63 pmd_general.php:77 tbl_relation.php:548 +#: js/messages.php:75 pmd_general.php:77 tbl_relation.php:548 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" msgstr "Escolla o campo que quere que se mostre" #. l10n: Display text for calendar close link -#: js/messages.php:73 +#: js/messages.php:85 #, fuzzy #| msgid "Donate" msgid "Done" msgstr "Doar" #. l10n: Display text for previous month link in calendar -#: js/messages.php:75 +#: js/messages.php:87 #, fuzzy #| msgid "Previous" msgid "Prev" msgstr "Anterior" #. l10n: Display text for next month link in calendar -#: js/messages.php:77 libraries/common.lib.php:2353 -#: libraries/common.lib.php:2356 libraries/display_tbl.lib.php:338 +#: js/messages.php:89 libraries/common.lib.php:2357 +#: libraries/common.lib.php:2360 libraries/display_tbl.lib.php:338 #: server_binlog.php:205 server_binlog.php:207 tbl_printview.php:424 -#: tbl_structure.php:801 +#: tbl_structure.php:799 msgid "Next" msgstr "Seguinte" #. l10n: Display text for current month link in calendar -#: js/messages.php:79 +#: js/messages.php:91 #, fuzzy #| msgid "Total" msgid "Today" msgstr "Total" -#: js/messages.php:82 +#: js/messages.php:94 #, fuzzy #| msgid "Binary" msgid "January" msgstr " Binario " -#: js/messages.php:83 +#: js/messages.php:95 msgid "February" msgstr "" -#: js/messages.php:84 +#: js/messages.php:96 #, fuzzy #| msgid "Mar" msgid "March" msgstr "Mar" -#: js/messages.php:85 +#: js/messages.php:97 #, fuzzy #| msgid "Apr" msgid "April" msgstr "Abr" -#: js/messages.php:86 +#: js/messages.php:98 msgid "May" msgstr "Maio" -#: js/messages.php:87 +#: js/messages.php:99 #, fuzzy #| msgid "Jun" msgid "June" msgstr "Xuño" -#: js/messages.php:88 +#: js/messages.php:100 #, fuzzy #| msgid "Jul" msgid "July" msgstr "Xullo" -#: js/messages.php:89 +#: js/messages.php:101 #, fuzzy #| msgid "Aug" msgid "August" msgstr "Ago" -#: js/messages.php:90 +#: js/messages.php:102 msgid "September" msgstr "" -#: js/messages.php:91 +#: js/messages.php:103 #, fuzzy #| msgid "Oct" msgid "October" msgstr "Out" -#: js/messages.php:92 +#: js/messages.php:104 msgid "November" msgstr "" -#: js/messages.php:93 +#: js/messages.php:105 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:97 libraries/common.lib.php:1557 +#: js/messages.php:109 libraries/common.lib.php:1557 msgid "Jan" msgstr "Xan" #. l10n: Short month name -#: js/messages.php:99 libraries/common.lib.php:1559 +#: js/messages.php:111 libraries/common.lib.php:1559 msgid "Feb" msgstr "Feb" #. l10n: Short month name -#: js/messages.php:101 libraries/common.lib.php:1561 +#: js/messages.php:113 libraries/common.lib.php:1561 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:103 libraries/common.lib.php:1563 +#: js/messages.php:115 libraries/common.lib.php:1563 msgid "Apr" msgstr "Abr" #. l10n: Short month name -#: js/messages.php:105 libraries/common.lib.php:1565 +#: js/messages.php:117 libraries/common.lib.php:1565 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1136,178 +1181,178 @@ msgid "May" msgstr "Maio" #. l10n: Short month name -#: js/messages.php:107 libraries/common.lib.php:1567 +#: js/messages.php:119 libraries/common.lib.php:1567 msgid "Jun" msgstr "Xuño" #. l10n: Short month name -#: js/messages.php:109 libraries/common.lib.php:1569 +#: js/messages.php:121 libraries/common.lib.php:1569 msgid "Jul" msgstr "Xullo" #. l10n: Short month name -#: js/messages.php:111 libraries/common.lib.php:1571 +#: js/messages.php:123 libraries/common.lib.php:1571 msgid "Aug" msgstr "Ago" #. l10n: Short month name -#: js/messages.php:113 libraries/common.lib.php:1573 +#: js/messages.php:125 libraries/common.lib.php:1573 msgid "Sep" msgstr "Set" #. l10n: Short month name -#: js/messages.php:115 libraries/common.lib.php:1575 +#: js/messages.php:127 libraries/common.lib.php:1575 msgid "Oct" msgstr "Out" #. l10n: Short month name -#: js/messages.php:117 libraries/common.lib.php:1577 +#: js/messages.php:129 libraries/common.lib.php:1577 msgid "Nov" msgstr "Nov" #. l10n: Short month name -#: js/messages.php:119 libraries/common.lib.php:1579 +#: js/messages.php:131 libraries/common.lib.php:1579 msgid "Dec" msgstr "Dec" -#: js/messages.php:122 +#: js/messages.php:134 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "Do" -#: js/messages.php:123 +#: js/messages.php:135 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "Lu" -#: js/messages.php:124 +#: js/messages.php:136 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "Ma" -#: js/messages.php:125 +#: js/messages.php:137 msgid "Wednesday" msgstr "" -#: js/messages.php:126 +#: js/messages.php:138 msgid "Thursday" msgstr "" -#: js/messages.php:127 +#: js/messages.php:139 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "Ve" -#: js/messages.php:128 +#: js/messages.php:140 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:132 libraries/common.lib.php:1582 +#: js/messages.php:144 libraries/common.lib.php:1582 msgid "Sun" msgstr "Do" #. l10n: Short week day name -#: js/messages.php:134 libraries/common.lib.php:1584 +#: js/messages.php:146 libraries/common.lib.php:1584 msgid "Mon" msgstr "Lu" #. l10n: Short week day name -#: js/messages.php:136 libraries/common.lib.php:1586 +#: js/messages.php:148 libraries/common.lib.php:1586 msgid "Tue" msgstr "Ma" #. l10n: Short week day name -#: js/messages.php:138 libraries/common.lib.php:1588 +#: js/messages.php:150 libraries/common.lib.php:1588 msgid "Wed" msgstr "Mé" #. l10n: Short week day name -#: js/messages.php:140 libraries/common.lib.php:1590 +#: js/messages.php:152 libraries/common.lib.php:1590 msgid "Thu" msgstr "Xo" #. l10n: Short week day name -#: js/messages.php:142 libraries/common.lib.php:1592 +#: js/messages.php:154 libraries/common.lib.php:1592 msgid "Fri" msgstr "Ve" #. l10n: Short week day name -#: js/messages.php:144 libraries/common.lib.php:1594 +#: js/messages.php:156 libraries/common.lib.php:1594 msgid "Sat" msgstr "Sá" #. l10n: Minimal week day name -#: js/messages.php:148 +#: js/messages.php:160 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "Do" #. l10n: Minimal week day name -#: js/messages.php:150 +#: js/messages.php:162 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "Lu" #. l10n: Minimal week day name -#: js/messages.php:152 +#: js/messages.php:164 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "Ma" #. l10n: Minimal week day name -#: js/messages.php:154 +#: js/messages.php:166 #, fuzzy #| msgid "Wed" msgid "We" msgstr "Mé" #. l10n: Minimal week day name -#: js/messages.php:156 +#: js/messages.php:168 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "Xo" #. l10n: Minimal week day name -#: js/messages.php:158 +#: js/messages.php:170 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "Ve" #. l10n: Minimal week day name -#: js/messages.php:160 +#: js/messages.php:172 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "Sá" #. l10n: Column header for week of the year in calendar -#: js/messages.php:162 +#: js/messages.php:174 #, fuzzy #| msgid "Wiki" msgid "Wk" msgstr "Wiki" -#: js/messages.php:164 +#: js/messages.php:176 msgid "Hour" msgstr "" -#: js/messages.php:165 +#: js/messages.php:177 #, fuzzy #| msgid "in use" msgid "Minute" msgstr "en uso" -#: js/messages.php:166 +#: js/messages.php:178 #, fuzzy #| msgid "per second" msgid "Second" @@ -1368,7 +1413,7 @@ msgstr "Índices" #: libraries/Index.class.php:444 libraries/mult_submits.inc.php:103 #: libraries/tbl_properties.inc.php:519 tbl_structure.php:33 -#: tbl_structure.php:155 tbl_structure.php:159 tbl_structure.php:474 +#: tbl_structure.php:155 tbl_structure.php:159 tbl_structure.php:472 #: tbl_tracking.php:322 msgid "Unique" msgstr "Único" @@ -1411,8 +1456,8 @@ msgstr "" "Parece que os índice %1$s e %2$s son iguais e posibelmente poderíase " "eliminar un deles" -#: libraries/List_Database.class.php:431 libraries/server_links.inc.php:41 -#: server_databases.php:88 server_privileges.php:1660 +#: libraries/List_Database.class.php:431 libraries/server_links.inc.php:42 +#: server_databases.php:88 server_privileges.php:1680 #: setup/lib/messages.inc.php:110 test/theme.php:93 msgid "Databases" msgstr "Bases de datos" @@ -1587,7 +1632,7 @@ msgstr "Contrasinal:" msgid "Server Choice" msgstr "Escolla de servidor" -#: libraries/auth/cookie.auth.lib.php:320 libraries/header.inc.php:59 +#: libraries/auth/cookie.auth.lib.php:320 libraries/header.inc.php:63 msgid "Cookies must be enabled past this point." msgstr "A partir de aquí debe permitir cookies." @@ -1670,7 +1715,7 @@ msgstr "" "Non é posíbel usar nen iconv nen libiconv nen a función recode_stringf " "mentres haxa engadidos por cargar. Comprobe a configuración do php." -#: libraries/common.inc.php:583 +#: libraries/common.inc.php:587 msgid "" "phpMyAdmin was unable to read your configuration file!
This might " "happen if PHP finds a parse error in it or PHP cannot find the file.
Se recibe unha " "páxina en branco é que todo está ben." -#: libraries/common.inc.php:594 +#: libraries/common.inc.php:598 #, fuzzy, php-format #| msgid "Could not load default configuration from: \"%1$s\"" msgid "Could not load default configuration from: %1$s" msgstr "Non se puido cargar a configuración desde: \"%1$s\"" -#: libraries/common.inc.php:599 +#: libraries/common.inc.php:603 msgid "" "The $cfg['PmaAbsoluteUri'] directive MUST be set in your " "configuration file!" @@ -1700,29 +1745,29 @@ msgstr "" "A directiva $cfg['PmaAbsoluteUri'] DEBE estar asignada no seu " "ficheiro de configuración." -#: libraries/common.inc.php:629 +#: libraries/common.inc.php:633 #, fuzzy, php-format #| msgid "Invalid server index: \"%s\"" msgid "Invalid server index: %s" msgstr "O índice do servidor non é válido: \"%s\"" -#: libraries/common.inc.php:636 +#: libraries/common.inc.php:640 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" "O nome de servidor non é válido para o servidor %1$s. Revise a configuración." -#: libraries/common.inc.php:645 libraries/header.inc.php:96 +#: libraries/common.inc.php:649 libraries/header.inc.php:100 #: libraries/select_server.lib.php:41 libraries/select_server.lib.php:47 #: main.php:185 test/theme.php:57 msgid "Server" msgstr "Servidor" -#: libraries/common.inc.php:823 +#: libraries/common.inc.php:827 msgid "Invalid authentication method set in configuration:" msgstr "Na configuración indicouse un método de autenticación que non válido::" -#: libraries/common.inc.php:926 +#: libraries/common.inc.php:930 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Debería actualizar a %s %s ou posterior." @@ -1857,45 +1902,45 @@ msgstr "," msgid "%B %d, %Y at %I:%M %p" msgstr "%d de %B de %Y ás %H:%M" -#: libraries/common.lib.php:1907 +#: libraries/common.lib.php:1911 #, 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:2322 libraries/common.lib.php:2325 +#: libraries/common.lib.php:2326 libraries/common.lib.php:2329 #: libraries/display_tbl.lib.php:290 server_status.php:719 msgid "Begin" msgstr "Inicio" -#: libraries/common.lib.php:2323 libraries/common.lib.php:2326 +#: libraries/common.lib.php:2327 libraries/common.lib.php:2330 #: libraries/display_tbl.lib.php:291 server_binlog.php:168 #: server_binlog.php:170 msgid "Previous" msgstr "Anterior" -#: libraries/common.lib.php:2354 libraries/common.lib.php:2357 +#: libraries/common.lib.php:2358 libraries/common.lib.php:2361 #: libraries/display_tbl.lib.php:353 msgid "End" msgstr "Fin" -#: libraries/common.lib.php:2430 +#: libraries/common.lib.php:2434 #, php-format msgid "Jump to database "%s"." msgstr "Saltar à base de datos "%s"." -#: libraries/common.lib.php:2450 +#: libraries/common.lib.php:2454 #, 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:2830 libraries/common.lib.php:2837 +#: libraries/common.lib.php:2834 libraries/common.lib.php:2841 #: libraries/db_links.inc.php:68 libraries/export/sql.php:25 -#: libraries/import/sql.php:18 libraries/server_links.inc.php:45 +#: libraries/import/sql.php:18 libraries/server_links.inc.php:46 #: libraries/tbl_links.inc.php:60 querywindow.php:99 test/theme.php:97 msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2839 libraries/db_links.inc.php:104 +#: libraries/common.lib.php:2843 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,15 +1988,15 @@ msgstr "Procurar cun exemplo" msgid "Designer" msgstr "Deseñador" -#: libraries/db_links.inc.php:98 libraries/server_links.inc.php:88 +#: libraries/db_links.inc.php:98 libraries/server_links.inc.php:89 #: libraries/tbl_links.inc.php:91 pmd_pdf.php:84 pmd_pdf.php:110 #: setup/frames/menu.inc.php:21 msgid "Import" msgstr "Importar" -#: libraries/db_links.inc.php:111 libraries/server_links.inc.php:66 -#: server_privileges.php:111 server_privileges.php:1722 -#: server_privileges.php:2071 test/theme.php:117 +#: libraries/db_links.inc.php:111 libraries/server_links.inc.php:67 +#: server_privileges.php:112 server_privileges.php:1742 +#: server_privileges.php:2092 test/theme.php:117 msgid "Privileges" msgstr "Privilexios" @@ -1970,7 +2015,7 @@ msgid "" msgstr "Pode non ser exacto. Consulte a FAQ 3.11" #: libraries/db_structure.lib.php:69 server_databases.php:142 -#: tbl_printview.php:336 tbl_structure.php:682 +#: tbl_printview.php:336 tbl_structure.php:680 msgid "Overhead" msgstr "De máis (Overhead)" @@ -1989,7 +2034,7 @@ msgid "(or the local MySQL server's socket is not correctly configured)" msgstr "" "(ou o socket local do servidor de MySQL non se configurou correctamente)" -#: libraries/dbi/mysql.dbi.lib.php:362 tbl_structure.php:608 +#: libraries/dbi/mysql.dbi.lib.php:362 tbl_structure.php:606 msgid "Details..." msgstr "Detalles..." @@ -1999,22 +2044,22 @@ msgid "Change password" msgstr "Trocar o contrasinal" #: libraries/display_change_password.lib.php:35 -#: libraries/replication_gui.lib.php:345 server_privileges.php:807 +#: libraries/replication_gui.lib.php:345 server_privileges.php:808 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:796 -#: server_privileges.php:800 server_privileges.php:811 -#: server_privileges.php:1538 server_synchronize.php:1175 +#: libraries/replication_gui.lib.php:349 server_privileges.php:797 +#: server_privileges.php:801 server_privileges.php:812 +#: server_privileges.php:1558 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:815 server_privileges.php:818 +#: server_privileges.php:816 server_privileges.php:819 msgid "Re-type" msgstr "Reescribir" @@ -2029,12 +2074,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:822 +#: libraries/replication_gui.lib.php:360 server_privileges.php:823 msgid "Generate Password" msgstr "Xerar un contrasinal" #: libraries/display_change_password.lib.php:75 -#: libraries/replication_gui.lib.php:363 server_privileges.php:825 +#: libraries/replication_gui.lib.php:363 server_privileges.php:826 msgid "Generate" msgstr "Xerar" @@ -2047,8 +2092,8 @@ msgstr "Crear unha base de datos nova" msgid "Create" msgstr "Crear" -#: libraries/display_create_database.lib.php:40 server_privileges.php:113 -#: server_privileges.php:1427 server_replication.php:35 +#: libraries/display_create_database.lib.php:40 server_privileges.php:114 +#: server_privileges.php:1447 server_replication.php:35 msgid "No Privileges" msgstr "Sen privilexios" @@ -2140,7 +2185,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:1875 server_processlist.php:75 +#: server_privileges.php:1895 server_processlist.php:75 msgid "None" msgstr "Ningunha" @@ -2336,7 +2381,7 @@ msgstr "Ordenar pola chave" #: libraries/import/docsql.php:34 libraries/import/ldi.php:47 #: libraries/import/ods.php:30 libraries/import/sql.php:20 #: libraries/import/xls.php:26 libraries/import/xlsx.php:26 -#: libraries/import/xml.php:25 tbl_select.php:267 tbl_structure.php:753 +#: libraries/import/xml.php:25 tbl_select.php:267 tbl_structure.php:751 msgid "Options" msgstr "Opcións" @@ -2413,7 +2458,7 @@ msgstr "a pesquisa levou %01.4f segundos" #: libraries/display_tbl.lib.php:2089 libraries/mult_submits.inc.php:113 #: querywindow.php:125 querywindow.php:129 querywindow.php:132 -#: tbl_structure.php:25 tbl_structure.php:150 tbl_structure.php:470 +#: tbl_structure.php:25 tbl_structure.php:150 tbl_structure.php:468 msgid "Change" msgstr "Mudar" @@ -2485,7 +2530,7 @@ msgstr "Uso da reserva da memoria intermedia" #: libraries/engines/innodb.lib.php:194 server_databases.php:137 #: server_databases.php:305 server_status.php:525 server_status.php:586 -#: server_status.php:607 tbl_printview.php:351 tbl_structure.php:696 +#: server_status.php:607 tbl_printview.php:351 tbl_structure.php:694 msgid "Total" msgstr "Total" @@ -2775,7 +2820,7 @@ msgstr "" "o nome e dáselles o número máis alto seguinte." #: libraries/export/codegen.php:37 setup/lib/messages.inc.php:88 -#: tbl_printview.php:376 tbl_structure.php:737 +#: tbl_printview.php:376 tbl_structure.php:735 msgid "Format" msgstr "Formato" @@ -2849,8 +2894,8 @@ 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:576 server_replication.php:316 tbl_printview.php:317 -#: tbl_structure.php:665 +#: server_privileges.php:577 server_replication.php:316 tbl_printview.php:317 +#: tbl_structure.php:663 msgid "Data" msgstr "Datos" @@ -2899,9 +2944,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:731 -#: server_privileges.php:734 server_privileges.php:790 -#: server_privileges.php:1537 server_privileges.php:2069 +#: libraries/replication_gui.lib.php:329 server_privileges.php:732 +#: server_privileges.php:735 server_privileges.php:791 +#: server_privileges.php:1557 server_privileges.php:2090 #: server_processlist.php:55 server_synchronize.php:1159 msgid "Host" msgstr "Servidor" @@ -3096,7 +3141,7 @@ msgstr "Exportar o contido" msgid "Open new phpMyAdmin window" msgstr "Abrir unha xanela nova co phpMyAdmin" -#: libraries/header.inc.php:115 +#: libraries/header.inc.php:119 #, fuzzy msgid "New table" msgstr "Sen táboas" @@ -3260,20 +3305,20 @@ 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 +#: tbl_structure.php:471 msgid "Primary" msgstr "Primaria" #: libraries/mult_submits.inc.php:98 libraries/tbl_properties.inc.php:116 #: libraries/tbl_properties.inc.php:525 tbl_printview.php:326 #: tbl_structure.php:31 tbl_structure.php:154 tbl_structure.php:158 -#: tbl_structure.php:475 tbl_structure.php:673 +#: tbl_structure.php:473 tbl_structure.php:671 msgid "Index" msgstr "Índice" #: libraries/mult_submits.inc.php:108 libraries/tbl_properties.inc.php:531 #: tbl_structure.php:35 tbl_structure.php:156 tbl_structure.php:160 -#: tbl_structure.php:478 +#: tbl_structure.php:476 msgid "Fulltext" msgstr "Texto completo" @@ -3578,8 +3623,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:711 -#: server_privileges.php:714 server_privileges.php:721 +#: libraries/replication_gui.lib.php:259 server_privileges.php:712 +#: server_privileges.php:715 server_privileges.php:722 #: server_synchronize.php:1171 msgid "User name" msgstr "Nome do usuario" @@ -3603,7 +3648,7 @@ msgstr "Variábel" #: 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 +#: tbl_structure.php:727 msgid "Value" msgstr "Valor" @@ -3623,34 +3668,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:716 +#: libraries/replication_gui.lib.php:254 server_privileges.php:717 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:717 -#: server_privileges.php:784 server_privileges.php:808 -#: server_privileges.php:1928 server_privileges.php:1958 +#: libraries/replication_gui.lib.php:346 server_privileges.php:718 +#: server_privileges.php:785 server_privileges.php:809 +#: server_privileges.php:1948 server_privileges.php:1978 msgid "Use text field" msgstr "Use campo de texto" -#: libraries/replication_gui.lib.php:302 server_privileges.php:764 +#: libraries/replication_gui.lib.php:302 server_privileges.php:765 msgid "Any host" msgstr "Calquera servidor" -#: libraries/replication_gui.lib.php:306 server_privileges.php:768 +#: libraries/replication_gui.lib.php:306 server_privileges.php:769 msgid "Local" msgstr "Local" -#: libraries/replication_gui.lib.php:312 server_privileges.php:773 +#: libraries/replication_gui.lib.php:312 server_privileges.php:774 msgid "This Host" msgstr "Este servidor" -#: libraries/replication_gui.lib.php:318 server_privileges.php:779 +#: libraries/replication_gui.lib.php:318 server_privileges.php:780 msgid "Use Host Table" msgstr "Usar a táboa de Host" -#: libraries/replication_gui.lib.php:331 server_privileges.php:792 +#: libraries/replication_gui.lib.php:331 server_privileges.php:793 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -3686,29 +3731,29 @@ msgstr "Linguaxe descoñecida: %1$s." msgid "Servers" msgstr "Servidores" -#: libraries/server_links.inc.php:53 server_engines.php:112 +#: libraries/server_links.inc.php:54 server_engines.php:112 #: server_engines.php:116 server_status.php:415 test/theme.php:105 msgid "Variables" msgstr "Variábeis" -#: libraries/server_links.inc.php:57 test/theme.php:109 +#: libraries/server_links.inc.php:58 test/theme.php:109 msgid "Charsets" msgstr "Conxuntos de caracteres" -#: libraries/server_links.inc.php:61 test/theme.php:113 +#: libraries/server_links.inc.php:62 test/theme.php:113 msgid "Engines" msgstr "Motores" -#: libraries/server_links.inc.php:76 server_binlog.php:110 +#: libraries/server_links.inc.php:77 server_binlog.php:110 #: server_status.php:364 test/theme.php:121 msgid "Binary log" msgstr "Ficheiro de rexistro binario" -#: libraries/server_links.inc.php:80 +#: libraries/server_links.inc.php:81 msgid "Processes" msgstr "Procesos" -#: libraries/server_links.inc.php:92 server_synchronize.php:1092 +#: libraries/server_links.inc.php:93 server_synchronize.php:1092 #: server_synchronize.php:1100 msgid "Synchronize" msgstr "Sincronizar" @@ -3958,13 +4003,13 @@ msgstr "Definición da PARTICIÓN" msgid "Save" msgstr "Gardar" -#: libraries/tbl_properties.inc.php:780 tbl_structure.php:542 +#: libraries/tbl_properties.inc.php:780 tbl_structure.php:540 #, fuzzy, php-format #| msgid "Add column(s)" msgid "Add %s column(s)" msgstr "Engadir columna(s)" -#: libraries/tbl_properties.inc.php:784 tbl_structure.php:536 +#: libraries/tbl_properties.inc.php:784 tbl_structure.php:534 #, fuzzy #| msgid "You have to add at least one field." msgid "You have to add at least one column." @@ -4178,8 +4223,8 @@ msgstr "Reiniciar" msgid "Protocol version" msgstr "Versión do protocolo" -#: main.php:189 server_privileges.php:1389 server_privileges.php:1536 -#: server_privileges.php:1650 server_privileges.php:2068 +#: main.php:189 server_privileges.php:1406 server_privileges.php:1556 +#: server_privileges.php:1670 server_privileges.php:2089 #: server_processlist.php:54 msgid "User" msgstr "Usuario" @@ -4641,112 +4686,112 @@ msgstr "Motores de almacenamento" msgid "View dump (schema) of databases" msgstr "Ver o volcado das bases de datos" -#: server_privileges.php:24 server_privileges.php:266 +#: server_privileges.php:25 server_privileges.php:267 msgid "Includes all privileges except GRANT." msgstr "Inclúe todos os privilexios a excepción de GRANT (Conceder)." -#: server_privileges.php:25 server_privileges.php:192 -#: server_privileges.php:515 +#: server_privileges.php:26 server_privileges.php:193 +#: server_privileges.php:516 msgid "Allows altering the structure of existing tables." msgstr "Permite alterar a estrutura das táboas xa existentes." -#: server_privileges.php:26 server_privileges.php:208 -#: server_privileges.php:521 +#: server_privileges.php:27 server_privileges.php:209 +#: server_privileges.php:522 msgid "Allows altering and dropping stored routines." msgstr "Permite alterar e eliminar rutinas armacenadas." -#: server_privileges.php:27 server_privileges.php:184 -#: server_privileges.php:514 +#: server_privileges.php:28 server_privileges.php:185 +#: server_privileges.php:515 msgid "Allows creating new databases and tables." msgstr "Permite crear bases de datos e táboas novas." -#: server_privileges.php:28 server_privileges.php:207 -#: server_privileges.php:520 +#: server_privileges.php:29 server_privileges.php:208 +#: server_privileges.php:521 msgid "Allows creating stored routines." msgstr "Permite crear rutinas almacenadas." -#: server_privileges.php:29 server_privileges.php:514 +#: server_privileges.php:30 server_privileges.php:515 msgid "Allows creating new tables." msgstr "Permite crear táboas novas." -#: server_privileges.php:30 server_privileges.php:195 -#: server_privileges.php:518 +#: server_privileges.php:31 server_privileges.php:196 +#: server_privileges.php:519 msgid "Allows creating temporary tables." msgstr "Permite crear táboas temporais." -#: server_privileges.php:31 server_privileges.php:209 -#: server_privileges.php:554 +#: server_privileges.php:32 server_privileges.php:210 +#: server_privileges.php:555 msgid "Allows creating, dropping and renaming user accounts." msgstr "Permite crear, eliminar e mudar o nome das contas de usuario." -#: server_privileges.php:32 server_privileges.php:199 -#: server_privileges.php:203 server_privileges.php:526 -#: server_privileges.php:530 +#: server_privileges.php:33 server_privileges.php:200 +#: server_privileges.php:204 server_privileges.php:527 +#: server_privileges.php:531 msgid "Allows creating new views." msgstr "Permite crear vistas novas." -#: server_privileges.php:33 server_privileges.php:183 -#: server_privileges.php:506 +#: server_privileges.php:34 server_privileges.php:184 +#: server_privileges.php:507 msgid "Allows deleting data." msgstr "Permite eliminar datos." -#: server_privileges.php:34 server_privileges.php:185 -#: server_privileges.php:517 +#: server_privileges.php:35 server_privileges.php:186 +#: server_privileges.php:518 msgid "Allows dropping databases and tables." msgstr "Permite eliminar bases de datos e táboas." -#: server_privileges.php:35 server_privileges.php:517 +#: server_privileges.php:36 server_privileges.php:518 msgid "Allows dropping tables." msgstr "Permite eliminar táboas." -#: server_privileges.php:36 server_privileges.php:200 -#: server_privileges.php:534 +#: server_privileges.php:37 server_privileges.php:201 +#: server_privileges.php:535 msgid "Allows to set up events for the event scheduler" msgstr "Permite configurar acontecementos para o programador de acontecementos" -#: server_privileges.php:37 server_privileges.php:210 -#: server_privileges.php:522 +#: server_privileges.php:38 server_privileges.php:211 +#: server_privileges.php:523 msgid "Allows executing stored routines." msgstr "Permite executar rutinas almacenadas." -#: server_privileges.php:38 server_privileges.php:189 -#: server_privileges.php:509 +#: server_privileges.php:39 server_privileges.php:190 +#: server_privileges.php:510 msgid "Allows importing data from and exporting data into files." msgstr "Permite importar e exportar datos desde e para ficheiros." -#: server_privileges.php:39 server_privileges.php:540 +#: server_privileges.php:40 server_privileges.php:541 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "Permite engadir usuarios e privilexios sen recargar as táboas de privilexios." -#: server_privileges.php:40 server_privileges.php:191 -#: server_privileges.php:516 +#: server_privileges.php:41 server_privileges.php:192 +#: server_privileges.php:517 msgid "Allows creating and dropping indexes." msgstr "Permite crear e eliminar índices." -#: server_privileges.php:41 server_privileges.php:181 -#: server_privileges.php:442 server_privileges.php:504 +#: server_privileges.php:42 server_privileges.php:182 +#: server_privileges.php:443 server_privileges.php:505 msgid "Allows inserting and replacing data." msgstr "Permite inserir e substituír datos." -#: server_privileges.php:42 server_privileges.php:196 -#: server_privileges.php:549 +#: server_privileges.php:43 server_privileges.php:197 +#: server_privileges.php:550 msgid "Allows locking tables for the current thread." msgstr "Permite bloquear táboas do fío en uso" -#: server_privileges.php:43 server_privileges.php:646 -#: server_privileges.php:648 +#: server_privileges.php:44 server_privileges.php:647 +#: server_privileges.php:649 msgid "Limits the number of new connections the user may open per hour." msgstr "Limita o número de conexións novas por hora que pode abrir un usuario." -#: server_privileges.php:44 server_privileges.php:634 -#: server_privileges.php:636 +#: server_privileges.php:45 server_privileges.php:635 +#: server_privileges.php:637 msgid "Limits the number of queries the user may send to the server per hour." msgstr "Limita o número de procuras por hora que pode enviar un usuario." -#: server_privileges.php:45 server_privileges.php:640 -#: server_privileges.php:642 +#: server_privileges.php:46 server_privileges.php:641 +#: server_privileges.php:643 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -4754,58 +4799,58 @@ msgstr "" "Limita o número de ordes que modifiquen unha táboa ou base de datos por hora " "que pode executar un usuario." -#: server_privileges.php:46 server_privileges.php:652 -#: server_privileges.php:654 +#: server_privileges.php:47 server_privileges.php:653 +#: server_privileges.php:655 msgid "Limits the number of simultaneous connections the user may have." msgstr "Limita o número de conexións simultáneas que pode ter o usuario." -#: server_privileges.php:47 server_privileges.php:188 -#: server_privileges.php:544 +#: server_privileges.php:48 server_privileges.php:189 +#: server_privileges.php:545 msgid "Allows viewing processes of all users" msgstr "Permite ver procesos de todos os usuarios" -#: server_privileges.php:48 server_privileges.php:190 -#: server_privileges.php:448 server_privileges.php:550 +#: server_privileges.php:49 server_privileges.php:191 +#: server_privileges.php:449 server_privileges.php:551 msgid "Has no effect in this MySQL version." msgstr "Non funciona nesta versión do MySQL." -#: server_privileges.php:49 server_privileges.php:186 -#: server_privileges.php:545 +#: server_privileges.php:50 server_privileges.php:187 +#: server_privileges.php:546 msgid "Allows reloading server settings and flushing the server's caches." msgstr "Permite recargar a configuración do servidor e limpar a súa caché." -#: server_privileges.php:50 server_privileges.php:198 -#: server_privileges.php:552 +#: server_privileges.php:51 server_privileges.php:199 +#: server_privileges.php:553 msgid "Allows the user to ask where the slaves / masters are." msgstr "Permite que o usuario pregunte onde están os escravos e os masters." -#: server_privileges.php:51 server_privileges.php:197 -#: server_privileges.php:553 +#: server_privileges.php:52 server_privileges.php:198 +#: server_privileges.php:554 msgid "Needed for the replication slaves." msgstr "Necesario para os escravos de replicación." -#: server_privileges.php:52 server_privileges.php:180 -#: server_privileges.php:439 server_privileges.php:503 +#: server_privileges.php:53 server_privileges.php:181 +#: server_privileges.php:440 server_privileges.php:504 msgid "Allows reading data." msgstr "Permite gravar datos." -#: server_privileges.php:53 server_privileges.php:193 -#: server_privileges.php:547 +#: server_privileges.php:54 server_privileges.php:194 +#: server_privileges.php:548 msgid "Gives access to the complete list of databases." msgstr "Permite acceder á listaxe completa de bases de datos" -#: server_privileges.php:54 server_privileges.php:204 -#: server_privileges.php:206 server_privileges.php:519 +#: server_privileges.php:55 server_privileges.php:205 +#: server_privileges.php:207 server_privileges.php:520 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Permite realizar consultas SHOW CREATE VIEW." -#: server_privileges.php:55 server_privileges.php:187 -#: server_privileges.php:546 +#: server_privileges.php:56 server_privileges.php:188 +#: server_privileges.php:547 msgid "Allows shutting down the server." msgstr "Permite apagar o servidor." -#: server_privileges.php:56 server_privileges.php:194 -#: server_privileges.php:543 +#: server_privileges.php:57 server_privileges.php:195 +#: server_privileges.php:544 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -4815,158 +4860,158 @@ msgstr "" "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 +#: server_privileges.php:58 server_privileges.php:202 +#: server_privileges.php:536 msgid "Allows creating and dropping triggers" msgstr "Permite crear e eliminar os disparadores" -#: server_privileges.php:58 server_privileges.php:182 -#: server_privileges.php:445 server_privileges.php:505 +#: server_privileges.php:59 server_privileges.php:183 +#: server_privileges.php:446 server_privileges.php:506 msgid "Allows changing data." msgstr "Permite modificar datos." -#: server_privileges.php:59 server_privileges.php:260 +#: server_privileges.php:60 server_privileges.php:261 msgid "No privileges." msgstr "Sen privilexios." -#: server_privileges.php:302 server_privileges.php:303 +#: server_privileges.php:303 server_privileges.php:304 #, fuzzy #| msgid "None" msgctxt "None privileges" msgid "None" msgstr "Ningunha" -#: server_privileges.php:431 server_privileges.php:566 -#: server_privileges.php:1718 server_privileges.php:1724 +#: server_privileges.php:432 server_privileges.php:567 +#: server_privileges.php:1738 server_privileges.php:1744 msgid "Table-specific privileges" msgstr "Privilexios propios de táboa" -#: server_privileges.php:432 server_privileges.php:574 -#: server_privileges.php:1540 +#: server_privileges.php:433 server_privileges.php:575 +#: server_privileges.php:1560 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:563 server_privileges.php:1539 +#: server_privileges.php:564 server_privileges.php:1559 msgid "Global privileges" msgstr "Privilexios globais" -#: server_privileges.php:565 server_privileges.php:1718 +#: server_privileges.php:566 server_privileges.php:1738 msgid "Database-specific privileges" msgstr "Privilexios propios de base de datos" -#: server_privileges.php:610 +#: server_privileges.php:611 msgid "Administration" msgstr "Administración" -#: server_privileges.php:630 +#: server_privileges.php:631 msgid "Resource limits" msgstr "Limites de recursos" -#: server_privileges.php:631 +#: server_privileges.php:632 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "Nota: Se estas opcións se configuran como 0 (cero) elimínase o límite." -#: server_privileges.php:708 +#: server_privileges.php:709 msgid "Login Information" msgstr "Información sobre o acceso (login)" -#: server_privileges.php:802 +#: server_privileges.php:803 msgid "Do not change the password" msgstr "Non mude o contrasinal" -#: server_privileges.php:843 server_privileges.php:2205 +#: server_privileges.php:844 server_privileges.php:2226 #, fuzzy #| msgid "No user(s) found." msgid "No user found." msgstr "Non se achou ningún usuario." -#: server_privileges.php:887 +#: server_privileges.php:888 #, php-format msgid "The user %s already exists!" msgstr "Xa existe o usuario %s" -#: server_privileges.php:970 +#: server_privileges.php:971 msgid "You have added a new user." msgstr "Engadiuse o usuario." -#: server_privileges.php:1191 +#: server_privileges.php:1196 #, php-format msgid "You have updated the privileges for %s." msgstr "Acaba de actualizar os privilexios de %s." -#: server_privileges.php:1215 +#: server_privileges.php:1220 #, php-format msgid "You have revoked the privileges for %s" msgstr "Retiroulle os privilexios a %s" -#: server_privileges.php:1251 +#: server_privileges.php:1256 #, php-format msgid "The password for %s was changed successfully." msgstr "Modificouse sen problemas o contrasinal de %s." -#: server_privileges.php:1271 +#: server_privileges.php:1276 #, php-format msgid "Deleting %s" msgstr "A eliminar %s" -#: server_privileges.php:1282 +#: server_privileges.php:1287 msgid "No users selected for deleting!" msgstr "Non se seleccionaron utilizadores para eliminar!" -#: server_privileges.php:1285 +#: server_privileges.php:1290 msgid "Reloading the privileges" msgstr "A recargar os privilexios" -#: server_privileges.php:1300 +#: server_privileges.php:1305 msgid "The selected users have been deleted successfully." msgstr "Elimináronse sen problemas os usuarios seleccionados." -#: server_privileges.php:1335 +#: server_privileges.php:1344 msgid "The privileges were reloaded successfully." msgstr "Non houbo problemas ao recargar os privilexios." -#: server_privileges.php:1363 server_privileges.php:1649 +#: server_privileges.php:1380 server_privileges.php:1669 msgid "Edit Privileges" msgstr "Modificar privilexios" -#: server_privileges.php:1372 +#: server_privileges.php:1389 msgid "Revoke" msgstr "Revogar" -#: server_privileges.php:1404 +#: server_privileges.php:1424 msgid "User overview" msgstr "Vista xeral dos usuarios" -#: server_privileges.php:1541 server_privileges.php:1723 -#: server_privileges.php:2072 +#: server_privileges.php:1561 server_privileges.php:1743 +#: server_privileges.php:2093 msgid "Grant" msgstr "Conceder" -#: server_privileges.php:1560 server_privileges.php:2162 +#: server_privileges.php:1580 server_privileges.php:2183 msgid "Any" msgstr "Calquera" -#: server_privileges.php:1609 server_privileges.php:1633 -#: server_privileges.php:2027 server_privileges.php:2216 +#: server_privileges.php:1629 server_privileges.php:1653 +#: server_privileges.php:2048 server_privileges.php:2237 msgid "Add a new User" msgstr "Engadir un usuario novo" -#: server_privileges.php:1614 +#: server_privileges.php:1634 msgid "Remove selected users" msgstr "Eliminar os usuarios seleccionados" -#: server_privileges.php:1617 +#: server_privileges.php:1637 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:1618 server_privileges.php:1619 -#: server_privileges.php:1620 +#: server_privileges.php:1638 server_privileges.php:1639 +#: server_privileges.php:1640 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:1636 +#: server_privileges.php:1656 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -4979,51 +5024,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:1684 +#: server_privileges.php:1704 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:1724 +#: server_privileges.php:1744 msgid "Column-specific privileges" msgstr "Privilexios propios de columna" -#: server_privileges.php:1925 +#: server_privileges.php:1945 msgid "Add privileges on the following database" msgstr "Engadir privilexios para esta base de datos" -#: server_privileges.php:1943 +#: server_privileges.php:1963 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:1946 +#: server_privileges.php:1966 msgid "Add privileges on the following table" msgstr "Engadir privilexios para a esta táboa" -#: server_privileges.php:2003 +#: server_privileges.php:2023 msgid "Change Login Information / Copy User" msgstr "Modificar a información de acceso (login) / Copiar o utilizador" -#: server_privileges.php:2006 +#: server_privileges.php:2026 msgid "Create a new user with the same privileges and ..." msgstr "Crear un utilizador novo cos mesmos privilexios e..." -#: server_privileges.php:2008 +#: server_privileges.php:2028 msgid "... keep the old one." msgstr "... manter o anterior." -#: server_privileges.php:2009 +#: server_privileges.php:2029 msgid " ... delete the old one from the user tables." msgstr " ... eliminar o anterior das táboas de utilizadores." -#: server_privileges.php:2010 +#: server_privileges.php:2030 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:2011 +#: server_privileges.php:2031 msgid "" " ... delete the old one from the user tables and reload the privileges " "afterwards." @@ -5031,44 +5076,44 @@ msgstr "" " ... eliminar o anterior das táboas de utilizadores e recargar os " "privilexios despois." -#: server_privileges.php:2033 +#: server_privileges.php:2054 msgid "Database for user" msgstr "Base de datos para o usuario" -#: server_privileges.php:2037 +#: server_privileges.php:2058 #, fuzzy #| msgid "None" msgctxt "Create none database for user" msgid "None" msgstr "Ningunha" -#: server_privileges.php:2038 +#: server_privileges.php:2059 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:2039 +#: server_privileges.php:2060 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "Conceder todos os privilexios para o nome con comodíns (username\\_%)" -#: server_privileges.php:2042 +#: server_privileges.php:2063 #, php-format msgid "Grant all privileges on database "%s"" msgstr "Conceder todos os privilexios sobre a base de datos "%s"" -#: server_privileges.php:2065 +#: server_privileges.php:2086 #, php-format msgid "Users having access to "%s"" msgstr "Usuarios que teñen acceso a "%s"" -#: server_privileges.php:2173 +#: server_privileges.php:2194 msgid "global" msgstr "global" -#: server_privileges.php:2175 +#: server_privileges.php:2196 msgid "database-specific" msgstr "específico da base de datos" -#: server_privileges.php:2177 +#: server_privileges.php:2198 msgid "wildcard" msgstr "comodín" @@ -8142,6 +8187,10 @@ msgstr "" msgid "Show insert query" msgstr "Mostrar procura SQL" +#: tbl_change.php:1143 +msgid "and then" +msgstr "e despois" + #: tbl_change.php:1147 msgid "Go back to previous page" msgstr "Voltar" @@ -8223,7 +8272,7 @@ msgstr "" msgid "Add to index  %s column(s)" msgstr "Engadir ao índice  %s coluna(s)" -#: tbl_indexes.php:256 tbl_structure.php:589 tbl_structure.php:600 +#: tbl_indexes.php:256 tbl_structure.php:587 tbl_structure.php:598 msgid "Column count has to be larger than zero." msgstr "O número de columnas ten que ser maior de cero" @@ -8337,39 +8386,39 @@ msgstr "Comprobar a integridade das referencias:" msgid "Show tables" msgstr "Mostrar as táboas" -#: tbl_printview.php:310 tbl_structure.php:656 +#: tbl_printview.php:310 tbl_structure.php:654 msgid "Space usage" msgstr "Uso do espazo" -#: tbl_printview.php:314 tbl_structure.php:660 +#: tbl_printview.php:314 tbl_structure.php:658 msgid "Usage" msgstr "Uso" -#: tbl_printview.php:341 tbl_structure.php:687 +#: tbl_printview.php:341 tbl_structure.php:685 msgid "Effective" msgstr "Efectivo" -#: tbl_printview.php:366 tbl_structure.php:725 +#: tbl_printview.php:366 tbl_structure.php:723 msgid "Row Statistics" msgstr "Estatísticas da fileira" -#: tbl_printview.php:369 tbl_structure.php:728 +#: tbl_printview.php:369 tbl_structure.php:726 msgid "Statements" msgstr "Informacións" -#: tbl_printview.php:380 tbl_structure.php:740 +#: tbl_printview.php:380 tbl_structure.php:738 msgid "static" msgstr "estático" -#: tbl_printview.php:382 tbl_structure.php:742 +#: tbl_printview.php:382 tbl_structure.php:740 msgid "dynamic" msgstr "dinámico" -#: tbl_printview.php:404 tbl_structure.php:785 +#: tbl_printview.php:404 tbl_structure.php:783 msgid "Row length" msgstr "Lonxitude da fileira" -#: tbl_printview.php:414 tbl_structure.php:793 +#: tbl_printview.php:414 tbl_structure.php:791 msgid " Row size " msgstr " Tamaño da fileira " @@ -8446,50 +8495,50 @@ msgstr "Ningunha" msgid "Column %s has been dropped" msgstr "Eliminouse a táboa %s" -#: tbl_structure.php:385 +#: tbl_structure.php:384 #, php-format msgid "A primary key has been added on %s" msgstr "Engadiuse unha chave primaria a %s" -#: tbl_structure.php:400 tbl_structure.php:414 tbl_structure.php:428 +#: tbl_structure.php:398 tbl_structure.php:412 tbl_structure.php:426 #, php-format msgid "An index has been added on %s" msgstr "Engadiusese un índice a %s" -#: tbl_structure.php:506 tbl_structure.php:508 +#: tbl_structure.php:504 tbl_structure.php:506 msgid "Relation view" msgstr "Vista das relacións" -#: tbl_structure.php:515 tbl_structure.php:517 +#: tbl_structure.php:513 tbl_structure.php:515 msgid "Propose table structure" msgstr "Propor unha estrutura para a táboa" -#: tbl_structure.php:540 +#: tbl_structure.php:538 #, fuzzy #| msgid "Add column(s)" msgid "Add column" msgstr "Engadir columna(s)" -#: tbl_structure.php:554 +#: tbl_structure.php:552 msgid "At End of Table" msgstr "Ao final da táboa" -#: tbl_structure.php:555 +#: tbl_structure.php:553 msgid "At Beginning of Table" msgstr "No comezo da táboa" -#: tbl_structure.php:556 +#: tbl_structure.php:554 #, php-format msgid "After %s" msgstr "Despois de %s" -#: tbl_structure.php:594 +#: tbl_structure.php:592 #, fuzzy, php-format #| msgid "Create an index on %s columns" msgid "Create an index on  %s columns" msgstr "Crear un índice en %s colunas" -#: tbl_structure.php:756 +#: tbl_structure.php:754 msgid "partitioned" msgstr "particionado" @@ -8985,9 +9034,6 @@ msgstr "Mudar o nome da táboa para" #~ msgid "Process list" #~ msgstr "Listaxe dos procesos" -#~ msgid "Reload privileges" -#~ msgstr "Volver a cargar os privilexios" - #~ msgid "" #~ "The users will still have the USAGE privilege until the privileges are " #~ "reloaded." diff --git a/po/he.po b/po/he.po index 4e92afa07..666e7bb75 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-13 09:03-0400\n" +"POT-Creation-Date: 2010-06-22 00:55+0530\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:1514 +#: libraries/display_tbl.lib.php:417 server_privileges.php:1534 msgid "Show all" msgstr "ראיית הכל" -#: browse_foreigners.php:82 libraries/common.lib.php:2313 +#: browse_foreigners.php:82 libraries/common.lib.php:2317 #: 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,18 +34,18 @@ 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:2831 -#: libraries/common.lib.php:2838 libraries/db_links.inc.php:75 +#: db_structure.php:106 libraries/common.lib.php:2835 +#: libraries/common.lib.php:2842 libraries/db_links.inc.php:75 #: libraries/tbl_links.inc.php:63 msgid "Search" msgstr "חיפוש" -#: browse_foreigners.php:153 db_operations.php:385 db_operations.php:429 -#: db_operations.php:499 db_operations.php:609 db_search.php:362 -#: db_structure.php:567 js/messages.php:48 libraries/Config.class.php:1046 +#: browse_foreigners.php:153 db_operations.php:394 db_operations.php:438 +#: db_operations.php:508 db_operations.php:618 db_search.php:362 +#: db_structure.php:565 js/messages.php:53 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:1335 libraries/common.lib.php:2288 +#: libraries/common.lib.php:1335 libraries/common.lib.php:2292 #: 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,15 +56,15 @@ 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:664 server_privileges.php:1624 -#: server_privileges.php:1971 server_privileges.php:2018 -#: server_privileges.php:2057 server_replication.php:235 +#: server_privileges.php:665 server_privileges.php:1644 +#: server_privileges.php:1991 server_privileges.php:2038 +#: server_privileges.php:2078 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 #: tbl_operations.php:302 tbl_operations.php:499 tbl_operations.php:561 -#: tbl_operations.php:681 tbl_select.php:327 tbl_structure.php:562 -#: tbl_structure.php:597 tbl_tracking.php:395 tbl_tracking.php:512 +#: tbl_operations.php:681 tbl_select.php:327 tbl_structure.php:560 +#: tbl_structure.php:595 tbl_tracking.php:395 tbl_tracking.php:512 #: view_create.php:182 view_operations.php:101 msgid "Go" msgstr "סע" @@ -90,7 +90,7 @@ msgstr "השתמש בערך זה" msgid "Database %1$s has been created." msgstr "מסד הנתונים %s נמחק." -#: db_datadict.php:49 db_operations.php:378 +#: db_datadict.php:49 db_operations.php:387 msgid "Database comment: " msgstr "הערה על מאגר הנתונים: " @@ -117,10 +117,10 @@ 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:2070 +#: pdf_schema.php:1263 pdf_schema.php:1284 server_privileges.php:2091 #: 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 +#: tbl_structure.php:657 tbl_tracking.php:274 tbl_tracking.php:321 msgid "Type" msgstr "סוג" @@ -133,7 +133,7 @@ msgstr "סוג" msgid "Null" msgstr "Null" -#: db_datadict.php:178 db_structure.php:501 libraries/export/htmlword.php:247 +#: db_datadict.php:178 db_structure.php:499 libraries/export/htmlword.php:247 #: libraries/export/latex.php:360 libraries/export/odt.php:303 #: libraries/export/texytext.php:236 libraries/tbl_properties.inc.php:106 #: pdf_schema.php:1266 pdf_schema.php:1287 tbl_printview.php:146 @@ -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: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 +#: pdf_schema.php:1344 server_privileges.php:1588 server_privileges.php:1599 +#: server_privileges.php:1909 server_privileges.php:1914 +#: server_privileges.php:2208 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:1565 -#: server_privileges.php:1579 server_privileges.php:1889 -#: server_privileges.php:1892 server_privileges.php:2187 sql.php:193 +#: server_databases.php:64 server_privileges.php:1585 +#: server_privileges.php:1599 server_privileges.php:1909 +#: server_privileges.php:1912 server_privileges.php:2208 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" @@ -206,126 +206,122 @@ msgstr "בחירת הכל" msgid "Unselect All" msgstr "בטל בחירת הכל" -#: db_operations.php:38 tbl_create.php:54 +#: db_operations.php:43 tbl_create.php:54 msgid "The database name is empty!" msgstr "שם מאגר הנתונים ריק!" -#: db_operations.php:236 +#: db_operations.php:241 #, php-format msgid "Database %s has been renamed to %s" msgstr "מאגר נתונים %s שונה אל %s" -#: db_operations.php:240 +#: db_operations.php:245 #, php-format msgid "Database %s has been copied to %s" msgstr "מאגר נתונים %s הועתק אל %s" -#: db_operations.php:412 +#: db_operations.php:421 msgid "Rename database to" msgstr "שינוי שם מאגר נתונים אל" -#: db_operations.php:417 server_processlist.php:57 +#: db_operations.php:426 server_processlist.php:57 msgid "Command" msgstr "פקודה" -#: db_operations.php:429 tbl_change.php:1143 -msgid "and then" -msgstr "ואז" - -#: db_operations.php:455 +#: db_operations.php:464 msgid "Copy database to" msgstr "העתקת מאגר נתונים אל" -#: db_operations.php:462 tbl_operations.php:528 tbl_tracking.php:388 +#: db_operations.php:471 tbl_operations.php:528 tbl_tracking.php:388 msgid "Structure only" msgstr "מבנה בלבד" -#: db_operations.php:463 tbl_operations.php:529 tbl_tracking.php:390 +#: db_operations.php:472 tbl_operations.php:529 tbl_tracking.php:390 msgid "Structure and data" msgstr "מבנה ומידע" -#: db_operations.php:464 tbl_operations.php:530 tbl_tracking.php:389 +#: db_operations.php:473 tbl_operations.php:530 tbl_tracking.php:389 msgid "Data only" msgstr "מידע בלבד" -#: db_operations.php:472 +#: db_operations.php:481 msgid "CREATE DATABASE before copying" msgstr "CREATE DATABASE לפני העתקה" -#: db_operations.php:475 libraries/export/sql.php:52 +#: db_operations.php:484 libraries/export/sql.php:52 #: libraries/export/sql.php:74 libraries/export/sql.php:76 #: libraries/export/sql.php:82 tbl_operations.php:536 #, php-format msgid "Add %s" msgstr "" -#: db_operations.php:479 libraries/export/sql.php:78 tbl_operations.php:299 +#: db_operations.php:488 libraries/export/sql.php:78 tbl_operations.php:299 #: tbl_operations.php:538 msgid "Add AUTO_INCREMENT value" msgstr "הוספת ערך AUTO_INCREMENT (מספור אוטומטי)" -#: db_operations.php:483 tbl_operations.php:545 +#: db_operations.php:492 tbl_operations.php:545 msgid "Add constraints" msgstr "הוספת הגבלות" -#: db_operations.php:496 +#: db_operations.php:505 msgid "Switch to copied database" msgstr "מעבר למאגר נתונים שהועתק" -#: db_operations.php:537 +#: db_operations.php:546 msgid "BLOB Repository" msgstr "" -#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1352 -#: libraries/server_links.inc.php:49 server_processlist.php:59 +#: db_operations.php:549 db_tracking.php:76 libraries/common.lib.php:1352 +#: libraries/server_links.inc.php:50 server_processlist.php:59 #: tbl_tracking.php:596 test/theme.php:101 msgid "Status" msgstr "מצב" -#: db_operations.php:548 +#: db_operations.php:557 #, fuzzy #| msgid "Enabled" msgctxt "BLOB repository" msgid "Enabled" msgstr "מופעל" -#: db_operations.php:552 +#: db_operations.php:561 #, fuzzy msgid "Disable" msgstr "מבוטל" -#: db_operations.php:562 +#: db_operations.php:571 msgid "Damaged" msgstr "" -#: db_operations.php:566 +#: db_operations.php:575 #, fuzzy msgctxt "BLOB repository" msgid "Repair" msgstr "תיקון טבלה" -#: db_operations.php:574 +#: db_operations.php:583 #, fuzzy #| msgid "Disabled" msgctxt "BLOB repository" msgid "Disabled" msgstr "מבוטל" -#: db_operations.php:578 +#: db_operations.php:587 #, fuzzy msgid "Enable" msgstr "מופעל" -#: db_operations.php:602 libraries/Index.class.php:448 +#: db_operations.php:611 libraries/Index.class.php:448 #: libraries/db_structure.lib.php:62 libraries/mysql_charsets.lib.php:107 #: libraries/tbl_properties.inc.php:107 libraries/tbl_properties.inc.php:730 #: server_collations.php:54 server_collations.php:66 server_databases.php:111 #: tbl_operations.php:363 tbl_select.php:137 tbl_structure.php:179 -#: tbl_structure.php:767 tbl_tracking.php:275 tbl_tracking.php:326 +#: tbl_structure.php:765 tbl_tracking.php:275 tbl_tracking.php:326 msgid "Collation" msgstr "קידוד" -#: db_operations.php:615 main.php:316 pdf_schema.php:34 +#: db_operations.php:624 main.php:316 pdf_schema.php:34 #, php-format msgid "" "The additional features for working with linked tables have been " @@ -333,14 +329,14 @@ msgid "" msgstr "" "תכונות נוספות לעבודה עם טבלאות מקושרות בוטלו. לעוד מידע למה לחץ %sכאן%s." -#: db_operations.php:648 +#: db_operations.php:657 msgid "Edit PDF Pages" 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:1665 -#: server_privileges.php:1721 server_privileges.php:1985 +#: libraries/header.inc.php:130 pdf_pages.php:424 server_privileges.php:1685 +#: server_privileges.php:1741 server_privileges.php:2005 #: server_synchronize.php:423 server_synchronize.php:866 tbl_tracking.php:592 #: test/theme.php:75 msgid "Table" @@ -349,7 +345,7 @@ msgstr "טבלה" #: db_printview.php:105 libraries/db_structure.lib.php:56 #: libraries/header_printview.inc.php:63 libraries/import.lib.php:146 #: navigation.php:638 navigation.php:660 server_databases.php:122 -#: tbl_printview.php:394 tbl_structure.php:365 tbl_structure.php:777 +#: tbl_printview.php:394 tbl_structure.php:365 tbl_structure.php:775 msgid "Rows" msgstr "שורות" @@ -357,30 +353,30 @@ msgstr "שורות" msgid "Size" msgstr "גודל" -#: db_printview.php:162 db_structure.php:457 libraries/export/sql.php:559 +#: db_printview.php:162 db_structure.php:455 libraries/export/sql.php:559 #: libraries/export/sql.php:899 msgid "in use" msgstr "בשימוש" #: db_printview.php:187 libraries/db_info.inc.php:88 #: libraries/export/sql.php:514 pdf_schema.php:1241 tbl_printview.php:434 -#: tbl_structure.php:809 +#: tbl_structure.php:807 msgid "Creation" msgstr "יצירה" #: db_printview.php:196 libraries/db_info.inc.php:93 #: libraries/export/sql.php:519 pdf_schema.php:1246 tbl_printview.php:444 -#: tbl_structure.php:817 +#: tbl_structure.php:815 msgid "Last update" msgstr "עדכון אחרון" #: db_printview.php:205 libraries/db_info.inc.php:98 #: libraries/export/sql.php:524 pdf_schema.php:1251 tbl_printview.php:454 -#: tbl_structure.php:825 +#: tbl_structure.php:823 msgid "Last check" msgstr "נבדק לאחרונה" -#: db_printview.php:222 db_structure.php:480 +#: db_printview.php:222 db_structure.php:478 #, fuzzy, php-format #| msgid "%s table(s)" msgid "%s table" @@ -441,7 +437,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:297 tbl_change.php:1031 tbl_indexes.php:250 +#: server_privileges.php:298 tbl_change.php:1031 tbl_indexes.php:250 #: tbl_select.php:288 msgid "Or" msgstr "או" @@ -514,9 +510,9 @@ 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:2833 +#: db_structure.php:105 libraries/common.lib.php:2837 #: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50 -#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:467 +#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:465 msgid "Browse" msgstr "עיון" @@ -561,36 +557,36 @@ 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:2832 libraries/sql_query_form.lib.php:334 +#: libraries/common.lib.php:2836 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:2829 libraries/common.lib.php:2836 +#: libraries/common.lib.php:2833 libraries/common.lib.php:2840 #: 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:1106 #: libraries/tbl_links.inc.php:56 pmd_general.php:134 -#: server_privileges.php:593 server_replication.php:315 tbl_tracking.php:269 +#: server_privileges.php:594 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:1656 +#: db_structure.php:543 db_structure.php:544 db_tracking.php:91 +#: libraries/Index.class.php:483 libraries/common.lib.php:1657 #: 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 -#: tbl_structure.php:152 tbl_structure.php:471 +#: tbl_structure.php:152 tbl_structure.php:469 msgid "Drop" 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:1655 +#: db_structure.php:541 db_structure.php:542 libraries/common.lib.php:1656 #: libraries/mult_submits.inc.php:39 libraries/tbl_links.inc.php:105 msgid "Empty" msgstr "ריקון" @@ -600,112 +596,112 @@ msgstr "ריקון" msgid "Table %s has been emptied" msgstr "טבלה %s רוקנה" -#: db_structure.php:326 libraries/tbl_links.inc.php:133 +#: db_structure.php:325 libraries/tbl_links.inc.php:133 #, fuzzy, php-format msgid "View %s has been dropped" msgstr "שדה %s נמחק" -#: db_structure.php:326 libraries/tbl_links.inc.php:133 +#: db_structure.php:325 libraries/tbl_links.inc.php:133 #, php-format msgid "Table %s has been dropped" msgstr "טבלה %s נמחקה" -#: db_structure.php:333 +#: db_structure.php:332 msgid "Tracking is active." msgstr "" -#: db_structure.php:335 +#: db_structure.php:334 msgid "Tracking is not active." msgstr "" -#: db_structure.php:420 libraries/display_tbl.lib.php:1944 +#: db_structure.php:418 libraries/display_tbl.lib.php:1944 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation%" "s." msgstr "" -#: db_structure.php:434 db_structure.php:448 libraries/header.inc.php:126 +#: db_structure.php:432 db_structure.php:446 libraries/header.inc.php:130 #: libraries/tbl_info.inc.php:66 tbl_structure.php:185 test/theme.php:74 msgid "View" msgstr "" -#: db_structure.php:485 libraries/db_structure.lib.php:49 -#: libraries/server_links.inc.php:70 server_replication.php:33 +#: db_structure.php:483 libraries/db_structure.lib.php:49 +#: libraries/server_links.inc.php:71 server_replication.php:33 #: server_replication.php:164 server_status.php:369 #, fuzzy msgid "Replication" msgstr "יחסים" -#: db_structure.php:489 +#: db_structure.php:487 msgid "Sum" msgstr "סכום" -#: db_structure.php:496 libraries/StorageEngine.class.php:356 +#: db_structure.php:494 libraries/StorageEngine.class.php:356 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "%s הוא מנוע האחסון ברירת המחדשל של שרת MySQL זה." -#: db_structure.php:524 db_structure.php:541 db_structure.php:542 +#: db_structure.php:522 db_structure.php:539 db_structure.php:540 #: 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:1596 tbl_structure.php:455 -#: tbl_structure.php:464 +#: server_databases.php:351 server_privileges.php:1616 tbl_structure.php:453 +#: tbl_structure.php:462 msgid "With selected:" msgstr "עם הנבחרים:" -#: db_structure.php:527 libraries/display_tbl.lib.php:2076 -#: server_databases.php:348 server_privileges.php:569 -#: server_privileges.php:1599 tbl_structure.php:458 +#: db_structure.php:525 libraries/display_tbl.lib.php:2076 +#: server_databases.php:348 server_privileges.php:570 +#: server_privileges.php:1619 tbl_structure.php:456 msgid "Check All" msgstr "בחירת הכל" -#: db_structure.php:531 libraries/display_tbl.lib.php:2077 +#: db_structure.php:529 libraries/display_tbl.lib.php:2077 #: libraries/replication_gui.lib.php:33 server_databases.php:350 -#: server_privileges.php:572 server_privileges.php:1603 tbl_structure.php:462 +#: server_privileges.php:573 server_privileges.php:1623 tbl_structure.php:460 msgid "Uncheck All" msgstr "בטל סימון הכל" -#: db_structure.php:536 +#: db_structure.php:534 msgid "Check tables having overhead" msgstr "בדיקת טבלאות עבור תקורה" -#: db_structure.php:547 db_structure.php:548 db_structure.php:599 +#: db_structure.php:545 db_structure.php:546 db_structure.php:597 #: libraries/display_tbl.lib.php:2180 libraries/mult_submits.inc.php:28 -#: tbl_structure.php:492 tbl_structure.php:494 +#: tbl_structure.php:490 tbl_structure.php:492 msgid "Print view" msgstr "תצוגת הדפסה" -#: db_structure.php:549 db_structure.php:550 libraries/mult_submits.inc.php:42 +#: db_structure.php:547 db_structure.php:548 libraries/mult_submits.inc.php:42 #: tbl_operations.php:581 msgid "Check table" msgstr "בדיקת טבלה" -#: db_structure.php:551 db_structure.php:552 libraries/mult_submits.inc.php:47 -#: tbl_operations.php:621 tbl_structure.php:709 tbl_structure.php:711 +#: db_structure.php:549 db_structure.php:550 libraries/mult_submits.inc.php:47 +#: tbl_operations.php:621 tbl_structure.php:707 tbl_structure.php:709 msgid "Optimize table" msgstr "ייעול טבלה" -#: db_structure.php:553 db_structure.php:554 libraries/mult_submits.inc.php:52 +#: db_structure.php:551 db_structure.php:552 libraries/mult_submits.inc.php:52 #: tbl_operations.php:611 msgid "Repair table" msgstr "תיקון טבלה" -#: db_structure.php:555 db_structure.php:556 libraries/mult_submits.inc.php:57 +#: db_structure.php:553 db_structure.php:554 libraries/mult_submits.inc.php:57 #: tbl_operations.php:601 msgid "Analyze table" msgstr "ניתוח טבלה" -#: db_structure.php:557 db_structure.php:558 libraries/db_links.inc.php:71 +#: db_structure.php:555 db_structure.php:556 libraries/db_links.inc.php:71 #: 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:1380 +#: libraries/server_links.inc.php:85 libraries/tbl_links.inc.php:82 +#: pmd_pdf.php:84 pmd_pdf.php:109 server_privileges.php:1397 #: setup/frames/menu.inc.php:22 tbl_row_action.php:59 msgid "Export" msgstr "ייצוא" -#: db_structure.php:606 libraries/display_pdf_schema.lib.php:44 +#: db_structure.php:604 libraries/display_pdf_schema.lib.php:44 msgid "Data Dictionary" msgstr "מילון מידע" @@ -716,10 +712,10 @@ msgstr "" #: db_tracking.php:71 libraries/export/htmlword.php:86 #: libraries/export/latex.php:148 libraries/export/odt.php:113 #: libraries/export/sql.php:342 libraries/export/texytext.php:84 -#: libraries/export/xml.php:255 libraries/header.inc.php:106 +#: libraries/export/xml.php:255 libraries/header.inc.php:110 #: libraries/header_printview.inc.php:58 server_databases.php:169 -#: server_privileges.php:1660 server_privileges.php:1721 -#: server_privileges.php:1979 server_processlist.php:56 +#: server_privileges.php:1680 server_privileges.php:1741 +#: server_privileges.php:1999 server_processlist.php:56 #: server_synchronize.php:1179 server_synchronize.php:1183 #: tbl_tracking.php:591 test/theme.php:65 msgid "Database" @@ -740,8 +736,8 @@ msgstr "" #: db_tracking.php:77 libraries/Index.class.php:440 #: libraries/db_structure.lib.php:53 server_databases.php:203 -#: server_privileges.php:1542 server_privileges.php:1725 -#: server_privileges.php:2073 tbl_structure.php:187 +#: server_privileges.php:1562 server_privileges.php:1745 +#: server_privileges.php:2094 tbl_structure.php:187 msgid "Action" msgstr "פעולה" @@ -777,8 +773,8 @@ msgstr "מבנה בלבד" msgid "Untracked tables" msgstr "" -#: db_tracking.php:172 db_tracking.php:174 tbl_structure.php:528 -#: tbl_structure.php:530 +#: db_tracking.php:172 db_tracking.php:174 tbl_structure.php:526 +#: tbl_structure.php:528 #, fuzzy msgid "Track table" msgstr "בדיקת טבלה" @@ -932,189 +928,235 @@ msgstr "שם המארח ריק!" msgid "The user name is empty!" msgstr "שם המשתמש ריק !" -#: js/messages.php:44 server_privileges.php:1236 user_password.php:70 +#: js/messages.php:44 server_privileges.php:1241 user_password.php:70 msgid "The password is empty!" msgstr "הסיסמא ריקה!" -#: js/messages.php:45 server_privileges.php:1234 user_password.php:73 +#: js/messages.php:45 server_privileges.php:1239 user_password.php:73 msgid "The passwords aren't the same!" msgstr "הסיסמאות אינן זהות!" -#: js/messages.php:49 pmd_general.php:342 pmd_general.php:379 +#: js/messages.php:46 +#, fuzzy +#| msgid "Add a new User" +msgid "Add a New User" +msgstr "הוספת משתמש חדש" + +#: js/messages.php:47 js/messages.php:54 pmd_general.php:342 +#: pmd_general.php:379 msgid "Cancel" msgstr "" -#: js/messages.php:52 pmd_save_pos.php:54 +#: js/messages.php:48 +#, fuzzy +msgid "Create User" +msgstr "גרסת שרת" + +#: js/messages.php:49 +#, fuzzy +msgid "Reloading Privileges" +msgstr "הרשאות גלובליות" + +#: js/messages.php:50 +#, fuzzy +#| msgid "Remove selected users" +msgid "Removing Selected Users" +msgstr "הסרת משתמשים שנבחרו" + +#: js/messages.php:57 +#, fuzzy +msgid "Loading" +msgstr "מקומי" + +#: js/messages.php:58 +#, fuzzy +#| msgid "Processes" +msgid "Processing Request" +msgstr "תהליכים" + +#: js/messages.php:59 +msgid "Error in Processing Request" +msgstr "" + +#: js/messages.php:60 +msgid "Dropping Column" +msgstr "" + +#: js/messages.php:61 +msgid "Adding Primary Key" +msgstr "" + +#: js/messages.php:64 pmd_save_pos.php:54 msgid "Modifications have been saved" msgstr "שינויים נשמרו" -#: js/messages.php:53 pmd_relation_upd.php:49 +#: js/messages.php:65 pmd_relation_upd.php:49 #, fuzzy msgid "Relation deleted" msgstr "תצוגת יחסים" -#: js/messages.php:54 pmd_relation_new.php:64 +#: js/messages.php:66 pmd_relation_new.php:64 msgid "FOREIGN KEY relation added" msgstr "" -#: js/messages.php:55 pmd_relation_new.php:86 +#: js/messages.php:67 pmd_relation_new.php:86 #, fuzzy msgid "Internal relation added" msgstr "יחסים פנימיים" -#: js/messages.php:56 pmd_relation_new.php:63 pmd_relation_new.php:88 +#: js/messages.php:68 pmd_relation_new.php:63 pmd_relation_new.php:88 msgid "Error: Relation not added." msgstr "" -#: js/messages.php:57 pmd_relation_new.php:31 +#: js/messages.php:69 pmd_relation_new.php:31 msgid "Error: relation already exists." msgstr "" -#: js/messages.php:58 +#: js/messages.php:70 msgid "Error saving coordinates for Designer." msgstr "" -#: js/messages.php:59 libraries/relation.lib.php:107 +#: js/messages.php:71 libraries/relation.lib.php:107 #: libraries/relation.lib.php:119 msgid "General relation features" msgstr "תכונות קשר כלליות" -#: js/messages.php:59 libraries/relation.lib.php:101 +#: js/messages.php:71 libraries/relation.lib.php:101 #: libraries/relation.lib.php:108 msgid "Disabled" msgstr "מבוטל" -#: js/messages.php:60 +#: js/messages.php:72 msgid "Select referenced key" msgstr "" -#: js/messages.php:61 +#: js/messages.php:73 msgid "Select Foreign Key" msgstr "" -#: js/messages.php:62 +#: js/messages.php:74 msgid "Please select the primary key or a unique key" msgstr "" -#: js/messages.php:63 pmd_general.php:77 tbl_relation.php:548 +#: js/messages.php:75 pmd_general.php:77 tbl_relation.php:548 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" msgstr "בחירת שדה להצגה" #. l10n: Display text for calendar close link -#: js/messages.php:73 +#: js/messages.php:85 #, fuzzy #| msgid "None" msgid "Done" msgstr "ללא" #. l10n: Display text for previous month link in calendar -#: js/messages.php:75 +#: js/messages.php:87 #, fuzzy #| msgid "Previous" msgid "Prev" msgstr "הקודם" #. l10n: Display text for next month link in calendar -#: js/messages.php:77 libraries/common.lib.php:2353 -#: libraries/common.lib.php:2356 libraries/display_tbl.lib.php:338 +#: js/messages.php:89 libraries/common.lib.php:2357 +#: libraries/common.lib.php:2360 libraries/display_tbl.lib.php:338 #: server_binlog.php:205 server_binlog.php:207 tbl_printview.php:424 -#: tbl_structure.php:801 +#: tbl_structure.php:799 msgid "Next" msgstr "הבא" #. l10n: Display text for current month link in calendar -#: js/messages.php:79 +#: js/messages.php:91 #, fuzzy #| msgid "Total" msgid "Today" msgstr "סה\"כ" -#: js/messages.php:82 +#: js/messages.php:94 #, fuzzy #| msgid "Binary" msgid "January" msgstr "בינארי" -#: js/messages.php:83 +#: js/messages.php:95 msgid "February" msgstr "" -#: js/messages.php:84 +#: js/messages.php:96 #, fuzzy #| msgid "Mar" msgid "March" msgstr "מרץ" -#: js/messages.php:85 +#: js/messages.php:97 #, fuzzy #| msgid "Apr" msgid "April" msgstr "אפריל" -#: js/messages.php:86 +#: js/messages.php:98 msgid "May" msgstr "מאי" -#: js/messages.php:87 +#: js/messages.php:99 #, fuzzy #| msgid "Jun" msgid "June" msgstr "יוני" -#: js/messages.php:88 +#: js/messages.php:100 #, fuzzy #| msgid "Jul" msgid "July" msgstr "יולי" -#: js/messages.php:89 +#: js/messages.php:101 #, fuzzy #| msgid "Aug" msgid "August" msgstr "אוגוסט" -#: js/messages.php:90 +#: js/messages.php:102 msgid "September" msgstr "" -#: js/messages.php:91 +#: js/messages.php:103 #, fuzzy #| msgid "Oct" msgid "October" msgstr "אוקטובר" -#: js/messages.php:92 +#: js/messages.php:104 msgid "November" msgstr "" -#: js/messages.php:93 +#: js/messages.php:105 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:97 libraries/common.lib.php:1557 +#: js/messages.php:109 libraries/common.lib.php:1557 msgid "Jan" msgstr "ינואר" #. l10n: Short month name -#: js/messages.php:99 libraries/common.lib.php:1559 +#: js/messages.php:111 libraries/common.lib.php:1559 msgid "Feb" msgstr "פברואר" #. l10n: Short month name -#: js/messages.php:101 libraries/common.lib.php:1561 +#: js/messages.php:113 libraries/common.lib.php:1561 msgid "Mar" msgstr "מרץ" #. l10n: Short month name -#: js/messages.php:103 libraries/common.lib.php:1563 +#: js/messages.php:115 libraries/common.lib.php:1563 msgid "Apr" msgstr "אפריל" #. l10n: Short month name -#: js/messages.php:105 libraries/common.lib.php:1565 +#: js/messages.php:117 libraries/common.lib.php:1565 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1122,176 +1164,176 @@ msgid "May" msgstr "מאי" #. l10n: Short month name -#: js/messages.php:107 libraries/common.lib.php:1567 +#: js/messages.php:119 libraries/common.lib.php:1567 msgid "Jun" msgstr "יוני" #. l10n: Short month name -#: js/messages.php:109 libraries/common.lib.php:1569 +#: js/messages.php:121 libraries/common.lib.php:1569 msgid "Jul" msgstr "יולי" #. l10n: Short month name -#: js/messages.php:111 libraries/common.lib.php:1571 +#: js/messages.php:123 libraries/common.lib.php:1571 msgid "Aug" msgstr "אוגוסט" #. l10n: Short month name -#: js/messages.php:113 libraries/common.lib.php:1573 +#: js/messages.php:125 libraries/common.lib.php:1573 msgid "Sep" msgstr "ספטמבר" #. l10n: Short month name -#: js/messages.php:115 libraries/common.lib.php:1575 +#: js/messages.php:127 libraries/common.lib.php:1575 msgid "Oct" msgstr "אוקטובר" #. l10n: Short month name -#: js/messages.php:117 libraries/common.lib.php:1577 +#: js/messages.php:129 libraries/common.lib.php:1577 msgid "Nov" msgstr "נובמבר" #. l10n: Short month name -#: js/messages.php:119 libraries/common.lib.php:1579 +#: js/messages.php:131 libraries/common.lib.php:1579 msgid "Dec" msgstr "דצמבר" -#: js/messages.php:122 +#: js/messages.php:134 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "יום ראשון" -#: js/messages.php:123 +#: js/messages.php:135 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "יום שני" -#: js/messages.php:124 +#: js/messages.php:136 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "יום שלישי" -#: js/messages.php:125 +#: js/messages.php:137 msgid "Wednesday" msgstr "" -#: js/messages.php:126 +#: js/messages.php:138 msgid "Thursday" msgstr "" -#: js/messages.php:127 +#: js/messages.php:139 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "יום שישי" -#: js/messages.php:128 +#: js/messages.php:140 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:132 libraries/common.lib.php:1582 +#: js/messages.php:144 libraries/common.lib.php:1582 msgid "Sun" msgstr "יום ראשון" #. l10n: Short week day name -#: js/messages.php:134 libraries/common.lib.php:1584 +#: js/messages.php:146 libraries/common.lib.php:1584 msgid "Mon" msgstr "יום שני" #. l10n: Short week day name -#: js/messages.php:136 libraries/common.lib.php:1586 +#: js/messages.php:148 libraries/common.lib.php:1586 msgid "Tue" msgstr "יום שלישי" #. l10n: Short week day name -#: js/messages.php:138 libraries/common.lib.php:1588 +#: js/messages.php:150 libraries/common.lib.php:1588 msgid "Wed" msgstr "יום רביעי" #. l10n: Short week day name -#: js/messages.php:140 libraries/common.lib.php:1590 +#: js/messages.php:152 libraries/common.lib.php:1590 msgid "Thu" msgstr "יום חמישי" #. l10n: Short week day name -#: js/messages.php:142 libraries/common.lib.php:1592 +#: js/messages.php:154 libraries/common.lib.php:1592 msgid "Fri" msgstr "יום שישי" #. l10n: Short week day name -#: js/messages.php:144 libraries/common.lib.php:1594 +#: js/messages.php:156 libraries/common.lib.php:1594 msgid "Sat" msgstr "שבת" #. l10n: Minimal week day name -#: js/messages.php:148 +#: js/messages.php:160 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "יום ראשון" #. l10n: Minimal week day name -#: js/messages.php:150 +#: js/messages.php:162 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "יום שני" #. l10n: Minimal week day name -#: js/messages.php:152 +#: js/messages.php:164 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "יום שלישי" #. l10n: Minimal week day name -#: js/messages.php:154 +#: js/messages.php:166 #, fuzzy #| msgid "Wed" msgid "We" msgstr "יום רביעי" #. l10n: Minimal week day name -#: js/messages.php:156 +#: js/messages.php:168 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "יום חמישי" #. l10n: Minimal week day name -#: js/messages.php:158 +#: js/messages.php:170 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "יום שישי" #. l10n: Minimal week day name -#: js/messages.php:160 +#: js/messages.php:172 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "שבת" #. l10n: Column header for week of the year in calendar -#: js/messages.php:162 +#: js/messages.php:174 msgid "Wk" msgstr "" -#: js/messages.php:164 +#: js/messages.php:176 msgid "Hour" msgstr "" -#: js/messages.php:165 +#: js/messages.php:177 #, fuzzy #| msgid "in use" msgid "Minute" msgstr "בשימוש" -#: js/messages.php:166 +#: js/messages.php:178 #, fuzzy #| msgid "per second" msgid "Second" @@ -1349,7 +1391,7 @@ msgstr "אינדקסים" #: libraries/Index.class.php:444 libraries/mult_submits.inc.php:103 #: libraries/tbl_properties.inc.php:519 tbl_structure.php:33 -#: tbl_structure.php:155 tbl_structure.php:159 tbl_structure.php:474 +#: tbl_structure.php:155 tbl_structure.php:159 tbl_structure.php:472 #: tbl_tracking.php:322 msgid "Unique" msgstr "ייחודי" @@ -1391,8 +1433,8 @@ msgid "" "removed." msgstr "" -#: libraries/List_Database.class.php:431 libraries/server_links.inc.php:41 -#: server_databases.php:88 server_privileges.php:1660 +#: libraries/List_Database.class.php:431 libraries/server_links.inc.php:42 +#: server_databases.php:88 server_privileges.php:1680 #: setup/lib/messages.inc.php:110 test/theme.php:93 msgid "Databases" msgstr "מאגרי נתונים" @@ -1559,7 +1601,7 @@ msgstr "סיסמא:" msgid "Server Choice" msgstr "בחירת שרת" -#: libraries/auth/cookie.auth.lib.php:320 libraries/header.inc.php:59 +#: libraries/auth/cookie.auth.lib.php:320 libraries/header.inc.php:63 msgid "Cookies must be enabled past this point." msgstr "עוגיות (Cookies) חייבות לפעול מנקודה זאת." @@ -1638,7 +1680,7 @@ msgstr "" "נכשל בשימוש בפונקציות iconv, libiconv או recode, למרות שזה נראה כי התוספות " "הדרושות נטענו. בדוק את הגדרות PHP שלך." -#: libraries/common.inc.php:583 +#: libraries/common.inc.php:587 msgid "" "phpMyAdmin was unable to read your configuration file!
This might " "happen if PHP finds a parse error in it or PHP cannot find the file.
אם הינך מקבל דף ריק, הכל בסדר." -#: libraries/common.inc.php:594 +#: libraries/common.inc.php:598 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "" -#: libraries/common.inc.php:599 +#: libraries/common.inc.php:603 msgid "" "The $cfg['PmaAbsoluteUri'] directive MUST be set in your " "configuration file!" msgstr "" -#: libraries/common.inc.php:629 +#: libraries/common.inc.php:633 #, php-format msgid "Invalid server index: %s" msgstr "" -#: libraries/common.inc.php:636 +#: libraries/common.inc.php:640 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" -#: libraries/common.inc.php:645 libraries/header.inc.php:96 +#: libraries/common.inc.php:649 libraries/header.inc.php:100 #: libraries/select_server.lib.php:41 libraries/select_server.lib.php:47 #: main.php:185 test/theme.php:57 msgid "Server" msgstr "שרת" -#: libraries/common.inc.php:823 +#: libraries/common.inc.php:827 msgid "Invalid authentication method set in configuration:" msgstr "" -#: libraries/common.inc.php:926 +#: libraries/common.inc.php:930 #, php-format msgid "You should upgrade to %s %s or later." msgstr "אתה צריך לשדרג אל %s %s לפחות." @@ -1819,45 +1861,45 @@ msgstr "." msgid "%B %d, %Y at %I:%M %p" msgstr "%B %d, %Y at %I:%M %p" -#: libraries/common.lib.php:1907 +#: libraries/common.lib.php:1911 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s ימים, %s שעות, %s דקות ו- %s שניות" -#: libraries/common.lib.php:2322 libraries/common.lib.php:2325 +#: libraries/common.lib.php:2326 libraries/common.lib.php:2329 #: libraries/display_tbl.lib.php:290 server_status.php:719 msgid "Begin" msgstr "התחלה" -#: libraries/common.lib.php:2323 libraries/common.lib.php:2326 +#: libraries/common.lib.php:2327 libraries/common.lib.php:2330 #: libraries/display_tbl.lib.php:291 server_binlog.php:168 #: server_binlog.php:170 msgid "Previous" msgstr "הקודם" -#: libraries/common.lib.php:2354 libraries/common.lib.php:2357 +#: libraries/common.lib.php:2358 libraries/common.lib.php:2361 #: libraries/display_tbl.lib.php:353 msgid "End" msgstr "סיום" -#: libraries/common.lib.php:2430 +#: libraries/common.lib.php:2434 #, php-format msgid "Jump to database "%s"." msgstr "קפיצה אל מאגר נתונים "%s"." -#: libraries/common.lib.php:2450 +#: libraries/common.lib.php:2454 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" -#: libraries/common.lib.php:2830 libraries/common.lib.php:2837 +#: libraries/common.lib.php:2834 libraries/common.lib.php:2841 #: libraries/db_links.inc.php:68 libraries/export/sql.php:25 -#: libraries/import/sql.php:18 libraries/server_links.inc.php:45 +#: libraries/import/sql.php:18 libraries/server_links.inc.php:46 #: libraries/tbl_links.inc.php:60 querywindow.php:99 test/theme.php:97 msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2839 libraries/db_links.inc.php:104 +#: libraries/common.lib.php:2843 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,16 +1946,16 @@ msgstr "שאילתה" msgid "Designer" msgstr "" -#: libraries/db_links.inc.php:98 libraries/server_links.inc.php:88 +#: libraries/db_links.inc.php:98 libraries/server_links.inc.php:89 #: libraries/tbl_links.inc.php:91 pmd_pdf.php:84 pmd_pdf.php:110 #: setup/frames/menu.inc.php:21 #, fuzzy msgid "Import" msgstr "ייצוא" -#: libraries/db_links.inc.php:111 libraries/server_links.inc.php:66 -#: server_privileges.php:111 server_privileges.php:1722 -#: server_privileges.php:2071 test/theme.php:117 +#: libraries/db_links.inc.php:111 libraries/server_links.inc.php:67 +#: server_privileges.php:112 server_privileges.php:1742 +#: server_privileges.php:2092 test/theme.php:117 msgid "Privileges" msgstr "הרשאות" @@ -1932,7 +1974,7 @@ msgid "" msgstr "יכול להיות הערכה. ראה FAQ 3.11" #: libraries/db_structure.lib.php:69 server_databases.php:142 -#: tbl_printview.php:336 tbl_structure.php:682 +#: tbl_printview.php:336 tbl_structure.php:680 msgid "Overhead" msgstr "תקורה" @@ -1949,7 +1991,7 @@ msgstr "השרת אינו מגיב" msgid "(or the local MySQL server's socket is not correctly configured)" msgstr "" -#: libraries/dbi/mysql.dbi.lib.php:362 tbl_structure.php:608 +#: libraries/dbi/mysql.dbi.lib.php:362 tbl_structure.php:606 msgid "Details..." msgstr "" @@ -1959,22 +2001,22 @@ msgid "Change password" msgstr "שינוי סיסמא" #: libraries/display_change_password.lib.php:35 -#: libraries/replication_gui.lib.php:345 server_privileges.php:807 +#: libraries/replication_gui.lib.php:345 server_privileges.php:808 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:796 -#: server_privileges.php:800 server_privileges.php:811 -#: server_privileges.php:1538 server_synchronize.php:1175 +#: libraries/replication_gui.lib.php:349 server_privileges.php:797 +#: server_privileges.php:801 server_privileges.php:812 +#: server_privileges.php:1558 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:815 server_privileges.php:818 +#: server_privileges.php:816 server_privileges.php:819 msgid "Re-type" msgstr "הקלדה נוספת" @@ -1989,12 +2031,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:822 +#: libraries/replication_gui.lib.php:360 server_privileges.php:823 msgid "Generate Password" msgstr "ייצור סיסמא" #: libraries/display_change_password.lib.php:75 -#: libraries/replication_gui.lib.php:363 server_privileges.php:825 +#: libraries/replication_gui.lib.php:363 server_privileges.php:826 msgid "Generate" msgstr "ייצור" @@ -2007,8 +2049,8 @@ msgstr "יצירת מאגר נתונים חדש" msgid "Create" msgstr "יצירה" -#: libraries/display_create_database.lib.php:40 server_privileges.php:113 -#: server_privileges.php:1427 server_replication.php:35 +#: libraries/display_create_database.lib.php:40 server_privileges.php:114 +#: server_privileges.php:1447 server_replication.php:35 msgid "No Privileges" msgstr "ללא הרשאות" @@ -2097,7 +2139,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:1875 server_processlist.php:75 +#: server_privileges.php:1895 server_processlist.php:75 msgid "None" msgstr "ללא" @@ -2282,7 +2324,7 @@ msgstr "" #: libraries/import/docsql.php:34 libraries/import/ldi.php:47 #: libraries/import/ods.php:30 libraries/import/sql.php:20 #: libraries/import/xls.php:26 libraries/import/xlsx.php:26 -#: libraries/import/xml.php:25 tbl_select.php:267 tbl_structure.php:753 +#: libraries/import/xml.php:25 tbl_select.php:267 tbl_structure.php:751 #, fuzzy msgid "Options" msgstr "פעולות" @@ -2361,7 +2403,7 @@ msgstr "שאילתה לקחה %01.4f שניות" #: libraries/display_tbl.lib.php:2089 libraries/mult_submits.inc.php:113 #: querywindow.php:125 querywindow.php:129 querywindow.php:132 -#: tbl_structure.php:25 tbl_structure.php:150 tbl_structure.php:470 +#: tbl_structure.php:25 tbl_structure.php:150 tbl_structure.php:468 msgid "Change" msgstr "שינוי" @@ -2427,7 +2469,7 @@ msgstr "" #: libraries/engines/innodb.lib.php:194 server_databases.php:137 #: server_databases.php:305 server_status.php:525 server_status.php:586 -#: server_status.php:607 tbl_printview.php:351 tbl_structure.php:696 +#: server_status.php:607 tbl_printview.php:351 tbl_structure.php:694 msgid "Total" msgstr "סה\"כ" @@ -2673,7 +2715,7 @@ msgid "" msgstr "" #: libraries/export/codegen.php:37 setup/lib/messages.inc.php:88 -#: tbl_printview.php:376 tbl_structure.php:737 +#: tbl_printview.php:376 tbl_structure.php:735 msgid "Format" msgstr "תבנית" @@ -2743,8 +2785,8 @@ 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:576 server_replication.php:316 tbl_printview.php:317 -#: tbl_structure.php:665 +#: server_privileges.php:577 server_replication.php:316 tbl_printview.php:317 +#: tbl_structure.php:663 msgid "Data" msgstr "נתונים" @@ -2793,9 +2835,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:731 -#: server_privileges.php:734 server_privileges.php:790 -#: server_privileges.php:1537 server_privileges.php:2069 +#: libraries/replication_gui.lib.php:329 server_privileges.php:732 +#: server_privileges.php:735 server_privileges.php:791 +#: server_privileges.php:1557 server_privileges.php:2090 #: server_processlist.php:55 server_synchronize.php:1159 msgid "Host" msgstr "מארח" @@ -2995,7 +3037,7 @@ msgstr "" msgid "Open new phpMyAdmin window" msgstr "" -#: libraries/header.inc.php:115 +#: libraries/header.inc.php:119 #, fuzzy msgid "New table" msgstr "אין טבלאות" @@ -3155,20 +3197,20 @@ 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 +#: tbl_structure.php:471 msgid "Primary" msgstr "ראשי" #: libraries/mult_submits.inc.php:98 libraries/tbl_properties.inc.php:116 #: libraries/tbl_properties.inc.php:525 tbl_printview.php:326 #: tbl_structure.php:31 tbl_structure.php:154 tbl_structure.php:158 -#: tbl_structure.php:475 tbl_structure.php:673 +#: tbl_structure.php:473 tbl_structure.php:671 msgid "Index" msgstr "אינדקס" #: libraries/mult_submits.inc.php:108 libraries/tbl_properties.inc.php:531 #: tbl_structure.php:35 tbl_structure.php:156 tbl_structure.php:160 -#: tbl_structure.php:478 +#: tbl_structure.php:476 msgid "Fulltext" msgstr "Fulltext" @@ -3469,8 +3511,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:711 -#: server_privileges.php:714 server_privileges.php:721 +#: libraries/replication_gui.lib.php:259 server_privileges.php:712 +#: server_privileges.php:715 server_privileges.php:722 #: server_synchronize.php:1171 msgid "User name" msgstr "שם משתמש" @@ -3495,7 +3537,7 @@ msgstr "משתנה" #: 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 +#: tbl_structure.php:727 msgid "Value" msgstr "ערך" @@ -3513,34 +3555,34 @@ msgstr "" msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:254 server_privileges.php:716 +#: libraries/replication_gui.lib.php:254 server_privileges.php:717 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:717 -#: server_privileges.php:784 server_privileges.php:808 -#: server_privileges.php:1928 server_privileges.php:1958 +#: libraries/replication_gui.lib.php:346 server_privileges.php:718 +#: server_privileges.php:785 server_privileges.php:809 +#: server_privileges.php:1948 server_privileges.php:1978 msgid "Use text field" msgstr "השתמש בשדה טקסט" -#: libraries/replication_gui.lib.php:302 server_privileges.php:764 +#: libraries/replication_gui.lib.php:302 server_privileges.php:765 msgid "Any host" msgstr "כל שרת מארח" -#: libraries/replication_gui.lib.php:306 server_privileges.php:768 +#: libraries/replication_gui.lib.php:306 server_privileges.php:769 msgid "Local" msgstr "מקומי" -#: libraries/replication_gui.lib.php:312 server_privileges.php:773 +#: libraries/replication_gui.lib.php:312 server_privileges.php:774 msgid "This Host" msgstr "מארח זה" -#: libraries/replication_gui.lib.php:318 server_privileges.php:779 +#: libraries/replication_gui.lib.php:318 server_privileges.php:780 msgid "Use Host Table" msgstr "Use Host Table" -#: libraries/replication_gui.lib.php:331 server_privileges.php:792 +#: libraries/replication_gui.lib.php:331 server_privileges.php:793 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -3575,29 +3617,29 @@ msgstr "" msgid "Servers" msgstr "שרת" -#: libraries/server_links.inc.php:53 server_engines.php:112 +#: libraries/server_links.inc.php:54 server_engines.php:112 #: server_engines.php:116 server_status.php:415 test/theme.php:105 msgid "Variables" msgstr "משתנים" -#: libraries/server_links.inc.php:57 test/theme.php:109 +#: libraries/server_links.inc.php:58 test/theme.php:109 msgid "Charsets" msgstr "קידודים" -#: libraries/server_links.inc.php:61 test/theme.php:113 +#: libraries/server_links.inc.php:62 test/theme.php:113 msgid "Engines" msgstr "מנועים" -#: libraries/server_links.inc.php:76 server_binlog.php:110 +#: libraries/server_links.inc.php:77 server_binlog.php:110 #: server_status.php:364 test/theme.php:121 msgid "Binary log" msgstr "דו\"ח בינארי" -#: libraries/server_links.inc.php:80 +#: libraries/server_links.inc.php:81 msgid "Processes" msgstr "תהליכים" -#: libraries/server_links.inc.php:92 server_synchronize.php:1092 +#: libraries/server_links.inc.php:93 server_synchronize.php:1092 #: server_synchronize.php:1100 msgid "Synchronize" msgstr "" @@ -3832,13 +3874,13 @@ msgstr "" msgid "Save" msgstr "שמירה" -#: libraries/tbl_properties.inc.php:780 tbl_structure.php:542 +#: libraries/tbl_properties.inc.php:780 tbl_structure.php:540 #, fuzzy, php-format #| msgid "Add %s field(s)" msgid "Add %s column(s)" msgstr "הוספת %s תאים" -#: libraries/tbl_properties.inc.php:784 tbl_structure.php:536 +#: libraries/tbl_properties.inc.php:784 tbl_structure.php:534 #, fuzzy #| msgid "You have to add at least one field." msgid "You have to add at least one column." @@ -3974,8 +4016,8 @@ msgstr "איפוס" msgid "Protocol version" msgstr "" -#: main.php:189 server_privileges.php:1389 server_privileges.php:1536 -#: server_privileges.php:1650 server_privileges.php:2068 +#: main.php:189 server_privileges.php:1406 server_privileges.php:1556 +#: server_privileges.php:1670 server_privileges.php:2089 #: server_processlist.php:54 msgid "User" msgstr "משתמש" @@ -4411,331 +4453,331 @@ msgstr "מנועי אחסון" msgid "View dump (schema) of databases" msgstr "ראיית הוצאה (תבנית) של מאגרי נתונים" -#: server_privileges.php:24 server_privileges.php:266 +#: server_privileges.php:25 server_privileges.php:267 msgid "Includes all privileges except GRANT." msgstr "כלול כל ההרשאות חוץ מ- GRANT." -#: server_privileges.php:25 server_privileges.php:192 -#: server_privileges.php:515 +#: server_privileges.php:26 server_privileges.php:193 +#: server_privileges.php:516 msgid "Allows altering the structure of existing tables." msgstr "מאפשר שינוי של מבני הטבלאות הקיימות." -#: server_privileges.php:26 server_privileges.php:208 -#: server_privileges.php:521 +#: server_privileges.php:27 server_privileges.php:209 +#: server_privileges.php:522 #, fuzzy msgid "Allows altering and dropping stored routines." msgstr "מאפשר יצירת שגרות מאוחסנות." -#: server_privileges.php:27 server_privileges.php:184 -#: server_privileges.php:514 +#: server_privileges.php:28 server_privileges.php:185 +#: server_privileges.php:515 #, fuzzy msgid "Allows creating new databases and tables." msgstr "מאפשר מחיקת מאגרי נתונים וטבלאות." -#: server_privileges.php:28 server_privileges.php:207 -#: server_privileges.php:520 +#: server_privileges.php:29 server_privileges.php:208 +#: server_privileges.php:521 msgid "Allows creating stored routines." msgstr "מאפשר יצירת שגרות מאוחסנות." -#: server_privileges.php:29 server_privileges.php:514 +#: server_privileges.php:30 server_privileges.php:515 msgid "Allows creating new tables." msgstr "מאפשר יצירת טבלאות חדשות." -#: server_privileges.php:30 server_privileges.php:195 -#: server_privileges.php:518 +#: server_privileges.php:31 server_privileges.php:196 +#: server_privileges.php:519 msgid "Allows creating temporary tables." msgstr "מאפשר יצירת טבלאות זמניות." -#: server_privileges.php:31 server_privileges.php:209 -#: server_privileges.php:554 +#: server_privileges.php:32 server_privileges.php:210 +#: server_privileges.php:555 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 +#: server_privileges.php:33 server_privileges.php:200 +#: server_privileges.php:204 server_privileges.php:527 +#: server_privileges.php:531 #, fuzzy msgid "Allows creating new views." msgstr "מאפשר יצירת טבלאות חדשות." -#: server_privileges.php:33 server_privileges.php:183 -#: server_privileges.php:506 +#: server_privileges.php:34 server_privileges.php:184 +#: server_privileges.php:507 msgid "Allows deleting data." msgstr "מאפשר מחיקת מידע." -#: server_privileges.php:34 server_privileges.php:185 -#: server_privileges.php:517 +#: server_privileges.php:35 server_privileges.php:186 +#: server_privileges.php:518 msgid "Allows dropping databases and tables." msgstr "מאפשר מחיקת מאגרי נתונים וטבלאות." -#: server_privileges.php:35 server_privileges.php:517 +#: server_privileges.php:36 server_privileges.php:518 msgid "Allows dropping tables." msgstr "מאפשר מחיקת טבלאות." -#: server_privileges.php:36 server_privileges.php:200 -#: server_privileges.php:534 +#: server_privileges.php:37 server_privileges.php:201 +#: server_privileges.php:535 msgid "Allows to set up events for the event scheduler" msgstr "" -#: server_privileges.php:37 server_privileges.php:210 -#: server_privileges.php:522 +#: server_privileges.php:38 server_privileges.php:211 +#: server_privileges.php:523 #, fuzzy msgid "Allows executing stored routines." msgstr "מאפשר יצירת שגרות מאוחסנות." -#: server_privileges.php:38 server_privileges.php:189 -#: server_privileges.php:509 +#: server_privileges.php:39 server_privileges.php:190 +#: server_privileges.php:510 msgid "Allows importing data from and exporting data into files." msgstr "" -#: server_privileges.php:39 server_privileges.php:540 +#: server_privileges.php:40 server_privileges.php:541 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" -#: server_privileges.php:40 server_privileges.php:191 -#: server_privileges.php:516 +#: server_privileges.php:41 server_privileges.php:192 +#: server_privileges.php:517 msgid "Allows creating and dropping indexes." msgstr "" -#: server_privileges.php:41 server_privileges.php:181 -#: server_privileges.php:442 server_privileges.php:504 +#: server_privileges.php:42 server_privileges.php:182 +#: server_privileges.php:443 server_privileges.php:505 msgid "Allows inserting and replacing data." msgstr "" -#: server_privileges.php:42 server_privileges.php:196 -#: server_privileges.php:549 +#: server_privileges.php:43 server_privileges.php:197 +#: server_privileges.php:550 msgid "Allows locking tables for the current thread." msgstr "" -#: server_privileges.php:43 server_privileges.php:646 -#: server_privileges.php:648 +#: server_privileges.php:44 server_privileges.php:647 +#: server_privileges.php:649 msgid "Limits the number of new connections the user may open per hour." msgstr "" -#: server_privileges.php:44 server_privileges.php:634 -#: server_privileges.php:636 +#: server_privileges.php:45 server_privileges.php:635 +#: server_privileges.php:637 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" -#: server_privileges.php:45 server_privileges.php:640 -#: server_privileges.php:642 +#: server_privileges.php:46 server_privileges.php:641 +#: server_privileges.php:643 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." msgstr "" -#: server_privileges.php:46 server_privileges.php:652 -#: server_privileges.php:654 +#: server_privileges.php:47 server_privileges.php:653 +#: server_privileges.php:655 msgid "Limits the number of simultaneous connections the user may have." msgstr "" -#: server_privileges.php:47 server_privileges.php:188 -#: server_privileges.php:544 +#: server_privileges.php:48 server_privileges.php:189 +#: server_privileges.php:545 msgid "Allows viewing processes of all users" msgstr "" -#: server_privileges.php:48 server_privileges.php:190 -#: server_privileges.php:448 server_privileges.php:550 +#: server_privileges.php:49 server_privileges.php:191 +#: server_privileges.php:449 server_privileges.php:551 msgid "Has no effect in this MySQL version." msgstr "" -#: server_privileges.php:49 server_privileges.php:186 -#: server_privileges.php:545 +#: server_privileges.php:50 server_privileges.php:187 +#: server_privileges.php:546 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" -#: server_privileges.php:50 server_privileges.php:198 -#: server_privileges.php:552 +#: server_privileges.php:51 server_privileges.php:199 +#: server_privileges.php:553 msgid "Allows the user to ask where the slaves / masters are." msgstr "" -#: server_privileges.php:51 server_privileges.php:197 -#: server_privileges.php:553 +#: server_privileges.php:52 server_privileges.php:198 +#: server_privileges.php:554 msgid "Needed for the replication slaves." msgstr "" -#: server_privileges.php:52 server_privileges.php:180 -#: server_privileges.php:439 server_privileges.php:503 +#: server_privileges.php:53 server_privileges.php:181 +#: server_privileges.php:440 server_privileges.php:504 #, fuzzy msgid "Allows reading data." msgstr "מאפשר מחיקת מידע." -#: server_privileges.php:53 server_privileges.php:193 -#: server_privileges.php:547 +#: server_privileges.php:54 server_privileges.php:194 +#: server_privileges.php:548 msgid "Gives access to the complete list of databases." msgstr "" -#: server_privileges.php:54 server_privileges.php:204 -#: server_privileges.php:206 server_privileges.php:519 +#: server_privileges.php:55 server_privileges.php:205 +#: server_privileges.php:207 server_privileges.php:520 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "" -#: server_privileges.php:55 server_privileges.php:187 -#: server_privileges.php:546 +#: server_privileges.php:56 server_privileges.php:188 +#: server_privileges.php:547 msgid "Allows shutting down the server." msgstr "" -#: server_privileges.php:56 server_privileges.php:194 -#: server_privileges.php:543 +#: server_privileges.php:57 server_privileges.php:195 +#: server_privileges.php:544 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " "killing threads of other users." msgstr "" -#: server_privileges.php:57 server_privileges.php:201 -#: server_privileges.php:535 +#: server_privileges.php:58 server_privileges.php:202 +#: server_privileges.php:536 msgid "Allows creating and dropping triggers" msgstr "" -#: server_privileges.php:58 server_privileges.php:182 -#: server_privileges.php:445 server_privileges.php:505 +#: server_privileges.php:59 server_privileges.php:183 +#: server_privileges.php:446 server_privileges.php:506 #, fuzzy msgid "Allows changing data." msgstr "מאפשר מחיקת מידע." -#: server_privileges.php:59 server_privileges.php:260 +#: server_privileges.php:60 server_privileges.php:261 msgid "No privileges." msgstr "ללא הרשאות." -#: server_privileges.php:302 server_privileges.php:303 +#: server_privileges.php:303 server_privileges.php:304 #, fuzzy #| msgid "None" msgctxt "None privileges" msgid "None" msgstr "ללא" -#: server_privileges.php:431 server_privileges.php:566 -#: server_privileges.php:1718 server_privileges.php:1724 +#: server_privileges.php:432 server_privileges.php:567 +#: server_privileges.php:1738 server_privileges.php:1744 msgid "Table-specific privileges" msgstr "הרשאות ספציפיות-לטבלאות" -#: server_privileges.php:432 server_privileges.php:574 -#: server_privileges.php:1540 +#: server_privileges.php:433 server_privileges.php:575 +#: server_privileges.php:1560 msgid " Note: MySQL privilege names are expressed in English " msgstr " הערה: שמות הרשאות MySQL מובטאות באנגלית " -#: server_privileges.php:563 server_privileges.php:1539 +#: server_privileges.php:564 server_privileges.php:1559 msgid "Global privileges" msgstr "הרשאות גלובליות" -#: server_privileges.php:565 server_privileges.php:1718 +#: server_privileges.php:566 server_privileges.php:1738 msgid "Database-specific privileges" msgstr "הרשאות ספציפיות למאגר נתונים" -#: server_privileges.php:610 +#: server_privileges.php:611 msgid "Administration" msgstr "ניהול" -#: server_privileges.php:630 +#: server_privileges.php:631 msgid "Resource limits" msgstr "גבולות משאבים" -#: server_privileges.php:631 +#: server_privileges.php:632 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "הערה: הגדרת אפשרויות אלו אל 0 (אפס) יבטלו את ההגבלה." -#: server_privileges.php:708 +#: server_privileges.php:709 msgid "Login Information" msgstr "מידע כניסה" -#: server_privileges.php:802 +#: server_privileges.php:803 msgid "Do not change the password" msgstr "אל תשנה את הסיסמא" -#: server_privileges.php:843 server_privileges.php:2205 +#: server_privileges.php:844 server_privileges.php:2226 #, fuzzy #| msgid "No user(s) found." msgid "No user found." msgstr "לא נמצאו משתמשים." -#: server_privileges.php:887 +#: server_privileges.php:888 #, php-format msgid "The user %s already exists!" msgstr "שם המשתמש %s כבר קיים!" -#: server_privileges.php:970 +#: server_privileges.php:971 msgid "You have added a new user." msgstr "משתמש חדש נוסף." -#: server_privileges.php:1191 +#: server_privileges.php:1196 #, php-format msgid "You have updated the privileges for %s." msgstr "אתה עדכנת הרשאות עבור %s." -#: server_privileges.php:1215 +#: server_privileges.php:1220 #, php-format msgid "You have revoked the privileges for %s" msgstr "אתה שללת הרשאות עבור %s" -#: server_privileges.php:1251 +#: server_privileges.php:1256 #, php-format msgid "The password for %s was changed successfully." msgstr "הסיסמא עבור %s שונתה בהצלחה." -#: server_privileges.php:1271 +#: server_privileges.php:1276 #, php-format msgid "Deleting %s" msgstr "מוחק %s" -#: server_privileges.php:1282 +#: server_privileges.php:1287 msgid "No users selected for deleting!" msgstr "" -#: server_privileges.php:1285 +#: server_privileges.php:1290 msgid "Reloading the privileges" msgstr "טוען מחדש הרשאות" -#: server_privileges.php:1300 +#: server_privileges.php:1305 #, fuzzy msgid "The selected users have been deleted successfully." msgstr "%s מסדי נתונים נמחקו בהצלחה." -#: server_privileges.php:1335 +#: server_privileges.php:1344 msgid "The privileges were reloaded successfully." msgstr "ההרשאות נטענו מחדש בהצלחה." -#: server_privileges.php:1363 server_privileges.php:1649 +#: server_privileges.php:1380 server_privileges.php:1669 msgid "Edit Privileges" msgstr "עריכת הרשאות" -#: server_privileges.php:1372 +#: server_privileges.php:1389 msgid "Revoke" msgstr "שלילה" -#: server_privileges.php:1404 +#: server_privileges.php:1424 msgid "User overview" msgstr "סקירת משתמשים" -#: server_privileges.php:1541 server_privileges.php:1723 -#: server_privileges.php:2072 +#: server_privileges.php:1561 server_privileges.php:1743 +#: server_privileges.php:2093 msgid "Grant" msgstr "הענקה" -#: server_privileges.php:1560 server_privileges.php:2162 +#: server_privileges.php:1580 server_privileges.php:2183 msgid "Any" msgstr "כל דבר" -#: server_privileges.php:1609 server_privileges.php:1633 -#: server_privileges.php:2027 server_privileges.php:2216 +#: server_privileges.php:1629 server_privileges.php:1653 +#: server_privileges.php:2048 server_privileges.php:2237 msgid "Add a new User" msgstr "הוספת משתמש חדש" -#: server_privileges.php:1614 +#: server_privileges.php:1634 msgid "Remove selected users" msgstr "הסרת משתמשים שנבחרו" -#: server_privileges.php:1617 +#: server_privileges.php:1637 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 +#: server_privileges.php:1638 server_privileges.php:1639 +#: server_privileges.php:1640 msgid "Drop the databases that have the same names as the users." msgstr "הסרת מאגרי נתונים שיש להם שמות דומים כמו למשתמשים." -#: server_privileges.php:1636 +#: server_privileges.php:1656 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -4747,91 +4789,91 @@ msgstr "" "הטבלאות האלו יכול להיות שונה מההרשאות שהשרת משתמש בהן, אם הן שונו באופן " "ידני. במקרה זה, אתה צריך לבצע %sטעינה מחדש של הרשאות%s לפני שאתה ממשיך." -#: server_privileges.php:1684 +#: server_privileges.php:1704 msgid "The selected user was not found in the privilege table." msgstr "המשתמש שנבחר לא נמצא בטבלת ההרשאות." -#: server_privileges.php:1724 +#: server_privileges.php:1744 msgid "Column-specific privileges" msgstr "הרשאות ספציפיות-לעמודה" -#: server_privileges.php:1925 +#: server_privileges.php:1945 msgid "Add privileges on the following database" msgstr "הוספת הרשאות למאגר הנתונים הבא" -#: server_privileges.php:1943 +#: server_privileges.php:1963 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "תווים כללים _ וגם % צריכים לבוא ביחד עם \\ על מנת להשתמש בהם באמת" -#: server_privileges.php:1946 +#: server_privileges.php:1966 msgid "Add privileges on the following table" msgstr "הוספת הראשאות לטבלה הבאה" -#: server_privileges.php:2003 +#: server_privileges.php:2023 msgid "Change Login Information / Copy User" msgstr "שינוי מידע כניסה / העתקת משתמש" -#: server_privileges.php:2006 +#: server_privileges.php:2026 msgid "Create a new user with the same privileges and ..." msgstr "יצירת משתמש חדש עם אותן ההרשאות וגם ..." -#: server_privileges.php:2008 +#: server_privileges.php:2028 msgid "... keep the old one." msgstr "... שמירת הישן." -#: server_privileges.php:2009 +#: server_privileges.php:2029 msgid " ... delete the old one from the user tables." msgstr " ... מחיקת הישן מטבלאות המשתמשים." -#: server_privileges.php:2010 +#: server_privileges.php:2030 msgid "" " ... revoke all active privileges from the old one and delete it afterwards." msgstr " ... בטל את כל ההרשאות הפעילות מהישן ומחק אותו לאחר מכן." -#: server_privileges.php:2011 +#: server_privileges.php:2031 msgid "" " ... delete the old one from the user tables and reload the privileges " "afterwards." msgstr " ... מחיקת הישן מטבלאות המשתמשים וטען מחדש את ההרשאות לאחר מכן." -#: server_privileges.php:2033 +#: server_privileges.php:2054 msgid "Database for user" msgstr "" -#: server_privileges.php:2037 +#: server_privileges.php:2058 #, fuzzy #| msgid "None" msgctxt "Create none database for user" msgid "None" msgstr "ללא" -#: server_privileges.php:2038 +#: server_privileges.php:2059 msgid "Create database with same name and grant all privileges" msgstr "" -#: server_privileges.php:2039 +#: server_privileges.php:2060 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "" -#: server_privileges.php:2042 +#: server_privileges.php:2063 #, fuzzy, php-format msgid "Grant all privileges on database "%s"" msgstr "בדיקת הראשות עבור מאגר נתונים "%s"." -#: server_privileges.php:2065 +#: server_privileges.php:2086 #, php-format msgid "Users having access to "%s"" msgstr "" -#: server_privileges.php:2173 +#: server_privileges.php:2194 msgid "global" msgstr "עולמי" -#: server_privileges.php:2175 +#: server_privileges.php:2196 msgid "database-specific" msgstr "ספציפי למאגר הנתונים" -#: server_privileges.php:2177 +#: server_privileges.php:2198 msgid "wildcard" msgstr "תו כללי" @@ -7519,6 +7561,10 @@ msgstr "" msgid "Show insert query" msgstr "" +#: tbl_change.php:1143 +msgid "and then" +msgstr "ואז" + #: tbl_change.php:1147 msgid "Go back to previous page" msgstr "חזרה לעמוד הקודם" @@ -7597,7 +7643,7 @@ msgstr "" msgid "Add to index  %s column(s)" msgstr "הוספה לאינדקס  %s שורה/שורות" -#: tbl_indexes.php:256 tbl_structure.php:589 tbl_structure.php:600 +#: tbl_indexes.php:256 tbl_structure.php:587 tbl_structure.php:598 msgid "Column count has to be larger than zero." msgstr "מספר העמודות צריך להיות גדול מאפס." @@ -7715,39 +7761,39 @@ msgstr "" msgid "Show tables" msgstr "ראיית טבלאות" -#: tbl_printview.php:310 tbl_structure.php:656 +#: tbl_printview.php:310 tbl_structure.php:654 msgid "Space usage" msgstr "שימוש מקום" -#: tbl_printview.php:314 tbl_structure.php:660 +#: tbl_printview.php:314 tbl_structure.php:658 msgid "Usage" msgstr "שימוש" -#: tbl_printview.php:341 tbl_structure.php:687 +#: tbl_printview.php:341 tbl_structure.php:685 msgid "Effective" msgstr "יעיל" -#: tbl_printview.php:366 tbl_structure.php:725 +#: tbl_printview.php:366 tbl_structure.php:723 msgid "Row Statistics" msgstr "סטטיסטיקת שורה" -#: tbl_printview.php:369 tbl_structure.php:728 +#: tbl_printview.php:369 tbl_structure.php:726 msgid "Statements" msgstr "משפטים" -#: tbl_printview.php:380 tbl_structure.php:740 +#: tbl_printview.php:380 tbl_structure.php:738 msgid "static" msgstr "" -#: tbl_printview.php:382 tbl_structure.php:742 +#: tbl_printview.php:382 tbl_structure.php:740 msgid "dynamic" msgstr "דינאמי" -#: tbl_printview.php:404 tbl_structure.php:785 +#: tbl_printview.php:404 tbl_structure.php:783 msgid "Row length" msgstr "אורך שורה" -#: tbl_printview.php:414 tbl_structure.php:793 +#: tbl_printview.php:414 tbl_structure.php:791 msgid " Row size " msgstr " גודל שורה " @@ -7820,50 +7866,50 @@ msgstr "ללא" msgid "Column %s has been dropped" msgstr "טבלה %s נמחקה" -#: tbl_structure.php:385 +#: tbl_structure.php:384 #, php-format msgid "A primary key has been added on %s" msgstr "מפתח ראשי נוסף אל %s" -#: tbl_structure.php:400 tbl_structure.php:414 tbl_structure.php:428 +#: tbl_structure.php:398 tbl_structure.php:412 tbl_structure.php:426 #, php-format msgid "An index has been added on %s" msgstr "אינדקס נוסף אל %s" -#: tbl_structure.php:506 tbl_structure.php:508 +#: tbl_structure.php:504 tbl_structure.php:506 msgid "Relation view" msgstr "תצוגת יחסים" -#: tbl_structure.php:515 tbl_structure.php:517 +#: tbl_structure.php:513 tbl_structure.php:515 msgid "Propose table structure" msgstr "הצעת מבנה טבלה" -#: tbl_structure.php:540 +#: tbl_structure.php:538 #, fuzzy #| msgid "Add %s field(s)" msgid "Add column" msgstr "הוספת %s תאים" -#: tbl_structure.php:554 +#: tbl_structure.php:552 msgid "At End of Table" msgstr "בסוף טבלה" -#: tbl_structure.php:555 +#: tbl_structure.php:553 msgid "At Beginning of Table" msgstr "בתחילת טבלה" -#: tbl_structure.php:556 +#: tbl_structure.php:554 #, php-format msgid "After %s" msgstr "לאחר %s" -#: tbl_structure.php:594 +#: tbl_structure.php:592 #, fuzzy, php-format #| msgid "Create an index on %s columns" msgid "Create an index on  %s columns" msgstr "יצירת אינדקס על %s  עמודות" -#: tbl_structure.php:756 +#: tbl_structure.php:754 msgid "partitioned" msgstr "" @@ -8213,10 +8259,6 @@ msgstr "שינוי שם טבלה אל" #~ msgid "Process list" #~ msgstr "רשימת תהליכים" -#, fuzzy -#~ msgid "Reload privileges" -#~ msgstr "הרשאות גלובליות" - #~ msgid "Native MS Excel format" #~ msgstr "תבנית MS Excel טבעית" diff --git a/po/hi.po b/po/hi.po index 2a4fed2d6..588a172d4 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-13 09:03-0400\n" +"POT-Creation-Date: 2010-06-22 00:55+0530\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:1514 +#: libraries/display_tbl.lib.php:417 server_privileges.php:1534 msgid "Show all" msgstr "सभी दिखाओ" -#: browse_foreigners.php:82 libraries/common.lib.php:2313 +#: browse_foreigners.php:82 libraries/common.lib.php:2317 #: 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,18 +37,18 @@ 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:2831 -#: libraries/common.lib.php:2838 libraries/db_links.inc.php:75 +#: db_structure.php:106 libraries/common.lib.php:2835 +#: libraries/common.lib.php:2842 libraries/db_links.inc.php:75 #: libraries/tbl_links.inc.php:63 msgid "Search" msgstr "खोजें" -#: browse_foreigners.php:153 db_operations.php:385 db_operations.php:429 -#: db_operations.php:499 db_operations.php:609 db_search.php:362 -#: db_structure.php:567 js/messages.php:48 libraries/Config.class.php:1046 +#: browse_foreigners.php:153 db_operations.php:394 db_operations.php:438 +#: db_operations.php:508 db_operations.php:618 db_search.php:362 +#: db_structure.php:565 js/messages.php:53 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:1335 libraries/common.lib.php:2288 +#: libraries/common.lib.php:1335 libraries/common.lib.php:2292 #: 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,15 +59,15 @@ 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:664 server_privileges.php:1624 -#: server_privileges.php:1971 server_privileges.php:2018 -#: server_privileges.php:2057 server_replication.php:235 +#: server_privileges.php:665 server_privileges.php:1644 +#: server_privileges.php:1991 server_privileges.php:2038 +#: server_privileges.php:2078 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 #: tbl_operations.php:302 tbl_operations.php:499 tbl_operations.php:561 -#: tbl_operations.php:681 tbl_select.php:327 tbl_structure.php:562 -#: tbl_structure.php:597 tbl_tracking.php:395 tbl_tracking.php:512 +#: tbl_operations.php:681 tbl_select.php:327 tbl_structure.php:560 +#: tbl_structure.php:595 tbl_tracking.php:395 tbl_tracking.php:512 #: view_create.php:182 view_operations.php:101 msgid "Go" msgstr "आगे" @@ -93,7 +93,7 @@ msgstr "इस मूल्य का उपयोग करें" msgid "Database %1$s has been created." msgstr "%1$s डेटाबेस बनाया गया है." -#: db_datadict.php:49 db_operations.php:378 +#: db_datadict.php:49 db_operations.php:387 msgid "Database comment: " msgstr "डाटाबेस टिप्पणि: " @@ -120,10 +120,10 @@ 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:2070 +#: pdf_schema.php:1263 pdf_schema.php:1284 server_privileges.php:2091 #: 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 +#: tbl_structure.php:657 tbl_tracking.php:274 tbl_tracking.php:321 msgid "Type" msgstr "टाइप" @@ -136,7 +136,7 @@ msgstr "टाइप" msgid "Null" msgstr "अशक्त" -#: db_datadict.php:178 db_structure.php:501 libraries/export/htmlword.php:247 +#: db_datadict.php:178 db_structure.php:499 libraries/export/htmlword.php:247 #: libraries/export/latex.php:360 libraries/export/odt.php:303 #: libraries/export/texytext.php:236 libraries/tbl_properties.inc.php:106 #: pdf_schema.php:1266 pdf_schema.php:1287 tbl_printview.php:146 @@ -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: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 +#: pdf_schema.php:1344 server_privileges.php:1588 server_privileges.php:1599 +#: server_privileges.php:1909 server_privileges.php:1914 +#: server_privileges.php:2208 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:1565 -#: server_privileges.php:1579 server_privileges.php:1889 -#: server_privileges.php:1892 server_privileges.php:2187 sql.php:193 +#: server_databases.php:64 server_privileges.php:1585 +#: server_privileges.php:1599 server_privileges.php:1909 +#: server_privileges.php:1912 server_privileges.php:2208 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" @@ -209,119 +209,115 @@ msgstr "सभी का चयन करें" msgid "Unselect All" msgstr "सभी को रद्द करें" -#: db_operations.php:38 tbl_create.php:54 +#: db_operations.php:43 tbl_create.php:54 msgid "The database name is empty!" msgstr "डेटाबेस नाम खाली है" -#: db_operations.php:236 +#: db_operations.php:241 #, php-format msgid "Database %s has been renamed to %s" msgstr " डेटाबेस का नाम %s बदल कर %s रखा गया है" -#: db_operations.php:240 +#: db_operations.php:245 #, php-format msgid "Database %s has been copied to %s" msgstr " डेटाबेस %s से %s में कॉपी किया गया है" -#: db_operations.php:412 +#: db_operations.php:421 msgid "Rename database to" msgstr "डेटाबेस का नाम बदल कर ____ रखें" -#: db_operations.php:417 server_processlist.php:57 +#: db_operations.php:426 server_processlist.php:57 msgid "Command" msgstr "आदेश" -#: db_operations.php:429 tbl_change.php:1143 -msgid "and then" -msgstr "और फिर" - -#: db_operations.php:455 +#: db_operations.php:464 msgid "Copy database to" msgstr "डेटाबेस को ______ में कॉपी करें" -#: db_operations.php:462 tbl_operations.php:528 tbl_tracking.php:388 +#: db_operations.php:471 tbl_operations.php:528 tbl_tracking.php:388 msgid "Structure only" msgstr "केवल संरचना" -#: db_operations.php:463 tbl_operations.php:529 tbl_tracking.php:390 +#: db_operations.php:472 tbl_operations.php:529 tbl_tracking.php:390 msgid "Structure and data" msgstr "संरचना और डाटा" -#: db_operations.php:464 tbl_operations.php:530 tbl_tracking.php:389 +#: db_operations.php:473 tbl_operations.php:530 tbl_tracking.php:389 msgid "Data only" msgstr "केवल डाटा" -#: db_operations.php:472 +#: db_operations.php:481 msgid "CREATE DATABASE before copying" msgstr "डेटाबेस कॉपी करने से पहले डेटाबेस का निर्माण करें" -#: db_operations.php:475 libraries/export/sql.php:52 +#: db_operations.php:484 libraries/export/sql.php:52 #: libraries/export/sql.php:74 libraries/export/sql.php:76 #: libraries/export/sql.php:82 tbl_operations.php:536 #, php-format msgid "Add %s" msgstr "%s जोडें" -#: db_operations.php:479 libraries/export/sql.php:78 tbl_operations.php:299 +#: db_operations.php:488 libraries/export/sql.php:78 tbl_operations.php:299 #: tbl_operations.php:538 msgid "Add AUTO_INCREMENT value" msgstr "AUTO_INCREMENT मूल्य जोडें" -#: db_operations.php:483 tbl_operations.php:545 +#: db_operations.php:492 tbl_operations.php:545 msgid "Add constraints" msgstr "शर्तें जोडें" -#: db_operations.php:496 +#: db_operations.php:505 msgid "Switch to copied database" msgstr "नक़ल किये गए डाटाबेस पर जायें" -#: db_operations.php:537 +#: db_operations.php:546 msgid "BLOB Repository" msgstr "BLOB भंडार गृह" -#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1352 -#: libraries/server_links.inc.php:49 server_processlist.php:59 +#: db_operations.php:549 db_tracking.php:76 libraries/common.lib.php:1352 +#: libraries/server_links.inc.php:50 server_processlist.php:59 #: tbl_tracking.php:596 test/theme.php:101 msgid "Status" msgstr "स्थिति" -#: db_operations.php:548 +#: db_operations.php:557 msgctxt "BLOB repository" msgid "Enabled" msgstr "सक्षम" -#: db_operations.php:552 +#: db_operations.php:561 msgid "Disable" msgstr "असक्षम" -#: db_operations.php:562 +#: db_operations.php:571 msgid "Damaged" msgstr "क्षतिग्रस्त" -#: db_operations.php:566 +#: db_operations.php:575 msgctxt "BLOB repository" msgid "Repair" msgstr "मरम्मत" -#: db_operations.php:574 +#: db_operations.php:583 msgctxt "BLOB repository" msgid "Disabled" msgstr "असक्षम" -#: db_operations.php:578 +#: db_operations.php:587 msgid "Enable" msgstr "सक्षम" -#: db_operations.php:602 libraries/Index.class.php:448 +#: db_operations.php:611 libraries/Index.class.php:448 #: libraries/db_structure.lib.php:62 libraries/mysql_charsets.lib.php:107 #: libraries/tbl_properties.inc.php:107 libraries/tbl_properties.inc.php:730 #: server_collations.php:54 server_collations.php:66 server_databases.php:111 #: tbl_operations.php:363 tbl_select.php:137 tbl_structure.php:179 -#: tbl_structure.php:767 tbl_tracking.php:275 tbl_tracking.php:326 +#: tbl_structure.php:765 tbl_tracking.php:275 tbl_tracking.php:326 msgid "Collation" msgstr "क्रम में करें" -#: db_operations.php:615 main.php:316 pdf_schema.php:34 +#: db_operations.php:624 main.php:316 pdf_schema.php:34 #, php-format msgid "" "The additional features for working with linked tables have been " @@ -330,14 +326,14 @@ msgstr "" "लिंक्ड तालिकाओं के साथ काम करने के लिए अतिरिक्त सुविधाओं को निष्क्रिय कर दिया गया है. " "क्यों ये किया गया है, जानने के लिए %shere%s पर क्लिक करें." -#: db_operations.php:648 +#: db_operations.php:657 msgid "Edit PDF Pages" 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:1665 -#: server_privileges.php:1721 server_privileges.php:1985 +#: libraries/header.inc.php:130 pdf_pages.php:424 server_privileges.php:1685 +#: server_privileges.php:1741 server_privileges.php:2005 #: server_synchronize.php:423 server_synchronize.php:866 tbl_tracking.php:592 #: test/theme.php:75 msgid "Table" @@ -346,7 +342,7 @@ msgstr " टेबल " #: db_printview.php:105 libraries/db_structure.lib.php:56 #: libraries/header_printview.inc.php:63 libraries/import.lib.php:146 #: navigation.php:638 navigation.php:660 server_databases.php:122 -#: tbl_printview.php:394 tbl_structure.php:365 tbl_structure.php:777 +#: tbl_printview.php:394 tbl_structure.php:365 tbl_structure.php:775 msgid "Rows" msgstr "" @@ -354,30 +350,30 @@ msgstr "" msgid "Size" msgstr "आकार" -#: db_printview.php:162 db_structure.php:457 libraries/export/sql.php:559 +#: db_printview.php:162 db_structure.php:455 libraries/export/sql.php:559 #: libraries/export/sql.php:899 msgid "in use" msgstr "उपयोग में" #: db_printview.php:187 libraries/db_info.inc.php:88 #: libraries/export/sql.php:514 pdf_schema.php:1241 tbl_printview.php:434 -#: tbl_structure.php:809 +#: tbl_structure.php:807 msgid "Creation" msgstr "रचना" #: db_printview.php:196 libraries/db_info.inc.php:93 #: libraries/export/sql.php:519 pdf_schema.php:1246 tbl_printview.php:444 -#: tbl_structure.php:817 +#: tbl_structure.php:815 msgid "Last update" msgstr "पिछला नवीनीकरण" #: db_printview.php:205 libraries/db_info.inc.php:98 #: libraries/export/sql.php:524 pdf_schema.php:1251 tbl_printview.php:454 -#: tbl_structure.php:825 +#: tbl_structure.php:823 msgid "Last check" msgstr "पिछली जाँच" -#: db_printview.php:222 db_structure.php:480 +#: db_printview.php:222 db_structure.php:478 #, fuzzy, php-format #| msgid "%s table(s)" msgid "%s table" @@ -438,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:297 tbl_change.php:1031 tbl_indexes.php:250 +#: server_privileges.php:298 tbl_change.php:1031 tbl_indexes.php:250 #: tbl_select.php:288 msgid "Or" msgstr "अथवा" @@ -511,9 +507,9 @@ 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:2833 +#: db_structure.php:105 libraries/common.lib.php:2837 #: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50 -#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:467 +#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:465 msgid "Browse" msgstr "ब्राउज़" @@ -558,36 +554,36 @@ 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:2832 libraries/sql_query_form.lib.php:334 +#: libraries/common.lib.php:2836 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:2829 libraries/common.lib.php:2836 +#: libraries/common.lib.php:2833 libraries/common.lib.php:2840 #: 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:1106 #: libraries/tbl_links.inc.php:56 pmd_general.php:134 -#: server_privileges.php:593 server_replication.php:315 tbl_tracking.php:269 +#: server_privileges.php:594 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:1656 +#: db_structure.php:543 db_structure.php:544 db_tracking.php:91 +#: libraries/Index.class.php:483 libraries/common.lib.php:1657 #: 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 -#: tbl_structure.php:152 tbl_structure.php:471 +#: tbl_structure.php:152 tbl_structure.php:469 msgid "Drop" 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:1655 +#: db_structure.php:541 db_structure.php:542 libraries/common.lib.php:1656 #: libraries/mult_submits.inc.php:39 libraries/tbl_links.inc.php:105 msgid "Empty" msgstr "खाली करें" @@ -597,111 +593,111 @@ msgstr "खाली करें" msgid "Table %s has been emptied" msgstr " टेबल %s को खाली किया गया है." -#: db_structure.php:326 libraries/tbl_links.inc.php:133 +#: db_structure.php:325 libraries/tbl_links.inc.php:133 #, php-format msgid "View %s has been dropped" msgstr "द्रश्य %s रद्द दिया गया है." -#: db_structure.php:326 libraries/tbl_links.inc.php:133 +#: db_structure.php:325 libraries/tbl_links.inc.php:133 #, php-format msgid "Table %s has been dropped" msgstr " टेबल %s को रद्द किया गया है." -#: db_structure.php:333 +#: db_structure.php:332 msgid "Tracking is active." msgstr "ट्रैकिंग सक्रिय है" -#: db_structure.php:335 +#: db_structure.php:334 msgid "Tracking is not active." msgstr "ट्रैकिंग सक्रिय नहीं है." -#: db_structure.php:420 libraries/display_tbl.lib.php:1944 +#: db_structure.php:418 libraries/display_tbl.lib.php:1944 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation%" "s." msgstr "इस द्रश्य में कम से कम इतनी पंक्तियाँ हैं. और जानने के लिए %s दोक्युमेंताशन%s पढ़ें." -#: db_structure.php:434 db_structure.php:448 libraries/header.inc.php:126 +#: db_structure.php:432 db_structure.php:446 libraries/header.inc.php:130 #: libraries/tbl_info.inc.php:66 tbl_structure.php:185 test/theme.php:74 msgid "View" msgstr "दृश्य" -#: db_structure.php:485 libraries/db_structure.lib.php:49 -#: libraries/server_links.inc.php:70 server_replication.php:33 +#: db_structure.php:483 libraries/db_structure.lib.php:49 +#: libraries/server_links.inc.php:71 server_replication.php:33 #: server_replication.php:164 server_status.php:369 msgid "Replication" msgstr "प्रतिकृति" -#: db_structure.php:489 +#: db_structure.php:487 msgid "Sum" msgstr "जोड" -#: db_structure.php:496 libraries/StorageEngine.class.php:356 +#: db_structure.php:494 libraries/StorageEngine.class.php:356 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "%s इस MySQL सर्वर पर डिफ़ॉल्ट भंडारण इंजन है." -#: db_structure.php:524 db_structure.php:541 db_structure.php:542 +#: db_structure.php:522 db_structure.php:539 db_structure.php:540 #: 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:1596 tbl_structure.php:455 -#: tbl_structure.php:464 +#: server_databases.php:351 server_privileges.php:1616 tbl_structure.php:453 +#: tbl_structure.php:462 msgid "With selected:" msgstr "चुने हुओं को:" -#: db_structure.php:527 libraries/display_tbl.lib.php:2076 -#: server_databases.php:348 server_privileges.php:569 -#: server_privileges.php:1599 tbl_structure.php:458 +#: db_structure.php:525 libraries/display_tbl.lib.php:2076 +#: server_databases.php:348 server_privileges.php:570 +#: server_privileges.php:1619 tbl_structure.php:456 msgid "Check All" msgstr "सभी को चेक करें" -#: db_structure.php:531 libraries/display_tbl.lib.php:2077 +#: db_structure.php:529 libraries/display_tbl.lib.php:2077 #: libraries/replication_gui.lib.php:33 server_databases.php:350 -#: server_privileges.php:572 server_privileges.php:1603 tbl_structure.php:462 +#: server_privileges.php:573 server_privileges.php:1623 tbl_structure.php:460 msgid "Uncheck All" msgstr " सभी को अनचेक करें" -#: db_structure.php:536 +#: db_structure.php:534 msgid "Check tables having overhead" msgstr " ओवर्हेअद वाली तालुकाओं को चेक करें." -#: db_structure.php:547 db_structure.php:548 db_structure.php:599 +#: db_structure.php:545 db_structure.php:546 db_structure.php:597 #: libraries/display_tbl.lib.php:2180 libraries/mult_submits.inc.php:28 -#: tbl_structure.php:492 tbl_structure.php:494 +#: tbl_structure.php:490 tbl_structure.php:492 msgid "Print view" msgstr "छापने वाला द्रश्य." -#: db_structure.php:549 db_structure.php:550 libraries/mult_submits.inc.php:42 +#: db_structure.php:547 db_structure.php:548 libraries/mult_submits.inc.php:42 #: tbl_operations.php:581 msgid "Check table" msgstr " टेबल को चेक करें" -#: db_structure.php:551 db_structure.php:552 libraries/mult_submits.inc.php:47 -#: tbl_operations.php:621 tbl_structure.php:709 tbl_structure.php:711 +#: db_structure.php:549 db_structure.php:550 libraries/mult_submits.inc.php:47 +#: tbl_operations.php:621 tbl_structure.php:707 tbl_structure.php:709 msgid "Optimize table" msgstr "तालिका को अनुकूलित करें" -#: db_structure.php:553 db_structure.php:554 libraries/mult_submits.inc.php:52 +#: db_structure.php:551 db_structure.php:552 libraries/mult_submits.inc.php:52 #: tbl_operations.php:611 msgid "Repair table" msgstr " टेबल को टीक करें" -#: db_structure.php:555 db_structure.php:556 libraries/mult_submits.inc.php:57 +#: db_structure.php:553 db_structure.php:554 libraries/mult_submits.inc.php:57 #: tbl_operations.php:601 msgid "Analyze table" msgstr "टेबल का विश्लेषण करें" -#: db_structure.php:557 db_structure.php:558 libraries/db_links.inc.php:71 +#: db_structure.php:555 db_structure.php:556 libraries/db_links.inc.php:71 #: 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:1380 +#: libraries/server_links.inc.php:85 libraries/tbl_links.inc.php:82 +#: pmd_pdf.php:84 pmd_pdf.php:109 server_privileges.php:1397 #: setup/frames/menu.inc.php:22 tbl_row_action.php:59 msgid "Export" msgstr "निर्यात" -#: db_structure.php:606 libraries/display_pdf_schema.lib.php:44 +#: db_structure.php:604 libraries/display_pdf_schema.lib.php:44 msgid "Data Dictionary" msgstr "डेटा शब्दकोश" @@ -712,10 +708,10 @@ msgstr "ट्रैक की गयी तालिकाएं" #: db_tracking.php:71 libraries/export/htmlword.php:86 #: libraries/export/latex.php:148 libraries/export/odt.php:113 #: libraries/export/sql.php:342 libraries/export/texytext.php:84 -#: libraries/export/xml.php:255 libraries/header.inc.php:106 +#: libraries/export/xml.php:255 libraries/header.inc.php:110 #: libraries/header_printview.inc.php:58 server_databases.php:169 -#: server_privileges.php:1660 server_privileges.php:1721 -#: server_privileges.php:1979 server_processlist.php:56 +#: server_privileges.php:1680 server_privileges.php:1741 +#: server_privileges.php:1999 server_processlist.php:56 #: server_synchronize.php:1179 server_synchronize.php:1183 #: tbl_tracking.php:591 test/theme.php:65 msgid "Database" @@ -735,8 +731,8 @@ msgstr "अद्यतन" #: db_tracking.php:77 libraries/Index.class.php:440 #: libraries/db_structure.lib.php:53 server_databases.php:203 -#: server_privileges.php:1542 server_privileges.php:1725 -#: server_privileges.php:2073 tbl_structure.php:187 +#: server_privileges.php:1562 server_privileges.php:1745 +#: server_privileges.php:2094 tbl_structure.php:187 msgid "Action" msgstr "कार्य" @@ -770,8 +766,8 @@ msgstr "संरचना स्नैपशॉट" msgid "Untracked tables" msgstr "लापता तालिकाएं" -#: db_tracking.php:172 db_tracking.php:174 tbl_structure.php:528 -#: tbl_structure.php:530 +#: db_tracking.php:172 db_tracking.php:174 tbl_structure.php:526 +#: tbl_structure.php:528 msgid "Track table" msgstr "तालिकाओं को ट्रैक करें" @@ -934,318 +930,363 @@ msgstr "मेज़बान का नाम (hostname) खाली है!" msgid "The user name is empty!" msgstr "उपयोगकर्ता नाम खाली है!" -#: js/messages.php:44 server_privileges.php:1236 user_password.php:70 +#: js/messages.php:44 server_privileges.php:1241 user_password.php:70 msgid "The password is empty!" msgstr "पासवर्ड खाली है" -#: js/messages.php:45 server_privileges.php:1234 user_password.php:73 +#: js/messages.php:45 server_privileges.php:1239 user_password.php:73 msgid "The passwords aren't the same!" msgstr "पासवर्ड मिलते झूलते नहीं हैं." -#: js/messages.php:49 pmd_general.php:342 pmd_general.php:379 +#: js/messages.php:46 +#, fuzzy +#| msgid "Add a new User" +msgid "Add a New User" +msgstr "नया यूसर जोडें" + +#: js/messages.php:47 js/messages.php:54 pmd_general.php:342 +#: pmd_general.php:379 msgid "Cancel" msgstr "रद्द" -#: js/messages.php:52 pmd_save_pos.php:54 +#: js/messages.php:48 +#, fuzzy +#| msgid "Create" +msgid "Create User" +msgstr "बनाइये" + +#: js/messages.php:49 +#, fuzzy +#| msgid "Edit Privileges" +msgid "Reloading Privileges" +msgstr " प्रिविलेज एडिट करें" + +#: js/messages.php:50 +msgid "Removing Selected Users" +msgstr "" + +#: js/messages.php:57 +#, fuzzy +#| msgid "Log in" +msgid "Loading" +msgstr "लोगिन" + +#: js/messages.php:58 +msgid "Processing Request" +msgstr "" + +#: js/messages.php:59 +msgid "Error in Processing Request" +msgstr "" + +#: js/messages.php:60 +msgid "Dropping Column" +msgstr "" + +#: js/messages.php:61 +msgid "Adding Primary Key" +msgstr "" + +#: js/messages.php:64 pmd_save_pos.php:54 msgid "Modifications have been saved" msgstr "संशोधनों को बचाया गया है" -#: js/messages.php:53 pmd_relation_upd.php:49 +#: js/messages.php:65 pmd_relation_upd.php:49 msgid "Relation deleted" msgstr "रिश्ते को नष्ट कर दिया" -#: js/messages.php:54 pmd_relation_new.php:64 +#: js/messages.php:66 pmd_relation_new.php:64 msgid "FOREIGN KEY relation added" msgstr "विदेशी कुंजी रिश्ता जोड़ा." -#: js/messages.php:55 pmd_relation_new.php:86 +#: js/messages.php:67 pmd_relation_new.php:86 msgid "Internal relation added" msgstr "आंतरिक संबंध जोड़ा." -#: js/messages.php:56 pmd_relation_new.php:63 pmd_relation_new.php:88 +#: js/messages.php:68 pmd_relation_new.php:63 pmd_relation_new.php:88 msgid "Error: Relation not added." msgstr "त्रुटि: रिलेशन नहीं जोड़ा गया." -#: js/messages.php:57 pmd_relation_new.php:31 +#: js/messages.php:69 pmd_relation_new.php:31 msgid "Error: relation already exists." msgstr "त्रुटि: रिश्ता पहले से ही मौजूद है. " -#: js/messages.php:58 +#: js/messages.php:70 msgid "Error saving coordinates for Designer." msgstr "डिजाइनर के लिए निर्देशांक बचाने में त्रुटि आ रही है" -#: js/messages.php:59 libraries/relation.lib.php:107 +#: js/messages.php:71 libraries/relation.lib.php:107 #: libraries/relation.lib.php:119 msgid "General relation features" msgstr "सामान्य सुविधाओं के संबंध" -#: js/messages.php:59 libraries/relation.lib.php:101 +#: js/messages.php:71 libraries/relation.lib.php:101 #: libraries/relation.lib.php:108 msgid "Disabled" msgstr "अक्षम" -#: js/messages.php:60 +#: js/messages.php:72 msgid "Select referenced key" msgstr "संदर्भित कुंजी का चयन करें." -#: js/messages.php:61 +#: js/messages.php:73 msgid "Select Foreign Key" msgstr "विदेश कुंजी का चयन करें." -#: js/messages.php:62 +#: js/messages.php:74 msgid "Please select the primary key or a unique key" msgstr "कृपया प्राथमिक कुंजी या एक अद्वितीय कुंजी का चयन करें" -#: js/messages.php:63 pmd_general.php:77 tbl_relation.php:548 +#: js/messages.php:75 pmd_general.php:77 tbl_relation.php:548 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" msgstr "क्षेत्र प्रदर्शित करने के लिए चयन करें." #. l10n: Display text for calendar close link -#: js/messages.php:73 +#: js/messages.php:85 msgid "Done" msgstr "किया" #. l10n: Display text for previous month link in calendar -#: js/messages.php:75 +#: js/messages.php:87 msgid "Prev" msgstr "पिछला" #. l10n: Display text for next month link in calendar -#: js/messages.php:77 libraries/common.lib.php:2353 -#: libraries/common.lib.php:2356 libraries/display_tbl.lib.php:338 +#: js/messages.php:89 libraries/common.lib.php:2357 +#: libraries/common.lib.php:2360 libraries/display_tbl.lib.php:338 #: server_binlog.php:205 server_binlog.php:207 tbl_printview.php:424 -#: tbl_structure.php:801 +#: tbl_structure.php:799 msgid "Next" msgstr " अगला" #. l10n: Display text for current month link in calendar -#: js/messages.php:79 +#: js/messages.php:91 msgid "Today" msgstr "आज" -#: js/messages.php:82 +#: js/messages.php:94 msgid "January" msgstr "जनवरी" -#: js/messages.php:83 +#: js/messages.php:95 msgid "February" msgstr "फरवरी" -#: js/messages.php:84 +#: js/messages.php:96 msgid "March" msgstr "मार्च" -#: js/messages.php:85 +#: js/messages.php:97 msgid "April" msgstr "अप्रैल" -#: js/messages.php:86 +#: js/messages.php:98 msgid "May" msgstr "मई" -#: js/messages.php:87 +#: js/messages.php:99 msgid "June" msgstr "जून" -#: js/messages.php:88 +#: js/messages.php:100 msgid "July" msgstr "जुलाई" -#: js/messages.php:89 +#: js/messages.php:101 msgid "August" msgstr "अगस्त" -#: js/messages.php:90 +#: js/messages.php:102 msgid "September" msgstr "सितम्बर" -#: js/messages.php:91 +#: js/messages.php:103 msgid "October" msgstr "अक्तूबर" -#: js/messages.php:92 +#: js/messages.php:104 msgid "November" msgstr "नवम्बर" -#: js/messages.php:93 +#: js/messages.php:105 msgid "December" msgstr "दिसम्बर" #. l10n: Short month name -#: js/messages.php:97 libraries/common.lib.php:1557 +#: js/messages.php:109 libraries/common.lib.php:1557 msgid "Jan" msgstr "जनवरी" #. l10n: Short month name -#: js/messages.php:99 libraries/common.lib.php:1559 +#: js/messages.php:111 libraries/common.lib.php:1559 msgid "Feb" msgstr "फरवरी" #. l10n: Short month name -#: js/messages.php:101 libraries/common.lib.php:1561 +#: js/messages.php:113 libraries/common.lib.php:1561 msgid "Mar" msgstr "मार्च" #. l10n: Short month name -#: js/messages.php:103 libraries/common.lib.php:1563 +#: js/messages.php:115 libraries/common.lib.php:1563 msgid "Apr" msgstr "अप्रैल" #. l10n: Short month name -#: js/messages.php:105 libraries/common.lib.php:1565 +#: js/messages.php:117 libraries/common.lib.php:1565 msgctxt "Short month name" msgid "May" msgstr "मई" #. l10n: Short month name -#: js/messages.php:107 libraries/common.lib.php:1567 +#: js/messages.php:119 libraries/common.lib.php:1567 msgid "Jun" msgstr "जून" #. l10n: Short month name -#: js/messages.php:109 libraries/common.lib.php:1569 +#: js/messages.php:121 libraries/common.lib.php:1569 msgid "Jul" msgstr "जुलाई" #. l10n: Short month name -#: js/messages.php:111 libraries/common.lib.php:1571 +#: js/messages.php:123 libraries/common.lib.php:1571 msgid "Aug" msgstr "अगस्त" #. l10n: Short month name -#: js/messages.php:113 libraries/common.lib.php:1573 +#: js/messages.php:125 libraries/common.lib.php:1573 msgid "Sep" msgstr "सितम्बर" #. l10n: Short month name -#: js/messages.php:115 libraries/common.lib.php:1575 +#: js/messages.php:127 libraries/common.lib.php:1575 msgid "Oct" msgstr "अक्तूबर" #. l10n: Short month name -#: js/messages.php:117 libraries/common.lib.php:1577 +#: js/messages.php:129 libraries/common.lib.php:1577 msgid "Nov" msgstr "नवम्बर" #. l10n: Short month name -#: js/messages.php:119 libraries/common.lib.php:1579 +#: js/messages.php:131 libraries/common.lib.php:1579 msgid "Dec" msgstr "दिसमबर" -#: js/messages.php:122 +#: js/messages.php:134 msgid "Sunday" msgstr "रविवार" -#: js/messages.php:123 +#: js/messages.php:135 msgid "Monday" msgstr "सोमवार" -#: js/messages.php:124 +#: js/messages.php:136 msgid "Tuesday" msgstr "मन्गलवार" -#: js/messages.php:125 +#: js/messages.php:137 msgid "Wednesday" msgstr "बुधवार" -#: js/messages.php:126 +#: js/messages.php:138 msgid "Thursday" msgstr "गुरूवार" -#: js/messages.php:127 +#: js/messages.php:139 msgid "Friday" msgstr "शुक्रवार" -#: js/messages.php:128 +#: js/messages.php:140 msgid "Saturday" msgstr "शनिवार" #. l10n: Short week day name -#: js/messages.php:132 libraries/common.lib.php:1582 +#: js/messages.php:144 libraries/common.lib.php:1582 msgid "Sun" msgstr "रविवार" #. l10n: Short week day name -#: js/messages.php:134 libraries/common.lib.php:1584 +#: js/messages.php:146 libraries/common.lib.php:1584 msgid "Mon" msgstr "सोमवार" #. l10n: Short week day name -#: js/messages.php:136 libraries/common.lib.php:1586 +#: js/messages.php:148 libraries/common.lib.php:1586 msgid "Tue" msgstr "मन्गलवार" #. l10n: Short week day name -#: js/messages.php:138 libraries/common.lib.php:1588 +#: js/messages.php:150 libraries/common.lib.php:1588 msgid "Wed" msgstr "बुधवार" #. l10n: Short week day name -#: js/messages.php:140 libraries/common.lib.php:1590 +#: js/messages.php:152 libraries/common.lib.php:1590 msgid "Thu" msgstr "गुरुवार" #. l10n: Short week day name -#: js/messages.php:142 libraries/common.lib.php:1592 +#: js/messages.php:154 libraries/common.lib.php:1592 msgid "Fri" msgstr "शुक्रवार" #. l10n: Short week day name -#: js/messages.php:144 libraries/common.lib.php:1594 +#: js/messages.php:156 libraries/common.lib.php:1594 msgid "Sat" msgstr "शनिवार" #. l10n: Minimal week day name -#: js/messages.php:148 +#: js/messages.php:160 msgid "Su" msgstr "रविवार" #. l10n: Minimal week day name -#: js/messages.php:150 +#: js/messages.php:162 msgid "Mo" msgstr "सोमवार" #. l10n: Minimal week day name -#: js/messages.php:152 +#: js/messages.php:164 msgid "Tu" msgstr "मन्गलवार" #. l10n: Minimal week day name -#: js/messages.php:154 +#: js/messages.php:166 msgid "We" msgstr "बुधवार" #. l10n: Minimal week day name -#: js/messages.php:156 +#: js/messages.php:168 msgid "Th" msgstr "गुरुवार" #. l10n: Minimal week day name -#: js/messages.php:158 +#: js/messages.php:170 msgid "Fr" msgstr "शुक्रवार" #. l10n: Minimal week day name -#: js/messages.php:160 +#: js/messages.php:172 msgid "Sa" msgstr "शनिवार" #. l10n: Column header for week of the year in calendar -#: js/messages.php:162 +#: js/messages.php:174 msgid "Wk" msgstr "हफ्ता" -#: js/messages.php:164 +#: js/messages.php:176 msgid "Hour" msgstr "घंटा" -#: js/messages.php:165 +#: js/messages.php:177 msgid "Minute" msgstr "मिनट" -#: js/messages.php:166 +#: js/messages.php:178 msgid "Second" msgstr "सेकंड" @@ -1302,7 +1343,7 @@ msgstr "सूचकांक" #: libraries/Index.class.php:444 libraries/mult_submits.inc.php:103 #: libraries/tbl_properties.inc.php:519 tbl_structure.php:33 -#: tbl_structure.php:155 tbl_structure.php:159 tbl_structure.php:474 +#: tbl_structure.php:155 tbl_structure.php:159 tbl_structure.php:472 #: tbl_tracking.php:322 msgid "Unique" msgstr "अद्वितीय" @@ -1343,8 +1384,8 @@ msgid "" "removed." msgstr "सूचकांक %1s और %2s बराबर लगने के कारन उनमें से संभवतः हटाया जा सकता है." -#: libraries/List_Database.class.php:431 libraries/server_links.inc.php:41 -#: server_databases.php:88 server_privileges.php:1660 +#: libraries/List_Database.class.php:431 libraries/server_links.inc.php:42 +#: server_databases.php:88 server_privileges.php:1680 #: setup/lib/messages.inc.php:110 test/theme.php:93 msgid "Databases" msgstr " डाटाबेस" @@ -1511,7 +1552,7 @@ msgstr "पासव्रड:" msgid "Server Choice" msgstr "सर्वर चुनिये" -#: libraries/auth/cookie.auth.lib.php:320 libraries/header.inc.php:59 +#: libraries/auth/cookie.auth.lib.php:320 libraries/header.inc.php:63 msgid "Cookies must be enabled past this point." msgstr "कुकीज़ इस बिंदु अतीत सक्षम होना चाहिए." @@ -1586,7 +1627,7 @@ msgid "" "necessary extensions appear to be loaded. Check your PHP configuration." msgstr "" -#: libraries/common.inc.php:583 +#: libraries/common.inc.php:587 msgid "" "phpMyAdmin was unable to read your configuration file!
This might " "happen if PHP finds a parse error in it or PHP cannot find the file.
$cfg['PmaAbsoluteUri'] directive MUST be set in your " "configuration file!" msgstr "" -#: libraries/common.inc.php:629 +#: libraries/common.inc.php:633 #, php-format msgid "Invalid server index: %s" msgstr "" -#: libraries/common.inc.php:636 +#: libraries/common.inc.php:640 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" -#: libraries/common.inc.php:645 libraries/header.inc.php:96 +#: libraries/common.inc.php:649 libraries/header.inc.php:100 #: libraries/select_server.lib.php:41 libraries/select_server.lib.php:47 #: main.php:185 test/theme.php:57 msgid "Server" msgstr "" -#: libraries/common.inc.php:823 +#: libraries/common.inc.php:827 msgid "Invalid authentication method set in configuration:" msgstr "" -#: libraries/common.inc.php:926 +#: libraries/common.inc.php:930 #, php-format msgid "You should upgrade to %s %s or later." msgstr "" @@ -1758,45 +1799,45 @@ msgstr "." msgid "%B %d, %Y at %I:%M %p" msgstr "%d %B, %Y को %I:%M %p" -#: libraries/common.lib.php:1907 +#: libraries/common.lib.php:1911 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s दिन, %s घंटे, %s मिनट and %s सेकंड" -#: libraries/common.lib.php:2322 libraries/common.lib.php:2325 +#: libraries/common.lib.php:2326 libraries/common.lib.php:2329 #: libraries/display_tbl.lib.php:290 server_status.php:719 msgid "Begin" msgstr "" -#: libraries/common.lib.php:2323 libraries/common.lib.php:2326 +#: libraries/common.lib.php:2327 libraries/common.lib.php:2330 #: libraries/display_tbl.lib.php:291 server_binlog.php:168 #: server_binlog.php:170 msgid "Previous" msgstr "" -#: libraries/common.lib.php:2354 libraries/common.lib.php:2357 +#: libraries/common.lib.php:2358 libraries/common.lib.php:2361 #: libraries/display_tbl.lib.php:353 msgid "End" msgstr "आखरी" -#: libraries/common.lib.php:2430 +#: libraries/common.lib.php:2434 #, php-format msgid "Jump to database "%s"." msgstr "" -#: libraries/common.lib.php:2450 +#: libraries/common.lib.php:2454 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" -#: libraries/common.lib.php:2830 libraries/common.lib.php:2837 +#: libraries/common.lib.php:2834 libraries/common.lib.php:2841 #: libraries/db_links.inc.php:68 libraries/export/sql.php:25 -#: libraries/import/sql.php:18 libraries/server_links.inc.php:45 +#: libraries/import/sql.php:18 libraries/server_links.inc.php:46 #: libraries/tbl_links.inc.php:60 querywindow.php:99 test/theme.php:97 msgid "SQL" msgstr "" -#: libraries/common.lib.php:2839 libraries/db_links.inc.php:104 +#: libraries/common.lib.php:2843 libraries/db_links.inc.php:104 #: libraries/tbl_links.inc.php:95 libraries/tbl_links.inc.php:117 #: view_operations.php:89 msgid "Operations" @@ -1843,15 +1884,15 @@ msgstr "क्वरी" msgid "Designer" msgstr "" -#: libraries/db_links.inc.php:98 libraries/server_links.inc.php:88 +#: libraries/db_links.inc.php:98 libraries/server_links.inc.php:89 #: libraries/tbl_links.inc.php:91 pmd_pdf.php:84 pmd_pdf.php:110 #: setup/frames/menu.inc.php:21 msgid "Import" msgstr "" -#: libraries/db_links.inc.php:111 libraries/server_links.inc.php:66 -#: server_privileges.php:111 server_privileges.php:1722 -#: server_privileges.php:2071 test/theme.php:117 +#: libraries/db_links.inc.php:111 libraries/server_links.inc.php:67 +#: server_privileges.php:112 server_privileges.php:1742 +#: server_privileges.php:2092 test/theme.php:117 msgid "Privileges" msgstr " प्रिविलेज" @@ -1871,7 +1912,7 @@ msgstr "" "शायद अनुमानित हैं. [a@./Documentation.html#faq3_11@Documentation]FAQ 3.11[/a] देखें" #: libraries/db_structure.lib.php:69 server_databases.php:142 -#: tbl_printview.php:336 tbl_structure.php:682 +#: tbl_printview.php:336 tbl_structure.php:680 msgid "Overhead" msgstr "" @@ -1888,7 +1929,7 @@ msgstr "" msgid "(or the local MySQL server's socket is not correctly configured)" msgstr "" -#: libraries/dbi/mysql.dbi.lib.php:362 tbl_structure.php:608 +#: libraries/dbi/mysql.dbi.lib.php:362 tbl_structure.php:606 msgid "Details..." msgstr "" @@ -1898,22 +1939,22 @@ msgid "Change password" msgstr "पासव्रड बदलिये" #: libraries/display_change_password.lib.php:35 -#: libraries/replication_gui.lib.php:345 server_privileges.php:807 +#: libraries/replication_gui.lib.php:345 server_privileges.php:808 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:796 -#: server_privileges.php:800 server_privileges.php:811 -#: server_privileges.php:1538 server_synchronize.php:1175 +#: libraries/replication_gui.lib.php:349 server_privileges.php:797 +#: server_privileges.php:801 server_privileges.php:812 +#: server_privileges.php:1558 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:815 server_privileges.php:818 +#: server_privileges.php:816 server_privileges.php:819 msgid "Re-type" msgstr "" @@ -1926,12 +1967,12 @@ msgid "MySQL 4.0 compatible" msgstr "" #: libraries/display_change_password.lib.php:72 -#: libraries/replication_gui.lib.php:360 server_privileges.php:822 +#: libraries/replication_gui.lib.php:360 server_privileges.php:823 msgid "Generate Password" msgstr "" #: libraries/display_change_password.lib.php:75 -#: libraries/replication_gui.lib.php:363 server_privileges.php:825 +#: libraries/replication_gui.lib.php:363 server_privileges.php:826 msgid "Generate" msgstr "" @@ -1944,8 +1985,8 @@ msgstr " नया डाटाबेस बनाओ" msgid "Create" msgstr "बनाइये" -#: libraries/display_create_database.lib.php:40 server_privileges.php:113 -#: server_privileges.php:1427 server_replication.php:35 +#: libraries/display_create_database.lib.php:40 server_privileges.php:114 +#: server_privileges.php:1447 server_replication.php:35 msgid "No Privileges" msgstr "कोइ प्रिविलेज नहीं" @@ -2033,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:1875 server_processlist.php:75 +#: server_privileges.php:1895 server_processlist.php:75 msgid "None" msgstr "" @@ -2219,7 +2260,7 @@ msgstr "" #: libraries/import/docsql.php:34 libraries/import/ldi.php:47 #: libraries/import/ods.php:30 libraries/import/sql.php:20 #: libraries/import/xls.php:26 libraries/import/xlsx.php:26 -#: libraries/import/xml.php:25 tbl_select.php:267 tbl_structure.php:753 +#: libraries/import/xml.php:25 tbl_select.php:267 tbl_structure.php:751 msgid "Options" msgstr "" @@ -2294,7 +2335,7 @@ msgstr "क्वरी को %01.4f सेकेंड का समय लग #: libraries/display_tbl.lib.php:2089 libraries/mult_submits.inc.php:113 #: querywindow.php:125 querywindow.php:129 querywindow.php:132 -#: tbl_structure.php:25 tbl_structure.php:150 tbl_structure.php:470 +#: tbl_structure.php:25 tbl_structure.php:150 tbl_structure.php:468 msgid "Change" msgstr "बदलिये" @@ -2360,7 +2401,7 @@ msgstr "बफर पूल उपयोग" #: libraries/engines/innodb.lib.php:194 server_databases.php:137 #: server_databases.php:305 server_status.php:525 server_status.php:586 -#: server_status.php:607 tbl_printview.php:351 tbl_structure.php:696 +#: server_status.php:607 tbl_printview.php:351 tbl_structure.php:694 msgid "Total" msgstr "" @@ -2605,7 +2646,7 @@ msgid "" msgstr "" #: libraries/export/codegen.php:37 setup/lib/messages.inc.php:88 -#: tbl_printview.php:376 tbl_structure.php:737 +#: tbl_printview.php:376 tbl_structure.php:735 msgid "Format" msgstr "" @@ -2673,8 +2714,8 @@ 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:576 server_replication.php:316 tbl_printview.php:317 -#: tbl_structure.php:665 +#: server_privileges.php:577 server_replication.php:316 tbl_printview.php:317 +#: tbl_structure.php:663 msgid "Data" msgstr " डाटा" @@ -2723,9 +2764,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:731 -#: server_privileges.php:734 server_privileges.php:790 -#: server_privileges.php:1537 server_privileges.php:2069 +#: libraries/replication_gui.lib.php:329 server_privileges.php:732 +#: server_privileges.php:735 server_privileges.php:791 +#: server_privileges.php:1557 server_privileges.php:2090 #: server_processlist.php:55 server_synchronize.php:1159 msgid "Host" msgstr "होस्ट" @@ -2922,7 +2963,7 @@ msgstr "" msgid "Open new phpMyAdmin window" msgstr "" -#: libraries/header.inc.php:115 +#: libraries/header.inc.php:119 msgid "New table" msgstr "" @@ -3079,20 +3120,20 @@ 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 +#: tbl_structure.php:471 msgid "Primary" msgstr "" #: libraries/mult_submits.inc.php:98 libraries/tbl_properties.inc.php:116 #: libraries/tbl_properties.inc.php:525 tbl_printview.php:326 #: tbl_structure.php:31 tbl_structure.php:154 tbl_structure.php:158 -#: tbl_structure.php:475 tbl_structure.php:673 +#: tbl_structure.php:473 tbl_structure.php:671 msgid "Index" msgstr "" #: libraries/mult_submits.inc.php:108 libraries/tbl_properties.inc.php:531 #: tbl_structure.php:35 tbl_structure.php:156 tbl_structure.php:160 -#: tbl_structure.php:478 +#: tbl_structure.php:476 msgid "Fulltext" msgstr "" @@ -3393,8 +3434,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:711 -#: server_privileges.php:714 server_privileges.php:721 +#: libraries/replication_gui.lib.php:259 server_privileges.php:712 +#: server_privileges.php:715 server_privileges.php:722 #: server_synchronize.php:1171 msgid "User name" msgstr "यूसर नेम" @@ -3418,7 +3459,7 @@ msgstr "" #: 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 +#: tbl_structure.php:727 msgid "Value" msgstr "मूल्य" @@ -3436,34 +3477,34 @@ msgstr "" msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:254 server_privileges.php:716 +#: libraries/replication_gui.lib.php:254 server_privileges.php:717 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:717 -#: server_privileges.php:784 server_privileges.php:808 -#: server_privileges.php:1928 server_privileges.php:1958 +#: libraries/replication_gui.lib.php:346 server_privileges.php:718 +#: server_privileges.php:785 server_privileges.php:809 +#: server_privileges.php:1948 server_privileges.php:1978 msgid "Use text field" msgstr "" -#: libraries/replication_gui.lib.php:302 server_privileges.php:764 +#: libraries/replication_gui.lib.php:302 server_privileges.php:765 msgid "Any host" msgstr "कोई भी होस्ट" -#: libraries/replication_gui.lib.php:306 server_privileges.php:768 +#: libraries/replication_gui.lib.php:306 server_privileges.php:769 msgid "Local" msgstr "Local" -#: libraries/replication_gui.lib.php:312 server_privileges.php:773 +#: libraries/replication_gui.lib.php:312 server_privileges.php:774 msgid "This Host" msgstr "" -#: libraries/replication_gui.lib.php:318 server_privileges.php:779 +#: libraries/replication_gui.lib.php:318 server_privileges.php:780 msgid "Use Host Table" msgstr "" -#: libraries/replication_gui.lib.php:331 server_privileges.php:792 +#: libraries/replication_gui.lib.php:331 server_privileges.php:793 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -3497,29 +3538,29 @@ msgstr "" msgid "Servers" msgstr "" -#: libraries/server_links.inc.php:53 server_engines.php:112 +#: libraries/server_links.inc.php:54 server_engines.php:112 #: server_engines.php:116 server_status.php:415 test/theme.php:105 msgid "Variables" msgstr "" -#: libraries/server_links.inc.php:57 test/theme.php:109 +#: libraries/server_links.inc.php:58 test/theme.php:109 msgid "Charsets" msgstr "" -#: libraries/server_links.inc.php:61 test/theme.php:113 +#: libraries/server_links.inc.php:62 test/theme.php:113 msgid "Engines" msgstr "" -#: libraries/server_links.inc.php:76 server_binlog.php:110 +#: libraries/server_links.inc.php:77 server_binlog.php:110 #: server_status.php:364 test/theme.php:121 msgid "Binary log" msgstr "बाइनरी लोग" -#: libraries/server_links.inc.php:80 +#: libraries/server_links.inc.php:81 msgid "Processes" msgstr "" -#: libraries/server_links.inc.php:92 server_synchronize.php:1092 +#: libraries/server_links.inc.php:93 server_synchronize.php:1092 #: server_synchronize.php:1100 msgid "Synchronize" msgstr "" @@ -3734,13 +3775,13 @@ msgstr "" msgid "Save" msgstr "" -#: libraries/tbl_properties.inc.php:780 tbl_structure.php:542 +#: libraries/tbl_properties.inc.php:780 tbl_structure.php:540 #, fuzzy, php-format #| msgid "Add %s field(s)" msgid "Add %s column(s)" msgstr "%s क्षेत्र जोडें" -#: libraries/tbl_properties.inc.php:784 tbl_structure.php:536 +#: libraries/tbl_properties.inc.php:784 tbl_structure.php:534 #, fuzzy #| msgid "You have to choose at least one column to display" msgid "You have to add at least one column." @@ -3874,8 +3915,8 @@ msgstr "" msgid "Protocol version" msgstr "" -#: main.php:189 server_privileges.php:1389 server_privileges.php:1536 -#: server_privileges.php:1650 server_privileges.php:2068 +#: main.php:189 server_privileges.php:1406 server_privileges.php:1556 +#: server_privileges.php:1670 server_privileges.php:2089 #: server_processlist.php:54 msgid "User" msgstr "यूसर" @@ -4299,111 +4340,111 @@ msgstr "" msgid "View dump (schema) of databases" msgstr "" -#: server_privileges.php:24 server_privileges.php:266 +#: server_privileges.php:25 server_privileges.php:267 msgid "Includes all privileges except GRANT." msgstr "" -#: server_privileges.php:25 server_privileges.php:192 -#: server_privileges.php:515 +#: server_privileges.php:26 server_privileges.php:193 +#: server_privileges.php:516 msgid "Allows altering the structure of existing tables." msgstr "" -#: server_privileges.php:26 server_privileges.php:208 -#: server_privileges.php:521 +#: server_privileges.php:27 server_privileges.php:209 +#: server_privileges.php:522 msgid "Allows altering and dropping stored routines." msgstr "" -#: server_privileges.php:27 server_privileges.php:184 -#: server_privileges.php:514 +#: server_privileges.php:28 server_privileges.php:185 +#: server_privileges.php:515 msgid "Allows creating new databases and tables." msgstr "" -#: server_privileges.php:28 server_privileges.php:207 -#: server_privileges.php:520 +#: server_privileges.php:29 server_privileges.php:208 +#: server_privileges.php:521 msgid "Allows creating stored routines." msgstr "" -#: server_privileges.php:29 server_privileges.php:514 +#: server_privileges.php:30 server_privileges.php:515 msgid "Allows creating new tables." msgstr "" -#: server_privileges.php:30 server_privileges.php:195 -#: server_privileges.php:518 +#: server_privileges.php:31 server_privileges.php:196 +#: server_privileges.php:519 msgid "Allows creating temporary tables." msgstr "" -#: server_privileges.php:31 server_privileges.php:209 -#: server_privileges.php:554 +#: server_privileges.php:32 server_privileges.php:210 +#: server_privileges.php:555 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 +#: server_privileges.php:33 server_privileges.php:200 +#: server_privileges.php:204 server_privileges.php:527 +#: server_privileges.php:531 msgid "Allows creating new views." msgstr "" -#: server_privileges.php:33 server_privileges.php:183 -#: server_privileges.php:506 +#: server_privileges.php:34 server_privileges.php:184 +#: server_privileges.php:507 msgid "Allows deleting data." msgstr "" -#: server_privileges.php:34 server_privileges.php:185 -#: server_privileges.php:517 +#: server_privileges.php:35 server_privileges.php:186 +#: server_privileges.php:518 msgid "Allows dropping databases and tables." msgstr "" -#: server_privileges.php:35 server_privileges.php:517 +#: server_privileges.php:36 server_privileges.php:518 msgid "Allows dropping tables." msgstr "" -#: server_privileges.php:36 server_privileges.php:200 -#: server_privileges.php:534 +#: server_privileges.php:37 server_privileges.php:201 +#: server_privileges.php:535 msgid "Allows to set up events for the event scheduler" msgstr "" -#: server_privileges.php:37 server_privileges.php:210 -#: server_privileges.php:522 +#: server_privileges.php:38 server_privileges.php:211 +#: server_privileges.php:523 msgid "Allows executing stored routines." msgstr "" -#: server_privileges.php:38 server_privileges.php:189 -#: server_privileges.php:509 +#: server_privileges.php:39 server_privileges.php:190 +#: server_privileges.php:510 msgid "Allows importing data from and exporting data into files." msgstr "" -#: server_privileges.php:39 server_privileges.php:540 +#: server_privileges.php:40 server_privileges.php:541 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" -#: server_privileges.php:40 server_privileges.php:191 -#: server_privileges.php:516 +#: server_privileges.php:41 server_privileges.php:192 +#: server_privileges.php:517 msgid "Allows creating and dropping indexes." msgstr "" -#: server_privileges.php:41 server_privileges.php:181 -#: server_privileges.php:442 server_privileges.php:504 +#: server_privileges.php:42 server_privileges.php:182 +#: server_privileges.php:443 server_privileges.php:505 msgid "Allows inserting and replacing data." msgstr "" -#: server_privileges.php:42 server_privileges.php:196 -#: server_privileges.php:549 +#: server_privileges.php:43 server_privileges.php:197 +#: server_privileges.php:550 msgid "Allows locking tables for the current thread." msgstr "" -#: server_privileges.php:43 server_privileges.php:646 -#: server_privileges.php:648 +#: server_privileges.php:44 server_privileges.php:647 +#: server_privileges.php:649 msgid "Limits the number of new connections the user may open per hour." msgstr "Limits the number of new connections the user may open per hour." -#: server_privileges.php:44 server_privileges.php:634 -#: server_privileges.php:636 +#: server_privileges.php:45 server_privileges.php:635 +#: server_privileges.php:637 msgid "Limits the number of queries the user may send to the server per hour." msgstr "Limits the number of queries the user may send to the server per hour." -#: server_privileges.php:45 server_privileges.php:640 -#: server_privileges.php:642 +#: server_privileges.php:46 server_privileges.php:641 +#: server_privileges.php:643 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -4411,214 +4452,214 @@ 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 +#: server_privileges.php:47 server_privileges.php:653 +#: server_privileges.php:655 msgid "Limits the number of simultaneous connections the user may have." msgstr "" -#: server_privileges.php:47 server_privileges.php:188 -#: server_privileges.php:544 +#: server_privileges.php:48 server_privileges.php:189 +#: server_privileges.php:545 msgid "Allows viewing processes of all users" msgstr "" -#: server_privileges.php:48 server_privileges.php:190 -#: server_privileges.php:448 server_privileges.php:550 +#: server_privileges.php:49 server_privileges.php:191 +#: server_privileges.php:449 server_privileges.php:551 msgid "Has no effect in this MySQL version." msgstr "" -#: server_privileges.php:49 server_privileges.php:186 -#: server_privileges.php:545 +#: server_privileges.php:50 server_privileges.php:187 +#: server_privileges.php:546 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" -#: server_privileges.php:50 server_privileges.php:198 -#: server_privileges.php:552 +#: server_privileges.php:51 server_privileges.php:199 +#: server_privileges.php:553 msgid "Allows the user to ask where the slaves / masters are." msgstr "" -#: server_privileges.php:51 server_privileges.php:197 -#: server_privileges.php:553 +#: server_privileges.php:52 server_privileges.php:198 +#: server_privileges.php:554 msgid "Needed for the replication slaves." msgstr "" -#: server_privileges.php:52 server_privileges.php:180 -#: server_privileges.php:439 server_privileges.php:503 +#: server_privileges.php:53 server_privileges.php:181 +#: server_privileges.php:440 server_privileges.php:504 msgid "Allows reading data." msgstr "" -#: server_privileges.php:53 server_privileges.php:193 -#: server_privileges.php:547 +#: server_privileges.php:54 server_privileges.php:194 +#: server_privileges.php:548 msgid "Gives access to the complete list of databases." msgstr "" -#: server_privileges.php:54 server_privileges.php:204 -#: server_privileges.php:206 server_privileges.php:519 +#: server_privileges.php:55 server_privileges.php:205 +#: server_privileges.php:207 server_privileges.php:520 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "" -#: server_privileges.php:55 server_privileges.php:187 -#: server_privileges.php:546 +#: server_privileges.php:56 server_privileges.php:188 +#: server_privileges.php:547 msgid "Allows shutting down the server." msgstr "" -#: server_privileges.php:56 server_privileges.php:194 -#: server_privileges.php:543 +#: server_privileges.php:57 server_privileges.php:195 +#: server_privileges.php:544 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " "killing threads of other users." msgstr "" -#: server_privileges.php:57 server_privileges.php:201 -#: server_privileges.php:535 +#: server_privileges.php:58 server_privileges.php:202 +#: server_privileges.php:536 msgid "Allows creating and dropping triggers" msgstr "" -#: server_privileges.php:58 server_privileges.php:182 -#: server_privileges.php:445 server_privileges.php:505 +#: server_privileges.php:59 server_privileges.php:183 +#: server_privileges.php:446 server_privileges.php:506 msgid "Allows changing data." msgstr "" -#: server_privileges.php:59 server_privileges.php:260 +#: server_privileges.php:60 server_privileges.php:261 msgid "No privileges." msgstr "" -#: server_privileges.php:302 server_privileges.php:303 +#: server_privileges.php:303 server_privileges.php:304 #, fuzzy #| msgid "No" msgctxt "None privileges" msgid "None" msgstr "नहीं" -#: server_privileges.php:431 server_privileges.php:566 -#: server_privileges.php:1718 server_privileges.php:1724 +#: server_privileges.php:432 server_privileges.php:567 +#: server_privileges.php:1738 server_privileges.php:1744 msgid "Table-specific privileges" msgstr " केवल टेबल के प्रिविलेज" -#: server_privileges.php:432 server_privileges.php:574 -#: server_privileges.php:1540 +#: server_privileges.php:433 server_privileges.php:575 +#: server_privileges.php:1560 msgid " Note: MySQL privilege names are expressed in English " msgstr " नोट: MySQL प्रिविलेज नामों को अंग्रेजी मे लिखा गया है " -#: server_privileges.php:563 server_privileges.php:1539 +#: server_privileges.php:564 server_privileges.php:1559 msgid "Global privileges" msgstr "" -#: server_privileges.php:565 server_privileges.php:1718 +#: server_privileges.php:566 server_privileges.php:1738 msgid "Database-specific privileges" msgstr " केवल डाटाबेस के प्रिविलेज" -#: server_privileges.php:610 +#: server_privileges.php:611 msgid "Administration" msgstr "एडमिनिस्ट्रेशन" -#: server_privileges.php:630 +#: server_privileges.php:631 msgid "Resource limits" msgstr "" -#: server_privileges.php:631 +#: server_privileges.php:632 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "" -#: server_privileges.php:708 +#: server_privileges.php:709 msgid "Login Information" msgstr "" -#: server_privileges.php:802 +#: server_privileges.php:803 msgid "Do not change the password" msgstr "पासवर्ड मत बदलिये" -#: server_privileges.php:843 server_privileges.php:2205 +#: server_privileges.php:844 server_privileges.php:2226 #, fuzzy #| msgid "No user(s) found." msgid "No user found." msgstr "कोई यूसर नहीं।" -#: server_privileges.php:887 +#: server_privileges.php:888 #, php-format msgid "The user %s already exists!" msgstr "" -#: server_privileges.php:970 +#: server_privileges.php:971 msgid "You have added a new user." msgstr "आपने नया यूसर बना लिया" -#: server_privileges.php:1191 +#: server_privileges.php:1196 #, php-format msgid "You have updated the privileges for %s." msgstr "आपने %s के प्रिविलेज अपडेट कर दिया ।" -#: server_privileges.php:1215 +#: server_privileges.php:1220 #, php-format msgid "You have revoked the privileges for %s" msgstr "आपने %s के privileges वापस ले लिया " -#: server_privileges.php:1251 +#: server_privileges.php:1256 #, php-format msgid "The password for %s was changed successfully." msgstr "" -#: server_privileges.php:1271 +#: server_privileges.php:1276 #, php-format msgid "Deleting %s" msgstr "" -#: server_privileges.php:1282 +#: server_privileges.php:1287 msgid "No users selected for deleting!" msgstr "" -#: server_privileges.php:1285 +#: server_privileges.php:1290 msgid "Reloading the privileges" msgstr "" -#: server_privileges.php:1300 +#: server_privileges.php:1305 msgid "The selected users have been deleted successfully." msgstr "" -#: server_privileges.php:1335 +#: server_privileges.php:1344 msgid "The privileges were reloaded successfully." msgstr "" -#: server_privileges.php:1363 server_privileges.php:1649 +#: server_privileges.php:1380 server_privileges.php:1669 msgid "Edit Privileges" msgstr " प्रिविलेज एडिट करें" -#: server_privileges.php:1372 +#: server_privileges.php:1389 msgid "Revoke" msgstr "वापस लो" -#: server_privileges.php:1404 +#: server_privileges.php:1424 msgid "User overview" msgstr "" -#: server_privileges.php:1541 server_privileges.php:1723 -#: server_privileges.php:2072 +#: server_privileges.php:1561 server_privileges.php:1743 +#: server_privileges.php:2093 msgid "Grant" msgstr "" -#: server_privileges.php:1560 server_privileges.php:2162 +#: server_privileges.php:1580 server_privileges.php:2183 msgid "Any" msgstr "कोई" -#: server_privileges.php:1609 server_privileges.php:1633 -#: server_privileges.php:2027 server_privileges.php:2216 +#: server_privileges.php:1629 server_privileges.php:1653 +#: server_privileges.php:2048 server_privileges.php:2237 msgid "Add a new User" msgstr "नया यूसर जोडें" -#: server_privileges.php:1614 +#: server_privileges.php:1634 msgid "Remove selected users" msgstr "" -#: server_privileges.php:1617 +#: server_privileges.php:1637 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 +#: server_privileges.php:1638 server_privileges.php:1639 +#: server_privileges.php:1640 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:1636 +#: server_privileges.php:1656 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -4627,91 +4668,91 @@ msgid "" "sreload the privileges%s before you continue." msgstr "" -#: server_privileges.php:1684 +#: server_privileges.php:1704 msgid "The selected user was not found in the privilege table." msgstr "" -#: server_privileges.php:1724 +#: server_privileges.php:1744 msgid "Column-specific privileges" msgstr " केवल कोलम के प्रिविलेज" -#: server_privileges.php:1925 +#: server_privileges.php:1945 msgid "Add privileges on the following database" msgstr "इन डाटाबेसों के लिये विशेषाधिकार जोडें" -#: server_privileges.php:1943 +#: server_privileges.php:1963 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" -#: server_privileges.php:1946 +#: server_privileges.php:1966 msgid "Add privileges on the following table" msgstr "इन टेबल के लिये विशेषाधिकार जोडें" -#: server_privileges.php:2003 +#: server_privileges.php:2023 msgid "Change Login Information / Copy User" msgstr "" -#: server_privileges.php:2006 +#: server_privileges.php:2026 msgid "Create a new user with the same privileges and ..." msgstr "" -#: server_privileges.php:2008 +#: server_privileges.php:2028 msgid "... keep the old one." msgstr "" -#: server_privileges.php:2009 +#: server_privileges.php:2029 msgid " ... delete the old one from the user tables." msgstr "" -#: server_privileges.php:2010 +#: server_privileges.php:2030 msgid "" " ... revoke all active privileges from the old one and delete it afterwards." msgstr "" -#: server_privileges.php:2011 +#: server_privileges.php:2031 msgid "" " ... delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" -#: server_privileges.php:2033 +#: server_privileges.php:2054 msgid "Database for user" msgstr "" -#: server_privileges.php:2037 +#: server_privileges.php:2058 #, fuzzy #| msgid "No" msgctxt "Create none database for user" msgid "None" msgstr "नहीं" -#: server_privileges.php:2038 +#: server_privileges.php:2059 msgid "Create database with same name and grant all privileges" msgstr "" -#: server_privileges.php:2039 +#: server_privileges.php:2060 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "" -#: server_privileges.php:2042 +#: server_privileges.php:2063 #, php-format msgid "Grant all privileges on database "%s"" msgstr "" -#: server_privileges.php:2065 +#: server_privileges.php:2086 #, php-format msgid "Users having access to "%s"" msgstr "" -#: server_privileges.php:2173 +#: server_privileges.php:2194 msgid "global" msgstr "" -#: server_privileges.php:2175 +#: server_privileges.php:2196 msgid "database-specific" msgstr "" -#: server_privileges.php:2177 +#: server_privileges.php:2198 msgid "wildcard" msgstr "" @@ -7353,6 +7394,10 @@ msgstr "" msgid "Show insert query" msgstr "" +#: tbl_change.php:1143 +msgid "and then" +msgstr "और फिर" + #: tbl_change.php:1147 msgid "Go back to previous page" msgstr "पिछले पृष्ट पर वापस जाएँ" @@ -7431,7 +7476,7 @@ msgstr "" msgid "Add to index  %s column(s)" msgstr "सूचकांक में जोडें  %s column(s)" -#: tbl_indexes.php:256 tbl_structure.php:589 tbl_structure.php:600 +#: tbl_indexes.php:256 tbl_structure.php:587 tbl_structure.php:598 msgid "Column count has to be larger than zero." msgstr "" @@ -7545,39 +7590,39 @@ msgstr "" msgid "Show tables" msgstr " टेबल दिखाओ" -#: tbl_printview.php:310 tbl_structure.php:656 +#: tbl_printview.php:310 tbl_structure.php:654 msgid "Space usage" msgstr "" -#: tbl_printview.php:314 tbl_structure.php:660 +#: tbl_printview.php:314 tbl_structure.php:658 msgid "Usage" msgstr "उपयोग" -#: tbl_printview.php:341 tbl_structure.php:687 +#: tbl_printview.php:341 tbl_structure.php:685 msgid "Effective" msgstr " वास्तविक" -#: tbl_printview.php:366 tbl_structure.php:725 +#: tbl_printview.php:366 tbl_structure.php:723 msgid "Row Statistics" msgstr "" -#: tbl_printview.php:369 tbl_structure.php:728 +#: tbl_printview.php:369 tbl_structure.php:726 msgid "Statements" msgstr "" -#: tbl_printview.php:380 tbl_structure.php:740 +#: tbl_printview.php:380 tbl_structure.php:738 msgid "static" msgstr "" -#: tbl_printview.php:382 tbl_structure.php:742 +#: tbl_printview.php:382 tbl_structure.php:740 msgid "dynamic" msgstr "" -#: tbl_printview.php:404 tbl_structure.php:785 +#: tbl_printview.php:404 tbl_structure.php:783 msgid "Row length" msgstr " रौ की लंबाई" -#: tbl_printview.php:414 tbl_structure.php:793 +#: tbl_printview.php:414 tbl_structure.php:791 msgid " Row size " msgstr "" @@ -7645,50 +7690,50 @@ msgstr "नहीं" msgid "Column %s has been dropped" msgstr " टेबल %s को रद्द किया गया है." -#: tbl_structure.php:385 +#: tbl_structure.php:384 #, php-format msgid "A primary key has been added on %s" msgstr " %s पर एक प्राईमरी की जड़ी गयी है" -#: tbl_structure.php:400 tbl_structure.php:414 tbl_structure.php:428 +#: tbl_structure.php:398 tbl_structure.php:412 tbl_structure.php:426 #, php-format msgid "An index has been added on %s" msgstr "%s पर एक सूचकांक जोड़ा गया है" -#: tbl_structure.php:506 tbl_structure.php:508 +#: tbl_structure.php:504 tbl_structure.php:506 msgid "Relation view" msgstr "" -#: tbl_structure.php:515 tbl_structure.php:517 +#: tbl_structure.php:513 tbl_structure.php:515 msgid "Propose table structure" msgstr "" -#: tbl_structure.php:540 +#: tbl_structure.php:538 #, fuzzy #| msgid "Add %s field(s)" msgid "Add column" msgstr "%s क्षेत्र जोडें" -#: tbl_structure.php:554 +#: tbl_structure.php:552 msgid "At End of Table" msgstr "टेबल के आखिर में" -#: tbl_structure.php:555 +#: tbl_structure.php:553 msgid "At Beginning of Table" msgstr "टेबल के शुरू में" -#: tbl_structure.php:556 +#: tbl_structure.php:554 #, php-format msgid "After %s" msgstr "%s के बाद" -#: tbl_structure.php:594 +#: tbl_structure.php:592 #, fuzzy, php-format #| msgid "Create an index on %s columns" msgid "Create an index on  %s columns" msgstr "  %s  कोलम पर इन्डेक्स बनाऐं " -#: tbl_structure.php:756 +#: tbl_structure.php:754 msgid "partitioned" msgstr "" diff --git a/po/hr.po b/po/hr.po index 0a402e1de..29a74b208 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-13 09:03-0400\n" +"POT-Creation-Date: 2010-06-22 00:55+0530\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:1514 +#: libraries/display_tbl.lib.php:417 server_privileges.php:1534 msgid "Show all" msgstr "Prikaži sve" -#: browse_foreigners.php:82 libraries/common.lib.php:2313 +#: browse_foreigners.php:82 libraries/common.lib.php:2317 #: 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,18 +37,18 @@ 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:2831 -#: libraries/common.lib.php:2838 libraries/db_links.inc.php:75 +#: db_structure.php:106 libraries/common.lib.php:2835 +#: libraries/common.lib.php:2842 libraries/db_links.inc.php:75 #: libraries/tbl_links.inc.php:63 msgid "Search" msgstr "Traži" -#: browse_foreigners.php:153 db_operations.php:385 db_operations.php:429 -#: db_operations.php:499 db_operations.php:609 db_search.php:362 -#: db_structure.php:567 js/messages.php:48 libraries/Config.class.php:1046 +#: browse_foreigners.php:153 db_operations.php:394 db_operations.php:438 +#: db_operations.php:508 db_operations.php:618 db_search.php:362 +#: db_structure.php:565 js/messages.php:53 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:1335 libraries/common.lib.php:2288 +#: libraries/common.lib.php:1335 libraries/common.lib.php:2292 #: 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,15 +59,15 @@ 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:664 server_privileges.php:1624 -#: server_privileges.php:1971 server_privileges.php:2018 -#: server_privileges.php:2057 server_replication.php:235 +#: server_privileges.php:665 server_privileges.php:1644 +#: server_privileges.php:1991 server_privileges.php:2038 +#: server_privileges.php:2078 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 #: tbl_operations.php:302 tbl_operations.php:499 tbl_operations.php:561 -#: tbl_operations.php:681 tbl_select.php:327 tbl_structure.php:562 -#: tbl_structure.php:597 tbl_tracking.php:395 tbl_tracking.php:512 +#: tbl_operations.php:681 tbl_select.php:327 tbl_structure.php:560 +#: tbl_structure.php:595 tbl_tracking.php:395 tbl_tracking.php:512 #: view_create.php:182 view_operations.php:101 msgid "Go" msgstr "Kreni" @@ -93,7 +93,7 @@ msgstr "Upotrijebi ovu vrijednost" msgid "Database %1$s has been created." msgstr "Baza podataka %1$s uspješno je izrađena." -#: db_datadict.php:49 db_operations.php:378 +#: db_datadict.php:49 db_operations.php:387 msgid "Database comment: " msgstr "Komentar baze podataka: " @@ -120,10 +120,10 @@ 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:2070 +#: pdf_schema.php:1263 pdf_schema.php:1284 server_privileges.php:2091 #: 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 +#: tbl_structure.php:657 tbl_tracking.php:274 tbl_tracking.php:321 msgid "Type" msgstr "Vrsta" @@ -136,7 +136,7 @@ msgstr "Vrsta" msgid "Null" msgstr "Null" -#: db_datadict.php:178 db_structure.php:501 libraries/export/htmlword.php:247 +#: db_datadict.php:178 db_structure.php:499 libraries/export/htmlword.php:247 #: libraries/export/latex.php:360 libraries/export/odt.php:303 #: libraries/export/texytext.php:236 libraries/tbl_properties.inc.php:106 #: pdf_schema.php:1266 pdf_schema.php:1287 tbl_printview.php:146 @@ -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: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 +#: pdf_schema.php:1344 server_privileges.php:1588 server_privileges.php:1599 +#: server_privileges.php:1909 server_privileges.php:1914 +#: server_privileges.php:2208 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:1565 -#: server_privileges.php:1579 server_privileges.php:1889 -#: server_privileges.php:1892 server_privileges.php:2187 sql.php:193 +#: server_databases.php:64 server_privileges.php:1585 +#: server_privileges.php:1599 server_privileges.php:1909 +#: server_privileges.php:1912 server_privileges.php:2208 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" @@ -209,127 +209,123 @@ msgstr "Odaberi sve" msgid "Unselect All" msgstr "Ukloni sav odabir" -#: db_operations.php:38 tbl_create.php:54 +#: db_operations.php:43 tbl_create.php:54 msgid "The database name is empty!" msgstr "Naziv baze podataka je prazan!" -#: db_operations.php:236 +#: db_operations.php:241 #, php-format msgid "Database %s has been renamed to %s" msgstr "Baza podataka %s preimenovana je u %s" -#: db_operations.php:240 +#: db_operations.php:245 #, php-format msgid "Database %s has been copied to %s" msgstr "Baza podataka %s kopirana je u %s" -#: db_operations.php:412 +#: db_operations.php:421 msgid "Rename database to" msgstr "Preimenuj bazu podataka u" -#: db_operations.php:417 server_processlist.php:57 +#: db_operations.php:426 server_processlist.php:57 msgid "Command" msgstr "Naredba" -#: db_operations.php:429 tbl_change.php:1143 -msgid "and then" -msgstr "i potom" - -#: db_operations.php:455 +#: db_operations.php:464 msgid "Copy database to" msgstr "Kopiraj bazu podataka u" -#: db_operations.php:462 tbl_operations.php:528 tbl_tracking.php:388 +#: db_operations.php:471 tbl_operations.php:528 tbl_tracking.php:388 msgid "Structure only" msgstr "Samo strukturu" -#: db_operations.php:463 tbl_operations.php:529 tbl_tracking.php:390 +#: db_operations.php:472 tbl_operations.php:529 tbl_tracking.php:390 msgid "Structure and data" msgstr "Strukturu i podatke" -#: db_operations.php:464 tbl_operations.php:530 tbl_tracking.php:389 +#: db_operations.php:473 tbl_operations.php:530 tbl_tracking.php:389 msgid "Data only" msgstr "Samo podatke" -#: db_operations.php:472 +#: db_operations.php:481 msgid "CREATE DATABASE before copying" msgstr "Prije kopiranja izradi bazu podataka (CREATE DATABASE)" -#: db_operations.php:475 libraries/export/sql.php:52 +#: db_operations.php:484 libraries/export/sql.php:52 #: libraries/export/sql.php:74 libraries/export/sql.php:76 #: libraries/export/sql.php:82 tbl_operations.php:536 #, php-format msgid "Add %s" msgstr "Dodaj %s" -#: db_operations.php:479 libraries/export/sql.php:78 tbl_operations.php:299 +#: db_operations.php:488 libraries/export/sql.php:78 tbl_operations.php:299 #: tbl_operations.php:538 msgid "Add AUTO_INCREMENT value" msgstr "Dodaj vrijednost AUTO_INCREMENT" -#: db_operations.php:483 tbl_operations.php:545 +#: db_operations.php:492 tbl_operations.php:545 msgid "Add constraints" msgstr "Dodaj prisile" -#: db_operations.php:496 +#: db_operations.php:505 msgid "Switch to copied database" msgstr "Prebaci se na kopiranu bazu podataka" -#: db_operations.php:537 +#: db_operations.php:546 msgid "BLOB Repository" msgstr "" -#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1352 -#: libraries/server_links.inc.php:49 server_processlist.php:59 +#: db_operations.php:549 db_tracking.php:76 libraries/common.lib.php:1352 +#: libraries/server_links.inc.php:50 server_processlist.php:59 #: tbl_tracking.php:596 test/theme.php:101 msgid "Status" msgstr "Stanje" -#: db_operations.php:548 +#: db_operations.php:557 #, fuzzy #| msgid "Enabled" msgctxt "BLOB repository" msgid "Enabled" msgstr "Omogućeno" -#: db_operations.php:552 +#: db_operations.php:561 #, fuzzy msgid "Disable" msgstr "Onemogućeno" -#: db_operations.php:562 +#: db_operations.php:571 msgid "Damaged" msgstr "" -#: db_operations.php:566 +#: db_operations.php:575 #, fuzzy #| msgid "Repair" msgctxt "BLOB repository" msgid "Repair" msgstr "Popravi" -#: db_operations.php:574 +#: db_operations.php:583 #, fuzzy #| msgid "Disabled" msgctxt "BLOB repository" msgid "Disabled" msgstr "Onemogućeno" -#: db_operations.php:578 +#: db_operations.php:587 #, fuzzy msgid "Enable" msgstr "Omogućeno" -#: db_operations.php:602 libraries/Index.class.php:448 +#: db_operations.php:611 libraries/Index.class.php:448 #: libraries/db_structure.lib.php:62 libraries/mysql_charsets.lib.php:107 #: libraries/tbl_properties.inc.php:107 libraries/tbl_properties.inc.php:730 #: server_collations.php:54 server_collations.php:66 server_databases.php:111 #: tbl_operations.php:363 tbl_select.php:137 tbl_structure.php:179 -#: tbl_structure.php:767 tbl_tracking.php:275 tbl_tracking.php:326 +#: tbl_structure.php:765 tbl_tracking.php:275 tbl_tracking.php:326 msgid "Collation" msgstr "Uspoređivanje" -#: db_operations.php:615 main.php:316 pdf_schema.php:34 +#: db_operations.php:624 main.php:316 pdf_schema.php:34 #, php-format msgid "" "The additional features for working with linked tables have been " @@ -338,14 +334,14 @@ msgstr "" "Dodatne osobine za rad s relacijski tablicama su isključene. Kako biste " "saznali razloge, pritisnite %sovdje%s." -#: db_operations.php:648 +#: db_operations.php:657 msgid "Edit PDF Pages" 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:1665 -#: server_privileges.php:1721 server_privileges.php:1985 +#: libraries/header.inc.php:130 pdf_pages.php:424 server_privileges.php:1685 +#: server_privileges.php:1741 server_privileges.php:2005 #: server_synchronize.php:423 server_synchronize.php:866 tbl_tracking.php:592 #: test/theme.php:75 msgid "Table" @@ -354,7 +350,7 @@ msgstr "Tablica" #: db_printview.php:105 libraries/db_structure.lib.php:56 #: libraries/header_printview.inc.php:63 libraries/import.lib.php:146 #: navigation.php:638 navigation.php:660 server_databases.php:122 -#: tbl_printview.php:394 tbl_structure.php:365 tbl_structure.php:777 +#: tbl_printview.php:394 tbl_structure.php:365 tbl_structure.php:775 msgid "Rows" msgstr "Redaka" @@ -362,30 +358,30 @@ msgstr "Redaka" msgid "Size" msgstr "Veličina" -#: db_printview.php:162 db_structure.php:457 libraries/export/sql.php:559 +#: db_printview.php:162 db_structure.php:455 libraries/export/sql.php:559 #: libraries/export/sql.php:899 msgid "in use" msgstr "u upotrebi" #: db_printview.php:187 libraries/db_info.inc.php:88 #: libraries/export/sql.php:514 pdf_schema.php:1241 tbl_printview.php:434 -#: tbl_structure.php:809 +#: tbl_structure.php:807 msgid "Creation" msgstr "Izrada" #: db_printview.php:196 libraries/db_info.inc.php:93 #: libraries/export/sql.php:519 pdf_schema.php:1246 tbl_printview.php:444 -#: tbl_structure.php:817 +#: tbl_structure.php:815 msgid "Last update" msgstr "Posljednje ažuriranje" #: db_printview.php:205 libraries/db_info.inc.php:98 #: libraries/export/sql.php:524 pdf_schema.php:1251 tbl_printview.php:454 -#: tbl_structure.php:825 +#: tbl_structure.php:823 msgid "Last check" msgstr "Posljednja provjera" -#: db_printview.php:222 db_structure.php:480 +#: db_printview.php:222 db_structure.php:478 #, fuzzy, php-format #| msgid "%s table(s)" msgid "%s table" @@ -446,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:297 tbl_change.php:1031 tbl_indexes.php:250 +#: server_privileges.php:298 tbl_change.php:1031 tbl_indexes.php:250 #: tbl_select.php:288 msgid "Or" msgstr "Ili" @@ -519,9 +515,9 @@ 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:2833 +#: db_structure.php:105 libraries/common.lib.php:2837 #: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50 -#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:467 +#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:465 msgid "Browse" msgstr "Pretraživanje" @@ -566,36 +562,36 @@ 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:2832 libraries/sql_query_form.lib.php:334 +#: libraries/common.lib.php:2836 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:2829 libraries/common.lib.php:2836 +#: libraries/common.lib.php:2833 libraries/common.lib.php:2840 #: 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:1106 #: libraries/tbl_links.inc.php:56 pmd_general.php:134 -#: server_privileges.php:593 server_replication.php:315 tbl_tracking.php:269 +#: server_privileges.php:594 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:1656 +#: db_structure.php:543 db_structure.php:544 db_tracking.php:91 +#: libraries/Index.class.php:483 libraries/common.lib.php:1657 #: 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 -#: tbl_structure.php:152 tbl_structure.php:471 +#: tbl_structure.php:152 tbl_structure.php:469 msgid "Drop" 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:1655 +#: db_structure.php:541 db_structure.php:542 libraries/common.lib.php:1656 #: libraries/mult_submits.inc.php:39 libraries/tbl_links.inc.php:105 msgid "Empty" msgstr "Isprazni" @@ -605,25 +601,25 @@ msgstr "Isprazni" msgid "Table %s has been emptied" msgstr "Tablica %s je očišćena" -#: db_structure.php:326 libraries/tbl_links.inc.php:133 +#: db_structure.php:325 libraries/tbl_links.inc.php:133 #, php-format msgid "View %s has been dropped" msgstr "Index %s je ispušten" -#: db_structure.php:326 libraries/tbl_links.inc.php:133 +#: db_structure.php:325 libraries/tbl_links.inc.php:133 #, php-format msgid "Table %s has been dropped" msgstr "Tablica %s je odbačen" -#: db_structure.php:333 +#: db_structure.php:332 msgid "Tracking is active." msgstr "" -#: db_structure.php:335 +#: db_structure.php:334 msgid "Tracking is not active." msgstr "" -#: db_structure.php:420 libraries/display_tbl.lib.php:1944 +#: db_structure.php:418 libraries/display_tbl.lib.php:1944 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation%" @@ -631,86 +627,86 @@ msgid "" msgstr "" "Ovaj prikaz sadrži najmanje ovoliko redaka. Proučite %sdokumentaciju%s." -#: db_structure.php:434 db_structure.php:448 libraries/header.inc.php:126 +#: db_structure.php:432 db_structure.php:446 libraries/header.inc.php:130 #: libraries/tbl_info.inc.php:66 tbl_structure.php:185 test/theme.php:74 msgid "View" msgstr "Prikaz" -#: db_structure.php:485 libraries/db_structure.lib.php:49 -#: libraries/server_links.inc.php:70 server_replication.php:33 +#: db_structure.php:483 libraries/db_structure.lib.php:49 +#: libraries/server_links.inc.php:71 server_replication.php:33 #: server_replication.php:164 server_status.php:369 msgid "Replication" msgstr "Replikacija" -#: db_structure.php:489 +#: db_structure.php:487 msgid "Sum" msgstr "Zbroj" -#: db_structure.php:496 libraries/StorageEngine.class.php:356 +#: db_structure.php:494 libraries/StorageEngine.class.php:356 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "%s je zadani pogon pohranjivanja na ovom MySQL poslužitelju." -#: db_structure.php:524 db_structure.php:541 db_structure.php:542 +#: db_structure.php:522 db_structure.php:539 db_structure.php:540 #: 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:1596 tbl_structure.php:455 -#: tbl_structure.php:464 +#: server_databases.php:351 server_privileges.php:1616 tbl_structure.php:453 +#: tbl_structure.php:462 msgid "With selected:" msgstr "S odabirom:" -#: db_structure.php:527 libraries/display_tbl.lib.php:2076 -#: server_databases.php:348 server_privileges.php:569 -#: server_privileges.php:1599 tbl_structure.php:458 +#: db_structure.php:525 libraries/display_tbl.lib.php:2076 +#: server_databases.php:348 server_privileges.php:570 +#: server_privileges.php:1619 tbl_structure.php:456 msgid "Check All" msgstr "Označi sve" -#: db_structure.php:531 libraries/display_tbl.lib.php:2077 +#: db_structure.php:529 libraries/display_tbl.lib.php:2077 #: libraries/replication_gui.lib.php:33 server_databases.php:350 -#: server_privileges.php:572 server_privileges.php:1603 tbl_structure.php:462 +#: server_privileges.php:573 server_privileges.php:1623 tbl_structure.php:460 msgid "Uncheck All" msgstr "Ukloni sve oznake" -#: db_structure.php:536 +#: db_structure.php:534 msgid "Check tables having overhead" msgstr "Provjeri za prepunjene tablice" -#: db_structure.php:547 db_structure.php:548 db_structure.php:599 +#: db_structure.php:545 db_structure.php:546 db_structure.php:597 #: libraries/display_tbl.lib.php:2180 libraries/mult_submits.inc.php:28 -#: tbl_structure.php:492 tbl_structure.php:494 +#: tbl_structure.php:490 tbl_structure.php:492 msgid "Print view" msgstr "Prikaz ispisa" -#: db_structure.php:549 db_structure.php:550 libraries/mult_submits.inc.php:42 +#: db_structure.php:547 db_structure.php:548 libraries/mult_submits.inc.php:42 #: tbl_operations.php:581 msgid "Check table" msgstr "Provjeri tablicu" -#: db_structure.php:551 db_structure.php:552 libraries/mult_submits.inc.php:47 -#: tbl_operations.php:621 tbl_structure.php:709 tbl_structure.php:711 +#: db_structure.php:549 db_structure.php:550 libraries/mult_submits.inc.php:47 +#: tbl_operations.php:621 tbl_structure.php:707 tbl_structure.php:709 msgid "Optimize table" msgstr "Optimiziraj tablicu" -#: db_structure.php:553 db_structure.php:554 libraries/mult_submits.inc.php:52 +#: db_structure.php:551 db_structure.php:552 libraries/mult_submits.inc.php:52 #: tbl_operations.php:611 msgid "Repair table" msgstr "Popravi tablicu" -#: db_structure.php:555 db_structure.php:556 libraries/mult_submits.inc.php:57 +#: db_structure.php:553 db_structure.php:554 libraries/mult_submits.inc.php:57 #: tbl_operations.php:601 msgid "Analyze table" msgstr "Analiziraj tablicu" -#: db_structure.php:557 db_structure.php:558 libraries/db_links.inc.php:71 +#: db_structure.php:555 db_structure.php:556 libraries/db_links.inc.php:71 #: 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:1380 +#: libraries/server_links.inc.php:85 libraries/tbl_links.inc.php:82 +#: pmd_pdf.php:84 pmd_pdf.php:109 server_privileges.php:1397 #: setup/frames/menu.inc.php:22 tbl_row_action.php:59 msgid "Export" msgstr "Izvoz" -#: db_structure.php:606 libraries/display_pdf_schema.lib.php:44 +#: db_structure.php:604 libraries/display_pdf_schema.lib.php:44 msgid "Data Dictionary" msgstr "Rječnik podataka" @@ -722,10 +718,10 @@ msgstr "Provjeri tablicu" #: db_tracking.php:71 libraries/export/htmlword.php:86 #: libraries/export/latex.php:148 libraries/export/odt.php:113 #: libraries/export/sql.php:342 libraries/export/texytext.php:84 -#: libraries/export/xml.php:255 libraries/header.inc.php:106 +#: libraries/export/xml.php:255 libraries/header.inc.php:110 #: libraries/header_printview.inc.php:58 server_databases.php:169 -#: server_privileges.php:1660 server_privileges.php:1721 -#: server_privileges.php:1979 server_processlist.php:56 +#: server_privileges.php:1680 server_privileges.php:1741 +#: server_privileges.php:1999 server_processlist.php:56 #: server_synchronize.php:1179 server_synchronize.php:1183 #: tbl_tracking.php:591 test/theme.php:65 msgid "Database" @@ -747,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:1542 server_privileges.php:1725 -#: server_privileges.php:2073 tbl_structure.php:187 +#: server_privileges.php:1562 server_privileges.php:1745 +#: server_privileges.php:2094 tbl_structure.php:187 msgid "Action" msgstr "Aktivnost" @@ -785,8 +781,8 @@ msgstr "Samo strukturu" msgid "Untracked tables" msgstr "Provjeri tablicu" -#: db_tracking.php:172 db_tracking.php:174 tbl_structure.php:528 -#: tbl_structure.php:530 +#: db_tracking.php:172 db_tracking.php:174 tbl_structure.php:526 +#: tbl_structure.php:528 #, fuzzy msgid "Track table" msgstr "Provjeri tablicu" @@ -957,186 +953,233 @@ 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:1236 user_password.php:70 +#: js/messages.php:44 server_privileges.php:1241 user_password.php:70 msgid "The password is empty!" msgstr "Lozinka je prazna!" -#: js/messages.php:45 server_privileges.php:1234 user_password.php:73 +#: js/messages.php:45 server_privileges.php:1239 user_password.php:73 msgid "The passwords aren't the same!" msgstr "Lozinke se ne podudaraju!" -#: js/messages.php:49 pmd_general.php:342 pmd_general.php:379 +#: js/messages.php:46 +#, fuzzy +#| msgid "Add a new User" +msgid "Add a New User" +msgstr "Dodaj novog korisnika" + +#: js/messages.php:47 js/messages.php:54 pmd_general.php:342 +#: pmd_general.php:379 msgid "Cancel" msgstr "Odustani" -#: js/messages.php:52 pmd_save_pos.php:54 +#: js/messages.php:48 +#, fuzzy +msgid "Create User" +msgstr "Izradi relaciju" + +#: js/messages.php:49 +#, fuzzy +#| msgid "Reload privileges" +msgid "Reloading Privileges" +msgstr "Ponovno učitaj privilegije" + +#: js/messages.php:50 +#, fuzzy +#| msgid "Remove selected users" +msgid "Removing Selected Users" +msgstr "Ukloni odabrane korisnike" + +#: js/messages.php:57 +#, fuzzy +msgid "Loading" +msgstr "Lokalno" + +#: js/messages.php:58 +#, fuzzy +#| msgid "Processes" +msgid "Processing Request" +msgstr "Procesi" + +#: js/messages.php:59 +msgid "Error in Processing Request" +msgstr "" + +#: js/messages.php:60 +msgid "Dropping Column" +msgstr "" + +#: js/messages.php:61 +msgid "Adding Primary Key" +msgstr "" + +#: js/messages.php:64 pmd_save_pos.php:54 msgid "Modifications have been saved" msgstr "Izmjene su spremljene" -#: js/messages.php:53 pmd_relation_upd.php:49 +#: js/messages.php:65 pmd_relation_upd.php:49 msgid "Relation deleted" msgstr "Relacija je izbrisana" -#: js/messages.php:54 pmd_relation_new.php:64 +#: js/messages.php:66 pmd_relation_new.php:64 msgid "FOREIGN KEY relation added" msgstr "Dodana je relacija FOREIGN KEY" -#: js/messages.php:55 pmd_relation_new.php:86 +#: js/messages.php:67 pmd_relation_new.php:86 msgid "Internal relation added" msgstr "Dodane interne relacije" -#: js/messages.php:56 pmd_relation_new.php:63 pmd_relation_new.php:88 +#: js/messages.php:68 pmd_relation_new.php:63 pmd_relation_new.php:88 msgid "Error: Relation not added." msgstr "Pogreška: Relacija nije dodana." -#: js/messages.php:57 pmd_relation_new.php:31 +#: js/messages.php:69 pmd_relation_new.php:31 msgid "Error: relation already exists." msgstr "Pogreška: Relacija već postoji." -#: js/messages.php:58 +#: js/messages.php:70 msgid "Error saving coordinates for Designer." msgstr "Pogreška tijekom spremanja koordinata za Kreatora." -#: js/messages.php:59 libraries/relation.lib.php:107 +#: js/messages.php:71 libraries/relation.lib.php:107 #: libraries/relation.lib.php:119 msgid "General relation features" msgstr "Opće osobine relacija" -#: js/messages.php:59 libraries/relation.lib.php:101 +#: js/messages.php:71 libraries/relation.lib.php:101 #: libraries/relation.lib.php:108 msgid "Disabled" msgstr "Onemogućeno" -#: js/messages.php:60 +#: js/messages.php:72 msgid "Select referenced key" msgstr "Odaberite referentni ključ" -#: js/messages.php:61 +#: js/messages.php:73 msgid "Select Foreign Key" msgstr "Odaberite strani ključ" -#: js/messages.php:62 +#: js/messages.php:74 msgid "Please select the primary key or a unique key" msgstr "Odaberite primarni ključ ili jedinstveni ključ" -#: js/messages.php:63 pmd_general.php:77 tbl_relation.php:548 +#: js/messages.php:75 pmd_general.php:77 tbl_relation.php:548 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" msgstr "Odaberi polje za prikaz" #. l10n: Display text for calendar close link -#: js/messages.php:73 +#: js/messages.php:85 #, fuzzy msgid "Done" msgstr "Podaci" #. l10n: Display text for previous month link in calendar -#: js/messages.php:75 +#: js/messages.php:87 #, fuzzy #| msgid "Previous" msgid "Prev" msgstr "Prethodni" #. l10n: Display text for next month link in calendar -#: js/messages.php:77 libraries/common.lib.php:2353 -#: libraries/common.lib.php:2356 libraries/display_tbl.lib.php:338 +#: js/messages.php:89 libraries/common.lib.php:2357 +#: libraries/common.lib.php:2360 libraries/display_tbl.lib.php:338 #: server_binlog.php:205 server_binlog.php:207 tbl_printview.php:424 -#: tbl_structure.php:801 +#: tbl_structure.php:799 msgid "Next" msgstr "Sljedeće" #. l10n: Display text for current month link in calendar -#: js/messages.php:79 +#: js/messages.php:91 #, fuzzy #| msgid "Total" msgid "Today" msgstr "Ukupno" -#: js/messages.php:82 +#: js/messages.php:94 #, fuzzy #| msgid "Binary" msgid "January" msgstr "Binarno" -#: js/messages.php:83 +#: js/messages.php:95 msgid "February" msgstr "" -#: js/messages.php:84 +#: js/messages.php:96 #, fuzzy #| msgid "Mar" msgid "March" msgstr "Ožu" -#: js/messages.php:85 +#: js/messages.php:97 #, fuzzy #| msgid "Apr" msgid "April" msgstr "Tra" -#: js/messages.php:86 +#: js/messages.php:98 msgid "May" msgstr "Svi" -#: js/messages.php:87 +#: js/messages.php:99 #, fuzzy #| msgid "Jun" msgid "June" msgstr "Lip" -#: js/messages.php:88 +#: js/messages.php:100 #, fuzzy #| msgid "Jul" msgid "July" msgstr "Srp" -#: js/messages.php:89 +#: js/messages.php:101 #, fuzzy #| msgid "Aug" msgid "August" msgstr "Kol" -#: js/messages.php:90 +#: js/messages.php:102 msgid "September" msgstr "" -#: js/messages.php:91 +#: js/messages.php:103 #, fuzzy #| msgid "Oct" msgid "October" msgstr "Lis" -#: js/messages.php:92 +#: js/messages.php:104 msgid "November" msgstr "" -#: js/messages.php:93 +#: js/messages.php:105 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:97 libraries/common.lib.php:1557 +#: js/messages.php:109 libraries/common.lib.php:1557 msgid "Jan" msgstr "Sij" #. l10n: Short month name -#: js/messages.php:99 libraries/common.lib.php:1559 +#: js/messages.php:111 libraries/common.lib.php:1559 msgid "Feb" msgstr "Velj" #. l10n: Short month name -#: js/messages.php:101 libraries/common.lib.php:1561 +#: js/messages.php:113 libraries/common.lib.php:1561 msgid "Mar" msgstr "Ožu" #. l10n: Short month name -#: js/messages.php:103 libraries/common.lib.php:1563 +#: js/messages.php:115 libraries/common.lib.php:1563 msgid "Apr" msgstr "Tra" #. l10n: Short month name -#: js/messages.php:105 libraries/common.lib.php:1565 +#: js/messages.php:117 libraries/common.lib.php:1565 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1144,178 +1187,178 @@ msgid "May" msgstr "Svi" #. l10n: Short month name -#: js/messages.php:107 libraries/common.lib.php:1567 +#: js/messages.php:119 libraries/common.lib.php:1567 msgid "Jun" msgstr "Lip" #. l10n: Short month name -#: js/messages.php:109 libraries/common.lib.php:1569 +#: js/messages.php:121 libraries/common.lib.php:1569 msgid "Jul" msgstr "Srp" #. l10n: Short month name -#: js/messages.php:111 libraries/common.lib.php:1571 +#: js/messages.php:123 libraries/common.lib.php:1571 msgid "Aug" msgstr "Kol" #. l10n: Short month name -#: js/messages.php:113 libraries/common.lib.php:1573 +#: js/messages.php:125 libraries/common.lib.php:1573 msgid "Sep" msgstr "Ruj" #. l10n: Short month name -#: js/messages.php:115 libraries/common.lib.php:1575 +#: js/messages.php:127 libraries/common.lib.php:1575 msgid "Oct" msgstr "Lis" #. l10n: Short month name -#: js/messages.php:117 libraries/common.lib.php:1577 +#: js/messages.php:129 libraries/common.lib.php:1577 msgid "Nov" msgstr "Stu" #. l10n: Short month name -#: js/messages.php:119 libraries/common.lib.php:1579 +#: js/messages.php:131 libraries/common.lib.php:1579 msgid "Dec" msgstr "Pro" -#: js/messages.php:122 +#: js/messages.php:134 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "Ned" -#: js/messages.php:123 +#: js/messages.php:135 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "Pon" -#: js/messages.php:124 +#: js/messages.php:136 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "Uto" -#: js/messages.php:125 +#: js/messages.php:137 msgid "Wednesday" msgstr "" -#: js/messages.php:126 +#: js/messages.php:138 msgid "Thursday" msgstr "" -#: js/messages.php:127 +#: js/messages.php:139 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "Pet" -#: js/messages.php:128 +#: js/messages.php:140 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:132 libraries/common.lib.php:1582 +#: js/messages.php:144 libraries/common.lib.php:1582 msgid "Sun" msgstr "Ned" #. l10n: Short week day name -#: js/messages.php:134 libraries/common.lib.php:1584 +#: js/messages.php:146 libraries/common.lib.php:1584 msgid "Mon" msgstr "Pon" #. l10n: Short week day name -#: js/messages.php:136 libraries/common.lib.php:1586 +#: js/messages.php:148 libraries/common.lib.php:1586 msgid "Tue" msgstr "Uto" #. l10n: Short week day name -#: js/messages.php:138 libraries/common.lib.php:1588 +#: js/messages.php:150 libraries/common.lib.php:1588 msgid "Wed" msgstr "Sri" #. l10n: Short week day name -#: js/messages.php:140 libraries/common.lib.php:1590 +#: js/messages.php:152 libraries/common.lib.php:1590 msgid "Thu" msgstr "Čet" #. l10n: Short week day name -#: js/messages.php:142 libraries/common.lib.php:1592 +#: js/messages.php:154 libraries/common.lib.php:1592 msgid "Fri" msgstr "Pet" #. l10n: Short week day name -#: js/messages.php:144 libraries/common.lib.php:1594 +#: js/messages.php:156 libraries/common.lib.php:1594 msgid "Sat" msgstr "Sub" #. l10n: Minimal week day name -#: js/messages.php:148 +#: js/messages.php:160 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "Ned" #. l10n: Minimal week day name -#: js/messages.php:150 +#: js/messages.php:162 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "Pon" #. l10n: Minimal week day name -#: js/messages.php:152 +#: js/messages.php:164 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "Uto" #. l10n: Minimal week day name -#: js/messages.php:154 +#: js/messages.php:166 #, fuzzy #| msgid "Wed" msgid "We" msgstr "Sri" #. l10n: Minimal week day name -#: js/messages.php:156 +#: js/messages.php:168 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "Čet" #. l10n: Minimal week day name -#: js/messages.php:158 +#: js/messages.php:170 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "Pet" #. l10n: Minimal week day name -#: js/messages.php:160 +#: js/messages.php:172 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "Sub" #. l10n: Column header for week of the year in calendar -#: js/messages.php:162 +#: js/messages.php:174 #, fuzzy #| msgid "Wiki" msgid "Wk" msgstr "Wiki" -#: js/messages.php:164 +#: js/messages.php:176 msgid "Hour" msgstr "" -#: js/messages.php:165 +#: js/messages.php:177 #, fuzzy #| msgid "in use" msgid "Minute" msgstr "u upotrebi" -#: js/messages.php:166 +#: js/messages.php:178 #, fuzzy #| msgid "per second" msgid "Second" @@ -1376,7 +1419,7 @@ msgstr "Indeksi" #: libraries/Index.class.php:444 libraries/mult_submits.inc.php:103 #: libraries/tbl_properties.inc.php:519 tbl_structure.php:33 -#: tbl_structure.php:155 tbl_structure.php:159 tbl_structure.php:474 +#: tbl_structure.php:155 tbl_structure.php:159 tbl_structure.php:472 #: tbl_tracking.php:322 msgid "Unique" msgstr "Jedinstveno" @@ -1418,8 +1461,8 @@ msgid "" 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:1660 +#: libraries/List_Database.class.php:431 libraries/server_links.inc.php:42 +#: server_databases.php:88 server_privileges.php:1680 #: setup/lib/messages.inc.php:110 test/theme.php:93 msgid "Databases" msgstr "Baze podataka" @@ -1590,7 +1633,7 @@ msgstr "Lozinka:" msgid "Server Choice" msgstr "Odabir poslužitelja" -#: libraries/auth/cookie.auth.lib.php:320 libraries/header.inc.php:59 +#: libraries/auth/cookie.auth.lib.php:320 libraries/header.inc.php:63 msgid "Cookies must be enabled past this point." msgstr "Od ovog mjesta potrebno je omogućiti kolačiće." @@ -1671,7 +1714,7 @@ msgstr "" "izgleda da su sva potrebna proširenja učitana. Provjerite svoju PHP " "konfiguraciju." -#: libraries/common.inc.php:583 +#: libraries/common.inc.php:587 msgid "" "phpMyAdmin was unable to read your configuration file!
This might " "happen if PHP finds a parse error in it or PHP cannot find the file.
Ako se prikaže prazna stranica, sve je u redu." -#: libraries/common.inc.php:594 +#: libraries/common.inc.php:598 #, fuzzy, php-format #| msgid "Could not load default configuration from: \"%1$s\"" msgid "Could not load default configuration from: %1$s" msgstr "Nije moguće učitati zadanu konfiguraciju iz: \"%1$s\"" -#: libraries/common.inc.php:599 +#: libraries/common.inc.php:603 msgid "" "The $cfg['PmaAbsoluteUri'] directive MUST be set in your " "configuration file!" @@ -1701,30 +1744,30 @@ msgstr "" "Direktiva $cfg['PmaAbsoluteUri'] MORA BITI postavljena u vašoj " "konfiguracijskoj datoteci!" -#: libraries/common.inc.php:629 +#: libraries/common.inc.php:633 #, fuzzy, php-format #| msgid "Invalid server index: \"%s\"" msgid "Invalid server index: %s" msgstr "Neispravan indeks poslužitelja: \"%s\"" -#: libraries/common.inc.php:636 +#: libraries/common.inc.php:640 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" "Neispravan naziv za poslužitelj %1$s. Molimo, pregledajte svoju " "konfiguraciju." -#: libraries/common.inc.php:645 libraries/header.inc.php:96 +#: libraries/common.inc.php:649 libraries/header.inc.php:100 #: libraries/select_server.lib.php:41 libraries/select_server.lib.php:47 #: main.php:185 test/theme.php:57 msgid "Server" msgstr "Poslužitelj" -#: libraries/common.inc.php:823 +#: libraries/common.inc.php:827 msgid "Invalid authentication method set in configuration:" msgstr "Neispravan komplet načina provjere vjerodostojnosti u konfiguraciji:" -#: libraries/common.inc.php:926 +#: libraries/common.inc.php:930 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Trebali biste nadograditi na %s %s ili kasniju." @@ -1859,45 +1902,45 @@ msgstr "," msgid "%B %d, %Y at %I:%M %p" msgstr "%B %d, %Y u %I:%M %p" -#: libraries/common.lib.php:1907 +#: libraries/common.lib.php:1911 #, 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:2322 libraries/common.lib.php:2325 +#: libraries/common.lib.php:2326 libraries/common.lib.php:2329 #: libraries/display_tbl.lib.php:290 server_status.php:719 msgid "Begin" msgstr "Na vrh stranice" -#: libraries/common.lib.php:2323 libraries/common.lib.php:2326 +#: libraries/common.lib.php:2327 libraries/common.lib.php:2330 #: libraries/display_tbl.lib.php:291 server_binlog.php:168 #: server_binlog.php:170 msgid "Previous" msgstr "Prethodni" -#: libraries/common.lib.php:2354 libraries/common.lib.php:2357 +#: libraries/common.lib.php:2358 libraries/common.lib.php:2361 #: libraries/display_tbl.lib.php:353 msgid "End" msgstr "Završetak" -#: libraries/common.lib.php:2430 +#: libraries/common.lib.php:2434 #, php-format msgid "Jump to database "%s"." msgstr "Skoči do baze podataka \"%s\"." -#: libraries/common.lib.php:2450 +#: libraries/common.lib.php:2454 #, 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:2830 libraries/common.lib.php:2837 +#: libraries/common.lib.php:2834 libraries/common.lib.php:2841 #: libraries/db_links.inc.php:68 libraries/export/sql.php:25 -#: libraries/import/sql.php:18 libraries/server_links.inc.php:45 +#: libraries/import/sql.php:18 libraries/server_links.inc.php:46 #: libraries/tbl_links.inc.php:60 querywindow.php:99 test/theme.php:97 msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2839 libraries/db_links.inc.php:104 +#: libraries/common.lib.php:2843 libraries/db_links.inc.php:104 #: libraries/tbl_links.inc.php:95 libraries/tbl_links.inc.php:117 #: view_operations.php:89 msgid "Operations" @@ -1946,15 +1989,15 @@ msgstr "Upit" msgid "Designer" msgstr "Kreator" -#: libraries/db_links.inc.php:98 libraries/server_links.inc.php:88 +#: libraries/db_links.inc.php:98 libraries/server_links.inc.php:89 #: libraries/tbl_links.inc.php:91 pmd_pdf.php:84 pmd_pdf.php:110 #: setup/frames/menu.inc.php:21 msgid "Import" msgstr "Uvoz" -#: libraries/db_links.inc.php:111 libraries/server_links.inc.php:66 -#: server_privileges.php:111 server_privileges.php:1722 -#: server_privileges.php:2071 test/theme.php:117 +#: libraries/db_links.inc.php:111 libraries/server_links.inc.php:67 +#: server_privileges.php:112 server_privileges.php:1742 +#: server_privileges.php:2092 test/theme.php:117 msgid "Privileges" msgstr "Privilegije" @@ -1973,7 +2016,7 @@ msgid "" msgstr "Može biti približno. Pogledajte ČPP 3.11" #: libraries/db_structure.lib.php:69 server_databases.php:142 -#: tbl_printview.php:336 tbl_structure.php:682 +#: tbl_printview.php:336 tbl_structure.php:680 msgid "Overhead" msgstr "Prepunjenje" @@ -1993,7 +2036,7 @@ msgid "(or the local MySQL server's socket is not correctly configured)" msgstr "" "(ili priključak lokalnog MySQL poslužitelja nije ispravno konfiguriran)" -#: libraries/dbi/mysql.dbi.lib.php:362 tbl_structure.php:608 +#: libraries/dbi/mysql.dbi.lib.php:362 tbl_structure.php:606 msgid "Details..." msgstr "Detalji..." @@ -2003,22 +2046,22 @@ msgid "Change password" msgstr "Promijeni lozinku" #: libraries/display_change_password.lib.php:35 -#: libraries/replication_gui.lib.php:345 server_privileges.php:807 +#: libraries/replication_gui.lib.php:345 server_privileges.php:808 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:796 -#: server_privileges.php:800 server_privileges.php:811 -#: server_privileges.php:1538 server_synchronize.php:1175 +#: libraries/replication_gui.lib.php:349 server_privileges.php:797 +#: server_privileges.php:801 server_privileges.php:812 +#: server_privileges.php:1558 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:815 server_privileges.php:818 +#: server_privileges.php:816 server_privileges.php:819 msgid "Re-type" msgstr "Ponovite" @@ -2033,12 +2076,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:822 +#: libraries/replication_gui.lib.php:360 server_privileges.php:823 msgid "Generate Password" msgstr "Generiraj lozinku" #: libraries/display_change_password.lib.php:75 -#: libraries/replication_gui.lib.php:363 server_privileges.php:825 +#: libraries/replication_gui.lib.php:363 server_privileges.php:826 msgid "Generate" msgstr "Generiraj" @@ -2051,8 +2094,8 @@ msgstr "Izradi novu bazu podataka" msgid "Create" msgstr "Izradi" -#: libraries/display_create_database.lib.php:40 server_privileges.php:113 -#: server_privileges.php:1427 server_replication.php:35 +#: libraries/display_create_database.lib.php:40 server_privileges.php:114 +#: server_privileges.php:1447 server_replication.php:35 msgid "No Privileges" msgstr "Bez privilegija" @@ -2143,7 +2186,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:1875 server_processlist.php:75 +#: server_privileges.php:1895 server_processlist.php:75 msgid "None" msgstr "bez kompresije" @@ -2334,7 +2377,7 @@ msgstr "Presloži po ključu" #: libraries/import/docsql.php:34 libraries/import/ldi.php:47 #: libraries/import/ods.php:30 libraries/import/sql.php:20 #: libraries/import/xls.php:26 libraries/import/xlsx.php:26 -#: libraries/import/xml.php:25 tbl_select.php:267 tbl_structure.php:753 +#: libraries/import/xml.php:25 tbl_select.php:267 tbl_structure.php:751 msgid "Options" msgstr "Opcije" @@ -2411,7 +2454,7 @@ msgstr "Upit je trajao %01.4f sek" #: libraries/display_tbl.lib.php:2089 libraries/mult_submits.inc.php:113 #: querywindow.php:125 querywindow.php:129 querywindow.php:132 -#: tbl_structure.php:25 tbl_structure.php:150 tbl_structure.php:470 +#: tbl_structure.php:25 tbl_structure.php:150 tbl_structure.php:468 msgid "Change" msgstr "Promijeni" @@ -2481,7 +2524,7 @@ msgstr "Iskoristivost međuspremnika" #: libraries/engines/innodb.lib.php:194 server_databases.php:137 #: server_databases.php:305 server_status.php:525 server_status.php:586 -#: server_status.php:607 tbl_printview.php:351 tbl_structure.php:696 +#: server_status.php:607 tbl_printview.php:351 tbl_structure.php:694 msgid "Total" msgstr "Ukupno" @@ -2770,7 +2813,7 @@ msgstr "" "broj." #: libraries/export/codegen.php:37 setup/lib/messages.inc.php:88 -#: tbl_printview.php:376 tbl_structure.php:737 +#: tbl_printview.php:376 tbl_structure.php:735 msgid "Format" msgstr "Oblikovanje" @@ -2842,8 +2885,8 @@ 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:576 server_replication.php:316 tbl_printview.php:317 -#: tbl_structure.php:665 +#: server_privileges.php:577 server_replication.php:316 tbl_printview.php:317 +#: tbl_structure.php:663 msgid "Data" msgstr "Podaci" @@ -2892,9 +2935,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:731 -#: server_privileges.php:734 server_privileges.php:790 -#: server_privileges.php:1537 server_privileges.php:2069 +#: libraries/replication_gui.lib.php:329 server_privileges.php:732 +#: server_privileges.php:735 server_privileges.php:791 +#: server_privileges.php:1557 server_privileges.php:2090 #: server_processlist.php:55 server_synchronize.php:1159 msgid "Host" msgstr "Računalo" @@ -3093,7 +3136,7 @@ msgstr "Vrsta izvoza" msgid "Open new phpMyAdmin window" msgstr "Otvori novi phpMyAdmin prozor" -#: libraries/header.inc.php:115 +#: libraries/header.inc.php:119 #, fuzzy msgid "New table" msgstr "Nema tablica" @@ -3256,20 +3299,20 @@ 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 +#: tbl_structure.php:471 msgid "Primary" msgstr "Primarni" #: libraries/mult_submits.inc.php:98 libraries/tbl_properties.inc.php:116 #: libraries/tbl_properties.inc.php:525 tbl_printview.php:326 #: tbl_structure.php:31 tbl_structure.php:154 tbl_structure.php:158 -#: tbl_structure.php:475 tbl_structure.php:673 +#: tbl_structure.php:473 tbl_structure.php:671 msgid "Index" msgstr "Indeks" #: libraries/mult_submits.inc.php:108 libraries/tbl_properties.inc.php:531 #: tbl_structure.php:35 tbl_structure.php:156 tbl_structure.php:160 -#: tbl_structure.php:478 +#: tbl_structure.php:476 msgid "Fulltext" msgstr "Puni tekst" @@ -3571,8 +3614,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:711 -#: server_privileges.php:714 server_privileges.php:721 +#: libraries/replication_gui.lib.php:259 server_privileges.php:712 +#: server_privileges.php:715 server_privileges.php:722 #: server_synchronize.php:1171 msgid "User name" msgstr "Korisničko ime" @@ -3599,7 +3642,7 @@ msgstr "Varijabla" #: 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 +#: tbl_structure.php:727 msgid "Value" msgstr "Vrijednost" @@ -3617,34 +3660,34 @@ msgstr "" msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:254 server_privileges.php:716 +#: libraries/replication_gui.lib.php:254 server_privileges.php:717 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:717 -#: server_privileges.php:784 server_privileges.php:808 -#: server_privileges.php:1928 server_privileges.php:1958 +#: libraries/replication_gui.lib.php:346 server_privileges.php:718 +#: server_privileges.php:785 server_privileges.php:809 +#: server_privileges.php:1948 server_privileges.php:1978 msgid "Use text field" msgstr "Upotrijebi tekstualno polje" -#: libraries/replication_gui.lib.php:302 server_privileges.php:764 +#: libraries/replication_gui.lib.php:302 server_privileges.php:765 msgid "Any host" msgstr "Bilo koje računalo" -#: libraries/replication_gui.lib.php:306 server_privileges.php:768 +#: libraries/replication_gui.lib.php:306 server_privileges.php:769 msgid "Local" msgstr "Lokalno" -#: libraries/replication_gui.lib.php:312 server_privileges.php:773 +#: libraries/replication_gui.lib.php:312 server_privileges.php:774 msgid "This Host" msgstr "Ovo računalo" -#: libraries/replication_gui.lib.php:318 server_privileges.php:779 +#: libraries/replication_gui.lib.php:318 server_privileges.php:780 msgid "Use Host Table" msgstr "Upotrijebi tablicu poslužitelja" -#: libraries/replication_gui.lib.php:331 server_privileges.php:792 +#: libraries/replication_gui.lib.php:331 server_privileges.php:793 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -3678,29 +3721,29 @@ msgstr "Nepoznati jezik: %1$s." msgid "Servers" msgstr "Poslužitelji" -#: libraries/server_links.inc.php:53 server_engines.php:112 +#: libraries/server_links.inc.php:54 server_engines.php:112 #: server_engines.php:116 server_status.php:415 test/theme.php:105 msgid "Variables" msgstr "Varijable" -#: libraries/server_links.inc.php:57 test/theme.php:109 +#: libraries/server_links.inc.php:58 test/theme.php:109 msgid "Charsets" msgstr "Tablice znakova" -#: libraries/server_links.inc.php:61 test/theme.php:113 +#: libraries/server_links.inc.php:62 test/theme.php:113 msgid "Engines" msgstr "Pogoni" -#: libraries/server_links.inc.php:76 server_binlog.php:110 +#: libraries/server_links.inc.php:77 server_binlog.php:110 #: server_status.php:364 test/theme.php:121 msgid "Binary log" msgstr "Binarni zapisnik" -#: libraries/server_links.inc.php:80 +#: libraries/server_links.inc.php:81 msgid "Processes" msgstr "Procesi" -#: libraries/server_links.inc.php:92 server_synchronize.php:1092 +#: libraries/server_links.inc.php:93 server_synchronize.php:1092 #: server_synchronize.php:1100 msgid "Synchronize" msgstr "" @@ -3951,13 +3994,13 @@ msgstr "Definicija PARTICIJE" msgid "Save" msgstr "Spremi" -#: libraries/tbl_properties.inc.php:780 tbl_structure.php:542 +#: libraries/tbl_properties.inc.php:780 tbl_structure.php:540 #, fuzzy, php-format #| msgid "Add %s field(s)" msgid "Add %s column(s)" msgstr "Dodaj %s polja" -#: libraries/tbl_properties.inc.php:784 tbl_structure.php:536 +#: libraries/tbl_properties.inc.php:784 tbl_structure.php:534 #, fuzzy #| msgid "You have to add at least one field." msgid "You have to add at least one column." @@ -4173,8 +4216,8 @@ msgstr "Povrat" msgid "Protocol version" msgstr "Verzija protokola" -#: main.php:189 server_privileges.php:1389 server_privileges.php:1536 -#: server_privileges.php:1650 server_privileges.php:2068 +#: main.php:189 server_privileges.php:1406 server_privileges.php:1556 +#: server_privileges.php:1670 server_privileges.php:2089 #: server_processlist.php:54 msgid "User" msgstr "Korisnik" @@ -4625,114 +4668,114 @@ msgstr "Pogoni pohrane" msgid "View dump (schema) of databases" msgstr "Prikaži ispis (shemu) baza podataka" -#: server_privileges.php:24 server_privileges.php:266 +#: server_privileges.php:25 server_privileges.php:267 msgid "Includes all privileges except GRANT." msgstr "Obuhvaća sve privilegije osim GRANT (Podari)." -#: server_privileges.php:25 server_privileges.php:192 -#: server_privileges.php:515 +#: server_privileges.php:26 server_privileges.php:193 +#: server_privileges.php:516 msgid "Allows altering the structure of existing tables." msgstr "Dopušta izmjenu strukture postojećih tablice." -#: server_privileges.php:26 server_privileges.php:208 -#: server_privileges.php:521 +#: server_privileges.php:27 server_privileges.php:209 +#: server_privileges.php:522 msgid "Allows altering and dropping stored routines." msgstr "Dopušta izmjenu i odbacivanje pohranjenih rutina." -#: server_privileges.php:27 server_privileges.php:184 -#: server_privileges.php:514 +#: server_privileges.php:28 server_privileges.php:185 +#: server_privileges.php:515 msgid "Allows creating new databases and tables." msgstr "Dopušta izradu novih baze podataka i tablice." -#: server_privileges.php:28 server_privileges.php:207 -#: server_privileges.php:520 +#: server_privileges.php:29 server_privileges.php:208 +#: server_privileges.php:521 msgid "Allows creating stored routines." msgstr "Dopušta izradu pohranjenih rutina." -#: server_privileges.php:29 server_privileges.php:514 +#: server_privileges.php:30 server_privileges.php:515 msgid "Allows creating new tables." msgstr "Dopušta izradu novih tablica." -#: server_privileges.php:30 server_privileges.php:195 -#: server_privileges.php:518 +#: server_privileges.php:31 server_privileges.php:196 +#: server_privileges.php:519 msgid "Allows creating temporary tables." msgstr "Dopušta izradu privremenih tablica." -#: server_privileges.php:31 server_privileges.php:209 -#: server_privileges.php:554 +#: server_privileges.php:32 server_privileges.php:210 +#: server_privileges.php:555 msgid "Allows creating, dropping and renaming user accounts." msgstr "Dopušta izradu, odbacivanje i preimenovanje korisničkih naloga." -#: server_privileges.php:32 server_privileges.php:199 -#: server_privileges.php:203 server_privileges.php:526 -#: server_privileges.php:530 +#: server_privileges.php:33 server_privileges.php:200 +#: server_privileges.php:204 server_privileges.php:527 +#: server_privileges.php:531 msgid "Allows creating new views." msgstr "Dopušta izradu novih prikaza." -#: server_privileges.php:33 server_privileges.php:183 -#: server_privileges.php:506 +#: server_privileges.php:34 server_privileges.php:184 +#: server_privileges.php:507 msgid "Allows deleting data." msgstr "Dopušta brisanje podataka." -#: server_privileges.php:34 server_privileges.php:185 -#: server_privileges.php:517 +#: server_privileges.php:35 server_privileges.php:186 +#: server_privileges.php:518 msgid "Allows dropping databases and tables." msgstr "Dopušta odbacivanje baza podataka i tablica." -#: server_privileges.php:35 server_privileges.php:517 +#: server_privileges.php:36 server_privileges.php:518 msgid "Allows dropping tables." msgstr "Dopušta odbacivanje tablica." -#: server_privileges.php:36 server_privileges.php:200 -#: server_privileges.php:534 +#: server_privileges.php:37 server_privileges.php:201 +#: server_privileges.php:535 msgid "Allows to set up events for the event scheduler" msgstr "Omogućuje postavljanje događaja za planer" -#: server_privileges.php:37 server_privileges.php:210 -#: server_privileges.php:522 +#: server_privileges.php:38 server_privileges.php:211 +#: server_privileges.php:523 msgid "Allows executing stored routines." msgstr "Dopušta pokretanje pohranjenih rutina." -#: server_privileges.php:38 server_privileges.php:189 -#: server_privileges.php:509 +#: server_privileges.php:39 server_privileges.php:190 +#: server_privileges.php:510 msgid "Allows importing data from and exporting data into files." msgstr "Dopušta uvoz i izvoz podataka iz datoteka." -#: server_privileges.php:39 server_privileges.php:540 +#: server_privileges.php:40 server_privileges.php:541 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "Dopušta dodavanje korisnika i privilegija bez ponovnog učitavanja tablica." -#: server_privileges.php:40 server_privileges.php:191 -#: server_privileges.php:516 +#: server_privileges.php:41 server_privileges.php:192 +#: server_privileges.php:517 msgid "Allows creating and dropping indexes." msgstr "Dopušta izradu i odbacivanje indeksa." -#: server_privileges.php:41 server_privileges.php:181 -#: server_privileges.php:442 server_privileges.php:504 +#: server_privileges.php:42 server_privileges.php:182 +#: server_privileges.php:443 server_privileges.php:505 msgid "Allows inserting and replacing data." msgstr "Dopušta umetanje i zamjenu podataka." -#: server_privileges.php:42 server_privileges.php:196 -#: server_privileges.php:549 +#: server_privileges.php:43 server_privileges.php:197 +#: server_privileges.php:550 msgid "Allows locking tables for the current thread." msgstr "Dopušta zaključavanje tablica u trenutnoj grani." -#: server_privileges.php:43 server_privileges.php:646 -#: server_privileges.php:648 +#: server_privileges.php:44 server_privileges.php:647 +#: server_privileges.php:649 msgid "Limits the number of new connections the user may open per hour." msgstr "" "Ograničava broj novih povezivanja koje korisnik može otvoriti, po satu." -#: server_privileges.php:44 server_privileges.php:634 -#: server_privileges.php:636 +#: server_privileges.php:45 server_privileges.php:635 +#: server_privileges.php:637 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" "Ograničava broj upita koje korisnik može poslati poslužitelju, po satu." -#: server_privileges.php:45 server_privileges.php:640 -#: server_privileges.php:642 +#: server_privileges.php:46 server_privileges.php:641 +#: server_privileges.php:643 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -4740,61 +4783,61 @@ msgstr "" "Ograničava broj naredbi koje korisnik može pokrenuti, a čija je namjena " "mijenjanje bilo koje tablice ili baze podataka, po satu." -#: server_privileges.php:46 server_privileges.php:652 -#: server_privileges.php:654 +#: server_privileges.php:47 server_privileges.php:653 +#: server_privileges.php:655 msgid "Limits the number of simultaneous connections the user may have." msgstr "Ograničava broj istovremenih povezivanja koje korisnik može imati." -#: server_privileges.php:47 server_privileges.php:188 -#: server_privileges.php:544 +#: server_privileges.php:48 server_privileges.php:189 +#: server_privileges.php:545 msgid "Allows viewing processes of all users" msgstr "Omogućuje pregledavanje procesa za sve korisnike" -#: server_privileges.php:48 server_privileges.php:190 -#: server_privileges.php:448 server_privileges.php:550 +#: server_privileges.php:49 server_privileges.php:191 +#: server_privileges.php:449 server_privileges.php:551 msgid "Has no effect in this MySQL version." msgstr "Nema učinka u ovoj verziji MySQL-a." -#: server_privileges.php:49 server_privileges.php:186 -#: server_privileges.php:545 +#: server_privileges.php:50 server_privileges.php:187 +#: server_privileges.php:546 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" "Dopušta ponovno učitavanje postavki poslužitelja i pražnjenje privremene " "pohrane poslužitelja." -#: server_privileges.php:50 server_privileges.php:198 -#: server_privileges.php:552 +#: server_privileges.php:51 server_privileges.php:199 +#: server_privileges.php:553 msgid "Allows the user to ask where the slaves / masters are." msgstr "" "Dopušta korisnik postavljanje upita o lokaciji potčinjenih i gospodara." -#: server_privileges.php:51 server_privileges.php:197 -#: server_privileges.php:553 +#: server_privileges.php:52 server_privileges.php:198 +#: server_privileges.php:554 msgid "Needed for the replication slaves." msgstr "Potrebno za replikacijske potčinjene." -#: server_privileges.php:52 server_privileges.php:180 -#: server_privileges.php:439 server_privileges.php:503 +#: server_privileges.php:53 server_privileges.php:181 +#: server_privileges.php:440 server_privileges.php:504 msgid "Allows reading data." msgstr "Dopušta čitanje podataka." -#: server_privileges.php:53 server_privileges.php:193 -#: server_privileges.php:547 +#: server_privileges.php:54 server_privileges.php:194 +#: server_privileges.php:548 msgid "Gives access to the complete list of databases." msgstr "Daje pristup cjelokupnom popisu baza podataka." -#: server_privileges.php:54 server_privileges.php:204 -#: server_privileges.php:206 server_privileges.php:519 +#: server_privileges.php:55 server_privileges.php:205 +#: server_privileges.php:207 server_privileges.php:520 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Dopušta izvođenje upita SHOW CREATE VIEW." -#: server_privileges.php:55 server_privileges.php:187 -#: server_privileges.php:546 +#: server_privileges.php:56 server_privileges.php:188 +#: server_privileges.php:547 msgid "Allows shutting down the server." msgstr "Dopušta gašenje poslužitelja." -#: server_privileges.php:56 server_privileges.php:194 -#: server_privileges.php:543 +#: server_privileges.php:57 server_privileges.php:195 +#: server_privileges.php:544 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -4804,158 +4847,158 @@ msgstr "" "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 +#: server_privileges.php:58 server_privileges.php:202 +#: server_privileges.php:536 msgid "Allows creating and dropping triggers" msgstr "Omogućuje izradu i uklanjanje okidača" -#: server_privileges.php:58 server_privileges.php:182 -#: server_privileges.php:445 server_privileges.php:505 +#: server_privileges.php:59 server_privileges.php:183 +#: server_privileges.php:446 server_privileges.php:506 msgid "Allows changing data." msgstr "Dopušta mijenjanje podataka." -#: server_privileges.php:59 server_privileges.php:260 +#: server_privileges.php:60 server_privileges.php:261 msgid "No privileges." msgstr "Bez privilegija." -#: server_privileges.php:302 server_privileges.php:303 +#: server_privileges.php:303 server_privileges.php:304 #, fuzzy #| msgid "None" msgctxt "None privileges" msgid "None" msgstr "bez kompresije" -#: server_privileges.php:431 server_privileges.php:566 -#: server_privileges.php:1718 server_privileges.php:1724 +#: server_privileges.php:432 server_privileges.php:567 +#: server_privileges.php:1738 server_privileges.php:1744 msgid "Table-specific privileges" msgstr "Privilegije specifične za tablicu" -#: server_privileges.php:432 server_privileges.php:574 -#: server_privileges.php:1540 +#: server_privileges.php:433 server_privileges.php:575 +#: server_privileges.php:1560 msgid " Note: MySQL privilege names are expressed in English " msgstr " Napomena: Nazivi MySQL privilegija navedeni su na engleskom jeziku " -#: server_privileges.php:563 server_privileges.php:1539 +#: server_privileges.php:564 server_privileges.php:1559 msgid "Global privileges" msgstr "Opće privilegije" -#: server_privileges.php:565 server_privileges.php:1718 +#: server_privileges.php:566 server_privileges.php:1738 msgid "Database-specific privileges" msgstr "Privilegije specifične za bazu podataka" -#: server_privileges.php:610 +#: server_privileges.php:611 msgid "Administration" msgstr "Administracija" -#: server_privileges.php:630 +#: server_privileges.php:631 msgid "Resource limits" msgstr "Ograničenja resursa" -#: server_privileges.php:631 +#: server_privileges.php:632 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "" "Napomena: Postavljanje ovih opcija na vrijednost 0 (nula) uklanja " "ograničenje." -#: server_privileges.php:708 +#: server_privileges.php:709 msgid "Login Information" msgstr "_Podaci prijave" -#: server_privileges.php:802 +#: server_privileges.php:803 msgid "Do not change the password" msgstr "Ne mijenjaj lozinku" -#: server_privileges.php:843 server_privileges.php:2205 +#: server_privileges.php:844 server_privileges.php:2226 #, fuzzy #| msgid "No user(s) found." msgid "No user found." msgstr "Korisnici nisu pronađeni." -#: server_privileges.php:887 +#: server_privileges.php:888 #, php-format msgid "The user %s already exists!" msgstr "Korisnik %s već postoji!" -#: server_privileges.php:970 +#: server_privileges.php:971 msgid "You have added a new user." msgstr "Dodali ste novog korisnika." -#: server_privileges.php:1191 +#: server_privileges.php:1196 #, php-format msgid "You have updated the privileges for %s." msgstr "Ažurirali ste privilegije za %s." -#: server_privileges.php:1215 +#: server_privileges.php:1220 #, php-format msgid "You have revoked the privileges for %s" msgstr "Opozvali ste privilegije za %s" -#: server_privileges.php:1251 +#: server_privileges.php:1256 #, php-format msgid "The password for %s was changed successfully." msgstr "Lozinka za %s uspješno je promijenjena." -#: server_privileges.php:1271 +#: server_privileges.php:1276 #, php-format msgid "Deleting %s" msgstr "Brisanje %s" -#: server_privileges.php:1282 +#: server_privileges.php:1287 msgid "No users selected for deleting!" msgstr "Nema odabranih korisnika za uklanjanje!" -#: server_privileges.php:1285 +#: server_privileges.php:1290 msgid "Reloading the privileges" msgstr "Ponovno učitavanje privilegija" -#: server_privileges.php:1300 +#: server_privileges.php:1305 msgid "The selected users have been deleted successfully." msgstr "Odabrani korisnici uspješno su izbrisani." -#: server_privileges.php:1335 +#: server_privileges.php:1344 msgid "The privileges were reloaded successfully." msgstr "Privilegije su uspješno učitane." -#: server_privileges.php:1363 server_privileges.php:1649 +#: server_privileges.php:1380 server_privileges.php:1669 msgid "Edit Privileges" msgstr "Uredi privilegije" -#: server_privileges.php:1372 +#: server_privileges.php:1389 msgid "Revoke" msgstr "Opozovi" -#: server_privileges.php:1404 +#: server_privileges.php:1424 msgid "User overview" msgstr "Pregled korisnika" -#: server_privileges.php:1541 server_privileges.php:1723 -#: server_privileges.php:2072 +#: server_privileges.php:1561 server_privileges.php:1743 +#: server_privileges.php:2093 msgid "Grant" msgstr "Podarivanje" -#: server_privileges.php:1560 server_privileges.php:2162 +#: server_privileges.php:1580 server_privileges.php:2183 msgid "Any" msgstr "Bilo koji" -#: server_privileges.php:1609 server_privileges.php:1633 -#: server_privileges.php:2027 server_privileges.php:2216 +#: server_privileges.php:1629 server_privileges.php:1653 +#: server_privileges.php:2048 server_privileges.php:2237 msgid "Add a new User" msgstr "Dodaj novog korisnika" -#: server_privileges.php:1614 +#: server_privileges.php:1634 msgid "Remove selected users" msgstr "Ukloni odabrane korisnike" -#: server_privileges.php:1617 +#: server_privileges.php:1637 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:1618 server_privileges.php:1619 -#: server_privileges.php:1620 +#: server_privileges.php:1638 server_privileges.php:1639 +#: server_privileges.php:1640 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:1636 +#: server_privileges.php:1656 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -4968,94 +5011,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:1684 +#: server_privileges.php:1704 msgid "The selected user was not found in the privilege table." msgstr "Odabrani korisnik nije pronađen u tablici privilegija." -#: server_privileges.php:1724 +#: server_privileges.php:1744 msgid "Column-specific privileges" msgstr "Privilegije specifične za stupac" -#: server_privileges.php:1925 +#: server_privileges.php:1945 msgid "Add privileges on the following database" msgstr "Dodaj privilegije za sljedeće baze podataka" -#: server_privileges.php:1943 +#: server_privileges.php:1963 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:1946 +#: server_privileges.php:1966 msgid "Add privileges on the following table" msgstr "Dodaj privilegije za sljedeću tablicu" -#: server_privileges.php:2003 +#: server_privileges.php:2023 msgid "Change Login Information / Copy User" msgstr "Promjena podataka prijave / Kopiranje korisnika" -#: server_privileges.php:2006 +#: server_privileges.php:2026 msgid "Create a new user with the same privileges and ..." msgstr "Izradi novog korisnika s istim privilegijama i..." -#: server_privileges.php:2008 +#: server_privileges.php:2028 msgid "... keep the old one." msgstr "... zadržati staru." -#: server_privileges.php:2009 +#: server_privileges.php:2029 msgid " ... delete the old one from the user tables." msgstr " ... izbriši starog iz korisničkih tablica." -#: server_privileges.php:2010 +#: server_privileges.php:2030 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:2011 +#: server_privileges.php:2031 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:2033 +#: server_privileges.php:2054 msgid "Database for user" msgstr "Baza podataka za korisnika" -#: server_privileges.php:2037 +#: server_privileges.php:2058 #, fuzzy #| msgid "None" msgctxt "Create none database for user" msgid "None" msgstr "bez kompresije" -#: server_privileges.php:2038 +#: server_privileges.php:2059 msgid "Create database with same name and grant all privileges" msgstr "Izradi bazu podataka istog naziva i podari sve privilegije" -#: server_privileges.php:2039 +#: server_privileges.php:2060 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "Podari sve privilegije imenima s džokerima (korisničkoime_%)" -#: server_privileges.php:2042 +#: server_privileges.php:2063 #, fuzzy, php-format msgid "Grant all privileges on database "%s"" msgstr "Provjeri privilegije za bazu podataka \"%s\"." -#: server_privileges.php:2065 +#: server_privileges.php:2086 #, php-format msgid "Users having access to "%s"" msgstr "Korisnici koji imaju pristup u \"%s\"" -#: server_privileges.php:2173 +#: server_privileges.php:2194 msgid "global" msgstr "opće" -#: server_privileges.php:2175 +#: server_privileges.php:2196 msgid "database-specific" msgstr "specifično za bazu podataka" -#: server_privileges.php:2177 +#: server_privileges.php:2198 msgid "wildcard" msgstr "džoker" @@ -7895,6 +7938,10 @@ msgstr "" msgid "Show insert query" msgstr "Prikazivanje SQL upita" +#: tbl_change.php:1143 +msgid "and then" +msgstr "i potom" + #: tbl_change.php:1147 msgid "Go back to previous page" msgstr "Kreni nazad na prethodnu stranicu" @@ -7976,7 +8023,7 @@ msgstr "" msgid "Add to index  %s column(s)" msgstr "Dodaj u indeks  %s stupci" -#: tbl_indexes.php:256 tbl_structure.php:589 tbl_structure.php:600 +#: tbl_indexes.php:256 tbl_structure.php:587 tbl_structure.php:598 msgid "Column count has to be larger than zero." msgstr "Broj stupaca mora biti veći od nule." @@ -8090,39 +8137,39 @@ msgstr "Provjeri referencijalan integritet:" msgid "Show tables" msgstr "Prikaži tablice" -#: tbl_printview.php:310 tbl_structure.php:656 +#: tbl_printview.php:310 tbl_structure.php:654 msgid "Space usage" msgstr "Iskorištenost prostora" -#: tbl_printview.php:314 tbl_structure.php:660 +#: tbl_printview.php:314 tbl_structure.php:658 msgid "Usage" msgstr "Upotreba" -#: tbl_printview.php:341 tbl_structure.php:687 +#: tbl_printview.php:341 tbl_structure.php:685 msgid "Effective" msgstr "Na snazi" -#: tbl_printview.php:366 tbl_structure.php:725 +#: tbl_printview.php:366 tbl_structure.php:723 msgid "Row Statistics" msgstr "Statistike redova" -#: tbl_printview.php:369 tbl_structure.php:728 +#: tbl_printview.php:369 tbl_structure.php:726 msgid "Statements" msgstr "Izjave" -#: tbl_printview.php:380 tbl_structure.php:740 +#: tbl_printview.php:380 tbl_structure.php:738 msgid "static" msgstr "" -#: tbl_printview.php:382 tbl_structure.php:742 +#: tbl_printview.php:382 tbl_structure.php:740 msgid "dynamic" msgstr "dinamički" -#: tbl_printview.php:404 tbl_structure.php:785 +#: tbl_printview.php:404 tbl_structure.php:783 msgid "Row length" msgstr "Duljina retka" -#: tbl_printview.php:414 tbl_structure.php:793 +#: tbl_printview.php:414 tbl_structure.php:791 msgid " Row size " msgstr " Veličina retka " @@ -8196,50 +8243,50 @@ msgstr "bez kompresije" msgid "Column %s has been dropped" msgstr "Tablica %s je odbačen" -#: tbl_structure.php:385 +#: tbl_structure.php:384 #, php-format msgid "A primary key has been added on %s" msgstr "Primarni ključ je dodan na %s" -#: tbl_structure.php:400 tbl_structure.php:414 tbl_structure.php:428 +#: tbl_structure.php:398 tbl_structure.php:412 tbl_structure.php:426 #, php-format msgid "An index has been added on %s" msgstr "Indeks je pridodan na %s" -#: tbl_structure.php:506 tbl_structure.php:508 +#: tbl_structure.php:504 tbl_structure.php:506 msgid "Relation view" msgstr "Prikaz relacija" -#: tbl_structure.php:515 tbl_structure.php:517 +#: tbl_structure.php:513 tbl_structure.php:515 msgid "Propose table structure" msgstr "Predloži strukturu tablice" -#: tbl_structure.php:540 +#: tbl_structure.php:538 #, fuzzy #| msgid "Add %s field(s)" msgid "Add column" msgstr "Dodaj %s polja" -#: tbl_structure.php:554 +#: tbl_structure.php:552 msgid "At End of Table" msgstr "Pri završetku tablice" -#: tbl_structure.php:555 +#: tbl_structure.php:553 msgid "At Beginning of Table" msgstr "Pri početku tablice" -#: tbl_structure.php:556 +#: tbl_structure.php:554 #, php-format msgid "After %s" msgstr "Poslije %s" -#: tbl_structure.php:594 +#: tbl_structure.php:592 #, fuzzy, php-format #| msgid "Create an index on %s columns" msgid "Create an index on  %s columns" msgstr "Izradi indeks  %s stupaca" -#: tbl_structure.php:756 +#: tbl_structure.php:754 msgid "partitioned" msgstr "particionirano" @@ -8697,9 +8744,6 @@ msgstr "Preimenuj tablicu u" #~ msgid "Process list" #~ msgstr "Popis procesa" -#~ msgid "Reload privileges" -#~ msgstr "Ponovno učitaj privilegije" - #~ msgid "" #~ "The users will still have the USAGE privilege until the privileges are " #~ "reloaded." diff --git a/po/hu.po b/po/hu.po index 97a58695a..ab4b8e060 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-13 09:03-0400\n" +"POT-Creation-Date: 2010-06-22 00:55+0530\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:1514 +#: libraries/display_tbl.lib.php:417 server_privileges.php:1534 msgid "Show all" msgstr "Mind látható" -#: browse_foreigners.php:82 libraries/common.lib.php:2313 +#: browse_foreigners.php:82 libraries/common.lib.php:2317 #: 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,18 +37,18 @@ 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:2831 -#: libraries/common.lib.php:2838 libraries/db_links.inc.php:75 +#: db_structure.php:106 libraries/common.lib.php:2835 +#: libraries/common.lib.php:2842 libraries/db_links.inc.php:75 #: libraries/tbl_links.inc.php:63 msgid "Search" msgstr "Keresés" -#: browse_foreigners.php:153 db_operations.php:385 db_operations.php:429 -#: db_operations.php:499 db_operations.php:609 db_search.php:362 -#: db_structure.php:567 js/messages.php:48 libraries/Config.class.php:1046 +#: browse_foreigners.php:153 db_operations.php:394 db_operations.php:438 +#: db_operations.php:508 db_operations.php:618 db_search.php:362 +#: db_structure.php:565 js/messages.php:53 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:1335 libraries/common.lib.php:2288 +#: libraries/common.lib.php:1335 libraries/common.lib.php:2292 #: 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,15 +59,15 @@ 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:664 server_privileges.php:1624 -#: server_privileges.php:1971 server_privileges.php:2018 -#: server_privileges.php:2057 server_replication.php:235 +#: server_privileges.php:665 server_privileges.php:1644 +#: server_privileges.php:1991 server_privileges.php:2038 +#: server_privileges.php:2078 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 #: tbl_operations.php:302 tbl_operations.php:499 tbl_operations.php:561 -#: tbl_operations.php:681 tbl_select.php:327 tbl_structure.php:562 -#: tbl_structure.php:597 tbl_tracking.php:395 tbl_tracking.php:512 +#: tbl_operations.php:681 tbl_select.php:327 tbl_structure.php:560 +#: tbl_structure.php:595 tbl_tracking.php:395 tbl_tracking.php:512 #: view_create.php:182 view_operations.php:101 msgid "Go" msgstr "Indítás" @@ -93,7 +93,7 @@ msgstr "Ezen érték használata" msgid "Database %1$s has been created." msgstr "A(z) %1$s adatbázis elkészült." -#: db_datadict.php:49 db_operations.php:378 +#: db_datadict.php:49 db_operations.php:387 msgid "Database comment: " msgstr "Megjegyzés az adatbázishoz: " @@ -120,10 +120,10 @@ 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:2070 +#: pdf_schema.php:1263 pdf_schema.php:1284 server_privileges.php:2091 #: 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 +#: tbl_structure.php:657 tbl_tracking.php:274 tbl_tracking.php:321 msgid "Type" msgstr "Típus" @@ -136,7 +136,7 @@ msgstr "Típus" msgid "Null" msgstr "Nulla" -#: db_datadict.php:178 db_structure.php:501 libraries/export/htmlword.php:247 +#: db_datadict.php:178 db_structure.php:499 libraries/export/htmlword.php:247 #: libraries/export/latex.php:360 libraries/export/odt.php:303 #: libraries/export/texytext.php:236 libraries/tbl_properties.inc.php:106 #: pdf_schema.php:1266 pdf_schema.php:1287 tbl_printview.php:146 @@ -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: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 +#: pdf_schema.php:1344 server_privileges.php:1588 server_privileges.php:1599 +#: server_privileges.php:1909 server_privileges.php:1914 +#: server_privileges.php:2208 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:1565 -#: server_privileges.php:1579 server_privileges.php:1889 -#: server_privileges.php:1892 server_privileges.php:2187 sql.php:193 +#: server_databases.php:64 server_privileges.php:1585 +#: server_privileges.php:1599 server_privileges.php:1909 +#: server_privileges.php:1912 server_privileges.php:2208 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" @@ -209,125 +209,121 @@ msgstr "Mind kijelölése" msgid "Unselect All" msgstr "Mind törlése" -#: db_operations.php:38 tbl_create.php:54 +#: db_operations.php:43 tbl_create.php:54 msgid "The database name is empty!" msgstr "Üres az adatbázis neve!" -#: db_operations.php:236 +#: db_operations.php:241 #, php-format msgid "Database %s has been renamed to %s" msgstr "A(z) %s adatbázis átnevezése %s névre megtörtént" -#: db_operations.php:240 +#: db_operations.php:245 #, php-format msgid "Database %s has been copied to %s" msgstr "A(z) %s adatbázis másolása a(z) %s adatbázisba megtörtént" -#: db_operations.php:412 +#: db_operations.php:421 msgid "Rename database to" msgstr "Adatbázis átnevezése" -#: db_operations.php:417 server_processlist.php:57 +#: db_operations.php:426 server_processlist.php:57 msgid "Command" msgstr "Parancs" -#: db_operations.php:429 tbl_change.php:1143 -msgid "and then" -msgstr "és utána" - -#: db_operations.php:455 +#: db_operations.php:464 msgid "Copy database to" msgstr "Adatbázis másolása" -#: db_operations.php:462 tbl_operations.php:528 tbl_tracking.php:388 +#: db_operations.php:471 tbl_operations.php:528 tbl_tracking.php:388 msgid "Structure only" msgstr "Csak a szerkezet" -#: db_operations.php:463 tbl_operations.php:529 tbl_tracking.php:390 +#: db_operations.php:472 tbl_operations.php:529 tbl_tracking.php:390 msgid "Structure and data" msgstr "Szerkezet és adatok" -#: db_operations.php:464 tbl_operations.php:530 tbl_tracking.php:389 +#: db_operations.php:473 tbl_operations.php:530 tbl_tracking.php:389 msgid "Data only" msgstr "Csak az adatok" -#: db_operations.php:472 +#: db_operations.php:481 msgid "CREATE DATABASE before copying" msgstr "CREATE DATABASE másolás előtt" -#: db_operations.php:475 libraries/export/sql.php:52 +#: db_operations.php:484 libraries/export/sql.php:52 #: libraries/export/sql.php:74 libraries/export/sql.php:76 #: libraries/export/sql.php:82 tbl_operations.php:536 #, php-format msgid "Add %s" msgstr "%s hozzáadása" -#: db_operations.php:479 libraries/export/sql.php:78 tbl_operations.php:299 +#: db_operations.php:488 libraries/export/sql.php:78 tbl_operations.php:299 #: tbl_operations.php:538 msgid "Add AUTO_INCREMENT value" msgstr "AUTO_INCREMENT érték hozzáadása" -#: db_operations.php:483 tbl_operations.php:545 +#: db_operations.php:492 tbl_operations.php:545 msgid "Add constraints" msgstr "Megszorítás hozzáadása" -#: db_operations.php:496 +#: db_operations.php:505 msgid "Switch to copied database" msgstr "A másolt adatbázisra váltás" -#: db_operations.php:537 +#: db_operations.php:546 msgid "BLOB Repository" msgstr "BLOB-ratár" -#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1352 -#: libraries/server_links.inc.php:49 server_processlist.php:59 +#: db_operations.php:549 db_tracking.php:76 libraries/common.lib.php:1352 +#: libraries/server_links.inc.php:50 server_processlist.php:59 #: tbl_tracking.php:596 test/theme.php:101 msgid "Status" msgstr "Állapot" -#: db_operations.php:548 +#: db_operations.php:557 #, fuzzy #| msgid "Enabled" msgctxt "BLOB repository" msgid "Enabled" msgstr "Engedélyezett" -#: db_operations.php:552 +#: db_operations.php:561 msgid "Disable" msgstr "Letiltás" -#: db_operations.php:562 +#: db_operations.php:571 msgid "Damaged" msgstr "Sérült" -#: db_operations.php:566 +#: db_operations.php:575 #, fuzzy #| msgid "Repair" msgctxt "BLOB repository" msgid "Repair" msgstr "Javítás" -#: db_operations.php:574 +#: db_operations.php:583 #, fuzzy #| msgid "Disabled" msgctxt "BLOB repository" msgid "Disabled" msgstr "Letiltott" -#: db_operations.php:578 +#: db_operations.php:587 msgid "Enable" msgstr "Engedélyezés" -#: db_operations.php:602 libraries/Index.class.php:448 +#: db_operations.php:611 libraries/Index.class.php:448 #: libraries/db_structure.lib.php:62 libraries/mysql_charsets.lib.php:107 #: libraries/tbl_properties.inc.php:107 libraries/tbl_properties.inc.php:730 #: server_collations.php:54 server_collations.php:66 server_databases.php:111 #: tbl_operations.php:363 tbl_select.php:137 tbl_structure.php:179 -#: tbl_structure.php:767 tbl_tracking.php:275 tbl_tracking.php:326 +#: tbl_structure.php:765 tbl_tracking.php:275 tbl_tracking.php:326 msgid "Collation" msgstr "Illesztés" -#: db_operations.php:615 main.php:316 pdf_schema.php:34 +#: db_operations.php:624 main.php:316 pdf_schema.php:34 #, php-format msgid "" "The additional features for working with linked tables have been " @@ -336,14 +332,14 @@ msgstr "" "A hivatkozott táblákkal történő munka kiegészítő funkciói inaktiválásra " "kerültek. Ha szeretné megtudni, hogy miért, kattintson %side%s." -#: db_operations.php:648 +#: db_operations.php:657 msgid "Edit PDF Pages" 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:1665 -#: server_privileges.php:1721 server_privileges.php:1985 +#: libraries/header.inc.php:130 pdf_pages.php:424 server_privileges.php:1685 +#: server_privileges.php:1741 server_privileges.php:2005 #: server_synchronize.php:423 server_synchronize.php:866 tbl_tracking.php:592 #: test/theme.php:75 msgid "Table" @@ -352,7 +348,7 @@ msgstr "Tábla" #: db_printview.php:105 libraries/db_structure.lib.php:56 #: libraries/header_printview.inc.php:63 libraries/import.lib.php:146 #: navigation.php:638 navigation.php:660 server_databases.php:122 -#: tbl_printview.php:394 tbl_structure.php:365 tbl_structure.php:777 +#: tbl_printview.php:394 tbl_structure.php:365 tbl_structure.php:775 msgid "Rows" msgstr "sor" @@ -360,30 +356,30 @@ msgstr "sor" msgid "Size" msgstr "Méret" -#: db_printview.php:162 db_structure.php:457 libraries/export/sql.php:559 +#: db_printview.php:162 db_structure.php:455 libraries/export/sql.php:559 #: libraries/export/sql.php:899 msgid "in use" msgstr "használatban" #: db_printview.php:187 libraries/db_info.inc.php:88 #: libraries/export/sql.php:514 pdf_schema.php:1241 tbl_printview.php:434 -#: tbl_structure.php:809 +#: tbl_structure.php:807 msgid "Creation" msgstr "Létrehozás" #: db_printview.php:196 libraries/db_info.inc.php:93 #: libraries/export/sql.php:519 pdf_schema.php:1246 tbl_printview.php:444 -#: tbl_structure.php:817 +#: tbl_structure.php:815 msgid "Last update" msgstr "Utolsó frissítés" #: db_printview.php:205 libraries/db_info.inc.php:98 #: libraries/export/sql.php:524 pdf_schema.php:1251 tbl_printview.php:454 -#: tbl_structure.php:825 +#: tbl_structure.php:823 msgid "Last check" msgstr "Utolsó ellenőrzés" -#: db_printview.php:222 db_structure.php:480 +#: db_printview.php:222 db_structure.php:478 #, fuzzy, php-format #| msgid "%s table(s)" msgid "%s table" @@ -444,7 +440,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:297 tbl_change.php:1031 tbl_indexes.php:250 +#: server_privileges.php:298 tbl_change.php:1031 tbl_indexes.php:250 #: tbl_select.php:288 msgid "Or" msgstr "Vagy" @@ -517,9 +513,9 @@ 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:2833 +#: db_structure.php:105 libraries/common.lib.php:2837 #: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50 -#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:467 +#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:465 msgid "Browse" msgstr "Tartalom" @@ -564,36 +560,36 @@ 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:2832 libraries/sql_query_form.lib.php:334 +#: libraries/common.lib.php:2836 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:2829 libraries/common.lib.php:2836 +#: libraries/common.lib.php:2833 libraries/common.lib.php:2840 #: 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:1106 #: libraries/tbl_links.inc.php:56 pmd_general.php:134 -#: server_privileges.php:593 server_replication.php:315 tbl_tracking.php:269 +#: server_privileges.php:594 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:1656 +#: db_structure.php:543 db_structure.php:544 db_tracking.php:91 +#: libraries/Index.class.php:483 libraries/common.lib.php:1657 #: 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 -#: tbl_structure.php:152 tbl_structure.php:471 +#: tbl_structure.php:152 tbl_structure.php:469 msgid "Drop" 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:1655 +#: db_structure.php:541 db_structure.php:542 libraries/common.lib.php:1656 #: libraries/mult_submits.inc.php:39 libraries/tbl_links.inc.php:105 msgid "Empty" msgstr "Kiürítés" @@ -603,25 +599,25 @@ msgstr "Kiürítés" msgid "Table %s has been emptied" msgstr "A(z) %s tábla kiürítése megtörtént" -#: db_structure.php:326 libraries/tbl_links.inc.php:133 +#: db_structure.php:325 libraries/tbl_links.inc.php:133 #, php-format msgid "View %s has been dropped" msgstr "A(z) %s nézet eldobása kész" -#: db_structure.php:326 libraries/tbl_links.inc.php:133 +#: db_structure.php:325 libraries/tbl_links.inc.php:133 #, php-format msgid "Table %s has been dropped" msgstr "A(z) %s tábla eldobása megtörtént" -#: db_structure.php:333 +#: db_structure.php:332 msgid "Tracking is active." msgstr "" -#: db_structure.php:335 +#: db_structure.php:334 msgid "Tracking is not active." msgstr "" -#: db_structure.php:420 libraries/display_tbl.lib.php:1944 +#: db_structure.php:418 libraries/display_tbl.lib.php:1944 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation%" @@ -630,86 +626,86 @@ msgstr "" "Ebben a nézetben legalább ennyi számú sor van. Kérjük, hogy nézzen utána a %" "sdokumentációban%s." -#: db_structure.php:434 db_structure.php:448 libraries/header.inc.php:126 +#: db_structure.php:432 db_structure.php:446 libraries/header.inc.php:130 #: libraries/tbl_info.inc.php:66 tbl_structure.php:185 test/theme.php:74 msgid "View" msgstr "Nézet" -#: db_structure.php:485 libraries/db_structure.lib.php:49 -#: libraries/server_links.inc.php:70 server_replication.php:33 +#: db_structure.php:483 libraries/db_structure.lib.php:49 +#: libraries/server_links.inc.php:71 server_replication.php:33 #: server_replication.php:164 server_status.php:369 msgid "Replication" msgstr "Többszörözés" -#: db_structure.php:489 +#: db_structure.php:487 msgid "Sum" msgstr "Összeg" -#: db_structure.php:496 libraries/StorageEngine.class.php:356 +#: db_structure.php:494 libraries/StorageEngine.class.php:356 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "Ezen a MySQL szerveren a(z) %s az alapértelmezett tárolómotor." -#: db_structure.php:524 db_structure.php:541 db_structure.php:542 +#: db_structure.php:522 db_structure.php:539 db_structure.php:540 #: 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:1596 tbl_structure.php:455 -#: tbl_structure.php:464 +#: server_databases.php:351 server_privileges.php:1616 tbl_structure.php:453 +#: tbl_structure.php:462 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:569 -#: server_privileges.php:1599 tbl_structure.php:458 +#: db_structure.php:525 libraries/display_tbl.lib.php:2076 +#: server_databases.php:348 server_privileges.php:570 +#: server_privileges.php:1619 tbl_structure.php:456 msgid "Check All" msgstr "Mind kijelölése" -#: db_structure.php:531 libraries/display_tbl.lib.php:2077 +#: db_structure.php:529 libraries/display_tbl.lib.php:2077 #: libraries/replication_gui.lib.php:33 server_databases.php:350 -#: server_privileges.php:572 server_privileges.php:1603 tbl_structure.php:462 +#: server_privileges.php:573 server_privileges.php:1623 tbl_structure.php:460 msgid "Uncheck All" msgstr "Kijelölés törlése" -#: db_structure.php:536 +#: db_structure.php:534 msgid "Check tables having overhead" msgstr "A felülírott táblák kijelölése" -#: db_structure.php:547 db_structure.php:548 db_structure.php:599 +#: db_structure.php:545 db_structure.php:546 db_structure.php:597 #: libraries/display_tbl.lib.php:2180 libraries/mult_submits.inc.php:28 -#: tbl_structure.php:492 tbl_structure.php:494 +#: tbl_structure.php:490 tbl_structure.php:492 msgid "Print view" msgstr "Nyomtatási nézet" -#: db_structure.php:549 db_structure.php:550 libraries/mult_submits.inc.php:42 +#: db_structure.php:547 db_structure.php:548 libraries/mult_submits.inc.php:42 #: tbl_operations.php:581 msgid "Check table" msgstr "Tábla ellenőrzése" -#: db_structure.php:551 db_structure.php:552 libraries/mult_submits.inc.php:47 -#: tbl_operations.php:621 tbl_structure.php:709 tbl_structure.php:711 +#: db_structure.php:549 db_structure.php:550 libraries/mult_submits.inc.php:47 +#: tbl_operations.php:621 tbl_structure.php:707 tbl_structure.php:709 msgid "Optimize table" msgstr "Tábla optimalizálása" -#: db_structure.php:553 db_structure.php:554 libraries/mult_submits.inc.php:52 +#: db_structure.php:551 db_structure.php:552 libraries/mult_submits.inc.php:52 #: tbl_operations.php:611 msgid "Repair table" msgstr "Tábla javítása" -#: db_structure.php:555 db_structure.php:556 libraries/mult_submits.inc.php:57 +#: db_structure.php:553 db_structure.php:554 libraries/mult_submits.inc.php:57 #: tbl_operations.php:601 msgid "Analyze table" msgstr "Tábla elemzése" -#: db_structure.php:557 db_structure.php:558 libraries/db_links.inc.php:71 +#: db_structure.php:555 db_structure.php:556 libraries/db_links.inc.php:71 #: 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:1380 +#: libraries/server_links.inc.php:85 libraries/tbl_links.inc.php:82 +#: pmd_pdf.php:84 pmd_pdf.php:109 server_privileges.php:1397 #: setup/frames/menu.inc.php:22 tbl_row_action.php:59 msgid "Export" msgstr "Exportálás" -#: db_structure.php:606 libraries/display_pdf_schema.lib.php:44 +#: db_structure.php:604 libraries/display_pdf_schema.lib.php:44 msgid "Data Dictionary" msgstr "Adatkönyvtár" @@ -721,10 +717,10 @@ msgstr "A zárolt táblák kihagyása" #: db_tracking.php:71 libraries/export/htmlword.php:86 #: libraries/export/latex.php:148 libraries/export/odt.php:113 #: libraries/export/sql.php:342 libraries/export/texytext.php:84 -#: libraries/export/xml.php:255 libraries/header.inc.php:106 +#: libraries/export/xml.php:255 libraries/header.inc.php:110 #: libraries/header_printview.inc.php:58 server_databases.php:169 -#: server_privileges.php:1660 server_privileges.php:1721 -#: server_privileges.php:1979 server_processlist.php:56 +#: server_privileges.php:1680 server_privileges.php:1741 +#: server_privileges.php:1999 server_processlist.php:56 #: server_synchronize.php:1179 server_synchronize.php:1183 #: tbl_tracking.php:591 test/theme.php:65 msgid "Database" @@ -745,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:1542 server_privileges.php:1725 -#: server_privileges.php:2073 tbl_structure.php:187 +#: server_privileges.php:1562 server_privileges.php:1745 +#: server_privileges.php:2094 tbl_structure.php:187 msgid "Action" msgstr "Művelet" @@ -783,8 +779,8 @@ msgstr "Csak a szerkezet" msgid "Untracked tables" msgstr "A zárolt táblák kihagyása" -#: db_tracking.php:172 db_tracking.php:174 tbl_structure.php:528 -#: tbl_structure.php:530 +#: db_tracking.php:172 db_tracking.php:174 tbl_structure.php:526 +#: tbl_structure.php:528 #, fuzzy msgid "Track table" msgstr "Tábla ellenőrzése" @@ -955,187 +951,235 @@ 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:1236 user_password.php:70 +#: js/messages.php:44 server_privileges.php:1241 user_password.php:70 msgid "The password is empty!" msgstr "Üres a jelszó mező!" -#: js/messages.php:45 server_privileges.php:1234 user_password.php:73 +#: js/messages.php:45 server_privileges.php:1239 user_password.php:73 msgid "The passwords aren't the same!" msgstr "Nem egyeznek a jelszavak!" -#: js/messages.php:49 pmd_general.php:342 pmd_general.php:379 +#: js/messages.php:46 +#, fuzzy +#| msgid "Add a new User" +msgid "Add a New User" +msgstr "Új felhasználó hozzáadása" + +#: js/messages.php:47 js/messages.php:54 pmd_general.php:342 +#: pmd_general.php:379 msgid "Cancel" msgstr "Mégse" -#: js/messages.php:52 pmd_save_pos.php:54 +#: js/messages.php:48 +#, fuzzy +msgid "Create User" +msgstr "Kapcsolat létrehozása" + +#: js/messages.php:49 +#, fuzzy +#| msgid "Reload privileges" +msgid "Reloading Privileges" +msgstr "Jogok újratöltése" + +#: js/messages.php:50 +#, fuzzy +#| msgid "Remove selected users" +msgid "Removing Selected Users" +msgstr "A kijelölt felhasználók törlése" + +#: js/messages.php:57 +#, fuzzy +#| msgid "Load" +msgid "Loading" +msgstr "Betöltés" + +#: js/messages.php:58 +#, fuzzy +#| msgid "Processes" +msgid "Processing Request" +msgstr "Folyamatok" + +#: js/messages.php:59 +msgid "Error in Processing Request" +msgstr "" + +#: js/messages.php:60 +msgid "Dropping Column" +msgstr "" + +#: js/messages.php:61 +msgid "Adding Primary Key" +msgstr "" + +#: js/messages.php:64 pmd_save_pos.php:54 msgid "Modifications have been saved" msgstr "A módosítások mentése megtörtént" -#: js/messages.php:53 pmd_relation_upd.php:49 +#: js/messages.php:65 pmd_relation_upd.php:49 msgid "Relation deleted" msgstr "A kapcsolat törlése kész" -#: js/messages.php:54 pmd_relation_new.php:64 +#: js/messages.php:66 pmd_relation_new.php:64 msgid "FOREIGN KEY relation added" msgstr "IDEGEN KULCS kapcsolat hozzáadása megtörtént" -#: js/messages.php:55 pmd_relation_new.php:86 +#: js/messages.php:67 pmd_relation_new.php:86 msgid "Internal relation added" msgstr "A belső kapcsolat hozzáadása megtörtént" -#: js/messages.php:56 pmd_relation_new.php:63 pmd_relation_new.php:88 +#: js/messages.php:68 pmd_relation_new.php:63 pmd_relation_new.php:88 msgid "Error: Relation not added." msgstr "Hiba: Nem adta hozzá a kapcsolatot." -#: js/messages.php:57 pmd_relation_new.php:31 +#: js/messages.php:69 pmd_relation_new.php:31 msgid "Error: relation already exists." msgstr "Hiba: A kapcsolat már létezik." -#: js/messages.php:58 +#: js/messages.php:70 msgid "Error saving coordinates for Designer." msgstr "Hiba történt a Tervező koordinátáinak mentésekor." -#: js/messages.php:59 libraries/relation.lib.php:107 +#: js/messages.php:71 libraries/relation.lib.php:107 #: libraries/relation.lib.php:119 msgid "General relation features" msgstr "Általános relációs jellemzők" -#: js/messages.php:59 libraries/relation.lib.php:101 +#: js/messages.php:71 libraries/relation.lib.php:101 #: libraries/relation.lib.php:108 msgid "Disabled" msgstr "Letiltott" -#: js/messages.php:60 +#: js/messages.php:72 msgid "Select referenced key" msgstr "Válassza ki a hivatkozott kulcsot" -#: js/messages.php:61 +#: js/messages.php:73 msgid "Select Foreign Key" msgstr "Idegen kulcs kiválasztása" -#: js/messages.php:62 +#: js/messages.php:74 msgid "Please select the primary key or a unique key" msgstr "Válassza ki az elsődleges kulcsot, vagy egy egyedi kulcsot" -#: js/messages.php:63 pmd_general.php:77 tbl_relation.php:548 +#: js/messages.php:75 pmd_general.php:77 tbl_relation.php:548 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" msgstr "Válassza ki a megjelenítendő mezőt" #. l10n: Display text for calendar close link -#: js/messages.php:73 +#: js/messages.php:85 #, fuzzy #| msgid "Donate" msgid "Done" msgstr "Adományozás" #. l10n: Display text for previous month link in calendar -#: js/messages.php:75 +#: js/messages.php:87 #, fuzzy #| msgid "Previous" msgid "Prev" msgstr "Előző" #. l10n: Display text for next month link in calendar -#: js/messages.php:77 libraries/common.lib.php:2353 -#: libraries/common.lib.php:2356 libraries/display_tbl.lib.php:338 +#: js/messages.php:89 libraries/common.lib.php:2357 +#: libraries/common.lib.php:2360 libraries/display_tbl.lib.php:338 #: server_binlog.php:205 server_binlog.php:207 tbl_printview.php:424 -#: tbl_structure.php:801 +#: tbl_structure.php:799 msgid "Next" msgstr "Következő" #. l10n: Display text for current month link in calendar -#: js/messages.php:79 +#: js/messages.php:91 #, fuzzy #| msgid "Total" msgid "Today" msgstr "Összesen" -#: js/messages.php:82 +#: js/messages.php:94 #, fuzzy #| msgid "Binary" msgid "January" msgstr "Bináris" -#: js/messages.php:83 +#: js/messages.php:95 msgid "February" msgstr "" -#: js/messages.php:84 +#: js/messages.php:96 #, fuzzy #| msgid "Mar" msgid "March" msgstr "márc." -#: js/messages.php:85 +#: js/messages.php:97 #, fuzzy #| msgid "Apr" msgid "April" msgstr "ápr." -#: js/messages.php:86 +#: js/messages.php:98 msgid "May" msgstr "máj." -#: js/messages.php:87 +#: js/messages.php:99 #, fuzzy #| msgid "Jun" msgid "June" msgstr "jún." -#: js/messages.php:88 +#: js/messages.php:100 #, fuzzy #| msgid "Jul" msgid "July" msgstr "júl." -#: js/messages.php:89 +#: js/messages.php:101 #, fuzzy #| msgid "Aug" msgid "August" msgstr "aug." -#: js/messages.php:90 +#: js/messages.php:102 msgid "September" msgstr "" -#: js/messages.php:91 +#: js/messages.php:103 #, fuzzy #| msgid "Oct" msgid "October" msgstr "okt." -#: js/messages.php:92 +#: js/messages.php:104 msgid "November" msgstr "" -#: js/messages.php:93 +#: js/messages.php:105 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:97 libraries/common.lib.php:1557 +#: js/messages.php:109 libraries/common.lib.php:1557 msgid "Jan" msgstr "jan." #. l10n: Short month name -#: js/messages.php:99 libraries/common.lib.php:1559 +#: js/messages.php:111 libraries/common.lib.php:1559 msgid "Feb" msgstr "febr." #. l10n: Short month name -#: js/messages.php:101 libraries/common.lib.php:1561 +#: js/messages.php:113 libraries/common.lib.php:1561 msgid "Mar" msgstr "márc." #. l10n: Short month name -#: js/messages.php:103 libraries/common.lib.php:1563 +#: js/messages.php:115 libraries/common.lib.php:1563 msgid "Apr" msgstr "ápr." #. l10n: Short month name -#: js/messages.php:105 libraries/common.lib.php:1565 +#: js/messages.php:117 libraries/common.lib.php:1565 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1143,178 +1187,178 @@ msgid "May" msgstr "máj." #. l10n: Short month name -#: js/messages.php:107 libraries/common.lib.php:1567 +#: js/messages.php:119 libraries/common.lib.php:1567 msgid "Jun" msgstr "jún." #. l10n: Short month name -#: js/messages.php:109 libraries/common.lib.php:1569 +#: js/messages.php:121 libraries/common.lib.php:1569 msgid "Jul" msgstr "júl." #. l10n: Short month name -#: js/messages.php:111 libraries/common.lib.php:1571 +#: js/messages.php:123 libraries/common.lib.php:1571 msgid "Aug" msgstr "aug." #. l10n: Short month name -#: js/messages.php:113 libraries/common.lib.php:1573 +#: js/messages.php:125 libraries/common.lib.php:1573 msgid "Sep" msgstr "szept." #. l10n: Short month name -#: js/messages.php:115 libraries/common.lib.php:1575 +#: js/messages.php:127 libraries/common.lib.php:1575 msgid "Oct" msgstr "okt." #. l10n: Short month name -#: js/messages.php:117 libraries/common.lib.php:1577 +#: js/messages.php:129 libraries/common.lib.php:1577 msgid "Nov" msgstr "nov." #. l10n: Short month name -#: js/messages.php:119 libraries/common.lib.php:1579 +#: js/messages.php:131 libraries/common.lib.php:1579 msgid "Dec" msgstr "dec." -#: js/messages.php:122 +#: js/messages.php:134 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "V" -#: js/messages.php:123 +#: js/messages.php:135 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "H" -#: js/messages.php:124 +#: js/messages.php:136 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "K" -#: js/messages.php:125 +#: js/messages.php:137 msgid "Wednesday" msgstr "" -#: js/messages.php:126 +#: js/messages.php:138 msgid "Thursday" msgstr "" -#: js/messages.php:127 +#: js/messages.php:139 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "P" -#: js/messages.php:128 +#: js/messages.php:140 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:132 libraries/common.lib.php:1582 +#: js/messages.php:144 libraries/common.lib.php:1582 msgid "Sun" msgstr "V" #. l10n: Short week day name -#: js/messages.php:134 libraries/common.lib.php:1584 +#: js/messages.php:146 libraries/common.lib.php:1584 msgid "Mon" msgstr "H" #. l10n: Short week day name -#: js/messages.php:136 libraries/common.lib.php:1586 +#: js/messages.php:148 libraries/common.lib.php:1586 msgid "Tue" msgstr "K" #. l10n: Short week day name -#: js/messages.php:138 libraries/common.lib.php:1588 +#: js/messages.php:150 libraries/common.lib.php:1588 msgid "Wed" msgstr "Sze" #. l10n: Short week day name -#: js/messages.php:140 libraries/common.lib.php:1590 +#: js/messages.php:152 libraries/common.lib.php:1590 msgid "Thu" msgstr "Cs" #. l10n: Short week day name -#: js/messages.php:142 libraries/common.lib.php:1592 +#: js/messages.php:154 libraries/common.lib.php:1592 msgid "Fri" msgstr "P" #. l10n: Short week day name -#: js/messages.php:144 libraries/common.lib.php:1594 +#: js/messages.php:156 libraries/common.lib.php:1594 msgid "Sat" msgstr "Szo" #. l10n: Minimal week day name -#: js/messages.php:148 +#: js/messages.php:160 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "V" #. l10n: Minimal week day name -#: js/messages.php:150 +#: js/messages.php:162 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "H" #. l10n: Minimal week day name -#: js/messages.php:152 +#: js/messages.php:164 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "K" #. l10n: Minimal week day name -#: js/messages.php:154 +#: js/messages.php:166 #, fuzzy #| msgid "Wed" msgid "We" msgstr "Sze" #. l10n: Minimal week day name -#: js/messages.php:156 +#: js/messages.php:168 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "Cs" #. l10n: Minimal week day name -#: js/messages.php:158 +#: js/messages.php:170 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "P" #. l10n: Minimal week day name -#: js/messages.php:160 +#: js/messages.php:172 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "Szo" #. l10n: Column header for week of the year in calendar -#: js/messages.php:162 +#: js/messages.php:174 #, fuzzy #| msgid "Wiki" msgid "Wk" msgstr "Wiki" -#: js/messages.php:164 +#: js/messages.php:176 msgid "Hour" msgstr "" -#: js/messages.php:165 +#: js/messages.php:177 #, fuzzy #| msgid "in use" msgid "Minute" msgstr "használatban" -#: js/messages.php:166 +#: js/messages.php:178 #, fuzzy #| msgid "per second" msgid "Second" @@ -1375,7 +1419,7 @@ msgstr "Indexek" #: libraries/Index.class.php:444 libraries/mult_submits.inc.php:103 #: libraries/tbl_properties.inc.php:519 tbl_structure.php:33 -#: tbl_structure.php:155 tbl_structure.php:159 tbl_structure.php:474 +#: tbl_structure.php:155 tbl_structure.php:159 tbl_structure.php:472 #: tbl_tracking.php:322 msgid "Unique" msgstr "Egyedi" @@ -1418,8 +1462,8 @@ msgstr "" "A(z) %1$s és a(z) %2$s egyenlőnek tűnik, és egyikük valószínűleg " "eltávolítható." -#: libraries/List_Database.class.php:431 libraries/server_links.inc.php:41 -#: server_databases.php:88 server_privileges.php:1660 +#: libraries/List_Database.class.php:431 libraries/server_links.inc.php:42 +#: server_databases.php:88 server_privileges.php:1680 #: setup/lib/messages.inc.php:110 test/theme.php:93 msgid "Databases" msgstr "Adatbázisok" @@ -1592,7 +1636,7 @@ msgstr "Jelszó:" msgid "Server Choice" msgstr "Szerver választása" -#: libraries/auth/cookie.auth.lib.php:320 libraries/header.inc.php:59 +#: libraries/auth/cookie.auth.lib.php:320 libraries/header.inc.php:63 msgid "Cookies must be enabled past this point." msgstr "Ettől a ponttól engedélyeznie kell a cookie-k fogadását." @@ -1675,7 +1719,7 @@ msgstr "" "úgy tűnik, hogy a szükséges kiterjesztések betöltése megtörtént. Ellenőrizze " "a PHP beállításokat." -#: libraries/common.inc.php:583 +#: libraries/common.inc.php:587 msgid "" "phpMyAdmin was unable to read your configuration file!
This might " "happen if PHP finds a parse error in it or PHP cannot find the file.
Ha üres oldalt kap, akkor minden " "rendben." -#: libraries/common.inc.php:594 +#: libraries/common.inc.php:598 #, fuzzy, php-format #| msgid "Could not load default configuration from: \"%1$s\"" msgid "Could not load default configuration from: %1$s" msgstr "" "Nem lehetett betölteni az alapértelmezett konfigurációt innen: \"%1$s\"" -#: libraries/common.inc.php:599 +#: libraries/common.inc.php:603 msgid "" "The $cfg['PmaAbsoluteUri'] directive MUST be set in your " "configuration file!" @@ -1706,28 +1750,28 @@ msgstr "" "A $cfg['PmaAbsoluteUri'] utasítás értékét a konfigurációs fájlban " "KELL megadni!" -#: libraries/common.inc.php:629 +#: libraries/common.inc.php:633 #, fuzzy, php-format #| msgid "Invalid server index: \"%s\"" msgid "Invalid server index: %s" msgstr "Érvénytelen szerverindex: \"%s\"" -#: libraries/common.inc.php:636 +#: libraries/common.inc.php:640 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "A(z) %1$s szerver hosztneve érvénytelen. Ellenőrizze a beállításokat." -#: libraries/common.inc.php:645 libraries/header.inc.php:96 +#: libraries/common.inc.php:649 libraries/header.inc.php:100 #: libraries/select_server.lib.php:41 libraries/select_server.lib.php:47 #: main.php:185 test/theme.php:57 msgid "Server" msgstr "Szerver" -#: libraries/common.inc.php:823 +#: libraries/common.inc.php:827 msgid "Invalid authentication method set in configuration:" msgstr "Érvénytelen hitelesítési mód került beállításra a konfigurációban:" -#: libraries/common.inc.php:926 +#: libraries/common.inc.php:930 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Frissítenie kell %s %s vagy újabb verzióra." @@ -1861,45 +1905,45 @@ msgstr "." msgid "%B %d, %Y at %I:%M %p" msgstr "%Y. %B %d. %H:%M" -#: libraries/common.lib.php:1907 +#: libraries/common.lib.php:1911 #, 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:2322 libraries/common.lib.php:2325 +#: libraries/common.lib.php:2326 libraries/common.lib.php:2329 #: libraries/display_tbl.lib.php:290 server_status.php:719 msgid "Begin" msgstr "A tetejére" -#: libraries/common.lib.php:2323 libraries/common.lib.php:2326 +#: libraries/common.lib.php:2327 libraries/common.lib.php:2330 #: libraries/display_tbl.lib.php:291 server_binlog.php:168 #: server_binlog.php:170 msgid "Previous" msgstr "Előző" -#: libraries/common.lib.php:2354 libraries/common.lib.php:2357 +#: libraries/common.lib.php:2358 libraries/common.lib.php:2361 #: libraries/display_tbl.lib.php:353 msgid "End" msgstr "Vége" -#: libraries/common.lib.php:2430 +#: libraries/common.lib.php:2434 #, php-format msgid "Jump to database "%s"." msgstr "Ugrás a(z) "%s" adatbázishoz." -#: libraries/common.lib.php:2450 +#: libraries/common.lib.php:2454 #, 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:2830 libraries/common.lib.php:2837 +#: libraries/common.lib.php:2834 libraries/common.lib.php:2841 #: libraries/db_links.inc.php:68 libraries/export/sql.php:25 -#: libraries/import/sql.php:18 libraries/server_links.inc.php:45 +#: libraries/import/sql.php:18 libraries/server_links.inc.php:46 #: libraries/tbl_links.inc.php:60 querywindow.php:99 test/theme.php:97 msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2839 libraries/db_links.inc.php:104 +#: libraries/common.lib.php:2843 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,15 +1992,15 @@ msgstr "Lekérdezés" msgid "Designer" msgstr "Tervező" -#: libraries/db_links.inc.php:98 libraries/server_links.inc.php:88 +#: libraries/db_links.inc.php:98 libraries/server_links.inc.php:89 #: libraries/tbl_links.inc.php:91 pmd_pdf.php:84 pmd_pdf.php:110 #: setup/frames/menu.inc.php:21 msgid "Import" msgstr "Importálás" -#: libraries/db_links.inc.php:111 libraries/server_links.inc.php:66 -#: server_privileges.php:111 server_privileges.php:1722 -#: server_privileges.php:2071 test/theme.php:117 +#: libraries/db_links.inc.php:111 libraries/server_links.inc.php:67 +#: server_privileges.php:112 server_privileges.php:1742 +#: server_privileges.php:2092 test/theme.php:117 msgid "Privileges" msgstr "Jogok" @@ -1975,7 +2019,7 @@ msgid "" msgstr "Becsült érték lehet. Lásd: GYIK 3.11" #: libraries/db_structure.lib.php:69 server_databases.php:142 -#: tbl_printview.php:336 tbl_structure.php:682 +#: tbl_printview.php:336 tbl_structure.php:680 msgid "Overhead" msgstr "Felülírás" @@ -1996,7 +2040,7 @@ msgstr "" "(vagy nem megfelelően állították be a helyi MySQL szerver " "szoftvercsatornáját)" -#: libraries/dbi/mysql.dbi.lib.php:362 tbl_structure.php:608 +#: libraries/dbi/mysql.dbi.lib.php:362 tbl_structure.php:606 msgid "Details..." msgstr "Részletek..." @@ -2006,22 +2050,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:807 +#: libraries/replication_gui.lib.php:345 server_privileges.php:808 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:796 -#: server_privileges.php:800 server_privileges.php:811 -#: server_privileges.php:1538 server_synchronize.php:1175 +#: libraries/replication_gui.lib.php:349 server_privileges.php:797 +#: server_privileges.php:801 server_privileges.php:812 +#: server_privileges.php:1558 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:815 server_privileges.php:818 +#: server_privileges.php:816 server_privileges.php:819 msgid "Re-type" msgstr "Újraírás" @@ -2036,12 +2080,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:822 +#: libraries/replication_gui.lib.php:360 server_privileges.php:823 msgid "Generate Password" msgstr "Jelszó generálása" #: libraries/display_change_password.lib.php:75 -#: libraries/replication_gui.lib.php:363 server_privileges.php:825 +#: libraries/replication_gui.lib.php:363 server_privileges.php:826 msgid "Generate" msgstr "Generálás" @@ -2054,8 +2098,8 @@ msgstr "Új adatbázis létrehozása" msgid "Create" msgstr "Létrehozás" -#: libraries/display_create_database.lib.php:40 server_privileges.php:113 -#: server_privileges.php:1427 server_replication.php:35 +#: libraries/display_create_database.lib.php:40 server_privileges.php:114 +#: server_privileges.php:1447 server_replication.php:35 msgid "No Privileges" msgstr "Nincs jog" @@ -2148,7 +2192,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:1875 server_processlist.php:75 +#: server_privileges.php:1895 server_processlist.php:75 msgid "None" msgstr "Nincs" @@ -2341,7 +2385,7 @@ msgstr "Kulcs szerinti rendezés" #: libraries/import/docsql.php:34 libraries/import/ldi.php:47 #: libraries/import/ods.php:30 libraries/import/sql.php:20 #: libraries/import/xls.php:26 libraries/import/xlsx.php:26 -#: libraries/import/xml.php:25 tbl_select.php:267 tbl_structure.php:753 +#: libraries/import/xml.php:25 tbl_select.php:267 tbl_structure.php:751 msgid "Options" msgstr "Beállítások" @@ -2419,7 +2463,7 @@ msgstr "a lekérdezés %01.4f másodpercig tartott" #: libraries/display_tbl.lib.php:2089 libraries/mult_submits.inc.php:113 #: querywindow.php:125 querywindow.php:129 querywindow.php:132 -#: tbl_structure.php:25 tbl_structure.php:150 tbl_structure.php:470 +#: tbl_structure.php:25 tbl_structure.php:150 tbl_structure.php:468 msgid "Change" msgstr "Módosítás" @@ -2489,7 +2533,7 @@ msgstr "Pufferkészlet kihasználtsága" #: libraries/engines/innodb.lib.php:194 server_databases.php:137 #: server_databases.php:305 server_status.php:525 server_status.php:586 -#: server_status.php:607 tbl_printview.php:351 tbl_structure.php:696 +#: server_status.php:607 tbl_printview.php:351 tbl_structure.php:694 msgid "Total" msgstr "Összesen" @@ -2777,7 +2821,7 @@ msgstr "" "nekik." #: libraries/export/codegen.php:37 setup/lib/messages.inc.php:88 -#: tbl_printview.php:376 tbl_structure.php:737 +#: tbl_printview.php:376 tbl_structure.php:735 msgid "Format" msgstr "Formátum" @@ -2851,8 +2895,8 @@ 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:576 server_replication.php:316 tbl_printview.php:317 -#: tbl_structure.php:665 +#: server_privileges.php:577 server_replication.php:316 tbl_printview.php:317 +#: tbl_structure.php:663 msgid "Data" msgstr "Adatok" @@ -2901,9 +2945,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:731 -#: server_privileges.php:734 server_privileges.php:790 -#: server_privileges.php:1537 server_privileges.php:2069 +#: libraries/replication_gui.lib.php:329 server_privileges.php:732 +#: server_privileges.php:735 server_privileges.php:791 +#: server_privileges.php:1557 server_privileges.php:2090 #: server_processlist.php:55 server_synchronize.php:1159 msgid "Host" msgstr "Hoszt" @@ -3101,7 +3145,7 @@ msgstr "Exportálás alapértelmezései" msgid "Open new phpMyAdmin window" msgstr "Új phpMyAdmin ablak nyitása" -#: libraries/header.inc.php:115 +#: libraries/header.inc.php:119 #, fuzzy msgid "New table" msgstr "Nincs tábla" @@ -3264,20 +3308,20 @@ 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 +#: tbl_structure.php:471 msgid "Primary" msgstr "Elsődleges" #: libraries/mult_submits.inc.php:98 libraries/tbl_properties.inc.php:116 #: libraries/tbl_properties.inc.php:525 tbl_printview.php:326 #: tbl_structure.php:31 tbl_structure.php:154 tbl_structure.php:158 -#: tbl_structure.php:475 tbl_structure.php:673 +#: tbl_structure.php:473 tbl_structure.php:671 msgid "Index" msgstr "Index" #: libraries/mult_submits.inc.php:108 libraries/tbl_properties.inc.php:531 #: tbl_structure.php:35 tbl_structure.php:156 tbl_structure.php:160 -#: tbl_structure.php:478 +#: tbl_structure.php:476 msgid "Fulltext" msgstr "Teljes szöveg" @@ -3581,8 +3625,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:711 -#: server_privileges.php:714 server_privileges.php:721 +#: libraries/replication_gui.lib.php:259 server_privileges.php:712 +#: server_privileges.php:715 server_privileges.php:722 #: server_synchronize.php:1171 msgid "User name" msgstr "Felhasználónév" @@ -3607,7 +3651,7 @@ msgstr "Változó" #: 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 +#: tbl_structure.php:727 msgid "Value" msgstr "Érték" @@ -3625,34 +3669,34 @@ msgstr "" msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:254 server_privileges.php:716 +#: libraries/replication_gui.lib.php:254 server_privileges.php:717 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:717 -#: server_privileges.php:784 server_privileges.php:808 -#: server_privileges.php:1928 server_privileges.php:1958 +#: libraries/replication_gui.lib.php:346 server_privileges.php:718 +#: server_privileges.php:785 server_privileges.php:809 +#: server_privileges.php:1948 server_privileges.php:1978 msgid "Use text field" msgstr "Szöveges mező használata" -#: libraries/replication_gui.lib.php:302 server_privileges.php:764 +#: libraries/replication_gui.lib.php:302 server_privileges.php:765 msgid "Any host" msgstr "Bármilyen hoszt" -#: libraries/replication_gui.lib.php:306 server_privileges.php:768 +#: libraries/replication_gui.lib.php:306 server_privileges.php:769 msgid "Local" msgstr "Helyi" -#: libraries/replication_gui.lib.php:312 server_privileges.php:773 +#: libraries/replication_gui.lib.php:312 server_privileges.php:774 msgid "This Host" msgstr "Ez a hoszt" -#: libraries/replication_gui.lib.php:318 server_privileges.php:779 +#: libraries/replication_gui.lib.php:318 server_privileges.php:780 msgid "Use Host Table" msgstr "Hoszt-tábla használata" -#: libraries/replication_gui.lib.php:331 server_privileges.php:792 +#: libraries/replication_gui.lib.php:331 server_privileges.php:793 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -3688,29 +3732,29 @@ msgstr "Ismeretlen nyelv: %1$s." msgid "Servers" msgstr "Szerverek" -#: libraries/server_links.inc.php:53 server_engines.php:112 +#: libraries/server_links.inc.php:54 server_engines.php:112 #: server_engines.php:116 server_status.php:415 test/theme.php:105 msgid "Variables" msgstr "Változók" -#: libraries/server_links.inc.php:57 test/theme.php:109 +#: libraries/server_links.inc.php:58 test/theme.php:109 msgid "Charsets" msgstr "Karakterkészlet" -#: libraries/server_links.inc.php:61 test/theme.php:113 +#: libraries/server_links.inc.php:62 test/theme.php:113 msgid "Engines" msgstr "Motorok" -#: libraries/server_links.inc.php:76 server_binlog.php:110 +#: libraries/server_links.inc.php:77 server_binlog.php:110 #: server_status.php:364 test/theme.php:121 msgid "Binary log" msgstr "Bináris napló" -#: libraries/server_links.inc.php:80 +#: libraries/server_links.inc.php:81 msgid "Processes" msgstr "Folyamatok" -#: libraries/server_links.inc.php:92 server_synchronize.php:1092 +#: libraries/server_links.inc.php:93 server_synchronize.php:1092 #: server_synchronize.php:1100 msgid "Synchronize" msgstr "" @@ -3966,13 +4010,13 @@ msgstr "PARTITION definíció" msgid "Save" msgstr "Mentés" -#: libraries/tbl_properties.inc.php:780 tbl_structure.php:542 +#: libraries/tbl_properties.inc.php:780 tbl_structure.php:540 #, fuzzy, php-format #| msgid "Add %s field(s)" msgid "Add %s column(s)" msgstr "%s mező hozzáadása" -#: libraries/tbl_properties.inc.php:784 tbl_structure.php:536 +#: libraries/tbl_properties.inc.php:784 tbl_structure.php:534 #, fuzzy #| msgid "You have to add at least one field." msgid "You have to add at least one column." @@ -4193,8 +4237,8 @@ msgstr "Törlés" msgid "Protocol version" msgstr "Protokoll verzió" -#: main.php:189 server_privileges.php:1389 server_privileges.php:1536 -#: server_privileges.php:1650 server_privileges.php:2068 +#: main.php:189 server_privileges.php:1406 server_privileges.php:1556 +#: server_privileges.php:1670 server_privileges.php:2089 #: server_processlist.php:54 msgid "User" msgstr "Felhasználó" @@ -4654,117 +4698,117 @@ msgstr "Tárolómotorok" msgid "View dump (schema) of databases" msgstr "Adatbázis kiírás (séma) megtekintése" -#: server_privileges.php:24 server_privileges.php:266 +#: server_privileges.php:25 server_privileges.php:267 msgid "Includes all privileges except GRANT." msgstr "A GRANT kivételével minden jogot tartalmaz." -#: server_privileges.php:25 server_privileges.php:192 -#: server_privileges.php:515 +#: server_privileges.php:26 server_privileges.php:193 +#: server_privileges.php:516 msgid "Allows altering the structure of existing tables." msgstr "Engedélyezi a létező táblák szerkezetének megváltoztatását." -#: server_privileges.php:26 server_privileges.php:208 -#: server_privileges.php:521 +#: server_privileges.php:27 server_privileges.php:209 +#: server_privileges.php:522 msgid "Allows altering and dropping stored routines." msgstr "Engedélyezi a tárolt eljárások módosítását és eldobását." -#: server_privileges.php:27 server_privileges.php:184 -#: server_privileges.php:514 +#: server_privileges.php:28 server_privileges.php:185 +#: server_privileges.php:515 msgid "Allows creating new databases and tables." msgstr "Engedélyezi új adatbázisok és táblák készítését." -#: server_privileges.php:28 server_privileges.php:207 -#: server_privileges.php:520 +#: server_privileges.php:29 server_privileges.php:208 +#: server_privileges.php:521 msgid "Allows creating stored routines." msgstr "Engedélyezi tárolt eljárások létrehozását." -#: server_privileges.php:29 server_privileges.php:514 +#: server_privileges.php:30 server_privileges.php:515 msgid "Allows creating new tables." msgstr "Engedélyezi új táblák készítését." -#: server_privileges.php:30 server_privileges.php:195 -#: server_privileges.php:518 +#: server_privileges.php:31 server_privileges.php:196 +#: server_privileges.php:519 msgid "Allows creating temporary tables." msgstr "Engedélyezi ideiglenes táblák készítését." -#: server_privileges.php:31 server_privileges.php:209 -#: server_privileges.php:554 +#: server_privileges.php:32 server_privileges.php:210 +#: server_privileges.php:555 msgid "Allows creating, dropping and renaming user accounts." msgstr "" "Engedélyezi a felhasználói fiókok létrehozását, törlését és átnevezését." -#: server_privileges.php:32 server_privileges.php:199 -#: server_privileges.php:203 server_privileges.php:526 -#: server_privileges.php:530 +#: server_privileges.php:33 server_privileges.php:200 +#: server_privileges.php:204 server_privileges.php:527 +#: server_privileges.php:531 msgid "Allows creating new views." msgstr "Engedélyezi új nézetek létrehozását." -#: server_privileges.php:33 server_privileges.php:183 -#: server_privileges.php:506 +#: server_privileges.php:34 server_privileges.php:184 +#: server_privileges.php:507 msgid "Allows deleting data." msgstr "Engedélyezi az adatok törlését." -#: server_privileges.php:34 server_privileges.php:185 -#: server_privileges.php:517 +#: server_privileges.php:35 server_privileges.php:186 +#: server_privileges.php:518 msgid "Allows dropping databases and tables." msgstr "Engedélyezi az adatbázisok és táblák eldobását." -#: server_privileges.php:35 server_privileges.php:517 +#: server_privileges.php:36 server_privileges.php:518 msgid "Allows dropping tables." msgstr "Engedélyezi a táblák eldobását." -#: server_privileges.php:36 server_privileges.php:200 -#: server_privileges.php:534 +#: server_privileges.php:37 server_privileges.php:201 +#: server_privileges.php:535 msgid "Allows to set up events for the event scheduler" msgstr "Az eseményütemező eseményeinek beállítását teszi lehetővé" -#: server_privileges.php:37 server_privileges.php:210 -#: server_privileges.php:522 +#: server_privileges.php:38 server_privileges.php:211 +#: server_privileges.php:523 msgid "Allows executing stored routines." msgstr "Engedélyezi a tárolt eljárások végrehajtását." -#: server_privileges.php:38 server_privileges.php:189 -#: server_privileges.php:509 +#: server_privileges.php:39 server_privileges.php:190 +#: server_privileges.php:510 msgid "Allows importing data from and exporting data into files." msgstr "Engedélyezi az adatok fájlokba történő exportálását/importálását." -#: server_privileges.php:39 server_privileges.php:540 +#: server_privileges.php:40 server_privileges.php:541 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "A privilégium táblák újratöltése nélkül engedélyezi a felhasználók és jogok " "hozzáadását." -#: server_privileges.php:40 server_privileges.php:191 -#: server_privileges.php:516 +#: server_privileges.php:41 server_privileges.php:192 +#: server_privileges.php:517 msgid "Allows creating and dropping indexes." msgstr "Engedélyezi indexek készítését és törlését." -#: server_privileges.php:41 server_privileges.php:181 -#: server_privileges.php:442 server_privileges.php:504 +#: server_privileges.php:42 server_privileges.php:182 +#: server_privileges.php:443 server_privileges.php:505 msgid "Allows inserting and replacing data." msgstr "Engedélyezi az adatok beírását és megváltoztatását." -#: server_privileges.php:42 server_privileges.php:196 -#: server_privileges.php:549 +#: server_privileges.php:43 server_privileges.php:197 +#: server_privileges.php:550 msgid "Allows locking tables for the current thread." msgstr "A jelenlegi szálon engedélyezi a táblák blokkolását." -#: server_privileges.php:43 server_privileges.php:646 -#: server_privileges.php:648 +#: server_privileges.php:44 server_privileges.php:647 +#: server_privileges.php:649 msgid "Limits the number of new connections the user may open per hour." msgstr "" "Korlátozza a felhasználó által óránként megnyitható új kapcsolatok számát." -#: server_privileges.php:44 server_privileges.php:634 -#: server_privileges.php:636 +#: server_privileges.php:45 server_privileges.php:635 +#: server_privileges.php:637 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" "Korlátozza a felhasználó által a kiszolgálóra óránként küldhető lekérdezések " "számát." -#: server_privileges.php:45 server_privileges.php:640 -#: server_privileges.php:642 +#: server_privileges.php:46 server_privileges.php:641 +#: server_privileges.php:643 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -4772,62 +4816,62 @@ msgstr "" "Korlátozza a felhasználó által óránként végrehajtható, bármelyik táblát vagy " "adatbázist módosító parancsok számát." -#: server_privileges.php:46 server_privileges.php:652 -#: server_privileges.php:654 +#: server_privileges.php:47 server_privileges.php:653 +#: server_privileges.php:655 msgid "Limits the number of simultaneous connections the user may have." msgstr "Korlátozza a felhasználó egyidejű kapcsolatainak számát." -#: server_privileges.php:47 server_privileges.php:188 -#: server_privileges.php:544 +#: server_privileges.php:48 server_privileges.php:189 +#: server_privileges.php:545 msgid "Allows viewing processes of all users" msgstr "Az összes felhasználó folyamatainak megtekintését engedélyezi" -#: server_privileges.php:48 server_privileges.php:190 -#: server_privileges.php:448 server_privileges.php:550 +#: server_privileges.php:49 server_privileges.php:191 +#: server_privileges.php:449 server_privileges.php:551 msgid "Has no effect in this MySQL version." msgstr "Nem valósult meg ebben a MySQL verzióban" -#: server_privileges.php:49 server_privileges.php:186 -#: server_privileges.php:545 +#: server_privileges.php:50 server_privileges.php:187 +#: server_privileges.php:546 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" "Engedélyezi a szerver beállításainak újratöltését, és a szerver " "gyorsítótárának törlését." -#: server_privileges.php:50 server_privileges.php:198 -#: server_privileges.php:552 +#: server_privileges.php:51 server_privileges.php:199 +#: server_privileges.php:553 msgid "Allows the user to ask where the slaves / masters are." msgstr "" "Engedélyezi a felhasználónak, hogy megkérdezze, hol találhatók a kisegítő/fő " "helyek." -#: server_privileges.php:51 server_privileges.php:197 -#: server_privileges.php:553 +#: server_privileges.php:52 server_privileges.php:198 +#: server_privileges.php:554 msgid "Needed for the replication slaves." msgstr "A kisegítő helyek másolásához szükséges." -#: server_privileges.php:52 server_privileges.php:180 -#: server_privileges.php:439 server_privileges.php:503 +#: server_privileges.php:53 server_privileges.php:181 +#: server_privileges.php:440 server_privileges.php:504 msgid "Allows reading data." msgstr "Engedélyezi az adatok olvasását." -#: server_privileges.php:53 server_privileges.php:193 -#: server_privileges.php:547 +#: server_privileges.php:54 server_privileges.php:194 +#: server_privileges.php:548 msgid "Gives access to the complete list of databases." msgstr "Hozzáférést ad az adatbázisok teljes listájához." -#: server_privileges.php:54 server_privileges.php:204 -#: server_privileges.php:206 server_privileges.php:519 +#: server_privileges.php:55 server_privileges.php:205 +#: server_privileges.php:207 server_privileges.php:520 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Engedélyezi SHOW CREATE VIEW lekérdezések végrehajtását." -#: server_privileges.php:55 server_privileges.php:187 -#: server_privileges.php:546 +#: server_privileges.php:56 server_privileges.php:188 +#: server_privileges.php:547 msgid "Allows shutting down the server." msgstr "Engedélyezi a szerver leállítását." -#: server_privileges.php:56 server_privileges.php:194 -#: server_privileges.php:543 +#: server_privileges.php:57 server_privileges.php:195 +#: server_privileges.php:544 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -4838,157 +4882,157 @@ msgstr "" "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 +#: server_privileges.php:58 server_privileges.php:202 +#: server_privileges.php:536 msgid "Allows creating and dropping triggers" msgstr "Eseményindítók létrehozásának és eldobásának engedélyezése" -#: server_privileges.php:58 server_privileges.php:182 -#: server_privileges.php:445 server_privileges.php:505 +#: server_privileges.php:59 server_privileges.php:183 +#: server_privileges.php:446 server_privileges.php:506 msgid "Allows changing data." msgstr "Engedélyezi az adatok megváltoztatását." -#: server_privileges.php:59 server_privileges.php:260 +#: server_privileges.php:60 server_privileges.php:261 msgid "No privileges." msgstr "Nincsenek jogok." -#: server_privileges.php:302 server_privileges.php:303 +#: server_privileges.php:303 server_privileges.php:304 #, fuzzy #| msgid "None" msgctxt "None privileges" msgid "None" msgstr "Nincs" -#: server_privileges.php:431 server_privileges.php:566 -#: server_privileges.php:1718 server_privileges.php:1724 +#: server_privileges.php:432 server_privileges.php:567 +#: server_privileges.php:1738 server_privileges.php:1744 msgid "Table-specific privileges" msgstr "Táblaspecifikus jogok" -#: server_privileges.php:432 server_privileges.php:574 -#: server_privileges.php:1540 +#: server_privileges.php:433 server_privileges.php:575 +#: server_privileges.php:1560 msgid " Note: MySQL privilege names are expressed in English " msgstr " Megjegyzés: a MySQL jognevek az angolból származnak." -#: server_privileges.php:563 server_privileges.php:1539 +#: server_privileges.php:564 server_privileges.php:1559 msgid "Global privileges" msgstr "Globális jogok" -#: server_privileges.php:565 server_privileges.php:1718 +#: server_privileges.php:566 server_privileges.php:1738 msgid "Database-specific privileges" msgstr "Adatbázis-specifikus jogok" -#: server_privileges.php:610 +#: server_privileges.php:611 msgid "Administration" msgstr "Adminisztráció" -#: server_privileges.php:630 +#: server_privileges.php:631 msgid "Resource limits" msgstr "Erőforrás-korlátozások" -#: server_privileges.php:631 +#: server_privileges.php:632 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "" "Megjegyzés: Ezen beállítások 0-ra (nulla) állítása eltávolítja a korlátozást." -#: server_privileges.php:708 +#: server_privileges.php:709 msgid "Login Information" msgstr "Bejelentkezési adatok" -#: server_privileges.php:802 +#: server_privileges.php:803 msgid "Do not change the password" msgstr "Nincs jelszó megváltoztatás" -#: server_privileges.php:843 server_privileges.php:2205 +#: server_privileges.php:844 server_privileges.php:2226 #, fuzzy #| msgid "No user(s) found." msgid "No user found." msgstr "Nem található(k) a felhasználó(k)." -#: server_privileges.php:887 +#: server_privileges.php:888 #, php-format msgid "The user %s already exists!" msgstr "%s felhasználó már létezik!" -#: server_privileges.php:970 +#: server_privileges.php:971 msgid "You have added a new user." msgstr "Az új felhasználó hozzáadása megtörtént." -#: server_privileges.php:1191 +#: server_privileges.php:1196 #, php-format msgid "You have updated the privileges for %s." msgstr "Ön frissítette %s jogait." -#: server_privileges.php:1215 +#: server_privileges.php:1220 #, php-format msgid "You have revoked the privileges for %s" msgstr "%s jogainak visszavonása megtörtént" -#: server_privileges.php:1251 +#: server_privileges.php:1256 #, php-format msgid "The password for %s was changed successfully." msgstr "%s jelszavának megváltoztatása sikerült." -#: server_privileges.php:1271 +#: server_privileges.php:1276 #, php-format msgid "Deleting %s" msgstr "%s törlése" -#: server_privileges.php:1282 +#: server_privileges.php:1287 msgid "No users selected for deleting!" msgstr "Nincs törlésre kijelölt felhasználó!" -#: server_privileges.php:1285 +#: server_privileges.php:1290 msgid "Reloading the privileges" msgstr "A jogok újratöltése" -#: server_privileges.php:1300 +#: server_privileges.php:1305 msgid "The selected users have been deleted successfully." msgstr "A kiválasztott felhasználók törlése sikerült." -#: server_privileges.php:1335 +#: server_privileges.php:1344 msgid "The privileges were reloaded successfully." msgstr "A jogok újratöltése sikerült." -#: server_privileges.php:1363 server_privileges.php:1649 +#: server_privileges.php:1380 server_privileges.php:1669 msgid "Edit Privileges" msgstr "Jogok szerkesztése" -#: server_privileges.php:1372 +#: server_privileges.php:1389 msgid "Revoke" msgstr "Visszavonás" -#: server_privileges.php:1404 +#: server_privileges.php:1424 msgid "User overview" msgstr "Felhasználók áttekintése" -#: server_privileges.php:1541 server_privileges.php:1723 -#: server_privileges.php:2072 +#: server_privileges.php:1561 server_privileges.php:1743 +#: server_privileges.php:2093 msgid "Grant" msgstr "Engedélyezés" -#: server_privileges.php:1560 server_privileges.php:2162 +#: server_privileges.php:1580 server_privileges.php:2183 msgid "Any" msgstr "Bármi" -#: server_privileges.php:1609 server_privileges.php:1633 -#: server_privileges.php:2027 server_privileges.php:2216 +#: server_privileges.php:1629 server_privileges.php:1653 +#: server_privileges.php:2048 server_privileges.php:2237 msgid "Add a new User" msgstr "Új felhasználó hozzáadása" -#: server_privileges.php:1614 +#: server_privileges.php:1634 msgid "Remove selected users" msgstr "A kijelölt felhasználók törlése" -#: server_privileges.php:1617 +#: server_privileges.php:1637 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:1618 server_privileges.php:1619 -#: server_privileges.php:1620 +#: server_privileges.php:1638 server_privileges.php:1639 +#: server_privileges.php:1640 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:1636 +#: server_privileges.php:1656 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -5001,94 +5045,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:1684 +#: server_privileges.php:1704 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:1724 +#: server_privileges.php:1744 msgid "Column-specific privileges" msgstr "Oszlopspecifikus jogok" -#: server_privileges.php:1925 +#: server_privileges.php:1945 msgid "Add privileges on the following database" msgstr "Jogok hozzáadása a következő adatbázison" -#: server_privileges.php:1943 +#: server_privileges.php:1963 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:1946 +#: server_privileges.php:1966 msgid "Add privileges on the following table" msgstr "Jogok hozzáadása a következő táblán:" -#: server_privileges.php:2003 +#: server_privileges.php:2023 msgid "Change Login Information / Copy User" msgstr "Bejelentkezési adatok módosítása / Felhasználó másolása" -#: server_privileges.php:2006 +#: server_privileges.php:2026 msgid "Create a new user with the same privileges and ..." msgstr "Új felhasználó létrehozása ezekkel a jogokkal, és ..." -#: server_privileges.php:2008 +#: server_privileges.php:2028 msgid "... keep the old one." msgstr "... a régiek megőrzése." -#: server_privileges.php:2009 +#: server_privileges.php:2029 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:2010 +#: server_privileges.php:2030 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:2011 +#: server_privileges.php:2031 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:2033 +#: server_privileges.php:2054 msgid "Database for user" msgstr "Adatbázis a felhasználó számára" -#: server_privileges.php:2037 +#: server_privileges.php:2058 #, fuzzy #| msgid "None" msgctxt "Create none database for user" msgid "None" msgstr "Nincs" -#: server_privileges.php:2038 +#: server_privileges.php:2059 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:2039 +#: server_privileges.php:2060 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "Az összes jog engedélyezése karakterhelyettesítős néven (username\\_%)" -#: server_privileges.php:2042 +#: server_privileges.php:2063 #, php-format msgid "Grant all privileges on database "%s"" msgstr "Az összes jog engedélyezése a(z) "%s" adatbázison" -#: server_privileges.php:2065 +#: server_privileges.php:2086 #, php-format msgid "Users having access to "%s"" msgstr "A(z) "%s" adatbázishoz hozzáférhető felhasználók" -#: server_privileges.php:2173 +#: server_privileges.php:2194 msgid "global" msgstr "globális" -#: server_privileges.php:2175 +#: server_privileges.php:2196 msgid "database-specific" msgstr "adatbázis-specifikus" -#: server_privileges.php:2177 +#: server_privileges.php:2198 msgid "wildcard" msgstr "karakterhelyettesítő" @@ -8127,6 +8171,10 @@ msgstr "" msgid "Show insert query" msgstr "Megjelenítés SQL lekérdezésként" +#: tbl_change.php:1143 +msgid "and then" +msgstr "és utána" + #: tbl_change.php:1147 msgid "Go back to previous page" msgstr "Vissza az előző oldalra" @@ -8209,7 +8257,7 @@ msgstr "" msgid "Add to index  %s column(s)" msgstr "Hozzáadás az index  %s oszlophoz" -#: tbl_indexes.php:256 tbl_structure.php:589 tbl_structure.php:600 +#: tbl_indexes.php:256 tbl_structure.php:587 tbl_structure.php:598 msgid "Column count has to be larger than zero." msgstr "Az oszlopok számának nullánál nagyobbnak kell lennie." @@ -8323,39 +8371,39 @@ msgstr "Hivatkozási sértetlenség ellenőrzése:" msgid "Show tables" msgstr "A táblák megjelenítése" -#: tbl_printview.php:310 tbl_structure.php:656 +#: tbl_printview.php:310 tbl_structure.php:654 msgid "Space usage" msgstr "Területhasználat" -#: tbl_printview.php:314 tbl_structure.php:660 +#: tbl_printview.php:314 tbl_structure.php:658 msgid "Usage" msgstr "Méret" -#: tbl_printview.php:341 tbl_structure.php:687 +#: tbl_printview.php:341 tbl_structure.php:685 msgid "Effective" msgstr "Hatályos" -#: tbl_printview.php:366 tbl_structure.php:725 +#: tbl_printview.php:366 tbl_structure.php:723 msgid "Row Statistics" msgstr "Sorstatisztika" -#: tbl_printview.php:369 tbl_structure.php:728 +#: tbl_printview.php:369 tbl_structure.php:726 msgid "Statements" msgstr "Utasítások" -#: tbl_printview.php:380 tbl_structure.php:740 +#: tbl_printview.php:380 tbl_structure.php:738 msgid "static" msgstr "statikus" -#: tbl_printview.php:382 tbl_structure.php:742 +#: tbl_printview.php:382 tbl_structure.php:740 msgid "dynamic" msgstr "dinamikus" -#: tbl_printview.php:404 tbl_structure.php:785 +#: tbl_printview.php:404 tbl_structure.php:783 msgid "Row length" msgstr "Sor hossza" -#: tbl_printview.php:414 tbl_structure.php:793 +#: tbl_printview.php:414 tbl_structure.php:791 msgid " Row size " msgstr " Sor mérete " @@ -8433,50 +8481,50 @@ msgstr "Nincs" msgid "Column %s has been dropped" msgstr "A(z) %s tábla eldobása megtörtént" -#: tbl_structure.php:385 +#: tbl_structure.php:384 #, php-format msgid "A primary key has been added on %s" msgstr "Az elsődleges kulcs hozzáadása a(z) %s mezőn megtörtént" -#: tbl_structure.php:400 tbl_structure.php:414 tbl_structure.php:428 +#: tbl_structure.php:398 tbl_structure.php:412 tbl_structure.php:426 #, php-format msgid "An index has been added on %s" msgstr "Az index hozzáadása a(z) %s mezőn megtörtént" -#: tbl_structure.php:506 tbl_structure.php:508 +#: tbl_structure.php:504 tbl_structure.php:506 msgid "Relation view" msgstr "Kapcsolat nézete" -#: tbl_structure.php:515 tbl_structure.php:517 +#: tbl_structure.php:513 tbl_structure.php:515 msgid "Propose table structure" msgstr "Táblaszerkezet ajánlása" -#: tbl_structure.php:540 +#: tbl_structure.php:538 #, fuzzy #| msgid "Add %s field(s)" msgid "Add column" msgstr "%s mező hozzáadása" -#: tbl_structure.php:554 +#: tbl_structure.php:552 msgid "At End of Table" msgstr "A tábla végén" -#: tbl_structure.php:555 +#: tbl_structure.php:553 msgid "At Beginning of Table" msgstr "A tábla elején" -#: tbl_structure.php:556 +#: tbl_structure.php:554 #, php-format msgid "After %s" msgstr "%s után" -#: tbl_structure.php:594 +#: tbl_structure.php:592 #, fuzzy, php-format #| msgid "Create an index on %s columns" msgid "Create an index on  %s columns" msgstr "Index készítése a(z) %s. oszlopon" -#: tbl_structure.php:756 +#: tbl_structure.php:754 msgid "partitioned" msgstr "particionált" @@ -8944,9 +8992,6 @@ msgstr "Tábla átnevezése" #~ msgid "Process list" #~ msgstr "Folyamatlista" -#~ msgid "Reload privileges" -#~ msgstr "Jogok újratöltése" - #~ msgid "" #~ "The users will still have the USAGE privilege until the privileges are " #~ "reloaded." diff --git a/po/id.po b/po/id.po index c5ae6d262..db9ce2615 100755 --- a/po/id.po +++ b/po/id.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-13 09:03-0400\n" +"POT-Creation-Date: 2010-06-22 00:55+0530\n" "PO-Revision-Date: 2010-06-16 01:45+0200\n" "Last-Translator: \n" "Language-Team: indonesian \n" -"Language: id\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: id\n" "Plural-Forms: nplurals=1; plural=0;\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:1514 +#: libraries/display_tbl.lib.php:417 server_privileges.php:1534 msgid "Show all" msgstr "Tampilkan semua" -#: browse_foreigners.php:82 libraries/common.lib.php:2313 +#: browse_foreigners.php:82 libraries/common.lib.php:2317 #: 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,18 +38,18 @@ 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:2831 -#: libraries/common.lib.php:2838 libraries/db_links.inc.php:75 +#: db_structure.php:106 libraries/common.lib.php:2835 +#: libraries/common.lib.php:2842 libraries/db_links.inc.php:75 #: libraries/tbl_links.inc.php:63 msgid "Search" msgstr "Cari" -#: browse_foreigners.php:153 db_operations.php:385 db_operations.php:429 -#: db_operations.php:499 db_operations.php:609 db_search.php:362 -#: db_structure.php:567 js/messages.php:48 libraries/Config.class.php:1046 +#: browse_foreigners.php:153 db_operations.php:394 db_operations.php:438 +#: db_operations.php:508 db_operations.php:618 db_search.php:362 +#: db_structure.php:565 js/messages.php:53 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:1335 libraries/common.lib.php:2288 +#: libraries/common.lib.php:1335 libraries/common.lib.php:2292 #: 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,15 +60,15 @@ 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:664 server_privileges.php:1624 -#: server_privileges.php:1971 server_privileges.php:2018 -#: server_privileges.php:2057 server_replication.php:235 +#: server_privileges.php:665 server_privileges.php:1644 +#: server_privileges.php:1991 server_privileges.php:2038 +#: server_privileges.php:2078 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 #: tbl_operations.php:302 tbl_operations.php:499 tbl_operations.php:561 -#: tbl_operations.php:681 tbl_select.php:327 tbl_structure.php:562 -#: tbl_structure.php:597 tbl_tracking.php:395 tbl_tracking.php:512 +#: tbl_operations.php:681 tbl_select.php:327 tbl_structure.php:560 +#: tbl_structure.php:595 tbl_tracking.php:395 tbl_tracking.php:512 #: view_create.php:182 view_operations.php:101 msgid "Go" msgstr "Go" @@ -94,7 +94,7 @@ msgstr "gunakan nilai ini" msgid "Database %1$s has been created." msgstr "Database %1$s telah dibuat." -#: db_datadict.php:49 db_operations.php:378 +#: db_datadict.php:49 db_operations.php:387 msgid "Database comment: " msgstr "Komentar Database: " @@ -111,7 +111,6 @@ msgstr "Komentar tabel" #: 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 "Kolom" @@ -120,10 +119,10 @@ msgstr "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:2070 +#: pdf_schema.php:1263 pdf_schema.php:1284 server_privileges.php:2091 #: 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 +#: tbl_structure.php:657 tbl_tracking.php:274 tbl_tracking.php:321 msgid "Type" msgstr "Jenis" @@ -136,7 +135,7 @@ msgstr "Jenis" msgid "Null" msgstr "Kosong" -#: db_datadict.php:178 db_structure.php:501 libraries/export/htmlword.php:247 +#: db_datadict.php:178 db_structure.php:499 libraries/export/htmlword.php:247 #: libraries/export/latex.php:360 libraries/export/odt.php:303 #: libraries/export/texytext.php:236 libraries/tbl_properties.inc.php:106 #: pdf_schema.php:1266 pdf_schema.php:1287 tbl_printview.php:146 @@ -164,9 +163,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: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 +#: pdf_schema.php:1344 server_privileges.php:1588 server_privileges.php:1599 +#: server_privileges.php:1909 server_privileges.php:1914 +#: server_privileges.php:2208 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" @@ -180,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:1565 -#: server_privileges.php:1579 server_privileges.php:1889 -#: server_privileges.php:1892 server_privileges.php:2187 sql.php:193 +#: server_databases.php:64 server_privileges.php:1585 +#: server_privileges.php:1599 server_privileges.php:1909 +#: server_privileges.php:1912 server_privileges.php:2208 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" @@ -209,121 +208,115 @@ msgstr "Pilih semua" msgid "Unselect All" msgstr "Unselect semua" -#: db_operations.php:38 tbl_create.php:54 +#: db_operations.php:43 tbl_create.php:54 msgid "The database name is empty!" msgstr "Nama database kosong!" -#: db_operations.php:236 +#: db_operations.php:241 #, php-format msgid "Database %s has been renamed to %s" msgstr "Nama database %s telah diubah menjadi %s" -#: db_operations.php:240 +#: db_operations.php:245 #, php-format msgid "Database %s has been copied to %s" msgstr "Database %s telah disalin ke %s" -#: db_operations.php:412 +#: db_operations.php:421 msgid "Rename database to" msgstr "Ubah nama database menjadi" -#: db_operations.php:417 server_processlist.php:57 +#: db_operations.php:426 server_processlist.php:57 msgid "Command" msgstr "Perintah" -#: db_operations.php:429 tbl_change.php:1143 -msgid "and then" -msgstr "selanjutnya" - -#: db_operations.php:455 +#: db_operations.php:464 msgid "Copy database to" msgstr "Salin database ke" -#: db_operations.php:462 tbl_operations.php:528 tbl_tracking.php:388 +#: db_operations.php:471 tbl_operations.php:528 tbl_tracking.php:388 msgid "Structure only" msgstr "Struktur saja" -#: db_operations.php:463 tbl_operations.php:529 tbl_tracking.php:390 +#: db_operations.php:472 tbl_operations.php:529 tbl_tracking.php:390 msgid "Structure and data" msgstr "Struktur dan data" -#: db_operations.php:464 tbl_operations.php:530 tbl_tracking.php:389 +#: db_operations.php:473 tbl_operations.php:530 tbl_tracking.php:389 msgid "Data only" msgstr "Data saja" -#: db_operations.php:472 +#: db_operations.php:481 msgid "CREATE DATABASE before copying" msgstr "CIPTAKAN DATABASE sebelum menyalin" -#: db_operations.php:475 libraries/export/sql.php:52 +#: db_operations.php:484 libraries/export/sql.php:52 #: libraries/export/sql.php:74 libraries/export/sql.php:76 #: libraries/export/sql.php:82 tbl_operations.php:536 #, php-format msgid "Add %s" msgstr "Tambah %s" -#: db_operations.php:479 libraries/export/sql.php:78 tbl_operations.php:299 +#: db_operations.php:488 libraries/export/sql.php:78 tbl_operations.php:299 #: tbl_operations.php:538 msgid "Add AUTO_INCREMENT value" msgstr "Menambahkan nilai AUTO_INCREMENT" -#: db_operations.php:483 tbl_operations.php:545 +#: db_operations.php:492 tbl_operations.php:545 msgid "Add constraints" msgstr "Menambahkan pembatas" -#: db_operations.php:496 +#: db_operations.php:505 msgid "Switch to copied database" msgstr "Pindah ke database yang disalin" -#: db_operations.php:537 +#: db_operations.php:546 msgid "BLOB Repository" msgstr "Repositori BLOB" -#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1352 -#: libraries/server_links.inc.php:49 server_processlist.php:59 +#: db_operations.php:549 db_tracking.php:76 libraries/common.lib.php:1352 +#: libraries/server_links.inc.php:50 server_processlist.php:59 #: tbl_tracking.php:596 test/theme.php:101 msgid "Status" msgstr "Status" -#: db_operations.php:548 -#| msgid "Enabled" +#: db_operations.php:557 msgctxt "BLOB repository" msgid "Enabled" msgstr "Diaktifkan" -#: db_operations.php:552 +#: db_operations.php:561 msgid "Disable" msgstr "Tidak aktif" -#: db_operations.php:562 +#: db_operations.php:571 msgid "Damaged" msgstr "Rusak" -#: db_operations.php:566 +#: db_operations.php:575 msgctxt "BLOB repository" msgid "Repair" msgstr "Perbaiki" -#: db_operations.php:574 -#| msgid "Disabled" +#: db_operations.php:583 msgctxt "BLOB repository" msgid "Disabled" msgstr "Tidak diaktifkan" -#: db_operations.php:578 +#: db_operations.php:587 msgid "Enable" msgstr "Aktif" -#: db_operations.php:602 libraries/Index.class.php:448 +#: db_operations.php:611 libraries/Index.class.php:448 #: libraries/db_structure.lib.php:62 libraries/mysql_charsets.lib.php:107 #: libraries/tbl_properties.inc.php:107 libraries/tbl_properties.inc.php:730 #: server_collations.php:54 server_collations.php:66 server_databases.php:111 #: tbl_operations.php:363 tbl_select.php:137 tbl_structure.php:179 -#: tbl_structure.php:767 tbl_tracking.php:275 tbl_tracking.php:326 +#: tbl_structure.php:765 tbl_tracking.php:275 tbl_tracking.php:326 msgid "Collation" msgstr "Penyortiran" -#: db_operations.php:615 main.php:316 pdf_schema.php:34 +#: db_operations.php:624 main.php:316 pdf_schema.php:34 #, php-format msgid "" "The additional features for working with linked tables have been " @@ -332,14 +325,14 @@ msgstr "" "Fasilitas penambahan untuk bekerja dengan tabel yang di-link di nonaktifkan. " "Untuk mengetahui sebabnya silakan klik %sdisini%s." -#: db_operations.php:648 +#: db_operations.php:657 msgid "Edit PDF Pages" 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:1665 -#: server_privileges.php:1721 server_privileges.php:1985 +#: libraries/header.inc.php:130 pdf_pages.php:424 server_privileges.php:1685 +#: server_privileges.php:1741 server_privileges.php:2005 #: server_synchronize.php:423 server_synchronize.php:866 tbl_tracking.php:592 #: test/theme.php:75 msgid "Table" @@ -348,7 +341,7 @@ msgstr "Tabel" #: db_printview.php:105 libraries/db_structure.lib.php:56 #: libraries/header_printview.inc.php:63 libraries/import.lib.php:146 #: navigation.php:638 navigation.php:660 server_databases.php:122 -#: tbl_printview.php:394 tbl_structure.php:365 tbl_structure.php:777 +#: tbl_printview.php:394 tbl_structure.php:365 tbl_structure.php:775 msgid "Rows" msgstr "Baris" @@ -356,30 +349,30 @@ msgstr "Baris" msgid "Size" msgstr "Ukuran" -#: db_printview.php:162 db_structure.php:457 libraries/export/sql.php:559 +#: db_printview.php:162 db_structure.php:455 libraries/export/sql.php:559 #: libraries/export/sql.php:899 msgid "in use" msgstr "sedang digunakan" #: db_printview.php:187 libraries/db_info.inc.php:88 #: libraries/export/sql.php:514 pdf_schema.php:1241 tbl_printview.php:434 -#: tbl_structure.php:809 +#: tbl_structure.php:807 msgid "Creation" msgstr "Pembuatan" #: db_printview.php:196 libraries/db_info.inc.php:93 #: libraries/export/sql.php:519 pdf_schema.php:1246 tbl_printview.php:444 -#: tbl_structure.php:817 +#: tbl_structure.php:815 msgid "Last update" msgstr "Update terakhir" #: db_printview.php:205 libraries/db_info.inc.php:98 #: libraries/export/sql.php:524 pdf_schema.php:1251 tbl_printview.php:454 -#: tbl_structure.php:825 +#: tbl_structure.php:823 msgid "Last check" msgstr "Pemeriksaan terakhir" -#: db_printview.php:222 db_structure.php:480 +#: db_printview.php:222 db_structure.php:478 #, fuzzy, php-format #| msgid "%s table(s)" msgid "%s table" @@ -439,7 +432,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:297 tbl_change.php:1031 tbl_indexes.php:250 +#: server_privileges.php:298 tbl_change.php:1031 tbl_indexes.php:250 #: tbl_select.php:288 msgid "Or" msgstr "Atau" @@ -449,12 +442,10 @@ msgid "Modify" msgstr "Ubah" #: db_qbe.php:584 -#| msgid "Add/Delete Criteria Row" msgid "Add/Delete criteria rows" msgstr "Tambahkan/Hapus kriteria baris" #: db_qbe.php:596 -#| msgid "Add/Delete Field Columns" msgid "Add/Delete columns" msgstr "Tambahkan/Hapus kolom" @@ -510,9 +501,9 @@ 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:2833 +#: db_structure.php:105 libraries/common.lib.php:2837 #: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50 -#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:467 +#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:465 msgid "Browse" msgstr "Browse" @@ -550,42 +541,41 @@ msgid "Inside table(s):" msgstr "Cari dalam tabel:" #: db_search.php:355 -#| msgid "Inside table(s):" msgid "Inside column:" msgstr "Di dalam kolom:" #: 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:2832 libraries/sql_query_form.lib.php:334 +#: libraries/common.lib.php:2836 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:2829 libraries/common.lib.php:2836 +#: libraries/common.lib.php:2833 libraries/common.lib.php:2840 #: 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:1106 #: libraries/tbl_links.inc.php:56 pmd_general.php:134 -#: server_privileges.php:593 server_replication.php:315 tbl_tracking.php:269 +#: server_privileges.php:594 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:1656 +#: db_structure.php:543 db_structure.php:544 db_tracking.php:91 +#: libraries/Index.class.php:483 libraries/common.lib.php:1657 #: 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 -#: tbl_structure.php:152 tbl_structure.php:471 +#: tbl_structure.php:152 tbl_structure.php:469 msgid "Drop" 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:1655 +#: db_structure.php:541 db_structure.php:542 libraries/common.lib.php:1656 #: libraries/mult_submits.inc.php:39 libraries/tbl_links.inc.php:105 msgid "Empty" msgstr "Mengosongkan" @@ -595,25 +585,25 @@ msgstr "Mengosongkan" msgid "Table %s has been emptied" msgstr "Tabel %s telah dikosongkan" -#: db_structure.php:326 libraries/tbl_links.inc.php:133 +#: db_structure.php:325 libraries/tbl_links.inc.php:133 #, php-format msgid "View %s has been dropped" msgstr "Pandangan %s telah dibubarkan" -#: db_structure.php:326 libraries/tbl_links.inc.php:133 +#: db_structure.php:325 libraries/tbl_links.inc.php:133 #, php-format msgid "Table %s has been dropped" msgstr "Tabel %s telah dihapus" -#: db_structure.php:333 +#: db_structure.php:332 msgid "Tracking is active." msgstr "Pelacakan aktif" -#: db_structure.php:335 +#: db_structure.php:334 msgid "Tracking is not active." msgstr "Pelacakan tidak aktif." -#: db_structure.php:420 libraries/display_tbl.lib.php:1944 +#: db_structure.php:418 libraries/display_tbl.lib.php:1944 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation%" @@ -622,86 +612,86 @@ msgstr "" "Sebuah view setidaknya mempunyai jumlah kolom berikut. Silahkan lihat %" "sdokumentasi%s" -#: db_structure.php:434 db_structure.php:448 libraries/header.inc.php:126 +#: db_structure.php:432 db_structure.php:446 libraries/header.inc.php:130 #: libraries/tbl_info.inc.php:66 tbl_structure.php:185 test/theme.php:74 msgid "View" msgstr "Gambarkan" -#: db_structure.php:485 libraries/db_structure.lib.php:49 -#: libraries/server_links.inc.php:70 server_replication.php:33 +#: db_structure.php:483 libraries/db_structure.lib.php:49 +#: libraries/server_links.inc.php:71 server_replication.php:33 #: server_replication.php:164 server_status.php:369 msgid "Replication" msgstr "Tiruan" -#: db_structure.php:489 +#: db_structure.php:487 msgid "Sum" msgstr "Jumlah" -#: db_structure.php:496 libraries/StorageEngine.class.php:356 +#: db_structure.php:494 libraries/StorageEngine.class.php:356 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "%s adalah mesin penyimpan utama pada server MySQL ini." -#: db_structure.php:524 db_structure.php:541 db_structure.php:542 +#: db_structure.php:522 db_structure.php:539 db_structure.php:540 #: 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:1596 tbl_structure.php:455 -#: tbl_structure.php:464 +#: server_databases.php:351 server_privileges.php:1616 tbl_structure.php:453 +#: tbl_structure.php:462 msgid "With selected:" msgstr "yang ditandai:" -#: db_structure.php:527 libraries/display_tbl.lib.php:2076 -#: server_databases.php:348 server_privileges.php:569 -#: server_privileges.php:1599 tbl_structure.php:458 +#: db_structure.php:525 libraries/display_tbl.lib.php:2076 +#: server_databases.php:348 server_privileges.php:570 +#: server_privileges.php:1619 tbl_structure.php:456 msgid "Check All" msgstr "Pilih semua" -#: db_structure.php:531 libraries/display_tbl.lib.php:2077 +#: db_structure.php:529 libraries/display_tbl.lib.php:2077 #: libraries/replication_gui.lib.php:33 server_databases.php:350 -#: server_privileges.php:572 server_privileges.php:1603 tbl_structure.php:462 +#: server_privileges.php:573 server_privileges.php:1623 tbl_structure.php:460 msgid "Uncheck All" msgstr "Balik pilihan" -#: db_structure.php:536 +#: db_structure.php:534 msgid "Check tables having overhead" msgstr "Periksa Overheaded" -#: db_structure.php:547 db_structure.php:548 db_structure.php:599 +#: db_structure.php:545 db_structure.php:546 db_structure.php:597 #: libraries/display_tbl.lib.php:2180 libraries/mult_submits.inc.php:28 -#: tbl_structure.php:492 tbl_structure.php:494 +#: tbl_structure.php:490 tbl_structure.php:492 msgid "Print view" msgstr "Pandangan cetak" -#: db_structure.php:549 db_structure.php:550 libraries/mult_submits.inc.php:42 +#: db_structure.php:547 db_structure.php:548 libraries/mult_submits.inc.php:42 #: tbl_operations.php:581 msgid "Check table" msgstr "Periksa tabel" -#: db_structure.php:551 db_structure.php:552 libraries/mult_submits.inc.php:47 -#: tbl_operations.php:621 tbl_structure.php:709 tbl_structure.php:711 +#: db_structure.php:549 db_structure.php:550 libraries/mult_submits.inc.php:47 +#: tbl_operations.php:621 tbl_structure.php:707 tbl_structure.php:709 msgid "Optimize table" msgstr "Optimasikan tabel" -#: db_structure.php:553 db_structure.php:554 libraries/mult_submits.inc.php:52 +#: db_structure.php:551 db_structure.php:552 libraries/mult_submits.inc.php:52 #: tbl_operations.php:611 msgid "Repair table" msgstr "Perbaiki tabel" -#: db_structure.php:555 db_structure.php:556 libraries/mult_submits.inc.php:57 +#: db_structure.php:553 db_structure.php:554 libraries/mult_submits.inc.php:57 #: tbl_operations.php:601 msgid "Analyze table" msgstr "Analisa tabel" -#: db_structure.php:557 db_structure.php:558 libraries/db_links.inc.php:71 +#: db_structure.php:555 db_structure.php:556 libraries/db_links.inc.php:71 #: 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:1380 +#: libraries/server_links.inc.php:85 libraries/tbl_links.inc.php:82 +#: pmd_pdf.php:84 pmd_pdf.php:109 server_privileges.php:1397 #: setup/frames/menu.inc.php:22 tbl_row_action.php:59 msgid "Export" msgstr "Ekspor" -#: db_structure.php:606 libraries/display_pdf_schema.lib.php:44 +#: db_structure.php:604 libraries/display_pdf_schema.lib.php:44 msgid "Data Dictionary" msgstr "Kamus Data" @@ -712,10 +702,10 @@ msgstr "Tabel-tabel yang dilacak" #: db_tracking.php:71 libraries/export/htmlword.php:86 #: libraries/export/latex.php:148 libraries/export/odt.php:113 #: libraries/export/sql.php:342 libraries/export/texytext.php:84 -#: libraries/export/xml.php:255 libraries/header.inc.php:106 +#: libraries/export/xml.php:255 libraries/header.inc.php:110 #: libraries/header_printview.inc.php:58 server_databases.php:169 -#: server_privileges.php:1660 server_privileges.php:1721 -#: server_privileges.php:1979 server_processlist.php:56 +#: server_privileges.php:1680 server_privileges.php:1741 +#: server_privileges.php:1999 server_processlist.php:56 #: server_synchronize.php:1179 server_synchronize.php:1183 #: tbl_tracking.php:591 test/theme.php:65 msgid "Database" @@ -735,8 +725,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:1542 server_privileges.php:1725 -#: server_privileges.php:2073 tbl_structure.php:187 +#: server_privileges.php:1562 server_privileges.php:1745 +#: server_privileges.php:2094 tbl_structure.php:187 msgid "Action" msgstr "Aksi" @@ -770,8 +760,8 @@ msgstr "Struktur snapshot" msgid "Untracked tables" msgstr "Batal lacak tabel" -#: db_tracking.php:172 db_tracking.php:174 tbl_structure.php:528 -#: tbl_structure.php:530 +#: db_tracking.php:172 db_tracking.php:174 tbl_structure.php:526 +#: tbl_structure.php:528 msgid "Track table" msgstr "Lacak tabel" @@ -931,189 +921,237 @@ msgstr "Nama Host harus diisi!" msgid "The user name is empty!" msgstr "Nama pengguna masih kosong!" -#: js/messages.php:44 server_privileges.php:1236 user_password.php:70 +#: js/messages.php:44 server_privileges.php:1241 user_password.php:70 msgid "The password is empty!" msgstr "Kata Sandi kosong!" -#: js/messages.php:45 server_privileges.php:1234 user_password.php:73 +#: js/messages.php:45 server_privileges.php:1239 user_password.php:73 msgid "The passwords aren't the same!" msgstr "Kata Sandi tidak sama!" -#: js/messages.php:49 pmd_general.php:342 pmd_general.php:379 +#: js/messages.php:46 +#, fuzzy +#| msgid "Add a new User" +msgid "Add a New User" +msgstr "Menambahkan pengguna baru" + +#: js/messages.php:47 js/messages.php:54 pmd_general.php:342 +#: pmd_general.php:379 msgid "Cancel" msgstr "Batal" -#: js/messages.php:52 pmd_save_pos.php:54 +#: js/messages.php:48 +#, fuzzy +#| msgid "Create version" +msgid "Create User" +msgstr "Membuat versi" + +#: js/messages.php:49 +#, fuzzy +#| msgid "Reloading the privileges" +msgid "Reloading Privileges" +msgstr "Reload Hak Istimewa (Privileges)" + +#: js/messages.php:50 +#, fuzzy +#| msgid "Remove selected users" +msgid "Removing Selected Users" +msgstr "Hapus pengguna yang dipilih" + +#: js/messages.php:57 +#, fuzzy +msgid "Loading" +msgstr "Lokal" + +#: js/messages.php:58 +#, fuzzy +#| msgid "Processes" +msgid "Processing Request" +msgstr "Proses Aktif" + +#: js/messages.php:59 +msgid "Error in Processing Request" +msgstr "" + +#: js/messages.php:60 +msgid "Dropping Column" +msgstr "" + +#: js/messages.php:61 +msgid "Adding Primary Key" +msgstr "" + +#: js/messages.php:64 pmd_save_pos.php:54 msgid "Modifications have been saved" msgstr "Modifikasi telah disimpan" -#: js/messages.php:53 pmd_relation_upd.php:49 +#: js/messages.php:65 pmd_relation_upd.php:49 #, fuzzy msgid "Relation deleted" msgstr "Tampilan relasi" -#: js/messages.php:54 pmd_relation_new.php:64 +#: js/messages.php:66 pmd_relation_new.php:64 msgid "FOREIGN KEY relation added" msgstr "" -#: js/messages.php:55 pmd_relation_new.php:86 +#: js/messages.php:67 pmd_relation_new.php:86 #, fuzzy msgid "Internal relation added" msgstr "Relasi internal" -#: js/messages.php:56 pmd_relation_new.php:63 pmd_relation_new.php:88 +#: js/messages.php:68 pmd_relation_new.php:63 pmd_relation_new.php:88 msgid "Error: Relation not added." msgstr "Kesalahan: Relasi tidak ditambahkan." -#: js/messages.php:57 pmd_relation_new.php:31 +#: js/messages.php:69 pmd_relation_new.php:31 msgid "Error: relation already exists." msgstr "Kesalahan: relasi sudah ada." -#: js/messages.php:58 +#: js/messages.php:70 msgid "Error saving coordinates for Designer." msgstr "Kesalahan menyimpan koordinat untuk Perancang." -#: js/messages.php:59 libraries/relation.lib.php:107 +#: js/messages.php:71 libraries/relation.lib.php:107 #: libraries/relation.lib.php:119 msgid "General relation features" msgstr "Ciri-ciri dari General Relation" -#: js/messages.php:59 libraries/relation.lib.php:101 +#: js/messages.php:71 libraries/relation.lib.php:101 #: libraries/relation.lib.php:108 msgid "Disabled" msgstr "Tidak aktif" -#: js/messages.php:60 +#: js/messages.php:72 msgid "Select referenced key" msgstr "" -#: js/messages.php:61 +#: js/messages.php:73 msgid "Select Foreign Key" msgstr "" -#: js/messages.php:62 +#: js/messages.php:74 msgid "Please select the primary key or a unique key" msgstr "" -#: js/messages.php:63 pmd_general.php:77 tbl_relation.php:548 +#: js/messages.php:75 pmd_general.php:77 tbl_relation.php:548 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" msgstr "Pilih Field untuk ditampilkan" #. l10n: Display text for calendar close link -#: js/messages.php:73 +#: js/messages.php:85 #, fuzzy #| msgid "None" msgid "Done" msgstr "tanpa" #. l10n: Display text for previous month link in calendar -#: js/messages.php:75 +#: js/messages.php:87 #, fuzzy #| msgid "Previous" msgid "Prev" msgstr "Sebelumnya" #. l10n: Display text for next month link in calendar -#: js/messages.php:77 libraries/common.lib.php:2353 -#: libraries/common.lib.php:2356 libraries/display_tbl.lib.php:338 +#: js/messages.php:89 libraries/common.lib.php:2357 +#: libraries/common.lib.php:2360 libraries/display_tbl.lib.php:338 #: server_binlog.php:205 server_binlog.php:207 tbl_printview.php:424 -#: tbl_structure.php:801 +#: tbl_structure.php:799 msgid "Next" msgstr "Berikutnya" #. l10n: Display text for current month link in calendar -#: js/messages.php:79 +#: js/messages.php:91 #, fuzzy #| msgid "Total" msgid "Today" msgstr "Jumlah" -#: js/messages.php:82 +#: js/messages.php:94 #, fuzzy #| msgid "Binary" msgid "January" msgstr "Binari" -#: js/messages.php:83 +#: js/messages.php:95 msgid "February" msgstr "" -#: js/messages.php:84 +#: js/messages.php:96 #, fuzzy #| msgid "Mar" msgid "March" msgstr "Maret" -#: js/messages.php:85 +#: js/messages.php:97 #, fuzzy #| msgid "Apr" msgid "April" msgstr "April" -#: js/messages.php:86 +#: js/messages.php:98 msgid "May" msgstr "Mei" -#: js/messages.php:87 +#: js/messages.php:99 #, fuzzy #| msgid "Jun" msgid "June" msgstr "Juni" -#: js/messages.php:88 +#: js/messages.php:100 #, fuzzy #| msgid "Jul" msgid "July" msgstr "Juli" -#: js/messages.php:89 +#: js/messages.php:101 #, fuzzy #| msgid "Aug" msgid "August" msgstr "Agustus" -#: js/messages.php:90 +#: js/messages.php:102 msgid "September" msgstr "" -#: js/messages.php:91 +#: js/messages.php:103 #, fuzzy #| msgid "Oct" msgid "October" msgstr "Oktober" -#: js/messages.php:92 +#: js/messages.php:104 msgid "November" msgstr "" -#: js/messages.php:93 +#: js/messages.php:105 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:97 libraries/common.lib.php:1557 +#: js/messages.php:109 libraries/common.lib.php:1557 msgid "Jan" msgstr "Januari" #. l10n: Short month name -#: js/messages.php:99 libraries/common.lib.php:1559 +#: js/messages.php:111 libraries/common.lib.php:1559 msgid "Feb" msgstr "Februari" #. l10n: Short month name -#: js/messages.php:101 libraries/common.lib.php:1561 +#: js/messages.php:113 libraries/common.lib.php:1561 msgid "Mar" msgstr "Maret" #. l10n: Short month name -#: js/messages.php:103 libraries/common.lib.php:1563 +#: js/messages.php:115 libraries/common.lib.php:1563 msgid "Apr" msgstr "April" #. l10n: Short month name -#: js/messages.php:105 libraries/common.lib.php:1565 +#: js/messages.php:117 libraries/common.lib.php:1565 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1121,178 +1159,178 @@ msgid "May" msgstr "Mei" #. l10n: Short month name -#: js/messages.php:107 libraries/common.lib.php:1567 +#: js/messages.php:119 libraries/common.lib.php:1567 msgid "Jun" msgstr "Juni" #. l10n: Short month name -#: js/messages.php:109 libraries/common.lib.php:1569 +#: js/messages.php:121 libraries/common.lib.php:1569 msgid "Jul" msgstr "Juli" #. l10n: Short month name -#: js/messages.php:111 libraries/common.lib.php:1571 +#: js/messages.php:123 libraries/common.lib.php:1571 msgid "Aug" msgstr "Agustus" #. l10n: Short month name -#: js/messages.php:113 libraries/common.lib.php:1573 +#: js/messages.php:125 libraries/common.lib.php:1573 msgid "Sep" msgstr "September" #. l10n: Short month name -#: js/messages.php:115 libraries/common.lib.php:1575 +#: js/messages.php:127 libraries/common.lib.php:1575 msgid "Oct" msgstr "Oktober" #. l10n: Short month name -#: js/messages.php:117 libraries/common.lib.php:1577 +#: js/messages.php:129 libraries/common.lib.php:1577 msgid "Nov" msgstr "Nopember" #. l10n: Short month name -#: js/messages.php:119 libraries/common.lib.php:1579 +#: js/messages.php:131 libraries/common.lib.php:1579 msgid "Dec" msgstr "Desember" -#: js/messages.php:122 +#: js/messages.php:134 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "Minggu" -#: js/messages.php:123 +#: js/messages.php:135 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "Senin" -#: js/messages.php:124 +#: js/messages.php:136 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "Selasa" -#: js/messages.php:125 +#: js/messages.php:137 msgid "Wednesday" msgstr "" -#: js/messages.php:126 +#: js/messages.php:138 msgid "Thursday" msgstr "" -#: js/messages.php:127 +#: js/messages.php:139 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "Jumat" -#: js/messages.php:128 +#: js/messages.php:140 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:132 libraries/common.lib.php:1582 +#: js/messages.php:144 libraries/common.lib.php:1582 msgid "Sun" msgstr "Minggu" #. l10n: Short week day name -#: js/messages.php:134 libraries/common.lib.php:1584 +#: js/messages.php:146 libraries/common.lib.php:1584 msgid "Mon" msgstr "Senin" #. l10n: Short week day name -#: js/messages.php:136 libraries/common.lib.php:1586 +#: js/messages.php:148 libraries/common.lib.php:1586 msgid "Tue" msgstr "Selasa" #. l10n: Short week day name -#: js/messages.php:138 libraries/common.lib.php:1588 +#: js/messages.php:150 libraries/common.lib.php:1588 msgid "Wed" msgstr "Rabu" #. l10n: Short week day name -#: js/messages.php:140 libraries/common.lib.php:1590 +#: js/messages.php:152 libraries/common.lib.php:1590 msgid "Thu" msgstr "Kamis" #. l10n: Short week day name -#: js/messages.php:142 libraries/common.lib.php:1592 +#: js/messages.php:154 libraries/common.lib.php:1592 msgid "Fri" msgstr "Jumat" #. l10n: Short week day name -#: js/messages.php:144 libraries/common.lib.php:1594 +#: js/messages.php:156 libraries/common.lib.php:1594 msgid "Sat" msgstr "Sabtu" #. l10n: Minimal week day name -#: js/messages.php:148 +#: js/messages.php:160 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "Minggu" #. l10n: Minimal week day name -#: js/messages.php:150 +#: js/messages.php:162 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "Senin" #. l10n: Minimal week day name -#: js/messages.php:152 +#: js/messages.php:164 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "Selasa" #. l10n: Minimal week day name -#: js/messages.php:154 +#: js/messages.php:166 #, fuzzy #| msgid "Wed" msgid "We" msgstr "Rabu" #. l10n: Minimal week day name -#: js/messages.php:156 +#: js/messages.php:168 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "Kamis" #. l10n: Minimal week day name -#: js/messages.php:158 +#: js/messages.php:170 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "Jumat" #. l10n: Minimal week day name -#: js/messages.php:160 +#: js/messages.php:172 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "Sabtu" #. l10n: Column header for week of the year in calendar -#: js/messages.php:162 +#: js/messages.php:174 #, fuzzy #| msgid "Wiki" msgid "Wk" msgstr "Wiki" -#: js/messages.php:164 +#: js/messages.php:176 msgid "Hour" msgstr "" -#: js/messages.php:165 +#: js/messages.php:177 #, fuzzy #| msgid "in use" msgid "Minute" msgstr "sedang digunakan" -#: js/messages.php:166 +#: js/messages.php:178 #, fuzzy #| msgid "per second" msgid "Second" @@ -1352,7 +1390,7 @@ msgstr "Indeks" #: libraries/Index.class.php:444 libraries/mult_submits.inc.php:103 #: libraries/tbl_properties.inc.php:519 tbl_structure.php:33 -#: tbl_structure.php:155 tbl_structure.php:159 tbl_structure.php:474 +#: tbl_structure.php:155 tbl_structure.php:159 tbl_structure.php:472 #: tbl_tracking.php:322 msgid "Unique" msgstr "Unik" @@ -1393,8 +1431,8 @@ msgid "" "removed." msgstr "" -#: libraries/List_Database.class.php:431 libraries/server_links.inc.php:41 -#: server_databases.php:88 server_privileges.php:1660 +#: libraries/List_Database.class.php:431 libraries/server_links.inc.php:42 +#: server_databases.php:88 server_privileges.php:1680 #: setup/lib/messages.inc.php:110 test/theme.php:93 msgid "Databases" msgstr "Database" @@ -1561,7 +1599,7 @@ msgstr "Kata Sandi:" msgid "Server Choice" msgstr "Pilihan Server" -#: libraries/auth/cookie.auth.lib.php:320 libraries/header.inc.php:59 +#: libraries/auth/cookie.auth.lib.php:320 libraries/header.inc.php:63 msgid "Cookies must be enabled past this point." msgstr "Mulai dari sini Cookies harus diaktifkan." @@ -1641,7 +1679,7 @@ msgstr "" "Gagal menggunakan iconv, libiconv atau fungsi recode_string selama ekstensi " "masih dalam keadaan di-load. Periksa kembali konfigurasi PHP." -#: libraries/common.inc.php:583 +#: libraries/common.inc.php:587 msgid "" "phpMyAdmin was unable to read your configuration file!
This might " "happen if PHP finds a parse error in it or PHP cannot find the file.
Jika muncul sebuah halaman kosong, artinya tidak ada " "masalah." -#: libraries/common.inc.php:594 +#: libraries/common.inc.php:598 #, fuzzy, php-format #| msgid "Could not load default configuration from: \"%1$s\"" msgid "Could not load default configuration from: %1$s" msgstr "Tidak dapat memuat konfigurasi default dari: \"%1$s\"" -#: libraries/common.inc.php:599 +#: libraries/common.inc.php:603 msgid "" "The $cfg['PmaAbsoluteUri'] directive MUST be set in your " "configuration file!" msgstr "" "Directif $cfg['PmaAbsoluteUri'] WAJIB diset dalam file konfigurasi!" -#: libraries/common.inc.php:629 +#: libraries/common.inc.php:633 #, php-format msgid "Invalid server index: %s" msgstr "" -#: libraries/common.inc.php:636 +#: libraries/common.inc.php:640 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" -#: libraries/common.inc.php:645 libraries/header.inc.php:96 +#: libraries/common.inc.php:649 libraries/header.inc.php:100 #: libraries/select_server.lib.php:41 libraries/select_server.lib.php:47 #: main.php:185 test/theme.php:57 msgid "Server" msgstr "Server" -#: libraries/common.inc.php:823 +#: libraries/common.inc.php:827 msgid "Invalid authentication method set in configuration:" msgstr "" -#: libraries/common.inc.php:926 +#: libraries/common.inc.php:930 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Disarankan untuk meng-update ke %s versi %s atau lebih baru." @@ -1823,45 +1861,45 @@ msgstr "," msgid "%B %d, %Y at %I:%M %p" msgstr "%d. %B %Y jam %H:%M" -#: libraries/common.lib.php:1907 +#: libraries/common.lib.php:1911 #, 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:2322 libraries/common.lib.php:2325 +#: libraries/common.lib.php:2326 libraries/common.lib.php:2329 #: libraries/display_tbl.lib.php:290 server_status.php:719 msgid "Begin" msgstr "Awal" -#: libraries/common.lib.php:2323 libraries/common.lib.php:2326 +#: libraries/common.lib.php:2327 libraries/common.lib.php:2330 #: libraries/display_tbl.lib.php:291 server_binlog.php:168 #: server_binlog.php:170 msgid "Previous" msgstr "Sebelumnya" -#: libraries/common.lib.php:2354 libraries/common.lib.php:2357 +#: libraries/common.lib.php:2358 libraries/common.lib.php:2361 #: libraries/display_tbl.lib.php:353 msgid "End" msgstr "Terakhir" -#: libraries/common.lib.php:2430 +#: libraries/common.lib.php:2434 #, php-format msgid "Jump to database "%s"." msgstr "Lompat langsung ke database "%s"." -#: libraries/common.lib.php:2450 +#: libraries/common.lib.php:2454 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" -#: libraries/common.lib.php:2830 libraries/common.lib.php:2837 +#: libraries/common.lib.php:2834 libraries/common.lib.php:2841 #: libraries/db_links.inc.php:68 libraries/export/sql.php:25 -#: libraries/import/sql.php:18 libraries/server_links.inc.php:45 +#: libraries/import/sql.php:18 libraries/server_links.inc.php:46 #: libraries/tbl_links.inc.php:60 querywindow.php:99 test/theme.php:97 msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2839 libraries/db_links.inc.php:104 +#: libraries/common.lib.php:2843 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,16 +1946,16 @@ msgstr "Cari berdasarkan data contoh" msgid "Designer" msgstr "Perancang" -#: libraries/db_links.inc.php:98 libraries/server_links.inc.php:88 +#: libraries/db_links.inc.php:98 libraries/server_links.inc.php:89 #: libraries/tbl_links.inc.php:91 pmd_pdf.php:84 pmd_pdf.php:110 #: setup/frames/menu.inc.php:21 #, fuzzy msgid "Import" msgstr "Ekspor" -#: libraries/db_links.inc.php:111 libraries/server_links.inc.php:66 -#: server_privileges.php:111 server_privileges.php:1722 -#: server_privileges.php:2071 test/theme.php:117 +#: libraries/db_links.inc.php:111 libraries/server_links.inc.php:67 +#: server_privileges.php:112 server_privileges.php:1742 +#: server_privileges.php:2092 test/theme.php:117 msgid "Privileges" msgstr "Hak Akses" @@ -1938,7 +1976,7 @@ msgstr "" "html#faq3_11@Dokumentasi]FAQ 3.11[/a]" #: libraries/db_structure.lib.php:69 server_databases.php:142 -#: tbl_printview.php:336 tbl_structure.php:682 +#: tbl_printview.php:336 tbl_structure.php:680 msgid "Overhead" msgstr "Kelebihan (Overhead)" @@ -1956,7 +1994,7 @@ msgstr "Server tidak menjawab" msgid "(or the local MySQL server's socket is not correctly configured)" msgstr "(atau konfigurasi socket dari server MySQL tidak benar)" -#: libraries/dbi/mysql.dbi.lib.php:362 tbl_structure.php:608 +#: libraries/dbi/mysql.dbi.lib.php:362 tbl_structure.php:606 msgid "Details..." msgstr "Rincian..." @@ -1966,22 +2004,22 @@ msgid "Change password" msgstr "Ubah Kata Sandi" #: libraries/display_change_password.lib.php:35 -#: libraries/replication_gui.lib.php:345 server_privileges.php:807 +#: libraries/replication_gui.lib.php:345 server_privileges.php:808 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:796 -#: server_privileges.php:800 server_privileges.php:811 -#: server_privileges.php:1538 server_synchronize.php:1175 +#: libraries/replication_gui.lib.php:349 server_privileges.php:797 +#: server_privileges.php:801 server_privileges.php:812 +#: server_privileges.php:1558 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:815 server_privileges.php:818 +#: server_privileges.php:816 server_privileges.php:819 msgid "Re-type" msgstr "Ketik ulang" @@ -1996,12 +2034,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:822 +#: libraries/replication_gui.lib.php:360 server_privileges.php:823 msgid "Generate Password" msgstr "Menghasilkan kata sandi" #: libraries/display_change_password.lib.php:75 -#: libraries/replication_gui.lib.php:363 server_privileges.php:825 +#: libraries/replication_gui.lib.php:363 server_privileges.php:826 msgid "Generate" msgstr "Menghasilkan" @@ -2014,8 +2052,8 @@ msgstr "Ciptakan database baru" msgid "Create" msgstr "Ciptakan" -#: libraries/display_create_database.lib.php:40 server_privileges.php:113 -#: server_privileges.php:1427 server_replication.php:35 +#: libraries/display_create_database.lib.php:40 server_privileges.php:114 +#: server_privileges.php:1447 server_replication.php:35 msgid "No Privileges" msgstr "Tidak ada Hak Akses (privilege)" @@ -2104,7 +2142,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:1875 server_processlist.php:75 +#: server_privileges.php:1895 server_processlist.php:75 msgid "None" msgstr "tanpa" @@ -2289,7 +2327,7 @@ msgstr "Urut berdasarkan kunci" #: libraries/import/docsql.php:34 libraries/import/ldi.php:47 #: libraries/import/ods.php:30 libraries/import/sql.php:20 #: libraries/import/xls.php:26 libraries/import/xlsx.php:26 -#: libraries/import/xml.php:25 tbl_select.php:267 tbl_structure.php:753 +#: libraries/import/xml.php:25 tbl_select.php:267 tbl_structure.php:751 #, fuzzy msgid "Options" msgstr "Operasi" @@ -2368,7 +2406,7 @@ msgstr "pencarian membutuhkan waktu %01.4f detik" #: libraries/display_tbl.lib.php:2089 libraries/mult_submits.inc.php:113 #: querywindow.php:125 querywindow.php:129 querywindow.php:132 -#: tbl_structure.php:25 tbl_structure.php:150 tbl_structure.php:470 +#: tbl_structure.php:25 tbl_structure.php:150 tbl_structure.php:468 msgid "Change" msgstr "Ubah" @@ -2437,7 +2475,7 @@ msgstr "Penggunaan penampungan Buffer" #: libraries/engines/innodb.lib.php:194 server_databases.php:137 #: server_databases.php:305 server_status.php:525 server_status.php:586 -#: server_status.php:607 tbl_printview.php:351 tbl_structure.php:696 +#: server_status.php:607 tbl_printview.php:351 tbl_structure.php:694 msgid "Total" msgstr "Jumlah" @@ -2699,7 +2737,7 @@ msgid "" msgstr "" #: libraries/export/codegen.php:37 setup/lib/messages.inc.php:88 -#: tbl_printview.php:376 tbl_structure.php:737 +#: tbl_printview.php:376 tbl_structure.php:735 msgid "Format" msgstr "Format" @@ -2771,8 +2809,8 @@ 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:576 server_replication.php:316 tbl_printview.php:317 -#: tbl_structure.php:665 +#: server_privileges.php:577 server_replication.php:316 tbl_printview.php:317 +#: tbl_structure.php:663 msgid "Data" msgstr "Data" @@ -2821,9 +2859,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:731 -#: server_privileges.php:734 server_privileges.php:790 -#: server_privileges.php:1537 server_privileges.php:2069 +#: libraries/replication_gui.lib.php:329 server_privileges.php:732 +#: server_privileges.php:735 server_privileges.php:791 +#: server_privileges.php:1557 server_privileges.php:2090 #: server_processlist.php:55 server_synchronize.php:1159 msgid "Host" msgstr "Host" @@ -3021,7 +3059,7 @@ msgstr "Ekspor isi" msgid "Open new phpMyAdmin window" msgstr "" -#: libraries/header.inc.php:115 +#: libraries/header.inc.php:119 #, fuzzy msgid "New table" msgstr "Tabel tidak ditemukan" @@ -3183,20 +3221,20 @@ 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 +#: tbl_structure.php:471 msgid "Primary" msgstr "Kunci Utama" #: libraries/mult_submits.inc.php:98 libraries/tbl_properties.inc.php:116 #: libraries/tbl_properties.inc.php:525 tbl_printview.php:326 #: tbl_structure.php:31 tbl_structure.php:154 tbl_structure.php:158 -#: tbl_structure.php:475 tbl_structure.php:673 +#: tbl_structure.php:473 tbl_structure.php:671 msgid "Index" msgstr "Indeks" #: libraries/mult_submits.inc.php:108 libraries/tbl_properties.inc.php:531 #: tbl_structure.php:35 tbl_structure.php:156 tbl_structure.php:160 -#: tbl_structure.php:478 +#: tbl_structure.php:476 msgid "Fulltext" msgstr "Teks penuh" @@ -3499,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:711 -#: server_privileges.php:714 server_privileges.php:721 +#: libraries/replication_gui.lib.php:259 server_privileges.php:712 +#: server_privileges.php:715 server_privileges.php:722 #: server_synchronize.php:1171 msgid "User name" msgstr "Nama pengguna" @@ -3525,7 +3563,7 @@ msgstr "Variabel" #: 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 +#: tbl_structure.php:727 msgid "Value" msgstr "Nilai" @@ -3543,34 +3581,34 @@ msgstr "" msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:254 server_privileges.php:716 +#: libraries/replication_gui.lib.php:254 server_privileges.php:717 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:717 -#: server_privileges.php:784 server_privileges.php:808 -#: server_privileges.php:1928 server_privileges.php:1958 +#: libraries/replication_gui.lib.php:346 server_privileges.php:718 +#: server_privileges.php:785 server_privileges.php:809 +#: server_privileges.php:1948 server_privileges.php:1978 msgid "Use text field" msgstr "Gunakan text field" -#: libraries/replication_gui.lib.php:302 server_privileges.php:764 +#: libraries/replication_gui.lib.php:302 server_privileges.php:765 msgid "Any host" msgstr "Setiap host" -#: libraries/replication_gui.lib.php:306 server_privileges.php:768 +#: libraries/replication_gui.lib.php:306 server_privileges.php:769 msgid "Local" msgstr "Lokal" -#: libraries/replication_gui.lib.php:312 server_privileges.php:773 +#: libraries/replication_gui.lib.php:312 server_privileges.php:774 msgid "This Host" msgstr "Host yang ini" -#: libraries/replication_gui.lib.php:318 server_privileges.php:779 +#: libraries/replication_gui.lib.php:318 server_privileges.php:780 msgid "Use Host Table" msgstr "Gunakan Host Table" -#: libraries/replication_gui.lib.php:331 server_privileges.php:792 +#: libraries/replication_gui.lib.php:331 server_privileges.php:793 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -3605,29 +3643,29 @@ msgstr "" msgid "Servers" msgstr "Server" -#: libraries/server_links.inc.php:53 server_engines.php:112 +#: libraries/server_links.inc.php:54 server_engines.php:112 #: server_engines.php:116 server_status.php:415 test/theme.php:105 msgid "Variables" msgstr "Variabel" -#: libraries/server_links.inc.php:57 test/theme.php:109 +#: libraries/server_links.inc.php:58 test/theme.php:109 msgid "Charsets" msgstr "Penyusunan Karakter" -#: libraries/server_links.inc.php:61 test/theme.php:113 +#: libraries/server_links.inc.php:62 test/theme.php:113 msgid "Engines" msgstr "Mesin" -#: libraries/server_links.inc.php:76 server_binlog.php:110 +#: libraries/server_links.inc.php:77 server_binlog.php:110 #: server_status.php:364 test/theme.php:121 msgid "Binary log" msgstr "Log binari" -#: libraries/server_links.inc.php:80 +#: libraries/server_links.inc.php:81 msgid "Processes" msgstr "Proses Aktif" -#: libraries/server_links.inc.php:92 server_synchronize.php:1092 +#: libraries/server_links.inc.php:93 server_synchronize.php:1092 #: server_synchronize.php:1100 msgid "Synchronize" msgstr "" @@ -3878,13 +3916,13 @@ msgstr "" msgid "Save" msgstr "Simpan" -#: libraries/tbl_properties.inc.php:780 tbl_structure.php:542 +#: libraries/tbl_properties.inc.php:780 tbl_structure.php:540 #, fuzzy, php-format #| msgid "Add %s field(s)" msgid "Add %s column(s)" msgstr "Menambahkan %s field(s)" -#: libraries/tbl_properties.inc.php:784 tbl_structure.php:536 +#: libraries/tbl_properties.inc.php:784 tbl_structure.php:534 #, fuzzy #| msgid "You have to add at least one field." msgid "You have to add at least one column." @@ -4082,8 +4120,8 @@ msgstr "Reset" msgid "Protocol version" msgstr "" -#: main.php:189 server_privileges.php:1389 server_privileges.php:1536 -#: server_privileges.php:1650 server_privileges.php:2068 +#: main.php:189 server_privileges.php:1406 server_privileges.php:1556 +#: server_privileges.php:1670 server_privileges.php:2089 #: server_processlist.php:54 msgid "User" msgstr "Pengguna" @@ -4528,117 +4566,117 @@ msgstr "Mesin Penyimpan" msgid "View dump (schema) of databases" msgstr "Tampilkan Dump (skema) dari database" -#: server_privileges.php:24 server_privileges.php:266 +#: server_privileges.php:25 server_privileges.php:267 msgid "Includes all privileges except GRANT." msgstr "Menggunakan seluruh Hak Istimewa (Privileges) selain GRANT." -#: server_privileges.php:25 server_privileges.php:192 -#: server_privileges.php:515 +#: server_privileges.php:26 server_privileges.php:193 +#: server_privileges.php:516 msgid "Allows altering the structure of existing tables." msgstr "Mengizinkan untuk merubah struktur dari tabel yang ada." -#: server_privileges.php:26 server_privileges.php:208 -#: server_privileges.php:521 +#: server_privileges.php:27 server_privileges.php:209 +#: server_privileges.php:522 msgid "Allows altering and dropping stored routines." msgstr "Mengizinkan perubahan dan penghapusan dari Routines yang tersimpan." -#: server_privileges.php:27 server_privileges.php:184 -#: server_privileges.php:514 +#: server_privileges.php:28 server_privileges.php:185 +#: server_privileges.php:515 msgid "Allows creating new databases and tables." msgstr "Mengizinkan untuk menciptakan database dan tabel baru." -#: server_privileges.php:28 server_privileges.php:207 -#: server_privileges.php:520 +#: server_privileges.php:29 server_privileges.php:208 +#: server_privileges.php:521 msgid "Allows creating stored routines." msgstr "Mengizinkan penciptaan Routines yang akan disimpan." -#: server_privileges.php:29 server_privileges.php:514 +#: server_privileges.php:30 server_privileges.php:515 msgid "Allows creating new tables." msgstr "Mengizinkan untuk menciptakan tabel baru." -#: server_privileges.php:30 server_privileges.php:195 -#: server_privileges.php:518 +#: server_privileges.php:31 server_privileges.php:196 +#: server_privileges.php:519 msgid "Allows creating temporary tables." msgstr "Mengizinkan untuk menciptakan tabel yang bersifat temporer." -#: server_privileges.php:31 server_privileges.php:209 -#: server_privileges.php:554 +#: server_privileges.php:32 server_privileges.php:210 +#: server_privileges.php:555 msgid "Allows creating, dropping and renaming user accounts." msgstr "Mengizinkan penciptaan, penghapusan dan perubahan account pengguna." -#: server_privileges.php:32 server_privileges.php:199 -#: server_privileges.php:203 server_privileges.php:526 -#: server_privileges.php:530 +#: server_privileges.php:33 server_privileges.php:200 +#: server_privileges.php:204 server_privileges.php:527 +#: server_privileges.php:531 msgid "Allows creating new views." msgstr "Mengizinkan untuk menciptakan pandangan baru." -#: server_privileges.php:33 server_privileges.php:183 -#: server_privileges.php:506 +#: server_privileges.php:34 server_privileges.php:184 +#: server_privileges.php:507 msgid "Allows deleting data." msgstr "Mengizinkan untuk hapus data." -#: server_privileges.php:34 server_privileges.php:185 -#: server_privileges.php:517 +#: server_privileges.php:35 server_privileges.php:186 +#: server_privileges.php:518 msgid "Allows dropping databases and tables." msgstr "Mengizinkan untuk hapus database dan tabel." -#: server_privileges.php:35 server_privileges.php:517 +#: server_privileges.php:36 server_privileges.php:518 msgid "Allows dropping tables." msgstr "Mengizinkan untuk hapus tabel." -#: server_privileges.php:36 server_privileges.php:200 -#: server_privileges.php:534 +#: server_privileges.php:37 server_privileges.php:201 +#: server_privileges.php:535 msgid "Allows to set up events for the event scheduler" msgstr "" -#: server_privileges.php:37 server_privileges.php:210 -#: server_privileges.php:522 +#: server_privileges.php:38 server_privileges.php:211 +#: server_privileges.php:523 msgid "Allows executing stored routines." msgstr "Mengizinkan eksekusi Routines yang tersimpan." -#: server_privileges.php:38 server_privileges.php:189 -#: server_privileges.php:509 +#: server_privileges.php:39 server_privileges.php:190 +#: server_privileges.php:510 msgid "Allows importing data from and exporting data into files." msgstr "Mengizinkan untuk impor data dari file dan ekspor data kedalam file." -#: server_privileges.php:39 server_privileges.php:540 +#: server_privileges.php:40 server_privileges.php:541 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "Mengizinkan untuk menambah pengguna dan Hak Istimewa (Privileges) tanpa " "harus me-reload ulang tabel Hak Istimewa." -#: server_privileges.php:40 server_privileges.php:191 -#: server_privileges.php:516 +#: server_privileges.php:41 server_privileges.php:192 +#: server_privileges.php:517 msgid "Allows creating and dropping indexes." msgstr "Mengizinkan untuk menciptakan dan hapus Indeks." -#: server_privileges.php:41 server_privileges.php:181 -#: server_privileges.php:442 server_privileges.php:504 +#: server_privileges.php:42 server_privileges.php:182 +#: server_privileges.php:443 server_privileges.php:505 msgid "Allows inserting and replacing data." msgstr "Mengizinkan untuk tambah dan ganti data." -#: server_privileges.php:42 server_privileges.php:196 -#: server_privileges.php:549 +#: server_privileges.php:43 server_privileges.php:197 +#: server_privileges.php:550 msgid "Allows locking tables for the current thread." msgstr "Mengizinkan untuk mengunci tabel dalam Thread yang lagi berjalan." -#: server_privileges.php:43 server_privileges.php:646 -#: server_privileges.php:648 +#: server_privileges.php:44 server_privileges.php:647 +#: server_privileges.php:649 msgid "Limits the number of new connections the user may open per hour." msgstr "" "Membatasi jumlah koneksi baru yang diperbolehkan untuk setiap pengguna dalam " "batas waktu satu jam." -#: server_privileges.php:44 server_privileges.php:634 -#: server_privileges.php:636 +#: server_privileges.php:45 server_privileges.php:635 +#: server_privileges.php:637 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" "Membatasi jumlah pencarian (Queries) yang diperbolehkan untuk setiap " "pengguna dalam batas waktu satu jam." -#: server_privileges.php:45 server_privileges.php:640 -#: server_privileges.php:642 +#: server_privileges.php:46 server_privileges.php:641 +#: server_privileges.php:643 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -4646,64 +4684,64 @@ 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 +#: server_privileges.php:47 server_privileges.php:653 +#: server_privileges.php:655 #, fuzzy msgid "Limits the number of simultaneous connections the user may have." msgstr "" "Membatasi jumlah koneksi baru yang diperbolehkan untuk setiap pengguna dalam " "batas waktu satu jam." -#: server_privileges.php:47 server_privileges.php:188 -#: server_privileges.php:544 +#: server_privileges.php:48 server_privileges.php:189 +#: server_privileges.php:545 msgid "Allows viewing processes of all users" msgstr "" -#: server_privileges.php:48 server_privileges.php:190 -#: server_privileges.php:448 server_privileges.php:550 +#: server_privileges.php:49 server_privileges.php:191 +#: server_privileges.php:449 server_privileges.php:551 msgid "Has no effect in this MySQL version." msgstr "Tidak ada efek dalam versi MySQL yang digunakan." -#: server_privileges.php:49 server_privileges.php:186 -#: server_privileges.php:545 +#: server_privileges.php:50 server_privileges.php:187 +#: server_privileges.php:546 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" "Mengizinkan untuk reload stelan dari server dan untuk flush cache dari " "server." -#: server_privileges.php:50 server_privileges.php:198 -#: server_privileges.php:552 +#: server_privileges.php:51 server_privileges.php:199 +#: server_privileges.php:553 msgid "Allows the user to ask where the slaves / masters are." msgstr "" "Memberi hak kepada pengguna untuk menanyakan lokasi dari slaves / masters." -#: server_privileges.php:51 server_privileges.php:197 -#: server_privileges.php:553 +#: server_privileges.php:52 server_privileges.php:198 +#: server_privileges.php:554 msgid "Needed for the replication slaves." msgstr "Digunakan untuk replikasi dari slaves." -#: server_privileges.php:52 server_privileges.php:180 -#: server_privileges.php:439 server_privileges.php:503 +#: server_privileges.php:53 server_privileges.php:181 +#: server_privileges.php:440 server_privileges.php:504 msgid "Allows reading data." msgstr "Mengizinkan untuk baca data." -#: server_privileges.php:53 server_privileges.php:193 -#: server_privileges.php:547 +#: server_privileges.php:54 server_privileges.php:194 +#: server_privileges.php:548 msgid "Gives access to the complete list of databases." msgstr "Memberi akses ke seluruh daftar database." -#: server_privileges.php:54 server_privileges.php:204 -#: server_privileges.php:206 server_privileges.php:519 +#: server_privileges.php:55 server_privileges.php:205 +#: server_privileges.php:207 server_privileges.php:520 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Mengizinkan pencarian dengan cara SHOW CREATE VIEW." -#: server_privileges.php:55 server_privileges.php:187 -#: server_privileges.php:546 +#: server_privileges.php:56 server_privileges.php:188 +#: server_privileges.php:547 msgid "Allows shutting down the server." msgstr "Mengizinkan untuk shut-down server." -#: server_privileges.php:56 server_privileges.php:194 -#: server_privileges.php:543 +#: server_privileges.php:57 server_privileges.php:195 +#: server_privileges.php:544 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -4713,161 +4751,161 @@ msgstr "" "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 +#: server_privileges.php:58 server_privileges.php:202 +#: server_privileges.php:536 #, fuzzy msgid "Allows creating and dropping triggers" msgstr "Mengizinkan untuk menciptakan dan hapus Indeks." -#: server_privileges.php:58 server_privileges.php:182 -#: server_privileges.php:445 server_privileges.php:505 +#: server_privileges.php:59 server_privileges.php:183 +#: server_privileges.php:446 server_privileges.php:506 msgid "Allows changing data." msgstr "Mengizinkan untuk ubah data." -#: server_privileges.php:59 server_privileges.php:260 +#: server_privileges.php:60 server_privileges.php:261 msgid "No privileges." msgstr "Tanpa Hak Istimewa (Privileges)." -#: server_privileges.php:302 server_privileges.php:303 +#: server_privileges.php:303 server_privileges.php:304 #, fuzzy #| msgid "None" msgctxt "None privileges" msgid "None" msgstr "tanpa" -#: server_privileges.php:431 server_privileges.php:566 -#: server_privileges.php:1718 server_privileges.php:1724 +#: server_privileges.php:432 server_privileges.php:567 +#: server_privileges.php:1738 server_privileges.php:1744 msgid "Table-specific privileges" msgstr "Hak (privileges) khusus terhadap tabel" -#: server_privileges.php:432 server_privileges.php:574 -#: server_privileges.php:1540 +#: server_privileges.php:433 server_privileges.php:575 +#: server_privileges.php:1560 msgid " Note: MySQL privilege names are expressed in English " msgstr " Catatan: Nama privilege MySQL dalam bahasa Ingris " -#: server_privileges.php:563 server_privileges.php:1539 +#: server_privileges.php:564 server_privileges.php:1559 msgid "Global privileges" msgstr "Hak Istimewa (Privileges) Global" -#: server_privileges.php:565 server_privileges.php:1718 +#: server_privileges.php:566 server_privileges.php:1738 msgid "Database-specific privileges" msgstr "Hak (privileges) khusus terhadap Database" -#: server_privileges.php:610 +#: server_privileges.php:611 msgid "Administration" msgstr "Administrasi" -#: server_privileges.php:630 +#: server_privileges.php:631 msgid "Resource limits" msgstr "Batas dari sumber" -#: server_privileges.php:631 +#: server_privileges.php:632 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "" "Perhatian: Perubahan pilihan ini ke posisi 0 (zero) akan menghapus batas " "yang telah ditentukan." -#: server_privileges.php:708 +#: server_privileges.php:709 msgid "Login Information" msgstr "Informasi Login" -#: server_privileges.php:802 +#: server_privileges.php:803 msgid "Do not change the password" msgstr "Jangan ubah Kata Sandi" -#: server_privileges.php:843 server_privileges.php:2205 +#: server_privileges.php:844 server_privileges.php:2226 #, fuzzy #| msgid "No user(s) found." msgid "No user found." msgstr "Pengguna tidak ditemukan." -#: server_privileges.php:887 +#: server_privileges.php:888 #, php-format msgid "The user %s already exists!" msgstr "Pengguna %s telah terdaftar!" -#: server_privileges.php:970 +#: server_privileges.php:971 msgid "You have added a new user." msgstr "Pengguna baru telah ditambahkan." -#: server_privileges.php:1191 +#: server_privileges.php:1196 #, php-format msgid "You have updated the privileges for %s." msgstr "Hak Akses (privilege) untuk %s telah di-update." -#: server_privileges.php:1215 +#: server_privileges.php:1220 #, php-format msgid "You have revoked the privileges for %s" msgstr "Hak akses untuk %s telah dicabut" -#: server_privileges.php:1251 +#: server_privileges.php:1256 #, php-format msgid "The password for %s was changed successfully." msgstr "Sukses mengubah Kata Sandi untuk %s ." -#: server_privileges.php:1271 +#: server_privileges.php:1276 #, php-format msgid "Deleting %s" msgstr "Menghapus %s" -#: server_privileges.php:1282 +#: server_privileges.php:1287 msgid "No users selected for deleting!" msgstr "Tidak ada pengguna yang dipilih untuk dihapus!" -#: server_privileges.php:1285 +#: server_privileges.php:1290 msgid "Reloading the privileges" msgstr "Reload Hak Istimewa (Privileges)" -#: server_privileges.php:1300 +#: server_privileges.php:1305 msgid "The selected users have been deleted successfully." msgstr "Sukses menghapus Pengguna yang dipilih." -#: server_privileges.php:1335 +#: server_privileges.php:1344 msgid "The privileges were reloaded successfully." msgstr "Sukses reload Hak Istimewa (Privileges)." -#: server_privileges.php:1363 server_privileges.php:1649 +#: server_privileges.php:1380 server_privileges.php:1669 msgid "Edit Privileges" msgstr "Ubah hak akses (privilege)" -#: server_privileges.php:1372 +#: server_privileges.php:1389 msgid "Revoke" msgstr "Cabut" -#: server_privileges.php:1404 +#: server_privileges.php:1424 msgid "User overview" msgstr "Pandangan Umum Pengguna" -#: server_privileges.php:1541 server_privileges.php:1723 -#: server_privileges.php:2072 +#: server_privileges.php:1561 server_privileges.php:1743 +#: server_privileges.php:2093 msgid "Grant" msgstr "Izin" -#: server_privileges.php:1560 server_privileges.php:2162 +#: server_privileges.php:1580 server_privileges.php:2183 msgid "Any" msgstr "Setiap" -#: server_privileges.php:1609 server_privileges.php:1633 -#: server_privileges.php:2027 server_privileges.php:2216 +#: server_privileges.php:1629 server_privileges.php:1653 +#: server_privileges.php:2048 server_privileges.php:2237 msgid "Add a new User" msgstr "Menambahkan pengguna baru" -#: server_privileges.php:1614 +#: server_privileges.php:1634 msgid "Remove selected users" msgstr "Hapus pengguna yang dipilih" -#: server_privileges.php:1617 +#: server_privileges.php:1637 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:1618 server_privileges.php:1619 -#: server_privileges.php:1620 +#: server_privileges.php:1638 server_privileges.php:1639 +#: server_privileges.php:1640 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:1636 +#: server_privileges.php:1656 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -4881,94 +4919,94 @@ msgstr "" "diubah secara manual. Disarankan untuk %sme-reload profil pengguna%s sebelum " "melanjut." -#: server_privileges.php:1684 +#: server_privileges.php:1704 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:1724 +#: server_privileges.php:1744 msgid "Column-specific privileges" msgstr "Hak (privileges) khusus terhadap kolum" -#: server_privileges.php:1925 +#: server_privileges.php:1945 msgid "Add privileges on the following database" msgstr "Menambahkan hak (privileges) pada database berikut" -#: server_privileges.php:1943 +#: server_privileges.php:1963 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:1946 +#: server_privileges.php:1966 msgid "Add privileges on the following table" msgstr "Menambahkan hak (privileges) pada tabel berikut" -#: server_privileges.php:2003 +#: server_privileges.php:2023 msgid "Change Login Information / Copy User" msgstr "Ubah informasi Login / Salip pengguna" -#: server_privileges.php:2006 +#: server_privileges.php:2026 msgid "Create a new user with the same privileges and ..." msgstr "Ciptakan pengguna baru dengan hak-hak yang sama dan ..." -#: server_privileges.php:2008 +#: server_privileges.php:2028 msgid "... keep the old one." msgstr "... mempertahankan yang lama." -#: server_privileges.php:2009 +#: server_privileges.php:2029 msgid " ... delete the old one from the user tables." msgstr " ... hapus yang lama dari User Table." -#: server_privileges.php:2010 +#: server_privileges.php:2030 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:2011 +#: server_privileges.php:2031 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:2033 +#: server_privileges.php:2054 msgid "Database for user" msgstr "Database untuk pengguna" -#: server_privileges.php:2037 +#: server_privileges.php:2058 #, fuzzy #| msgid "None" msgctxt "Create none database for user" msgid "None" msgstr "tanpa" -#: server_privileges.php:2038 +#: server_privileges.php:2059 msgid "Create database with same name and grant all privileges" msgstr "Buat database dengan nama yang sama dan beri semua hak" -#: server_privileges.php:2039 +#: server_privileges.php:2060 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "Berikan semua hak untuk nama wildcard (pengguna\\_%)" -#: server_privileges.php:2042 +#: server_privileges.php:2063 #, php-format msgid "Grant all privileges on database "%s"" msgstr "Berikan semua hak untuk database "%s"." -#: server_privileges.php:2065 +#: server_privileges.php:2086 #, php-format msgid "Users having access to "%s"" msgstr "Pengguna memiliki akses ke "%s"" -#: server_privileges.php:2173 +#: server_privileges.php:2194 msgid "global" msgstr "global" -#: server_privileges.php:2175 +#: server_privileges.php:2196 msgid "database-specific" msgstr "database-spesifik" -#: server_privileges.php:2177 +#: server_privileges.php:2198 msgid "wildcard" msgstr "wildcard" @@ -7666,6 +7704,10 @@ msgstr "" msgid "Show insert query" msgstr "" +#: tbl_change.php:1143 +msgid "and then" +msgstr "selanjutnya" + #: tbl_change.php:1147 msgid "Go back to previous page" msgstr "kembali" @@ -7748,7 +7790,7 @@ msgstr "" msgid "Add to index  %s column(s)" msgstr "Menambahkan ke indeks  %s kolom" -#: tbl_indexes.php:256 tbl_structure.php:589 tbl_structure.php:600 +#: tbl_indexes.php:256 tbl_structure.php:587 tbl_structure.php:598 msgid "Column count has to be larger than zero." msgstr "Perhitungan kolom wajib lebih besar dari nol." @@ -7864,39 +7906,39 @@ msgstr "Cek integriti referensial:" msgid "Show tables" msgstr "Tampilkan tabel" -#: tbl_printview.php:310 tbl_structure.php:656 +#: tbl_printview.php:310 tbl_structure.php:654 msgid "Space usage" msgstr "Penggunaan tempat" -#: tbl_printview.php:314 tbl_structure.php:660 +#: tbl_printview.php:314 tbl_structure.php:658 msgid "Usage" msgstr "Penggunaan" -#: tbl_printview.php:341 tbl_structure.php:687 +#: tbl_printview.php:341 tbl_structure.php:685 msgid "Effective" msgstr "Efektif" -#: tbl_printview.php:366 tbl_structure.php:725 +#: tbl_printview.php:366 tbl_structure.php:723 msgid "Row Statistics" msgstr "Statistik Baris" -#: tbl_printview.php:369 tbl_structure.php:728 +#: tbl_printview.php:369 tbl_structure.php:726 msgid "Statements" msgstr "Keterangan" -#: tbl_printview.php:380 tbl_structure.php:740 +#: tbl_printview.php:380 tbl_structure.php:738 msgid "static" msgstr "" -#: tbl_printview.php:382 tbl_structure.php:742 +#: tbl_printview.php:382 tbl_structure.php:740 msgid "dynamic" msgstr "dinamis" -#: tbl_printview.php:404 tbl_structure.php:785 +#: tbl_printview.php:404 tbl_structure.php:783 msgid "Row length" msgstr "Panjangnya baris" -#: tbl_printview.php:414 tbl_structure.php:793 +#: tbl_printview.php:414 tbl_structure.php:791 msgid " Row size " msgstr " Besarnya baris " @@ -7969,50 +8011,50 @@ msgstr "tanpa" msgid "Column %s has been dropped" msgstr "Tabel %s telah dihapus" -#: tbl_structure.php:385 +#: tbl_structure.php:384 #, php-format msgid "A primary key has been added on %s" msgstr "Primary key telah ditambahkan pada %s" -#: tbl_structure.php:400 tbl_structure.php:414 tbl_structure.php:428 +#: tbl_structure.php:398 tbl_structure.php:412 tbl_structure.php:426 #, php-format msgid "An index has been added on %s" msgstr "Indeks telah ditambahkan pada %s" -#: tbl_structure.php:506 tbl_structure.php:508 +#: tbl_structure.php:504 tbl_structure.php:506 msgid "Relation view" msgstr "Tampilan relasi" -#: tbl_structure.php:515 tbl_structure.php:517 +#: tbl_structure.php:513 tbl_structure.php:515 msgid "Propose table structure" msgstr "Menganalisa struktur tabel" -#: tbl_structure.php:540 +#: tbl_structure.php:538 #, fuzzy #| msgid "Add %s field(s)" msgid "Add column" msgstr "Menambahkan %s field(s)" -#: tbl_structure.php:554 +#: tbl_structure.php:552 msgid "At End of Table" msgstr "Pada Akhir Tabel" -#: tbl_structure.php:555 +#: tbl_structure.php:553 msgid "At Beginning of Table" msgstr "Pada Awal Tabel" -#: tbl_structure.php:556 +#: tbl_structure.php:554 #, php-format msgid "After %s" msgstr "sisipkan setelah %s" -#: tbl_structure.php:594 +#: tbl_structure.php:592 #, fuzzy, php-format #| msgid "Create an index on %s columns" msgid "Create an index on  %s columns" msgstr "Ciptakan indeks pada kolom  %s " -#: tbl_structure.php:756 +#: tbl_structure.php:754 msgid "partitioned" msgstr "" diff --git a/po/it.po b/po/it.po index 6244dbddf..c9daf0bda 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-13 09:03-0400\n" +"POT-Creation-Date: 2010-06-22 00:55+0530\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:1514 +#: libraries/display_tbl.lib.php:417 server_privileges.php:1534 msgid "Show all" msgstr "Mostra tutti" -#: browse_foreigners.php:82 libraries/common.lib.php:2313 +#: browse_foreigners.php:82 libraries/common.lib.php:2317 #: 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,18 +39,18 @@ 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:2831 -#: libraries/common.lib.php:2838 libraries/db_links.inc.php:75 +#: db_structure.php:106 libraries/common.lib.php:2835 +#: libraries/common.lib.php:2842 libraries/db_links.inc.php:75 #: libraries/tbl_links.inc.php:63 msgid "Search" msgstr "Cerca" -#: browse_foreigners.php:153 db_operations.php:385 db_operations.php:429 -#: db_operations.php:499 db_operations.php:609 db_search.php:362 -#: db_structure.php:567 js/messages.php:48 libraries/Config.class.php:1046 +#: browse_foreigners.php:153 db_operations.php:394 db_operations.php:438 +#: db_operations.php:508 db_operations.php:618 db_search.php:362 +#: db_structure.php:565 js/messages.php:53 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:1335 libraries/common.lib.php:2288 +#: libraries/common.lib.php:1335 libraries/common.lib.php:2292 #: 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,15 +61,15 @@ 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:664 server_privileges.php:1624 -#: server_privileges.php:1971 server_privileges.php:2018 -#: server_privileges.php:2057 server_replication.php:235 +#: server_privileges.php:665 server_privileges.php:1644 +#: server_privileges.php:1991 server_privileges.php:2038 +#: server_privileges.php:2078 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 #: tbl_operations.php:302 tbl_operations.php:499 tbl_operations.php:561 -#: tbl_operations.php:681 tbl_select.php:327 tbl_structure.php:562 -#: tbl_structure.php:597 tbl_tracking.php:395 tbl_tracking.php:512 +#: tbl_operations.php:681 tbl_select.php:327 tbl_structure.php:560 +#: tbl_structure.php:595 tbl_tracking.php:395 tbl_tracking.php:512 #: view_create.php:182 view_operations.php:101 msgid "Go" msgstr "Esegui" @@ -95,7 +95,7 @@ msgstr "Usa questa opzione" msgid "Database %1$s has been created." msgstr "Il database %1$s è stato creato." -#: db_datadict.php:49 db_operations.php:378 +#: db_datadict.php:49 db_operations.php:387 msgid "Database comment: " msgstr "Commento al Database: " @@ -122,10 +122,10 @@ 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:2070 +#: pdf_schema.php:1263 pdf_schema.php:1284 server_privileges.php:2091 #: 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 +#: tbl_structure.php:657 tbl_tracking.php:274 tbl_tracking.php:321 msgid "Type" msgstr "Tipo" @@ -138,7 +138,7 @@ msgstr "Tipo" msgid "Null" msgstr "Null" -#: db_datadict.php:178 db_structure.php:501 libraries/export/htmlword.php:247 +#: db_datadict.php:178 db_structure.php:499 libraries/export/htmlword.php:247 #: libraries/export/latex.php:360 libraries/export/odt.php:303 #: libraries/export/texytext.php:236 libraries/tbl_properties.inc.php:106 #: pdf_schema.php:1266 pdf_schema.php:1287 tbl_printview.php:146 @@ -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: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 +#: pdf_schema.php:1344 server_privileges.php:1588 server_privileges.php:1599 +#: server_privileges.php:1909 server_privileges.php:1914 +#: server_privileges.php:2208 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:1565 -#: server_privileges.php:1579 server_privileges.php:1889 -#: server_privileges.php:1892 server_privileges.php:2187 sql.php:193 +#: server_databases.php:64 server_privileges.php:1585 +#: server_privileges.php:1599 server_privileges.php:1909 +#: server_privileges.php:1912 server_privileges.php:2208 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" @@ -211,119 +211,115 @@ msgstr "Seleziona tutto" msgid "Unselect All" msgstr "Deseleziona tutto" -#: db_operations.php:38 tbl_create.php:54 +#: db_operations.php:43 tbl_create.php:54 msgid "The database name is empty!" msgstr "Il nome del DataBase è vuoto!" -#: db_operations.php:236 +#: db_operations.php:241 #, php-format msgid "Database %s has been renamed to %s" msgstr "Il DataBase %s è stato rinominato in %s" -#: db_operations.php:240 +#: db_operations.php:245 #, php-format msgid "Database %s has been copied to %s" msgstr "Il Database %s è stato copiato in %s" -#: db_operations.php:412 +#: db_operations.php:421 msgid "Rename database to" msgstr "Rinomina il DataBase in" -#: db_operations.php:417 server_processlist.php:57 +#: db_operations.php:426 server_processlist.php:57 msgid "Command" msgstr "Comando" -#: db_operations.php:429 tbl_change.php:1143 -msgid "and then" -msgstr "e quindi" - -#: db_operations.php:455 +#: db_operations.php:464 msgid "Copy database to" msgstr "Copia il Database in" -#: db_operations.php:462 tbl_operations.php:528 tbl_tracking.php:388 +#: db_operations.php:471 tbl_operations.php:528 tbl_tracking.php:388 msgid "Structure only" msgstr "Solo struttura" -#: db_operations.php:463 tbl_operations.php:529 tbl_tracking.php:390 +#: db_operations.php:472 tbl_operations.php:529 tbl_tracking.php:390 msgid "Structure and data" msgstr "Struttura e dati" -#: db_operations.php:464 tbl_operations.php:530 tbl_tracking.php:389 +#: db_operations.php:473 tbl_operations.php:530 tbl_tracking.php:389 msgid "Data only" msgstr "Solo dati" -#: db_operations.php:472 +#: db_operations.php:481 msgid "CREATE DATABASE before copying" msgstr "CREATE DATABASE prima di copiare" -#: db_operations.php:475 libraries/export/sql.php:52 +#: db_operations.php:484 libraries/export/sql.php:52 #: libraries/export/sql.php:74 libraries/export/sql.php:76 #: libraries/export/sql.php:82 tbl_operations.php:536 #, php-format msgid "Add %s" msgstr "Aggiungi %s" -#: db_operations.php:479 libraries/export/sql.php:78 tbl_operations.php:299 +#: db_operations.php:488 libraries/export/sql.php:78 tbl_operations.php:299 #: tbl_operations.php:538 msgid "Add AUTO_INCREMENT value" msgstr "Aggiungi valore AUTO_INCREMENT" -#: db_operations.php:483 tbl_operations.php:545 +#: db_operations.php:492 tbl_operations.php:545 msgid "Add constraints" msgstr "Aggiungi vincoli" -#: db_operations.php:496 +#: db_operations.php:505 msgid "Switch to copied database" msgstr "Passare al Database copiato" -#: db_operations.php:537 +#: db_operations.php:546 msgid "BLOB Repository" msgstr "Repository BLOB" -#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1352 -#: libraries/server_links.inc.php:49 server_processlist.php:59 +#: db_operations.php:549 db_tracking.php:76 libraries/common.lib.php:1352 +#: libraries/server_links.inc.php:50 server_processlist.php:59 #: tbl_tracking.php:596 test/theme.php:101 msgid "Status" msgstr "Stato" -#: db_operations.php:548 +#: db_operations.php:557 msgctxt "BLOB repository" msgid "Enabled" msgstr "Attivato" -#: db_operations.php:552 +#: db_operations.php:561 msgid "Disable" msgstr "Disabilita" -#: db_operations.php:562 +#: db_operations.php:571 msgid "Damaged" msgstr "Danneggiato" -#: db_operations.php:566 +#: db_operations.php:575 msgctxt "BLOB repository" msgid "Repair" msgstr "Riparazione" -#: db_operations.php:574 +#: db_operations.php:583 msgctxt "BLOB repository" msgid "Disabled" msgstr "Disabilitato" -#: db_operations.php:578 +#: db_operations.php:587 msgid "Enable" msgstr "Abilita" -#: db_operations.php:602 libraries/Index.class.php:448 +#: db_operations.php:611 libraries/Index.class.php:448 #: libraries/db_structure.lib.php:62 libraries/mysql_charsets.lib.php:107 #: libraries/tbl_properties.inc.php:107 libraries/tbl_properties.inc.php:730 #: server_collations.php:54 server_collations.php:66 server_databases.php:111 #: tbl_operations.php:363 tbl_select.php:137 tbl_structure.php:179 -#: tbl_structure.php:767 tbl_tracking.php:275 tbl_tracking.php:326 +#: tbl_structure.php:765 tbl_tracking.php:275 tbl_tracking.php:326 msgid "Collation" msgstr "Collation" -#: db_operations.php:615 main.php:316 pdf_schema.php:34 +#: db_operations.php:624 main.php:316 pdf_schema.php:34 #, php-format msgid "" "The additional features for working with linked tables have been " @@ -332,14 +328,14 @@ msgstr "" "Le caratteristiche aggiuntive sono state disattivate per funzionare con le " "tabelle linkate. Per scoprire perché clicca %squi%s." -#: db_operations.php:648 +#: db_operations.php:657 msgid "Edit PDF Pages" 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:1665 -#: server_privileges.php:1721 server_privileges.php:1985 +#: libraries/header.inc.php:130 pdf_pages.php:424 server_privileges.php:1685 +#: server_privileges.php:1741 server_privileges.php:2005 #: server_synchronize.php:423 server_synchronize.php:866 tbl_tracking.php:592 #: test/theme.php:75 msgid "Table" @@ -348,7 +344,7 @@ msgstr "Tabella" #: db_printview.php:105 libraries/db_structure.lib.php:56 #: libraries/header_printview.inc.php:63 libraries/import.lib.php:146 #: navigation.php:638 navigation.php:660 server_databases.php:122 -#: tbl_printview.php:394 tbl_structure.php:365 tbl_structure.php:777 +#: tbl_printview.php:394 tbl_structure.php:365 tbl_structure.php:775 msgid "Rows" msgstr "Righe" @@ -356,30 +352,30 @@ msgstr "Righe" msgid "Size" msgstr "Dimensione" -#: db_printview.php:162 db_structure.php:457 libraries/export/sql.php:559 +#: db_printview.php:162 db_structure.php:455 libraries/export/sql.php:559 #: libraries/export/sql.php:899 msgid "in use" msgstr "in uso" #: db_printview.php:187 libraries/db_info.inc.php:88 #: libraries/export/sql.php:514 pdf_schema.php:1241 tbl_printview.php:434 -#: tbl_structure.php:809 +#: tbl_structure.php:807 msgid "Creation" msgstr "Creazione" #: db_printview.php:196 libraries/db_info.inc.php:93 #: libraries/export/sql.php:519 pdf_schema.php:1246 tbl_printview.php:444 -#: tbl_structure.php:817 +#: tbl_structure.php:815 msgid "Last update" msgstr "Ultimo cambiamento" #: db_printview.php:205 libraries/db_info.inc.php:98 #: libraries/export/sql.php:524 pdf_schema.php:1251 tbl_printview.php:454 -#: tbl_structure.php:825 +#: tbl_structure.php:823 msgid "Last check" msgstr "Ultimo controllo" -#: db_printview.php:222 db_structure.php:480 +#: db_printview.php:222 db_structure.php:478 #, fuzzy, php-format #| msgid "%s table(s)" msgid "%s table" @@ -440,7 +436,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:297 tbl_change.php:1031 tbl_indexes.php:250 +#: server_privileges.php:298 tbl_change.php:1031 tbl_indexes.php:250 #: tbl_select.php:288 msgid "Or" msgstr "Oppure" @@ -513,9 +509,9 @@ 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:2833 +#: db_structure.php:105 libraries/common.lib.php:2837 #: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50 -#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:467 +#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:465 msgid "Browse" msgstr "Mostra" @@ -560,36 +556,36 @@ 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:2832 libraries/sql_query_form.lib.php:334 +#: libraries/common.lib.php:2836 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:2829 libraries/common.lib.php:2836 +#: libraries/common.lib.php:2833 libraries/common.lib.php:2840 #: 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:1106 #: libraries/tbl_links.inc.php:56 pmd_general.php:134 -#: server_privileges.php:593 server_replication.php:315 tbl_tracking.php:269 +#: server_privileges.php:594 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:1656 +#: db_structure.php:543 db_structure.php:544 db_tracking.php:91 +#: libraries/Index.class.php:483 libraries/common.lib.php:1657 #: 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 -#: tbl_structure.php:152 tbl_structure.php:471 +#: tbl_structure.php:152 tbl_structure.php:469 msgid "Drop" 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:1655 +#: db_structure.php:541 db_structure.php:542 libraries/common.lib.php:1656 #: libraries/mult_submits.inc.php:39 libraries/tbl_links.inc.php:105 msgid "Empty" msgstr "Svuota" @@ -599,25 +595,25 @@ msgstr "Svuota" msgid "Table %s has been emptied" msgstr "La tabella %s è stata svuotata" -#: db_structure.php:326 libraries/tbl_links.inc.php:133 +#: db_structure.php:325 libraries/tbl_links.inc.php:133 #, php-format msgid "View %s has been dropped" msgstr "La vista %s è stata eliminata" -#: db_structure.php:326 libraries/tbl_links.inc.php:133 +#: db_structure.php:325 libraries/tbl_links.inc.php:133 #, php-format msgid "Table %s has been dropped" msgstr "La tabella %s è stata eliminata" -#: db_structure.php:333 +#: db_structure.php:332 msgid "Tracking is active." msgstr "Il tracking è attivo." -#: db_structure.php:335 +#: db_structure.php:334 msgid "Tracking is not active." msgstr "Il tracking non è attivo." -#: db_structure.php:420 libraries/display_tbl.lib.php:1944 +#: db_structure.php:418 libraries/display_tbl.lib.php:1944 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation%" @@ -626,86 +622,86 @@ msgstr "" "Questa visuale ha, come minimo, questo numero di righe. Per informazioni " "controlla la %sdocumentazione%s." -#: db_structure.php:434 db_structure.php:448 libraries/header.inc.php:126 +#: db_structure.php:432 db_structure.php:446 libraries/header.inc.php:130 #: libraries/tbl_info.inc.php:66 tbl_structure.php:185 test/theme.php:74 msgid "View" msgstr "Vista" -#: db_structure.php:485 libraries/db_structure.lib.php:49 -#: libraries/server_links.inc.php:70 server_replication.php:33 +#: db_structure.php:483 libraries/db_structure.lib.php:49 +#: libraries/server_links.inc.php:71 server_replication.php:33 #: server_replication.php:164 server_status.php:369 msgid "Replication" msgstr "Replicazione" -#: db_structure.php:489 +#: db_structure.php:487 msgid "Sum" msgstr "Totali" -#: db_structure.php:496 libraries/StorageEngine.class.php:356 +#: db_structure.php:494 libraries/StorageEngine.class.php:356 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "%s è il motore di memorizzazione predefinito su questo server MySQL." -#: db_structure.php:524 db_structure.php:541 db_structure.php:542 +#: db_structure.php:522 db_structure.php:539 db_structure.php:540 #: 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:1596 tbl_structure.php:455 -#: tbl_structure.php:464 +#: server_databases.php:351 server_privileges.php:1616 tbl_structure.php:453 +#: tbl_structure.php:462 msgid "With selected:" msgstr "Se selezionati:" -#: db_structure.php:527 libraries/display_tbl.lib.php:2076 -#: server_databases.php:348 server_privileges.php:569 -#: server_privileges.php:1599 tbl_structure.php:458 +#: db_structure.php:525 libraries/display_tbl.lib.php:2076 +#: server_databases.php:348 server_privileges.php:570 +#: server_privileges.php:1619 tbl_structure.php:456 msgid "Check All" msgstr "Seleziona tutti" -#: db_structure.php:531 libraries/display_tbl.lib.php:2077 +#: db_structure.php:529 libraries/display_tbl.lib.php:2077 #: libraries/replication_gui.lib.php:33 server_databases.php:350 -#: server_privileges.php:572 server_privileges.php:1603 tbl_structure.php:462 +#: server_privileges.php:573 server_privileges.php:1623 tbl_structure.php:460 msgid "Uncheck All" msgstr "Deseleziona tutti" -#: db_structure.php:536 +#: db_structure.php:534 msgid "Check tables having overhead" msgstr "Controllo addizionale" -#: db_structure.php:547 db_structure.php:548 db_structure.php:599 +#: db_structure.php:545 db_structure.php:546 db_structure.php:597 #: libraries/display_tbl.lib.php:2180 libraries/mult_submits.inc.php:28 -#: tbl_structure.php:492 tbl_structure.php:494 +#: tbl_structure.php:490 tbl_structure.php:492 msgid "Print view" msgstr "Visualizza per stampa" -#: db_structure.php:549 db_structure.php:550 libraries/mult_submits.inc.php:42 +#: db_structure.php:547 db_structure.php:548 libraries/mult_submits.inc.php:42 #: tbl_operations.php:581 msgid "Check table" msgstr "Controlla tabella" -#: db_structure.php:551 db_structure.php:552 libraries/mult_submits.inc.php:47 -#: tbl_operations.php:621 tbl_structure.php:709 tbl_structure.php:711 +#: db_structure.php:549 db_structure.php:550 libraries/mult_submits.inc.php:47 +#: tbl_operations.php:621 tbl_structure.php:707 tbl_structure.php:709 msgid "Optimize table" msgstr "Ottimizza tabella" -#: db_structure.php:553 db_structure.php:554 libraries/mult_submits.inc.php:52 +#: db_structure.php:551 db_structure.php:552 libraries/mult_submits.inc.php:52 #: tbl_operations.php:611 msgid "Repair table" msgstr "Ripara tabella" -#: db_structure.php:555 db_structure.php:556 libraries/mult_submits.inc.php:57 +#: db_structure.php:553 db_structure.php:554 libraries/mult_submits.inc.php:57 #: tbl_operations.php:601 msgid "Analyze table" msgstr "Analizza tabella" -#: db_structure.php:557 db_structure.php:558 libraries/db_links.inc.php:71 +#: db_structure.php:555 db_structure.php:556 libraries/db_links.inc.php:71 #: 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:1380 +#: libraries/server_links.inc.php:85 libraries/tbl_links.inc.php:82 +#: pmd_pdf.php:84 pmd_pdf.php:109 server_privileges.php:1397 #: setup/frames/menu.inc.php:22 tbl_row_action.php:59 msgid "Export" msgstr "Esporta" -#: db_structure.php:606 libraries/display_pdf_schema.lib.php:44 +#: db_structure.php:604 libraries/display_pdf_schema.lib.php:44 msgid "Data Dictionary" msgstr "Data Dictionary" @@ -716,10 +712,10 @@ msgstr "Controlla tabelle" #: db_tracking.php:71 libraries/export/htmlword.php:86 #: libraries/export/latex.php:148 libraries/export/odt.php:113 #: libraries/export/sql.php:342 libraries/export/texytext.php:84 -#: libraries/export/xml.php:255 libraries/header.inc.php:106 +#: libraries/export/xml.php:255 libraries/header.inc.php:110 #: libraries/header_printview.inc.php:58 server_databases.php:169 -#: server_privileges.php:1660 server_privileges.php:1721 -#: server_privileges.php:1979 server_processlist.php:56 +#: server_privileges.php:1680 server_privileges.php:1741 +#: server_privileges.php:1999 server_processlist.php:56 #: server_synchronize.php:1179 server_synchronize.php:1183 #: tbl_tracking.php:591 test/theme.php:65 msgid "Database" @@ -739,8 +735,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:1542 server_privileges.php:1725 -#: server_privileges.php:2073 tbl_structure.php:187 +#: server_privileges.php:1562 server_privileges.php:1745 +#: server_privileges.php:2094 tbl_structure.php:187 msgid "Action" msgstr "Azione" @@ -776,8 +772,8 @@ msgstr "Solo struttura" msgid "Untracked tables" msgstr "Controlla tabella" -#: db_tracking.php:172 db_tracking.php:174 tbl_structure.php:528 -#: tbl_structure.php:530 +#: db_tracking.php:172 db_tracking.php:174 tbl_structure.php:526 +#: tbl_structure.php:528 msgid "Track table" msgstr "Controlla tabella" @@ -949,320 +945,368 @@ msgstr "Il nome di host è vuoto!" msgid "The user name is empty!" msgstr "Il nome utente è vuoto!" -#: js/messages.php:44 server_privileges.php:1236 user_password.php:70 +#: js/messages.php:44 server_privileges.php:1241 user_password.php:70 msgid "The password is empty!" msgstr "La password è vuota!" -#: js/messages.php:45 server_privileges.php:1234 user_password.php:73 +#: js/messages.php:45 server_privileges.php:1239 user_password.php:73 msgid "The passwords aren't the same!" msgstr "La password non coincide!" -#: js/messages.php:49 pmd_general.php:342 pmd_general.php:379 +#: js/messages.php:46 +#, fuzzy +#| msgid "Add a new User" +msgid "Add a New User" +msgstr "Aggiungi un nuovo utente" + +#: js/messages.php:47 js/messages.php:54 pmd_general.php:342 +#: pmd_general.php:379 msgid "Cancel" msgstr "Annulla" -#: js/messages.php:52 pmd_save_pos.php:54 +#: js/messages.php:48 +#, fuzzy +msgid "Create User" +msgstr "Crea relazioni" + +#: js/messages.php:49 +#, fuzzy +#| msgid "Reloading the privileges" +msgid "Reloading Privileges" +msgstr "Caricamento dei privilegi in corso" + +#: js/messages.php:50 +#, fuzzy +#| msgid "Remove selected users" +msgid "Removing Selected Users" +msgstr "Rimuove gli utenti selezionati" + +#: js/messages.php:57 +#, fuzzy +#| msgid "Load" +msgid "Loading" +msgstr "Carica" + +#: js/messages.php:58 +#, fuzzy +#| msgid "Processes" +msgid "Processing Request" +msgstr "Processi" + +#: js/messages.php:59 +msgid "Error in Processing Request" +msgstr "" + +#: js/messages.php:60 +msgid "Dropping Column" +msgstr "" + +#: js/messages.php:61 +msgid "Adding Primary Key" +msgstr "" + +#: js/messages.php:64 pmd_save_pos.php:54 msgid "Modifications have been saved" msgstr "Le modifiche sono state salvate" -#: js/messages.php:53 pmd_relation_upd.php:49 +#: js/messages.php:65 pmd_relation_upd.php:49 msgid "Relation deleted" msgstr "Relazione cancellata" -#: js/messages.php:54 pmd_relation_new.php:64 +#: js/messages.php:66 pmd_relation_new.php:64 msgid "FOREIGN KEY relation added" msgstr "Relazione \"FOREIGN KEY\" aggiunta" -#: js/messages.php:55 pmd_relation_new.php:86 +#: js/messages.php:67 pmd_relation_new.php:86 msgid "Internal relation added" msgstr "Aggiunte relazioni internet" -#: js/messages.php:56 pmd_relation_new.php:63 pmd_relation_new.php:88 +#: js/messages.php:68 pmd_relation_new.php:63 pmd_relation_new.php:88 msgid "Error: Relation not added." msgstr "Errore: relazione non aggiunta." -#: js/messages.php:57 pmd_relation_new.php:31 +#: js/messages.php:69 pmd_relation_new.php:31 msgid "Error: relation already exists." msgstr "Errore: relazione già esistente." -#: js/messages.php:58 +#: js/messages.php:70 msgid "Error saving coordinates for Designer." msgstr "Errore nel salvare le coordinate per il Designer." -#: js/messages.php:59 libraries/relation.lib.php:107 +#: js/messages.php:71 libraries/relation.lib.php:107 #: libraries/relation.lib.php:119 msgid "General relation features" msgstr "Caratteristiche Generali di Relazione" -#: js/messages.php:59 libraries/relation.lib.php:101 +#: js/messages.php:71 libraries/relation.lib.php:101 #: libraries/relation.lib.php:108 msgid "Disabled" msgstr "Disabilitata" -#: js/messages.php:60 +#: js/messages.php:72 msgid "Select referenced key" msgstr "Seleziona le chiavi referenziali" -#: js/messages.php:61 +#: js/messages.php:73 msgid "Select Foreign Key" msgstr "Seleziona Foreign Key" -#: js/messages.php:62 +#: js/messages.php:74 msgid "Please select the primary key or a unique key" msgstr "Seleziona la chiave primaria o una chiave univoca" -#: js/messages.php:63 pmd_general.php:77 tbl_relation.php:548 +#: js/messages.php:75 pmd_general.php:77 tbl_relation.php:548 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" msgstr "Scegli il campo da mostrare" #. l10n: Display text for calendar close link -#: js/messages.php:73 +#: js/messages.php:85 msgid "Done" msgstr "Fatto" #. l10n: Display text for previous month link in calendar -#: js/messages.php:75 +#: js/messages.php:87 msgid "Prev" msgstr "Precedente" #. l10n: Display text for next month link in calendar -#: js/messages.php:77 libraries/common.lib.php:2353 -#: libraries/common.lib.php:2356 libraries/display_tbl.lib.php:338 +#: js/messages.php:89 libraries/common.lib.php:2357 +#: libraries/common.lib.php:2360 libraries/display_tbl.lib.php:338 #: server_binlog.php:205 server_binlog.php:207 tbl_printview.php:424 -#: tbl_structure.php:801 +#: tbl_structure.php:799 msgid "Next" msgstr "Prossimo" #. l10n: Display text for current month link in calendar -#: js/messages.php:79 +#: js/messages.php:91 msgid "Today" msgstr "Oggi" -#: js/messages.php:82 +#: js/messages.php:94 msgid "January" msgstr "Gennaio" -#: js/messages.php:83 +#: js/messages.php:95 msgid "February" msgstr "Febbraio" -#: js/messages.php:84 +#: js/messages.php:96 msgid "March" msgstr "Marzo" -#: js/messages.php:85 +#: js/messages.php:97 msgid "April" msgstr "Aprile" -#: js/messages.php:86 +#: js/messages.php:98 msgid "May" msgstr "Maggio" -#: js/messages.php:87 +#: js/messages.php:99 msgid "June" msgstr "Giugno" -#: js/messages.php:88 +#: js/messages.php:100 msgid "July" msgstr "Luglio" -#: js/messages.php:89 +#: js/messages.php:101 msgid "August" msgstr "Agosto" -#: js/messages.php:90 +#: js/messages.php:102 msgid "September" msgstr "Setttembre" -#: js/messages.php:91 +#: js/messages.php:103 msgid "October" msgstr "Ottobre" -#: js/messages.php:92 +#: js/messages.php:104 msgid "November" msgstr "Novembre" -#: js/messages.php:93 +#: js/messages.php:105 msgid "December" msgstr "Dicembre" #. l10n: Short month name -#: js/messages.php:97 libraries/common.lib.php:1557 +#: js/messages.php:109 libraries/common.lib.php:1557 msgid "Jan" msgstr "Gen" #. l10n: Short month name -#: js/messages.php:99 libraries/common.lib.php:1559 +#: js/messages.php:111 libraries/common.lib.php:1559 msgid "Feb" msgstr "Feb" #. l10n: Short month name -#: js/messages.php:101 libraries/common.lib.php:1561 +#: js/messages.php:113 libraries/common.lib.php:1561 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:103 libraries/common.lib.php:1563 +#: js/messages.php:115 libraries/common.lib.php:1563 msgid "Apr" msgstr "Apr" #. l10n: Short month name -#: js/messages.php:105 libraries/common.lib.php:1565 +#: js/messages.php:117 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:1567 +#: js/messages.php:119 libraries/common.lib.php:1567 msgid "Jun" msgstr "Giu" #. l10n: Short month name -#: js/messages.php:109 libraries/common.lib.php:1569 +#: js/messages.php:121 libraries/common.lib.php:1569 msgid "Jul" msgstr "lug" #. l10n: Short month name -#: js/messages.php:111 libraries/common.lib.php:1571 +#: js/messages.php:123 libraries/common.lib.php:1571 msgid "Aug" msgstr "ago" #. l10n: Short month name -#: js/messages.php:113 libraries/common.lib.php:1573 +#: js/messages.php:125 libraries/common.lib.php:1573 msgid "Sep" msgstr "set" #. l10n: Short month name -#: js/messages.php:115 libraries/common.lib.php:1575 +#: js/messages.php:127 libraries/common.lib.php:1575 msgid "Oct" msgstr "ott" #. l10n: Short month name -#: js/messages.php:117 libraries/common.lib.php:1577 +#: js/messages.php:129 libraries/common.lib.php:1577 msgid "Nov" msgstr "nov" #. l10n: Short month name -#: js/messages.php:119 libraries/common.lib.php:1579 +#: js/messages.php:131 libraries/common.lib.php:1579 msgid "Dec" msgstr "dic" -#: js/messages.php:122 +#: js/messages.php:134 msgid "Sunday" msgstr "Domenica" -#: js/messages.php:123 +#: js/messages.php:135 msgid "Monday" msgstr "Lunedì" -#: js/messages.php:124 +#: js/messages.php:136 msgid "Tuesday" msgstr "Martedì" -#: js/messages.php:125 +#: js/messages.php:137 msgid "Wednesday" msgstr "Mercoledì" -#: js/messages.php:126 +#: js/messages.php:138 msgid "Thursday" msgstr "Giovedì" -#: js/messages.php:127 +#: js/messages.php:139 msgid "Friday" msgstr "Venerdì" -#: js/messages.php:128 +#: js/messages.php:140 msgid "Saturday" msgstr "Sabato" #. l10n: Short week day name -#: js/messages.php:132 libraries/common.lib.php:1582 +#: js/messages.php:144 libraries/common.lib.php:1582 msgid "Sun" msgstr "Dom" #. l10n: Short week day name -#: js/messages.php:134 libraries/common.lib.php:1584 +#: js/messages.php:146 libraries/common.lib.php:1584 msgid "Mon" msgstr "Lun" #. l10n: Short week day name -#: js/messages.php:136 libraries/common.lib.php:1586 +#: js/messages.php:148 libraries/common.lib.php:1586 msgid "Tue" msgstr "Mar" #. l10n: Short week day name -#: js/messages.php:138 libraries/common.lib.php:1588 +#: js/messages.php:150 libraries/common.lib.php:1588 msgid "Wed" msgstr "Mer" #. l10n: Short week day name -#: js/messages.php:140 libraries/common.lib.php:1590 +#: js/messages.php:152 libraries/common.lib.php:1590 msgid "Thu" msgstr "Gio" #. l10n: Short week day name -#: js/messages.php:142 libraries/common.lib.php:1592 +#: js/messages.php:154 libraries/common.lib.php:1592 msgid "Fri" msgstr "Ven" #. l10n: Short week day name -#: js/messages.php:144 libraries/common.lib.php:1594 +#: js/messages.php:156 libraries/common.lib.php:1594 msgid "Sat" msgstr "Sab" #. l10n: Minimal week day name -#: js/messages.php:148 +#: js/messages.php:160 msgid "Su" msgstr "Do" #. l10n: Minimal week day name -#: js/messages.php:150 +#: js/messages.php:162 msgid "Mo" msgstr "Lu" #. l10n: Minimal week day name -#: js/messages.php:152 +#: js/messages.php:164 msgid "Tu" msgstr "Ma" #. l10n: Minimal week day name -#: js/messages.php:154 +#: js/messages.php:166 msgid "We" msgstr "Me" #. l10n: Minimal week day name -#: js/messages.php:156 +#: js/messages.php:168 msgid "Th" msgstr "Gi" #. l10n: Minimal week day name -#: js/messages.php:158 +#: js/messages.php:170 msgid "Fr" msgstr "Ve" #. l10n: Minimal week day name -#: js/messages.php:160 +#: js/messages.php:172 msgid "Sa" msgstr "Sa" #. l10n: Column header for week of the year in calendar -#: js/messages.php:162 +#: js/messages.php:174 #, fuzzy #| msgid "Wiki" msgid "Wk" msgstr "Wiki" -#: js/messages.php:164 +#: js/messages.php:176 msgid "Hour" msgstr "Ora" -#: js/messages.php:165 +#: js/messages.php:177 msgid "Minute" msgstr "Minuto" -#: js/messages.php:166 +#: js/messages.php:178 msgid "Second" msgstr "Secondo" @@ -1318,7 +1362,7 @@ msgstr "Indici" #: libraries/Index.class.php:444 libraries/mult_submits.inc.php:103 #: libraries/tbl_properties.inc.php:519 tbl_structure.php:33 -#: tbl_structure.php:155 tbl_structure.php:159 tbl_structure.php:474 +#: tbl_structure.php:155 tbl_structure.php:159 tbl_structure.php:472 #: tbl_tracking.php:322 msgid "Unique" msgstr "Unica" @@ -1361,8 +1405,8 @@ msgstr "" "Gli indici %1$s e %2$s sembrano essere uguali e andrebbero, possibilmente, " "essere rimossi." -#: libraries/List_Database.class.php:431 libraries/server_links.inc.php:41 -#: server_databases.php:88 server_privileges.php:1660 +#: libraries/List_Database.class.php:431 libraries/server_links.inc.php:42 +#: server_databases.php:88 server_privileges.php:1680 #: setup/lib/messages.inc.php:110 test/theme.php:93 msgid "Databases" msgstr "Database" @@ -1532,7 +1576,7 @@ msgstr "Password:" msgid "Server Choice" msgstr "Scelta del server" -#: libraries/auth/cookie.auth.lib.php:320 libraries/header.inc.php:59 +#: libraries/auth/cookie.auth.lib.php:320 libraries/header.inc.php:63 msgid "Cookies must be enabled past this point." msgstr "Da questo punto in poi, i cookie devono essere abilitati." @@ -1616,7 +1660,7 @@ msgstr "" "quanto l'estensione deve essere caricata. Controllare la configurazione del " "PHP." -#: libraries/common.inc.php:583 +#: libraries/common.inc.php:587 msgid "" "phpMyAdmin was unable to read your configuration file!
This might " "happen if PHP finds a parse error in it or PHP cannot find the file.
Se ricevete una pagina bianca, allora è tutto a posto." -#: libraries/common.inc.php:594 +#: libraries/common.inc.php:598 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "Non posso caricare la configurazione predefinita da: %1$s" -#: libraries/common.inc.php:599 +#: libraries/common.inc.php:603 msgid "" "The $cfg['PmaAbsoluteUri'] directive MUST be set in your " "configuration file!" @@ -1645,28 +1689,28 @@ msgstr "" "La direttiva $cfg['PmaAbsoluteUri'] DEVE essere impostata nel file " "di configurazione!" -#: libraries/common.inc.php:629 +#: libraries/common.inc.php:633 #, php-format msgid "Invalid server index: %s" msgstr "Indice server non valido: %s" -#: libraries/common.inc.php:636 +#: libraries/common.inc.php:640 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" "Nome host per il server %1$s non valido. Controlla la tua configurazione." -#: libraries/common.inc.php:645 libraries/header.inc.php:96 +#: libraries/common.inc.php:649 libraries/header.inc.php:100 #: libraries/select_server.lib.php:41 libraries/select_server.lib.php:47 #: main.php:185 test/theme.php:57 msgid "Server" msgstr "Server" -#: libraries/common.inc.php:823 +#: libraries/common.inc.php:827 msgid "Invalid authentication method set in configuration:" msgstr "Metodo di autenticazione settato nella configurazione non valido:" -#: libraries/common.inc.php:926 +#: libraries/common.inc.php:930 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Si dovrebbe aggiornare %s alla versione %s o successiva." @@ -1799,45 +1843,45 @@ msgstr "," msgid "%B %d, %Y at %I:%M %p" msgstr "%d %B, %Y at %I:%M %p" -#: libraries/common.lib.php:1907 +#: libraries/common.lib.php:1911 #, 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:2322 libraries/common.lib.php:2325 +#: libraries/common.lib.php:2326 libraries/common.lib.php:2329 #: libraries/display_tbl.lib.php:290 server_status.php:719 msgid "Begin" msgstr "Inizio" -#: libraries/common.lib.php:2323 libraries/common.lib.php:2326 +#: libraries/common.lib.php:2327 libraries/common.lib.php:2330 #: libraries/display_tbl.lib.php:291 server_binlog.php:168 #: server_binlog.php:170 msgid "Previous" msgstr "Precedente" -#: libraries/common.lib.php:2354 libraries/common.lib.php:2357 +#: libraries/common.lib.php:2358 libraries/common.lib.php:2361 #: libraries/display_tbl.lib.php:353 msgid "End" msgstr "Fine" -#: libraries/common.lib.php:2430 +#: libraries/common.lib.php:2434 #, php-format msgid "Jump to database "%s"." msgstr "Passa al database \"%s\"." -#: libraries/common.lib.php:2450 +#: libraries/common.lib.php:2454 #, 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:2830 libraries/common.lib.php:2837 +#: libraries/common.lib.php:2834 libraries/common.lib.php:2841 #: libraries/db_links.inc.php:68 libraries/export/sql.php:25 -#: libraries/import/sql.php:18 libraries/server_links.inc.php:45 +#: libraries/import/sql.php:18 libraries/server_links.inc.php:46 #: libraries/tbl_links.inc.php:60 querywindow.php:99 test/theme.php:97 msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2839 libraries/db_links.inc.php:104 +#: libraries/common.lib.php:2843 libraries/db_links.inc.php:104 #: libraries/tbl_links.inc.php:95 libraries/tbl_links.inc.php:117 #: view_operations.php:89 msgid "Operations" @@ -1886,15 +1930,15 @@ msgstr "Query da esempio" msgid "Designer" msgstr "Designer" -#: libraries/db_links.inc.php:98 libraries/server_links.inc.php:88 +#: libraries/db_links.inc.php:98 libraries/server_links.inc.php:89 #: libraries/tbl_links.inc.php:91 pmd_pdf.php:84 pmd_pdf.php:110 #: setup/frames/menu.inc.php:21 msgid "Import" msgstr "Importa" -#: libraries/db_links.inc.php:111 libraries/server_links.inc.php:66 -#: server_privileges.php:111 server_privileges.php:1722 -#: server_privileges.php:2071 test/theme.php:117 +#: libraries/db_links.inc.php:111 libraries/server_links.inc.php:67 +#: server_privileges.php:112 server_privileges.php:1742 +#: server_privileges.php:2092 test/theme.php:117 msgid "Privileges" msgstr "Privilegi" @@ -1913,7 +1957,7 @@ msgid "" msgstr "Può essere approssimato. Vedere FAQ 3.11" #: libraries/db_structure.lib.php:69 server_databases.php:142 -#: tbl_printview.php:336 tbl_structure.php:682 +#: tbl_printview.php:336 tbl_structure.php:680 msgid "Overhead" msgstr "In eccesso" @@ -1931,7 +1975,7 @@ msgstr "Il server non risponde" msgid "(or the local MySQL server's socket is not correctly configured)" msgstr "(o il socket del server locale MySQL non è correttamente configurato)" -#: libraries/dbi/mysql.dbi.lib.php:362 tbl_structure.php:608 +#: libraries/dbi/mysql.dbi.lib.php:362 tbl_structure.php:606 msgid "Details..." msgstr "Dettagli..." @@ -1941,22 +1985,22 @@ msgid "Change password" msgstr "Cambia password" #: libraries/display_change_password.lib.php:35 -#: libraries/replication_gui.lib.php:345 server_privileges.php:807 +#: libraries/replication_gui.lib.php:345 server_privileges.php:808 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:796 -#: server_privileges.php:800 server_privileges.php:811 -#: server_privileges.php:1538 server_synchronize.php:1175 +#: libraries/replication_gui.lib.php:349 server_privileges.php:797 +#: server_privileges.php:801 server_privileges.php:812 +#: server_privileges.php:1558 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:815 server_privileges.php:818 +#: server_privileges.php:816 server_privileges.php:819 msgid "Re-type" msgstr "Reinserisci" @@ -1969,12 +2013,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:822 +#: libraries/replication_gui.lib.php:360 server_privileges.php:823 msgid "Generate Password" msgstr "Genera Password" #: libraries/display_change_password.lib.php:75 -#: libraries/replication_gui.lib.php:363 server_privileges.php:825 +#: libraries/replication_gui.lib.php:363 server_privileges.php:826 msgid "Generate" msgstr "Genera" @@ -1987,8 +2031,8 @@ msgstr "Crea un nuovo database" msgid "Create" msgstr "Crea" -#: libraries/display_create_database.lib.php:40 server_privileges.php:113 -#: server_privileges.php:1427 server_replication.php:35 +#: libraries/display_create_database.lib.php:40 server_privileges.php:114 +#: server_privileges.php:1447 server_replication.php:35 msgid "No Privileges" msgstr "Nessun Privilegio" @@ -2080,7 +2124,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:1875 server_processlist.php:75 +#: server_privileges.php:1895 server_processlist.php:75 msgid "None" msgstr "Nessuno" @@ -2278,7 +2322,7 @@ msgstr "Ordina per chiave" #: libraries/import/docsql.php:34 libraries/import/ldi.php:47 #: libraries/import/ods.php:30 libraries/import/sql.php:20 #: libraries/import/xls.php:26 libraries/import/xlsx.php:26 -#: libraries/import/xml.php:25 tbl_select.php:267 tbl_structure.php:753 +#: libraries/import/xml.php:25 tbl_select.php:267 tbl_structure.php:751 msgid "Options" msgstr "Opzioni" @@ -2355,7 +2399,7 @@ msgstr "La query ha impiegato %01.4f sec" #: libraries/display_tbl.lib.php:2089 libraries/mult_submits.inc.php:113 #: querywindow.php:125 querywindow.php:129 querywindow.php:132 -#: tbl_structure.php:25 tbl_structure.php:150 tbl_structure.php:470 +#: tbl_structure.php:25 tbl_structure.php:150 tbl_structure.php:468 msgid "Change" msgstr "Modifica" @@ -2425,7 +2469,7 @@ msgstr "Utilizzo del Buffer Pool" #: libraries/engines/innodb.lib.php:194 server_databases.php:137 #: server_databases.php:305 server_status.php:525 server_status.php:586 -#: server_status.php:607 tbl_printview.php:351 tbl_structure.php:696 +#: server_status.php:607 tbl_printview.php:351 tbl_structure.php:694 msgid "Total" msgstr "Totale" @@ -2716,7 +2760,7 @@ msgstr "" "più alto." #: libraries/export/codegen.php:37 setup/lib/messages.inc.php:88 -#: tbl_printview.php:376 tbl_structure.php:737 +#: tbl_printview.php:376 tbl_structure.php:735 msgid "Format" msgstr "Formato" @@ -2788,8 +2832,8 @@ 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:576 server_replication.php:316 tbl_printview.php:317 -#: tbl_structure.php:665 +#: server_privileges.php:577 server_replication.php:316 tbl_printview.php:317 +#: tbl_structure.php:663 msgid "Data" msgstr "Dati" @@ -2838,9 +2882,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:731 -#: server_privileges.php:734 server_privileges.php:790 -#: server_privileges.php:1537 server_privileges.php:2069 +#: libraries/replication_gui.lib.php:329 server_privileges.php:732 +#: server_privileges.php:735 server_privileges.php:791 +#: server_privileges.php:1557 server_privileges.php:2090 #: server_processlist.php:55 server_synchronize.php:1159 msgid "Host" msgstr "Host" @@ -3036,7 +3080,7 @@ msgstr "Esporta contenuti" msgid "Open new phpMyAdmin window" msgstr "Apri una nuova finestra di PhpMyAdmin" -#: libraries/header.inc.php:115 +#: libraries/header.inc.php:119 msgid "New table" msgstr "Nuova tabella" @@ -3195,20 +3239,20 @@ 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 +#: tbl_structure.php:471 msgid "Primary" msgstr "Primaria" #: libraries/mult_submits.inc.php:98 libraries/tbl_properties.inc.php:116 #: libraries/tbl_properties.inc.php:525 tbl_printview.php:326 #: tbl_structure.php:31 tbl_structure.php:154 tbl_structure.php:158 -#: tbl_structure.php:475 tbl_structure.php:673 +#: tbl_structure.php:473 tbl_structure.php:671 msgid "Index" msgstr "Indice" #: libraries/mult_submits.inc.php:108 libraries/tbl_properties.inc.php:531 #: tbl_structure.php:35 tbl_structure.php:156 tbl_structure.php:160 -#: tbl_structure.php:478 +#: tbl_structure.php:476 msgid "Fulltext" msgstr "Testo completo" @@ -3514,8 +3558,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:711 -#: server_privileges.php:714 server_privileges.php:721 +#: libraries/replication_gui.lib.php:259 server_privileges.php:712 +#: server_privileges.php:715 server_privileges.php:722 #: server_synchronize.php:1171 msgid "User name" msgstr "Nome utente" @@ -3542,7 +3586,7 @@ msgstr "Variabile" #: 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 +#: tbl_structure.php:727 msgid "Value" msgstr "Valore" @@ -3560,34 +3604,34 @@ msgstr "" msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:254 server_privileges.php:716 +#: libraries/replication_gui.lib.php:254 server_privileges.php:717 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:717 -#: server_privileges.php:784 server_privileges.php:808 -#: server_privileges.php:1928 server_privileges.php:1958 +#: libraries/replication_gui.lib.php:346 server_privileges.php:718 +#: server_privileges.php:785 server_privileges.php:809 +#: server_privileges.php:1948 server_privileges.php:1978 msgid "Use text field" msgstr "Utilizza campo text" -#: libraries/replication_gui.lib.php:302 server_privileges.php:764 +#: libraries/replication_gui.lib.php:302 server_privileges.php:765 msgid "Any host" msgstr "Qualsiasi host" -#: libraries/replication_gui.lib.php:306 server_privileges.php:768 +#: libraries/replication_gui.lib.php:306 server_privileges.php:769 msgid "Local" msgstr "Locale" -#: libraries/replication_gui.lib.php:312 server_privileges.php:773 +#: libraries/replication_gui.lib.php:312 server_privileges.php:774 msgid "This Host" msgstr "Questo Host" -#: libraries/replication_gui.lib.php:318 server_privileges.php:779 +#: libraries/replication_gui.lib.php:318 server_privileges.php:780 msgid "Use Host Table" msgstr "Utilizza la Tabella dell'Host" -#: libraries/replication_gui.lib.php:331 server_privileges.php:792 +#: libraries/replication_gui.lib.php:331 server_privileges.php:793 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -3623,29 +3667,29 @@ msgstr "Lingua non conosciuta : %1$s." msgid "Servers" msgstr "Servers" -#: libraries/server_links.inc.php:53 server_engines.php:112 +#: libraries/server_links.inc.php:54 server_engines.php:112 #: server_engines.php:116 server_status.php:415 test/theme.php:105 msgid "Variables" msgstr "Variabili" -#: libraries/server_links.inc.php:57 test/theme.php:109 +#: libraries/server_links.inc.php:58 test/theme.php:109 msgid "Charsets" msgstr "Set di caratteri" -#: libraries/server_links.inc.php:61 test/theme.php:113 +#: libraries/server_links.inc.php:62 test/theme.php:113 msgid "Engines" msgstr "Motori" -#: libraries/server_links.inc.php:76 server_binlog.php:110 +#: libraries/server_links.inc.php:77 server_binlog.php:110 #: server_status.php:364 test/theme.php:121 msgid "Binary log" msgstr "Log binario" -#: libraries/server_links.inc.php:80 +#: libraries/server_links.inc.php:81 msgid "Processes" msgstr "Processi" -#: libraries/server_links.inc.php:92 server_synchronize.php:1092 +#: libraries/server_links.inc.php:93 server_synchronize.php:1092 #: server_synchronize.php:1100 msgid "Synchronize" msgstr "Sincronizza" @@ -3896,13 +3940,13 @@ msgstr "Definizione Partizioni" msgid "Save" msgstr "Salva" -#: libraries/tbl_properties.inc.php:780 tbl_structure.php:542 +#: libraries/tbl_properties.inc.php:780 tbl_structure.php:540 #, fuzzy, php-format #| msgid "Add %s field(s)" msgid "Add %s column(s)" msgstr "Aggiungi %s campo(i)" -#: libraries/tbl_properties.inc.php:784 tbl_structure.php:536 +#: libraries/tbl_properties.inc.php:784 tbl_structure.php:534 #, fuzzy #| msgid "You have to add at least one field." msgid "You have to add at least one column." @@ -4120,8 +4164,8 @@ msgstr "Riavvia" msgid "Protocol version" msgstr "Versione protocollo" -#: main.php:189 server_privileges.php:1389 server_privileges.php:1536 -#: server_privileges.php:1650 server_privileges.php:2068 +#: main.php:189 server_privileges.php:1406 server_privileges.php:1556 +#: server_privileges.php:1670 server_privileges.php:2089 #: server_processlist.php:54 msgid "User" msgstr "Utente" @@ -4585,115 +4629,115 @@ msgstr "Motori di Memorizzazione" msgid "View dump (schema) of databases" msgstr "Visualizza il dump (schema) dei databases" -#: server_privileges.php:24 server_privileges.php:266 +#: server_privileges.php:25 server_privileges.php:267 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 +#: server_privileges.php:26 server_privileges.php:193 +#: server_privileges.php:516 msgid "Allows altering the structure of existing tables." msgstr "Permette di alterare la struttura di tabelle esistenti." -#: server_privileges.php:26 server_privileges.php:208 -#: server_privileges.php:521 +#: server_privileges.php:27 server_privileges.php:209 +#: server_privileges.php:522 msgid "Allows altering and dropping stored routines." msgstr "Permette l'alterazione e l'eliminazione di routines memorizzate." -#: server_privileges.php:27 server_privileges.php:184 -#: server_privileges.php:514 +#: server_privileges.php:28 server_privileges.php:185 +#: server_privileges.php:515 msgid "Allows creating new databases and tables." msgstr "Permette di creare nuove tabelle e nuovi databases." -#: server_privileges.php:28 server_privileges.php:207 -#: server_privileges.php:520 +#: server_privileges.php:29 server_privileges.php:208 +#: server_privileges.php:521 msgid "Allows creating stored routines." msgstr "Permette la creazione di routines memorizzate." -#: server_privileges.php:29 server_privileges.php:514 +#: server_privileges.php:30 server_privileges.php:515 msgid "Allows creating new tables." msgstr "Permette di creare nuove tabelle." -#: server_privileges.php:30 server_privileges.php:195 -#: server_privileges.php:518 +#: server_privileges.php:31 server_privileges.php:196 +#: server_privileges.php:519 msgid "Allows creating temporary tables." msgstr "Permette di creare tabelle temporanee." -#: server_privileges.php:31 server_privileges.php:209 -#: server_privileges.php:554 +#: server_privileges.php:32 server_privileges.php:210 +#: server_privileges.php:555 msgid "Allows creating, dropping and renaming user accounts." msgstr "Permette di creare, cancellare e rinominare gli account utente." -#: server_privileges.php:32 server_privileges.php:199 -#: server_privileges.php:203 server_privileges.php:526 -#: server_privileges.php:530 +#: server_privileges.php:33 server_privileges.php:200 +#: server_privileges.php:204 server_privileges.php:527 +#: server_privileges.php:531 msgid "Allows creating new views." msgstr "Permette la creazione di nuove viste." -#: server_privileges.php:33 server_privileges.php:183 -#: server_privileges.php:506 +#: server_privileges.php:34 server_privileges.php:184 +#: server_privileges.php:507 msgid "Allows deleting data." msgstr "Permette di cancellare dati." -#: server_privileges.php:34 server_privileges.php:185 -#: server_privileges.php:517 +#: server_privileges.php:35 server_privileges.php:186 +#: server_privileges.php:518 msgid "Allows dropping databases and tables." msgstr "Permette di eliminare databases e tabelle." -#: server_privileges.php:35 server_privileges.php:517 +#: server_privileges.php:36 server_privileges.php:518 msgid "Allows dropping tables." msgstr "Permette di eliminare tabelle." -#: server_privileges.php:36 server_privileges.php:200 -#: server_privileges.php:534 +#: server_privileges.php:37 server_privileges.php:201 +#: server_privileges.php:535 msgid "Allows to set up events for the event scheduler" msgstr "Permette di impostare gli eventi per lo scheduler" -#: server_privileges.php:37 server_privileges.php:210 -#: server_privileges.php:522 +#: server_privileges.php:38 server_privileges.php:211 +#: server_privileges.php:523 msgid "Allows executing stored routines." msgstr "Permette l'esecuzione di routines memorizzate." -#: server_privileges.php:38 server_privileges.php:189 -#: server_privileges.php:509 +#: server_privileges.php:39 server_privileges.php:190 +#: server_privileges.php:510 msgid "Allows importing data from and exporting data into files." msgstr "Permette di importare dati da e esportare dati in file." -#: server_privileges.php:39 server_privileges.php:540 +#: server_privileges.php:40 server_privileges.php:541 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "Permette di aggiungere utenti e privilegi senza ricaricare le tabelle dei " "privilegi." -#: server_privileges.php:40 server_privileges.php:191 -#: server_privileges.php:516 +#: server_privileges.php:41 server_privileges.php:192 +#: server_privileges.php:517 msgid "Allows creating and dropping indexes." msgstr "Permette di creare ed eliminare gli indici." -#: server_privileges.php:41 server_privileges.php:181 -#: server_privileges.php:442 server_privileges.php:504 +#: server_privileges.php:42 server_privileges.php:182 +#: server_privileges.php:443 server_privileges.php:505 msgid "Allows inserting and replacing data." msgstr "Permette di inserire e sovrascrivere dati." -#: server_privileges.php:42 server_privileges.php:196 -#: server_privileges.php:549 +#: server_privileges.php:43 server_privileges.php:197 +#: server_privileges.php:550 msgid "Allows locking tables for the current thread." msgstr "Permette di bloccare le tabelle per il thread corrente." -#: server_privileges.php:43 server_privileges.php:646 -#: server_privileges.php:648 +#: server_privileges.php:44 server_privileges.php:647 +#: server_privileges.php:649 msgid "Limits the number of new connections the user may open per hour." msgstr "" "Limita il numero di nuove connessioni che un utente può aprire in un'ora." -#: server_privileges.php:44 server_privileges.php:634 -#: server_privileges.php:636 +#: server_privileges.php:45 server_privileges.php:635 +#: server_privileges.php:637 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" "Limita il numero di query che un utente può mandare al server in un'ora." -#: server_privileges.php:45 server_privileges.php:640 -#: server_privileges.php:642 +#: server_privileges.php:46 server_privileges.php:641 +#: server_privileges.php:643 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -4701,61 +4745,61 @@ msgstr "" "Limita il numero di comandi che possono cambiare una tabella o un database " "che un utente può eseguire in un'ora." -#: server_privileges.php:46 server_privileges.php:652 -#: server_privileges.php:654 +#: server_privileges.php:47 server_privileges.php:653 +#: server_privileges.php:655 msgid "Limits the number of simultaneous connections the user may have." msgstr "Limite di connessioni simultanee che un utente può fare." -#: server_privileges.php:47 server_privileges.php:188 -#: server_privileges.php:544 +#: server_privileges.php:48 server_privileges.php:189 +#: server_privileges.php:545 msgid "Allows viewing processes of all users" msgstr "Permette di vedere i processi di tutti gli utenti" -#: server_privileges.php:48 server_privileges.php:190 -#: server_privileges.php:448 server_privileges.php:550 +#: server_privileges.php:49 server_privileges.php:191 +#: server_privileges.php:449 server_privileges.php:551 msgid "Has no effect in this MySQL version." msgstr "Non ha alcun effetto in questa versione di MySQL." -#: server_privileges.php:49 server_privileges.php:186 -#: server_privileges.php:545 +#: server_privileges.php:50 server_privileges.php:187 +#: server_privileges.php:546 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" "Permette di ricaricare i parametri del server e di resettare la cache del " "server." -#: server_privileges.php:50 server_privileges.php:198 -#: server_privileges.php:552 +#: server_privileges.php:51 server_privileges.php:199 +#: server_privileges.php:553 msgid "Allows the user to ask where the slaves / masters are." msgstr "" "Accorda il diritto ad un utente di domandare dove sono i masters/slaves." -#: server_privileges.php:51 server_privileges.php:197 -#: server_privileges.php:553 +#: server_privileges.php:52 server_privileges.php:198 +#: server_privileges.php:554 msgid "Needed for the replication slaves." msgstr "Necessario per la replicazione degli slaves." -#: server_privileges.php:52 server_privileges.php:180 -#: server_privileges.php:439 server_privileges.php:503 +#: server_privileges.php:53 server_privileges.php:181 +#: server_privileges.php:440 server_privileges.php:504 msgid "Allows reading data." msgstr "Permette di leggere i dati." -#: server_privileges.php:53 server_privileges.php:193 -#: server_privileges.php:547 +#: server_privileges.php:54 server_privileges.php:194 +#: server_privileges.php:548 msgid "Gives access to the complete list of databases." msgstr "Accorda l'accesso alla lista completa dei databases." -#: server_privileges.php:54 server_privileges.php:204 -#: server_privileges.php:206 server_privileges.php:519 +#: server_privileges.php:55 server_privileges.php:205 +#: server_privileges.php:207 server_privileges.php:520 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Permette di effettuare query del tipo SHOW CREATE VIEW." -#: server_privileges.php:55 server_privileges.php:187 -#: server_privileges.php:546 +#: server_privileges.php:56 server_privileges.php:188 +#: server_privileges.php:547 msgid "Allows shutting down the server." msgstr "Permette di chiudere il server." -#: server_privileges.php:56 server_privileges.php:194 -#: server_privileges.php:543 +#: server_privileges.php:57 server_privileges.php:195 +#: server_privileges.php:544 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -4766,156 +4810,156 @@ msgstr "" "settaggio di variabili globali o la cancellazione dei threads di altri " "utenti." -#: server_privileges.php:57 server_privileges.php:201 -#: server_privileges.php:535 +#: server_privileges.php:58 server_privileges.php:202 +#: server_privileges.php:536 msgid "Allows creating and dropping triggers" msgstr "Permette di creare e di eliminare i triggers" -#: server_privileges.php:58 server_privileges.php:182 -#: server_privileges.php:445 server_privileges.php:505 +#: server_privileges.php:59 server_privileges.php:183 +#: server_privileges.php:446 server_privileges.php:506 msgid "Allows changing data." msgstr "Permette di cambiare i dati." -#: server_privileges.php:59 server_privileges.php:260 +#: server_privileges.php:60 server_privileges.php:261 msgid "No privileges." msgstr "Nessun privilegio." -#: server_privileges.php:302 server_privileges.php:303 +#: server_privileges.php:303 server_privileges.php:304 #, fuzzy #| msgid "None" msgctxt "None privileges" msgid "None" msgstr "Nessuno" -#: server_privileges.php:431 server_privileges.php:566 -#: server_privileges.php:1718 server_privileges.php:1724 +#: server_privileges.php:432 server_privileges.php:567 +#: server_privileges.php:1738 server_privileges.php:1744 msgid "Table-specific privileges" msgstr "Privilegi relativi alle tabelle" -#: server_privileges.php:432 server_privileges.php:574 -#: server_privileges.php:1540 +#: server_privileges.php:433 server_privileges.php:575 +#: server_privileges.php:1560 msgid " Note: MySQL privilege names are expressed in English " msgstr "Nota: i nomi dei privilegi di MySQL sono in Inglese" -#: server_privileges.php:563 server_privileges.php:1539 +#: server_privileges.php:564 server_privileges.php:1559 msgid "Global privileges" msgstr "Privilegi globali" -#: server_privileges.php:565 server_privileges.php:1718 +#: server_privileges.php:566 server_privileges.php:1738 msgid "Database-specific privileges" msgstr "Privilegi specifici al database" -#: server_privileges.php:610 +#: server_privileges.php:611 msgid "Administration" msgstr "Amministrazione" -#: server_privileges.php:630 +#: server_privileges.php:631 msgid "Resource limits" msgstr "Limiti di risorse" -#: server_privileges.php:631 +#: server_privileges.php:632 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "N.B.: 0 (zero) significa nessun limite." -#: server_privileges.php:708 +#: server_privileges.php:709 msgid "Login Information" msgstr "Informazioni di Login" -#: server_privileges.php:802 +#: server_privileges.php:803 msgid "Do not change the password" msgstr "Non cambiare la password" -#: server_privileges.php:843 server_privileges.php:2205 +#: server_privileges.php:844 server_privileges.php:2226 #, fuzzy #| msgid "No user(s) found." msgid "No user found." msgstr "Nessun utente trovato." -#: server_privileges.php:887 +#: server_privileges.php:888 #, php-format msgid "The user %s already exists!" msgstr "L'utente %s esiste già!" -#: server_privileges.php:970 +#: server_privileges.php:971 msgid "You have added a new user." msgstr "Hai aggiunto un nuovo utente." -#: server_privileges.php:1191 +#: server_privileges.php:1196 #, php-format msgid "You have updated the privileges for %s." msgstr "Hai aggiornato i permessi per %s." -#: server_privileges.php:1215 +#: server_privileges.php:1220 #, php-format msgid "You have revoked the privileges for %s" msgstr "Hai revocato i privilegi per %s" -#: server_privileges.php:1251 +#: server_privileges.php:1256 #, php-format msgid "The password for %s was changed successfully." msgstr "La password per l'utente %s è cambiata con successo." -#: server_privileges.php:1271 +#: server_privileges.php:1276 #, php-format msgid "Deleting %s" msgstr "Cancellazione in corso di %s" -#: server_privileges.php:1282 +#: server_privileges.php:1287 msgid "No users selected for deleting!" msgstr "Nessun utente selezionato per la cancellazione!" -#: server_privileges.php:1285 +#: server_privileges.php:1290 msgid "Reloading the privileges" msgstr "Caricamento dei privilegi in corso" -#: server_privileges.php:1300 +#: server_privileges.php:1305 msgid "The selected users have been deleted successfully." msgstr "Gli utenti selezionati sono stati cancellati con successo." -#: server_privileges.php:1335 +#: server_privileges.php:1344 msgid "The privileges were reloaded successfully." msgstr "I privilegi sono stati ricaricati con successo." -#: server_privileges.php:1363 server_privileges.php:1649 +#: server_privileges.php:1380 server_privileges.php:1669 msgid "Edit Privileges" msgstr "Modifica Privilegi" -#: server_privileges.php:1372 +#: server_privileges.php:1389 msgid "Revoke" msgstr "Revoca" -#: server_privileges.php:1404 +#: server_privileges.php:1424 msgid "User overview" msgstr "Vista d'insieme dell'utente" -#: server_privileges.php:1541 server_privileges.php:1723 -#: server_privileges.php:2072 +#: server_privileges.php:1561 server_privileges.php:1743 +#: server_privileges.php:2093 msgid "Grant" msgstr "Grant" -#: server_privileges.php:1560 server_privileges.php:2162 +#: server_privileges.php:1580 server_privileges.php:2183 msgid "Any" msgstr "Qualsiasi" -#: server_privileges.php:1609 server_privileges.php:1633 -#: server_privileges.php:2027 server_privileges.php:2216 +#: server_privileges.php:1629 server_privileges.php:1653 +#: server_privileges.php:2048 server_privileges.php:2237 msgid "Add a new User" msgstr "Aggiungi un nuovo utente" -#: server_privileges.php:1614 +#: server_privileges.php:1634 msgid "Remove selected users" msgstr "Rimuove gli utenti selezionati" -#: server_privileges.php:1617 +#: server_privileges.php:1637 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:1618 server_privileges.php:1619 -#: server_privileges.php:1620 +#: server_privileges.php:1638 server_privileges.php:1639 +#: server_privileges.php:1640 msgid "Drop the databases that have the same names as the users." msgstr "Elimina i databases gli stessi nomi degli utenti." -#: server_privileges.php:1636 +#: server_privileges.php:1656 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -4928,52 +4972,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:1684 +#: server_privileges.php:1704 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:1724 +#: server_privileges.php:1744 msgid "Column-specific privileges" msgstr "Privilegi relativi alle colonne" -#: server_privileges.php:1925 +#: server_privileges.php:1945 msgid "Add privileges on the following database" msgstr "Aggiungi privilegi sul seguente database" -#: server_privileges.php:1943 +#: server_privileges.php:1963 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:1946 +#: server_privileges.php:1966 msgid "Add privileges on the following table" msgstr "Aggiungi privilegi sulla seguente tabella" -#: server_privileges.php:2003 +#: server_privileges.php:2023 msgid "Change Login Information / Copy User" msgstr "Cambia le Informazioni di Login / Copia Utente" -#: server_privileges.php:2006 +#: server_privileges.php:2026 msgid "Create a new user with the same privileges and ..." msgstr "Crea un nuovo utente con gli stessi privilegi e ..." -#: server_privileges.php:2008 +#: server_privileges.php:2028 msgid "... keep the old one." msgstr "... mantieni quello vecchio." -#: server_privileges.php:2009 +#: server_privileges.php:2029 msgid " ... delete the old one from the user tables." msgstr " ... cancella quello vecchio dalla tabella degli utenti." -#: server_privileges.php:2010 +#: server_privileges.php:2030 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:2011 +#: server_privileges.php:2031 msgid "" " ... delete the old one from the user tables and reload the privileges " "afterwards." @@ -4981,44 +5025,44 @@ msgstr "" " ... cancella quello vecchio dalla tabella degli utenti e in seguito " "ricarica i privilegi." -#: server_privileges.php:2033 +#: server_privileges.php:2054 msgid "Database for user" msgstr "Database per l'utente" -#: server_privileges.php:2037 +#: server_privileges.php:2058 #, fuzzy #| msgid "None" msgctxt "Create none database for user" msgid "None" msgstr "Nessuno" -#: server_privileges.php:2038 +#: server_privileges.php:2059 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:2039 +#: server_privileges.php:2060 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "Concedi tutti i privilegi al nome con caratteri jolly (username\\_%)" -#: server_privileges.php:2042 +#: server_privileges.php:2063 #, php-format msgid "Grant all privileges on database "%s"" msgstr "Garantisci tutti i privilegi per il database "%s"" -#: server_privileges.php:2065 +#: server_privileges.php:2086 #, php-format msgid "Users having access to "%s"" msgstr "Utenti che hanno accesso a \"%s\"" -#: server_privileges.php:2173 +#: server_privileges.php:2194 msgid "global" msgstr "globale" -#: server_privileges.php:2175 +#: server_privileges.php:2196 msgid "database-specific" msgstr "specifico del database" -#: server_privileges.php:2177 +#: server_privileges.php:2198 msgid "wildcard" msgstr "wildcard" @@ -7870,6 +7914,10 @@ msgstr "Inserisci come nuova riga e ignora gli errori" msgid "Show insert query" msgstr "Mostrando la query SQL" +#: tbl_change.php:1143 +msgid "and then" +msgstr "e quindi" + #: tbl_change.php:1147 msgid "Go back to previous page" msgstr "Indietro" @@ -7952,7 +8000,7 @@ msgstr "" msgid "Add to index  %s column(s)" msgstr "Aggiungi all'indice %s colonna/e" -#: tbl_indexes.php:256 tbl_structure.php:589 tbl_structure.php:600 +#: tbl_indexes.php:256 tbl_structure.php:587 tbl_structure.php:598 msgid "Column count has to be larger than zero." msgstr "Il contatore delle colonne deve essere superiore a 0." @@ -8066,39 +8114,39 @@ msgstr "Controlla l'integrità delle referenze:" msgid "Show tables" msgstr "Mostra le tabelle" -#: tbl_printview.php:310 tbl_structure.php:656 +#: tbl_printview.php:310 tbl_structure.php:654 msgid "Space usage" msgstr "Spazio utilizzato" -#: tbl_printview.php:314 tbl_structure.php:660 +#: tbl_printview.php:314 tbl_structure.php:658 msgid "Usage" msgstr "Utilizzo" -#: tbl_printview.php:341 tbl_structure.php:687 +#: tbl_printview.php:341 tbl_structure.php:685 msgid "Effective" msgstr "Effettivo" -#: tbl_printview.php:366 tbl_structure.php:725 +#: tbl_printview.php:366 tbl_structure.php:723 msgid "Row Statistics" msgstr "Statistiche righe" -#: tbl_printview.php:369 tbl_structure.php:728 +#: tbl_printview.php:369 tbl_structure.php:726 msgid "Statements" msgstr "Istruzioni" -#: tbl_printview.php:380 tbl_structure.php:740 +#: tbl_printview.php:380 tbl_structure.php:738 msgid "static" msgstr "" -#: tbl_printview.php:382 tbl_structure.php:742 +#: tbl_printview.php:382 tbl_structure.php:740 msgid "dynamic" msgstr "dinamico" -#: tbl_printview.php:404 tbl_structure.php:785 +#: tbl_printview.php:404 tbl_structure.php:783 msgid "Row length" msgstr "Lunghezza riga" -#: tbl_printview.php:414 tbl_structure.php:793 +#: tbl_printview.php:414 tbl_structure.php:791 msgid " Row size " msgstr "Dimensione riga" @@ -8173,50 +8221,50 @@ msgstr "Nessuno" msgid "Column %s has been dropped" msgstr "La tabella %s è stata eliminata" -#: tbl_structure.php:385 +#: tbl_structure.php:384 #, php-format msgid "A primary key has been added on %s" msgstr "Una chiave primaria è stata aggiunta in %s" -#: tbl_structure.php:400 tbl_structure.php:414 tbl_structure.php:428 +#: tbl_structure.php:398 tbl_structure.php:412 tbl_structure.php:426 #, php-format msgid "An index has been added on %s" msgstr "Un indice è stato aggiunto in %s" -#: tbl_structure.php:506 tbl_structure.php:508 +#: tbl_structure.php:504 tbl_structure.php:506 msgid "Relation view" msgstr "Vedi relazioni" -#: tbl_structure.php:515 tbl_structure.php:517 +#: tbl_structure.php:513 tbl_structure.php:515 msgid "Propose table structure" msgstr "Proponi la struttura della tabella" -#: tbl_structure.php:540 +#: tbl_structure.php:538 #, fuzzy #| msgid "Add %s field(s)" msgid "Add column" msgstr "Aggiungi %s campo(i)" -#: tbl_structure.php:554 +#: tbl_structure.php:552 msgid "At End of Table" msgstr "Alla fine della tabella" -#: tbl_structure.php:555 +#: tbl_structure.php:553 msgid "At Beginning of Table" msgstr "All'inizio della tabella" -#: tbl_structure.php:556 +#: tbl_structure.php:554 #, php-format msgid "After %s" msgstr "Dopo %s" -#: tbl_structure.php:594 +#: tbl_structure.php:592 #, fuzzy, php-format #| msgid "Create an index on %s columns" msgid "Create an index on  %s columns" msgstr "Crea un indice su %s columns" -#: tbl_structure.php:756 +#: tbl_structure.php:754 msgid "partitioned" msgstr "partizionato" diff --git a/po/ja.po b/po/ja.po index 7ea9add82..e7afa4108 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-13 09:03-0400\n" +"POT-Creation-Date: 2010-06-22 00:55+0530\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:1514 +#: libraries/display_tbl.lib.php:417 server_privileges.php:1534 msgid "Show all" msgstr "すべて表示" -#: browse_foreigners.php:82 libraries/common.lib.php:2313 +#: browse_foreigners.php:82 libraries/common.lib.php:2317 #: 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,18 +38,18 @@ 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:2831 -#: libraries/common.lib.php:2838 libraries/db_links.inc.php:75 +#: db_structure.php:106 libraries/common.lib.php:2835 +#: libraries/common.lib.php:2842 libraries/db_links.inc.php:75 #: libraries/tbl_links.inc.php:63 msgid "Search" msgstr "検索" -#: browse_foreigners.php:153 db_operations.php:385 db_operations.php:429 -#: db_operations.php:499 db_operations.php:609 db_search.php:362 -#: db_structure.php:567 js/messages.php:48 libraries/Config.class.php:1046 +#: browse_foreigners.php:153 db_operations.php:394 db_operations.php:438 +#: db_operations.php:508 db_operations.php:618 db_search.php:362 +#: db_structure.php:565 js/messages.php:53 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:1335 libraries/common.lib.php:2288 +#: libraries/common.lib.php:1335 libraries/common.lib.php:2292 #: 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,15 +60,15 @@ 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:664 server_privileges.php:1624 -#: server_privileges.php:1971 server_privileges.php:2018 -#: server_privileges.php:2057 server_replication.php:235 +#: server_privileges.php:665 server_privileges.php:1644 +#: server_privileges.php:1991 server_privileges.php:2038 +#: server_privileges.php:2078 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 #: tbl_operations.php:302 tbl_operations.php:499 tbl_operations.php:561 -#: tbl_operations.php:681 tbl_select.php:327 tbl_structure.php:562 -#: tbl_structure.php:597 tbl_tracking.php:395 tbl_tracking.php:512 +#: tbl_operations.php:681 tbl_select.php:327 tbl_structure.php:560 +#: tbl_structure.php:595 tbl_tracking.php:395 tbl_tracking.php:512 #: view_create.php:182 view_operations.php:101 msgid "Go" msgstr "実行する" @@ -94,7 +94,7 @@ msgstr "この値を利用する" msgid "Database %1$s has been created." msgstr "データベース %1$s を作成しました。" -#: db_datadict.php:49 db_operations.php:378 +#: db_datadict.php:49 db_operations.php:387 msgid "Database comment: " msgstr "データベースのコメント:" @@ -121,10 +121,10 @@ 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:2070 +#: pdf_schema.php:1263 pdf_schema.php:1284 server_privileges.php:2091 #: 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 +#: tbl_structure.php:657 tbl_tracking.php:274 tbl_tracking.php:321 msgid "Type" msgstr "種別" @@ -137,7 +137,7 @@ msgstr "種別" msgid "Null" msgstr "ヌル(NULL)" -#: db_datadict.php:178 db_structure.php:501 libraries/export/htmlword.php:247 +#: db_datadict.php:178 db_structure.php:499 libraries/export/htmlword.php:247 #: libraries/export/latex.php:360 libraries/export/odt.php:303 #: libraries/export/texytext.php:236 libraries/tbl_properties.inc.php:106 #: pdf_schema.php:1266 pdf_schema.php:1287 tbl_printview.php:146 @@ -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: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 +#: pdf_schema.php:1344 server_privileges.php:1588 server_privileges.php:1599 +#: server_privileges.php:1909 server_privileges.php:1914 +#: server_privileges.php:2208 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:1565 -#: server_privileges.php:1579 server_privileges.php:1889 -#: server_privileges.php:1892 server_privileges.php:2187 sql.php:193 +#: server_databases.php:64 server_privileges.php:1585 +#: server_privileges.php:1599 server_privileges.php:1909 +#: server_privileges.php:1912 server_privileges.php:2208 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" @@ -210,125 +210,121 @@ msgstr "全選択" msgid "Unselect All" msgstr "全選択解除" -#: db_operations.php:38 tbl_create.php:54 +#: db_operations.php:43 tbl_create.php:54 msgid "The database name is empty!" msgstr "データベース名が空です!" -#: db_operations.php:236 +#: db_operations.php:241 #, php-format msgid "Database %s has been renamed to %s" msgstr "データベース %s を %s にリネームしました" -#: db_operations.php:240 +#: db_operations.php:245 #, php-format msgid "Database %s has been copied to %s" msgstr "データベース %s を %s にコピーしました" -#: db_operations.php:412 +#: db_operations.php:421 msgid "Rename database to" msgstr "新しいデータベース名" -#: db_operations.php:417 server_processlist.php:57 +#: db_operations.php:426 server_processlist.php:57 msgid "Command" msgstr "コマンド" -#: db_operations.php:429 tbl_change.php:1143 -msgid "and then" -msgstr "続いて" - -#: db_operations.php:455 +#: db_operations.php:464 msgid "Copy database to" msgstr "データベースのコピー先" -#: db_operations.php:462 tbl_operations.php:528 tbl_tracking.php:388 +#: db_operations.php:471 tbl_operations.php:528 tbl_tracking.php:388 msgid "Structure only" msgstr "構造のみ" -#: db_operations.php:463 tbl_operations.php:529 tbl_tracking.php:390 +#: db_operations.php:472 tbl_operations.php:529 tbl_tracking.php:390 msgid "Structure and data" msgstr "構造とデータ" -#: db_operations.php:464 tbl_operations.php:530 tbl_tracking.php:389 +#: db_operations.php:473 tbl_operations.php:530 tbl_tracking.php:389 msgid "Data only" msgstr "データのみ" -#: db_operations.php:472 +#: db_operations.php:481 msgid "CREATE DATABASE before copying" msgstr "コピーの前に CREATE DATABASE する" -#: db_operations.php:475 libraries/export/sql.php:52 +#: db_operations.php:484 libraries/export/sql.php:52 #: libraries/export/sql.php:74 libraries/export/sql.php:76 #: libraries/export/sql.php:82 tbl_operations.php:536 #, php-format msgid "Add %s" msgstr "%s を追加" -#: db_operations.php:479 libraries/export/sql.php:78 tbl_operations.php:299 +#: db_operations.php:488 libraries/export/sql.php:78 tbl_operations.php:299 #: tbl_operations.php:538 msgid "Add AUTO_INCREMENT value" msgstr "AUTO_INCREMENT 値を追加する" -#: db_operations.php:483 tbl_operations.php:545 +#: db_operations.php:492 tbl_operations.php:545 msgid "Add constraints" msgstr "制約を追加する" -#: db_operations.php:496 +#: db_operations.php:505 msgid "Switch to copied database" msgstr "コピーしたデータベースに切り替える" -#: db_operations.php:537 +#: db_operations.php:546 msgid "BLOB Repository" msgstr "" -#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1352 -#: libraries/server_links.inc.php:49 server_processlist.php:59 +#: db_operations.php:549 db_tracking.php:76 libraries/common.lib.php:1352 +#: libraries/server_links.inc.php:50 server_processlist.php:59 #: tbl_tracking.php:596 test/theme.php:101 msgid "Status" msgstr "状態" -#: db_operations.php:548 +#: db_operations.php:557 #, fuzzy #| msgid "Enabled" msgctxt "BLOB repository" msgid "Enabled" msgstr "有効" -#: db_operations.php:552 +#: db_operations.php:561 msgid "Disable" msgstr "" -#: db_operations.php:562 +#: db_operations.php:571 msgid "Damaged" msgstr "" -#: db_operations.php:566 +#: db_operations.php:575 #, fuzzy #| msgid "Repair" msgctxt "BLOB repository" msgid "Repair" msgstr "修復" -#: db_operations.php:574 +#: db_operations.php:583 #, fuzzy #| msgid "Disabled" msgctxt "BLOB repository" msgid "Disabled" msgstr "無効" -#: db_operations.php:578 +#: db_operations.php:587 msgid "Enable" msgstr "" -#: db_operations.php:602 libraries/Index.class.php:448 +#: db_operations.php:611 libraries/Index.class.php:448 #: libraries/db_structure.lib.php:62 libraries/mysql_charsets.lib.php:107 #: libraries/tbl_properties.inc.php:107 libraries/tbl_properties.inc.php:730 #: server_collations.php:54 server_collations.php:66 server_databases.php:111 #: tbl_operations.php:363 tbl_select.php:137 tbl_structure.php:179 -#: tbl_structure.php:767 tbl_tracking.php:275 tbl_tracking.php:326 +#: tbl_structure.php:765 tbl_tracking.php:275 tbl_tracking.php:326 msgid "Collation" msgstr "照合順序" -#: db_operations.php:615 main.php:316 pdf_schema.php:34 +#: db_operations.php:624 main.php:316 pdf_schema.php:34 #, php-format msgid "" "The additional features for working with linked tables have been " @@ -337,14 +333,14 @@ msgstr "" "リンクテーブルを処理するための追加機能が無効になっています。理由については%s" "こちら%sをご覧ください" -#: db_operations.php:648 +#: db_operations.php:657 msgid "Edit PDF Pages" 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:1665 -#: server_privileges.php:1721 server_privileges.php:1985 +#: libraries/header.inc.php:130 pdf_pages.php:424 server_privileges.php:1685 +#: server_privileges.php:1741 server_privileges.php:2005 #: server_synchronize.php:423 server_synchronize.php:866 tbl_tracking.php:592 #: test/theme.php:75 msgid "Table" @@ -353,7 +349,7 @@ msgstr "テーブル" #: db_printview.php:105 libraries/db_structure.lib.php:56 #: libraries/header_printview.inc.php:63 libraries/import.lib.php:146 #: navigation.php:638 navigation.php:660 server_databases.php:122 -#: tbl_printview.php:394 tbl_structure.php:365 tbl_structure.php:777 +#: tbl_printview.php:394 tbl_structure.php:365 tbl_structure.php:775 msgid "Rows" msgstr "行" @@ -361,30 +357,30 @@ msgstr "行" msgid "Size" msgstr "サイズ" -#: db_printview.php:162 db_structure.php:457 libraries/export/sql.php:559 +#: db_printview.php:162 db_structure.php:455 libraries/export/sql.php:559 #: libraries/export/sql.php:899 msgid "in use" msgstr "使用中" #: db_printview.php:187 libraries/db_info.inc.php:88 #: libraries/export/sql.php:514 pdf_schema.php:1241 tbl_printview.php:434 -#: tbl_structure.php:809 +#: tbl_structure.php:807 msgid "Creation" msgstr "作成日時" #: db_printview.php:196 libraries/db_info.inc.php:93 #: libraries/export/sql.php:519 pdf_schema.php:1246 tbl_printview.php:444 -#: tbl_structure.php:817 +#: tbl_structure.php:815 msgid "Last update" msgstr "最終更新" #: db_printview.php:205 libraries/db_info.inc.php:98 #: libraries/export/sql.php:524 pdf_schema.php:1251 tbl_printview.php:454 -#: tbl_structure.php:825 +#: tbl_structure.php:823 msgid "Last check" msgstr "最終検査" -#: db_printview.php:222 db_structure.php:480 +#: db_printview.php:222 db_structure.php:478 #, fuzzy, php-format #| msgid "%s table(s)" msgid "%s table" @@ -444,7 +440,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:297 tbl_change.php:1031 tbl_indexes.php:250 +#: server_privileges.php:298 tbl_change.php:1031 tbl_indexes.php:250 #: tbl_select.php:288 msgid "Or" msgstr "または" @@ -517,9 +513,9 @@ 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:2833 +#: db_structure.php:105 libraries/common.lib.php:2837 #: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50 -#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:467 +#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:465 msgid "Browse" msgstr "表示" @@ -564,36 +560,36 @@ 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:2832 libraries/sql_query_form.lib.php:334 +#: libraries/common.lib.php:2836 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:2829 libraries/common.lib.php:2836 +#: libraries/common.lib.php:2833 libraries/common.lib.php:2840 #: 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:1106 #: libraries/tbl_links.inc.php:56 pmd_general.php:134 -#: server_privileges.php:593 server_replication.php:315 tbl_tracking.php:269 +#: server_privileges.php:594 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:1656 +#: db_structure.php:543 db_structure.php:544 db_tracking.php:91 +#: libraries/Index.class.php:483 libraries/common.lib.php:1657 #: 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 -#: tbl_structure.php:152 tbl_structure.php:471 +#: tbl_structure.php:152 tbl_structure.php:469 msgid "Drop" 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:1655 +#: db_structure.php:541 db_structure.php:542 libraries/common.lib.php:1656 #: libraries/mult_submits.inc.php:39 libraries/tbl_links.inc.php:105 msgid "Empty" msgstr "空にする" @@ -603,111 +599,111 @@ msgstr "空にする" msgid "Table %s has been emptied" msgstr "テーブル %s を空にしました" -#: db_structure.php:326 libraries/tbl_links.inc.php:133 +#: db_structure.php:325 libraries/tbl_links.inc.php:133 #, php-format msgid "View %s has been dropped" msgstr "ビュー %s を破棄しました" -#: db_structure.php:326 libraries/tbl_links.inc.php:133 +#: db_structure.php:325 libraries/tbl_links.inc.php:133 #, php-format msgid "Table %s has been dropped" msgstr "テーブル %s を削除しました" -#: db_structure.php:333 +#: db_structure.php:332 msgid "Tracking is active." msgstr "" -#: db_structure.php:335 +#: db_structure.php:334 msgid "Tracking is not active." msgstr "" -#: db_structure.php:420 libraries/display_tbl.lib.php:1944 +#: db_structure.php:418 libraries/display_tbl.lib.php:1944 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation%" "s." msgstr "このビューの最低行数。詳しくは%sドキュメント%sをご覧ください。" -#: db_structure.php:434 db_structure.php:448 libraries/header.inc.php:126 +#: db_structure.php:432 db_structure.php:446 libraries/header.inc.php:130 #: libraries/tbl_info.inc.php:66 tbl_structure.php:185 test/theme.php:74 msgid "View" msgstr "ビュー" -#: db_structure.php:485 libraries/db_structure.lib.php:49 -#: libraries/server_links.inc.php:70 server_replication.php:33 +#: db_structure.php:483 libraries/db_structure.lib.php:49 +#: libraries/server_links.inc.php:71 server_replication.php:33 #: server_replication.php:164 server_status.php:369 msgid "Replication" msgstr "レプリケーション" -#: db_structure.php:489 +#: db_structure.php:487 msgid "Sum" msgstr "合計" -#: db_structure.php:496 libraries/StorageEngine.class.php:356 +#: db_structure.php:494 libraries/StorageEngine.class.php:356 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "%s はこの MySQL サーバのデフォルトストレージエンジンです" -#: db_structure.php:524 db_structure.php:541 db_structure.php:542 +#: db_structure.php:522 db_structure.php:539 db_structure.php:540 #: 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:1596 tbl_structure.php:455 -#: tbl_structure.php:464 +#: server_databases.php:351 server_privileges.php:1616 tbl_structure.php:453 +#: tbl_structure.php:462 msgid "With selected:" msgstr "チェックしたものを:" -#: db_structure.php:527 libraries/display_tbl.lib.php:2076 -#: server_databases.php:348 server_privileges.php:569 -#: server_privileges.php:1599 tbl_structure.php:458 +#: db_structure.php:525 libraries/display_tbl.lib.php:2076 +#: server_databases.php:348 server_privileges.php:570 +#: server_privileges.php:1619 tbl_structure.php:456 msgid "Check All" msgstr "すべてチェックする" -#: db_structure.php:531 libraries/display_tbl.lib.php:2077 +#: db_structure.php:529 libraries/display_tbl.lib.php:2077 #: libraries/replication_gui.lib.php:33 server_databases.php:350 -#: server_privileges.php:572 server_privileges.php:1603 tbl_structure.php:462 +#: server_privileges.php:573 server_privileges.php:1623 tbl_structure.php:460 msgid "Uncheck All" msgstr "すべてのチェックを外す" -#: db_structure.php:536 +#: db_structure.php:534 msgid "Check tables having overhead" msgstr "オーバーヘッドのあるテーブルを確認してください" -#: db_structure.php:547 db_structure.php:548 db_structure.php:599 +#: db_structure.php:545 db_structure.php:546 db_structure.php:597 #: libraries/display_tbl.lib.php:2180 libraries/mult_submits.inc.php:28 -#: tbl_structure.php:492 tbl_structure.php:494 +#: tbl_structure.php:490 tbl_structure.php:492 msgid "Print view" msgstr "印刷用画面" -#: db_structure.php:549 db_structure.php:550 libraries/mult_submits.inc.php:42 +#: db_structure.php:547 db_structure.php:548 libraries/mult_submits.inc.php:42 #: tbl_operations.php:581 msgid "Check table" msgstr "テーブルをチェックする" -#: db_structure.php:551 db_structure.php:552 libraries/mult_submits.inc.php:47 -#: tbl_operations.php:621 tbl_structure.php:709 tbl_structure.php:711 +#: db_structure.php:549 db_structure.php:550 libraries/mult_submits.inc.php:47 +#: tbl_operations.php:621 tbl_structure.php:707 tbl_structure.php:709 msgid "Optimize table" msgstr "テーブルを最適化する" -#: db_structure.php:553 db_structure.php:554 libraries/mult_submits.inc.php:52 +#: db_structure.php:551 db_structure.php:552 libraries/mult_submits.inc.php:52 #: tbl_operations.php:611 msgid "Repair table" msgstr "テーブルを修復する" -#: db_structure.php:555 db_structure.php:556 libraries/mult_submits.inc.php:57 +#: db_structure.php:553 db_structure.php:554 libraries/mult_submits.inc.php:57 #: tbl_operations.php:601 msgid "Analyze table" msgstr "テーブルを分析する" -#: db_structure.php:557 db_structure.php:558 libraries/db_links.inc.php:71 +#: db_structure.php:555 db_structure.php:556 libraries/db_links.inc.php:71 #: 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:1380 +#: libraries/server_links.inc.php:85 libraries/tbl_links.inc.php:82 +#: pmd_pdf.php:84 pmd_pdf.php:109 server_privileges.php:1397 #: setup/frames/menu.inc.php:22 tbl_row_action.php:59 msgid "Export" msgstr "エクスポート" -#: db_structure.php:606 libraries/display_pdf_schema.lib.php:44 +#: db_structure.php:604 libraries/display_pdf_schema.lib.php:44 msgid "Data Dictionary" msgstr "データ辞書" @@ -718,10 +714,10 @@ msgstr "" #: db_tracking.php:71 libraries/export/htmlword.php:86 #: libraries/export/latex.php:148 libraries/export/odt.php:113 #: libraries/export/sql.php:342 libraries/export/texytext.php:84 -#: libraries/export/xml.php:255 libraries/header.inc.php:106 +#: libraries/export/xml.php:255 libraries/header.inc.php:110 #: libraries/header_printview.inc.php:58 server_databases.php:169 -#: server_privileges.php:1660 server_privileges.php:1721 -#: server_privileges.php:1979 server_processlist.php:56 +#: server_privileges.php:1680 server_privileges.php:1741 +#: server_privileges.php:1999 server_processlist.php:56 #: server_synchronize.php:1179 server_synchronize.php:1183 #: tbl_tracking.php:591 test/theme.php:65 msgid "Database" @@ -741,8 +737,8 @@ msgstr "" #: db_tracking.php:77 libraries/Index.class.php:440 #: libraries/db_structure.lib.php:53 server_databases.php:203 -#: server_privileges.php:1542 server_privileges.php:1725 -#: server_privileges.php:2073 tbl_structure.php:187 +#: server_privileges.php:1562 server_privileges.php:1745 +#: server_privileges.php:2094 tbl_structure.php:187 msgid "Action" msgstr "操作" @@ -776,8 +772,8 @@ msgstr "" msgid "Untracked tables" msgstr "" -#: db_tracking.php:172 db_tracking.php:174 tbl_structure.php:528 -#: tbl_structure.php:530 +#: db_tracking.php:172 db_tracking.php:174 tbl_structure.php:526 +#: tbl_structure.php:528 msgid "Track table" msgstr "" @@ -944,182 +940,231 @@ msgstr "ホスト名が空です!" msgid "The user name is empty!" msgstr "ユーザ名が空です!" -#: js/messages.php:44 server_privileges.php:1236 user_password.php:70 +#: js/messages.php:44 server_privileges.php:1241 user_password.php:70 msgid "The password is empty!" msgstr "パスワードが空です!" -#: js/messages.php:45 server_privileges.php:1234 user_password.php:73 +#: js/messages.php:45 server_privileges.php:1239 user_password.php:73 msgid "The passwords aren't the same!" msgstr "パスワードが異なっています!" -#: js/messages.php:49 pmd_general.php:342 pmd_general.php:379 +#: js/messages.php:46 +#, fuzzy +#| msgid "Add a new User" +msgid "Add a New User" +msgstr "新しいユーザを追加する" + +#: js/messages.php:47 js/messages.php:54 pmd_general.php:342 +#: pmd_general.php:379 msgid "Cancel" msgstr "キャンセル" -#: js/messages.php:52 pmd_save_pos.php:54 +#: js/messages.php:48 +#, fuzzy +#| msgid "Create" +msgid "Create User" +msgstr "作成" + +#: js/messages.php:49 +#, fuzzy +#| msgid "Reload privileges" +msgid "Reloading Privileges" +msgstr "特権をリロードする" + +#: js/messages.php:50 +#, fuzzy +#| msgid "Remove selected users" +msgid "Removing Selected Users" +msgstr "選択したユーザを削除する" + +#: js/messages.php:57 +#, fuzzy +#| msgid "Log in" +msgid "Loading" +msgstr "ログイン" + +#: js/messages.php:58 +#, fuzzy +#| msgid "Processes" +msgid "Processing Request" +msgstr "プロセス" + +#: js/messages.php:59 +msgid "Error in Processing Request" +msgstr "" + +#: js/messages.php:60 +msgid "Dropping Column" +msgstr "" + +#: js/messages.php:61 +msgid "Adding Primary Key" +msgstr "" + +#: js/messages.php:64 pmd_save_pos.php:54 msgid "Modifications have been saved" msgstr "修正を保存しました" -#: js/messages.php:53 pmd_relation_upd.php:49 +#: js/messages.php:65 pmd_relation_upd.php:49 msgid "Relation deleted" msgstr "リレーションを削除しました" -#: js/messages.php:54 pmd_relation_new.php:64 +#: js/messages.php:66 pmd_relation_new.php:64 msgid "FOREIGN KEY relation added" msgstr "外部キーを追加しました" -#: js/messages.php:55 pmd_relation_new.php:86 +#: js/messages.php:67 pmd_relation_new.php:86 msgid "Internal relation added" msgstr "内部リレーションを追加しました" -#: js/messages.php:56 pmd_relation_new.php:63 pmd_relation_new.php:88 +#: js/messages.php:68 pmd_relation_new.php:63 pmd_relation_new.php:88 msgid "Error: Relation not added." msgstr "エラー: リレーションを追加できませんでした" -#: js/messages.php:57 pmd_relation_new.php:31 +#: js/messages.php:69 pmd_relation_new.php:31 msgid "Error: relation already exists." msgstr "エラー: リレーションはすでに存在しています" -#: js/messages.php:58 +#: js/messages.php:70 msgid "Error saving coordinates for Designer." msgstr "デザイナの座標を保存するときにエラーが発生しました" -#: js/messages.php:59 libraries/relation.lib.php:107 +#: js/messages.php:71 libraries/relation.lib.php:107 #: libraries/relation.lib.php:119 msgid "General relation features" msgstr "一般的なリレーション機能" -#: js/messages.php:59 libraries/relation.lib.php:101 +#: js/messages.php:71 libraries/relation.lib.php:101 #: libraries/relation.lib.php:108 msgid "Disabled" msgstr "無効" -#: js/messages.php:60 +#: js/messages.php:72 msgid "Select referenced key" msgstr "参照されているキーを選択" -#: js/messages.php:61 +#: js/messages.php:73 msgid "Select Foreign Key" msgstr "外部キーを選択してください" -#: js/messages.php:62 +#: js/messages.php:74 msgid "Please select the primary key or a unique key" msgstr "主キーまたはユニークキーを選択してください" -#: js/messages.php:63 pmd_general.php:77 tbl_relation.php:548 +#: js/messages.php:75 pmd_general.php:77 tbl_relation.php:548 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" msgstr "表示するフィールドを選択してください" #. l10n: Display text for calendar close link -#: js/messages.php:73 +#: js/messages.php:85 #, fuzzy #| msgid "None" msgid "Done" msgstr "なし" #. l10n: Display text for previous month link in calendar -#: js/messages.php:75 +#: js/messages.php:87 #, fuzzy #| msgid "Previous" msgid "Prev" msgstr "前" #. l10n: Display text for next month link in calendar -#: js/messages.php:77 libraries/common.lib.php:2353 -#: libraries/common.lib.php:2356 libraries/display_tbl.lib.php:338 +#: js/messages.php:89 libraries/common.lib.php:2357 +#: libraries/common.lib.php:2360 libraries/display_tbl.lib.php:338 #: server_binlog.php:205 server_binlog.php:207 tbl_printview.php:424 -#: tbl_structure.php:801 +#: tbl_structure.php:799 msgid "Next" msgstr "次へ" #. l10n: Display text for current month link in calendar -#: js/messages.php:79 +#: js/messages.php:91 #, fuzzy #| msgid "Total" msgid "Today" msgstr "合計" -#: js/messages.php:82 +#: js/messages.php:94 #, fuzzy #| msgid "Binary" msgid "January" msgstr " バイナリ" -#: js/messages.php:83 +#: js/messages.php:95 msgid "February" msgstr "" -#: js/messages.php:84 +#: js/messages.php:96 #, fuzzy #| msgid "Mar" msgid "March" msgstr "8 月" -#: js/messages.php:85 +#: js/messages.php:97 #, fuzzy #| msgid "Apr" msgid "April" msgstr "9 月" -#: js/messages.php:86 +#: js/messages.php:98 msgid "May" msgstr "10 月" -#: js/messages.php:87 +#: js/messages.php:99 #, fuzzy #| msgid "Jun" msgid "June" msgstr "11 月" -#: js/messages.php:88 +#: js/messages.php:100 #, fuzzy msgid "July" msgstr "日" -#: js/messages.php:89 +#: js/messages.php:101 msgid "August" msgstr "" -#: js/messages.php:90 +#: js/messages.php:102 msgid "September" msgstr "" -#: js/messages.php:91 +#: js/messages.php:103 msgid "October" msgstr "" -#: js/messages.php:92 +#: js/messages.php:104 msgid "November" msgstr "" -#: js/messages.php:93 +#: js/messages.php:105 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:97 libraries/common.lib.php:1557 +#: js/messages.php:109 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:1559 +#: js/messages.php:111 libraries/common.lib.php:1559 msgid "Feb" msgstr "7 月" #. l10n: Short month name -#: js/messages.php:101 libraries/common.lib.php:1561 +#: js/messages.php:113 libraries/common.lib.php:1561 msgid "Mar" msgstr "8 月" #. l10n: Short month name -#: js/messages.php:103 libraries/common.lib.php:1563 +#: js/messages.php:115 libraries/common.lib.php:1563 msgid "Apr" msgstr "9 月" #. l10n: Short month name -#: js/messages.php:105 libraries/common.lib.php:1565 +#: js/messages.php:117 libraries/common.lib.php:1565 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1127,179 +1172,179 @@ msgid "May" msgstr "10 月" #. l10n: Short month name -#: js/messages.php:107 libraries/common.lib.php:1567 +#: js/messages.php:119 libraries/common.lib.php:1567 msgid "Jun" msgstr "11 月" #. l10n: Short month name -#: js/messages.php:109 libraries/common.lib.php:1569 +#: js/messages.php:121 libraries/common.lib.php:1569 #, fuzzy msgid "Jul" msgstr "日" #. l10n: Short month name -#: js/messages.php:111 libraries/common.lib.php:1571 +#: js/messages.php:123 libraries/common.lib.php:1571 msgid "Aug" msgstr "" #. l10n: Short month name -#: js/messages.php:113 libraries/common.lib.php:1573 +#: js/messages.php:125 libraries/common.lib.php:1573 msgid "Sep" msgstr "" #. l10n: Short month name -#: js/messages.php:115 libraries/common.lib.php:1575 +#: js/messages.php:127 libraries/common.lib.php:1575 msgid "Oct" msgstr "" #. l10n: Short month name -#: js/messages.php:117 libraries/common.lib.php:1577 +#: js/messages.php:129 libraries/common.lib.php:1577 msgid "Nov" msgstr "" #. l10n: Short month name -#: js/messages.php:119 libraries/common.lib.php:1579 +#: js/messages.php:131 libraries/common.lib.php:1579 msgid "Dec" msgstr "" -#: js/messages.php:122 +#: js/messages.php:134 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "日" -#: js/messages.php:123 +#: js/messages.php:135 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "月" -#: js/messages.php:124 +#: js/messages.php:136 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "火" -#: js/messages.php:125 +#: js/messages.php:137 msgid "Wednesday" msgstr "" -#: js/messages.php:126 +#: js/messages.php:138 msgid "Thursday" msgstr "" -#: js/messages.php:127 +#: js/messages.php:139 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "金" -#: js/messages.php:128 +#: js/messages.php:140 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:132 libraries/common.lib.php:1582 +#: js/messages.php:144 libraries/common.lib.php:1582 msgid "Sun" msgstr "日" #. l10n: Short week day name -#: js/messages.php:134 libraries/common.lib.php:1584 +#: js/messages.php:146 libraries/common.lib.php:1584 msgid "Mon" msgstr "月" #. l10n: Short week day name -#: js/messages.php:136 libraries/common.lib.php:1586 +#: js/messages.php:148 libraries/common.lib.php:1586 msgid "Tue" msgstr "火" #. l10n: Short week day name -#: js/messages.php:138 libraries/common.lib.php:1588 +#: js/messages.php:150 libraries/common.lib.php:1588 msgid "Wed" msgstr "水" #. l10n: Short week day name -#: js/messages.php:140 libraries/common.lib.php:1590 +#: js/messages.php:152 libraries/common.lib.php:1590 msgid "Thu" msgstr "木" #. l10n: Short week day name -#: js/messages.php:142 libraries/common.lib.php:1592 +#: js/messages.php:154 libraries/common.lib.php:1592 msgid "Fri" msgstr "金" #. l10n: Short week day name -#: js/messages.php:144 libraries/common.lib.php:1594 +#: js/messages.php:156 libraries/common.lib.php:1594 msgid "Sat" msgstr "土" #. l10n: Minimal week day name -#: js/messages.php:148 +#: js/messages.php:160 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "日" #. l10n: Minimal week day name -#: js/messages.php:150 +#: js/messages.php:162 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "月" #. l10n: Minimal week day name -#: js/messages.php:152 +#: js/messages.php:164 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "火" #. l10n: Minimal week day name -#: js/messages.php:154 +#: js/messages.php:166 #, fuzzy #| msgid "Wed" msgid "We" msgstr "水" #. l10n: Minimal week day name -#: js/messages.php:156 +#: js/messages.php:168 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "木" #. l10n: Minimal week day name -#: js/messages.php:158 +#: js/messages.php:170 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "金" #. l10n: Minimal week day name -#: js/messages.php:160 +#: js/messages.php:172 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "土" #. l10n: Column header for week of the year in calendar -#: js/messages.php:162 +#: js/messages.php:174 #, fuzzy #| msgid "Wiki" msgid "Wk" msgstr "Wiki" -#: js/messages.php:164 +#: js/messages.php:176 msgid "Hour" msgstr "" -#: js/messages.php:165 +#: js/messages.php:177 #, fuzzy #| msgid "in use" msgid "Minute" msgstr "使用中" -#: js/messages.php:166 +#: js/messages.php:178 #, fuzzy #| msgid "per second" msgid "Second" @@ -1361,7 +1406,7 @@ msgstr "インデックスサイズ" #: libraries/Index.class.php:444 libraries/mult_submits.inc.php:103 #: libraries/tbl_properties.inc.php:519 tbl_structure.php:33 -#: tbl_structure.php:155 tbl_structure.php:159 tbl_structure.php:474 +#: tbl_structure.php:155 tbl_structure.php:159 tbl_structure.php:472 #: tbl_tracking.php:322 msgid "Unique" msgstr "ユニーク" @@ -1404,8 +1449,8 @@ msgstr "" "インデックス %1$s と %2$s は同一のもののようです。一方は削除してもよいかもし" "れません。" -#: libraries/List_Database.class.php:431 libraries/server_links.inc.php:41 -#: server_databases.php:88 server_privileges.php:1660 +#: libraries/List_Database.class.php:431 libraries/server_links.inc.php:42 +#: server_databases.php:88 server_privileges.php:1680 #: setup/lib/messages.inc.php:110 test/theme.php:93 msgid "Databases" msgstr "データベース" @@ -1572,7 +1617,7 @@ msgstr "パスワード:" msgid "Server Choice" msgstr "サーバの選択" -#: libraries/auth/cookie.auth.lib.php:320 libraries/header.inc.php:59 +#: libraries/auth/cookie.auth.lib.php:320 libraries/header.inc.php:63 msgid "Cookies must be enabled past this point." msgstr "クッキーを有効にしてください" @@ -1653,7 +1698,7 @@ msgstr "" "必要な拡張はロードされているようですが、iconv や libiconv、recode_string の関" "数を利用できません。PHP の設定を確認してください" -#: libraries/common.inc.php:583 +#: libraries/common.inc.php:587 msgid "" "phpMyAdmin was unable to read your configuration file!
This might " "happen if PHP finds a parse error in it or PHP cannot find the file.
空白のページが表示されれば問題なしです" -#: libraries/common.inc.php:594 +#: libraries/common.inc.php:598 #, fuzzy, php-format #| msgid "Could not load default configuration from: \"%1$s\"" msgid "Could not load default configuration from: %1$s" msgstr "デフォルトの設定を読み込めませんでした: \"%1$s\"" -#: libraries/common.inc.php:599 +#: libraries/common.inc.php:603 msgid "" "The $cfg['PmaAbsoluteUri'] directive MUST be set in your " "configuration file!" @@ -1681,28 +1726,28 @@ msgstr "" "$cfg['PmaAbsoluteUri'] はかならず設定ファイルで設定する必要がありま" "す!" -#: libraries/common.inc.php:629 +#: libraries/common.inc.php:633 #, fuzzy, php-format #| msgid "Invalid server index: \"%s\"" msgid "Invalid server index: %s" msgstr "サーバのインデックスが不正です: \"%s\"" -#: libraries/common.inc.php:636 +#: libraries/common.inc.php:640 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "サーバ %1$s のホスト名が不正です。設定を確認してください" -#: libraries/common.inc.php:645 libraries/header.inc.php:96 +#: libraries/common.inc.php:649 libraries/header.inc.php:100 #: libraries/select_server.lib.php:41 libraries/select_server.lib.php:47 #: main.php:185 test/theme.php:57 msgid "Server" msgstr "サーバ" -#: libraries/common.inc.php:823 +#: libraries/common.inc.php:827 msgid "Invalid authentication method set in configuration:" msgstr "設定ファイルに無効な認証方法が指定されています:" -#: libraries/common.inc.php:926 +#: libraries/common.inc.php:930 #, php-format msgid "You should upgrade to %s %s or later." msgstr "%s を %s 以降にアップグレードしてください" @@ -1835,45 +1880,45 @@ msgstr "." msgid "%B %d, %Y at %I:%M %p" msgstr "%Y 年 %B %d 日 %H:%M" -#: libraries/common.lib.php:1907 +#: libraries/common.lib.php:1911 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s 日 %s 時間 %s 分 %s 秒" -#: libraries/common.lib.php:2322 libraries/common.lib.php:2325 +#: libraries/common.lib.php:2326 libraries/common.lib.php:2329 #: libraries/display_tbl.lib.php:290 server_status.php:719 msgid "Begin" msgstr "先頭" -#: libraries/common.lib.php:2323 libraries/common.lib.php:2326 +#: libraries/common.lib.php:2327 libraries/common.lib.php:2330 #: libraries/display_tbl.lib.php:291 server_binlog.php:168 #: server_binlog.php:170 msgid "Previous" msgstr "前" -#: libraries/common.lib.php:2354 libraries/common.lib.php:2357 +#: libraries/common.lib.php:2358 libraries/common.lib.php:2361 #: libraries/display_tbl.lib.php:353 msgid "End" msgstr "最後" -#: libraries/common.lib.php:2430 +#: libraries/common.lib.php:2434 #, php-format msgid "Jump to database "%s"." msgstr ""%s" データベースに移動" -#: libraries/common.lib.php:2450 +#: libraries/common.lib.php:2454 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "%s の機能には既知のバグがあります。%s をご覧ください" -#: libraries/common.lib.php:2830 libraries/common.lib.php:2837 +#: libraries/common.lib.php:2834 libraries/common.lib.php:2841 #: libraries/db_links.inc.php:68 libraries/export/sql.php:25 -#: libraries/import/sql.php:18 libraries/server_links.inc.php:45 +#: libraries/import/sql.php:18 libraries/server_links.inc.php:46 #: libraries/tbl_links.inc.php:60 querywindow.php:99 test/theme.php:97 msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2839 libraries/db_links.inc.php:104 +#: libraries/common.lib.php:2843 libraries/db_links.inc.php:104 #: libraries/tbl_links.inc.php:95 libraries/tbl_links.inc.php:117 #: view_operations.php:89 msgid "Operations" @@ -1922,15 +1967,15 @@ msgstr "クエリ" msgid "Designer" msgstr "デザイナ" -#: libraries/db_links.inc.php:98 libraries/server_links.inc.php:88 +#: libraries/db_links.inc.php:98 libraries/server_links.inc.php:89 #: libraries/tbl_links.inc.php:91 pmd_pdf.php:84 pmd_pdf.php:110 #: setup/frames/menu.inc.php:21 msgid "Import" msgstr "インポート" -#: libraries/db_links.inc.php:111 libraries/server_links.inc.php:66 -#: server_privileges.php:111 server_privileges.php:1722 -#: server_privileges.php:2071 test/theme.php:117 +#: libraries/db_links.inc.php:111 libraries/server_links.inc.php:67 +#: server_privileges.php:112 server_privileges.php:1742 +#: server_privileges.php:2092 test/theme.php:117 msgid "Privileges" msgstr "特権" @@ -1949,7 +1994,7 @@ msgid "" msgstr "正確な数字とは限りません。FAQ 3.11 をご覧ください" #: libraries/db_structure.lib.php:69 server_databases.php:142 -#: tbl_printview.php:336 tbl_structure.php:682 +#: tbl_printview.php:336 tbl_structure.php:680 msgid "Overhead" msgstr "オーバーヘッド" @@ -1967,7 +2012,7 @@ msgstr "サーバが応答しません" msgid "(or the local MySQL server's socket is not correctly configured)" msgstr "(あるいはローカルの MySQL サーバのソケットが正しく設定されていません)" -#: libraries/dbi/mysql.dbi.lib.php:362 tbl_structure.php:608 +#: libraries/dbi/mysql.dbi.lib.php:362 tbl_structure.php:606 msgid "Details..." msgstr "詳細..." @@ -1977,22 +2022,22 @@ msgid "Change password" msgstr "パスワードを変更する" #: libraries/display_change_password.lib.php:35 -#: libraries/replication_gui.lib.php:345 server_privileges.php:807 +#: libraries/replication_gui.lib.php:345 server_privileges.php:808 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:796 -#: server_privileges.php:800 server_privileges.php:811 -#: server_privileges.php:1538 server_synchronize.php:1175 +#: libraries/replication_gui.lib.php:349 server_privileges.php:797 +#: server_privileges.php:801 server_privileges.php:812 +#: server_privileges.php:1558 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:815 server_privileges.php:818 +#: server_privileges.php:816 server_privileges.php:819 msgid "Re-type" msgstr "もう一度入力してください" @@ -2007,12 +2052,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:822 +#: libraries/replication_gui.lib.php:360 server_privileges.php:823 msgid "Generate Password" msgstr "パスワードを生成する" #: libraries/display_change_password.lib.php:75 -#: libraries/replication_gui.lib.php:363 server_privileges.php:825 +#: libraries/replication_gui.lib.php:363 server_privileges.php:826 msgid "Generate" msgstr "生成する" @@ -2025,8 +2070,8 @@ msgstr "新規データベースを作成する" msgid "Create" msgstr "作成" -#: libraries/display_create_database.lib.php:40 server_privileges.php:113 -#: server_privileges.php:1427 server_replication.php:35 +#: libraries/display_create_database.lib.php:40 server_privileges.php:114 +#: server_privileges.php:1447 server_replication.php:35 msgid "No Privileges" msgstr "特権なし" @@ -2119,7 +2164,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:1875 server_processlist.php:75 +#: server_privileges.php:1895 server_processlist.php:75 msgid "None" msgstr "なし" @@ -2309,7 +2354,7 @@ msgstr "キーでソート" #: libraries/import/docsql.php:34 libraries/import/ldi.php:47 #: libraries/import/ods.php:30 libraries/import/sql.php:20 #: libraries/import/xls.php:26 libraries/import/xlsx.php:26 -#: libraries/import/xml.php:25 tbl_select.php:267 tbl_structure.php:753 +#: libraries/import/xml.php:25 tbl_select.php:267 tbl_structure.php:751 msgid "Options" msgstr "オプション" @@ -2386,7 +2431,7 @@ msgstr "クエリの実行時間 %01.4f 秒" #: libraries/display_tbl.lib.php:2089 libraries/mult_submits.inc.php:113 #: querywindow.php:125 querywindow.php:129 querywindow.php:132 -#: tbl_structure.php:25 tbl_structure.php:150 tbl_structure.php:470 +#: tbl_structure.php:25 tbl_structure.php:150 tbl_structure.php:468 msgid "Change" msgstr "変更" @@ -2456,7 +2501,7 @@ msgstr "バッファプールの使用量" #: libraries/engines/innodb.lib.php:194 server_databases.php:137 #: server_databases.php:305 server_status.php:525 server_status.php:586 -#: server_status.php:607 tbl_printview.php:351 tbl_structure.php:696 +#: server_status.php:607 tbl_printview.php:351 tbl_structure.php:694 msgid "Total" msgstr "合計" @@ -2739,7 +2784,7 @@ msgstr "" "の番号がつけられます。" #: libraries/export/codegen.php:37 setup/lib/messages.inc.php:88 -#: tbl_printview.php:376 tbl_structure.php:737 +#: tbl_printview.php:376 tbl_structure.php:735 msgid "Format" msgstr "フォーマット" @@ -2811,8 +2856,8 @@ 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:576 server_replication.php:316 tbl_printview.php:317 -#: tbl_structure.php:665 +#: server_privileges.php:577 server_replication.php:316 tbl_printview.php:317 +#: tbl_structure.php:663 msgid "Data" msgstr "データ" @@ -2861,9 +2906,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:731 -#: server_privileges.php:734 server_privileges.php:790 -#: server_privileges.php:1537 server_privileges.php:2069 +#: libraries/replication_gui.lib.php:329 server_privileges.php:732 +#: server_privileges.php:735 server_privileges.php:791 +#: server_privileges.php:1557 server_privileges.php:2090 #: server_processlist.php:55 server_synchronize.php:1159 msgid "Host" msgstr "ホスト" @@ -3058,7 +3103,7 @@ msgstr "" msgid "Open new phpMyAdmin window" msgstr "別ウィンドウで開く" -#: libraries/header.inc.php:115 +#: libraries/header.inc.php:119 msgid "New table" msgstr "" @@ -3218,20 +3263,20 @@ 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 +#: tbl_structure.php:471 msgid "Primary" msgstr "主" #: libraries/mult_submits.inc.php:98 libraries/tbl_properties.inc.php:116 #: libraries/tbl_properties.inc.php:525 tbl_printview.php:326 #: tbl_structure.php:31 tbl_structure.php:154 tbl_structure.php:158 -#: tbl_structure.php:475 tbl_structure.php:673 +#: tbl_structure.php:473 tbl_structure.php:671 msgid "Index" msgstr "インデックス" #: libraries/mult_submits.inc.php:108 libraries/tbl_properties.inc.php:531 #: tbl_structure.php:35 tbl_structure.php:156 tbl_structure.php:160 -#: tbl_structure.php:478 +#: tbl_structure.php:476 msgid "Fulltext" msgstr "全文" @@ -3532,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:711 -#: server_privileges.php:714 server_privileges.php:721 +#: libraries/replication_gui.lib.php:259 server_privileges.php:712 +#: server_privileges.php:715 server_privileges.php:722 #: server_synchronize.php:1171 msgid "User name" msgstr "ユーザ名" @@ -3557,7 +3602,7 @@ msgstr "変数" #: 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 +#: tbl_structure.php:727 msgid "Value" msgstr "値" @@ -3575,34 +3620,34 @@ msgstr "" msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:254 server_privileges.php:716 +#: libraries/replication_gui.lib.php:254 server_privileges.php:717 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:717 -#: server_privileges.php:784 server_privileges.php:808 -#: server_privileges.php:1928 server_privileges.php:1958 +#: libraries/replication_gui.lib.php:346 server_privileges.php:718 +#: server_privileges.php:785 server_privileges.php:809 +#: server_privileges.php:1948 server_privileges.php:1978 msgid "Use text field" msgstr "テキストフィールドの値を利用する" -#: libraries/replication_gui.lib.php:302 server_privileges.php:764 +#: libraries/replication_gui.lib.php:302 server_privileges.php:765 msgid "Any host" msgstr "すべてのホスト" -#: libraries/replication_gui.lib.php:306 server_privileges.php:768 +#: libraries/replication_gui.lib.php:306 server_privileges.php:769 msgid "Local" msgstr "ローカル" -#: libraries/replication_gui.lib.php:312 server_privileges.php:773 +#: libraries/replication_gui.lib.php:312 server_privileges.php:774 msgid "This Host" msgstr "このホスト" -#: libraries/replication_gui.lib.php:318 server_privileges.php:779 +#: libraries/replication_gui.lib.php:318 server_privileges.php:780 msgid "Use Host Table" msgstr "ホストテーブルを使う" -#: libraries/replication_gui.lib.php:331 server_privileges.php:792 +#: libraries/replication_gui.lib.php:331 server_privileges.php:793 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -3636,29 +3681,29 @@ msgstr "言語ファイルが登録されていません: %1$s" msgid "Servers" msgstr "サーバ" -#: libraries/server_links.inc.php:53 server_engines.php:112 +#: libraries/server_links.inc.php:54 server_engines.php:112 #: server_engines.php:116 server_status.php:415 test/theme.php:105 msgid "Variables" msgstr "変数" -#: libraries/server_links.inc.php:57 test/theme.php:109 +#: libraries/server_links.inc.php:58 test/theme.php:109 msgid "Charsets" msgstr "文字セット" -#: libraries/server_links.inc.php:61 test/theme.php:113 +#: libraries/server_links.inc.php:62 test/theme.php:113 msgid "Engines" msgstr "エンジン" -#: libraries/server_links.inc.php:76 server_binlog.php:110 +#: libraries/server_links.inc.php:77 server_binlog.php:110 #: server_status.php:364 test/theme.php:121 msgid "Binary log" msgstr "バイナリログ" -#: libraries/server_links.inc.php:80 +#: libraries/server_links.inc.php:81 msgid "Processes" msgstr "プロセス" -#: libraries/server_links.inc.php:92 server_synchronize.php:1092 +#: libraries/server_links.inc.php:93 server_synchronize.php:1092 #: server_synchronize.php:1100 msgid "Synchronize" msgstr "" @@ -3904,13 +3949,13 @@ msgstr "パーティションの定義" msgid "Save" msgstr "保存する" -#: libraries/tbl_properties.inc.php:780 tbl_structure.php:542 +#: libraries/tbl_properties.inc.php:780 tbl_structure.php:540 #, fuzzy, php-format #| msgid "Add %s field(s)" msgid "Add %s column(s)" msgstr "%s 個のフィールドを追加する" -#: libraries/tbl_properties.inc.php:784 tbl_structure.php:536 +#: libraries/tbl_properties.inc.php:784 tbl_structure.php:534 #, fuzzy #| msgid "You have to add at least one field." msgid "You have to add at least one column." @@ -4122,8 +4167,8 @@ msgstr "リセット" msgid "Protocol version" msgstr "プロトコルバージョン" -#: main.php:189 server_privileges.php:1389 server_privileges.php:1536 -#: server_privileges.php:1650 server_privileges.php:2068 +#: main.php:189 server_privileges.php:1406 server_privileges.php:1556 +#: server_privileges.php:1670 server_privileges.php:2089 #: server_processlist.php:54 msgid "User" msgstr "ユーザ" @@ -4574,169 +4619,169 @@ msgstr "ストレージエンジン" msgid "View dump (schema) of databases" msgstr "データベースのダンプ(スキーマ)表示" -#: server_privileges.php:24 server_privileges.php:266 +#: server_privileges.php:25 server_privileges.php:267 msgid "Includes all privileges except GRANT." msgstr "GRANT 以外のすべての特権を付与する" -#: server_privileges.php:25 server_privileges.php:192 -#: server_privileges.php:515 +#: server_privileges.php:26 server_privileges.php:193 +#: server_privileges.php:516 msgid "Allows altering the structure of existing tables." msgstr "既存のテーブル構造の変更を許可する" -#: server_privileges.php:26 server_privileges.php:208 -#: server_privileges.php:521 +#: server_privileges.php:27 server_privileges.php:209 +#: server_privileges.php:522 msgid "Allows altering and dropping stored routines." msgstr "ストアドルーチンの修正と削除を許可する" -#: server_privileges.php:27 server_privileges.php:184 -#: server_privileges.php:514 +#: server_privileges.php:28 server_privileges.php:185 +#: server_privileges.php:515 msgid "Allows creating new databases and tables." msgstr "新しいデータベースやテーブルの作成を許可する" -#: server_privileges.php:28 server_privileges.php:207 -#: server_privileges.php:520 +#: server_privileges.php:29 server_privileges.php:208 +#: server_privileges.php:521 msgid "Allows creating stored routines." msgstr "ストアドルーチンの作成を許可する" -#: server_privileges.php:29 server_privileges.php:514 +#: server_privileges.php:30 server_privileges.php:515 msgid "Allows creating new tables." msgstr "新しいテーブルの作成を許可する" -#: server_privileges.php:30 server_privileges.php:195 -#: server_privileges.php:518 +#: server_privileges.php:31 server_privileges.php:196 +#: server_privileges.php:519 msgid "Allows creating temporary tables." msgstr "一時テーブルの作成を許可する" -#: server_privileges.php:31 server_privileges.php:209 -#: server_privileges.php:554 +#: server_privileges.php:32 server_privileges.php:210 +#: server_privileges.php:555 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 +#: server_privileges.php:33 server_privileges.php:200 +#: server_privileges.php:204 server_privileges.php:527 +#: server_privileges.php:531 msgid "Allows creating new views." msgstr "新しいビューの作成を許可する" -#: server_privileges.php:33 server_privileges.php:183 -#: server_privileges.php:506 +#: server_privileges.php:34 server_privileges.php:184 +#: server_privileges.php:507 msgid "Allows deleting data." msgstr "データの削除を許可する" -#: server_privileges.php:34 server_privileges.php:185 -#: server_privileges.php:517 +#: server_privileges.php:35 server_privileges.php:186 +#: server_privileges.php:518 msgid "Allows dropping databases and tables." msgstr "データベースとテーブルの削除を許可す" -#: server_privileges.php:35 server_privileges.php:517 +#: server_privileges.php:36 server_privileges.php:518 msgid "Allows dropping tables." msgstr "テーブルの削除を許可する" -#: server_privileges.php:36 server_privileges.php:200 -#: server_privileges.php:534 +#: server_privileges.php:37 server_privileges.php:201 +#: server_privileges.php:535 msgid "Allows to set up events for the event scheduler" msgstr "イベントスケジューラにイベントを設定できるようにする" -#: server_privileges.php:37 server_privileges.php:210 -#: server_privileges.php:522 +#: server_privileges.php:38 server_privileges.php:211 +#: server_privileges.php:523 msgid "Allows executing stored routines." msgstr "ストアドルーチンの実行を許可する" -#: server_privileges.php:38 server_privileges.php:189 -#: server_privileges.php:509 +#: server_privileges.php:39 server_privileges.php:190 +#: server_privileges.php:510 msgid "Allows importing data from and exporting data into files." msgstr "データのインポート、エクスポートを許可する" -#: server_privileges.php:39 server_privileges.php:540 +#: server_privileges.php:40 server_privileges.php:541 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "特権テーブルのリロードなしのユーザ・特権の追加を許可する" -#: server_privileges.php:40 server_privileges.php:191 -#: server_privileges.php:516 +#: server_privileges.php:41 server_privileges.php:192 +#: server_privileges.php:517 msgid "Allows creating and dropping indexes." msgstr "インデックスの作成、削除を許可する" -#: server_privileges.php:41 server_privileges.php:181 -#: server_privileges.php:442 server_privileges.php:504 +#: server_privileges.php:42 server_privileges.php:182 +#: server_privileges.php:443 server_privileges.php:505 msgid "Allows inserting and replacing data." msgstr "データの挿入、置換を許可する" -#: server_privileges.php:42 server_privileges.php:196 -#: server_privileges.php:549 +#: server_privileges.php:43 server_privileges.php:197 +#: server_privileges.php:550 msgid "Allows locking tables for the current thread." msgstr "現在のスレッドのテーブルロックを許可する" -#: server_privileges.php:43 server_privileges.php:646 -#: server_privileges.php:648 +#: server_privileges.php:44 server_privileges.php:647 +#: server_privileges.php:649 msgid "Limits the number of new connections the user may open per hour." msgstr "単位時間内に可能な新規接続回数を制限する" -#: server_privileges.php:44 server_privileges.php:634 -#: server_privileges.php:636 +#: server_privileges.php:45 server_privileges.php:635 +#: server_privileges.php:637 msgid "Limits the number of queries the user may send to the server per hour." msgstr "単位時間内にサーバに送信可能なクエリ数を制限する" -#: server_privileges.php:45 server_privileges.php:640 -#: server_privileges.php:642 +#: server_privileges.php:46 server_privileges.php:641 +#: server_privileges.php:643 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." msgstr "" "単位時間内に実行可能なテーブルないしデータベースの編集コマンド数を制限する" -#: server_privileges.php:46 server_privileges.php:652 -#: server_privileges.php:654 +#: server_privileges.php:47 server_privileges.php:653 +#: server_privileges.php:655 msgid "Limits the number of simultaneous connections the user may have." msgstr "ユーザの同時接続数を制限する" -#: server_privileges.php:47 server_privileges.php:188 -#: server_privileges.php:544 +#: server_privileges.php:48 server_privileges.php:189 +#: server_privileges.php:545 msgid "Allows viewing processes of all users" msgstr "全ユーザのプロセスを閲覧できるようにする" -#: server_privileges.php:48 server_privileges.php:190 -#: server_privileges.php:448 server_privileges.php:550 +#: server_privileges.php:49 server_privileges.php:191 +#: server_privileges.php:449 server_privileges.php:551 msgid "Has no effect in this MySQL version." msgstr "このバージョンの MySQL では無効です" -#: server_privileges.php:49 server_privileges.php:186 -#: server_privileges.php:545 +#: server_privileges.php:50 server_privileges.php:187 +#: server_privileges.php:546 msgid "Allows reloading server settings and flushing the server's caches." msgstr "サーバ設定のリロード、サーバキャッシュのフラッシュを許可する" -#: server_privileges.php:50 server_privileges.php:198 -#: server_privileges.php:552 +#: server_privileges.php:51 server_privileges.php:199 +#: server_privileges.php:553 msgid "Allows the user to ask where the slaves / masters are." msgstr "スレーブ/マスターの照会を許可する" -#: server_privileges.php:51 server_privileges.php:197 -#: server_privileges.php:553 +#: server_privileges.php:52 server_privileges.php:198 +#: server_privileges.php:554 msgid "Needed for the replication slaves." msgstr "レプリケーションスレーブでは有効にする必要があります" -#: server_privileges.php:52 server_privileges.php:180 -#: server_privileges.php:439 server_privileges.php:503 +#: server_privileges.php:53 server_privileges.php:181 +#: server_privileges.php:440 server_privileges.php:504 msgid "Allows reading data." msgstr "データの読み込みを許可する" -#: server_privileges.php:53 server_privileges.php:193 -#: server_privileges.php:547 +#: server_privileges.php:54 server_privileges.php:194 +#: server_privileges.php:548 msgid "Gives access to the complete list of databases." msgstr "データベース総一覧へのアクセスを許可する" -#: server_privileges.php:54 server_privileges.php:204 -#: server_privileges.php:206 server_privileges.php:519 +#: server_privileges.php:55 server_privileges.php:205 +#: server_privileges.php:207 server_privileges.php:520 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "SHOW CREATE VIEW クエリの実行を許可する" -#: server_privileges.php:55 server_privileges.php:187 -#: server_privileges.php:546 +#: server_privileges.php:56 server_privileges.php:188 +#: server_privileges.php:547 msgid "Allows shutting down the server." msgstr "サーバのシャットダウンを許可する" -#: server_privileges.php:56 server_privileges.php:194 -#: server_privileges.php:543 +#: server_privileges.php:57 server_privileges.php:195 +#: server_privileges.php:544 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -4746,156 +4791,156 @@ msgstr "" "ザのスレッドを停止するといった管理操作をする場合はたいていこの設定が必要にな" "ります" -#: server_privileges.php:57 server_privileges.php:201 -#: server_privileges.php:535 +#: server_privileges.php:58 server_privileges.php:202 +#: server_privileges.php:536 msgid "Allows creating and dropping triggers" msgstr "トリガの作成・削除を許可する" -#: server_privileges.php:58 server_privileges.php:182 -#: server_privileges.php:445 server_privileges.php:505 +#: server_privileges.php:59 server_privileges.php:183 +#: server_privileges.php:446 server_privileges.php:506 msgid "Allows changing data." msgstr "データの修正を許可する" -#: server_privileges.php:59 server_privileges.php:260 +#: server_privileges.php:60 server_privileges.php:261 msgid "No privileges." msgstr "特権はありません" -#: server_privileges.php:302 server_privileges.php:303 +#: server_privileges.php:303 server_privileges.php:304 #, fuzzy #| msgid "None" msgctxt "None privileges" msgid "None" msgstr "なし" -#: server_privileges.php:431 server_privileges.php:566 -#: server_privileges.php:1718 server_privileges.php:1724 +#: server_privileges.php:432 server_privileges.php:567 +#: server_privileges.php:1738 server_privileges.php:1744 msgid "Table-specific privileges" msgstr "テーブル固有の特権" -#: server_privileges.php:432 server_privileges.php:574 -#: server_privileges.php:1540 +#: server_privileges.php:433 server_privileges.php:575 +#: server_privileges.php:1560 msgid " Note: MySQL privilege names are expressed in English " msgstr "注意: MySQL の特権名は英語で表示されます" -#: server_privileges.php:563 server_privileges.php:1539 +#: server_privileges.php:564 server_privileges.php:1559 msgid "Global privileges" msgstr "グローバル特権" -#: server_privileges.php:565 server_privileges.php:1718 +#: server_privileges.php:566 server_privileges.php:1738 msgid "Database-specific privileges" msgstr "データベースに固有の特権" -#: server_privileges.php:610 +#: server_privileges.php:611 msgid "Administration" msgstr "管理" -#: server_privileges.php:630 +#: server_privileges.php:631 msgid "Resource limits" msgstr "リソースの制限" -#: server_privileges.php:631 +#: server_privileges.php:632 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "注意: オプションを 0 (ゼロ)に設定すると制限を解除します" -#: server_privileges.php:708 +#: server_privileges.php:709 msgid "Login Information" msgstr "ログイン情報" -#: server_privileges.php:802 +#: server_privileges.php:803 msgid "Do not change the password" msgstr "パスワードは変更しない" -#: server_privileges.php:843 server_privileges.php:2205 +#: server_privileges.php:844 server_privileges.php:2226 #, fuzzy #| msgid "No user(s) found." msgid "No user found." msgstr "ユーザが存在しません" -#: server_privileges.php:887 +#: server_privileges.php:888 #, php-format msgid "The user %s already exists!" msgstr "ユーザ %s は既に存在します!" -#: server_privileges.php:970 +#: server_privileges.php:971 msgid "You have added a new user." msgstr "新しいユーザを追加しました" -#: server_privileges.php:1191 +#: server_privileges.php:1196 #, php-format msgid "You have updated the privileges for %s." msgstr "%s の特権を更新しました" -#: server_privileges.php:1215 +#: server_privileges.php:1220 #, php-format msgid "You have revoked the privileges for %s" msgstr "%s の特権を取り消しました" -#: server_privileges.php:1251 +#: server_privileges.php:1256 #, php-format msgid "The password for %s was changed successfully." msgstr "%s のパスワードは正しく変更されました" -#: server_privileges.php:1271 +#: server_privileges.php:1276 #, php-format msgid "Deleting %s" msgstr "%s を削除中です" -#: server_privileges.php:1282 +#: server_privileges.php:1287 msgid "No users selected for deleting!" msgstr "削除するユーザが選択されていません!" -#: server_privileges.php:1285 +#: server_privileges.php:1290 msgid "Reloading the privileges" msgstr "特権をリロードしています" -#: server_privileges.php:1300 +#: server_privileges.php:1305 msgid "The selected users have been deleted successfully." msgstr "選択したユーザを正しく削除しました" -#: server_privileges.php:1335 +#: server_privileges.php:1344 msgid "The privileges were reloaded successfully." msgstr "特権を正常にリロードしました" -#: server_privileges.php:1363 server_privileges.php:1649 +#: server_privileges.php:1380 server_privileges.php:1669 msgid "Edit Privileges" msgstr "特権を編集" -#: server_privileges.php:1372 +#: server_privileges.php:1389 msgid "Revoke" msgstr "取り消し" -#: server_privileges.php:1404 +#: server_privileges.php:1424 msgid "User overview" msgstr "ユーザ概略" -#: server_privileges.php:1541 server_privileges.php:1723 -#: server_privileges.php:2072 +#: server_privileges.php:1561 server_privileges.php:1743 +#: server_privileges.php:2093 msgid "Grant" msgstr "権限委譲" -#: server_privileges.php:1560 server_privileges.php:2162 +#: server_privileges.php:1580 server_privileges.php:2183 msgid "Any" msgstr "すべて" -#: server_privileges.php:1609 server_privileges.php:1633 -#: server_privileges.php:2027 server_privileges.php:2216 +#: server_privileges.php:1629 server_privileges.php:1653 +#: server_privileges.php:2048 server_privileges.php:2237 msgid "Add a new User" msgstr "新しいユーザを追加する" -#: server_privileges.php:1614 +#: server_privileges.php:1634 msgid "Remove selected users" msgstr "選択したユーザを削除する" -#: server_privileges.php:1617 +#: server_privileges.php:1637 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 +#: server_privileges.php:1638 server_privileges.php:1639 +#: server_privileges.php:1640 msgid "Drop the databases that have the same names as the users." msgstr "ユーザと同名のデータベースを削除する" -#: server_privileges.php:1636 +#: server_privileges.php:1656 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -4908,91 +4953,91 @@ msgstr "" "特権の内容が一致しなくなることがありますので、作業を続ける前に %s特権リロー" "ド%s をしてください" -#: server_privileges.php:1684 +#: server_privileges.php:1704 msgid "The selected user was not found in the privilege table." msgstr "特権テーブルには選択したユーザがいません" -#: server_privileges.php:1724 +#: server_privileges.php:1744 msgid "Column-specific privileges" msgstr "このカラムに固有の特権" -#: server_privileges.php:1925 +#: server_privileges.php:1945 msgid "Add privileges on the following database" msgstr "データベースに特権を追加" -#: server_privileges.php:1943 +#: server_privileges.php:1963 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" -#: server_privileges.php:1946 +#: server_privileges.php:1966 msgid "Add privileges on the following table" msgstr "テーブルに特権を追加" -#: server_privileges.php:2003 +#: server_privileges.php:2023 msgid "Change Login Information / Copy User" msgstr "ログイン情報の変更 / ユーザの複製" -#: server_privileges.php:2006 +#: server_privileges.php:2026 msgid "Create a new user with the same privileges and ..." msgstr "同じ特権を持つ新しいユーザを作る" -#: server_privileges.php:2008 +#: server_privileges.php:2028 msgid "... keep the old one." msgstr "元のユーザも残す" -#: server_privileges.php:2009 +#: server_privileges.php:2029 msgid " ... delete the old one from the user tables." msgstr "ユーザテーブルから元のユーザを削除する" -#: server_privileges.php:2010 +#: server_privileges.php:2030 msgid "" " ... revoke all active privileges from the old one and delete it afterwards." msgstr "元のユーザの特権をすべて無効にしてから削除する" -#: server_privileges.php:2011 +#: server_privileges.php:2031 msgid "" " ... delete the old one from the user tables and reload the privileges " "afterwards." msgstr "ユーザテーブルから元のユーザを削除し、特権をリロードする" -#: server_privileges.php:2033 +#: server_privileges.php:2054 msgid "Database for user" msgstr "ユーザ専用データベース" -#: server_privileges.php:2037 +#: server_privileges.php:2058 #, fuzzy #| msgid "None" msgctxt "Create none database for user" msgid "None" msgstr "なし" -#: server_privileges.php:2038 +#: server_privileges.php:2059 msgid "Create database with same name and grant all privileges" msgstr "同名のデータベースを作成してすべての特権を与える" -#: server_privileges.php:2039 +#: server_privileges.php:2060 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "ワイルドカード(ユーザ名_%)に該当するデータベースにすべての特権を与える" -#: server_privileges.php:2042 +#: server_privileges.php:2063 #, php-format msgid "Grant all privileges on database "%s"" msgstr "" -#: server_privileges.php:2065 +#: server_privileges.php:2086 #, php-format msgid "Users having access to "%s"" msgstr ""%s" にアクセスできるユーザ" -#: server_privileges.php:2173 +#: server_privileges.php:2194 msgid "global" msgstr "グローバル" -#: server_privileges.php:2175 +#: server_privileges.php:2196 msgid "database-specific" msgstr "データベース固有" -#: server_privileges.php:2177 +#: server_privileges.php:2198 msgid "wildcard" msgstr "ワイルドカード" @@ -7743,6 +7788,10 @@ msgstr "" msgid "Show insert query" msgstr "" +#: tbl_change.php:1143 +msgid "and then" +msgstr "続いて" + #: tbl_change.php:1147 msgid "Go back to previous page" msgstr "前のページに戻る" @@ -7825,7 +7874,7 @@ msgstr "" msgid "Add to index  %s column(s)" msgstr "インデックスに %s  の列を追加しました" -#: tbl_indexes.php:256 tbl_structure.php:589 tbl_structure.php:600 +#: tbl_indexes.php:256 tbl_structure.php:587 tbl_structure.php:598 msgid "Column count has to be larger than zero." msgstr "カラム数は 0 より大きくなければいけません" @@ -7939,39 +7988,39 @@ msgstr "参照整合性の確認:" msgid "Show tables" msgstr "テーブルを表示する" -#: tbl_printview.php:310 tbl_structure.php:656 +#: tbl_printview.php:310 tbl_structure.php:654 msgid "Space usage" msgstr "ディスク使用量" -#: tbl_printview.php:314 tbl_structure.php:660 +#: tbl_printview.php:314 tbl_structure.php:658 msgid "Usage" msgstr "使用量" -#: tbl_printview.php:341 tbl_structure.php:687 +#: tbl_printview.php:341 tbl_structure.php:685 msgid "Effective" msgstr "有効" -#: tbl_printview.php:366 tbl_structure.php:725 +#: tbl_printview.php:366 tbl_structure.php:723 msgid "Row Statistics" msgstr "行の統計" -#: tbl_printview.php:369 tbl_structure.php:728 +#: tbl_printview.php:369 tbl_structure.php:726 msgid "Statements" msgstr "ステートメント" -#: tbl_printview.php:380 tbl_structure.php:740 +#: tbl_printview.php:380 tbl_structure.php:738 msgid "static" msgstr "" -#: tbl_printview.php:382 tbl_structure.php:742 +#: tbl_printview.php:382 tbl_structure.php:740 msgid "dynamic" msgstr "動的" -#: tbl_printview.php:404 tbl_structure.php:785 +#: tbl_printview.php:404 tbl_structure.php:783 msgid "Row length" msgstr "行の長さ" -#: tbl_printview.php:414 tbl_structure.php:793 +#: tbl_printview.php:414 tbl_structure.php:791 msgid " Row size " msgstr " 行のサイズ " @@ -8046,50 +8095,50 @@ msgstr "なし" msgid "Column %s has been dropped" msgstr "テーブル %s を削除しました" -#: tbl_structure.php:385 +#: tbl_structure.php:384 #, php-format msgid "A primary key has been added on %s" msgstr "%s に主キーを追加しました" -#: tbl_structure.php:400 tbl_structure.php:414 tbl_structure.php:428 +#: tbl_structure.php:398 tbl_structure.php:412 tbl_structure.php:426 #, php-format msgid "An index has been added on %s" msgstr "%s にインデックスを追加しました" -#: tbl_structure.php:506 tbl_structure.php:508 +#: tbl_structure.php:504 tbl_structure.php:506 msgid "Relation view" msgstr "リレーションビュー" -#: tbl_structure.php:515 tbl_structure.php:517 +#: tbl_structure.php:513 tbl_structure.php:515 msgid "Propose table structure" msgstr "テーブル構造を確認する" -#: tbl_structure.php:540 +#: tbl_structure.php:538 #, fuzzy #| msgid "Add %s field(s)" msgid "Add column" msgstr "%s 個のフィールドを追加する" -#: tbl_structure.php:554 +#: tbl_structure.php:552 msgid "At End of Table" msgstr "テーブルの末尾" -#: tbl_structure.php:555 +#: tbl_structure.php:553 msgid "At Beginning of Table" msgstr "テーブルの先頭" -#: tbl_structure.php:556 +#: tbl_structure.php:554 #, php-format msgid "After %s" msgstr "指定カラムの後に %s" -#: tbl_structure.php:594 +#: tbl_structure.php:592 #, fuzzy, php-format #| msgid "Create an index on %s columns" msgid "Create an index on  %s columns" msgstr " %s  のカラムにインデックスを作成する" -#: tbl_structure.php:756 +#: tbl_structure.php:754 msgid "partitioned" msgstr "パーティション有り" @@ -8502,9 +8551,6 @@ msgstr "" #~ msgid "Process list" #~ msgstr "プロセス一覧" -#~ msgid "Reload privileges" -#~ msgstr "特権をリロードする" - #~ msgid "" #~ "The users will still have the USAGE privilege until the privileges are " #~ "reloaded." diff --git a/po/ka.po b/po/ka.po index 61a1a0f4d..19c044bce 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-13 09:03-0400\n" +"POT-Creation-Date: 2010-06-22 00:55+0530\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:1514 +#: libraries/display_tbl.lib.php:417 server_privileges.php:1534 msgid "Show all" msgstr "ყველას ჩვენება" -#: browse_foreigners.php:82 libraries/common.lib.php:2313 +#: browse_foreigners.php:82 libraries/common.lib.php:2317 #: 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,18 +37,18 @@ 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:2831 -#: libraries/common.lib.php:2838 libraries/db_links.inc.php:75 +#: db_structure.php:106 libraries/common.lib.php:2835 +#: libraries/common.lib.php:2842 libraries/db_links.inc.php:75 #: libraries/tbl_links.inc.php:63 msgid "Search" msgstr "ძებნა" -#: browse_foreigners.php:153 db_operations.php:385 db_operations.php:429 -#: db_operations.php:499 db_operations.php:609 db_search.php:362 -#: db_structure.php:567 js/messages.php:48 libraries/Config.class.php:1046 +#: browse_foreigners.php:153 db_operations.php:394 db_operations.php:438 +#: db_operations.php:508 db_operations.php:618 db_search.php:362 +#: db_structure.php:565 js/messages.php:53 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:1335 libraries/common.lib.php:2288 +#: libraries/common.lib.php:1335 libraries/common.lib.php:2292 #: 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,15 +59,15 @@ 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:664 server_privileges.php:1624 -#: server_privileges.php:1971 server_privileges.php:2018 -#: server_privileges.php:2057 server_replication.php:235 +#: server_privileges.php:665 server_privileges.php:1644 +#: server_privileges.php:1991 server_privileges.php:2038 +#: server_privileges.php:2078 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 #: tbl_operations.php:302 tbl_operations.php:499 tbl_operations.php:561 -#: tbl_operations.php:681 tbl_select.php:327 tbl_structure.php:562 -#: tbl_structure.php:597 tbl_tracking.php:395 tbl_tracking.php:512 +#: tbl_operations.php:681 tbl_select.php:327 tbl_structure.php:560 +#: tbl_structure.php:595 tbl_tracking.php:395 tbl_tracking.php:512 #: view_create.php:182 view_operations.php:101 msgid "Go" msgstr "გადასვლა" @@ -93,7 +93,7 @@ msgstr "გამოიყენე ეს ველი" msgid "Database %1$s has been created." msgstr "შეიქმნა მონაცემთა ბაზა %1$s." -#: db_datadict.php:49 db_operations.php:378 +#: db_datadict.php:49 db_operations.php:387 msgid "Database comment: " msgstr "მონაცემთა ბაზის კომენტარი: " @@ -120,10 +120,10 @@ 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:2070 +#: pdf_schema.php:1263 pdf_schema.php:1284 server_privileges.php:2091 #: 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 +#: tbl_structure.php:657 tbl_tracking.php:274 tbl_tracking.php:321 msgid "Type" msgstr "ტიპი" @@ -136,7 +136,7 @@ msgstr "ტიპი" msgid "Null" msgstr "ნული" -#: db_datadict.php:178 db_structure.php:501 libraries/export/htmlword.php:247 +#: db_datadict.php:178 db_structure.php:499 libraries/export/htmlword.php:247 #: libraries/export/latex.php:360 libraries/export/odt.php:303 #: libraries/export/texytext.php:236 libraries/tbl_properties.inc.php:106 #: pdf_schema.php:1266 pdf_schema.php:1287 tbl_printview.php:146 @@ -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: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 +#: pdf_schema.php:1344 server_privileges.php:1588 server_privileges.php:1599 +#: server_privileges.php:1909 server_privileges.php:1914 +#: server_privileges.php:2208 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:1565 -#: server_privileges.php:1579 server_privileges.php:1889 -#: server_privileges.php:1892 server_privileges.php:2187 sql.php:193 +#: server_databases.php:64 server_privileges.php:1585 +#: server_privileges.php:1599 server_privileges.php:1909 +#: server_privileges.php:1912 server_privileges.php:2208 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" @@ -209,125 +209,121 @@ msgstr "ყველას მონიშნვა" msgid "Unselect All" msgstr "მონიშნვის მოხსნა" -#: db_operations.php:38 tbl_create.php:54 +#: db_operations.php:43 tbl_create.php:54 msgid "The database name is empty!" msgstr "მონაცემთა ბაზა ცარიელია!" -#: db_operations.php:236 +#: db_operations.php:241 #, php-format msgid "Database %s has been renamed to %s" msgstr "Database %s has been renamed to %s" -#: db_operations.php:240 +#: db_operations.php:245 #, php-format msgid "Database %s has been copied to %s" msgstr "Database %s has been copied to %s" -#: db_operations.php:412 +#: db_operations.php:421 msgid "Rename database to" msgstr "Rename database to" -#: db_operations.php:417 server_processlist.php:57 +#: db_operations.php:426 server_processlist.php:57 msgid "Command" msgstr "ბრძანება" -#: db_operations.php:429 tbl_change.php:1143 -msgid "and then" -msgstr "და შემდეგ" - -#: db_operations.php:455 +#: db_operations.php:464 msgid "Copy database to" msgstr "Copy database to" -#: db_operations.php:462 tbl_operations.php:528 tbl_tracking.php:388 +#: db_operations.php:471 tbl_operations.php:528 tbl_tracking.php:388 msgid "Structure only" msgstr "მხოლოდ სტრუქტურა" -#: db_operations.php:463 tbl_operations.php:529 tbl_tracking.php:390 +#: db_operations.php:472 tbl_operations.php:529 tbl_tracking.php:390 msgid "Structure and data" msgstr "სტრუქტურა და მონაცემები" -#: db_operations.php:464 tbl_operations.php:530 tbl_tracking.php:389 +#: db_operations.php:473 tbl_operations.php:530 tbl_tracking.php:389 msgid "Data only" msgstr "მხოლოდ მონაცემები" -#: db_operations.php:472 +#: db_operations.php:481 msgid "CREATE DATABASE before copying" msgstr "CREATE DATABASE before copying" -#: db_operations.php:475 libraries/export/sql.php:52 +#: db_operations.php:484 libraries/export/sql.php:52 #: libraries/export/sql.php:74 libraries/export/sql.php:76 #: libraries/export/sql.php:82 tbl_operations.php:536 #, php-format msgid "Add %s" msgstr "Add %s" -#: db_operations.php:479 libraries/export/sql.php:78 tbl_operations.php:299 +#: db_operations.php:488 libraries/export/sql.php:78 tbl_operations.php:299 #: tbl_operations.php:538 msgid "Add AUTO_INCREMENT value" msgstr "Add AUTO_INCREMENT value" -#: db_operations.php:483 tbl_operations.php:545 +#: db_operations.php:492 tbl_operations.php:545 msgid "Add constraints" msgstr "Add constraints" -#: db_operations.php:496 +#: db_operations.php:505 msgid "Switch to copied database" msgstr "Switch to copied database" -#: db_operations.php:537 +#: db_operations.php:546 msgid "BLOB Repository" msgstr "BLOB რეპოზიტორია" -#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1352 -#: libraries/server_links.inc.php:49 server_processlist.php:59 +#: db_operations.php:549 db_tracking.php:76 libraries/common.lib.php:1352 +#: libraries/server_links.inc.php:50 server_processlist.php:59 #: tbl_tracking.php:596 test/theme.php:101 msgid "Status" msgstr "მდგომარეობა" -#: db_operations.php:548 +#: db_operations.php:557 #, fuzzy #| msgid "Enabled" msgctxt "BLOB repository" msgid "Enabled" msgstr "ჩართულია" -#: db_operations.php:552 +#: db_operations.php:561 msgid "Disable" msgstr "გათიშვა" -#: db_operations.php:562 +#: db_operations.php:571 msgid "Damaged" msgstr "დაზიანებული" -#: db_operations.php:566 +#: db_operations.php:575 #, fuzzy #| msgid "Repair" msgctxt "BLOB repository" msgid "Repair" msgstr "აღდგენა" -#: db_operations.php:574 +#: db_operations.php:583 #, fuzzy #| msgid "Disabled" msgctxt "BLOB repository" msgid "Disabled" msgstr "გათიშულია" -#: db_operations.php:578 +#: db_operations.php:587 msgid "Enable" msgstr "ჩართვა" -#: db_operations.php:602 libraries/Index.class.php:448 +#: db_operations.php:611 libraries/Index.class.php:448 #: libraries/db_structure.lib.php:62 libraries/mysql_charsets.lib.php:107 #: libraries/tbl_properties.inc.php:107 libraries/tbl_properties.inc.php:730 #: server_collations.php:54 server_collations.php:66 server_databases.php:111 #: tbl_operations.php:363 tbl_select.php:137 tbl_structure.php:179 -#: tbl_structure.php:767 tbl_tracking.php:275 tbl_tracking.php:326 +#: tbl_structure.php:765 tbl_tracking.php:275 tbl_tracking.php:326 msgid "Collation" msgstr "კოლაცია" -#: db_operations.php:615 main.php:316 pdf_schema.php:34 +#: db_operations.php:624 main.php:316 pdf_schema.php:34 #, php-format msgid "" "The additional features for working with linked tables have been " @@ -336,14 +332,14 @@ msgstr "" "The additional features for working with linked tables have been " "deactivated. To find out why click %shere%s." -#: db_operations.php:648 +#: db_operations.php:657 msgid "Edit PDF Pages" 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:1665 -#: server_privileges.php:1721 server_privileges.php:1985 +#: libraries/header.inc.php:130 pdf_pages.php:424 server_privileges.php:1685 +#: server_privileges.php:1741 server_privileges.php:2005 #: server_synchronize.php:423 server_synchronize.php:866 tbl_tracking.php:592 #: test/theme.php:75 msgid "Table" @@ -352,7 +348,7 @@ msgstr "ცხრილი" #: db_printview.php:105 libraries/db_structure.lib.php:56 #: libraries/header_printview.inc.php:63 libraries/import.lib.php:146 #: navigation.php:638 navigation.php:660 server_databases.php:122 -#: tbl_printview.php:394 tbl_structure.php:365 tbl_structure.php:777 +#: tbl_printview.php:394 tbl_structure.php:365 tbl_structure.php:775 msgid "Rows" msgstr "სტრიქონები" @@ -360,30 +356,30 @@ msgstr "სტრიქონები" msgid "Size" msgstr "ზომა" -#: db_printview.php:162 db_structure.php:457 libraries/export/sql.php:559 +#: db_printview.php:162 db_structure.php:455 libraries/export/sql.php:559 #: libraries/export/sql.php:899 msgid "in use" msgstr "in use" #: db_printview.php:187 libraries/db_info.inc.php:88 #: libraries/export/sql.php:514 pdf_schema.php:1241 tbl_printview.php:434 -#: tbl_structure.php:809 +#: tbl_structure.php:807 msgid "Creation" msgstr "შეიქმნა" #: db_printview.php:196 libraries/db_info.inc.php:93 #: libraries/export/sql.php:519 pdf_schema.php:1246 tbl_printview.php:444 -#: tbl_structure.php:817 +#: tbl_structure.php:815 msgid "Last update" msgstr "უკანასკნელი განახლება" #: db_printview.php:205 libraries/db_info.inc.php:98 #: libraries/export/sql.php:524 pdf_schema.php:1251 tbl_printview.php:454 -#: tbl_structure.php:825 +#: tbl_structure.php:823 msgid "Last check" msgstr "Last check" -#: db_printview.php:222 db_structure.php:480 +#: db_printview.php:222 db_structure.php:478 #, fuzzy, php-format #| msgid "%s table(s)" msgid "%s table" @@ -444,7 +440,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:297 tbl_change.php:1031 tbl_indexes.php:250 +#: server_privileges.php:298 tbl_change.php:1031 tbl_indexes.php:250 #: tbl_select.php:288 msgid "Or" msgstr "ან" @@ -517,9 +513,9 @@ 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:2833 +#: db_structure.php:105 libraries/common.lib.php:2837 #: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50 -#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:467 +#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:465 msgid "Browse" msgstr "არჩევა" @@ -564,36 +560,36 @@ 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:2832 libraries/sql_query_form.lib.php:334 +#: libraries/common.lib.php:2836 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:2829 libraries/common.lib.php:2836 +#: libraries/common.lib.php:2833 libraries/common.lib.php:2840 #: 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:1106 #: libraries/tbl_links.inc.php:56 pmd_general.php:134 -#: server_privileges.php:593 server_replication.php:315 tbl_tracking.php:269 +#: server_privileges.php:594 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:1656 +#: db_structure.php:543 db_structure.php:544 db_tracking.php:91 +#: libraries/Index.class.php:483 libraries/common.lib.php:1657 #: 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 -#: tbl_structure.php:152 tbl_structure.php:471 +#: tbl_structure.php:152 tbl_structure.php:469 msgid "Drop" 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:1655 +#: db_structure.php:541 db_structure.php:542 libraries/common.lib.php:1656 #: libraries/mult_submits.inc.php:39 libraries/tbl_links.inc.php:105 msgid "Empty" msgstr "ცარიელი" @@ -603,25 +599,25 @@ msgstr "ცარიელი" msgid "Table %s has been emptied" msgstr "Table %s has been emptied" -#: db_structure.php:326 libraries/tbl_links.inc.php:133 +#: db_structure.php:325 libraries/tbl_links.inc.php:133 #, php-format msgid "View %s has been dropped" msgstr "View %s has been dropped" -#: db_structure.php:326 libraries/tbl_links.inc.php:133 +#: db_structure.php:325 libraries/tbl_links.inc.php:133 #, php-format msgid "Table %s has been dropped" msgstr "Table %s has been dropped" -#: db_structure.php:333 +#: db_structure.php:332 msgid "Tracking is active." msgstr "" -#: db_structure.php:335 +#: db_structure.php:334 msgid "Tracking is not active." msgstr "" -#: db_structure.php:420 libraries/display_tbl.lib.php:1944 +#: db_structure.php:418 libraries/display_tbl.lib.php:1944 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation%" @@ -630,86 +626,86 @@ msgstr "" "This view has at least this number of rows. Please refer to %sdocumentation%" "s." -#: db_structure.php:434 db_structure.php:448 libraries/header.inc.php:126 +#: db_structure.php:432 db_structure.php:446 libraries/header.inc.php:130 #: libraries/tbl_info.inc.php:66 tbl_structure.php:185 test/theme.php:74 msgid "View" msgstr "ხედო" -#: db_structure.php:485 libraries/db_structure.lib.php:49 -#: libraries/server_links.inc.php:70 server_replication.php:33 +#: db_structure.php:483 libraries/db_structure.lib.php:49 +#: libraries/server_links.inc.php:71 server_replication.php:33 #: server_replication.php:164 server_status.php:369 msgid "Replication" msgstr "რეპლიკაცია" -#: db_structure.php:489 +#: db_structure.php:487 msgid "Sum" msgstr "ჯამი" -#: db_structure.php:496 libraries/StorageEngine.class.php:356 +#: db_structure.php:494 libraries/StorageEngine.class.php:356 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "%s is the default storage engine on this MySQL server." -#: db_structure.php:524 db_structure.php:541 db_structure.php:542 +#: db_structure.php:522 db_structure.php:539 db_structure.php:540 #: 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:1596 tbl_structure.php:455 -#: tbl_structure.php:464 +#: server_databases.php:351 server_privileges.php:1616 tbl_structure.php:453 +#: tbl_structure.php:462 msgid "With selected:" msgstr "With selected:" -#: db_structure.php:527 libraries/display_tbl.lib.php:2076 -#: server_databases.php:348 server_privileges.php:569 -#: server_privileges.php:1599 tbl_structure.php:458 +#: db_structure.php:525 libraries/display_tbl.lib.php:2076 +#: server_databases.php:348 server_privileges.php:570 +#: server_privileges.php:1619 tbl_structure.php:456 msgid "Check All" msgstr "ყველას შემოწმება" -#: db_structure.php:531 libraries/display_tbl.lib.php:2077 +#: db_structure.php:529 libraries/display_tbl.lib.php:2077 #: libraries/replication_gui.lib.php:33 server_databases.php:350 -#: server_privileges.php:572 server_privileges.php:1603 tbl_structure.php:462 +#: server_privileges.php:573 server_privileges.php:1623 tbl_structure.php:460 msgid "Uncheck All" msgstr "მონიშნვის მოხსნა ყველასთვის" -#: db_structure.php:536 +#: db_structure.php:534 msgid "Check tables having overhead" msgstr "Check tables having overhead" -#: db_structure.php:547 db_structure.php:548 db_structure.php:599 +#: db_structure.php:545 db_structure.php:546 db_structure.php:597 #: libraries/display_tbl.lib.php:2180 libraries/mult_submits.inc.php:28 -#: tbl_structure.php:492 tbl_structure.php:494 +#: tbl_structure.php:490 tbl_structure.php:492 msgid "Print view" msgstr "ხედის ამობეჭდვა" -#: db_structure.php:549 db_structure.php:550 libraries/mult_submits.inc.php:42 +#: db_structure.php:547 db_structure.php:548 libraries/mult_submits.inc.php:42 #: tbl_operations.php:581 msgid "Check table" msgstr "ცხრილის შემოწმება" -#: db_structure.php:551 db_structure.php:552 libraries/mult_submits.inc.php:47 -#: tbl_operations.php:621 tbl_structure.php:709 tbl_structure.php:711 +#: db_structure.php:549 db_structure.php:550 libraries/mult_submits.inc.php:47 +#: tbl_operations.php:621 tbl_structure.php:707 tbl_structure.php:709 msgid "Optimize table" msgstr "ცხრილის ოპტიმიზება" -#: db_structure.php:553 db_structure.php:554 libraries/mult_submits.inc.php:52 +#: db_structure.php:551 db_structure.php:552 libraries/mult_submits.inc.php:52 #: tbl_operations.php:611 msgid "Repair table" msgstr "ცხრილის აღდგენა" -#: db_structure.php:555 db_structure.php:556 libraries/mult_submits.inc.php:57 +#: db_structure.php:553 db_structure.php:554 libraries/mult_submits.inc.php:57 #: tbl_operations.php:601 msgid "Analyze table" msgstr "Analyze table" -#: db_structure.php:557 db_structure.php:558 libraries/db_links.inc.php:71 +#: db_structure.php:555 db_structure.php:556 libraries/db_links.inc.php:71 #: 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:1380 +#: libraries/server_links.inc.php:85 libraries/tbl_links.inc.php:82 +#: pmd_pdf.php:84 pmd_pdf.php:109 server_privileges.php:1397 #: setup/frames/menu.inc.php:22 tbl_row_action.php:59 msgid "Export" msgstr "ექსპორტი" -#: db_structure.php:606 libraries/display_pdf_schema.lib.php:44 +#: db_structure.php:604 libraries/display_pdf_schema.lib.php:44 msgid "Data Dictionary" msgstr "მონაცემების ლექსიკონი" @@ -721,10 +717,10 @@ msgstr "დაბლოკილი ცხრილების გამოტ #: db_tracking.php:71 libraries/export/htmlword.php:86 #: libraries/export/latex.php:148 libraries/export/odt.php:113 #: libraries/export/sql.php:342 libraries/export/texytext.php:84 -#: libraries/export/xml.php:255 libraries/header.inc.php:106 +#: libraries/export/xml.php:255 libraries/header.inc.php:110 #: libraries/header_printview.inc.php:58 server_databases.php:169 -#: server_privileges.php:1660 server_privileges.php:1721 -#: server_privileges.php:1979 server_processlist.php:56 +#: server_privileges.php:1680 server_privileges.php:1741 +#: server_privileges.php:1999 server_processlist.php:56 #: server_synchronize.php:1179 server_synchronize.php:1183 #: tbl_tracking.php:591 test/theme.php:65 msgid "Database" @@ -746,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:1542 server_privileges.php:1725 -#: server_privileges.php:2073 tbl_structure.php:187 +#: server_privileges.php:1562 server_privileges.php:1745 +#: server_privileges.php:2094 tbl_structure.php:187 msgid "Action" msgstr "მოქმედება" @@ -784,8 +780,8 @@ msgstr "მხოლოდ სტრუქტურა" msgid "Untracked tables" msgstr "დაბლოკილი ცხრილების გამოტოვება" -#: db_tracking.php:172 db_tracking.php:174 tbl_structure.php:528 -#: tbl_structure.php:530 +#: db_tracking.php:172 db_tracking.php:174 tbl_structure.php:526 +#: tbl_structure.php:528 #, fuzzy msgid "Track table" msgstr "ცხრილის შემოწმება" @@ -951,187 +947,235 @@ msgstr "ჰოსტის სახელი არაა შეყვანი msgid "The user name is empty!" msgstr "მომხმარებლის სახელი ცარიელია!" -#: js/messages.php:44 server_privileges.php:1236 user_password.php:70 +#: js/messages.php:44 server_privileges.php:1241 user_password.php:70 msgid "The password is empty!" msgstr "პაროლი ცარიელია!" -#: js/messages.php:45 server_privileges.php:1234 user_password.php:73 +#: js/messages.php:45 server_privileges.php:1239 user_password.php:73 msgid "The passwords aren't the same!" msgstr "პაროლები არ ემთხვევა!" -#: js/messages.php:49 pmd_general.php:342 pmd_general.php:379 +#: js/messages.php:46 +#, fuzzy +#| msgid "Add a new User" +msgid "Add a New User" +msgstr "ახალი მომხმარებლის დამატება" + +#: js/messages.php:47 js/messages.php:54 pmd_general.php:342 +#: pmd_general.php:379 msgid "Cancel" msgstr "გაუქმება" -#: js/messages.php:52 pmd_save_pos.php:54 +#: js/messages.php:48 +#, fuzzy +msgid "Create User" +msgstr "Create relation" + +#: js/messages.php:49 +#, fuzzy +#| msgid "Reload privileges" +msgid "Reloading Privileges" +msgstr "პრივილეგიების გადატვირთვა" + +#: js/messages.php:50 +#, fuzzy +#| msgid "Remove selected users" +msgid "Removing Selected Users" +msgstr "Remove selected users" + +#: js/messages.php:57 +#, fuzzy +#| msgid "Load" +msgid "Loading" +msgstr "ჩატვირთვა" + +#: js/messages.php:58 +#, fuzzy +#| msgid "Processes" +msgid "Processing Request" +msgstr "პროცესები" + +#: js/messages.php:59 +msgid "Error in Processing Request" +msgstr "" + +#: js/messages.php:60 +msgid "Dropping Column" +msgstr "" + +#: js/messages.php:61 +msgid "Adding Primary Key" +msgstr "" + +#: js/messages.php:64 pmd_save_pos.php:54 msgid "Modifications have been saved" msgstr "ცვლილებები შენახულია" -#: js/messages.php:53 pmd_relation_upd.php:49 +#: js/messages.php:65 pmd_relation_upd.php:49 msgid "Relation deleted" msgstr "Relation deleted" -#: js/messages.php:54 pmd_relation_new.php:64 +#: js/messages.php:66 pmd_relation_new.php:64 msgid "FOREIGN KEY relation added" msgstr "FOREIGN KEY relation added" -#: js/messages.php:55 pmd_relation_new.php:86 +#: js/messages.php:67 pmd_relation_new.php:86 msgid "Internal relation added" msgstr "Internal relation added" -#: js/messages.php:56 pmd_relation_new.php:63 pmd_relation_new.php:88 +#: js/messages.php:68 pmd_relation_new.php:63 pmd_relation_new.php:88 msgid "Error: Relation not added." msgstr "Error: Relation not added." -#: js/messages.php:57 pmd_relation_new.php:31 +#: js/messages.php:69 pmd_relation_new.php:31 msgid "Error: relation already exists." msgstr "Error: relation already exists." -#: js/messages.php:58 +#: js/messages.php:70 msgid "Error saving coordinates for Designer." msgstr "Error saving coordinates for Designer." -#: js/messages.php:59 libraries/relation.lib.php:107 +#: js/messages.php:71 libraries/relation.lib.php:107 #: libraries/relation.lib.php:119 msgid "General relation features" msgstr "General relation features" -#: js/messages.php:59 libraries/relation.lib.php:101 +#: js/messages.php:71 libraries/relation.lib.php:101 #: libraries/relation.lib.php:108 msgid "Disabled" msgstr "გათიშულია" -#: js/messages.php:60 +#: js/messages.php:72 msgid "Select referenced key" msgstr "Select referenced key" -#: js/messages.php:61 +#: js/messages.php:73 msgid "Select Foreign Key" msgstr "Select Foreign Key" -#: js/messages.php:62 +#: js/messages.php:74 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 +#: js/messages.php:75 pmd_general.php:77 tbl_relation.php:548 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" msgstr "აირჩიეთ საჩვენებელი ველი" #. l10n: Display text for calendar close link -#: js/messages.php:73 +#: js/messages.php:85 #, fuzzy #| msgid "Donate" msgid "Done" msgstr "შემოწირულობა" #. l10n: Display text for previous month link in calendar -#: js/messages.php:75 +#: js/messages.php:87 #, fuzzy #| msgid "Previous" msgid "Prev" msgstr "წინა" #. l10n: Display text for next month link in calendar -#: js/messages.php:77 libraries/common.lib.php:2353 -#: libraries/common.lib.php:2356 libraries/display_tbl.lib.php:338 +#: js/messages.php:89 libraries/common.lib.php:2357 +#: libraries/common.lib.php:2360 libraries/display_tbl.lib.php:338 #: server_binlog.php:205 server_binlog.php:207 tbl_printview.php:424 -#: tbl_structure.php:801 +#: tbl_structure.php:799 msgid "Next" msgstr "შემდეგი" #. l10n: Display text for current month link in calendar -#: js/messages.php:79 +#: js/messages.php:91 #, fuzzy #| msgid "Total" msgid "Today" msgstr "სულ" -#: js/messages.php:82 +#: js/messages.php:94 #, fuzzy #| msgid "Binary" msgid "January" msgstr "ბინარული" -#: js/messages.php:83 +#: js/messages.php:95 msgid "February" msgstr "" -#: js/messages.php:84 +#: js/messages.php:96 #, fuzzy #| msgid "Mar" msgid "March" msgstr "მარ" -#: js/messages.php:85 +#: js/messages.php:97 #, fuzzy #| msgid "Apr" msgid "April" msgstr "აპრ" -#: js/messages.php:86 +#: js/messages.php:98 msgid "May" msgstr "მაი" -#: js/messages.php:87 +#: js/messages.php:99 #, fuzzy #| msgid "Jun" msgid "June" msgstr "ივნ" -#: js/messages.php:88 +#: js/messages.php:100 #, fuzzy #| msgid "Jul" msgid "July" msgstr "ივლ" -#: js/messages.php:89 +#: js/messages.php:101 #, fuzzy #| msgid "Aug" msgid "August" msgstr "აგვ" -#: js/messages.php:90 +#: js/messages.php:102 msgid "September" msgstr "" -#: js/messages.php:91 +#: js/messages.php:103 #, fuzzy #| msgid "Oct" msgid "October" msgstr "ოქტ" -#: js/messages.php:92 +#: js/messages.php:104 msgid "November" msgstr "" -#: js/messages.php:93 +#: js/messages.php:105 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:97 libraries/common.lib.php:1557 +#: js/messages.php:109 libraries/common.lib.php:1557 msgid "Jan" msgstr "იან" #. l10n: Short month name -#: js/messages.php:99 libraries/common.lib.php:1559 +#: js/messages.php:111 libraries/common.lib.php:1559 msgid "Feb" msgstr "თებ" #. l10n: Short month name -#: js/messages.php:101 libraries/common.lib.php:1561 +#: js/messages.php:113 libraries/common.lib.php:1561 msgid "Mar" msgstr "მარ" #. l10n: Short month name -#: js/messages.php:103 libraries/common.lib.php:1563 +#: js/messages.php:115 libraries/common.lib.php:1563 msgid "Apr" msgstr "აპრ" #. l10n: Short month name -#: js/messages.php:105 libraries/common.lib.php:1565 +#: js/messages.php:117 libraries/common.lib.php:1565 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1139,178 +1183,178 @@ msgid "May" msgstr "მაი" #. l10n: Short month name -#: js/messages.php:107 libraries/common.lib.php:1567 +#: js/messages.php:119 libraries/common.lib.php:1567 msgid "Jun" msgstr "ივნ" #. l10n: Short month name -#: js/messages.php:109 libraries/common.lib.php:1569 +#: js/messages.php:121 libraries/common.lib.php:1569 msgid "Jul" msgstr "ივლ" #. l10n: Short month name -#: js/messages.php:111 libraries/common.lib.php:1571 +#: js/messages.php:123 libraries/common.lib.php:1571 msgid "Aug" msgstr "აგვ" #. l10n: Short month name -#: js/messages.php:113 libraries/common.lib.php:1573 +#: js/messages.php:125 libraries/common.lib.php:1573 msgid "Sep" msgstr "სექ" #. l10n: Short month name -#: js/messages.php:115 libraries/common.lib.php:1575 +#: js/messages.php:127 libraries/common.lib.php:1575 msgid "Oct" msgstr "ოქტ" #. l10n: Short month name -#: js/messages.php:117 libraries/common.lib.php:1577 +#: js/messages.php:129 libraries/common.lib.php:1577 msgid "Nov" msgstr "ნოე" #. l10n: Short month name -#: js/messages.php:119 libraries/common.lib.php:1579 +#: js/messages.php:131 libraries/common.lib.php:1579 msgid "Dec" msgstr "დეკ" -#: js/messages.php:122 +#: js/messages.php:134 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "კვი" -#: js/messages.php:123 +#: js/messages.php:135 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "ორშ" -#: js/messages.php:124 +#: js/messages.php:136 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "სამ" -#: js/messages.php:125 +#: js/messages.php:137 msgid "Wednesday" msgstr "" -#: js/messages.php:126 +#: js/messages.php:138 msgid "Thursday" msgstr "" -#: js/messages.php:127 +#: js/messages.php:139 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "პარ" -#: js/messages.php:128 +#: js/messages.php:140 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:132 libraries/common.lib.php:1582 +#: js/messages.php:144 libraries/common.lib.php:1582 msgid "Sun" msgstr "კვი" #. l10n: Short week day name -#: js/messages.php:134 libraries/common.lib.php:1584 +#: js/messages.php:146 libraries/common.lib.php:1584 msgid "Mon" msgstr "ორშ" #. l10n: Short week day name -#: js/messages.php:136 libraries/common.lib.php:1586 +#: js/messages.php:148 libraries/common.lib.php:1586 msgid "Tue" msgstr "სამ" #. l10n: Short week day name -#: js/messages.php:138 libraries/common.lib.php:1588 +#: js/messages.php:150 libraries/common.lib.php:1588 msgid "Wed" msgstr "ოთხ" #. l10n: Short week day name -#: js/messages.php:140 libraries/common.lib.php:1590 +#: js/messages.php:152 libraries/common.lib.php:1590 msgid "Thu" msgstr "ხუთ" #. l10n: Short week day name -#: js/messages.php:142 libraries/common.lib.php:1592 +#: js/messages.php:154 libraries/common.lib.php:1592 msgid "Fri" msgstr "პარ" #. l10n: Short week day name -#: js/messages.php:144 libraries/common.lib.php:1594 +#: js/messages.php:156 libraries/common.lib.php:1594 msgid "Sat" msgstr "შაბ" #. l10n: Minimal week day name -#: js/messages.php:148 +#: js/messages.php:160 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "კვი" #. l10n: Minimal week day name -#: js/messages.php:150 +#: js/messages.php:162 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "ორშ" #. l10n: Minimal week day name -#: js/messages.php:152 +#: js/messages.php:164 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "სამ" #. l10n: Minimal week day name -#: js/messages.php:154 +#: js/messages.php:166 #, fuzzy #| msgid "Wed" msgid "We" msgstr "ოთხ" #. l10n: Minimal week day name -#: js/messages.php:156 +#: js/messages.php:168 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "ხუთ" #. l10n: Minimal week day name -#: js/messages.php:158 +#: js/messages.php:170 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "პარ" #. l10n: Minimal week day name -#: js/messages.php:160 +#: js/messages.php:172 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "შაბ" #. l10n: Column header for week of the year in calendar -#: js/messages.php:162 +#: js/messages.php:174 #, fuzzy #| msgid "Wiki" msgid "Wk" msgstr "ვიკი" -#: js/messages.php:164 +#: js/messages.php:176 msgid "Hour" msgstr "" -#: js/messages.php:165 +#: js/messages.php:177 #, fuzzy #| msgid "in use" msgid "Minute" msgstr "in use" -#: js/messages.php:166 +#: js/messages.php:178 #, fuzzy #| msgid "per second" msgid "Second" @@ -1372,7 +1416,7 @@ msgstr "ინდექსები" #: libraries/Index.class.php:444 libraries/mult_submits.inc.php:103 #: libraries/tbl_properties.inc.php:519 tbl_structure.php:33 -#: tbl_structure.php:155 tbl_structure.php:159 tbl_structure.php:474 +#: tbl_structure.php:155 tbl_structure.php:159 tbl_structure.php:472 #: tbl_tracking.php:322 msgid "Unique" msgstr "უნიკალური" @@ -1415,8 +1459,8 @@ msgstr "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " "removed." -#: libraries/List_Database.class.php:431 libraries/server_links.inc.php:41 -#: server_databases.php:88 server_privileges.php:1660 +#: libraries/List_Database.class.php:431 libraries/server_links.inc.php:42 +#: server_databases.php:88 server_privileges.php:1680 #: setup/lib/messages.inc.php:110 test/theme.php:93 msgid "Databases" msgstr "მონაცემთა ბაზები" @@ -1588,7 +1632,7 @@ msgstr "პაროლი:" msgid "Server Choice" msgstr "სერვერის არჩევა" -#: libraries/auth/cookie.auth.lib.php:320 libraries/header.inc.php:59 +#: libraries/auth/cookie.auth.lib.php:320 libraries/header.inc.php:63 msgid "Cookies must be enabled past this point." msgstr "Cookies must be enabled past this point." @@ -1668,7 +1712,7 @@ msgstr "" "Couldn't use the iconv, libiconv, or recode_string functions, although the " "necessary extensions appear to be loaded. Check your PHP configuration." -#: libraries/common.inc.php:583 +#: libraries/common.inc.php:587 msgid "" "phpMyAdmin was unable to read your configuration file!
This might " "happen if PHP finds a parse error in it or PHP cannot find the file.
If you receive a blank page, everything " "is fine." -#: libraries/common.inc.php:594 +#: libraries/common.inc.php:598 #, fuzzy, php-format #| msgid "Could not load default configuration from: \"%1$s\"" msgid "Could not load default configuration from: %1$s" msgstr "Could not load default configuration from: \"%1$s\"" -#: libraries/common.inc.php:599 +#: libraries/common.inc.php:603 msgid "" "The $cfg['PmaAbsoluteUri'] directive MUST be set in your " "configuration file!" @@ -1698,28 +1742,28 @@ msgstr "" "The $cfg['PmaAbsoluteUri'] directive MUST be set in your " "configuration file!" -#: libraries/common.inc.php:629 +#: libraries/common.inc.php:633 #, fuzzy, php-format #| msgid "Invalid server index: \"%s\"" msgid "Invalid server index: %s" msgstr "Invalid server index: \"%s\"" -#: libraries/common.inc.php:636 +#: libraries/common.inc.php:640 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "Invalid hostname for server %1$s. Please review your configuration." -#: libraries/common.inc.php:645 libraries/header.inc.php:96 +#: libraries/common.inc.php:649 libraries/header.inc.php:100 #: libraries/select_server.lib.php:41 libraries/select_server.lib.php:47 #: main.php:185 test/theme.php:57 msgid "Server" msgstr "სერვერი" -#: libraries/common.inc.php:823 +#: libraries/common.inc.php:827 msgid "Invalid authentication method set in configuration:" msgstr "Invalid authentication method set in configuration:" -#: libraries/common.inc.php:926 +#: libraries/common.inc.php:930 #, php-format msgid "You should upgrade to %s %s or later." msgstr "You should upgrade to %s %s or later." @@ -1853,45 +1897,45 @@ msgstr "." msgid "%B %d, %Y at %I:%M %p" msgstr "%B %d, %Y, %I:%M %p" -#: libraries/common.lib.php:1907 +#: libraries/common.lib.php:1911 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s დღე, %s საათი, %s წუთი და %s წამი" -#: libraries/common.lib.php:2322 libraries/common.lib.php:2325 +#: libraries/common.lib.php:2326 libraries/common.lib.php:2329 #: libraries/display_tbl.lib.php:290 server_status.php:719 msgid "Begin" msgstr "დასაწყისი" -#: libraries/common.lib.php:2323 libraries/common.lib.php:2326 +#: libraries/common.lib.php:2327 libraries/common.lib.php:2330 #: libraries/display_tbl.lib.php:291 server_binlog.php:168 #: server_binlog.php:170 msgid "Previous" msgstr "წინა" -#: libraries/common.lib.php:2354 libraries/common.lib.php:2357 +#: libraries/common.lib.php:2358 libraries/common.lib.php:2361 #: libraries/display_tbl.lib.php:353 msgid "End" msgstr "დასასრული" -#: libraries/common.lib.php:2430 +#: libraries/common.lib.php:2434 #, php-format msgid "Jump to database "%s"." msgstr "Jump to database "%s"." -#: libraries/common.lib.php:2450 +#: libraries/common.lib.php:2454 #, 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:2830 libraries/common.lib.php:2837 +#: libraries/common.lib.php:2834 libraries/common.lib.php:2841 #: libraries/db_links.inc.php:68 libraries/export/sql.php:25 -#: libraries/import/sql.php:18 libraries/server_links.inc.php:45 +#: libraries/import/sql.php:18 libraries/server_links.inc.php:46 #: libraries/tbl_links.inc.php:60 querywindow.php:99 test/theme.php:97 msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2839 libraries/db_links.inc.php:104 +#: libraries/common.lib.php:2843 libraries/db_links.inc.php:104 #: libraries/tbl_links.inc.php:95 libraries/tbl_links.inc.php:117 #: view_operations.php:89 msgid "Operations" @@ -1940,15 +1984,15 @@ msgstr "მოთხოვნა" msgid "Designer" msgstr "შემქნელი" -#: libraries/db_links.inc.php:98 libraries/server_links.inc.php:88 +#: libraries/db_links.inc.php:98 libraries/server_links.inc.php:89 #: libraries/tbl_links.inc.php:91 pmd_pdf.php:84 pmd_pdf.php:110 #: setup/frames/menu.inc.php:21 msgid "Import" msgstr "შემოტანა" -#: libraries/db_links.inc.php:111 libraries/server_links.inc.php:66 -#: server_privileges.php:111 server_privileges.php:1722 -#: server_privileges.php:2071 test/theme.php:117 +#: libraries/db_links.inc.php:111 libraries/server_links.inc.php:67 +#: server_privileges.php:112 server_privileges.php:1742 +#: server_privileges.php:2092 test/theme.php:117 msgid "Privileges" msgstr "პრივილეგიები" @@ -1969,7 +2013,7 @@ msgstr "" "html#faq3_11@Documentation]FAQ 3.11[/a]" #: libraries/db_structure.lib.php:69 server_databases.php:142 -#: tbl_printview.php:336 tbl_structure.php:682 +#: tbl_printview.php:336 tbl_structure.php:680 msgid "Overhead" msgstr "Overhead" @@ -1986,7 +2030,7 @@ msgstr "სერვერი არ პასუხობს" msgid "(or the local MySQL server's socket is not correctly configured)" msgstr "(or the local MySQL server's socket is not correctly configured)" -#: libraries/dbi/mysql.dbi.lib.php:362 tbl_structure.php:608 +#: libraries/dbi/mysql.dbi.lib.php:362 tbl_structure.php:606 msgid "Details..." msgstr "დეტალები..." @@ -1996,22 +2040,22 @@ msgid "Change password" msgstr "პაროლის შეცვლა" #: libraries/display_change_password.lib.php:35 -#: libraries/replication_gui.lib.php:345 server_privileges.php:807 +#: libraries/replication_gui.lib.php:345 server_privileges.php:808 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:796 -#: server_privileges.php:800 server_privileges.php:811 -#: server_privileges.php:1538 server_synchronize.php:1175 +#: libraries/replication_gui.lib.php:349 server_privileges.php:797 +#: server_privileges.php:801 server_privileges.php:812 +#: server_privileges.php:1558 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:815 server_privileges.php:818 +#: server_privileges.php:816 server_privileges.php:819 msgid "Re-type" msgstr "Re-type" @@ -2026,12 +2070,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:822 +#: libraries/replication_gui.lib.php:360 server_privileges.php:823 msgid "Generate Password" msgstr "პაროლის დაგენერირება" #: libraries/display_change_password.lib.php:75 -#: libraries/replication_gui.lib.php:363 server_privileges.php:825 +#: libraries/replication_gui.lib.php:363 server_privileges.php:826 msgid "Generate" msgstr "დაგენერირება" @@ -2044,8 +2088,8 @@ msgstr "ახალი მონაცემთა ბაზის შექმ msgid "Create" msgstr "შექმნა" -#: libraries/display_create_database.lib.php:40 server_privileges.php:113 -#: server_privileges.php:1427 server_replication.php:35 +#: libraries/display_create_database.lib.php:40 server_privileges.php:114 +#: server_privileges.php:1447 server_replication.php:35 msgid "No Privileges" msgstr "პრივილეგიები არაა" @@ -2136,7 +2180,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:1875 server_processlist.php:75 +#: server_privileges.php:1895 server_processlist.php:75 msgid "None" msgstr "არაა" @@ -2326,7 +2370,7 @@ msgstr "Sort by key" #: libraries/import/docsql.php:34 libraries/import/ldi.php:47 #: libraries/import/ods.php:30 libraries/import/sql.php:20 #: libraries/import/xls.php:26 libraries/import/xlsx.php:26 -#: libraries/import/xml.php:25 tbl_select.php:267 tbl_structure.php:753 +#: libraries/import/xml.php:25 tbl_select.php:267 tbl_structure.php:751 msgid "Options" msgstr "პარამეტრები" @@ -2404,7 +2448,7 @@ msgstr "მოთხოვნას დასჭირდა %01.4f წმ" #: libraries/display_tbl.lib.php:2089 libraries/mult_submits.inc.php:113 #: querywindow.php:125 querywindow.php:129 querywindow.php:132 -#: tbl_structure.php:25 tbl_structure.php:150 tbl_structure.php:470 +#: tbl_structure.php:25 tbl_structure.php:150 tbl_structure.php:468 msgid "Change" msgstr "შეცვლა" @@ -2474,7 +2518,7 @@ msgstr "Buffer Pool Usage" #: libraries/engines/innodb.lib.php:194 server_databases.php:137 #: server_databases.php:305 server_status.php:525 server_status.php:586 -#: server_status.php:607 tbl_printview.php:351 tbl_structure.php:696 +#: server_status.php:607 tbl_printview.php:351 tbl_structure.php:694 msgid "Total" msgstr "სულ" @@ -2759,7 +2803,7 @@ msgstr "" "number." #: libraries/export/codegen.php:37 setup/lib/messages.inc.php:88 -#: tbl_printview.php:376 tbl_structure.php:737 +#: tbl_printview.php:376 tbl_structure.php:735 msgid "Format" msgstr "ფორმატი" @@ -2831,8 +2875,8 @@ 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:576 server_replication.php:316 tbl_printview.php:317 -#: tbl_structure.php:665 +#: server_privileges.php:577 server_replication.php:316 tbl_printview.php:317 +#: tbl_structure.php:663 msgid "Data" msgstr "მონაცემები" @@ -2881,9 +2925,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:731 -#: server_privileges.php:734 server_privileges.php:790 -#: server_privileges.php:1537 server_privileges.php:2069 +#: libraries/replication_gui.lib.php:329 server_privileges.php:732 +#: server_privileges.php:735 server_privileges.php:791 +#: server_privileges.php:1557 server_privileges.php:2090 #: server_processlist.php:55 server_synchronize.php:1159 msgid "Host" msgstr "ჰოსტი" @@ -3083,7 +3127,7 @@ msgstr "Export defaults" msgid "Open new phpMyAdmin window" msgstr "phpMyAdmin-ის ახალი ფანჯრის გახსნა" -#: libraries/header.inc.php:115 +#: libraries/header.inc.php:119 #, fuzzy msgid "New table" msgstr "ცხრილები არაა" @@ -3247,20 +3291,20 @@ 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 +#: tbl_structure.php:471 msgid "Primary" msgstr "პირველადი" #: libraries/mult_submits.inc.php:98 libraries/tbl_properties.inc.php:116 #: libraries/tbl_properties.inc.php:525 tbl_printview.php:326 #: tbl_structure.php:31 tbl_structure.php:154 tbl_structure.php:158 -#: tbl_structure.php:475 tbl_structure.php:673 +#: tbl_structure.php:473 tbl_structure.php:671 msgid "Index" msgstr "ინდექსი" #: libraries/mult_submits.inc.php:108 libraries/tbl_properties.inc.php:531 #: tbl_structure.php:35 tbl_structure.php:156 tbl_structure.php:160 -#: tbl_structure.php:478 +#: tbl_structure.php:476 msgid "Fulltext" msgstr "Fulltext" @@ -3563,8 +3607,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:711 -#: server_privileges.php:714 server_privileges.php:721 +#: libraries/replication_gui.lib.php:259 server_privileges.php:712 +#: server_privileges.php:715 server_privileges.php:722 #: server_synchronize.php:1171 msgid "User name" msgstr "მომხმარებლის სახელი" @@ -3591,7 +3635,7 @@ msgstr "ცვლადი" #: 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 +#: tbl_structure.php:727 msgid "Value" msgstr "მნიშვნელობა" @@ -3609,34 +3653,34 @@ msgstr "" msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:254 server_privileges.php:716 +#: libraries/replication_gui.lib.php:254 server_privileges.php:717 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:717 -#: server_privileges.php:784 server_privileges.php:808 -#: server_privileges.php:1928 server_privileges.php:1958 +#: libraries/replication_gui.lib.php:346 server_privileges.php:718 +#: server_privileges.php:785 server_privileges.php:809 +#: server_privileges.php:1948 server_privileges.php:1978 msgid "Use text field" msgstr "გამოიყენე ტექსტური ველი" -#: libraries/replication_gui.lib.php:302 server_privileges.php:764 +#: libraries/replication_gui.lib.php:302 server_privileges.php:765 msgid "Any host" msgstr "ნებისმიერი ჰოსტი" -#: libraries/replication_gui.lib.php:306 server_privileges.php:768 +#: libraries/replication_gui.lib.php:306 server_privileges.php:769 msgid "Local" msgstr "ლოკალური" -#: libraries/replication_gui.lib.php:312 server_privileges.php:773 +#: libraries/replication_gui.lib.php:312 server_privileges.php:774 msgid "This Host" msgstr "ეს ჰოსტი" -#: libraries/replication_gui.lib.php:318 server_privileges.php:779 +#: libraries/replication_gui.lib.php:318 server_privileges.php:780 msgid "Use Host Table" msgstr "Use Host Table" -#: libraries/replication_gui.lib.php:331 server_privileges.php:792 +#: libraries/replication_gui.lib.php:331 server_privileges.php:793 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -3670,29 +3714,29 @@ msgstr "უცნობი ენა: %1$s." msgid "Servers" msgstr "სერვერები" -#: libraries/server_links.inc.php:53 server_engines.php:112 +#: libraries/server_links.inc.php:54 server_engines.php:112 #: server_engines.php:116 server_status.php:415 test/theme.php:105 msgid "Variables" msgstr "ცვლადები" -#: libraries/server_links.inc.php:57 test/theme.php:109 +#: libraries/server_links.inc.php:58 test/theme.php:109 msgid "Charsets" msgstr "სიმბოლოთა ნაკრებები" -#: libraries/server_links.inc.php:61 test/theme.php:113 +#: libraries/server_links.inc.php:62 test/theme.php:113 msgid "Engines" msgstr "ძრავები" -#: libraries/server_links.inc.php:76 server_binlog.php:110 +#: libraries/server_links.inc.php:77 server_binlog.php:110 #: server_status.php:364 test/theme.php:121 msgid "Binary log" msgstr "ბინარული ჟურნალი" -#: libraries/server_links.inc.php:80 +#: libraries/server_links.inc.php:81 msgid "Processes" msgstr "პროცესები" -#: libraries/server_links.inc.php:92 server_synchronize.php:1092 +#: libraries/server_links.inc.php:93 server_synchronize.php:1092 #: server_synchronize.php:1100 msgid "Synchronize" msgstr "" @@ -3943,13 +3987,13 @@ msgstr "PARTITION definition" msgid "Save" msgstr "შენახვა" -#: libraries/tbl_properties.inc.php:780 tbl_structure.php:542 +#: libraries/tbl_properties.inc.php:780 tbl_structure.php:540 #, fuzzy, php-format #| msgid "Add %s field(s)" msgid "Add %s column(s)" msgstr "%s ველის დამატება" -#: libraries/tbl_properties.inc.php:784 tbl_structure.php:536 +#: libraries/tbl_properties.inc.php:784 tbl_structure.php:534 #, fuzzy #| msgid "You have to add at least one field." msgid "You have to add at least one column." @@ -4164,8 +4208,8 @@ msgstr "დაბრუნება" msgid "Protocol version" msgstr "ოქმის ვერსია" -#: main.php:189 server_privileges.php:1389 server_privileges.php:1536 -#: server_privileges.php:1650 server_privileges.php:2068 +#: main.php:189 server_privileges.php:1406 server_privileges.php:1556 +#: server_privileges.php:1670 server_privileges.php:2089 #: server_processlist.php:54 msgid "User" msgstr "მომხმარებელი" @@ -4625,112 +4669,112 @@ msgstr "Storage Engines" msgid "View dump (schema) of databases" msgstr "View dump (schema) of databases" -#: server_privileges.php:24 server_privileges.php:266 +#: server_privileges.php:25 server_privileges.php:267 msgid "Includes all privileges except GRANT." msgstr "შეიცავს ყველა პრივილეგიას GRANT-ის გამოკლებით." -#: server_privileges.php:25 server_privileges.php:192 -#: server_privileges.php:515 +#: server_privileges.php:26 server_privileges.php:193 +#: server_privileges.php:516 msgid "Allows altering the structure of existing tables." msgstr "Allows altering the structure of existing tables." -#: server_privileges.php:26 server_privileges.php:208 -#: server_privileges.php:521 +#: server_privileges.php:27 server_privileges.php:209 +#: server_privileges.php:522 msgid "Allows altering and dropping stored routines." msgstr "Allows altering and dropping stored routines." -#: server_privileges.php:27 server_privileges.php:184 -#: server_privileges.php:514 +#: server_privileges.php:28 server_privileges.php:185 +#: server_privileges.php:515 msgid "Allows creating new databases and tables." msgstr "Allows creating new databases and tables." -#: server_privileges.php:28 server_privileges.php:207 -#: server_privileges.php:520 +#: server_privileges.php:29 server_privileges.php:208 +#: server_privileges.php:521 msgid "Allows creating stored routines." msgstr "Allows creating stored routines." -#: server_privileges.php:29 server_privileges.php:514 +#: server_privileges.php:30 server_privileges.php:515 msgid "Allows creating new tables." msgstr "Allows creating new tables." -#: server_privileges.php:30 server_privileges.php:195 -#: server_privileges.php:518 +#: server_privileges.php:31 server_privileges.php:196 +#: server_privileges.php:519 msgid "Allows creating temporary tables." msgstr "Allows creating temporary tables." -#: server_privileges.php:31 server_privileges.php:209 -#: server_privileges.php:554 +#: server_privileges.php:32 server_privileges.php:210 +#: server_privileges.php:555 msgid "Allows creating, dropping and renaming user accounts." msgstr "Allows creating, dropping and renaming user accounts." -#: server_privileges.php:32 server_privileges.php:199 -#: server_privileges.php:203 server_privileges.php:526 -#: server_privileges.php:530 +#: server_privileges.php:33 server_privileges.php:200 +#: server_privileges.php:204 server_privileges.php:527 +#: server_privileges.php:531 msgid "Allows creating new views." msgstr "Allows creating new views." -#: server_privileges.php:33 server_privileges.php:183 -#: server_privileges.php:506 +#: server_privileges.php:34 server_privileges.php:184 +#: server_privileges.php:507 msgid "Allows deleting data." msgstr "Allows deleting data." -#: server_privileges.php:34 server_privileges.php:185 -#: server_privileges.php:517 +#: server_privileges.php:35 server_privileges.php:186 +#: server_privileges.php:518 msgid "Allows dropping databases and tables." msgstr "Allows dropping databases and tables." -#: server_privileges.php:35 server_privileges.php:517 +#: server_privileges.php:36 server_privileges.php:518 msgid "Allows dropping tables." msgstr "Allows dropping tables." -#: server_privileges.php:36 server_privileges.php:200 -#: server_privileges.php:534 +#: server_privileges.php:37 server_privileges.php:201 +#: server_privileges.php:535 msgid "Allows to set up events for the event scheduler" msgstr "Allows to set up events for the event scheduler" -#: server_privileges.php:37 server_privileges.php:210 -#: server_privileges.php:522 +#: server_privileges.php:38 server_privileges.php:211 +#: server_privileges.php:523 msgid "Allows executing stored routines." msgstr "Allows executing stored routines." -#: server_privileges.php:38 server_privileges.php:189 -#: server_privileges.php:509 +#: server_privileges.php:39 server_privileges.php:190 +#: server_privileges.php:510 msgid "Allows importing data from and exporting data into files." msgstr "Allows importing data from and exporting data into files." -#: server_privileges.php:39 server_privileges.php:540 +#: server_privileges.php:40 server_privileges.php:541 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "Allows adding users and privileges without reloading the privilege tables." -#: server_privileges.php:40 server_privileges.php:191 -#: server_privileges.php:516 +#: server_privileges.php:41 server_privileges.php:192 +#: server_privileges.php:517 msgid "Allows creating and dropping indexes." msgstr "Allows creating and dropping indexes." -#: server_privileges.php:41 server_privileges.php:181 -#: server_privileges.php:442 server_privileges.php:504 +#: server_privileges.php:42 server_privileges.php:182 +#: server_privileges.php:443 server_privileges.php:505 msgid "Allows inserting and replacing data." msgstr "Allows inserting and replacing data." -#: server_privileges.php:42 server_privileges.php:196 -#: server_privileges.php:549 +#: server_privileges.php:43 server_privileges.php:197 +#: server_privileges.php:550 msgid "Allows locking tables for the current thread." msgstr "Allows locking tables for the current thread." -#: server_privileges.php:43 server_privileges.php:646 -#: server_privileges.php:648 +#: server_privileges.php:44 server_privileges.php:647 +#: server_privileges.php:649 msgid "Limits the number of new connections the user may open per hour." msgstr "Limits the number of new connections the user may open per hour." -#: server_privileges.php:44 server_privileges.php:634 -#: server_privileges.php:636 +#: server_privileges.php:45 server_privileges.php:635 +#: server_privileges.php:637 msgid "Limits the number of queries the user may send to the server per hour." msgstr "Limits the number of queries the user may send to the server per hour." -#: server_privileges.php:45 server_privileges.php:640 -#: server_privileges.php:642 +#: server_privileges.php:46 server_privileges.php:641 +#: server_privileges.php:643 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -4738,58 +4782,58 @@ 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 +#: server_privileges.php:47 server_privileges.php:653 +#: server_privileges.php:655 msgid "Limits the number of simultaneous connections the user may have." msgstr "Limits the number of simultaneous connections the user may have." -#: server_privileges.php:47 server_privileges.php:188 -#: server_privileges.php:544 +#: server_privileges.php:48 server_privileges.php:189 +#: server_privileges.php:545 msgid "Allows viewing processes of all users" msgstr "Allows viewing processes of all users" -#: server_privileges.php:48 server_privileges.php:190 -#: server_privileges.php:448 server_privileges.php:550 +#: server_privileges.php:49 server_privileges.php:191 +#: server_privileges.php:449 server_privileges.php:551 msgid "Has no effect in this MySQL version." msgstr "Has no effect in this MySQL version." -#: server_privileges.php:49 server_privileges.php:186 -#: server_privileges.php:545 +#: server_privileges.php:50 server_privileges.php:187 +#: server_privileges.php:546 msgid "Allows reloading server settings and flushing the server's caches." msgstr "Allows reloading server settings and flushing the server's caches." -#: server_privileges.php:50 server_privileges.php:198 -#: server_privileges.php:552 +#: server_privileges.php:51 server_privileges.php:199 +#: server_privileges.php:553 msgid "Allows the user to ask where the slaves / masters are." msgstr "Allows the user to ask where the slaves / masters are." -#: server_privileges.php:51 server_privileges.php:197 -#: server_privileges.php:553 +#: server_privileges.php:52 server_privileges.php:198 +#: server_privileges.php:554 msgid "Needed for the replication slaves." msgstr "Needed for the replication slaves." -#: server_privileges.php:52 server_privileges.php:180 -#: server_privileges.php:439 server_privileges.php:503 +#: server_privileges.php:53 server_privileges.php:181 +#: server_privileges.php:440 server_privileges.php:504 msgid "Allows reading data." msgstr "Allows reading data." -#: server_privileges.php:53 server_privileges.php:193 -#: server_privileges.php:547 +#: server_privileges.php:54 server_privileges.php:194 +#: server_privileges.php:548 msgid "Gives access to the complete list of databases." msgstr "Gives access to the complete list of databases." -#: server_privileges.php:54 server_privileges.php:204 -#: server_privileges.php:206 server_privileges.php:519 +#: server_privileges.php:55 server_privileges.php:205 +#: server_privileges.php:207 server_privileges.php:520 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Allows performing SHOW CREATE VIEW queries." -#: server_privileges.php:55 server_privileges.php:187 -#: server_privileges.php:546 +#: server_privileges.php:56 server_privileges.php:188 +#: server_privileges.php:547 msgid "Allows shutting down the server." msgstr "Allows shutting down the server." -#: server_privileges.php:56 server_privileges.php:194 -#: server_privileges.php:543 +#: server_privileges.php:57 server_privileges.php:195 +#: server_privileges.php:544 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -4799,157 +4843,157 @@ msgstr "" "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 +#: server_privileges.php:58 server_privileges.php:202 +#: server_privileges.php:536 msgid "Allows creating and dropping triggers" msgstr "Allows creating and dropping triggers" -#: server_privileges.php:58 server_privileges.php:182 -#: server_privileges.php:445 server_privileges.php:505 +#: server_privileges.php:59 server_privileges.php:183 +#: server_privileges.php:446 server_privileges.php:506 msgid "Allows changing data." msgstr "Allows changing data." -#: server_privileges.php:59 server_privileges.php:260 +#: server_privileges.php:60 server_privileges.php:261 msgid "No privileges." msgstr "პრივილეგიები არაა." -#: server_privileges.php:302 server_privileges.php:303 +#: server_privileges.php:303 server_privileges.php:304 #, fuzzy #| msgid "None" msgctxt "None privileges" msgid "None" msgstr "არაა" -#: server_privileges.php:431 server_privileges.php:566 -#: server_privileges.php:1718 server_privileges.php:1724 +#: server_privileges.php:432 server_privileges.php:567 +#: server_privileges.php:1738 server_privileges.php:1744 msgid "Table-specific privileges" msgstr "Table-specific privileges" -#: server_privileges.php:432 server_privileges.php:574 -#: server_privileges.php:1540 +#: server_privileges.php:433 server_privileges.php:575 +#: server_privileges.php:1560 msgid " Note: MySQL privilege names are expressed in English " msgstr " Note: MySQL privilege names are expressed in English " -#: server_privileges.php:563 server_privileges.php:1539 +#: server_privileges.php:564 server_privileges.php:1559 msgid "Global privileges" msgstr "გლობალური პრივილეგიები" -#: server_privileges.php:565 server_privileges.php:1718 +#: server_privileges.php:566 server_privileges.php:1738 msgid "Database-specific privileges" msgstr "Database-specific privileges" -#: server_privileges.php:610 +#: server_privileges.php:611 msgid "Administration" msgstr "ადმინისტრირება" -#: server_privileges.php:630 +#: server_privileges.php:631 msgid "Resource limits" msgstr "Resource limits" -#: server_privileges.php:631 +#: server_privileges.php:632 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "Note: Setting these options to 0 (zero) removes the limit." -#: server_privileges.php:708 +#: server_privileges.php:709 msgid "Login Information" msgstr "Login Information" -#: server_privileges.php:802 +#: server_privileges.php:803 msgid "Do not change the password" msgstr "არ შეცვალო პაროლი" -#: server_privileges.php:843 server_privileges.php:2205 +#: server_privileges.php:844 server_privileges.php:2226 #, fuzzy #| msgid "No user(s) found." msgid "No user found." msgstr "მომხმარებლ(ებ)ის პოვნა ვერ მოხერხდა." -#: server_privileges.php:887 +#: server_privileges.php:888 #, php-format msgid "The user %s already exists!" msgstr "მომხმარებელი %s უკვე არსებობს!" -#: server_privileges.php:970 +#: server_privileges.php:971 msgid "You have added a new user." msgstr "თქვენ დაამატეთ ახალი მომხმარებელი." -#: server_privileges.php:1191 +#: server_privileges.php:1196 #, php-format msgid "You have updated the privileges for %s." msgstr "You have updated the privileges for %s." -#: server_privileges.php:1215 +#: server_privileges.php:1220 #, php-format msgid "You have revoked the privileges for %s" msgstr "You have revoked the privileges for %s" -#: server_privileges.php:1251 +#: server_privileges.php:1256 #, php-format msgid "The password for %s was changed successfully." msgstr "The password for %s was changed successfully." -#: server_privileges.php:1271 +#: server_privileges.php:1276 #, php-format msgid "Deleting %s" msgstr "%s-ის წაშლა" -#: server_privileges.php:1282 +#: server_privileges.php:1287 msgid "No users selected for deleting!" msgstr "No users selected for deleting!" -#: server_privileges.php:1285 +#: server_privileges.php:1290 msgid "Reloading the privileges" msgstr "Reloading the privileges" -#: server_privileges.php:1300 +#: server_privileges.php:1305 msgid "The selected users have been deleted successfully." msgstr "The selected users have been deleted successfully." -#: server_privileges.php:1335 +#: server_privileges.php:1344 msgid "The privileges were reloaded successfully." msgstr "The privileges were reloaded successfully." -#: server_privileges.php:1363 server_privileges.php:1649 +#: server_privileges.php:1380 server_privileges.php:1669 msgid "Edit Privileges" msgstr "პრივილეგიების რედაქტირება" -#: server_privileges.php:1372 +#: server_privileges.php:1389 msgid "Revoke" msgstr "Revoke" -#: server_privileges.php:1404 +#: server_privileges.php:1424 msgid "User overview" msgstr "მომხმარებლის მიმოხილვა" -#: server_privileges.php:1541 server_privileges.php:1723 -#: server_privileges.php:2072 +#: server_privileges.php:1561 server_privileges.php:1743 +#: server_privileges.php:2093 msgid "Grant" msgstr "Grant" -#: server_privileges.php:1560 server_privileges.php:2162 +#: server_privileges.php:1580 server_privileges.php:2183 msgid "Any" msgstr "ნებისმიერი" -#: server_privileges.php:1609 server_privileges.php:1633 -#: server_privileges.php:2027 server_privileges.php:2216 +#: server_privileges.php:1629 server_privileges.php:1653 +#: server_privileges.php:2048 server_privileges.php:2237 msgid "Add a new User" msgstr "ახალი მომხმარებლის დამატება" -#: server_privileges.php:1614 +#: server_privileges.php:1634 msgid "Remove selected users" msgstr "Remove selected users" -#: server_privileges.php:1617 +#: server_privileges.php:1637 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:1618 server_privileges.php:1619 -#: server_privileges.php:1620 +#: server_privileges.php:1638 server_privileges.php:1639 +#: server_privileges.php:1640 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:1636 +#: server_privileges.php:1656 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -4962,49 +5006,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:1684 +#: server_privileges.php:1704 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:1724 +#: server_privileges.php:1744 msgid "Column-specific privileges" msgstr "Column-specific privileges" -#: server_privileges.php:1925 +#: server_privileges.php:1945 msgid "Add privileges on the following database" msgstr "პრივილეგიების დამატება შემდეგი მონაცემთა ბაზისათვის" -#: server_privileges.php:1943 +#: server_privileges.php:1963 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:1946 +#: server_privileges.php:1966 msgid "Add privileges on the following table" msgstr "პრივილეგიების დამატება შემდეგი ცხრილისათვის" -#: server_privileges.php:2003 +#: server_privileges.php:2023 msgid "Change Login Information / Copy User" msgstr "Change Login Information / Copy User" -#: server_privileges.php:2006 +#: server_privileges.php:2026 msgid "Create a new user with the same privileges and ..." msgstr "იგივე პრივილეგიების მქონე ახალი მომხმარებლის შექმნა და ..." -#: server_privileges.php:2008 +#: server_privileges.php:2028 msgid "... keep the old one." msgstr "... ძველის შენახვა." -#: server_privileges.php:2009 +#: server_privileges.php:2029 msgid " ... delete the old one from the user tables." msgstr " ... ძველი მომხმარებლის მომხმარებლების ცხრილიდან წაშლა." -#: server_privileges.php:2010 +#: server_privileges.php:2030 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:2011 +#: server_privileges.php:2031 msgid "" " ... delete the old one from the user tables and reload the privileges " "afterwards." @@ -5012,45 +5056,45 @@ msgstr "" " ... ძველი მომხმარებლის მომხმარებლების სიიდან წაშლა და შემდეგ პრივილეგიების " "გადატვირთვა." -#: server_privileges.php:2033 +#: server_privileges.php:2054 msgid "Database for user" msgstr "მონაცემთა ბაზა მომხმარებლისთვის" -#: server_privileges.php:2037 +#: server_privileges.php:2058 #, fuzzy #| msgid "None" msgctxt "Create none database for user" msgid "None" msgstr "არაა" -#: server_privileges.php:2038 +#: server_privileges.php:2059 msgid "Create database with same name and grant all privileges" msgstr "" "იგივე სახელის მქონე მონაცემთა ბაზის შექმნა და ყველა პრივილეგიის მინიჭება" -#: server_privileges.php:2039 +#: server_privileges.php:2060 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "Grant all privileges on wildcard name (username\\_%)" -#: server_privileges.php:2042 +#: server_privileges.php:2063 #, php-format msgid "Grant all privileges on database "%s"" msgstr "ყველა პრივილეგიის მინიჭება მონაცემთა ბაზისთვის "%s"" -#: server_privileges.php:2065 +#: server_privileges.php:2086 #, php-format msgid "Users having access to "%s"" msgstr "Users having access to "%s"" -#: server_privileges.php:2173 +#: server_privileges.php:2194 msgid "global" msgstr "გლობალულრი" -#: server_privileges.php:2175 +#: server_privileges.php:2196 msgid "database-specific" msgstr "database-specific" -#: server_privileges.php:2177 +#: server_privileges.php:2198 msgid "wildcard" msgstr "wildcard" @@ -8022,6 +8066,10 @@ msgstr "" msgid "Show insert query" msgstr "Showing SQL query" +#: tbl_change.php:1143 +msgid "and then" +msgstr "და შემდეგ" + #: tbl_change.php:1147 msgid "Go back to previous page" msgstr "წინა გვერდზე დაბრუნება" @@ -8102,7 +8150,7 @@ msgstr "" msgid "Add to index  %s column(s)" msgstr "Add to index  %s column(s)" -#: tbl_indexes.php:256 tbl_structure.php:589 tbl_structure.php:600 +#: tbl_indexes.php:256 tbl_structure.php:587 tbl_structure.php:598 msgid "Column count has to be larger than zero." msgstr "Column count has to be larger than zero." @@ -8216,39 +8264,39 @@ msgstr "Check referential integrity:" msgid "Show tables" msgstr "ცხრილების ჩვენება" -#: tbl_printview.php:310 tbl_structure.php:656 +#: tbl_printview.php:310 tbl_structure.php:654 msgid "Space usage" msgstr "ადგილის გამოყენება" -#: tbl_printview.php:314 tbl_structure.php:660 +#: tbl_printview.php:314 tbl_structure.php:658 msgid "Usage" msgstr "გამოყენება" -#: tbl_printview.php:341 tbl_structure.php:687 +#: tbl_printview.php:341 tbl_structure.php:685 msgid "Effective" msgstr "ეფექტური" -#: tbl_printview.php:366 tbl_structure.php:725 +#: tbl_printview.php:366 tbl_structure.php:723 msgid "Row Statistics" msgstr "Row Statistics" -#: tbl_printview.php:369 tbl_structure.php:728 +#: tbl_printview.php:369 tbl_structure.php:726 msgid "Statements" msgstr "Statements" -#: tbl_printview.php:380 tbl_structure.php:740 +#: tbl_printview.php:380 tbl_structure.php:738 msgid "static" msgstr "სტატიკური" -#: tbl_printview.php:382 tbl_structure.php:742 +#: tbl_printview.php:382 tbl_structure.php:740 msgid "dynamic" msgstr "დინამიური" -#: tbl_printview.php:404 tbl_structure.php:785 +#: tbl_printview.php:404 tbl_structure.php:783 msgid "Row length" msgstr "სტრიქონის სიგრძე" -#: tbl_printview.php:414 tbl_structure.php:793 +#: tbl_printview.php:414 tbl_structure.php:791 msgid " Row size " msgstr " სტრიქონის ზომა " @@ -8324,50 +8372,50 @@ msgstr "არაა" msgid "Column %s has been dropped" msgstr "Table %s has been dropped" -#: tbl_structure.php:385 +#: tbl_structure.php:384 #, php-format msgid "A primary key has been added on %s" msgstr "A primary key has been added on %s" -#: tbl_structure.php:400 tbl_structure.php:414 tbl_structure.php:428 +#: tbl_structure.php:398 tbl_structure.php:412 tbl_structure.php:426 #, php-format msgid "An index has been added on %s" msgstr "An index has been added on %s" -#: tbl_structure.php:506 tbl_structure.php:508 +#: tbl_structure.php:504 tbl_structure.php:506 msgid "Relation view" msgstr "Relation view" -#: tbl_structure.php:515 tbl_structure.php:517 +#: tbl_structure.php:513 tbl_structure.php:515 msgid "Propose table structure" msgstr "ცხრილის სტრუქტურის შეთავაზება" -#: tbl_structure.php:540 +#: tbl_structure.php:538 #, fuzzy #| msgid "Add %s field(s)" msgid "Add column" msgstr "%s ველის დამატება" -#: tbl_structure.php:554 +#: tbl_structure.php:552 msgid "At End of Table" msgstr "ცხრილის ბოლოშო" -#: tbl_structure.php:555 +#: tbl_structure.php:553 msgid "At Beginning of Table" msgstr "ცხრილის დასაწყისში" -#: tbl_structure.php:556 +#: tbl_structure.php:554 #, php-format msgid "After %s" msgstr "After %s" -#: tbl_structure.php:594 +#: tbl_structure.php:592 #, fuzzy, php-format #| msgid "Create an index on %s columns" msgid "Create an index on  %s columns" msgstr "Create an index on %s columns" -#: tbl_structure.php:756 +#: tbl_structure.php:754 msgid "partitioned" msgstr "დაყოფილი" @@ -8823,9 +8871,6 @@ msgstr "Rename table to" #~ msgid "Process list" #~ msgstr "პროცესების სია" -#~ msgid "Reload privileges" -#~ msgstr "პრივილეგიების გადატვირთვა" - #~ msgid "" #~ "The users will still have the USAGE privilege until the privileges are " #~ "reloaded." diff --git a/po/ko.po b/po/ko.po index 37b927ecf..537a84868 100755 --- a/po/ko.po +++ b/po/ko.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-13 09:03-0400\n" +"POT-Creation-Date: 2010-06-22 00:55+0530\n" "PO-Revision-Date: 2010-06-16 18:18+0200\n" "Last-Translator: \n" "Language-Team: korean \n" -"Language: ko\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: ko\n" "Plural-Forms: nplurals=1; plural=0;\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:1514 +#: libraries/display_tbl.lib.php:417 server_privileges.php:1534 msgid "Show all" msgstr "모두 보기" -#: browse_foreigners.php:82 libraries/common.lib.php:2313 +#: browse_foreigners.php:82 libraries/common.lib.php:2317 #: 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 @@ -32,23 +32,23 @@ msgid "" "parent window, or your browser's security settings are configured to block " "cross-window updates." 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:2831 -#: libraries/common.lib.php:2838 libraries/db_links.inc.php:75 +#: db_structure.php:106 libraries/common.lib.php:2835 +#: libraries/common.lib.php:2842 libraries/db_links.inc.php:75 #: libraries/tbl_links.inc.php:63 msgid "Search" msgstr "검색" -#: browse_foreigners.php:153 db_operations.php:385 db_operations.php:429 -#: db_operations.php:499 db_operations.php:609 db_search.php:362 -#: db_structure.php:567 js/messages.php:48 libraries/Config.class.php:1046 +#: browse_foreigners.php:153 db_operations.php:394 db_operations.php:438 +#: db_operations.php:508 db_operations.php:618 db_search.php:362 +#: db_structure.php:565 js/messages.php:53 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:1335 libraries/common.lib.php:2288 +#: libraries/common.lib.php:1335 libraries/common.lib.php:2292 #: 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,15 +59,15 @@ 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:664 server_privileges.php:1624 -#: server_privileges.php:1971 server_privileges.php:2018 -#: server_privileges.php:2057 server_replication.php:235 +#: server_privileges.php:665 server_privileges.php:1644 +#: server_privileges.php:1991 server_privileges.php:2038 +#: server_privileges.php:2078 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 #: tbl_operations.php:302 tbl_operations.php:499 tbl_operations.php:561 -#: tbl_operations.php:681 tbl_select.php:327 tbl_structure.php:562 -#: tbl_structure.php:597 tbl_tracking.php:395 tbl_tracking.php:512 +#: tbl_operations.php:681 tbl_select.php:327 tbl_structure.php:560 +#: tbl_structure.php:595 tbl_tracking.php:395 tbl_tracking.php:512 #: view_create.php:182 view_operations.php:101 msgid "Go" msgstr "실행" @@ -93,7 +93,7 @@ msgstr "이 값을 사용합니다" msgid "Database %1$s has been created." msgstr "데이터베이스 %1$s가 생성되었습니다." -#: db_datadict.php:49 db_operations.php:378 +#: db_datadict.php:49 db_operations.php:387 msgid "Database comment: " msgstr "데이터베이스 설명:" @@ -110,7 +110,6 @@ msgstr "테이블 설명" #: 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 "컬럼명" @@ -119,10 +118,10 @@ 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:2070 +#: pdf_schema.php:1263 pdf_schema.php:1284 server_privileges.php:2091 #: 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 +#: tbl_structure.php:657 tbl_tracking.php:274 tbl_tracking.php:321 msgid "Type" msgstr "종류" @@ -135,7 +134,7 @@ msgstr "종류" msgid "Null" msgstr "Null" -#: db_datadict.php:178 db_structure.php:501 libraries/export/htmlword.php:247 +#: db_datadict.php:178 db_structure.php:499 libraries/export/htmlword.php:247 #: libraries/export/latex.php:360 libraries/export/odt.php:303 #: libraries/export/texytext.php:236 libraries/tbl_properties.inc.php:106 #: pdf_schema.php:1266 pdf_schema.php:1287 tbl_printview.php:146 @@ -163,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: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 +#: pdf_schema.php:1344 server_privileges.php:1588 server_privileges.php:1599 +#: server_privileges.php:1909 server_privileges.php:1914 +#: server_privileges.php:2208 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 +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:1565 -#: server_privileges.php:1579 server_privileges.php:1889 -#: server_privileges.php:1892 server_privileges.php:2187 sql.php:193 +#: server_databases.php:64 server_privileges.php:1585 +#: server_privileges.php:1599 server_privileges.php:1909 +#: server_privileges.php:1912 server_privileges.php:2208 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" @@ -208,135 +207,131 @@ msgstr "모두 선택" msgid "Unselect All" msgstr "모두 선택안함" -#: db_operations.php:38 tbl_create.php:54 +#: db_operations.php:43 tbl_create.php:54 msgid "The database name is empty!" msgstr "데이터베이스명이 없습니다!" -#: db_operations.php:236 +#: db_operations.php:241 #, php-format msgid "Database %s has been renamed to %s" msgstr "데이터베이스 %s 의 이름을 %s 로 변경하였습니다." -#: db_operations.php:240 +#: db_operations.php:245 #, php-format msgid "Database %s has been copied to %s" msgstr "데이터베이스 %s 를 %s 로 복사하였습니다." -#: db_operations.php:412 +#: db_operations.php:421 msgid "Rename database to" msgstr "데이터베이스 이름 변경" -#: db_operations.php:417 server_processlist.php:57 +#: db_operations.php:426 server_processlist.php:57 msgid "Command" msgstr "커맨드" -#: db_operations.php:429 tbl_change.php:1143 -msgid "and then" -msgstr "이어서" - -#: db_operations.php:455 +#: db_operations.php:464 msgid "Copy database to" msgstr "데이터베이스 복사" -#: db_operations.php:462 tbl_operations.php:528 tbl_tracking.php:388 +#: db_operations.php:471 tbl_operations.php:528 tbl_tracking.php:388 msgid "Structure only" msgstr "구조만" -#: db_operations.php:463 tbl_operations.php:529 tbl_tracking.php:390 +#: db_operations.php:472 tbl_operations.php:529 tbl_tracking.php:390 msgid "Structure and data" msgstr "구조와 데이터 모두" -#: db_operations.php:464 tbl_operations.php:530 tbl_tracking.php:389 +#: db_operations.php:473 tbl_operations.php:530 tbl_tracking.php:389 msgid "Data only" msgstr "데이터만" -#: db_operations.php:472 +#: db_operations.php:481 msgid "CREATE DATABASE before copying" msgstr "복사 전에 CREATE DATABASE 실행" -#: db_operations.php:475 libraries/export/sql.php:52 +#: db_operations.php:484 libraries/export/sql.php:52 #: libraries/export/sql.php:74 libraries/export/sql.php:76 #: libraries/export/sql.php:82 tbl_operations.php:536 #, php-format msgid "Add %s" msgstr "%s 추가" -#: db_operations.php:479 libraries/export/sql.php:78 tbl_operations.php:299 +#: db_operations.php:488 libraries/export/sql.php:78 tbl_operations.php:299 #: tbl_operations.php:538 msgid "Add AUTO_INCREMENT value" msgstr "AUTO_INCREMENT 값 추가" -#: db_operations.php:483 tbl_operations.php:545 +#: db_operations.php:492 tbl_operations.php:545 msgid "Add constraints" msgstr "제약조건 추가" -#: db_operations.php:496 +#: db_operations.php:505 msgid "Switch to copied database" msgstr "복사한 테이블로 옮겨감" -#: db_operations.php:537 +#: db_operations.php:546 msgid "BLOB Repository" msgstr "BLOB 저장소" -#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1352 -#: libraries/server_links.inc.php:49 server_processlist.php:59 +#: db_operations.php:549 db_tracking.php:76 libraries/common.lib.php:1352 +#: libraries/server_links.inc.php:50 server_processlist.php:59 #: tbl_tracking.php:596 test/theme.php:101 msgid "Status" msgstr "상태" -#: db_operations.php:548 -#| msgid "Enabled" +#: db_operations.php:557 msgctxt "BLOB repository" msgid "Enabled" msgstr "유효" -#: db_operations.php:552 +#: db_operations.php:561 msgid "Disable" msgstr "무효" -#: db_operations.php:562 +#: db_operations.php:571 msgid "Damaged" msgstr "손상됨" -#: db_operations.php:566 +#: db_operations.php:575 msgctxt "BLOB repository" msgid "Repair" msgstr "복구" -#: db_operations.php:574 -#| msgid "Disabled" +#: db_operations.php:583 msgctxt "BLOB repository" msgid "Disabled" msgstr "무효" -#: db_operations.php:578 +#: db_operations.php:587 msgid "Enable" msgstr "유효" -#: db_operations.php:602 libraries/Index.class.php:448 +#: db_operations.php:611 libraries/Index.class.php:448 #: libraries/db_structure.lib.php:62 libraries/mysql_charsets.lib.php:107 #: libraries/tbl_properties.inc.php:107 libraries/tbl_properties.inc.php:730 #: server_collations.php:54 server_collations.php:66 server_databases.php:111 #: tbl_operations.php:363 tbl_select.php:137 tbl_structure.php:179 -#: tbl_structure.php:767 tbl_tracking.php:275 tbl_tracking.php:326 +#: tbl_structure.php:765 tbl_tracking.php:275 tbl_tracking.php:326 msgid "Collation" msgstr "데이터정렬방식" -#: db_operations.php:615 main.php:316 pdf_schema.php:34 +#: db_operations.php:624 main.php:316 pdf_schema.php:34 #, php-format msgid "" "The additional features for working with linked tables have been " "deactivated. To find out why click %shere%s." -msgstr "링크 테이블을 처리하는 추가 기능이 비활성화되어 있습니다. 원인을 확인하려면 %s여기를 클릭%s하십시오." +msgstr "" +"링크 테이블을 처리하는 추가 기능이 비활성화되어 있습니다. 원인을 확인하려면 %" +"s여기를 클릭%s하십시오." -#: db_operations.php:648 +#: db_operations.php:657 msgid "Edit PDF Pages" 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:1665 -#: server_privileges.php:1721 server_privileges.php:1985 +#: libraries/header.inc.php:130 pdf_pages.php:424 server_privileges.php:1685 +#: server_privileges.php:1741 server_privileges.php:2005 #: server_synchronize.php:423 server_synchronize.php:866 tbl_tracking.php:592 #: test/theme.php:75 msgid "Table" @@ -345,7 +340,7 @@ msgstr "테이블 " #: db_printview.php:105 libraries/db_structure.lib.php:56 #: libraries/header_printview.inc.php:63 libraries/import.lib.php:146 #: navigation.php:638 navigation.php:660 server_databases.php:122 -#: tbl_printview.php:394 tbl_structure.php:365 tbl_structure.php:777 +#: tbl_printview.php:394 tbl_structure.php:365 tbl_structure.php:775 msgid "Rows" msgstr "행(레코드)" @@ -353,32 +348,31 @@ msgstr "행(레코드)" msgid "Size" msgstr "크기" -#: db_printview.php:162 db_structure.php:457 libraries/export/sql.php:559 +#: db_printview.php:162 db_structure.php:455 libraries/export/sql.php:559 #: libraries/export/sql.php:899 msgid "in use" msgstr "사용중" #: db_printview.php:187 libraries/db_info.inc.php:88 #: libraries/export/sql.php:514 pdf_schema.php:1241 tbl_printview.php:434 -#: tbl_structure.php:809 +#: tbl_structure.php:807 msgid "Creation" msgstr "생성" #: db_printview.php:196 libraries/db_info.inc.php:93 #: libraries/export/sql.php:519 pdf_schema.php:1246 tbl_printview.php:444 -#: tbl_structure.php:817 +#: tbl_structure.php:815 msgid "Last update" msgstr "업데이트" #: db_printview.php:205 libraries/db_info.inc.php:98 #: libraries/export/sql.php:524 pdf_schema.php:1251 tbl_printview.php:454 -#: tbl_structure.php:825 +#: tbl_structure.php:823 msgid "Last check" msgstr "검사" -#: db_printview.php:222 db_structure.php:480 +#: db_printview.php:222 db_structure.php:478 #, php-format -#| msgid "%s table(s)" msgid "%s table" msgid_plural "%s tables" msgstr[0] "%s개 테이블 " @@ -436,7 +430,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:297 tbl_change.php:1031 tbl_indexes.php:250 +#: server_privileges.php:298 tbl_change.php:1031 tbl_indexes.php:250 #: tbl_select.php:288 msgid "Or" msgstr "또는" @@ -446,12 +440,10 @@ msgid "Modify" msgstr "수정" #: db_qbe.php:584 -#| msgid "Add/Delete Criteria Row" msgid "Add/Delete criteria rows" msgstr "조건행 추가/삭제" #: db_qbe.php:596 -#| msgid "Add/Delete Field Columns" msgid "Add/Delete columns" msgstr "컬럼 추가/삭제" @@ -507,9 +499,9 @@ 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:2833 +#: db_structure.php:105 libraries/common.lib.php:2837 #: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50 -#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:467 +#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:465 msgid "Browse" msgstr "보기" @@ -547,42 +539,41 @@ msgid "Inside table(s):" msgstr "찾을 테이블:" #: db_search.php:355 -#| msgid "Inside table(s):" msgid "Inside column:" 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:2832 libraries/sql_query_form.lib.php:334 +#: libraries/common.lib.php:2836 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:2829 libraries/common.lib.php:2836 +#: libraries/common.lib.php:2833 libraries/common.lib.php:2840 #: 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:1106 #: libraries/tbl_links.inc.php:56 pmd_general.php:134 -#: server_privileges.php:593 server_replication.php:315 tbl_tracking.php:269 +#: server_privileges.php:594 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:1656 +#: db_structure.php:543 db_structure.php:544 db_tracking.php:91 +#: libraries/Index.class.php:483 libraries/common.lib.php:1657 #: 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 -#: tbl_structure.php:152 tbl_structure.php:471 +#: tbl_structure.php:152 tbl_structure.php:469 msgid "Drop" 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:1655 +#: db_structure.php:541 db_structure.php:542 libraries/common.lib.php:1656 #: libraries/mult_submits.inc.php:39 libraries/tbl_links.inc.php:105 msgid "Empty" msgstr "비우기" @@ -592,111 +583,111 @@ msgstr "비우기" msgid "Table %s has been emptied" msgstr "테이블 %s 을 비웠습니다" -#: db_structure.php:326 libraries/tbl_links.inc.php:133 +#: db_structure.php:325 libraries/tbl_links.inc.php:133 #, php-format msgid "View %s has been dropped" msgstr "뷰 %s가 제거되었습니다." -#: db_structure.php:326 libraries/tbl_links.inc.php:133 +#: db_structure.php:325 libraries/tbl_links.inc.php:133 #, php-format msgid "Table %s has been dropped" msgstr "테이블 %s 을 제거했습니다." -#: db_structure.php:333 +#: db_structure.php:332 msgid "Tracking is active." msgstr "트래킹이 활성화되었습니다." -#: db_structure.php:335 +#: db_structure.php:334 msgid "Tracking is not active." msgstr "트래킹이 활성화되어 있지 않습니다." -#: db_structure.php:420 libraries/display_tbl.lib.php:1944 +#: db_structure.php:418 libraries/display_tbl.lib.php:1944 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation%" "s." msgstr "" -#: db_structure.php:434 db_structure.php:448 libraries/header.inc.php:126 +#: db_structure.php:432 db_structure.php:446 libraries/header.inc.php:130 #: libraries/tbl_info.inc.php:66 tbl_structure.php:185 test/theme.php:74 msgid "View" msgstr "" -#: db_structure.php:485 libraries/db_structure.lib.php:49 -#: libraries/server_links.inc.php:70 server_replication.php:33 +#: db_structure.php:483 libraries/db_structure.lib.php:49 +#: libraries/server_links.inc.php:71 server_replication.php:33 #: server_replication.php:164 server_status.php:369 msgid "Replication" msgstr "" -#: db_structure.php:489 +#: db_structure.php:487 msgid "Sum" msgstr "계" -#: db_structure.php:496 libraries/StorageEngine.class.php:356 +#: db_structure.php:494 libraries/StorageEngine.class.php:356 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "%s는 이 MySQL 서버의 기본 스토리지 엔진입니다." -#: db_structure.php:524 db_structure.php:541 db_structure.php:542 +#: db_structure.php:522 db_structure.php:539 db_structure.php:540 #: 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:1596 tbl_structure.php:455 -#: tbl_structure.php:464 +#: server_databases.php:351 server_privileges.php:1616 tbl_structure.php:453 +#: tbl_structure.php:462 msgid "With selected:" msgstr "선택한 것을:" -#: db_structure.php:527 libraries/display_tbl.lib.php:2076 -#: server_databases.php:348 server_privileges.php:569 -#: server_privileges.php:1599 tbl_structure.php:458 +#: db_structure.php:525 libraries/display_tbl.lib.php:2076 +#: server_databases.php:348 server_privileges.php:570 +#: server_privileges.php:1619 tbl_structure.php:456 msgid "Check All" msgstr "모두 체크" -#: db_structure.php:531 libraries/display_tbl.lib.php:2077 +#: db_structure.php:529 libraries/display_tbl.lib.php:2077 #: libraries/replication_gui.lib.php:33 server_databases.php:350 -#: server_privileges.php:572 server_privileges.php:1603 tbl_structure.php:462 +#: server_privileges.php:573 server_privileges.php:1623 tbl_structure.php:460 msgid "Uncheck All" msgstr "모두 체크안함" -#: db_structure.php:536 +#: db_structure.php:534 msgid "Check tables having overhead" msgstr "" -#: db_structure.php:547 db_structure.php:548 db_structure.php:599 +#: db_structure.php:545 db_structure.php:546 db_structure.php:597 #: libraries/display_tbl.lib.php:2180 libraries/mult_submits.inc.php:28 -#: tbl_structure.php:492 tbl_structure.php:494 +#: tbl_structure.php:490 tbl_structure.php:492 msgid "Print view" msgstr "인쇄용 보기" -#: db_structure.php:549 db_structure.php:550 libraries/mult_submits.inc.php:42 +#: db_structure.php:547 db_structure.php:548 libraries/mult_submits.inc.php:42 #: tbl_operations.php:581 msgid "Check table" msgstr "테이블 검사" -#: db_structure.php:551 db_structure.php:552 libraries/mult_submits.inc.php:47 -#: tbl_operations.php:621 tbl_structure.php:709 tbl_structure.php:711 +#: db_structure.php:549 db_structure.php:550 libraries/mult_submits.inc.php:47 +#: tbl_operations.php:621 tbl_structure.php:707 tbl_structure.php:709 msgid "Optimize table" msgstr "테이블 최적화" -#: db_structure.php:553 db_structure.php:554 libraries/mult_submits.inc.php:52 +#: db_structure.php:551 db_structure.php:552 libraries/mult_submits.inc.php:52 #: tbl_operations.php:611 msgid "Repair table" msgstr "테이블 복구" -#: db_structure.php:555 db_structure.php:556 libraries/mult_submits.inc.php:57 +#: db_structure.php:553 db_structure.php:554 libraries/mult_submits.inc.php:57 #: tbl_operations.php:601 msgid "Analyze table" msgstr "테이블 분석" -#: db_structure.php:557 db_structure.php:558 libraries/db_links.inc.php:71 +#: db_structure.php:555 db_structure.php:556 libraries/db_links.inc.php:71 #: 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:1380 +#: libraries/server_links.inc.php:85 libraries/tbl_links.inc.php:82 +#: pmd_pdf.php:84 pmd_pdf.php:109 server_privileges.php:1397 #: setup/frames/menu.inc.php:22 tbl_row_action.php:59 msgid "Export" msgstr "내보내기" -#: db_structure.php:606 libraries/display_pdf_schema.lib.php:44 +#: db_structure.php:604 libraries/display_pdf_schema.lib.php:44 msgid "Data Dictionary" msgstr "데이터 사전 (전체 구조보기)" @@ -707,10 +698,10 @@ msgstr "" #: db_tracking.php:71 libraries/export/htmlword.php:86 #: libraries/export/latex.php:148 libraries/export/odt.php:113 #: libraries/export/sql.php:342 libraries/export/texytext.php:84 -#: libraries/export/xml.php:255 libraries/header.inc.php:106 +#: libraries/export/xml.php:255 libraries/header.inc.php:110 #: libraries/header_printview.inc.php:58 server_databases.php:169 -#: server_privileges.php:1660 server_privileges.php:1721 -#: server_privileges.php:1979 server_processlist.php:56 +#: server_privileges.php:1680 server_privileges.php:1741 +#: server_privileges.php:1999 server_processlist.php:56 #: server_synchronize.php:1179 server_synchronize.php:1183 #: tbl_tracking.php:591 test/theme.php:65 msgid "Database" @@ -731,8 +722,8 @@ msgstr "" #: db_tracking.php:77 libraries/Index.class.php:440 #: libraries/db_structure.lib.php:53 server_databases.php:203 -#: server_privileges.php:1542 server_privileges.php:1725 -#: server_privileges.php:2073 tbl_structure.php:187 +#: server_privileges.php:1562 server_privileges.php:1745 +#: server_privileges.php:2094 tbl_structure.php:187 msgid "Action" msgstr "실행" @@ -768,8 +759,8 @@ msgstr "구조만" msgid "Untracked tables" msgstr "" -#: db_tracking.php:172 db_tracking.php:174 tbl_structure.php:528 -#: tbl_structure.php:530 +#: db_tracking.php:172 db_tracking.php:174 tbl_structure.php:526 +#: tbl_structure.php:528 #, fuzzy msgid "Track table" msgstr "테이블 검사" @@ -792,7 +783,9 @@ msgstr "" #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." -msgstr "%s 라는 이름의 파일이 이미 서버에 존재합니다. 파일명을 변경하거나 덮어쓰기 옵션을 설정해주세요." +msgstr "" +"%s 라는 이름의 파일이 이미 서버에 존재합니다. 파일명을 변경하거나 덮어쓰기 옵" +"션을 설정해주세요." #: export.php:298 export.php:302 #, php-format @@ -831,12 +824,14 @@ msgid "" "file size exceeded the maximum size permitted by your PHP configuration. See " "[a@./Documentation.html#faq1_16@Documentation]FAQ 1.16[/a]." msgstr "" -"가져올 데이터가 없습니다. 파일이 지정되지 않았거나 파일 크기가 PHP 설정의 최대 파일 크기를 초과했을 수 있습니다. " -"[a@./Documentation.html#faq1_16@Documentation]FAQ 1.16[/a] 참조." +"가져올 데이터가 없습니다. 파일이 지정되지 않았거나 파일 크기가 PHP 설정의 최" +"대 파일 크기를 초과했을 수 있습니다. [a@./Documentation." +"html#faq1_16@Documentation]FAQ 1.16[/a] 참조." #: import.php:372 libraries/display_import.lib.php:24 msgid "Could not load import plugins, please check your installation!" -msgstr "가져오기 플러그인을 로드할 수 없습니다. 올바로 설치되었는지 확인해주세요!" +msgstr "" +"가져오기 플러그인을 로드할 수 없습니다. 올바로 설치되었는지 확인해주세요!" #: import.php:397 msgid "The bookmark has been deleted." @@ -860,7 +855,9 @@ msgstr "가져오기를 마쳤습니다. %d 쿼리가 실행되었습니다." msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." -msgstr "스크립트 타임아웃이 통보되었습니다. 가져오기를 이어서 계속 완료시키려면 같은 파일을 다시 전송해주십시오." +msgstr "" +"스크립트 타임아웃이 통보되었습니다. 가져오기를 이어서 계속 완료시키려면 같은 " +"파일을 다시 전송해주십시오." #: import.php:426 msgid "" @@ -925,342 +922,365 @@ msgstr "호스트명이 없습니다!" msgid "The user name is empty!" msgstr "사용자명이 없습니다!" -#: js/messages.php:44 server_privileges.php:1236 user_password.php:70 +#: js/messages.php:44 server_privileges.php:1241 user_password.php:70 msgid "The password is empty!" msgstr "암호가 비었습니다!" -#: js/messages.php:45 server_privileges.php:1234 user_password.php:73 +#: js/messages.php:45 server_privileges.php:1239 user_password.php:73 msgid "The passwords aren't the same!" msgstr "암호가 동일하지 않습니다!" -#: js/messages.php:49 pmd_general.php:342 pmd_general.php:379 +#: js/messages.php:46 +#, fuzzy +#| msgid "Add a new User" +msgid "Add a New User" +msgstr "새 사용자 추가" + +#: js/messages.php:47 js/messages.php:54 pmd_general.php:342 +#: pmd_general.php:379 msgid "Cancel" msgstr "" -#: js/messages.php:52 pmd_save_pos.php:54 +#: js/messages.php:48 +#, fuzzy +msgid "Create User" +msgstr "서버 버전" + +#: js/messages.php:49 +#, fuzzy +#| msgid "Reloading the privileges" +msgid "Reloading Privileges" +msgstr "사용권한을 갱신합니다(Reloading the privileges)" + +#: js/messages.php:50 +#, fuzzy +#| msgid "Remove selected users" +msgid "Removing Selected Users" +msgstr "선택한 사용자를 삭제" + +#: js/messages.php:57 +#, fuzzy +msgid "Loading" +msgstr "Local" + +#: js/messages.php:58 +#, fuzzy +#| msgid "Processes" +msgid "Processing Request" +msgstr "프로세스 목록" + +#: js/messages.php:59 +msgid "Error in Processing Request" +msgstr "" + +#: js/messages.php:60 +msgid "Dropping Column" +msgstr "" + +#: js/messages.php:61 +msgid "Adding Primary Key" +msgstr "" + +#: js/messages.php:64 pmd_save_pos.php:54 msgid "Modifications have been saved" msgstr "수정된 내용이 저장되었습니다." -#: js/messages.php:53 pmd_relation_upd.php:49 +#: js/messages.php:65 pmd_relation_upd.php:49 msgid "Relation deleted" msgstr "" -#: js/messages.php:54 pmd_relation_new.php:64 +#: js/messages.php:66 pmd_relation_new.php:64 msgid "FOREIGN KEY relation added" msgstr "" -#: js/messages.php:55 pmd_relation_new.php:86 +#: js/messages.php:67 pmd_relation_new.php:86 msgid "Internal relation added" msgstr "" -#: js/messages.php:56 pmd_relation_new.php:63 pmd_relation_new.php:88 +#: js/messages.php:68 pmd_relation_new.php:63 pmd_relation_new.php:88 msgid "Error: Relation not added." msgstr "" -#: js/messages.php:57 pmd_relation_new.php:31 +#: js/messages.php:69 pmd_relation_new.php:31 msgid "Error: relation already exists." msgstr "" -#: js/messages.php:58 +#: js/messages.php:70 msgid "Error saving coordinates for Designer." msgstr "" -#: js/messages.php:59 libraries/relation.lib.php:107 +#: js/messages.php:71 libraries/relation.lib.php:107 #: libraries/relation.lib.php:119 msgid "General relation features" msgstr "" -#: js/messages.php:59 libraries/relation.lib.php:101 +#: js/messages.php:71 libraries/relation.lib.php:101 #: libraries/relation.lib.php:108 msgid "Disabled" msgstr "사용불가" -#: js/messages.php:60 +#: js/messages.php:72 msgid "Select referenced key" msgstr "" -#: js/messages.php:61 +#: js/messages.php:73 msgid "Select Foreign Key" msgstr "" -#: js/messages.php:62 +#: js/messages.php:74 msgid "Please select the primary key or a unique key" msgstr "" -#: js/messages.php:63 pmd_general.php:77 tbl_relation.php:548 +#: js/messages.php:75 pmd_general.php:77 tbl_relation.php:548 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" msgstr "출력할 필드 선택" #. l10n: Display text for calendar close link -#: js/messages.php:73 -#| msgid "None" +#: js/messages.php:85 msgid "Done" msgstr "완료" #. l10n: Display text for previous month link in calendar -#: js/messages.php:75 -#| msgid "Previous" +#: js/messages.php:87 msgid "Prev" msgstr "이전" #. l10n: Display text for next month link in calendar -#: js/messages.php:77 libraries/common.lib.php:2353 -#: libraries/common.lib.php:2356 libraries/display_tbl.lib.php:338 +#: js/messages.php:89 libraries/common.lib.php:2357 +#: libraries/common.lib.php:2360 libraries/display_tbl.lib.php:338 #: server_binlog.php:205 server_binlog.php:207 tbl_printview.php:424 -#: tbl_structure.php:801 +#: tbl_structure.php:799 msgid "Next" msgstr "다음" #. l10n: Display text for current month link in calendar -#: js/messages.php:79 -#| msgid "Total" +#: js/messages.php:91 msgid "Today" msgstr "오늘" -#: js/messages.php:82 -#| msgid "Binary" +#: js/messages.php:94 msgid "January" msgstr "1월" -#: js/messages.php:83 +#: js/messages.php:95 msgid "February" msgstr "2월" -#: js/messages.php:84 -#| msgid "Mar" +#: js/messages.php:96 msgid "March" msgstr "3월" -#: js/messages.php:85 -#| msgid "Apr" +#: js/messages.php:97 msgid "April" msgstr "4월" -#: js/messages.php:86 +#: js/messages.php:98 msgid "May" msgstr "5월" -#: js/messages.php:87 -#| msgid "Jun" +#: js/messages.php:99 msgid "June" msgstr "6월" -#: js/messages.php:88 -#| msgid "Jul" +#: js/messages.php:100 msgid "July" msgstr "7월" -#: js/messages.php:89 -#| msgid "Aug" +#: js/messages.php:101 msgid "August" msgstr "8월" -#: js/messages.php:90 +#: js/messages.php:102 msgid "September" msgstr "9월" -#: js/messages.php:91 -#| msgid "Oct" +#: js/messages.php:103 msgid "October" msgstr "10월" -#: js/messages.php:92 +#: js/messages.php:104 msgid "November" msgstr "11월" -#: js/messages.php:93 +#: js/messages.php:105 msgid "December" msgstr "12월" #. l10n: Short month name -#: js/messages.php:97 libraries/common.lib.php:1557 +#: js/messages.php:109 libraries/common.lib.php:1557 msgid "Jan" msgstr "1월" #. l10n: Short month name -#: js/messages.php:99 libraries/common.lib.php:1559 +#: js/messages.php:111 libraries/common.lib.php:1559 msgid "Feb" msgstr "2월" #. l10n: Short month name -#: js/messages.php:101 libraries/common.lib.php:1561 +#: js/messages.php:113 libraries/common.lib.php:1561 msgid "Mar" msgstr "3월" #. l10n: Short month name -#: js/messages.php:103 libraries/common.lib.php:1563 +#: js/messages.php:115 libraries/common.lib.php:1563 msgid "Apr" msgstr "4월" #. l10n: Short month name -#: js/messages.php:105 libraries/common.lib.php:1565 -#| msgid "May" +#: js/messages.php:117 libraries/common.lib.php:1565 msgctxt "Short month name" msgid "May" msgstr "5월" #. l10n: Short month name -#: js/messages.php:107 libraries/common.lib.php:1567 +#: js/messages.php:119 libraries/common.lib.php:1567 msgid "Jun" msgstr "6월" #. l10n: Short month name -#: js/messages.php:109 libraries/common.lib.php:1569 +#: js/messages.php:121 libraries/common.lib.php:1569 msgid "Jul" msgstr "7월" #. l10n: Short month name -#: js/messages.php:111 libraries/common.lib.php:1571 +#: js/messages.php:123 libraries/common.lib.php:1571 msgid "Aug" msgstr "8월" #. l10n: Short month name -#: js/messages.php:113 libraries/common.lib.php:1573 +#: js/messages.php:125 libraries/common.lib.php:1573 msgid "Sep" msgstr "9월" #. l10n: Short month name -#: js/messages.php:115 libraries/common.lib.php:1575 +#: js/messages.php:127 libraries/common.lib.php:1575 msgid "Oct" msgstr "10월" #. l10n: Short month name -#: js/messages.php:117 libraries/common.lib.php:1577 +#: js/messages.php:129 libraries/common.lib.php:1577 msgid "Nov" msgstr "11월" #. l10n: Short month name -#: js/messages.php:119 libraries/common.lib.php:1579 +#: js/messages.php:131 libraries/common.lib.php:1579 msgid "Dec" msgstr "12월" -#: js/messages.php:122 -#| msgid "Sun" +#: js/messages.php:134 msgid "Sunday" msgstr "일요일" -#: js/messages.php:123 -#| msgid "Mon" +#: js/messages.php:135 msgid "Monday" msgstr "월요일" -#: js/messages.php:124 -#| msgid "Tue" +#: js/messages.php:136 msgid "Tuesday" msgstr "화요일" -#: js/messages.php:125 +#: js/messages.php:137 msgid "Wednesday" msgstr "수요일" -#: js/messages.php:126 +#: js/messages.php:138 msgid "Thursday" msgstr "목요일" -#: js/messages.php:127 -#| msgid "Fri" +#: js/messages.php:139 msgid "Friday" msgstr "금요일" -#: js/messages.php:128 +#: js/messages.php:140 msgid "Saturday" msgstr "토요일" #. l10n: Short week day name -#: js/messages.php:132 libraries/common.lib.php:1582 +#: js/messages.php:144 libraries/common.lib.php:1582 msgid "Sun" msgstr "일" #. l10n: Short week day name -#: js/messages.php:134 libraries/common.lib.php:1584 +#: js/messages.php:146 libraries/common.lib.php:1584 msgid "Mon" msgstr "월" #. l10n: Short week day name -#: js/messages.php:136 libraries/common.lib.php:1586 +#: js/messages.php:148 libraries/common.lib.php:1586 msgid "Tue" msgstr "화" #. l10n: Short week day name -#: js/messages.php:138 libraries/common.lib.php:1588 +#: js/messages.php:150 libraries/common.lib.php:1588 msgid "Wed" msgstr "수" #. l10n: Short week day name -#: js/messages.php:140 libraries/common.lib.php:1590 +#: js/messages.php:152 libraries/common.lib.php:1590 msgid "Thu" msgstr "목" #. l10n: Short week day name -#: js/messages.php:142 libraries/common.lib.php:1592 +#: js/messages.php:154 libraries/common.lib.php:1592 msgid "Fri" msgstr "금" #. l10n: Short week day name -#: js/messages.php:144 libraries/common.lib.php:1594 +#: js/messages.php:156 libraries/common.lib.php:1594 msgid "Sat" msgstr "토" #. l10n: Minimal week day name -#: js/messages.php:148 -#| msgid "Sun" +#: js/messages.php:160 msgid "Su" msgstr "일" #. l10n: Minimal week day name -#: js/messages.php:150 -#| msgid "Mon" +#: js/messages.php:162 msgid "Mo" msgstr "월" #. l10n: Minimal week day name -#: js/messages.php:152 -#| msgid "Tue" +#: js/messages.php:164 msgid "Tu" msgstr "화" #. l10n: Minimal week day name -#: js/messages.php:154 -#| msgid "Wed" +#: js/messages.php:166 msgid "We" msgstr "수" #. l10n: Minimal week day name -#: js/messages.php:156 -#| msgid "Thu" +#: js/messages.php:168 msgid "Th" msgstr "목" #. l10n: Minimal week day name -#: js/messages.php:158 -#| msgid "Fri" +#: js/messages.php:170 msgid "Fr" msgstr "금" #. l10n: Minimal week day name -#: js/messages.php:160 -#| msgid "Sat" +#: js/messages.php:172 msgid "Sa" msgstr "토" #. l10n: Column header for week of the year in calendar -#: js/messages.php:162 +#: js/messages.php:174 msgid "Wk" msgstr "주" -#: js/messages.php:164 +#: js/messages.php:176 msgid "Hour" msgstr "시" -#: js/messages.php:165 -#| msgid "in use" +#: js/messages.php:177 msgid "Minute" msgstr "분" -#: js/messages.php:166 -#| msgid "Records" +#: js/messages.php:178 msgid "Second" msgstr "초" @@ -1275,7 +1295,9 @@ msgstr "파일 업로드 중에 알 수 없는 오류가 발생했습니다." #: libraries/File.class.php:414 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." -msgstr "php.ini 파일에 지정된 upload_max_filesize 값보다 더 큰 파일이 업로드되었습니다." +msgstr "" +"php.ini 파일에 지정된 upload_max_filesize 값보다 더 큰 파일이 업로드되었습니" +"다." #: libraries/File.class.php:417 msgid "" @@ -1304,8 +1326,8 @@ msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" msgstr "" -"업로드된 파일을 이동시킬 수 없었습니다. [a@./Documentation.html#faq1_11@Documentation]FAQ " -"1.11[/a] 참조." +"업로드된 파일을 이동시킬 수 없었습니다. [a@./Documentation." +"html#faq1_11@Documentation]FAQ 1.11[/a] 참조." #: libraries/Index.class.php:428 tbl_relation.php:529 msgid "No index defined!" @@ -1317,7 +1339,7 @@ msgstr "인덱스" #: libraries/Index.class.php:444 libraries/mult_submits.inc.php:103 #: libraries/tbl_properties.inc.php:519 tbl_structure.php:33 -#: tbl_structure.php:155 tbl_structure.php:159 tbl_structure.php:474 +#: tbl_structure.php:155 tbl_structure.php:159 tbl_structure.php:472 #: tbl_tracking.php:322 msgid "Unique" msgstr "고유값" @@ -1359,8 +1381,8 @@ msgid "" "removed." msgstr "" -#: libraries/List_Database.class.php:431 libraries/server_links.inc.php:41 -#: server_databases.php:88 server_privileges.php:1660 +#: libraries/List_Database.class.php:431 libraries/server_links.inc.php:42 +#: server_databases.php:88 server_privileges.php:1680 #: setup/lib/messages.inc.php:110 test/theme.php:93 msgid "Databases" msgstr "데이터베이스 " @@ -1480,7 +1502,9 @@ msgstr "%s에 오셨습니다" msgid "" "You probably did not create a configuration file. You might want to use the %" "1$ssetup script%2$s to create one." -msgstr "설정 파일을 생성하지 않은 것 같습니다. %1$ssetup script%2$s 를 사용해 설정 파일을 생성할 수 있습니다." +msgstr "" +"설정 파일을 생성하지 않은 것 같습니다. %1$ssetup script%2$s 를 사용해 설정 파" +"일을 생성할 수 있습니다." #: libraries/auth/config.auth.lib.php:116 msgid "" @@ -1522,7 +1546,7 @@ msgstr "암호:" msgid "Server Choice" msgstr "서버 선택" -#: libraries/auth/cookie.auth.lib.php:320 libraries/header.inc.php:59 +#: libraries/auth/cookie.auth.lib.php:320 libraries/header.inc.php:63 msgid "Cookies must be enabled past this point." msgstr "이 페이지를 넘기려면 쿠키 사용을 허용해야 합니다." @@ -1536,7 +1560,8 @@ msgstr "" #: libraries/auth/signon.auth.lib.php:185 #, php-format msgid "No activity within %s seconds; please log in again" -msgstr "최근 %s초 동안 아무 동작이 없어 로그아웃 되었습니다. 다시 로그인해주세요." +msgstr "" +"최근 %s초 동안 아무 동작이 없어 로그아웃 되었습니다. 다시 로그인해주세요." #: libraries/auth/cookie.auth.lib.php:685 #: libraries/auth/cookie.auth.lib.php:687 @@ -1596,10 +1621,10 @@ msgid "" "Couldn't use the iconv, libiconv, or recode_string functions, although the " "necessary extensions appear to be loaded. Check your PHP configuration." msgstr "" -"필요한 확장기능이 로드된 것 같지만 iconv, libiconv, 혹은 recode_string 함수를 사용할 수 없습니다. PHP " -"설정을 확인해주십시오." +"필요한 확장기능이 로드된 것 같지만 iconv, libiconv, 혹은 recode_string 함수" +"를 사용할 수 없습니다. PHP 설정을 확인해주십시오." -#: libraries/common.inc.php:583 +#: libraries/common.inc.php:587 msgid "" "phpMyAdmin was unable to read your configuration file!
This might " "happen if PHP finds a parse error in it or PHP cannot find the file.
만약 아무것도 보이지 않으면, " "정상적인 것입니다." -#: libraries/common.inc.php:594 +#: libraries/common.inc.php:598 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "" -#: libraries/common.inc.php:599 +#: libraries/common.inc.php:603 msgid "" "The $cfg['PmaAbsoluteUri'] directive MUST be set in your " "configuration file!" msgstr "환경설정 파일에서 $cfg['PmaAbsoluteUri'] 주소를 기입하십시오!" -#: libraries/common.inc.php:629 +#: libraries/common.inc.php:633 #, php-format msgid "Invalid server index: %s" msgstr "" -#: libraries/common.inc.php:636 +#: libraries/common.inc.php:640 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" -#: libraries/common.inc.php:645 libraries/header.inc.php:96 +#: libraries/common.inc.php:649 libraries/header.inc.php:100 #: libraries/select_server.lib.php:41 libraries/select_server.lib.php:47 #: main.php:185 test/theme.php:57 msgid "Server" msgstr "서버" -#: libraries/common.inc.php:823 +#: libraries/common.inc.php:827 msgid "Invalid authentication method set in configuration:" msgstr "" -#: libraries/common.inc.php:926 +#: libraries/common.inc.php:930 #, php-format msgid "You should upgrade to %s %s or later." msgstr "" @@ -1776,45 +1801,45 @@ msgstr "." msgid "%B %d, %Y at %I:%M %p" msgstr "%y-%m-%d %H:%M " -#: libraries/common.lib.php:1907 +#: libraries/common.lib.php:1911 #, fuzzy, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s일 %s시간 %분 %초" -#: libraries/common.lib.php:2322 libraries/common.lib.php:2325 +#: libraries/common.lib.php:2326 libraries/common.lib.php:2329 #: libraries/display_tbl.lib.php:290 server_status.php:719 msgid "Begin" msgstr "처음" -#: libraries/common.lib.php:2323 libraries/common.lib.php:2326 +#: libraries/common.lib.php:2327 libraries/common.lib.php:2330 #: libraries/display_tbl.lib.php:291 server_binlog.php:168 #: server_binlog.php:170 msgid "Previous" msgstr "이전" -#: libraries/common.lib.php:2354 libraries/common.lib.php:2357 +#: libraries/common.lib.php:2358 libraries/common.lib.php:2361 #: libraries/display_tbl.lib.php:353 msgid "End" msgstr "마지막" -#: libraries/common.lib.php:2430 +#: libraries/common.lib.php:2434 #, php-format msgid "Jump to database "%s"." msgstr "데이터베이스 "%s" 로 이동." -#: libraries/common.lib.php:2450 +#: libraries/common.lib.php:2454 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" -#: libraries/common.lib.php:2830 libraries/common.lib.php:2837 +#: libraries/common.lib.php:2834 libraries/common.lib.php:2841 #: libraries/db_links.inc.php:68 libraries/export/sql.php:25 -#: libraries/import/sql.php:18 libraries/server_links.inc.php:45 +#: libraries/import/sql.php:18 libraries/server_links.inc.php:46 #: libraries/tbl_links.inc.php:60 querywindow.php:99 test/theme.php:97 msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2839 libraries/db_links.inc.php:104 +#: libraries/common.lib.php:2843 libraries/db_links.inc.php:104 #: libraries/tbl_links.inc.php:95 libraries/tbl_links.inc.php:117 #: view_operations.php:89 msgid "Operations" @@ -1826,8 +1851,8 @@ msgid "" "Cannot load [a@http://php.net/%1$s@Documentation][em]%1$s[/em][/a] " "extension. Please check your PHP configuration." msgstr "" -"[a@http://php.net/%1$s@Documentation][em]%1$s[/em][/a] 확장모듈을 불러올 수 없습니다. PHP " -"설정을 확인해주세요." +"[a@http://php.net/%1$s@Documentation][em]%1$s[/em][/a] 확장모듈을 불러올 수 " +"없습니다. PHP 설정을 확인해주세요." #: libraries/db_events.inc.php:20 libraries/db_events.inc.php:22 #: libraries/export/sql.php:415 @@ -1863,16 +1888,16 @@ msgstr "질의 마법사" msgid "Designer" msgstr "" -#: libraries/db_links.inc.php:98 libraries/server_links.inc.php:88 +#: libraries/db_links.inc.php:98 libraries/server_links.inc.php:89 #: libraries/tbl_links.inc.php:91 pmd_pdf.php:84 pmd_pdf.php:110 #: setup/frames/menu.inc.php:21 #, fuzzy msgid "Import" msgstr "내보내기" -#: libraries/db_links.inc.php:111 libraries/server_links.inc.php:66 -#: server_privileges.php:111 server_privileges.php:1722 -#: server_privileges.php:2071 test/theme.php:117 +#: libraries/db_links.inc.php:111 libraries/server_links.inc.php:67 +#: server_privileges.php:112 server_privileges.php:1742 +#: server_privileges.php:2092 test/theme.php:117 msgid "Privileges" msgstr "사용권한" @@ -1891,7 +1916,7 @@ msgid "" msgstr "" #: libraries/db_structure.lib.php:69 server_databases.php:142 -#: tbl_printview.php:336 tbl_structure.php:682 +#: tbl_printview.php:336 tbl_structure.php:680 msgid "Overhead" msgstr "부담" @@ -1908,7 +1933,7 @@ msgstr "서버 응답이 없습니다" msgid "(or the local MySQL server's socket is not correctly configured)" msgstr "" -#: libraries/dbi/mysql.dbi.lib.php:362 tbl_structure.php:608 +#: libraries/dbi/mysql.dbi.lib.php:362 tbl_structure.php:606 msgid "Details..." msgstr "" @@ -1918,22 +1943,22 @@ msgid "Change password" msgstr "암호 변경" #: libraries/display_change_password.lib.php:35 -#: libraries/replication_gui.lib.php:345 server_privileges.php:807 +#: libraries/replication_gui.lib.php:345 server_privileges.php:808 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:796 -#: server_privileges.php:800 server_privileges.php:811 -#: server_privileges.php:1538 server_synchronize.php:1175 +#: libraries/replication_gui.lib.php:349 server_privileges.php:797 +#: server_privileges.php:801 server_privileges.php:812 +#: server_privileges.php:1558 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:815 server_privileges.php:818 +#: server_privileges.php:816 server_privileges.php:819 msgid "Re-type" msgstr "재입력" @@ -1946,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:822 +#: libraries/replication_gui.lib.php:360 server_privileges.php:823 msgid "Generate Password" msgstr "" #: libraries/display_change_password.lib.php:75 -#: libraries/replication_gui.lib.php:363 server_privileges.php:825 +#: libraries/replication_gui.lib.php:363 server_privileges.php:826 msgid "Generate" msgstr "" @@ -1964,13 +1989,12 @@ msgstr "새 데이터베이스 만들기" msgid "Create" msgstr " 만들기 " -#: libraries/display_create_database.lib.php:40 server_privileges.php:113 -#: server_privileges.php:1427 server_replication.php:35 +#: libraries/display_create_database.lib.php:40 server_privileges.php:114 +#: server_privileges.php:1447 server_replication.php:35 msgid "No Privileges" msgstr "권한 없음" #: libraries/display_create_table.lib.php:41 -#| msgid "You have to choose at least one column to display" msgid "Table must have at least one column." msgstr "테이블은 적어도 1개 이상의 컬럼을 갖고 있어야 합니다." @@ -1980,13 +2004,13 @@ msgid "Create table on database %s" msgstr "데이터베이스 %s에 새로운 테이블을 만듭니다." #: libraries/display_create_table.lib.php:57 -#| msgid "Number of rows per page" msgid "Number of columns" msgstr "컬럼수" #: libraries/display_export.lib.php:42 msgid "Could not load export plugins, please check your installation!" -msgstr "내보내기 플러그인을 로드할 수 없습니다. 올바로 설치되었는지 확인해주세요!" +msgstr "" +"내보내기 플러그인을 로드할 수 없습니다. 올바로 설치되었는지 확인해주세요!" #: libraries/display_export.lib.php:107 #, fuzzy, php-format @@ -2051,7 +2075,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:1875 server_processlist.php:75 +#: server_privileges.php:1895 server_processlist.php:75 msgid "None" msgstr "없음" @@ -2236,7 +2260,7 @@ msgstr "" #: libraries/import/docsql.php:34 libraries/import/ldi.php:47 #: libraries/import/ods.php:30 libraries/import/sql.php:20 #: libraries/import/xls.php:26 libraries/import/xlsx.php:26 -#: libraries/import/xml.php:25 tbl_select.php:267 tbl_structure.php:753 +#: libraries/import/xml.php:25 tbl_select.php:267 tbl_structure.php:751 #, fuzzy msgid "Options" msgstr "테이블 작업" @@ -2312,7 +2336,7 @@ msgstr "질의 실행시간 %01.4f 초" #: libraries/display_tbl.lib.php:2089 libraries/mult_submits.inc.php:113 #: querywindow.php:125 querywindow.php:129 querywindow.php:132 -#: tbl_structure.php:25 tbl_structure.php:150 tbl_structure.php:470 +#: tbl_structure.php:25 tbl_structure.php:150 tbl_structure.php:468 msgid "Change" msgstr "변경" @@ -2379,7 +2403,7 @@ msgstr "" #: libraries/engines/innodb.lib.php:194 server_databases.php:137 #: server_databases.php:305 server_status.php:525 server_status.php:586 -#: server_status.php:607 tbl_printview.php:351 tbl_structure.php:696 +#: server_status.php:607 tbl_printview.php:351 tbl_structure.php:694 msgid "Total" msgstr "전체 사용량" @@ -2625,7 +2649,7 @@ msgid "" msgstr "" #: libraries/export/codegen.php:37 setup/lib/messages.inc.php:88 -#: tbl_printview.php:376 tbl_structure.php:737 +#: tbl_printview.php:376 tbl_structure.php:735 msgid "Format" msgstr "Format" @@ -2697,8 +2721,8 @@ 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:576 server_replication.php:316 tbl_printview.php:317 -#: tbl_structure.php:665 +#: server_privileges.php:577 server_replication.php:316 tbl_printview.php:317 +#: tbl_structure.php:663 msgid "Data" msgstr "데이터" @@ -2749,9 +2773,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:731 -#: server_privileges.php:734 server_privileges.php:790 -#: server_privileges.php:1537 server_privileges.php:2069 +#: libraries/replication_gui.lib.php:329 server_privileges.php:732 +#: server_privileges.php:735 server_privileges.php:791 +#: server_privileges.php:1557 server_privileges.php:2090 #: server_processlist.php:55 server_synchronize.php:1159 msgid "Host" msgstr "호스트" @@ -2950,7 +2974,7 @@ msgstr "" msgid "Open new phpMyAdmin window" msgstr "" -#: libraries/header.inc.php:115 +#: libraries/header.inc.php:119 #, fuzzy msgid "New table" msgstr "테이블이 없습니다" @@ -3110,20 +3134,20 @@ 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 +#: tbl_structure.php:471 msgid "Primary" msgstr "기본" #: libraries/mult_submits.inc.php:98 libraries/tbl_properties.inc.php:116 #: libraries/tbl_properties.inc.php:525 tbl_printview.php:326 #: tbl_structure.php:31 tbl_structure.php:154 tbl_structure.php:158 -#: tbl_structure.php:475 tbl_structure.php:673 +#: tbl_structure.php:473 tbl_structure.php:671 msgid "Index" msgstr "인덱스" #: libraries/mult_submits.inc.php:108 libraries/tbl_properties.inc.php:531 #: tbl_structure.php:35 tbl_structure.php:156 tbl_structure.php:160 -#: tbl_structure.php:478 +#: tbl_structure.php:476 msgid "Fulltext" msgstr "Fulltext" @@ -3426,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:711 -#: server_privileges.php:714 server_privileges.php:721 +#: libraries/replication_gui.lib.php:259 server_privileges.php:712 +#: server_privileges.php:715 server_privileges.php:722 #: server_synchronize.php:1171 msgid "User name" msgstr "사용자명" @@ -3452,7 +3476,7 @@ msgstr "변수" #: 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 +#: tbl_structure.php:727 msgid "Value" msgstr "값" @@ -3471,34 +3495,34 @@ msgstr "" msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:254 server_privileges.php:716 +#: libraries/replication_gui.lib.php:254 server_privileges.php:717 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:717 -#: server_privileges.php:784 server_privileges.php:808 -#: server_privileges.php:1928 server_privileges.php:1958 +#: libraries/replication_gui.lib.php:346 server_privileges.php:718 +#: server_privileges.php:785 server_privileges.php:809 +#: server_privileges.php:1948 server_privileges.php:1978 msgid "Use text field" msgstr "" -#: libraries/replication_gui.lib.php:302 server_privileges.php:764 +#: libraries/replication_gui.lib.php:302 server_privileges.php:765 msgid "Any host" msgstr "아무데서나" -#: libraries/replication_gui.lib.php:306 server_privileges.php:768 +#: libraries/replication_gui.lib.php:306 server_privileges.php:769 msgid "Local" msgstr "Local" -#: libraries/replication_gui.lib.php:312 server_privileges.php:773 +#: libraries/replication_gui.lib.php:312 server_privileges.php:774 msgid "This Host" msgstr "" -#: libraries/replication_gui.lib.php:318 server_privileges.php:779 +#: libraries/replication_gui.lib.php:318 server_privileges.php:780 msgid "Use Host Table" msgstr "" -#: libraries/replication_gui.lib.php:331 server_privileges.php:792 +#: libraries/replication_gui.lib.php:331 server_privileges.php:793 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -3533,30 +3557,30 @@ msgstr "" msgid "Servers" msgstr "서버" -#: libraries/server_links.inc.php:53 server_engines.php:112 +#: libraries/server_links.inc.php:54 server_engines.php:112 #: server_engines.php:116 server_status.php:415 test/theme.php:105 msgid "Variables" msgstr "환경설정값" -#: libraries/server_links.inc.php:57 test/theme.php:109 +#: libraries/server_links.inc.php:58 test/theme.php:109 msgid "Charsets" msgstr "" -#: libraries/server_links.inc.php:61 test/theme.php:113 +#: libraries/server_links.inc.php:62 test/theme.php:113 msgid "Engines" msgstr "" -#: libraries/server_links.inc.php:76 server_binlog.php:110 +#: libraries/server_links.inc.php:77 server_binlog.php:110 #: server_status.php:364 test/theme.php:121 #, fuzzy msgid "Binary log" msgstr "바이너리" -#: libraries/server_links.inc.php:80 +#: libraries/server_links.inc.php:81 msgid "Processes" msgstr "프로세스 목록" -#: libraries/server_links.inc.php:92 server_synchronize.php:1092 +#: libraries/server_links.inc.php:93 server_synchronize.php:1092 #: server_synchronize.php:1100 msgid "Synchronize" msgstr "" @@ -3790,12 +3814,12 @@ msgstr "" msgid "Save" msgstr "저장" -#: libraries/tbl_properties.inc.php:780 tbl_structure.php:542 +#: libraries/tbl_properties.inc.php:780 tbl_structure.php:540 #, fuzzy, php-format msgid "Add %s column(s)" msgstr "필드 추가하기" -#: libraries/tbl_properties.inc.php:784 tbl_structure.php:536 +#: libraries/tbl_properties.inc.php:784 tbl_structure.php:534 #, fuzzy #| msgid "You have to choose at least one column to display" msgid "You have to add at least one column." @@ -3931,8 +3955,8 @@ msgstr "리세트" msgid "Protocol version" msgstr "" -#: main.php:189 server_privileges.php:1389 server_privileges.php:1536 -#: server_privileges.php:1650 server_privileges.php:2068 +#: main.php:189 server_privileges.php:1406 server_privileges.php:1556 +#: server_privileges.php:1670 server_privileges.php:2089 #: server_processlist.php:54 msgid "User" msgstr "사용자" @@ -4364,114 +4388,114 @@ msgstr "" msgid "View dump (schema) of databases" msgstr "데이터베이스의 덤프(스키마) 데이터 보기" -#: server_privileges.php:24 server_privileges.php:266 +#: server_privileges.php:25 server_privileges.php:267 msgid "Includes all privileges except GRANT." msgstr "GRANT 이외의 모든 권한을 포함함." -#: server_privileges.php:25 server_privileges.php:192 -#: server_privileges.php:515 +#: server_privileges.php:26 server_privileges.php:193 +#: server_privileges.php:516 msgid "Allows altering the structure of existing tables." msgstr "테이블 구조 변경 허용." -#: server_privileges.php:26 server_privileges.php:208 -#: server_privileges.php:521 +#: server_privileges.php:27 server_privileges.php:209 +#: server_privileges.php:522 #, fuzzy msgid "Allows altering and dropping stored routines." msgstr "인덱스 생성 및 삭제 허용." -#: server_privileges.php:27 server_privileges.php:184 -#: server_privileges.php:514 +#: server_privileges.php:28 server_privileges.php:185 +#: server_privileges.php:515 msgid "Allows creating new databases and tables." msgstr "DB 및 테이블 생성 허용." -#: server_privileges.php:28 server_privileges.php:207 -#: server_privileges.php:520 +#: server_privileges.php:29 server_privileges.php:208 +#: server_privileges.php:521 #, fuzzy msgid "Allows creating stored routines." msgstr "테이블 생성 허용." -#: server_privileges.php:29 server_privileges.php:514 +#: server_privileges.php:30 server_privileges.php:515 msgid "Allows creating new tables." msgstr "테이블 생성 허용." -#: server_privileges.php:30 server_privileges.php:195 -#: server_privileges.php:518 +#: server_privileges.php:31 server_privileges.php:196 +#: server_privileges.php:519 msgid "Allows creating temporary tables." msgstr "임시테이블 생성 허용." -#: server_privileges.php:31 server_privileges.php:209 -#: server_privileges.php:554 +#: server_privileges.php:32 server_privileges.php:210 +#: server_privileges.php:555 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 +#: server_privileges.php:33 server_privileges.php:200 +#: server_privileges.php:204 server_privileges.php:527 +#: server_privileges.php:531 #, fuzzy msgid "Allows creating new views." msgstr "테이블 생성 허용." -#: server_privileges.php:33 server_privileges.php:183 -#: server_privileges.php:506 +#: server_privileges.php:34 server_privileges.php:184 +#: server_privileges.php:507 msgid "Allows deleting data." msgstr "데이터 삭제 허용." -#: server_privileges.php:34 server_privileges.php:185 -#: server_privileges.php:517 +#: server_privileges.php:35 server_privileges.php:186 +#: server_privileges.php:518 msgid "Allows dropping databases and tables." msgstr "DB 및 테이블 삭제 허용." -#: server_privileges.php:35 server_privileges.php:517 +#: server_privileges.php:36 server_privileges.php:518 msgid "Allows dropping tables." msgstr "테이블 삭제 허용." -#: server_privileges.php:36 server_privileges.php:200 -#: server_privileges.php:534 +#: server_privileges.php:37 server_privileges.php:201 +#: server_privileges.php:535 msgid "Allows to set up events for the event scheduler" msgstr "" -#: server_privileges.php:37 server_privileges.php:210 -#: server_privileges.php:522 +#: server_privileges.php:38 server_privileges.php:211 +#: server_privileges.php:523 msgid "Allows executing stored routines." msgstr "" -#: server_privileges.php:38 server_privileges.php:189 -#: server_privileges.php:509 +#: server_privileges.php:39 server_privileges.php:190 +#: server_privileges.php:510 msgid "Allows importing data from and exporting data into files." msgstr "데이터를 파일에서 가져오기 및 파일로 내보내기 허용." -#: server_privileges.php:39 server_privileges.php:540 +#: server_privileges.php:40 server_privileges.php:541 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "권한 테이블을 갱신하지 않고 사용자와 권한 추가하기 허용." -#: server_privileges.php:40 server_privileges.php:191 -#: server_privileges.php:516 +#: server_privileges.php:41 server_privileges.php:192 +#: server_privileges.php:517 msgid "Allows creating and dropping indexes." msgstr "인덱스 생성 및 삭제 허용." -#: server_privileges.php:41 server_privileges.php:181 -#: server_privileges.php:442 server_privileges.php:504 +#: server_privileges.php:42 server_privileges.php:182 +#: server_privileges.php:443 server_privileges.php:505 msgid "Allows inserting and replacing data." msgstr "데이터 추가(insert) 및 변경(replace) 허용." -#: server_privileges.php:42 server_privileges.php:196 -#: server_privileges.php:549 +#: server_privileges.php:43 server_privileges.php:197 +#: server_privileges.php:550 msgid "Allows locking tables for the current thread." msgstr "현재 쓰레드에 대한 테이블 잠금(lock) 허용." -#: server_privileges.php:43 server_privileges.php:646 -#: server_privileges.php:648 +#: server_privileges.php:44 server_privileges.php:647 +#: server_privileges.php:649 msgid "Limits the number of new connections the user may open per hour." msgstr "Limits the number of new connections the user may open per hour." -#: server_privileges.php:44 server_privileges.php:634 -#: server_privileges.php:636 +#: server_privileges.php:45 server_privileges.php:635 +#: server_privileges.php:637 msgid "Limits the number of queries the user may send to the server per hour." msgstr "Limits the number of queries the user may send to the server per hour." -#: server_privileges.php:45 server_privileges.php:640 -#: server_privileges.php:642 +#: server_privileges.php:46 server_privileges.php:641 +#: server_privileges.php:643 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -4479,217 +4503,217 @@ 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 +#: server_privileges.php:47 server_privileges.php:653 +#: server_privileges.php:655 #, fuzzy msgid "Limits the number of simultaneous connections the user may have." msgstr "Limits the number of new connections the user may open per hour." -#: server_privileges.php:47 server_privileges.php:188 -#: server_privileges.php:544 +#: server_privileges.php:48 server_privileges.php:189 +#: server_privileges.php:545 msgid "Allows viewing processes of all users" msgstr "" -#: server_privileges.php:48 server_privileges.php:190 -#: server_privileges.php:448 server_privileges.php:550 +#: server_privileges.php:49 server_privileges.php:191 +#: server_privileges.php:449 server_privileges.php:551 msgid "Has no effect in this MySQL version." msgstr "이 버전의 MySQL에는 소용이 없습니다." -#: server_privileges.php:49 server_privileges.php:186 -#: server_privileges.php:545 +#: server_privileges.php:50 server_privileges.php:187 +#: server_privileges.php:546 msgid "Allows reloading server settings and flushing the server's caches." msgstr "캐시를 비우고 서버를 재시동하는 것을 허용." -#: server_privileges.php:50 server_privileges.php:198 -#: server_privileges.php:552 +#: server_privileges.php:51 server_privileges.php:199 +#: server_privileges.php:553 msgid "Allows the user to ask where the slaves / masters are." msgstr "" -#: server_privileges.php:51 server_privileges.php:197 -#: server_privileges.php:553 +#: server_privileges.php:52 server_privileges.php:198 +#: server_privileges.php:554 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 +#: server_privileges.php:53 server_privileges.php:181 +#: server_privileges.php:440 server_privileges.php:504 msgid "Allows reading data." msgstr "데이터 읽기 허용." -#: server_privileges.php:53 server_privileges.php:193 -#: server_privileges.php:547 +#: server_privileges.php:54 server_privileges.php:194 +#: server_privileges.php:548 msgid "Gives access to the complete list of databases." msgstr "전체 데이터베이스 목록 접근을 허용" -#: server_privileges.php:54 server_privileges.php:204 -#: server_privileges.php:206 server_privileges.php:519 +#: server_privileges.php:55 server_privileges.php:205 +#: server_privileges.php:207 server_privileges.php:520 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "" -#: server_privileges.php:55 server_privileges.php:187 -#: server_privileges.php:546 +#: server_privileges.php:56 server_privileges.php:188 +#: server_privileges.php:547 msgid "Allows shutting down the server." msgstr "서버 종료 허용." -#: server_privileges.php:56 server_privileges.php:194 -#: server_privileges.php:543 +#: server_privileges.php:57 server_privileges.php:195 +#: server_privileges.php:544 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " "killing threads of other users." msgstr "" -#: server_privileges.php:57 server_privileges.php:201 -#: server_privileges.php:535 +#: server_privileges.php:58 server_privileges.php:202 +#: server_privileges.php:536 #, fuzzy msgid "Allows creating and dropping triggers" msgstr "인덱스 생성 및 삭제 허용." -#: server_privileges.php:58 server_privileges.php:182 -#: server_privileges.php:445 server_privileges.php:505 +#: server_privileges.php:59 server_privileges.php:183 +#: server_privileges.php:446 server_privileges.php:506 msgid "Allows changing data." msgstr "데이터 변경 허용." -#: server_privileges.php:59 server_privileges.php:260 +#: server_privileges.php:60 server_privileges.php:261 msgid "No privileges." msgstr "권한 없음." -#: server_privileges.php:302 server_privileges.php:303 +#: server_privileges.php:303 server_privileges.php:304 #, fuzzy #| msgid "None" msgctxt "None privileges" msgid "None" msgstr "없음" -#: server_privileges.php:431 server_privileges.php:566 -#: server_privileges.php:1718 server_privileges.php:1724 +#: server_privileges.php:432 server_privileges.php:567 +#: server_privileges.php:1738 server_privileges.php:1744 msgid "Table-specific privileges" msgstr "테이블에 관한 권한" -#: server_privileges.php:432 server_privileges.php:574 -#: server_privileges.php:1540 +#: server_privileges.php:433 server_privileges.php:575 +#: server_privileges.php:1560 msgid " Note: MySQL privilege names are expressed in English " msgstr " 주의: MySQL 권한 이름은 영어로 표기되어야 합니다. " -#: server_privileges.php:563 server_privileges.php:1539 +#: server_privileges.php:564 server_privileges.php:1559 msgid "Global privileges" msgstr "전체적 권한" -#: server_privileges.php:565 server_privileges.php:1718 +#: server_privileges.php:566 server_privileges.php:1738 msgid "Database-specific privileges" msgstr "데이터베이스에 관한 권한" -#: server_privileges.php:610 +#: server_privileges.php:611 msgid "Administration" msgstr "" -#: server_privileges.php:630 +#: server_privileges.php:631 msgid "Resource limits" msgstr "리소스 제한" -#: server_privileges.php:631 +#: server_privileges.php:632 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "주의: 이 옵션을 0으로 하면 제한이 없어집니다." -#: server_privileges.php:708 +#: server_privileges.php:709 msgid "Login Information" msgstr "로그인 정보" -#: server_privileges.php:802 +#: server_privileges.php:803 msgid "Do not change the password" msgstr "암호를 변경하지 않음" -#: server_privileges.php:843 server_privileges.php:2205 +#: server_privileges.php:844 server_privileges.php:2226 #, fuzzy #| msgid "No user(s) found." msgid "No user found." msgstr "사용자가 없습니다." -#: server_privileges.php:887 +#: server_privileges.php:888 #, php-format msgid "The user %s already exists!" msgstr "사용자 %s 가 이미 존재합니다!" -#: server_privileges.php:970 +#: server_privileges.php:971 msgid "You have added a new user." msgstr "새 사용자를 추가했습니다." -#: server_privileges.php:1191 +#: server_privileges.php:1196 #, php-format msgid "You have updated the privileges for %s." msgstr "%s 의 권한을 업데이트했습니다." -#: server_privileges.php:1215 +#: server_privileges.php:1220 #, php-format msgid "You have revoked the privileges for %s" msgstr "%s의 권한을 제거했습니다." -#: server_privileges.php:1251 +#: server_privileges.php:1256 #, php-format msgid "The password for %s was changed successfully." msgstr "%s 의 암호가 바뀌었습니다." -#: server_privileges.php:1271 +#: server_privileges.php:1276 #, php-format msgid "Deleting %s" msgstr " %s 을 삭제합니다" -#: server_privileges.php:1282 +#: server_privileges.php:1287 msgid "No users selected for deleting!" msgstr "" -#: server_privileges.php:1285 +#: server_privileges.php:1290 msgid "Reloading the privileges" msgstr "사용권한을 갱신합니다(Reloading the privileges)" -#: server_privileges.php:1300 +#: server_privileges.php:1305 msgid "The selected users have been deleted successfully." msgstr "선택한 사용자들을 삭제했습니다." -#: server_privileges.php:1335 +#: server_privileges.php:1344 msgid "The privileges were reloaded successfully." msgstr "권한을 다시 로딩했습니다." -#: server_privileges.php:1363 server_privileges.php:1649 +#: server_privileges.php:1380 server_privileges.php:1669 msgid "Edit Privileges" msgstr "권한 수정" -#: server_privileges.php:1372 +#: server_privileges.php:1389 msgid "Revoke" msgstr "제거" -#: server_privileges.php:1404 +#: server_privileges.php:1424 msgid "User overview" msgstr "사용자 개요" -#: server_privileges.php:1541 server_privileges.php:1723 -#: server_privileges.php:2072 +#: server_privileges.php:1561 server_privileges.php:1743 +#: server_privileges.php:2093 #, fuzzy msgid "Grant" msgstr "인쇄" -#: server_privileges.php:1560 server_privileges.php:2162 +#: server_privileges.php:1580 server_privileges.php:2183 msgid "Any" msgstr "Any" -#: server_privileges.php:1609 server_privileges.php:1633 -#: server_privileges.php:2027 server_privileges.php:2216 +#: server_privileges.php:1629 server_privileges.php:1653 +#: server_privileges.php:2048 server_privileges.php:2237 msgid "Add a new User" msgstr "새 사용자 추가" -#: server_privileges.php:1614 +#: server_privileges.php:1634 msgid "Remove selected users" msgstr "선택한 사용자를 삭제" -#: server_privileges.php:1617 +#: server_privileges.php:1637 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 +#: server_privileges.php:1638 server_privileges.php:1639 +#: server_privileges.php:1640 msgid "Drop the databases that have the same names as the users." msgstr "사용자명과 같은 이름의 데이터베이스를 삭제" -#: server_privileges.php:1636 +#: server_privileges.php:1656 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -4698,94 +4722,94 @@ msgid "" "sreload the privileges%s before you continue." msgstr "" -#: server_privileges.php:1684 +#: server_privileges.php:1704 msgid "The selected user was not found in the privilege table." msgstr "선택한 사용자는 사용권한 테이블에 존재하지 않습니다." -#: server_privileges.php:1724 +#: server_privileges.php:1744 msgid "Column-specific privileges" msgstr "열(칼럼)에 관한 권한" -#: server_privileges.php:1925 +#: server_privileges.php:1945 msgid "Add privileges on the following database" msgstr "다음 데이터베이스에 권한 추가하기" -#: server_privileges.php:1943 +#: server_privileges.php:1963 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" -#: server_privileges.php:1946 +#: server_privileges.php:1966 msgid "Add privileges on the following table" msgstr "다음 테이블에 권한 추가하기" -#: server_privileges.php:2003 +#: server_privileges.php:2023 msgid "Change Login Information / Copy User" msgstr "" -#: server_privileges.php:2006 +#: server_privileges.php:2026 msgid "Create a new user with the same privileges and ..." msgstr "" -#: server_privileges.php:2008 +#: server_privileges.php:2028 msgid "... keep the old one." msgstr "" -#: server_privileges.php:2009 +#: server_privileges.php:2029 #, fuzzy msgid " ... delete the old one from the user tables." msgstr "권한 테이블에서 사용자를 삭제하기만 함." -#: server_privileges.php:2010 +#: server_privileges.php:2030 #, fuzzy msgid "" " ... revoke all active privileges from the old one and delete it afterwards." msgstr "모든 활성화된 권한을 박탈하고 사용자를 삭제함." -#: server_privileges.php:2011 +#: server_privileges.php:2031 #, fuzzy msgid "" " ... delete the old one from the user tables and reload the privileges " "afterwards." msgstr "사용자를 삭제하고 사용권한을 갱신함." -#: server_privileges.php:2033 +#: server_privileges.php:2054 msgid "Database for user" msgstr "" -#: server_privileges.php:2037 +#: server_privileges.php:2058 #, fuzzy #| msgid "None" msgctxt "Create none database for user" msgid "None" msgstr "없음" -#: server_privileges.php:2038 +#: server_privileges.php:2059 msgid "Create database with same name and grant all privileges" msgstr "" -#: server_privileges.php:2039 +#: server_privileges.php:2060 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "" -#: server_privileges.php:2042 +#: server_privileges.php:2063 #, fuzzy, php-format msgid "Grant all privileges on database "%s"" msgstr "데이터베이스 "%s" 에 대한 사용권한 검사." -#: server_privileges.php:2065 +#: server_privileges.php:2086 #, php-format msgid "Users having access to "%s"" msgstr ""%s" 에 접근할 수 있는 사용자들" -#: server_privileges.php:2173 +#: server_privileges.php:2194 msgid "global" msgstr "" -#: server_privileges.php:2175 +#: server_privileges.php:2196 msgid "database-specific" msgstr "" -#: server_privileges.php:2177 +#: server_privileges.php:2198 msgid "wildcard" msgstr "" @@ -7471,6 +7495,10 @@ msgstr "" msgid "Show insert query" msgstr "" +#: tbl_change.php:1143 +msgid "and then" +msgstr "이어서" + #: tbl_change.php:1147 msgid "Go back to previous page" msgstr "되돌아가기" @@ -7550,7 +7578,7 @@ msgstr "(\"PRIMARY\"는 기본 키만의 유일한 이름입니다!)" msgid "Add to index  %s column(s)" msgstr "%s개 열(칼럼)에 인덱스 추가" -#: tbl_indexes.php:256 tbl_structure.php:589 tbl_structure.php:600 +#: tbl_indexes.php:256 tbl_structure.php:587 tbl_structure.php:598 msgid "Column count has to be larger than zero." msgstr "" @@ -7666,39 +7694,39 @@ msgstr "referential 무결성 검사:" msgid "Show tables" msgstr "테이블 보기" -#: tbl_printview.php:310 tbl_structure.php:656 +#: tbl_printview.php:310 tbl_structure.php:654 msgid "Space usage" msgstr "공간 사용량" -#: tbl_printview.php:314 tbl_structure.php:660 +#: tbl_printview.php:314 tbl_structure.php:658 msgid "Usage" msgstr "사용법(량)" -#: tbl_printview.php:341 tbl_structure.php:687 +#: tbl_printview.php:341 tbl_structure.php:685 msgid "Effective" msgstr "실제량" -#: tbl_printview.php:366 tbl_structure.php:725 +#: tbl_printview.php:366 tbl_structure.php:723 msgid "Row Statistics" msgstr "행(레코드) 통계" -#: tbl_printview.php:369 tbl_structure.php:728 +#: tbl_printview.php:369 tbl_structure.php:726 msgid "Statements" msgstr "명세" -#: tbl_printview.php:380 tbl_structure.php:740 +#: tbl_printview.php:380 tbl_structure.php:738 msgid "static" msgstr "" -#: tbl_printview.php:382 tbl_structure.php:742 +#: tbl_printview.php:382 tbl_structure.php:740 msgid "dynamic" msgstr "동적(다이내믹)" -#: tbl_printview.php:404 tbl_structure.php:785 +#: tbl_printview.php:404 tbl_structure.php:783 msgid "Row length" msgstr "행 길이" -#: tbl_printview.php:414 tbl_structure.php:793 +#: tbl_printview.php:414 tbl_structure.php:791 msgid " Row size " msgstr " Row size " @@ -7769,49 +7797,49 @@ msgstr "없음" msgid "Column %s has been dropped" msgstr "테이블 %s 을 제거했습니다." -#: tbl_structure.php:385 +#: tbl_structure.php:384 #, php-format msgid "A primary key has been added on %s" msgstr " %s에 기본 키가 추가되었습니다" -#: tbl_structure.php:400 tbl_structure.php:414 tbl_structure.php:428 +#: tbl_structure.php:398 tbl_structure.php:412 tbl_structure.php:426 #, php-format msgid "An index has been added on %s" msgstr "%s 에 인덱스가 걸렸습니다" -#: tbl_structure.php:506 tbl_structure.php:508 +#: tbl_structure.php:504 tbl_structure.php:506 msgid "Relation view" msgstr "" -#: tbl_structure.php:515 tbl_structure.php:517 +#: tbl_structure.php:513 tbl_structure.php:515 msgid "Propose table structure" msgstr "제안하는 테이블 구조" -#: tbl_structure.php:540 +#: tbl_structure.php:538 #, fuzzy msgid "Add column" msgstr "필드 추가하기" -#: tbl_structure.php:554 +#: tbl_structure.php:552 msgid "At End of Table" msgstr "테이블의 마지막" -#: tbl_structure.php:555 +#: tbl_structure.php:553 msgid "At Beginning of Table" msgstr "테이블의 처음" -#: tbl_structure.php:556 +#: tbl_structure.php:554 #, php-format msgid "After %s" msgstr "%s 다음에" -#: tbl_structure.php:594 +#: tbl_structure.php:592 #, fuzzy, php-format #| msgid "Create an index on %s columns" msgid "Create an index on  %s columns" msgstr "%s 개 열(칼럼)에 인덱스 만들기 " -#: tbl_structure.php:756 +#: tbl_structure.php:754 msgid "partitioned" msgstr "" diff --git a/po/lt.po b/po/lt.po index 799e89286..87e80986f 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-13 09:03-0400\n" +"POT-Creation-Date: 2010-06-22 00:55+0530\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:1514 +#: libraries/display_tbl.lib.php:417 server_privileges.php:1534 msgid "Show all" msgstr "Rodyti viską" -#: browse_foreigners.php:82 libraries/common.lib.php:2313 +#: browse_foreigners.php:82 libraries/common.lib.php:2317 #: 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,18 +38,18 @@ 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:2831 -#: libraries/common.lib.php:2838 libraries/db_links.inc.php:75 +#: db_structure.php:106 libraries/common.lib.php:2835 +#: libraries/common.lib.php:2842 libraries/db_links.inc.php:75 #: libraries/tbl_links.inc.php:63 msgid "Search" msgstr "Paieška" -#: browse_foreigners.php:153 db_operations.php:385 db_operations.php:429 -#: db_operations.php:499 db_operations.php:609 db_search.php:362 -#: db_structure.php:567 js/messages.php:48 libraries/Config.class.php:1046 +#: browse_foreigners.php:153 db_operations.php:394 db_operations.php:438 +#: db_operations.php:508 db_operations.php:618 db_search.php:362 +#: db_structure.php:565 js/messages.php:53 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:1335 libraries/common.lib.php:2288 +#: libraries/common.lib.php:1335 libraries/common.lib.php:2292 #: 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,15 +60,15 @@ 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:664 server_privileges.php:1624 -#: server_privileges.php:1971 server_privileges.php:2018 -#: server_privileges.php:2057 server_replication.php:235 +#: server_privileges.php:665 server_privileges.php:1644 +#: server_privileges.php:1991 server_privileges.php:2038 +#: server_privileges.php:2078 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 #: tbl_operations.php:302 tbl_operations.php:499 tbl_operations.php:561 -#: tbl_operations.php:681 tbl_select.php:327 tbl_structure.php:562 -#: tbl_structure.php:597 tbl_tracking.php:395 tbl_tracking.php:512 +#: tbl_operations.php:681 tbl_select.php:327 tbl_structure.php:560 +#: tbl_structure.php:595 tbl_tracking.php:395 tbl_tracking.php:512 #: view_create.php:182 view_operations.php:101 msgid "Go" msgstr "Vykdyti" @@ -94,7 +94,7 @@ msgstr "Naudokite šią reikšmę" msgid "Database %1$s has been created." msgstr "Duomenų bazė %1$s sukurta." -#: db_datadict.php:49 db_operations.php:378 +#: db_datadict.php:49 db_operations.php:387 msgid "Database comment: " msgstr "Duombazės komantaras: " @@ -121,10 +121,10 @@ 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:2070 +#: pdf_schema.php:1263 pdf_schema.php:1284 server_privileges.php:2091 #: 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 +#: tbl_structure.php:657 tbl_tracking.php:274 tbl_tracking.php:321 msgid "Type" msgstr "Tipas" @@ -137,7 +137,7 @@ msgstr "Tipas" msgid "Null" msgstr "Null" -#: db_datadict.php:178 db_structure.php:501 libraries/export/htmlword.php:247 +#: db_datadict.php:178 db_structure.php:499 libraries/export/htmlword.php:247 #: libraries/export/latex.php:360 libraries/export/odt.php:303 #: libraries/export/texytext.php:236 libraries/tbl_properties.inc.php:106 #: pdf_schema.php:1266 pdf_schema.php:1287 tbl_printview.php:146 @@ -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: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 +#: pdf_schema.php:1344 server_privileges.php:1588 server_privileges.php:1599 +#: server_privileges.php:1909 server_privileges.php:1914 +#: server_privileges.php:2208 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:1565 -#: server_privileges.php:1579 server_privileges.php:1889 -#: server_privileges.php:1892 server_privileges.php:2187 sql.php:193 +#: server_databases.php:64 server_privileges.php:1585 +#: server_privileges.php:1599 server_privileges.php:1909 +#: server_privileges.php:1912 server_privileges.php:2208 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" @@ -210,125 +210,121 @@ msgstr "Pažymėti visus" msgid "Unselect All" msgstr "Atžymėti visus" -#: db_operations.php:38 tbl_create.php:54 +#: db_operations.php:43 tbl_create.php:54 msgid "The database name is empty!" msgstr "Nenurodytas duombazės vardas!" -#: db_operations.php:236 +#: db_operations.php:241 #, php-format msgid "Database %s has been renamed to %s" msgstr "Duombazė %s pervadinta į %s" -#: db_operations.php:240 +#: db_operations.php:245 #, php-format msgid "Database %s has been copied to %s" msgstr "Duombazė %s buvo nukopijuota į %s" -#: db_operations.php:412 +#: db_operations.php:421 msgid "Rename database to" msgstr "Pervadinti duombazę į" -#: db_operations.php:417 server_processlist.php:57 +#: db_operations.php:426 server_processlist.php:57 msgid "Command" msgstr "Komanda" -#: db_operations.php:429 tbl_change.php:1143 -msgid "and then" -msgstr "ir tada" - -#: db_operations.php:455 +#: db_operations.php:464 msgid "Copy database to" msgstr "Kopijuoti duombazę į" -#: db_operations.php:462 tbl_operations.php:528 tbl_tracking.php:388 +#: db_operations.php:471 tbl_operations.php:528 tbl_tracking.php:388 msgid "Structure only" msgstr "Tik struktūra" -#: db_operations.php:463 tbl_operations.php:529 tbl_tracking.php:390 +#: db_operations.php:472 tbl_operations.php:529 tbl_tracking.php:390 msgid "Structure and data" msgstr "Struktūra ir duomenys" -#: db_operations.php:464 tbl_operations.php:530 tbl_tracking.php:389 +#: db_operations.php:473 tbl_operations.php:530 tbl_tracking.php:389 msgid "Data only" msgstr "Tik duomenys" -#: db_operations.php:472 +#: db_operations.php:481 msgid "CREATE DATABASE before copying" msgstr "CREATE DATABASE prieš kopijuojant" -#: db_operations.php:475 libraries/export/sql.php:52 +#: db_operations.php:484 libraries/export/sql.php:52 #: libraries/export/sql.php:74 libraries/export/sql.php:76 #: libraries/export/sql.php:82 tbl_operations.php:536 #, php-format msgid "Add %s" msgstr "Pridėti %s" -#: db_operations.php:479 libraries/export/sql.php:78 tbl_operations.php:299 +#: db_operations.php:488 libraries/export/sql.php:78 tbl_operations.php:299 #: tbl_operations.php:538 msgid "Add AUTO_INCREMENT value" msgstr "Pridėti AUTO_INCREMENT reikšmę" -#: db_operations.php:483 tbl_operations.php:545 +#: db_operations.php:492 tbl_operations.php:545 msgid "Add constraints" msgstr "Pridėti apribojimą" -#: db_operations.php:496 +#: db_operations.php:505 msgid "Switch to copied database" msgstr "Pereiti į nukopijuotą duombazę" -#: db_operations.php:537 +#: db_operations.php:546 msgid "BLOB Repository" msgstr "BLOB saugykla" -#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1352 -#: libraries/server_links.inc.php:49 server_processlist.php:59 +#: db_operations.php:549 db_tracking.php:76 libraries/common.lib.php:1352 +#: libraries/server_links.inc.php:50 server_processlist.php:59 #: tbl_tracking.php:596 test/theme.php:101 msgid "Status" msgstr "Statusas" -#: db_operations.php:548 +#: db_operations.php:557 #, fuzzy #| msgid "Enabled" msgctxt "BLOB repository" msgid "Enabled" msgstr "Įjungta" -#: db_operations.php:552 +#: db_operations.php:561 msgid "Disable" msgstr "Išjungti" -#: db_operations.php:562 +#: db_operations.php:571 msgid "Damaged" msgstr "Pažeista" -#: db_operations.php:566 +#: db_operations.php:575 #, fuzzy #| msgid "Repair" msgctxt "BLOB repository" msgid "Repair" msgstr "Taisyti" -#: db_operations.php:574 +#: db_operations.php:583 #, fuzzy #| msgid "Disabled" msgctxt "BLOB repository" msgid "Disabled" msgstr "Išjungta" -#: db_operations.php:578 +#: db_operations.php:587 msgid "Enable" msgstr "Įjungti" -#: db_operations.php:602 libraries/Index.class.php:448 +#: db_operations.php:611 libraries/Index.class.php:448 #: libraries/db_structure.lib.php:62 libraries/mysql_charsets.lib.php:107 #: libraries/tbl_properties.inc.php:107 libraries/tbl_properties.inc.php:730 #: server_collations.php:54 server_collations.php:66 server_databases.php:111 #: tbl_operations.php:363 tbl_select.php:137 tbl_structure.php:179 -#: tbl_structure.php:767 tbl_tracking.php:275 tbl_tracking.php:326 +#: tbl_structure.php:765 tbl_tracking.php:275 tbl_tracking.php:326 msgid "Collation" msgstr "Palyginimas" -#: db_operations.php:615 main.php:316 pdf_schema.php:34 +#: db_operations.php:624 main.php:316 pdf_schema.php:34 #, php-format msgid "" "The additional features for working with linked tables have been " @@ -337,14 +333,14 @@ msgstr "" "Nėra PMA lentelių, kurios leidžia dirbti su jungtinėmis MySQL lentelėmis. %" "sPaaiškinimas%s." -#: db_operations.php:648 +#: db_operations.php:657 msgid "Edit PDF Pages" 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:1665 -#: server_privileges.php:1721 server_privileges.php:1985 +#: libraries/header.inc.php:130 pdf_pages.php:424 server_privileges.php:1685 +#: server_privileges.php:1741 server_privileges.php:2005 #: server_synchronize.php:423 server_synchronize.php:866 tbl_tracking.php:592 #: test/theme.php:75 msgid "Table" @@ -353,7 +349,7 @@ msgstr "Lentelė" #: db_printview.php:105 libraries/db_structure.lib.php:56 #: libraries/header_printview.inc.php:63 libraries/import.lib.php:146 #: navigation.php:638 navigation.php:660 server_databases.php:122 -#: tbl_printview.php:394 tbl_structure.php:365 tbl_structure.php:777 +#: tbl_printview.php:394 tbl_structure.php:365 tbl_structure.php:775 msgid "Rows" msgstr "Eilutės" @@ -361,30 +357,30 @@ msgstr "Eilutės" msgid "Size" msgstr "Dydis" -#: db_printview.php:162 db_structure.php:457 libraries/export/sql.php:559 +#: db_printview.php:162 db_structure.php:455 libraries/export/sql.php:559 #: libraries/export/sql.php:899 msgid "in use" msgstr "šiuo metu naudojama" #: db_printview.php:187 libraries/db_info.inc.php:88 #: libraries/export/sql.php:514 pdf_schema.php:1241 tbl_printview.php:434 -#: tbl_structure.php:809 +#: tbl_structure.php:807 msgid "Creation" msgstr "Sukurta" #: db_printview.php:196 libraries/db_info.inc.php:93 #: libraries/export/sql.php:519 pdf_schema.php:1246 tbl_printview.php:444 -#: tbl_structure.php:817 +#: tbl_structure.php:815 msgid "Last update" msgstr "Paskutinis atnaujinimas" #: db_printview.php:205 libraries/db_info.inc.php:98 #: libraries/export/sql.php:524 pdf_schema.php:1251 tbl_printview.php:454 -#: tbl_structure.php:825 +#: tbl_structure.php:823 msgid "Last check" msgstr "Paskutinis patikrinimas" -#: db_printview.php:222 db_structure.php:480 +#: db_printview.php:222 db_structure.php:478 #, fuzzy, php-format #| msgid "%s table(s)" msgid "%s table" @@ -446,7 +442,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:297 tbl_change.php:1031 tbl_indexes.php:250 +#: server_privileges.php:298 tbl_change.php:1031 tbl_indexes.php:250 #: tbl_select.php:288 msgid "Or" msgstr "Arba" @@ -519,9 +515,9 @@ 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:2833 +#: db_structure.php:105 libraries/common.lib.php:2837 #: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50 -#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:467 +#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:465 msgid "Browse" msgstr "Peržiūrėti" @@ -566,36 +562,36 @@ 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:2832 libraries/sql_query_form.lib.php:334 +#: libraries/common.lib.php:2836 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:2829 libraries/common.lib.php:2836 +#: libraries/common.lib.php:2833 libraries/common.lib.php:2840 #: 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:1106 #: libraries/tbl_links.inc.php:56 pmd_general.php:134 -#: server_privileges.php:593 server_replication.php:315 tbl_tracking.php:269 +#: server_privileges.php:594 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:1656 +#: db_structure.php:543 db_structure.php:544 db_tracking.php:91 +#: libraries/Index.class.php:483 libraries/common.lib.php:1657 #: 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 -#: tbl_structure.php:152 tbl_structure.php:471 +#: tbl_structure.php:152 tbl_structure.php:469 msgid "Drop" 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:1655 +#: db_structure.php:541 db_structure.php:542 libraries/common.lib.php:1656 #: libraries/mult_submits.inc.php:39 libraries/tbl_links.inc.php:105 msgid "Empty" msgstr "Išvalyti" @@ -605,111 +601,111 @@ msgstr "Išvalyti" msgid "Table %s has been emptied" msgstr "Lentelės reikšmės %s ištuštintos" -#: db_structure.php:326 libraries/tbl_links.inc.php:133 +#: db_structure.php:325 libraries/tbl_links.inc.php:133 #, php-format msgid "View %s has been dropped" msgstr "View'as %s buvo panaikintas" -#: db_structure.php:326 libraries/tbl_links.inc.php:133 +#: db_structure.php:325 libraries/tbl_links.inc.php:133 #, php-format msgid "Table %s has been dropped" msgstr "Lentelė %s panaikinta" -#: db_structure.php:333 +#: db_structure.php:332 msgid "Tracking is active." msgstr "" -#: db_structure.php:335 +#: db_structure.php:334 msgid "Tracking is not active." msgstr "" -#: db_structure.php:420 libraries/display_tbl.lib.php:1944 +#: db_structure.php:418 libraries/display_tbl.lib.php:1944 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation%" "s." msgstr "" -#: db_structure.php:434 db_structure.php:448 libraries/header.inc.php:126 +#: db_structure.php:432 db_structure.php:446 libraries/header.inc.php:130 #: libraries/tbl_info.inc.php:66 tbl_structure.php:185 test/theme.php:74 msgid "View" msgstr "View'as" -#: db_structure.php:485 libraries/db_structure.lib.php:49 -#: libraries/server_links.inc.php:70 server_replication.php:33 +#: db_structure.php:483 libraries/db_structure.lib.php:49 +#: libraries/server_links.inc.php:71 server_replication.php:33 #: server_replication.php:164 server_status.php:369 msgid "Replication" msgstr "Replikacija" -#: db_structure.php:489 +#: db_structure.php:487 msgid "Sum" msgstr "Sumos" -#: db_structure.php:496 libraries/StorageEngine.class.php:356 +#: db_structure.php:494 libraries/StorageEngine.class.php:356 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "%s yra standartinis saugojimo variklis šiame MySQL serveryje." -#: db_structure.php:524 db_structure.php:541 db_structure.php:542 +#: db_structure.php:522 db_structure.php:539 db_structure.php:540 #: 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:1596 tbl_structure.php:455 -#: tbl_structure.php:464 +#: server_databases.php:351 server_privileges.php:1616 tbl_structure.php:453 +#: tbl_structure.php:462 msgid "With selected:" msgstr "Pasirinktus:" -#: db_structure.php:527 libraries/display_tbl.lib.php:2076 -#: server_databases.php:348 server_privileges.php:569 -#: server_privileges.php:1599 tbl_structure.php:458 +#: db_structure.php:525 libraries/display_tbl.lib.php:2076 +#: server_databases.php:348 server_privileges.php:570 +#: server_privileges.php:1619 tbl_structure.php:456 msgid "Check All" msgstr "Pažymėti visus" -#: db_structure.php:531 libraries/display_tbl.lib.php:2077 +#: db_structure.php:529 libraries/display_tbl.lib.php:2077 #: libraries/replication_gui.lib.php:33 server_databases.php:350 -#: server_privileges.php:572 server_privileges.php:1603 tbl_structure.php:462 +#: server_privileges.php:573 server_privileges.php:1623 tbl_structure.php:460 msgid "Uncheck All" msgstr "Atžymėti visus" -#: db_structure.php:536 +#: db_structure.php:534 msgid "Check tables having overhead" msgstr "Pažymėti turinčias perteklių" -#: db_structure.php:547 db_structure.php:548 db_structure.php:599 +#: db_structure.php:545 db_structure.php:546 db_structure.php:597 #: libraries/display_tbl.lib.php:2180 libraries/mult_submits.inc.php:28 -#: tbl_structure.php:492 tbl_structure.php:494 +#: tbl_structure.php:490 tbl_structure.php:492 msgid "Print view" msgstr "Spausdinti struktūrą" -#: db_structure.php:549 db_structure.php:550 libraries/mult_submits.inc.php:42 +#: db_structure.php:547 db_structure.php:548 libraries/mult_submits.inc.php:42 #: tbl_operations.php:581 msgid "Check table" msgstr "Patikrinti lentelę" -#: db_structure.php:551 db_structure.php:552 libraries/mult_submits.inc.php:47 -#: tbl_operations.php:621 tbl_structure.php:709 tbl_structure.php:711 +#: db_structure.php:549 db_structure.php:550 libraries/mult_submits.inc.php:47 +#: tbl_operations.php:621 tbl_structure.php:707 tbl_structure.php:709 msgid "Optimize table" msgstr "Optimizuoti" -#: db_structure.php:553 db_structure.php:554 libraries/mult_submits.inc.php:52 +#: db_structure.php:551 db_structure.php:552 libraries/mult_submits.inc.php:52 #: tbl_operations.php:611 msgid "Repair table" msgstr "Redaguoti" -#: db_structure.php:555 db_structure.php:556 libraries/mult_submits.inc.php:57 +#: db_structure.php:553 db_structure.php:554 libraries/mult_submits.inc.php:57 #: tbl_operations.php:601 msgid "Analyze table" msgstr "Analizuoti lentelę" -#: db_structure.php:557 db_structure.php:558 libraries/db_links.inc.php:71 +#: db_structure.php:555 db_structure.php:556 libraries/db_links.inc.php:71 #: 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:1380 +#: libraries/server_links.inc.php:85 libraries/tbl_links.inc.php:82 +#: pmd_pdf.php:84 pmd_pdf.php:109 server_privileges.php:1397 #: setup/frames/menu.inc.php:22 tbl_row_action.php:59 msgid "Export" msgstr "Eksportuoti" -#: db_structure.php:606 libraries/display_pdf_schema.lib.php:44 +#: db_structure.php:604 libraries/display_pdf_schema.lib.php:44 msgid "Data Dictionary" msgstr "Duomenų žodynas" @@ -721,10 +717,10 @@ msgstr "Patikrinti lentelę" #: db_tracking.php:71 libraries/export/htmlword.php:86 #: libraries/export/latex.php:148 libraries/export/odt.php:113 #: libraries/export/sql.php:342 libraries/export/texytext.php:84 -#: libraries/export/xml.php:255 libraries/header.inc.php:106 +#: libraries/export/xml.php:255 libraries/header.inc.php:110 #: libraries/header_printview.inc.php:58 server_databases.php:169 -#: server_privileges.php:1660 server_privileges.php:1721 -#: server_privileges.php:1979 server_processlist.php:56 +#: server_privileges.php:1680 server_privileges.php:1741 +#: server_privileges.php:1999 server_processlist.php:56 #: server_synchronize.php:1179 server_synchronize.php:1183 #: tbl_tracking.php:591 test/theme.php:65 msgid "Database" @@ -744,8 +740,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:1542 server_privileges.php:1725 -#: server_privileges.php:2073 tbl_structure.php:187 +#: server_privileges.php:1562 server_privileges.php:1745 +#: server_privileges.php:2094 tbl_structure.php:187 msgid "Action" msgstr "Veiksmas" @@ -781,8 +777,8 @@ msgstr "Tik struktūra" msgid "Untracked tables" msgstr "Patikrinti lentelę" -#: db_tracking.php:172 db_tracking.php:174 tbl_structure.php:528 -#: tbl_structure.php:530 +#: db_tracking.php:172 db_tracking.php:174 tbl_structure.php:526 +#: tbl_structure.php:528 #, fuzzy msgid "Track table" msgstr "Patikrinti lentelę" @@ -939,189 +935,236 @@ msgstr "Tuščias prisijungimo adresas!" msgid "The user name is empty!" msgstr "Tuščias vartotojo vardas!" -#: js/messages.php:44 server_privileges.php:1236 user_password.php:70 +#: js/messages.php:44 server_privileges.php:1241 user_password.php:70 msgid "The password is empty!" msgstr "Tuščias slaptažodis!" -#: js/messages.php:45 server_privileges.php:1234 user_password.php:73 +#: js/messages.php:45 server_privileges.php:1239 user_password.php:73 msgid "The passwords aren't the same!" msgstr "Slaptažodžiai nesutampa!" -#: js/messages.php:49 pmd_general.php:342 pmd_general.php:379 +#: js/messages.php:46 +#, fuzzy +#| msgid "Add a new User" +msgid "Add a New User" +msgstr "Sukurti naują vartotoją" + +#: js/messages.php:47 js/messages.php:54 pmd_general.php:342 +#: pmd_general.php:379 msgid "Cancel" msgstr "Atšaukti" -#: js/messages.php:52 pmd_save_pos.php:54 +#: js/messages.php:48 +#, fuzzy +msgid "Create User" +msgstr "Paskutinė versija" + +#: js/messages.php:49 +#, fuzzy +#| msgid "Reload privileges" +msgid "Reloading Privileges" +msgstr "Perkrauti privilegijas" + +#: js/messages.php:50 +#, fuzzy +#| msgid "Remove selected users" +msgid "Removing Selected Users" +msgstr "Pašalinti pažymėtus vartotojus" + +#: js/messages.php:57 +#, fuzzy +msgid "Loading" +msgstr "Lokali darbinė stotis" + +#: js/messages.php:58 +#, fuzzy +#| msgid "Processes" +msgid "Processing Request" +msgstr "Procesai" + +#: js/messages.php:59 +msgid "Error in Processing Request" +msgstr "" + +#: js/messages.php:60 +msgid "Dropping Column" +msgstr "" + +#: js/messages.php:61 +msgid "Adding Primary Key" +msgstr "" + +#: js/messages.php:64 pmd_save_pos.php:54 msgid "Modifications have been saved" msgstr "Pakeitimai išsaugoti" -#: js/messages.php:53 pmd_relation_upd.php:49 +#: js/messages.php:65 pmd_relation_upd.php:49 #, fuzzy msgid "Relation deleted" msgstr "Peržiūrėti sąryšius" -#: js/messages.php:54 pmd_relation_new.php:64 +#: js/messages.php:66 pmd_relation_new.php:64 msgid "FOREIGN KEY relation added" msgstr "" -#: js/messages.php:55 pmd_relation_new.php:86 +#: js/messages.php:67 pmd_relation_new.php:86 #, fuzzy msgid "Internal relation added" msgstr "Vidiniai sąryšiai" -#: js/messages.php:56 pmd_relation_new.php:63 pmd_relation_new.php:88 +#: js/messages.php:68 pmd_relation_new.php:63 pmd_relation_new.php:88 msgid "Error: Relation not added." msgstr "" -#: js/messages.php:57 pmd_relation_new.php:31 +#: js/messages.php:69 pmd_relation_new.php:31 msgid "Error: relation already exists." msgstr "" -#: js/messages.php:58 +#: js/messages.php:70 msgid "Error saving coordinates for Designer." msgstr "" -#: js/messages.php:59 libraries/relation.lib.php:107 +#: js/messages.php:71 libraries/relation.lib.php:107 #: libraries/relation.lib.php:119 msgid "General relation features" msgstr "Pagrindinės sąryšių sąvybės" -#: js/messages.php:59 libraries/relation.lib.php:101 +#: js/messages.php:71 libraries/relation.lib.php:101 #: libraries/relation.lib.php:108 msgid "Disabled" msgstr "Išjungta" -#: js/messages.php:60 +#: js/messages.php:72 msgid "Select referenced key" msgstr "" -#: js/messages.php:61 +#: js/messages.php:73 msgid "Select Foreign Key" msgstr "" -#: js/messages.php:62 +#: js/messages.php:74 msgid "Please select the primary key or a unique key" msgstr "" -#: js/messages.php:63 pmd_general.php:77 tbl_relation.php:548 +#: js/messages.php:75 pmd_general.php:77 tbl_relation.php:548 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" msgstr "Pasirinkite lauką, kurį norite peržiūrėti" #. l10n: Display text for calendar close link -#: js/messages.php:73 +#: js/messages.php:85 #, fuzzy #| msgid "Donate" msgid "Done" msgstr "Paremti" #. l10n: Display text for previous month link in calendar -#: js/messages.php:75 +#: js/messages.php:87 #, fuzzy #| msgid "Previous" msgid "Prev" msgstr "Praėjęs" #. l10n: Display text for next month link in calendar -#: js/messages.php:77 libraries/common.lib.php:2353 -#: libraries/common.lib.php:2356 libraries/display_tbl.lib.php:338 +#: js/messages.php:89 libraries/common.lib.php:2357 +#: libraries/common.lib.php:2360 libraries/display_tbl.lib.php:338 #: server_binlog.php:205 server_binlog.php:207 tbl_printview.php:424 -#: tbl_structure.php:801 +#: tbl_structure.php:799 msgid "Next" msgstr "Sekantis" #. l10n: Display text for current month link in calendar -#: js/messages.php:79 +#: js/messages.php:91 #, fuzzy #| msgid "Total" msgid "Today" msgstr "Viso" -#: js/messages.php:82 +#: js/messages.php:94 #, fuzzy #| msgid "Binary" msgid "January" msgstr "Dvejetainis" -#: js/messages.php:83 +#: js/messages.php:95 msgid "February" msgstr "" -#: js/messages.php:84 +#: js/messages.php:96 #, fuzzy #| msgid "Mar" msgid "March" msgstr "kovo" -#: js/messages.php:85 +#: js/messages.php:97 #, fuzzy #| msgid "Apr" msgid "April" msgstr "balandžio" -#: js/messages.php:86 +#: js/messages.php:98 msgid "May" msgstr "gegužės" -#: js/messages.php:87 +#: js/messages.php:99 #, fuzzy #| msgid "Jun" msgid "June" msgstr "birželio" -#: js/messages.php:88 +#: js/messages.php:100 #, fuzzy #| msgid "Jul" msgid "July" msgstr "liepos" -#: js/messages.php:89 +#: js/messages.php:101 #, fuzzy #| msgid "Aug" msgid "August" msgstr "rugpjūčio" -#: js/messages.php:90 +#: js/messages.php:102 msgid "September" msgstr "" -#: js/messages.php:91 +#: js/messages.php:103 #, fuzzy #| msgid "Oct" msgid "October" msgstr "spalio" -#: js/messages.php:92 +#: js/messages.php:104 msgid "November" msgstr "" -#: js/messages.php:93 +#: js/messages.php:105 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:97 libraries/common.lib.php:1557 +#: js/messages.php:109 libraries/common.lib.php:1557 msgid "Jan" msgstr "sausio" #. l10n: Short month name -#: js/messages.php:99 libraries/common.lib.php:1559 +#: js/messages.php:111 libraries/common.lib.php:1559 msgid "Feb" msgstr "vasario" #. l10n: Short month name -#: js/messages.php:101 libraries/common.lib.php:1561 +#: js/messages.php:113 libraries/common.lib.php:1561 msgid "Mar" msgstr "kovo" #. l10n: Short month name -#: js/messages.php:103 libraries/common.lib.php:1563 +#: js/messages.php:115 libraries/common.lib.php:1563 msgid "Apr" msgstr "balandžio" #. l10n: Short month name -#: js/messages.php:105 libraries/common.lib.php:1565 +#: js/messages.php:117 libraries/common.lib.php:1565 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1129,178 +1172,178 @@ msgid "May" msgstr "gegužės" #. l10n: Short month name -#: js/messages.php:107 libraries/common.lib.php:1567 +#: js/messages.php:119 libraries/common.lib.php:1567 msgid "Jun" msgstr "birželio" #. l10n: Short month name -#: js/messages.php:109 libraries/common.lib.php:1569 +#: js/messages.php:121 libraries/common.lib.php:1569 msgid "Jul" msgstr "liepos" #. l10n: Short month name -#: js/messages.php:111 libraries/common.lib.php:1571 +#: js/messages.php:123 libraries/common.lib.php:1571 msgid "Aug" msgstr "rugpjūčio" #. l10n: Short month name -#: js/messages.php:113 libraries/common.lib.php:1573 +#: js/messages.php:125 libraries/common.lib.php:1573 msgid "Sep" msgstr "rugsėjo" #. l10n: Short month name -#: js/messages.php:115 libraries/common.lib.php:1575 +#: js/messages.php:127 libraries/common.lib.php:1575 msgid "Oct" msgstr "spalio" #. l10n: Short month name -#: js/messages.php:117 libraries/common.lib.php:1577 +#: js/messages.php:129 libraries/common.lib.php:1577 msgid "Nov" msgstr "lapkričio" #. l10n: Short month name -#: js/messages.php:119 libraries/common.lib.php:1579 +#: js/messages.php:131 libraries/common.lib.php:1579 msgid "Dec" msgstr "gruodžio" -#: js/messages.php:122 +#: js/messages.php:134 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "Sekmadienis" -#: js/messages.php:123 +#: js/messages.php:135 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "Pirmadienis" -#: js/messages.php:124 +#: js/messages.php:136 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "Antradienis" -#: js/messages.php:125 +#: js/messages.php:137 msgid "Wednesday" msgstr "" -#: js/messages.php:126 +#: js/messages.php:138 msgid "Thursday" msgstr "" -#: js/messages.php:127 +#: js/messages.php:139 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "Penktadienis" -#: js/messages.php:128 +#: js/messages.php:140 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:132 libraries/common.lib.php:1582 +#: js/messages.php:144 libraries/common.lib.php:1582 msgid "Sun" msgstr "Sekmadienis" #. l10n: Short week day name -#: js/messages.php:134 libraries/common.lib.php:1584 +#: js/messages.php:146 libraries/common.lib.php:1584 msgid "Mon" msgstr "Pirmadienis" #. l10n: Short week day name -#: js/messages.php:136 libraries/common.lib.php:1586 +#: js/messages.php:148 libraries/common.lib.php:1586 msgid "Tue" msgstr "Antradienis" #. l10n: Short week day name -#: js/messages.php:138 libraries/common.lib.php:1588 +#: js/messages.php:150 libraries/common.lib.php:1588 msgid "Wed" msgstr "Trečiadienis" #. l10n: Short week day name -#: js/messages.php:140 libraries/common.lib.php:1590 +#: js/messages.php:152 libraries/common.lib.php:1590 msgid "Thu" msgstr "Ketvirtadienis" #. l10n: Short week day name -#: js/messages.php:142 libraries/common.lib.php:1592 +#: js/messages.php:154 libraries/common.lib.php:1592 msgid "Fri" msgstr "Penktadienis" #. l10n: Short week day name -#: js/messages.php:144 libraries/common.lib.php:1594 +#: js/messages.php:156 libraries/common.lib.php:1594 msgid "Sat" msgstr "Šeštadienis" #. l10n: Minimal week day name -#: js/messages.php:148 +#: js/messages.php:160 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "Sekmadienis" #. l10n: Minimal week day name -#: js/messages.php:150 +#: js/messages.php:162 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "Pirmadienis" #. l10n: Minimal week day name -#: js/messages.php:152 +#: js/messages.php:164 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "Antradienis" #. l10n: Minimal week day name -#: js/messages.php:154 +#: js/messages.php:166 #, fuzzy #| msgid "Wed" msgid "We" msgstr "Trečiadienis" #. l10n: Minimal week day name -#: js/messages.php:156 +#: js/messages.php:168 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "Ketvirtadienis" #. l10n: Minimal week day name -#: js/messages.php:158 +#: js/messages.php:170 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "Penktadienis" #. l10n: Minimal week day name -#: js/messages.php:160 +#: js/messages.php:172 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "Šeštadienis" #. l10n: Column header for week of the year in calendar -#: js/messages.php:162 +#: js/messages.php:174 #, fuzzy #| msgid "Wiki" msgid "Wk" msgstr "Wiki" -#: js/messages.php:164 +#: js/messages.php:176 msgid "Hour" msgstr "" -#: js/messages.php:165 +#: js/messages.php:177 #, fuzzy #| msgid "in use" msgid "Minute" msgstr "šiuo metu naudojama" -#: js/messages.php:166 +#: js/messages.php:178 #, fuzzy #| msgid "per second" msgid "Second" @@ -1358,7 +1401,7 @@ msgstr "Indeksai" #: libraries/Index.class.php:444 libraries/mult_submits.inc.php:103 #: libraries/tbl_properties.inc.php:519 tbl_structure.php:33 -#: tbl_structure.php:155 tbl_structure.php:159 tbl_structure.php:474 +#: tbl_structure.php:155 tbl_structure.php:159 tbl_structure.php:472 #: tbl_tracking.php:322 msgid "Unique" msgstr "Unikalus" @@ -1399,8 +1442,8 @@ msgid "" "removed." msgstr "" -#: libraries/List_Database.class.php:431 libraries/server_links.inc.php:41 -#: server_databases.php:88 server_privileges.php:1660 +#: libraries/List_Database.class.php:431 libraries/server_links.inc.php:42 +#: server_databases.php:88 server_privileges.php:1680 #: setup/lib/messages.inc.php:110 test/theme.php:93 msgid "Databases" msgstr "Duombazės" @@ -1572,7 +1615,7 @@ msgstr "Slaptažodis:" msgid "Server Choice" msgstr "Pasirinkti serverį" -#: libraries/auth/cookie.auth.lib.php:320 libraries/header.inc.php:59 +#: libraries/auth/cookie.auth.lib.php:320 libraries/header.inc.php:63 msgid "Cookies must be enabled past this point." msgstr "Sausainėliai(Cookies) turi būti priimami." @@ -1655,7 +1698,7 @@ msgstr "" "libiconv arba recode_string funkcijomis. Pasitkrinkite PHP " "parinktis. " -#: libraries/common.inc.php:583 +#: libraries/common.inc.php:587 msgid "" "phpMyAdmin was unable to read your configuration file!
This might " "happen if PHP finds a parse error in it or PHP cannot find the file.
Jeigu " "išvedamas tuščias naršyklės langas - viskas tvarkoje (klaidų nepastebėta)." -#: libraries/common.inc.php:594 +#: libraries/common.inc.php:598 #, fuzzy, php-format #| msgid "Could not load default configuration from: \"%1$s\"" msgid "Could not load default configuration from: %1$s" msgstr "Nepavyko užkrauti nustatymų failo iš \"%1$s\"" -#: libraries/common.inc.php:599 +#: libraries/common.inc.php:603 msgid "" "The $cfg['PmaAbsoluteUri'] directive MUST be set in your " "configuration file!" msgstr "" "Reikia nustatymų faile įrašyti $cfg['PmaAbsoluteUri'] reikšmę!" -#: libraries/common.inc.php:629 +#: libraries/common.inc.php:633 #, php-format msgid "Invalid server index: %s" msgstr "" -#: libraries/common.inc.php:636 +#: libraries/common.inc.php:640 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" -#: libraries/common.inc.php:645 libraries/header.inc.php:96 +#: libraries/common.inc.php:649 libraries/header.inc.php:100 #: libraries/select_server.lib.php:41 libraries/select_server.lib.php:47 #: main.php:185 test/theme.php:57 msgid "Server" msgstr "Serveris" -#: libraries/common.inc.php:823 +#: libraries/common.inc.php:827 msgid "Invalid authentication method set in configuration:" msgstr "" -#: libraries/common.inc.php:926 +#: libraries/common.inc.php:930 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Rekomenduojame atnaujint %s iki %s ar vėlesnės versijos." @@ -1835,45 +1878,45 @@ msgstr "," msgid "%B %d, %Y at %I:%M %p" msgstr "%Y m. %B %d d. %H:%M" -#: libraries/common.lib.php:1907 +#: libraries/common.lib.php:1911 #, 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:2322 libraries/common.lib.php:2325 +#: libraries/common.lib.php:2326 libraries/common.lib.php:2329 #: libraries/display_tbl.lib.php:290 server_status.php:719 msgid "Begin" msgstr "Pradžia" -#: libraries/common.lib.php:2323 libraries/common.lib.php:2326 +#: libraries/common.lib.php:2327 libraries/common.lib.php:2330 #: libraries/display_tbl.lib.php:291 server_binlog.php:168 #: server_binlog.php:170 msgid "Previous" msgstr "Praėjęs" -#: libraries/common.lib.php:2354 libraries/common.lib.php:2357 +#: libraries/common.lib.php:2358 libraries/common.lib.php:2361 #: libraries/display_tbl.lib.php:353 msgid "End" msgstr "Pabaiga" -#: libraries/common.lib.php:2430 +#: libraries/common.lib.php:2434 #, php-format msgid "Jump to database "%s"." msgstr "Pereiti į "%s" duombazę." -#: libraries/common.lib.php:2450 +#: libraries/common.lib.php:2454 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" -#: libraries/common.lib.php:2830 libraries/common.lib.php:2837 +#: libraries/common.lib.php:2834 libraries/common.lib.php:2841 #: libraries/db_links.inc.php:68 libraries/export/sql.php:25 -#: libraries/import/sql.php:18 libraries/server_links.inc.php:45 +#: libraries/import/sql.php:18 libraries/server_links.inc.php:46 #: libraries/tbl_links.inc.php:60 querywindow.php:99 test/theme.php:97 msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2839 libraries/db_links.inc.php:104 +#: libraries/common.lib.php:2843 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,15 +1966,15 @@ msgstr "SQL užklausa" msgid "Designer" msgstr "" -#: libraries/db_links.inc.php:98 libraries/server_links.inc.php:88 +#: libraries/db_links.inc.php:98 libraries/server_links.inc.php:89 #: libraries/tbl_links.inc.php:91 pmd_pdf.php:84 pmd_pdf.php:110 #: setup/frames/menu.inc.php:21 msgid "Import" msgstr "Importuoti" -#: libraries/db_links.inc.php:111 libraries/server_links.inc.php:66 -#: server_privileges.php:111 server_privileges.php:1722 -#: server_privileges.php:2071 test/theme.php:117 +#: libraries/db_links.inc.php:111 libraries/server_links.inc.php:67 +#: server_privileges.php:112 server_privileges.php:1742 +#: server_privileges.php:2092 test/theme.php:117 msgid "Privileges" msgstr "Privilegijos" @@ -1950,7 +1993,7 @@ msgid "" msgstr "Gali būti apytikslis. Žiūrėkite DUK 3.11" #: libraries/db_structure.lib.php:69 server_databases.php:142 -#: tbl_printview.php:336 tbl_structure.php:682 +#: tbl_printview.php:336 tbl_structure.php:680 msgid "Overhead" msgstr "Perteklius" @@ -1967,7 +2010,7 @@ msgstr "Serveris neatsako" msgid "(or the local MySQL server's socket is not correctly configured)" msgstr "(arba vietiniai MySQL serverio socketai yra blogai sukonfigūruoti)" -#: libraries/dbi/mysql.dbi.lib.php:362 tbl_structure.php:608 +#: libraries/dbi/mysql.dbi.lib.php:362 tbl_structure.php:606 msgid "Details..." msgstr "Detalės..." @@ -1977,22 +2020,22 @@ msgid "Change password" msgstr "Pakeisti slaptažodį" #: libraries/display_change_password.lib.php:35 -#: libraries/replication_gui.lib.php:345 server_privileges.php:807 +#: libraries/replication_gui.lib.php:345 server_privileges.php:808 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:796 -#: server_privileges.php:800 server_privileges.php:811 -#: server_privileges.php:1538 server_synchronize.php:1175 +#: libraries/replication_gui.lib.php:349 server_privileges.php:797 +#: server_privileges.php:801 server_privileges.php:812 +#: server_privileges.php:1558 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:815 server_privileges.php:818 +#: server_privileges.php:816 server_privileges.php:819 msgid "Re-type" msgstr "Įveskite dar kartą" @@ -2007,12 +2050,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:822 +#: libraries/replication_gui.lib.php:360 server_privileges.php:823 msgid "Generate Password" msgstr "Generuoti Slaiptažodį" #: libraries/display_change_password.lib.php:75 -#: libraries/replication_gui.lib.php:363 server_privileges.php:825 +#: libraries/replication_gui.lib.php:363 server_privileges.php:826 msgid "Generate" msgstr "Generuoti" @@ -2025,8 +2068,8 @@ msgstr "Sukurti naują duombazę" msgid "Create" msgstr "Sukurti" -#: libraries/display_create_database.lib.php:40 server_privileges.php:113 -#: server_privileges.php:1427 server_replication.php:35 +#: libraries/display_create_database.lib.php:40 server_privileges.php:114 +#: server_privileges.php:1447 server_replication.php:35 msgid "No Privileges" msgstr "Nėra privilegijų" @@ -2117,7 +2160,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:1875 server_processlist.php:75 +#: server_privileges.php:1895 server_processlist.php:75 msgid "None" msgstr "Nėra" @@ -2306,7 +2349,7 @@ msgstr "Rūšiuoti pagal raktą" #: libraries/import/docsql.php:34 libraries/import/ldi.php:47 #: libraries/import/ods.php:30 libraries/import/sql.php:20 #: libraries/import/xls.php:26 libraries/import/xlsx.php:26 -#: libraries/import/xml.php:25 tbl_select.php:267 tbl_structure.php:753 +#: libraries/import/xml.php:25 tbl_select.php:267 tbl_structure.php:751 msgid "Options" msgstr "Nustatymai" @@ -2384,7 +2427,7 @@ msgstr "Užklausa užtruko %01.4f sek." #: libraries/display_tbl.lib.php:2089 libraries/mult_submits.inc.php:113 #: querywindow.php:125 querywindow.php:129 querywindow.php:132 -#: tbl_structure.php:25 tbl_structure.php:150 tbl_structure.php:470 +#: tbl_structure.php:25 tbl_structure.php:150 tbl_structure.php:468 msgid "Change" msgstr "Redaguoti" @@ -2450,7 +2493,7 @@ msgstr "Buferio Pool'o naudojimas" #: libraries/engines/innodb.lib.php:194 server_databases.php:137 #: server_databases.php:305 server_status.php:525 server_status.php:586 -#: server_status.php:607 tbl_printview.php:351 tbl_structure.php:696 +#: server_status.php:607 tbl_printview.php:351 tbl_structure.php:694 msgid "Total" msgstr "Viso" @@ -2707,7 +2750,7 @@ msgid "" msgstr "" #: libraries/export/codegen.php:37 setup/lib/messages.inc.php:88 -#: tbl_printview.php:376 tbl_structure.php:737 +#: tbl_printview.php:376 tbl_structure.php:735 msgid "Format" msgstr "Formatas" @@ -2779,8 +2822,8 @@ 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:576 server_replication.php:316 tbl_printview.php:317 -#: tbl_structure.php:665 +#: server_privileges.php:577 server_replication.php:316 tbl_printview.php:317 +#: tbl_structure.php:663 msgid "Data" msgstr "Duomenys" @@ -2829,9 +2872,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:731 -#: server_privileges.php:734 server_privileges.php:790 -#: server_privileges.php:1537 server_privileges.php:2069 +#: libraries/replication_gui.lib.php:329 server_privileges.php:732 +#: server_privileges.php:735 server_privileges.php:791 +#: server_privileges.php:1557 server_privileges.php:2090 #: server_processlist.php:55 server_synchronize.php:1159 msgid "Host" msgstr "Darbinė stotis" @@ -3031,7 +3074,7 @@ msgstr "Eksportuoti funkcijas" msgid "Open new phpMyAdmin window" msgstr "Atverti naują phpMyAdmin langą" -#: libraries/header.inc.php:115 +#: libraries/header.inc.php:119 #, fuzzy msgid "New table" msgstr "No tables" @@ -3191,20 +3234,20 @@ 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 +#: tbl_structure.php:471 msgid "Primary" msgstr "Pirminis" #: libraries/mult_submits.inc.php:98 libraries/tbl_properties.inc.php:116 #: libraries/tbl_properties.inc.php:525 tbl_printview.php:326 #: tbl_structure.php:31 tbl_structure.php:154 tbl_structure.php:158 -#: tbl_structure.php:475 tbl_structure.php:673 +#: tbl_structure.php:473 tbl_structure.php:671 msgid "Index" msgstr "Indeksas" #: libraries/mult_submits.inc.php:108 libraries/tbl_properties.inc.php:531 #: tbl_structure.php:35 tbl_structure.php:156 tbl_structure.php:160 -#: tbl_structure.php:478 +#: tbl_structure.php:476 msgid "Fulltext" msgstr "Fulltext" @@ -3508,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:711 -#: server_privileges.php:714 server_privileges.php:721 +#: libraries/replication_gui.lib.php:259 server_privileges.php:712 +#: server_privileges.php:715 server_privileges.php:722 #: server_synchronize.php:1171 msgid "User name" msgstr "Vartotojo vardas" @@ -3533,7 +3576,7 @@ msgstr "Kintamasis" #: 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 +#: tbl_structure.php:727 msgid "Value" msgstr "Reikšmė" @@ -3551,34 +3594,34 @@ msgstr "" msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:254 server_privileges.php:716 +#: libraries/replication_gui.lib.php:254 server_privileges.php:717 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:717 -#: server_privileges.php:784 server_privileges.php:808 -#: server_privileges.php:1928 server_privileges.php:1958 +#: libraries/replication_gui.lib.php:346 server_privileges.php:718 +#: server_privileges.php:785 server_privileges.php:809 +#: server_privileges.php:1948 server_privileges.php:1978 msgid "Use text field" msgstr "Naudokite teksto įvedimo lauką" -#: libraries/replication_gui.lib.php:302 server_privileges.php:764 +#: libraries/replication_gui.lib.php:302 server_privileges.php:765 msgid "Any host" msgstr "Bet kurį prisijungimo adresą" -#: libraries/replication_gui.lib.php:306 server_privileges.php:768 +#: libraries/replication_gui.lib.php:306 server_privileges.php:769 msgid "Local" msgstr "Lokali darbinė stotis" -#: libraries/replication_gui.lib.php:312 server_privileges.php:773 +#: libraries/replication_gui.lib.php:312 server_privileges.php:774 msgid "This Host" msgstr "Dabartinis serveris" -#: libraries/replication_gui.lib.php:318 server_privileges.php:779 +#: libraries/replication_gui.lib.php:318 server_privileges.php:780 msgid "Use Host Table" msgstr "Naudoti Host lentelę" -#: libraries/replication_gui.lib.php:331 server_privileges.php:792 +#: libraries/replication_gui.lib.php:331 server_privileges.php:793 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -3612,29 +3655,29 @@ msgstr "Nežinoma kalba: %1$s." msgid "Servers" msgstr "Serveriai" -#: libraries/server_links.inc.php:53 server_engines.php:112 +#: libraries/server_links.inc.php:54 server_engines.php:112 #: server_engines.php:116 server_status.php:415 test/theme.php:105 msgid "Variables" msgstr "Kintamieji" -#: libraries/server_links.inc.php:57 test/theme.php:109 +#: libraries/server_links.inc.php:58 test/theme.php:109 msgid "Charsets" msgstr "Koduotės" -#: libraries/server_links.inc.php:61 test/theme.php:113 +#: libraries/server_links.inc.php:62 test/theme.php:113 msgid "Engines" msgstr "Varikliai" -#: libraries/server_links.inc.php:76 server_binlog.php:110 +#: libraries/server_links.inc.php:77 server_binlog.php:110 #: server_status.php:364 test/theme.php:121 msgid "Binary log" msgstr "Binarinis logas" -#: libraries/server_links.inc.php:80 +#: libraries/server_links.inc.php:81 msgid "Processes" msgstr "Procesai" -#: libraries/server_links.inc.php:92 server_synchronize.php:1092 +#: libraries/server_links.inc.php:93 server_synchronize.php:1092 #: server_synchronize.php:1100 msgid "Synchronize" msgstr "Sinchronizuoti" @@ -3885,13 +3928,13 @@ msgstr "" msgid "Save" msgstr "Išsaugoti" -#: libraries/tbl_properties.inc.php:780 tbl_structure.php:542 +#: libraries/tbl_properties.inc.php:780 tbl_structure.php:540 #, fuzzy, php-format #| msgid "Add column(s)" msgid "Add %s column(s)" msgstr "Pridėti stulpelį(-ius)" -#: libraries/tbl_properties.inc.php:784 tbl_structure.php:536 +#: libraries/tbl_properties.inc.php:784 tbl_structure.php:534 #, fuzzy #| msgid "You have to choose at least one column to display" msgid "You have to add at least one column." @@ -4085,8 +4128,8 @@ msgstr "Atstatyti į pradinę būseną" msgid "Protocol version" msgstr "Protokolo versija" -#: main.php:189 server_privileges.php:1389 server_privileges.php:1536 -#: server_privileges.php:1650 server_privileges.php:2068 +#: main.php:189 server_privileges.php:1406 server_privileges.php:1556 +#: server_privileges.php:1670 server_privileges.php:2089 #: server_processlist.php:54 msgid "User" msgstr "Vartotojas" @@ -4527,116 +4570,116 @@ msgstr "Saugojimo varikliai" msgid "View dump (schema) of databases" msgstr "Peržiūrėti duombazių išrašą" -#: server_privileges.php:24 server_privileges.php:266 +#: server_privileges.php:25 server_privileges.php:267 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 +#: server_privileges.php:26 server_privileges.php:193 +#: server_privileges.php:516 msgid "Allows altering the structure of existing tables." msgstr "Leisti keisti jau egzistuojančių lenetelių struktūrą." -#: server_privileges.php:26 server_privileges.php:208 -#: server_privileges.php:521 +#: server_privileges.php:27 server_privileges.php:209 +#: server_privileges.php:522 #, 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 +#: server_privileges.php:28 server_privileges.php:185 +#: server_privileges.php:515 msgid "Allows creating new databases and tables." msgstr "Leisti kurti naujas duombazes ir lenteles." -#: server_privileges.php:28 server_privileges.php:207 -#: server_privileges.php:520 +#: server_privileges.php:29 server_privileges.php:208 +#: server_privileges.php:521 #, fuzzy msgid "Allows creating stored routines." msgstr "Leidžia sukurti naujus view'us." -#: server_privileges.php:29 server_privileges.php:514 +#: server_privileges.php:30 server_privileges.php:515 msgid "Allows creating new tables." msgstr "Leisti kurti naujas lenteles." -#: server_privileges.php:30 server_privileges.php:195 -#: server_privileges.php:518 +#: server_privileges.php:31 server_privileges.php:196 +#: server_privileges.php:519 msgid "Allows creating temporary tables." msgstr "Leisti kurti laikinas lenteles." -#: server_privileges.php:31 server_privileges.php:209 -#: server_privileges.php:554 +#: server_privileges.php:32 server_privileges.php:210 +#: server_privileges.php:555 msgid "Allows creating, dropping and renaming user accounts." msgstr "Leidžia kurti, šalinti ir pervadinti vartotojus." -#: server_privileges.php:32 server_privileges.php:199 -#: server_privileges.php:203 server_privileges.php:526 -#: server_privileges.php:530 +#: server_privileges.php:33 server_privileges.php:200 +#: server_privileges.php:204 server_privileges.php:527 +#: server_privileges.php:531 msgid "Allows creating new views." msgstr "Leidžia sukurti naujus view'us." -#: server_privileges.php:33 server_privileges.php:183 -#: server_privileges.php:506 +#: server_privileges.php:34 server_privileges.php:184 +#: server_privileges.php:507 msgid "Allows deleting data." msgstr "Leisti šalinti duomenis." -#: server_privileges.php:34 server_privileges.php:185 -#: server_privileges.php:517 +#: server_privileges.php:35 server_privileges.php:186 +#: server_privileges.php:518 msgid "Allows dropping databases and tables." msgstr "Leisti šalinti duombazes ir lenteles." -#: server_privileges.php:35 server_privileges.php:517 +#: server_privileges.php:36 server_privileges.php:518 msgid "Allows dropping tables." msgstr "Leisti šalinti lenteles." -#: server_privileges.php:36 server_privileges.php:200 -#: server_privileges.php:534 +#: server_privileges.php:37 server_privileges.php:201 +#: server_privileges.php:535 msgid "Allows to set up events for the event scheduler" msgstr "" -#: server_privileges.php:37 server_privileges.php:210 -#: server_privileges.php:522 +#: server_privileges.php:38 server_privileges.php:211 +#: server_privileges.php:523 #, 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 +#: server_privileges.php:39 server_privileges.php:190 +#: server_privileges.php:510 msgid "Allows importing data from and exporting data into files." msgstr "Leisti įterpti ir eksportuoti duomenis iš failų." -#: server_privileges.php:39 server_privileges.php:540 +#: server_privileges.php:40 server_privileges.php:541 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "Leisti įterpti naujus vartotojus, bei prisikirti privilegijas, neperkraunant " "privilegijų lentelės." -#: server_privileges.php:40 server_privileges.php:191 -#: server_privileges.php:516 +#: server_privileges.php:41 server_privileges.php:192 +#: server_privileges.php:517 msgid "Allows creating and dropping indexes." msgstr "Leisti įterpti ir modifikuoti indeksus." -#: server_privileges.php:41 server_privileges.php:181 -#: server_privileges.php:442 server_privileges.php:504 +#: server_privileges.php:42 server_privileges.php:182 +#: server_privileges.php:443 server_privileges.php:505 msgid "Allows inserting and replacing data." msgstr "Leisti įterpti ir modifikuoti duomenis." -#: server_privileges.php:42 server_privileges.php:196 -#: server_privileges.php:549 +#: server_privileges.php:43 server_privileges.php:197 +#: server_privileges.php:550 msgid "Allows locking tables for the current thread." msgstr "Leisti užrakinti lenteles procesų metu." -#: server_privileges.php:43 server_privileges.php:646 -#: server_privileges.php:648 +#: server_privileges.php:44 server_privileges.php:647 +#: server_privileges.php:649 msgid "Limits the number of new connections the user may open per hour." msgstr "Riboti prisijungimų kiekį per valandą." -#: server_privileges.php:44 server_privileges.php:634 -#: server_privileges.php:636 +#: server_privileges.php:45 server_privileges.php:635 +#: server_privileges.php:637 msgid "Limits the number of queries the user may send to the server per hour." msgstr "Riboti užklausų kiekį per valandą" -#: server_privileges.php:45 server_privileges.php:640 -#: server_privileges.php:642 +#: server_privileges.php:46 server_privileges.php:641 +#: server_privileges.php:643 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -4644,61 +4687,61 @@ 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 +#: server_privileges.php:47 server_privileges.php:653 +#: server_privileges.php:655 #, fuzzy msgid "Limits the number of simultaneous connections the user may have." msgstr "Riboti prisijungimų kiekį per valandą." -#: server_privileges.php:47 server_privileges.php:188 -#: server_privileges.php:544 +#: server_privileges.php:48 server_privileges.php:189 +#: server_privileges.php:545 msgid "Allows viewing processes of all users" msgstr "" -#: server_privileges.php:48 server_privileges.php:190 -#: server_privileges.php:448 server_privileges.php:550 +#: server_privileges.php:49 server_privileges.php:191 +#: server_privileges.php:449 server_privileges.php:551 msgid "Has no effect in this MySQL version." msgstr " Negalioja šioje MySQL versijoje." -#: server_privileges.php:49 server_privileges.php:186 -#: server_privileges.php:545 +#: server_privileges.php:50 server_privileges.php:187 +#: server_privileges.php:546 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" "Leisti perkrauti darbinę stotį, bei išvalyti laikinąją atmintį (cache)." -#: server_privileges.php:50 server_privileges.php:198 -#: server_privileges.php:552 +#: server_privileges.php:51 server_privileges.php:199 +#: server_privileges.php:553 msgid "Allows the user to ask where the slaves / masters are." msgstr "" "Leisti vartotojo užklausas dėl atstatymo master / slave darbinių stočių." -#: server_privileges.php:51 server_privileges.php:197 -#: server_privileges.php:553 +#: server_privileges.php:52 server_privileges.php:198 +#: server_privileges.php:554 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 +#: server_privileges.php:53 server_privileges.php:181 +#: server_privileges.php:440 server_privileges.php:504 msgid "Allows reading data." msgstr "Leisti skaityti duomenis." -#: server_privileges.php:53 server_privileges.php:193 -#: server_privileges.php:547 +#: server_privileges.php:54 server_privileges.php:194 +#: server_privileges.php:548 msgid "Gives access to the complete list of databases." msgstr "Suteikti prieigą prie visų duombazių." -#: server_privileges.php:54 server_privileges.php:204 -#: server_privileges.php:206 server_privileges.php:519 +#: server_privileges.php:55 server_privileges.php:205 +#: server_privileges.php:207 server_privileges.php:520 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Leidžia vykdyti SHOW CREATE VIEW užklausas." -#: server_privileges.php:55 server_privileges.php:187 -#: server_privileges.php:546 +#: server_privileges.php:56 server_privileges.php:188 +#: server_privileges.php:547 msgid "Allows shutting down the server." msgstr "Leisti išjungti serverį." -#: server_privileges.php:56 server_privileges.php:194 -#: server_privileges.php:543 +#: server_privileges.php:57 server_privileges.php:195 +#: server_privileges.php:544 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -4708,159 +4751,159 @@ msgstr "" "administratoriaus darbų, tokių kaip globalių reikšmių modifikavimui ar " "vartotojų atjungimui." -#: server_privileges.php:57 server_privileges.php:201 -#: server_privileges.php:535 +#: server_privileges.php:58 server_privileges.php:202 +#: server_privileges.php:536 #, 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 +#: server_privileges.php:59 server_privileges.php:183 +#: server_privileges.php:446 server_privileges.php:506 msgid "Allows changing data." msgstr "Leisti modifikuoti duomenis." -#: server_privileges.php:59 server_privileges.php:260 +#: server_privileges.php:60 server_privileges.php:261 msgid "No privileges." msgstr "Be teisių." -#: server_privileges.php:302 server_privileges.php:303 +#: server_privileges.php:303 server_privileges.php:304 #, fuzzy #| msgid "None" msgctxt "None privileges" msgid "None" msgstr "Nėra" -#: server_privileges.php:431 server_privileges.php:566 -#: server_privileges.php:1718 server_privileges.php:1724 +#: server_privileges.php:432 server_privileges.php:567 +#: server_privileges.php:1738 server_privileges.php:1744 msgid "Table-specific privileges" msgstr "Specifinės lentelių privilegijos" -#: server_privileges.php:432 server_privileges.php:574 -#: server_privileges.php:1540 +#: server_privileges.php:433 server_privileges.php:575 +#: server_privileges.php:1560 msgid " Note: MySQL privilege names are expressed in English " msgstr " Pastaba: MySQL privilegijų pavadinimai pateikiami anglų kalba" -#: server_privileges.php:563 server_privileges.php:1539 +#: server_privileges.php:564 server_privileges.php:1559 msgid "Global privileges" msgstr "Globalios teisės" -#: server_privileges.php:565 server_privileges.php:1718 +#: server_privileges.php:566 server_privileges.php:1738 msgid "Database-specific privileges" msgstr "Specifinės duombazių privilegijos" -#: server_privileges.php:610 +#: server_privileges.php:611 msgid "Administration" msgstr "Administracija" -#: server_privileges.php:630 +#: server_privileges.php:631 msgid "Resource limits" msgstr "Išteklių apribojimai" -#: server_privileges.php:631 +#: server_privileges.php:632 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "Pastaba: nėra jokių apribojimų jeigu reikšmė nurodyta lygi 0 (nuliui)." -#: server_privileges.php:708 +#: server_privileges.php:709 msgid "Login Information" msgstr "Prisijungimo informacija" -#: server_privileges.php:802 +#: server_privileges.php:803 msgid "Do not change the password" msgstr "Nekeisti slaptažodžio" -#: server_privileges.php:843 server_privileges.php:2205 +#: server_privileges.php:844 server_privileges.php:2226 #, fuzzy #| msgid "No user(s) found." msgid "No user found." msgstr "Nerasta vartotojo(ų)." -#: server_privileges.php:887 +#: server_privileges.php:888 #, php-format msgid "The user %s already exists!" msgstr "Vartotojas %s jau yra!" -#: server_privileges.php:970 +#: server_privileges.php:971 msgid "You have added a new user." msgstr "Jūs sukūrėte naują vartotoją." -#: server_privileges.php:1191 +#: server_privileges.php:1196 #, php-format msgid "You have updated the privileges for %s." msgstr "Jūs pakeitėte privilegijas %s." -#: server_privileges.php:1215 +#: server_privileges.php:1220 #, php-format msgid "You have revoked the privileges for %s" msgstr "Jūs panaikinote privilegijas %s" -#: server_privileges.php:1251 +#: server_privileges.php:1256 #, php-format msgid "The password for %s was changed successfully." msgstr "Vartotojo %s slaptažodis sėkmingai pakeistas." -#: server_privileges.php:1271 +#: server_privileges.php:1276 #, php-format msgid "Deleting %s" msgstr "Šaliname: %s" -#: server_privileges.php:1282 +#: server_privileges.php:1287 msgid "No users selected for deleting!" msgstr "Nepasirinta vartotojų trynimui!" -#: server_privileges.php:1285 +#: server_privileges.php:1290 msgid "Reloading the privileges" msgstr "Perkraunamos privilegijos" -#: server_privileges.php:1300 +#: server_privileges.php:1305 msgid "The selected users have been deleted successfully." msgstr "Pažymėti vartotojai sėkmingai pašalinti." -#: server_privileges.php:1335 +#: server_privileges.php:1344 msgid "The privileges were reloaded successfully." msgstr "Teisės sėkmingai perkrautos." -#: server_privileges.php:1363 server_privileges.php:1649 +#: server_privileges.php:1380 server_privileges.php:1669 msgid "Edit Privileges" msgstr "Redaguoti privilegijas" -#: server_privileges.php:1372 +#: server_privileges.php:1389 msgid "Revoke" msgstr "Panaikinti" -#: server_privileges.php:1404 +#: server_privileges.php:1424 msgid "User overview" msgstr "Vartotojų peržiūra" -#: server_privileges.php:1541 server_privileges.php:1723 -#: server_privileges.php:2072 +#: server_privileges.php:1561 server_privileges.php:1743 +#: server_privileges.php:2093 msgid "Grant" msgstr "Suteikti" -#: server_privileges.php:1560 server_privileges.php:2162 +#: server_privileges.php:1580 server_privileges.php:2183 msgid "Any" msgstr "Bet kurį(ią)" -#: server_privileges.php:1609 server_privileges.php:1633 -#: server_privileges.php:2027 server_privileges.php:2216 +#: server_privileges.php:1629 server_privileges.php:1653 +#: server_privileges.php:2048 server_privileges.php:2237 msgid "Add a new User" msgstr "Sukurti naują vartotoją" -#: server_privileges.php:1614 +#: server_privileges.php:1634 msgid "Remove selected users" msgstr "Pašalinti pažymėtus vartotojus" -#: server_privileges.php:1617 +#: server_privileges.php:1637 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:1618 server_privileges.php:1619 -#: server_privileges.php:1620 +#: server_privileges.php:1638 server_privileges.php:1639 +#: server_privileges.php:1640 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:1636 +#: server_privileges.php:1656 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -4872,49 +4915,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:1684 +#: server_privileges.php:1704 msgid "The selected user was not found in the privilege table." msgstr "Privilegijų lentelėje pasirinktas vartotojas nerastas." -#: server_privileges.php:1724 +#: server_privileges.php:1744 msgid "Column-specific privileges" msgstr "Specifinės stulpelių privilegijos" -#: server_privileges.php:1925 +#: server_privileges.php:1945 msgid "Add privileges on the following database" msgstr "Sukurti privilegijas šiai duombazei" -#: server_privileges.php:1943 +#: server_privileges.php:1963 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:1946 +#: server_privileges.php:1966 msgid "Add privileges on the following table" msgstr "Sukurti privilegijas šiai lentelei" -#: server_privileges.php:2003 +#: server_privileges.php:2023 msgid "Change Login Information / Copy User" msgstr "Pakeisti prisijungimo informaciją / Kopijuoti vartotojo duomenis" -#: server_privileges.php:2006 +#: server_privileges.php:2026 msgid "Create a new user with the same privileges and ..." msgstr "Sukurti naują vartotoją su tom pačiom privilegijom ir ..." -#: server_privileges.php:2008 +#: server_privileges.php:2028 msgid "... keep the old one." msgstr "... palikti seną vartotoją." -#: server_privileges.php:2009 +#: server_privileges.php:2029 msgid " ... delete the old one from the user tables." msgstr " ... pašalinti seną vartotoją iš vartotojų lentelės." -#: server_privileges.php:2010 +#: server_privileges.php:2030 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:2011 +#: server_privileges.php:2031 msgid "" " ... delete the old one from the user tables and reload the privileges " "afterwards." @@ -4922,44 +4965,44 @@ msgstr "" " ... pašalinti seną vartotoją iš vartotojų lentelės ir poto perkrauti " "privilegijas" -#: server_privileges.php:2033 +#: server_privileges.php:2054 msgid "Database for user" msgstr "" -#: server_privileges.php:2037 +#: server_privileges.php:2058 #, fuzzy #| msgid "None" msgctxt "Create none database for user" msgid "None" msgstr "Nėra" -#: server_privileges.php:2038 +#: server_privileges.php:2059 msgid "Create database with same name and grant all privileges" msgstr "" -#: server_privileges.php:2039 +#: server_privileges.php:2060 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "" -#: server_privileges.php:2042 +#: server_privileges.php:2063 #, fuzzy, php-format msgid "Grant all privileges on database "%s"" msgstr "Patikrinti duombazės "%s" privilegijas." -#: server_privileges.php:2065 +#: server_privileges.php:2086 #, php-format msgid "Users having access to "%s"" msgstr "Vartotojai turintys priėjimą prie "%s"" -#: server_privileges.php:2173 +#: server_privileges.php:2194 msgid "global" msgstr "globalus" -#: server_privileges.php:2175 +#: server_privileges.php:2196 msgid "database-specific" msgstr "priklausantis nuo duombazės tipo" -#: server_privileges.php:2177 +#: server_privileges.php:2198 msgid "wildcard" msgstr "pakaitos simbolis" @@ -7692,6 +7735,10 @@ msgstr "Įterpti kaip naują eilutę ir ignoruoti klaidas" msgid "Show insert query" msgstr "Rodoma SQL užklausa" +#: tbl_change.php:1143 +msgid "and then" +msgstr "ir tada" + #: tbl_change.php:1147 msgid "Go back to previous page" msgstr "Sugrįžti į buvusį puslapį" @@ -7771,7 +7818,7 @@ msgstr "(\"PRIMARY\" yra vienintelis pirminio rakto tipas!)" msgid "Add to index  %s column(s)" msgstr "Įterpti indeksui papildomus  %s stulpelį(ius)" -#: tbl_indexes.php:256 tbl_structure.php:589 tbl_structure.php:600 +#: tbl_indexes.php:256 tbl_structure.php:587 tbl_structure.php:598 msgid "Column count has to be larger than zero." msgstr "" @@ -7887,39 +7934,39 @@ msgstr "Patikrinti sąryšių vientisumą:" msgid "Show tables" msgstr "Rodyti lentelės" -#: tbl_printview.php:310 tbl_structure.php:656 +#: tbl_printview.php:310 tbl_structure.php:654 msgid "Space usage" msgstr "Vietos naudojimas" -#: tbl_printview.php:314 tbl_structure.php:660 +#: tbl_printview.php:314 tbl_structure.php:658 msgid "Usage" msgstr "Išnaudota" -#: tbl_printview.php:341 tbl_structure.php:687 +#: tbl_printview.php:341 tbl_structure.php:685 msgid "Effective" msgstr "Efektyvus" -#: tbl_printview.php:366 tbl_structure.php:725 +#: tbl_printview.php:366 tbl_structure.php:723 msgid "Row Statistics" msgstr "Eilučių statistika" -#: tbl_printview.php:369 tbl_structure.php:728 +#: tbl_printview.php:369 tbl_structure.php:726 msgid "Statements" msgstr "Parametrai" -#: tbl_printview.php:380 tbl_structure.php:740 +#: tbl_printview.php:380 tbl_structure.php:738 msgid "static" msgstr "" -#: tbl_printview.php:382 tbl_structure.php:742 +#: tbl_printview.php:382 tbl_structure.php:740 msgid "dynamic" msgstr "dinaminis" -#: tbl_printview.php:404 tbl_structure.php:785 +#: tbl_printview.php:404 tbl_structure.php:783 msgid "Row length" msgstr "Eilutės ilgis" -#: tbl_printview.php:414 tbl_structure.php:793 +#: tbl_printview.php:414 tbl_structure.php:791 msgid " Row size " msgstr "Eilutės dydis" @@ -7991,50 +8038,50 @@ msgstr "Nėra" msgid "Column %s has been dropped" msgstr "Lentelė %s panaikinta" -#: tbl_structure.php:385 +#: tbl_structure.php:384 #, php-format msgid "A primary key has been added on %s" msgstr "Stulpeliui %s sukurtas PIRMINIS raktas" -#: tbl_structure.php:400 tbl_structure.php:414 tbl_structure.php:428 +#: tbl_structure.php:398 tbl_structure.php:412 tbl_structure.php:426 #, php-format msgid "An index has been added on %s" msgstr "Indeksas sukurtas %s stulpeliui" -#: tbl_structure.php:506 tbl_structure.php:508 +#: tbl_structure.php:504 tbl_structure.php:506 msgid "Relation view" msgstr "Peržiūrėti sąryšius" -#: tbl_structure.php:515 tbl_structure.php:517 +#: tbl_structure.php:513 tbl_structure.php:515 msgid "Propose table structure" msgstr "Analizuoti lentelės struktūrą" -#: tbl_structure.php:540 +#: tbl_structure.php:538 #, fuzzy #| msgid "Add column(s)" msgid "Add column" msgstr "Pridėti stulpelį(-ius)" -#: tbl_structure.php:554 +#: tbl_structure.php:552 msgid "At End of Table" msgstr "Lentelės pabaigoje" -#: tbl_structure.php:555 +#: tbl_structure.php:553 msgid "At Beginning of Table" msgstr "Lentelės pradžioje" -#: tbl_structure.php:556 +#: tbl_structure.php:554 #, php-format msgid "After %s" msgstr "Po %s" -#: tbl_structure.php:594 +#: tbl_structure.php:592 #, fuzzy, php-format #| msgid "Create an index on %s columns" msgid "Create an index on  %s columns" msgstr "Sukurti indeksą  %s stulpeliui(iams)" -#: tbl_structure.php:756 +#: tbl_structure.php:754 msgid "partitioned" msgstr "" @@ -8453,9 +8500,6 @@ msgstr "Pervadinti lentelę į" #~ msgid "Process list" #~ msgstr "Procesų sąrašas" -#~ msgid "Reload privileges" -#~ msgstr "Perkrauti privilegijas" - #~ msgid "" #~ "The users will still have the USAGE privilege until the privileges are " #~ "reloaded." diff --git a/po/lv.po b/po/lv.po index abc1fc3bd..a6b56336a 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-13 09:03-0400\n" +"POT-Creation-Date: 2010-06-22 00:55+0530\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:1514 +#: libraries/display_tbl.lib.php:417 server_privileges.php:1534 msgid "Show all" msgstr "Rādīt visu" -#: browse_foreigners.php:82 libraries/common.lib.php:2313 +#: browse_foreigners.php:82 libraries/common.lib.php:2317 #: 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,18 +37,18 @@ 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:2831 -#: libraries/common.lib.php:2838 libraries/db_links.inc.php:75 +#: db_structure.php:106 libraries/common.lib.php:2835 +#: libraries/common.lib.php:2842 libraries/db_links.inc.php:75 #: libraries/tbl_links.inc.php:63 msgid "Search" msgstr "Meklēt" -#: browse_foreigners.php:153 db_operations.php:385 db_operations.php:429 -#: db_operations.php:499 db_operations.php:609 db_search.php:362 -#: db_structure.php:567 js/messages.php:48 libraries/Config.class.php:1046 +#: browse_foreigners.php:153 db_operations.php:394 db_operations.php:438 +#: db_operations.php:508 db_operations.php:618 db_search.php:362 +#: db_structure.php:565 js/messages.php:53 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:1335 libraries/common.lib.php:2288 +#: libraries/common.lib.php:1335 libraries/common.lib.php:2292 #: 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,15 +59,15 @@ 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:664 server_privileges.php:1624 -#: server_privileges.php:1971 server_privileges.php:2018 -#: server_privileges.php:2057 server_replication.php:235 +#: server_privileges.php:665 server_privileges.php:1644 +#: server_privileges.php:1991 server_privileges.php:2038 +#: server_privileges.php:2078 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 #: tbl_operations.php:302 tbl_operations.php:499 tbl_operations.php:561 -#: tbl_operations.php:681 tbl_select.php:327 tbl_structure.php:562 -#: tbl_structure.php:597 tbl_tracking.php:395 tbl_tracking.php:512 +#: tbl_operations.php:681 tbl_select.php:327 tbl_structure.php:560 +#: tbl_structure.php:595 tbl_tracking.php:395 tbl_tracking.php:512 #: view_create.php:182 view_operations.php:101 msgid "Go" msgstr "Aiziet!" @@ -93,7 +93,7 @@ msgstr "Lietot šo vērtību" msgid "Database %1$s has been created." msgstr "Datubāze %s tika izdzēsta." -#: db_datadict.php:49 db_operations.php:378 +#: db_datadict.php:49 db_operations.php:387 msgid "Database comment: " msgstr "Datubāzes komentārs: " @@ -120,10 +120,10 @@ 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:2070 +#: pdf_schema.php:1263 pdf_schema.php:1284 server_privileges.php:2091 #: 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 +#: tbl_structure.php:657 tbl_tracking.php:274 tbl_tracking.php:321 msgid "Type" msgstr "Tips" @@ -136,7 +136,7 @@ msgstr "Tips" msgid "Null" msgstr "Nulle" -#: db_datadict.php:178 db_structure.php:501 libraries/export/htmlword.php:247 +#: db_datadict.php:178 db_structure.php:499 libraries/export/htmlword.php:247 #: libraries/export/latex.php:360 libraries/export/odt.php:303 #: libraries/export/texytext.php:236 libraries/tbl_properties.inc.php:106 #: pdf_schema.php:1266 pdf_schema.php:1287 tbl_printview.php:146 @@ -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: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 +#: pdf_schema.php:1344 server_privileges.php:1588 server_privileges.php:1599 +#: server_privileges.php:1909 server_privileges.php:1914 +#: server_privileges.php:2208 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:1565 -#: server_privileges.php:1579 server_privileges.php:1889 -#: server_privileges.php:1892 server_privileges.php:2187 sql.php:193 +#: server_databases.php:64 server_privileges.php:1585 +#: server_privileges.php:1599 server_privileges.php:1909 +#: server_privileges.php:1912 server_privileges.php:2208 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" @@ -209,126 +209,122 @@ msgstr "Iezīmēt visu" msgid "Unselect All" msgstr "Neiezīmēt neko" -#: db_operations.php:38 tbl_create.php:54 +#: db_operations.php:43 tbl_create.php:54 msgid "The database name is empty!" msgstr "Datubāzes nosaukums ir tukšs!" -#: db_operations.php:236 +#: db_operations.php:241 #, php-format msgid "Database %s has been renamed to %s" msgstr "Datubāze %s tika pārsaukta par %s" -#: db_operations.php:240 +#: db_operations.php:245 #, php-format msgid "Database %s has been copied to %s" msgstr "Datubāze %s tika pārkopēta uz %s" -#: db_operations.php:412 +#: db_operations.php:421 msgid "Rename database to" msgstr "Pārsaukt datubāzi par" -#: db_operations.php:417 server_processlist.php:57 +#: db_operations.php:426 server_processlist.php:57 msgid "Command" msgstr "Komanda" -#: db_operations.php:429 tbl_change.php:1143 -msgid "and then" -msgstr "" - -#: db_operations.php:455 +#: db_operations.php:464 msgid "Copy database to" msgstr "Kopēt datubāzi uz" -#: db_operations.php:462 tbl_operations.php:528 tbl_tracking.php:388 +#: db_operations.php:471 tbl_operations.php:528 tbl_tracking.php:388 msgid "Structure only" msgstr "Tikai struktūra" -#: db_operations.php:463 tbl_operations.php:529 tbl_tracking.php:390 +#: db_operations.php:472 tbl_operations.php:529 tbl_tracking.php:390 msgid "Structure and data" msgstr "Struktūra un dati" -#: db_operations.php:464 tbl_operations.php:530 tbl_tracking.php:389 +#: db_operations.php:473 tbl_operations.php:530 tbl_tracking.php:389 msgid "Data only" msgstr "Tikai dati" -#: db_operations.php:472 +#: db_operations.php:481 msgid "CREATE DATABASE before copying" msgstr "" -#: db_operations.php:475 libraries/export/sql.php:52 +#: db_operations.php:484 libraries/export/sql.php:52 #: libraries/export/sql.php:74 libraries/export/sql.php:76 #: libraries/export/sql.php:82 tbl_operations.php:536 #, php-format msgid "Add %s" msgstr "" -#: db_operations.php:479 libraries/export/sql.php:78 tbl_operations.php:299 +#: db_operations.php:488 libraries/export/sql.php:78 tbl_operations.php:299 #: tbl_operations.php:538 msgid "Add AUTO_INCREMENT value" msgstr "Pievienot AUTO_INCREMENT vērtību" -#: db_operations.php:483 tbl_operations.php:545 +#: db_operations.php:492 tbl_operations.php:545 msgid "Add constraints" msgstr "Pievienot ierobežojumus" -#: db_operations.php:496 +#: db_operations.php:505 msgid "Switch to copied database" msgstr "Pārslēgties uz nokopēto datubāzi" -#: db_operations.php:537 +#: db_operations.php:546 msgid "BLOB Repository" msgstr "" -#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1352 -#: libraries/server_links.inc.php:49 server_processlist.php:59 +#: db_operations.php:549 db_tracking.php:76 libraries/common.lib.php:1352 +#: libraries/server_links.inc.php:50 server_processlist.php:59 #: tbl_tracking.php:596 test/theme.php:101 msgid "Status" msgstr "Statuss" -#: db_operations.php:548 +#: db_operations.php:557 #, fuzzy #| msgid "Enabled" msgctxt "BLOB repository" msgid "Enabled" msgstr "Ieslēgts" -#: db_operations.php:552 +#: db_operations.php:561 #, fuzzy msgid "Disable" msgstr "Izslēgts" -#: db_operations.php:562 +#: db_operations.php:571 msgid "Damaged" msgstr "" -#: db_operations.php:566 +#: db_operations.php:575 #, fuzzy msgctxt "BLOB repository" msgid "Repair" msgstr "Restaurēt tabulu" -#: db_operations.php:574 +#: db_operations.php:583 #, fuzzy #| msgid "Disabled" msgctxt "BLOB repository" msgid "Disabled" msgstr "Izslēgts" -#: db_operations.php:578 +#: db_operations.php:587 #, fuzzy msgid "Enable" msgstr "Ieslēgts" -#: db_operations.php:602 libraries/Index.class.php:448 +#: db_operations.php:611 libraries/Index.class.php:448 #: libraries/db_structure.lib.php:62 libraries/mysql_charsets.lib.php:107 #: libraries/tbl_properties.inc.php:107 libraries/tbl_properties.inc.php:730 #: server_collations.php:54 server_collations.php:66 server_databases.php:111 #: tbl_operations.php:363 tbl_select.php:137 tbl_structure.php:179 -#: tbl_structure.php:767 tbl_tracking.php:275 tbl_tracking.php:326 +#: tbl_structure.php:765 tbl_tracking.php:275 tbl_tracking.php:326 msgid "Collation" msgstr "Izkārtojumi" -#: db_operations.php:615 main.php:316 pdf_schema.php:34 +#: db_operations.php:624 main.php:316 pdf_schema.php:34 #, php-format msgid "" "The additional features for working with linked tables have been " @@ -337,14 +333,14 @@ msgstr "" "Papildiespējas darbam ar saistītām tabulām tika izslēgtas. Lai uzzinātu " "kāpēc, klikškiniet %sšeit%s." -#: db_operations.php:648 +#: db_operations.php:657 msgid "Edit PDF Pages" 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:1665 -#: server_privileges.php:1721 server_privileges.php:1985 +#: libraries/header.inc.php:130 pdf_pages.php:424 server_privileges.php:1685 +#: server_privileges.php:1741 server_privileges.php:2005 #: server_synchronize.php:423 server_synchronize.php:866 tbl_tracking.php:592 #: test/theme.php:75 msgid "Table" @@ -353,7 +349,7 @@ msgstr "Tabula" #: db_printview.php:105 libraries/db_structure.lib.php:56 #: libraries/header_printview.inc.php:63 libraries/import.lib.php:146 #: navigation.php:638 navigation.php:660 server_databases.php:122 -#: tbl_printview.php:394 tbl_structure.php:365 tbl_structure.php:777 +#: tbl_printview.php:394 tbl_structure.php:365 tbl_structure.php:775 msgid "Rows" msgstr "Rindas" @@ -361,30 +357,30 @@ msgstr "Rindas" msgid "Size" msgstr "Izmērs" -#: db_printview.php:162 db_structure.php:457 libraries/export/sql.php:559 +#: db_printview.php:162 db_structure.php:455 libraries/export/sql.php:559 #: libraries/export/sql.php:899 msgid "in use" msgstr "lietošanā" #: db_printview.php:187 libraries/db_info.inc.php:88 #: libraries/export/sql.php:514 pdf_schema.php:1241 tbl_printview.php:434 -#: tbl_structure.php:809 +#: tbl_structure.php:807 msgid "Creation" msgstr "Izveidošana" #: db_printview.php:196 libraries/db_info.inc.php:93 #: libraries/export/sql.php:519 pdf_schema.php:1246 tbl_printview.php:444 -#: tbl_structure.php:817 +#: tbl_structure.php:815 msgid "Last update" msgstr "Pēdējā atjaunošana" #: db_printview.php:205 libraries/db_info.inc.php:98 #: libraries/export/sql.php:524 pdf_schema.php:1251 tbl_printview.php:454 -#: tbl_structure.php:825 +#: tbl_structure.php:823 msgid "Last check" msgstr "Pēdējā pārbaude" -#: db_printview.php:222 db_structure.php:480 +#: db_printview.php:222 db_structure.php:478 #, fuzzy, php-format #| msgid "%s table(s)" msgid "%s table" @@ -445,7 +441,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:297 tbl_change.php:1031 tbl_indexes.php:250 +#: server_privileges.php:298 tbl_change.php:1031 tbl_indexes.php:250 #: tbl_select.php:288 msgid "Or" msgstr "Vai" @@ -518,9 +514,9 @@ 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:2833 +#: db_structure.php:105 libraries/common.lib.php:2837 #: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50 -#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:467 +#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:465 msgid "Browse" msgstr "Apskatīt" @@ -565,36 +561,36 @@ 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:2832 libraries/sql_query_form.lib.php:334 +#: libraries/common.lib.php:2836 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:2829 libraries/common.lib.php:2836 +#: libraries/common.lib.php:2833 libraries/common.lib.php:2840 #: 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:1106 #: libraries/tbl_links.inc.php:56 pmd_general.php:134 -#: server_privileges.php:593 server_replication.php:315 tbl_tracking.php:269 +#: server_privileges.php:594 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:1656 +#: db_structure.php:543 db_structure.php:544 db_tracking.php:91 +#: libraries/Index.class.php:483 libraries/common.lib.php:1657 #: 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 -#: tbl_structure.php:152 tbl_structure.php:471 +#: tbl_structure.php:152 tbl_structure.php:469 msgid "Drop" 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:1655 +#: db_structure.php:541 db_structure.php:542 libraries/common.lib.php:1656 #: libraries/mult_submits.inc.php:39 libraries/tbl_links.inc.php:105 msgid "Empty" msgstr "Iztukšot" @@ -604,112 +600,112 @@ msgstr "Iztukšot" msgid "Table %s has been emptied" msgstr "Tabula %s tika iztukšota" -#: db_structure.php:326 libraries/tbl_links.inc.php:133 +#: db_structure.php:325 libraries/tbl_links.inc.php:133 #, fuzzy, php-format msgid "View %s has been dropped" msgstr "Lauks %s tika izdzēsts" -#: db_structure.php:326 libraries/tbl_links.inc.php:133 +#: db_structure.php:325 libraries/tbl_links.inc.php:133 #, php-format msgid "Table %s has been dropped" msgstr "Tabula %s tika izdzēsta" -#: db_structure.php:333 +#: db_structure.php:332 msgid "Tracking is active." msgstr "" -#: db_structure.php:335 +#: db_structure.php:334 msgid "Tracking is not active." msgstr "" -#: db_structure.php:420 libraries/display_tbl.lib.php:1944 +#: db_structure.php:418 libraries/display_tbl.lib.php:1944 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation%" "s." msgstr "" -#: db_structure.php:434 db_structure.php:448 libraries/header.inc.php:126 +#: db_structure.php:432 db_structure.php:446 libraries/header.inc.php:130 #: libraries/tbl_info.inc.php:66 tbl_structure.php:185 test/theme.php:74 msgid "View" msgstr "" -#: db_structure.php:485 libraries/db_structure.lib.php:49 -#: libraries/server_links.inc.php:70 server_replication.php:33 +#: db_structure.php:483 libraries/db_structure.lib.php:49 +#: libraries/server_links.inc.php:71 server_replication.php:33 #: server_replication.php:164 server_status.php:369 #, fuzzy msgid "Replication" msgstr "Relācijas" -#: db_structure.php:489 +#: db_structure.php:487 msgid "Sum" msgstr "Kopumā" -#: db_structure.php:496 libraries/StorageEngine.class.php:356 +#: db_structure.php:494 libraries/StorageEngine.class.php:356 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "" -#: db_structure.php:524 db_structure.php:541 db_structure.php:542 +#: db_structure.php:522 db_structure.php:539 db_structure.php:540 #: 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:1596 tbl_structure.php:455 -#: tbl_structure.php:464 +#: server_databases.php:351 server_privileges.php:1616 tbl_structure.php:453 +#: tbl_structure.php:462 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:569 -#: server_privileges.php:1599 tbl_structure.php:458 +#: db_structure.php:525 libraries/display_tbl.lib.php:2076 +#: server_databases.php:348 server_privileges.php:570 +#: server_privileges.php:1619 tbl_structure.php:456 msgid "Check All" msgstr "Iezīmēt visu" -#: db_structure.php:531 libraries/display_tbl.lib.php:2077 +#: db_structure.php:529 libraries/display_tbl.lib.php:2077 #: libraries/replication_gui.lib.php:33 server_databases.php:350 -#: server_privileges.php:572 server_privileges.php:1603 tbl_structure.php:462 +#: server_privileges.php:573 server_privileges.php:1623 tbl_structure.php:460 msgid "Uncheck All" msgstr "Neiezīmēt neko" -#: db_structure.php:536 +#: db_structure.php:534 msgid "Check tables having overhead" msgstr "Iezīmēt tabulas ar pārtēriņu" -#: db_structure.php:547 db_structure.php:548 db_structure.php:599 +#: db_structure.php:545 db_structure.php:546 db_structure.php:597 #: libraries/display_tbl.lib.php:2180 libraries/mult_submits.inc.php:28 -#: tbl_structure.php:492 tbl_structure.php:494 +#: tbl_structure.php:490 tbl_structure.php:492 msgid "Print view" msgstr "Izdrukas versija" -#: db_structure.php:549 db_structure.php:550 libraries/mult_submits.inc.php:42 +#: db_structure.php:547 db_structure.php:548 libraries/mult_submits.inc.php:42 #: tbl_operations.php:581 msgid "Check table" msgstr "Pārbaudīt tabulu" -#: db_structure.php:551 db_structure.php:552 libraries/mult_submits.inc.php:47 -#: tbl_operations.php:621 tbl_structure.php:709 tbl_structure.php:711 +#: db_structure.php:549 db_structure.php:550 libraries/mult_submits.inc.php:47 +#: tbl_operations.php:621 tbl_structure.php:707 tbl_structure.php:709 msgid "Optimize table" msgstr "Optimizēt tabulu" -#: db_structure.php:553 db_structure.php:554 libraries/mult_submits.inc.php:52 +#: db_structure.php:551 db_structure.php:552 libraries/mult_submits.inc.php:52 #: tbl_operations.php:611 msgid "Repair table" msgstr "Restaurēt tabulu" -#: db_structure.php:555 db_structure.php:556 libraries/mult_submits.inc.php:57 +#: db_structure.php:553 db_structure.php:554 libraries/mult_submits.inc.php:57 #: tbl_operations.php:601 msgid "Analyze table" msgstr "Analizēt tabulu" -#: db_structure.php:557 db_structure.php:558 libraries/db_links.inc.php:71 +#: db_structure.php:555 db_structure.php:556 libraries/db_links.inc.php:71 #: 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:1380 +#: libraries/server_links.inc.php:85 libraries/tbl_links.inc.php:82 +#: pmd_pdf.php:84 pmd_pdf.php:109 server_privileges.php:1397 #: setup/frames/menu.inc.php:22 tbl_row_action.php:59 msgid "Export" msgstr "Eksports" -#: db_structure.php:606 libraries/display_pdf_schema.lib.php:44 +#: db_structure.php:604 libraries/display_pdf_schema.lib.php:44 msgid "Data Dictionary" msgstr "Datu vārdnīca" @@ -720,10 +716,10 @@ msgstr "" #: db_tracking.php:71 libraries/export/htmlword.php:86 #: libraries/export/latex.php:148 libraries/export/odt.php:113 #: libraries/export/sql.php:342 libraries/export/texytext.php:84 -#: libraries/export/xml.php:255 libraries/header.inc.php:106 +#: libraries/export/xml.php:255 libraries/header.inc.php:110 #: libraries/header_printview.inc.php:58 server_databases.php:169 -#: server_privileges.php:1660 server_privileges.php:1721 -#: server_privileges.php:1979 server_processlist.php:56 +#: server_privileges.php:1680 server_privileges.php:1741 +#: server_privileges.php:1999 server_processlist.php:56 #: server_synchronize.php:1179 server_synchronize.php:1183 #: tbl_tracking.php:591 test/theme.php:65 msgid "Database" @@ -744,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:1542 server_privileges.php:1725 -#: server_privileges.php:2073 tbl_structure.php:187 +#: server_privileges.php:1562 server_privileges.php:1745 +#: server_privileges.php:2094 tbl_structure.php:187 msgid "Action" msgstr "Darbība" @@ -781,8 +777,8 @@ msgstr "Tikai struktūra" msgid "Untracked tables" msgstr "" -#: db_tracking.php:172 db_tracking.php:174 tbl_structure.php:528 -#: tbl_structure.php:530 +#: db_tracking.php:172 db_tracking.php:174 tbl_structure.php:526 +#: tbl_structure.php:528 #, fuzzy msgid "Track table" msgstr "Pārbaudīt tabulu" @@ -939,189 +935,235 @@ 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:1236 user_password.php:70 +#: js/messages.php:44 server_privileges.php:1241 user_password.php:70 msgid "The password is empty!" msgstr "Parole nav norādīta!" -#: js/messages.php:45 server_privileges.php:1234 user_password.php:73 +#: js/messages.php:45 server_privileges.php:1239 user_password.php:73 msgid "The passwords aren't the same!" msgstr "Paroles nesakrīt!" -#: js/messages.php:49 pmd_general.php:342 pmd_general.php:379 +#: js/messages.php:46 +#, fuzzy +#| msgid "Add a new User" +msgid "Add a New User" +msgstr "Pievienot jaunu lietotāju" + +#: js/messages.php:47 js/messages.php:54 pmd_general.php:342 +#: pmd_general.php:379 msgid "Cancel" msgstr "" -#: js/messages.php:52 pmd_save_pos.php:54 +#: js/messages.php:48 +#, fuzzy +msgid "Create User" +msgstr "Servera versija" + +#: js/messages.php:49 +#, fuzzy +msgid "Reloading Privileges" +msgstr "Globālās privilēģijas" + +#: js/messages.php:50 +#, fuzzy +#| msgid "Remove selected users" +msgid "Removing Selected Users" +msgstr "Dzēst izvēlētos lietotājus" + +#: js/messages.php:57 +#, fuzzy +msgid "Loading" +msgstr "Lokāls" + +#: js/messages.php:58 +#, fuzzy +#| msgid "Processes" +msgid "Processing Request" +msgstr "Procesi" + +#: js/messages.php:59 +msgid "Error in Processing Request" +msgstr "" + +#: js/messages.php:60 +msgid "Dropping Column" +msgstr "" + +#: js/messages.php:61 +msgid "Adding Primary Key" +msgstr "" + +#: js/messages.php:64 pmd_save_pos.php:54 msgid "Modifications have been saved" msgstr "Labojumi tika saglabāti" -#: js/messages.php:53 pmd_relation_upd.php:49 +#: js/messages.php:65 pmd_relation_upd.php:49 #, fuzzy msgid "Relation deleted" msgstr "Relāciju pārskats" -#: js/messages.php:54 pmd_relation_new.php:64 +#: js/messages.php:66 pmd_relation_new.php:64 msgid "FOREIGN KEY relation added" msgstr "" -#: js/messages.php:55 pmd_relation_new.php:86 +#: js/messages.php:67 pmd_relation_new.php:86 #, fuzzy msgid "Internal relation added" msgstr "Iekšējās relācijas" -#: js/messages.php:56 pmd_relation_new.php:63 pmd_relation_new.php:88 +#: js/messages.php:68 pmd_relation_new.php:63 pmd_relation_new.php:88 msgid "Error: Relation not added." msgstr "" -#: js/messages.php:57 pmd_relation_new.php:31 +#: js/messages.php:69 pmd_relation_new.php:31 msgid "Error: relation already exists." msgstr "" -#: js/messages.php:58 +#: js/messages.php:70 msgid "Error saving coordinates for Designer." msgstr "" -#: js/messages.php:59 libraries/relation.lib.php:107 +#: js/messages.php:71 libraries/relation.lib.php:107 #: libraries/relation.lib.php:119 msgid "General relation features" msgstr "Galvenās relāciju īpašības" -#: js/messages.php:59 libraries/relation.lib.php:101 +#: js/messages.php:71 libraries/relation.lib.php:101 #: libraries/relation.lib.php:108 msgid "Disabled" msgstr "Izslēgts" -#: js/messages.php:60 +#: js/messages.php:72 msgid "Select referenced key" msgstr "" -#: js/messages.php:61 +#: js/messages.php:73 msgid "Select Foreign Key" msgstr "" -#: js/messages.php:62 +#: js/messages.php:74 msgid "Please select the primary key or a unique key" msgstr "" -#: js/messages.php:63 pmd_general.php:77 tbl_relation.php:548 +#: js/messages.php:75 pmd_general.php:77 tbl_relation.php:548 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" msgstr "Izvēlieties, kuru lauku rādīt" #. l10n: Display text for calendar close link -#: js/messages.php:73 +#: js/messages.php:85 #, fuzzy #| msgid "None" msgid "Done" msgstr "Nav" #. l10n: Display text for previous month link in calendar -#: js/messages.php:75 +#: js/messages.php:87 #, fuzzy #| msgid "Previous" msgid "Prev" msgstr "Iepriekšējie" #. l10n: Display text for next month link in calendar -#: js/messages.php:77 libraries/common.lib.php:2353 -#: libraries/common.lib.php:2356 libraries/display_tbl.lib.php:338 +#: js/messages.php:89 libraries/common.lib.php:2357 +#: libraries/common.lib.php:2360 libraries/display_tbl.lib.php:338 #: server_binlog.php:205 server_binlog.php:207 tbl_printview.php:424 -#: tbl_structure.php:801 +#: tbl_structure.php:799 msgid "Next" msgstr "Nākamie" #. l10n: Display text for current month link in calendar -#: js/messages.php:79 +#: js/messages.php:91 #, fuzzy #| msgid "Total" msgid "Today" msgstr "Kopā" -#: js/messages.php:82 +#: js/messages.php:94 #, fuzzy #| msgid "Binary" msgid "January" msgstr "Binārais" -#: js/messages.php:83 +#: js/messages.php:95 msgid "February" msgstr "" -#: js/messages.php:84 +#: js/messages.php:96 #, fuzzy #| msgid "Mar" msgid "March" msgstr "Mar" -#: js/messages.php:85 +#: js/messages.php:97 #, fuzzy #| msgid "Apr" msgid "April" msgstr "Apr" -#: js/messages.php:86 +#: js/messages.php:98 msgid "May" msgstr "Mai" -#: js/messages.php:87 +#: js/messages.php:99 #, fuzzy #| msgid "Jun" msgid "June" msgstr "Jūn" -#: js/messages.php:88 +#: js/messages.php:100 #, fuzzy #| msgid "Jul" msgid "July" msgstr "Jūl" -#: js/messages.php:89 +#: js/messages.php:101 #, fuzzy #| msgid "Aug" msgid "August" msgstr "Aug" -#: js/messages.php:90 +#: js/messages.php:102 msgid "September" msgstr "" -#: js/messages.php:91 +#: js/messages.php:103 #, fuzzy #| msgid "Oct" msgid "October" msgstr "Okt" -#: js/messages.php:92 +#: js/messages.php:104 msgid "November" msgstr "" -#: js/messages.php:93 +#: js/messages.php:105 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:97 libraries/common.lib.php:1557 +#: js/messages.php:109 libraries/common.lib.php:1557 msgid "Jan" msgstr "Jan" #. l10n: Short month name -#: js/messages.php:99 libraries/common.lib.php:1559 +#: js/messages.php:111 libraries/common.lib.php:1559 msgid "Feb" msgstr "Feb" #. l10n: Short month name -#: js/messages.php:101 libraries/common.lib.php:1561 +#: js/messages.php:113 libraries/common.lib.php:1561 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:103 libraries/common.lib.php:1563 +#: js/messages.php:115 libraries/common.lib.php:1563 msgid "Apr" msgstr "Apr" #. l10n: Short month name -#: js/messages.php:105 libraries/common.lib.php:1565 +#: js/messages.php:117 libraries/common.lib.php:1565 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1129,176 +1171,176 @@ msgid "May" msgstr "Mai" #. l10n: Short month name -#: js/messages.php:107 libraries/common.lib.php:1567 +#: js/messages.php:119 libraries/common.lib.php:1567 msgid "Jun" msgstr "Jūn" #. l10n: Short month name -#: js/messages.php:109 libraries/common.lib.php:1569 +#: js/messages.php:121 libraries/common.lib.php:1569 msgid "Jul" msgstr "Jūl" #. l10n: Short month name -#: js/messages.php:111 libraries/common.lib.php:1571 +#: js/messages.php:123 libraries/common.lib.php:1571 msgid "Aug" msgstr "Aug" #. l10n: Short month name -#: js/messages.php:113 libraries/common.lib.php:1573 +#: js/messages.php:125 libraries/common.lib.php:1573 msgid "Sep" msgstr "Sep" #. l10n: Short month name -#: js/messages.php:115 libraries/common.lib.php:1575 +#: js/messages.php:127 libraries/common.lib.php:1575 msgid "Oct" msgstr "Okt" #. l10n: Short month name -#: js/messages.php:117 libraries/common.lib.php:1577 +#: js/messages.php:129 libraries/common.lib.php:1577 msgid "Nov" msgstr "Nov" #. l10n: Short month name -#: js/messages.php:119 libraries/common.lib.php:1579 +#: js/messages.php:131 libraries/common.lib.php:1579 msgid "Dec" msgstr "Dec" -#: js/messages.php:122 +#: js/messages.php:134 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "Sv" -#: js/messages.php:123 +#: js/messages.php:135 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "P" -#: js/messages.php:124 +#: js/messages.php:136 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "O" -#: js/messages.php:125 +#: js/messages.php:137 msgid "Wednesday" msgstr "" -#: js/messages.php:126 +#: js/messages.php:138 msgid "Thursday" msgstr "" -#: js/messages.php:127 +#: js/messages.php:139 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "Pk" -#: js/messages.php:128 +#: js/messages.php:140 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:132 libraries/common.lib.php:1582 +#: js/messages.php:144 libraries/common.lib.php:1582 msgid "Sun" msgstr "Sv" #. l10n: Short week day name -#: js/messages.php:134 libraries/common.lib.php:1584 +#: js/messages.php:146 libraries/common.lib.php:1584 msgid "Mon" msgstr "P" #. l10n: Short week day name -#: js/messages.php:136 libraries/common.lib.php:1586 +#: js/messages.php:148 libraries/common.lib.php:1586 msgid "Tue" msgstr "O" #. l10n: Short week day name -#: js/messages.php:138 libraries/common.lib.php:1588 +#: js/messages.php:150 libraries/common.lib.php:1588 msgid "Wed" msgstr "T" #. l10n: Short week day name -#: js/messages.php:140 libraries/common.lib.php:1590 +#: js/messages.php:152 libraries/common.lib.php:1590 msgid "Thu" msgstr "C" #. l10n: Short week day name -#: js/messages.php:142 libraries/common.lib.php:1592 +#: js/messages.php:154 libraries/common.lib.php:1592 msgid "Fri" msgstr "Pk" #. l10n: Short week day name -#: js/messages.php:144 libraries/common.lib.php:1594 +#: js/messages.php:156 libraries/common.lib.php:1594 msgid "Sat" msgstr "S" #. l10n: Minimal week day name -#: js/messages.php:148 +#: js/messages.php:160 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "Sv" #. l10n: Minimal week day name -#: js/messages.php:150 +#: js/messages.php:162 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "P" #. l10n: Minimal week day name -#: js/messages.php:152 +#: js/messages.php:164 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "O" #. l10n: Minimal week day name -#: js/messages.php:154 +#: js/messages.php:166 #, fuzzy #| msgid "Wed" msgid "We" msgstr "T" #. l10n: Minimal week day name -#: js/messages.php:156 +#: js/messages.php:168 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "C" #. l10n: Minimal week day name -#: js/messages.php:158 +#: js/messages.php:170 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "Pk" #. l10n: Minimal week day name -#: js/messages.php:160 +#: js/messages.php:172 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "S" #. l10n: Column header for week of the year in calendar -#: js/messages.php:162 +#: js/messages.php:174 msgid "Wk" msgstr "" -#: js/messages.php:164 +#: js/messages.php:176 msgid "Hour" msgstr "" -#: js/messages.php:165 +#: js/messages.php:177 #, fuzzy #| msgid "in use" msgid "Minute" msgstr "lietošanā" -#: js/messages.php:166 +#: js/messages.php:178 #, fuzzy #| msgid "per second" msgid "Second" @@ -1356,7 +1398,7 @@ msgstr "Indeksi" #: libraries/Index.class.php:444 libraries/mult_submits.inc.php:103 #: libraries/tbl_properties.inc.php:519 tbl_structure.php:33 -#: tbl_structure.php:155 tbl_structure.php:159 tbl_structure.php:474 +#: tbl_structure.php:155 tbl_structure.php:159 tbl_structure.php:472 #: tbl_tracking.php:322 msgid "Unique" msgstr "Unikālais" @@ -1398,8 +1440,8 @@ msgid "" "removed." msgstr "" -#: libraries/List_Database.class.php:431 libraries/server_links.inc.php:41 -#: server_databases.php:88 server_privileges.php:1660 +#: libraries/List_Database.class.php:431 libraries/server_links.inc.php:42 +#: server_databases.php:88 server_privileges.php:1680 #: setup/lib/messages.inc.php:110 test/theme.php:93 msgid "Databases" msgstr "Datubāzes" @@ -1567,7 +1609,7 @@ msgstr "Parole:" msgid "Server Choice" msgstr "Servera izvēle" -#: libraries/auth/cookie.auth.lib.php:320 libraries/header.inc.php:59 +#: libraries/auth/cookie.auth.lib.php:320 libraries/header.inc.php:63 msgid "Cookies must be enabled past this point." msgstr "\"Cookies\" ir jābūt atļautiem aiz šī punkta." @@ -1649,7 +1691,7 @@ msgstr "" "Nevar lietot iconv, libiconv vai recode_string funkciju, bet php saka, ka " "paplašinājums ir ielādēts. Pārbaudiet php konfigurāciju." -#: libraries/common.inc.php:583 +#: libraries/common.inc.php:587 msgid "" "phpMyAdmin was unable to read your configuration file!
This might " "happen if PHP finds a parse error in it or PHP cannot find the file.
Ja redzat tukšu lapu, viss ir kārtībā." -#: libraries/common.inc.php:594 +#: libraries/common.inc.php:598 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "" -#: libraries/common.inc.php:599 +#: libraries/common.inc.php:603 msgid "" "The $cfg['PmaAbsoluteUri'] directive MUST be set in your " "configuration file!" @@ -1677,27 +1719,27 @@ msgstr "" "$cfg['PmaAbsoluteUri'] direktīvai ir JĀBŪT nodefinētai Jūsu " "konfigurācijas failā!" -#: libraries/common.inc.php:629 +#: libraries/common.inc.php:633 #, php-format msgid "Invalid server index: %s" msgstr "" -#: libraries/common.inc.php:636 +#: libraries/common.inc.php:640 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" -#: libraries/common.inc.php:645 libraries/header.inc.php:96 +#: libraries/common.inc.php:649 libraries/header.inc.php:100 #: libraries/select_server.lib.php:41 libraries/select_server.lib.php:47 #: main.php:185 test/theme.php:57 msgid "Server" msgstr "Serveris" -#: libraries/common.inc.php:823 +#: libraries/common.inc.php:827 msgid "Invalid authentication method set in configuration:" msgstr "" -#: libraries/common.inc.php:926 +#: libraries/common.inc.php:930 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Jums ir jāuzliek %s %s vai jaunāks." @@ -1830,45 +1872,45 @@ msgstr "." msgid "%B %d, %Y at %I:%M %p" msgstr "%d.%m.%Y %H:%M" -#: libraries/common.lib.php:1907 +#: libraries/common.lib.php:1911 #, 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:2322 libraries/common.lib.php:2325 +#: libraries/common.lib.php:2326 libraries/common.lib.php:2329 #: libraries/display_tbl.lib.php:290 server_status.php:719 msgid "Begin" msgstr "Sākums" -#: libraries/common.lib.php:2323 libraries/common.lib.php:2326 +#: libraries/common.lib.php:2327 libraries/common.lib.php:2330 #: libraries/display_tbl.lib.php:291 server_binlog.php:168 #: server_binlog.php:170 msgid "Previous" msgstr "Iepriekšējie" -#: libraries/common.lib.php:2354 libraries/common.lib.php:2357 +#: libraries/common.lib.php:2358 libraries/common.lib.php:2361 #: libraries/display_tbl.lib.php:353 msgid "End" msgstr "Beigas" -#: libraries/common.lib.php:2430 +#: libraries/common.lib.php:2434 #, php-format msgid "Jump to database "%s"." msgstr "pāriet pie datubāzes "%s"." -#: libraries/common.lib.php:2450 +#: libraries/common.lib.php:2454 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" -#: libraries/common.lib.php:2830 libraries/common.lib.php:2837 +#: libraries/common.lib.php:2834 libraries/common.lib.php:2841 #: libraries/db_links.inc.php:68 libraries/export/sql.php:25 -#: libraries/import/sql.php:18 libraries/server_links.inc.php:45 +#: libraries/import/sql.php:18 libraries/server_links.inc.php:46 #: libraries/tbl_links.inc.php:60 querywindow.php:99 test/theme.php:97 msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2839 libraries/db_links.inc.php:104 +#: libraries/common.lib.php:2843 libraries/db_links.inc.php:104 #: libraries/tbl_links.inc.php:95 libraries/tbl_links.inc.php:117 #: view_operations.php:89 msgid "Operations" @@ -1916,16 +1958,16 @@ msgstr "Vaicājums pēc parauga" msgid "Designer" msgstr "" -#: libraries/db_links.inc.php:98 libraries/server_links.inc.php:88 +#: libraries/db_links.inc.php:98 libraries/server_links.inc.php:89 #: libraries/tbl_links.inc.php:91 pmd_pdf.php:84 pmd_pdf.php:110 #: setup/frames/menu.inc.php:21 #, fuzzy msgid "Import" msgstr "Eksports" -#: libraries/db_links.inc.php:111 libraries/server_links.inc.php:66 -#: server_privileges.php:111 server_privileges.php:1722 -#: server_privileges.php:2071 test/theme.php:117 +#: libraries/db_links.inc.php:111 libraries/server_links.inc.php:67 +#: server_privileges.php:112 server_privileges.php:1742 +#: server_privileges.php:2092 test/theme.php:117 msgid "Privileges" msgstr "Privilēģijas" @@ -1944,7 +1986,7 @@ msgid "" msgstr "Var būt aptuvens skaits. Skatīt FAQ 3.11" #: libraries/db_structure.lib.php:69 server_databases.php:142 -#: tbl_printview.php:336 tbl_structure.php:682 +#: tbl_printview.php:336 tbl_structure.php:680 msgid "Overhead" msgstr "Pārtēriņš" @@ -1961,7 +2003,7 @@ msgstr "Serveris neatbild" msgid "(or the local MySQL server's socket is not correctly configured)" msgstr "" -#: libraries/dbi/mysql.dbi.lib.php:362 tbl_structure.php:608 +#: libraries/dbi/mysql.dbi.lib.php:362 tbl_structure.php:606 msgid "Details..." msgstr "" @@ -1971,22 +2013,22 @@ msgid "Change password" msgstr "Mainīt paroli" #: libraries/display_change_password.lib.php:35 -#: libraries/replication_gui.lib.php:345 server_privileges.php:807 +#: libraries/replication_gui.lib.php:345 server_privileges.php:808 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:796 -#: server_privileges.php:800 server_privileges.php:811 -#: server_privileges.php:1538 server_synchronize.php:1175 +#: libraries/replication_gui.lib.php:349 server_privileges.php:797 +#: server_privileges.php:801 server_privileges.php:812 +#: server_privileges.php:1558 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:815 server_privileges.php:818 +#: server_privileges.php:816 server_privileges.php:819 msgid "Re-type" msgstr "Atkārtojiet" @@ -2001,12 +2043,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:822 +#: libraries/replication_gui.lib.php:360 server_privileges.php:823 msgid "Generate Password" msgstr "" #: libraries/display_change_password.lib.php:75 -#: libraries/replication_gui.lib.php:363 server_privileges.php:825 +#: libraries/replication_gui.lib.php:363 server_privileges.php:826 #, fuzzy msgid "Generate" msgstr "Uzģenerēja" @@ -2020,8 +2062,8 @@ msgstr "Izveidot jaunu datubāzi" msgid "Create" msgstr "Izveidot" -#: libraries/display_create_database.lib.php:40 server_privileges.php:113 -#: server_privileges.php:1427 server_replication.php:35 +#: libraries/display_create_database.lib.php:40 server_privileges.php:114 +#: server_privileges.php:1447 server_replication.php:35 msgid "No Privileges" msgstr "Nav privilēģiju" @@ -2110,7 +2152,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:1875 server_processlist.php:75 +#: server_privileges.php:1895 server_processlist.php:75 msgid "None" msgstr "Nav" @@ -2294,7 +2336,7 @@ msgstr "Kārtot pēc atslēgas" #: libraries/import/docsql.php:34 libraries/import/ldi.php:47 #: libraries/import/ods.php:30 libraries/import/sql.php:20 #: libraries/import/xls.php:26 libraries/import/xlsx.php:26 -#: libraries/import/xml.php:25 tbl_select.php:267 tbl_structure.php:753 +#: libraries/import/xml.php:25 tbl_select.php:267 tbl_structure.php:751 #, fuzzy msgid "Options" msgstr "Darbības" @@ -2373,7 +2415,7 @@ msgstr "Vaicājums ilga %01.4f s" #: libraries/display_tbl.lib.php:2089 libraries/mult_submits.inc.php:113 #: querywindow.php:125 querywindow.php:129 querywindow.php:132 -#: tbl_structure.php:25 tbl_structure.php:150 tbl_structure.php:470 +#: tbl_structure.php:25 tbl_structure.php:150 tbl_structure.php:468 msgid "Change" msgstr "Labot" @@ -2441,7 +2483,7 @@ msgstr "" #: libraries/engines/innodb.lib.php:194 server_databases.php:137 #: server_databases.php:305 server_status.php:525 server_status.php:586 -#: server_status.php:607 tbl_printview.php:351 tbl_structure.php:696 +#: server_status.php:607 tbl_printview.php:351 tbl_structure.php:694 msgid "Total" msgstr "Kopā" @@ -2687,7 +2729,7 @@ msgid "" msgstr "" #: libraries/export/codegen.php:37 setup/lib/messages.inc.php:88 -#: tbl_printview.php:376 tbl_structure.php:737 +#: tbl_printview.php:376 tbl_structure.php:735 msgid "Format" msgstr "Formats" @@ -2759,8 +2801,8 @@ 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:576 server_replication.php:316 tbl_printview.php:317 -#: tbl_structure.php:665 +#: server_privileges.php:577 server_replication.php:316 tbl_printview.php:317 +#: tbl_structure.php:663 msgid "Data" msgstr "Dati" @@ -2809,9 +2851,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:731 -#: server_privileges.php:734 server_privileges.php:790 -#: server_privileges.php:1537 server_privileges.php:2069 +#: libraries/replication_gui.lib.php:329 server_privileges.php:732 +#: server_privileges.php:735 server_privileges.php:791 +#: server_privileges.php:1557 server_privileges.php:2090 #: server_processlist.php:55 server_synchronize.php:1159 msgid "Host" msgstr "Hosts" @@ -3011,7 +3053,7 @@ msgstr "" msgid "Open new phpMyAdmin window" msgstr "" -#: libraries/header.inc.php:115 +#: libraries/header.inc.php:119 #, fuzzy msgid "New table" msgstr "Nav tabulu" @@ -3171,20 +3213,20 @@ 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 +#: tbl_structure.php:471 msgid "Primary" msgstr "Primārā" #: libraries/mult_submits.inc.php:98 libraries/tbl_properties.inc.php:116 #: libraries/tbl_properties.inc.php:525 tbl_printview.php:326 #: tbl_structure.php:31 tbl_structure.php:154 tbl_structure.php:158 -#: tbl_structure.php:475 tbl_structure.php:673 +#: tbl_structure.php:473 tbl_structure.php:671 msgid "Index" msgstr "Indekss" #: libraries/mult_submits.inc.php:108 libraries/tbl_properties.inc.php:531 #: tbl_structure.php:35 tbl_structure.php:156 tbl_structure.php:160 -#: tbl_structure.php:478 +#: tbl_structure.php:476 msgid "Fulltext" msgstr "Pilni teksti" @@ -3486,8 +3528,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:711 -#: server_privileges.php:714 server_privileges.php:721 +#: libraries/replication_gui.lib.php:259 server_privileges.php:712 +#: server_privileges.php:715 server_privileges.php:722 #: server_synchronize.php:1171 msgid "User name" msgstr "Lietotājvārds" @@ -3512,7 +3554,7 @@ msgstr "Mainīgais" #: 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 +#: tbl_structure.php:727 msgid "Value" msgstr "Vērtība" @@ -3530,34 +3572,34 @@ msgstr "" msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:254 server_privileges.php:716 +#: libraries/replication_gui.lib.php:254 server_privileges.php:717 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:717 -#: server_privileges.php:784 server_privileges.php:808 -#: server_privileges.php:1928 server_privileges.php:1958 +#: libraries/replication_gui.lib.php:346 server_privileges.php:718 +#: server_privileges.php:785 server_privileges.php:809 +#: server_privileges.php:1948 server_privileges.php:1978 msgid "Use text field" msgstr "Lietot teksta lauku" -#: libraries/replication_gui.lib.php:302 server_privileges.php:764 +#: libraries/replication_gui.lib.php:302 server_privileges.php:765 msgid "Any host" msgstr "Jebkurš hosts" -#: libraries/replication_gui.lib.php:306 server_privileges.php:768 +#: libraries/replication_gui.lib.php:306 server_privileges.php:769 msgid "Local" msgstr "Lokāls" -#: libraries/replication_gui.lib.php:312 server_privileges.php:773 +#: libraries/replication_gui.lib.php:312 server_privileges.php:774 msgid "This Host" msgstr "Šis hosts" -#: libraries/replication_gui.lib.php:318 server_privileges.php:779 +#: libraries/replication_gui.lib.php:318 server_privileges.php:780 msgid "Use Host Table" msgstr "Lietot hostu tabulu" -#: libraries/replication_gui.lib.php:331 server_privileges.php:792 +#: libraries/replication_gui.lib.php:331 server_privileges.php:793 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -3592,29 +3634,29 @@ msgstr "" msgid "Servers" msgstr "Serveris" -#: libraries/server_links.inc.php:53 server_engines.php:112 +#: libraries/server_links.inc.php:54 server_engines.php:112 #: server_engines.php:116 server_status.php:415 test/theme.php:105 msgid "Variables" msgstr "Mainīgie" -#: libraries/server_links.inc.php:57 test/theme.php:109 +#: libraries/server_links.inc.php:58 test/theme.php:109 msgid "Charsets" msgstr "Rakstzīmju kodējumi" -#: libraries/server_links.inc.php:61 test/theme.php:113 +#: libraries/server_links.inc.php:62 test/theme.php:113 msgid "Engines" msgstr "" -#: libraries/server_links.inc.php:76 server_binlog.php:110 +#: libraries/server_links.inc.php:77 server_binlog.php:110 #: server_status.php:364 test/theme.php:121 msgid "Binary log" msgstr "Binārais log-fails" -#: libraries/server_links.inc.php:80 +#: libraries/server_links.inc.php:81 msgid "Processes" msgstr "Procesi" -#: libraries/server_links.inc.php:92 server_synchronize.php:1092 +#: libraries/server_links.inc.php:93 server_synchronize.php:1092 #: server_synchronize.php:1100 msgid "Synchronize" msgstr "" @@ -3863,13 +3905,13 @@ msgstr "" msgid "Save" msgstr "Saglabāt" -#: libraries/tbl_properties.inc.php:780 tbl_structure.php:542 +#: libraries/tbl_properties.inc.php:780 tbl_structure.php:540 #, fuzzy, php-format #| msgid "Add %s field(s)" msgid "Add %s column(s)" msgstr "Pievienot %s lauku(s)" -#: libraries/tbl_properties.inc.php:784 tbl_structure.php:536 +#: libraries/tbl_properties.inc.php:784 tbl_structure.php:534 #, fuzzy #| msgid "You have to choose at least one column to display" msgid "You have to add at least one column." @@ -4062,8 +4104,8 @@ msgstr "Atcelt" msgid "Protocol version" msgstr "" -#: main.php:189 server_privileges.php:1389 server_privileges.php:1536 -#: server_privileges.php:1650 server_privileges.php:2068 +#: main.php:189 server_privileges.php:1406 server_privileges.php:1556 +#: server_privileges.php:1670 server_privileges.php:2089 #: server_processlist.php:54 msgid "User" msgstr "Lietotājs" @@ -4497,118 +4539,118 @@ msgstr "" msgid "View dump (schema) of databases" msgstr "Apskatīt datubāzu dampu (shēmu)" -#: server_privileges.php:24 server_privileges.php:266 +#: server_privileges.php:25 server_privileges.php:267 msgid "Includes all privileges except GRANT." msgstr "Iekļauj visas privilēģijas, izņemot GRANT." -#: server_privileges.php:25 server_privileges.php:192 -#: server_privileges.php:515 +#: server_privileges.php:26 server_privileges.php:193 +#: server_privileges.php:516 msgid "Allows altering the structure of existing tables." msgstr "Ļauj mainīt esošo tabulu struktūru." -#: server_privileges.php:26 server_privileges.php:208 -#: server_privileges.php:521 +#: server_privileges.php:27 server_privileges.php:209 +#: server_privileges.php:522 #, fuzzy msgid "Allows altering and dropping stored routines." msgstr "Ļauj veidot un dzēst indeksus." -#: server_privileges.php:27 server_privileges.php:184 -#: server_privileges.php:514 +#: server_privileges.php:28 server_privileges.php:185 +#: server_privileges.php:515 msgid "Allows creating new databases and tables." msgstr "Ļauj veidot jaunas datubāzes un tabulas." -#: server_privileges.php:28 server_privileges.php:207 -#: server_privileges.php:520 +#: server_privileges.php:29 server_privileges.php:208 +#: server_privileges.php:521 #, fuzzy msgid "Allows creating stored routines." msgstr "Ļauj veidot jaunas tabulas." -#: server_privileges.php:29 server_privileges.php:514 +#: server_privileges.php:30 server_privileges.php:515 msgid "Allows creating new tables." msgstr "Ļauj veidot jaunas tabulas." -#: server_privileges.php:30 server_privileges.php:195 -#: server_privileges.php:518 +#: server_privileges.php:31 server_privileges.php:196 +#: server_privileges.php:519 msgid "Allows creating temporary tables." msgstr "Ļauj veidot pagaidu tabulas." -#: server_privileges.php:31 server_privileges.php:209 -#: server_privileges.php:554 +#: server_privileges.php:32 server_privileges.php:210 +#: server_privileges.php:555 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 +#: server_privileges.php:33 server_privileges.php:200 +#: server_privileges.php:204 server_privileges.php:527 +#: server_privileges.php:531 #, fuzzy msgid "Allows creating new views." msgstr "Ļauj veidot jaunas tabulas." -#: server_privileges.php:33 server_privileges.php:183 -#: server_privileges.php:506 +#: server_privileges.php:34 server_privileges.php:184 +#: server_privileges.php:507 msgid "Allows deleting data." msgstr "Ļauj dzēst datus." -#: server_privileges.php:34 server_privileges.php:185 -#: server_privileges.php:517 +#: server_privileges.php:35 server_privileges.php:186 +#: server_privileges.php:518 msgid "Allows dropping databases and tables." msgstr "Ļauj dzēst datubāzes un tabulas." -#: server_privileges.php:35 server_privileges.php:517 +#: server_privileges.php:36 server_privileges.php:518 msgid "Allows dropping tables." msgstr "Ļauj dzēst tabulas." -#: server_privileges.php:36 server_privileges.php:200 -#: server_privileges.php:534 +#: server_privileges.php:37 server_privileges.php:201 +#: server_privileges.php:535 msgid "Allows to set up events for the event scheduler" msgstr "" -#: server_privileges.php:37 server_privileges.php:210 -#: server_privileges.php:522 +#: server_privileges.php:38 server_privileges.php:211 +#: server_privileges.php:523 msgid "Allows executing stored routines." msgstr "" -#: server_privileges.php:38 server_privileges.php:189 -#: server_privileges.php:509 +#: server_privileges.php:39 server_privileges.php:190 +#: server_privileges.php:510 msgid "Allows importing data from and exporting data into files." msgstr "Ļauj importēt/eksportēt datus no/uz failiem." -#: server_privileges.php:39 server_privileges.php:540 +#: server_privileges.php:40 server_privileges.php:541 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "Ļauj pievienot lietotājus un privilēģijas bez privilēģiju tabulu " "pārlādēšanas." -#: server_privileges.php:40 server_privileges.php:191 -#: server_privileges.php:516 +#: server_privileges.php:41 server_privileges.php:192 +#: server_privileges.php:517 msgid "Allows creating and dropping indexes." msgstr "Ļauj veidot un dzēst indeksus." -#: server_privileges.php:41 server_privileges.php:181 -#: server_privileges.php:442 server_privileges.php:504 +#: server_privileges.php:42 server_privileges.php:182 +#: server_privileges.php:443 server_privileges.php:505 msgid "Allows inserting and replacing data." msgstr "Ļauj ievietot un mainīt datus." -#: server_privileges.php:42 server_privileges.php:196 -#: server_privileges.php:549 +#: server_privileges.php:43 server_privileges.php:197 +#: server_privileges.php:550 msgid "Allows locking tables for the current thread." msgstr "Ļauj bloķēt tabulas tekošajai darbībai." -#: server_privileges.php:43 server_privileges.php:646 -#: server_privileges.php:648 +#: server_privileges.php:44 server_privileges.php:647 +#: server_privileges.php:649 msgid "Limits the number of new connections the user may open per hour." msgstr "" "Ierobežo jauno konekciju skaitu, ko lietotājs var atvērt stundas laikā." -#: server_privileges.php:44 server_privileges.php:634 -#: server_privileges.php:636 +#: server_privileges.php:45 server_privileges.php:635 +#: server_privileges.php:637 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" "Ierobežo vaicājumu skaitu, ko lietotājs var mosūtīt uz serveri stundas laikā." -#: server_privileges.php:45 server_privileges.php:640 -#: server_privileges.php:642 +#: server_privileges.php:46 server_privileges.php:641 +#: server_privileges.php:643 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -4616,61 +4658,61 @@ msgstr "" "Ierobežo komandu skaitu, kas maina kas maina tabulas vai datubāzes, ko " "lietotājs var izpildīt stundas laikā." -#: server_privileges.php:46 server_privileges.php:652 -#: server_privileges.php:654 +#: server_privileges.php:47 server_privileges.php:653 +#: server_privileges.php:655 #, fuzzy msgid "Limits the number of simultaneous connections the user may have." msgstr "" "Ierobežo jauno konekciju skaitu, ko lietotājs var atvērt stundas laikā." -#: server_privileges.php:47 server_privileges.php:188 -#: server_privileges.php:544 +#: server_privileges.php:48 server_privileges.php:189 +#: server_privileges.php:545 msgid "Allows viewing processes of all users" msgstr "" -#: server_privileges.php:48 server_privileges.php:190 -#: server_privileges.php:448 server_privileges.php:550 +#: server_privileges.php:49 server_privileges.php:191 +#: server_privileges.php:449 server_privileges.php:551 msgid "Has no effect in this MySQL version." msgstr "Nedarbojas šajā MySQL versijā." -#: server_privileges.php:49 server_privileges.php:186 -#: server_privileges.php:545 +#: server_privileges.php:50 server_privileges.php:187 +#: server_privileges.php:546 msgid "Allows reloading server settings and flushing the server's caches." msgstr "Ļauj prlādēt servera iestādījumus un iztukšot servera kešu." -#: server_privileges.php:50 server_privileges.php:198 -#: server_privileges.php:552 +#: server_privileges.php:51 server_privileges.php:199 +#: server_privileges.php:553 msgid "Allows the user to ask where the slaves / masters are." msgstr "" "Dod lietotājam tiesības jautāt, kur ir replikācijas oriģināli / kopijas." -#: server_privileges.php:51 server_privileges.php:197 -#: server_privileges.php:553 +#: server_privileges.php:52 server_privileges.php:198 +#: server_privileges.php:554 msgid "Needed for the replication slaves." msgstr "Nepieciešams replikāciju kopijām." -#: server_privileges.php:52 server_privileges.php:180 -#: server_privileges.php:439 server_privileges.php:503 +#: server_privileges.php:53 server_privileges.php:181 +#: server_privileges.php:440 server_privileges.php:504 msgid "Allows reading data." msgstr "Ļauj lasīt datus." -#: server_privileges.php:53 server_privileges.php:193 -#: server_privileges.php:547 +#: server_privileges.php:54 server_privileges.php:194 +#: server_privileges.php:548 msgid "Gives access to the complete list of databases." msgstr "Dod pieeju pilnam datubāzu sarakstam." -#: server_privileges.php:54 server_privileges.php:204 -#: server_privileges.php:206 server_privileges.php:519 +#: server_privileges.php:55 server_privileges.php:205 +#: server_privileges.php:207 server_privileges.php:520 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "" -#: server_privileges.php:55 server_privileges.php:187 -#: server_privileges.php:546 +#: server_privileges.php:56 server_privileges.php:188 +#: server_privileges.php:547 msgid "Allows shutting down the server." msgstr "Ļauj apstādināt serveri." -#: server_privileges.php:56 server_privileges.php:194 -#: server_privileges.php:543 +#: server_privileges.php:57 server_privileges.php:195 +#: server_privileges.php:544 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -4680,157 +4722,157 @@ msgstr "" "Nepieciešams vairumam administratīvo operāciju, kā globālo mainīgo maiņa vai " "citu lietotāju procesu nogalināšana." -#: server_privileges.php:57 server_privileges.php:201 -#: server_privileges.php:535 +#: server_privileges.php:58 server_privileges.php:202 +#: server_privileges.php:536 #, fuzzy msgid "Allows creating and dropping triggers" msgstr "Ļauj veidot un dzēst indeksus." -#: server_privileges.php:58 server_privileges.php:182 -#: server_privileges.php:445 server_privileges.php:505 +#: server_privileges.php:59 server_privileges.php:183 +#: server_privileges.php:446 server_privileges.php:506 msgid "Allows changing data." msgstr "Ļauj mainīt datus." -#: server_privileges.php:59 server_privileges.php:260 +#: server_privileges.php:60 server_privileges.php:261 msgid "No privileges." msgstr "Nav privilēģiju." -#: server_privileges.php:302 server_privileges.php:303 +#: server_privileges.php:303 server_privileges.php:304 #, fuzzy #| msgid "None" msgctxt "None privileges" msgid "None" msgstr "Nav" -#: server_privileges.php:431 server_privileges.php:566 -#: server_privileges.php:1718 server_privileges.php:1724 +#: server_privileges.php:432 server_privileges.php:567 +#: server_privileges.php:1738 server_privileges.php:1744 msgid "Table-specific privileges" msgstr "Tabulu specifiskās privilēģijas" -#: server_privileges.php:432 server_privileges.php:574 -#: server_privileges.php:1540 +#: server_privileges.php:433 server_privileges.php:575 +#: server_privileges.php:1560 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:563 server_privileges.php:1539 +#: server_privileges.php:564 server_privileges.php:1559 msgid "Global privileges" msgstr "Globālās privilēģijas" -#: server_privileges.php:565 server_privileges.php:1718 +#: server_privileges.php:566 server_privileges.php:1738 msgid "Database-specific privileges" msgstr "Datubāžu specifiskās privilēģijas" -#: server_privileges.php:610 +#: server_privileges.php:611 msgid "Administration" msgstr "Administrācija" -#: server_privileges.php:630 +#: server_privileges.php:631 msgid "Resource limits" msgstr "Resursu ierobežojumi" -#: server_privileges.php:631 +#: server_privileges.php:632 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "Piezīme: Šo opciju uzstādīšana uz 0 (nulli) atceļ ierobežojumus." -#: server_privileges.php:708 +#: server_privileges.php:709 msgid "Login Information" msgstr "Piekļuves informācija" -#: server_privileges.php:802 +#: server_privileges.php:803 msgid "Do not change the password" msgstr "Nemainīt paroli" -#: server_privileges.php:843 server_privileges.php:2205 +#: server_privileges.php:844 server_privileges.php:2226 #, fuzzy #| msgid "No user(s) found." msgid "No user found." msgstr "Lietotāji netika atrasti." -#: server_privileges.php:887 +#: server_privileges.php:888 #, php-format msgid "The user %s already exists!" msgstr "Lietotājs %s jau eksistē!" -#: server_privileges.php:970 +#: server_privileges.php:971 msgid "You have added a new user." msgstr "Jūs pievienojāt jaunu lietotāju." -#: server_privileges.php:1191 +#: server_privileges.php:1196 #, php-format msgid "You have updated the privileges for %s." msgstr "Jūs modificējāt privilēģijas objektam %s." -#: server_privileges.php:1215 +#: server_privileges.php:1220 #, php-format msgid "You have revoked the privileges for %s" msgstr "Jūs atņēmāt privilēgijas lietotājam %s" -#: server_privileges.php:1251 +#: server_privileges.php:1256 #, php-format msgid "The password for %s was changed successfully." msgstr "Lietotāja %s parole tika veiksmīgi mainīta." -#: server_privileges.php:1271 +#: server_privileges.php:1276 #, php-format msgid "Deleting %s" msgstr "Dzēšam %s" -#: server_privileges.php:1282 +#: server_privileges.php:1287 msgid "No users selected for deleting!" msgstr "" -#: server_privileges.php:1285 +#: server_privileges.php:1290 msgid "Reloading the privileges" msgstr "Pārlādējam privilēģijas" -#: server_privileges.php:1300 +#: server_privileges.php:1305 msgid "The selected users have been deleted successfully." msgstr "Izvēlētie lietotāji tika veiksmīgi dzēsti." -#: server_privileges.php:1335 +#: server_privileges.php:1344 msgid "The privileges were reloaded successfully." msgstr "Privilēģijas tika veiksmīgi pārlādētas." -#: server_privileges.php:1363 server_privileges.php:1649 +#: server_privileges.php:1380 server_privileges.php:1669 msgid "Edit Privileges" msgstr "Mainīt privilēģijas" -#: server_privileges.php:1372 +#: server_privileges.php:1389 msgid "Revoke" msgstr "Atsaukt" -#: server_privileges.php:1404 +#: server_privileges.php:1424 msgid "User overview" msgstr "Lietotāju pārskats" -#: server_privileges.php:1541 server_privileges.php:1723 -#: server_privileges.php:2072 +#: server_privileges.php:1561 server_privileges.php:1743 +#: server_privileges.php:2093 msgid "Grant" msgstr "Piešķirt" -#: server_privileges.php:1560 server_privileges.php:2162 +#: server_privileges.php:1580 server_privileges.php:2183 msgid "Any" msgstr "Jebkurš" -#: server_privileges.php:1609 server_privileges.php:1633 -#: server_privileges.php:2027 server_privileges.php:2216 +#: server_privileges.php:1629 server_privileges.php:1653 +#: server_privileges.php:2048 server_privileges.php:2237 msgid "Add a new User" msgstr "Pievienot jaunu lietotāju" -#: server_privileges.php:1614 +#: server_privileges.php:1634 msgid "Remove selected users" msgstr "Dzēst izvēlētos lietotājus" -#: server_privileges.php:1617 +#: server_privileges.php:1637 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:1618 server_privileges.php:1619 -#: server_privileges.php:1620 +#: server_privileges.php:1638 server_privileges.php:1639 +#: server_privileges.php:1640 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:1636 +#: server_privileges.php:1656 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -4843,51 +4885,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:1684 +#: server_privileges.php:1704 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:1724 +#: server_privileges.php:1744 msgid "Column-specific privileges" msgstr "Kolonnu specifiskās privilēģijas" -#: server_privileges.php:1925 +#: server_privileges.php:1945 msgid "Add privileges on the following database" msgstr "Pievienot privilēģijas uz sekojošo datubāzi" -#: server_privileges.php:1943 +#: server_privileges.php:1963 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:1946 +#: server_privileges.php:1966 msgid "Add privileges on the following table" msgstr "Pievienot privilēģijas uz sekojošo tabulu" -#: server_privileges.php:2003 +#: server_privileges.php:2023 msgid "Change Login Information / Copy User" msgstr "Mainīt piekļuves informāciju / Klonēt lietotāju" -#: server_privileges.php:2006 +#: server_privileges.php:2026 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:2008 +#: server_privileges.php:2028 msgid "... keep the old one." msgstr "... paturēt veco lietotāju." -#: server_privileges.php:2009 +#: server_privileges.php:2029 msgid " ... delete the old one from the user tables." msgstr " ... dzēst veco lietotāju no lietotāju tabulas." -#: server_privileges.php:2010 +#: server_privileges.php:2030 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:2011 +#: server_privileges.php:2031 msgid "" " ... delete the old one from the user tables and reload the privileges " "afterwards." @@ -4895,44 +4937,44 @@ msgstr "" " ... dzēst veco lietotāju no lietotāju tabulas, un pēc tam pārlādēt " "privilēģijas." -#: server_privileges.php:2033 +#: server_privileges.php:2054 msgid "Database for user" msgstr "" -#: server_privileges.php:2037 +#: server_privileges.php:2058 #, fuzzy #| msgid "None" msgctxt "Create none database for user" msgid "None" msgstr "Nav" -#: server_privileges.php:2038 +#: server_privileges.php:2059 msgid "Create database with same name and grant all privileges" msgstr "" -#: server_privileges.php:2039 +#: server_privileges.php:2060 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "" -#: server_privileges.php:2042 +#: server_privileges.php:2063 #, fuzzy, php-format msgid "Grant all privileges on database "%s"" msgstr "Pārbaudīt privilēģijas uz datubāzi "%s"." -#: server_privileges.php:2065 +#: server_privileges.php:2086 #, php-format msgid "Users having access to "%s"" msgstr "Lietotāji, kam ir pieja datubāzei "%s"" -#: server_privileges.php:2173 +#: server_privileges.php:2194 msgid "global" msgstr "globāls" -#: server_privileges.php:2175 +#: server_privileges.php:2196 msgid "database-specific" msgstr "datubāzei specifisks" -#: server_privileges.php:2177 +#: server_privileges.php:2198 msgid "wildcard" msgstr "aizstājējzīme" @@ -7625,6 +7667,10 @@ msgstr "" msgid "Show insert query" msgstr "" +#: tbl_change.php:1143 +msgid "and then" +msgstr "" + #: tbl_change.php:1147 msgid "Go back to previous page" msgstr "Atgriezties atpakaļ iepriekšējā lapā" @@ -7707,7 +7753,7 @@ msgstr "" msgid "Add to index  %s column(s)" msgstr "Pievienot indeksam  %s kolonn(u/as)" -#: tbl_indexes.php:256 tbl_structure.php:589 tbl_structure.php:600 +#: tbl_indexes.php:256 tbl_structure.php:587 tbl_structure.php:598 msgid "Column count has to be larger than zero." msgstr "" @@ -7824,39 +7870,39 @@ msgstr "Pārbaudīt referenciālo integritāti:" msgid "Show tables" msgstr "Rādīt tabulas" -#: tbl_printview.php:310 tbl_structure.php:656 +#: tbl_printview.php:310 tbl_structure.php:654 msgid "Space usage" msgstr "Diska vietas lietošana" -#: tbl_printview.php:314 tbl_structure.php:660 +#: tbl_printview.php:314 tbl_structure.php:658 msgid "Usage" msgstr "Aizņem" -#: tbl_printview.php:341 tbl_structure.php:687 +#: tbl_printview.php:341 tbl_structure.php:685 msgid "Effective" msgstr "Efektīvs" -#: tbl_printview.php:366 tbl_structure.php:725 +#: tbl_printview.php:366 tbl_structure.php:723 msgid "Row Statistics" msgstr "Rindas statistika" -#: tbl_printview.php:369 tbl_structure.php:728 +#: tbl_printview.php:369 tbl_structure.php:726 msgid "Statements" msgstr "Parametrs" -#: tbl_printview.php:380 tbl_structure.php:740 +#: tbl_printview.php:380 tbl_structure.php:738 msgid "static" msgstr "" -#: tbl_printview.php:382 tbl_structure.php:742 +#: tbl_printview.php:382 tbl_structure.php:740 msgid "dynamic" msgstr "dinamisks" -#: tbl_printview.php:404 tbl_structure.php:785 +#: tbl_printview.php:404 tbl_structure.php:783 msgid "Row length" msgstr "Rindas garums" -#: tbl_printview.php:414 tbl_structure.php:793 +#: tbl_printview.php:414 tbl_structure.php:791 msgid " Row size " msgstr " Rindas izmērs " @@ -7929,50 +7975,50 @@ msgstr "Nav" msgid "Column %s has been dropped" msgstr "Tabula %s tika izdzēsta" -#: tbl_structure.php:385 +#: tbl_structure.php:384 #, php-format msgid "A primary key has been added on %s" msgstr "Primārā atslēga pievienota uz lauka %s" -#: tbl_structure.php:400 tbl_structure.php:414 tbl_structure.php:428 +#: tbl_structure.php:398 tbl_structure.php:412 tbl_structure.php:426 #, php-format msgid "An index has been added on %s" msgstr "Indekss tieka pievienots uz %s" -#: tbl_structure.php:506 tbl_structure.php:508 +#: tbl_structure.php:504 tbl_structure.php:506 msgid "Relation view" msgstr "Relāciju pārskats" -#: tbl_structure.php:515 tbl_structure.php:517 +#: tbl_structure.php:513 tbl_structure.php:515 msgid "Propose table structure" msgstr "Ieteikt tabulas sruktūru" -#: tbl_structure.php:540 +#: tbl_structure.php:538 #, fuzzy #| msgid "Add %s field(s)" msgid "Add column" msgstr "Pievienot %s lauku(s)" -#: tbl_structure.php:554 +#: tbl_structure.php:552 msgid "At End of Table" msgstr "Tabulas beigās" -#: tbl_structure.php:555 +#: tbl_structure.php:553 msgid "At Beginning of Table" msgstr "Tabulas sākumā" -#: tbl_structure.php:556 +#: tbl_structure.php:554 #, php-format msgid "After %s" msgstr "Pēc %s" -#: tbl_structure.php:594 +#: tbl_structure.php:592 #, fuzzy, php-format #| msgid "Create an index on %s columns" msgid "Create an index on  %s columns" msgstr "Izveidot indeksu uz %s laukiem" -#: tbl_structure.php:756 +#: tbl_structure.php:754 msgid "partitioned" msgstr "" @@ -8375,10 +8421,6 @@ msgstr "Pārsaukt tabulu uz" #~ msgid "Process list" #~ msgstr "Procesu saraksts" -#, fuzzy -#~ msgid "Reload privileges" -#~ msgstr "Globālās privilēģijas" - #~ msgid "" #~ "The users will still have the USAGE privilege until the privileges are " #~ "reloaded." diff --git a/po/mk.po b/po/mk.po index 8efb2ae91..3bc669072 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-13 09:03-0400\n" +"POT-Creation-Date: 2010-06-22 00:55+0530\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:1514 +#: libraries/display_tbl.lib.php:417 server_privileges.php:1534 msgid "Show all" msgstr "прикажи ги сите" -#: browse_foreigners.php:82 libraries/common.lib.php:2313 +#: browse_foreigners.php:82 libraries/common.lib.php:2317 #: 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,18 +37,18 @@ 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:2831 -#: libraries/common.lib.php:2838 libraries/db_links.inc.php:75 +#: db_structure.php:106 libraries/common.lib.php:2835 +#: libraries/common.lib.php:2842 libraries/db_links.inc.php:75 #: libraries/tbl_links.inc.php:63 msgid "Search" msgstr "Пребарување" -#: browse_foreigners.php:153 db_operations.php:385 db_operations.php:429 -#: db_operations.php:499 db_operations.php:609 db_search.php:362 -#: db_structure.php:567 js/messages.php:48 libraries/Config.class.php:1046 +#: browse_foreigners.php:153 db_operations.php:394 db_operations.php:438 +#: db_operations.php:508 db_operations.php:618 db_search.php:362 +#: db_structure.php:565 js/messages.php:53 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:1335 libraries/common.lib.php:2288 +#: libraries/common.lib.php:1335 libraries/common.lib.php:2292 #: 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,15 +59,15 @@ 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:664 server_privileges.php:1624 -#: server_privileges.php:1971 server_privileges.php:2018 -#: server_privileges.php:2057 server_replication.php:235 +#: server_privileges.php:665 server_privileges.php:1644 +#: server_privileges.php:1991 server_privileges.php:2038 +#: server_privileges.php:2078 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 #: tbl_operations.php:302 tbl_operations.php:499 tbl_operations.php:561 -#: tbl_operations.php:681 tbl_select.php:327 tbl_structure.php:562 -#: tbl_structure.php:597 tbl_tracking.php:395 tbl_tracking.php:512 +#: tbl_operations.php:681 tbl_select.php:327 tbl_structure.php:560 +#: tbl_structure.php:595 tbl_tracking.php:395 tbl_tracking.php:512 #: view_create.php:182 view_operations.php:101 msgid "Go" msgstr "OK" @@ -93,7 +93,7 @@ msgstr "Користи ја оваа вредност" msgid "Database %1$s has been created." msgstr "Базата на податоци %s не е прифатена" -#: db_datadict.php:49 db_operations.php:378 +#: db_datadict.php:49 db_operations.php:387 msgid "Database comment: " msgstr "Коментар на базата на податоци:" @@ -120,10 +120,10 @@ 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:2070 +#: pdf_schema.php:1263 pdf_schema.php:1284 server_privileges.php:2091 #: 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 +#: tbl_structure.php:657 tbl_tracking.php:274 tbl_tracking.php:321 msgid "Type" msgstr "Тип" @@ -136,7 +136,7 @@ msgstr "Тип" msgid "Null" msgstr "Null" -#: db_datadict.php:178 db_structure.php:501 libraries/export/htmlword.php:247 +#: db_datadict.php:178 db_structure.php:499 libraries/export/htmlword.php:247 #: libraries/export/latex.php:360 libraries/export/odt.php:303 #: libraries/export/texytext.php:236 libraries/tbl_properties.inc.php:106 #: pdf_schema.php:1266 pdf_schema.php:1287 tbl_printview.php:146 @@ -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: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 +#: pdf_schema.php:1344 server_privileges.php:1588 server_privileges.php:1599 +#: server_privileges.php:1909 server_privileges.php:1914 +#: server_privileges.php:2208 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:1565 -#: server_privileges.php:1579 server_privileges.php:1889 -#: server_privileges.php:1892 server_privileges.php:2187 sql.php:193 +#: server_databases.php:64 server_privileges.php:1585 +#: server_privileges.php:1599 server_privileges.php:1909 +#: server_privileges.php:1912 server_privileges.php:2208 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" @@ -209,126 +209,122 @@ msgstr "избери се" msgid "Unselect All" msgstr "ништо" -#: db_operations.php:38 tbl_create.php:54 +#: db_operations.php:43 tbl_create.php:54 msgid "The database name is empty!" msgstr "Името на базата на податоци не е зададено!" -#: db_operations.php:236 +#: db_operations.php:241 #, php-format msgid "Database %s has been renamed to %s" msgstr "Базата на податоци %s е преименувана во %s" -#: db_operations.php:240 +#: db_operations.php:245 #, php-format msgid "Database %s has been copied to %s" msgstr "Базата на податоци %s е ископирана во %s" -#: db_operations.php:412 +#: db_operations.php:421 msgid "Rename database to" msgstr "Преименувај ја базата на податоци во" -#: db_operations.php:417 server_processlist.php:57 +#: db_operations.php:426 server_processlist.php:57 msgid "Command" msgstr "Наредба" -#: db_operations.php:429 tbl_change.php:1143 -msgid "and then" -msgstr "" - -#: db_operations.php:455 +#: db_operations.php:464 msgid "Copy database to" msgstr "Копирај ја базата на податоци во" -#: db_operations.php:462 tbl_operations.php:528 tbl_tracking.php:388 +#: db_operations.php:471 tbl_operations.php:528 tbl_tracking.php:388 msgid "Structure only" msgstr "Само структура" -#: db_operations.php:463 tbl_operations.php:529 tbl_tracking.php:390 +#: db_operations.php:472 tbl_operations.php:529 tbl_tracking.php:390 msgid "Structure and data" msgstr "Структура и податоци" -#: db_operations.php:464 tbl_operations.php:530 tbl_tracking.php:389 +#: db_operations.php:473 tbl_operations.php:530 tbl_tracking.php:389 msgid "Data only" msgstr "Само податоци" -#: db_operations.php:472 +#: db_operations.php:481 msgid "CREATE DATABASE before copying" msgstr "CREATE DATABASE пред копирање" -#: db_operations.php:475 libraries/export/sql.php:52 +#: db_operations.php:484 libraries/export/sql.php:52 #: libraries/export/sql.php:74 libraries/export/sql.php:76 #: libraries/export/sql.php:82 tbl_operations.php:536 #, php-format msgid "Add %s" msgstr "" -#: db_operations.php:479 libraries/export/sql.php:78 tbl_operations.php:299 +#: db_operations.php:488 libraries/export/sql.php:78 tbl_operations.php:299 #: tbl_operations.php:538 msgid "Add AUTO_INCREMENT value" msgstr "Додади AUTO_INCREMENT вредност" -#: db_operations.php:483 tbl_operations.php:545 +#: db_operations.php:492 tbl_operations.php:545 msgid "Add constraints" msgstr "Додади ограничувања" -#: db_operations.php:496 +#: db_operations.php:505 msgid "Switch to copied database" msgstr "Префрли се на копираната база на податоци" -#: db_operations.php:537 +#: db_operations.php:546 msgid "BLOB Repository" msgstr "" -#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1352 -#: libraries/server_links.inc.php:49 server_processlist.php:59 +#: db_operations.php:549 db_tracking.php:76 libraries/common.lib.php:1352 +#: libraries/server_links.inc.php:50 server_processlist.php:59 #: tbl_tracking.php:596 test/theme.php:101 msgid "Status" msgstr "Статус" -#: db_operations.php:548 +#: db_operations.php:557 #, fuzzy #| msgid "Enabled" msgctxt "BLOB repository" msgid "Enabled" msgstr "Овозможено" -#: db_operations.php:552 +#: db_operations.php:561 #, fuzzy msgid "Disable" msgstr "Оневозможено" -#: db_operations.php:562 +#: db_operations.php:571 msgid "Damaged" msgstr "" -#: db_operations.php:566 +#: db_operations.php:575 #, fuzzy msgctxt "BLOB repository" msgid "Repair" msgstr "Поправка на табелата" -#: db_operations.php:574 +#: db_operations.php:583 #, fuzzy #| msgid "Disabled" msgctxt "BLOB repository" msgid "Disabled" msgstr "Оневозможено" -#: db_operations.php:578 +#: db_operations.php:587 #, fuzzy msgid "Enable" msgstr "Овозможено" -#: db_operations.php:602 libraries/Index.class.php:448 +#: db_operations.php:611 libraries/Index.class.php:448 #: libraries/db_structure.lib.php:62 libraries/mysql_charsets.lib.php:107 #: libraries/tbl_properties.inc.php:107 libraries/tbl_properties.inc.php:730 #: server_collations.php:54 server_collations.php:66 server_databases.php:111 #: tbl_operations.php:363 tbl_select.php:137 tbl_structure.php:179 -#: tbl_structure.php:767 tbl_tracking.php:275 tbl_tracking.php:326 +#: tbl_structure.php:765 tbl_tracking.php:275 tbl_tracking.php:326 msgid "Collation" msgstr "Подредување" -#: db_operations.php:615 main.php:316 pdf_schema.php:34 +#: db_operations.php:624 main.php:316 pdf_schema.php:34 #, php-format msgid "" "The additional features for working with linked tables have been " @@ -337,14 +333,14 @@ msgstr "" "Дополнителните можности за работа со поврзаните табели се исклучени. За да " "дознаете зошто, кликнете %sовде%s." -#: db_operations.php:648 +#: db_operations.php:657 msgid "Edit PDF Pages" 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:1665 -#: server_privileges.php:1721 server_privileges.php:1985 +#: libraries/header.inc.php:130 pdf_pages.php:424 server_privileges.php:1685 +#: server_privileges.php:1741 server_privileges.php:2005 #: server_synchronize.php:423 server_synchronize.php:866 tbl_tracking.php:592 #: test/theme.php:75 msgid "Table" @@ -353,7 +349,7 @@ msgstr "Табела" #: db_printview.php:105 libraries/db_structure.lib.php:56 #: libraries/header_printview.inc.php:63 libraries/import.lib.php:146 #: navigation.php:638 navigation.php:660 server_databases.php:122 -#: tbl_printview.php:394 tbl_structure.php:365 tbl_structure.php:777 +#: tbl_printview.php:394 tbl_structure.php:365 tbl_structure.php:775 msgid "Rows" msgstr "Записи" @@ -361,30 +357,30 @@ msgstr "Записи" msgid "Size" msgstr "Големина" -#: db_printview.php:162 db_structure.php:457 libraries/export/sql.php:559 +#: db_printview.php:162 db_structure.php:455 libraries/export/sql.php:559 #: libraries/export/sql.php:899 msgid "in use" msgstr "се користи" #: db_printview.php:187 libraries/db_info.inc.php:88 #: libraries/export/sql.php:514 pdf_schema.php:1241 tbl_printview.php:434 -#: tbl_structure.php:809 +#: tbl_structure.php:807 msgid "Creation" msgstr "Направено" #: db_printview.php:196 libraries/db_info.inc.php:93 #: libraries/export/sql.php:519 pdf_schema.php:1246 tbl_printview.php:444 -#: tbl_structure.php:817 +#: tbl_structure.php:815 msgid "Last update" msgstr "Последна измена" #: db_printview.php:205 libraries/db_info.inc.php:98 #: libraries/export/sql.php:524 pdf_schema.php:1251 tbl_printview.php:454 -#: tbl_structure.php:825 +#: tbl_structure.php:823 msgid "Last check" msgstr "Последна проверка" -#: db_printview.php:222 db_structure.php:480 +#: db_printview.php:222 db_structure.php:478 #, fuzzy, php-format #| msgid "%s table(s)" msgid "%s table" @@ -445,7 +441,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:297 tbl_change.php:1031 tbl_indexes.php:250 +#: server_privileges.php:298 tbl_change.php:1031 tbl_indexes.php:250 #: tbl_select.php:288 msgid "Or" msgstr "или" @@ -518,9 +514,9 @@ 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:2833 +#: db_structure.php:105 libraries/common.lib.php:2837 #: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50 -#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:467 +#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:465 msgid "Browse" msgstr "Преглед" @@ -565,36 +561,36 @@ 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:2832 libraries/sql_query_form.lib.php:334 +#: libraries/common.lib.php:2836 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:2829 libraries/common.lib.php:2836 +#: libraries/common.lib.php:2833 libraries/common.lib.php:2840 #: 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:1106 #: libraries/tbl_links.inc.php:56 pmd_general.php:134 -#: server_privileges.php:593 server_replication.php:315 tbl_tracking.php:269 +#: server_privileges.php:594 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:1656 +#: db_structure.php:543 db_structure.php:544 db_tracking.php:91 +#: libraries/Index.class.php:483 libraries/common.lib.php:1657 #: 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 -#: tbl_structure.php:152 tbl_structure.php:471 +#: tbl_structure.php:152 tbl_structure.php:469 msgid "Drop" 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:1655 +#: db_structure.php:541 db_structure.php:542 libraries/common.lib.php:1656 #: libraries/mult_submits.inc.php:39 libraries/tbl_links.inc.php:105 msgid "Empty" msgstr "Испразни" @@ -604,112 +600,112 @@ msgstr "Испразни" msgid "Table %s has been emptied" msgstr "Табелата %s е испразнета" -#: db_structure.php:326 libraries/tbl_links.inc.php:133 +#: db_structure.php:325 libraries/tbl_links.inc.php:133 #, php-format msgid "View %s has been dropped" msgstr "Прегледот %s е избришан" -#: db_structure.php:326 libraries/tbl_links.inc.php:133 +#: db_structure.php:325 libraries/tbl_links.inc.php:133 #, php-format msgid "Table %s has been dropped" msgstr "Табелата %s е избришана" -#: db_structure.php:333 +#: db_structure.php:332 msgid "Tracking is active." msgstr "" -#: db_structure.php:335 +#: db_structure.php:334 msgid "Tracking is not active." msgstr "" -#: db_structure.php:420 libraries/display_tbl.lib.php:1944 +#: db_structure.php:418 libraries/display_tbl.lib.php:1944 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation%" "s." msgstr "" -#: db_structure.php:434 db_structure.php:448 libraries/header.inc.php:126 +#: db_structure.php:432 db_structure.php:446 libraries/header.inc.php:130 #: libraries/tbl_info.inc.php:66 tbl_structure.php:185 test/theme.php:74 msgid "View" msgstr "Поглед" -#: db_structure.php:485 libraries/db_structure.lib.php:49 -#: libraries/server_links.inc.php:70 server_replication.php:33 +#: db_structure.php:483 libraries/db_structure.lib.php:49 +#: libraries/server_links.inc.php:71 server_replication.php:33 #: server_replication.php:164 server_status.php:369 #, fuzzy msgid "Replication" msgstr "Релации" -#: db_structure.php:489 +#: db_structure.php:487 msgid "Sum" msgstr "Вкупно" -#: db_structure.php:496 libraries/StorageEngine.class.php:356 +#: db_structure.php:494 libraries/StorageEngine.class.php:356 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "%s е основно складиште на овој MySQL сервер." -#: db_structure.php:524 db_structure.php:541 db_structure.php:542 +#: db_structure.php:522 db_structure.php:539 db_structure.php:540 #: 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:1596 tbl_structure.php:455 -#: tbl_structure.php:464 +#: server_databases.php:351 server_privileges.php:1616 tbl_structure.php:453 +#: tbl_structure.php:462 msgid "With selected:" msgstr "Обележаното:" -#: db_structure.php:527 libraries/display_tbl.lib.php:2076 -#: server_databases.php:348 server_privileges.php:569 -#: server_privileges.php:1599 tbl_structure.php:458 +#: db_structure.php:525 libraries/display_tbl.lib.php:2076 +#: server_databases.php:348 server_privileges.php:570 +#: server_privileges.php:1619 tbl_structure.php:456 msgid "Check All" msgstr "обележи ги сите" -#: db_structure.php:531 libraries/display_tbl.lib.php:2077 +#: db_structure.php:529 libraries/display_tbl.lib.php:2077 #: libraries/replication_gui.lib.php:33 server_databases.php:350 -#: server_privileges.php:572 server_privileges.php:1603 tbl_structure.php:462 +#: server_privileges.php:573 server_privileges.php:1623 tbl_structure.php:460 msgid "Uncheck All" msgstr "ниедно" -#: db_structure.php:536 +#: db_structure.php:534 msgid "Check tables having overhead" msgstr "табели кои имаат пречекорувања" -#: db_structure.php:547 db_structure.php:548 db_structure.php:599 +#: db_structure.php:545 db_structure.php:546 db_structure.php:597 #: libraries/display_tbl.lib.php:2180 libraries/mult_submits.inc.php:28 -#: tbl_structure.php:492 tbl_structure.php:494 +#: tbl_structure.php:490 tbl_structure.php:492 msgid "Print view" msgstr "Преглед за печатење" -#: db_structure.php:549 db_structure.php:550 libraries/mult_submits.inc.php:42 +#: db_structure.php:547 db_structure.php:548 libraries/mult_submits.inc.php:42 #: tbl_operations.php:581 msgid "Check table" msgstr "Проверка на табелата" -#: db_structure.php:551 db_structure.php:552 libraries/mult_submits.inc.php:47 -#: tbl_operations.php:621 tbl_structure.php:709 tbl_structure.php:711 +#: db_structure.php:549 db_structure.php:550 libraries/mult_submits.inc.php:47 +#: tbl_operations.php:621 tbl_structure.php:707 tbl_structure.php:709 msgid "Optimize table" msgstr "Оптимизација на табелата" -#: db_structure.php:553 db_structure.php:554 libraries/mult_submits.inc.php:52 +#: db_structure.php:551 db_structure.php:552 libraries/mult_submits.inc.php:52 #: tbl_operations.php:611 msgid "Repair table" msgstr "Поправка на табелата" -#: db_structure.php:555 db_structure.php:556 libraries/mult_submits.inc.php:57 +#: db_structure.php:553 db_structure.php:554 libraries/mult_submits.inc.php:57 #: tbl_operations.php:601 msgid "Analyze table" msgstr "Анализа на табелата" -#: db_structure.php:557 db_structure.php:558 libraries/db_links.inc.php:71 +#: db_structure.php:555 db_structure.php:556 libraries/db_links.inc.php:71 #: 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:1380 +#: libraries/server_links.inc.php:85 libraries/tbl_links.inc.php:82 +#: pmd_pdf.php:84 pmd_pdf.php:109 server_privileges.php:1397 #: setup/frames/menu.inc.php:22 tbl_row_action.php:59 msgid "Export" msgstr "Извоз" -#: db_structure.php:606 libraries/display_pdf_schema.lib.php:44 +#: db_structure.php:604 libraries/display_pdf_schema.lib.php:44 msgid "Data Dictionary" msgstr "Речник на податоци" @@ -720,10 +716,10 @@ msgstr "" #: db_tracking.php:71 libraries/export/htmlword.php:86 #: libraries/export/latex.php:148 libraries/export/odt.php:113 #: libraries/export/sql.php:342 libraries/export/texytext.php:84 -#: libraries/export/xml.php:255 libraries/header.inc.php:106 +#: libraries/export/xml.php:255 libraries/header.inc.php:110 #: libraries/header_printview.inc.php:58 server_databases.php:169 -#: server_privileges.php:1660 server_privileges.php:1721 -#: server_privileges.php:1979 server_processlist.php:56 +#: server_privileges.php:1680 server_privileges.php:1741 +#: server_privileges.php:1999 server_processlist.php:56 #: server_synchronize.php:1179 server_synchronize.php:1183 #: tbl_tracking.php:591 test/theme.php:65 msgid "Database" @@ -744,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:1542 server_privileges.php:1725 -#: server_privileges.php:2073 tbl_structure.php:187 +#: server_privileges.php:1562 server_privileges.php:1745 +#: server_privileges.php:2094 tbl_structure.php:187 msgid "Action" msgstr "Акција" @@ -781,8 +777,8 @@ msgstr "Само структура" msgid "Untracked tables" msgstr "" -#: db_tracking.php:172 db_tracking.php:174 tbl_structure.php:528 -#: tbl_structure.php:530 +#: db_tracking.php:172 db_tracking.php:174 tbl_structure.php:526 +#: tbl_structure.php:528 #, fuzzy msgid "Track table" msgstr "Проверка на табелата" @@ -938,189 +934,234 @@ msgstr "Името на host-от е празно!" msgid "The user name is empty!" msgstr "Не е внесен назив на корисник!" -#: js/messages.php:44 server_privileges.php:1236 user_password.php:70 +#: js/messages.php:44 server_privileges.php:1241 user_password.php:70 msgid "The password is empty!" msgstr "Лозинка е празна!" -#: js/messages.php:45 server_privileges.php:1234 user_password.php:73 +#: js/messages.php:45 server_privileges.php:1239 user_password.php:73 msgid "The passwords aren't the same!" msgstr "Лозинките не се идентични!" -#: js/messages.php:49 pmd_general.php:342 pmd_general.php:379 +#: js/messages.php:46 +#, fuzzy +#| msgid "Add a new User" +msgid "Add a New User" +msgstr "Додади нов корисник" + +#: js/messages.php:47 js/messages.php:54 pmd_general.php:342 +#: pmd_general.php:379 msgid "Cancel" msgstr "" -#: js/messages.php:52 pmd_save_pos.php:54 +#: js/messages.php:48 +#, fuzzy +msgid "Create User" +msgstr "Верзија на серверот" + +#: js/messages.php:49 +#, fuzzy +msgid "Reloading Privileges" +msgstr "Глобални привилегии" + +#: js/messages.php:50 +#, fuzzy +#| msgid "Remove selected users" +msgid "Removing Selected Users" +msgstr "Избриши ги селектираните корисници" + +#: js/messages.php:57 +#, fuzzy +msgid "Loading" +msgstr "Локален" + +#: js/messages.php:58 +#, fuzzy +msgid "Processing Request" +msgstr "Листа на процеси" + +#: js/messages.php:59 +msgid "Error in Processing Request" +msgstr "" + +#: js/messages.php:60 +msgid "Dropping Column" +msgstr "" + +#: js/messages.php:61 +msgid "Adding Primary Key" +msgstr "" + +#: js/messages.php:64 pmd_save_pos.php:54 msgid "Modifications have been saved" msgstr "Измените се сочувани" -#: js/messages.php:53 pmd_relation_upd.php:49 +#: js/messages.php:65 pmd_relation_upd.php:49 #, fuzzy msgid "Relation deleted" msgstr "Релационен поглед" -#: js/messages.php:54 pmd_relation_new.php:64 +#: js/messages.php:66 pmd_relation_new.php:64 msgid "FOREIGN KEY relation added" msgstr "" -#: js/messages.php:55 pmd_relation_new.php:86 +#: js/messages.php:67 pmd_relation_new.php:86 #, fuzzy msgid "Internal relation added" msgstr "Внатрешни релации" -#: js/messages.php:56 pmd_relation_new.php:63 pmd_relation_new.php:88 +#: js/messages.php:68 pmd_relation_new.php:63 pmd_relation_new.php:88 msgid "Error: Relation not added." msgstr "" -#: js/messages.php:57 pmd_relation_new.php:31 +#: js/messages.php:69 pmd_relation_new.php:31 msgid "Error: relation already exists." msgstr "" -#: js/messages.php:58 +#: js/messages.php:70 msgid "Error saving coordinates for Designer." msgstr "" -#: js/messages.php:59 libraries/relation.lib.php:107 +#: js/messages.php:71 libraries/relation.lib.php:107 #: libraries/relation.lib.php:119 msgid "General relation features" msgstr "Општи особини на релациите" -#: js/messages.php:59 libraries/relation.lib.php:101 +#: js/messages.php:71 libraries/relation.lib.php:101 #: libraries/relation.lib.php:108 msgid "Disabled" msgstr "Оневозможено" -#: js/messages.php:60 +#: js/messages.php:72 msgid "Select referenced key" msgstr "" -#: js/messages.php:61 +#: js/messages.php:73 msgid "Select Foreign Key" msgstr "" -#: js/messages.php:62 +#: js/messages.php:74 msgid "Please select the primary key or a unique key" msgstr "" -#: js/messages.php:63 pmd_general.php:77 tbl_relation.php:548 +#: js/messages.php:75 pmd_general.php:77 tbl_relation.php:548 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" msgstr "Избери полиња за прикажување" #. l10n: Display text for calendar close link -#: js/messages.php:73 +#: js/messages.php:85 #, fuzzy #| msgid "None" msgid "Done" msgstr "нема" #. l10n: Display text for previous month link in calendar -#: js/messages.php:75 +#: js/messages.php:87 #, fuzzy #| msgid "Previous" msgid "Prev" msgstr "Претходна" #. l10n: Display text for next month link in calendar -#: js/messages.php:77 libraries/common.lib.php:2353 -#: libraries/common.lib.php:2356 libraries/display_tbl.lib.php:338 +#: js/messages.php:89 libraries/common.lib.php:2357 +#: libraries/common.lib.php:2360 libraries/display_tbl.lib.php:338 #: server_binlog.php:205 server_binlog.php:207 tbl_printview.php:424 -#: tbl_structure.php:801 +#: tbl_structure.php:799 msgid "Next" msgstr "Следен" #. l10n: Display text for current month link in calendar -#: js/messages.php:79 +#: js/messages.php:91 #, fuzzy #| msgid "Total" msgid "Today" msgstr "Вкупно" -#: js/messages.php:82 +#: js/messages.php:94 #, fuzzy #| msgid "Binary" msgid "January" msgstr "Бинарен" -#: js/messages.php:83 +#: js/messages.php:95 msgid "February" msgstr "" -#: js/messages.php:84 +#: js/messages.php:96 #, fuzzy #| msgid "Mar" msgid "March" msgstr "мар" -#: js/messages.php:85 +#: js/messages.php:97 #, fuzzy #| msgid "Apr" msgid "April" msgstr "апр" -#: js/messages.php:86 +#: js/messages.php:98 msgid "May" msgstr "мај" -#: js/messages.php:87 +#: js/messages.php:99 #, fuzzy #| msgid "Jun" msgid "June" msgstr "јун" -#: js/messages.php:88 +#: js/messages.php:100 #, fuzzy #| msgid "Jul" msgid "July" msgstr "јул" -#: js/messages.php:89 +#: js/messages.php:101 #, fuzzy #| msgid "Aug" msgid "August" msgstr "авг" -#: js/messages.php:90 +#: js/messages.php:102 msgid "September" msgstr "" -#: js/messages.php:91 +#: js/messages.php:103 #, fuzzy #| msgid "Oct" msgid "October" msgstr "окт" -#: js/messages.php:92 +#: js/messages.php:104 msgid "November" msgstr "" -#: js/messages.php:93 +#: js/messages.php:105 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:97 libraries/common.lib.php:1557 +#: js/messages.php:109 libraries/common.lib.php:1557 msgid "Jan" msgstr "јан" #. l10n: Short month name -#: js/messages.php:99 libraries/common.lib.php:1559 +#: js/messages.php:111 libraries/common.lib.php:1559 msgid "Feb" msgstr "феб" #. l10n: Short month name -#: js/messages.php:101 libraries/common.lib.php:1561 +#: js/messages.php:113 libraries/common.lib.php:1561 msgid "Mar" msgstr "мар" #. l10n: Short month name -#: js/messages.php:103 libraries/common.lib.php:1563 +#: js/messages.php:115 libraries/common.lib.php:1563 msgid "Apr" msgstr "апр" #. l10n: Short month name -#: js/messages.php:105 libraries/common.lib.php:1565 +#: js/messages.php:117 libraries/common.lib.php:1565 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1128,176 +1169,176 @@ msgid "May" msgstr "мај" #. l10n: Short month name -#: js/messages.php:107 libraries/common.lib.php:1567 +#: js/messages.php:119 libraries/common.lib.php:1567 msgid "Jun" msgstr "јун" #. l10n: Short month name -#: js/messages.php:109 libraries/common.lib.php:1569 +#: js/messages.php:121 libraries/common.lib.php:1569 msgid "Jul" msgstr "јул" #. l10n: Short month name -#: js/messages.php:111 libraries/common.lib.php:1571 +#: js/messages.php:123 libraries/common.lib.php:1571 msgid "Aug" msgstr "авг" #. l10n: Short month name -#: js/messages.php:113 libraries/common.lib.php:1573 +#: js/messages.php:125 libraries/common.lib.php:1573 msgid "Sep" msgstr "сеп" #. l10n: Short month name -#: js/messages.php:115 libraries/common.lib.php:1575 +#: js/messages.php:127 libraries/common.lib.php:1575 msgid "Oct" msgstr "окт" #. l10n: Short month name -#: js/messages.php:117 libraries/common.lib.php:1577 +#: js/messages.php:129 libraries/common.lib.php:1577 msgid "Nov" msgstr "нов" #. l10n: Short month name -#: js/messages.php:119 libraries/common.lib.php:1579 +#: js/messages.php:131 libraries/common.lib.php:1579 msgid "Dec" msgstr "дек" -#: js/messages.php:122 +#: js/messages.php:134 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "Нед" -#: js/messages.php:123 +#: js/messages.php:135 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "Пон" -#: js/messages.php:124 +#: js/messages.php:136 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "Вто" -#: js/messages.php:125 +#: js/messages.php:137 msgid "Wednesday" msgstr "" -#: js/messages.php:126 +#: js/messages.php:138 msgid "Thursday" msgstr "" -#: js/messages.php:127 +#: js/messages.php:139 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "Пет" -#: js/messages.php:128 +#: js/messages.php:140 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:132 libraries/common.lib.php:1582 +#: js/messages.php:144 libraries/common.lib.php:1582 msgid "Sun" msgstr "Нед" #. l10n: Short week day name -#: js/messages.php:134 libraries/common.lib.php:1584 +#: js/messages.php:146 libraries/common.lib.php:1584 msgid "Mon" msgstr "Пон" #. l10n: Short week day name -#: js/messages.php:136 libraries/common.lib.php:1586 +#: js/messages.php:148 libraries/common.lib.php:1586 msgid "Tue" msgstr "Вто" #. l10n: Short week day name -#: js/messages.php:138 libraries/common.lib.php:1588 +#: js/messages.php:150 libraries/common.lib.php:1588 msgid "Wed" msgstr "Сре" #. l10n: Short week day name -#: js/messages.php:140 libraries/common.lib.php:1590 +#: js/messages.php:152 libraries/common.lib.php:1590 msgid "Thu" msgstr "Чет" #. l10n: Short week day name -#: js/messages.php:142 libraries/common.lib.php:1592 +#: js/messages.php:154 libraries/common.lib.php:1592 msgid "Fri" msgstr "Пет" #. l10n: Short week day name -#: js/messages.php:144 libraries/common.lib.php:1594 +#: js/messages.php:156 libraries/common.lib.php:1594 msgid "Sat" msgstr "Саб" #. l10n: Minimal week day name -#: js/messages.php:148 +#: js/messages.php:160 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "Нед" #. l10n: Minimal week day name -#: js/messages.php:150 +#: js/messages.php:162 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "Пон" #. l10n: Minimal week day name -#: js/messages.php:152 +#: js/messages.php:164 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "Вто" #. l10n: Minimal week day name -#: js/messages.php:154 +#: js/messages.php:166 #, fuzzy #| msgid "Wed" msgid "We" msgstr "Сре" #. l10n: Minimal week day name -#: js/messages.php:156 +#: js/messages.php:168 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "Чет" #. l10n: Minimal week day name -#: js/messages.php:158 +#: js/messages.php:170 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "Пет" #. l10n: Minimal week day name -#: js/messages.php:160 +#: js/messages.php:172 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "Саб" #. l10n: Column header for week of the year in calendar -#: js/messages.php:162 +#: js/messages.php:174 msgid "Wk" msgstr "" -#: js/messages.php:164 +#: js/messages.php:176 msgid "Hour" msgstr "" -#: js/messages.php:165 +#: js/messages.php:177 #, fuzzy #| msgid "in use" msgid "Minute" msgstr "се користи" -#: js/messages.php:166 +#: js/messages.php:178 #, fuzzy #| msgid "per second" msgid "Second" @@ -1357,7 +1398,7 @@ msgstr "Клучеви" #: libraries/Index.class.php:444 libraries/mult_submits.inc.php:103 #: libraries/tbl_properties.inc.php:519 tbl_structure.php:33 -#: tbl_structure.php:155 tbl_structure.php:159 tbl_structure.php:474 +#: tbl_structure.php:155 tbl_structure.php:159 tbl_structure.php:472 #: tbl_tracking.php:322 msgid "Unique" msgstr "Единствен" @@ -1399,8 +1440,8 @@ msgid "" "removed." msgstr "" -#: libraries/List_Database.class.php:431 libraries/server_links.inc.php:41 -#: server_databases.php:88 server_privileges.php:1660 +#: libraries/List_Database.class.php:431 libraries/server_links.inc.php:42 +#: server_databases.php:88 server_privileges.php:1680 #: setup/lib/messages.inc.php:110 test/theme.php:93 msgid "Databases" msgstr "База на податоци" @@ -1568,7 +1609,7 @@ msgstr "Лозинка:" msgid "Server Choice" msgstr "Избор на сервер" -#: libraries/auth/cookie.auth.lib.php:320 libraries/header.inc.php:59 +#: libraries/auth/cookie.auth.lib.php:320 libraries/header.inc.php:63 msgid "Cookies must be enabled past this point." msgstr "вашиот веб прелистувач треба да допушти cookies" @@ -1650,7 +1691,7 @@ msgstr "" "Не можам да ги користам iconv или libiconv или recode_string функциите иако " "екстензијата пријавува дека е вчитана. Проверите ја вашата PHP конфигурација." -#: libraries/common.inc.php:583 +#: libraries/common.inc.php:587 msgid "" "phpMyAdmin was unable to read your configuration file!
This might " "happen if PHP finds a parse error in it or PHP cannot find the file.
Ако добиете празна страница, се е во ред." -#: libraries/common.inc.php:594 +#: libraries/common.inc.php:598 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "" -#: libraries/common.inc.php:599 +#: libraries/common.inc.php:603 msgid "" "The $cfg['PmaAbsoluteUri'] directive MUST be set in your " "configuration file!" @@ -1679,27 +1720,27 @@ msgstr "" "$cfg['PmaAbsoluteUri'] директивата МОРА да биде подесена во " "конфигурациската податотека!" -#: libraries/common.inc.php:629 +#: libraries/common.inc.php:633 #, php-format msgid "Invalid server index: %s" msgstr "" -#: libraries/common.inc.php:636 +#: libraries/common.inc.php:640 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" -#: libraries/common.inc.php:645 libraries/header.inc.php:96 +#: libraries/common.inc.php:649 libraries/header.inc.php:100 #: libraries/select_server.lib.php:41 libraries/select_server.lib.php:47 #: main.php:185 test/theme.php:57 msgid "Server" msgstr "Сервер" -#: libraries/common.inc.php:823 +#: libraries/common.inc.php:827 msgid "Invalid authentication method set in configuration:" msgstr "" -#: libraries/common.inc.php:926 +#: libraries/common.inc.php:930 #, php-format msgid "You should upgrade to %s %s or later." msgstr "" @@ -1835,45 +1876,45 @@ msgstr "." msgid "%B %d, %Y at %I:%M %p" msgstr "%d. %B %Y. во %H:%M" -#: libraries/common.lib.php:1907 +#: libraries/common.lib.php:1911 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s денови, %s часови, %s минути и %s секунди" -#: libraries/common.lib.php:2322 libraries/common.lib.php:2325 +#: libraries/common.lib.php:2326 libraries/common.lib.php:2329 #: libraries/display_tbl.lib.php:290 server_status.php:719 msgid "Begin" msgstr "Почеток" -#: libraries/common.lib.php:2323 libraries/common.lib.php:2326 +#: libraries/common.lib.php:2327 libraries/common.lib.php:2330 #: libraries/display_tbl.lib.php:291 server_binlog.php:168 #: server_binlog.php:170 msgid "Previous" msgstr "Претходна" -#: libraries/common.lib.php:2354 libraries/common.lib.php:2357 +#: libraries/common.lib.php:2358 libraries/common.lib.php:2361 #: libraries/display_tbl.lib.php:353 msgid "End" msgstr "Крај" -#: libraries/common.lib.php:2430 +#: libraries/common.lib.php:2434 #, php-format msgid "Jump to database "%s"." msgstr "Премин на базата "%s"." -#: libraries/common.lib.php:2450 +#: libraries/common.lib.php:2454 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" -#: libraries/common.lib.php:2830 libraries/common.lib.php:2837 +#: libraries/common.lib.php:2834 libraries/common.lib.php:2841 #: libraries/db_links.inc.php:68 libraries/export/sql.php:25 -#: libraries/import/sql.php:18 libraries/server_links.inc.php:45 +#: libraries/import/sql.php:18 libraries/server_links.inc.php:46 #: libraries/tbl_links.inc.php:60 querywindow.php:99 test/theme.php:97 msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2839 libraries/db_links.inc.php:104 +#: libraries/common.lib.php:2843 libraries/db_links.inc.php:104 #: libraries/tbl_links.inc.php:95 libraries/tbl_links.inc.php:117 #: view_operations.php:89 msgid "Operations" @@ -1922,16 +1963,16 @@ msgstr "Упит по пример" msgid "Designer" msgstr "" -#: libraries/db_links.inc.php:98 libraries/server_links.inc.php:88 +#: libraries/db_links.inc.php:98 libraries/server_links.inc.php:89 #: libraries/tbl_links.inc.php:91 pmd_pdf.php:84 pmd_pdf.php:110 #: setup/frames/menu.inc.php:21 #, fuzzy msgid "Import" msgstr "Извоз" -#: libraries/db_links.inc.php:111 libraries/server_links.inc.php:66 -#: server_privileges.php:111 server_privileges.php:1722 -#: server_privileges.php:2071 test/theme.php:117 +#: libraries/db_links.inc.php:111 libraries/server_links.inc.php:67 +#: server_privileges.php:112 server_privileges.php:1742 +#: server_privileges.php:2092 test/theme.php:117 msgid "Privileges" msgstr "Привилегии" @@ -1952,7 +1993,7 @@ msgstr "" "3.11" #: libraries/db_structure.lib.php:69 server_databases.php:142 -#: tbl_printview.php:336 tbl_structure.php:682 +#: tbl_printview.php:336 tbl_structure.php:680 msgid "Overhead" msgstr "Пречекорување" @@ -1969,7 +2010,7 @@ msgstr "Серверот не одговара" msgid "(or the local MySQL server's socket is not correctly configured)" msgstr "(или приклучокот со локалниот MySQL сервер не е исправно подесен)" -#: libraries/dbi/mysql.dbi.lib.php:362 tbl_structure.php:608 +#: libraries/dbi/mysql.dbi.lib.php:362 tbl_structure.php:606 msgid "Details..." msgstr "" @@ -1979,22 +2020,22 @@ msgid "Change password" msgstr "Промена на лозинка" #: libraries/display_change_password.lib.php:35 -#: libraries/replication_gui.lib.php:345 server_privileges.php:807 +#: libraries/replication_gui.lib.php:345 server_privileges.php:808 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:796 -#: server_privileges.php:800 server_privileges.php:811 -#: server_privileges.php:1538 server_synchronize.php:1175 +#: libraries/replication_gui.lib.php:349 server_privileges.php:797 +#: server_privileges.php:801 server_privileges.php:812 +#: server_privileges.php:1558 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:815 server_privileges.php:818 +#: server_privileges.php:816 server_privileges.php:819 msgid "Re-type" msgstr "Повтори внес" @@ -2009,12 +2050,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:822 +#: libraries/replication_gui.lib.php:360 server_privileges.php:823 msgid "Generate Password" msgstr "Генерирање на лозинка" #: libraries/display_change_password.lib.php:75 -#: libraries/replication_gui.lib.php:363 server_privileges.php:825 +#: libraries/replication_gui.lib.php:363 server_privileges.php:826 msgid "Generate" msgstr "Генерирај" @@ -2027,8 +2068,8 @@ msgstr "Креирај нова база на податоци" msgid "Create" msgstr "Креирај" -#: libraries/display_create_database.lib.php:40 server_privileges.php:113 -#: server_privileges.php:1427 server_replication.php:35 +#: libraries/display_create_database.lib.php:40 server_privileges.php:114 +#: server_privileges.php:1447 server_replication.php:35 msgid "No Privileges" msgstr "Нема привилегии" @@ -2117,7 +2158,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:1875 server_processlist.php:75 +#: server_privileges.php:1895 server_processlist.php:75 msgid "None" msgstr "нема" @@ -2301,7 +2342,7 @@ msgstr "Подредување по клуч" #: libraries/import/docsql.php:34 libraries/import/ldi.php:47 #: libraries/import/ods.php:30 libraries/import/sql.php:20 #: libraries/import/xls.php:26 libraries/import/xlsx.php:26 -#: libraries/import/xml.php:25 tbl_select.php:267 tbl_structure.php:753 +#: libraries/import/xml.php:25 tbl_select.php:267 tbl_structure.php:751 #, fuzzy msgid "Options" msgstr "Операции" @@ -2380,7 +2421,7 @@ msgstr "време на извршување на упитот %01.4f секун #: libraries/display_tbl.lib.php:2089 libraries/mult_submits.inc.php:113 #: querywindow.php:125 querywindow.php:129 querywindow.php:132 -#: tbl_structure.php:25 tbl_structure.php:150 tbl_structure.php:470 +#: tbl_structure.php:25 tbl_structure.php:150 tbl_structure.php:468 msgid "Change" msgstr "Промени" @@ -2452,7 +2493,7 @@ msgstr "Искористеност на баферот" #: libraries/engines/innodb.lib.php:194 server_databases.php:137 #: server_databases.php:305 server_status.php:525 server_status.php:586 -#: server_status.php:607 tbl_printview.php:351 tbl_structure.php:696 +#: server_status.php:607 tbl_printview.php:351 tbl_structure.php:694 msgid "Total" msgstr "Вкупно" @@ -2714,7 +2755,7 @@ msgid "" msgstr "" #: libraries/export/codegen.php:37 setup/lib/messages.inc.php:88 -#: tbl_printview.php:376 tbl_structure.php:737 +#: tbl_printview.php:376 tbl_structure.php:735 msgid "Format" msgstr "Формат" @@ -2786,8 +2827,8 @@ 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:576 server_replication.php:316 tbl_printview.php:317 -#: tbl_structure.php:665 +#: server_privileges.php:577 server_replication.php:316 tbl_printview.php:317 +#: tbl_structure.php:663 msgid "Data" msgstr "Податоци" @@ -2836,9 +2877,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:731 -#: server_privileges.php:734 server_privileges.php:790 -#: server_privileges.php:1537 server_privileges.php:2069 +#: libraries/replication_gui.lib.php:329 server_privileges.php:732 +#: server_privileges.php:735 server_privileges.php:791 +#: server_privileges.php:1557 server_privileges.php:2090 #: server_processlist.php:55 server_synchronize.php:1159 msgid "Host" msgstr "Host" @@ -3037,7 +3078,7 @@ msgstr "" msgid "Open new phpMyAdmin window" msgstr "" -#: libraries/header.inc.php:115 +#: libraries/header.inc.php:119 #, fuzzy msgid "New table" msgstr "Нема табела" @@ -3197,20 +3238,20 @@ 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 +#: tbl_structure.php:471 msgid "Primary" msgstr "Примарен" #: libraries/mult_submits.inc.php:98 libraries/tbl_properties.inc.php:116 #: libraries/tbl_properties.inc.php:525 tbl_printview.php:326 #: tbl_structure.php:31 tbl_structure.php:154 tbl_structure.php:158 -#: tbl_structure.php:475 tbl_structure.php:673 +#: tbl_structure.php:473 tbl_structure.php:671 msgid "Index" msgstr "Клуч" #: libraries/mult_submits.inc.php:108 libraries/tbl_properties.inc.php:531 #: tbl_structure.php:35 tbl_structure.php:156 tbl_structure.php:160 -#: tbl_structure.php:478 +#: tbl_structure.php:476 msgid "Fulltext" msgstr "Текст клуч" @@ -3513,8 +3554,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:711 -#: server_privileges.php:714 server_privileges.php:721 +#: libraries/replication_gui.lib.php:259 server_privileges.php:712 +#: server_privileges.php:715 server_privileges.php:722 #: server_synchronize.php:1171 msgid "User name" msgstr "Назив на корисник" @@ -3539,7 +3580,7 @@ msgstr "Променлива" #: 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 +#: tbl_structure.php:727 msgid "Value" msgstr "Вредност" @@ -3557,34 +3598,34 @@ msgstr "" msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:254 server_privileges.php:716 +#: libraries/replication_gui.lib.php:254 server_privileges.php:717 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:717 -#: server_privileges.php:784 server_privileges.php:808 -#: server_privileges.php:1928 server_privileges.php:1958 +#: libraries/replication_gui.lib.php:346 server_privileges.php:718 +#: server_privileges.php:785 server_privileges.php:809 +#: server_privileges.php:1948 server_privileges.php:1978 msgid "Use text field" msgstr "Користи текст поле" -#: libraries/replication_gui.lib.php:302 server_privileges.php:764 +#: libraries/replication_gui.lib.php:302 server_privileges.php:765 msgid "Any host" msgstr "Било кој host" -#: libraries/replication_gui.lib.php:306 server_privileges.php:768 +#: libraries/replication_gui.lib.php:306 server_privileges.php:769 msgid "Local" msgstr "Локален" -#: libraries/replication_gui.lib.php:312 server_privileges.php:773 +#: libraries/replication_gui.lib.php:312 server_privileges.php:774 msgid "This Host" msgstr "Овој host" -#: libraries/replication_gui.lib.php:318 server_privileges.php:779 +#: libraries/replication_gui.lib.php:318 server_privileges.php:780 msgid "Use Host Table" msgstr "Користи ја табелата на host-от" -#: libraries/replication_gui.lib.php:331 server_privileges.php:792 +#: libraries/replication_gui.lib.php:331 server_privileges.php:793 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -3619,30 +3660,30 @@ msgstr "" msgid "Servers" msgstr "Сервер" -#: libraries/server_links.inc.php:53 server_engines.php:112 +#: libraries/server_links.inc.php:54 server_engines.php:112 #: server_engines.php:116 server_status.php:415 test/theme.php:105 msgid "Variables" msgstr "Променливи" -#: libraries/server_links.inc.php:57 test/theme.php:109 +#: libraries/server_links.inc.php:58 test/theme.php:109 msgid "Charsets" msgstr "Кодни страници" -#: libraries/server_links.inc.php:61 test/theme.php:113 +#: libraries/server_links.inc.php:62 test/theme.php:113 msgid "Engines" msgstr "Складишта" -#: libraries/server_links.inc.php:76 server_binlog.php:110 +#: libraries/server_links.inc.php:77 server_binlog.php:110 #: server_status.php:364 test/theme.php:121 msgid "Binary log" msgstr "Бинарен дневник" -#: libraries/server_links.inc.php:80 +#: libraries/server_links.inc.php:81 #, fuzzy msgid "Processes" msgstr "Листа на процеси" -#: libraries/server_links.inc.php:92 server_synchronize.php:1092 +#: libraries/server_links.inc.php:93 server_synchronize.php:1092 #: server_synchronize.php:1100 msgid "Synchronize" msgstr "" @@ -3891,13 +3932,13 @@ msgstr "" msgid "Save" msgstr "Сочувај" -#: libraries/tbl_properties.inc.php:780 tbl_structure.php:542 +#: libraries/tbl_properties.inc.php:780 tbl_structure.php:540 #, fuzzy, php-format #| msgid "Add %s field(s)" msgid "Add %s column(s)" msgstr "Додади %s полиња" -#: libraries/tbl_properties.inc.php:784 tbl_structure.php:536 +#: libraries/tbl_properties.inc.php:784 tbl_structure.php:534 #, fuzzy #| msgid "You have to choose at least one column to display" msgid "You have to add at least one column." @@ -4106,8 +4147,8 @@ msgstr "Поништи" msgid "Protocol version" msgstr "" -#: main.php:189 server_privileges.php:1389 server_privileges.php:1536 -#: server_privileges.php:1650 server_privileges.php:2068 +#: main.php:189 server_privileges.php:1406 server_privileges.php:1556 +#: server_privileges.php:1670 server_privileges.php:2089 #: server_processlist.php:54 msgid "User" msgstr "Корисник" @@ -4547,117 +4588,117 @@ msgstr "Видови на складишта" msgid "View dump (schema) of databases" msgstr "Прикажи содржина (шема) на базите" -#: server_privileges.php:24 server_privileges.php:266 +#: server_privileges.php:25 server_privileges.php:267 msgid "Includes all privileges except GRANT." msgstr "Ги вклучува сите привилегии освен GRANT." -#: server_privileges.php:25 server_privileges.php:192 -#: server_privileges.php:515 +#: server_privileges.php:26 server_privileges.php:193 +#: server_privileges.php:516 msgid "Allows altering the structure of existing tables." msgstr "Дозволува промена на структурата на постоечките табели." -#: server_privileges.php:26 server_privileges.php:208 -#: server_privileges.php:521 +#: server_privileges.php:27 server_privileges.php:209 +#: server_privileges.php:522 msgid "Allows altering and dropping stored routines." msgstr "Дозволува промена и бришење на stored рутини." -#: server_privileges.php:27 server_privileges.php:184 -#: server_privileges.php:514 +#: server_privileges.php:28 server_privileges.php:185 +#: server_privileges.php:515 msgid "Allows creating new databases and tables." msgstr "Дозволува креирање на нови бази на податоци и табели." -#: server_privileges.php:28 server_privileges.php:207 -#: server_privileges.php:520 +#: server_privileges.php:29 server_privileges.php:208 +#: server_privileges.php:521 msgid "Allows creating stored routines." msgstr "Дозволува креирање на stored рутини." -#: server_privileges.php:29 server_privileges.php:514 +#: server_privileges.php:30 server_privileges.php:515 msgid "Allows creating new tables." msgstr "Дозволува креирање на нови табела." -#: server_privileges.php:30 server_privileges.php:195 -#: server_privileges.php:518 +#: server_privileges.php:31 server_privileges.php:196 +#: server_privileges.php:519 msgid "Allows creating temporary tables." msgstr "Дозволува креирање на привремени табели..." -#: server_privileges.php:31 server_privileges.php:209 -#: server_privileges.php:554 +#: server_privileges.php:32 server_privileges.php:210 +#: server_privileges.php:555 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 +#: server_privileges.php:33 server_privileges.php:200 +#: server_privileges.php:204 server_privileges.php:527 +#: server_privileges.php:531 msgid "Allows creating new views." msgstr "Дозволува креирање на нови погледи." -#: server_privileges.php:33 server_privileges.php:183 -#: server_privileges.php:506 +#: server_privileges.php:34 server_privileges.php:184 +#: server_privileges.php:507 msgid "Allows deleting data." msgstr "Дозволува бришење на податоци." -#: server_privileges.php:34 server_privileges.php:185 -#: server_privileges.php:517 +#: server_privileges.php:35 server_privileges.php:186 +#: server_privileges.php:518 msgid "Allows dropping databases and tables." msgstr "Дозволува бришење на бази на податоци и табели." -#: server_privileges.php:35 server_privileges.php:517 +#: server_privileges.php:36 server_privileges.php:518 msgid "Allows dropping tables." msgstr "Дозволува бришење на табели." -#: server_privileges.php:36 server_privileges.php:200 -#: server_privileges.php:534 +#: server_privileges.php:37 server_privileges.php:201 +#: server_privileges.php:535 msgid "Allows to set up events for the event scheduler" msgstr "" -#: server_privileges.php:37 server_privileges.php:210 -#: server_privileges.php:522 +#: server_privileges.php:38 server_privileges.php:211 +#: server_privileges.php:523 msgid "Allows executing stored routines." msgstr "Дозволува извршување на stored рутини." -#: server_privileges.php:38 server_privileges.php:189 -#: server_privileges.php:509 +#: server_privileges.php:39 server_privileges.php:190 +#: server_privileges.php:510 msgid "Allows importing data from and exporting data into files." msgstr "Дозволува увоз на податоци и нивен извоз во податотеки." -#: server_privileges.php:39 server_privileges.php:540 +#: server_privileges.php:40 server_privileges.php:541 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "Дозволува додавање на корисници и привилегии без повтроно вчитавање на " "табелата на привилегии." -#: server_privileges.php:40 server_privileges.php:191 -#: server_privileges.php:516 +#: server_privileges.php:41 server_privileges.php:192 +#: server_privileges.php:517 msgid "Allows creating and dropping indexes." msgstr "Дозволува креирање и бришење на клучева." -#: server_privileges.php:41 server_privileges.php:181 -#: server_privileges.php:442 server_privileges.php:504 +#: server_privileges.php:42 server_privileges.php:182 +#: server_privileges.php:443 server_privileges.php:505 msgid "Allows inserting and replacing data." msgstr "Дозволува вметнување и замена на података." -#: server_privileges.php:42 server_privileges.php:196 -#: server_privileges.php:549 +#: server_privileges.php:43 server_privileges.php:197 +#: server_privileges.php:550 msgid "Allows locking tables for the current thread." msgstr "Дозволува заклучување на табели на тековните процеси." -#: server_privileges.php:43 server_privileges.php:646 -#: server_privileges.php:648 +#: server_privileges.php:44 server_privileges.php:647 +#: server_privileges.php:649 msgid "Limits the number of new connections the user may open per hour." msgstr "" "Го ограничува бројот на нови конекции кои корисникот може да ги отвори за " "еден час." -#: server_privileges.php:44 server_privileges.php:634 -#: server_privileges.php:636 +#: server_privileges.php:45 server_privileges.php:635 +#: server_privileges.php:637 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" "Го ограничува бројот на упити кои корисникот може да ги постави на серверот " "за еден час." -#: server_privileges.php:45 server_privileges.php:640 -#: server_privileges.php:642 +#: server_privileges.php:46 server_privileges.php:641 +#: server_privileges.php:643 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -4665,63 +4706,63 @@ msgstr "" "Го ограничува бројот на команди кои ги менуваат табелите или базите на " "податоци кои корисникот може да ги изврши за еден час." -#: server_privileges.php:46 server_privileges.php:652 -#: server_privileges.php:654 +#: server_privileges.php:47 server_privileges.php:653 +#: server_privileges.php:655 #, fuzzy msgid "Limits the number of simultaneous connections the user may have." msgstr "" "Го ограничува бројот на нови конекции кои корисникот може да ги отвори за " "еден час." -#: server_privileges.php:47 server_privileges.php:188 -#: server_privileges.php:544 +#: server_privileges.php:48 server_privileges.php:189 +#: server_privileges.php:545 msgid "Allows viewing processes of all users" msgstr "" -#: server_privileges.php:48 server_privileges.php:190 -#: server_privileges.php:448 server_privileges.php:550 +#: server_privileges.php:49 server_privileges.php:191 +#: server_privileges.php:449 server_privileges.php:551 msgid "Has no effect in this MySQL version." msgstr "Нема ефект во оваа верзији на MySQL." -#: server_privileges.php:49 server_privileges.php:186 -#: server_privileges.php:545 +#: server_privileges.php:50 server_privileges.php:187 +#: server_privileges.php:546 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" "Дозволува повтоно вчитување на подесувањата на серверот и празнење на кешот " "на серверот." -#: server_privileges.php:50 server_privileges.php:198 -#: server_privileges.php:552 +#: server_privileges.php:51 server_privileges.php:199 +#: server_privileges.php:553 msgid "Allows the user to ask where the slaves / masters are." msgstr "Дава права на кориснику да праша каде се главните/помошни сервери." -#: server_privileges.php:51 server_privileges.php:197 -#: server_privileges.php:553 +#: server_privileges.php:52 server_privileges.php:198 +#: server_privileges.php:554 msgid "Needed for the replication slaves." msgstr "Потребно заради помошните сервери за репликација." -#: server_privileges.php:52 server_privileges.php:180 -#: server_privileges.php:439 server_privileges.php:503 +#: server_privileges.php:53 server_privileges.php:181 +#: server_privileges.php:440 server_privileges.php:504 msgid "Allows reading data." msgstr "Дозволува читање на податоци." -#: server_privileges.php:53 server_privileges.php:193 -#: server_privileges.php:547 +#: server_privileges.php:54 server_privileges.php:194 +#: server_privileges.php:548 msgid "Gives access to the complete list of databases." msgstr "Дава пристап на комплетната листа на базите на податоци." -#: server_privileges.php:54 server_privileges.php:204 -#: server_privileges.php:206 server_privileges.php:519 +#: server_privileges.php:55 server_privileges.php:205 +#: server_privileges.php:207 server_privileges.php:520 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Дозволува извршување на SHOW CREATE VIEW упити." -#: server_privileges.php:55 server_privileges.php:187 -#: server_privileges.php:546 +#: server_privileges.php:56 server_privileges.php:188 +#: server_privileges.php:547 msgid "Allows shutting down the server." msgstr "Дозволува гасење на серверот." -#: server_privileges.php:56 server_privileges.php:194 -#: server_privileges.php:543 +#: server_privileges.php:57 server_privileges.php:195 +#: server_privileges.php:544 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -4731,161 +4772,161 @@ msgstr "" "Неопходно за повеќето административни опции како што е подесување на " "глобални променливи или прекин на процеси наостанатите корисници." -#: server_privileges.php:57 server_privileges.php:201 -#: server_privileges.php:535 +#: server_privileges.php:58 server_privileges.php:202 +#: server_privileges.php:536 #, fuzzy msgid "Allows creating and dropping triggers" msgstr "Дозволува креирање и бришење на клучева." -#: server_privileges.php:58 server_privileges.php:182 -#: server_privileges.php:445 server_privileges.php:505 +#: server_privileges.php:59 server_privileges.php:183 +#: server_privileges.php:446 server_privileges.php:506 msgid "Allows changing data." msgstr "Дозволува измена на податоци." -#: server_privileges.php:59 server_privileges.php:260 +#: server_privileges.php:60 server_privileges.php:261 msgid "No privileges." msgstr "Нема привилегии." -#: server_privileges.php:302 server_privileges.php:303 +#: server_privileges.php:303 server_privileges.php:304 #, fuzzy #| msgid "None" msgctxt "None privileges" msgid "None" msgstr "нема" -#: server_privileges.php:431 server_privileges.php:566 -#: server_privileges.php:1718 server_privileges.php:1724 +#: server_privileges.php:432 server_privileges.php:567 +#: server_privileges.php:1738 server_privileges.php:1744 msgid "Table-specific privileges" msgstr "Привилегии поврзани со табелата" -#: server_privileges.php:432 server_privileges.php:574 -#: server_privileges.php:1540 +#: server_privileges.php:433 server_privileges.php:575 +#: server_privileges.php:1560 msgid " Note: MySQL privilege names are expressed in English " msgstr "" " Напомена: MySQL имињата на привилегите мора да бидат со латинични букви " -#: server_privileges.php:563 server_privileges.php:1539 +#: server_privileges.php:564 server_privileges.php:1559 msgid "Global privileges" msgstr "Глобални привилегии" -#: server_privileges.php:565 server_privileges.php:1718 +#: server_privileges.php:566 server_privileges.php:1738 msgid "Database-specific privileges" msgstr "Привилегии во врска со базата на податоци" -#: server_privileges.php:610 +#: server_privileges.php:611 msgid "Administration" msgstr "Администрација" -#: server_privileges.php:630 +#: server_privileges.php:631 msgid "Resource limits" msgstr "Ограничување на ресурси" -#: server_privileges.php:631 +#: server_privileges.php:632 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "" "Напомена: Поставувањето на овие опции на 0 (нула) ги отстранува " "ограничувањата." -#: server_privileges.php:708 +#: server_privileges.php:709 msgid "Login Information" msgstr "Податоци за најавувањето" -#: server_privileges.php:802 +#: server_privileges.php:803 msgid "Do not change the password" msgstr "Немој да ја менуваш лозинката" -#: server_privileges.php:843 server_privileges.php:2205 +#: server_privileges.php:844 server_privileges.php:2226 #, fuzzy #| msgid "No user(s) found." msgid "No user found." msgstr "Корисникот не е пронајден." -#: server_privileges.php:887 +#: server_privileges.php:888 #, php-format msgid "The user %s already exists!" msgstr "Корисник %s веќе постои!" -#: server_privileges.php:970 +#: server_privileges.php:971 msgid "You have added a new user." msgstr "Додадовте нов корисник." -#: server_privileges.php:1191 +#: server_privileges.php:1196 #, php-format msgid "You have updated the privileges for %s." msgstr "Ги ажуриравте привилегиите за %s." -#: server_privileges.php:1215 +#: server_privileges.php:1220 #, php-format msgid "You have revoked the privileges for %s" msgstr "Ги забранивте привилегиите за %s" -#: server_privileges.php:1251 +#: server_privileges.php:1256 #, php-format msgid "The password for %s was changed successfully." msgstr "Лозинката за %s успешно е променета." -#: server_privileges.php:1271 +#: server_privileges.php:1276 #, php-format msgid "Deleting %s" msgstr "Бришам %s" -#: server_privileges.php:1282 +#: server_privileges.php:1287 msgid "No users selected for deleting!" msgstr "" -#: server_privileges.php:1285 +#: server_privileges.php:1290 msgid "Reloading the privileges" msgstr "Повторно ги вчитувам привилегиите" -#: server_privileges.php:1300 +#: server_privileges.php:1305 msgid "The selected users have been deleted successfully." msgstr "Изабраните корисници успешно се избришани." -#: server_privileges.php:1335 +#: server_privileges.php:1344 msgid "The privileges were reloaded successfully." msgstr "Привилегиите се успешно вчитани." -#: server_privileges.php:1363 server_privileges.php:1649 +#: server_privileges.php:1380 server_privileges.php:1669 msgid "Edit Privileges" msgstr "Промена на привилегии" -#: server_privileges.php:1372 +#: server_privileges.php:1389 msgid "Revoke" msgstr "Забрани" -#: server_privileges.php:1404 +#: server_privileges.php:1424 msgid "User overview" msgstr "Преглед на корисници" -#: server_privileges.php:1541 server_privileges.php:1723 -#: server_privileges.php:2072 +#: server_privileges.php:1561 server_privileges.php:1743 +#: server_privileges.php:2093 msgid "Grant" msgstr "Овозможи" -#: server_privileges.php:1560 server_privileges.php:2162 +#: server_privileges.php:1580 server_privileges.php:2183 msgid "Any" msgstr "Било кој" -#: server_privileges.php:1609 server_privileges.php:1633 -#: server_privileges.php:2027 server_privileges.php:2216 +#: server_privileges.php:1629 server_privileges.php:1653 +#: server_privileges.php:2048 server_privileges.php:2237 msgid "Add a new User" msgstr "Додади нов корисник" -#: server_privileges.php:1614 +#: server_privileges.php:1634 msgid "Remove selected users" msgstr "Избриши ги селектираните корисници" -#: server_privileges.php:1617 +#: server_privileges.php:1637 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 +#: server_privileges.php:1638 server_privileges.php:1639 +#: server_privileges.php:1640 msgid "Drop the databases that have the same names as the users." msgstr "" "Избриши ги базите на податоци кои се именувани исто како и корисниците." -#: server_privileges.php:1636 +#: server_privileges.php:1656 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -4899,49 +4940,49 @@ msgstr "" "измени. Во тој случај %sповторно вчитајте ги привилегиите%s пред да " "продолжите со работа." -#: server_privileges.php:1684 +#: server_privileges.php:1704 msgid "The selected user was not found in the privilege table." msgstr "Изабраниот корисник не е пронајден во табелата на привилегии." -#: server_privileges.php:1724 +#: server_privileges.php:1744 msgid "Column-specific privileges" msgstr "Привилегии врзани за колоните" -#: server_privileges.php:1925 +#: server_privileges.php:1945 msgid "Add privileges on the following database" msgstr "Додади привилегии на следната база" -#: server_privileges.php:1943 +#: server_privileges.php:1963 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" "Пред џокер знаците _ и % треба да стои знакот \\ ако ги користите самостојно" -#: server_privileges.php:1946 +#: server_privileges.php:1966 msgid "Add privileges on the following table" msgstr "Додади привилегии на следната табела" -#: server_privileges.php:2003 +#: server_privileges.php:2023 msgid "Change Login Information / Copy User" msgstr "Промени ги информациите за најавувањето / Копирај го корисникот" -#: server_privileges.php:2006 +#: server_privileges.php:2026 msgid "Create a new user with the same privileges and ..." msgstr "Направи нов корисник со исти привилегии и ..." -#: server_privileges.php:2008 +#: server_privileges.php:2028 msgid "... keep the old one." msgstr "... сочувај го стариот." -#: server_privileges.php:2009 +#: server_privileges.php:2029 msgid " ... delete the old one from the user tables." msgstr " ... избриши ги старите од табелата на корисници." -#: server_privileges.php:2010 +#: server_privileges.php:2030 msgid "" " ... revoke all active privileges from the old one and delete it afterwards." msgstr " ... прво одземи ги сите привилегии на корисниците а потоа избриши ги." -#: server_privileges.php:2011 +#: server_privileges.php:2031 msgid "" " ... delete the old one from the user tables and reload the privileges " "afterwards." @@ -4949,44 +4990,44 @@ msgstr "" " ... избриши го стариот корисник од табелата на корисници а потоа повторно " "вчитај ги привилегиите." -#: server_privileges.php:2033 +#: server_privileges.php:2054 msgid "Database for user" msgstr "" -#: server_privileges.php:2037 +#: server_privileges.php:2058 #, fuzzy #| msgid "None" msgctxt "Create none database for user" msgid "None" msgstr "нема" -#: server_privileges.php:2038 +#: server_privileges.php:2059 msgid "Create database with same name and grant all privileges" msgstr "" -#: server_privileges.php:2039 +#: server_privileges.php:2060 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "" -#: server_privileges.php:2042 +#: server_privileges.php:2063 #, fuzzy, php-format msgid "Grant all privileges on database "%s"" msgstr "Провери привилегии за базата на податоци "%s"." -#: server_privileges.php:2065 +#: server_privileges.php:2086 #, php-format msgid "Users having access to "%s"" msgstr "Корисници кои имаат пристап "%s"" -#: server_privileges.php:2173 +#: server_privileges.php:2194 msgid "global" msgstr "глобално" -#: server_privileges.php:2175 +#: server_privileges.php:2196 msgid "database-specific" msgstr "Специфично за базата на податоци" -#: server_privileges.php:2177 +#: server_privileges.php:2198 msgid "wildcard" msgstr "џокер" @@ -7682,6 +7723,10 @@ msgstr "" msgid "Show insert query" msgstr "" +#: tbl_change.php:1143 +msgid "and then" +msgstr "" + #: tbl_change.php:1147 msgid "Go back to previous page" msgstr "Назад на претходната страница" @@ -7762,7 +7807,7 @@ msgstr "(\"PRIMARY\" може да биде име само на msgid "Add to index  %s column(s)" msgstr "Додади во клучот  %s колона(и)" -#: tbl_indexes.php:256 tbl_structure.php:589 tbl_structure.php:600 +#: tbl_indexes.php:256 tbl_structure.php:587 tbl_structure.php:598 msgid "Column count has to be larger than zero." msgstr "" @@ -7879,39 +7924,39 @@ msgstr "Провери го референцијалниот интегрите msgid "Show tables" msgstr "Прикажи табели" -#: tbl_printview.php:310 tbl_structure.php:656 +#: tbl_printview.php:310 tbl_structure.php:654 msgid "Space usage" msgstr "Големина" -#: tbl_printview.php:314 tbl_structure.php:660 +#: tbl_printview.php:314 tbl_structure.php:658 msgid "Usage" msgstr "Големина" -#: tbl_printview.php:341 tbl_structure.php:687 +#: tbl_printview.php:341 tbl_structure.php:685 msgid "Effective" msgstr "Ефективни" -#: tbl_printview.php:366 tbl_structure.php:725 +#: tbl_printview.php:366 tbl_structure.php:723 msgid "Row Statistics" msgstr "Статистики за записите" -#: tbl_printview.php:369 tbl_structure.php:728 +#: tbl_printview.php:369 tbl_structure.php:726 msgid "Statements" msgstr "Име" -#: tbl_printview.php:380 tbl_structure.php:740 +#: tbl_printview.php:380 tbl_structure.php:738 msgid "static" msgstr "" -#: tbl_printview.php:382 tbl_structure.php:742 +#: tbl_printview.php:382 tbl_structure.php:740 msgid "dynamic" msgstr "динамички" -#: tbl_printview.php:404 tbl_structure.php:785 +#: tbl_printview.php:404 tbl_structure.php:783 msgid "Row length" msgstr "Должина на запис" -#: tbl_printview.php:414 tbl_structure.php:793 +#: tbl_printview.php:414 tbl_structure.php:791 msgid " Row size " msgstr "Големина на запис" @@ -7984,50 +8029,50 @@ msgstr "нема" msgid "Column %s has been dropped" msgstr "Табелата %s е избришана" -#: tbl_structure.php:385 +#: tbl_structure.php:384 #, php-format msgid "A primary key has been added on %s" msgstr "Примарниот клуч %s е додаден" -#: tbl_structure.php:400 tbl_structure.php:414 tbl_structure.php:428 +#: tbl_structure.php:398 tbl_structure.php:412 tbl_structure.php:426 #, php-format msgid "An index has been added on %s" msgstr "Клучот е додаден %s" -#: tbl_structure.php:506 tbl_structure.php:508 +#: tbl_structure.php:504 tbl_structure.php:506 msgid "Relation view" msgstr "Релационен поглед" -#: tbl_structure.php:515 tbl_structure.php:517 +#: tbl_structure.php:513 tbl_structure.php:515 msgid "Propose table structure" msgstr "Предложи структура на табелата" -#: tbl_structure.php:540 +#: tbl_structure.php:538 #, fuzzy #| msgid "Add %s field(s)" msgid "Add column" msgstr "Додади %s полиња" -#: tbl_structure.php:554 +#: tbl_structure.php:552 msgid "At End of Table" msgstr "на крајот од табелата" -#: tbl_structure.php:555 +#: tbl_structure.php:553 msgid "At Beginning of Table" msgstr "на почетокот од табелата" -#: tbl_structure.php:556 +#: tbl_structure.php:554 #, php-format msgid "After %s" msgstr "после полето %s" -#: tbl_structure.php:594 +#: tbl_structure.php:592 #, fuzzy, php-format #| msgid "Create an index on %s columns" msgid "Create an index on  %s columns" msgstr "Направи клуч на %s колони" -#: tbl_structure.php:756 +#: tbl_structure.php:754 msgid "partitioned" msgstr "" @@ -8439,10 +8484,6 @@ msgstr "Промени го името на табелата во " #~ msgid "Process list" #~ msgstr "Листа на процеси" -#, fuzzy -#~ msgid "Reload privileges" -#~ msgstr "Глобални привилегии" - #~ msgid "" #~ "The users will still have the USAGE privilege until the privileges are " #~ "reloaded." diff --git a/po/mn.po b/po/mn.po index 2b6189088..395c8bafe 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-13 09:03-0400\n" +"POT-Creation-Date: 2010-06-22 00:55+0530\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:1514 +#: libraries/display_tbl.lib.php:417 server_privileges.php:1534 msgid "Show all" msgstr "Бүгдийг харах" -#: browse_foreigners.php:82 libraries/common.lib.php:2313 +#: browse_foreigners.php:82 libraries/common.lib.php:2317 #: 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,18 +36,18 @@ 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:2831 -#: libraries/common.lib.php:2838 libraries/db_links.inc.php:75 +#: db_structure.php:106 libraries/common.lib.php:2835 +#: libraries/common.lib.php:2842 libraries/db_links.inc.php:75 #: libraries/tbl_links.inc.php:63 msgid "Search" msgstr "Хайх" -#: browse_foreigners.php:153 db_operations.php:385 db_operations.php:429 -#: db_operations.php:499 db_operations.php:609 db_search.php:362 -#: db_structure.php:567 js/messages.php:48 libraries/Config.class.php:1046 +#: browse_foreigners.php:153 db_operations.php:394 db_operations.php:438 +#: db_operations.php:508 db_operations.php:618 db_search.php:362 +#: db_structure.php:565 js/messages.php:53 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:1335 libraries/common.lib.php:2288 +#: libraries/common.lib.php:1335 libraries/common.lib.php:2292 #: 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,15 +58,15 @@ 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:664 server_privileges.php:1624 -#: server_privileges.php:1971 server_privileges.php:2018 -#: server_privileges.php:2057 server_replication.php:235 +#: server_privileges.php:665 server_privileges.php:1644 +#: server_privileges.php:1991 server_privileges.php:2038 +#: server_privileges.php:2078 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 #: tbl_operations.php:302 tbl_operations.php:499 tbl_operations.php:561 -#: tbl_operations.php:681 tbl_select.php:327 tbl_structure.php:562 -#: tbl_structure.php:597 tbl_tracking.php:395 tbl_tracking.php:512 +#: tbl_operations.php:681 tbl_select.php:327 tbl_structure.php:560 +#: tbl_structure.php:595 tbl_tracking.php:395 tbl_tracking.php:512 #: view_create.php:182 view_operations.php:101 msgid "Go" msgstr "Яв" @@ -92,7 +92,7 @@ msgstr "Уг утгыг хэрэглэх" msgid "Database %1$s has been created." msgstr "" -#: db_datadict.php:49 db_operations.php:378 +#: db_datadict.php:49 db_operations.php:387 msgid "Database comment: " msgstr "ӨС-ийн тайлбар: " @@ -119,10 +119,10 @@ 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:2070 +#: pdf_schema.php:1263 pdf_schema.php:1284 server_privileges.php:2091 #: 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 +#: tbl_structure.php:657 tbl_tracking.php:274 tbl_tracking.php:321 msgid "Type" msgstr "Төрөл" @@ -135,7 +135,7 @@ msgstr "Төрөл" msgid "Null" msgstr "Хоосон" -#: db_datadict.php:178 db_structure.php:501 libraries/export/htmlword.php:247 +#: db_datadict.php:178 db_structure.php:499 libraries/export/htmlword.php:247 #: libraries/export/latex.php:360 libraries/export/odt.php:303 #: libraries/export/texytext.php:236 libraries/tbl_properties.inc.php:106 #: pdf_schema.php:1266 pdf_schema.php:1287 tbl_printview.php:146 @@ -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: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 +#: pdf_schema.php:1344 server_privileges.php:1588 server_privileges.php:1599 +#: server_privileges.php:1909 server_privileges.php:1914 +#: server_privileges.php:2208 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:1565 -#: server_privileges.php:1579 server_privileges.php:1889 -#: server_privileges.php:1892 server_privileges.php:2187 sql.php:193 +#: server_databases.php:64 server_privileges.php:1585 +#: server_privileges.php:1599 server_privileges.php:1909 +#: server_privileges.php:1912 server_privileges.php:2208 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" @@ -208,125 +208,121 @@ msgstr "Бүгдийг сонгох" msgid "Unselect All" msgstr "Бүх сонгосныг болих" -#: db_operations.php:38 tbl_create.php:54 +#: db_operations.php:43 tbl_create.php:54 msgid "The database name is empty!" msgstr "Өгөгдлийн сангийн нэр хоосон!" -#: db_operations.php:236 +#: db_operations.php:241 #, php-format msgid "Database %s has been renamed to %s" msgstr "ӨС %s-н нэр нь %s-ээр солигджээ" -#: db_operations.php:240 +#: db_operations.php:245 #, php-format msgid "Database %s has been copied to %s" msgstr "ӨС %s нь %s руу хуулагдлаа" -#: db_operations.php:412 +#: db_operations.php:421 msgid "Rename database to" msgstr "Өгөгдлийн санг д.нэрлэх нь" -#: db_operations.php:417 server_processlist.php:57 +#: db_operations.php:426 server_processlist.php:57 msgid "Command" msgstr "Команд" -#: db_operations.php:429 tbl_change.php:1143 -msgid "and then" -msgstr "ба тэгээд" - -#: db_operations.php:455 +#: db_operations.php:464 msgid "Copy database to" msgstr "Өгөгдлийн сан хуулах нь" -#: db_operations.php:462 tbl_operations.php:528 tbl_tracking.php:388 +#: db_operations.php:471 tbl_operations.php:528 tbl_tracking.php:388 msgid "Structure only" msgstr "Зөвхөн бүтэц" -#: db_operations.php:463 tbl_operations.php:529 tbl_tracking.php:390 +#: db_operations.php:472 tbl_operations.php:529 tbl_tracking.php:390 msgid "Structure and data" msgstr "Бүтэц ба өгөгдөл" -#: db_operations.php:464 tbl_operations.php:530 tbl_tracking.php:389 +#: db_operations.php:473 tbl_operations.php:530 tbl_tracking.php:389 msgid "Data only" msgstr "Зөвхөн өгөгдөл" -#: db_operations.php:472 +#: db_operations.php:481 msgid "CREATE DATABASE before copying" msgstr "хуулахын өмнө CREATE DATABASE" -#: db_operations.php:475 libraries/export/sql.php:52 +#: db_operations.php:484 libraries/export/sql.php:52 #: libraries/export/sql.php:74 libraries/export/sql.php:76 #: libraries/export/sql.php:82 tbl_operations.php:536 #, php-format msgid "Add %s" msgstr "Нэмэх %s" -#: db_operations.php:479 libraries/export/sql.php:78 tbl_operations.php:299 +#: db_operations.php:488 libraries/export/sql.php:78 tbl_operations.php:299 #: tbl_operations.php:538 msgid "Add AUTO_INCREMENT value" msgstr "AUTO_INCREMENT утга нэмэх" -#: db_operations.php:483 tbl_operations.php:545 +#: db_operations.php:492 tbl_operations.php:545 msgid "Add constraints" msgstr "Тогтмол нэмэх" -#: db_operations.php:496 +#: db_operations.php:505 msgid "Switch to copied database" msgstr "Хуулагдсан ӨС руу шилжих" -#: db_operations.php:537 +#: db_operations.php:546 msgid "BLOB Repository" msgstr "" -#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1352 -#: libraries/server_links.inc.php:49 server_processlist.php:59 +#: db_operations.php:549 db_tracking.php:76 libraries/common.lib.php:1352 +#: libraries/server_links.inc.php:50 server_processlist.php:59 #: tbl_tracking.php:596 test/theme.php:101 msgid "Status" msgstr "Статус" -#: db_operations.php:548 +#: db_operations.php:557 #, fuzzy #| msgid "Enabled" msgctxt "BLOB repository" msgid "Enabled" msgstr "Нээлттэй" -#: db_operations.php:552 +#: db_operations.php:561 msgid "Disable" msgstr "" -#: db_operations.php:562 +#: db_operations.php:571 msgid "Damaged" msgstr "" -#: db_operations.php:566 +#: db_operations.php:575 #, fuzzy #| msgid "Repair table" msgctxt "BLOB repository" msgid "Repair" msgstr "Хүснэгт засах" -#: db_operations.php:574 +#: db_operations.php:583 #, fuzzy #| msgid "Disabled" msgctxt "BLOB repository" msgid "Disabled" msgstr "Хаагдсан" -#: db_operations.php:578 +#: db_operations.php:587 msgid "Enable" msgstr "" -#: db_operations.php:602 libraries/Index.class.php:448 +#: db_operations.php:611 libraries/Index.class.php:448 #: libraries/db_structure.lib.php:62 libraries/mysql_charsets.lib.php:107 #: libraries/tbl_properties.inc.php:107 libraries/tbl_properties.inc.php:730 #: server_collations.php:54 server_collations.php:66 server_databases.php:111 #: tbl_operations.php:363 tbl_select.php:137 tbl_structure.php:179 -#: tbl_structure.php:767 tbl_tracking.php:275 tbl_tracking.php:326 +#: tbl_structure.php:765 tbl_tracking.php:275 tbl_tracking.php:326 msgid "Collation" msgstr "Жишилт" -#: db_operations.php:615 main.php:316 pdf_schema.php:34 +#: db_operations.php:624 main.php:316 pdf_schema.php:34 #, php-format msgid "" "The additional features for working with linked tables have been " @@ -335,14 +331,14 @@ msgstr "" "Холбогдсон хүснэгтүүдтэй ажиллах нэмэлт онцлогууд идэвхгүй болжээ. %sЭнд%s " "дарж шалгах." -#: db_operations.php:648 +#: db_operations.php:657 msgid "Edit PDF Pages" 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:1665 -#: server_privileges.php:1721 server_privileges.php:1985 +#: libraries/header.inc.php:130 pdf_pages.php:424 server_privileges.php:1685 +#: server_privileges.php:1741 server_privileges.php:2005 #: server_synchronize.php:423 server_synchronize.php:866 tbl_tracking.php:592 #: test/theme.php:75 msgid "Table" @@ -351,7 +347,7 @@ msgstr "Хүснэгт " #: db_printview.php:105 libraries/db_structure.lib.php:56 #: libraries/header_printview.inc.php:63 libraries/import.lib.php:146 #: navigation.php:638 navigation.php:660 server_databases.php:122 -#: tbl_printview.php:394 tbl_structure.php:365 tbl_structure.php:777 +#: tbl_printview.php:394 tbl_structure.php:365 tbl_structure.php:775 msgid "Rows" msgstr "Мөрүүд" @@ -359,30 +355,30 @@ msgstr "Мөрүүд" msgid "Size" msgstr "Хэмжээ" -#: db_printview.php:162 db_structure.php:457 libraries/export/sql.php:559 +#: db_printview.php:162 db_structure.php:455 libraries/export/sql.php:559 #: libraries/export/sql.php:899 msgid "in use" msgstr "хэрэглэгдэж байна" #: db_printview.php:187 libraries/db_info.inc.php:88 #: libraries/export/sql.php:514 pdf_schema.php:1241 tbl_printview.php:434 -#: tbl_structure.php:809 +#: tbl_structure.php:807 msgid "Creation" msgstr "Үүсгэлт" #: db_printview.php:196 libraries/db_info.inc.php:93 #: libraries/export/sql.php:519 pdf_schema.php:1246 tbl_printview.php:444 -#: tbl_structure.php:817 +#: tbl_structure.php:815 msgid "Last update" msgstr "Сүүлийн шинэчлэл" #: db_printview.php:205 libraries/db_info.inc.php:98 #: libraries/export/sql.php:524 pdf_schema.php:1251 tbl_printview.php:454 -#: tbl_structure.php:825 +#: tbl_structure.php:823 msgid "Last check" msgstr "Сүүлийн шалгалт" -#: db_printview.php:222 db_structure.php:480 +#: db_printview.php:222 db_structure.php:478 #, fuzzy, php-format #| msgid "%s table(s)" msgid "%s table" @@ -443,7 +439,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:297 tbl_change.php:1031 tbl_indexes.php:250 +#: server_privileges.php:298 tbl_change.php:1031 tbl_indexes.php:250 #: tbl_select.php:288 msgid "Or" msgstr "Эсвэл" @@ -516,9 +512,9 @@ 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:2833 +#: db_structure.php:105 libraries/common.lib.php:2837 #: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50 -#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:467 +#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:465 msgid "Browse" msgstr "Хөтлөх" @@ -563,36 +559,36 @@ 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:2832 libraries/sql_query_form.lib.php:334 +#: libraries/common.lib.php:2836 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:2829 libraries/common.lib.php:2836 +#: libraries/common.lib.php:2833 libraries/common.lib.php:2840 #: 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:1106 #: libraries/tbl_links.inc.php:56 pmd_general.php:134 -#: server_privileges.php:593 server_replication.php:315 tbl_tracking.php:269 +#: server_privileges.php:594 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:1656 +#: db_structure.php:543 db_structure.php:544 db_tracking.php:91 +#: libraries/Index.class.php:483 libraries/common.lib.php:1657 #: 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 -#: tbl_structure.php:152 tbl_structure.php:471 +#: tbl_structure.php:152 tbl_structure.php:469 msgid "Drop" 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:1655 +#: db_structure.php:541 db_structure.php:542 libraries/common.lib.php:1656 #: libraries/mult_submits.inc.php:39 libraries/tbl_links.inc.php:105 msgid "Empty" msgstr "Хоосон" @@ -602,111 +598,111 @@ msgstr "Хоосон" msgid "Table %s has been emptied" msgstr "Хүснэгт %s нь хоослогдлоо" -#: db_structure.php:326 libraries/tbl_links.inc.php:133 +#: db_structure.php:325 libraries/tbl_links.inc.php:133 #, php-format msgid "View %s has been dropped" msgstr "Харц %s нь устгагдсан" -#: db_structure.php:326 libraries/tbl_links.inc.php:133 +#: db_structure.php:325 libraries/tbl_links.inc.php:133 #, php-format msgid "Table %s has been dropped" msgstr "Хүснэгт %s нь устгагдлаа" -#: db_structure.php:333 +#: db_structure.php:332 msgid "Tracking is active." msgstr "" -#: db_structure.php:335 +#: db_structure.php:334 msgid "Tracking is not active." msgstr "" -#: db_structure.php:420 libraries/display_tbl.lib.php:1944 +#: db_structure.php:418 libraries/display_tbl.lib.php:1944 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation%" "s." msgstr "" -#: db_structure.php:434 db_structure.php:448 libraries/header.inc.php:126 +#: db_structure.php:432 db_structure.php:446 libraries/header.inc.php:130 #: libraries/tbl_info.inc.php:66 tbl_structure.php:185 test/theme.php:74 msgid "View" msgstr "Харц" -#: db_structure.php:485 libraries/db_structure.lib.php:49 -#: libraries/server_links.inc.php:70 server_replication.php:33 +#: db_structure.php:483 libraries/db_structure.lib.php:49 +#: libraries/server_links.inc.php:71 server_replication.php:33 #: server_replication.php:164 server_status.php:369 msgid "Replication" msgstr "Олшруулалт" -#: db_structure.php:489 +#: db_structure.php:487 msgid "Sum" msgstr "Нийт" -#: db_structure.php:496 libraries/StorageEngine.class.php:356 +#: db_structure.php:494 libraries/StorageEngine.class.php:356 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "%s нь уг MySQL сервэрийн анхдагч агуулах хөдөлгүүр байна." -#: db_structure.php:524 db_structure.php:541 db_structure.php:542 +#: db_structure.php:522 db_structure.php:539 db_structure.php:540 #: 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:1596 tbl_structure.php:455 -#: tbl_structure.php:464 +#: server_databases.php:351 server_privileges.php:1616 tbl_structure.php:453 +#: tbl_structure.php:462 msgid "With selected:" msgstr "Сонгогдсонтой:" -#: db_structure.php:527 libraries/display_tbl.lib.php:2076 -#: server_databases.php:348 server_privileges.php:569 -#: server_privileges.php:1599 tbl_structure.php:458 +#: db_structure.php:525 libraries/display_tbl.lib.php:2076 +#: server_databases.php:348 server_privileges.php:570 +#: server_privileges.php:1619 tbl_structure.php:456 msgid "Check All" msgstr "Бүгдийг чагтлах" -#: db_structure.php:531 libraries/display_tbl.lib.php:2077 +#: db_structure.php:529 libraries/display_tbl.lib.php:2077 #: libraries/replication_gui.lib.php:33 server_databases.php:350 -#: server_privileges.php:572 server_privileges.php:1603 tbl_structure.php:462 +#: server_privileges.php:573 server_privileges.php:1623 tbl_structure.php:460 msgid "Uncheck All" msgstr "Бүх чагтыг болих" -#: db_structure.php:536 +#: db_structure.php:534 msgid "Check tables having overhead" msgstr "Дээдхийг шалгах" -#: db_structure.php:547 db_structure.php:548 db_structure.php:599 +#: db_structure.php:545 db_structure.php:546 db_structure.php:597 #: libraries/display_tbl.lib.php:2180 libraries/mult_submits.inc.php:28 -#: tbl_structure.php:492 tbl_structure.php:494 +#: tbl_structure.php:490 tbl_structure.php:492 msgid "Print view" msgstr "Хэвлэхээр харах" -#: db_structure.php:549 db_structure.php:550 libraries/mult_submits.inc.php:42 +#: db_structure.php:547 db_structure.php:548 libraries/mult_submits.inc.php:42 #: tbl_operations.php:581 msgid "Check table" msgstr "Хүснэгт шалгах" -#: db_structure.php:551 db_structure.php:552 libraries/mult_submits.inc.php:47 -#: tbl_operations.php:621 tbl_structure.php:709 tbl_structure.php:711 +#: db_structure.php:549 db_structure.php:550 libraries/mult_submits.inc.php:47 +#: tbl_operations.php:621 tbl_structure.php:707 tbl_structure.php:709 msgid "Optimize table" msgstr "Хүснэгтийг зүгшрүүлэх" -#: db_structure.php:553 db_structure.php:554 libraries/mult_submits.inc.php:52 +#: db_structure.php:551 db_structure.php:552 libraries/mult_submits.inc.php:52 #: tbl_operations.php:611 msgid "Repair table" msgstr "Хүснэгт засах" -#: db_structure.php:555 db_structure.php:556 libraries/mult_submits.inc.php:57 +#: db_structure.php:553 db_structure.php:554 libraries/mult_submits.inc.php:57 #: tbl_operations.php:601 msgid "Analyze table" msgstr "Хүснэгтийг задлах" -#: db_structure.php:557 db_structure.php:558 libraries/db_links.inc.php:71 +#: db_structure.php:555 db_structure.php:556 libraries/db_links.inc.php:71 #: 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:1380 +#: libraries/server_links.inc.php:85 libraries/tbl_links.inc.php:82 +#: pmd_pdf.php:84 pmd_pdf.php:109 server_privileges.php:1397 #: setup/frames/menu.inc.php:22 tbl_row_action.php:59 msgid "Export" msgstr "Гаргах" -#: db_structure.php:606 libraries/display_pdf_schema.lib.php:44 +#: db_structure.php:604 libraries/display_pdf_schema.lib.php:44 msgid "Data Dictionary" msgstr "Өгөгдлийн толь" @@ -717,10 +713,10 @@ msgstr "" #: db_tracking.php:71 libraries/export/htmlword.php:86 #: libraries/export/latex.php:148 libraries/export/odt.php:113 #: libraries/export/sql.php:342 libraries/export/texytext.php:84 -#: libraries/export/xml.php:255 libraries/header.inc.php:106 +#: libraries/export/xml.php:255 libraries/header.inc.php:110 #: libraries/header_printview.inc.php:58 server_databases.php:169 -#: server_privileges.php:1660 server_privileges.php:1721 -#: server_privileges.php:1979 server_processlist.php:56 +#: server_privileges.php:1680 server_privileges.php:1741 +#: server_privileges.php:1999 server_processlist.php:56 #: server_synchronize.php:1179 server_synchronize.php:1183 #: tbl_tracking.php:591 test/theme.php:65 msgid "Database" @@ -740,8 +736,8 @@ msgstr "" #: db_tracking.php:77 libraries/Index.class.php:440 #: libraries/db_structure.lib.php:53 server_databases.php:203 -#: server_privileges.php:1542 server_privileges.php:1725 -#: server_privileges.php:2073 tbl_structure.php:187 +#: server_privileges.php:1562 server_privileges.php:1745 +#: server_privileges.php:2094 tbl_structure.php:187 msgid "Action" msgstr "Үйлдэл" @@ -775,8 +771,8 @@ msgstr "" msgid "Untracked tables" msgstr "" -#: db_tracking.php:172 db_tracking.php:174 tbl_structure.php:528 -#: tbl_structure.php:530 +#: db_tracking.php:172 db_tracking.php:174 tbl_structure.php:526 +#: tbl_structure.php:528 msgid "Track table" msgstr "" @@ -929,187 +925,236 @@ msgstr "Хостын нэр хоосон!" msgid "The user name is empty!" msgstr "Хэрэглэгчийн нэр хоосон!" -#: js/messages.php:44 server_privileges.php:1236 user_password.php:70 +#: js/messages.php:44 server_privileges.php:1241 user_password.php:70 msgid "The password is empty!" msgstr "Нууц үг хоосон байна!" -#: js/messages.php:45 server_privileges.php:1234 user_password.php:73 +#: js/messages.php:45 server_privileges.php:1239 user_password.php:73 msgid "The passwords aren't the same!" msgstr "Нууц їгнїїд ялгаатай байна!" -#: js/messages.php:49 pmd_general.php:342 pmd_general.php:379 +#: js/messages.php:46 +#, fuzzy +#| msgid "Add a new User" +msgid "Add a New User" +msgstr "Шинэ хэрэглэгч нэмэх" + +#: js/messages.php:47 js/messages.php:54 pmd_general.php:342 +#: pmd_general.php:379 msgid "Cancel" msgstr "Болих" -#: js/messages.php:52 pmd_save_pos.php:54 +#: js/messages.php:48 +#, fuzzy +#| msgid "Create" +msgid "Create User" +msgstr "Үүсгэх" + +#: js/messages.php:49 +#, fuzzy +#| msgid "Reload privileges" +msgid "Reloading Privileges" +msgstr "Онцгой эрхүүдийг дахин дуудах" + +#: js/messages.php:50 +#, fuzzy +#| msgid "Remove selected users" +msgid "Removing Selected Users" +msgstr "Сонгогдсон хэрэглэгчдийг хасах" + +#: js/messages.php:57 +#, fuzzy +#| msgid "Log in" +msgid "Loading" +msgstr "Нэвтрэх" + +#: js/messages.php:58 +#, fuzzy +#| msgid "Processes" +msgid "Processing Request" +msgstr "Процессууд" + +#: js/messages.php:59 +msgid "Error in Processing Request" +msgstr "" + +#: js/messages.php:60 +msgid "Dropping Column" +msgstr "" + +#: js/messages.php:61 +msgid "Adding Primary Key" +msgstr "" + +#: js/messages.php:64 pmd_save_pos.php:54 msgid "Modifications have been saved" msgstr "Өөрчлөлт хадгалагдав" -#: js/messages.php:53 pmd_relation_upd.php:49 +#: js/messages.php:65 pmd_relation_upd.php:49 msgid "Relation deleted" msgstr "Холбоо устав" -#: js/messages.php:54 pmd_relation_new.php:64 +#: js/messages.php:66 pmd_relation_new.php:64 msgid "FOREIGN KEY relation added" msgstr "" -#: js/messages.php:55 pmd_relation_new.php:86 +#: js/messages.php:67 pmd_relation_new.php:86 msgid "Internal relation added" msgstr "Дотоод холбоо нэмэгдэв" -#: js/messages.php:56 pmd_relation_new.php:63 pmd_relation_new.php:88 +#: js/messages.php:68 pmd_relation_new.php:63 pmd_relation_new.php:88 msgid "Error: Relation not added." msgstr "" -#: js/messages.php:57 pmd_relation_new.php:31 +#: js/messages.php:69 pmd_relation_new.php:31 msgid "Error: relation already exists." msgstr "" -#: js/messages.php:58 +#: js/messages.php:70 msgid "Error saving coordinates for Designer." msgstr "" -#: js/messages.php:59 libraries/relation.lib.php:107 +#: js/messages.php:71 libraries/relation.lib.php:107 #: libraries/relation.lib.php:119 msgid "General relation features" msgstr "Ерөнхий хамаатай онцлог" -#: js/messages.php:59 libraries/relation.lib.php:101 +#: js/messages.php:71 libraries/relation.lib.php:101 #: libraries/relation.lib.php:108 msgid "Disabled" msgstr "Хаагдсан" -#: js/messages.php:60 +#: js/messages.php:72 msgid "Select referenced key" msgstr "Хамаарагдсан түлхүүр сонгох" -#: js/messages.php:61 +#: js/messages.php:73 msgid "Select Foreign Key" msgstr "Гадаад түлхүүр сонгох" -#: js/messages.php:62 +#: js/messages.php:74 msgid "Please select the primary key or a unique key" msgstr "Үндсэн түлхүүр эсвэл орь ганц түлхүүр сонгон уу" -#: js/messages.php:63 pmd_general.php:77 tbl_relation.php:548 +#: js/messages.php:75 pmd_general.php:77 tbl_relation.php:548 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" msgstr "Харуулах талбарыг соль" #. l10n: Display text for calendar close link -#: js/messages.php:73 +#: js/messages.php:85 #, fuzzy #| msgid "None" msgid "Done" msgstr "Байхгүй" #. l10n: Display text for previous month link in calendar -#: js/messages.php:75 +#: js/messages.php:87 #, fuzzy #| msgid "Previous" msgid "Prev" msgstr "Өмнөх" #. l10n: Display text for next month link in calendar -#: js/messages.php:77 libraries/common.lib.php:2353 -#: libraries/common.lib.php:2356 libraries/display_tbl.lib.php:338 +#: js/messages.php:89 libraries/common.lib.php:2357 +#: libraries/common.lib.php:2360 libraries/display_tbl.lib.php:338 #: server_binlog.php:205 server_binlog.php:207 tbl_printview.php:424 -#: tbl_structure.php:801 +#: tbl_structure.php:799 msgid "Next" msgstr "Цааш" #. l10n: Display text for current month link in calendar -#: js/messages.php:79 +#: js/messages.php:91 #, fuzzy #| msgid "Total" msgid "Today" msgstr "Нийт" -#: js/messages.php:82 +#: js/messages.php:94 #, fuzzy #| msgid "Binary" msgid "January" msgstr " Хоёртын " -#: js/messages.php:83 +#: js/messages.php:95 msgid "February" msgstr "" -#: js/messages.php:84 +#: js/messages.php:96 #, fuzzy #| msgid "Mar" msgid "March" msgstr "3-р" -#: js/messages.php:85 +#: js/messages.php:97 #, fuzzy #| msgid "Apr" msgid "April" msgstr "4-р" -#: js/messages.php:86 +#: js/messages.php:98 msgid "May" msgstr "5-р" -#: js/messages.php:87 +#: js/messages.php:99 #, fuzzy #| msgid "Jun" msgid "June" msgstr "6-р" -#: js/messages.php:88 +#: js/messages.php:100 #, fuzzy #| msgid "Jul" msgid "July" msgstr "7-р" -#: js/messages.php:89 +#: js/messages.php:101 #, fuzzy #| msgid "Aug" msgid "August" msgstr "8-р" -#: js/messages.php:90 +#: js/messages.php:102 msgid "September" msgstr "" -#: js/messages.php:91 +#: js/messages.php:103 #, fuzzy #| msgid "Oct" msgid "October" msgstr "10р" -#: js/messages.php:92 +#: js/messages.php:104 msgid "November" msgstr "" -#: js/messages.php:93 +#: js/messages.php:105 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:97 libraries/common.lib.php:1557 +#: js/messages.php:109 libraries/common.lib.php:1557 msgid "Jan" msgstr "1-р" #. l10n: Short month name -#: js/messages.php:99 libraries/common.lib.php:1559 +#: js/messages.php:111 libraries/common.lib.php:1559 msgid "Feb" msgstr "2-р" #. l10n: Short month name -#: js/messages.php:101 libraries/common.lib.php:1561 +#: js/messages.php:113 libraries/common.lib.php:1561 msgid "Mar" msgstr "3-р" #. l10n: Short month name -#: js/messages.php:103 libraries/common.lib.php:1563 +#: js/messages.php:115 libraries/common.lib.php:1563 msgid "Apr" msgstr "4-р" #. l10n: Short month name -#: js/messages.php:105 libraries/common.lib.php:1565 +#: js/messages.php:117 libraries/common.lib.php:1565 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1117,176 +1162,176 @@ msgid "May" msgstr "5-р" #. l10n: Short month name -#: js/messages.php:107 libraries/common.lib.php:1567 +#: js/messages.php:119 libraries/common.lib.php:1567 msgid "Jun" msgstr "6-р" #. l10n: Short month name -#: js/messages.php:109 libraries/common.lib.php:1569 +#: js/messages.php:121 libraries/common.lib.php:1569 msgid "Jul" msgstr "7-р" #. l10n: Short month name -#: js/messages.php:111 libraries/common.lib.php:1571 +#: js/messages.php:123 libraries/common.lib.php:1571 msgid "Aug" msgstr "8-р" #. l10n: Short month name -#: js/messages.php:113 libraries/common.lib.php:1573 +#: js/messages.php:125 libraries/common.lib.php:1573 msgid "Sep" msgstr "9-р" #. l10n: Short month name -#: js/messages.php:115 libraries/common.lib.php:1575 +#: js/messages.php:127 libraries/common.lib.php:1575 msgid "Oct" msgstr "10р" #. l10n: Short month name -#: js/messages.php:117 libraries/common.lib.php:1577 +#: js/messages.php:129 libraries/common.lib.php:1577 msgid "Nov" msgstr "11р" #. l10n: Short month name -#: js/messages.php:119 libraries/common.lib.php:1579 +#: js/messages.php:131 libraries/common.lib.php:1579 msgid "Dec" msgstr "12р" -#: js/messages.php:122 +#: js/messages.php:134 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "Ня" -#: js/messages.php:123 +#: js/messages.php:135 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "Да" -#: js/messages.php:124 +#: js/messages.php:136 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "Мя" -#: js/messages.php:125 +#: js/messages.php:137 msgid "Wednesday" msgstr "" -#: js/messages.php:126 +#: js/messages.php:138 msgid "Thursday" msgstr "" -#: js/messages.php:127 +#: js/messages.php:139 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "Ба" -#: js/messages.php:128 +#: js/messages.php:140 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:132 libraries/common.lib.php:1582 +#: js/messages.php:144 libraries/common.lib.php:1582 msgid "Sun" msgstr "Ня" #. l10n: Short week day name -#: js/messages.php:134 libraries/common.lib.php:1584 +#: js/messages.php:146 libraries/common.lib.php:1584 msgid "Mon" msgstr "Да" #. l10n: Short week day name -#: js/messages.php:136 libraries/common.lib.php:1586 +#: js/messages.php:148 libraries/common.lib.php:1586 msgid "Tue" msgstr "Мя" #. l10n: Short week day name -#: js/messages.php:138 libraries/common.lib.php:1588 +#: js/messages.php:150 libraries/common.lib.php:1588 msgid "Wed" msgstr "Лх" #. l10n: Short week day name -#: js/messages.php:140 libraries/common.lib.php:1590 +#: js/messages.php:152 libraries/common.lib.php:1590 msgid "Thu" msgstr "Пү" #. l10n: Short week day name -#: js/messages.php:142 libraries/common.lib.php:1592 +#: js/messages.php:154 libraries/common.lib.php:1592 msgid "Fri" msgstr "Ба" #. l10n: Short week day name -#: js/messages.php:144 libraries/common.lib.php:1594 +#: js/messages.php:156 libraries/common.lib.php:1594 msgid "Sat" msgstr "Бя" #. l10n: Minimal week day name -#: js/messages.php:148 +#: js/messages.php:160 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "Ня" #. l10n: Minimal week day name -#: js/messages.php:150 +#: js/messages.php:162 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "Да" #. l10n: Minimal week day name -#: js/messages.php:152 +#: js/messages.php:164 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "Мя" #. l10n: Minimal week day name -#: js/messages.php:154 +#: js/messages.php:166 #, fuzzy #| msgid "Wed" msgid "We" msgstr "Лх" #. l10n: Minimal week day name -#: js/messages.php:156 +#: js/messages.php:168 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "Пү" #. l10n: Minimal week day name -#: js/messages.php:158 +#: js/messages.php:170 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "Ба" #. l10n: Minimal week day name -#: js/messages.php:160 +#: js/messages.php:172 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "Бя" #. l10n: Column header for week of the year in calendar -#: js/messages.php:162 +#: js/messages.php:174 msgid "Wk" msgstr "" -#: js/messages.php:164 +#: js/messages.php:176 msgid "Hour" msgstr "" -#: js/messages.php:165 +#: js/messages.php:177 #, fuzzy #| msgid "in use" msgid "Minute" msgstr "хэрэглэгдэж байна" -#: js/messages.php:166 +#: js/messages.php:178 #, fuzzy #| msgid "per second" msgid "Second" @@ -1343,7 +1388,7 @@ msgstr "Индексүүд" #: libraries/Index.class.php:444 libraries/mult_submits.inc.php:103 #: libraries/tbl_properties.inc.php:519 tbl_structure.php:33 -#: tbl_structure.php:155 tbl_structure.php:159 tbl_structure.php:474 +#: tbl_structure.php:155 tbl_structure.php:159 tbl_structure.php:472 #: tbl_tracking.php:322 msgid "Unique" msgstr "Үл давтагдах" @@ -1384,8 +1429,8 @@ msgid "" "removed." msgstr "" -#: libraries/List_Database.class.php:431 libraries/server_links.inc.php:41 -#: server_databases.php:88 server_privileges.php:1660 +#: libraries/List_Database.class.php:431 libraries/server_links.inc.php:42 +#: server_databases.php:88 server_privileges.php:1680 #: setup/lib/messages.inc.php:110 test/theme.php:93 msgid "Databases" msgstr "Өгөгдлийн сангууд" @@ -1553,7 +1598,7 @@ msgstr "Нууц үг:" msgid "Server Choice" msgstr "Сервэр сонго" -#: libraries/auth/cookie.auth.lib.php:320 libraries/header.inc.php:59 +#: libraries/auth/cookie.auth.lib.php:320 libraries/header.inc.php:63 msgid "Cookies must be enabled past this point." msgstr "Энэ газарт Cookies нээлттэй байх ёстой." @@ -1633,7 +1678,7 @@ msgstr "" "iconv, libiconv, recode_string өргөтгөлүүдийн алийг ч хэрэглэж чадсангүй " "(extension reports-д дуудагдах). Php тохиргоогоо шалга." -#: libraries/common.inc.php:583 +#: libraries/common.inc.php:587 msgid "" "phpMyAdmin was unable to read your configuration file!
This might " "happen if PHP finds a parse error in it or PHP cannot find the file.
$cfg['PmaAbsoluteUri'] directive MUST be set in your " "configuration file!" msgstr "" "$cfg['PmaAbsoluteUri'] -ыг тохиргооны файлд тохируулах хэрэгтэй!" -#: libraries/common.inc.php:629 +#: libraries/common.inc.php:633 #, fuzzy, php-format #| msgid "Invalid server index: \"%s\"" msgid "Invalid server index: %s" msgstr "Сервэрийн буруу индекс нь: \"%s\"" -#: libraries/common.inc.php:636 +#: libraries/common.inc.php:640 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "%1$s сервэрийн хост буруу. Өөрийн тохиргоогоо нягтална уу." -#: libraries/common.inc.php:645 libraries/header.inc.php:96 +#: libraries/common.inc.php:649 libraries/header.inc.php:100 #: libraries/select_server.lib.php:41 libraries/select_server.lib.php:47 #: main.php:185 test/theme.php:57 msgid "Server" msgstr "Сервэр" -#: libraries/common.inc.php:823 +#: libraries/common.inc.php:827 msgid "Invalid authentication method set in configuration:" msgstr "Тохиргоонд сонгогдсон буруу зөвшөөрлийн арга:" -#: libraries/common.inc.php:926 +#: libraries/common.inc.php:930 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Та хувилбар %s -г %s -ээр сайжруулах хэрэгтэй эсвэл дараа." @@ -1815,45 +1860,45 @@ msgstr "." msgid "%B %d, %Y at %I:%M %p" msgstr "%Y оны %B сарын %d., %H:%M" -#: libraries/common.lib.php:1907 +#: libraries/common.lib.php:1911 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s өдөр, %s цаг, %s минут, %s секунд" -#: libraries/common.lib.php:2322 libraries/common.lib.php:2325 +#: libraries/common.lib.php:2326 libraries/common.lib.php:2329 #: libraries/display_tbl.lib.php:290 server_status.php:719 msgid "Begin" msgstr "Эхлэл" -#: libraries/common.lib.php:2323 libraries/common.lib.php:2326 +#: libraries/common.lib.php:2327 libraries/common.lib.php:2330 #: libraries/display_tbl.lib.php:291 server_binlog.php:168 #: server_binlog.php:170 msgid "Previous" msgstr "Өмнөх" -#: libraries/common.lib.php:2354 libraries/common.lib.php:2357 +#: libraries/common.lib.php:2358 libraries/common.lib.php:2361 #: libraries/display_tbl.lib.php:353 msgid "End" msgstr "Төгс" -#: libraries/common.lib.php:2430 +#: libraries/common.lib.php:2434 #, php-format msgid "Jump to database "%s"." msgstr ""%s" өгөгдлийн сан руу үсрэх." -#: libraries/common.lib.php:2450 +#: libraries/common.lib.php:2454 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" -#: libraries/common.lib.php:2830 libraries/common.lib.php:2837 +#: libraries/common.lib.php:2834 libraries/common.lib.php:2841 #: libraries/db_links.inc.php:68 libraries/export/sql.php:25 -#: libraries/import/sql.php:18 libraries/server_links.inc.php:45 +#: libraries/import/sql.php:18 libraries/server_links.inc.php:46 #: libraries/tbl_links.inc.php:60 querywindow.php:99 test/theme.php:97 msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2839 libraries/db_links.inc.php:104 +#: libraries/common.lib.php:2843 libraries/db_links.inc.php:104 #: libraries/tbl_links.inc.php:95 libraries/tbl_links.inc.php:117 #: view_operations.php:89 msgid "Operations" @@ -1900,15 +1945,15 @@ msgstr "Асуулт (Query)" msgid "Designer" msgstr "Дизайнч" -#: libraries/db_links.inc.php:98 libraries/server_links.inc.php:88 +#: libraries/db_links.inc.php:98 libraries/server_links.inc.php:89 #: libraries/tbl_links.inc.php:91 pmd_pdf.php:84 pmd_pdf.php:110 #: setup/frames/menu.inc.php:21 msgid "Import" msgstr "Оруулах" -#: libraries/db_links.inc.php:111 libraries/server_links.inc.php:66 -#: server_privileges.php:111 server_privileges.php:1722 -#: server_privileges.php:2071 test/theme.php:117 +#: libraries/db_links.inc.php:111 libraries/server_links.inc.php:67 +#: server_privileges.php:112 server_privileges.php:1742 +#: server_privileges.php:2092 test/theme.php:117 msgid "Privileges" msgstr "Онцгой эрхүүд" @@ -1927,7 +1972,7 @@ msgid "" msgstr "May be approximate. See FAQ 3.11" #: libraries/db_structure.lib.php:69 server_databases.php:142 -#: tbl_printview.php:336 tbl_structure.php:682 +#: tbl_printview.php:336 tbl_structure.php:680 msgid "Overhead" msgstr "Толгой дээр" @@ -1944,7 +1989,7 @@ msgstr "Сервэрээс хариу алга" msgid "(or the local MySQL server's socket is not correctly configured)" msgstr "(эсвэл дотоод MySQL сервэрийн socket нь зөв тохируулагдаагүй)" -#: libraries/dbi/mysql.dbi.lib.php:362 tbl_structure.php:608 +#: libraries/dbi/mysql.dbi.lib.php:362 tbl_structure.php:606 msgid "Details..." msgstr "" @@ -1954,22 +1999,22 @@ msgid "Change password" msgstr "Нууц үг солих" #: libraries/display_change_password.lib.php:35 -#: libraries/replication_gui.lib.php:345 server_privileges.php:807 +#: libraries/replication_gui.lib.php:345 server_privileges.php:808 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:796 -#: server_privileges.php:800 server_privileges.php:811 -#: server_privileges.php:1538 server_synchronize.php:1175 +#: libraries/replication_gui.lib.php:349 server_privileges.php:797 +#: server_privileges.php:801 server_privileges.php:812 +#: server_privileges.php:1558 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:815 server_privileges.php:818 +#: server_privileges.php:816 server_privileges.php:819 msgid "Re-type" msgstr "Дахин бич" @@ -1984,12 +2029,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:822 +#: libraries/replication_gui.lib.php:360 server_privileges.php:823 msgid "Generate Password" msgstr "Нууц үг бий болгох" #: libraries/display_change_password.lib.php:75 -#: libraries/replication_gui.lib.php:363 server_privileges.php:825 +#: libraries/replication_gui.lib.php:363 server_privileges.php:826 msgid "Generate" msgstr "Бий болгох" @@ -2002,8 +2047,8 @@ msgstr "Шинэ ӨС үүсгэх" msgid "Create" msgstr "Үүсгэх" -#: libraries/display_create_database.lib.php:40 server_privileges.php:113 -#: server_privileges.php:1427 server_replication.php:35 +#: libraries/display_create_database.lib.php:40 server_privileges.php:114 +#: server_privileges.php:1447 server_replication.php:35 msgid "No Privileges" msgstr "Онцгой эрхгүй" @@ -2094,7 +2139,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:1875 server_processlist.php:75 +#: server_privileges.php:1895 server_processlist.php:75 msgid "None" msgstr "Байхгүй" @@ -2281,7 +2326,7 @@ msgstr "Түлхүүрээр эрэмбэлэх" #: libraries/import/docsql.php:34 libraries/import/ldi.php:47 #: libraries/import/ods.php:30 libraries/import/sql.php:20 #: libraries/import/xls.php:26 libraries/import/xlsx.php:26 -#: libraries/import/xml.php:25 tbl_select.php:267 tbl_structure.php:753 +#: libraries/import/xml.php:25 tbl_select.php:267 tbl_structure.php:751 msgid "Options" msgstr "Сонголтууд" @@ -2358,7 +2403,7 @@ msgstr "Асуулт нь %01.4f сек авлаа" #: libraries/display_tbl.lib.php:2089 libraries/mult_submits.inc.php:113 #: querywindow.php:125 querywindow.php:129 querywindow.php:132 -#: tbl_structure.php:25 tbl_structure.php:150 tbl_structure.php:470 +#: tbl_structure.php:25 tbl_structure.php:150 tbl_structure.php:468 msgid "Change" msgstr "Солих" @@ -2428,7 +2473,7 @@ msgstr "Буффер Pool Хэрэглээ" #: libraries/engines/innodb.lib.php:194 server_databases.php:137 #: server_databases.php:305 server_status.php:525 server_status.php:586 -#: server_status.php:607 tbl_printview.php:351 tbl_structure.php:696 +#: server_status.php:607 tbl_printview.php:351 tbl_structure.php:694 msgid "Total" msgstr "Нийт" @@ -2686,7 +2731,7 @@ msgid "" msgstr "" #: libraries/export/codegen.php:37 setup/lib/messages.inc.php:88 -#: tbl_printview.php:376 tbl_structure.php:737 +#: tbl_printview.php:376 tbl_structure.php:735 msgid "Format" msgstr "Тогтнол" @@ -2758,8 +2803,8 @@ 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:576 server_replication.php:316 tbl_printview.php:317 -#: tbl_structure.php:665 +#: server_privileges.php:577 server_replication.php:316 tbl_printview.php:317 +#: tbl_structure.php:663 msgid "Data" msgstr "Өгөгдөл" @@ -2808,9 +2853,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:731 -#: server_privileges.php:734 server_privileges.php:790 -#: server_privileges.php:1537 server_privileges.php:2069 +#: libraries/replication_gui.lib.php:329 server_privileges.php:732 +#: server_privileges.php:735 server_privileges.php:791 +#: server_privileges.php:1557 server_privileges.php:2090 #: server_processlist.php:55 server_synchronize.php:1159 msgid "Host" msgstr "Хост" @@ -3005,7 +3050,7 @@ msgstr "" msgid "Open new phpMyAdmin window" msgstr "Шинэ phpMyAdmin цонх нээх" -#: libraries/header.inc.php:115 +#: libraries/header.inc.php:119 msgid "New table" msgstr "" @@ -3163,20 +3208,20 @@ 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 +#: tbl_structure.php:471 msgid "Primary" msgstr "Үндсэн" #: libraries/mult_submits.inc.php:98 libraries/tbl_properties.inc.php:116 #: libraries/tbl_properties.inc.php:525 tbl_printview.php:326 #: tbl_structure.php:31 tbl_structure.php:154 tbl_structure.php:158 -#: tbl_structure.php:475 tbl_structure.php:673 +#: tbl_structure.php:473 tbl_structure.php:671 msgid "Index" msgstr "Индекс" #: libraries/mult_submits.inc.php:108 libraries/tbl_properties.inc.php:531 #: tbl_structure.php:35 tbl_structure.php:156 tbl_structure.php:160 -#: tbl_structure.php:478 +#: tbl_structure.php:476 msgid "Fulltext" msgstr "Бүтэнбичвэр" @@ -3478,8 +3523,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:711 -#: server_privileges.php:714 server_privileges.php:721 +#: libraries/replication_gui.lib.php:259 server_privileges.php:712 +#: server_privileges.php:715 server_privileges.php:722 #: server_synchronize.php:1171 msgid "User name" msgstr "Хэрэглэгчийн нэр" @@ -3503,7 +3548,7 @@ msgstr "Хувьсагч" #: 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 +#: tbl_structure.php:727 msgid "Value" msgstr "Утга" @@ -3521,34 +3566,34 @@ msgstr "" msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:254 server_privileges.php:716 +#: libraries/replication_gui.lib.php:254 server_privileges.php:717 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:717 -#: server_privileges.php:784 server_privileges.php:808 -#: server_privileges.php:1928 server_privileges.php:1958 +#: libraries/replication_gui.lib.php:346 server_privileges.php:718 +#: server_privileges.php:785 server_privileges.php:809 +#: server_privileges.php:1948 server_privileges.php:1978 msgid "Use text field" msgstr "Бичвэр талбар хэрэглэх" -#: libraries/replication_gui.lib.php:302 server_privileges.php:764 +#: libraries/replication_gui.lib.php:302 server_privileges.php:765 msgid "Any host" msgstr "Дурын хост" -#: libraries/replication_gui.lib.php:306 server_privileges.php:768 +#: libraries/replication_gui.lib.php:306 server_privileges.php:769 msgid "Local" msgstr "Local" -#: libraries/replication_gui.lib.php:312 server_privileges.php:773 +#: libraries/replication_gui.lib.php:312 server_privileges.php:774 msgid "This Host" msgstr "Энэ хост" -#: libraries/replication_gui.lib.php:318 server_privileges.php:779 +#: libraries/replication_gui.lib.php:318 server_privileges.php:780 msgid "Use Host Table" msgstr "Хост хүснэгт хэрэглэх" -#: libraries/replication_gui.lib.php:331 server_privileges.php:792 +#: libraries/replication_gui.lib.php:331 server_privileges.php:793 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -3582,29 +3627,29 @@ msgstr "Үл мэдэгдэх хэл: %1$s." msgid "Servers" msgstr "Сервэрүүд" -#: libraries/server_links.inc.php:53 server_engines.php:112 +#: libraries/server_links.inc.php:54 server_engines.php:112 #: server_engines.php:116 server_status.php:415 test/theme.php:105 msgid "Variables" msgstr "Утгууд" -#: libraries/server_links.inc.php:57 test/theme.php:109 +#: libraries/server_links.inc.php:58 test/theme.php:109 msgid "Charsets" msgstr "Кодлолууд" -#: libraries/server_links.inc.php:61 test/theme.php:113 +#: libraries/server_links.inc.php:62 test/theme.php:113 msgid "Engines" msgstr "Хөдөлгүүрүүд" -#: libraries/server_links.inc.php:76 server_binlog.php:110 +#: libraries/server_links.inc.php:77 server_binlog.php:110 #: server_status.php:364 test/theme.php:121 msgid "Binary log" msgstr "Хоёртын log" -#: libraries/server_links.inc.php:80 +#: libraries/server_links.inc.php:81 msgid "Processes" msgstr "Процессууд" -#: libraries/server_links.inc.php:92 server_synchronize.php:1092 +#: libraries/server_links.inc.php:93 server_synchronize.php:1092 #: server_synchronize.php:1100 msgid "Synchronize" msgstr "" @@ -3850,13 +3895,13 @@ msgstr "" msgid "Save" msgstr "Хадгалах" -#: libraries/tbl_properties.inc.php:780 tbl_structure.php:542 +#: libraries/tbl_properties.inc.php:780 tbl_structure.php:540 #, fuzzy, php-format #| msgid "Add %s field(s)" msgid "Add %s column(s)" msgstr "%s талбар(ууд) нэмэх" -#: libraries/tbl_properties.inc.php:784 tbl_structure.php:536 +#: libraries/tbl_properties.inc.php:784 tbl_structure.php:534 #, fuzzy #| msgid "You have to add at least one field." msgid "You have to add at least one column." @@ -4049,8 +4094,8 @@ msgstr "Да.эхлэх" msgid "Protocol version" msgstr "Протоколын хувилбар" -#: main.php:189 server_privileges.php:1389 server_privileges.php:1536 -#: server_privileges.php:1650 server_privileges.php:2068 +#: main.php:189 server_privileges.php:1406 server_privileges.php:1556 +#: server_privileges.php:1670 server_privileges.php:2089 #: server_processlist.php:54 msgid "User" msgstr "Хэрэглэгч" @@ -4484,113 +4529,113 @@ msgstr "Агуулах хөдөлгүүрүүд" msgid "View dump (schema) of databases" msgstr "ӨС-ийн схем харах" -#: server_privileges.php:24 server_privileges.php:266 +#: server_privileges.php:25 server_privileges.php:267 msgid "Includes all privileges except GRANT." msgstr "Includes all privileges except GRANT." -#: server_privileges.php:25 server_privileges.php:192 -#: server_privileges.php:515 +#: server_privileges.php:26 server_privileges.php:193 +#: server_privileges.php:516 msgid "Allows altering the structure of existing tables." msgstr "Байгаа хүснэгтийн бүтцийг өөрчлөхийг зөвшөөрөх." -#: server_privileges.php:26 server_privileges.php:208 -#: server_privileges.php:521 +#: server_privileges.php:27 server_privileges.php:209 +#: server_privileges.php:522 msgid "Allows altering and dropping stored routines." msgstr "Хадгалагдсан заншил устгах, өөрчлөхийг зөвшөөрөх." -#: server_privileges.php:27 server_privileges.php:184 -#: server_privileges.php:514 +#: server_privileges.php:28 server_privileges.php:185 +#: server_privileges.php:515 msgid "Allows creating new databases and tables." msgstr "Шинэ өгөгдлийн сан, хүснэгт үүсгэхийг зөвшөөрөх." -#: server_privileges.php:28 server_privileges.php:207 -#: server_privileges.php:520 +#: server_privileges.php:29 server_privileges.php:208 +#: server_privileges.php:521 msgid "Allows creating stored routines." msgstr "Хадгалагдсан заншил үүсгэхийг зөвшөөрөх." -#: server_privileges.php:29 server_privileges.php:514 +#: server_privileges.php:30 server_privileges.php:515 msgid "Allows creating new tables." msgstr "Шинэ хүснэгт үүсгэхийг зөвшөөрөх." -#: server_privileges.php:30 server_privileges.php:195 -#: server_privileges.php:518 +#: server_privileges.php:31 server_privileges.php:196 +#: server_privileges.php:519 msgid "Allows creating temporary tables." msgstr "Завсрын хүснэгт үүсгэхийг зөвшөөрөх." -#: server_privileges.php:31 server_privileges.php:209 -#: server_privileges.php:554 +#: server_privileges.php:32 server_privileges.php:210 +#: server_privileges.php:555 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 +#: server_privileges.php:33 server_privileges.php:200 +#: server_privileges.php:204 server_privileges.php:527 +#: server_privileges.php:531 msgid "Allows creating new views." msgstr "Шинэ харц үүсгэхийг зөвшөөрөх." -#: server_privileges.php:33 server_privileges.php:183 -#: server_privileges.php:506 +#: server_privileges.php:34 server_privileges.php:184 +#: server_privileges.php:507 msgid "Allows deleting data." msgstr "Өгөгдөл устгахыг зөвшөөрөх." -#: server_privileges.php:34 server_privileges.php:185 -#: server_privileges.php:517 +#: server_privileges.php:35 server_privileges.php:186 +#: server_privileges.php:518 msgid "Allows dropping databases and tables." msgstr "ӨС, хүснэгт устгахыг зөвшөөрөх " -#: server_privileges.php:35 server_privileges.php:517 +#: server_privileges.php:36 server_privileges.php:518 msgid "Allows dropping tables." msgstr "Хүснэгт устгахыг зөвшөөрөх." -#: server_privileges.php:36 server_privileges.php:200 -#: server_privileges.php:534 +#: server_privileges.php:37 server_privileges.php:201 +#: server_privileges.php:535 msgid "Allows to set up events for the event scheduler" msgstr "" -#: server_privileges.php:37 server_privileges.php:210 -#: server_privileges.php:522 +#: server_privileges.php:38 server_privileges.php:211 +#: server_privileges.php:523 msgid "Allows executing stored routines." msgstr "Хадгалагдсан заншлыг ажиллуулахыг зөвшөөрөх." -#: server_privileges.php:38 server_privileges.php:189 -#: server_privileges.php:509 +#: server_privileges.php:39 server_privileges.php:190 +#: server_privileges.php:510 msgid "Allows importing data from and exporting data into files." msgstr "Өгөгдөл оруулах, файл руу гаргахыг зөвшөөрөх." -#: server_privileges.php:39 server_privileges.php:540 +#: server_privileges.php:40 server_privileges.php:541 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "Хэрэглэгч болон онцгой эрхийг онцгой эрхийн хүснэгтийг дуудалгүй нэмэхийг " "зөвшөөрөх." -#: server_privileges.php:40 server_privileges.php:191 -#: server_privileges.php:516 +#: server_privileges.php:41 server_privileges.php:192 +#: server_privileges.php:517 msgid "Allows creating and dropping indexes." msgstr "Индекс үүсгэх, устгахыг зөвшөөрөх." -#: server_privileges.php:41 server_privileges.php:181 -#: server_privileges.php:442 server_privileges.php:504 +#: server_privileges.php:42 server_privileges.php:182 +#: server_privileges.php:443 server_privileges.php:505 msgid "Allows inserting and replacing data." msgstr "Өгөгдөл нэмэх, солихыг зөвшөөрөх." -#: server_privileges.php:42 server_privileges.php:196 -#: server_privileges.php:549 +#: server_privileges.php:43 server_privileges.php:197 +#: server_privileges.php:550 msgid "Allows locking tables for the current thread." msgstr "Тухайн процесст хүснэгт түгжихийг зөвшөөрөх." -#: server_privileges.php:43 server_privileges.php:646 -#: server_privileges.php:648 +#: server_privileges.php:44 server_privileges.php:647 +#: server_privileges.php:649 msgid "Limits the number of new connections the user may open per hour." msgstr "Цаг тутамд шинээр холбогдох хэрэглэгчийн тоог хязгаарлах." -#: server_privileges.php:44 server_privileges.php:634 -#: server_privileges.php:636 +#: server_privileges.php:45 server_privileges.php:635 +#: server_privileges.php:637 msgid "Limits the number of queries the user may send to the server per hour." msgstr "Цаг тутамд хэрэглэгчийн асуулт (query) илгээхийг хязгаарлах." -#: server_privileges.php:45 server_privileges.php:640 -#: server_privileges.php:642 +#: server_privileges.php:46 server_privileges.php:641 +#: server_privileges.php:643 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -4598,58 +4643,58 @@ msgstr "" "Цаг тутамд хэрэглэгчийн хүснэгт эсвэл өгөгдлийн сан солих командыг " "хязгаарлах." -#: server_privileges.php:46 server_privileges.php:652 -#: server_privileges.php:654 +#: server_privileges.php:47 server_privileges.php:653 +#: server_privileges.php:655 msgid "Limits the number of simultaneous connections the user may have." msgstr "Хэрэглэгчдэд байх зэрэг холболтын хязгаарлах тоо." -#: server_privileges.php:47 server_privileges.php:188 -#: server_privileges.php:544 +#: server_privileges.php:48 server_privileges.php:189 +#: server_privileges.php:545 msgid "Allows viewing processes of all users" msgstr "" -#: server_privileges.php:48 server_privileges.php:190 -#: server_privileges.php:448 server_privileges.php:550 +#: server_privileges.php:49 server_privileges.php:191 +#: server_privileges.php:449 server_privileges.php:551 msgid "Has no effect in this MySQL version." msgstr "MySQL-ын энэ хувилбарт үйлчлэлгүй." -#: server_privileges.php:49 server_privileges.php:186 -#: server_privileges.php:545 +#: server_privileges.php:50 server_privileges.php:187 +#: server_privileges.php:546 msgid "Allows reloading server settings and flushing the server's caches." msgstr "Сервэрийн тохиргоог дахин дуудахыг зөвшөөрөх." -#: server_privileges.php:50 server_privileges.php:198 -#: server_privileges.php:552 +#: server_privileges.php:51 server_privileges.php:199 +#: server_privileges.php:553 msgid "Allows the user to ask where the slaves / masters are." msgstr "Gives the right to the user to ask where the slaves / masters are." -#: server_privileges.php:51 server_privileges.php:197 -#: server_privileges.php:553 +#: server_privileges.php:52 server_privileges.php:198 +#: server_privileges.php:554 msgid "Needed for the replication slaves." msgstr "Needed for the replication slaves." -#: server_privileges.php:52 server_privileges.php:180 -#: server_privileges.php:439 server_privileges.php:503 +#: server_privileges.php:53 server_privileges.php:181 +#: server_privileges.php:440 server_privileges.php:504 msgid "Allows reading data." msgstr "Өгөгдөл уншихыг зөвшөөрөх." -#: server_privileges.php:53 server_privileges.php:193 -#: server_privileges.php:547 +#: server_privileges.php:54 server_privileges.php:194 +#: server_privileges.php:548 msgid "Gives access to the complete list of databases." msgstr "Өгөгдлийн сангийн бүрэн жагсаалт руу хандахыг өгөх." -#: server_privileges.php:54 server_privileges.php:204 -#: server_privileges.php:206 server_privileges.php:519 +#: server_privileges.php:55 server_privileges.php:205 +#: server_privileges.php:207 server_privileges.php:520 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "SHOW CREATE VIEW асуултыг хийхийг зөвшөөрөх." -#: server_privileges.php:55 server_privileges.php:187 -#: server_privileges.php:546 +#: server_privileges.php:56 server_privileges.php:188 +#: server_privileges.php:547 msgid "Allows shutting down the server." msgstr "Сервэрийг унтраахыг зөвшөөрөх." -#: server_privileges.php:56 server_privileges.php:194 -#: server_privileges.php:543 +#: server_privileges.php:57 server_privileges.php:195 +#: server_privileges.php:544 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -4658,158 +4703,158 @@ msgstr "" "Хэрэв ХИ холболтын тоо гүйцсэн ч холбогдохыг зөвшөөрөх. Бусад хэрэглэгчийн " "процессыг үгүй хийх эсвэл глобал утгыг өөрчлөх шаардлагатай болно." -#: server_privileges.php:57 server_privileges.php:201 -#: server_privileges.php:535 +#: server_privileges.php:58 server_privileges.php:202 +#: server_privileges.php:536 msgid "Allows creating and dropping triggers" msgstr "" -#: server_privileges.php:58 server_privileges.php:182 -#: server_privileges.php:445 server_privileges.php:505 +#: server_privileges.php:59 server_privileges.php:183 +#: server_privileges.php:446 server_privileges.php:506 msgid "Allows changing data." msgstr "Өгөгдөл солихыг зөвшөөрөх." -#: server_privileges.php:59 server_privileges.php:260 +#: server_privileges.php:60 server_privileges.php:261 msgid "No privileges." msgstr "Онцгой эрхгүй." -#: server_privileges.php:302 server_privileges.php:303 +#: server_privileges.php:303 server_privileges.php:304 #, fuzzy #| msgid "None" msgctxt "None privileges" msgid "None" msgstr "Байхгүй" -#: server_privileges.php:431 server_privileges.php:566 -#: server_privileges.php:1718 server_privileges.php:1724 +#: server_privileges.php:432 server_privileges.php:567 +#: server_privileges.php:1738 server_privileges.php:1744 msgid "Table-specific privileges" msgstr " Хүснэгтийн тусгай онцгой эрхүүд" -#: server_privileges.php:432 server_privileges.php:574 -#: server_privileges.php:1540 +#: server_privileges.php:433 server_privileges.php:575 +#: server_privileges.php:1560 msgid " Note: MySQL privilege names are expressed in English " msgstr " Тэмдэглэл: MySQL онцгой эрхийн нэр нь англиар илэрхийлэгдсэн " -#: server_privileges.php:563 server_privileges.php:1539 +#: server_privileges.php:564 server_privileges.php:1559 msgid "Global privileges" msgstr "Глобал онцгой эрх" -#: server_privileges.php:565 server_privileges.php:1718 +#: server_privileges.php:566 server_privileges.php:1738 msgid "Database-specific privileges" msgstr " Онцгой эрх, өгөгдлийн сангийн эрх" -#: server_privileges.php:610 +#: server_privileges.php:611 msgid "Administration" msgstr "Зохион байгуулалт" -#: server_privileges.php:630 +#: server_privileges.php:631 msgid "Resource limits" msgstr "Нөөцийн хязгаар" -#: server_privileges.php:631 +#: server_privileges.php:632 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "Тэмдэглэл: Тохируулгын сонголтыг 0 (тэг) болговол хязгаарыг хасна." -#: server_privileges.php:708 +#: server_privileges.php:709 msgid "Login Information" msgstr "Нэвтрэх мэдээлэл" -#: server_privileges.php:802 +#: server_privileges.php:803 msgid "Do not change the password" msgstr "Нууц үгийг солихгүй" -#: server_privileges.php:843 server_privileges.php:2205 +#: server_privileges.php:844 server_privileges.php:2226 #, fuzzy #| msgid "No user(s) found." msgid "No user found." msgstr "Хэрэглэгч олдсонгүй." -#: server_privileges.php:887 +#: server_privileges.php:888 #, php-format msgid "The user %s already exists!" msgstr "Хэрэглэгч %s оршин байна!" -#: server_privileges.php:970 +#: server_privileges.php:971 msgid "You have added a new user." msgstr "Шинэ хэрэглэгч нэмэгдлээ." -#: server_privileges.php:1191 +#: server_privileges.php:1196 #, fuzzy, php-format msgid "You have updated the privileges for %s." msgstr "Онцгой эрх шинэчлэгдлээ" -#: server_privileges.php:1215 +#: server_privileges.php:1220 #, php-format msgid "You have revoked the privileges for %s" msgstr "Онцгой эрх %s -ыг хүчингүй болголоо" -#: server_privileges.php:1251 +#: server_privileges.php:1256 #, php-format msgid "The password for %s was changed successfully." msgstr "%s-ы нууц үг солигдлоо." -#: server_privileges.php:1271 +#: server_privileges.php:1276 #, php-format msgid "Deleting %s" msgstr "%s-г устгаж байна" -#: server_privileges.php:1282 +#: server_privileges.php:1287 msgid "No users selected for deleting!" msgstr "Устгахаар хэрэглэгч сонгогдсонгүй!" -#: server_privileges.php:1285 +#: server_privileges.php:1290 msgid "Reloading the privileges" msgstr "Онцгой эрхийг дахин дуудаж байна" -#: server_privileges.php:1300 +#: server_privileges.php:1305 msgid "The selected users have been deleted successfully." msgstr "Сонгогдсон хэрэглэгч устгагдлаа." -#: server_privileges.php:1335 +#: server_privileges.php:1344 msgid "The privileges were reloaded successfully." msgstr "Онцгой эрхүүд дахин дуудагдлаа." -#: server_privileges.php:1363 server_privileges.php:1649 +#: server_privileges.php:1380 server_privileges.php:1669 msgid "Edit Privileges" msgstr "Онцгой эрхүүдийг засах" -#: server_privileges.php:1372 +#: server_privileges.php:1389 msgid "Revoke" msgstr "Хүчингүй" -#: server_privileges.php:1404 +#: server_privileges.php:1424 msgid "User overview" msgstr "User overview" -#: server_privileges.php:1541 server_privileges.php:1723 -#: server_privileges.php:2072 +#: server_privileges.php:1561 server_privileges.php:1743 +#: server_privileges.php:2093 msgid "Grant" msgstr "Хандив" -#: server_privileges.php:1560 server_privileges.php:2162 +#: server_privileges.php:1580 server_privileges.php:2183 msgid "Any" msgstr "Дурын" -#: server_privileges.php:1609 server_privileges.php:1633 -#: server_privileges.php:2027 server_privileges.php:2216 +#: server_privileges.php:1629 server_privileges.php:1653 +#: server_privileges.php:2048 server_privileges.php:2237 msgid "Add a new User" msgstr "Шинэ хэрэглэгч нэмэх" -#: server_privileges.php:1614 +#: server_privileges.php:1634 msgid "Remove selected users" msgstr "Сонгогдсон хэрэглэгчдийг хасах" -#: server_privileges.php:1617 +#: server_privileges.php:1637 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 +#: server_privileges.php:1638 server_privileges.php:1639 +#: server_privileges.php:1640 msgid "Drop the databases that have the same names as the users." msgstr "Хэрэглэгчтэй адил нэртэй өгөгдлийн санг устгах." -#: server_privileges.php:1636 +#: server_privileges.php:1656 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -4822,48 +4867,48 @@ msgstr "" "агуулга нь сервэрт хэрэглэгдэж буйгаас өөр байна. Энэ тохиолдолд %sдахин " "дуудаж%s үргэлжлүүлнэ үү." -#: server_privileges.php:1684 +#: server_privileges.php:1704 msgid "The selected user was not found in the privilege table." msgstr "Сонгогдсон хэрэглэгч онцгой эрхийн хүснэгтэд алга байна." -#: server_privileges.php:1724 +#: server_privileges.php:1744 msgid "Column-specific privileges" msgstr "Онцгой эрх, баганын эрх" -#: server_privileges.php:1925 +#: server_privileges.php:1945 msgid "Add privileges on the following database" msgstr "Дараах өгөгдлийн санд онцгой эрх нэмэх" -#: server_privileges.php:1943 +#: server_privileges.php:1963 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" -#: server_privileges.php:1946 +#: server_privileges.php:1966 msgid "Add privileges on the following table" msgstr "Дараах хүснэгтэд онцгой эрх нэмэх" -#: server_privileges.php:2003 +#: server_privileges.php:2023 msgid "Change Login Information / Copy User" msgstr "Нэвтрэх мэдээллийг солих/ Хэрэглэгч хуулах" -#: server_privileges.php:2006 +#: server_privileges.php:2026 msgid "Create a new user with the same privileges and ..." msgstr "Адил онцгой эрхтэй хэрэглэгч үүсгэх ба ..." -#: server_privileges.php:2008 +#: server_privileges.php:2028 msgid "... keep the old one." msgstr "... хуучныг үлдээх." -#: server_privileges.php:2009 +#: server_privileges.php:2029 msgid " ... delete the old one from the user tables." msgstr " ... хэрэглэгчийн хүснэгтүүдээс устгах." -#: server_privileges.php:2010 +#: server_privileges.php:2030 msgid "" " ... revoke all active privileges from the old one and delete it afterwards." msgstr " ... хуучнаас бүх онцгой эрхийг хүчингүй болгоод дараа нь устга." -#: server_privileges.php:2011 +#: server_privileges.php:2031 msgid "" " ... delete the old one from the user tables and reload the privileges " "afterwards." @@ -4871,44 +4916,44 @@ msgstr "" " ... хэрэглэгчийн хүснэгтүүдээс нэгийг устгаад дараа нь онцгой эрхийг дахин " "дууд." -#: server_privileges.php:2033 +#: server_privileges.php:2054 msgid "Database for user" msgstr "Хэрэглэгчийн өгөгдлийн сан" -#: server_privileges.php:2037 +#: server_privileges.php:2058 #, fuzzy #| msgid "None" msgctxt "Create none database for user" msgid "None" msgstr "Байхгүй" -#: server_privileges.php:2038 +#: server_privileges.php:2059 msgid "Create database with same name and grant all privileges" msgstr "" -#: server_privileges.php:2039 +#: server_privileges.php:2060 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "" -#: server_privileges.php:2042 +#: server_privileges.php:2063 #, php-format msgid "Grant all privileges on database "%s"" msgstr "" -#: server_privileges.php:2065 +#: server_privileges.php:2086 #, php-format msgid "Users having access to "%s"" msgstr "Хэрэглэгчдийн хандсан нь "%s"" -#: server_privileges.php:2173 +#: server_privileges.php:2194 msgid "global" msgstr "global" -#: server_privileges.php:2175 +#: server_privileges.php:2196 msgid "database-specific" msgstr "Өгөгдлийн сангийн эрх" -#: server_privileges.php:2177 +#: server_privileges.php:2198 msgid "wildcard" msgstr "загвар" @@ -7609,6 +7654,10 @@ msgstr "" msgid "Show insert query" msgstr "" +#: tbl_change.php:1143 +msgid "and then" +msgstr "ба тэгээд" + #: tbl_change.php:1147 msgid "Go back to previous page" msgstr "Буцах" @@ -7690,7 +7739,7 @@ msgstr "" msgid "Add to index  %s column(s)" msgstr "Индекст нэмэх %s багана(ууд)" -#: tbl_indexes.php:256 tbl_structure.php:589 tbl_structure.php:600 +#: tbl_indexes.php:256 tbl_structure.php:587 tbl_structure.php:598 msgid "Column count has to be larger than zero." msgstr "Баганы тоо тэгээс их байна." @@ -7804,39 +7853,39 @@ msgstr "Үнэн зөв өгөгдлийг шалгах:" msgid "Show tables" msgstr "Хүснэгтүүдийг харуулах" -#: tbl_printview.php:310 tbl_structure.php:656 +#: tbl_printview.php:310 tbl_structure.php:654 msgid "Space usage" msgstr "Ашиглалтын зай" -#: tbl_printview.php:314 tbl_structure.php:660 +#: tbl_printview.php:314 tbl_structure.php:658 msgid "Usage" msgstr "Ашиглалт" -#: tbl_printview.php:341 tbl_structure.php:687 +#: tbl_printview.php:341 tbl_structure.php:685 msgid "Effective" msgstr "Эффекттэй" -#: tbl_printview.php:366 tbl_structure.php:725 +#: tbl_printview.php:366 tbl_structure.php:723 msgid "Row Statistics" msgstr "Мөрийн статистик" -#: tbl_printview.php:369 tbl_structure.php:728 +#: tbl_printview.php:369 tbl_structure.php:726 msgid "Statements" msgstr "Баримтжуулал" -#: tbl_printview.php:380 tbl_structure.php:740 +#: tbl_printview.php:380 tbl_structure.php:738 msgid "static" msgstr "" -#: tbl_printview.php:382 tbl_structure.php:742 +#: tbl_printview.php:382 tbl_structure.php:740 msgid "dynamic" msgstr "динамик" -#: tbl_printview.php:404 tbl_structure.php:785 +#: tbl_printview.php:404 tbl_structure.php:783 msgid "Row length" msgstr "Мөрийн урт" -#: tbl_printview.php:414 tbl_structure.php:793 +#: tbl_printview.php:414 tbl_structure.php:791 msgid " Row size " msgstr " Мөрийн хэмжээ " @@ -7908,50 +7957,50 @@ msgstr "Байхгүй" msgid "Column %s has been dropped" msgstr "Хүснэгт %s нь устгагдлаа" -#: tbl_structure.php:385 +#: tbl_structure.php:384 #, php-format msgid "A primary key has been added on %s" msgstr "%s-д үндсэн түлхүүр нэмэгдлээ" -#: tbl_structure.php:400 tbl_structure.php:414 tbl_structure.php:428 +#: tbl_structure.php:398 tbl_structure.php:412 tbl_structure.php:426 #, php-format msgid "An index has been added on %s" msgstr "%s-д индекс нэмэгдсэн байна" -#: tbl_structure.php:506 tbl_structure.php:508 +#: tbl_structure.php:504 tbl_structure.php:506 msgid "Relation view" msgstr "Хамаарал харах" -#: tbl_structure.php:515 tbl_structure.php:517 +#: tbl_structure.php:513 tbl_structure.php:515 msgid "Propose table structure" msgstr "Хүснэгтийн бүтцийг таниулах" -#: tbl_structure.php:540 +#: tbl_structure.php:538 #, fuzzy #| msgid "Add %s field(s)" msgid "Add column" msgstr "%s талбар(ууд) нэмэх" -#: tbl_structure.php:554 +#: tbl_structure.php:552 msgid "At End of Table" msgstr "Хүснэгтийн төгсгөлд" -#: tbl_structure.php:555 +#: tbl_structure.php:553 msgid "At Beginning of Table" msgstr "Хүснэгтийн эхэнд" -#: tbl_structure.php:556 +#: tbl_structure.php:554 #, php-format msgid "After %s" msgstr "%s-ы дараа" -#: tbl_structure.php:594 +#: tbl_structure.php:592 #, fuzzy, php-format #| msgid "Create an index on %s columns" msgid "Create an index on  %s columns" msgstr " %s багануудад индекс үүсгэх" -#: tbl_structure.php:756 +#: tbl_structure.php:754 msgid "partitioned" msgstr "" @@ -8331,9 +8380,6 @@ msgstr "" #~ msgid "Process list" #~ msgstr "Процессын жагсаалт" -#~ msgid "Reload privileges" -#~ msgstr "Онцгой эрхүүдийг дахин дуудах" - #~ msgid "" #~ "The users will still have the USAGE privilege until the privileges are " #~ "reloaded." diff --git a/po/ms.po b/po/ms.po index d52c0a646..735fe2b33 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-13 09:03-0400\n" +"POT-Creation-Date: 2010-06-22 00:55+0530\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:1514 +#: libraries/display_tbl.lib.php:417 server_privileges.php:1534 msgid "Show all" msgstr "Papar semua" -#: browse_foreigners.php:82 libraries/common.lib.php:2313 +#: browse_foreigners.php:82 libraries/common.lib.php:2317 #: 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,18 +34,18 @@ 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:2831 -#: libraries/common.lib.php:2838 libraries/db_links.inc.php:75 +#: db_structure.php:106 libraries/common.lib.php:2835 +#: libraries/common.lib.php:2842 libraries/db_links.inc.php:75 #: libraries/tbl_links.inc.php:63 msgid "Search" msgstr "Cari" -#: browse_foreigners.php:153 db_operations.php:385 db_operations.php:429 -#: db_operations.php:499 db_operations.php:609 db_search.php:362 -#: db_structure.php:567 js/messages.php:48 libraries/Config.class.php:1046 +#: browse_foreigners.php:153 db_operations.php:394 db_operations.php:438 +#: db_operations.php:508 db_operations.php:618 db_search.php:362 +#: db_structure.php:565 js/messages.php:53 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:1335 libraries/common.lib.php:2288 +#: libraries/common.lib.php:1335 libraries/common.lib.php:2292 #: 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,15 +56,15 @@ 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:664 server_privileges.php:1624 -#: server_privileges.php:1971 server_privileges.php:2018 -#: server_privileges.php:2057 server_replication.php:235 +#: server_privileges.php:665 server_privileges.php:1644 +#: server_privileges.php:1991 server_privileges.php:2038 +#: server_privileges.php:2078 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 #: tbl_operations.php:302 tbl_operations.php:499 tbl_operations.php:561 -#: tbl_operations.php:681 tbl_select.php:327 tbl_structure.php:562 -#: tbl_structure.php:597 tbl_tracking.php:395 tbl_tracking.php:512 +#: tbl_operations.php:681 tbl_select.php:327 tbl_structure.php:560 +#: tbl_structure.php:595 tbl_tracking.php:395 tbl_tracking.php:512 #: view_create.php:182 view_operations.php:101 msgid "Go" msgstr "Pergi" @@ -91,7 +91,7 @@ msgstr "" msgid "Database %1$s has been created." msgstr "angkalan data %s telah digugurkan." -#: db_datadict.php:49 db_operations.php:378 +#: db_datadict.php:49 db_operations.php:387 #, fuzzy msgid "Database comment: " msgstr "Komen jadual" @@ -119,10 +119,10 @@ 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:2070 +#: pdf_schema.php:1263 pdf_schema.php:1284 server_privileges.php:2091 #: 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 +#: tbl_structure.php:657 tbl_tracking.php:274 tbl_tracking.php:321 msgid "Type" msgstr "Jenis" @@ -135,7 +135,7 @@ msgstr "Jenis" msgid "Null" msgstr "Null" -#: db_datadict.php:178 db_structure.php:501 libraries/export/htmlword.php:247 +#: db_datadict.php:178 db_structure.php:499 libraries/export/htmlword.php:247 #: libraries/export/latex.php:360 libraries/export/odt.php:303 #: libraries/export/texytext.php:236 libraries/tbl_properties.inc.php:106 #: pdf_schema.php:1266 pdf_schema.php:1287 tbl_printview.php:146 @@ -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: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 +#: pdf_schema.php:1344 server_privileges.php:1588 server_privileges.php:1599 +#: server_privileges.php:1909 server_privileges.php:1914 +#: server_privileges.php:2208 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:1565 -#: server_privileges.php:1579 server_privileges.php:1889 -#: server_privileges.php:1892 server_privileges.php:2187 sql.php:193 +#: server_databases.php:64 server_privileges.php:1585 +#: server_privileges.php:1599 server_privileges.php:1909 +#: server_privileges.php:1912 server_privileges.php:2208 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" @@ -208,129 +208,125 @@ msgstr "Sila pilih pangkalan data" msgid "Unselect All" msgstr "Nyahpilih Semua" -#: db_operations.php:38 tbl_create.php:54 +#: db_operations.php:43 tbl_create.php:54 #, fuzzy msgid "The database name is empty!" msgstr "Nama jadual adalah kosong" -#: db_operations.php:236 +#: db_operations.php:241 #, fuzzy, php-format msgid "Database %s has been renamed to %s" msgstr "Jadual %s telah ditukarnama ke %s" -#: db_operations.php:240 +#: db_operations.php:245 #, fuzzy, php-format msgid "Database %s has been copied to %s" msgstr "Jadual %s telah disalin ke %s." -#: db_operations.php:412 +#: db_operations.php:421 #, fuzzy msgid "Rename database to" msgstr "Tukarnama jadual ke" -#: db_operations.php:417 server_processlist.php:57 +#: db_operations.php:426 server_processlist.php:57 msgid "Command" msgstr "Arahan" -#: db_operations.php:429 tbl_change.php:1143 -msgid "and then" -msgstr "" - -#: db_operations.php:455 +#: db_operations.php:464 #, fuzzy msgid "Copy database to" msgstr "Tiada pangkalan data" -#: db_operations.php:462 tbl_operations.php:528 tbl_tracking.php:388 +#: db_operations.php:471 tbl_operations.php:528 tbl_tracking.php:388 msgid "Structure only" msgstr "Struktur sahaja" -#: db_operations.php:463 tbl_operations.php:529 tbl_tracking.php:390 +#: db_operations.php:472 tbl_operations.php:529 tbl_tracking.php:390 msgid "Structure and data" msgstr "Struktur dan data" -#: db_operations.php:464 tbl_operations.php:530 tbl_tracking.php:389 +#: db_operations.php:473 tbl_operations.php:530 tbl_tracking.php:389 msgid "Data only" msgstr "Data sahaja" -#: db_operations.php:472 +#: db_operations.php:481 msgid "CREATE DATABASE before copying" msgstr "" -#: db_operations.php:475 libraries/export/sql.php:52 +#: db_operations.php:484 libraries/export/sql.php:52 #: libraries/export/sql.php:74 libraries/export/sql.php:76 #: libraries/export/sql.php:82 tbl_operations.php:536 #, php-format msgid "Add %s" msgstr "" -#: db_operations.php:479 libraries/export/sql.php:78 tbl_operations.php:299 +#: db_operations.php:488 libraries/export/sql.php:78 tbl_operations.php:299 #: tbl_operations.php:538 msgid "Add AUTO_INCREMENT value" msgstr "" -#: db_operations.php:483 tbl_operations.php:545 +#: db_operations.php:492 tbl_operations.php:545 msgid "Add constraints" msgstr "" -#: db_operations.php:496 +#: db_operations.php:505 msgid "Switch to copied database" msgstr "" -#: db_operations.php:537 +#: db_operations.php:546 msgid "BLOB Repository" msgstr "" -#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1352 -#: libraries/server_links.inc.php:49 server_processlist.php:59 +#: db_operations.php:549 db_tracking.php:76 libraries/common.lib.php:1352 +#: libraries/server_links.inc.php:50 server_processlist.php:59 #: tbl_tracking.php:596 test/theme.php:101 msgid "Status" msgstr "Status" -#: db_operations.php:548 +#: db_operations.php:557 #, fuzzy #| msgid "Enabled" msgctxt "BLOB repository" msgid "Enabled" msgstr "Membenarkan" -#: db_operations.php:552 +#: db_operations.php:561 #, fuzzy msgid "Disable" msgstr "Tidak Membenarkan" -#: db_operations.php:562 +#: db_operations.php:571 msgid "Damaged" msgstr "" -#: db_operations.php:566 +#: db_operations.php:575 #, fuzzy msgctxt "BLOB repository" msgid "Repair" msgstr "Baiki jadual" -#: db_operations.php:574 +#: db_operations.php:583 #, fuzzy #| msgid "Disabled" msgctxt "BLOB repository" msgid "Disabled" msgstr "Tidak Membenarkan" -#: db_operations.php:578 +#: db_operations.php:587 #, fuzzy msgid "Enable" msgstr "Membenarkan" -#: db_operations.php:602 libraries/Index.class.php:448 +#: db_operations.php:611 libraries/Index.class.php:448 #: libraries/db_structure.lib.php:62 libraries/mysql_charsets.lib.php:107 #: libraries/tbl_properties.inc.php:107 libraries/tbl_properties.inc.php:730 #: server_collations.php:54 server_collations.php:66 server_databases.php:111 #: tbl_operations.php:363 tbl_select.php:137 tbl_structure.php:179 -#: tbl_structure.php:767 tbl_tracking.php:275 tbl_tracking.php:326 +#: tbl_structure.php:765 tbl_tracking.php:275 tbl_tracking.php:326 msgid "Collation" msgstr "" -#: db_operations.php:615 main.php:316 pdf_schema.php:34 +#: db_operations.php:624 main.php:316 pdf_schema.php:34 #, php-format msgid "" "The additional features for working with linked tables have been " @@ -339,14 +335,14 @@ msgstr "" "Ciri-ciri tambahan ini adalah untuk bekerja dengan pautan jadual yang telah " "tidak diaktifkan. Untuk mengetahuinya klik %shere%s." -#: db_operations.php:648 +#: db_operations.php:657 msgid "Edit PDF Pages" 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:1665 -#: server_privileges.php:1721 server_privileges.php:1985 +#: libraries/header.inc.php:130 pdf_pages.php:424 server_privileges.php:1685 +#: server_privileges.php:1741 server_privileges.php:2005 #: server_synchronize.php:423 server_synchronize.php:866 tbl_tracking.php:592 #: test/theme.php:75 msgid "Table" @@ -355,7 +351,7 @@ msgstr "Jadual" #: db_printview.php:105 libraries/db_structure.lib.php:56 #: libraries/header_printview.inc.php:63 libraries/import.lib.php:146 #: navigation.php:638 navigation.php:660 server_databases.php:122 -#: tbl_printview.php:394 tbl_structure.php:365 tbl_structure.php:777 +#: tbl_printview.php:394 tbl_structure.php:365 tbl_structure.php:775 msgid "Rows" msgstr "Baris" @@ -363,31 +359,31 @@ msgstr "Baris" msgid "Size" msgstr "Saiz" -#: db_printview.php:162 db_structure.php:457 libraries/export/sql.php:559 +#: db_printview.php:162 db_structure.php:455 libraries/export/sql.php:559 #: libraries/export/sql.php:899 msgid "in use" msgstr "sedang digunakan" #: db_printview.php:187 libraries/db_info.inc.php:88 #: libraries/export/sql.php:514 pdf_schema.php:1241 tbl_printview.php:434 -#: tbl_structure.php:809 +#: tbl_structure.php:807 #, fuzzy msgid "Creation" msgstr "Cipta" #: db_printview.php:196 libraries/db_info.inc.php:93 #: libraries/export/sql.php:519 pdf_schema.php:1246 tbl_printview.php:444 -#: tbl_structure.php:817 +#: tbl_structure.php:815 msgid "Last update" msgstr "" #: db_printview.php:205 libraries/db_info.inc.php:98 #: libraries/export/sql.php:524 pdf_schema.php:1251 tbl_printview.php:454 -#: tbl_structure.php:825 +#: tbl_structure.php:823 msgid "Last check" msgstr "" -#: db_printview.php:222 db_structure.php:480 +#: db_printview.php:222 db_structure.php:478 #, fuzzy, php-format #| msgid "%s table(s)" msgid "%s table" @@ -448,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:297 tbl_change.php:1031 tbl_indexes.php:250 +#: server_privileges.php:298 tbl_change.php:1031 tbl_indexes.php:250 #: tbl_select.php:288 msgid "Or" msgstr "Atau" @@ -521,9 +517,9 @@ 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:2833 +#: db_structure.php:105 libraries/common.lib.php:2837 #: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50 -#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:467 +#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:465 msgid "Browse" msgstr "Lungsur" @@ -568,36 +564,36 @@ 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:2832 libraries/sql_query_form.lib.php:334 +#: libraries/common.lib.php:2836 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:2829 libraries/common.lib.php:2836 +#: libraries/common.lib.php:2833 libraries/common.lib.php:2840 #: 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:1106 #: libraries/tbl_links.inc.php:56 pmd_general.php:134 -#: server_privileges.php:593 server_replication.php:315 tbl_tracking.php:269 +#: server_privileges.php:594 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:1656 +#: db_structure.php:543 db_structure.php:544 db_tracking.php:91 +#: libraries/Index.class.php:483 libraries/common.lib.php:1657 #: 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 -#: tbl_structure.php:152 tbl_structure.php:471 +#: tbl_structure.php:152 tbl_structure.php:469 msgid "Drop" 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:1655 +#: db_structure.php:541 db_structure.php:542 libraries/common.lib.php:1656 #: libraries/mult_submits.inc.php:39 libraries/tbl_links.inc.php:105 msgid "Empty" msgstr "Kosong" @@ -607,111 +603,111 @@ msgstr "Kosong" msgid "Table %s has been emptied" msgstr "Jadual %s telah dikosongkan" -#: db_structure.php:326 libraries/tbl_links.inc.php:133 +#: db_structure.php:325 libraries/tbl_links.inc.php:133 #, fuzzy, php-format msgid "View %s has been dropped" msgstr "Medan %s telah digugurkan" -#: db_structure.php:326 libraries/tbl_links.inc.php:133 +#: db_structure.php:325 libraries/tbl_links.inc.php:133 #, php-format msgid "Table %s has been dropped" msgstr "Jadual %s telah digugurkan" -#: db_structure.php:333 +#: db_structure.php:332 msgid "Tracking is active." msgstr "" -#: db_structure.php:335 +#: db_structure.php:334 msgid "Tracking is not active." msgstr "" -#: db_structure.php:420 libraries/display_tbl.lib.php:1944 +#: db_structure.php:418 libraries/display_tbl.lib.php:1944 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation%" "s." msgstr "" -#: db_structure.php:434 db_structure.php:448 libraries/header.inc.php:126 +#: db_structure.php:432 db_structure.php:446 libraries/header.inc.php:130 #: libraries/tbl_info.inc.php:66 tbl_structure.php:185 test/theme.php:74 msgid "View" msgstr "" -#: db_structure.php:485 libraries/db_structure.lib.php:49 -#: libraries/server_links.inc.php:70 server_replication.php:33 +#: db_structure.php:483 libraries/db_structure.lib.php:49 +#: libraries/server_links.inc.php:71 server_replication.php:33 #: server_replication.php:164 server_status.php:369 msgid "Replication" msgstr "" -#: db_structure.php:489 +#: db_structure.php:487 msgid "Sum" msgstr "Jumlah" -#: db_structure.php:496 libraries/StorageEngine.class.php:356 +#: db_structure.php:494 libraries/StorageEngine.class.php:356 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "" -#: db_structure.php:524 db_structure.php:541 db_structure.php:542 +#: db_structure.php:522 db_structure.php:539 db_structure.php:540 #: 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:1596 tbl_structure.php:455 -#: tbl_structure.php:464 +#: server_databases.php:351 server_privileges.php:1616 tbl_structure.php:453 +#: tbl_structure.php:462 msgid "With selected:" msgstr "Dengan pilihan:" -#: db_structure.php:527 libraries/display_tbl.lib.php:2076 -#: server_databases.php:348 server_privileges.php:569 -#: server_privileges.php:1599 tbl_structure.php:458 +#: db_structure.php:525 libraries/display_tbl.lib.php:2076 +#: server_databases.php:348 server_privileges.php:570 +#: server_privileges.php:1619 tbl_structure.php:456 msgid "Check All" msgstr "Tanda Semua" -#: db_structure.php:531 libraries/display_tbl.lib.php:2077 +#: db_structure.php:529 libraries/display_tbl.lib.php:2077 #: libraries/replication_gui.lib.php:33 server_databases.php:350 -#: server_privileges.php:572 server_privileges.php:1603 tbl_structure.php:462 +#: server_privileges.php:573 server_privileges.php:1623 tbl_structure.php:460 msgid "Uncheck All" msgstr "Nyahtanda Semua" -#: db_structure.php:536 +#: db_structure.php:534 msgid "Check tables having overhead" msgstr "" -#: db_structure.php:547 db_structure.php:548 db_structure.php:599 +#: db_structure.php:545 db_structure.php:546 db_structure.php:597 #: libraries/display_tbl.lib.php:2180 libraries/mult_submits.inc.php:28 -#: tbl_structure.php:492 tbl_structure.php:494 +#: tbl_structure.php:490 tbl_structure.php:492 msgid "Print view" msgstr "Paparan Cetak" -#: db_structure.php:549 db_structure.php:550 libraries/mult_submits.inc.php:42 +#: db_structure.php:547 db_structure.php:548 libraries/mult_submits.inc.php:42 #: tbl_operations.php:581 msgid "Check table" msgstr "Periksa Jadual" -#: db_structure.php:551 db_structure.php:552 libraries/mult_submits.inc.php:47 -#: tbl_operations.php:621 tbl_structure.php:709 tbl_structure.php:711 +#: db_structure.php:549 db_structure.php:550 libraries/mult_submits.inc.php:47 +#: tbl_operations.php:621 tbl_structure.php:707 tbl_structure.php:709 msgid "Optimize table" msgstr "Optimakan jadual" -#: db_structure.php:553 db_structure.php:554 libraries/mult_submits.inc.php:52 +#: db_structure.php:551 db_structure.php:552 libraries/mult_submits.inc.php:52 #: tbl_operations.php:611 msgid "Repair table" msgstr "Baiki jadual" -#: db_structure.php:555 db_structure.php:556 libraries/mult_submits.inc.php:57 +#: db_structure.php:553 db_structure.php:554 libraries/mult_submits.inc.php:57 #: tbl_operations.php:601 msgid "Analyze table" msgstr "Analyze table" -#: db_structure.php:557 db_structure.php:558 libraries/db_links.inc.php:71 +#: db_structure.php:555 db_structure.php:556 libraries/db_links.inc.php:71 #: 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:1380 +#: libraries/server_links.inc.php:85 libraries/tbl_links.inc.php:82 +#: pmd_pdf.php:84 pmd_pdf.php:109 server_privileges.php:1397 #: setup/frames/menu.inc.php:22 tbl_row_action.php:59 msgid "Export" msgstr "Eksport" -#: db_structure.php:606 libraries/display_pdf_schema.lib.php:44 +#: db_structure.php:604 libraries/display_pdf_schema.lib.php:44 msgid "Data Dictionary" msgstr "Kamus Data" @@ -722,10 +718,10 @@ msgstr "" #: db_tracking.php:71 libraries/export/htmlword.php:86 #: libraries/export/latex.php:148 libraries/export/odt.php:113 #: libraries/export/sql.php:342 libraries/export/texytext.php:84 -#: libraries/export/xml.php:255 libraries/header.inc.php:106 +#: libraries/export/xml.php:255 libraries/header.inc.php:110 #: libraries/header_printview.inc.php:58 server_databases.php:169 -#: server_privileges.php:1660 server_privileges.php:1721 -#: server_privileges.php:1979 server_processlist.php:56 +#: server_privileges.php:1680 server_privileges.php:1741 +#: server_privileges.php:1999 server_processlist.php:56 #: server_synchronize.php:1179 server_synchronize.php:1183 #: tbl_tracking.php:591 test/theme.php:65 msgid "Database" @@ -746,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:1542 server_privileges.php:1725 -#: server_privileges.php:2073 tbl_structure.php:187 +#: server_privileges.php:1562 server_privileges.php:1745 +#: server_privileges.php:2094 tbl_structure.php:187 msgid "Action" msgstr "Aksi" @@ -783,8 +779,8 @@ msgstr "Struktur sahaja" msgid "Untracked tables" msgstr "" -#: db_tracking.php:172 db_tracking.php:174 tbl_structure.php:528 -#: tbl_structure.php:530 +#: db_tracking.php:172 db_tracking.php:174 tbl_structure.php:526 +#: tbl_structure.php:528 #, fuzzy msgid "Track table" msgstr "Periksa Jadual" @@ -940,189 +936,233 @@ msgstr "Nama hos adalah kosong!" msgid "The user name is empty!" msgstr "Kata Pengenalan kosong!" -#: js/messages.php:44 server_privileges.php:1236 user_password.php:70 +#: js/messages.php:44 server_privileges.php:1241 user_password.php:70 msgid "The password is empty!" msgstr "Katalaluan adalah kosong!" -#: js/messages.php:45 server_privileges.php:1234 user_password.php:73 +#: js/messages.php:45 server_privileges.php:1239 user_password.php:73 msgid "The passwords aren't the same!" msgstr "Katalaluan tidak sama!" -#: js/messages.php:49 pmd_general.php:342 pmd_general.php:379 +#: js/messages.php:46 +#, fuzzy +#| msgid "Add a new User" +msgid "Add a New User" +msgstr "Tambah Pengguna Baru" + +#: js/messages.php:47 js/messages.php:54 pmd_general.php:342 +#: pmd_general.php:379 msgid "Cancel" msgstr "" -#: js/messages.php:52 pmd_save_pos.php:54 +#: js/messages.php:48 +#, fuzzy +msgid "Create User" +msgstr "Versi Pelayan" + +#: js/messages.php:49 +#, fuzzy +msgid "Reloading Privileges" +msgstr "Tiada Privilej" + +#: js/messages.php:50 +msgid "Removing Selected Users" +msgstr "" + +#: js/messages.php:57 +#, fuzzy +msgid "Loading" +msgstr "Local" + +#: js/messages.php:58 +#, fuzzy +#| msgid "Processes" +msgid "Processing Request" +msgstr "Proses-proses" + +#: js/messages.php:59 +msgid "Error in Processing Request" +msgstr "" + +#: js/messages.php:60 +msgid "Dropping Column" +msgstr "" + +#: js/messages.php:61 +msgid "Adding Primary Key" +msgstr "" + +#: js/messages.php:64 pmd_save_pos.php:54 msgid "Modifications have been saved" msgstr "Pengubahsuaian telah disimpan" -#: js/messages.php:53 pmd_relation_upd.php:49 +#: js/messages.php:65 pmd_relation_upd.php:49 #, fuzzy msgid "Relation deleted" msgstr "Paparan Hubungan" -#: js/messages.php:54 pmd_relation_new.php:64 +#: js/messages.php:66 pmd_relation_new.php:64 msgid "FOREIGN KEY relation added" msgstr "" -#: js/messages.php:55 pmd_relation_new.php:86 +#: js/messages.php:67 pmd_relation_new.php:86 #, fuzzy msgid "Internal relation added" msgstr "Ciri-ciri hubungan am" -#: js/messages.php:56 pmd_relation_new.php:63 pmd_relation_new.php:88 +#: js/messages.php:68 pmd_relation_new.php:63 pmd_relation_new.php:88 msgid "Error: Relation not added." msgstr "" -#: js/messages.php:57 pmd_relation_new.php:31 +#: js/messages.php:69 pmd_relation_new.php:31 msgid "Error: relation already exists." msgstr "" -#: js/messages.php:58 +#: js/messages.php:70 msgid "Error saving coordinates for Designer." msgstr "" -#: js/messages.php:59 libraries/relation.lib.php:107 +#: js/messages.php:71 libraries/relation.lib.php:107 #: libraries/relation.lib.php:119 msgid "General relation features" msgstr "Ciri-ciri hubungan am" -#: js/messages.php:59 libraries/relation.lib.php:101 +#: js/messages.php:71 libraries/relation.lib.php:101 #: libraries/relation.lib.php:108 msgid "Disabled" msgstr "Tidak Membenarkan" -#: js/messages.php:60 +#: js/messages.php:72 msgid "Select referenced key" msgstr "" -#: js/messages.php:61 +#: js/messages.php:73 msgid "Select Foreign Key" msgstr "" -#: js/messages.php:62 +#: js/messages.php:74 msgid "Please select the primary key or a unique key" msgstr "" -#: js/messages.php:63 pmd_general.php:77 tbl_relation.php:548 +#: js/messages.php:75 pmd_general.php:77 tbl_relation.php:548 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" msgstr "Pilih Medan untuk dipapar" #. l10n: Display text for calendar close link -#: js/messages.php:73 +#: js/messages.php:85 #, fuzzy #| msgid "None" msgid "Done" msgstr "Tiada" #. l10n: Display text for previous month link in calendar -#: js/messages.php:75 +#: js/messages.php:87 #, fuzzy #| msgid "Previous" msgid "Prev" msgstr "Terdahulu" #. l10n: Display text for next month link in calendar -#: js/messages.php:77 libraries/common.lib.php:2353 -#: libraries/common.lib.php:2356 libraries/display_tbl.lib.php:338 +#: js/messages.php:89 libraries/common.lib.php:2357 +#: libraries/common.lib.php:2360 libraries/display_tbl.lib.php:338 #: server_binlog.php:205 server_binlog.php:207 tbl_printview.php:424 -#: tbl_structure.php:801 +#: tbl_structure.php:799 msgid "Next" msgstr "Berikut" #. l10n: Display text for current month link in calendar -#: js/messages.php:79 +#: js/messages.php:91 #, fuzzy #| msgid "Total" msgid "Today" msgstr "Jumlah" -#: js/messages.php:82 +#: js/messages.php:94 #, fuzzy #| msgid "Binary" msgid "January" msgstr "Binari" -#: js/messages.php:83 +#: js/messages.php:95 msgid "February" msgstr "" -#: js/messages.php:84 +#: js/messages.php:96 #, fuzzy #| msgid "Mar" msgid "March" msgstr "Mac" -#: js/messages.php:85 +#: js/messages.php:97 #, fuzzy #| msgid "Apr" msgid "April" msgstr "Apr" -#: js/messages.php:86 +#: js/messages.php:98 msgid "May" msgstr "Mei" -#: js/messages.php:87 +#: js/messages.php:99 #, fuzzy #| msgid "Jun" msgid "June" msgstr "Jun" -#: js/messages.php:88 +#: js/messages.php:100 #, fuzzy #| msgid "Jul" msgid "July" msgstr "Jul" -#: js/messages.php:89 +#: js/messages.php:101 #, fuzzy #| msgid "Aug" msgid "August" msgstr "Ogos" -#: js/messages.php:90 +#: js/messages.php:102 msgid "September" msgstr "" -#: js/messages.php:91 +#: js/messages.php:103 #, fuzzy #| msgid "Oct" msgid "October" msgstr "Okt" -#: js/messages.php:92 +#: js/messages.php:104 msgid "November" msgstr "" -#: js/messages.php:93 +#: js/messages.php:105 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:97 libraries/common.lib.php:1557 +#: js/messages.php:109 libraries/common.lib.php:1557 msgid "Jan" msgstr "Jan" #. l10n: Short month name -#: js/messages.php:99 libraries/common.lib.php:1559 +#: js/messages.php:111 libraries/common.lib.php:1559 msgid "Feb" msgstr "Feb" #. l10n: Short month name -#: js/messages.php:101 libraries/common.lib.php:1561 +#: js/messages.php:113 libraries/common.lib.php:1561 msgid "Mar" msgstr "Mac" #. l10n: Short month name -#: js/messages.php:103 libraries/common.lib.php:1563 +#: js/messages.php:115 libraries/common.lib.php:1563 msgid "Apr" msgstr "Apr" #. l10n: Short month name -#: js/messages.php:105 libraries/common.lib.php:1565 +#: js/messages.php:117 libraries/common.lib.php:1565 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1130,176 +1170,176 @@ msgid "May" msgstr "Mei" #. l10n: Short month name -#: js/messages.php:107 libraries/common.lib.php:1567 +#: js/messages.php:119 libraries/common.lib.php:1567 msgid "Jun" msgstr "Jun" #. l10n: Short month name -#: js/messages.php:109 libraries/common.lib.php:1569 +#: js/messages.php:121 libraries/common.lib.php:1569 msgid "Jul" msgstr "Jul" #. l10n: Short month name -#: js/messages.php:111 libraries/common.lib.php:1571 +#: js/messages.php:123 libraries/common.lib.php:1571 msgid "Aug" msgstr "Ogos" #. l10n: Short month name -#: js/messages.php:113 libraries/common.lib.php:1573 +#: js/messages.php:125 libraries/common.lib.php:1573 msgid "Sep" msgstr "Sept" #. l10n: Short month name -#: js/messages.php:115 libraries/common.lib.php:1575 +#: js/messages.php:127 libraries/common.lib.php:1575 msgid "Oct" msgstr "Okt" #. l10n: Short month name -#: js/messages.php:117 libraries/common.lib.php:1577 +#: js/messages.php:129 libraries/common.lib.php:1577 msgid "Nov" msgstr "Nov" #. l10n: Short month name -#: js/messages.php:119 libraries/common.lib.php:1579 +#: js/messages.php:131 libraries/common.lib.php:1579 msgid "Dec" msgstr "Dis" -#: js/messages.php:122 +#: js/messages.php:134 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "Aha" -#: js/messages.php:123 +#: js/messages.php:135 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "Isn" -#: js/messages.php:124 +#: js/messages.php:136 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "Sel" -#: js/messages.php:125 +#: js/messages.php:137 msgid "Wednesday" msgstr "" -#: js/messages.php:126 +#: js/messages.php:138 msgid "Thursday" msgstr "" -#: js/messages.php:127 +#: js/messages.php:139 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "Jum" -#: js/messages.php:128 +#: js/messages.php:140 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:132 libraries/common.lib.php:1582 +#: js/messages.php:144 libraries/common.lib.php:1582 msgid "Sun" msgstr "Aha" #. l10n: Short week day name -#: js/messages.php:134 libraries/common.lib.php:1584 +#: js/messages.php:146 libraries/common.lib.php:1584 msgid "Mon" msgstr "Isn" #. l10n: Short week day name -#: js/messages.php:136 libraries/common.lib.php:1586 +#: js/messages.php:148 libraries/common.lib.php:1586 msgid "Tue" msgstr "Sel" #. l10n: Short week day name -#: js/messages.php:138 libraries/common.lib.php:1588 +#: js/messages.php:150 libraries/common.lib.php:1588 msgid "Wed" msgstr "Rab" #. l10n: Short week day name -#: js/messages.php:140 libraries/common.lib.php:1590 +#: js/messages.php:152 libraries/common.lib.php:1590 msgid "Thu" msgstr "Kha" #. l10n: Short week day name -#: js/messages.php:142 libraries/common.lib.php:1592 +#: js/messages.php:154 libraries/common.lib.php:1592 msgid "Fri" msgstr "Jum" #. l10n: Short week day name -#: js/messages.php:144 libraries/common.lib.php:1594 +#: js/messages.php:156 libraries/common.lib.php:1594 msgid "Sat" msgstr "Sab" #. l10n: Minimal week day name -#: js/messages.php:148 +#: js/messages.php:160 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "Aha" #. l10n: Minimal week day name -#: js/messages.php:150 +#: js/messages.php:162 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "Isn" #. l10n: Minimal week day name -#: js/messages.php:152 +#: js/messages.php:164 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "Sel" #. l10n: Minimal week day name -#: js/messages.php:154 +#: js/messages.php:166 #, fuzzy #| msgid "Wed" msgid "We" msgstr "Rab" #. l10n: Minimal week day name -#: js/messages.php:156 +#: js/messages.php:168 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "Kha" #. l10n: Minimal week day name -#: js/messages.php:158 +#: js/messages.php:170 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "Jum" #. l10n: Minimal week day name -#: js/messages.php:160 +#: js/messages.php:172 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "Sab" #. l10n: Column header for week of the year in calendar -#: js/messages.php:162 +#: js/messages.php:174 msgid "Wk" msgstr "" -#: js/messages.php:164 +#: js/messages.php:176 msgid "Hour" msgstr "" -#: js/messages.php:165 +#: js/messages.php:177 #, fuzzy #| msgid "in use" msgid "Minute" msgstr "sedang digunakan" -#: js/messages.php:166 +#: js/messages.php:178 #, fuzzy #| msgid "Records" msgid "Second" @@ -1356,7 +1396,7 @@ msgstr "Indeks" #: libraries/Index.class.php:444 libraries/mult_submits.inc.php:103 #: libraries/tbl_properties.inc.php:519 tbl_structure.php:33 -#: tbl_structure.php:155 tbl_structure.php:159 tbl_structure.php:474 +#: tbl_structure.php:155 tbl_structure.php:159 tbl_structure.php:472 #: tbl_tracking.php:322 msgid "Unique" msgstr "Unik" @@ -1398,8 +1438,8 @@ msgid "" "removed." msgstr "" -#: libraries/List_Database.class.php:431 libraries/server_links.inc.php:41 -#: server_databases.php:88 server_privileges.php:1660 +#: libraries/List_Database.class.php:431 libraries/server_links.inc.php:42 +#: server_databases.php:88 server_privileges.php:1680 #: setup/lib/messages.inc.php:110 test/theme.php:93 msgid "Databases" msgstr "pangkalan data" @@ -1562,7 +1602,7 @@ msgstr "Katalaluan:" msgid "Server Choice" msgstr "Pilihan Pelayan" -#: libraries/auth/cookie.auth.lib.php:320 libraries/header.inc.php:59 +#: libraries/auth/cookie.auth.lib.php:320 libraries/header.inc.php:63 msgid "Cookies must be enabled past this point." msgstr "Cecikut mestilah dihidupkan ketika ini." @@ -1642,7 +1682,7 @@ msgstr "" "Tidak boleh menggunakan fungsi iconv mahupun libiconv mahupun recode_string " "apabila sambungan lapuran dimuat. Periksa konfigurasi php anda." -#: libraries/common.inc.php:583 +#: libraries/common.inc.php:587 msgid "" "phpMyAdmin was unable to read your configuration file!
This might " "happen if PHP finds a parse error in it or PHP cannot find the file.
Jika kamu terima laman kosong, semuanya berjalan lancar." -#: libraries/common.inc.php:594 +#: libraries/common.inc.php:598 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "" -#: libraries/common.inc.php:599 +#: libraries/common.inc.php:603 msgid "" "The $cfg['PmaAbsoluteUri'] directive MUST be set in your " "configuration file!" msgstr "" "$cfg[PmaAbsoluteUri] MESTI disetkan di dalam fail konfigurasi." -#: libraries/common.inc.php:629 +#: libraries/common.inc.php:633 #, php-format msgid "Invalid server index: %s" msgstr "" -#: libraries/common.inc.php:636 +#: libraries/common.inc.php:640 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" -#: libraries/common.inc.php:645 libraries/header.inc.php:96 +#: libraries/common.inc.php:649 libraries/header.inc.php:100 #: libraries/select_server.lib.php:41 libraries/select_server.lib.php:47 #: main.php:185 test/theme.php:57 msgid "Server" msgstr "Pelayan" -#: libraries/common.inc.php:823 +#: libraries/common.inc.php:827 msgid "Invalid authentication method set in configuration:" msgstr "" -#: libraries/common.inc.php:926 +#: libraries/common.inc.php:930 #, php-format msgid "You should upgrade to %s %s or later." msgstr "" @@ -1822,45 +1862,45 @@ msgstr "." msgid "%B %d, %Y at %I:%M %p" msgstr "%B %d, %Y at %I:%M %p" -#: libraries/common.lib.php:1907 +#: libraries/common.lib.php:1911 #, 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:2322 libraries/common.lib.php:2325 +#: libraries/common.lib.php:2326 libraries/common.lib.php:2329 #: libraries/display_tbl.lib.php:290 server_status.php:719 msgid "Begin" msgstr "Mula" -#: libraries/common.lib.php:2323 libraries/common.lib.php:2326 +#: libraries/common.lib.php:2327 libraries/common.lib.php:2330 #: libraries/display_tbl.lib.php:291 server_binlog.php:168 #: server_binlog.php:170 msgid "Previous" msgstr "Terdahulu" -#: libraries/common.lib.php:2354 libraries/common.lib.php:2357 +#: libraries/common.lib.php:2358 libraries/common.lib.php:2361 #: libraries/display_tbl.lib.php:353 msgid "End" msgstr "Tamat" -#: libraries/common.lib.php:2430 +#: libraries/common.lib.php:2434 #, php-format msgid "Jump to database "%s"." msgstr "" -#: libraries/common.lib.php:2450 +#: libraries/common.lib.php:2454 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" -#: libraries/common.lib.php:2830 libraries/common.lib.php:2837 +#: libraries/common.lib.php:2834 libraries/common.lib.php:2841 #: libraries/db_links.inc.php:68 libraries/export/sql.php:25 -#: libraries/import/sql.php:18 libraries/server_links.inc.php:45 +#: libraries/import/sql.php:18 libraries/server_links.inc.php:46 #: libraries/tbl_links.inc.php:60 querywindow.php:99 test/theme.php:97 msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2839 libraries/db_links.inc.php:104 +#: libraries/common.lib.php:2843 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,16 +1947,16 @@ msgstr "Kueri" msgid "Designer" msgstr "" -#: libraries/db_links.inc.php:98 libraries/server_links.inc.php:88 +#: libraries/db_links.inc.php:98 libraries/server_links.inc.php:89 #: libraries/tbl_links.inc.php:91 pmd_pdf.php:84 pmd_pdf.php:110 #: setup/frames/menu.inc.php:21 #, fuzzy msgid "Import" msgstr "Eksport" -#: libraries/db_links.inc.php:111 libraries/server_links.inc.php:66 -#: server_privileges.php:111 server_privileges.php:1722 -#: server_privileges.php:2071 test/theme.php:117 +#: libraries/db_links.inc.php:111 libraries/server_links.inc.php:67 +#: server_privileges.php:112 server_privileges.php:1742 +#: server_privileges.php:2092 test/theme.php:117 msgid "Privileges" msgstr "Privilej" @@ -1935,7 +1975,7 @@ msgid "" msgstr "" #: libraries/db_structure.lib.php:69 server_databases.php:142 -#: tbl_printview.php:336 tbl_structure.php:682 +#: tbl_printview.php:336 tbl_structure.php:680 msgid "Overhead" msgstr "Melebihi" @@ -1952,7 +1992,7 @@ msgstr "" msgid "(or the local MySQL server's socket is not correctly configured)" msgstr "" -#: libraries/dbi/mysql.dbi.lib.php:362 tbl_structure.php:608 +#: libraries/dbi/mysql.dbi.lib.php:362 tbl_structure.php:606 msgid "Details..." msgstr "" @@ -1962,22 +2002,22 @@ msgid "Change password" msgstr "Ubah Katalaluan" #: libraries/display_change_password.lib.php:35 -#: libraries/replication_gui.lib.php:345 server_privileges.php:807 +#: libraries/replication_gui.lib.php:345 server_privileges.php:808 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:796 -#: server_privileges.php:800 server_privileges.php:811 -#: server_privileges.php:1538 server_synchronize.php:1175 +#: libraries/replication_gui.lib.php:349 server_privileges.php:797 +#: server_privileges.php:801 server_privileges.php:812 +#: server_privileges.php:1558 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:815 server_privileges.php:818 +#: server_privileges.php:816 server_privileges.php:819 msgid "Re-type" msgstr "Ulang-taip" @@ -1990,12 +2030,12 @@ msgid "MySQL 4.0 compatible" msgstr "" #: libraries/display_change_password.lib.php:72 -#: libraries/replication_gui.lib.php:360 server_privileges.php:822 +#: libraries/replication_gui.lib.php:360 server_privileges.php:823 msgid "Generate Password" msgstr "" #: libraries/display_change_password.lib.php:75 -#: libraries/replication_gui.lib.php:363 server_privileges.php:825 +#: libraries/replication_gui.lib.php:363 server_privileges.php:826 #, fuzzy msgid "Generate" msgstr "Dijana oleh" @@ -2009,8 +2049,8 @@ msgstr "Cipta pangkalan data baru" msgid "Create" msgstr "Cipta" -#: libraries/display_create_database.lib.php:40 server_privileges.php:113 -#: server_privileges.php:1427 server_replication.php:35 +#: libraries/display_create_database.lib.php:40 server_privileges.php:114 +#: server_privileges.php:1447 server_replication.php:35 msgid "No Privileges" msgstr "Tiada Privilej" @@ -2099,7 +2139,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:1875 server_processlist.php:75 +#: server_privileges.php:1895 server_processlist.php:75 msgid "None" msgstr "Tiada" @@ -2283,7 +2323,7 @@ msgstr "" #: libraries/import/docsql.php:34 libraries/import/ldi.php:47 #: libraries/import/ods.php:30 libraries/import/sql.php:20 #: libraries/import/xls.php:26 libraries/import/xlsx.php:26 -#: libraries/import/xml.php:25 tbl_select.php:267 tbl_structure.php:753 +#: libraries/import/xml.php:25 tbl_select.php:267 tbl_structure.php:751 #, fuzzy msgid "Options" msgstr "Operasi" @@ -2362,7 +2402,7 @@ msgstr "" #: libraries/display_tbl.lib.php:2089 libraries/mult_submits.inc.php:113 #: querywindow.php:125 querywindow.php:129 querywindow.php:132 -#: tbl_structure.php:25 tbl_structure.php:150 tbl_structure.php:470 +#: tbl_structure.php:25 tbl_structure.php:150 tbl_structure.php:468 msgid "Change" msgstr "Ubah" @@ -2430,7 +2470,7 @@ msgstr "" #: libraries/engines/innodb.lib.php:194 server_databases.php:137 #: server_databases.php:305 server_status.php:525 server_status.php:586 -#: server_status.php:607 tbl_printview.php:351 tbl_structure.php:696 +#: server_status.php:607 tbl_printview.php:351 tbl_structure.php:694 msgid "Total" msgstr "Jumlah" @@ -2676,7 +2716,7 @@ msgid "" msgstr "" #: libraries/export/codegen.php:37 setup/lib/messages.inc.php:88 -#: tbl_printview.php:376 tbl_structure.php:737 +#: tbl_printview.php:376 tbl_structure.php:735 msgid "Format" msgstr "Format" @@ -2748,8 +2788,8 @@ 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:576 server_replication.php:316 tbl_printview.php:317 -#: tbl_structure.php:665 +#: server_privileges.php:577 server_replication.php:316 tbl_printview.php:317 +#: tbl_structure.php:663 msgid "Data" msgstr "Data" @@ -2799,9 +2839,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:731 -#: server_privileges.php:734 server_privileges.php:790 -#: server_privileges.php:1537 server_privileges.php:2069 +#: libraries/replication_gui.lib.php:329 server_privileges.php:732 +#: server_privileges.php:735 server_privileges.php:791 +#: server_privileges.php:1557 server_privileges.php:2090 #: server_processlist.php:55 server_synchronize.php:1159 msgid "Host" msgstr "Hos" @@ -3000,7 +3040,7 @@ msgstr "" msgid "Open new phpMyAdmin window" msgstr "" -#: libraries/header.inc.php:115 +#: libraries/header.inc.php:119 #, fuzzy msgid "New table" msgstr "Tiada Jadual" @@ -3160,20 +3200,20 @@ 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 +#: tbl_structure.php:471 msgid "Primary" msgstr "Utama" #: libraries/mult_submits.inc.php:98 libraries/tbl_properties.inc.php:116 #: libraries/tbl_properties.inc.php:525 tbl_printview.php:326 #: tbl_structure.php:31 tbl_structure.php:154 tbl_structure.php:158 -#: tbl_structure.php:475 tbl_structure.php:673 +#: tbl_structure.php:473 tbl_structure.php:671 msgid "Index" msgstr "Indeks" #: libraries/mult_submits.inc.php:108 libraries/tbl_properties.inc.php:531 #: tbl_structure.php:35 tbl_structure.php:156 tbl_structure.php:160 -#: tbl_structure.php:478 +#: tbl_structure.php:476 msgid "Fulltext" msgstr "Tekspenuh" @@ -3475,8 +3515,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:711 -#: server_privileges.php:714 server_privileges.php:721 +#: libraries/replication_gui.lib.php:259 server_privileges.php:712 +#: server_privileges.php:715 server_privileges.php:722 #: server_synchronize.php:1171 msgid "User name" msgstr "Kata Pengenalan" @@ -3501,7 +3541,7 @@ msgstr "Pembolehubah" #: 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 +#: tbl_structure.php:727 msgid "Value" msgstr "Nilai" @@ -3520,34 +3560,34 @@ msgstr "" msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:254 server_privileges.php:716 +#: libraries/replication_gui.lib.php:254 server_privileges.php:717 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:717 -#: server_privileges.php:784 server_privileges.php:808 -#: server_privileges.php:1928 server_privileges.php:1958 +#: libraries/replication_gui.lib.php:346 server_privileges.php:718 +#: server_privileges.php:785 server_privileges.php:809 +#: server_privileges.php:1948 server_privileges.php:1978 msgid "Use text field" msgstr "" -#: libraries/replication_gui.lib.php:302 server_privileges.php:764 +#: libraries/replication_gui.lib.php:302 server_privileges.php:765 msgid "Any host" msgstr "Sebarang hos" -#: libraries/replication_gui.lib.php:306 server_privileges.php:768 +#: libraries/replication_gui.lib.php:306 server_privileges.php:769 msgid "Local" msgstr "Local" -#: libraries/replication_gui.lib.php:312 server_privileges.php:773 +#: libraries/replication_gui.lib.php:312 server_privileges.php:774 msgid "This Host" msgstr "" -#: libraries/replication_gui.lib.php:318 server_privileges.php:779 +#: libraries/replication_gui.lib.php:318 server_privileges.php:780 msgid "Use Host Table" msgstr "" -#: libraries/replication_gui.lib.php:331 server_privileges.php:792 +#: libraries/replication_gui.lib.php:331 server_privileges.php:793 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -3582,30 +3622,30 @@ msgstr "" msgid "Servers" msgstr "Pelayan" -#: libraries/server_links.inc.php:53 server_engines.php:112 +#: libraries/server_links.inc.php:54 server_engines.php:112 #: server_engines.php:116 server_status.php:415 test/theme.php:105 msgid "Variables" msgstr "Pemboleh-pembolehubah" -#: libraries/server_links.inc.php:57 test/theme.php:109 +#: libraries/server_links.inc.php:58 test/theme.php:109 msgid "Charsets" msgstr "" -#: libraries/server_links.inc.php:61 test/theme.php:113 +#: libraries/server_links.inc.php:62 test/theme.php:113 msgid "Engines" msgstr "" -#: libraries/server_links.inc.php:76 server_binlog.php:110 +#: libraries/server_links.inc.php:77 server_binlog.php:110 #: server_status.php:364 test/theme.php:121 #, fuzzy msgid "Binary log" msgstr "Binari" -#: libraries/server_links.inc.php:80 +#: libraries/server_links.inc.php:81 msgid "Processes" msgstr "Proses-proses" -#: libraries/server_links.inc.php:92 server_synchronize.php:1092 +#: libraries/server_links.inc.php:93 server_synchronize.php:1092 #: server_synchronize.php:1100 msgid "Synchronize" msgstr "" @@ -3851,12 +3891,12 @@ msgstr "" msgid "Save" msgstr "Simpan" -#: libraries/tbl_properties.inc.php:780 tbl_structure.php:542 +#: libraries/tbl_properties.inc.php:780 tbl_structure.php:540 #, fuzzy, php-format msgid "Add %s column(s)" msgstr "Tambah medan baru" -#: libraries/tbl_properties.inc.php:784 tbl_structure.php:536 +#: libraries/tbl_properties.inc.php:784 tbl_structure.php:534 #, fuzzy #| msgid "You have to choose at least one column to display" msgid "You have to add at least one column." @@ -3992,8 +4032,8 @@ msgstr "Ulangtetap" msgid "Protocol version" msgstr "" -#: main.php:189 server_privileges.php:1389 server_privileges.php:1536 -#: server_privileges.php:1650 server_privileges.php:2068 +#: main.php:189 server_privileges.php:1406 server_privileges.php:1556 +#: server_privileges.php:1670 server_privileges.php:2089 #: server_processlist.php:54 msgid "User" msgstr "Pengguna" @@ -4425,111 +4465,111 @@ msgstr "" msgid "View dump (schema) of databases" msgstr "Lihat longgokan (skema) pangkalan data" -#: server_privileges.php:24 server_privileges.php:266 +#: server_privileges.php:25 server_privileges.php:267 msgid "Includes all privileges except GRANT." msgstr "" -#: server_privileges.php:25 server_privileges.php:192 -#: server_privileges.php:515 +#: server_privileges.php:26 server_privileges.php:193 +#: server_privileges.php:516 msgid "Allows altering the structure of existing tables." msgstr "" -#: server_privileges.php:26 server_privileges.php:208 -#: server_privileges.php:521 +#: server_privileges.php:27 server_privileges.php:209 +#: server_privileges.php:522 msgid "Allows altering and dropping stored routines." msgstr "" -#: server_privileges.php:27 server_privileges.php:184 -#: server_privileges.php:514 +#: server_privileges.php:28 server_privileges.php:185 +#: server_privileges.php:515 msgid "Allows creating new databases and tables." msgstr "" -#: server_privileges.php:28 server_privileges.php:207 -#: server_privileges.php:520 +#: server_privileges.php:29 server_privileges.php:208 +#: server_privileges.php:521 msgid "Allows creating stored routines." msgstr "" -#: server_privileges.php:29 server_privileges.php:514 +#: server_privileges.php:30 server_privileges.php:515 msgid "Allows creating new tables." msgstr "" -#: server_privileges.php:30 server_privileges.php:195 -#: server_privileges.php:518 +#: server_privileges.php:31 server_privileges.php:196 +#: server_privileges.php:519 msgid "Allows creating temporary tables." msgstr "" -#: server_privileges.php:31 server_privileges.php:209 -#: server_privileges.php:554 +#: server_privileges.php:32 server_privileges.php:210 +#: server_privileges.php:555 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 +#: server_privileges.php:33 server_privileges.php:200 +#: server_privileges.php:204 server_privileges.php:527 +#: server_privileges.php:531 msgid "Allows creating new views." msgstr "" -#: server_privileges.php:33 server_privileges.php:183 -#: server_privileges.php:506 +#: server_privileges.php:34 server_privileges.php:184 +#: server_privileges.php:507 msgid "Allows deleting data." msgstr "" -#: server_privileges.php:34 server_privileges.php:185 -#: server_privileges.php:517 +#: server_privileges.php:35 server_privileges.php:186 +#: server_privileges.php:518 msgid "Allows dropping databases and tables." msgstr "" -#: server_privileges.php:35 server_privileges.php:517 +#: server_privileges.php:36 server_privileges.php:518 msgid "Allows dropping tables." msgstr "" -#: server_privileges.php:36 server_privileges.php:200 -#: server_privileges.php:534 +#: server_privileges.php:37 server_privileges.php:201 +#: server_privileges.php:535 msgid "Allows to set up events for the event scheduler" msgstr "" -#: server_privileges.php:37 server_privileges.php:210 -#: server_privileges.php:522 +#: server_privileges.php:38 server_privileges.php:211 +#: server_privileges.php:523 msgid "Allows executing stored routines." msgstr "" -#: server_privileges.php:38 server_privileges.php:189 -#: server_privileges.php:509 +#: server_privileges.php:39 server_privileges.php:190 +#: server_privileges.php:510 msgid "Allows importing data from and exporting data into files." msgstr "" -#: server_privileges.php:39 server_privileges.php:540 +#: server_privileges.php:40 server_privileges.php:541 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" -#: server_privileges.php:40 server_privileges.php:191 -#: server_privileges.php:516 +#: server_privileges.php:41 server_privileges.php:192 +#: server_privileges.php:517 msgid "Allows creating and dropping indexes." msgstr "" -#: server_privileges.php:41 server_privileges.php:181 -#: server_privileges.php:442 server_privileges.php:504 +#: server_privileges.php:42 server_privileges.php:182 +#: server_privileges.php:443 server_privileges.php:505 msgid "Allows inserting and replacing data." msgstr "" -#: server_privileges.php:42 server_privileges.php:196 -#: server_privileges.php:549 +#: server_privileges.php:43 server_privileges.php:197 +#: server_privileges.php:550 msgid "Allows locking tables for the current thread." msgstr "" -#: server_privileges.php:43 server_privileges.php:646 -#: server_privileges.php:648 +#: server_privileges.php:44 server_privileges.php:647 +#: server_privileges.php:649 msgid "Limits the number of new connections the user may open per hour." msgstr "Limits the number of new connections the user may open per hour." -#: server_privileges.php:44 server_privileges.php:634 -#: server_privileges.php:636 +#: server_privileges.php:45 server_privileges.php:635 +#: server_privileges.php:637 msgid "Limits the number of queries the user may send to the server per hour." msgstr "Limits the number of queries the user may send to the server per hour." -#: server_privileges.php:45 server_privileges.php:640 -#: server_privileges.php:642 +#: server_privileges.php:46 server_privileges.php:641 +#: server_privileges.php:643 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -4537,219 +4577,219 @@ 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 +#: server_privileges.php:47 server_privileges.php:653 +#: server_privileges.php:655 #, fuzzy msgid "Limits the number of simultaneous connections the user may have." msgstr "Limits the number of new connections the user may open per hour." -#: server_privileges.php:47 server_privileges.php:188 -#: server_privileges.php:544 +#: server_privileges.php:48 server_privileges.php:189 +#: server_privileges.php:545 msgid "Allows viewing processes of all users" msgstr "" -#: server_privileges.php:48 server_privileges.php:190 -#: server_privileges.php:448 server_privileges.php:550 +#: server_privileges.php:49 server_privileges.php:191 +#: server_privileges.php:449 server_privileges.php:551 msgid "Has no effect in this MySQL version." msgstr "" -#: server_privileges.php:49 server_privileges.php:186 -#: server_privileges.php:545 +#: server_privileges.php:50 server_privileges.php:187 +#: server_privileges.php:546 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" -#: server_privileges.php:50 server_privileges.php:198 -#: server_privileges.php:552 +#: server_privileges.php:51 server_privileges.php:199 +#: server_privileges.php:553 msgid "Allows the user to ask where the slaves / masters are." msgstr "" -#: server_privileges.php:51 server_privileges.php:197 -#: server_privileges.php:553 +#: server_privileges.php:52 server_privileges.php:198 +#: server_privileges.php:554 msgid "Needed for the replication slaves." msgstr "" -#: server_privileges.php:52 server_privileges.php:180 -#: server_privileges.php:439 server_privileges.php:503 +#: server_privileges.php:53 server_privileges.php:181 +#: server_privileges.php:440 server_privileges.php:504 msgid "Allows reading data." msgstr "" -#: server_privileges.php:53 server_privileges.php:193 -#: server_privileges.php:547 +#: server_privileges.php:54 server_privileges.php:194 +#: server_privileges.php:548 msgid "Gives access to the complete list of databases." msgstr "" -#: server_privileges.php:54 server_privileges.php:204 -#: server_privileges.php:206 server_privileges.php:519 +#: server_privileges.php:55 server_privileges.php:205 +#: server_privileges.php:207 server_privileges.php:520 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "" -#: server_privileges.php:55 server_privileges.php:187 -#: server_privileges.php:546 +#: server_privileges.php:56 server_privileges.php:188 +#: server_privileges.php:547 msgid "Allows shutting down the server." msgstr "" -#: server_privileges.php:56 server_privileges.php:194 -#: server_privileges.php:543 +#: server_privileges.php:57 server_privileges.php:195 +#: server_privileges.php:544 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " "killing threads of other users." msgstr "" -#: server_privileges.php:57 server_privileges.php:201 -#: server_privileges.php:535 +#: server_privileges.php:58 server_privileges.php:202 +#: server_privileges.php:536 msgid "Allows creating and dropping triggers" msgstr "" -#: server_privileges.php:58 server_privileges.php:182 -#: server_privileges.php:445 server_privileges.php:505 +#: server_privileges.php:59 server_privileges.php:183 +#: server_privileges.php:446 server_privileges.php:506 msgid "Allows changing data." msgstr "" -#: server_privileges.php:59 server_privileges.php:260 +#: server_privileges.php:60 server_privileges.php:261 #, fuzzy msgid "No privileges." msgstr "Tiada Privilej" -#: server_privileges.php:302 server_privileges.php:303 +#: server_privileges.php:303 server_privileges.php:304 #, fuzzy #| msgid "None" msgctxt "None privileges" msgid "None" msgstr "Tiada" -#: server_privileges.php:431 server_privileges.php:566 -#: server_privileges.php:1718 server_privileges.php:1724 +#: server_privileges.php:432 server_privileges.php:567 +#: server_privileges.php:1738 server_privileges.php:1744 msgid "Table-specific privileges" msgstr "" -#: server_privileges.php:432 server_privileges.php:574 -#: server_privileges.php:1540 +#: server_privileges.php:433 server_privileges.php:575 +#: server_privileges.php:1560 msgid " Note: MySQL privilege names are expressed in English " msgstr " Nota: Nama privilej MySQL adalah dinyatakan dalam B.Inggeris " -#: server_privileges.php:563 server_privileges.php:1539 +#: server_privileges.php:564 server_privileges.php:1559 #, fuzzy msgid "Global privileges" msgstr "Tiada Privilej" -#: server_privileges.php:565 server_privileges.php:1718 +#: server_privileges.php:566 server_privileges.php:1738 msgid "Database-specific privileges" msgstr "" -#: server_privileges.php:610 +#: server_privileges.php:611 msgid "Administration" msgstr "" -#: server_privileges.php:630 +#: server_privileges.php:631 msgid "Resource limits" msgstr "" -#: server_privileges.php:631 +#: server_privileges.php:632 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "" -#: server_privileges.php:708 +#: server_privileges.php:709 #, fuzzy msgid "Login Information" msgstr "Informasi MasaJana" -#: server_privileges.php:802 +#: server_privileges.php:803 msgid "Do not change the password" msgstr "Jangan tukar katalaluan" -#: server_privileges.php:843 server_privileges.php:2205 +#: server_privileges.php:844 server_privileges.php:2226 #, fuzzy #| msgid "No user(s) found." msgid "No user found." msgstr "Tiada pengguna dijumpai." -#: server_privileges.php:887 +#: server_privileges.php:888 #, php-format msgid "The user %s already exists!" msgstr "" -#: server_privileges.php:970 +#: server_privileges.php:971 msgid "You have added a new user." msgstr "Anda telah menambah pengguna baru." -#: server_privileges.php:1191 +#: server_privileges.php:1196 #, php-format msgid "You have updated the privileges for %s." msgstr "Anda telah mengemaskini privilej bagi %s." -#: server_privileges.php:1215 +#: server_privileges.php:1220 #, php-format msgid "You have revoked the privileges for %s" msgstr "Anda telah menarikbalik privilej Keistimewaan untuk %s" -#: server_privileges.php:1251 +#: server_privileges.php:1256 #, php-format msgid "The password for %s was changed successfully." msgstr "" -#: server_privileges.php:1271 +#: server_privileges.php:1276 #, php-format msgid "Deleting %s" msgstr "" -#: server_privileges.php:1282 +#: server_privileges.php:1287 msgid "No users selected for deleting!" msgstr "" -#: server_privileges.php:1285 +#: server_privileges.php:1290 msgid "Reloading the privileges" msgstr "" -#: server_privileges.php:1300 +#: server_privileges.php:1305 msgid "The selected users have been deleted successfully." msgstr "" -#: server_privileges.php:1335 +#: server_privileges.php:1344 msgid "The privileges were reloaded successfully." msgstr "" -#: server_privileges.php:1363 server_privileges.php:1649 +#: server_privileges.php:1380 server_privileges.php:1669 msgid "Edit Privileges" msgstr "Ubah Privilej" -#: server_privileges.php:1372 +#: server_privileges.php:1389 msgid "Revoke" msgstr "TarikBalik" -#: server_privileges.php:1404 +#: server_privileges.php:1424 msgid "User overview" msgstr "" -#: server_privileges.php:1541 server_privileges.php:1723 -#: server_privileges.php:2072 +#: server_privileges.php:1561 server_privileges.php:1743 +#: server_privileges.php:2093 #, fuzzy msgid "Grant" msgstr "Cetak" -#: server_privileges.php:1560 server_privileges.php:2162 +#: server_privileges.php:1580 server_privileges.php:2183 msgid "Any" msgstr "Sebarang" -#: server_privileges.php:1609 server_privileges.php:1633 -#: server_privileges.php:2027 server_privileges.php:2216 +#: server_privileges.php:1629 server_privileges.php:1653 +#: server_privileges.php:2048 server_privileges.php:2237 msgid "Add a new User" msgstr "Tambah Pengguna Baru" -#: server_privileges.php:1614 +#: server_privileges.php:1634 msgid "Remove selected users" msgstr "" -#: server_privileges.php:1617 +#: server_privileges.php:1637 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 +#: server_privileges.php:1638 server_privileges.php:1639 +#: server_privileges.php:1640 msgid "Drop the databases that have the same names as the users." msgstr "" -#: server_privileges.php:1636 +#: server_privileges.php:1656 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -4758,91 +4798,91 @@ msgid "" "sreload the privileges%s before you continue." msgstr "" -#: server_privileges.php:1684 +#: server_privileges.php:1704 msgid "The selected user was not found in the privilege table." msgstr "" -#: server_privileges.php:1724 +#: server_privileges.php:1744 msgid "Column-specific privileges" msgstr "" -#: server_privileges.php:1925 +#: server_privileges.php:1945 msgid "Add privileges on the following database" msgstr "" -#: server_privileges.php:1943 +#: server_privileges.php:1963 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" -#: server_privileges.php:1946 +#: server_privileges.php:1966 msgid "Add privileges on the following table" msgstr "" -#: server_privileges.php:2003 +#: server_privileges.php:2023 msgid "Change Login Information / Copy User" msgstr "" -#: server_privileges.php:2006 +#: server_privileges.php:2026 msgid "Create a new user with the same privileges and ..." msgstr "" -#: server_privileges.php:2008 +#: server_privileges.php:2028 msgid "... keep the old one." msgstr "" -#: server_privileges.php:2009 +#: server_privileges.php:2029 msgid " ... delete the old one from the user tables." msgstr "" -#: server_privileges.php:2010 +#: server_privileges.php:2030 msgid "" " ... revoke all active privileges from the old one and delete it afterwards." msgstr "" -#: server_privileges.php:2011 +#: server_privileges.php:2031 msgid "" " ... delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" -#: server_privileges.php:2033 +#: server_privileges.php:2054 msgid "Database for user" msgstr "" -#: server_privileges.php:2037 +#: server_privileges.php:2058 #, fuzzy #| msgid "None" msgctxt "Create none database for user" msgid "None" msgstr "Tiada" -#: server_privileges.php:2038 +#: server_privileges.php:2059 msgid "Create database with same name and grant all privileges" msgstr "" -#: server_privileges.php:2039 +#: server_privileges.php:2060 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "" -#: server_privileges.php:2042 +#: server_privileges.php:2063 #, php-format msgid "Grant all privileges on database "%s"" msgstr "" -#: server_privileges.php:2065 +#: server_privileges.php:2086 #, php-format msgid "Users having access to "%s"" msgstr "" -#: server_privileges.php:2173 +#: server_privileges.php:2194 msgid "global" msgstr "" -#: server_privileges.php:2175 +#: server_privileges.php:2196 msgid "database-specific" msgstr "" -#: server_privileges.php:2177 +#: server_privileges.php:2198 msgid "wildcard" msgstr "" @@ -7524,6 +7564,10 @@ msgstr "" msgid "Show insert query" msgstr "" +#: tbl_change.php:1143 +msgid "and then" +msgstr "" + #: tbl_change.php:1147 msgid "Go back to previous page" msgstr "Kembali ke muka sebelumnya" @@ -7603,7 +7647,7 @@ msgstr "(\"PRIMARY\" mesti nama dan semesti dari kekunci utama!)" msgid "Add to index  %s column(s)" msgstr "Tambah ke indeks  %s kolum" -#: tbl_indexes.php:256 tbl_structure.php:589 tbl_structure.php:600 +#: tbl_indexes.php:256 tbl_structure.php:587 tbl_structure.php:598 msgid "Column count has to be larger than zero." msgstr "" @@ -7719,39 +7763,39 @@ msgstr "Semak integriti rujukan:" msgid "Show tables" msgstr "Papar jadual" -#: tbl_printview.php:310 tbl_structure.php:656 +#: tbl_printview.php:310 tbl_structure.php:654 msgid "Space usage" msgstr "Penggunaan ruang" -#: tbl_printview.php:314 tbl_structure.php:660 +#: tbl_printview.php:314 tbl_structure.php:658 msgid "Usage" msgstr "Penggunaan" -#: tbl_printview.php:341 tbl_structure.php:687 +#: tbl_printview.php:341 tbl_structure.php:685 msgid "Effective" msgstr "Berkesan" -#: tbl_printview.php:366 tbl_structure.php:725 +#: tbl_printview.php:366 tbl_structure.php:723 msgid "Row Statistics" msgstr "Statistik Baris" -#: tbl_printview.php:369 tbl_structure.php:728 +#: tbl_printview.php:369 tbl_structure.php:726 msgid "Statements" msgstr "Penyataan" -#: tbl_printview.php:380 tbl_structure.php:740 +#: tbl_printview.php:380 tbl_structure.php:738 msgid "static" msgstr "" -#: tbl_printview.php:382 tbl_structure.php:742 +#: tbl_printview.php:382 tbl_structure.php:740 msgid "dynamic" msgstr "dinamik" -#: tbl_printview.php:404 tbl_structure.php:785 +#: tbl_printview.php:404 tbl_structure.php:783 msgid "Row length" msgstr "Panjang baris" -#: tbl_printview.php:414 tbl_structure.php:793 +#: tbl_printview.php:414 tbl_structure.php:791 msgid " Row size " msgstr " Saiz baris " @@ -7823,49 +7867,49 @@ msgstr "Tiada" msgid "Column %s has been dropped" msgstr "Jadual %s telah digugurkan" -#: tbl_structure.php:385 +#: tbl_structure.php:384 #, php-format msgid "A primary key has been added on %s" msgstr "Kekunci utama telah ditambah pada %s" -#: tbl_structure.php:400 tbl_structure.php:414 tbl_structure.php:428 +#: tbl_structure.php:398 tbl_structure.php:412 tbl_structure.php:426 #, php-format msgid "An index has been added on %s" msgstr "Indeks telah ditambah pada %s" -#: tbl_structure.php:506 tbl_structure.php:508 +#: tbl_structure.php:504 tbl_structure.php:506 msgid "Relation view" msgstr "Paparan Hubungan" -#: tbl_structure.php:515 tbl_structure.php:517 +#: tbl_structure.php:513 tbl_structure.php:515 msgid "Propose table structure" msgstr "Cadangkan struktur jadual" -#: tbl_structure.php:540 +#: tbl_structure.php:538 #, fuzzy msgid "Add column" msgstr "Tambah medan baru" -#: tbl_structure.php:554 +#: tbl_structure.php:552 msgid "At End of Table" msgstr "Pada Akhir Jadual" -#: tbl_structure.php:555 +#: tbl_structure.php:553 msgid "At Beginning of Table" msgstr "Pada Awalan Jadual" -#: tbl_structure.php:556 +#: tbl_structure.php:554 #, php-format msgid "After %s" msgstr "Selepas %s" -#: tbl_structure.php:594 +#: tbl_structure.php:592 #, fuzzy, php-format #| msgid "Create an index on %s columns" msgid "Create an index on  %s columns" msgstr "Cipta indeks pada  %s " -#: tbl_structure.php:756 +#: tbl_structure.php:754 msgid "partitioned" msgstr "" @@ -8212,10 +8256,6 @@ msgstr "Tukarnama jadual ke" #~ msgid "Process list" #~ msgstr "Senarai Proses" -#, fuzzy -#~ msgid "Reload privileges" -#~ msgstr "Tiada Privilej" - #, fuzzy #~| msgid "Select All" #~ msgctxt "Create SELECT * query" diff --git a/po/nb.po b/po/nb.po index 0bdcf2d05..0f1287546 100755 --- a/po/nb.po +++ b/po/nb.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-06-13 09:03-0400\n" +"POT-Creation-Date: 2010-06-22 00:55+0530\n" "PO-Revision-Date: 2010-06-09 14:17+0200\n" "Last-Translator: \n" "Language-Team: norwegian \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:1514 +#: libraries/display_tbl.lib.php:417 server_privileges.php:1534 msgid "Show all" msgstr "Vis alle" -#: browse_foreigners.php:82 libraries/common.lib.php:2313 +#: browse_foreigners.php:82 libraries/common.lib.php:2317 #: 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,18 +37,18 @@ 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:2831 -#: libraries/common.lib.php:2838 libraries/db_links.inc.php:75 +#: db_structure.php:106 libraries/common.lib.php:2835 +#: libraries/common.lib.php:2842 libraries/db_links.inc.php:75 #: libraries/tbl_links.inc.php:63 msgid "Search" msgstr "Søk" -#: browse_foreigners.php:153 db_operations.php:385 db_operations.php:429 -#: db_operations.php:499 db_operations.php:609 db_search.php:362 -#: db_structure.php:567 js/messages.php:48 libraries/Config.class.php:1046 +#: browse_foreigners.php:153 db_operations.php:394 db_operations.php:438 +#: db_operations.php:508 db_operations.php:618 db_search.php:362 +#: db_structure.php:565 js/messages.php:53 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:1335 libraries/common.lib.php:2288 +#: libraries/common.lib.php:1335 libraries/common.lib.php:2292 #: 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,15 +59,15 @@ 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:664 server_privileges.php:1624 -#: server_privileges.php:1971 server_privileges.php:2018 -#: server_privileges.php:2057 server_replication.php:235 +#: server_privileges.php:665 server_privileges.php:1644 +#: server_privileges.php:1991 server_privileges.php:2038 +#: server_privileges.php:2078 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 #: tbl_operations.php:302 tbl_operations.php:499 tbl_operations.php:561 -#: tbl_operations.php:681 tbl_select.php:327 tbl_structure.php:562 -#: tbl_structure.php:597 tbl_tracking.php:395 tbl_tracking.php:512 +#: tbl_operations.php:681 tbl_select.php:327 tbl_structure.php:560 +#: tbl_structure.php:595 tbl_tracking.php:395 tbl_tracking.php:512 #: view_create.php:182 view_operations.php:101 msgid "Go" msgstr "Utfør" @@ -93,7 +93,7 @@ msgstr "Bruk denne verdien" msgid "Database %1$s has been created." msgstr "Databasen %1$s har blitt opprettet." -#: db_datadict.php:49 db_operations.php:378 +#: db_datadict.php:49 db_operations.php:387 msgid "Database comment: " msgstr "Database kommentar: " @@ -118,10 +118,10 @@ 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:2070 +#: pdf_schema.php:1263 pdf_schema.php:1284 server_privileges.php:2091 #: 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 +#: tbl_structure.php:657 tbl_tracking.php:274 tbl_tracking.php:321 msgid "Type" msgstr "Type" @@ -134,7 +134,7 @@ msgstr "Type" msgid "Null" msgstr "Null" -#: db_datadict.php:178 db_structure.php:501 libraries/export/htmlword.php:247 +#: db_datadict.php:178 db_structure.php:499 libraries/export/htmlword.php:247 #: libraries/export/latex.php:360 libraries/export/odt.php:303 #: libraries/export/texytext.php:236 libraries/tbl_properties.inc.php:106 #: pdf_schema.php:1266 pdf_schema.php:1287 tbl_printview.php:146 @@ -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: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 +#: pdf_schema.php:1344 server_privileges.php:1588 server_privileges.php:1599 +#: server_privileges.php:1909 server_privileges.php:1914 +#: server_privileges.php:2208 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:1565 -#: server_privileges.php:1579 server_privileges.php:1889 -#: server_privileges.php:1892 server_privileges.php:2187 sql.php:193 +#: server_databases.php:64 server_privileges.php:1585 +#: server_privileges.php:1599 server_privileges.php:1909 +#: server_privileges.php:1912 server_privileges.php:2208 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" @@ -207,119 +207,115 @@ msgstr "Velg alle" msgid "Unselect All" msgstr "Fjern alle valgte" -#: db_operations.php:38 tbl_create.php:54 +#: db_operations.php:43 tbl_create.php:54 msgid "The database name is empty!" msgstr "Databasen er uten navn!" -#: db_operations.php:236 +#: db_operations.php:241 #, php-format msgid "Database %s has been renamed to %s" msgstr "Databasen %s har endret navn til %s" -#: db_operations.php:240 +#: db_operations.php:245 #, php-format msgid "Database %s has been copied to %s" msgstr "Databasen %s har blitt kopiert til %s" -#: db_operations.php:412 +#: db_operations.php:421 msgid "Rename database to" msgstr "Endre databasens navn til" -#: db_operations.php:417 server_processlist.php:57 +#: db_operations.php:426 server_processlist.php:57 msgid "Command" msgstr "Kommando" -#: db_operations.php:429 tbl_change.php:1143 -msgid "and then" -msgstr "og så" - -#: db_operations.php:455 +#: db_operations.php:464 msgid "Copy database to" msgstr "Kopier databasen til" -#: db_operations.php:462 tbl_operations.php:528 tbl_tracking.php:388 +#: db_operations.php:471 tbl_operations.php:528 tbl_tracking.php:388 msgid "Structure only" msgstr "Kun struktur" -#: db_operations.php:463 tbl_operations.php:529 tbl_tracking.php:390 +#: db_operations.php:472 tbl_operations.php:529 tbl_tracking.php:390 msgid "Structure and data" msgstr "Struktur og data" -#: db_operations.php:464 tbl_operations.php:530 tbl_tracking.php:389 +#: db_operations.php:473 tbl_operations.php:530 tbl_tracking.php:389 msgid "Data only" msgstr "Bare data" -#: db_operations.php:472 +#: db_operations.php:481 msgid "CREATE DATABASE before copying" msgstr "CREATE DATABASE før kopiering" -#: db_operations.php:475 libraries/export/sql.php:52 +#: db_operations.php:484 libraries/export/sql.php:52 #: libraries/export/sql.php:74 libraries/export/sql.php:76 #: libraries/export/sql.php:82 tbl_operations.php:536 #, php-format msgid "Add %s" msgstr "Legg til %s" -#: db_operations.php:479 libraries/export/sql.php:78 tbl_operations.php:299 +#: db_operations.php:488 libraries/export/sql.php:78 tbl_operations.php:299 #: tbl_operations.php:538 msgid "Add AUTO_INCREMENT value" msgstr "Legg til AUTO_INCREMENT verdi" -#: db_operations.php:483 tbl_operations.php:545 +#: db_operations.php:492 tbl_operations.php:545 msgid "Add constraints" msgstr "Legg til begrensninger" -#: db_operations.php:496 +#: db_operations.php:505 msgid "Switch to copied database" msgstr "Bytt til kopiert database" -#: db_operations.php:537 +#: db_operations.php:546 msgid "BLOB Repository" msgstr "BLOB lager" -#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1352 -#: libraries/server_links.inc.php:49 server_processlist.php:59 +#: db_operations.php:549 db_tracking.php:76 libraries/common.lib.php:1352 +#: libraries/server_links.inc.php:50 server_processlist.php:59 #: tbl_tracking.php:596 test/theme.php:101 msgid "Status" msgstr "Status" -#: db_operations.php:548 +#: db_operations.php:557 msgctxt "BLOB repository" msgid "Enabled" msgstr "Påslått" -#: db_operations.php:552 +#: db_operations.php:561 msgid "Disable" msgstr "Avslå" -#: db_operations.php:562 +#: db_operations.php:571 msgid "Damaged" msgstr "Skadet" -#: db_operations.php:566 +#: db_operations.php:575 msgctxt "BLOB repository" msgid "Repair" msgstr "Reparer" -#: db_operations.php:574 +#: db_operations.php:583 msgctxt "BLOB repository" msgid "Disabled" msgstr "Avslått" -#: db_operations.php:578 +#: db_operations.php:587 msgid "Enable" msgstr "Slå på" -#: db_operations.php:602 libraries/Index.class.php:448 +#: db_operations.php:611 libraries/Index.class.php:448 #: libraries/db_structure.lib.php:62 libraries/mysql_charsets.lib.php:107 #: libraries/tbl_properties.inc.php:107 libraries/tbl_properties.inc.php:730 #: server_collations.php:54 server_collations.php:66 server_databases.php:111 #: tbl_operations.php:363 tbl_select.php:137 tbl_structure.php:179 -#: tbl_structure.php:767 tbl_tracking.php:275 tbl_tracking.php:326 +#: tbl_structure.php:765 tbl_tracking.php:275 tbl_tracking.php:326 msgid "Collation" msgstr "Sammenligning" -#: db_operations.php:615 main.php:316 pdf_schema.php:34 +#: db_operations.php:624 main.php:316 pdf_schema.php:34 #, php-format msgid "" "The additional features for working with linked tables have been " @@ -328,14 +324,14 @@ msgstr "" "Tilleggsfunksjonene for å kunne jobbe med koblede tabeller er deaktivert. " "For å finne ut hvorfor, klikk %sher%s." -#: db_operations.php:648 +#: db_operations.php:657 msgid "Edit PDF Pages" 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:1665 -#: server_privileges.php:1721 server_privileges.php:1985 +#: libraries/header.inc.php:130 pdf_pages.php:424 server_privileges.php:1685 +#: server_privileges.php:1741 server_privileges.php:2005 #: server_synchronize.php:423 server_synchronize.php:866 tbl_tracking.php:592 #: test/theme.php:75 msgid "Table" @@ -344,7 +340,7 @@ msgstr "Tabell" #: db_printview.php:105 libraries/db_structure.lib.php:56 #: libraries/header_printview.inc.php:63 libraries/import.lib.php:146 #: navigation.php:638 navigation.php:660 server_databases.php:122 -#: tbl_printview.php:394 tbl_structure.php:365 tbl_structure.php:777 +#: tbl_printview.php:394 tbl_structure.php:365 tbl_structure.php:775 msgid "Rows" msgstr "Rader" @@ -352,30 +348,30 @@ msgstr "Rader" msgid "Size" msgstr "Størrelse" -#: db_printview.php:162 db_structure.php:457 libraries/export/sql.php:559 +#: db_printview.php:162 db_structure.php:455 libraries/export/sql.php:559 #: libraries/export/sql.php:899 msgid "in use" msgstr "i bruk" #: db_printview.php:187 libraries/db_info.inc.php:88 #: libraries/export/sql.php:514 pdf_schema.php:1241 tbl_printview.php:434 -#: tbl_structure.php:809 +#: tbl_structure.php:807 msgid "Creation" msgstr "Opprettet" #: db_printview.php:196 libraries/db_info.inc.php:93 #: libraries/export/sql.php:519 pdf_schema.php:1246 tbl_printview.php:444 -#: tbl_structure.php:817 +#: tbl_structure.php:815 msgid "Last update" msgstr "Sist oppdatert" #: db_printview.php:205 libraries/db_info.inc.php:98 #: libraries/export/sql.php:524 pdf_schema.php:1251 tbl_printview.php:454 -#: tbl_structure.php:825 +#: tbl_structure.php:823 msgid "Last check" msgstr "Sist kontrollert" -#: db_printview.php:222 db_structure.php:480 +#: db_printview.php:222 db_structure.php:478 #, php-format msgid "%s table" msgid_plural "%s tables" @@ -435,7 +431,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:297 tbl_change.php:1031 tbl_indexes.php:250 +#: server_privileges.php:298 tbl_change.php:1031 tbl_indexes.php:250 #: tbl_select.php:288 msgid "Or" msgstr "Eller" @@ -504,9 +500,9 @@ 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:2833 +#: db_structure.php:105 libraries/common.lib.php:2837 #: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50 -#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:467 +#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:465 msgid "Browse" msgstr "Se på" @@ -549,36 +545,36 @@ 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:2832 libraries/sql_query_form.lib.php:334 +#: libraries/common.lib.php:2836 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:2829 libraries/common.lib.php:2836 +#: libraries/common.lib.php:2833 libraries/common.lib.php:2840 #: 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:1106 #: libraries/tbl_links.inc.php:56 pmd_general.php:134 -#: server_privileges.php:593 server_replication.php:315 tbl_tracking.php:269 +#: server_privileges.php:594 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:1656 +#: db_structure.php:543 db_structure.php:544 db_tracking.php:91 +#: libraries/Index.class.php:483 libraries/common.lib.php:1657 #: 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 -#: tbl_structure.php:152 tbl_structure.php:471 +#: tbl_structure.php:152 tbl_structure.php:469 msgid "Drop" 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:1655 +#: db_structure.php:541 db_structure.php:542 libraries/common.lib.php:1656 #: libraries/mult_submits.inc.php:39 libraries/tbl_links.inc.php:105 msgid "Empty" msgstr "Tøm" @@ -588,111 +584,111 @@ msgstr "Tøm" msgid "Table %s has been emptied" msgstr "Tabellen %s har blitt tømt" -#: db_structure.php:326 libraries/tbl_links.inc.php:133 +#: db_structure.php:325 libraries/tbl_links.inc.php:133 #, php-format msgid "View %s has been dropped" msgstr "Visningen %s har blitt slettet" -#: db_structure.php:326 libraries/tbl_links.inc.php:133 +#: db_structure.php:325 libraries/tbl_links.inc.php:133 #, php-format msgid "Table %s has been dropped" msgstr "Tabellen %s har blitt slettet" -#: db_structure.php:333 +#: db_structure.php:332 msgid "Tracking is active." msgstr "Overvåkning er aktiv." -#: db_structure.php:335 +#: db_structure.php:334 msgid "Tracking is not active." msgstr "Overvåkning er ikke aktiv." -#: db_structure.php:420 libraries/display_tbl.lib.php:1944 +#: db_structure.php:418 libraries/display_tbl.lib.php:1944 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation%" "s." msgstr "Denne visningen har minst dette antall rader. Sjekk %sdocumentation%s." -#: db_structure.php:434 db_structure.php:448 libraries/header.inc.php:126 +#: db_structure.php:432 db_structure.php:446 libraries/header.inc.php:130 #: libraries/tbl_info.inc.php:66 tbl_structure.php:185 test/theme.php:74 msgid "View" msgstr "Vis" -#: db_structure.php:485 libraries/db_structure.lib.php:49 -#: libraries/server_links.inc.php:70 server_replication.php:33 +#: db_structure.php:483 libraries/db_structure.lib.php:49 +#: libraries/server_links.inc.php:71 server_replication.php:33 #: server_replication.php:164 server_status.php:369 msgid "Replication" msgstr "Replikering" -#: db_structure.php:489 +#: db_structure.php:487 msgid "Sum" msgstr "Sum" -#: db_structure.php:496 libraries/StorageEngine.class.php:356 +#: db_structure.php:494 libraries/StorageEngine.class.php:356 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "%s er standard lagringsmotor for denne MySQL tjeneren." -#: db_structure.php:524 db_structure.php:541 db_structure.php:542 +#: db_structure.php:522 db_structure.php:539 db_structure.php:540 #: 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:1596 tbl_structure.php:455 -#: tbl_structure.php:464 +#: server_databases.php:351 server_privileges.php:1616 tbl_structure.php:453 +#: tbl_structure.php:462 msgid "With selected:" msgstr "Med avkrysset:" -#: db_structure.php:527 libraries/display_tbl.lib.php:2076 -#: server_databases.php:348 server_privileges.php:569 -#: server_privileges.php:1599 tbl_structure.php:458 +#: db_structure.php:525 libraries/display_tbl.lib.php:2076 +#: server_databases.php:348 server_privileges.php:570 +#: server_privileges.php:1619 tbl_structure.php:456 msgid "Check All" msgstr "Merk alle" -#: db_structure.php:531 libraries/display_tbl.lib.php:2077 +#: db_structure.php:529 libraries/display_tbl.lib.php:2077 #: libraries/replication_gui.lib.php:33 server_databases.php:350 -#: server_privileges.php:572 server_privileges.php:1603 tbl_structure.php:462 +#: server_privileges.php:573 server_privileges.php:1623 tbl_structure.php:460 msgid "Uncheck All" msgstr "Fjern merking" -#: db_structure.php:536 +#: db_structure.php:534 msgid "Check tables having overhead" msgstr "Merk overheng" -#: db_structure.php:547 db_structure.php:548 db_structure.php:599 +#: db_structure.php:545 db_structure.php:546 db_structure.php:597 #: libraries/display_tbl.lib.php:2180 libraries/mult_submits.inc.php:28 -#: tbl_structure.php:492 tbl_structure.php:494 +#: tbl_structure.php:490 tbl_structure.php:492 msgid "Print view" msgstr "Utskriftsvennlig forhåndsvisning" -#: db_structure.php:549 db_structure.php:550 libraries/mult_submits.inc.php:42 +#: db_structure.php:547 db_structure.php:548 libraries/mult_submits.inc.php:42 #: tbl_operations.php:581 msgid "Check table" msgstr "Kontroller tabell" -#: db_structure.php:551 db_structure.php:552 libraries/mult_submits.inc.php:47 -#: tbl_operations.php:621 tbl_structure.php:709 tbl_structure.php:711 +#: db_structure.php:549 db_structure.php:550 libraries/mult_submits.inc.php:47 +#: tbl_operations.php:621 tbl_structure.php:707 tbl_structure.php:709 msgid "Optimize table" msgstr "Optimiser tabell" -#: db_structure.php:553 db_structure.php:554 libraries/mult_submits.inc.php:52 +#: db_structure.php:551 db_structure.php:552 libraries/mult_submits.inc.php:52 #: tbl_operations.php:611 msgid "Repair table" msgstr "Reparer tabell" -#: db_structure.php:555 db_structure.php:556 libraries/mult_submits.inc.php:57 +#: db_structure.php:553 db_structure.php:554 libraries/mult_submits.inc.php:57 #: tbl_operations.php:601 msgid "Analyze table" msgstr "Analyser tabell" -#: db_structure.php:557 db_structure.php:558 libraries/db_links.inc.php:71 +#: db_structure.php:555 db_structure.php:556 libraries/db_links.inc.php:71 #: 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:1380 +#: libraries/server_links.inc.php:85 libraries/tbl_links.inc.php:82 +#: pmd_pdf.php:84 pmd_pdf.php:109 server_privileges.php:1397 #: setup/frames/menu.inc.php:22 tbl_row_action.php:59 msgid "Export" msgstr "Eksporter" -#: db_structure.php:606 libraries/display_pdf_schema.lib.php:44 +#: db_structure.php:604 libraries/display_pdf_schema.lib.php:44 msgid "Data Dictionary" msgstr "Dataordbok" @@ -703,10 +699,10 @@ msgstr "Overvåkede tabeller" #: db_tracking.php:71 libraries/export/htmlword.php:86 #: libraries/export/latex.php:148 libraries/export/odt.php:113 #: libraries/export/sql.php:342 libraries/export/texytext.php:84 -#: libraries/export/xml.php:255 libraries/header.inc.php:106 +#: libraries/export/xml.php:255 libraries/header.inc.php:110 #: libraries/header_printview.inc.php:58 server_databases.php:169 -#: server_privileges.php:1660 server_privileges.php:1721 -#: server_privileges.php:1979 server_processlist.php:56 +#: server_privileges.php:1680 server_privileges.php:1741 +#: server_privileges.php:1999 server_processlist.php:56 #: server_synchronize.php:1179 server_synchronize.php:1183 #: tbl_tracking.php:591 test/theme.php:65 msgid "Database" @@ -726,8 +722,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:1542 server_privileges.php:1725 -#: server_privileges.php:2073 tbl_structure.php:187 +#: server_privileges.php:1562 server_privileges.php:1745 +#: server_privileges.php:2094 tbl_structure.php:187 msgid "Action" msgstr "Handling" @@ -761,8 +757,8 @@ msgstr "Strukturøyeblikksbilde" msgid "Untracked tables" msgstr "Ikke overvåkede tabeller" -#: db_tracking.php:172 db_tracking.php:174 tbl_structure.php:528 -#: tbl_structure.php:530 +#: db_tracking.php:172 db_tracking.php:174 tbl_structure.php:526 +#: tbl_structure.php:528 msgid "Track table" msgstr "Overvåk tabell" @@ -930,316 +926,365 @@ msgstr "Vertsnavnet er tomt!" msgid "The user name is empty!" msgstr "Brukernavnet er tomt!" -#: js/messages.php:44 server_privileges.php:1236 user_password.php:70 +#: js/messages.php:44 server_privileges.php:1241 user_password.php:70 msgid "The password is empty!" msgstr "Passordet er blankt!" -#: js/messages.php:45 server_privileges.php:1234 user_password.php:73 +#: js/messages.php:45 server_privileges.php:1239 user_password.php:73 msgid "The passwords aren't the same!" msgstr "Passordene er ikke like!" -#: js/messages.php:49 pmd_general.php:342 pmd_general.php:379 +#: js/messages.php:46 +#, fuzzy +#| msgid "Add a new User" +msgid "Add a New User" +msgstr "Legg til en ny bruker" + +#: js/messages.php:47 js/messages.php:54 pmd_general.php:342 +#: pmd_general.php:379 msgid "Cancel" msgstr "Avbryt" -#: js/messages.php:52 pmd_save_pos.php:54 +#: js/messages.php:48 +#, fuzzy +#| msgid "Create version" +msgid "Create User" +msgstr "Opprett versjon" + +#: js/messages.php:49 +#, fuzzy +#| msgid "Reloading the privileges" +msgid "Reloading Privileges" +msgstr "Oppfrisker privilegiene" + +#: js/messages.php:50 +#, fuzzy +#| msgid "Remove selected users" +msgid "Removing Selected Users" +msgstr "Fjern valgte brukere" + +#: js/messages.php:57 +#, fuzzy +#| msgid "Load" +msgid "Loading" +msgstr "Last" + +#: js/messages.php:58 +#, fuzzy +#| msgid "Processes" +msgid "Processing Request" +msgstr "Prosesser" + +#: js/messages.php:59 +msgid "Error in Processing Request" +msgstr "" + +#: js/messages.php:60 +msgid "Dropping Column" +msgstr "" + +#: js/messages.php:61 +msgid "Adding Primary Key" +msgstr "" + +#: js/messages.php:64 pmd_save_pos.php:54 msgid "Modifications have been saved" msgstr "Endringene er lagret" -#: js/messages.php:53 pmd_relation_upd.php:49 +#: js/messages.php:65 pmd_relation_upd.php:49 msgid "Relation deleted" msgstr "Relasjon slettet" -#: js/messages.php:54 pmd_relation_new.php:64 +#: js/messages.php:66 pmd_relation_new.php:64 msgid "FOREIGN KEY relation added" msgstr "FOREIGN KEY relasjon lagt til" -#: js/messages.php:55 pmd_relation_new.php:86 +#: js/messages.php:67 pmd_relation_new.php:86 msgid "Internal relation added" msgstr "Intern relasjon lagt til" -#: js/messages.php:56 pmd_relation_new.php:63 pmd_relation_new.php:88 +#: js/messages.php:68 pmd_relation_new.php:63 pmd_relation_new.php:88 msgid "Error: Relation not added." msgstr "Feil: Relasjon ikke opprettet." -#: js/messages.php:57 pmd_relation_new.php:31 +#: js/messages.php:69 pmd_relation_new.php:31 msgid "Error: relation already exists." msgstr "Feil: relasjoner eksisterer allerede." -#: js/messages.php:58 +#: js/messages.php:70 msgid "Error saving coordinates for Designer." msgstr "Feil oppstod under lagring av Designerkoordinater." -#: js/messages.php:59 libraries/relation.lib.php:107 +#: js/messages.php:71 libraries/relation.lib.php:107 #: libraries/relation.lib.php:119 msgid "General relation features" msgstr "Generelle relasjonsegenskaper" -#: js/messages.php:59 libraries/relation.lib.php:101 +#: js/messages.php:71 libraries/relation.lib.php:101 #: libraries/relation.lib.php:108 msgid "Disabled" msgstr "Avslått" -#: js/messages.php:60 +#: js/messages.php:72 msgid "Select referenced key" msgstr "Velg referert nøkkel" -#: js/messages.php:61 +#: js/messages.php:73 msgid "Select Foreign Key" msgstr "Velg fremmednøkkel" -#: js/messages.php:62 +#: js/messages.php:74 msgid "Please select the primary key or a unique key" msgstr "Velg primærnøkkelen eller en unik nøkkel" -#: js/messages.php:63 pmd_general.php:77 tbl_relation.php:548 +#: js/messages.php:75 pmd_general.php:77 tbl_relation.php:548 msgid "Choose column to display" msgstr "Velg kolonne for visning" #. l10n: Display text for calendar close link -#: js/messages.php:73 +#: js/messages.php:85 msgid "Done" msgstr "Utført" #. l10n: Display text for previous month link in calendar -#: js/messages.php:75 +#: js/messages.php:87 msgid "Prev" msgstr "Forrige" #. l10n: Display text for next month link in calendar -#: js/messages.php:77 libraries/common.lib.php:2353 -#: libraries/common.lib.php:2356 libraries/display_tbl.lib.php:338 +#: js/messages.php:89 libraries/common.lib.php:2357 +#: libraries/common.lib.php:2360 libraries/display_tbl.lib.php:338 #: server_binlog.php:205 server_binlog.php:207 tbl_printview.php:424 -#: tbl_structure.php:801 +#: tbl_structure.php:799 msgid "Next" msgstr "Neste" #. l10n: Display text for current month link in calendar -#: js/messages.php:79 +#: js/messages.php:91 msgid "Today" msgstr "I dag" -#: js/messages.php:82 +#: js/messages.php:94 msgid "January" msgstr "Januar" -#: js/messages.php:83 +#: js/messages.php:95 msgid "February" msgstr "Februar" -#: js/messages.php:84 +#: js/messages.php:96 msgid "March" msgstr "Mars" -#: js/messages.php:85 +#: js/messages.php:97 msgid "April" msgstr "April" -#: js/messages.php:86 +#: js/messages.php:98 msgid "May" msgstr "Mai" -#: js/messages.php:87 +#: js/messages.php:99 msgid "June" msgstr "Juni" -#: js/messages.php:88 +#: js/messages.php:100 msgid "July" msgstr "Juli" -#: js/messages.php:89 +#: js/messages.php:101 msgid "August" msgstr "August" -#: js/messages.php:90 +#: js/messages.php:102 msgid "September" msgstr "September" -#: js/messages.php:91 +#: js/messages.php:103 msgid "October" msgstr "Oktober" -#: js/messages.php:92 +#: js/messages.php:104 msgid "November" msgstr "November" -#: js/messages.php:93 +#: js/messages.php:105 msgid "December" msgstr "Desember" #. l10n: Short month name -#: js/messages.php:97 libraries/common.lib.php:1557 +#: js/messages.php:109 libraries/common.lib.php:1557 msgid "Jan" msgstr "Jan" #. l10n: Short month name -#: js/messages.php:99 libraries/common.lib.php:1559 +#: js/messages.php:111 libraries/common.lib.php:1559 msgid "Feb" msgstr "Feb" #. l10n: Short month name -#: js/messages.php:101 libraries/common.lib.php:1561 +#: js/messages.php:113 libraries/common.lib.php:1561 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:103 libraries/common.lib.php:1563 +#: js/messages.php:115 libraries/common.lib.php:1563 msgid "Apr" msgstr "Apr" #. l10n: Short month name -#: js/messages.php:105 libraries/common.lib.php:1565 +#: js/messages.php:117 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:1567 +#: js/messages.php:119 libraries/common.lib.php:1567 msgid "Jun" msgstr "Jun" #. l10n: Short month name -#: js/messages.php:109 libraries/common.lib.php:1569 +#: js/messages.php:121 libraries/common.lib.php:1569 msgid "Jul" msgstr "Jul" #. l10n: Short month name -#: js/messages.php:111 libraries/common.lib.php:1571 +#: js/messages.php:123 libraries/common.lib.php:1571 msgid "Aug" msgstr "Aug" #. l10n: Short month name -#: js/messages.php:113 libraries/common.lib.php:1573 +#: js/messages.php:125 libraries/common.lib.php:1573 msgid "Sep" msgstr "Sep" #. l10n: Short month name -#: js/messages.php:115 libraries/common.lib.php:1575 +#: js/messages.php:127 libraries/common.lib.php:1575 msgid "Oct" msgstr "Okt" #. l10n: Short month name -#: js/messages.php:117 libraries/common.lib.php:1577 +#: js/messages.php:129 libraries/common.lib.php:1577 msgid "Nov" msgstr "Nov" #. l10n: Short month name -#: js/messages.php:119 libraries/common.lib.php:1579 +#: js/messages.php:131 libraries/common.lib.php:1579 msgid "Dec" msgstr "Des" -#: js/messages.php:122 +#: js/messages.php:134 msgid "Sunday" msgstr "Søndag" -#: js/messages.php:123 +#: js/messages.php:135 msgid "Monday" msgstr "Mandag" -#: js/messages.php:124 +#: js/messages.php:136 msgid "Tuesday" msgstr "Tirsdag" -#: js/messages.php:125 +#: js/messages.php:137 msgid "Wednesday" msgstr "Onsdag" -#: js/messages.php:126 +#: js/messages.php:138 msgid "Thursday" msgstr "Torsdag" -#: js/messages.php:127 +#: js/messages.php:139 msgid "Friday" msgstr "Fredag" -#: js/messages.php:128 +#: js/messages.php:140 msgid "Saturday" msgstr "Lørdag" #. l10n: Short week day name -#: js/messages.php:132 libraries/common.lib.php:1582 +#: js/messages.php:144 libraries/common.lib.php:1582 msgid "Sun" msgstr "Søn" #. l10n: Short week day name -#: js/messages.php:134 libraries/common.lib.php:1584 +#: js/messages.php:146 libraries/common.lib.php:1584 msgid "Mon" msgstr "Man" #. l10n: Short week day name -#: js/messages.php:136 libraries/common.lib.php:1586 +#: js/messages.php:148 libraries/common.lib.php:1586 msgid "Tue" msgstr "Tir" #. l10n: Short week day name -#: js/messages.php:138 libraries/common.lib.php:1588 +#: js/messages.php:150 libraries/common.lib.php:1588 msgid "Wed" msgstr "Ons" #. l10n: Short week day name -#: js/messages.php:140 libraries/common.lib.php:1590 +#: js/messages.php:152 libraries/common.lib.php:1590 msgid "Thu" msgstr "Tor" #. l10n: Short week day name -#: js/messages.php:142 libraries/common.lib.php:1592 +#: js/messages.php:154 libraries/common.lib.php:1592 msgid "Fri" msgstr "Fre" #. l10n: Short week day name -#: js/messages.php:144 libraries/common.lib.php:1594 +#: js/messages.php:156 libraries/common.lib.php:1594 msgid "Sat" msgstr "Lør" #. l10n: Minimal week day name -#: js/messages.php:148 +#: js/messages.php:160 msgid "Su" msgstr "Søndag" #. l10n: Minimal week day name -#: js/messages.php:150 +#: js/messages.php:162 msgid "Mo" msgstr "Man" #. l10n: Minimal week day name -#: js/messages.php:152 +#: js/messages.php:164 msgid "Tu" msgstr "Tir" #. l10n: Minimal week day name -#: js/messages.php:154 +#: js/messages.php:166 msgid "We" msgstr "Ons" #. l10n: Minimal week day name -#: js/messages.php:156 +#: js/messages.php:168 msgid "Th" msgstr "Tor" #. l10n: Minimal week day name -#: js/messages.php:158 +#: js/messages.php:170 msgid "Fr" msgstr "Fre" #. l10n: Minimal week day name -#: js/messages.php:160 +#: js/messages.php:172 msgid "Sa" msgstr "Lør" #. l10n: Column header for week of the year in calendar -#: js/messages.php:162 +#: js/messages.php:174 msgid "Wk" msgstr "Uke" -#: js/messages.php:164 +#: js/messages.php:176 msgid "Hour" msgstr "Time" -#: js/messages.php:165 +#: js/messages.php:177 msgid "Minute" msgstr "Minutt" -#: js/messages.php:166 +#: js/messages.php:178 msgid "Second" msgstr "Sekund" @@ -1299,7 +1344,7 @@ msgstr "Indekser" #: libraries/Index.class.php:444 libraries/mult_submits.inc.php:103 #: libraries/tbl_properties.inc.php:519 tbl_structure.php:33 -#: tbl_structure.php:155 tbl_structure.php:159 tbl_structure.php:474 +#: tbl_structure.php:155 tbl_structure.php:159 tbl_structure.php:472 #: tbl_tracking.php:322 msgid "Unique" msgstr "Unik" @@ -1342,8 +1387,8 @@ msgstr "" "Indeksene %1$s og %2$s ser ut til å være like og en av dem burde kunne " "fjernes." -#: libraries/List_Database.class.php:431 libraries/server_links.inc.php:41 -#: server_databases.php:88 server_privileges.php:1660 +#: libraries/List_Database.class.php:431 libraries/server_links.inc.php:42 +#: server_databases.php:88 server_privileges.php:1680 #: setup/lib/messages.inc.php:110 test/theme.php:93 msgid "Databases" msgstr "Databaser" @@ -1512,7 +1557,7 @@ msgstr "Passord:" msgid "Server Choice" msgstr "Tjenervalg" -#: libraries/auth/cookie.auth.lib.php:320 libraries/header.inc.php:59 +#: libraries/auth/cookie.auth.lib.php:320 libraries/header.inc.php:63 msgid "Cookies must be enabled past this point." msgstr "Cookies må være slått på forbi dette punkt." @@ -1593,7 +1638,7 @@ msgstr "" "Kan ikke bruke hverken iconv, libiconv eller recode_string funksjonene selv " "om modulene sier de er lastet. Sjekk din php-konfigurasjon." -#: libraries/common.inc.php:583 +#: libraries/common.inc.php:587 msgid "" "phpMyAdmin was unable to read your configuration file!
This might " "happen if PHP finds a parse error in it or PHP cannot find the file.
Hvis du får en blank side så er alt ok." -#: libraries/common.inc.php:594 +#: libraries/common.inc.php:598 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "Kunne ikke laste standard konfigurasjonsfil fra: %1$s" -#: libraries/common.inc.php:599 +#: libraries/common.inc.php:603 msgid "" "The $cfg['PmaAbsoluteUri'] directive MUST be set in your " "configuration file!" @@ -1621,27 +1666,27 @@ msgstr "" "$cfg['PmaAbsoluteUri'] variabelen MÅ være innstilt i din " "konfigurasjonsfil!" -#: libraries/common.inc.php:629 +#: libraries/common.inc.php:633 #, php-format msgid "Invalid server index: %s" msgstr "Ugyldig tjenerindeks: \"%s\"" -#: libraries/common.inc.php:636 +#: libraries/common.inc.php:640 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "Ugyldig tjenernavn for tjener %1$s. Kontroller din konfigurasjon." -#: libraries/common.inc.php:645 libraries/header.inc.php:96 +#: libraries/common.inc.php:649 libraries/header.inc.php:100 #: libraries/select_server.lib.php:41 libraries/select_server.lib.php:47 #: main.php:185 test/theme.php:57 msgid "Server" msgstr "Tjener" -#: libraries/common.inc.php:823 +#: libraries/common.inc.php:827 msgid "Invalid authentication method set in configuration:" msgstr "Ugyldig autentiseringsmetode satt opp i konfigureringen:" -#: libraries/common.inc.php:926 +#: libraries/common.inc.php:930 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Du burde oppgradere til %s %s eller nyere." @@ -1772,45 +1817,45 @@ msgstr "," msgid "%B %d, %Y at %I:%M %p" msgstr "%d. %B, %Y %H:%M %p" -#: libraries/common.lib.php:1907 +#: libraries/common.lib.php:1911 #, 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:2322 libraries/common.lib.php:2325 +#: libraries/common.lib.php:2326 libraries/common.lib.php:2329 #: libraries/display_tbl.lib.php:290 server_status.php:719 msgid "Begin" msgstr "Start" -#: libraries/common.lib.php:2323 libraries/common.lib.php:2326 +#: libraries/common.lib.php:2327 libraries/common.lib.php:2330 #: libraries/display_tbl.lib.php:291 server_binlog.php:168 #: server_binlog.php:170 msgid "Previous" msgstr "Forrige" -#: libraries/common.lib.php:2354 libraries/common.lib.php:2357 +#: libraries/common.lib.php:2358 libraries/common.lib.php:2361 #: libraries/display_tbl.lib.php:353 msgid "End" msgstr "Slutt" -#: libraries/common.lib.php:2430 +#: libraries/common.lib.php:2434 #, php-format msgid "Jump to database "%s"." msgstr "Hopp til databasen "%s"." -#: libraries/common.lib.php:2450 +#: libraries/common.lib.php:2454 #, 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:2830 libraries/common.lib.php:2837 +#: libraries/common.lib.php:2834 libraries/common.lib.php:2841 #: libraries/db_links.inc.php:68 libraries/export/sql.php:25 -#: libraries/import/sql.php:18 libraries/server_links.inc.php:45 +#: libraries/import/sql.php:18 libraries/server_links.inc.php:46 #: libraries/tbl_links.inc.php:60 querywindow.php:99 test/theme.php:97 msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2839 libraries/db_links.inc.php:104 +#: libraries/common.lib.php:2843 libraries/db_links.inc.php:104 #: libraries/tbl_links.inc.php:95 libraries/tbl_links.inc.php:117 #: view_operations.php:89 msgid "Operations" @@ -1858,15 +1903,15 @@ msgstr "Spørring ved eksempel (Query by Example)" msgid "Designer" msgstr "Designer" -#: libraries/db_links.inc.php:98 libraries/server_links.inc.php:88 +#: libraries/db_links.inc.php:98 libraries/server_links.inc.php:89 #: libraries/tbl_links.inc.php:91 pmd_pdf.php:84 pmd_pdf.php:110 #: setup/frames/menu.inc.php:21 msgid "Import" msgstr "Importer" -#: libraries/db_links.inc.php:111 libraries/server_links.inc.php:66 -#: server_privileges.php:111 server_privileges.php:1722 -#: server_privileges.php:2071 test/theme.php:117 +#: libraries/db_links.inc.php:111 libraries/server_links.inc.php:67 +#: server_privileges.php:112 server_privileges.php:1742 +#: server_privileges.php:2092 test/theme.php:117 msgid "Privileges" msgstr "Privilegier" @@ -1885,7 +1930,7 @@ msgid "" msgstr "Kan være unøyaktig. Se FAQ 3.11" #: libraries/db_structure.lib.php:69 server_databases.php:142 -#: tbl_printview.php:336 tbl_structure.php:682 +#: tbl_printview.php:336 tbl_structure.php:680 msgid "Overhead" msgstr "Overheng" @@ -1903,7 +1948,7 @@ msgstr "Tjeneren svarer ikke" msgid "(or the local MySQL server's socket is not correctly configured)" msgstr "(eller den lokale MySQL tjenerens sokkel er ikke korrekt konfigurert)" -#: libraries/dbi/mysql.dbi.lib.php:362 tbl_structure.php:608 +#: libraries/dbi/mysql.dbi.lib.php:362 tbl_structure.php:606 msgid "Details..." msgstr "Detaljer..." @@ -1913,22 +1958,22 @@ msgid "Change password" msgstr "Endre passord" #: libraries/display_change_password.lib.php:35 -#: libraries/replication_gui.lib.php:345 server_privileges.php:807 +#: libraries/replication_gui.lib.php:345 server_privileges.php:808 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:796 -#: server_privileges.php:800 server_privileges.php:811 -#: server_privileges.php:1538 server_synchronize.php:1175 +#: libraries/replication_gui.lib.php:349 server_privileges.php:797 +#: server_privileges.php:801 server_privileges.php:812 +#: server_privileges.php:1558 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:815 server_privileges.php:818 +#: server_privileges.php:816 server_privileges.php:819 msgid "Re-type" msgstr "Gjenta" @@ -1941,12 +1986,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:822 +#: libraries/replication_gui.lib.php:360 server_privileges.php:823 msgid "Generate Password" msgstr "Generer passord" #: libraries/display_change_password.lib.php:75 -#: libraries/replication_gui.lib.php:363 server_privileges.php:825 +#: libraries/replication_gui.lib.php:363 server_privileges.php:826 msgid "Generate" msgstr "Generer" @@ -1959,8 +2004,8 @@ msgstr "Opprett ny database" msgid "Create" msgstr "Opprett" -#: libraries/display_create_database.lib.php:40 server_privileges.php:113 -#: server_privileges.php:1427 server_replication.php:35 +#: libraries/display_create_database.lib.php:40 server_privileges.php:114 +#: server_privileges.php:1447 server_replication.php:35 msgid "No Privileges" msgstr "Ingen privilegier" @@ -2046,7 +2091,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:1875 server_processlist.php:75 +#: server_privileges.php:1895 server_processlist.php:75 msgid "None" msgstr "Ingen" @@ -2237,7 +2282,7 @@ msgstr "Sorter etter nøkkel" #: libraries/import/docsql.php:34 libraries/import/ldi.php:47 #: libraries/import/ods.php:30 libraries/import/sql.php:20 #: libraries/import/xls.php:26 libraries/import/xlsx.php:26 -#: libraries/import/xml.php:25 tbl_select.php:267 tbl_structure.php:753 +#: libraries/import/xml.php:25 tbl_select.php:267 tbl_structure.php:751 msgid "Options" msgstr "Innstillinger" @@ -2312,7 +2357,7 @@ msgstr "Spørring tok %01.4f sek" #: libraries/display_tbl.lib.php:2089 libraries/mult_submits.inc.php:113 #: querywindow.php:125 querywindow.php:129 querywindow.php:132 -#: tbl_structure.php:25 tbl_structure.php:150 tbl_structure.php:470 +#: tbl_structure.php:25 tbl_structure.php:150 tbl_structure.php:468 msgid "Change" msgstr "Endre" @@ -2382,7 +2427,7 @@ msgstr "Mellomlagerbruk" #: libraries/engines/innodb.lib.php:194 server_databases.php:137 #: server_databases.php:305 server_status.php:525 server_status.php:586 -#: server_status.php:607 tbl_printview.php:351 tbl_structure.php:696 +#: server_status.php:607 tbl_printview.php:351 tbl_structure.php:694 msgid "Total" msgstr "Totalt" @@ -2667,7 +2712,7 @@ msgstr "" "neste høyeste nummeret." #: libraries/export/codegen.php:37 setup/lib/messages.inc.php:88 -#: tbl_printview.php:376 tbl_structure.php:737 +#: tbl_printview.php:376 tbl_structure.php:735 msgid "Format" msgstr "Format" @@ -2731,8 +2776,8 @@ 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:576 server_replication.php:316 tbl_printview.php:317 -#: tbl_structure.php:665 +#: server_privileges.php:577 server_replication.php:316 tbl_printview.php:317 +#: tbl_structure.php:663 msgid "Data" msgstr "Data" @@ -2781,9 +2826,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:731 -#: server_privileges.php:734 server_privileges.php:790 -#: server_privileges.php:1537 server_privileges.php:2069 +#: libraries/replication_gui.lib.php:329 server_privileges.php:732 +#: server_privileges.php:735 server_privileges.php:791 +#: server_privileges.php:1557 server_privileges.php:2090 #: server_processlist.php:55 server_synchronize.php:1159 msgid "Host" msgstr "Vert" @@ -2976,7 +3021,7 @@ msgstr "Eksporter innhold" msgid "Open new phpMyAdmin window" msgstr "Åpne nytt phpMyAdmin vindu" -#: libraries/header.inc.php:115 +#: libraries/header.inc.php:119 msgid "New table" msgstr "Ny tabell" @@ -3136,20 +3181,20 @@ msgstr "Konverter til Kana" #: 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 +#: tbl_structure.php:471 msgid "Primary" msgstr "Primær" #: libraries/mult_submits.inc.php:98 libraries/tbl_properties.inc.php:116 #: libraries/tbl_properties.inc.php:525 tbl_printview.php:326 #: tbl_structure.php:31 tbl_structure.php:154 tbl_structure.php:158 -#: tbl_structure.php:475 tbl_structure.php:673 +#: tbl_structure.php:473 tbl_structure.php:671 msgid "Index" msgstr "Indeks" #: libraries/mult_submits.inc.php:108 libraries/tbl_properties.inc.php:531 #: tbl_structure.php:35 tbl_structure.php:156 tbl_structure.php:160 -#: tbl_structure.php:478 +#: tbl_structure.php:476 msgid "Fulltext" msgstr "Fulltekst" @@ -3455,8 +3500,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:711 -#: server_privileges.php:714 server_privileges.php:721 +#: libraries/replication_gui.lib.php:259 server_privileges.php:712 +#: server_privileges.php:715 server_privileges.php:722 #: server_synchronize.php:1171 msgid "User name" msgstr "Brukernavn" @@ -3480,7 +3525,7 @@ msgstr "Variabler" #: 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 +#: tbl_structure.php:727 msgid "Value" msgstr "Verdi" @@ -3500,34 +3545,34 @@ msgstr "" msgid "Add slave replication user" msgstr "Legg til slavereplikasjonsbruker" -#: libraries/replication_gui.lib.php:254 server_privileges.php:716 +#: libraries/replication_gui.lib.php:254 server_privileges.php:717 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:717 -#: server_privileges.php:784 server_privileges.php:808 -#: server_privileges.php:1928 server_privileges.php:1958 +#: libraries/replication_gui.lib.php:346 server_privileges.php:718 +#: server_privileges.php:785 server_privileges.php:809 +#: server_privileges.php:1948 server_privileges.php:1978 msgid "Use text field" msgstr "Bruk tekstfelt" -#: libraries/replication_gui.lib.php:302 server_privileges.php:764 +#: libraries/replication_gui.lib.php:302 server_privileges.php:765 msgid "Any host" msgstr "Alle verter" -#: libraries/replication_gui.lib.php:306 server_privileges.php:768 +#: libraries/replication_gui.lib.php:306 server_privileges.php:769 msgid "Local" msgstr "Lokal" -#: libraries/replication_gui.lib.php:312 server_privileges.php:773 +#: libraries/replication_gui.lib.php:312 server_privileges.php:774 msgid "This Host" msgstr "Denne vert" -#: libraries/replication_gui.lib.php:318 server_privileges.php:779 +#: libraries/replication_gui.lib.php:318 server_privileges.php:780 msgid "Use Host Table" msgstr "Vis vert tabell" -#: libraries/replication_gui.lib.php:331 server_privileges.php:792 +#: libraries/replication_gui.lib.php:331 server_privileges.php:793 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -3563,29 +3608,29 @@ msgstr "Ukjent språk: %1$s." msgid "Servers" msgstr "Tjenere" -#: libraries/server_links.inc.php:53 server_engines.php:112 +#: libraries/server_links.inc.php:54 server_engines.php:112 #: server_engines.php:116 server_status.php:415 test/theme.php:105 msgid "Variables" msgstr "Variabler" -#: libraries/server_links.inc.php:57 test/theme.php:109 +#: libraries/server_links.inc.php:58 test/theme.php:109 msgid "Charsets" msgstr "Tegnsett" -#: libraries/server_links.inc.php:61 test/theme.php:113 +#: libraries/server_links.inc.php:62 test/theme.php:113 msgid "Engines" msgstr "Motorer" -#: libraries/server_links.inc.php:76 server_binlog.php:110 +#: libraries/server_links.inc.php:77 server_binlog.php:110 #: server_status.php:364 test/theme.php:121 msgid "Binary log" msgstr "Binærlogg" -#: libraries/server_links.inc.php:80 +#: libraries/server_links.inc.php:81 msgid "Processes" msgstr "Prosesser" -#: libraries/server_links.inc.php:92 server_synchronize.php:1092 +#: libraries/server_links.inc.php:93 server_synchronize.php:1092 #: server_synchronize.php:1100 msgid "Synchronize" msgstr "Synkroniser" @@ -3825,12 +3870,12 @@ msgstr "Partisjonsdefinisjon" msgid "Save" msgstr "Lagre" -#: libraries/tbl_properties.inc.php:780 tbl_structure.php:542 +#: libraries/tbl_properties.inc.php:780 tbl_structure.php:540 #, php-format msgid "Add %s column(s)" msgstr "Legg til %s kolonne(r)" -#: libraries/tbl_properties.inc.php:784 tbl_structure.php:536 +#: libraries/tbl_properties.inc.php:784 tbl_structure.php:534 msgid "You have to add at least one column." msgstr "Du må sette inn minst en kolonne." @@ -4002,8 +4047,8 @@ msgstr "Tilbakestill" msgid "Protocol version" msgstr "Protokollversjon" -#: main.php:189 server_privileges.php:1389 server_privileges.php:1536 -#: server_privileges.php:1650 server_privileges.php:2068 +#: main.php:189 server_privileges.php:1406 server_privileges.php:1556 +#: server_privileges.php:1670 server_privileges.php:2089 #: server_processlist.php:54 msgid "User" msgstr "Bruker" @@ -4445,113 +4490,113 @@ msgstr "Lagringsmotorer" msgid "View dump (schema) of databases" msgstr "Vis dumpet skjema av databaser" -#: server_privileges.php:24 server_privileges.php:266 +#: server_privileges.php:25 server_privileges.php:267 msgid "Includes all privileges except GRANT." msgstr "Inkluder alle privilegier unntatt GRANT." -#: server_privileges.php:25 server_privileges.php:192 -#: server_privileges.php:515 +#: server_privileges.php:26 server_privileges.php:193 +#: server_privileges.php:516 msgid "Allows altering the structure of existing tables." msgstr "Tillater endring av struktur på eksisterende tabeller." -#: server_privileges.php:26 server_privileges.php:208 -#: server_privileges.php:521 +#: server_privileges.php:27 server_privileges.php:209 +#: server_privileges.php:522 msgid "Allows altering and dropping stored routines." msgstr "Tillater endring og sletting av lagrede rutiner." -#: server_privileges.php:27 server_privileges.php:184 -#: server_privileges.php:514 +#: server_privileges.php:28 server_privileges.php:185 +#: server_privileges.php:515 msgid "Allows creating new databases and tables." msgstr "Tillater oppretting av nye databaser og tabeller." -#: server_privileges.php:28 server_privileges.php:207 -#: server_privileges.php:520 +#: server_privileges.php:29 server_privileges.php:208 +#: server_privileges.php:521 msgid "Allows creating stored routines." msgstr "Tillater oppreting av lagrede rutiner." -#: server_privileges.php:29 server_privileges.php:514 +#: server_privileges.php:30 server_privileges.php:515 msgid "Allows creating new tables." msgstr "Tillater oppretting av nye tabeller." -#: server_privileges.php:30 server_privileges.php:195 -#: server_privileges.php:518 +#: server_privileges.php:31 server_privileges.php:196 +#: server_privileges.php:519 msgid "Allows creating temporary tables." msgstr "Tillater oppretting av midlertidige tabeller." -#: server_privileges.php:31 server_privileges.php:209 -#: server_privileges.php:554 +#: server_privileges.php:32 server_privileges.php:210 +#: server_privileges.php:555 msgid "Allows creating, dropping and renaming user accounts." msgstr "Tillater oppretting, sletting og navneendring av brukerkontoer." -#: server_privileges.php:32 server_privileges.php:199 -#: server_privileges.php:203 server_privileges.php:526 -#: server_privileges.php:530 +#: server_privileges.php:33 server_privileges.php:200 +#: server_privileges.php:204 server_privileges.php:527 +#: server_privileges.php:531 msgid "Allows creating new views." msgstr "Tillater oppretting av nye visninger." -#: server_privileges.php:33 server_privileges.php:183 -#: server_privileges.php:506 +#: server_privileges.php:34 server_privileges.php:184 +#: server_privileges.php:507 msgid "Allows deleting data." msgstr "Tillater sletting av data." -#: server_privileges.php:34 server_privileges.php:185 -#: server_privileges.php:517 +#: server_privileges.php:35 server_privileges.php:186 +#: server_privileges.php:518 msgid "Allows dropping databases and tables." msgstr "Tillater sletting av databaser og tabeller." -#: server_privileges.php:35 server_privileges.php:517 +#: server_privileges.php:36 server_privileges.php:518 msgid "Allows dropping tables." msgstr "Tillater sletting av tabeller." -#: server_privileges.php:36 server_privileges.php:200 -#: server_privileges.php:534 +#: server_privileges.php:37 server_privileges.php:201 +#: server_privileges.php:535 msgid "Allows to set up events for the event scheduler" msgstr "Tillater å sette opp hendelser for hendelseskalenderen" -#: server_privileges.php:37 server_privileges.php:210 -#: server_privileges.php:522 +#: server_privileges.php:38 server_privileges.php:211 +#: server_privileges.php:523 msgid "Allows executing stored routines." msgstr "Tillater utføring av lagrede rutiner." -#: server_privileges.php:38 server_privileges.php:189 -#: server_privileges.php:509 +#: server_privileges.php:39 server_privileges.php:190 +#: server_privileges.php:510 msgid "Allows importing data from and exporting data into files." msgstr "Tillater import og eksport av data til og fra filer." -#: server_privileges.php:39 server_privileges.php:540 +#: server_privileges.php:40 server_privileges.php:541 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "Tillater å legge til brukere og privilegier uten å oppfriske " "privilegietabellene." -#: server_privileges.php:40 server_privileges.php:191 -#: server_privileges.php:516 +#: server_privileges.php:41 server_privileges.php:192 +#: server_privileges.php:517 msgid "Allows creating and dropping indexes." msgstr "Tillater oppretting og sletting av indekser." -#: server_privileges.php:41 server_privileges.php:181 -#: server_privileges.php:442 server_privileges.php:504 +#: server_privileges.php:42 server_privileges.php:182 +#: server_privileges.php:443 server_privileges.php:505 msgid "Allows inserting and replacing data." msgstr "Tillater å legge til og erstatte data." -#: server_privileges.php:42 server_privileges.php:196 -#: server_privileges.php:549 +#: server_privileges.php:43 server_privileges.php:197 +#: server_privileges.php:550 msgid "Allows locking tables for the current thread." msgstr "Tillater låsing av tabeller for den kjørende tråden." -#: server_privileges.php:43 server_privileges.php:646 -#: server_privileges.php:648 +#: server_privileges.php:44 server_privileges.php:647 +#: server_privileges.php:649 msgid "Limits the number of new connections the user may open per hour." msgstr "Begrenser antall nye tilkoblinger brukeren kan åpne per time." -#: server_privileges.php:44 server_privileges.php:634 -#: server_privileges.php:636 +#: server_privileges.php:45 server_privileges.php:635 +#: server_privileges.php:637 msgid "Limits the number of queries the user may send to the server per hour." msgstr "Begrenser antall spørringer brukeren kan sende til tjeneren per time." -#: server_privileges.php:45 server_privileges.php:640 -#: server_privileges.php:642 +#: server_privileges.php:46 server_privileges.php:641 +#: server_privileges.php:643 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -4559,61 +4604,61 @@ 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 +#: server_privileges.php:47 server_privileges.php:653 +#: server_privileges.php:655 msgid "Limits the number of simultaneous connections the user may have." msgstr "Begrens antall samtidige tilkoblinger brukeren kan ha." -#: server_privileges.php:47 server_privileges.php:188 -#: server_privileges.php:544 +#: server_privileges.php:48 server_privileges.php:189 +#: server_privileges.php:545 msgid "Allows viewing processes of all users" msgstr "Tillater visning av prosessene til alle brukere" -#: server_privileges.php:48 server_privileges.php:190 -#: server_privileges.php:448 server_privileges.php:550 +#: server_privileges.php:49 server_privileges.php:191 +#: server_privileges.php:449 server_privileges.php:551 msgid "Has no effect in this MySQL version." msgstr "har ingen effekt i denne versjonen av MySQL." -#: server_privileges.php:49 server_privileges.php:186 -#: server_privileges.php:545 +#: server_privileges.php:50 server_privileges.php:187 +#: server_privileges.php:546 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" "Tillater oppfrisking av tjenerinnstillinger og oppfrisking av mellomlager." -#: server_privileges.php:50 server_privileges.php:198 -#: server_privileges.php:552 +#: server_privileges.php:51 server_privileges.php:199 +#: server_privileges.php:553 msgid "Allows the user to ask where the slaves / masters are." msgstr "" "Gir tillatelse til brukeren til å spørre hvor replikasjonsslaver eller -" "tjenere er." -#: server_privileges.php:51 server_privileges.php:197 -#: server_privileges.php:553 +#: server_privileges.php:52 server_privileges.php:198 +#: server_privileges.php:554 msgid "Needed for the replication slaves." msgstr "Trenges av replikasjonsslavene." -#: server_privileges.php:52 server_privileges.php:180 -#: server_privileges.php:439 server_privileges.php:503 +#: server_privileges.php:53 server_privileges.php:181 +#: server_privileges.php:440 server_privileges.php:504 msgid "Allows reading data." msgstr "Tillater lesing av data." -#: server_privileges.php:53 server_privileges.php:193 -#: server_privileges.php:547 +#: server_privileges.php:54 server_privileges.php:194 +#: server_privileges.php:548 msgid "Gives access to the complete list of databases." msgstr "Gir adgang til komplett liste over databaser." -#: server_privileges.php:54 server_privileges.php:204 -#: server_privileges.php:206 server_privileges.php:519 +#: server_privileges.php:55 server_privileges.php:205 +#: server_privileges.php:207 server_privileges.php:520 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Tillater utføring av SHOW CREATE VIEW spørringer." -#: server_privileges.php:55 server_privileges.php:187 -#: server_privileges.php:546 +#: server_privileges.php:56 server_privileges.php:188 +#: server_privileges.php:547 msgid "Allows shutting down the server." msgstr "Tillater avslutting av tjener." -#: server_privileges.php:56 server_privileges.php:194 -#: server_privileges.php:543 +#: server_privileges.php:57 server_privileges.php:195 +#: server_privileges.php:544 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -4623,152 +4668,152 @@ msgstr "" "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 +#: server_privileges.php:58 server_privileges.php:202 +#: server_privileges.php:536 msgid "Allows creating and dropping triggers" msgstr "Tillater opprettelse og sletting av triggere" -#: server_privileges.php:58 server_privileges.php:182 -#: server_privileges.php:445 server_privileges.php:505 +#: server_privileges.php:59 server_privileges.php:183 +#: server_privileges.php:446 server_privileges.php:506 msgid "Allows changing data." msgstr "Tillater endring av data." -#: server_privileges.php:59 server_privileges.php:260 +#: server_privileges.php:60 server_privileges.php:261 msgid "No privileges." msgstr "Ingen privilegier." -#: server_privileges.php:302 server_privileges.php:303 +#: server_privileges.php:303 server_privileges.php:304 msgctxt "None privileges" msgid "None" msgstr "Ingen" -#: server_privileges.php:431 server_privileges.php:566 -#: server_privileges.php:1718 server_privileges.php:1724 +#: server_privileges.php:432 server_privileges.php:567 +#: server_privileges.php:1738 server_privileges.php:1744 msgid "Table-specific privileges" msgstr "Tabell-spesifikke privilegier" -#: server_privileges.php:432 server_privileges.php:574 -#: server_privileges.php:1540 +#: server_privileges.php:433 server_privileges.php:575 +#: server_privileges.php:1560 msgid " Note: MySQL privilege names are expressed in English " msgstr "OBS: MySQL privilegiumnavn er på engelsk" -#: server_privileges.php:563 server_privileges.php:1539 +#: server_privileges.php:564 server_privileges.php:1559 msgid "Global privileges" msgstr "Globale privilegier" -#: server_privileges.php:565 server_privileges.php:1718 +#: server_privileges.php:566 server_privileges.php:1738 msgid "Database-specific privileges" msgstr "Databasespesifikke privilegier" -#: server_privileges.php:610 +#: server_privileges.php:611 msgid "Administration" msgstr "Administrasjon" -#: server_privileges.php:630 +#: server_privileges.php:631 msgid "Resource limits" msgstr "Ressursbegrensninger" -#: server_privileges.php:631 +#: server_privileges.php:632 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "Merk: Ved å sette disse til 0 (null) fjernes begrensningen." -#: server_privileges.php:708 +#: server_privileges.php:709 msgid "Login Information" msgstr "Innlogingsinformasjon" -#: server_privileges.php:802 +#: server_privileges.php:803 msgid "Do not change the password" msgstr "Ikke endre passordet" -#: server_privileges.php:843 server_privileges.php:2205 +#: server_privileges.php:844 server_privileges.php:2226 msgid "No user found." msgstr "Ingen bruker(e) funnet." -#: server_privileges.php:887 +#: server_privileges.php:888 #, php-format msgid "The user %s already exists!" msgstr "Brukeren %s finnes fra før!" -#: server_privileges.php:970 +#: server_privileges.php:971 msgid "You have added a new user." msgstr "Du har lagt til en ny bruker." -#: server_privileges.php:1191 +#: server_privileges.php:1196 #, php-format msgid "You have updated the privileges for %s." msgstr "Du har oppdatert privilegiene til %s." -#: server_privileges.php:1215 +#: server_privileges.php:1220 #, php-format msgid "You have revoked the privileges for %s" msgstr "Du har fjernet privilegiene til %s" -#: server_privileges.php:1251 +#: server_privileges.php:1256 #, php-format msgid "The password for %s was changed successfully." msgstr "Passordet til %s er endret." -#: server_privileges.php:1271 +#: server_privileges.php:1276 #, php-format msgid "Deleting %s" msgstr "Sletter %s" -#: server_privileges.php:1282 +#: server_privileges.php:1287 msgid "No users selected for deleting!" msgstr "Ingen brukere merket for sletting!" -#: server_privileges.php:1285 +#: server_privileges.php:1290 msgid "Reloading the privileges" msgstr "Oppfrisker privilegiene" -#: server_privileges.php:1300 +#: server_privileges.php:1305 msgid "The selected users have been deleted successfully." msgstr "De valgte brukerne har blitt slettet." -#: server_privileges.php:1335 +#: server_privileges.php:1344 msgid "The privileges were reloaded successfully." msgstr "Oppfriskingen av privilegiene lyktes." -#: server_privileges.php:1363 server_privileges.php:1649 +#: server_privileges.php:1380 server_privileges.php:1669 msgid "Edit Privileges" msgstr "Rediger privilegier" -#: server_privileges.php:1372 +#: server_privileges.php:1389 msgid "Revoke" msgstr "Tilbakekall" -#: server_privileges.php:1404 +#: server_privileges.php:1424 msgid "User overview" msgstr "Brukeroversikt" -#: server_privileges.php:1541 server_privileges.php:1723 -#: server_privileges.php:2072 +#: server_privileges.php:1561 server_privileges.php:1743 +#: server_privileges.php:2093 msgid "Grant" msgstr "Rettighet" -#: server_privileges.php:1560 server_privileges.php:2162 +#: server_privileges.php:1580 server_privileges.php:2183 msgid "Any" msgstr "Alle" -#: server_privileges.php:1609 server_privileges.php:1633 -#: server_privileges.php:2027 server_privileges.php:2216 +#: server_privileges.php:1629 server_privileges.php:1653 +#: server_privileges.php:2048 server_privileges.php:2237 msgid "Add a new User" msgstr "Legg til en ny bruker" -#: server_privileges.php:1614 +#: server_privileges.php:1634 msgid "Remove selected users" msgstr "Fjern valgte brukere" -#: server_privileges.php:1617 +#: server_privileges.php:1637 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:1618 server_privileges.php:1619 -#: server_privileges.php:1620 +#: server_privileges.php:1638 server_privileges.php:1639 +#: server_privileges.php:1640 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:1636 +#: server_privileges.php:1656 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -4781,91 +4826,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:1684 +#: server_privileges.php:1704 msgid "The selected user was not found in the privilege table." msgstr "Den valgte brukeren ble ikke funnet i privilegietabellen." -#: server_privileges.php:1724 +#: server_privileges.php:1744 msgid "Column-specific privileges" msgstr "Kolonne-spesifikke privilegier" -#: server_privileges.php:1925 +#: server_privileges.php:1945 msgid "Add privileges on the following database" msgstr "Legg til privilegier til følgende database" -#: server_privileges.php:1943 +#: server_privileges.php:1963 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:1946 +#: server_privileges.php:1966 msgid "Add privileges on the following table" msgstr "Legg til privilegier til følgende tabell" -#: server_privileges.php:2003 +#: server_privileges.php:2023 msgid "Change Login Information / Copy User" msgstr "Endre innloggingsinformasjon / kopiere bruker" -#: server_privileges.php:2006 +#: server_privileges.php:2026 msgid "Create a new user with the same privileges and ..." msgstr "Opprett ny bruker med de samme privilegier og ..." -#: server_privileges.php:2008 +#: server_privileges.php:2028 msgid "... keep the old one." msgstr "... behold den gamle." -#: server_privileges.php:2009 +#: server_privileges.php:2029 msgid " ... delete the old one from the user tables." msgstr " ... slett den gamle fra brukertabellene." -#: server_privileges.php:2010 +#: server_privileges.php:2030 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:2011 +#: server_privileges.php:2031 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:2033 +#: server_privileges.php:2054 msgid "Database for user" msgstr "Brukerdatabase" -#: server_privileges.php:2037 +#: server_privileges.php:2058 msgctxt "Create none database for user" msgid "None" msgstr "Ingen" -#: server_privileges.php:2038 +#: server_privileges.php:2059 msgid "Create database with same name and grant all privileges" msgstr "Opprett database med samme navn og gi alle rettigheter" -#: server_privileges.php:2039 +#: server_privileges.php:2060 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "Gi alle rettigheter på jokertegnavn (username\\_%)" -#: server_privileges.php:2042 +#: server_privileges.php:2063 #, php-format msgid "Grant all privileges on database "%s"" msgstr "Gi alle privilegier for databasen "%s"" -#: server_privileges.php:2065 +#: server_privileges.php:2086 #, php-format msgid "Users having access to "%s"" msgstr "Brukere som har adgang til "%s"" -#: server_privileges.php:2173 +#: server_privileges.php:2194 msgid "global" msgstr "global" -#: server_privileges.php:2175 +#: server_privileges.php:2196 msgid "database-specific" msgstr "databasespesifikk" -#: server_privileges.php:2177 +#: server_privileges.php:2198 msgid "wildcard" msgstr "jokertegn" @@ -7827,6 +7872,10 @@ msgstr "Sett inn som ny rad og ignorer feil" msgid "Show insert query" msgstr "Viser SQL spørring" +#: tbl_change.php:1143 +msgid "and then" +msgstr "og så" + #: tbl_change.php:1147 msgid "Go back to previous page" msgstr "Returner" @@ -7908,7 +7957,7 @@ msgstr "" msgid "Add to index  %s column(s)" msgstr "Legg til indeks %s kolonne(r)" -#: tbl_indexes.php:256 tbl_structure.php:589 tbl_structure.php:600 +#: tbl_indexes.php:256 tbl_structure.php:587 tbl_structure.php:598 msgid "Column count has to be larger than zero." msgstr "Antall kolonner må være større enn null." @@ -8020,39 +8069,39 @@ msgstr "Sjekk referanseintegritet:" msgid "Show tables" msgstr "Vis tabeller" -#: tbl_printview.php:310 tbl_structure.php:656 +#: tbl_printview.php:310 tbl_structure.php:654 msgid "Space usage" msgstr "Plassbruk" -#: tbl_printview.php:314 tbl_structure.php:660 +#: tbl_printview.php:314 tbl_structure.php:658 msgid "Usage" msgstr "Bruk" -#: tbl_printview.php:341 tbl_structure.php:687 +#: tbl_printview.php:341 tbl_structure.php:685 msgid "Effective" msgstr "Effektiv" -#: tbl_printview.php:366 tbl_structure.php:725 +#: tbl_printview.php:366 tbl_structure.php:723 msgid "Row Statistics" msgstr "Radstatistikk" -#: tbl_printview.php:369 tbl_structure.php:728 +#: tbl_printview.php:369 tbl_structure.php:726 msgid "Statements" msgstr "Oversikt" -#: tbl_printview.php:380 tbl_structure.php:740 +#: tbl_printview.php:380 tbl_structure.php:738 msgid "static" msgstr "statisk" -#: tbl_printview.php:382 tbl_structure.php:742 +#: tbl_printview.php:382 tbl_structure.php:740 msgid "dynamic" msgstr "dynamisk" -#: tbl_printview.php:404 tbl_structure.php:785 +#: tbl_printview.php:404 tbl_structure.php:783 msgid "Row length" msgstr "Radlengde" -#: tbl_printview.php:414 tbl_structure.php:793 +#: tbl_printview.php:414 tbl_structure.php:791 msgid " Row size " msgstr " Radstørrelse " @@ -8121,47 +8170,47 @@ msgstr "Ingen" msgid "Column %s has been dropped" msgstr "Kolonne %s har blitt slettet" -#: tbl_structure.php:385 +#: tbl_structure.php:384 #, php-format msgid "A primary key has been added on %s" msgstr "En primærnøkkel har blitt lagt til %s" -#: tbl_structure.php:400 tbl_structure.php:414 tbl_structure.php:428 +#: tbl_structure.php:398 tbl_structure.php:412 tbl_structure.php:426 #, php-format msgid "An index has been added on %s" msgstr "En indeks har blitt lagt til %s" -#: tbl_structure.php:506 tbl_structure.php:508 +#: tbl_structure.php:504 tbl_structure.php:506 msgid "Relation view" msgstr "Relasjonsvisning" -#: tbl_structure.php:515 tbl_structure.php:517 +#: tbl_structure.php:513 tbl_structure.php:515 msgid "Propose table structure" msgstr "Foreslå tabellstruktur" -#: tbl_structure.php:540 +#: tbl_structure.php:538 msgid "Add column" msgstr "Legg til kolonne(r)" -#: tbl_structure.php:554 +#: tbl_structure.php:552 msgid "At End of Table" msgstr "Ved slutten av tabellen" -#: tbl_structure.php:555 +#: tbl_structure.php:553 msgid "At Beginning of Table" msgstr "Ved begynnelsen av tabellen" -#: tbl_structure.php:556 +#: tbl_structure.php:554 #, php-format msgid "After %s" msgstr "Etter %s" -#: tbl_structure.php:594 +#: tbl_structure.php:592 #, php-format msgid "Create an index on  %s columns" msgstr "Lag en indeks på %s kolonner" -#: tbl_structure.php:756 +#: tbl_structure.php:754 msgid "partitioned" msgstr "partisjonert" diff --git a/po/nl.po b/po/nl.po index 44b3dd4d7..18a16698c 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-13 09:03-0400\n" +"POT-Creation-Date: 2010-06-22 00:55+0530\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:1514 +#: libraries/display_tbl.lib.php:417 server_privileges.php:1534 msgid "Show all" msgstr "Toon alles" -#: browse_foreigners.php:82 libraries/common.lib.php:2313 +#: browse_foreigners.php:82 libraries/common.lib.php:2317 #: 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,18 +37,18 @@ 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:2831 -#: libraries/common.lib.php:2838 libraries/db_links.inc.php:75 +#: db_structure.php:106 libraries/common.lib.php:2835 +#: libraries/common.lib.php:2842 libraries/db_links.inc.php:75 #: libraries/tbl_links.inc.php:63 msgid "Search" msgstr "Zoeken" -#: browse_foreigners.php:153 db_operations.php:385 db_operations.php:429 -#: db_operations.php:499 db_operations.php:609 db_search.php:362 -#: db_structure.php:567 js/messages.php:48 libraries/Config.class.php:1046 +#: browse_foreigners.php:153 db_operations.php:394 db_operations.php:438 +#: db_operations.php:508 db_operations.php:618 db_search.php:362 +#: db_structure.php:565 js/messages.php:53 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:1335 libraries/common.lib.php:2288 +#: libraries/common.lib.php:1335 libraries/common.lib.php:2292 #: 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,15 +59,15 @@ 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:664 server_privileges.php:1624 -#: server_privileges.php:1971 server_privileges.php:2018 -#: server_privileges.php:2057 server_replication.php:235 +#: server_privileges.php:665 server_privileges.php:1644 +#: server_privileges.php:1991 server_privileges.php:2038 +#: server_privileges.php:2078 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 #: tbl_operations.php:302 tbl_operations.php:499 tbl_operations.php:561 -#: tbl_operations.php:681 tbl_select.php:327 tbl_structure.php:562 -#: tbl_structure.php:597 tbl_tracking.php:395 tbl_tracking.php:512 +#: tbl_operations.php:681 tbl_select.php:327 tbl_structure.php:560 +#: tbl_structure.php:595 tbl_tracking.php:395 tbl_tracking.php:512 #: view_create.php:182 view_operations.php:101 msgid "Go" msgstr "Start" @@ -93,7 +93,7 @@ msgstr "Gebruik deze waarde" msgid "Database %1$s has been created." msgstr "Database %1$s is aangemaakt." -#: db_datadict.php:49 db_operations.php:378 +#: db_datadict.php:49 db_operations.php:387 msgid "Database comment: " msgstr "Database commentaar: " @@ -120,10 +120,10 @@ 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:2070 +#: pdf_schema.php:1263 pdf_schema.php:1284 server_privileges.php:2091 #: 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 +#: tbl_structure.php:657 tbl_tracking.php:274 tbl_tracking.php:321 msgid "Type" msgstr "Type" @@ -136,7 +136,7 @@ msgstr "Type" msgid "Null" msgstr "Null" -#: db_datadict.php:178 db_structure.php:501 libraries/export/htmlword.php:247 +#: db_datadict.php:178 db_structure.php:499 libraries/export/htmlword.php:247 #: libraries/export/latex.php:360 libraries/export/odt.php:303 #: libraries/export/texytext.php:236 libraries/tbl_properties.inc.php:106 #: pdf_schema.php:1266 pdf_schema.php:1287 tbl_printview.php:146 @@ -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: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 +#: pdf_schema.php:1344 server_privileges.php:1588 server_privileges.php:1599 +#: server_privileges.php:1909 server_privileges.php:1914 +#: server_privileges.php:2208 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:1565 -#: server_privileges.php:1579 server_privileges.php:1889 -#: server_privileges.php:1892 server_privileges.php:2187 sql.php:193 +#: server_databases.php:64 server_privileges.php:1585 +#: server_privileges.php:1599 server_privileges.php:1909 +#: server_privileges.php:1912 server_privileges.php:2208 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" @@ -209,123 +209,119 @@ msgstr "Selecteer alles" msgid "Unselect All" msgstr "Deselecteer alles" -#: db_operations.php:38 tbl_create.php:54 +#: db_operations.php:43 tbl_create.php:54 msgid "The database name is empty!" msgstr "De database naam is leeg!" -#: db_operations.php:236 +#: db_operations.php:241 #, php-format msgid "Database %s has been renamed to %s" msgstr "Database %s is hernoemd naar %s" -#: db_operations.php:240 +#: db_operations.php:245 #, php-format msgid "Database %s has been copied to %s" msgstr "Database %s is gekopieerd naar %s" -#: db_operations.php:412 +#: db_operations.php:421 msgid "Rename database to" msgstr "Hernoem database naar" -#: db_operations.php:417 server_processlist.php:57 +#: db_operations.php:426 server_processlist.php:57 msgid "Command" msgstr "Commando" -#: db_operations.php:429 tbl_change.php:1143 -msgid "and then" -msgstr "en dan" - -#: db_operations.php:455 +#: db_operations.php:464 msgid "Copy database to" msgstr "Kopieer database naar" -#: db_operations.php:462 tbl_operations.php:528 tbl_tracking.php:388 +#: db_operations.php:471 tbl_operations.php:528 tbl_tracking.php:388 msgid "Structure only" msgstr "Alleen structuur" -#: db_operations.php:463 tbl_operations.php:529 tbl_tracking.php:390 +#: db_operations.php:472 tbl_operations.php:529 tbl_tracking.php:390 msgid "Structure and data" msgstr "Structuur en gegevens" -#: db_operations.php:464 tbl_operations.php:530 tbl_tracking.php:389 +#: db_operations.php:473 tbl_operations.php:530 tbl_tracking.php:389 msgid "Data only" msgstr "Alleen data" -#: db_operations.php:472 +#: db_operations.php:481 msgid "CREATE DATABASE before copying" msgstr "CREATE DATABASE voor het kopiëren" -#: db_operations.php:475 libraries/export/sql.php:52 +#: db_operations.php:484 libraries/export/sql.php:52 #: libraries/export/sql.php:74 libraries/export/sql.php:76 #: libraries/export/sql.php:82 tbl_operations.php:536 #, php-format msgid "Add %s" msgstr "Voeg %s toe" -#: db_operations.php:479 libraries/export/sql.php:78 tbl_operations.php:299 +#: db_operations.php:488 libraries/export/sql.php:78 tbl_operations.php:299 #: tbl_operations.php:538 msgid "Add AUTO_INCREMENT value" msgstr "Voeg AUTO_INCREMENT waarde toe" -#: db_operations.php:483 tbl_operations.php:545 +#: db_operations.php:492 tbl_operations.php:545 msgid "Add constraints" msgstr "Voeg beperkingen toe" -#: db_operations.php:496 +#: db_operations.php:505 msgid "Switch to copied database" msgstr "Schakel naar de gekopieerde database" -#: db_operations.php:537 +#: db_operations.php:546 msgid "BLOB Repository" msgstr "BLOB Bewaarplaats" -#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1352 -#: libraries/server_links.inc.php:49 server_processlist.php:59 +#: db_operations.php:549 db_tracking.php:76 libraries/common.lib.php:1352 +#: libraries/server_links.inc.php:50 server_processlist.php:59 #: tbl_tracking.php:596 test/theme.php:101 msgid "Status" msgstr "Status" -#: db_operations.php:548 +#: db_operations.php:557 #, fuzzy #| msgid "Enabled" msgctxt "BLOB repository" msgid "Enabled" msgstr "Ingeschakeld" -#: db_operations.php:552 +#: db_operations.php:561 msgid "Disable" msgstr "Uitschakelen" -#: db_operations.php:562 +#: db_operations.php:571 msgid "Damaged" msgstr "Beschadigd" -#: db_operations.php:566 +#: db_operations.php:575 msgctxt "BLOB repository" msgid "Repair" msgstr "Herstel" -#: db_operations.php:574 +#: db_operations.php:583 #, fuzzy #| msgid "Disabled" msgctxt "BLOB repository" msgid "Disabled" msgstr "Uitgeschakeld" -#: db_operations.php:578 +#: db_operations.php:587 msgid "Enable" msgstr "Inschakelen" -#: db_operations.php:602 libraries/Index.class.php:448 +#: db_operations.php:611 libraries/Index.class.php:448 #: libraries/db_structure.lib.php:62 libraries/mysql_charsets.lib.php:107 #: libraries/tbl_properties.inc.php:107 libraries/tbl_properties.inc.php:730 #: server_collations.php:54 server_collations.php:66 server_databases.php:111 #: tbl_operations.php:363 tbl_select.php:137 tbl_structure.php:179 -#: tbl_structure.php:767 tbl_tracking.php:275 tbl_tracking.php:326 +#: tbl_structure.php:765 tbl_tracking.php:275 tbl_tracking.php:326 msgid "Collation" msgstr "Collatie" -#: db_operations.php:615 main.php:316 pdf_schema.php:34 +#: db_operations.php:624 main.php:316 pdf_schema.php:34 #, php-format msgid "" "The additional features for working with linked tables have been " @@ -334,14 +330,14 @@ msgstr "" "Extra opties om met tabellen te werken, die gelinkt zijn, zijn " "uitgeschakeld. Om te weten te komen waarom klik %shier%s." -#: db_operations.php:648 +#: db_operations.php:657 msgid "Edit PDF Pages" 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:1665 -#: server_privileges.php:1721 server_privileges.php:1985 +#: libraries/header.inc.php:130 pdf_pages.php:424 server_privileges.php:1685 +#: server_privileges.php:1741 server_privileges.php:2005 #: server_synchronize.php:423 server_synchronize.php:866 tbl_tracking.php:592 #: test/theme.php:75 msgid "Table" @@ -350,7 +346,7 @@ msgstr "Tabel" #: db_printview.php:105 libraries/db_structure.lib.php:56 #: libraries/header_printview.inc.php:63 libraries/import.lib.php:146 #: navigation.php:638 navigation.php:660 server_databases.php:122 -#: tbl_printview.php:394 tbl_structure.php:365 tbl_structure.php:777 +#: tbl_printview.php:394 tbl_structure.php:365 tbl_structure.php:775 msgid "Rows" msgstr "Rijen" @@ -358,30 +354,30 @@ msgstr "Rijen" msgid "Size" msgstr "Grootte" -#: db_printview.php:162 db_structure.php:457 libraries/export/sql.php:559 +#: db_printview.php:162 db_structure.php:455 libraries/export/sql.php:559 #: libraries/export/sql.php:899 msgid "in use" msgstr "in gebruik" #: db_printview.php:187 libraries/db_info.inc.php:88 #: libraries/export/sql.php:514 pdf_schema.php:1241 tbl_printview.php:434 -#: tbl_structure.php:809 +#: tbl_structure.php:807 msgid "Creation" msgstr "Gecreëerd" #: db_printview.php:196 libraries/db_info.inc.php:93 #: libraries/export/sql.php:519 pdf_schema.php:1246 tbl_printview.php:444 -#: tbl_structure.php:817 +#: tbl_structure.php:815 msgid "Last update" msgstr "Laatst bijgewerkt" #: db_printview.php:205 libraries/db_info.inc.php:98 #: libraries/export/sql.php:524 pdf_schema.php:1251 tbl_printview.php:454 -#: tbl_structure.php:825 +#: tbl_structure.php:823 msgid "Last check" msgstr "Laatst gecontroleerd" -#: db_printview.php:222 db_structure.php:480 +#: db_printview.php:222 db_structure.php:478 #, fuzzy, php-format #| msgid "%s table(s)" msgid "%s table" @@ -442,7 +438,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:297 tbl_change.php:1031 tbl_indexes.php:250 +#: server_privileges.php:298 tbl_change.php:1031 tbl_indexes.php:250 #: tbl_select.php:288 msgid "Or" msgstr "Of" @@ -515,9 +511,9 @@ 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:2833 +#: db_structure.php:105 libraries/common.lib.php:2837 #: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50 -#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:467 +#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:465 msgid "Browse" msgstr "Verkennen" @@ -562,36 +558,36 @@ 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:2832 libraries/sql_query_form.lib.php:334 +#: libraries/common.lib.php:2836 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:2829 libraries/common.lib.php:2836 +#: libraries/common.lib.php:2833 libraries/common.lib.php:2840 #: 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:1106 #: libraries/tbl_links.inc.php:56 pmd_general.php:134 -#: server_privileges.php:593 server_replication.php:315 tbl_tracking.php:269 +#: server_privileges.php:594 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:1656 +#: db_structure.php:543 db_structure.php:544 db_tracking.php:91 +#: libraries/Index.class.php:483 libraries/common.lib.php:1657 #: 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 -#: tbl_structure.php:152 tbl_structure.php:471 +#: tbl_structure.php:152 tbl_structure.php:469 msgid "Drop" 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:1655 +#: db_structure.php:541 db_structure.php:542 libraries/common.lib.php:1656 #: libraries/mult_submits.inc.php:39 libraries/tbl_links.inc.php:105 msgid "Empty" msgstr "Legen" @@ -601,25 +597,25 @@ msgstr "Legen" msgid "Table %s has been emptied" msgstr "Tabel %s is leeg gemaakt" -#: db_structure.php:326 libraries/tbl_links.inc.php:133 +#: db_structure.php:325 libraries/tbl_links.inc.php:133 #, php-format msgid "View %s has been dropped" msgstr "View %s is verwijderd" -#: db_structure.php:326 libraries/tbl_links.inc.php:133 +#: db_structure.php:325 libraries/tbl_links.inc.php:133 #, php-format msgid "Table %s has been dropped" msgstr "Tabel %s is vervallen" -#: db_structure.php:333 +#: db_structure.php:332 msgid "Tracking is active." msgstr "Tracking is ingeschakeld." -#: db_structure.php:335 +#: db_structure.php:334 msgid "Tracking is not active." msgstr "Tracking is niet actief." -#: db_structure.php:420 libraries/display_tbl.lib.php:1944 +#: db_structure.php:418 libraries/display_tbl.lib.php:1944 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation%" @@ -627,86 +623,86 @@ msgid "" msgstr "" "Deze view heeft minimaal deze hoeveelheid aan rijen. Zie de %sdocumentatie%s." -#: db_structure.php:434 db_structure.php:448 libraries/header.inc.php:126 +#: db_structure.php:432 db_structure.php:446 libraries/header.inc.php:130 #: libraries/tbl_info.inc.php:66 tbl_structure.php:185 test/theme.php:74 msgid "View" msgstr "View" -#: db_structure.php:485 libraries/db_structure.lib.php:49 -#: libraries/server_links.inc.php:70 server_replication.php:33 +#: db_structure.php:483 libraries/db_structure.lib.php:49 +#: libraries/server_links.inc.php:71 server_replication.php:33 #: server_replication.php:164 server_status.php:369 msgid "Replication" msgstr "Replicatie" -#: db_structure.php:489 +#: db_structure.php:487 msgid "Sum" msgstr "Som" -#: db_structure.php:496 libraries/StorageEngine.class.php:356 +#: db_structure.php:494 libraries/StorageEngine.class.php:356 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "%s is de standaard storage engine op deze MySQL-server." -#: db_structure.php:524 db_structure.php:541 db_structure.php:542 +#: db_structure.php:522 db_structure.php:539 db_structure.php:540 #: 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:1596 tbl_structure.php:455 -#: tbl_structure.php:464 +#: server_databases.php:351 server_privileges.php:1616 tbl_structure.php:453 +#: tbl_structure.php:462 msgid "With selected:" msgstr "Met geselecteerd:" -#: db_structure.php:527 libraries/display_tbl.lib.php:2076 -#: server_databases.php:348 server_privileges.php:569 -#: server_privileges.php:1599 tbl_structure.php:458 +#: db_structure.php:525 libraries/display_tbl.lib.php:2076 +#: server_databases.php:348 server_privileges.php:570 +#: server_privileges.php:1619 tbl_structure.php:456 msgid "Check All" msgstr "Selecteer alles" -#: db_structure.php:531 libraries/display_tbl.lib.php:2077 +#: db_structure.php:529 libraries/display_tbl.lib.php:2077 #: libraries/replication_gui.lib.php:33 server_databases.php:350 -#: server_privileges.php:572 server_privileges.php:1603 tbl_structure.php:462 +#: server_privileges.php:573 server_privileges.php:1623 tbl_structure.php:460 msgid "Uncheck All" msgstr "Deselecteer alles" -#: db_structure.php:536 +#: db_structure.php:534 msgid "Check tables having overhead" msgstr "Selecteer tabellen met overhead" -#: db_structure.php:547 db_structure.php:548 db_structure.php:599 +#: db_structure.php:545 db_structure.php:546 db_structure.php:597 #: libraries/display_tbl.lib.php:2180 libraries/mult_submits.inc.php:28 -#: tbl_structure.php:492 tbl_structure.php:494 +#: tbl_structure.php:490 tbl_structure.php:492 msgid "Print view" msgstr "Afdrukken" -#: db_structure.php:549 db_structure.php:550 libraries/mult_submits.inc.php:42 +#: db_structure.php:547 db_structure.php:548 libraries/mult_submits.inc.php:42 #: tbl_operations.php:581 msgid "Check table" msgstr "Controleer tabel" -#: db_structure.php:551 db_structure.php:552 libraries/mult_submits.inc.php:47 -#: tbl_operations.php:621 tbl_structure.php:709 tbl_structure.php:711 +#: db_structure.php:549 db_structure.php:550 libraries/mult_submits.inc.php:47 +#: tbl_operations.php:621 tbl_structure.php:707 tbl_structure.php:709 msgid "Optimize table" msgstr "Optimaliseer tabel" -#: db_structure.php:553 db_structure.php:554 libraries/mult_submits.inc.php:52 +#: db_structure.php:551 db_structure.php:552 libraries/mult_submits.inc.php:52 #: tbl_operations.php:611 msgid "Repair table" msgstr "Repareer tabel" -#: db_structure.php:555 db_structure.php:556 libraries/mult_submits.inc.php:57 +#: db_structure.php:553 db_structure.php:554 libraries/mult_submits.inc.php:57 #: tbl_operations.php:601 msgid "Analyze table" msgstr "Analyseer tabel" -#: db_structure.php:557 db_structure.php:558 libraries/db_links.inc.php:71 +#: db_structure.php:555 db_structure.php:556 libraries/db_links.inc.php:71 #: 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:1380 +#: libraries/server_links.inc.php:85 libraries/tbl_links.inc.php:82 +#: pmd_pdf.php:84 pmd_pdf.php:109 server_privileges.php:1397 #: setup/frames/menu.inc.php:22 tbl_row_action.php:59 msgid "Export" msgstr "Exporteer" -#: db_structure.php:606 libraries/display_pdf_schema.lib.php:44 +#: db_structure.php:604 libraries/display_pdf_schema.lib.php:44 msgid "Data Dictionary" msgstr "Data Woordenboek" @@ -717,10 +713,10 @@ msgstr "Tabellen met tracker" #: db_tracking.php:71 libraries/export/htmlword.php:86 #: libraries/export/latex.php:148 libraries/export/odt.php:113 #: libraries/export/sql.php:342 libraries/export/texytext.php:84 -#: libraries/export/xml.php:255 libraries/header.inc.php:106 +#: libraries/export/xml.php:255 libraries/header.inc.php:110 #: libraries/header_printview.inc.php:58 server_databases.php:169 -#: server_privileges.php:1660 server_privileges.php:1721 -#: server_privileges.php:1979 server_processlist.php:56 +#: server_privileges.php:1680 server_privileges.php:1741 +#: server_privileges.php:1999 server_processlist.php:56 #: server_synchronize.php:1179 server_synchronize.php:1183 #: tbl_tracking.php:591 test/theme.php:65 msgid "Database" @@ -740,8 +736,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:1542 server_privileges.php:1725 -#: server_privileges.php:2073 tbl_structure.php:187 +#: server_privileges.php:1562 server_privileges.php:1745 +#: server_privileges.php:2094 tbl_structure.php:187 msgid "Action" msgstr "Actie" @@ -775,8 +771,8 @@ msgstr "Structuur-snapshot" msgid "Untracked tables" msgstr "Tabellen zonder tracker" -#: db_tracking.php:172 db_tracking.php:174 tbl_structure.php:528 -#: tbl_structure.php:530 +#: db_tracking.php:172 db_tracking.php:174 tbl_structure.php:526 +#: tbl_structure.php:528 msgid "Track table" msgstr "Tabel tracken" @@ -951,169 +947,218 @@ msgstr "De machinenaam is leeg!" msgid "The user name is empty!" msgstr "De gebruikersnaam is leeg!" -#: js/messages.php:44 server_privileges.php:1236 user_password.php:70 +#: js/messages.php:44 server_privileges.php:1241 user_password.php:70 msgid "The password is empty!" msgstr "Het wachtwoord is leeg!" -#: js/messages.php:45 server_privileges.php:1234 user_password.php:73 +#: js/messages.php:45 server_privileges.php:1239 user_password.php:73 msgid "The passwords aren't the same!" msgstr "De wachtwoorden zijn niet gelijk!" -#: js/messages.php:49 pmd_general.php:342 pmd_general.php:379 +#: js/messages.php:46 +#, fuzzy +#| msgid "Add a new User" +msgid "Add a New User" +msgstr "Voeg een nieuwe gebruiker toe" + +#: js/messages.php:47 js/messages.php:54 pmd_general.php:342 +#: pmd_general.php:379 msgid "Cancel" msgstr "Annuleren" -#: js/messages.php:52 pmd_save_pos.php:54 +#: js/messages.php:48 +#, fuzzy +#| msgid "Create version" +msgid "Create User" +msgstr "Versie aanmaken" + +#: js/messages.php:49 +#, fuzzy +#| msgid "Reloading the privileges" +msgid "Reloading Privileges" +msgstr "Bezig de privileges te verversen" + +#: js/messages.php:50 +#, fuzzy +#| msgid "Remove selected users" +msgid "Removing Selected Users" +msgstr "Verwijder de geselecteerde gebruikers" + +#: js/messages.php:57 +#, fuzzy +#| msgid "Load" +msgid "Loading" +msgstr "Laden" + +#: js/messages.php:58 +#, fuzzy +#| msgid "Processes" +msgid "Processing Request" +msgstr "Processen" + +#: js/messages.php:59 +msgid "Error in Processing Request" +msgstr "" + +#: js/messages.php:60 +msgid "Dropping Column" +msgstr "" + +#: js/messages.php:61 +msgid "Adding Primary Key" +msgstr "" + +#: js/messages.php:64 pmd_save_pos.php:54 msgid "Modifications have been saved" msgstr "Wijzigingen opgeslagen." -#: js/messages.php:53 pmd_relation_upd.php:49 +#: js/messages.php:65 pmd_relation_upd.php:49 msgid "Relation deleted" msgstr "Relatie verwijderd" -#: js/messages.php:54 pmd_relation_new.php:64 +#: js/messages.php:66 pmd_relation_new.php:64 msgid "FOREIGN KEY relation added" msgstr "Vreemde sleutel(FOREIGN KEY) relatie toegevoegd" -#: js/messages.php:55 pmd_relation_new.php:86 +#: js/messages.php:67 pmd_relation_new.php:86 msgid "Internal relation added" msgstr "Interne relatie toegevoegd" -#: js/messages.php:56 pmd_relation_new.php:63 pmd_relation_new.php:88 +#: js/messages.php:68 pmd_relation_new.php:63 pmd_relation_new.php:88 msgid "Error: Relation not added." msgstr "Fout: Relatie niet toegevoegd." -#: js/messages.php:57 pmd_relation_new.php:31 +#: js/messages.php:69 pmd_relation_new.php:31 msgid "Error: relation already exists." msgstr "Fout: relatie bestaat reeds." -#: js/messages.php:58 +#: js/messages.php:70 msgid "Error saving coordinates for Designer." msgstr "Fout bij het opslaan van coördinaten voor de Designer." -#: js/messages.php:59 libraries/relation.lib.php:107 +#: js/messages.php:71 libraries/relation.lib.php:107 #: libraries/relation.lib.php:119 msgid "General relation features" msgstr "Basis relatie opties" -#: js/messages.php:59 libraries/relation.lib.php:101 +#: js/messages.php:71 libraries/relation.lib.php:101 #: libraries/relation.lib.php:108 msgid "Disabled" msgstr "Uitgeschakeld" -#: js/messages.php:60 +#: js/messages.php:72 msgid "Select referenced key" msgstr "Selecteer de gerefereerde sleutel" -#: js/messages.php:61 +#: js/messages.php:73 msgid "Select Foreign Key" msgstr "Selecteer vreemde sleutel" -#: js/messages.php:62 +#: js/messages.php:74 msgid "Please select the primary key or a unique key" msgstr "Selecteer de primaire sleutel of een unieke sleutel" -#: js/messages.php:63 pmd_general.php:77 tbl_relation.php:548 +#: js/messages.php:75 pmd_general.php:77 tbl_relation.php:548 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" msgstr "Kies weer te geven veld" #. l10n: Display text for calendar close link -#: js/messages.php:73 +#: js/messages.php:85 msgid "Done" msgstr "Klaar" #. l10n: Display text for previous month link in calendar -#: js/messages.php:75 +#: js/messages.php:87 #, fuzzy #| msgid "Previous" msgid "Prev" msgstr "Vorige" #. l10n: Display text for next month link in calendar -#: js/messages.php:77 libraries/common.lib.php:2353 -#: libraries/common.lib.php:2356 libraries/display_tbl.lib.php:338 +#: js/messages.php:89 libraries/common.lib.php:2357 +#: libraries/common.lib.php:2360 libraries/display_tbl.lib.php:338 #: server_binlog.php:205 server_binlog.php:207 tbl_printview.php:424 -#: tbl_structure.php:801 +#: tbl_structure.php:799 msgid "Next" msgstr "Volgende" #. l10n: Display text for current month link in calendar -#: js/messages.php:79 +#: js/messages.php:91 msgid "Today" msgstr "Vandaag" -#: js/messages.php:82 +#: js/messages.php:94 msgid "January" msgstr "Januari" -#: js/messages.php:83 +#: js/messages.php:95 msgid "February" msgstr "Februari" -#: js/messages.php:84 +#: js/messages.php:96 msgid "March" msgstr "Maart" -#: js/messages.php:85 +#: js/messages.php:97 msgid "April" msgstr "April" -#: js/messages.php:86 +#: js/messages.php:98 msgid "May" msgstr "Mei" -#: js/messages.php:87 +#: js/messages.php:99 msgid "June" msgstr "Juni" -#: js/messages.php:88 +#: js/messages.php:100 msgid "July" msgstr "Juli" -#: js/messages.php:89 +#: js/messages.php:101 msgid "August" msgstr "Augustus" -#: js/messages.php:90 +#: js/messages.php:102 msgid "September" msgstr "September" -#: js/messages.php:91 +#: js/messages.php:103 msgid "October" msgstr "Oktober" -#: js/messages.php:92 +#: js/messages.php:104 msgid "November" msgstr "November" -#: js/messages.php:93 +#: js/messages.php:105 msgid "December" msgstr "December" #. l10n: Short month name -#: js/messages.php:97 libraries/common.lib.php:1557 +#: js/messages.php:109 libraries/common.lib.php:1557 msgid "Jan" msgstr "Jan" #. l10n: Short month name -#: js/messages.php:99 libraries/common.lib.php:1559 +#: js/messages.php:111 libraries/common.lib.php:1559 msgid "Feb" msgstr "Feb" #. l10n: Short month name -#: js/messages.php:101 libraries/common.lib.php:1561 +#: js/messages.php:113 libraries/common.lib.php:1561 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:103 libraries/common.lib.php:1563 +#: js/messages.php:115 libraries/common.lib.php:1563 msgid "Apr" msgstr "Apr" #. l10n: Short month name -#: js/messages.php:105 libraries/common.lib.php:1565 +#: js/messages.php:117 libraries/common.lib.php:1565 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1121,162 +1166,162 @@ msgid "May" msgstr "Mei" #. l10n: Short month name -#: js/messages.php:107 libraries/common.lib.php:1567 +#: js/messages.php:119 libraries/common.lib.php:1567 msgid "Jun" msgstr "Jun" #. l10n: Short month name -#: js/messages.php:109 libraries/common.lib.php:1569 +#: js/messages.php:121 libraries/common.lib.php:1569 msgid "Jul" msgstr "Jul" #. l10n: Short month name -#: js/messages.php:111 libraries/common.lib.php:1571 +#: js/messages.php:123 libraries/common.lib.php:1571 msgid "Aug" msgstr "Aug" #. l10n: Short month name -#: js/messages.php:113 libraries/common.lib.php:1573 +#: js/messages.php:125 libraries/common.lib.php:1573 msgid "Sep" msgstr "Sept" #. l10n: Short month name -#: js/messages.php:115 libraries/common.lib.php:1575 +#: js/messages.php:127 libraries/common.lib.php:1575 msgid "Oct" msgstr "Oct" #. l10n: Short month name -#: js/messages.php:117 libraries/common.lib.php:1577 +#: js/messages.php:129 libraries/common.lib.php:1577 msgid "Nov" msgstr "Nov" #. l10n: Short month name -#: js/messages.php:119 libraries/common.lib.php:1579 +#: js/messages.php:131 libraries/common.lib.php:1579 msgid "Dec" msgstr "Dec" -#: js/messages.php:122 +#: js/messages.php:134 msgid "Sunday" msgstr "Zondag" -#: js/messages.php:123 +#: js/messages.php:135 msgid "Monday" msgstr "Maandag" -#: js/messages.php:124 +#: js/messages.php:136 msgid "Tuesday" msgstr "Dinsdag" -#: js/messages.php:125 +#: js/messages.php:137 msgid "Wednesday" msgstr "Woensdag" -#: js/messages.php:126 +#: js/messages.php:138 msgid "Thursday" msgstr "Donderdag" -#: js/messages.php:127 +#: js/messages.php:139 msgid "Friday" msgstr "Vrijdag" -#: js/messages.php:128 +#: js/messages.php:140 msgid "Saturday" msgstr "Zaterdag" #. l10n: Short week day name -#: js/messages.php:132 libraries/common.lib.php:1582 +#: js/messages.php:144 libraries/common.lib.php:1582 msgid "Sun" msgstr "Zo" #. l10n: Short week day name -#: js/messages.php:134 libraries/common.lib.php:1584 +#: js/messages.php:146 libraries/common.lib.php:1584 msgid "Mon" msgstr "Ma" #. l10n: Short week day name -#: js/messages.php:136 libraries/common.lib.php:1586 +#: js/messages.php:148 libraries/common.lib.php:1586 msgid "Tue" msgstr "Di" #. l10n: Short week day name -#: js/messages.php:138 libraries/common.lib.php:1588 +#: js/messages.php:150 libraries/common.lib.php:1588 msgid "Wed" msgstr "Wo" #. l10n: Short week day name -#: js/messages.php:140 libraries/common.lib.php:1590 +#: js/messages.php:152 libraries/common.lib.php:1590 msgid "Thu" msgstr "Do" #. l10n: Short week day name -#: js/messages.php:142 libraries/common.lib.php:1592 +#: js/messages.php:154 libraries/common.lib.php:1592 msgid "Fri" msgstr "Vr" #. l10n: Short week day name -#: js/messages.php:144 libraries/common.lib.php:1594 +#: js/messages.php:156 libraries/common.lib.php:1594 msgid "Sat" msgstr "Za" #. l10n: Minimal week day name -#: js/messages.php:148 +#: js/messages.php:160 msgid "Su" msgstr "Zo" #. l10n: Minimal week day name -#: js/messages.php:150 +#: js/messages.php:162 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "Ma" #. l10n: Minimal week day name -#: js/messages.php:152 +#: js/messages.php:164 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "Di" #. l10n: Minimal week day name -#: js/messages.php:154 +#: js/messages.php:166 #, fuzzy #| msgid "Wed" msgid "We" msgstr "Wo" #. l10n: Minimal week day name -#: js/messages.php:156 +#: js/messages.php:168 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "Do" #. l10n: Minimal week day name -#: js/messages.php:158 +#: js/messages.php:170 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "Vr" #. l10n: Minimal week day name -#: js/messages.php:160 +#: js/messages.php:172 msgid "Sa" msgstr "Za" #. l10n: Column header for week of the year in calendar -#: js/messages.php:162 +#: js/messages.php:174 msgid "Wk" msgstr "Week" -#: js/messages.php:164 +#: js/messages.php:176 msgid "Hour" msgstr "Uur" -#: js/messages.php:165 +#: js/messages.php:177 msgid "Minute" msgstr "Minuut" -#: js/messages.php:166 +#: js/messages.php:178 msgid "Second" msgstr "Seconde" @@ -1337,7 +1382,7 @@ msgstr "Indexen" #: libraries/Index.class.php:444 libraries/mult_submits.inc.php:103 #: libraries/tbl_properties.inc.php:519 tbl_structure.php:33 -#: tbl_structure.php:155 tbl_structure.php:159 tbl_structure.php:474 +#: tbl_structure.php:155 tbl_structure.php:159 tbl_structure.php:472 #: tbl_tracking.php:322 msgid "Unique" msgstr "Unieke waarde" @@ -1380,8 +1425,8 @@ msgstr "" "De indexen %1$s en %2$s lijken hetzelfde, mogelijk kan een van beide worden " "verwijderd." -#: libraries/List_Database.class.php:431 libraries/server_links.inc.php:41 -#: server_databases.php:88 server_privileges.php:1660 +#: libraries/List_Database.class.php:431 libraries/server_links.inc.php:42 +#: server_databases.php:88 server_privileges.php:1680 #: setup/lib/messages.inc.php:110 test/theme.php:93 msgid "Databases" msgstr "Databases" @@ -1556,7 +1601,7 @@ msgstr "Wachtwoord:" msgid "Server Choice" msgstr "Serverkeuze" -#: libraries/auth/cookie.auth.lib.php:320 libraries/header.inc.php:59 +#: libraries/auth/cookie.auth.lib.php:320 libraries/header.inc.php:63 msgid "Cookies must be enabled past this point." msgstr "Cookies moeten aan staan voorbij dit punt." @@ -1638,7 +1683,7 @@ msgstr "" "Kan iconv, libiconv en recode_string functies niet gebruiken hoewel de " "extensies geladen geladen lijken te zijn. Controleer de PHP configuratie." -#: libraries/common.inc.php:583 +#: libraries/common.inc.php:587 msgid "" "phpMyAdmin was unable to read your configuration file!
This might " "happen if PHP finds a parse error in it or PHP cannot find the file.
$cfg['PmaAbsoluteUri'] directive MUST be set in your " "configuration file!" @@ -1668,28 +1713,28 @@ msgstr "" "De $cfg['PmaAbsoluteUri'] richtlijn MOET gezet zijn in het " "configuratiebestand!" -#: libraries/common.inc.php:629 +#: libraries/common.inc.php:633 #, fuzzy, php-format #| msgid "Invalid server index: \"%s\"" msgid "Invalid server index: %s" msgstr "Ongeldige serverindex: \"%s\"" -#: libraries/common.inc.php:636 +#: libraries/common.inc.php:640 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "Ongeldige machinenaam voor server %1$s. Controleer uw configuratie." -#: libraries/common.inc.php:645 libraries/header.inc.php:96 +#: libraries/common.inc.php:649 libraries/header.inc.php:100 #: libraries/select_server.lib.php:41 libraries/select_server.lib.php:47 #: main.php:185 test/theme.php:57 msgid "Server" msgstr "Server" -#: libraries/common.inc.php:823 +#: libraries/common.inc.php:827 msgid "Invalid authentication method set in configuration:" msgstr "Ongeldige authenticatiemethode opgegeven in configuratie:" -#: libraries/common.inc.php:926 +#: libraries/common.inc.php:930 #, php-format msgid "You should upgrade to %s %s or later." msgstr "U moet opwaarderen (upgraden) naar %s %s of hoger." @@ -1821,45 +1866,45 @@ msgstr "," msgid "%B %d, %Y at %I:%M %p" msgstr "%d %B %Y om %H:%M" -#: libraries/common.lib.php:1907 +#: libraries/common.lib.php:1911 #, 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:2322 libraries/common.lib.php:2325 +#: libraries/common.lib.php:2326 libraries/common.lib.php:2329 #: libraries/display_tbl.lib.php:290 server_status.php:719 msgid "Begin" msgstr "Begin" -#: libraries/common.lib.php:2323 libraries/common.lib.php:2326 +#: libraries/common.lib.php:2327 libraries/common.lib.php:2330 #: libraries/display_tbl.lib.php:291 server_binlog.php:168 #: server_binlog.php:170 msgid "Previous" msgstr "Vorige" -#: libraries/common.lib.php:2354 libraries/common.lib.php:2357 +#: libraries/common.lib.php:2358 libraries/common.lib.php:2361 #: libraries/display_tbl.lib.php:353 msgid "End" msgstr "Einde" -#: libraries/common.lib.php:2430 +#: libraries/common.lib.php:2434 #, php-format msgid "Jump to database "%s"." msgstr "Ga naar database "%s"." -#: libraries/common.lib.php:2450 +#: libraries/common.lib.php:2454 #, 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:2830 libraries/common.lib.php:2837 +#: libraries/common.lib.php:2834 libraries/common.lib.php:2841 #: libraries/db_links.inc.php:68 libraries/export/sql.php:25 -#: libraries/import/sql.php:18 libraries/server_links.inc.php:45 +#: libraries/import/sql.php:18 libraries/server_links.inc.php:46 #: libraries/tbl_links.inc.php:60 querywindow.php:99 test/theme.php:97 msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2839 libraries/db_links.inc.php:104 +#: libraries/common.lib.php:2843 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,15 +1953,15 @@ msgstr "Query opbouwen" msgid "Designer" msgstr "Designer" -#: libraries/db_links.inc.php:98 libraries/server_links.inc.php:88 +#: libraries/db_links.inc.php:98 libraries/server_links.inc.php:89 #: libraries/tbl_links.inc.php:91 pmd_pdf.php:84 pmd_pdf.php:110 #: setup/frames/menu.inc.php:21 msgid "Import" msgstr "Importeer" -#: libraries/db_links.inc.php:111 libraries/server_links.inc.php:66 -#: server_privileges.php:111 server_privileges.php:1722 -#: server_privileges.php:2071 test/theme.php:117 +#: libraries/db_links.inc.php:111 libraries/server_links.inc.php:67 +#: server_privileges.php:112 server_privileges.php:1742 +#: server_privileges.php:2092 test/theme.php:117 msgid "Privileges" msgstr "Rechten" @@ -1937,7 +1982,7 @@ msgstr "" "a]" #: libraries/db_structure.lib.php:69 server_databases.php:142 -#: tbl_printview.php:336 tbl_structure.php:682 +#: tbl_printview.php:336 tbl_structure.php:680 msgid "Overhead" msgstr "Overhead" @@ -1956,7 +2001,7 @@ msgstr "De server reageert niet" msgid "(or the local MySQL server's socket is not correctly configured)" msgstr "(of de MySQL-server heeft het socket niet juist ingesteld)" -#: libraries/dbi/mysql.dbi.lib.php:362 tbl_structure.php:608 +#: libraries/dbi/mysql.dbi.lib.php:362 tbl_structure.php:606 msgid "Details..." msgstr "Details..." @@ -1966,22 +2011,22 @@ msgid "Change password" msgstr "Wijzig wachtwoord" #: libraries/display_change_password.lib.php:35 -#: libraries/replication_gui.lib.php:345 server_privileges.php:807 +#: libraries/replication_gui.lib.php:345 server_privileges.php:808 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:796 -#: server_privileges.php:800 server_privileges.php:811 -#: server_privileges.php:1538 server_synchronize.php:1175 +#: libraries/replication_gui.lib.php:349 server_privileges.php:797 +#: server_privileges.php:801 server_privileges.php:812 +#: server_privileges.php:1558 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:815 server_privileges.php:818 +#: server_privileges.php:816 server_privileges.php:819 msgid "Re-type" msgstr "Type opnieuw" @@ -1995,12 +2040,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:822 +#: libraries/replication_gui.lib.php:360 server_privileges.php:823 msgid "Generate Password" msgstr "Genereer wachtwoord" #: libraries/display_change_password.lib.php:75 -#: libraries/replication_gui.lib.php:363 server_privileges.php:825 +#: libraries/replication_gui.lib.php:363 server_privileges.php:826 msgid "Generate" msgstr "Genereer" @@ -2013,8 +2058,8 @@ msgstr "Nieuwe database aanmaken" msgid "Create" msgstr "Aanmaken" -#: libraries/display_create_database.lib.php:40 server_privileges.php:113 -#: server_privileges.php:1427 server_replication.php:35 +#: libraries/display_create_database.lib.php:40 server_privileges.php:114 +#: server_privileges.php:1447 server_replication.php:35 msgid "No Privileges" msgstr "Geen rechten" @@ -2107,7 +2152,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:1875 server_processlist.php:75 +#: server_privileges.php:1895 server_processlist.php:75 msgid "None" msgstr "Geen" @@ -2304,7 +2349,7 @@ msgstr "Sorteren op sleutel" #: libraries/import/docsql.php:34 libraries/import/ldi.php:47 #: libraries/import/ods.php:30 libraries/import/sql.php:20 #: libraries/import/xls.php:26 libraries/import/xlsx.php:26 -#: libraries/import/xml.php:25 tbl_select.php:267 tbl_structure.php:753 +#: libraries/import/xml.php:25 tbl_select.php:267 tbl_structure.php:751 msgid "Options" msgstr "Opties" @@ -2381,7 +2426,7 @@ msgstr "Query duurde %01.4f sec" #: libraries/display_tbl.lib.php:2089 libraries/mult_submits.inc.php:113 #: querywindow.php:125 querywindow.php:129 querywindow.php:132 -#: tbl_structure.php:25 tbl_structure.php:150 tbl_structure.php:470 +#: tbl_structure.php:25 tbl_structure.php:150 tbl_structure.php:468 msgid "Change" msgstr "Veranderen" @@ -2453,7 +2498,7 @@ msgstr "Buffer Pool Gebruik" #: libraries/engines/innodb.lib.php:194 server_databases.php:137 #: server_databases.php:305 server_status.php:525 server_status.php:586 -#: server_status.php:607 tbl_printview.php:351 tbl_structure.php:696 +#: server_status.php:607 tbl_printview.php:351 tbl_structure.php:694 msgid "Total" msgstr "Totaal" @@ -2743,7 +2788,7 @@ msgstr "" "hernoemd met een opgehoogd volgnummer" #: libraries/export/codegen.php:37 setup/lib/messages.inc.php:88 -#: tbl_printview.php:376 tbl_structure.php:737 +#: tbl_printview.php:376 tbl_structure.php:735 msgid "Format" msgstr "Opmaak" @@ -2817,8 +2862,8 @@ 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:576 server_replication.php:316 tbl_printview.php:317 -#: tbl_structure.php:665 +#: server_privileges.php:577 server_replication.php:316 tbl_printview.php:317 +#: tbl_structure.php:663 msgid "Data" msgstr "Data" @@ -2867,9 +2912,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:731 -#: server_privileges.php:734 server_privileges.php:790 -#: server_privileges.php:1537 server_privileges.php:2069 +#: libraries/replication_gui.lib.php:329 server_privileges.php:732 +#: server_privileges.php:735 server_privileges.php:791 +#: server_privileges.php:1557 server_privileges.php:2090 #: server_processlist.php:55 server_synchronize.php:1159 msgid "Host" msgstr "Machine" @@ -3065,7 +3110,7 @@ msgstr "Exporteer inhoud" msgid "Open new phpMyAdmin window" msgstr "Open nieuw phpMyAdmin scherm" -#: libraries/header.inc.php:115 +#: libraries/header.inc.php:119 msgid "New table" msgstr "Nieuwe tabel" @@ -3227,20 +3272,20 @@ msgstr "Zet om naar Kana" #: 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 +#: tbl_structure.php:471 msgid "Primary" msgstr "Primaire sleutel" #: libraries/mult_submits.inc.php:98 libraries/tbl_properties.inc.php:116 #: libraries/tbl_properties.inc.php:525 tbl_printview.php:326 #: tbl_structure.php:31 tbl_structure.php:154 tbl_structure.php:158 -#: tbl_structure.php:475 tbl_structure.php:673 +#: tbl_structure.php:473 tbl_structure.php:671 msgid "Index" msgstr "Index" #: libraries/mult_submits.inc.php:108 libraries/tbl_properties.inc.php:531 #: tbl_structure.php:35 tbl_structure.php:156 tbl_structure.php:160 -#: tbl_structure.php:478 +#: tbl_structure.php:476 msgid "Fulltext" msgstr "Volledige tekst" @@ -3551,8 +3596,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:711 -#: server_privileges.php:714 server_privileges.php:721 +#: libraries/replication_gui.lib.php:259 server_privileges.php:712 +#: server_privileges.php:715 server_privileges.php:722 #: server_synchronize.php:1171 msgid "User name" msgstr "Gebruikersnaam" @@ -3576,7 +3621,7 @@ msgstr "Variabelen" #: 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 +#: tbl_structure.php:727 msgid "Value" msgstr "Waarde" @@ -3596,34 +3641,34 @@ msgstr "" msgid "Add slave replication user" msgstr "Voeg slave replicatie gebruiker toe" -#: libraries/replication_gui.lib.php:254 server_privileges.php:716 +#: libraries/replication_gui.lib.php:254 server_privileges.php:717 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:717 -#: server_privileges.php:784 server_privileges.php:808 -#: server_privileges.php:1928 server_privileges.php:1958 +#: libraries/replication_gui.lib.php:346 server_privileges.php:718 +#: server_privileges.php:785 server_privileges.php:809 +#: server_privileges.php:1948 server_privileges.php:1978 msgid "Use text field" msgstr "Gebruik tekstveld" -#: libraries/replication_gui.lib.php:302 server_privileges.php:764 +#: libraries/replication_gui.lib.php:302 server_privileges.php:765 msgid "Any host" msgstr "Een willekeurige machine" -#: libraries/replication_gui.lib.php:306 server_privileges.php:768 +#: libraries/replication_gui.lib.php:306 server_privileges.php:769 msgid "Local" msgstr "lokaal" -#: libraries/replication_gui.lib.php:312 server_privileges.php:773 +#: libraries/replication_gui.lib.php:312 server_privileges.php:774 msgid "This Host" msgstr "Deze machine" -#: libraries/replication_gui.lib.php:318 server_privileges.php:779 +#: libraries/replication_gui.lib.php:318 server_privileges.php:780 msgid "Use Host Table" msgstr "Gebruik Host Tabel" -#: libraries/replication_gui.lib.php:331 server_privileges.php:792 +#: libraries/replication_gui.lib.php:331 server_privileges.php:793 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -3659,29 +3704,29 @@ msgstr "Onbekende taal: %1$s." msgid "Servers" msgstr "Servers" -#: libraries/server_links.inc.php:53 server_engines.php:112 +#: libraries/server_links.inc.php:54 server_engines.php:112 #: server_engines.php:116 server_status.php:415 test/theme.php:105 msgid "Variables" msgstr "Variabelen" -#: libraries/server_links.inc.php:57 test/theme.php:109 +#: libraries/server_links.inc.php:58 test/theme.php:109 msgid "Charsets" msgstr "Karaktersets" -#: libraries/server_links.inc.php:61 test/theme.php:113 +#: libraries/server_links.inc.php:62 test/theme.php:113 msgid "Engines" msgstr "Engines" -#: libraries/server_links.inc.php:76 server_binlog.php:110 +#: libraries/server_links.inc.php:77 server_binlog.php:110 #: server_status.php:364 test/theme.php:121 msgid "Binary log" msgstr "Binaire log" -#: libraries/server_links.inc.php:80 +#: libraries/server_links.inc.php:81 msgid "Processes" msgstr "Processen" -#: libraries/server_links.inc.php:92 server_synchronize.php:1092 +#: libraries/server_links.inc.php:93 server_synchronize.php:1092 #: server_synchronize.php:1100 msgid "Synchronize" msgstr "Synchronizatie" @@ -3929,13 +3974,13 @@ msgstr "PARTITION definitie" msgid "Save" msgstr "Opslaan" -#: libraries/tbl_properties.inc.php:780 tbl_structure.php:542 +#: libraries/tbl_properties.inc.php:780 tbl_structure.php:540 #, fuzzy, php-format #| msgid "Add column(s)" msgid "Add %s column(s)" msgstr "Kolom(men) toevoegen" -#: libraries/tbl_properties.inc.php:784 tbl_structure.php:536 +#: libraries/tbl_properties.inc.php:784 tbl_structure.php:534 #, fuzzy #| msgid "You have to add at least one field." msgid "You have to add at least one column." @@ -4154,8 +4199,8 @@ msgstr "Herstel" msgid "Protocol version" msgstr "Protocolversie" -#: main.php:189 server_privileges.php:1389 server_privileges.php:1536 -#: server_privileges.php:1650 server_privileges.php:2068 +#: main.php:189 server_privileges.php:1406 server_privileges.php:1556 +#: server_privileges.php:1670 server_privileges.php:2089 #: server_processlist.php:54 msgid "User" msgstr "Gebruiker" @@ -4617,117 +4662,117 @@ msgstr "Opslag Engines" msgid "View dump (schema) of databases" msgstr "Bekijk dump (schema) van de databases" -#: server_privileges.php:24 server_privileges.php:266 +#: server_privileges.php:25 server_privileges.php:267 msgid "Includes all privileges except GRANT." msgstr "Bevat alle privileges behalve GRANT." -#: server_privileges.php:25 server_privileges.php:192 -#: server_privileges.php:515 +#: server_privileges.php:26 server_privileges.php:193 +#: server_privileges.php:516 msgid "Allows altering the structure of existing tables." msgstr "Maakt het mogelijk de structuur van bestaande tabellen aan te passen." -#: server_privileges.php:26 server_privileges.php:208 -#: server_privileges.php:521 +#: server_privileges.php:27 server_privileges.php:209 +#: server_privileges.php:522 msgid "Allows altering and dropping stored routines." msgstr "Maakt het mogelijk om stored routines te bewerken en te verwijderen." -#: server_privileges.php:27 server_privileges.php:184 -#: server_privileges.php:514 +#: server_privileges.php:28 server_privileges.php:185 +#: server_privileges.php:515 msgid "Allows creating new databases and tables." msgstr "Maakt het mogelijk om nieuwe databases en tabellen te maken." -#: server_privileges.php:28 server_privileges.php:207 -#: server_privileges.php:520 +#: server_privileges.php:29 server_privileges.php:208 +#: server_privileges.php:521 msgid "Allows creating stored routines." msgstr "Maakt het mogelijk om stored routines aan te maken." -#: server_privileges.php:29 server_privileges.php:514 +#: server_privileges.php:30 server_privileges.php:515 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 +#: server_privileges.php:31 server_privileges.php:196 +#: server_privileges.php:519 msgid "Allows creating temporary tables." msgstr "Maakt het mogelijk om tijdelijke tabellen te maken." -#: server_privileges.php:31 server_privileges.php:209 -#: server_privileges.php:554 +#: server_privileges.php:32 server_privileges.php:210 +#: server_privileges.php:555 msgid "Allows creating, dropping and renaming user accounts." msgstr "" "Maakt het mogelijk om gebruikersaccounts te maken, hernoemen en verwijderen." -#: server_privileges.php:32 server_privileges.php:199 -#: server_privileges.php:203 server_privileges.php:526 -#: server_privileges.php:530 +#: server_privileges.php:33 server_privileges.php:200 +#: server_privileges.php:204 server_privileges.php:527 +#: server_privileges.php:531 msgid "Allows creating new views." msgstr "Maakt het mogelijk om nieuwe views te maken." -#: server_privileges.php:33 server_privileges.php:183 -#: server_privileges.php:506 +#: server_privileges.php:34 server_privileges.php:184 +#: server_privileges.php:507 msgid "Allows deleting data." msgstr "Maakt het mogelijk om data te verwijderen." -#: server_privileges.php:34 server_privileges.php:185 -#: server_privileges.php:517 +#: server_privileges.php:35 server_privileges.php:186 +#: server_privileges.php:518 msgid "Allows dropping databases and tables." msgstr "Maakt het mogelijk om databases en tabellen te verwijderen." -#: server_privileges.php:35 server_privileges.php:517 +#: server_privileges.php:36 server_privileges.php:518 msgid "Allows dropping tables." msgstr "Maakt het mogelijk tabellen te verwijderen." -#: server_privileges.php:36 server_privileges.php:200 -#: server_privileges.php:534 +#: server_privileges.php:37 server_privileges.php:201 +#: server_privileges.php:535 msgid "Allows to set up events for the event scheduler" msgstr "Maakt het mogelijk om gebeurtenissen in de planner te zetten" -#: server_privileges.php:37 server_privileges.php:210 -#: server_privileges.php:522 +#: server_privileges.php:38 server_privileges.php:211 +#: server_privileges.php:523 msgid "Allows executing stored routines." msgstr "Maakt het mogelijk om stored routines uit te voeren." -#: server_privileges.php:38 server_privileges.php:189 -#: server_privileges.php:509 +#: server_privileges.php:39 server_privileges.php:190 +#: server_privileges.php:510 msgid "Allows importing data from and exporting data into files." msgstr "" "Maakt het mogelijk om data te importeren en te exporteren van en naar " "bestanden." -#: server_privileges.php:39 server_privileges.php:540 +#: server_privileges.php:40 server_privileges.php:541 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "Maakt het mogelijk dat gebruikers en privileges toe te voegen zonder de " "privilegestabel opnieuw op te vragen." -#: server_privileges.php:40 server_privileges.php:191 -#: server_privileges.php:516 +#: server_privileges.php:41 server_privileges.php:192 +#: server_privileges.php:517 msgid "Allows creating and dropping indexes." msgstr "Maakt het mogelijk om indexen te creëren en te verwijderen." -#: server_privileges.php:41 server_privileges.php:181 -#: server_privileges.php:442 server_privileges.php:504 +#: server_privileges.php:42 server_privileges.php:182 +#: server_privileges.php:443 server_privileges.php:505 msgid "Allows inserting and replacing data." msgstr "Maakt het mogelijk om data in te voegen en te vervangen." -#: server_privileges.php:42 server_privileges.php:196 -#: server_privileges.php:549 +#: server_privileges.php:43 server_privileges.php:197 +#: server_privileges.php:550 msgid "Allows locking tables for the current thread." msgstr "Maakt het mogelijk tabellen op slot te zetten voor de huidige thread." -#: server_privileges.php:43 server_privileges.php:646 -#: server_privileges.php:648 +#: server_privileges.php:44 server_privileges.php:647 +#: server_privileges.php:649 msgid "Limits the number of new connections the user may open per hour." msgstr "" "Limiteert het aantal nieuwe connecties die een gebruiker per uur mag openen." -#: server_privileges.php:44 server_privileges.php:634 -#: server_privileges.php:636 +#: server_privileges.php:45 server_privileges.php:635 +#: server_privileges.php:637 msgid "Limits the number of queries the user may send to the server per hour." msgstr "Limiteert het aantal queries dat een gebruiker mag versturen per uur." -#: server_privileges.php:45 server_privileges.php:640 -#: server_privileges.php:642 +#: server_privileges.php:46 server_privileges.php:641 +#: server_privileges.php:643 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -4735,64 +4780,64 @@ 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 +#: server_privileges.php:47 server_privileges.php:653 +#: server_privileges.php:655 msgid "Limits the number of simultaneous connections the user may have." msgstr "" "Limiteert het aantal gelijktijdige verbindingen dat de gebruiker open kan " "hebben." -#: server_privileges.php:47 server_privileges.php:188 -#: server_privileges.php:544 +#: server_privileges.php:48 server_privileges.php:189 +#: server_privileges.php:545 msgid "Allows viewing processes of all users" msgstr "Maakt het mogelijk om processen van alle gebruikers te zien" -#: server_privileges.php:48 server_privileges.php:190 -#: server_privileges.php:448 server_privileges.php:550 +#: server_privileges.php:49 server_privileges.php:191 +#: server_privileges.php:449 server_privileges.php:551 msgid "Has no effect in this MySQL version." msgstr "Heeft geen effect in deze MySQL versie." -#: server_privileges.php:49 server_privileges.php:186 -#: server_privileges.php:545 +#: server_privileges.php:50 server_privileges.php:187 +#: server_privileges.php:546 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" "Maakt het mogelijk om de serverinstellingen opnieuw op te vragen en de cache " "van de server leeg te maken." -#: server_privileges.php:50 server_privileges.php:198 -#: server_privileges.php:552 +#: server_privileges.php:51 server_privileges.php:199 +#: server_privileges.php:553 msgid "Allows the user to ask where the slaves / masters are." msgstr "" "Geeft het recht aan de gebruiker om te vragen waar de 'slaves' / 'masters' " "zijn." -#: server_privileges.php:51 server_privileges.php:197 -#: server_privileges.php:553 +#: server_privileges.php:52 server_privileges.php:198 +#: server_privileges.php:554 msgid "Needed for the replication slaves." msgstr "Nodig om 'slaves' te repliceren." -#: server_privileges.php:52 server_privileges.php:180 -#: server_privileges.php:439 server_privileges.php:503 +#: server_privileges.php:53 server_privileges.php:181 +#: server_privileges.php:440 server_privileges.php:504 msgid "Allows reading data." msgstr "Maakt het lezen van data mogelijk." -#: server_privileges.php:53 server_privileges.php:193 -#: server_privileges.php:547 +#: server_privileges.php:54 server_privileges.php:194 +#: server_privileges.php:548 msgid "Gives access to the complete list of databases." msgstr "Geeft toegang tot de complete lijst van databases." -#: server_privileges.php:54 server_privileges.php:204 -#: server_privileges.php:206 server_privileges.php:519 +#: server_privileges.php:55 server_privileges.php:205 +#: server_privileges.php:207 server_privileges.php:520 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Maakt het mogelijk om SHOW CREATE VIEW queries uit te voeren." -#: server_privileges.php:55 server_privileges.php:187 -#: server_privileges.php:546 +#: server_privileges.php:56 server_privileges.php:188 +#: server_privileges.php:547 msgid "Allows shutting down the server." msgstr "Maakt het mogelijk om de server te stoppen." -#: server_privileges.php:56 server_privileges.php:194 -#: server_privileges.php:543 +#: server_privileges.php:57 server_privileges.php:195 +#: server_privileges.php:544 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -4803,156 +4848,156 @@ msgstr "" "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 +#: server_privileges.php:58 server_privileges.php:202 +#: server_privileges.php:536 msgid "Allows creating and dropping triggers" msgstr "Maakt het mogelijk om triggers maken en te verwijderen" -#: server_privileges.php:58 server_privileges.php:182 -#: server_privileges.php:445 server_privileges.php:505 +#: server_privileges.php:59 server_privileges.php:183 +#: server_privileges.php:446 server_privileges.php:506 msgid "Allows changing data." msgstr "Maakt het mogelijk data aan te passen." -#: server_privileges.php:59 server_privileges.php:260 +#: server_privileges.php:60 server_privileges.php:261 msgid "No privileges." msgstr "Geen privileges." -#: server_privileges.php:302 server_privileges.php:303 +#: server_privileges.php:303 server_privileges.php:304 msgctxt "None privileges" msgid "None" msgstr "Geen" -#: server_privileges.php:431 server_privileges.php:566 -#: server_privileges.php:1718 server_privileges.php:1724 +#: server_privileges.php:432 server_privileges.php:567 +#: server_privileges.php:1738 server_privileges.php:1744 msgid "Table-specific privileges" msgstr "Tabel-specifieke privileges" -#: server_privileges.php:432 server_privileges.php:574 -#: server_privileges.php:1540 +#: server_privileges.php:433 server_privileges.php:575 +#: server_privileges.php:1560 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:563 server_privileges.php:1539 +#: server_privileges.php:564 server_privileges.php:1559 msgid "Global privileges" msgstr "Globale privileges" -#: server_privileges.php:565 server_privileges.php:1718 +#: server_privileges.php:566 server_privileges.php:1738 msgid "Database-specific privileges" msgstr "Database-specifieke privileges" -#: server_privileges.php:610 +#: server_privileges.php:611 msgid "Administration" msgstr "Administratie" -#: server_privileges.php:630 +#: server_privileges.php:631 msgid "Resource limits" msgstr "Resource-beperkingen" -#: server_privileges.php:631 +#: server_privileges.php:632 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "" "Opmerking: Het instellen van deze waarden op 0 (nul) verwijdert de limiet." -#: server_privileges.php:708 +#: server_privileges.php:709 msgid "Login Information" msgstr "Inloginformatie" -#: server_privileges.php:802 +#: server_privileges.php:803 msgid "Do not change the password" msgstr "Wijzig het wachtwoord niet" # Enkelvoud. -#: server_privileges.php:843 server_privileges.php:2205 +#: server_privileges.php:844 server_privileges.php:2226 msgid "No user found." msgstr "Geen gebruiker gevonden." -#: server_privileges.php:887 +#: server_privileges.php:888 #, php-format msgid "The user %s already exists!" msgstr "De gebruiker %s bestaat al!" -#: server_privileges.php:970 +#: server_privileges.php:971 msgid "You have added a new user." msgstr "U heeft een nieuwe gebruiker toegevoegd." -#: server_privileges.php:1191 +#: server_privileges.php:1196 #, php-format msgid "You have updated the privileges for %s." msgstr "U heeft de rechten aangepast voor %s." -#: server_privileges.php:1215 +#: server_privileges.php:1220 #, php-format msgid "You have revoked the privileges for %s" msgstr "U heeft de rechten ingetrokken voor %s" -#: server_privileges.php:1251 +#: server_privileges.php:1256 #, php-format msgid "The password for %s was changed successfully." msgstr "Het wachtwoord voor %s is succesvol veranderd." -#: server_privileges.php:1271 +#: server_privileges.php:1276 #, php-format msgid "Deleting %s" msgstr "Verwijderen van %s" -#: server_privileges.php:1282 +#: server_privileges.php:1287 msgid "No users selected for deleting!" msgstr "Geen gebruikers geselecteerd om te verwijderen!" -#: server_privileges.php:1285 +#: server_privileges.php:1290 msgid "Reloading the privileges" msgstr "Bezig de privileges te verversen" -#: server_privileges.php:1300 +#: server_privileges.php:1305 msgid "The selected users have been deleted successfully." msgstr "De geselecteerde gebruikers zijn met succes verwijderd." -#: server_privileges.php:1335 +#: server_privileges.php:1344 msgid "The privileges were reloaded successfully." msgstr "De privileges zijn succesvol vernieuwd" -#: server_privileges.php:1363 server_privileges.php:1649 +#: server_privileges.php:1380 server_privileges.php:1669 msgid "Edit Privileges" msgstr "Wijzig rechten" -#: server_privileges.php:1372 +#: server_privileges.php:1389 msgid "Revoke" msgstr "Ongedaan maken" -#: server_privileges.php:1404 +#: server_privileges.php:1424 msgid "User overview" msgstr "Gebruikers Overzicht" -#: server_privileges.php:1541 server_privileges.php:1723 -#: server_privileges.php:2072 +#: server_privileges.php:1561 server_privileges.php:1743 +#: server_privileges.php:2093 msgid "Grant" msgstr "Toekennen" -#: server_privileges.php:1560 server_privileges.php:2162 +#: server_privileges.php:1580 server_privileges.php:2183 msgid "Any" msgstr "Elke" -#: server_privileges.php:1609 server_privileges.php:1633 -#: server_privileges.php:2027 server_privileges.php:2216 +#: server_privileges.php:1629 server_privileges.php:1653 +#: server_privileges.php:2048 server_privileges.php:2237 msgid "Add a new User" msgstr "Voeg een nieuwe gebruiker toe" -#: server_privileges.php:1614 +#: server_privileges.php:1634 msgid "Remove selected users" msgstr "Verwijder de geselecteerde gebruikers" -#: server_privileges.php:1617 +#: server_privileges.php:1637 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:1618 server_privileges.php:1619 -#: server_privileges.php:1620 +#: server_privileges.php:1638 server_privileges.php:1639 +#: server_privileges.php:1640 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:1636 +#: server_privileges.php:1656 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -4966,52 +5011,52 @@ msgstr "" "geval zijn dan moet men %sde privilege tabel vernieuwen%s voordat men verder " "gaat." -#: server_privileges.php:1684 +#: server_privileges.php:1704 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:1724 +#: server_privileges.php:1744 msgid "Column-specific privileges" msgstr "Kolom-specifieke privileges" -#: server_privileges.php:1925 +#: server_privileges.php:1945 msgid "Add privileges on the following database" msgstr "Voeg privileges toe aan de volgende database" -#: server_privileges.php:1943 +#: server_privileges.php:1963 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:1946 +#: server_privileges.php:1966 msgid "Add privileges on the following table" msgstr "Voeg privileges toe aan de volgende tabel" -#: server_privileges.php:2003 +#: server_privileges.php:2023 msgid "Change Login Information / Copy User" msgstr "Wijzig de Inlog Informatie / Kopieer gebruiker" -#: server_privileges.php:2006 +#: server_privileges.php:2026 msgid "Create a new user with the same privileges and ..." msgstr "Maak een nieuwe gebruiker aan met dezelfde privileges en ..." -#: server_privileges.php:2008 +#: server_privileges.php:2028 msgid "... keep the old one." msgstr "... behoud de oude." -#: server_privileges.php:2009 +#: server_privileges.php:2029 msgid " ... delete the old one from the user tables." msgstr " ... verwijder de oude van de user tabellen." -#: server_privileges.php:2010 +#: server_privileges.php:2030 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:2011 +#: server_privileges.php:2031 msgid "" " ... delete the old one from the user tables and reload the privileges " "afterwards." @@ -5019,44 +5064,44 @@ msgstr "" " ... verwijder de oude van de gebruikerstabellen en vernieuw de privileges " "achteraf." -#: server_privileges.php:2033 +#: server_privileges.php:2054 msgid "Database for user" msgstr "Database voor gebruiker" -#: server_privileges.php:2037 +#: server_privileges.php:2058 #, fuzzy #| msgid "None" msgctxt "Create none database for user" msgid "None" msgstr "Geen" -#: server_privileges.php:2038 +#: server_privileges.php:2059 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:2039 +#: server_privileges.php:2060 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "Geef alle rechten op de wildcard naam (gebruikersnaam\\_%)" -#: server_privileges.php:2042 +#: server_privileges.php:2063 #, php-format msgid "Grant all privileges on database "%s"" msgstr "Geef alle rechten op de database "%s"" -#: server_privileges.php:2065 +#: server_privileges.php:2086 #, php-format msgid "Users having access to "%s"" msgstr "Gebruikers die toegang hebben tot "%s"" -#: server_privileges.php:2173 +#: server_privileges.php:2194 msgid "global" msgstr "globaal" -#: server_privileges.php:2175 +#: server_privileges.php:2196 msgid "database-specific" msgstr "database-specifiek" -#: server_privileges.php:2177 +#: server_privileges.php:2198 msgid "wildcard" msgstr "jokerteken" @@ -8113,6 +8158,10 @@ msgstr "" msgid "Show insert query" msgstr "Toont SQL-query" +#: tbl_change.php:1143 +msgid "and then" +msgstr "en dan" + #: tbl_change.php:1147 msgid "Go back to previous page" msgstr "Terug" @@ -8195,7 +8244,7 @@ msgstr "" msgid "Add to index  %s column(s)" msgstr "Voeg  %s  kolom(men) toe aan index" -#: tbl_indexes.php:256 tbl_structure.php:589 tbl_structure.php:600 +#: tbl_indexes.php:256 tbl_structure.php:587 tbl_structure.php:598 msgid "Column count has to be larger than zero." msgstr "Het aantal kolommen moet groter dan nul zijn." @@ -8309,39 +8358,39 @@ msgstr "Controleer referentiële integriteit" msgid "Show tables" msgstr "Toon tabellen" -#: tbl_printview.php:310 tbl_structure.php:656 +#: tbl_printview.php:310 tbl_structure.php:654 msgid "Space usage" msgstr "Ruimtegebruik" -#: tbl_printview.php:314 tbl_structure.php:660 +#: tbl_printview.php:314 tbl_structure.php:658 msgid "Usage" msgstr "Gebruik" -#: tbl_printview.php:341 tbl_structure.php:687 +#: tbl_printview.php:341 tbl_structure.php:685 msgid "Effective" msgstr "Effectief" -#: tbl_printview.php:366 tbl_structure.php:725 +#: tbl_printview.php:366 tbl_structure.php:723 msgid "Row Statistics" msgstr "Rij-statistiek" -#: tbl_printview.php:369 tbl_structure.php:728 +#: tbl_printview.php:369 tbl_structure.php:726 msgid "Statements" msgstr "Opdrachten" -#: tbl_printview.php:380 tbl_structure.php:740 +#: tbl_printview.php:380 tbl_structure.php:738 msgid "static" msgstr "statisch" -#: tbl_printview.php:382 tbl_structure.php:742 +#: tbl_printview.php:382 tbl_structure.php:740 msgid "dynamic" msgstr "dynamisch" -#: tbl_printview.php:404 tbl_structure.php:785 +#: tbl_printview.php:404 tbl_structure.php:783 msgid "Row length" msgstr "Lengte van de rij" -#: tbl_printview.php:414 tbl_structure.php:793 +#: tbl_printview.php:414 tbl_structure.php:791 msgid " Row size " msgstr " Grootte van de rij" @@ -8418,50 +8467,50 @@ msgstr "Geen" msgid "Column %s has been dropped" msgstr "Tabel %s is vervallen" -#: tbl_structure.php:385 +#: tbl_structure.php:384 #, php-format msgid "A primary key has been added on %s" msgstr "Een primaire sleutel is toegevoegd aan %s" -#: tbl_structure.php:400 tbl_structure.php:414 tbl_structure.php:428 +#: tbl_structure.php:398 tbl_structure.php:412 tbl_structure.php:426 #, php-format msgid "An index has been added on %s" msgstr "Een index is toegevoegd aan %s" -#: tbl_structure.php:506 tbl_structure.php:508 +#: tbl_structure.php:504 tbl_structure.php:506 msgid "Relation view" msgstr "Relatieoverzicht" -#: tbl_structure.php:515 tbl_structure.php:517 +#: tbl_structure.php:513 tbl_structure.php:515 msgid "Propose table structure" msgstr "Tabelstructuur voorstellen" -#: tbl_structure.php:540 +#: tbl_structure.php:538 #, fuzzy #| msgid "Add column(s)" msgid "Add column" msgstr "Kolom(men) toevoegen" -#: tbl_structure.php:554 +#: tbl_structure.php:552 msgid "At End of Table" msgstr "Aan het eind van de tabel" -#: tbl_structure.php:555 +#: tbl_structure.php:553 msgid "At Beginning of Table" msgstr "Aan het begin van de tabel" -#: tbl_structure.php:556 +#: tbl_structure.php:554 #, php-format msgid "After %s" msgstr "Na %s" -#: tbl_structure.php:594 +#: tbl_structure.php:592 #, fuzzy, php-format #| msgid "Create an index on %s columns" msgid "Create an index on  %s columns" msgstr "Creëer een index op kolommen %s " -#: tbl_structure.php:756 +#: tbl_structure.php:754 msgid "partitioned" msgstr "gepartitioneerd" diff --git a/po/pl.po b/po/pl.po index 57e421f86..22356aa1e 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-13 09:03-0400\n" +"POT-Creation-Date: 2010-06-22 00:55+0530\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:1514 +#: libraries/display_tbl.lib.php:417 server_privileges.php:1534 msgid "Show all" msgstr "Pokaż wszystko" -#: browse_foreigners.php:82 libraries/common.lib.php:2313 +#: browse_foreigners.php:82 libraries/common.lib.php:2317 #: 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,18 +37,18 @@ 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:2831 -#: libraries/common.lib.php:2838 libraries/db_links.inc.php:75 +#: db_structure.php:106 libraries/common.lib.php:2835 +#: libraries/common.lib.php:2842 libraries/db_links.inc.php:75 #: libraries/tbl_links.inc.php:63 msgid "Search" msgstr "Szukaj" -#: browse_foreigners.php:153 db_operations.php:385 db_operations.php:429 -#: db_operations.php:499 db_operations.php:609 db_search.php:362 -#: db_structure.php:567 js/messages.php:48 libraries/Config.class.php:1046 +#: browse_foreigners.php:153 db_operations.php:394 db_operations.php:438 +#: db_operations.php:508 db_operations.php:618 db_search.php:362 +#: db_structure.php:565 js/messages.php:53 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:1335 libraries/common.lib.php:2288 +#: libraries/common.lib.php:1335 libraries/common.lib.php:2292 #: 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,15 +59,15 @@ 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:664 server_privileges.php:1624 -#: server_privileges.php:1971 server_privileges.php:2018 -#: server_privileges.php:2057 server_replication.php:235 +#: server_privileges.php:665 server_privileges.php:1644 +#: server_privileges.php:1991 server_privileges.php:2038 +#: server_privileges.php:2078 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 #: tbl_operations.php:302 tbl_operations.php:499 tbl_operations.php:561 -#: tbl_operations.php:681 tbl_select.php:327 tbl_structure.php:562 -#: tbl_structure.php:597 tbl_tracking.php:395 tbl_tracking.php:512 +#: tbl_operations.php:681 tbl_select.php:327 tbl_structure.php:560 +#: tbl_structure.php:595 tbl_tracking.php:395 tbl_tracking.php:512 #: view_create.php:182 view_operations.php:101 msgid "Go" msgstr "Wykonaj" @@ -93,7 +93,7 @@ msgstr "Użyj tej wartości" msgid "Database %1$s has been created." msgstr "Baza danych %1$s została utworzona." -#: db_datadict.php:49 db_operations.php:378 +#: db_datadict.php:49 db_operations.php:387 msgid "Database comment: " msgstr "Komentarz bazy danych: " @@ -120,10 +120,10 @@ 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:2070 +#: pdf_schema.php:1263 pdf_schema.php:1284 server_privileges.php:2091 #: 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 +#: tbl_structure.php:657 tbl_tracking.php:274 tbl_tracking.php:321 msgid "Type" msgstr "Typ" @@ -136,7 +136,7 @@ msgstr "Typ" msgid "Null" msgstr "Null" -#: db_datadict.php:178 db_structure.php:501 libraries/export/htmlword.php:247 +#: db_datadict.php:178 db_structure.php:499 libraries/export/htmlword.php:247 #: libraries/export/latex.php:360 libraries/export/odt.php:303 #: libraries/export/texytext.php:236 libraries/tbl_properties.inc.php:106 #: pdf_schema.php:1266 pdf_schema.php:1287 tbl_printview.php:146 @@ -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: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 +#: pdf_schema.php:1344 server_privileges.php:1588 server_privileges.php:1599 +#: server_privileges.php:1909 server_privileges.php:1914 +#: server_privileges.php:2208 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:1565 -#: server_privileges.php:1579 server_privileges.php:1889 -#: server_privileges.php:1892 server_privileges.php:2187 sql.php:193 +#: server_databases.php:64 server_privileges.php:1585 +#: server_privileges.php:1599 server_privileges.php:1909 +#: server_privileges.php:1912 server_privileges.php:2208 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" @@ -209,125 +209,121 @@ msgstr "Zaznacz wszystkie" msgid "Unselect All" msgstr "Odznacz wszystkie" -#: db_operations.php:38 tbl_create.php:54 +#: db_operations.php:43 tbl_create.php:54 msgid "The database name is empty!" msgstr "Nazwa bazy danych jest pusta!" -#: db_operations.php:236 +#: db_operations.php:241 #, php-format msgid "Database %s has been renamed to %s" msgstr "Baza danych %s ma nazwę zmienioną na %s" -#: db_operations.php:240 +#: db_operations.php:245 #, php-format msgid "Database %s has been copied to %s" msgstr "Baza danych %s została skopiowana do %s" -#: db_operations.php:412 +#: db_operations.php:421 msgid "Rename database to" msgstr "Zmień nazwę bazy danych na" -#: db_operations.php:417 server_processlist.php:57 +#: db_operations.php:426 server_processlist.php:57 msgid "Command" msgstr "Polecenie" -#: db_operations.php:429 tbl_change.php:1143 -msgid "and then" -msgstr "a następnie" - -#: db_operations.php:455 +#: db_operations.php:464 msgid "Copy database to" msgstr "Kopiuj bazę danych do" -#: db_operations.php:462 tbl_operations.php:528 tbl_tracking.php:388 +#: db_operations.php:471 tbl_operations.php:528 tbl_tracking.php:388 msgid "Structure only" msgstr "Tylko struktura" -#: db_operations.php:463 tbl_operations.php:529 tbl_tracking.php:390 +#: db_operations.php:472 tbl_operations.php:529 tbl_tracking.php:390 msgid "Structure and data" msgstr "Struktura i dane" -#: db_operations.php:464 tbl_operations.php:530 tbl_tracking.php:389 +#: db_operations.php:473 tbl_operations.php:530 tbl_tracking.php:389 msgid "Data only" msgstr "Tylko dane" -#: db_operations.php:472 +#: db_operations.php:481 msgid "CREATE DATABASE before copying" msgstr "CREATE DATABASE przed skopiowaniem" -#: db_operations.php:475 libraries/export/sql.php:52 +#: db_operations.php:484 libraries/export/sql.php:52 #: libraries/export/sql.php:74 libraries/export/sql.php:76 #: libraries/export/sql.php:82 tbl_operations.php:536 #, php-format msgid "Add %s" msgstr "Dodaj %s" -#: db_operations.php:479 libraries/export/sql.php:78 tbl_operations.php:299 +#: db_operations.php:488 libraries/export/sql.php:78 tbl_operations.php:299 #: tbl_operations.php:538 msgid "Add AUTO_INCREMENT value" msgstr "Dodaj wartości AUTO_INCREMENT" -#: db_operations.php:483 tbl_operations.php:545 +#: db_operations.php:492 tbl_operations.php:545 msgid "Add constraints" msgstr "Dodaj ograniczenia" -#: db_operations.php:496 +#: db_operations.php:505 msgid "Switch to copied database" msgstr "Przełącz do skopiowanej bazy danych" -#: db_operations.php:537 +#: db_operations.php:546 msgid "BLOB Repository" msgstr "Repozytorium BLOBów" -#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1352 -#: libraries/server_links.inc.php:49 server_processlist.php:59 +#: db_operations.php:549 db_tracking.php:76 libraries/common.lib.php:1352 +#: libraries/server_links.inc.php:50 server_processlist.php:59 #: tbl_tracking.php:596 test/theme.php:101 msgid "Status" msgstr "Status" -#: db_operations.php:548 +#: db_operations.php:557 #, fuzzy #| msgid "Enabled" msgctxt "BLOB repository" msgid "Enabled" msgstr "włączone" -#: db_operations.php:552 +#: db_operations.php:561 msgid "Disable" msgstr "Wyłącz" -#: db_operations.php:562 +#: db_operations.php:571 msgid "Damaged" msgstr "Uszkodzone" -#: db_operations.php:566 +#: db_operations.php:575 #, fuzzy #| msgid "Repair" msgctxt "BLOB repository" msgid "Repair" msgstr "Napraw" -#: db_operations.php:574 +#: db_operations.php:583 #, fuzzy #| msgid "Disabled" msgctxt "BLOB repository" msgid "Disabled" msgstr "wyłączone" -#: db_operations.php:578 +#: db_operations.php:587 msgid "Enable" msgstr "Włącz" -#: db_operations.php:602 libraries/Index.class.php:448 +#: db_operations.php:611 libraries/Index.class.php:448 #: libraries/db_structure.lib.php:62 libraries/mysql_charsets.lib.php:107 #: libraries/tbl_properties.inc.php:107 libraries/tbl_properties.inc.php:730 #: server_collations.php:54 server_collations.php:66 server_databases.php:111 #: tbl_operations.php:363 tbl_select.php:137 tbl_structure.php:179 -#: tbl_structure.php:767 tbl_tracking.php:275 tbl_tracking.php:326 +#: tbl_structure.php:765 tbl_tracking.php:275 tbl_tracking.php:326 msgid "Collation" msgstr "Metoda porównywania napisów" -#: db_operations.php:615 main.php:316 pdf_schema.php:34 +#: db_operations.php:624 main.php:316 pdf_schema.php:34 #, php-format msgid "" "The additional features for working with linked tables have been " @@ -336,14 +332,14 @@ msgstr "" "Dodatkowe możliwości pracy z połączonymi tabelami zostały wyłączone. Aby " "dowiedzieć się, dlaczego - kliknij %stutaj%s." -#: db_operations.php:648 +#: db_operations.php:657 msgid "Edit PDF Pages" 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:1665 -#: server_privileges.php:1721 server_privileges.php:1985 +#: libraries/header.inc.php:130 pdf_pages.php:424 server_privileges.php:1685 +#: server_privileges.php:1741 server_privileges.php:2005 #: server_synchronize.php:423 server_synchronize.php:866 tbl_tracking.php:592 #: test/theme.php:75 msgid "Table" @@ -352,7 +348,7 @@ msgstr "Tabela" #: db_printview.php:105 libraries/db_structure.lib.php:56 #: libraries/header_printview.inc.php:63 libraries/import.lib.php:146 #: navigation.php:638 navigation.php:660 server_databases.php:122 -#: tbl_printview.php:394 tbl_structure.php:365 tbl_structure.php:777 +#: tbl_printview.php:394 tbl_structure.php:365 tbl_structure.php:775 msgid "Rows" msgstr "Rekordów" @@ -360,30 +356,30 @@ msgstr "Rekordów" msgid "Size" msgstr "Rozmiar" -#: db_printview.php:162 db_structure.php:457 libraries/export/sql.php:559 +#: db_printview.php:162 db_structure.php:455 libraries/export/sql.php:559 #: libraries/export/sql.php:899 msgid "in use" msgstr "w użyciu" #: db_printview.php:187 libraries/db_info.inc.php:88 #: libraries/export/sql.php:514 pdf_schema.php:1241 tbl_printview.php:434 -#: tbl_structure.php:809 +#: tbl_structure.php:807 msgid "Creation" msgstr "Utworzenie" #: db_printview.php:196 libraries/db_info.inc.php:93 #: libraries/export/sql.php:519 pdf_schema.php:1246 tbl_printview.php:444 -#: tbl_structure.php:817 +#: tbl_structure.php:815 msgid "Last update" msgstr "Ostatnia aktualizacja" #: db_printview.php:205 libraries/db_info.inc.php:98 #: libraries/export/sql.php:524 pdf_schema.php:1251 tbl_printview.php:454 -#: tbl_structure.php:825 +#: tbl_structure.php:823 msgid "Last check" msgstr "Ostatnie sprawdzenie" -#: db_printview.php:222 db_structure.php:480 +#: db_printview.php:222 db_structure.php:478 #, fuzzy, php-format #| msgid "%s table(s)" msgid "%s table" @@ -444,7 +440,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:297 tbl_change.php:1031 tbl_indexes.php:250 +#: server_privileges.php:298 tbl_change.php:1031 tbl_indexes.php:250 #: tbl_select.php:288 msgid "Or" msgstr "lub" @@ -517,9 +513,9 @@ 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:2833 +#: db_structure.php:105 libraries/common.lib.php:2837 #: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50 -#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:467 +#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:465 msgid "Browse" msgstr "Przeglądaj" @@ -564,36 +560,36 @@ 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:2832 libraries/sql_query_form.lib.php:334 +#: libraries/common.lib.php:2836 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:2829 libraries/common.lib.php:2836 +#: libraries/common.lib.php:2833 libraries/common.lib.php:2840 #: 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:1106 #: libraries/tbl_links.inc.php:56 pmd_general.php:134 -#: server_privileges.php:593 server_replication.php:315 tbl_tracking.php:269 +#: server_privileges.php:594 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:1656 +#: db_structure.php:543 db_structure.php:544 db_tracking.php:91 +#: libraries/Index.class.php:483 libraries/common.lib.php:1657 #: 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 -#: tbl_structure.php:152 tbl_structure.php:471 +#: tbl_structure.php:152 tbl_structure.php:469 msgid "Drop" 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:1655 +#: db_structure.php:541 db_structure.php:542 libraries/common.lib.php:1656 #: libraries/mult_submits.inc.php:39 libraries/tbl_links.inc.php:105 msgid "Empty" msgstr "Wyczyść" @@ -603,25 +599,25 @@ msgstr "Wyczyść" msgid "Table %s has been emptied" msgstr "Tabela %s została opróżniona" -#: db_structure.php:326 libraries/tbl_links.inc.php:133 +#: db_structure.php:325 libraries/tbl_links.inc.php:133 #, php-format msgid "View %s has been dropped" msgstr "Perspektywa %s została usunięta" -#: db_structure.php:326 libraries/tbl_links.inc.php:133 +#: db_structure.php:325 libraries/tbl_links.inc.php:133 #, php-format msgid "Table %s has been dropped" msgstr "Tabela %s została usunięta" -#: db_structure.php:333 +#: db_structure.php:332 msgid "Tracking is active." msgstr "" -#: db_structure.php:335 +#: db_structure.php:334 msgid "Tracking is not active." msgstr "" -#: db_structure.php:420 libraries/display_tbl.lib.php:1944 +#: db_structure.php:418 libraries/display_tbl.lib.php:1944 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation%" @@ -630,86 +626,86 @@ msgstr "" "Ta perspektywa ma przynajmniej tyle wierszy. Więcej informacji w %" "sdocumentation%s." -#: db_structure.php:434 db_structure.php:448 libraries/header.inc.php:126 +#: db_structure.php:432 db_structure.php:446 libraries/header.inc.php:130 #: libraries/tbl_info.inc.php:66 tbl_structure.php:185 test/theme.php:74 msgid "View" msgstr "Perspektywa" -#: db_structure.php:485 libraries/db_structure.lib.php:49 -#: libraries/server_links.inc.php:70 server_replication.php:33 +#: db_structure.php:483 libraries/db_structure.lib.php:49 +#: libraries/server_links.inc.php:71 server_replication.php:33 #: server_replication.php:164 server_status.php:369 msgid "Replication" msgstr "Replikacja" -#: db_structure.php:489 +#: db_structure.php:487 msgid "Sum" msgstr "Suma" -#: db_structure.php:496 libraries/StorageEngine.class.php:356 +#: db_structure.php:494 libraries/StorageEngine.class.php:356 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "%s to domyślny mechanizm składowania tego serwera MySQL." -#: db_structure.php:524 db_structure.php:541 db_structure.php:542 +#: db_structure.php:522 db_structure.php:539 db_structure.php:540 #: 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:1596 tbl_structure.php:455 -#: tbl_structure.php:464 +#: server_databases.php:351 server_privileges.php:1616 tbl_structure.php:453 +#: tbl_structure.php:462 msgid "With selected:" msgstr "Zaznaczone:" -#: db_structure.php:527 libraries/display_tbl.lib.php:2076 -#: server_databases.php:348 server_privileges.php:569 -#: server_privileges.php:1599 tbl_structure.php:458 +#: db_structure.php:525 libraries/display_tbl.lib.php:2076 +#: server_databases.php:348 server_privileges.php:570 +#: server_privileges.php:1619 tbl_structure.php:456 msgid "Check All" msgstr "Zaznacz wszystkie" -#: db_structure.php:531 libraries/display_tbl.lib.php:2077 +#: db_structure.php:529 libraries/display_tbl.lib.php:2077 #: libraries/replication_gui.lib.php:33 server_databases.php:350 -#: server_privileges.php:572 server_privileges.php:1603 tbl_structure.php:462 +#: server_privileges.php:573 server_privileges.php:1623 tbl_structure.php:460 msgid "Uncheck All" msgstr "Odznacz wszystkie" -#: db_structure.php:536 +#: db_structure.php:534 msgid "Check tables having overhead" msgstr "Zaznacz nieoptymalne" -#: db_structure.php:547 db_structure.php:548 db_structure.php:599 +#: db_structure.php:545 db_structure.php:546 db_structure.php:597 #: libraries/display_tbl.lib.php:2180 libraries/mult_submits.inc.php:28 -#: tbl_structure.php:492 tbl_structure.php:494 +#: tbl_structure.php:490 tbl_structure.php:492 msgid "Print view" msgstr "Widok do druku" -#: db_structure.php:549 db_structure.php:550 libraries/mult_submits.inc.php:42 +#: db_structure.php:547 db_structure.php:548 libraries/mult_submits.inc.php:42 #: tbl_operations.php:581 msgid "Check table" msgstr "Sprawdź tabelę" -#: db_structure.php:551 db_structure.php:552 libraries/mult_submits.inc.php:47 -#: tbl_operations.php:621 tbl_structure.php:709 tbl_structure.php:711 +#: db_structure.php:549 db_structure.php:550 libraries/mult_submits.inc.php:47 +#: tbl_operations.php:621 tbl_structure.php:707 tbl_structure.php:709 msgid "Optimize table" msgstr "Optymalizuj tabelę" -#: db_structure.php:553 db_structure.php:554 libraries/mult_submits.inc.php:52 +#: db_structure.php:551 db_structure.php:552 libraries/mult_submits.inc.php:52 #: tbl_operations.php:611 msgid "Repair table" msgstr "Napraw tabelę" -#: db_structure.php:555 db_structure.php:556 libraries/mult_submits.inc.php:57 +#: db_structure.php:553 db_structure.php:554 libraries/mult_submits.inc.php:57 #: tbl_operations.php:601 msgid "Analyze table" msgstr "Analizuj tabelę" -#: db_structure.php:557 db_structure.php:558 libraries/db_links.inc.php:71 +#: db_structure.php:555 db_structure.php:556 libraries/db_links.inc.php:71 #: 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:1380 +#: libraries/server_links.inc.php:85 libraries/tbl_links.inc.php:82 +#: pmd_pdf.php:84 pmd_pdf.php:109 server_privileges.php:1397 #: setup/frames/menu.inc.php:22 tbl_row_action.php:59 msgid "Export" msgstr "Eksport" -#: db_structure.php:606 libraries/display_pdf_schema.lib.php:44 +#: db_structure.php:604 libraries/display_pdf_schema.lib.php:44 msgid "Data Dictionary" msgstr "Słownik danych" @@ -721,10 +717,10 @@ msgstr "Pomiń zablokowane tabele" #: db_tracking.php:71 libraries/export/htmlword.php:86 #: libraries/export/latex.php:148 libraries/export/odt.php:113 #: libraries/export/sql.php:342 libraries/export/texytext.php:84 -#: libraries/export/xml.php:255 libraries/header.inc.php:106 +#: libraries/export/xml.php:255 libraries/header.inc.php:110 #: libraries/header_printview.inc.php:58 server_databases.php:169 -#: server_privileges.php:1660 server_privileges.php:1721 -#: server_privileges.php:1979 server_processlist.php:56 +#: server_privileges.php:1680 server_privileges.php:1741 +#: server_privileges.php:1999 server_processlist.php:56 #: server_synchronize.php:1179 server_synchronize.php:1183 #: tbl_tracking.php:591 test/theme.php:65 msgid "Database" @@ -746,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:1542 server_privileges.php:1725 -#: server_privileges.php:2073 tbl_structure.php:187 +#: server_privileges.php:1562 server_privileges.php:1745 +#: server_privileges.php:2094 tbl_structure.php:187 msgid "Action" msgstr "Działanie" @@ -784,8 +780,8 @@ msgstr "Tylko struktura" msgid "Untracked tables" msgstr "Pomiń zablokowane tabele" -#: db_tracking.php:172 db_tracking.php:174 tbl_structure.php:528 -#: tbl_structure.php:530 +#: db_tracking.php:172 db_tracking.php:174 tbl_structure.php:526 +#: tbl_structure.php:528 #, fuzzy msgid "Track table" msgstr "Sprawdź tabelę" @@ -955,187 +951,235 @@ msgstr "Brak nazwy hosta!" msgid "The user name is empty!" msgstr "Brak nazwy użytkownika!" -#: js/messages.php:44 server_privileges.php:1236 user_password.php:70 +#: js/messages.php:44 server_privileges.php:1241 user_password.php:70 msgid "The password is empty!" msgstr "Puste hasło!" -#: js/messages.php:45 server_privileges.php:1234 user_password.php:73 +#: js/messages.php:45 server_privileges.php:1239 user_password.php:73 msgid "The passwords aren't the same!" msgstr "Hasła nie są identyczne!" -#: js/messages.php:49 pmd_general.php:342 pmd_general.php:379 +#: js/messages.php:46 +#, fuzzy +#| msgid "Add a new User" +msgid "Add a New User" +msgstr "Dodaj nowego użytkownika" + +#: js/messages.php:47 js/messages.php:54 pmd_general.php:342 +#: pmd_general.php:379 msgid "Cancel" msgstr "Anuluj" -#: js/messages.php:52 pmd_save_pos.php:54 +#: js/messages.php:48 +#, fuzzy +msgid "Create User" +msgstr "Utwórz związek" + +#: js/messages.php:49 +#, fuzzy +#| msgid "Reload privileges" +msgid "Reloading Privileges" +msgstr "Przeładuj uprawnienia" + +#: js/messages.php:50 +#, fuzzy +#| msgid "Remove selected users" +msgid "Removing Selected Users" +msgstr "Usuń zaznaczonych użytkowników" + +#: js/messages.php:57 +#, fuzzy +#| msgid "Load" +msgid "Loading" +msgstr "Załaduj" + +#: js/messages.php:58 +#, fuzzy +#| msgid "Processes" +msgid "Processing Request" +msgstr "Procesy" + +#: js/messages.php:59 +msgid "Error in Processing Request" +msgstr "" + +#: js/messages.php:60 +msgid "Dropping Column" +msgstr "" + +#: js/messages.php:61 +msgid "Adding Primary Key" +msgstr "" + +#: js/messages.php:64 pmd_save_pos.php:54 msgid "Modifications have been saved" msgstr "Modyfikacje zostały zapamiętane" -#: js/messages.php:53 pmd_relation_upd.php:49 +#: js/messages.php:65 pmd_relation_upd.php:49 msgid "Relation deleted" msgstr "Usunięto powiązanie" -#: js/messages.php:54 pmd_relation_new.php:64 +#: js/messages.php:66 pmd_relation_new.php:64 msgid "FOREIGN KEY relation added" msgstr "Relacja FOREIGN KEY została dodana." -#: js/messages.php:55 pmd_relation_new.php:86 +#: js/messages.php:67 pmd_relation_new.php:86 msgid "Internal relation added" msgstr "Dodano wewnętrzne powiązanie" -#: js/messages.php:56 pmd_relation_new.php:63 pmd_relation_new.php:88 +#: js/messages.php:68 pmd_relation_new.php:63 pmd_relation_new.php:88 msgid "Error: Relation not added." msgstr "Błąd: nie dodano związku." -#: js/messages.php:57 pmd_relation_new.php:31 +#: js/messages.php:69 pmd_relation_new.php:31 msgid "Error: relation already exists." msgstr "Błąd: związek już istnieje." -#: js/messages.php:58 +#: js/messages.php:70 msgid "Error saving coordinates for Designer." msgstr "Błąd podczas zapisywania współrzędnych dla Projektanta." -#: js/messages.php:59 libraries/relation.lib.php:107 +#: js/messages.php:71 libraries/relation.lib.php:107 #: libraries/relation.lib.php:119 msgid "General relation features" msgstr "Ogólne funkcje relacyjne" -#: js/messages.php:59 libraries/relation.lib.php:101 +#: js/messages.php:71 libraries/relation.lib.php:101 #: libraries/relation.lib.php:108 msgid "Disabled" msgstr "wyłączone" -#: js/messages.php:60 +#: js/messages.php:72 msgid "Select referenced key" msgstr "" -#: js/messages.php:61 +#: js/messages.php:73 msgid "Select Foreign Key" msgstr "Wybierz klucz zewnętrzny" -#: js/messages.php:62 +#: js/messages.php:74 msgid "Please select the primary key or a unique key" msgstr "Należy wybrać klucz główny lub klucz jednoznaczny" -#: js/messages.php:63 pmd_general.php:77 tbl_relation.php:548 +#: js/messages.php:75 pmd_general.php:77 tbl_relation.php:548 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" msgstr "Wybierz wyświetlane pole" #. l10n: Display text for calendar close link -#: js/messages.php:73 +#: js/messages.php:85 #, fuzzy #| msgid "Donate" msgid "Done" msgstr "Przekazanie darowizny" #. l10n: Display text for previous month link in calendar -#: js/messages.php:75 +#: js/messages.php:87 #, fuzzy #| msgid "Previous" msgid "Prev" msgstr "Poprzednie" #. l10n: Display text for next month link in calendar -#: js/messages.php:77 libraries/common.lib.php:2353 -#: libraries/common.lib.php:2356 libraries/display_tbl.lib.php:338 +#: js/messages.php:89 libraries/common.lib.php:2357 +#: libraries/common.lib.php:2360 libraries/display_tbl.lib.php:338 #: server_binlog.php:205 server_binlog.php:207 tbl_printview.php:424 -#: tbl_structure.php:801 +#: tbl_structure.php:799 msgid "Next" msgstr "Następne" #. l10n: Display text for current month link in calendar -#: js/messages.php:79 +#: js/messages.php:91 #, fuzzy #| msgid "Total" msgid "Today" msgstr "Sumarycznie" -#: js/messages.php:82 +#: js/messages.php:94 #, fuzzy #| msgid "Binary" msgid "January" msgstr " Binarne " -#: js/messages.php:83 +#: js/messages.php:95 msgid "February" msgstr "" -#: js/messages.php:84 +#: js/messages.php:96 #, fuzzy #| msgid "Mar" msgid "March" msgstr "Mar" -#: js/messages.php:85 +#: js/messages.php:97 #, fuzzy #| msgid "Apr" msgid "April" msgstr "Kwi" -#: js/messages.php:86 +#: js/messages.php:98 msgid "May" msgstr "Maj" -#: js/messages.php:87 +#: js/messages.php:99 #, fuzzy #| msgid "Jun" msgid "June" msgstr "Cze" -#: js/messages.php:88 +#: js/messages.php:100 #, fuzzy #| msgid "Jul" msgid "July" msgstr "Lip" -#: js/messages.php:89 +#: js/messages.php:101 #, fuzzy #| msgid "Aug" msgid "August" msgstr "Sie" -#: js/messages.php:90 +#: js/messages.php:102 msgid "September" msgstr "" -#: js/messages.php:91 +#: js/messages.php:103 #, fuzzy #| msgid "Oct" msgid "October" msgstr "Paź" -#: js/messages.php:92 +#: js/messages.php:104 msgid "November" msgstr "" -#: js/messages.php:93 +#: js/messages.php:105 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:97 libraries/common.lib.php:1557 +#: js/messages.php:109 libraries/common.lib.php:1557 msgid "Jan" msgstr "Sty" #. l10n: Short month name -#: js/messages.php:99 libraries/common.lib.php:1559 +#: js/messages.php:111 libraries/common.lib.php:1559 msgid "Feb" msgstr "Lut" #. l10n: Short month name -#: js/messages.php:101 libraries/common.lib.php:1561 +#: js/messages.php:113 libraries/common.lib.php:1561 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:103 libraries/common.lib.php:1563 +#: js/messages.php:115 libraries/common.lib.php:1563 msgid "Apr" msgstr "Kwi" #. l10n: Short month name -#: js/messages.php:105 libraries/common.lib.php:1565 +#: js/messages.php:117 libraries/common.lib.php:1565 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1143,178 +1187,178 @@ msgid "May" msgstr "Maj" #. l10n: Short month name -#: js/messages.php:107 libraries/common.lib.php:1567 +#: js/messages.php:119 libraries/common.lib.php:1567 msgid "Jun" msgstr "Cze" #. l10n: Short month name -#: js/messages.php:109 libraries/common.lib.php:1569 +#: js/messages.php:121 libraries/common.lib.php:1569 msgid "Jul" msgstr "Lip" #. l10n: Short month name -#: js/messages.php:111 libraries/common.lib.php:1571 +#: js/messages.php:123 libraries/common.lib.php:1571 msgid "Aug" msgstr "Sie" #. l10n: Short month name -#: js/messages.php:113 libraries/common.lib.php:1573 +#: js/messages.php:125 libraries/common.lib.php:1573 msgid "Sep" msgstr "Wrz" #. l10n: Short month name -#: js/messages.php:115 libraries/common.lib.php:1575 +#: js/messages.php:127 libraries/common.lib.php:1575 msgid "Oct" msgstr "Paź" #. l10n: Short month name -#: js/messages.php:117 libraries/common.lib.php:1577 +#: js/messages.php:129 libraries/common.lib.php:1577 msgid "Nov" msgstr "Lis" #. l10n: Short month name -#: js/messages.php:119 libraries/common.lib.php:1579 +#: js/messages.php:131 libraries/common.lib.php:1579 msgid "Dec" msgstr "Gru" -#: js/messages.php:122 +#: js/messages.php:134 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "Nie" -#: js/messages.php:123 +#: js/messages.php:135 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "Pon" -#: js/messages.php:124 +#: js/messages.php:136 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "Wto" -#: js/messages.php:125 +#: js/messages.php:137 msgid "Wednesday" msgstr "" -#: js/messages.php:126 +#: js/messages.php:138 msgid "Thursday" msgstr "" -#: js/messages.php:127 +#: js/messages.php:139 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "Pią" -#: js/messages.php:128 +#: js/messages.php:140 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:132 libraries/common.lib.php:1582 +#: js/messages.php:144 libraries/common.lib.php:1582 msgid "Sun" msgstr "Nie" #. l10n: Short week day name -#: js/messages.php:134 libraries/common.lib.php:1584 +#: js/messages.php:146 libraries/common.lib.php:1584 msgid "Mon" msgstr "Pon" #. l10n: Short week day name -#: js/messages.php:136 libraries/common.lib.php:1586 +#: js/messages.php:148 libraries/common.lib.php:1586 msgid "Tue" msgstr "Wto" #. l10n: Short week day name -#: js/messages.php:138 libraries/common.lib.php:1588 +#: js/messages.php:150 libraries/common.lib.php:1588 msgid "Wed" msgstr "Śro" #. l10n: Short week day name -#: js/messages.php:140 libraries/common.lib.php:1590 +#: js/messages.php:152 libraries/common.lib.php:1590 msgid "Thu" msgstr "Czw" #. l10n: Short week day name -#: js/messages.php:142 libraries/common.lib.php:1592 +#: js/messages.php:154 libraries/common.lib.php:1592 msgid "Fri" msgstr "Pią" #. l10n: Short week day name -#: js/messages.php:144 libraries/common.lib.php:1594 +#: js/messages.php:156 libraries/common.lib.php:1594 msgid "Sat" msgstr "Sob" #. l10n: Minimal week day name -#: js/messages.php:148 +#: js/messages.php:160 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "Nie" #. l10n: Minimal week day name -#: js/messages.php:150 +#: js/messages.php:162 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "Pon" #. l10n: Minimal week day name -#: js/messages.php:152 +#: js/messages.php:164 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "Wto" #. l10n: Minimal week day name -#: js/messages.php:154 +#: js/messages.php:166 #, fuzzy #| msgid "Wed" msgid "We" msgstr "Śro" #. l10n: Minimal week day name -#: js/messages.php:156 +#: js/messages.php:168 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "Czw" #. l10n: Minimal week day name -#: js/messages.php:158 +#: js/messages.php:170 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "Pią" #. l10n: Minimal week day name -#: js/messages.php:160 +#: js/messages.php:172 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "Sob" #. l10n: Column header for week of the year in calendar -#: js/messages.php:162 +#: js/messages.php:174 #, fuzzy #| msgid "Wiki" msgid "Wk" msgstr "Wiki" -#: js/messages.php:164 +#: js/messages.php:176 msgid "Hour" msgstr "" -#: js/messages.php:165 +#: js/messages.php:177 #, fuzzy #| msgid "in use" msgid "Minute" msgstr "w użyciu" -#: js/messages.php:166 +#: js/messages.php:178 #, fuzzy #| msgid "per second" msgid "Second" @@ -1375,7 +1419,7 @@ msgstr "Indeksy" #: libraries/Index.class.php:444 libraries/mult_submits.inc.php:103 #: libraries/tbl_properties.inc.php:519 tbl_structure.php:33 -#: tbl_structure.php:155 tbl_structure.php:159 tbl_structure.php:474 +#: tbl_structure.php:155 tbl_structure.php:159 tbl_structure.php:472 #: tbl_tracking.php:322 msgid "Unique" msgstr "Jednoznaczny" @@ -1418,8 +1462,8 @@ msgstr "" "Indeksy %1$s i %2$s wyglądają na identyczne i jeden z nich mógłby zostać " "usunięty." -#: libraries/List_Database.class.php:431 libraries/server_links.inc.php:41 -#: server_databases.php:88 server_privileges.php:1660 +#: libraries/List_Database.class.php:431 libraries/server_links.inc.php:42 +#: server_databases.php:88 server_privileges.php:1680 #: setup/lib/messages.inc.php:110 test/theme.php:93 msgid "Databases" msgstr "Bazy danych" @@ -1591,7 +1635,7 @@ msgstr "Hasło:" msgid "Server Choice" msgstr "Wybór serwera" -#: libraries/auth/cookie.auth.lib.php:320 libraries/header.inc.php:59 +#: libraries/auth/cookie.auth.lib.php:320 libraries/header.inc.php:63 msgid "Cookies must be enabled past this point." msgstr "Odtąd musi być włączona obsługa ciasteczek." @@ -1672,7 +1716,7 @@ msgstr "" "Nie udało się użyć ani funkcji iconv, ani libiconv, mimo że rozszerzenia " "zgłaszają się jako załadowane. Proszę sprawdzić swoją konfigurację PHP." -#: libraries/common.inc.php:583 +#: libraries/common.inc.php:587 msgid "" "phpMyAdmin was unable to read your configuration file!
This might " "happen if PHP finds a parse error in it or PHP cannot find the file.
Jeżeli otrzymasz " "pustą stronę, wszystko jest w porządku." -#: libraries/common.inc.php:594 +#: libraries/common.inc.php:598 #, fuzzy, php-format #| msgid "Could not load default configuration from: \"%1$s\"" msgid "Could not load default configuration from: %1$s" msgstr "Nie udało się załadować domyślnej konfiguracji z pliku: \"%1$s\"" -#: libraries/common.inc.php:599 +#: libraries/common.inc.php:603 msgid "" "The $cfg['PmaAbsoluteUri'] directive MUST be set in your " "configuration file!" @@ -1702,29 +1746,29 @@ msgstr "" "Dyrektywa $cfg['PmaAbsoluteUri'] musi być ustawiona w pliku " "konfiguracyjnym!" -#: libraries/common.inc.php:629 +#: libraries/common.inc.php:633 #, fuzzy, php-format #| msgid "Invalid server index: \"%s\"" msgid "Invalid server index: %s" msgstr "Niewłaściwy numer serwera: \"%s\"" -#: libraries/common.inc.php:636 +#: libraries/common.inc.php:640 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" "Niewłaściwa nazwa hosta serwera %1$s. Proszę przyjrzeć się konfiguracji." -#: libraries/common.inc.php:645 libraries/header.inc.php:96 +#: libraries/common.inc.php:649 libraries/header.inc.php:100 #: libraries/select_server.lib.php:41 libraries/select_server.lib.php:47 #: main.php:185 test/theme.php:57 msgid "Server" msgstr "Serwer" -#: libraries/common.inc.php:823 +#: libraries/common.inc.php:827 msgid "Invalid authentication method set in configuration:" msgstr "W konfiguracji ustawiono błędną metodę uwierzytelniania:" -#: libraries/common.inc.php:926 +#: libraries/common.inc.php:930 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Poleca się aktualizację do %s w wersji %s lub późniejszej." @@ -1859,45 +1903,45 @@ msgstr "," msgid "%B %d, %Y at %I:%M %p" msgstr "%d %B %Y, %H:%M" -#: libraries/common.lib.php:1907 +#: libraries/common.lib.php:1911 #, 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:2322 libraries/common.lib.php:2325 +#: libraries/common.lib.php:2326 libraries/common.lib.php:2329 #: libraries/display_tbl.lib.php:290 server_status.php:719 msgid "Begin" msgstr "Początek" -#: libraries/common.lib.php:2323 libraries/common.lib.php:2326 +#: libraries/common.lib.php:2327 libraries/common.lib.php:2330 #: libraries/display_tbl.lib.php:291 server_binlog.php:168 #: server_binlog.php:170 msgid "Previous" msgstr "Poprzednie" -#: libraries/common.lib.php:2354 libraries/common.lib.php:2357 +#: libraries/common.lib.php:2358 libraries/common.lib.php:2361 #: libraries/display_tbl.lib.php:353 msgid "End" msgstr "Koniec" -#: libraries/common.lib.php:2430 +#: libraries/common.lib.php:2434 #, php-format msgid "Jump to database "%s"." msgstr "Skok do bazy danych "%s"." -#: libraries/common.lib.php:2450 +#: libraries/common.lib.php:2454 #, 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:2830 libraries/common.lib.php:2837 +#: libraries/common.lib.php:2834 libraries/common.lib.php:2841 #: libraries/db_links.inc.php:68 libraries/export/sql.php:25 -#: libraries/import/sql.php:18 libraries/server_links.inc.php:45 +#: libraries/import/sql.php:18 libraries/server_links.inc.php:46 #: libraries/tbl_links.inc.php:60 querywindow.php:99 test/theme.php:97 msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2839 libraries/db_links.inc.php:104 +#: libraries/common.lib.php:2843 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,15 +1989,15 @@ msgstr "Zapytanie przez przykład" msgid "Designer" msgstr "Projektant" -#: libraries/db_links.inc.php:98 libraries/server_links.inc.php:88 +#: libraries/db_links.inc.php:98 libraries/server_links.inc.php:89 #: libraries/tbl_links.inc.php:91 pmd_pdf.php:84 pmd_pdf.php:110 #: setup/frames/menu.inc.php:21 msgid "Import" msgstr "Import" -#: libraries/db_links.inc.php:111 libraries/server_links.inc.php:66 -#: server_privileges.php:111 server_privileges.php:1722 -#: server_privileges.php:2071 test/theme.php:117 +#: libraries/db_links.inc.php:111 libraries/server_links.inc.php:67 +#: server_privileges.php:112 server_privileges.php:1742 +#: server_privileges.php:2092 test/theme.php:117 msgid "Privileges" msgstr "Uprawnienia" @@ -1972,7 +2016,7 @@ msgid "" msgstr "Być może w przybliżeniu. Zobacz FAQ 3.11" #: libraries/db_structure.lib.php:69 server_databases.php:142 -#: tbl_printview.php:336 tbl_structure.php:682 +#: tbl_printview.php:336 tbl_structure.php:680 msgid "Overhead" msgstr "Nadmiar" @@ -1992,7 +2036,7 @@ msgid "(or the local MySQL server's socket is not correctly configured)" msgstr "" "(lub gniazdo lokalnego serwera MySQL nie jest skonfigurowane poprawnie)" -#: libraries/dbi/mysql.dbi.lib.php:362 tbl_structure.php:608 +#: libraries/dbi/mysql.dbi.lib.php:362 tbl_structure.php:606 msgid "Details..." msgstr "Szczegóły…" @@ -2002,22 +2046,22 @@ msgid "Change password" msgstr "Zmień hasło" #: libraries/display_change_password.lib.php:35 -#: libraries/replication_gui.lib.php:345 server_privileges.php:807 +#: libraries/replication_gui.lib.php:345 server_privileges.php:808 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:796 -#: server_privileges.php:800 server_privileges.php:811 -#: server_privileges.php:1538 server_synchronize.php:1175 +#: libraries/replication_gui.lib.php:349 server_privileges.php:797 +#: server_privileges.php:801 server_privileges.php:812 +#: server_privileges.php:1558 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:815 server_privileges.php:818 +#: server_privileges.php:816 server_privileges.php:819 msgid "Re-type" msgstr "Ponownie" @@ -2032,12 +2076,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:822 +#: libraries/replication_gui.lib.php:360 server_privileges.php:823 msgid "Generate Password" msgstr "Generuj hasło" #: libraries/display_change_password.lib.php:75 -#: libraries/replication_gui.lib.php:363 server_privileges.php:825 +#: libraries/replication_gui.lib.php:363 server_privileges.php:826 msgid "Generate" msgstr "Generuj" @@ -2050,8 +2094,8 @@ msgstr "Utwórz nową bazę danych" msgid "Create" msgstr "Utwórz" -#: libraries/display_create_database.lib.php:40 server_privileges.php:113 -#: server_privileges.php:1427 server_replication.php:35 +#: libraries/display_create_database.lib.php:40 server_privileges.php:114 +#: server_privileges.php:1447 server_replication.php:35 msgid "No Privileges" msgstr "Brak uprawnień" @@ -2142,7 +2186,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:1875 server_processlist.php:75 +#: server_privileges.php:1895 server_processlist.php:75 msgid "None" msgstr "Brak" @@ -2335,7 +2379,7 @@ msgstr "Sortuj wg klucza" #: libraries/import/docsql.php:34 libraries/import/ldi.php:47 #: libraries/import/ods.php:30 libraries/import/sql.php:20 #: libraries/import/xls.php:26 libraries/import/xlsx.php:26 -#: libraries/import/xml.php:25 tbl_select.php:267 tbl_structure.php:753 +#: libraries/import/xml.php:25 tbl_select.php:267 tbl_structure.php:751 msgid "Options" msgstr "Opcje" @@ -2413,7 +2457,7 @@ msgstr "Wykonanie zapytania trwało %01.4f sekund(y)" #: libraries/display_tbl.lib.php:2089 libraries/mult_submits.inc.php:113 #: querywindow.php:125 querywindow.php:129 querywindow.php:132 -#: tbl_structure.php:25 tbl_structure.php:150 tbl_structure.php:470 +#: tbl_structure.php:25 tbl_structure.php:150 tbl_structure.php:468 msgid "Change" msgstr "Zmień" @@ -2482,7 +2526,7 @@ msgstr "Użycie rezerw buforowych" #: libraries/engines/innodb.lib.php:194 server_databases.php:137 #: server_databases.php:305 server_status.php:525 server_status.php:586 -#: server_status.php:607 tbl_printview.php:351 tbl_structure.php:696 +#: server_status.php:607 tbl_printview.php:351 tbl_structure.php:694 msgid "Total" msgstr "Sumarycznie" @@ -2760,7 +2804,7 @@ msgstr "" "i dostają kolejny najwyższy numer." #: libraries/export/codegen.php:37 setup/lib/messages.inc.php:88 -#: tbl_printview.php:376 tbl_structure.php:737 +#: tbl_printview.php:376 tbl_structure.php:735 msgid "Format" msgstr "Format" @@ -2832,8 +2876,8 @@ 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:576 server_replication.php:316 tbl_printview.php:317 -#: tbl_structure.php:665 +#: server_privileges.php:577 server_replication.php:316 tbl_printview.php:317 +#: tbl_structure.php:663 msgid "Data" msgstr "Dane" @@ -2882,9 +2926,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:731 -#: server_privileges.php:734 server_privileges.php:790 -#: server_privileges.php:1537 server_privileges.php:2069 +#: libraries/replication_gui.lib.php:329 server_privileges.php:732 +#: server_privileges.php:735 server_privileges.php:791 +#: server_privileges.php:1557 server_privileges.php:2090 #: server_processlist.php:55 server_synchronize.php:1159 msgid "Host" msgstr "Host" @@ -3086,7 +3130,7 @@ msgstr "Domyślne opcje eksportu" msgid "Open new phpMyAdmin window" msgstr "Otwórz nowe okno phpMyAdmina" -#: libraries/header.inc.php:115 +#: libraries/header.inc.php:119 #, fuzzy msgid "New table" msgstr "Brak tabel" @@ -3250,20 +3294,20 @@ 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 +#: tbl_structure.php:471 msgid "Primary" msgstr "Podstawowy" #: libraries/mult_submits.inc.php:98 libraries/tbl_properties.inc.php:116 #: libraries/tbl_properties.inc.php:525 tbl_printview.php:326 #: tbl_structure.php:31 tbl_structure.php:154 tbl_structure.php:158 -#: tbl_structure.php:475 tbl_structure.php:673 +#: tbl_structure.php:473 tbl_structure.php:671 msgid "Index" msgstr "Indeks" #: libraries/mult_submits.inc.php:108 libraries/tbl_properties.inc.php:531 #: tbl_structure.php:35 tbl_structure.php:156 tbl_structure.php:160 -#: tbl_structure.php:478 +#: tbl_structure.php:476 msgid "Fulltext" msgstr "Pełny tekst" @@ -3567,8 +3611,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:711 -#: server_privileges.php:714 server_privileges.php:721 +#: libraries/replication_gui.lib.php:259 server_privileges.php:712 +#: server_privileges.php:715 server_privileges.php:722 #: server_synchronize.php:1171 msgid "User name" msgstr "Nazwa użytkownika" @@ -3595,7 +3639,7 @@ msgstr "Zmienna" #: 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 +#: tbl_structure.php:727 msgid "Value" msgstr "Wartość" @@ -3613,34 +3657,34 @@ msgstr "" msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:254 server_privileges.php:716 +#: libraries/replication_gui.lib.php:254 server_privileges.php:717 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:717 -#: server_privileges.php:784 server_privileges.php:808 -#: server_privileges.php:1928 server_privileges.php:1958 +#: libraries/replication_gui.lib.php:346 server_privileges.php:718 +#: server_privileges.php:785 server_privileges.php:809 +#: server_privileges.php:1948 server_privileges.php:1978 msgid "Use text field" msgstr "Użyj pola tekstowego" -#: libraries/replication_gui.lib.php:302 server_privileges.php:764 +#: libraries/replication_gui.lib.php:302 server_privileges.php:765 msgid "Any host" msgstr "Dowolny host" -#: libraries/replication_gui.lib.php:306 server_privileges.php:768 +#: libraries/replication_gui.lib.php:306 server_privileges.php:769 msgid "Local" msgstr "Host lokalny" -#: libraries/replication_gui.lib.php:312 server_privileges.php:773 +#: libraries/replication_gui.lib.php:312 server_privileges.php:774 msgid "This Host" msgstr "Ten host" -#: libraries/replication_gui.lib.php:318 server_privileges.php:779 +#: libraries/replication_gui.lib.php:318 server_privileges.php:780 msgid "Use Host Table" msgstr "Użyj tabeli hostów" -#: libraries/replication_gui.lib.php:331 server_privileges.php:792 +#: libraries/replication_gui.lib.php:331 server_privileges.php:793 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -3674,29 +3718,29 @@ msgstr "Nieznany język: %1$s." msgid "Servers" msgstr "Serwery" -#: libraries/server_links.inc.php:53 server_engines.php:112 +#: libraries/server_links.inc.php:54 server_engines.php:112 #: server_engines.php:116 server_status.php:415 test/theme.php:105 msgid "Variables" msgstr "Zmienne" -#: libraries/server_links.inc.php:57 test/theme.php:109 +#: libraries/server_links.inc.php:58 test/theme.php:109 msgid "Charsets" msgstr "Kodowania napisów" -#: libraries/server_links.inc.php:61 test/theme.php:113 +#: libraries/server_links.inc.php:62 test/theme.php:113 msgid "Engines" msgstr "Mechanizmy" -#: libraries/server_links.inc.php:76 server_binlog.php:110 +#: libraries/server_links.inc.php:77 server_binlog.php:110 #: server_status.php:364 test/theme.php:121 msgid "Binary log" msgstr "Dziennik binarny" -#: libraries/server_links.inc.php:80 +#: libraries/server_links.inc.php:81 msgid "Processes" msgstr "Procesy" -#: libraries/server_links.inc.php:92 server_synchronize.php:1092 +#: libraries/server_links.inc.php:93 server_synchronize.php:1092 #: server_synchronize.php:1100 msgid "Synchronize" msgstr "" @@ -3949,13 +3993,13 @@ msgstr "Definicja partycji" msgid "Save" msgstr "Zachowaj" -#: libraries/tbl_properties.inc.php:780 tbl_structure.php:542 +#: libraries/tbl_properties.inc.php:780 tbl_structure.php:540 #, fuzzy, php-format #| msgid "Add %s field(s)" msgid "Add %s column(s)" msgstr "Dodaj %s pól" -#: libraries/tbl_properties.inc.php:784 tbl_structure.php:536 +#: libraries/tbl_properties.inc.php:784 tbl_structure.php:534 #, fuzzy #| msgid "You have to add at least one field." msgid "You have to add at least one column." @@ -4168,8 +4212,8 @@ msgstr "Resetuj" msgid "Protocol version" msgstr "Wersja protokołu" -#: main.php:189 server_privileges.php:1389 server_privileges.php:1536 -#: server_privileges.php:1650 server_privileges.php:2068 +#: main.php:189 server_privileges.php:1406 server_privileges.php:1556 +#: server_privileges.php:1670 server_privileges.php:2089 #: server_processlist.php:54 msgid "User" msgstr "Użytkownik" @@ -4616,115 +4660,115 @@ msgstr "Mechanizmy składowania" msgid "View dump (schema) of databases" msgstr "Zrzut baz danych" -#: server_privileges.php:24 server_privileges.php:266 +#: server_privileges.php:25 server_privileges.php:267 msgid "Includes all privileges except GRANT." msgstr "Wszystkie uprawnienia, oprócz GRANT." -#: server_privileges.php:25 server_privileges.php:192 -#: server_privileges.php:515 +#: server_privileges.php:26 server_privileges.php:193 +#: server_privileges.php:516 msgid "Allows altering the structure of existing tables." msgstr "Pozwól zmieniać strukturę istniejących tabel." -#: server_privileges.php:26 server_privileges.php:208 -#: server_privileges.php:521 +#: server_privileges.php:27 server_privileges.php:209 +#: server_privileges.php:522 msgid "Allows altering and dropping stored routines." msgstr "Pozwól modyfikować i usuwać procedury składowane." -#: server_privileges.php:27 server_privileges.php:184 -#: server_privileges.php:514 +#: server_privileges.php:28 server_privileges.php:185 +#: server_privileges.php:515 msgid "Allows creating new databases and tables." msgstr "Pozwól tworzyć nowe bazy danych i tabele." -#: server_privileges.php:28 server_privileges.php:207 -#: server_privileges.php:520 +#: server_privileges.php:29 server_privileges.php:208 +#: server_privileges.php:521 msgid "Allows creating stored routines." msgstr "Pozwól tworzyć procedury składowane." -#: server_privileges.php:29 server_privileges.php:514 +#: server_privileges.php:30 server_privileges.php:515 msgid "Allows creating new tables." msgstr "Pozwól tworzyć nowe tabele." -#: server_privileges.php:30 server_privileges.php:195 -#: server_privileges.php:518 +#: server_privileges.php:31 server_privileges.php:196 +#: server_privileges.php:519 msgid "Allows creating temporary tables." msgstr "Pozwala tworzyć tabele tymczasowe." -#: server_privileges.php:31 server_privileges.php:209 -#: server_privileges.php:554 +#: server_privileges.php:32 server_privileges.php:210 +#: server_privileges.php:555 msgid "Allows creating, dropping and renaming user accounts." msgstr "Pozwól tworzyć, usuwać i zmieniać nazwy kont użytkowników." -#: server_privileges.php:32 server_privileges.php:199 -#: server_privileges.php:203 server_privileges.php:526 -#: server_privileges.php:530 +#: server_privileges.php:33 server_privileges.php:200 +#: server_privileges.php:204 server_privileges.php:527 +#: server_privileges.php:531 msgid "Allows creating new views." msgstr "Pozwól tworzyć perspektywy." -#: server_privileges.php:33 server_privileges.php:183 -#: server_privileges.php:506 +#: server_privileges.php:34 server_privileges.php:184 +#: server_privileges.php:507 msgid "Allows deleting data." msgstr "Pozwól usuwać dane." -#: server_privileges.php:34 server_privileges.php:185 -#: server_privileges.php:517 +#: server_privileges.php:35 server_privileges.php:186 +#: server_privileges.php:518 msgid "Allows dropping databases and tables." msgstr "Pozwól usuwać bazy danych i tabele." -#: server_privileges.php:35 server_privileges.php:517 +#: server_privileges.php:36 server_privileges.php:518 msgid "Allows dropping tables." msgstr "Pozwól usuwać tabele." -#: server_privileges.php:36 server_privileges.php:200 -#: server_privileges.php:534 +#: server_privileges.php:37 server_privileges.php:201 +#: server_privileges.php:535 msgid "Allows to set up events for the event scheduler" msgstr "Pozwól ustawiać zdarzenia w harmonogramie zdarzeń" -#: server_privileges.php:37 server_privileges.php:210 -#: server_privileges.php:522 +#: server_privileges.php:38 server_privileges.php:211 +#: server_privileges.php:523 msgid "Allows executing stored routines." msgstr "Pozwól wykonywać procedury składowane." -#: server_privileges.php:38 server_privileges.php:189 -#: server_privileges.php:509 +#: server_privileges.php:39 server_privileges.php:190 +#: server_privileges.php:510 msgid "Allows importing data from and exporting data into files." msgstr "Pozwól importować i eksportować dane z/do plików." -#: server_privileges.php:39 server_privileges.php:540 +#: server_privileges.php:40 server_privileges.php:541 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "Pozwól dodawać użytkowników i nadawać uprawnienia bez przeładowywania tabeli " "uprawnień." -#: server_privileges.php:40 server_privileges.php:191 -#: server_privileges.php:516 +#: server_privileges.php:41 server_privileges.php:192 +#: server_privileges.php:517 msgid "Allows creating and dropping indexes." msgstr "Pozwól tworzyć i usuwać indeksy." -#: server_privileges.php:41 server_privileges.php:181 -#: server_privileges.php:442 server_privileges.php:504 +#: server_privileges.php:42 server_privileges.php:182 +#: server_privileges.php:443 server_privileges.php:505 msgid "Allows inserting and replacing data." msgstr "Pozwól dodawać i zamieniać dane." -#: server_privileges.php:42 server_privileges.php:196 -#: server_privileges.php:549 +#: server_privileges.php:43 server_privileges.php:197 +#: server_privileges.php:550 msgid "Allows locking tables for the current thread." msgstr "Pozwól blokować tabele dla aktualnego wątku." -#: server_privileges.php:43 server_privileges.php:646 -#: server_privileges.php:648 +#: server_privileges.php:44 server_privileges.php:647 +#: server_privileges.php:649 msgid "Limits the number of new connections the user may open per hour." msgstr "" "Ogranicz liczbę nowych połączeń, które może otworzyć użytkownik w ciągu " "godziny." -#: server_privileges.php:44 server_privileges.php:634 -#: server_privileges.php:636 +#: server_privileges.php:45 server_privileges.php:635 +#: server_privileges.php:637 msgid "Limits the number of queries the user may send to the server per hour." msgstr "Ogranicz liczbę zapytań, które może wysłać użytkownik w ciągu godziny." -#: server_privileges.php:45 server_privileges.php:640 -#: server_privileges.php:642 +#: server_privileges.php:46 server_privileges.php:641 +#: server_privileges.php:643 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -4732,60 +4776,60 @@ msgstr "" "Ogranicz liczbę poleceń zmieniających jakąkolwiek tabelę lub bazę danych, " "które może wykonać użytkownik w ciągu godziny." -#: server_privileges.php:46 server_privileges.php:652 -#: server_privileges.php:654 +#: server_privileges.php:47 server_privileges.php:653 +#: server_privileges.php:655 msgid "Limits the number of simultaneous connections the user may have." msgstr "Ogranicz liczbę jednoczesnych połączeń, które może użytkownik." -#: server_privileges.php:47 server_privileges.php:188 -#: server_privileges.php:544 +#: server_privileges.php:48 server_privileges.php:189 +#: server_privileges.php:545 msgid "Allows viewing processes of all users" msgstr "Pozwól oglądać procesy wszystkich użytkowyników" -#: server_privileges.php:48 server_privileges.php:190 -#: server_privileges.php:448 server_privileges.php:550 +#: server_privileges.php:49 server_privileges.php:191 +#: server_privileges.php:449 server_privileges.php:551 msgid "Has no effect in this MySQL version." msgstr "Nie ma żadnych skutków w tej wersji MySQL." -#: server_privileges.php:49 server_privileges.php:186 -#: server_privileges.php:545 +#: server_privileges.php:50 server_privileges.php:187 +#: server_privileges.php:546 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" "Pozwól przeładowywać ustawienia serwera i opróżniać pamięć podręczną serwera." -#: server_privileges.php:50 server_privileges.php:198 -#: server_privileges.php:552 +#: server_privileges.php:51 server_privileges.php:199 +#: server_privileges.php:553 msgid "Allows the user to ask where the slaves / masters are." msgstr "" "Nadaj użytkownikowi prawo, by zapytać gdzie są serwery podrzędne / nadrzędne." -#: server_privileges.php:51 server_privileges.php:197 -#: server_privileges.php:553 +#: server_privileges.php:52 server_privileges.php:198 +#: server_privileges.php:554 msgid "Needed for the replication slaves." msgstr "Potrzebne dla replikacji serwera podrzędnego." -#: server_privileges.php:52 server_privileges.php:180 -#: server_privileges.php:439 server_privileges.php:503 +#: server_privileges.php:53 server_privileges.php:181 +#: server_privileges.php:440 server_privileges.php:504 msgid "Allows reading data." msgstr "Pozwól czytać dane." -#: server_privileges.php:53 server_privileges.php:193 -#: server_privileges.php:547 +#: server_privileges.php:54 server_privileges.php:194 +#: server_privileges.php:548 msgid "Gives access to the complete list of databases." msgstr "Daj dostęp do pełnej listy baz danych." -#: server_privileges.php:54 server_privileges.php:204 -#: server_privileges.php:206 server_privileges.php:519 +#: server_privileges.php:55 server_privileges.php:205 +#: server_privileges.php:207 server_privileges.php:520 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Pozwól wykonywać zapytania SHOW CREATE VIEW." -#: server_privileges.php:55 server_privileges.php:187 -#: server_privileges.php:546 +#: server_privileges.php:56 server_privileges.php:188 +#: server_privileges.php:547 msgid "Allows shutting down the server." msgstr "Pozwól wyłączyć serwer." -#: server_privileges.php:56 server_privileges.php:194 -#: server_privileges.php:543 +#: server_privileges.php:57 server_privileges.php:195 +#: server_privileges.php:544 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -4795,157 +4839,157 @@ msgstr "" "połączeń; Wymagane dla większość operacji administracyjnych, takich jak " "ustawianie zmiennych globalnych czy unicestwianie wątków innych użytkowników." -#: server_privileges.php:57 server_privileges.php:201 -#: server_privileges.php:535 +#: server_privileges.php:58 server_privileges.php:202 +#: server_privileges.php:536 msgid "Allows creating and dropping triggers" msgstr "Pozwól tworzyć i usuwać wyzwalacze." -#: server_privileges.php:58 server_privileges.php:182 -#: server_privileges.php:445 server_privileges.php:505 +#: server_privileges.php:59 server_privileges.php:183 +#: server_privileges.php:446 server_privileges.php:506 msgid "Allows changing data." msgstr "Pozwól zmieniać dane." -#: server_privileges.php:59 server_privileges.php:260 +#: server_privileges.php:60 server_privileges.php:261 msgid "No privileges." msgstr "Brak uprawnień." -#: server_privileges.php:302 server_privileges.php:303 +#: server_privileges.php:303 server_privileges.php:304 #, fuzzy #| msgid "None" msgctxt "None privileges" msgid "None" msgstr "Brak" -#: server_privileges.php:431 server_privileges.php:566 -#: server_privileges.php:1718 server_privileges.php:1724 +#: server_privileges.php:432 server_privileges.php:567 +#: server_privileges.php:1738 server_privileges.php:1744 msgid "Table-specific privileges" msgstr "Uprawnienia specyficzne dla tabel" -#: server_privileges.php:432 server_privileges.php:574 -#: server_privileges.php:1540 +#: server_privileges.php:433 server_privileges.php:575 +#: server_privileges.php:1560 msgid " Note: MySQL privilege names are expressed in English " msgstr " Uwaga: Uprawnienia MySQL są oznaczone w języku angielskim " -#: server_privileges.php:563 server_privileges.php:1539 +#: server_privileges.php:564 server_privileges.php:1559 msgid "Global privileges" msgstr "Globalne uprawnienia" -#: server_privileges.php:565 server_privileges.php:1718 +#: server_privileges.php:566 server_privileges.php:1738 msgid "Database-specific privileges" msgstr "Uprawnienia specyficzne dla baz danych" -#: server_privileges.php:610 +#: server_privileges.php:611 msgid "Administration" msgstr "Administracja" -#: server_privileges.php:630 +#: server_privileges.php:631 msgid "Resource limits" msgstr "Ograniczenia zasobów" -#: server_privileges.php:631 +#: server_privileges.php:632 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "Uwaga: Ustawienie tych opcji na 0 (zero) usuwa ograniczenie." -#: server_privileges.php:708 +#: server_privileges.php:709 msgid "Login Information" msgstr "Dane użytkownika" -#: server_privileges.php:802 +#: server_privileges.php:803 msgid "Do not change the password" msgstr "Nie zmieniaj hasła" -#: server_privileges.php:843 server_privileges.php:2205 +#: server_privileges.php:844 server_privileges.php:2226 #, fuzzy #| msgid "No user(s) found." msgid "No user found." msgstr "Nie znaleziono użytkownika(ów)." -#: server_privileges.php:887 +#: server_privileges.php:888 #, php-format msgid "The user %s already exists!" msgstr "Użytkownik %s już istnieje!" -#: server_privileges.php:970 +#: server_privileges.php:971 msgid "You have added a new user." msgstr "Nowy użytkownik został dodany." -#: server_privileges.php:1191 +#: server_privileges.php:1196 #, php-format msgid "You have updated the privileges for %s." msgstr "Uaktualniłeś uprawnienia dla %s." -#: server_privileges.php:1215 +#: server_privileges.php:1220 #, php-format msgid "You have revoked the privileges for %s" msgstr "Uprawnienia dla %s zostały cofnięte" -#: server_privileges.php:1251 +#: server_privileges.php:1256 #, php-format msgid "The password for %s was changed successfully." msgstr "Hasło dla %s zostało pomyślnie zmienione." -#: server_privileges.php:1271 +#: server_privileges.php:1276 #, php-format msgid "Deleting %s" msgstr "Usuwanie %s" -#: server_privileges.php:1282 +#: server_privileges.php:1287 msgid "No users selected for deleting!" msgstr "Żaden użytkownik ze został zaznaczony do usunięcia!" -#: server_privileges.php:1285 +#: server_privileges.php:1290 msgid "Reloading the privileges" msgstr "Przeładuj uprawnienia" -#: server_privileges.php:1300 +#: server_privileges.php:1305 msgid "The selected users have been deleted successfully." msgstr "Wybrani użytkownicy zostali pomyślnie usunięci." -#: server_privileges.php:1335 +#: server_privileges.php:1344 msgid "The privileges were reloaded successfully." msgstr "Uprawnienia zostały pomyślnie przeładowane." -#: server_privileges.php:1363 server_privileges.php:1649 +#: server_privileges.php:1380 server_privileges.php:1669 msgid "Edit Privileges" msgstr "Edytuj uprawnienia" -#: server_privileges.php:1372 +#: server_privileges.php:1389 msgid "Revoke" msgstr "Cofnij" -#: server_privileges.php:1404 +#: server_privileges.php:1424 msgid "User overview" msgstr "Opis użytkownika" -#: server_privileges.php:1541 server_privileges.php:1723 -#: server_privileges.php:2072 +#: server_privileges.php:1561 server_privileges.php:1743 +#: server_privileges.php:2093 msgid "Grant" msgstr "Nadawanie" -#: server_privileges.php:1560 server_privileges.php:2162 +#: server_privileges.php:1580 server_privileges.php:2183 msgid "Any" msgstr "Dowolny" -#: server_privileges.php:1609 server_privileges.php:1633 -#: server_privileges.php:2027 server_privileges.php:2216 +#: server_privileges.php:1629 server_privileges.php:1653 +#: server_privileges.php:2048 server_privileges.php:2237 msgid "Add a new User" msgstr "Dodaj nowego użytkownika" -#: server_privileges.php:1614 +#: server_privileges.php:1634 msgid "Remove selected users" msgstr "Usuń zaznaczonych użytkowników" -#: server_privileges.php:1617 +#: server_privileges.php:1637 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:1618 server_privileges.php:1619 -#: server_privileges.php:1620 +#: server_privileges.php:1638 server_privileges.php:1639 +#: server_privileges.php:1640 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:1636 +#: server_privileges.php:1656 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -4958,96 +5002,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:1684 +#: server_privileges.php:1704 msgid "The selected user was not found in the privilege table." msgstr "Wybrany użytkownik nie został znaleziony w tabeli uprawnień." -#: server_privileges.php:1724 +#: server_privileges.php:1744 msgid "Column-specific privileges" msgstr "Uprawnienia specyficzne dla kolumn" -#: server_privileges.php:1925 +#: server_privileges.php:1945 msgid "Add privileges on the following database" msgstr "Dodaj uprawnienia dla następującej bazy danych" -#: server_privileges.php:1943 +#: server_privileges.php:1963 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:1946 +#: server_privileges.php:1966 msgid "Add privileges on the following table" msgstr "Dodaj uprawnienia dla następującej tabeli" -#: server_privileges.php:2003 +#: server_privileges.php:2023 msgid "Change Login Information / Copy User" msgstr "Zmień dane użytkownika / Skopiuj użytkownika" -#: server_privileges.php:2006 +#: server_privileges.php:2026 msgid "Create a new user with the same privileges and ..." msgstr "Utwórz nowego użytkownika z takimi samymi uprawnieniami i …" -#: server_privileges.php:2008 +#: server_privileges.php:2028 msgid "... keep the old one." msgstr "… pozostaw starego." -#: server_privileges.php:2009 +#: server_privileges.php:2029 msgid " ... delete the old one from the user tables." msgstr " … usuń starego z tabel użytkowników." -#: server_privileges.php:2010 +#: server_privileges.php:2030 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:2011 +#: server_privileges.php:2031 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:2033 +#: server_privileges.php:2054 msgid "Database for user" msgstr "Baza danych dla użytkownika" -#: server_privileges.php:2037 +#: server_privileges.php:2058 #, fuzzy #| msgid "None" msgctxt "Create none database for user" msgid "None" msgstr "Brak" -#: server_privileges.php:2038 +#: server_privileges.php:2059 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:2039 +#: server_privileges.php:2060 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:2042 +#: server_privileges.php:2063 #, fuzzy, php-format msgid "Grant all privileges on database "%s"" msgstr "Sprawdź uprawnienia bazy danych "%s"." -#: server_privileges.php:2065 +#: server_privileges.php:2086 #, php-format msgid "Users having access to "%s"" msgstr "Użytkownicy mający dostęp do "%s"" -#: server_privileges.php:2173 +#: server_privileges.php:2194 msgid "global" msgstr "globalnie" -#: server_privileges.php:2175 +#: server_privileges.php:2196 msgid "database-specific" msgstr "specyficzne dla bazy danych" -#: server_privileges.php:2177 +#: server_privileges.php:2198 msgid "wildcard" msgstr "znak wieloznaczny" @@ -7971,6 +8015,10 @@ msgstr "" msgid "Show insert query" msgstr "Wyświetlane jest zapytanie SQL." +#: tbl_change.php:1143 +msgid "and then" +msgstr "a następnie" + #: tbl_change.php:1147 msgid "Go back to previous page" msgstr "Wróć" @@ -8052,7 +8100,7 @@ msgstr "" msgid "Add to index  %s column(s)" msgstr "Dodaj  %s kolumn do indeksu " -#: tbl_indexes.php:256 tbl_structure.php:589 tbl_structure.php:600 +#: tbl_indexes.php:256 tbl_structure.php:587 tbl_structure.php:598 msgid "Column count has to be larger than zero." msgstr "Liczba kolumn musi być większa niż zero." @@ -8166,39 +8214,39 @@ msgstr "Sprawdź spójność powiązań:" msgid "Show tables" msgstr "Pokaż tabele" -#: tbl_printview.php:310 tbl_structure.php:656 +#: tbl_printview.php:310 tbl_structure.php:654 msgid "Space usage" msgstr "Wykorzystanie przestrzeni" -#: tbl_printview.php:314 tbl_structure.php:660 +#: tbl_printview.php:314 tbl_structure.php:658 msgid "Usage" msgstr "Wykorzystanie" -#: tbl_printview.php:341 tbl_structure.php:687 +#: tbl_printview.php:341 tbl_structure.php:685 msgid "Effective" msgstr "Efektywne" -#: tbl_printview.php:366 tbl_structure.php:725 +#: tbl_printview.php:366 tbl_structure.php:723 msgid "Row Statistics" msgstr "Statystyka rekordów" -#: tbl_printview.php:369 tbl_structure.php:728 +#: tbl_printview.php:369 tbl_structure.php:726 msgid "Statements" msgstr "Cecha" -#: tbl_printview.php:380 tbl_structure.php:740 +#: tbl_printview.php:380 tbl_structure.php:738 msgid "static" msgstr "" -#: tbl_printview.php:382 tbl_structure.php:742 +#: tbl_printview.php:382 tbl_structure.php:740 msgid "dynamic" msgstr "zmienny" -#: tbl_printview.php:404 tbl_structure.php:785 +#: tbl_printview.php:404 tbl_structure.php:783 msgid "Row length" msgstr "Długość rekordu" -#: tbl_printview.php:414 tbl_structure.php:793 +#: tbl_printview.php:414 tbl_structure.php:791 msgid " Row size " msgstr " Rozmiar rekordu " @@ -8273,50 +8321,50 @@ msgstr "Brak" msgid "Column %s has been dropped" msgstr "Tabela %s została usunięta" -#: tbl_structure.php:385 +#: tbl_structure.php:384 #, php-format msgid "A primary key has been added on %s" msgstr "Do %s dodany został klucz podstawowy" -#: tbl_structure.php:400 tbl_structure.php:414 tbl_structure.php:428 +#: tbl_structure.php:398 tbl_structure.php:412 tbl_structure.php:426 #, php-format msgid "An index has been added on %s" msgstr "Do %s dodany został indeks" -#: tbl_structure.php:506 tbl_structure.php:508 +#: tbl_structure.php:504 tbl_structure.php:506 msgid "Relation view" msgstr "Widok relacyjny" -#: tbl_structure.php:515 tbl_structure.php:517 +#: tbl_structure.php:513 tbl_structure.php:515 msgid "Propose table structure" msgstr "Analiza zawartości" -#: tbl_structure.php:540 +#: tbl_structure.php:538 #, fuzzy #| msgid "Add %s field(s)" msgid "Add column" msgstr "Dodaj %s pól" -#: tbl_structure.php:554 +#: tbl_structure.php:552 msgid "At End of Table" msgstr "Na końcu tabeli" -#: tbl_structure.php:555 +#: tbl_structure.php:553 msgid "At Beginning of Table" msgstr "Na początku tabeli" -#: tbl_structure.php:556 +#: tbl_structure.php:554 #, php-format msgid "After %s" msgstr "Po %s" -#: tbl_structure.php:594 +#: tbl_structure.php:592 #, fuzzy, php-format #| msgid "Create an index on %s columns" msgid "Create an index on  %s columns" msgstr "Utwórz indeks dla %s kolumn" -#: tbl_structure.php:756 +#: tbl_structure.php:754 msgid "partitioned" msgstr "partycjonowanie" @@ -8776,9 +8824,6 @@ msgstr "Zmień nazwę tabeli na" #~ msgid "Process list" #~ msgstr "Lista procesów" -#~ msgid "Reload privileges" -#~ msgstr "Przeładuj uprawnienia" - #~ msgid "" #~ "The users will still have the USAGE privilege until the privileges are " #~ "reloaded." diff --git a/po/pt.po b/po/pt.po index abaf7cda4..0d1f65b2c 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-13 09:03-0400\n" +"POT-Creation-Date: 2010-06-22 00:55+0530\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:1514 +#: libraries/display_tbl.lib.php:417 server_privileges.php:1534 msgid "Show all" msgstr "Mostrar tudo" -#: browse_foreigners.php:82 libraries/common.lib.php:2313 +#: browse_foreigners.php:82 libraries/common.lib.php:2317 #: 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,18 +34,18 @@ 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:2831 -#: libraries/common.lib.php:2838 libraries/db_links.inc.php:75 +#: db_structure.php:106 libraries/common.lib.php:2835 +#: libraries/common.lib.php:2842 libraries/db_links.inc.php:75 #: libraries/tbl_links.inc.php:63 msgid "Search" msgstr "Pesquisar" -#: browse_foreigners.php:153 db_operations.php:385 db_operations.php:429 -#: db_operations.php:499 db_operations.php:609 db_search.php:362 -#: db_structure.php:567 js/messages.php:48 libraries/Config.class.php:1046 +#: browse_foreigners.php:153 db_operations.php:394 db_operations.php:438 +#: db_operations.php:508 db_operations.php:618 db_search.php:362 +#: db_structure.php:565 js/messages.php:53 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:1335 libraries/common.lib.php:2288 +#: libraries/common.lib.php:1335 libraries/common.lib.php:2292 #: 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,15 +56,15 @@ 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:664 server_privileges.php:1624 -#: server_privileges.php:1971 server_privileges.php:2018 -#: server_privileges.php:2057 server_replication.php:235 +#: server_privileges.php:665 server_privileges.php:1644 +#: server_privileges.php:1991 server_privileges.php:2038 +#: server_privileges.php:2078 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 #: tbl_operations.php:302 tbl_operations.php:499 tbl_operations.php:561 -#: tbl_operations.php:681 tbl_select.php:327 tbl_structure.php:562 -#: tbl_structure.php:597 tbl_tracking.php:395 tbl_tracking.php:512 +#: tbl_operations.php:681 tbl_select.php:327 tbl_structure.php:560 +#: tbl_structure.php:595 tbl_tracking.php:395 tbl_tracking.php:512 #: view_create.php:182 view_operations.php:101 msgid "Go" msgstr "Executa" @@ -90,7 +90,7 @@ msgstr "Usar este valor" msgid "Database %1$s has been created." msgstr "A base de dados %s foi eliminada." -#: db_datadict.php:49 db_operations.php:378 +#: db_datadict.php:49 db_operations.php:387 msgid "Database comment: " msgstr "Comentário da Base de Dados: " @@ -117,10 +117,10 @@ 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:2070 +#: pdf_schema.php:1263 pdf_schema.php:1284 server_privileges.php:2091 #: 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 +#: tbl_structure.php:657 tbl_tracking.php:274 tbl_tracking.php:321 msgid "Type" msgstr "Tipo" @@ -133,7 +133,7 @@ msgstr "Tipo" msgid "Null" msgstr "Nulo" -#: db_datadict.php:178 db_structure.php:501 libraries/export/htmlword.php:247 +#: db_datadict.php:178 db_structure.php:499 libraries/export/htmlword.php:247 #: libraries/export/latex.php:360 libraries/export/odt.php:303 #: libraries/export/texytext.php:236 libraries/tbl_properties.inc.php:106 #: pdf_schema.php:1266 pdf_schema.php:1287 tbl_printview.php:146 @@ -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: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 +#: pdf_schema.php:1344 server_privileges.php:1588 server_privileges.php:1599 +#: server_privileges.php:1909 server_privileges.php:1914 +#: server_privileges.php:2208 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:1565 -#: server_privileges.php:1579 server_privileges.php:1889 -#: server_privileges.php:1892 server_privileges.php:2187 sql.php:193 +#: server_databases.php:64 server_privileges.php:1585 +#: server_privileges.php:1599 server_privileges.php:1909 +#: server_privileges.php:1912 server_privileges.php:2208 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" @@ -206,131 +206,127 @@ msgstr "Selecciona Todas" msgid "Unselect All" msgstr "Limpa Todas as Selecções" -#: db_operations.php:38 tbl_create.php:54 +#: db_operations.php:43 tbl_create.php:54 #, fuzzy msgid "The database name is empty!" msgstr "O nome da tabela está vazio!" -#: db_operations.php:236 +#: db_operations.php:241 #, fuzzy, php-format msgid "Database %s has been renamed to %s" msgstr "Tabela %s renomeada para %s" -#: db_operations.php:240 +#: db_operations.php:245 #, fuzzy, php-format msgid "Database %s has been copied to %s" msgstr "Tabela %s copiada para %s." -#: db_operations.php:412 +#: db_operations.php:421 #, fuzzy msgid "Rename database to" msgstr "Renomeia a tabela para " -#: db_operations.php:417 server_processlist.php:57 +#: db_operations.php:426 server_processlist.php:57 msgid "Command" msgstr "Comando" -#: db_operations.php:429 tbl_change.php:1143 -msgid "and then" -msgstr "" - -#: db_operations.php:455 +#: db_operations.php:464 #, fuzzy msgid "Copy database to" msgstr "Sem bases de dados" -#: db_operations.php:462 tbl_operations.php:528 tbl_tracking.php:388 +#: db_operations.php:471 tbl_operations.php:528 tbl_tracking.php:388 msgid "Structure only" msgstr "Somente estrutura" -#: db_operations.php:463 tbl_operations.php:529 tbl_tracking.php:390 +#: db_operations.php:472 tbl_operations.php:529 tbl_tracking.php:390 msgid "Structure and data" msgstr "Estrutura e dados" -#: db_operations.php:464 tbl_operations.php:530 tbl_tracking.php:389 +#: db_operations.php:473 tbl_operations.php:530 tbl_tracking.php:389 msgid "Data only" msgstr "Apenas dados" -#: db_operations.php:472 +#: db_operations.php:481 msgid "CREATE DATABASE before copying" msgstr "" -#: db_operations.php:475 libraries/export/sql.php:52 +#: db_operations.php:484 libraries/export/sql.php:52 #: libraries/export/sql.php:74 libraries/export/sql.php:76 #: libraries/export/sql.php:82 tbl_operations.php:536 #, php-format msgid "Add %s" msgstr "" -#: db_operations.php:479 libraries/export/sql.php:78 tbl_operations.php:299 +#: db_operations.php:488 libraries/export/sql.php:78 tbl_operations.php:299 #: tbl_operations.php:538 msgid "Add AUTO_INCREMENT value" msgstr "Adicionar valor AUTO_INCREMENT" -#: db_operations.php:483 tbl_operations.php:545 +#: db_operations.php:492 tbl_operations.php:545 msgid "Add constraints" msgstr "Adicionar limitadores" -#: db_operations.php:496 +#: db_operations.php:505 #, fuzzy msgid "Switch to copied database" msgstr "Mudar para a tabela copiada" -#: db_operations.php:537 +#: db_operations.php:546 msgid "BLOB Repository" msgstr "" -#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1352 -#: libraries/server_links.inc.php:49 server_processlist.php:59 +#: db_operations.php:549 db_tracking.php:76 libraries/common.lib.php:1352 +#: libraries/server_links.inc.php:50 server_processlist.php:59 #: tbl_tracking.php:596 test/theme.php:101 msgid "Status" msgstr "Estado" -#: db_operations.php:548 +#: db_operations.php:557 #, fuzzy #| msgid "Enabled" msgctxt "BLOB repository" msgid "Enabled" msgstr "Activado" -#: db_operations.php:552 +#: db_operations.php:561 #, fuzzy msgid "Disable" msgstr "Desactidado" -#: db_operations.php:562 +#: db_operations.php:571 msgid "Damaged" msgstr "" -#: db_operations.php:566 +#: db_operations.php:575 #, fuzzy msgctxt "BLOB repository" msgid "Repair" msgstr "Reparar tabela" -#: db_operations.php:574 +#: db_operations.php:583 #, fuzzy #| msgid "Disabled" msgctxt "BLOB repository" msgid "Disabled" msgstr "Desactidado" -#: db_operations.php:578 +#: db_operations.php:587 #, fuzzy msgid "Enable" msgstr "Activado" -#: db_operations.php:602 libraries/Index.class.php:448 +#: db_operations.php:611 libraries/Index.class.php:448 #: libraries/db_structure.lib.php:62 libraries/mysql_charsets.lib.php:107 #: libraries/tbl_properties.inc.php:107 libraries/tbl_properties.inc.php:730 #: server_collations.php:54 server_collations.php:66 server_databases.php:111 #: tbl_operations.php:363 tbl_select.php:137 tbl_structure.php:179 -#: tbl_structure.php:767 tbl_tracking.php:275 tbl_tracking.php:326 +#: tbl_structure.php:765 tbl_tracking.php:275 tbl_tracking.php:326 #, fuzzy msgid "Collation" msgstr "Criação" -#: db_operations.php:615 main.php:316 pdf_schema.php:34 +#: db_operations.php:624 main.php:316 pdf_schema.php:34 #, php-format msgid "" "The additional features for working with linked tables have been " @@ -339,14 +335,14 @@ msgstr "" "As Características adicionais para trabalhar com ligações entre Tabelas " "foram desactivadas. Para saber porquê carregue %saqui%s." -#: db_operations.php:648 +#: db_operations.php:657 msgid "Edit PDF Pages" 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:1665 -#: server_privileges.php:1721 server_privileges.php:1985 +#: libraries/header.inc.php:130 pdf_pages.php:424 server_privileges.php:1685 +#: server_privileges.php:1741 server_privileges.php:2005 #: server_synchronize.php:423 server_synchronize.php:866 tbl_tracking.php:592 #: test/theme.php:75 msgid "Table" @@ -355,7 +351,7 @@ msgstr "Tabela" #: db_printview.php:105 libraries/db_structure.lib.php:56 #: libraries/header_printview.inc.php:63 libraries/import.lib.php:146 #: navigation.php:638 navigation.php:660 server_databases.php:122 -#: tbl_printview.php:394 tbl_structure.php:365 tbl_structure.php:777 +#: tbl_printview.php:394 tbl_structure.php:365 tbl_structure.php:775 msgid "Rows" msgstr "Registos" @@ -363,30 +359,30 @@ msgstr "Registos" msgid "Size" msgstr "Tamanho" -#: db_printview.php:162 db_structure.php:457 libraries/export/sql.php:559 +#: db_printview.php:162 db_structure.php:455 libraries/export/sql.php:559 #: libraries/export/sql.php:899 msgid "in use" msgstr "em uso" #: db_printview.php:187 libraries/db_info.inc.php:88 #: libraries/export/sql.php:514 pdf_schema.php:1241 tbl_printview.php:434 -#: tbl_structure.php:809 +#: tbl_structure.php:807 msgid "Creation" msgstr "Criação" #: db_printview.php:196 libraries/db_info.inc.php:93 #: libraries/export/sql.php:519 pdf_schema.php:1246 tbl_printview.php:444 -#: tbl_structure.php:817 +#: tbl_structure.php:815 msgid "Last update" msgstr "Actualização" #: db_printview.php:205 libraries/db_info.inc.php:98 #: libraries/export/sql.php:524 pdf_schema.php:1251 tbl_printview.php:454 -#: tbl_structure.php:825 +#: tbl_structure.php:823 msgid "Last check" msgstr "Verificação" -#: db_printview.php:222 db_structure.php:480 +#: db_printview.php:222 db_structure.php:478 #, fuzzy, php-format #| msgid "%s table(s)" msgid "%s table" @@ -447,7 +443,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:297 tbl_change.php:1031 tbl_indexes.php:250 +#: server_privileges.php:298 tbl_change.php:1031 tbl_indexes.php:250 #: tbl_select.php:288 msgid "Or" msgstr "Ou" @@ -520,9 +516,9 @@ 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:2833 +#: db_structure.php:105 libraries/common.lib.php:2837 #: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50 -#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:467 +#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:465 msgid "Browse" msgstr "Visualiza" @@ -567,36 +563,36 @@ 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:2832 libraries/sql_query_form.lib.php:334 +#: libraries/common.lib.php:2836 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:2829 libraries/common.lib.php:2836 +#: libraries/common.lib.php:2833 libraries/common.lib.php:2840 #: 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:1106 #: libraries/tbl_links.inc.php:56 pmd_general.php:134 -#: server_privileges.php:593 server_replication.php:315 tbl_tracking.php:269 +#: server_privileges.php:594 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:1656 +#: db_structure.php:543 db_structure.php:544 db_tracking.php:91 +#: libraries/Index.class.php:483 libraries/common.lib.php:1657 #: 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 -#: tbl_structure.php:152 tbl_structure.php:471 +#: tbl_structure.php:152 tbl_structure.php:469 msgid "Drop" 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:1655 +#: db_structure.php:541 db_structure.php:542 libraries/common.lib.php:1656 #: libraries/mult_submits.inc.php:39 libraries/tbl_links.inc.php:105 msgid "Empty" msgstr "Limpa" @@ -606,112 +602,112 @@ msgstr "Limpa" msgid "Table %s has been emptied" msgstr "A tabela %s foi limpa" -#: db_structure.php:326 libraries/tbl_links.inc.php:133 +#: db_structure.php:325 libraries/tbl_links.inc.php:133 #, fuzzy, php-format msgid "View %s has been dropped" msgstr "O campo %s foi eliminado" -#: db_structure.php:326 libraries/tbl_links.inc.php:133 +#: db_structure.php:325 libraries/tbl_links.inc.php:133 #, php-format msgid "Table %s has been dropped" msgstr "A tabela %s foi eliminada" -#: db_structure.php:333 +#: db_structure.php:332 msgid "Tracking is active." msgstr "" -#: db_structure.php:335 +#: db_structure.php:334 msgid "Tracking is not active." msgstr "" -#: db_structure.php:420 libraries/display_tbl.lib.php:1944 +#: db_structure.php:418 libraries/display_tbl.lib.php:1944 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation%" "s." msgstr "" -#: db_structure.php:434 db_structure.php:448 libraries/header.inc.php:126 +#: db_structure.php:432 db_structure.php:446 libraries/header.inc.php:130 #: libraries/tbl_info.inc.php:66 tbl_structure.php:185 test/theme.php:74 msgid "View" msgstr "" -#: db_structure.php:485 libraries/db_structure.lib.php:49 -#: libraries/server_links.inc.php:70 server_replication.php:33 +#: db_structure.php:483 libraries/db_structure.lib.php:49 +#: libraries/server_links.inc.php:71 server_replication.php:33 #: server_replication.php:164 server_status.php:369 #, fuzzy msgid "Replication" msgstr "Relações" -#: db_structure.php:489 +#: db_structure.php:487 msgid "Sum" msgstr "Soma" -#: db_structure.php:496 libraries/StorageEngine.class.php:356 +#: db_structure.php:494 libraries/StorageEngine.class.php:356 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "" -#: db_structure.php:524 db_structure.php:541 db_structure.php:542 +#: db_structure.php:522 db_structure.php:539 db_structure.php:540 #: 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:1596 tbl_structure.php:455 -#: tbl_structure.php:464 +#: server_databases.php:351 server_privileges.php:1616 tbl_structure.php:453 +#: tbl_structure.php:462 msgid "With selected:" msgstr "Com os seleccionados:" -#: db_structure.php:527 libraries/display_tbl.lib.php:2076 -#: server_databases.php:348 server_privileges.php:569 -#: server_privileges.php:1599 tbl_structure.php:458 +#: db_structure.php:525 libraries/display_tbl.lib.php:2076 +#: server_databases.php:348 server_privileges.php:570 +#: server_privileges.php:1619 tbl_structure.php:456 msgid "Check All" msgstr "Todos" -#: db_structure.php:531 libraries/display_tbl.lib.php:2077 +#: db_structure.php:529 libraries/display_tbl.lib.php:2077 #: libraries/replication_gui.lib.php:33 server_databases.php:350 -#: server_privileges.php:572 server_privileges.php:1603 tbl_structure.php:462 +#: server_privileges.php:573 server_privileges.php:1623 tbl_structure.php:460 msgid "Uncheck All" msgstr "Nenhum" -#: db_structure.php:536 +#: db_structure.php:534 msgid "Check tables having overhead" msgstr "" -#: db_structure.php:547 db_structure.php:548 db_structure.php:599 +#: db_structure.php:545 db_structure.php:546 db_structure.php:597 #: libraries/display_tbl.lib.php:2180 libraries/mult_submits.inc.php:28 -#: tbl_structure.php:492 tbl_structure.php:494 +#: tbl_structure.php:490 tbl_structure.php:492 msgid "Print view" msgstr "Vista de impressão" -#: db_structure.php:549 db_structure.php:550 libraries/mult_submits.inc.php:42 +#: db_structure.php:547 db_structure.php:548 libraries/mult_submits.inc.php:42 #: tbl_operations.php:581 msgid "Check table" msgstr "Verificar tabela" -#: db_structure.php:551 db_structure.php:552 libraries/mult_submits.inc.php:47 -#: tbl_operations.php:621 tbl_structure.php:709 tbl_structure.php:711 +#: db_structure.php:549 db_structure.php:550 libraries/mult_submits.inc.php:47 +#: tbl_operations.php:621 tbl_structure.php:707 tbl_structure.php:709 msgid "Optimize table" msgstr "Optimizar tabela" -#: db_structure.php:553 db_structure.php:554 libraries/mult_submits.inc.php:52 +#: db_structure.php:551 db_structure.php:552 libraries/mult_submits.inc.php:52 #: tbl_operations.php:611 msgid "Repair table" msgstr "Reparar tabela" -#: db_structure.php:555 db_structure.php:556 libraries/mult_submits.inc.php:57 +#: db_structure.php:553 db_structure.php:554 libraries/mult_submits.inc.php:57 #: tbl_operations.php:601 msgid "Analyze table" msgstr "Analizar tabela" -#: db_structure.php:557 db_structure.php:558 libraries/db_links.inc.php:71 +#: db_structure.php:555 db_structure.php:556 libraries/db_links.inc.php:71 #: 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:1380 +#: libraries/server_links.inc.php:85 libraries/tbl_links.inc.php:82 +#: pmd_pdf.php:84 pmd_pdf.php:109 server_privileges.php:1397 #: setup/frames/menu.inc.php:22 tbl_row_action.php:59 msgid "Export" msgstr "Exportar" -#: db_structure.php:606 libraries/display_pdf_schema.lib.php:44 +#: db_structure.php:604 libraries/display_pdf_schema.lib.php:44 msgid "Data Dictionary" msgstr "Dicionario de dados" @@ -723,10 +719,10 @@ msgstr "Verificar tabela" #: db_tracking.php:71 libraries/export/htmlword.php:86 #: libraries/export/latex.php:148 libraries/export/odt.php:113 #: libraries/export/sql.php:342 libraries/export/texytext.php:84 -#: libraries/export/xml.php:255 libraries/header.inc.php:106 +#: libraries/export/xml.php:255 libraries/header.inc.php:110 #: libraries/header_printview.inc.php:58 server_databases.php:169 -#: server_privileges.php:1660 server_privileges.php:1721 -#: server_privileges.php:1979 server_processlist.php:56 +#: server_privileges.php:1680 server_privileges.php:1741 +#: server_privileges.php:1999 server_processlist.php:56 #: server_synchronize.php:1179 server_synchronize.php:1183 #: tbl_tracking.php:591 test/theme.php:65 msgid "Database" @@ -748,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:1542 server_privileges.php:1725 -#: server_privileges.php:2073 tbl_structure.php:187 +#: server_privileges.php:1562 server_privileges.php:1745 +#: server_privileges.php:2094 tbl_structure.php:187 msgid "Action" msgstr "Acções" @@ -786,8 +782,8 @@ msgstr "Somente estrutura" msgid "Untracked tables" msgstr "Verificar tabela" -#: db_tracking.php:172 db_tracking.php:174 tbl_structure.php:528 -#: tbl_structure.php:530 +#: db_tracking.php:172 db_tracking.php:174 tbl_structure.php:526 +#: tbl_structure.php:528 #, fuzzy msgid "Track table" msgstr "Verificar tabela" @@ -945,189 +941,235 @@ 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:1236 user_password.php:70 +#: js/messages.php:44 server_privileges.php:1241 user_password.php:70 msgid "The password is empty!" msgstr "Indique a palavras-passe!" -#: js/messages.php:45 server_privileges.php:1234 user_password.php:73 +#: js/messages.php:45 server_privileges.php:1239 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!" -#: js/messages.php:49 pmd_general.php:342 pmd_general.php:379 +#: js/messages.php:46 +#, fuzzy +#| msgid "Add a new User" +msgid "Add a New User" +msgstr "Acrescenta um utilizador" + +#: js/messages.php:47 js/messages.php:54 pmd_general.php:342 +#: pmd_general.php:379 msgid "Cancel" msgstr "" -#: js/messages.php:52 pmd_save_pos.php:54 +#: js/messages.php:48 +#, fuzzy +msgid "Create User" +msgstr "Versão do servidor" + +#: js/messages.php:49 +#, fuzzy +msgid "Reloading Privileges" +msgstr "Privilégios Globais" + +#: js/messages.php:50 +#, fuzzy +#| msgid "Remove selected users" +msgid "Removing Selected Users" +msgstr "Remover utilizadores seleccionados" + +#: js/messages.php:57 +#, fuzzy +msgid "Loading" +msgstr "Local" + +#: js/messages.php:58 +#, fuzzy +#| msgid "Processes" +msgid "Processing Request" +msgstr "Processos" + +#: js/messages.php:59 +msgid "Error in Processing Request" +msgstr "" + +#: js/messages.php:60 +msgid "Dropping Column" +msgstr "" + +#: js/messages.php:61 +msgid "Adding Primary Key" +msgstr "" + +#: js/messages.php:64 pmd_save_pos.php:54 msgid "Modifications have been saved" msgstr "Modificações foram guardadas" -#: js/messages.php:53 pmd_relation_upd.php:49 +#: js/messages.php:65 pmd_relation_upd.php:49 #, fuzzy msgid "Relation deleted" msgstr "Vista de Relação" -#: js/messages.php:54 pmd_relation_new.php:64 +#: js/messages.php:66 pmd_relation_new.php:64 msgid "FOREIGN KEY relation added" msgstr "" -#: js/messages.php:55 pmd_relation_new.php:86 +#: js/messages.php:67 pmd_relation_new.php:86 #, fuzzy msgid "Internal relation added" msgstr "Relações internas" -#: js/messages.php:56 pmd_relation_new.php:63 pmd_relation_new.php:88 +#: js/messages.php:68 pmd_relation_new.php:63 pmd_relation_new.php:88 msgid "Error: Relation not added." msgstr "" -#: js/messages.php:57 pmd_relation_new.php:31 +#: js/messages.php:69 pmd_relation_new.php:31 msgid "Error: relation already exists." msgstr "" -#: js/messages.php:58 +#: js/messages.php:70 msgid "Error saving coordinates for Designer." msgstr "" -#: js/messages.php:59 libraries/relation.lib.php:107 +#: js/messages.php:71 libraries/relation.lib.php:107 #: libraries/relation.lib.php:119 msgid "General relation features" msgstr "Características gerais de Relação" -#: js/messages.php:59 libraries/relation.lib.php:101 +#: js/messages.php:71 libraries/relation.lib.php:101 #: libraries/relation.lib.php:108 msgid "Disabled" msgstr "Desactidado" -#: js/messages.php:60 +#: js/messages.php:72 msgid "Select referenced key" msgstr "" -#: js/messages.php:61 +#: js/messages.php:73 msgid "Select Foreign Key" msgstr "" -#: js/messages.php:62 +#: js/messages.php:74 msgid "Please select the primary key or a unique key" msgstr "" -#: js/messages.php:63 pmd_general.php:77 tbl_relation.php:548 +#: js/messages.php:75 pmd_general.php:77 tbl_relation.php:548 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" msgstr "Escolha campo para mostrar" #. l10n: Display text for calendar close link -#: js/messages.php:73 +#: js/messages.php:85 #, fuzzy msgid "Done" msgstr "Dados" #. l10n: Display text for previous month link in calendar -#: js/messages.php:75 +#: js/messages.php:87 #, fuzzy #| msgid "Previous" msgid "Prev" msgstr "Anterior" #. l10n: Display text for next month link in calendar -#: js/messages.php:77 libraries/common.lib.php:2353 -#: libraries/common.lib.php:2356 libraries/display_tbl.lib.php:338 +#: js/messages.php:89 libraries/common.lib.php:2357 +#: libraries/common.lib.php:2360 libraries/display_tbl.lib.php:338 #: server_binlog.php:205 server_binlog.php:207 tbl_printview.php:424 -#: tbl_structure.php:801 +#: tbl_structure.php:799 msgid "Next" msgstr "Próximo" #. l10n: Display text for current month link in calendar -#: js/messages.php:79 +#: js/messages.php:91 #, fuzzy #| msgid "Total" msgid "Today" msgstr "Total" -#: js/messages.php:82 +#: js/messages.php:94 #, fuzzy #| msgid "Binary" msgid "January" msgstr " Binário " -#: js/messages.php:83 +#: js/messages.php:95 msgid "February" msgstr "" -#: js/messages.php:84 +#: js/messages.php:96 #, fuzzy #| msgid "Mar" msgid "March" msgstr "Mar" -#: js/messages.php:85 +#: js/messages.php:97 #, fuzzy #| msgid "Apr" msgid "April" msgstr "Abr" -#: js/messages.php:86 +#: js/messages.php:98 msgid "May" msgstr "Mai" -#: js/messages.php:87 +#: js/messages.php:99 #, fuzzy #| msgid "Jun" msgid "June" msgstr "Jun" -#: js/messages.php:88 +#: js/messages.php:100 #, fuzzy #| msgid "Jul" msgid "July" msgstr "Jul" -#: js/messages.php:89 +#: js/messages.php:101 #, fuzzy #| msgid "Aug" msgid "August" msgstr "Ago" -#: js/messages.php:90 +#: js/messages.php:102 msgid "September" msgstr "" -#: js/messages.php:91 +#: js/messages.php:103 #, fuzzy #| msgid "Oct" msgid "October" msgstr "Out" -#: js/messages.php:92 +#: js/messages.php:104 msgid "November" msgstr "" -#: js/messages.php:93 +#: js/messages.php:105 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:97 libraries/common.lib.php:1557 +#: js/messages.php:109 libraries/common.lib.php:1557 msgid "Jan" msgstr "Jan" #. l10n: Short month name -#: js/messages.php:99 libraries/common.lib.php:1559 +#: js/messages.php:111 libraries/common.lib.php:1559 msgid "Feb" msgstr "Fev" #. l10n: Short month name -#: js/messages.php:101 libraries/common.lib.php:1561 +#: js/messages.php:113 libraries/common.lib.php:1561 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:103 libraries/common.lib.php:1563 +#: js/messages.php:115 libraries/common.lib.php:1563 msgid "Apr" msgstr "Abr" #. l10n: Short month name -#: js/messages.php:105 libraries/common.lib.php:1565 +#: js/messages.php:117 libraries/common.lib.php:1565 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1135,176 +1177,176 @@ msgid "May" msgstr "Mai" #. l10n: Short month name -#: js/messages.php:107 libraries/common.lib.php:1567 +#: js/messages.php:119 libraries/common.lib.php:1567 msgid "Jun" msgstr "Jun" #. l10n: Short month name -#: js/messages.php:109 libraries/common.lib.php:1569 +#: js/messages.php:121 libraries/common.lib.php:1569 msgid "Jul" msgstr "Jul" #. l10n: Short month name -#: js/messages.php:111 libraries/common.lib.php:1571 +#: js/messages.php:123 libraries/common.lib.php:1571 msgid "Aug" msgstr "Ago" #. l10n: Short month name -#: js/messages.php:113 libraries/common.lib.php:1573 +#: js/messages.php:125 libraries/common.lib.php:1573 msgid "Sep" msgstr "Set" #. l10n: Short month name -#: js/messages.php:115 libraries/common.lib.php:1575 +#: js/messages.php:127 libraries/common.lib.php:1575 msgid "Oct" msgstr "Out" #. l10n: Short month name -#: js/messages.php:117 libraries/common.lib.php:1577 +#: js/messages.php:129 libraries/common.lib.php:1577 msgid "Nov" msgstr "Nov" #. l10n: Short month name -#: js/messages.php:119 libraries/common.lib.php:1579 +#: js/messages.php:131 libraries/common.lib.php:1579 msgid "Dec" msgstr "Dez" -#: js/messages.php:122 +#: js/messages.php:134 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "Dom" -#: js/messages.php:123 +#: js/messages.php:135 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "Seg" -#: js/messages.php:124 +#: js/messages.php:136 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "Ter" -#: js/messages.php:125 +#: js/messages.php:137 msgid "Wednesday" msgstr "" -#: js/messages.php:126 +#: js/messages.php:138 msgid "Thursday" msgstr "" -#: js/messages.php:127 +#: js/messages.php:139 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "Sex" -#: js/messages.php:128 +#: js/messages.php:140 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:132 libraries/common.lib.php:1582 +#: js/messages.php:144 libraries/common.lib.php:1582 msgid "Sun" msgstr "Dom" #. l10n: Short week day name -#: js/messages.php:134 libraries/common.lib.php:1584 +#: js/messages.php:146 libraries/common.lib.php:1584 msgid "Mon" msgstr "Seg" #. l10n: Short week day name -#: js/messages.php:136 libraries/common.lib.php:1586 +#: js/messages.php:148 libraries/common.lib.php:1586 msgid "Tue" msgstr "Ter" #. l10n: Short week day name -#: js/messages.php:138 libraries/common.lib.php:1588 +#: js/messages.php:150 libraries/common.lib.php:1588 msgid "Wed" msgstr "Qua" #. l10n: Short week day name -#: js/messages.php:140 libraries/common.lib.php:1590 +#: js/messages.php:152 libraries/common.lib.php:1590 msgid "Thu" msgstr "Qui" #. l10n: Short week day name -#: js/messages.php:142 libraries/common.lib.php:1592 +#: js/messages.php:154 libraries/common.lib.php:1592 msgid "Fri" msgstr "Sex" #. l10n: Short week day name -#: js/messages.php:144 libraries/common.lib.php:1594 +#: js/messages.php:156 libraries/common.lib.php:1594 msgid "Sat" msgstr "Sab" #. l10n: Minimal week day name -#: js/messages.php:148 +#: js/messages.php:160 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "Dom" #. l10n: Minimal week day name -#: js/messages.php:150 +#: js/messages.php:162 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "Seg" #. l10n: Minimal week day name -#: js/messages.php:152 +#: js/messages.php:164 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "Ter" #. l10n: Minimal week day name -#: js/messages.php:154 +#: js/messages.php:166 #, fuzzy #| msgid "Wed" msgid "We" msgstr "Qua" #. l10n: Minimal week day name -#: js/messages.php:156 +#: js/messages.php:168 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "Qui" #. l10n: Minimal week day name -#: js/messages.php:158 +#: js/messages.php:170 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "Sex" #. l10n: Minimal week day name -#: js/messages.php:160 +#: js/messages.php:172 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "Sab" #. l10n: Column header for week of the year in calendar -#: js/messages.php:162 +#: js/messages.php:174 msgid "Wk" msgstr "" -#: js/messages.php:164 +#: js/messages.php:176 msgid "Hour" msgstr "" -#: js/messages.php:165 +#: js/messages.php:177 #, fuzzy #| msgid "in use" msgid "Minute" msgstr "em uso" -#: js/messages.php:166 +#: js/messages.php:178 #, fuzzy #| msgid "per second" msgid "Second" @@ -1361,7 +1403,7 @@ msgstr "Índices" #: libraries/Index.class.php:444 libraries/mult_submits.inc.php:103 #: libraries/tbl_properties.inc.php:519 tbl_structure.php:33 -#: tbl_structure.php:155 tbl_structure.php:159 tbl_structure.php:474 +#: tbl_structure.php:155 tbl_structure.php:159 tbl_structure.php:472 #: tbl_tracking.php:322 msgid "Unique" msgstr "Único" @@ -1403,8 +1445,8 @@ msgid "" "removed." msgstr "" -#: libraries/List_Database.class.php:431 libraries/server_links.inc.php:41 -#: server_databases.php:88 server_privileges.php:1660 +#: libraries/List_Database.class.php:431 libraries/server_links.inc.php:42 +#: server_databases.php:88 server_privileges.php:1680 #: setup/lib/messages.inc.php:110 test/theme.php:93 msgid "Databases" msgstr "Base de Dados" @@ -1570,7 +1612,7 @@ msgstr "Palavra-passe :" msgid "Server Choice" msgstr "Escolha do Servidor" -#: libraries/auth/cookie.auth.lib.php:320 libraries/header.inc.php:59 +#: libraries/auth/cookie.auth.lib.php:320 libraries/header.inc.php:63 msgid "Cookies must be enabled past this point." msgstr "O mecanismo de \"Cookies\" tem de estar ligado a partir deste ponto." @@ -1652,7 +1694,7 @@ msgstr "" "recode_string enquanto a extensão reportar que está ligada. Confira a " "configuração do seu php." -#: libraries/common.inc.php:583 +#: libraries/common.inc.php:587 msgid "" "phpMyAdmin was unable to read your configuration file!
This might " "happen if PHP finds a parse error in it or PHP cannot find the file.
Se receber uma página em branco, está tudo correcto." -#: libraries/common.inc.php:594 +#: libraries/common.inc.php:598 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "" -#: libraries/common.inc.php:599 +#: libraries/common.inc.php:603 msgid "" "The $cfg['PmaAbsoluteUri'] directive MUST be set in your " "configuration file!" @@ -1681,27 +1723,27 @@ msgstr "" "A directiva $cfg['PmaAbsoluteUri'] TEM que ser definida no ficheiro " "de configuração!" -#: libraries/common.inc.php:629 +#: libraries/common.inc.php:633 #, php-format msgid "Invalid server index: %s" msgstr "" -#: libraries/common.inc.php:636 +#: libraries/common.inc.php:640 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" -#: libraries/common.inc.php:645 libraries/header.inc.php:96 +#: libraries/common.inc.php:649 libraries/header.inc.php:100 #: libraries/select_server.lib.php:41 libraries/select_server.lib.php:47 #: main.php:185 test/theme.php:57 msgid "Server" msgstr "Servidor" -#: libraries/common.inc.php:823 +#: libraries/common.inc.php:827 msgid "Invalid authentication method set in configuration:" msgstr "" -#: libraries/common.inc.php:926 +#: libraries/common.inc.php:930 #, php-format msgid "You should upgrade to %s %s or later." msgstr "deve actualizar para %s %s ou mais recente." @@ -1834,45 +1876,45 @@ msgstr "." msgid "%B %d, %Y at %I:%M %p" msgstr "%d-%B-%Y às %H:%M" -#: libraries/common.lib.php:1907 +#: libraries/common.lib.php:1911 #, 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:2322 libraries/common.lib.php:2325 +#: libraries/common.lib.php:2326 libraries/common.lib.php:2329 #: libraries/display_tbl.lib.php:290 server_status.php:719 msgid "Begin" msgstr "Inicio" -#: libraries/common.lib.php:2323 libraries/common.lib.php:2326 +#: libraries/common.lib.php:2327 libraries/common.lib.php:2330 #: libraries/display_tbl.lib.php:291 server_binlog.php:168 #: server_binlog.php:170 msgid "Previous" msgstr "Anterior" -#: libraries/common.lib.php:2354 libraries/common.lib.php:2357 +#: libraries/common.lib.php:2358 libraries/common.lib.php:2361 #: libraries/display_tbl.lib.php:353 msgid "End" msgstr "Fim" -#: libraries/common.lib.php:2430 +#: libraries/common.lib.php:2434 #, php-format msgid "Jump to database "%s"." msgstr "Saltar para a Base de Dados "%s"." -#: libraries/common.lib.php:2450 +#: libraries/common.lib.php:2454 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" -#: libraries/common.lib.php:2830 libraries/common.lib.php:2837 +#: libraries/common.lib.php:2834 libraries/common.lib.php:2841 #: libraries/db_links.inc.php:68 libraries/export/sql.php:25 -#: libraries/import/sql.php:18 libraries/server_links.inc.php:45 +#: libraries/import/sql.php:18 libraries/server_links.inc.php:46 #: libraries/tbl_links.inc.php:60 querywindow.php:99 test/theme.php:97 msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2839 libraries/db_links.inc.php:104 +#: libraries/common.lib.php:2843 libraries/db_links.inc.php:104 #: libraries/tbl_links.inc.php:95 libraries/tbl_links.inc.php:117 #: view_operations.php:89 msgid "Operations" @@ -1922,16 +1964,16 @@ msgstr "Pesquisa por formulário" msgid "Designer" msgstr "" -#: libraries/db_links.inc.php:98 libraries/server_links.inc.php:88 +#: libraries/db_links.inc.php:98 libraries/server_links.inc.php:89 #: libraries/tbl_links.inc.php:91 pmd_pdf.php:84 pmd_pdf.php:110 #: setup/frames/menu.inc.php:21 #, fuzzy msgid "Import" msgstr "Exportar" -#: libraries/db_links.inc.php:111 libraries/server_links.inc.php:66 -#: server_privileges.php:111 server_privileges.php:1722 -#: server_privileges.php:2071 test/theme.php:117 +#: libraries/db_links.inc.php:111 libraries/server_links.inc.php:67 +#: server_privileges.php:112 server_privileges.php:1742 +#: server_privileges.php:2092 test/theme.php:117 msgid "Privileges" msgstr "Privilégios" @@ -1950,7 +1992,7 @@ msgid "" msgstr "" #: libraries/db_structure.lib.php:69 server_databases.php:142 -#: tbl_printview.php:336 tbl_structure.php:682 +#: tbl_printview.php:336 tbl_structure.php:680 msgid "Overhead" msgstr "Suspenso" @@ -1967,7 +2009,7 @@ msgstr "" msgid "(or the local MySQL server's socket is not correctly configured)" msgstr "" -#: libraries/dbi/mysql.dbi.lib.php:362 tbl_structure.php:608 +#: libraries/dbi/mysql.dbi.lib.php:362 tbl_structure.php:606 msgid "Details..." msgstr "" @@ -1977,22 +2019,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:807 +#: libraries/replication_gui.lib.php:345 server_privileges.php:808 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:796 -#: server_privileges.php:800 server_privileges.php:811 -#: server_privileges.php:1538 server_synchronize.php:1175 +#: libraries/replication_gui.lib.php:349 server_privileges.php:797 +#: server_privileges.php:801 server_privileges.php:812 +#: server_privileges.php:1558 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:815 server_privileges.php:818 +#: server_privileges.php:816 server_privileges.php:819 msgid "Re-type" msgstr "Confirma" @@ -2005,12 +2047,12 @@ msgid "MySQL 4.0 compatible" msgstr "" #: libraries/display_change_password.lib.php:72 -#: libraries/replication_gui.lib.php:360 server_privileges.php:822 +#: libraries/replication_gui.lib.php:360 server_privileges.php:823 msgid "Generate Password" msgstr "" #: libraries/display_change_password.lib.php:75 -#: libraries/replication_gui.lib.php:363 server_privileges.php:825 +#: libraries/replication_gui.lib.php:363 server_privileges.php:826 #, fuzzy msgid "Generate" msgstr "Gerado por" @@ -2024,8 +2066,8 @@ msgstr "Criar nova base de dados" msgid "Create" msgstr "Criar" -#: libraries/display_create_database.lib.php:40 server_privileges.php:113 -#: server_privileges.php:1427 server_replication.php:35 +#: libraries/display_create_database.lib.php:40 server_privileges.php:114 +#: server_privileges.php:1447 server_replication.php:35 msgid "No Privileges" msgstr "Sem Privilégios" @@ -2115,7 +2157,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:1875 server_processlist.php:75 +#: server_privileges.php:1895 server_processlist.php:75 msgid "None" msgstr "Nenhum" @@ -2299,7 +2341,7 @@ msgstr "Ordenar por chave" #: libraries/import/docsql.php:34 libraries/import/ldi.php:47 #: libraries/import/ods.php:30 libraries/import/sql.php:20 #: libraries/import/xls.php:26 libraries/import/xlsx.php:26 -#: libraries/import/xml.php:25 tbl_select.php:267 tbl_structure.php:753 +#: libraries/import/xml.php:25 tbl_select.php:267 tbl_structure.php:751 #, fuzzy msgid "Options" msgstr "Operações" @@ -2378,7 +2420,7 @@ msgstr "O Query demorou %01.4f sec" #: libraries/display_tbl.lib.php:2089 libraries/mult_submits.inc.php:113 #: querywindow.php:125 querywindow.php:129 querywindow.php:132 -#: tbl_structure.php:25 tbl_structure.php:150 tbl_structure.php:470 +#: tbl_structure.php:25 tbl_structure.php:150 tbl_structure.php:468 msgid "Change" msgstr "Muda" @@ -2446,7 +2488,7 @@ msgstr "" #: libraries/engines/innodb.lib.php:194 server_databases.php:137 #: server_databases.php:305 server_status.php:525 server_status.php:586 -#: server_status.php:607 tbl_printview.php:351 tbl_structure.php:696 +#: server_status.php:607 tbl_printview.php:351 tbl_structure.php:694 msgid "Total" msgstr "Total" @@ -2692,7 +2734,7 @@ msgid "" msgstr "" #: libraries/export/codegen.php:37 setup/lib/messages.inc.php:88 -#: tbl_printview.php:376 tbl_structure.php:737 +#: tbl_printview.php:376 tbl_structure.php:735 msgid "Format" msgstr "Formato" @@ -2764,8 +2806,8 @@ 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:576 server_replication.php:316 tbl_printview.php:317 -#: tbl_structure.php:665 +#: server_privileges.php:577 server_replication.php:316 tbl_printview.php:317 +#: tbl_structure.php:663 msgid "Data" msgstr "Dados" @@ -2814,9 +2856,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:731 -#: server_privileges.php:734 server_privileges.php:790 -#: server_privileges.php:1537 server_privileges.php:2069 +#: libraries/replication_gui.lib.php:329 server_privileges.php:732 +#: server_privileges.php:735 server_privileges.php:791 +#: server_privileges.php:1557 server_privileges.php:2090 #: server_processlist.php:55 server_synchronize.php:1159 msgid "Host" msgstr "Máquina" @@ -3022,7 +3064,7 @@ msgstr "Tipo de Exportação" msgid "Open new phpMyAdmin window" msgstr "" -#: libraries/header.inc.php:115 +#: libraries/header.inc.php:119 #, fuzzy msgid "New table" msgstr "Sem tablelas" @@ -3183,20 +3225,20 @@ 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 +#: tbl_structure.php:471 msgid "Primary" msgstr "Primária" #: libraries/mult_submits.inc.php:98 libraries/tbl_properties.inc.php:116 #: libraries/tbl_properties.inc.php:525 tbl_printview.php:326 #: tbl_structure.php:31 tbl_structure.php:154 tbl_structure.php:158 -#: tbl_structure.php:475 tbl_structure.php:673 +#: tbl_structure.php:473 tbl_structure.php:671 msgid "Index" msgstr "Índice" #: libraries/mult_submits.inc.php:108 libraries/tbl_properties.inc.php:531 #: tbl_structure.php:35 tbl_structure.php:156 tbl_structure.php:160 -#: tbl_structure.php:478 +#: tbl_structure.php:476 msgid "Fulltext" msgstr "Texto Completo" @@ -3502,8 +3544,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:711 -#: server_privileges.php:714 server_privileges.php:721 +#: libraries/replication_gui.lib.php:259 server_privileges.php:712 +#: server_privileges.php:715 server_privileges.php:722 #: server_synchronize.php:1171 msgid "User name" msgstr "Nome do Utilizador" @@ -3528,7 +3570,7 @@ msgstr "Variável" #: 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 +#: tbl_structure.php:727 msgid "Value" msgstr "Valor" @@ -3547,34 +3589,34 @@ msgstr "" msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:254 server_privileges.php:716 +#: libraries/replication_gui.lib.php:254 server_privileges.php:717 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:717 -#: server_privileges.php:784 server_privileges.php:808 -#: server_privileges.php:1928 server_privileges.php:1958 +#: libraries/replication_gui.lib.php:346 server_privileges.php:718 +#: server_privileges.php:785 server_privileges.php:809 +#: server_privileges.php:1948 server_privileges.php:1978 msgid "Use text field" msgstr "Usar campo de texto" -#: libraries/replication_gui.lib.php:302 server_privileges.php:764 +#: libraries/replication_gui.lib.php:302 server_privileges.php:765 msgid "Any host" msgstr "Qualquer máquina" -#: libraries/replication_gui.lib.php:306 server_privileges.php:768 +#: libraries/replication_gui.lib.php:306 server_privileges.php:769 msgid "Local" msgstr "Local" -#: libraries/replication_gui.lib.php:312 server_privileges.php:773 +#: libraries/replication_gui.lib.php:312 server_privileges.php:774 msgid "This Host" msgstr "Este Anfitrião" -#: libraries/replication_gui.lib.php:318 server_privileges.php:779 +#: libraries/replication_gui.lib.php:318 server_privileges.php:780 msgid "Use Host Table" msgstr "Usar a tabela do anfitrião" -#: libraries/replication_gui.lib.php:331 server_privileges.php:792 +#: libraries/replication_gui.lib.php:331 server_privileges.php:793 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -3609,30 +3651,30 @@ msgstr "" msgid "Servers" msgstr "Servidor" -#: libraries/server_links.inc.php:53 server_engines.php:112 +#: libraries/server_links.inc.php:54 server_engines.php:112 #: server_engines.php:116 server_status.php:415 test/theme.php:105 msgid "Variables" msgstr "Variáveis" -#: libraries/server_links.inc.php:57 test/theme.php:109 +#: libraries/server_links.inc.php:58 test/theme.php:109 msgid "Charsets" msgstr "Mapas de Caracteres" -#: libraries/server_links.inc.php:61 test/theme.php:113 +#: libraries/server_links.inc.php:62 test/theme.php:113 msgid "Engines" msgstr "" -#: libraries/server_links.inc.php:76 server_binlog.php:110 +#: libraries/server_links.inc.php:77 server_binlog.php:110 #: server_status.php:364 test/theme.php:121 #, fuzzy msgid "Binary log" msgstr " Binário " -#: libraries/server_links.inc.php:80 +#: libraries/server_links.inc.php:81 msgid "Processes" msgstr "Processos" -#: libraries/server_links.inc.php:92 server_synchronize.php:1092 +#: libraries/server_links.inc.php:93 server_synchronize.php:1092 #: server_synchronize.php:1100 msgid "Synchronize" msgstr "" @@ -3880,12 +3922,12 @@ msgstr "" msgid "Save" msgstr "Guarda" -#: libraries/tbl_properties.inc.php:780 tbl_structure.php:542 +#: libraries/tbl_properties.inc.php:780 tbl_structure.php:540 #, fuzzy, php-format msgid "Add %s column(s)" msgstr "Adiciona novo campo" -#: libraries/tbl_properties.inc.php:784 tbl_structure.php:536 +#: libraries/tbl_properties.inc.php:784 tbl_structure.php:534 #, fuzzy #| msgid "You have to choose at least one column to display" msgid "You have to add at least one column." @@ -4027,8 +4069,8 @@ msgstr "Limpa" msgid "Protocol version" msgstr "" -#: main.php:189 server_privileges.php:1389 server_privileges.php:1536 -#: server_privileges.php:1650 server_privileges.php:2068 +#: main.php:189 server_privileges.php:1406 server_privileges.php:1556 +#: server_privileges.php:1670 server_privileges.php:2089 #: server_processlist.php:54 msgid "User" msgstr "Utilizador" @@ -4466,117 +4508,117 @@ msgstr "" msgid "View dump (schema) of databases" msgstr "Ver o esquema da base de dados" -#: server_privileges.php:24 server_privileges.php:266 +#: server_privileges.php:25 server_privileges.php:267 msgid "Includes all privileges except GRANT." msgstr "inclui todos os privilégios excepto Conceção - GRANT." -#: server_privileges.php:25 server_privileges.php:192 -#: server_privileges.php:515 +#: server_privileges.php:26 server_privileges.php:193 +#: server_privileges.php:516 msgid "Allows altering the structure of existing tables." msgstr "Permite alterar a estrutura de tabelas existentes." -#: server_privileges.php:26 server_privileges.php:208 -#: server_privileges.php:521 +#: server_privileges.php:27 server_privileges.php:209 +#: server_privileges.php:522 #, fuzzy msgid "Allows altering and dropping stored routines." msgstr "Permite criar e apagar indexes." -#: server_privileges.php:27 server_privileges.php:184 -#: server_privileges.php:514 +#: server_privileges.php:28 server_privileges.php:185 +#: server_privileges.php:515 msgid "Allows creating new databases and tables." msgstr "Permite criar novas Bases de Dados e tabelas." -#: server_privileges.php:28 server_privileges.php:207 -#: server_privileges.php:520 +#: server_privileges.php:29 server_privileges.php:208 +#: server_privileges.php:521 #, fuzzy msgid "Allows creating stored routines." msgstr "Permite criar novas tabelas." -#: server_privileges.php:29 server_privileges.php:514 +#: server_privileges.php:30 server_privileges.php:515 msgid "Allows creating new tables." msgstr "Permite criar novas tabelas." -#: server_privileges.php:30 server_privileges.php:195 -#: server_privileges.php:518 +#: server_privileges.php:31 server_privileges.php:196 +#: server_privileges.php:519 msgid "Allows creating temporary tables." msgstr "Permite criar tabelas temporárias." -#: server_privileges.php:31 server_privileges.php:209 -#: server_privileges.php:554 +#: server_privileges.php:32 server_privileges.php:210 +#: server_privileges.php:555 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 +#: server_privileges.php:33 server_privileges.php:200 +#: server_privileges.php:204 server_privileges.php:527 +#: server_privileges.php:531 #, fuzzy msgid "Allows creating new views." msgstr "Permite criar novas tabelas." -#: server_privileges.php:33 server_privileges.php:183 -#: server_privileges.php:506 +#: server_privileges.php:34 server_privileges.php:184 +#: server_privileges.php:507 msgid "Allows deleting data." msgstr "Permite apagar dados." -#: server_privileges.php:34 server_privileges.php:185 -#: server_privileges.php:517 +#: server_privileges.php:35 server_privileges.php:186 +#: server_privileges.php:518 msgid "Allows dropping databases and tables." msgstr "Permite apagar Bases de Dados e tabelas." -#: server_privileges.php:35 server_privileges.php:517 +#: server_privileges.php:36 server_privileges.php:518 msgid "Allows dropping tables." msgstr "Permite apagar Bases de Dados." -#: server_privileges.php:36 server_privileges.php:200 -#: server_privileges.php:534 +#: server_privileges.php:37 server_privileges.php:201 +#: server_privileges.php:535 msgid "Allows to set up events for the event scheduler" msgstr "" -#: server_privileges.php:37 server_privileges.php:210 -#: server_privileges.php:522 +#: server_privileges.php:38 server_privileges.php:211 +#: server_privileges.php:523 #, fuzzy msgid "Allows executing stored routines." msgstr "Permite criar novas tabelas." -#: server_privileges.php:38 server_privileges.php:189 -#: server_privileges.php:509 +#: server_privileges.php:39 server_privileges.php:190 +#: server_privileges.php:510 msgid "Allows importing data from and exporting data into files." msgstr "Permite importar dados de... e exportar dados para ficheiros." -#: server_privileges.php:39 server_privileges.php:540 +#: server_privileges.php:40 server_privileges.php:541 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "Permite adicionar utilizadores e privilégios sem recarregar a tabela de " "privilégios." -#: server_privileges.php:40 server_privileges.php:191 -#: server_privileges.php:516 +#: server_privileges.php:41 server_privileges.php:192 +#: server_privileges.php:517 msgid "Allows creating and dropping indexes." msgstr "Permite criar e apagar indexes." -#: server_privileges.php:41 server_privileges.php:181 -#: server_privileges.php:442 server_privileges.php:504 +#: server_privileges.php:42 server_privileges.php:182 +#: server_privileges.php:443 server_privileges.php:505 msgid "Allows inserting and replacing data." msgstr "Permite inserir e substituir dados." -#: server_privileges.php:42 server_privileges.php:196 -#: server_privileges.php:549 +#: server_privileges.php:43 server_privileges.php:197 +#: server_privileges.php:550 msgid "Allows locking tables for the current thread." msgstr "" -#: server_privileges.php:43 server_privileges.php:646 -#: server_privileges.php:648 +#: server_privileges.php:44 server_privileges.php:647 +#: server_privileges.php:649 msgid "Limits the number of new connections the user may open per hour." msgstr "Limits the number of new connections the user may open per hour." -#: server_privileges.php:44 server_privileges.php:634 -#: server_privileges.php:636 +#: server_privileges.php:45 server_privileges.php:635 +#: server_privileges.php:637 msgid "Limits the number of queries the user may send to the server per hour." msgstr "Limits the number of queries the user may send to the server per hour." -#: server_privileges.php:45 server_privileges.php:640 -#: server_privileges.php:642 +#: server_privileges.php:46 server_privileges.php:641 +#: server_privileges.php:643 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -4584,217 +4626,217 @@ 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 +#: server_privileges.php:47 server_privileges.php:653 +#: server_privileges.php:655 #, fuzzy msgid "Limits the number of simultaneous connections the user may have." msgstr "Limits the number of new connections the user may open per hour." -#: server_privileges.php:47 server_privileges.php:188 -#: server_privileges.php:544 +#: server_privileges.php:48 server_privileges.php:189 +#: server_privileges.php:545 msgid "Allows viewing processes of all users" msgstr "" -#: server_privileges.php:48 server_privileges.php:190 -#: server_privileges.php:448 server_privileges.php:550 +#: server_privileges.php:49 server_privileges.php:191 +#: server_privileges.php:449 server_privileges.php:551 msgid "Has no effect in this MySQL version." msgstr "Não tem efeito nesta versão do MySQL." -#: server_privileges.php:49 server_privileges.php:186 -#: server_privileges.php:545 +#: server_privileges.php:50 server_privileges.php:187 +#: server_privileges.php:546 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" -#: server_privileges.php:50 server_privileges.php:198 -#: server_privileges.php:552 +#: server_privileges.php:51 server_privileges.php:199 +#: server_privileges.php:553 msgid "Allows the user to ask where the slaves / masters are." msgstr "" -#: server_privileges.php:51 server_privileges.php:197 -#: server_privileges.php:553 +#: server_privileges.php:52 server_privileges.php:198 +#: server_privileges.php:554 msgid "Needed for the replication slaves." msgstr "" -#: server_privileges.php:52 server_privileges.php:180 -#: server_privileges.php:439 server_privileges.php:503 +#: server_privileges.php:53 server_privileges.php:181 +#: server_privileges.php:440 server_privileges.php:504 msgid "Allows reading data." msgstr "Permite ler dados." -#: server_privileges.php:53 server_privileges.php:193 -#: server_privileges.php:547 +#: server_privileges.php:54 server_privileges.php:194 +#: server_privileges.php:548 msgid "Gives access to the complete list of databases." msgstr "Dá acesso à lista de bases de dados completa." -#: server_privileges.php:54 server_privileges.php:204 -#: server_privileges.php:206 server_privileges.php:519 +#: server_privileges.php:55 server_privileges.php:205 +#: server_privileges.php:207 server_privileges.php:520 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "" -#: server_privileges.php:55 server_privileges.php:187 -#: server_privileges.php:546 +#: server_privileges.php:56 server_privileges.php:188 +#: server_privileges.php:547 msgid "Allows shutting down the server." msgstr "Permite desligar o servidor." -#: server_privileges.php:56 server_privileges.php:194 -#: server_privileges.php:543 +#: server_privileges.php:57 server_privileges.php:195 +#: server_privileges.php:544 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " "killing threads of other users." msgstr "" -#: server_privileges.php:57 server_privileges.php:201 -#: server_privileges.php:535 +#: server_privileges.php:58 server_privileges.php:202 +#: server_privileges.php:536 #, fuzzy msgid "Allows creating and dropping triggers" msgstr "Permite criar e apagar indexes." -#: server_privileges.php:58 server_privileges.php:182 -#: server_privileges.php:445 server_privileges.php:505 +#: server_privileges.php:59 server_privileges.php:183 +#: server_privileges.php:446 server_privileges.php:506 msgid "Allows changing data." msgstr "Permite alterar dados." -#: server_privileges.php:59 server_privileges.php:260 +#: server_privileges.php:60 server_privileges.php:261 msgid "No privileges." msgstr "Sem privilégios." -#: server_privileges.php:302 server_privileges.php:303 +#: server_privileges.php:303 server_privileges.php:304 #, fuzzy #| msgid "None" msgctxt "None privileges" msgid "None" msgstr "Nenhum" -#: server_privileges.php:431 server_privileges.php:566 -#: server_privileges.php:1718 server_privileges.php:1724 +#: server_privileges.php:432 server_privileges.php:567 +#: server_privileges.php:1738 server_privileges.php:1744 msgid "Table-specific privileges" msgstr "Privilégios específicos da tabela" -#: server_privileges.php:432 server_privileges.php:574 -#: server_privileges.php:1540 +#: server_privileges.php:433 server_privileges.php:575 +#: server_privileges.php:1560 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:563 server_privileges.php:1539 +#: server_privileges.php:564 server_privileges.php:1559 msgid "Global privileges" msgstr "Privilégios Globais" -#: server_privileges.php:565 server_privileges.php:1718 +#: server_privileges.php:566 server_privileges.php:1738 msgid "Database-specific privileges" msgstr "Privilégios específicos da Base de Dados" -#: server_privileges.php:610 +#: server_privileges.php:611 msgid "Administration" msgstr "Administração" -#: server_privileges.php:630 +#: server_privileges.php:631 msgid "Resource limits" msgstr "Limites do recurso" -#: server_privileges.php:631 +#: server_privileges.php:632 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "Nota: Configurar estas opções para 0 (zero) remove o limite." -#: server_privileges.php:708 +#: server_privileges.php:709 msgid "Login Information" msgstr "Informação de Login " -#: server_privileges.php:802 +#: server_privileges.php:803 msgid "Do not change the password" msgstr "Mantendo a palavra-passe " -#: server_privileges.php:843 server_privileges.php:2205 +#: server_privileges.php:844 server_privileges.php:2226 #, fuzzy #| msgid "No user(s) found." msgid "No user found." msgstr "Nenhum utilizador encontrado." -#: server_privileges.php:887 +#: server_privileges.php:888 #, php-format msgid "The user %s already exists!" msgstr "O utilizador %s já existe!" -#: server_privileges.php:970 +#: server_privileges.php:971 msgid "You have added a new user." msgstr "Acrescentou um novo utilizador." -#: server_privileges.php:1191 +#: server_privileges.php:1196 #, php-format msgid "You have updated the privileges for %s." msgstr "Actualizou os privilégios de %s." -#: server_privileges.php:1215 +#: server_privileges.php:1220 #, php-format msgid "You have revoked the privileges for %s" msgstr "Anulou os privilégios para %s" -#: server_privileges.php:1251 +#: server_privileges.php:1256 #, php-format msgid "The password for %s was changed successfully." msgstr "A palavra-passe para %s foi alterada com sucesso." -#: server_privileges.php:1271 +#: server_privileges.php:1276 #, php-format msgid "Deleting %s" msgstr "A apagar %s" -#: server_privileges.php:1282 +#: server_privileges.php:1287 msgid "No users selected for deleting!" msgstr "" -#: server_privileges.php:1285 +#: server_privileges.php:1290 msgid "Reloading the privileges" msgstr "A recarregar privilégios" -#: server_privileges.php:1300 +#: server_privileges.php:1305 msgid "The selected users have been deleted successfully." msgstr "Os utilizadores selecionado foram apagados com sucesso." -#: server_privileges.php:1335 +#: server_privileges.php:1344 msgid "The privileges were reloaded successfully." msgstr "O privilégios foram recarregados com sucesso." -#: server_privileges.php:1363 server_privileges.php:1649 +#: server_privileges.php:1380 server_privileges.php:1669 msgid "Edit Privileges" msgstr "Alterar Privilegios" -#: server_privileges.php:1372 +#: server_privileges.php:1389 msgid "Revoke" msgstr "Anula" -#: server_privileges.php:1404 +#: server_privileges.php:1424 msgid "User overview" msgstr "" -#: server_privileges.php:1541 server_privileges.php:1723 -#: server_privileges.php:2072 +#: server_privileges.php:1561 server_privileges.php:1743 +#: server_privileges.php:2093 msgid "Grant" msgstr "Conceder/Grant" -#: server_privileges.php:1560 server_privileges.php:2162 +#: server_privileges.php:1580 server_privileges.php:2183 msgid "Any" msgstr "Todos" -#: server_privileges.php:1609 server_privileges.php:1633 -#: server_privileges.php:2027 server_privileges.php:2216 +#: server_privileges.php:1629 server_privileges.php:1653 +#: server_privileges.php:2048 server_privileges.php:2237 msgid "Add a new User" msgstr "Acrescenta um utilizador" -#: server_privileges.php:1614 +#: server_privileges.php:1634 msgid "Remove selected users" msgstr "Remover utilizadores seleccionados" -#: server_privileges.php:1617 +#: server_privileges.php:1637 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:1618 server_privileges.php:1619 -#: server_privileges.php:1620 +#: server_privileges.php:1638 server_privileges.php:1639 +#: server_privileges.php:1640 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:1636 +#: server_privileges.php:1656 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -4807,49 +4849,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:1684 +#: server_privileges.php:1704 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:1724 +#: server_privileges.php:1744 msgid "Column-specific privileges" msgstr "Privilégios específicos da Coluna" -#: server_privileges.php:1925 +#: server_privileges.php:1945 msgid "Add privileges on the following database" msgstr "Adicionar privilégios na base de dados seguinte" -#: server_privileges.php:1943 +#: server_privileges.php:1963 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" -#: server_privileges.php:1946 +#: server_privileges.php:1966 msgid "Add privileges on the following table" msgstr "Todos privilégios na tabela seguinte" -#: server_privileges.php:2003 +#: server_privileges.php:2023 msgid "Change Login Information / Copy User" msgstr "Mudar a informação de login / Copiar Utilizador" -#: server_privileges.php:2006 +#: server_privileges.php:2026 msgid "Create a new user with the same privileges and ..." msgstr "Criar um novo utilizador com os mesmo privilégios e ..." -#: server_privileges.php:2008 +#: server_privileges.php:2028 msgid "... keep the old one." msgstr "... manter o antigo." -#: server_privileges.php:2009 +#: server_privileges.php:2029 msgid " ... delete the old one from the user tables." msgstr " ... apagar o antigo das tabelas do utilizador." -#: server_privileges.php:2010 +#: server_privileges.php:2030 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:2011 +#: server_privileges.php:2031 msgid "" " ... delete the old one from the user tables and reload the privileges " "afterwards." @@ -4857,44 +4899,44 @@ msgstr "" " ... apagar o antigo das tabelas do utilizador e depois recarregue os " "privilégios." -#: server_privileges.php:2033 +#: server_privileges.php:2054 msgid "Database for user" msgstr "" -#: server_privileges.php:2037 +#: server_privileges.php:2058 #, fuzzy #| msgid "None" msgctxt "Create none database for user" msgid "None" msgstr "Nenhum" -#: server_privileges.php:2038 +#: server_privileges.php:2059 msgid "Create database with same name and grant all privileges" msgstr "" -#: server_privileges.php:2039 +#: server_privileges.php:2060 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "" -#: server_privileges.php:2042 +#: server_privileges.php:2063 #, fuzzy, php-format msgid "Grant all privileges on database "%s"" msgstr "Verificar Privilégios para a Base de Dados "%s"." -#: server_privileges.php:2065 +#: server_privileges.php:2086 #, php-format msgid "Users having access to "%s"" msgstr "Utilizadores que tem acesso a "%s"" -#: server_privileges.php:2173 +#: server_privileges.php:2194 msgid "global" msgstr "global" -#: server_privileges.php:2175 +#: server_privileges.php:2196 msgid "database-specific" msgstr "Especifico da Base de Dados" -#: server_privileges.php:2177 +#: server_privileges.php:2198 msgid "wildcard" msgstr "" @@ -7600,6 +7642,10 @@ msgstr "" msgid "Show insert query" msgstr "" +#: tbl_change.php:1143 +msgid "and then" +msgstr "" + #: tbl_change.php:1147 msgid "Go back to previous page" msgstr "Voltar atrás" @@ -7681,7 +7727,7 @@ msgstr "" msgid "Add to index  %s column(s)" msgstr "Adicionar ao índice  %s coluna(s)" -#: tbl_indexes.php:256 tbl_structure.php:589 tbl_structure.php:600 +#: tbl_indexes.php:256 tbl_structure.php:587 tbl_structure.php:598 msgid "Column count has to be larger than zero." msgstr "" @@ -7798,39 +7844,39 @@ msgstr "Verificar Integridade referencial:" msgid "Show tables" msgstr "Mostra tabelas" -#: tbl_printview.php:310 tbl_structure.php:656 +#: tbl_printview.php:310 tbl_structure.php:654 msgid "Space usage" msgstr "Espaço ocupado" -#: tbl_printview.php:314 tbl_structure.php:660 +#: tbl_printview.php:314 tbl_structure.php:658 msgid "Usage" msgstr "Utilização" -#: tbl_printview.php:341 tbl_structure.php:687 +#: tbl_printview.php:341 tbl_structure.php:685 msgid "Effective" msgstr "Em uso" -#: tbl_printview.php:366 tbl_structure.php:725 +#: tbl_printview.php:366 tbl_structure.php:723 msgid "Row Statistics" msgstr "Estatísticas dos registos" -#: tbl_printview.php:369 tbl_structure.php:728 +#: tbl_printview.php:369 tbl_structure.php:726 msgid "Statements" msgstr "Itens" -#: tbl_printview.php:380 tbl_structure.php:740 +#: tbl_printview.php:380 tbl_structure.php:738 msgid "static" msgstr "" -#: tbl_printview.php:382 tbl_structure.php:742 +#: tbl_printview.php:382 tbl_structure.php:740 msgid "dynamic" msgstr "dinâmico" -#: tbl_printview.php:404 tbl_structure.php:785 +#: tbl_printview.php:404 tbl_structure.php:783 msgid "Row length" msgstr "Comprim. dos reg." -#: tbl_printview.php:414 tbl_structure.php:793 +#: tbl_printview.php:414 tbl_structure.php:791 msgid " Row size " msgstr " Tamanho dos reg." @@ -7903,49 +7949,49 @@ msgstr "Nenhum" msgid "Column %s has been dropped" msgstr "A tabela %s foi eliminada" -#: tbl_structure.php:385 +#: tbl_structure.php:384 #, php-format msgid "A primary key has been added on %s" msgstr "Uma chave primária foi adicionada a %s" -#: tbl_structure.php:400 tbl_structure.php:414 tbl_structure.php:428 +#: tbl_structure.php:398 tbl_structure.php:412 tbl_structure.php:426 #, php-format msgid "An index has been added on %s" msgstr "Um índice foi adicionado a %s" -#: tbl_structure.php:506 tbl_structure.php:508 +#: tbl_structure.php:504 tbl_structure.php:506 msgid "Relation view" msgstr "Vista de Relação" -#: tbl_structure.php:515 tbl_structure.php:517 +#: tbl_structure.php:513 tbl_structure.php:515 msgid "Propose table structure" msgstr "Propor uma estrutura de tabela" -#: tbl_structure.php:540 +#: tbl_structure.php:538 #, fuzzy msgid "Add column" msgstr "Adiciona novo campo" -#: tbl_structure.php:554 +#: tbl_structure.php:552 msgid "At End of Table" msgstr "No Fim da Tabela" -#: tbl_structure.php:555 +#: tbl_structure.php:553 msgid "At Beginning of Table" msgstr "No Início da Tabela" -#: tbl_structure.php:556 +#: tbl_structure.php:554 #, php-format msgid "After %s" msgstr "Depois %s" -#: tbl_structure.php:594 +#: tbl_structure.php:592 #, fuzzy, php-format #| msgid "Create an index on %s columns" msgid "Create an index on  %s columns" msgstr "Criar um índice com %s coluna(s)" -#: tbl_structure.php:756 +#: tbl_structure.php:754 msgid "partitioned" msgstr "" @@ -8335,10 +8381,6 @@ msgstr "Renomeia a tabela para " #~ msgid "Process list" #~ msgstr "Lista de Processos" -#, fuzzy -#~ msgid "Reload privileges" -#~ msgstr "Privilégios Globais" - #~ msgid "" #~ "The users will still have the USAGE privilege until the privileges are " #~ "reloaded." diff --git a/po/pt_BR.po b/po/pt_BR.po index d4596bada..7954d6f9b 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-13 09:03-0400\n" +"POT-Creation-Date: 2010-06-22 00:55+0530\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:1514 +#: libraries/display_tbl.lib.php:417 server_privileges.php:1534 msgid "Show all" msgstr "Mostrar todos" -#: browse_foreigners.php:82 libraries/common.lib.php:2313 +#: browse_foreigners.php:82 libraries/common.lib.php:2317 #: 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,18 +38,18 @@ 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:2831 -#: libraries/common.lib.php:2838 libraries/db_links.inc.php:75 +#: db_structure.php:106 libraries/common.lib.php:2835 +#: libraries/common.lib.php:2842 libraries/db_links.inc.php:75 #: libraries/tbl_links.inc.php:63 msgid "Search" msgstr "Procurar" -#: browse_foreigners.php:153 db_operations.php:385 db_operations.php:429 -#: db_operations.php:499 db_operations.php:609 db_search.php:362 -#: db_structure.php:567 js/messages.php:48 libraries/Config.class.php:1046 +#: browse_foreigners.php:153 db_operations.php:394 db_operations.php:438 +#: db_operations.php:508 db_operations.php:618 db_search.php:362 +#: db_structure.php:565 js/messages.php:53 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:1335 libraries/common.lib.php:2288 +#: libraries/common.lib.php:1335 libraries/common.lib.php:2292 #: 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,15 +60,15 @@ 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:664 server_privileges.php:1624 -#: server_privileges.php:1971 server_privileges.php:2018 -#: server_privileges.php:2057 server_replication.php:235 +#: server_privileges.php:665 server_privileges.php:1644 +#: server_privileges.php:1991 server_privileges.php:2038 +#: server_privileges.php:2078 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 #: tbl_operations.php:302 tbl_operations.php:499 tbl_operations.php:561 -#: tbl_operations.php:681 tbl_select.php:327 tbl_structure.php:562 -#: tbl_structure.php:597 tbl_tracking.php:395 tbl_tracking.php:512 +#: tbl_operations.php:681 tbl_select.php:327 tbl_structure.php:560 +#: tbl_structure.php:595 tbl_tracking.php:395 tbl_tracking.php:512 #: view_create.php:182 view_operations.php:101 msgid "Go" msgstr "Executar" @@ -94,7 +94,7 @@ msgstr "Usar este valor" msgid "Database %1$s has been created." msgstr "Banco de dados %1$s foi criado." -#: db_datadict.php:49 db_operations.php:378 +#: db_datadict.php:49 db_operations.php:387 msgid "Database comment: " msgstr "Comentário do Banco de Dados: " @@ -121,10 +121,10 @@ 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:2070 +#: pdf_schema.php:1263 pdf_schema.php:1284 server_privileges.php:2091 #: 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 +#: tbl_structure.php:657 tbl_tracking.php:274 tbl_tracking.php:321 msgid "Type" msgstr "Tipo" @@ -137,7 +137,7 @@ msgstr "Tipo" msgid "Null" msgstr "Nulo" -#: db_datadict.php:178 db_structure.php:501 libraries/export/htmlword.php:247 +#: db_datadict.php:178 db_structure.php:499 libraries/export/htmlword.php:247 #: libraries/export/latex.php:360 libraries/export/odt.php:303 #: libraries/export/texytext.php:236 libraries/tbl_properties.inc.php:106 #: pdf_schema.php:1266 pdf_schema.php:1287 tbl_printview.php:146 @@ -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: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 +#: pdf_schema.php:1344 server_privileges.php:1588 server_privileges.php:1599 +#: server_privileges.php:1909 server_privileges.php:1914 +#: server_privileges.php:2208 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:1565 -#: server_privileges.php:1579 server_privileges.php:1889 -#: server_privileges.php:1892 server_privileges.php:2187 sql.php:193 +#: server_databases.php:64 server_privileges.php:1585 +#: server_privileges.php:1599 server_privileges.php:1909 +#: server_privileges.php:1912 server_privileges.php:2208 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" @@ -210,125 +210,121 @@ msgstr "Selecionar Todos" msgid "Unselect All" msgstr "Desmarcar Todos" -#: db_operations.php:38 tbl_create.php:54 +#: db_operations.php:43 tbl_create.php:54 msgid "The database name is empty!" msgstr "O nome do Banco de Dados está em branco!" -#: db_operations.php:236 +#: db_operations.php:241 #, php-format msgid "Database %s has been renamed to %s" msgstr "O Banco de Dados %s foi renomeado para %s" -#: db_operations.php:240 +#: db_operations.php:245 #, php-format msgid "Database %s has been copied to %s" msgstr "Banco de Dados %s copiado para %s" -#: db_operations.php:412 +#: db_operations.php:421 msgid "Rename database to" msgstr "Renomear Banco de Dados para" -#: db_operations.php:417 server_processlist.php:57 +#: db_operations.php:426 server_processlist.php:57 msgid "Command" msgstr "Comando" -#: db_operations.php:429 tbl_change.php:1143 -msgid "and then" -msgstr "e então" - -#: db_operations.php:455 +#: db_operations.php:464 msgid "Copy database to" msgstr "Copiar Banco de Dados para" -#: db_operations.php:462 tbl_operations.php:528 tbl_tracking.php:388 +#: db_operations.php:471 tbl_operations.php:528 tbl_tracking.php:388 msgid "Structure only" msgstr "Somente estrutura" -#: db_operations.php:463 tbl_operations.php:529 tbl_tracking.php:390 +#: db_operations.php:472 tbl_operations.php:529 tbl_tracking.php:390 msgid "Structure and data" msgstr "Estrutura e dados" -#: db_operations.php:464 tbl_operations.php:530 tbl_tracking.php:389 +#: db_operations.php:473 tbl_operations.php:530 tbl_tracking.php:389 msgid "Data only" msgstr "Dados apenas" -#: db_operations.php:472 +#: db_operations.php:481 msgid "CREATE DATABASE before copying" msgstr "CREATE DATABASE antes de copiar" -#: db_operations.php:475 libraries/export/sql.php:52 +#: db_operations.php:484 libraries/export/sql.php:52 #: libraries/export/sql.php:74 libraries/export/sql.php:76 #: libraries/export/sql.php:82 tbl_operations.php:536 #, php-format msgid "Add %s" msgstr "Adicionar %s" -#: db_operations.php:479 libraries/export/sql.php:78 tbl_operations.php:299 +#: db_operations.php:488 libraries/export/sql.php:78 tbl_operations.php:299 #: tbl_operations.php:538 msgid "Add AUTO_INCREMENT value" msgstr "Adicionar valor AUTO_INCREMENT" -#: db_operations.php:483 tbl_operations.php:545 +#: db_operations.php:492 tbl_operations.php:545 msgid "Add constraints" msgstr "Adicionar restrições" -#: db_operations.php:496 +#: db_operations.php:505 msgid "Switch to copied database" msgstr "Mudar para o Banco de Dados copiado" -#: db_operations.php:537 +#: db_operations.php:546 msgid "BLOB Repository" msgstr "" -#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1352 -#: libraries/server_links.inc.php:49 server_processlist.php:59 +#: db_operations.php:549 db_tracking.php:76 libraries/common.lib.php:1352 +#: libraries/server_links.inc.php:50 server_processlist.php:59 #: tbl_tracking.php:596 test/theme.php:101 msgid "Status" msgstr "Status" -#: db_operations.php:548 +#: db_operations.php:557 #, fuzzy #| msgid "Enabled" msgctxt "BLOB repository" msgid "Enabled" msgstr "Habilitado" -#: db_operations.php:552 +#: db_operations.php:561 msgid "Disable" msgstr "Desabilitar" -#: db_operations.php:562 +#: db_operations.php:571 msgid "Damaged" msgstr "" -#: db_operations.php:566 +#: db_operations.php:575 #, fuzzy #| msgid "Repair" msgctxt "BLOB repository" msgid "Repair" msgstr "Reparar" -#: db_operations.php:574 +#: db_operations.php:583 #, fuzzy #| msgid "Disabled" msgctxt "BLOB repository" msgid "Disabled" msgstr "Desabilitado" -#: db_operations.php:578 +#: db_operations.php:587 msgid "Enable" msgstr "Habilitar" -#: db_operations.php:602 libraries/Index.class.php:448 +#: db_operations.php:611 libraries/Index.class.php:448 #: libraries/db_structure.lib.php:62 libraries/mysql_charsets.lib.php:107 #: libraries/tbl_properties.inc.php:107 libraries/tbl_properties.inc.php:730 #: server_collations.php:54 server_collations.php:66 server_databases.php:111 #: tbl_operations.php:363 tbl_select.php:137 tbl_structure.php:179 -#: tbl_structure.php:767 tbl_tracking.php:275 tbl_tracking.php:326 +#: tbl_structure.php:765 tbl_tracking.php:275 tbl_tracking.php:326 msgid "Collation" msgstr "Collation" -#: db_operations.php:615 main.php:316 pdf_schema.php:34 +#: db_operations.php:624 main.php:316 pdf_schema.php:34 #, php-format msgid "" "The additional features for working with linked tables have been " @@ -337,14 +333,14 @@ msgstr "" "Os recursos adicionais para trabalhar com tabelas linkadas foram " "desativadas. Para descobrir o motivo clique %saqui%s." -#: db_operations.php:648 +#: db_operations.php:657 msgid "Edit PDF Pages" 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:1665 -#: server_privileges.php:1721 server_privileges.php:1985 +#: libraries/header.inc.php:130 pdf_pages.php:424 server_privileges.php:1685 +#: server_privileges.php:1741 server_privileges.php:2005 #: server_synchronize.php:423 server_synchronize.php:866 tbl_tracking.php:592 #: test/theme.php:75 msgid "Table" @@ -353,7 +349,7 @@ msgstr "Tabela" #: db_printview.php:105 libraries/db_structure.lib.php:56 #: libraries/header_printview.inc.php:63 libraries/import.lib.php:146 #: navigation.php:638 navigation.php:660 server_databases.php:122 -#: tbl_printview.php:394 tbl_structure.php:365 tbl_structure.php:777 +#: tbl_printview.php:394 tbl_structure.php:365 tbl_structure.php:775 msgid "Rows" msgstr "Registros" @@ -361,30 +357,30 @@ msgstr "Registros" msgid "Size" msgstr "Tamanho" -#: db_printview.php:162 db_structure.php:457 libraries/export/sql.php:559 +#: db_printview.php:162 db_structure.php:455 libraries/export/sql.php:559 #: libraries/export/sql.php:899 msgid "in use" msgstr "em uso" #: db_printview.php:187 libraries/db_info.inc.php:88 #: libraries/export/sql.php:514 pdf_schema.php:1241 tbl_printview.php:434 -#: tbl_structure.php:809 +#: tbl_structure.php:807 msgid "Creation" msgstr "Criação" #: db_printview.php:196 libraries/db_info.inc.php:93 #: libraries/export/sql.php:519 pdf_schema.php:1246 tbl_printview.php:444 -#: tbl_structure.php:817 +#: tbl_structure.php:815 msgid "Last update" msgstr "Última atualização" #: db_printview.php:205 libraries/db_info.inc.php:98 #: libraries/export/sql.php:524 pdf_schema.php:1251 tbl_printview.php:454 -#: tbl_structure.php:825 +#: tbl_structure.php:823 msgid "Last check" msgstr "Última verificação" -#: db_printview.php:222 db_structure.php:480 +#: db_printview.php:222 db_structure.php:478 #, fuzzy, php-format #| msgid "%s table(s)" msgid "%s table" @@ -445,7 +441,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:297 tbl_change.php:1031 tbl_indexes.php:250 +#: server_privileges.php:298 tbl_change.php:1031 tbl_indexes.php:250 #: tbl_select.php:288 msgid "Or" msgstr "Ou" @@ -518,9 +514,9 @@ 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:2833 +#: db_structure.php:105 libraries/common.lib.php:2837 #: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50 -#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:467 +#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:465 msgid "Browse" msgstr "Visualizar" @@ -565,36 +561,36 @@ 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:2832 libraries/sql_query_form.lib.php:334 +#: libraries/common.lib.php:2836 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:2829 libraries/common.lib.php:2836 +#: libraries/common.lib.php:2833 libraries/common.lib.php:2840 #: 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:1106 #: libraries/tbl_links.inc.php:56 pmd_general.php:134 -#: server_privileges.php:593 server_replication.php:315 tbl_tracking.php:269 +#: server_privileges.php:594 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:1656 +#: db_structure.php:543 db_structure.php:544 db_tracking.php:91 +#: libraries/Index.class.php:483 libraries/common.lib.php:1657 #: 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 -#: tbl_structure.php:152 tbl_structure.php:471 +#: tbl_structure.php:152 tbl_structure.php:469 msgid "Drop" 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:1655 +#: db_structure.php:541 db_structure.php:542 libraries/common.lib.php:1656 #: libraries/mult_submits.inc.php:39 libraries/tbl_links.inc.php:105 msgid "Empty" msgstr "Limpar" @@ -604,111 +600,111 @@ msgstr "Limpar" msgid "Table %s has been emptied" msgstr "Tabela %s foi esvaziada" -#: db_structure.php:326 libraries/tbl_links.inc.php:133 +#: db_structure.php:325 libraries/tbl_links.inc.php:133 #, php-format msgid "View %s has been dropped" msgstr "Visão %s foi apagada" -#: db_structure.php:326 libraries/tbl_links.inc.php:133 +#: db_structure.php:325 libraries/tbl_links.inc.php:133 #, php-format msgid "Table %s has been dropped" msgstr "Tabela %s foi eliminada" -#: db_structure.php:333 +#: db_structure.php:332 msgid "Tracking is active." msgstr "" -#: db_structure.php:335 +#: db_structure.php:334 msgid "Tracking is not active." msgstr "" -#: db_structure.php:420 libraries/display_tbl.lib.php:1944 +#: db_structure.php:418 libraries/display_tbl.lib.php:1944 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation%" "s." msgstr "" -#: db_structure.php:434 db_structure.php:448 libraries/header.inc.php:126 +#: db_structure.php:432 db_structure.php:446 libraries/header.inc.php:130 #: libraries/tbl_info.inc.php:66 tbl_structure.php:185 test/theme.php:74 msgid "View" msgstr "Visão" -#: db_structure.php:485 libraries/db_structure.lib.php:49 -#: libraries/server_links.inc.php:70 server_replication.php:33 +#: db_structure.php:483 libraries/db_structure.lib.php:49 +#: libraries/server_links.inc.php:71 server_replication.php:33 #: server_replication.php:164 server_status.php:369 msgid "Replication" msgstr "Replicação" -#: db_structure.php:489 +#: db_structure.php:487 msgid "Sum" msgstr "Soma" -#: db_structure.php:496 libraries/StorageEngine.class.php:356 +#: db_structure.php:494 libraries/StorageEngine.class.php:356 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "%s é o stored engine padrão neste servidor MySQL." -#: db_structure.php:524 db_structure.php:541 db_structure.php:542 +#: db_structure.php:522 db_structure.php:539 db_structure.php:540 #: 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:1596 tbl_structure.php:455 -#: tbl_structure.php:464 +#: server_databases.php:351 server_privileges.php:1616 tbl_structure.php:453 +#: tbl_structure.php:462 msgid "With selected:" msgstr "Com marcados:" -#: db_structure.php:527 libraries/display_tbl.lib.php:2076 -#: server_databases.php:348 server_privileges.php:569 -#: server_privileges.php:1599 tbl_structure.php:458 +#: db_structure.php:525 libraries/display_tbl.lib.php:2076 +#: server_databases.php:348 server_privileges.php:570 +#: server_privileges.php:1619 tbl_structure.php:456 msgid "Check All" msgstr "Marcar todos" -#: db_structure.php:531 libraries/display_tbl.lib.php:2077 +#: db_structure.php:529 libraries/display_tbl.lib.php:2077 #: libraries/replication_gui.lib.php:33 server_databases.php:350 -#: server_privileges.php:572 server_privileges.php:1603 tbl_structure.php:462 +#: server_privileges.php:573 server_privileges.php:1623 tbl_structure.php:460 msgid "Uncheck All" msgstr "Desmarcar todos" -#: db_structure.php:536 +#: db_structure.php:534 msgid "Check tables having overhead" msgstr "Verificar sobre-carga" -#: db_structure.php:547 db_structure.php:548 db_structure.php:599 +#: db_structure.php:545 db_structure.php:546 db_structure.php:597 #: libraries/display_tbl.lib.php:2180 libraries/mult_submits.inc.php:28 -#: tbl_structure.php:492 tbl_structure.php:494 +#: tbl_structure.php:490 tbl_structure.php:492 msgid "Print view" msgstr "Visualização para impressão" -#: db_structure.php:549 db_structure.php:550 libraries/mult_submits.inc.php:42 +#: db_structure.php:547 db_structure.php:548 libraries/mult_submits.inc.php:42 #: tbl_operations.php:581 msgid "Check table" msgstr "Verificar tabela" -#: db_structure.php:551 db_structure.php:552 libraries/mult_submits.inc.php:47 -#: tbl_operations.php:621 tbl_structure.php:709 tbl_structure.php:711 +#: db_structure.php:549 db_structure.php:550 libraries/mult_submits.inc.php:47 +#: tbl_operations.php:621 tbl_structure.php:707 tbl_structure.php:709 msgid "Optimize table" msgstr "Otimizar tabela" -#: db_structure.php:553 db_structure.php:554 libraries/mult_submits.inc.php:52 +#: db_structure.php:551 db_structure.php:552 libraries/mult_submits.inc.php:52 #: tbl_operations.php:611 msgid "Repair table" msgstr "Reparar tabela" -#: db_structure.php:555 db_structure.php:556 libraries/mult_submits.inc.php:57 +#: db_structure.php:553 db_structure.php:554 libraries/mult_submits.inc.php:57 #: tbl_operations.php:601 msgid "Analyze table" msgstr "Analizar tabela" -#: db_structure.php:557 db_structure.php:558 libraries/db_links.inc.php:71 +#: db_structure.php:555 db_structure.php:556 libraries/db_links.inc.php:71 #: 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:1380 +#: libraries/server_links.inc.php:85 libraries/tbl_links.inc.php:82 +#: pmd_pdf.php:84 pmd_pdf.php:109 server_privileges.php:1397 #: setup/frames/menu.inc.php:22 tbl_row_action.php:59 msgid "Export" msgstr "Exportar" -#: db_structure.php:606 libraries/display_pdf_schema.lib.php:44 +#: db_structure.php:604 libraries/display_pdf_schema.lib.php:44 msgid "Data Dictionary" msgstr "Dicionário de dados" @@ -720,10 +716,10 @@ msgstr "Verificar tabela" #: db_tracking.php:71 libraries/export/htmlword.php:86 #: libraries/export/latex.php:148 libraries/export/odt.php:113 #: libraries/export/sql.php:342 libraries/export/texytext.php:84 -#: libraries/export/xml.php:255 libraries/header.inc.php:106 +#: libraries/export/xml.php:255 libraries/header.inc.php:110 #: libraries/header_printview.inc.php:58 server_databases.php:169 -#: server_privileges.php:1660 server_privileges.php:1721 -#: server_privileges.php:1979 server_processlist.php:56 +#: server_privileges.php:1680 server_privileges.php:1741 +#: server_privileges.php:1999 server_processlist.php:56 #: server_synchronize.php:1179 server_synchronize.php:1183 #: tbl_tracking.php:591 test/theme.php:65 msgid "Database" @@ -745,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:1542 server_privileges.php:1725 -#: server_privileges.php:2073 tbl_structure.php:187 +#: server_privileges.php:1562 server_privileges.php:1745 +#: server_privileges.php:2094 tbl_structure.php:187 msgid "Action" msgstr "Ação" @@ -783,8 +779,8 @@ msgstr "Somente estrutura" msgid "Untracked tables" msgstr "Verificar tabela" -#: db_tracking.php:172 db_tracking.php:174 tbl_structure.php:528 -#: tbl_structure.php:530 +#: db_tracking.php:172 db_tracking.php:174 tbl_structure.php:526 +#: tbl_structure.php:528 #, fuzzy msgid "Track table" msgstr "Verificar tabela" @@ -954,186 +950,233 @@ 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:1236 user_password.php:70 +#: js/messages.php:44 server_privileges.php:1241 user_password.php:70 msgid "The password is empty!" msgstr "A senhas está em branco!" -#: js/messages.php:45 server_privileges.php:1234 user_password.php:73 +#: js/messages.php:45 server_privileges.php:1239 user_password.php:73 msgid "The passwords aren't the same!" msgstr "As senhas não são iguais!" -#: js/messages.php:49 pmd_general.php:342 pmd_general.php:379 +#: js/messages.php:46 +#, fuzzy +#| msgid "Add a new User" +msgid "Add a New User" +msgstr "Adicionar novo usuário" + +#: js/messages.php:47 js/messages.php:54 pmd_general.php:342 +#: pmd_general.php:379 msgid "Cancel" msgstr "Cancelar" -#: js/messages.php:52 pmd_save_pos.php:54 +#: js/messages.php:48 +#, fuzzy +msgid "Create User" +msgstr "Criar relacionamento" + +#: js/messages.php:49 +#, fuzzy +#| msgid "Reload privileges" +msgid "Reloading Privileges" +msgstr "Recarregar privilégios" + +#: js/messages.php:50 +#, fuzzy +#| msgid "Remove selected users" +msgid "Removing Selected Users" +msgstr "Remover os usuários selecionados" + +#: js/messages.php:57 +#, fuzzy +msgid "Loading" +msgstr "Local" + +#: js/messages.php:58 +#, fuzzy +#| msgid "Processes" +msgid "Processing Request" +msgstr "Processos" + +#: js/messages.php:59 +msgid "Error in Processing Request" +msgstr "" + +#: js/messages.php:60 +msgid "Dropping Column" +msgstr "" + +#: js/messages.php:61 +msgid "Adding Primary Key" +msgstr "" + +#: js/messages.php:64 pmd_save_pos.php:54 msgid "Modifications have been saved" msgstr "Modificações foram salvas" -#: js/messages.php:53 pmd_relation_upd.php:49 +#: js/messages.php:65 pmd_relation_upd.php:49 msgid "Relation deleted" msgstr "Relacionamento apagado" -#: js/messages.php:54 pmd_relation_new.php:64 +#: js/messages.php:66 pmd_relation_new.php:64 msgid "FOREIGN KEY relation added" msgstr "" -#: js/messages.php:55 pmd_relation_new.php:86 +#: js/messages.php:67 pmd_relation_new.php:86 msgid "Internal relation added" msgstr "Adicionado relacionamento Interno" -#: js/messages.php:56 pmd_relation_new.php:63 pmd_relation_new.php:88 +#: js/messages.php:68 pmd_relation_new.php:63 pmd_relation_new.php:88 msgid "Error: Relation not added." msgstr "Erro: relacionamento não adicionado." -#: js/messages.php:57 pmd_relation_new.php:31 +#: js/messages.php:69 pmd_relation_new.php:31 msgid "Error: relation already exists." msgstr "Erro: relacionamento já existe." -#: js/messages.php:58 +#: js/messages.php:70 msgid "Error saving coordinates for Designer." msgstr "Erro ao salvar coordenada para o Designer." -#: js/messages.php:59 libraries/relation.lib.php:107 +#: js/messages.php:71 libraries/relation.lib.php:107 #: libraries/relation.lib.php:119 msgid "General relation features" msgstr "Recursos de relações gerais" -#: js/messages.php:59 libraries/relation.lib.php:101 +#: js/messages.php:71 libraries/relation.lib.php:101 #: libraries/relation.lib.php:108 msgid "Disabled" msgstr "Desabilitado" -#: js/messages.php:60 +#: js/messages.php:72 msgid "Select referenced key" msgstr "Seleciona chave referenciada" -#: js/messages.php:61 +#: js/messages.php:73 msgid "Select Foreign Key" msgstr "Selecionar Chave Estrangeira" -#: js/messages.php:62 +#: js/messages.php:74 msgid "Please select the primary key or a unique key" msgstr "Por favor, selecione uma chave primária ou uma chave única" -#: js/messages.php:63 pmd_general.php:77 tbl_relation.php:548 +#: js/messages.php:75 pmd_general.php:77 tbl_relation.php:548 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" msgstr "Escolha o campo para exibir" #. l10n: Display text for calendar close link -#: js/messages.php:73 +#: js/messages.php:85 #, fuzzy msgid "Done" msgstr "Dados" #. l10n: Display text for previous month link in calendar -#: js/messages.php:75 +#: js/messages.php:87 #, fuzzy #| msgid "Previous" msgid "Prev" msgstr "Anterior" #. l10n: Display text for next month link in calendar -#: js/messages.php:77 libraries/common.lib.php:2353 -#: libraries/common.lib.php:2356 libraries/display_tbl.lib.php:338 +#: js/messages.php:89 libraries/common.lib.php:2357 +#: libraries/common.lib.php:2360 libraries/display_tbl.lib.php:338 #: server_binlog.php:205 server_binlog.php:207 tbl_printview.php:424 -#: tbl_structure.php:801 +#: tbl_structure.php:799 msgid "Next" msgstr "Próximo" #. l10n: Display text for current month link in calendar -#: js/messages.php:79 +#: js/messages.php:91 #, fuzzy #| msgid "Total" msgid "Today" msgstr "Total" -#: js/messages.php:82 +#: js/messages.php:94 #, fuzzy #| msgid "Binary" msgid "January" msgstr " Binário " -#: js/messages.php:83 +#: js/messages.php:95 msgid "February" msgstr "" -#: js/messages.php:84 +#: js/messages.php:96 #, fuzzy #| msgid "Mar" msgid "March" msgstr "Mar" -#: js/messages.php:85 +#: js/messages.php:97 #, fuzzy #| msgid "Apr" msgid "April" msgstr "Abr" -#: js/messages.php:86 +#: js/messages.php:98 msgid "May" msgstr "Mai" -#: js/messages.php:87 +#: js/messages.php:99 #, fuzzy #| msgid "Jun" msgid "June" msgstr "Jun" -#: js/messages.php:88 +#: js/messages.php:100 #, fuzzy #| msgid "Jul" msgid "July" msgstr "Jul" -#: js/messages.php:89 +#: js/messages.php:101 #, fuzzy #| msgid "Aug" msgid "August" msgstr "Ago" -#: js/messages.php:90 +#: js/messages.php:102 msgid "September" msgstr "" -#: js/messages.php:91 +#: js/messages.php:103 #, fuzzy #| msgid "Oct" msgid "October" msgstr "Out" -#: js/messages.php:92 +#: js/messages.php:104 msgid "November" msgstr "" -#: js/messages.php:93 +#: js/messages.php:105 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:97 libraries/common.lib.php:1557 +#: js/messages.php:109 libraries/common.lib.php:1557 msgid "Jan" msgstr "Jan" #. l10n: Short month name -#: js/messages.php:99 libraries/common.lib.php:1559 +#: js/messages.php:111 libraries/common.lib.php:1559 msgid "Feb" msgstr "Fev" #. l10n: Short month name -#: js/messages.php:101 libraries/common.lib.php:1561 +#: js/messages.php:113 libraries/common.lib.php:1561 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:103 libraries/common.lib.php:1563 +#: js/messages.php:115 libraries/common.lib.php:1563 msgid "Apr" msgstr "Abr" #. l10n: Short month name -#: js/messages.php:105 libraries/common.lib.php:1565 +#: js/messages.php:117 libraries/common.lib.php:1565 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1141,176 +1184,176 @@ msgid "May" msgstr "Mai" #. l10n: Short month name -#: js/messages.php:107 libraries/common.lib.php:1567 +#: js/messages.php:119 libraries/common.lib.php:1567 msgid "Jun" msgstr "Jun" #. l10n: Short month name -#: js/messages.php:109 libraries/common.lib.php:1569 +#: js/messages.php:121 libraries/common.lib.php:1569 msgid "Jul" msgstr "Jul" #. l10n: Short month name -#: js/messages.php:111 libraries/common.lib.php:1571 +#: js/messages.php:123 libraries/common.lib.php:1571 msgid "Aug" msgstr "Ago" #. l10n: Short month name -#: js/messages.php:113 libraries/common.lib.php:1573 +#: js/messages.php:125 libraries/common.lib.php:1573 msgid "Sep" msgstr "Set" #. l10n: Short month name -#: js/messages.php:115 libraries/common.lib.php:1575 +#: js/messages.php:127 libraries/common.lib.php:1575 msgid "Oct" msgstr "Out" #. l10n: Short month name -#: js/messages.php:117 libraries/common.lib.php:1577 +#: js/messages.php:129 libraries/common.lib.php:1577 msgid "Nov" msgstr "Nov" #. l10n: Short month name -#: js/messages.php:119 libraries/common.lib.php:1579 +#: js/messages.php:131 libraries/common.lib.php:1579 msgid "Dec" msgstr "Dez" -#: js/messages.php:122 +#: js/messages.php:134 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "Dom" -#: js/messages.php:123 +#: js/messages.php:135 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "Seg" -#: js/messages.php:124 +#: js/messages.php:136 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "Ter" -#: js/messages.php:125 +#: js/messages.php:137 msgid "Wednesday" msgstr "" -#: js/messages.php:126 +#: js/messages.php:138 msgid "Thursday" msgstr "" -#: js/messages.php:127 +#: js/messages.php:139 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "Sex" -#: js/messages.php:128 +#: js/messages.php:140 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:132 libraries/common.lib.php:1582 +#: js/messages.php:144 libraries/common.lib.php:1582 msgid "Sun" msgstr "Dom" #. l10n: Short week day name -#: js/messages.php:134 libraries/common.lib.php:1584 +#: js/messages.php:146 libraries/common.lib.php:1584 msgid "Mon" msgstr "Seg" #. l10n: Short week day name -#: js/messages.php:136 libraries/common.lib.php:1586 +#: js/messages.php:148 libraries/common.lib.php:1586 msgid "Tue" msgstr "Ter" #. l10n: Short week day name -#: js/messages.php:138 libraries/common.lib.php:1588 +#: js/messages.php:150 libraries/common.lib.php:1588 msgid "Wed" msgstr "Qua" #. l10n: Short week day name -#: js/messages.php:140 libraries/common.lib.php:1590 +#: js/messages.php:152 libraries/common.lib.php:1590 msgid "Thu" msgstr "Qui" #. l10n: Short week day name -#: js/messages.php:142 libraries/common.lib.php:1592 +#: js/messages.php:154 libraries/common.lib.php:1592 msgid "Fri" msgstr "Sex" #. l10n: Short week day name -#: js/messages.php:144 libraries/common.lib.php:1594 +#: js/messages.php:156 libraries/common.lib.php:1594 msgid "Sat" msgstr "Sab" #. l10n: Minimal week day name -#: js/messages.php:148 +#: js/messages.php:160 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "Dom" #. l10n: Minimal week day name -#: js/messages.php:150 +#: js/messages.php:162 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "Seg" #. l10n: Minimal week day name -#: js/messages.php:152 +#: js/messages.php:164 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "Ter" #. l10n: Minimal week day name -#: js/messages.php:154 +#: js/messages.php:166 #, fuzzy #| msgid "Wed" msgid "We" msgstr "Qua" #. l10n: Minimal week day name -#: js/messages.php:156 +#: js/messages.php:168 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "Qui" #. l10n: Minimal week day name -#: js/messages.php:158 +#: js/messages.php:170 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "Sex" #. l10n: Minimal week day name -#: js/messages.php:160 +#: js/messages.php:172 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "Sab" #. l10n: Column header for week of the year in calendar -#: js/messages.php:162 +#: js/messages.php:174 msgid "Wk" msgstr "" -#: js/messages.php:164 +#: js/messages.php:176 msgid "Hour" msgstr "" -#: js/messages.php:165 +#: js/messages.php:177 #, fuzzy #| msgid "in use" msgid "Minute" msgstr "em uso" -#: js/messages.php:166 +#: js/messages.php:178 #, fuzzy #| msgid "per second" msgid "Second" @@ -1371,7 +1414,7 @@ msgstr "Índices" #: libraries/Index.class.php:444 libraries/mult_submits.inc.php:103 #: libraries/tbl_properties.inc.php:519 tbl_structure.php:33 -#: tbl_structure.php:155 tbl_structure.php:159 tbl_structure.php:474 +#: tbl_structure.php:155 tbl_structure.php:159 tbl_structure.php:472 #: tbl_tracking.php:322 msgid "Unique" msgstr "Único" @@ -1414,8 +1457,8 @@ msgstr "" "A indexação %1$s e %2$s parecem ser iguais ou uma delas pode ter sido " "removida." -#: libraries/List_Database.class.php:431 libraries/server_links.inc.php:41 -#: server_databases.php:88 server_privileges.php:1660 +#: libraries/List_Database.class.php:431 libraries/server_links.inc.php:42 +#: server_databases.php:88 server_privileges.php:1680 #: setup/lib/messages.inc.php:110 test/theme.php:93 msgid "Databases" msgstr "Banco de Dados" @@ -1588,7 +1631,7 @@ msgstr "Senha:" msgid "Server Choice" msgstr "Seleção do Servidor" -#: libraries/auth/cookie.auth.lib.php:320 libraries/header.inc.php:59 +#: libraries/auth/cookie.auth.lib.php:320 libraries/header.inc.php:63 msgid "Cookies must be enabled past this point." msgstr "Cookies devem estar ativos após este ponto." @@ -1670,7 +1713,7 @@ msgstr "" "recode_string enquanto a extensão reportar que está ligada. Confira a " "configuração do seu php." -#: libraries/common.inc.php:583 +#: libraries/common.inc.php:587 msgid "" "phpMyAdmin was unable to read your configuration file!
This might " "happen if PHP finds a parse error in it or PHP cannot find the file.
Se receber uma página em branco, está tudo certo." -#: libraries/common.inc.php:594 +#: libraries/common.inc.php:598 #, fuzzy, php-format #| msgid "Could not load default configuration from: \"%1$s\"" msgid "Could not load default configuration from: %1$s" msgstr "Não foi possível carregar configuração padrão de: \"%1$s\"" -#: libraries/common.inc.php:599 +#: libraries/common.inc.php:603 msgid "" "The $cfg['PmaAbsoluteUri'] directive MUST be set in your " "configuration file!" msgstr "A variável $cfg['PmaAbsoluteUri'] deve ser setada" -#: libraries/common.inc.php:629 +#: libraries/common.inc.php:633 #, fuzzy, php-format #| msgid "Invalid server index: \"%s\"" msgid "Invalid server index: %s" msgstr "Índice de servidor inválido: \"%s\"" -#: libraries/common.inc.php:636 +#: libraries/common.inc.php:640 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" "Nome de serivdor inválido para o servidor %1$s. Verifique suas configurações." -#: libraries/common.inc.php:645 libraries/header.inc.php:96 +#: libraries/common.inc.php:649 libraries/header.inc.php:100 #: libraries/select_server.lib.php:41 libraries/select_server.lib.php:47 #: main.php:185 test/theme.php:57 msgid "Server" msgstr "Servidor" -#: libraries/common.inc.php:823 +#: libraries/common.inc.php:827 msgid "Invalid authentication method set in configuration:" msgstr "Método de autenticação inválido informado nas configurações:" -#: libraries/common.inc.php:926 +#: libraries/common.inc.php:930 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Você deveria atualizar para %s %s ou posterior." @@ -1853,45 +1896,45 @@ msgstr "." msgid "%B %d, %Y at %I:%M %p" msgstr "%d/%m/%Y às %Hh%Mmin" -#: libraries/common.lib.php:1907 +#: libraries/common.lib.php:1911 #, 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:2322 libraries/common.lib.php:2325 +#: libraries/common.lib.php:2326 libraries/common.lib.php:2329 #: libraries/display_tbl.lib.php:290 server_status.php:719 msgid "Begin" msgstr "Início" -#: libraries/common.lib.php:2323 libraries/common.lib.php:2326 +#: libraries/common.lib.php:2327 libraries/common.lib.php:2330 #: libraries/display_tbl.lib.php:291 server_binlog.php:168 #: server_binlog.php:170 msgid "Previous" msgstr "Anterior" -#: libraries/common.lib.php:2354 libraries/common.lib.php:2357 +#: libraries/common.lib.php:2358 libraries/common.lib.php:2361 #: libraries/display_tbl.lib.php:353 msgid "End" msgstr "Fim" -#: libraries/common.lib.php:2430 +#: libraries/common.lib.php:2434 #, php-format msgid "Jump to database "%s"." msgstr "Ir para o Banco de Dados "%s"." -#: libraries/common.lib.php:2450 +#: libraries/common.lib.php:2454 #, 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:2830 libraries/common.lib.php:2837 +#: libraries/common.lib.php:2834 libraries/common.lib.php:2841 #: libraries/db_links.inc.php:68 libraries/export/sql.php:25 -#: libraries/import/sql.php:18 libraries/server_links.inc.php:45 +#: libraries/import/sql.php:18 libraries/server_links.inc.php:46 #: libraries/tbl_links.inc.php:60 querywindow.php:99 test/theme.php:97 msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2839 libraries/db_links.inc.php:104 +#: libraries/common.lib.php:2843 libraries/db_links.inc.php:104 #: libraries/tbl_links.inc.php:95 libraries/tbl_links.inc.php:117 #: view_operations.php:89 msgid "Operations" @@ -1938,15 +1981,15 @@ msgstr "Procurar por exemplo" msgid "Designer" msgstr "Designer" -#: libraries/db_links.inc.php:98 libraries/server_links.inc.php:88 +#: libraries/db_links.inc.php:98 libraries/server_links.inc.php:89 #: libraries/tbl_links.inc.php:91 pmd_pdf.php:84 pmd_pdf.php:110 #: setup/frames/menu.inc.php:21 msgid "Import" msgstr "Importar" -#: libraries/db_links.inc.php:111 libraries/server_links.inc.php:66 -#: server_privileges.php:111 server_privileges.php:1722 -#: server_privileges.php:2071 test/theme.php:117 +#: libraries/db_links.inc.php:111 libraries/server_links.inc.php:67 +#: server_privileges.php:112 server_privileges.php:1742 +#: server_privileges.php:2092 test/theme.php:117 msgid "Privileges" msgstr "Privilégios" @@ -1965,7 +2008,7 @@ msgid "" msgstr "Pode ser aproximado. Veja o FAQ 3.11" #: libraries/db_structure.lib.php:69 server_databases.php:142 -#: tbl_printview.php:336 tbl_structure.php:682 +#: tbl_printview.php:336 tbl_structure.php:680 msgid "Overhead" msgstr "Sobrecarga" @@ -1984,7 +2027,7 @@ msgid "(or the local MySQL server's socket is not correctly configured)" msgstr "" "(ou o soquete do servidor MySQL local não está configurado corretamente)" -#: libraries/dbi/mysql.dbi.lib.php:362 tbl_structure.php:608 +#: libraries/dbi/mysql.dbi.lib.php:362 tbl_structure.php:606 msgid "Details..." msgstr "Detalhes..." @@ -1994,22 +2037,22 @@ msgid "Change password" msgstr "Alterar a senha" #: libraries/display_change_password.lib.php:35 -#: libraries/replication_gui.lib.php:345 server_privileges.php:807 +#: libraries/replication_gui.lib.php:345 server_privileges.php:808 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:796 -#: server_privileges.php:800 server_privileges.php:811 -#: server_privileges.php:1538 server_synchronize.php:1175 +#: libraries/replication_gui.lib.php:349 server_privileges.php:797 +#: server_privileges.php:801 server_privileges.php:812 +#: server_privileges.php:1558 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:815 server_privileges.php:818 +#: server_privileges.php:816 server_privileges.php:819 msgid "Re-type" msgstr "Re-digite" @@ -2024,12 +2067,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:822 +#: libraries/replication_gui.lib.php:360 server_privileges.php:823 msgid "Generate Password" msgstr "Gerar Senha" #: libraries/display_change_password.lib.php:75 -#: libraries/replication_gui.lib.php:363 server_privileges.php:825 +#: libraries/replication_gui.lib.php:363 server_privileges.php:826 msgid "Generate" msgstr "Gerar" @@ -2042,8 +2085,8 @@ msgstr "Criar novo Banco de Dados" msgid "Create" msgstr "Criar" -#: libraries/display_create_database.lib.php:40 server_privileges.php:113 -#: server_privileges.php:1427 server_replication.php:35 +#: libraries/display_create_database.lib.php:40 server_privileges.php:114 +#: server_privileges.php:1447 server_replication.php:35 msgid "No Privileges" msgstr "Sem privilégios" @@ -2134,7 +2177,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:1875 server_processlist.php:75 +#: server_privileges.php:1895 server_processlist.php:75 msgid "None" msgstr "Nenhum" @@ -2326,7 +2369,7 @@ msgstr "Ordenar pela chave" #: libraries/import/docsql.php:34 libraries/import/ldi.php:47 #: libraries/import/ods.php:30 libraries/import/sql.php:20 #: libraries/import/xls.php:26 libraries/import/xlsx.php:26 -#: libraries/import/xml.php:25 tbl_select.php:267 tbl_structure.php:753 +#: libraries/import/xml.php:25 tbl_select.php:267 tbl_structure.php:751 msgid "Options" msgstr "Opções" @@ -2403,7 +2446,7 @@ msgstr "Consulta levou %01.4f segundos" #: libraries/display_tbl.lib.php:2089 libraries/mult_submits.inc.php:113 #: querywindow.php:125 querywindow.php:129 querywindow.php:132 -#: tbl_structure.php:25 tbl_structure.php:150 tbl_structure.php:470 +#: tbl_structure.php:25 tbl_structure.php:150 tbl_structure.php:468 msgid "Change" msgstr "Alterar" @@ -2475,7 +2518,7 @@ msgstr "Uso do Buffer Pool" #: libraries/engines/innodb.lib.php:194 server_databases.php:137 #: server_databases.php:305 server_status.php:525 server_status.php:586 -#: server_status.php:607 tbl_printview.php:351 tbl_structure.php:696 +#: server_status.php:607 tbl_printview.php:351 tbl_structure.php:694 msgid "Total" msgstr "Total" @@ -2737,7 +2780,7 @@ msgid "" msgstr "" #: libraries/export/codegen.php:37 setup/lib/messages.inc.php:88 -#: tbl_printview.php:376 tbl_structure.php:737 +#: tbl_printview.php:376 tbl_structure.php:735 msgid "Format" msgstr "Formato" @@ -2809,8 +2852,8 @@ 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:576 server_replication.php:316 tbl_printview.php:317 -#: tbl_structure.php:665 +#: server_privileges.php:577 server_replication.php:316 tbl_printview.php:317 +#: tbl_structure.php:663 msgid "Data" msgstr "Dados" @@ -2859,9 +2902,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:731 -#: server_privileges.php:734 server_privileges.php:790 -#: server_privileges.php:1537 server_privileges.php:2069 +#: libraries/replication_gui.lib.php:329 server_privileges.php:732 +#: server_privileges.php:735 server_privileges.php:791 +#: server_privileges.php:1557 server_privileges.php:2090 #: server_processlist.php:55 server_synchronize.php:1159 msgid "Host" msgstr "Servidor" @@ -3060,7 +3103,7 @@ msgstr "Tipo de exportação" msgid "Open new phpMyAdmin window" msgstr "Abrir nova janela do phpMyAdmin" -#: libraries/header.inc.php:115 +#: libraries/header.inc.php:119 msgid "New table" msgstr "Nova tabela" @@ -3222,20 +3265,20 @@ 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 +#: tbl_structure.php:471 msgid "Primary" msgstr "Primária" #: libraries/mult_submits.inc.php:98 libraries/tbl_properties.inc.php:116 #: libraries/tbl_properties.inc.php:525 tbl_printview.php:326 #: tbl_structure.php:31 tbl_structure.php:154 tbl_structure.php:158 -#: tbl_structure.php:475 tbl_structure.php:673 +#: tbl_structure.php:473 tbl_structure.php:671 msgid "Index" msgstr "Índice" #: libraries/mult_submits.inc.php:108 libraries/tbl_properties.inc.php:531 #: tbl_structure.php:35 tbl_structure.php:156 tbl_structure.php:160 -#: tbl_structure.php:478 +#: tbl_structure.php:476 msgid "Fulltext" msgstr "Texto completo" @@ -3537,8 +3580,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:711 -#: server_privileges.php:714 server_privileges.php:721 +#: libraries/replication_gui.lib.php:259 server_privileges.php:712 +#: server_privileges.php:715 server_privileges.php:722 #: server_synchronize.php:1171 msgid "User name" msgstr "Nome do usuário" @@ -3564,7 +3607,7 @@ msgstr "Variáveis" #: 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 +#: tbl_structure.php:727 msgid "Value" msgstr "Valor" @@ -3582,34 +3625,34 @@ msgstr "" msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:254 server_privileges.php:716 +#: libraries/replication_gui.lib.php:254 server_privileges.php:717 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:717 -#: server_privileges.php:784 server_privileges.php:808 -#: server_privileges.php:1928 server_privileges.php:1958 +#: libraries/replication_gui.lib.php:346 server_privileges.php:718 +#: server_privileges.php:785 server_privileges.php:809 +#: server_privileges.php:1948 server_privileges.php:1978 msgid "Use text field" msgstr "Usar campo texto" -#: libraries/replication_gui.lib.php:302 server_privileges.php:764 +#: libraries/replication_gui.lib.php:302 server_privileges.php:765 msgid "Any host" msgstr "Qualquer servidor" -#: libraries/replication_gui.lib.php:306 server_privileges.php:768 +#: libraries/replication_gui.lib.php:306 server_privileges.php:769 msgid "Local" msgstr "Local" -#: libraries/replication_gui.lib.php:312 server_privileges.php:773 +#: libraries/replication_gui.lib.php:312 server_privileges.php:774 msgid "This Host" msgstr "Esse Servidor" -#: libraries/replication_gui.lib.php:318 server_privileges.php:779 +#: libraries/replication_gui.lib.php:318 server_privileges.php:780 msgid "Use Host Table" msgstr "Usar Tabela do Servidor" -#: libraries/replication_gui.lib.php:331 server_privileges.php:792 +#: libraries/replication_gui.lib.php:331 server_privileges.php:793 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -3643,29 +3686,29 @@ msgstr "Linguagem desconhecida: %1$s." msgid "Servers" msgstr "Servidores" -#: libraries/server_links.inc.php:53 server_engines.php:112 +#: libraries/server_links.inc.php:54 server_engines.php:112 #: server_engines.php:116 server_status.php:415 test/theme.php:105 msgid "Variables" msgstr "Variáveis" -#: libraries/server_links.inc.php:57 test/theme.php:109 +#: libraries/server_links.inc.php:58 test/theme.php:109 msgid "Charsets" msgstr "Conjuntos de caracteres" -#: libraries/server_links.inc.php:61 test/theme.php:113 +#: libraries/server_links.inc.php:62 test/theme.php:113 msgid "Engines" msgstr "Engines" -#: libraries/server_links.inc.php:76 server_binlog.php:110 +#: libraries/server_links.inc.php:77 server_binlog.php:110 #: server_status.php:364 test/theme.php:121 msgid "Binary log" msgstr "Log binário" -#: libraries/server_links.inc.php:80 +#: libraries/server_links.inc.php:81 msgid "Processes" msgstr "Processos" -#: libraries/server_links.inc.php:92 server_synchronize.php:1092 +#: libraries/server_links.inc.php:93 server_synchronize.php:1092 #: server_synchronize.php:1100 msgid "Synchronize" msgstr "" @@ -3916,13 +3959,13 @@ msgstr "Definição da PARTIÇÃO" msgid "Save" msgstr "Salvar" -#: libraries/tbl_properties.inc.php:780 tbl_structure.php:542 +#: libraries/tbl_properties.inc.php:780 tbl_structure.php:540 #, fuzzy, php-format #| msgid "Add %s field(s)" msgid "Add %s column(s)" msgstr "Adicionar %s campo(s)" -#: libraries/tbl_properties.inc.php:784 tbl_structure.php:536 +#: libraries/tbl_properties.inc.php:784 tbl_structure.php:534 #, fuzzy #| msgid "You have to add at least one field." msgid "You have to add at least one column." @@ -4135,8 +4178,8 @@ msgstr "Restaurar" msgid "Protocol version" msgstr "Versão do Protocolo" -#: main.php:189 server_privileges.php:1389 server_privileges.php:1536 -#: server_privileges.php:1650 server_privileges.php:2068 +#: main.php:189 server_privileges.php:1406 server_privileges.php:1556 +#: server_privileges.php:1670 server_privileges.php:2089 #: server_processlist.php:54 msgid "User" msgstr "Usuário" @@ -4586,114 +4629,114 @@ msgstr "Storage Engines" msgid "View dump (schema) of databases" msgstr "Ver dump (esquema) dos Bancos de Dados" -#: server_privileges.php:24 server_privileges.php:266 +#: server_privileges.php:25 server_privileges.php:267 msgid "Includes all privileges except GRANT." msgstr "Incluir todos os privilégios, exceto GRANT." -#: server_privileges.php:25 server_privileges.php:192 -#: server_privileges.php:515 +#: server_privileges.php:26 server_privileges.php:193 +#: server_privileges.php:516 msgid "Allows altering the structure of existing tables." msgstr "Permitir alterar a estrutura das tabelas existentes." -#: server_privileges.php:26 server_privileges.php:208 -#: server_privileges.php:521 +#: server_privileges.php:27 server_privileges.php:209 +#: server_privileges.php:522 msgid "Allows altering and dropping stored routines." msgstr "Permitir alterar e apagar stored routines." -#: server_privileges.php:27 server_privileges.php:184 -#: server_privileges.php:514 +#: server_privileges.php:28 server_privileges.php:185 +#: server_privileges.php:515 msgid "Allows creating new databases and tables." msgstr "Permitir criar novas tabelas e Banco de Dados." -#: server_privileges.php:28 server_privileges.php:207 -#: server_privileges.php:520 +#: server_privileges.php:29 server_privileges.php:208 +#: server_privileges.php:521 msgid "Allows creating stored routines." msgstr "Permitir criar stored routines." -#: server_privileges.php:29 server_privileges.php:514 +#: server_privileges.php:30 server_privileges.php:515 msgid "Allows creating new tables." msgstr "Permitir criar novas tabelas." -#: server_privileges.php:30 server_privileges.php:195 -#: server_privileges.php:518 +#: server_privileges.php:31 server_privileges.php:196 +#: server_privileges.php:519 msgid "Allows creating temporary tables." msgstr "Permitir criar tabelas temporárias." -#: server_privileges.php:31 server_privileges.php:209 -#: server_privileges.php:554 +#: server_privileges.php:32 server_privileges.php:210 +#: server_privileges.php:555 msgid "Allows creating, dropping and renaming user accounts." msgstr "Permitir criar, apagar e renomear contas dos usuários." -#: server_privileges.php:32 server_privileges.php:199 -#: server_privileges.php:203 server_privileges.php:526 -#: server_privileges.php:530 +#: server_privileges.php:33 server_privileges.php:200 +#: server_privileges.php:204 server_privileges.php:527 +#: server_privileges.php:531 msgid "Allows creating new views." msgstr "Permitir criar novas visões." -#: server_privileges.php:33 server_privileges.php:183 -#: server_privileges.php:506 +#: server_privileges.php:34 server_privileges.php:184 +#: server_privileges.php:507 msgid "Allows deleting data." msgstr "Permitir apagar dados." -#: server_privileges.php:34 server_privileges.php:185 -#: server_privileges.php:517 +#: server_privileges.php:35 server_privileges.php:186 +#: server_privileges.php:518 msgid "Allows dropping databases and tables." msgstr "Permitir eliminar Banco de Dados e tabelas." -#: server_privileges.php:35 server_privileges.php:517 +#: server_privileges.php:36 server_privileges.php:518 msgid "Allows dropping tables." msgstr "Permitir eliminar tabelas." -#: server_privileges.php:36 server_privileges.php:200 -#: server_privileges.php:534 +#: server_privileges.php:37 server_privileges.php:201 +#: server_privileges.php:535 msgid "Allows to set up events for the event scheduler" msgstr "Permitir iniciar eventos no cronograma de eventos" -#: server_privileges.php:37 server_privileges.php:210 -#: server_privileges.php:522 +#: server_privileges.php:38 server_privileges.php:211 +#: server_privileges.php:523 msgid "Allows executing stored routines." msgstr "Permitir executar stored routines." -#: server_privileges.php:38 server_privileges.php:189 -#: server_privileges.php:509 +#: server_privileges.php:39 server_privileges.php:190 +#: server_privileges.php:510 msgid "Allows importing data from and exporting data into files." msgstr "Permitir importar dados e exportar dados em arquivos." -#: server_privileges.php:39 server_privileges.php:540 +#: server_privileges.php:40 server_privileges.php:541 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "Permitir adicionar usuários e privilégios sem recarregar a tabela de " "privilégios." -#: server_privileges.php:40 server_privileges.php:191 -#: server_privileges.php:516 +#: server_privileges.php:41 server_privileges.php:192 +#: server_privileges.php:517 msgid "Allows creating and dropping indexes." msgstr "Permitir criar e eliminar índices." -#: server_privileges.php:41 server_privileges.php:181 -#: server_privileges.php:442 server_privileges.php:504 +#: server_privileges.php:42 server_privileges.php:182 +#: server_privileges.php:443 server_privileges.php:505 msgid "Allows inserting and replacing data." msgstr "Permitir inserir e substituir dados." -#: server_privileges.php:42 server_privileges.php:196 -#: server_privileges.php:549 +#: server_privileges.php:43 server_privileges.php:197 +#: server_privileges.php:550 msgid "Allows locking tables for the current thread." msgstr "Permitir bloquear tabelas para a processo atual." -#: server_privileges.php:43 server_privileges.php:646 -#: server_privileges.php:648 +#: server_privileges.php:44 server_privileges.php:647 +#: server_privileges.php:649 msgid "Limits the number of new connections the user may open per hour." msgstr "Limitar o numero de novas conexões que o usuário pode abrir por hora." -#: server_privileges.php:44 server_privileges.php:634 -#: server_privileges.php:636 +#: server_privileges.php:45 server_privileges.php:635 +#: server_privileges.php:637 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" "Limitar o número de consultas que podem ser enviadas ao servidor por hora." -#: server_privileges.php:45 server_privileges.php:640 -#: server_privileges.php:642 +#: server_privileges.php:46 server_privileges.php:641 +#: server_privileges.php:643 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -4701,60 +4744,60 @@ msgstr "" "Limitar o número de comandos que alteram Bancos de Dados ou tabelas que o " "usuário pode executar por hora." -#: server_privileges.php:46 server_privileges.php:652 -#: server_privileges.php:654 +#: server_privileges.php:47 server_privileges.php:653 +#: server_privileges.php:655 msgid "Limits the number of simultaneous connections the user may have." msgstr "Limitar o número de conexões simultâneas que o usuário pode ter." -#: server_privileges.php:47 server_privileges.php:188 -#: server_privileges.php:544 +#: server_privileges.php:48 server_privileges.php:189 +#: server_privileges.php:545 msgid "Allows viewing processes of all users" msgstr "Permitir visualizar processos de todos os usuários" -#: server_privileges.php:48 server_privileges.php:190 -#: server_privileges.php:448 server_privileges.php:550 +#: server_privileges.php:49 server_privileges.php:191 +#: server_privileges.php:449 server_privileges.php:551 msgid "Has no effect in this MySQL version." msgstr "Sem efeitos nesta versão do MySQL." -#: server_privileges.php:49 server_privileges.php:186 -#: server_privileges.php:545 +#: server_privileges.php:50 server_privileges.php:187 +#: server_privileges.php:546 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" "Permitir recarregar configurações do servidor e descarregar o cache do " "servidor." -#: server_privileges.php:50 server_privileges.php:198 -#: server_privileges.php:552 +#: server_privileges.php:51 server_privileges.php:199 +#: server_privileges.php:553 msgid "Allows the user to ask where the slaves / masters are." msgstr "Permitir que o usuário pergunte onde estão os escravos / mestres." -#: server_privileges.php:51 server_privileges.php:197 -#: server_privileges.php:553 +#: server_privileges.php:52 server_privileges.php:198 +#: server_privileges.php:554 msgid "Needed for the replication slaves." msgstr "Precisar dos escravos de replicação." -#: server_privileges.php:52 server_privileges.php:180 -#: server_privileges.php:439 server_privileges.php:503 +#: server_privileges.php:53 server_privileges.php:181 +#: server_privileges.php:440 server_privileges.php:504 msgid "Allows reading data." msgstr "Permitir leitura dos dados." -#: server_privileges.php:53 server_privileges.php:193 -#: server_privileges.php:547 +#: server_privileges.php:54 server_privileges.php:194 +#: server_privileges.php:548 msgid "Gives access to the complete list of databases." msgstr "Permitir acesso completo à lista de Bancos de Dados." -#: server_privileges.php:54 server_privileges.php:204 -#: server_privileges.php:206 server_privileges.php:519 +#: server_privileges.php:55 server_privileges.php:205 +#: server_privileges.php:207 server_privileges.php:520 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Permitir executar consultas SHOW CREATE VIEW." -#: server_privileges.php:55 server_privileges.php:187 -#: server_privileges.php:546 +#: server_privileges.php:56 server_privileges.php:188 +#: server_privileges.php:547 msgid "Allows shutting down the server." msgstr "Permitir desligar o servidor." -#: server_privileges.php:56 server_privileges.php:194 -#: server_privileges.php:543 +#: server_privileges.php:57 server_privileges.php:195 +#: server_privileges.php:544 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -4764,156 +4807,156 @@ msgstr "" "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 +#: server_privileges.php:58 server_privileges.php:202 +#: server_privileges.php:536 msgid "Allows creating and dropping triggers" msgstr "Permitir criar e e largar em cadeia" -#: server_privileges.php:58 server_privileges.php:182 -#: server_privileges.php:445 server_privileges.php:505 +#: server_privileges.php:59 server_privileges.php:183 +#: server_privileges.php:446 server_privileges.php:506 msgid "Allows changing data." msgstr "Permitir modificar dados." -#: server_privileges.php:59 server_privileges.php:260 +#: server_privileges.php:60 server_privileges.php:261 msgid "No privileges." msgstr "Sem privilégios." -#: server_privileges.php:302 server_privileges.php:303 +#: server_privileges.php:303 server_privileges.php:304 #, fuzzy #| msgid "None" msgctxt "None privileges" msgid "None" msgstr "Nenhum" -#: server_privileges.php:431 server_privileges.php:566 -#: server_privileges.php:1718 server_privileges.php:1724 +#: server_privileges.php:432 server_privileges.php:567 +#: server_privileges.php:1738 server_privileges.php:1744 msgid "Table-specific privileges" msgstr "Privilégios específicos da tabela" -#: server_privileges.php:432 server_privileges.php:574 -#: server_privileges.php:1540 +#: server_privileges.php:433 server_privileges.php:575 +#: server_privileges.php:1560 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:563 server_privileges.php:1539 +#: server_privileges.php:564 server_privileges.php:1559 msgid "Global privileges" msgstr "Privilégios globais" -#: server_privileges.php:565 server_privileges.php:1718 +#: server_privileges.php:566 server_privileges.php:1738 msgid "Database-specific privileges" msgstr "Privilégios específicos do Banco de Dados" -#: server_privileges.php:610 +#: server_privileges.php:611 msgid "Administration" msgstr "Administração" -#: server_privileges.php:630 +#: server_privileges.php:631 msgid "Resource limits" msgstr "Limite dos recursos" -#: server_privileges.php:631 +#: server_privileges.php:632 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "Nota: Ajustar essa opção para 0 (zero) remove os limites." -#: server_privileges.php:708 +#: server_privileges.php:709 msgid "Login Information" msgstr "Informação de login" -#: server_privileges.php:802 +#: server_privileges.php:803 msgid "Do not change the password" msgstr "Não mudar a senha" -#: server_privileges.php:843 server_privileges.php:2205 +#: server_privileges.php:844 server_privileges.php:2226 #, fuzzy #| msgid "No user(s) found." msgid "No user found." msgstr "Nenhum usuário(s) encontrado." -#: server_privileges.php:887 +#: server_privileges.php:888 #, php-format msgid "The user %s already exists!" msgstr "O usuário %s já existe!" -#: server_privileges.php:970 +#: server_privileges.php:971 msgid "You have added a new user." msgstr "Adicionado usuário" -#: server_privileges.php:1191 +#: server_privileges.php:1196 #, php-format msgid "You have updated the privileges for %s." msgstr "Você mudou os priviléios para %s." -#: server_privileges.php:1215 +#: server_privileges.php:1220 #, php-format msgid "You have revoked the privileges for %s" msgstr "Você revogou os privilégios para %s" -#: server_privileges.php:1251 +#: server_privileges.php:1256 #, php-format msgid "The password for %s was changed successfully." msgstr "A senha para %s foi modificada com sucesso." -#: server_privileges.php:1271 +#: server_privileges.php:1276 #, php-format msgid "Deleting %s" msgstr "Eliminando %s" -#: server_privileges.php:1282 +#: server_privileges.php:1287 msgid "No users selected for deleting!" msgstr "Nenhum usuário selecionado para exclusão!" -#: server_privileges.php:1285 +#: server_privileges.php:1290 msgid "Reloading the privileges" msgstr "Recarregando os privilégios" -#: server_privileges.php:1300 +#: server_privileges.php:1305 msgid "The selected users have been deleted successfully." msgstr "Os usuários selecionados foram apagados com sucesso." -#: server_privileges.php:1335 +#: server_privileges.php:1344 msgid "The privileges were reloaded successfully." msgstr "Os privilégios foram recarregados com sucesso." -#: server_privileges.php:1363 server_privileges.php:1649 +#: server_privileges.php:1380 server_privileges.php:1669 msgid "Edit Privileges" msgstr "Editar Privilégios" -#: server_privileges.php:1372 +#: server_privileges.php:1389 msgid "Revoke" msgstr "Revogar" -#: server_privileges.php:1404 +#: server_privileges.php:1424 msgid "User overview" msgstr "Avaliação dos usuários" -#: server_privileges.php:1541 server_privileges.php:1723 -#: server_privileges.php:2072 +#: server_privileges.php:1561 server_privileges.php:1743 +#: server_privileges.php:2093 msgid "Grant" msgstr "Conceder/Grant" -#: server_privileges.php:1560 server_privileges.php:2162 +#: server_privileges.php:1580 server_privileges.php:2183 msgid "Any" msgstr "Qualquer" -#: server_privileges.php:1609 server_privileges.php:1633 -#: server_privileges.php:2027 server_privileges.php:2216 +#: server_privileges.php:1629 server_privileges.php:1653 +#: server_privileges.php:2048 server_privileges.php:2237 msgid "Add a new User" msgstr "Adicionar novo usuário" -#: server_privileges.php:1614 +#: server_privileges.php:1634 msgid "Remove selected users" msgstr "Remover os usuários selecionados" -#: server_privileges.php:1617 +#: server_privileges.php:1637 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:1618 server_privileges.php:1619 -#: server_privileges.php:1620 +#: server_privileges.php:1638 server_privileges.php:1639 +#: server_privileges.php:1640 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:1636 +#: server_privileges.php:1656 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -4926,50 +4969,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:1684 +#: server_privileges.php:1704 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:1724 +#: server_privileges.php:1744 msgid "Column-specific privileges" msgstr "Privilégios específicos da coluna" -#: server_privileges.php:1925 +#: server_privileges.php:1945 msgid "Add privileges on the following database" msgstr "Adicionar privilégios nas seguintes Banco de Dados" -#: server_privileges.php:1943 +#: server_privileges.php:1963 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:1946 +#: server_privileges.php:1966 msgid "Add privileges on the following table" msgstr "Adicionar privilégios nas seguintes tabelas" -#: server_privileges.php:2003 +#: server_privileges.php:2023 msgid "Change Login Information / Copy User" msgstr "Mudar informações de login / Copiar usuário" -#: server_privileges.php:2006 +#: server_privileges.php:2026 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:2008 +#: server_privileges.php:2028 msgid "... keep the old one." msgstr "... manter o antigo." -#: server_privileges.php:2009 +#: server_privileges.php:2029 msgid " ... delete the old one from the user tables." msgstr " ... apagar o antigo da tabela de usuários." -#: server_privileges.php:2010 +#: server_privileges.php:2030 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:2011 +#: server_privileges.php:2031 msgid "" " ... delete the old one from the user tables and reload the privileges " "afterwards." @@ -4977,44 +5020,44 @@ msgstr "" " ... apagar o antigo da tabela de usuários e depois recarregar os " "privilégios." -#: server_privileges.php:2033 +#: server_privileges.php:2054 msgid "Database for user" msgstr "Banco de Dados para usuário" -#: server_privileges.php:2037 +#: server_privileges.php:2058 #, fuzzy #| msgid "None" msgctxt "Create none database for user" msgid "None" msgstr "Nenhum" -#: server_privileges.php:2038 +#: server_privileges.php:2059 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:2039 +#: server_privileges.php:2060 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "Conceder todos os privilégios no nome coringa (nome_do_usuário_%)" -#: server_privileges.php:2042 +#: server_privileges.php:2063 #, php-format msgid "Grant all privileges on database "%s"" msgstr "Conceder todos os privilégios no banco de dados "%s"" -#: server_privileges.php:2065 +#: server_privileges.php:2086 #, php-format msgid "Users having access to "%s"" msgstr "Usuários que têm acesso à "%s"" -#: server_privileges.php:2173 +#: server_privileges.php:2194 msgid "global" msgstr "global" -#: server_privileges.php:2175 +#: server_privileges.php:2196 msgid "database-specific" msgstr "Específico do Banco de Dados" -#: server_privileges.php:2177 +#: server_privileges.php:2198 msgid "wildcard" msgstr "coringa" @@ -7859,6 +7902,10 @@ msgstr "" msgid "Show insert query" msgstr "Exibindo consulta SQL" +#: tbl_change.php:1143 +msgid "and then" +msgstr "e então" + #: tbl_change.php:1147 msgid "Go back to previous page" msgstr "Retornar" @@ -7941,7 +7988,7 @@ msgstr "" msgid "Add to index  %s column(s)" msgstr "Adicionar ao índice  %s coluna(s)" -#: tbl_indexes.php:256 tbl_structure.php:589 tbl_structure.php:600 +#: tbl_indexes.php:256 tbl_structure.php:587 tbl_structure.php:598 msgid "Column count has to be larger than zero." msgstr "Contador da coluna deve ser maior que zero." @@ -8055,39 +8102,39 @@ msgstr "Verificar integridade referencial:" msgid "Show tables" msgstr "Mostrar tabelas" -#: tbl_printview.php:310 tbl_structure.php:656 +#: tbl_printview.php:310 tbl_structure.php:654 msgid "Space usage" msgstr "Uso do espaço" -#: tbl_printview.php:314 tbl_structure.php:660 +#: tbl_printview.php:314 tbl_structure.php:658 msgid "Usage" msgstr "Uso" -#: tbl_printview.php:341 tbl_structure.php:687 +#: tbl_printview.php:341 tbl_structure.php:685 msgid "Effective" msgstr "Efetivo" -#: tbl_printview.php:366 tbl_structure.php:725 +#: tbl_printview.php:366 tbl_structure.php:723 msgid "Row Statistics" msgstr "Estatísticas do registros" -#: tbl_printview.php:369 tbl_structure.php:728 +#: tbl_printview.php:369 tbl_structure.php:726 msgid "Statements" msgstr "Comandos" -#: tbl_printview.php:380 tbl_structure.php:740 +#: tbl_printview.php:380 tbl_structure.php:738 msgid "static" msgstr "" -#: tbl_printview.php:382 tbl_structure.php:742 +#: tbl_printview.php:382 tbl_structure.php:740 msgid "dynamic" msgstr "dinâmico" -#: tbl_printview.php:404 tbl_structure.php:785 +#: tbl_printview.php:404 tbl_structure.php:783 msgid "Row length" msgstr "Tamanho do registro" -#: tbl_printview.php:414 tbl_structure.php:793 +#: tbl_printview.php:414 tbl_structure.php:791 msgid " Row size " msgstr " Tamanho do registro " @@ -8159,50 +8206,50 @@ msgstr "Nenhum" msgid "Column %s has been dropped" msgstr "Tabela %s foi eliminada" -#: tbl_structure.php:385 +#: tbl_structure.php:384 #, php-format msgid "A primary key has been added on %s" msgstr "Uma chave primária foi adicionada a %s" -#: tbl_structure.php:400 tbl_structure.php:414 tbl_structure.php:428 +#: tbl_structure.php:398 tbl_structure.php:412 tbl_structure.php:426 #, php-format msgid "An index has been added on %s" msgstr "Um índice foi adicionado a %s" -#: tbl_structure.php:506 tbl_structure.php:508 +#: tbl_structure.php:504 tbl_structure.php:506 msgid "Relation view" msgstr "Ver relações" -#: tbl_structure.php:515 tbl_structure.php:517 +#: tbl_structure.php:513 tbl_structure.php:515 msgid "Propose table structure" msgstr "Propor estrutura da tabela" -#: tbl_structure.php:540 +#: tbl_structure.php:538 #, fuzzy #| msgid "Add %s field(s)" msgid "Add column" msgstr "Adicionar %s campo(s)" -#: tbl_structure.php:554 +#: tbl_structure.php:552 msgid "At End of Table" msgstr "No final da tabela" -#: tbl_structure.php:555 +#: tbl_structure.php:553 msgid "At Beginning of Table" msgstr "No início da tabela" -#: tbl_structure.php:556 +#: tbl_structure.php:554 #, php-format msgid "After %s" msgstr "Depois %s" -#: tbl_structure.php:594 +#: tbl_structure.php:592 #, fuzzy, php-format #| msgid "Create an index on %s columns" msgid "Create an index on  %s columns" msgstr "Criar um índice em %s colunas" -#: tbl_structure.php:756 +#: tbl_structure.php:754 msgid "partitioned" msgstr "Particionado" @@ -8651,9 +8698,6 @@ msgstr "Renomear a tabela para " #~ msgid "Process list" #~ msgstr "Lista de processos" -#~ msgid "Reload privileges" -#~ msgstr "Recarregar privilégios" - #~ msgid "" #~ "The users will still have the USAGE privilege until the privileges are " #~ "reloaded." diff --git a/po/ro.po b/po/ro.po index e75bd045a..ffad0aca0 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-13 09:03-0400\n" +"POT-Creation-Date: 2010-06-22 00:55+0530\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:1514 +#: libraries/display_tbl.lib.php:417 server_privileges.php:1534 msgid "Show all" msgstr "Arată toate" -#: browse_foreigners.php:82 libraries/common.lib.php:2313 +#: browse_foreigners.php:82 libraries/common.lib.php:2317 #: 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,18 +39,18 @@ 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:2831 -#: libraries/common.lib.php:2838 libraries/db_links.inc.php:75 +#: db_structure.php:106 libraries/common.lib.php:2835 +#: libraries/common.lib.php:2842 libraries/db_links.inc.php:75 #: libraries/tbl_links.inc.php:63 msgid "Search" msgstr "Caută" -#: browse_foreigners.php:153 db_operations.php:385 db_operations.php:429 -#: db_operations.php:499 db_operations.php:609 db_search.php:362 -#: db_structure.php:567 js/messages.php:48 libraries/Config.class.php:1046 +#: browse_foreigners.php:153 db_operations.php:394 db_operations.php:438 +#: db_operations.php:508 db_operations.php:618 db_search.php:362 +#: db_structure.php:565 js/messages.php:53 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:1335 libraries/common.lib.php:2288 +#: libraries/common.lib.php:1335 libraries/common.lib.php:2292 #: 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,15 +61,15 @@ 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:664 server_privileges.php:1624 -#: server_privileges.php:1971 server_privileges.php:2018 -#: server_privileges.php:2057 server_replication.php:235 +#: server_privileges.php:665 server_privileges.php:1644 +#: server_privileges.php:1991 server_privileges.php:2038 +#: server_privileges.php:2078 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 #: tbl_operations.php:302 tbl_operations.php:499 tbl_operations.php:561 -#: tbl_operations.php:681 tbl_select.php:327 tbl_structure.php:562 -#: tbl_structure.php:597 tbl_tracking.php:395 tbl_tracking.php:512 +#: tbl_operations.php:681 tbl_select.php:327 tbl_structure.php:560 +#: tbl_structure.php:595 tbl_tracking.php:395 tbl_tracking.php:512 #: view_create.php:182 view_operations.php:101 msgid "Go" msgstr "Execută" @@ -95,7 +95,7 @@ msgstr "Folosește această valoare" msgid "Database %1$s has been created." msgstr "Baza de date %1$s a fost creată." -#: db_datadict.php:49 db_operations.php:378 +#: db_datadict.php:49 db_operations.php:387 msgid "Database comment: " msgstr "Comentarii referitoare la baza de date: " @@ -122,10 +122,10 @@ 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:2070 +#: pdf_schema.php:1263 pdf_schema.php:1284 server_privileges.php:2091 #: 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 +#: tbl_structure.php:657 tbl_tracking.php:274 tbl_tracking.php:321 msgid "Type" msgstr "Tip" @@ -138,7 +138,7 @@ msgstr "Tip" msgid "Null" msgstr "Nul" -#: db_datadict.php:178 db_structure.php:501 libraries/export/htmlword.php:247 +#: db_datadict.php:178 db_structure.php:499 libraries/export/htmlword.php:247 #: libraries/export/latex.php:360 libraries/export/odt.php:303 #: libraries/export/texytext.php:236 libraries/tbl_properties.inc.php:106 #: pdf_schema.php:1266 pdf_schema.php:1287 tbl_printview.php:146 @@ -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: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 +#: pdf_schema.php:1344 server_privileges.php:1588 server_privileges.php:1599 +#: server_privileges.php:1909 server_privileges.php:1914 +#: server_privileges.php:2208 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:1565 -#: server_privileges.php:1579 server_privileges.php:1889 -#: server_privileges.php:1892 server_privileges.php:2187 sql.php:193 +#: server_databases.php:64 server_privileges.php:1585 +#: server_privileges.php:1599 server_privileges.php:1909 +#: server_privileges.php:1912 server_privileges.php:2208 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" @@ -211,121 +211,117 @@ msgstr "Selectează tot" msgid "Unselect All" msgstr "Deselectează tot" -#: db_operations.php:38 tbl_create.php:54 +#: db_operations.php:43 tbl_create.php:54 msgid "The database name is empty!" msgstr "Cîmpul de denumire al bazei de date este gol!" -#: db_operations.php:236 +#: db_operations.php:241 #, php-format msgid "Database %s has been renamed to %s" msgstr "Baza de date %s a fost redenumită în %s" -#: db_operations.php:240 +#: db_operations.php:245 #, php-format msgid "Database %s has been copied to %s" msgstr "Baza de date %s a fost copiata la %s" -#: db_operations.php:412 +#: db_operations.php:421 msgid "Rename database to" msgstr "Redenumire bază de date în" -#: db_operations.php:417 server_processlist.php:57 +#: db_operations.php:426 server_processlist.php:57 msgid "Command" msgstr "Comanda" -#: db_operations.php:429 tbl_change.php:1143 -msgid "and then" -msgstr "și apoi" - -#: db_operations.php:455 +#: db_operations.php:464 msgid "Copy database to" msgstr "Copiază baza de date" -#: db_operations.php:462 tbl_operations.php:528 tbl_tracking.php:388 +#: db_operations.php:471 tbl_operations.php:528 tbl_tracking.php:388 msgid "Structure only" msgstr "Numai structura" -#: db_operations.php:463 tbl_operations.php:529 tbl_tracking.php:390 +#: db_operations.php:472 tbl_operations.php:529 tbl_tracking.php:390 msgid "Structure and data" msgstr "Structura și date" -#: db_operations.php:464 tbl_operations.php:530 tbl_tracking.php:389 +#: db_operations.php:473 tbl_operations.php:530 tbl_tracking.php:389 msgid "Data only" msgstr "Numai date" -#: db_operations.php:472 +#: db_operations.php:481 msgid "CREATE DATABASE before copying" msgstr "CREEAZĂ BAZA DE DATE înainte de copiere" -#: db_operations.php:475 libraries/export/sql.php:52 +#: db_operations.php:484 libraries/export/sql.php:52 #: libraries/export/sql.php:74 libraries/export/sql.php:76 #: libraries/export/sql.php:82 tbl_operations.php:536 #, php-format msgid "Add %s" msgstr "Adăugare %s" -#: db_operations.php:479 libraries/export/sql.php:78 tbl_operations.php:299 +#: db_operations.php:488 libraries/export/sql.php:78 tbl_operations.php:299 #: tbl_operations.php:538 msgid "Add AUTO_INCREMENT value" msgstr "Adaugă valoare pentru AUTO_INCREMENT" -#: db_operations.php:483 tbl_operations.php:545 +#: db_operations.php:492 tbl_operations.php:545 msgid "Add constraints" msgstr "Adaugă constrângeri" -#: db_operations.php:496 +#: db_operations.php:505 msgid "Switch to copied database" msgstr "Schimbă la tabela copiată" -#: db_operations.php:537 +#: db_operations.php:546 msgid "BLOB Repository" msgstr "BLOB Repository" -#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1352 -#: libraries/server_links.inc.php:49 server_processlist.php:59 +#: db_operations.php:549 db_tracking.php:76 libraries/common.lib.php:1352 +#: libraries/server_links.inc.php:50 server_processlist.php:59 #: tbl_tracking.php:596 test/theme.php:101 msgid "Status" msgstr "Stare" -#: db_operations.php:548 +#: db_operations.php:557 #, fuzzy #| msgid "Enabled" msgctxt "BLOB repository" msgid "Enabled" msgstr "Activat" -#: db_operations.php:552 +#: db_operations.php:561 msgid "Disable" msgstr "Dezactivează" -#: db_operations.php:562 +#: db_operations.php:571 msgid "Damaged" msgstr "Deteriorat" -#: db_operations.php:566 +#: db_operations.php:575 msgctxt "BLOB repository" msgid "Repair" msgstr "Repară" -#: db_operations.php:574 +#: db_operations.php:583 msgctxt "BLOB repository" msgid "Disabled" msgstr "Dezactivat" -#: db_operations.php:578 +#: db_operations.php:587 msgid "Enable" msgstr "Activează" -#: db_operations.php:602 libraries/Index.class.php:448 +#: db_operations.php:611 libraries/Index.class.php:448 #: libraries/db_structure.lib.php:62 libraries/mysql_charsets.lib.php:107 #: libraries/tbl_properties.inc.php:107 libraries/tbl_properties.inc.php:730 #: server_collations.php:54 server_collations.php:66 server_databases.php:111 #: tbl_operations.php:363 tbl_select.php:137 tbl_structure.php:179 -#: tbl_structure.php:767 tbl_tracking.php:275 tbl_tracking.php:326 +#: tbl_structure.php:765 tbl_tracking.php:275 tbl_tracking.php:326 msgid "Collation" msgstr "Interclasare" -#: db_operations.php:615 main.php:316 pdf_schema.php:34 +#: db_operations.php:624 main.php:316 pdf_schema.php:34 #, php-format msgid "" "The additional features for working with linked tables have been " @@ -334,14 +330,14 @@ msgstr "" "Opțiunile adiționale pentru folosirea tabelelor intercalate au fost " "dezactivate. Pentru a afla de ce ... %shere%s." -#: db_operations.php:648 +#: db_operations.php:657 msgid "Edit PDF Pages" 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:1665 -#: server_privileges.php:1721 server_privileges.php:1985 +#: libraries/header.inc.php:130 pdf_pages.php:424 server_privileges.php:1685 +#: server_privileges.php:1741 server_privileges.php:2005 #: server_synchronize.php:423 server_synchronize.php:866 tbl_tracking.php:592 #: test/theme.php:75 msgid "Table" @@ -350,7 +346,7 @@ msgstr "Tabel" #: db_printview.php:105 libraries/db_structure.lib.php:56 #: libraries/header_printview.inc.php:63 libraries/import.lib.php:146 #: navigation.php:638 navigation.php:660 server_databases.php:122 -#: tbl_printview.php:394 tbl_structure.php:365 tbl_structure.php:777 +#: tbl_printview.php:394 tbl_structure.php:365 tbl_structure.php:775 msgid "Rows" msgstr "Linie" @@ -358,30 +354,30 @@ msgstr "Linie" msgid "Size" msgstr "Mărime" -#: db_printview.php:162 db_structure.php:457 libraries/export/sql.php:559 +#: db_printview.php:162 db_structure.php:455 libraries/export/sql.php:559 #: libraries/export/sql.php:899 msgid "in use" msgstr "în folosință" #: db_printview.php:187 libraries/db_info.inc.php:88 #: libraries/export/sql.php:514 pdf_schema.php:1241 tbl_printview.php:434 -#: tbl_structure.php:809 +#: tbl_structure.php:807 msgid "Creation" msgstr "Creare" #: db_printview.php:196 libraries/db_info.inc.php:93 #: libraries/export/sql.php:519 pdf_schema.php:1246 tbl_printview.php:444 -#: tbl_structure.php:817 +#: tbl_structure.php:815 msgid "Last update" msgstr "Ultima actualizare" #: db_printview.php:205 libraries/db_info.inc.php:98 #: libraries/export/sql.php:524 pdf_schema.php:1251 tbl_printview.php:454 -#: tbl_structure.php:825 +#: tbl_structure.php:823 msgid "Last check" msgstr "Ultima verficare" -#: db_printview.php:222 db_structure.php:480 +#: db_printview.php:222 db_structure.php:478 #, fuzzy, php-format #| msgid "%s table(s)" msgid "%s table" @@ -443,7 +439,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:297 tbl_change.php:1031 tbl_indexes.php:250 +#: server_privileges.php:298 tbl_change.php:1031 tbl_indexes.php:250 #: tbl_select.php:288 msgid "Or" msgstr "Sau" @@ -516,9 +512,9 @@ 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:2833 +#: db_structure.php:105 libraries/common.lib.php:2837 #: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50 -#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:467 +#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:465 msgid "Browse" msgstr "Navigare" @@ -563,36 +559,36 @@ 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:2832 libraries/sql_query_form.lib.php:334 +#: libraries/common.lib.php:2836 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:2829 libraries/common.lib.php:2836 +#: libraries/common.lib.php:2833 libraries/common.lib.php:2840 #: 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:1106 #: libraries/tbl_links.inc.php:56 pmd_general.php:134 -#: server_privileges.php:593 server_replication.php:315 tbl_tracking.php:269 +#: server_privileges.php:594 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:1656 +#: db_structure.php:543 db_structure.php:544 db_tracking.php:91 +#: libraries/Index.class.php:483 libraries/common.lib.php:1657 #: 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 -#: tbl_structure.php:152 tbl_structure.php:471 +#: tbl_structure.php:152 tbl_structure.php:469 msgid "Drop" 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:1655 +#: db_structure.php:541 db_structure.php:542 libraries/common.lib.php:1656 #: libraries/mult_submits.inc.php:39 libraries/tbl_links.inc.php:105 msgid "Empty" msgstr "Golește" @@ -602,25 +598,25 @@ msgstr "Golește" msgid "Table %s has been emptied" msgstr "Tabelul %s a fost golit" -#: db_structure.php:326 libraries/tbl_links.inc.php:133 +#: db_structure.php:325 libraries/tbl_links.inc.php:133 #, php-format msgid "View %s has been dropped" msgstr "Vizualizarea %s a fost eliminată" -#: db_structure.php:326 libraries/tbl_links.inc.php:133 +#: db_structure.php:325 libraries/tbl_links.inc.php:133 #, php-format msgid "Table %s has been dropped" msgstr "Tabelul %s a fost aruncat" -#: db_structure.php:333 +#: db_structure.php:332 msgid "Tracking is active." msgstr "Monitorizarea este activată" -#: db_structure.php:335 +#: db_structure.php:334 msgid "Tracking is not active." msgstr "Monitorizarea nu este activată" -#: db_structure.php:420 libraries/display_tbl.lib.php:1944 +#: db_structure.php:418 libraries/display_tbl.lib.php:1944 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation%" @@ -628,86 +624,86 @@ msgid "" msgstr "" "Această vedere are minim acest număr de rânduri. Vedeți %sdocumentation%s." -#: db_structure.php:434 db_structure.php:448 libraries/header.inc.php:126 +#: db_structure.php:432 db_structure.php:446 libraries/header.inc.php:130 #: libraries/tbl_info.inc.php:66 tbl_structure.php:185 test/theme.php:74 msgid "View" msgstr "Vizualizare" -#: db_structure.php:485 libraries/db_structure.lib.php:49 -#: libraries/server_links.inc.php:70 server_replication.php:33 +#: db_structure.php:483 libraries/db_structure.lib.php:49 +#: libraries/server_links.inc.php:71 server_replication.php:33 #: server_replication.php:164 server_status.php:369 msgid "Replication" msgstr "Replicare" -#: db_structure.php:489 +#: db_structure.php:487 msgid "Sum" msgstr "Sumă" -#: db_structure.php:496 libraries/StorageEngine.class.php:356 +#: db_structure.php:494 libraries/StorageEngine.class.php:356 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "%s este motorul de stocare stabilit implicit pe acest server MySQL." -#: db_structure.php:524 db_structure.php:541 db_structure.php:542 +#: db_structure.php:522 db_structure.php:539 db_structure.php:540 #: 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:1596 tbl_structure.php:455 -#: tbl_structure.php:464 +#: server_databases.php:351 server_privileges.php:1616 tbl_structure.php:453 +#: tbl_structure.php:462 msgid "With selected:" msgstr "Cele bifate:" -#: db_structure.php:527 libraries/display_tbl.lib.php:2076 -#: server_databases.php:348 server_privileges.php:569 -#: server_privileges.php:1599 tbl_structure.php:458 +#: db_structure.php:525 libraries/display_tbl.lib.php:2076 +#: server_databases.php:348 server_privileges.php:570 +#: server_privileges.php:1619 tbl_structure.php:456 msgid "Check All" msgstr "Marchează toate" -#: db_structure.php:531 libraries/display_tbl.lib.php:2077 +#: db_structure.php:529 libraries/display_tbl.lib.php:2077 #: libraries/replication_gui.lib.php:33 server_databases.php:350 -#: server_privileges.php:572 server_privileges.php:1603 tbl_structure.php:462 +#: server_privileges.php:573 server_privileges.php:1623 tbl_structure.php:460 msgid "Uncheck All" msgstr "Demarchează toate" -#: db_structure.php:536 +#: db_structure.php:534 msgid "Check tables having overhead" msgstr "Verificare depășit" -#: db_structure.php:547 db_structure.php:548 db_structure.php:599 +#: db_structure.php:545 db_structure.php:546 db_structure.php:597 #: libraries/display_tbl.lib.php:2180 libraries/mult_submits.inc.php:28 -#: tbl_structure.php:492 tbl_structure.php:494 +#: tbl_structure.php:490 tbl_structure.php:492 msgid "Print view" msgstr "Vizualizare imprimare" -#: db_structure.php:549 db_structure.php:550 libraries/mult_submits.inc.php:42 +#: db_structure.php:547 db_structure.php:548 libraries/mult_submits.inc.php:42 #: tbl_operations.php:581 msgid "Check table" msgstr "Verificare tabel" -#: db_structure.php:551 db_structure.php:552 libraries/mult_submits.inc.php:47 -#: tbl_operations.php:621 tbl_structure.php:709 tbl_structure.php:711 +#: db_structure.php:549 db_structure.php:550 libraries/mult_submits.inc.php:47 +#: tbl_operations.php:621 tbl_structure.php:707 tbl_structure.php:709 msgid "Optimize table" msgstr "Optimizare tabel" -#: db_structure.php:553 db_structure.php:554 libraries/mult_submits.inc.php:52 +#: db_structure.php:551 db_structure.php:552 libraries/mult_submits.inc.php:52 #: tbl_operations.php:611 msgid "Repair table" msgstr "Reparare tabel" -#: db_structure.php:555 db_structure.php:556 libraries/mult_submits.inc.php:57 +#: db_structure.php:553 db_structure.php:554 libraries/mult_submits.inc.php:57 #: tbl_operations.php:601 msgid "Analyze table" msgstr "Analizare tabel" -#: db_structure.php:557 db_structure.php:558 libraries/db_links.inc.php:71 +#: db_structure.php:555 db_structure.php:556 libraries/db_links.inc.php:71 #: 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:1380 +#: libraries/server_links.inc.php:85 libraries/tbl_links.inc.php:82 +#: pmd_pdf.php:84 pmd_pdf.php:109 server_privileges.php:1397 #: setup/frames/menu.inc.php:22 tbl_row_action.php:59 msgid "Export" msgstr "Exportă" -#: db_structure.php:606 libraries/display_pdf_schema.lib.php:44 +#: db_structure.php:604 libraries/display_pdf_schema.lib.php:44 msgid "Data Dictionary" msgstr "Dicționar de date" @@ -719,10 +715,10 @@ msgstr "Tabelele urmărite" #: db_tracking.php:71 libraries/export/htmlword.php:86 #: libraries/export/latex.php:148 libraries/export/odt.php:113 #: libraries/export/sql.php:342 libraries/export/texytext.php:84 -#: libraries/export/xml.php:255 libraries/header.inc.php:106 +#: libraries/export/xml.php:255 libraries/header.inc.php:110 #: libraries/header_printview.inc.php:58 server_databases.php:169 -#: server_privileges.php:1660 server_privileges.php:1721 -#: server_privileges.php:1979 server_processlist.php:56 +#: server_privileges.php:1680 server_privileges.php:1741 +#: server_privileges.php:1999 server_processlist.php:56 #: server_synchronize.php:1179 server_synchronize.php:1183 #: tbl_tracking.php:591 test/theme.php:65 msgid "Database" @@ -742,8 +738,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:1542 server_privileges.php:1725 -#: server_privileges.php:2073 tbl_structure.php:187 +#: server_privileges.php:1562 server_privileges.php:1745 +#: server_privileges.php:2094 tbl_structure.php:187 msgid "Action" msgstr "Acțiune" @@ -782,8 +778,8 @@ msgstr "Instantaneu al structurii" msgid "Untracked tables" msgstr "Tabele fără monitorizare" -#: db_tracking.php:172 db_tracking.php:174 tbl_structure.php:528 -#: tbl_structure.php:530 +#: db_tracking.php:172 db_tracking.php:174 tbl_structure.php:526 +#: tbl_structure.php:528 #, fuzzy msgid "Track table" msgstr "Tabele monitorizate" @@ -955,186 +951,233 @@ msgstr "Numele gazdei este gol!" msgid "The user name is empty!" msgstr "Numele de utilizator este gol!" -#: js/messages.php:44 server_privileges.php:1236 user_password.php:70 +#: js/messages.php:44 server_privileges.php:1241 user_password.php:70 msgid "The password is empty!" msgstr "Parola este goală!" -#: js/messages.php:45 server_privileges.php:1234 user_password.php:73 +#: js/messages.php:45 server_privileges.php:1239 user_password.php:73 msgid "The passwords aren't the same!" msgstr "Parolele nu corespund!" -#: js/messages.php:49 pmd_general.php:342 pmd_general.php:379 +#: js/messages.php:46 +#, fuzzy +#| msgid "Add a new User" +msgid "Add a New User" +msgstr "Adaugă un utilizator nou" + +#: js/messages.php:47 js/messages.php:54 pmd_general.php:342 +#: pmd_general.php:379 msgid "Cancel" msgstr "Renunță" -#: js/messages.php:52 pmd_save_pos.php:54 +#: js/messages.php:48 +#, fuzzy +msgid "Create User" +msgstr "Creare relație" + +#: js/messages.php:49 +#, fuzzy +#| msgid "Reloading the privileges" +msgid "Reloading Privileges" +msgstr "Reîncărcarea drepturilor" + +#: js/messages.php:50 +#, fuzzy +#| msgid "Remove selected users" +msgid "Removing Selected Users" +msgstr "Eliminarea utilizatorilor selectați" + +#: js/messages.php:57 +#, fuzzy +msgid "Loading" +msgstr "Local" + +#: js/messages.php:58 +#, fuzzy +#| msgid "Processes" +msgid "Processing Request" +msgstr "Procese" + +#: js/messages.php:59 +msgid "Error in Processing Request" +msgstr "" + +#: js/messages.php:60 +msgid "Dropping Column" +msgstr "" + +#: js/messages.php:61 +msgid "Adding Primary Key" +msgstr "" + +#: js/messages.php:64 pmd_save_pos.php:54 msgid "Modifications have been saved" msgstr "Modificările au fost salvate" -#: js/messages.php:53 pmd_relation_upd.php:49 +#: js/messages.php:65 pmd_relation_upd.php:49 msgid "Relation deleted" msgstr "Relație ștearsă" -#: js/messages.php:54 pmd_relation_new.php:64 +#: js/messages.php:66 pmd_relation_new.php:64 msgid "FOREIGN KEY relation added" msgstr "FOREIGN KEY relation added" -#: js/messages.php:55 pmd_relation_new.php:86 +#: js/messages.php:67 pmd_relation_new.php:86 msgid "Internal relation added" msgstr "Relație internă adăugată" -#: js/messages.php:56 pmd_relation_new.php:63 pmd_relation_new.php:88 +#: js/messages.php:68 pmd_relation_new.php:63 pmd_relation_new.php:88 msgid "Error: Relation not added." msgstr "Eroare: Relația nu a fost adăugată." -#: js/messages.php:57 pmd_relation_new.php:31 +#: js/messages.php:69 pmd_relation_new.php:31 msgid "Error: relation already exists." msgstr "Eroare: relația deja există." -#: js/messages.php:58 +#: js/messages.php:70 msgid "Error saving coordinates for Designer." msgstr "Eroare la salvarea coordonatelor pentru Designer." -#: js/messages.php:59 libraries/relation.lib.php:107 +#: js/messages.php:71 libraries/relation.lib.php:107 #: libraries/relation.lib.php:119 msgid "General relation features" msgstr "Facilități generale" -#: js/messages.php:59 libraries/relation.lib.php:101 +#: js/messages.php:71 libraries/relation.lib.php:101 #: libraries/relation.lib.php:108 msgid "Disabled" msgstr "Dezactivat" -#: js/messages.php:60 +#: js/messages.php:72 msgid "Select referenced key" msgstr "Alegere cheie referențiată" -#: js/messages.php:61 +#: js/messages.php:73 msgid "Select Foreign Key" msgstr "Alegeți cheia străină" -#: js/messages.php:62 +#: js/messages.php:74 msgid "Please select the primary key or a unique key" msgstr "Vă rugăm să alegeți cheia primară sau o cheie unică" -#: js/messages.php:63 pmd_general.php:77 tbl_relation.php:548 +#: js/messages.php:75 pmd_general.php:77 tbl_relation.php:548 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" msgstr "Selectează un cîmp" #. l10n: Display text for calendar close link -#: js/messages.php:73 +#: js/messages.php:85 #, fuzzy msgid "Done" msgstr "Date" #. l10n: Display text for previous month link in calendar -#: js/messages.php:75 +#: js/messages.php:87 #, fuzzy #| msgid "Previous" msgid "Prev" msgstr "Anterior" #. l10n: Display text for next month link in calendar -#: js/messages.php:77 libraries/common.lib.php:2353 -#: libraries/common.lib.php:2356 libraries/display_tbl.lib.php:338 +#: js/messages.php:89 libraries/common.lib.php:2357 +#: libraries/common.lib.php:2360 libraries/display_tbl.lib.php:338 #: server_binlog.php:205 server_binlog.php:207 tbl_printview.php:424 -#: tbl_structure.php:801 +#: tbl_structure.php:799 msgid "Next" msgstr "Următorul" #. l10n: Display text for current month link in calendar -#: js/messages.php:79 +#: js/messages.php:91 #, fuzzy #| msgid "Total" msgid "Today" msgstr "Total" -#: js/messages.php:82 +#: js/messages.php:94 #, fuzzy #| msgid "Binary" msgid "January" msgstr "Binar" -#: js/messages.php:83 +#: js/messages.php:95 msgid "February" msgstr "" -#: js/messages.php:84 +#: js/messages.php:96 #, fuzzy #| msgid "Mar" msgid "March" msgstr "Mar" -#: js/messages.php:85 +#: js/messages.php:97 #, fuzzy #| msgid "Apr" msgid "April" msgstr "Apr" -#: js/messages.php:86 +#: js/messages.php:98 msgid "May" msgstr "Mai" -#: js/messages.php:87 +#: js/messages.php:99 #, fuzzy #| msgid "Jun" msgid "June" msgstr "Iun" -#: js/messages.php:88 +#: js/messages.php:100 #, fuzzy #| msgid "Jul" msgid "July" msgstr "Iul" -#: js/messages.php:89 +#: js/messages.php:101 #, fuzzy #| msgid "Aug" msgid "August" msgstr "Aug" -#: js/messages.php:90 +#: js/messages.php:102 msgid "September" msgstr "" -#: js/messages.php:91 +#: js/messages.php:103 #, fuzzy #| msgid "Oct" msgid "October" msgstr "Oct" -#: js/messages.php:92 +#: js/messages.php:104 msgid "November" msgstr "" -#: js/messages.php:93 +#: js/messages.php:105 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:97 libraries/common.lib.php:1557 +#: js/messages.php:109 libraries/common.lib.php:1557 msgid "Jan" msgstr "Ian" #. l10n: Short month name -#: js/messages.php:99 libraries/common.lib.php:1559 +#: js/messages.php:111 libraries/common.lib.php:1559 msgid "Feb" msgstr "Feb" #. l10n: Short month name -#: js/messages.php:101 libraries/common.lib.php:1561 +#: js/messages.php:113 libraries/common.lib.php:1561 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:103 libraries/common.lib.php:1563 +#: js/messages.php:115 libraries/common.lib.php:1563 msgid "Apr" msgstr "Apr" #. l10n: Short month name -#: js/messages.php:105 libraries/common.lib.php:1565 +#: js/messages.php:117 libraries/common.lib.php:1565 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1142,178 +1185,178 @@ msgid "May" msgstr "Mai" #. l10n: Short month name -#: js/messages.php:107 libraries/common.lib.php:1567 +#: js/messages.php:119 libraries/common.lib.php:1567 msgid "Jun" msgstr "Iun" #. l10n: Short month name -#: js/messages.php:109 libraries/common.lib.php:1569 +#: js/messages.php:121 libraries/common.lib.php:1569 msgid "Jul" msgstr "Iul" #. l10n: Short month name -#: js/messages.php:111 libraries/common.lib.php:1571 +#: js/messages.php:123 libraries/common.lib.php:1571 msgid "Aug" msgstr "Aug" #. l10n: Short month name -#: js/messages.php:113 libraries/common.lib.php:1573 +#: js/messages.php:125 libraries/common.lib.php:1573 msgid "Sep" msgstr "Sep" #. l10n: Short month name -#: js/messages.php:115 libraries/common.lib.php:1575 +#: js/messages.php:127 libraries/common.lib.php:1575 msgid "Oct" msgstr "Oct" #. l10n: Short month name -#: js/messages.php:117 libraries/common.lib.php:1577 +#: js/messages.php:129 libraries/common.lib.php:1577 msgid "Nov" msgstr "Noi" #. l10n: Short month name -#: js/messages.php:119 libraries/common.lib.php:1579 +#: js/messages.php:131 libraries/common.lib.php:1579 msgid "Dec" msgstr "Dec" -#: js/messages.php:122 +#: js/messages.php:134 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "Dum" -#: js/messages.php:123 +#: js/messages.php:135 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "Lun" -#: js/messages.php:124 +#: js/messages.php:136 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "Mar" -#: js/messages.php:125 +#: js/messages.php:137 msgid "Wednesday" msgstr "" -#: js/messages.php:126 +#: js/messages.php:138 msgid "Thursday" msgstr "" -#: js/messages.php:127 +#: js/messages.php:139 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "Vin" -#: js/messages.php:128 +#: js/messages.php:140 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:132 libraries/common.lib.php:1582 +#: js/messages.php:144 libraries/common.lib.php:1582 msgid "Sun" msgstr "Dum" #. l10n: Short week day name -#: js/messages.php:134 libraries/common.lib.php:1584 +#: js/messages.php:146 libraries/common.lib.php:1584 msgid "Mon" msgstr "Lun" #. l10n: Short week day name -#: js/messages.php:136 libraries/common.lib.php:1586 +#: js/messages.php:148 libraries/common.lib.php:1586 msgid "Tue" msgstr "Mar" #. l10n: Short week day name -#: js/messages.php:138 libraries/common.lib.php:1588 +#: js/messages.php:150 libraries/common.lib.php:1588 msgid "Wed" msgstr "Mie" #. l10n: Short week day name -#: js/messages.php:140 libraries/common.lib.php:1590 +#: js/messages.php:152 libraries/common.lib.php:1590 msgid "Thu" msgstr "Joi" #. l10n: Short week day name -#: js/messages.php:142 libraries/common.lib.php:1592 +#: js/messages.php:154 libraries/common.lib.php:1592 msgid "Fri" msgstr "Vin" #. l10n: Short week day name -#: js/messages.php:144 libraries/common.lib.php:1594 +#: js/messages.php:156 libraries/common.lib.php:1594 msgid "Sat" msgstr "Sâm" #. l10n: Minimal week day name -#: js/messages.php:148 +#: js/messages.php:160 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "Dum" #. l10n: Minimal week day name -#: js/messages.php:150 +#: js/messages.php:162 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "Lun" #. l10n: Minimal week day name -#: js/messages.php:152 +#: js/messages.php:164 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "Mar" #. l10n: Minimal week day name -#: js/messages.php:154 +#: js/messages.php:166 #, fuzzy #| msgid "Wed" msgid "We" msgstr "Mie" #. l10n: Minimal week day name -#: js/messages.php:156 +#: js/messages.php:168 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "Joi" #. l10n: Minimal week day name -#: js/messages.php:158 +#: js/messages.php:170 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "Vin" #. l10n: Minimal week day name -#: js/messages.php:160 +#: js/messages.php:172 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "Sâm" #. l10n: Column header for week of the year in calendar -#: js/messages.php:162 +#: js/messages.php:174 #, fuzzy #| msgid "Wiki" msgid "Wk" msgstr "Wiki" -#: js/messages.php:164 +#: js/messages.php:176 msgid "Hour" msgstr "" -#: js/messages.php:165 +#: js/messages.php:177 #, fuzzy #| msgid "in use" msgid "Minute" msgstr "în folosință" -#: js/messages.php:166 +#: js/messages.php:178 #, fuzzy #| msgid "per second" msgid "Second" @@ -1372,7 +1415,7 @@ msgstr "Indexuri" #: libraries/Index.class.php:444 libraries/mult_submits.inc.php:103 #: libraries/tbl_properties.inc.php:519 tbl_structure.php:33 -#: tbl_structure.php:155 tbl_structure.php:159 tbl_structure.php:474 +#: tbl_structure.php:155 tbl_structure.php:159 tbl_structure.php:472 #: tbl_tracking.php:322 msgid "Unique" msgstr "Unic" @@ -1413,8 +1456,8 @@ msgid "" "removed." msgstr "Indecșii %1$s și %2$s par a fi egali și unul din ei poate fi șters." -#: libraries/List_Database.class.php:431 libraries/server_links.inc.php:41 -#: server_databases.php:88 server_privileges.php:1660 +#: libraries/List_Database.class.php:431 libraries/server_links.inc.php:42 +#: server_databases.php:88 server_privileges.php:1680 #: setup/lib/messages.inc.php:110 test/theme.php:93 msgid "Databases" msgstr "Baze de date" @@ -1591,7 +1634,7 @@ msgstr "Parolă:" msgid "Server Choice" msgstr "Alegerea serverului" -#: libraries/auth/cookie.auth.lib.php:320 libraries/header.inc.php:59 +#: libraries/auth/cookie.auth.lib.php:320 libraries/header.inc.php:63 msgid "Cookies must be enabled past this point." msgstr "Trebuie sa aveti activat \"cookies\"." @@ -1673,7 +1716,7 @@ msgstr "" "Nu pot folosi funcțiile iconv nici libiconv nici recode_string în timp ce " "extensia este încărcată. Verificați configurația PHP." -#: libraries/common.inc.php:583 +#: libraries/common.inc.php:587 msgid "" "phpMyAdmin was unable to read your configuration file!
This might " "happen if PHP finds a parse error in it or PHP cannot find the file.
Daca primesti o pagina goala, totul " "pare sa fie bine." -#: libraries/common.inc.php:594 +#: libraries/common.inc.php:598 #, fuzzy, php-format #| msgid "Could not load default configuration from: \"%1$s\"" msgid "Could not load default configuration from: %1$s" msgstr "Nu s-a putut încărca configurația implicită din: „%1$s”" -#: libraries/common.inc.php:599 +#: libraries/common.inc.php:603 msgid "" "The $cfg['PmaAbsoluteUri'] directive MUST be set in your " "configuration file!" @@ -1703,30 +1746,30 @@ msgstr "" "Directiva $cfg['PmaAbsoluteUri'] TREBUIE să fie stabilită în " "fișierul de configurare!" -#: libraries/common.inc.php:629 +#: libraries/common.inc.php:633 #, fuzzy, php-format #| msgid "Invalid server index: \"%s\"" msgid "Invalid server index: %s" msgstr "Index de server nevalid: „%s”" -#: libraries/common.inc.php:636 +#: libraries/common.inc.php:640 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" "Gazdă nevalidă pentru serverul %1$s. Vă rugăm să revizuiți configurația " "dumneavoastră." -#: libraries/common.inc.php:645 libraries/header.inc.php:96 +#: libraries/common.inc.php:649 libraries/header.inc.php:100 #: libraries/select_server.lib.php:41 libraries/select_server.lib.php:47 #: main.php:185 test/theme.php:57 msgid "Server" msgstr "Server" -#: libraries/common.inc.php:823 +#: libraries/common.inc.php:827 msgid "Invalid authentication method set in configuration:" msgstr "Metodă de autentificare nevalidă stabilită în configurație:" -#: libraries/common.inc.php:926 +#: libraries/common.inc.php:930 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Ar trebui sa reactualizati serverul %s %s la o versiune mai noua." @@ -1860,45 +1903,45 @@ msgstr "." msgid "%B %d, %Y at %I:%M %p" msgstr "%d %B %Y la %H:%M" -#: libraries/common.lib.php:1907 +#: libraries/common.lib.php:1911 #, 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:2322 libraries/common.lib.php:2325 +#: libraries/common.lib.php:2326 libraries/common.lib.php:2329 #: libraries/display_tbl.lib.php:290 server_status.php:719 msgid "Begin" msgstr "Începe" -#: libraries/common.lib.php:2323 libraries/common.lib.php:2326 +#: libraries/common.lib.php:2327 libraries/common.lib.php:2330 #: libraries/display_tbl.lib.php:291 server_binlog.php:168 #: server_binlog.php:170 msgid "Previous" msgstr "Anterior" -#: libraries/common.lib.php:2354 libraries/common.lib.php:2357 +#: libraries/common.lib.php:2358 libraries/common.lib.php:2361 #: libraries/display_tbl.lib.php:353 msgid "End" msgstr "Sfîrșit" -#: libraries/common.lib.php:2430 +#: libraries/common.lib.php:2434 #, php-format msgid "Jump to database "%s"." msgstr "Sari la baza de date "%s"." -#: libraries/common.lib.php:2450 +#: libraries/common.lib.php:2454 #, 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:2830 libraries/common.lib.php:2837 +#: libraries/common.lib.php:2834 libraries/common.lib.php:2841 #: libraries/db_links.inc.php:68 libraries/export/sql.php:25 -#: libraries/import/sql.php:18 libraries/server_links.inc.php:45 +#: libraries/import/sql.php:18 libraries/server_links.inc.php:46 #: libraries/tbl_links.inc.php:60 querywindow.php:99 test/theme.php:97 msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2839 libraries/db_links.inc.php:104 +#: libraries/common.lib.php:2843 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,15 +1990,15 @@ msgstr "Interogare prin exemplu" msgid "Designer" msgstr "Designer" -#: libraries/db_links.inc.php:98 libraries/server_links.inc.php:88 +#: libraries/db_links.inc.php:98 libraries/server_links.inc.php:89 #: libraries/tbl_links.inc.php:91 pmd_pdf.php:84 pmd_pdf.php:110 #: setup/frames/menu.inc.php:21 msgid "Import" msgstr "Importă" -#: libraries/db_links.inc.php:111 libraries/server_links.inc.php:66 -#: server_privileges.php:111 server_privileges.php:1722 -#: server_privileges.php:2071 test/theme.php:117 +#: libraries/db_links.inc.php:111 libraries/server_links.inc.php:67 +#: server_privileges.php:112 server_privileges.php:1742 +#: server_privileges.php:2092 test/theme.php:117 msgid "Privileges" msgstr "Drepturi de acces" @@ -1974,7 +2017,7 @@ msgid "" msgstr "Poate fi aproximativ. Vezi FAQ 3.11" #: libraries/db_structure.lib.php:69 server_databases.php:142 -#: tbl_printview.php:336 tbl_structure.php:682 +#: tbl_printview.php:336 tbl_structure.php:680 msgid "Overhead" msgstr "Asupra" @@ -1991,7 +2034,7 @@ msgstr "Serverul nu răspunde" msgid "(or the local MySQL server's socket is not correctly configured)" msgstr "(sau soclul serverului MySQL local nu este configurat momentan)" -#: libraries/dbi/mysql.dbi.lib.php:362 tbl_structure.php:608 +#: libraries/dbi/mysql.dbi.lib.php:362 tbl_structure.php:606 msgid "Details..." msgstr "Detalii..." @@ -2001,22 +2044,22 @@ msgid "Change password" msgstr "Schimbare parolă" #: libraries/display_change_password.lib.php:35 -#: libraries/replication_gui.lib.php:345 server_privileges.php:807 +#: libraries/replication_gui.lib.php:345 server_privileges.php:808 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:796 -#: server_privileges.php:800 server_privileges.php:811 -#: server_privileges.php:1538 server_synchronize.php:1175 +#: libraries/replication_gui.lib.php:349 server_privileges.php:797 +#: server_privileges.php:801 server_privileges.php:812 +#: server_privileges.php:1558 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:815 server_privileges.php:818 +#: server_privileges.php:816 server_privileges.php:819 msgid "Re-type" msgstr "Re-tastează" @@ -2031,12 +2074,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:822 +#: libraries/replication_gui.lib.php:360 server_privileges.php:823 msgid "Generate Password" msgstr "Generează parolă" #: libraries/display_change_password.lib.php:75 -#: libraries/replication_gui.lib.php:363 server_privileges.php:825 +#: libraries/replication_gui.lib.php:363 server_privileges.php:826 msgid "Generate" msgstr "Generează" @@ -2049,8 +2092,8 @@ msgstr "Creează bază de date nouă" msgid "Create" msgstr "Creează" -#: libraries/display_create_database.lib.php:40 server_privileges.php:113 -#: server_privileges.php:1427 server_replication.php:35 +#: libraries/display_create_database.lib.php:40 server_privileges.php:114 +#: server_privileges.php:1447 server_replication.php:35 msgid "No Privileges" msgstr "Nu există drepturi de acces" @@ -2143,7 +2186,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:1875 server_processlist.php:75 +#: server_privileges.php:1895 server_processlist.php:75 msgid "None" msgstr "Nici unul(a)" @@ -2333,7 +2376,7 @@ msgstr "Sortare după cheie" #: libraries/import/docsql.php:34 libraries/import/ldi.php:47 #: libraries/import/ods.php:30 libraries/import/sql.php:20 #: libraries/import/xls.php:26 libraries/import/xlsx.php:26 -#: libraries/import/xml.php:25 tbl_select.php:267 tbl_structure.php:753 +#: libraries/import/xml.php:25 tbl_select.php:267 tbl_structure.php:751 msgid "Options" msgstr "Opțiuni" @@ -2410,7 +2453,7 @@ msgstr "comanda a durat %01.4f sec" #: libraries/display_tbl.lib.php:2089 libraries/mult_submits.inc.php:113 #: querywindow.php:125 querywindow.php:129 querywindow.php:132 -#: tbl_structure.php:25 tbl_structure.php:150 tbl_structure.php:470 +#: tbl_structure.php:25 tbl_structure.php:150 tbl_structure.php:468 msgid "Change" msgstr "Schimbare" @@ -2480,7 +2523,7 @@ msgstr "Buffer Pool Usage" #: libraries/engines/innodb.lib.php:194 server_databases.php:137 #: server_databases.php:305 server_status.php:525 server_status.php:586 -#: server_status.php:607 tbl_printview.php:351 tbl_structure.php:696 +#: server_status.php:607 tbl_printview.php:351 tbl_structure.php:694 msgid "Total" msgstr "Total" @@ -2767,7 +2810,7 @@ msgstr "" "number." #: libraries/export/codegen.php:37 setup/lib/messages.inc.php:88 -#: tbl_printview.php:376 tbl_structure.php:737 +#: tbl_printview.php:376 tbl_structure.php:735 msgid "Format" msgstr "Format" @@ -2839,8 +2882,8 @@ 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:576 server_replication.php:316 tbl_printview.php:317 -#: tbl_structure.php:665 +#: server_privileges.php:577 server_replication.php:316 tbl_printview.php:317 +#: tbl_structure.php:663 msgid "Data" msgstr "Date" @@ -2889,9 +2932,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:731 -#: server_privileges.php:734 server_privileges.php:790 -#: server_privileges.php:1537 server_privileges.php:2069 +#: libraries/replication_gui.lib.php:329 server_privileges.php:732 +#: server_privileges.php:735 server_privileges.php:791 +#: server_privileges.php:1557 server_privileges.php:2090 #: server_processlist.php:55 server_synchronize.php:1159 msgid "Host" msgstr "Gazda" @@ -3090,7 +3133,7 @@ msgstr "Modul de export" msgid "Open new phpMyAdmin window" msgstr "Deschide fereastră phpMyAdmin nouă" -#: libraries/header.inc.php:115 +#: libraries/header.inc.php:119 #, fuzzy msgid "New table" msgstr "Nu există tabele" @@ -3253,20 +3296,20 @@ 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 +#: tbl_structure.php:471 msgid "Primary" msgstr "Primar" #: libraries/mult_submits.inc.php:98 libraries/tbl_properties.inc.php:116 #: libraries/tbl_properties.inc.php:525 tbl_printview.php:326 #: tbl_structure.php:31 tbl_structure.php:154 tbl_structure.php:158 -#: tbl_structure.php:475 tbl_structure.php:673 +#: tbl_structure.php:473 tbl_structure.php:671 msgid "Index" msgstr "Index" #: libraries/mult_submits.inc.php:108 libraries/tbl_properties.inc.php:531 #: tbl_structure.php:35 tbl_structure.php:156 tbl_structure.php:160 -#: tbl_structure.php:478 +#: tbl_structure.php:476 msgid "Fulltext" msgstr "Tot textul" @@ -3568,8 +3611,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:711 -#: server_privileges.php:714 server_privileges.php:721 +#: libraries/replication_gui.lib.php:259 server_privileges.php:712 +#: server_privileges.php:715 server_privileges.php:722 #: server_synchronize.php:1171 msgid "User name" msgstr "Nume utilizator" @@ -3596,7 +3639,7 @@ msgstr "Variabil" #: 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 +#: tbl_structure.php:727 msgid "Value" msgstr "Valoare" @@ -3614,34 +3657,34 @@ msgstr "" msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:254 server_privileges.php:716 +#: libraries/replication_gui.lib.php:254 server_privileges.php:717 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:717 -#: server_privileges.php:784 server_privileges.php:808 -#: server_privileges.php:1928 server_privileges.php:1958 +#: libraries/replication_gui.lib.php:346 server_privileges.php:718 +#: server_privileges.php:785 server_privileges.php:809 +#: server_privileges.php:1948 server_privileges.php:1978 msgid "Use text field" msgstr "Utilizare cîmp text" -#: libraries/replication_gui.lib.php:302 server_privileges.php:764 +#: libraries/replication_gui.lib.php:302 server_privileges.php:765 msgid "Any host" msgstr "Oricare gazdă" -#: libraries/replication_gui.lib.php:306 server_privileges.php:768 +#: libraries/replication_gui.lib.php:306 server_privileges.php:769 msgid "Local" msgstr "Local" -#: libraries/replication_gui.lib.php:312 server_privileges.php:773 +#: libraries/replication_gui.lib.php:312 server_privileges.php:774 msgid "This Host" msgstr "Această gazdă" -#: libraries/replication_gui.lib.php:318 server_privileges.php:779 +#: libraries/replication_gui.lib.php:318 server_privileges.php:780 msgid "Use Host Table" msgstr "Utilizare tabel gazde" -#: libraries/replication_gui.lib.php:331 server_privileges.php:792 +#: libraries/replication_gui.lib.php:331 server_privileges.php:793 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -3675,29 +3718,29 @@ msgstr "Limbă necunoscută: %1$s." msgid "Servers" msgstr "Servere" -#: libraries/server_links.inc.php:53 server_engines.php:112 +#: libraries/server_links.inc.php:54 server_engines.php:112 #: server_engines.php:116 server_status.php:415 test/theme.php:105 msgid "Variables" msgstr "Variabile" -#: libraries/server_links.inc.php:57 test/theme.php:109 +#: libraries/server_links.inc.php:58 test/theme.php:109 msgid "Charsets" msgstr "Seturi de caractere" -#: libraries/server_links.inc.php:61 test/theme.php:113 +#: libraries/server_links.inc.php:62 test/theme.php:113 msgid "Engines" msgstr "Motoare" -#: libraries/server_links.inc.php:76 server_binlog.php:110 +#: libraries/server_links.inc.php:77 server_binlog.php:110 #: server_status.php:364 test/theme.php:121 msgid "Binary log" msgstr "Jurnal binar" -#: libraries/server_links.inc.php:80 +#: libraries/server_links.inc.php:81 msgid "Processes" msgstr "Procese" -#: libraries/server_links.inc.php:92 server_synchronize.php:1092 +#: libraries/server_links.inc.php:93 server_synchronize.php:1092 #: server_synchronize.php:1100 msgid "Synchronize" msgstr "" @@ -3947,13 +3990,13 @@ msgstr "Definiție PARTIȚIE" msgid "Save" msgstr "Salveaza" -#: libraries/tbl_properties.inc.php:780 tbl_structure.php:542 +#: libraries/tbl_properties.inc.php:780 tbl_structure.php:540 #, fuzzy, php-format #| msgid "Add %s field(s)" msgid "Add %s column(s)" msgstr "Adaugă %s cîmp(uri)" -#: libraries/tbl_properties.inc.php:784 tbl_structure.php:536 +#: libraries/tbl_properties.inc.php:784 tbl_structure.php:534 #, fuzzy #| msgid "You have to add at least one field." msgid "You have to add at least one column." @@ -4167,8 +4210,8 @@ msgstr "Resetare" msgid "Protocol version" msgstr "Versiune protocol" -#: main.php:189 server_privileges.php:1389 server_privileges.php:1536 -#: server_privileges.php:1650 server_privileges.php:2068 +#: main.php:189 server_privileges.php:1406 server_privileges.php:1556 +#: server_privileges.php:1670 server_privileges.php:2089 #: server_processlist.php:54 msgid "User" msgstr "Utilizator" @@ -4621,118 +4664,118 @@ msgstr "Motoare de stocare" msgid "View dump (schema) of databases" msgstr "Vizualizarea schemei bazei de date" -#: server_privileges.php:24 server_privileges.php:266 +#: server_privileges.php:25 server_privileges.php:267 msgid "Includes all privileges except GRANT." msgstr "Include toate privilegiile, excluzand GRANT." -#: server_privileges.php:25 server_privileges.php:192 -#: server_privileges.php:515 +#: server_privileges.php:26 server_privileges.php:193 +#: server_privileges.php:516 msgid "Allows altering the structure of existing tables." msgstr "Permite alterarea structurii la tabelele deja existente." -#: server_privileges.php:26 server_privileges.php:208 -#: server_privileges.php:521 +#: server_privileges.php:27 server_privileges.php:209 +#: server_privileges.php:522 msgid "Allows altering and dropping stored routines." msgstr "Permite alterarea și aruncarea rutinelor stocate." -#: server_privileges.php:27 server_privileges.php:184 -#: server_privileges.php:514 +#: server_privileges.php:28 server_privileges.php:185 +#: server_privileges.php:515 msgid "Allows creating new databases and tables." msgstr "Permite crearea de noi baze de date și tabele." -#: server_privileges.php:28 server_privileges.php:207 -#: server_privileges.php:520 +#: server_privileges.php:29 server_privileges.php:208 +#: server_privileges.php:521 msgid "Allows creating stored routines." msgstr "Permite crearea rutinelor stocate." -#: server_privileges.php:29 server_privileges.php:514 +#: server_privileges.php:30 server_privileges.php:515 msgid "Allows creating new tables." msgstr "Permite crearea de noi tabele." -#: server_privileges.php:30 server_privileges.php:195 -#: server_privileges.php:518 +#: server_privileges.php:31 server_privileges.php:196 +#: server_privileges.php:519 msgid "Allows creating temporary tables." msgstr "Permite crearea de tabele temporare." -#: server_privileges.php:31 server_privileges.php:209 -#: server_privileges.php:554 +#: server_privileges.php:32 server_privileges.php:210 +#: server_privileges.php:555 msgid "Allows creating, dropping and renaming user accounts." msgstr "Permite crearea, aruncarea și redenumirea conturilor de utilizator." -#: server_privileges.php:32 server_privileges.php:199 -#: server_privileges.php:203 server_privileges.php:526 -#: server_privileges.php:530 +#: server_privileges.php:33 server_privileges.php:200 +#: server_privileges.php:204 server_privileges.php:527 +#: server_privileges.php:531 msgid "Allows creating new views." msgstr "Permite crearea noilor viziuni." -#: server_privileges.php:33 server_privileges.php:183 -#: server_privileges.php:506 +#: server_privileges.php:34 server_privileges.php:184 +#: server_privileges.php:507 msgid "Allows deleting data." msgstr "Permite stergere de date." -#: server_privileges.php:34 server_privileges.php:185 -#: server_privileges.php:517 +#: server_privileges.php:35 server_privileges.php:186 +#: server_privileges.php:518 msgid "Allows dropping databases and tables." msgstr "Permite stergerea unei baze de date sau a unor tabele." -#: server_privileges.php:35 server_privileges.php:517 +#: server_privileges.php:36 server_privileges.php:518 msgid "Allows dropping tables." msgstr "Permite aruncarea a unei baze de date." -#: server_privileges.php:36 server_privileges.php:200 -#: server_privileges.php:534 +#: server_privileges.php:37 server_privileges.php:201 +#: server_privileges.php:535 msgid "Allows to set up events for the event scheduler" msgstr "Permite configurarea evenimentelor pentru planificatorul de evenimente" -#: server_privileges.php:37 server_privileges.php:210 -#: server_privileges.php:522 +#: server_privileges.php:38 server_privileges.php:211 +#: server_privileges.php:523 msgid "Allows executing stored routines." msgstr "Permite executarea rutinelor stocate." -#: server_privileges.php:38 server_privileges.php:189 -#: server_privileges.php:509 +#: server_privileges.php:39 server_privileges.php:190 +#: server_privileges.php:510 msgid "Allows importing data from and exporting data into files." msgstr "" "Permite importarea datelor in fisiere și exportarea acestora din fisiere." -#: server_privileges.php:39 server_privileges.php:540 +#: server_privileges.php:40 server_privileges.php:541 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "Permite adaugarea utilizatorilor și drepturilor fara reincarcarea tabelelor " "de drepturi." -#: server_privileges.php:40 server_privileges.php:191 -#: server_privileges.php:516 +#: server_privileges.php:41 server_privileges.php:192 +#: server_privileges.php:517 msgid "Allows creating and dropping indexes." msgstr "Permite crearea și stergerea indexurilor." -#: server_privileges.php:41 server_privileges.php:181 -#: server_privileges.php:442 server_privileges.php:504 +#: server_privileges.php:42 server_privileges.php:182 +#: server_privileges.php:443 server_privileges.php:505 msgid "Allows inserting and replacing data." msgstr "Permite inserarea și înlocuirea datelor." -#: server_privileges.php:42 server_privileges.php:196 -#: server_privileges.php:549 +#: server_privileges.php:43 server_privileges.php:197 +#: server_privileges.php:550 msgid "Allows locking tables for the current thread." msgstr "Permite blocarea tabelelor din firul curent de execuție." -#: server_privileges.php:43 server_privileges.php:646 -#: server_privileges.php:648 +#: server_privileges.php:44 server_privileges.php:647 +#: server_privileges.php:649 msgid "Limits the number of new connections the user may open per hour." msgstr "" "Limitează numărul de noi conexiuni care pot fi deschise de utilizator într-o " "oră." -#: server_privileges.php:44 server_privileges.php:634 -#: server_privileges.php:636 +#: server_privileges.php:45 server_privileges.php:635 +#: server_privileges.php:637 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" "Limiteaza numarul de comenzi care pot fi trimise de utilizator către server " "într-o oră." -#: server_privileges.php:45 server_privileges.php:640 -#: server_privileges.php:642 +#: server_privileges.php:46 server_privileges.php:641 +#: server_privileges.php:643 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -4740,61 +4783,61 @@ msgstr "" "Limitează numărul de comenzi pentru schimbarea vreunui tabel sau vreunei " "baze de date executabile de utilizator într-o oră." -#: server_privileges.php:46 server_privileges.php:652 -#: server_privileges.php:654 +#: server_privileges.php:47 server_privileges.php:653 +#: server_privileges.php:655 msgid "Limits the number of simultaneous connections the user may have." msgstr "" "Limitează numărul conexiunilor simultane pe care le poate avea utilizatorul." -#: server_privileges.php:47 server_privileges.php:188 -#: server_privileges.php:544 +#: server_privileges.php:48 server_privileges.php:189 +#: server_privileges.php:545 msgid "Allows viewing processes of all users" msgstr "Permite vizualizarea proceselor tuturor utilizatorilor" -#: server_privileges.php:48 server_privileges.php:190 -#: server_privileges.php:448 server_privileges.php:550 +#: server_privileges.php:49 server_privileges.php:191 +#: server_privileges.php:449 server_privileges.php:551 msgid "Has no effect in this MySQL version." msgstr "Nu are efect în această versiune MySQL." -#: server_privileges.php:49 server_privileges.php:186 -#: server_privileges.php:545 +#: server_privileges.php:50 server_privileges.php:187 +#: server_privileges.php:546 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" "Permite reîncărcarea setărilor de server și golirea memoriei cache a " "serverului." -#: server_privileges.php:50 server_privileges.php:198 -#: server_privileges.php:552 +#: server_privileges.php:51 server_privileges.php:199 +#: server_privileges.php:553 msgid "Allows the user to ask where the slaves / masters are." msgstr "Permite utilizatorului de a interoga locația slave/master." -#: server_privileges.php:51 server_privileges.php:197 -#: server_privileges.php:553 +#: server_privileges.php:52 server_privileges.php:198 +#: server_privileges.php:554 msgid "Needed for the replication slaves." msgstr "Necesară pentru „slave replication”." -#: server_privileges.php:52 server_privileges.php:180 -#: server_privileges.php:439 server_privileges.php:503 +#: server_privileges.php:53 server_privileges.php:181 +#: server_privileges.php:440 server_privileges.php:504 msgid "Allows reading data." msgstr "Permite citirea datelor." -#: server_privileges.php:53 server_privileges.php:193 -#: server_privileges.php:547 +#: server_privileges.php:54 server_privileges.php:194 +#: server_privileges.php:548 msgid "Gives access to the complete list of databases." msgstr "Permite accesul la lista completă a bazelor de date." -#: server_privileges.php:54 server_privileges.php:204 -#: server_privileges.php:206 server_privileges.php:519 +#: server_privileges.php:55 server_privileges.php:205 +#: server_privileges.php:207 server_privileges.php:520 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Permite executarea interogărilor SHOW CREATE VIEW." -#: server_privileges.php:55 server_privileges.php:187 -#: server_privileges.php:546 +#: server_privileges.php:56 server_privileges.php:188 +#: server_privileges.php:547 msgid "Allows shutting down the server." msgstr "Permite oprirea serverului." -#: server_privileges.php:56 server_privileges.php:194 -#: server_privileges.php:543 +#: server_privileges.php:57 server_privileges.php:195 +#: server_privileges.php:544 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -4804,160 +4847,160 @@ msgstr "" "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 +#: server_privileges.php:58 server_privileges.php:202 +#: server_privileges.php:536 msgid "Allows creating and dropping triggers" msgstr "Permite crearea și eliminarea declanșatorilor" -#: server_privileges.php:58 server_privileges.php:182 -#: server_privileges.php:445 server_privileges.php:505 +#: server_privileges.php:59 server_privileges.php:183 +#: server_privileges.php:446 server_privileges.php:506 msgid "Allows changing data." msgstr "Permite schimbarea datelor." -#: server_privileges.php:59 server_privileges.php:260 +#: server_privileges.php:60 server_privileges.php:261 msgid "No privileges." msgstr "Fără drepturi." -#: server_privileges.php:302 server_privileges.php:303 +#: server_privileges.php:303 server_privileges.php:304 #, fuzzy #| msgid "None" msgctxt "None privileges" msgid "None" msgstr "Nici unul(a)" -#: server_privileges.php:431 server_privileges.php:566 -#: server_privileges.php:1718 server_privileges.php:1724 +#: server_privileges.php:432 server_privileges.php:567 +#: server_privileges.php:1738 server_privileges.php:1744 msgid "Table-specific privileges" msgstr "Drepturi specifice de tabele" -#: server_privileges.php:432 server_privileges.php:574 -#: server_privileges.php:1540 +#: server_privileges.php:433 server_privileges.php:575 +#: server_privileges.php:1560 msgid " Note: MySQL privilege names are expressed in English " msgstr " Important: numele drepturilor de acces MySQL apar în engleză" -#: server_privileges.php:563 server_privileges.php:1539 +#: server_privileges.php:564 server_privileges.php:1559 msgid "Global privileges" msgstr "Privilegii globale" -#: server_privileges.php:565 server_privileges.php:1718 +#: server_privileges.php:566 server_privileges.php:1738 msgid "Database-specific privileges" msgstr "Drepturi specifice bazei de date" -#: server_privileges.php:610 +#: server_privileges.php:611 msgid "Administration" msgstr "Administrare" -#: server_privileges.php:630 +#: server_privileges.php:631 msgid "Resource limits" msgstr "Limitare de resurse" -#: server_privileges.php:631 +#: server_privileges.php:632 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "" "Observație: Prin stabilirea acestor opțiuni la 0 (zero) se elimină " "restricția." -#: server_privileges.php:708 +#: server_privileges.php:709 msgid "Login Information" msgstr "Informații de autentificare" -#: server_privileges.php:802 +#: server_privileges.php:803 msgid "Do not change the password" msgstr "Nu schimbați parola" -#: server_privileges.php:843 server_privileges.php:2205 +#: server_privileges.php:844 server_privileges.php:2226 #, fuzzy #| msgid "No user(s) found." msgid "No user found." msgstr "Nu s-a găsit nici un utilizator." -#: server_privileges.php:887 +#: server_privileges.php:888 #, php-format msgid "The user %s already exists!" msgstr "Utilizatorul %s există deja!" -#: server_privileges.php:970 +#: server_privileges.php:971 msgid "You have added a new user." msgstr "Ați adăugat un nou utilizator." -#: server_privileges.php:1191 +#: server_privileges.php:1196 #, php-format msgid "You have updated the privileges for %s." msgstr "Ați actualizat privilegiile pentru %s." -#: server_privileges.php:1215 +#: server_privileges.php:1220 #, php-format msgid "You have revoked the privileges for %s" msgstr "Drepturile tale au fost revocate pentru %s" -#: server_privileges.php:1251 +#: server_privileges.php:1256 #, php-format msgid "The password for %s was changed successfully." msgstr "Parola pentru %s a fost schimbată cu succes." -#: server_privileges.php:1271 +#: server_privileges.php:1276 #, php-format msgid "Deleting %s" msgstr "Șterge %s" -#: server_privileges.php:1282 +#: server_privileges.php:1287 msgid "No users selected for deleting!" msgstr "Nici un utilizator ales pentru ștergere!" -#: server_privileges.php:1285 +#: server_privileges.php:1290 msgid "Reloading the privileges" msgstr "Reîncărcarea drepturilor" -#: server_privileges.php:1300 +#: server_privileges.php:1305 msgid "The selected users have been deleted successfully." msgstr "Utilizatorii selectați au fost eliminați." -#: server_privileges.php:1335 +#: server_privileges.php:1344 msgid "The privileges were reloaded successfully." msgstr "Drepturile au fost reîncarcate cu succes." -#: server_privileges.php:1363 server_privileges.php:1649 +#: server_privileges.php:1380 server_privileges.php:1669 msgid "Edit Privileges" msgstr "Editează drepturile de acces" -#: server_privileges.php:1372 +#: server_privileges.php:1389 msgid "Revoke" msgstr "Revocare" -#: server_privileges.php:1404 +#: server_privileges.php:1424 msgid "User overview" msgstr "Descriere utilizator" -#: server_privileges.php:1541 server_privileges.php:1723 -#: server_privileges.php:2072 +#: server_privileges.php:1561 server_privileges.php:1743 +#: server_privileges.php:2093 msgid "Grant" msgstr "Permite" -#: server_privileges.php:1560 server_privileges.php:2162 +#: server_privileges.php:1580 server_privileges.php:2183 msgid "Any" msgstr "Oricare" -#: server_privileges.php:1609 server_privileges.php:1633 -#: server_privileges.php:2027 server_privileges.php:2216 +#: server_privileges.php:1629 server_privileges.php:1653 +#: server_privileges.php:2048 server_privileges.php:2237 msgid "Add a new User" msgstr "Adaugă un utilizator nou" -#: server_privileges.php:1614 +#: server_privileges.php:1634 msgid "Remove selected users" msgstr "Eliminarea utilizatorilor selectați" -#: server_privileges.php:1617 +#: server_privileges.php:1637 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:1618 server_privileges.php:1619 -#: server_privileges.php:1620 +#: server_privileges.php:1638 server_privileges.php:1639 +#: server_privileges.php:1640 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:1636 +#: server_privileges.php:1656 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -4970,94 +5013,94 @@ msgstr "" "În acest caz, reîncărcați de aici înainte de a continua %sreîncărcarea " "drepturilor%s." -#: server_privileges.php:1684 +#: server_privileges.php:1704 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:1724 +#: server_privileges.php:1744 msgid "Column-specific privileges" msgstr "Drepturi specifice coloanei" -#: server_privileges.php:1925 +#: server_privileges.php:1945 msgid "Add privileges on the following database" msgstr "Adaugă drepturi la baza de date următoare" -#: server_privileges.php:1943 +#: server_privileges.php:1963 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:1946 +#: server_privileges.php:1966 msgid "Add privileges on the following table" msgstr "Adaugă drepturi la următorul tabel" -#: server_privileges.php:2003 +#: server_privileges.php:2023 msgid "Change Login Information / Copy User" msgstr "Schimbă informațiile de autentificare/Copiază utilizator" -#: server_privileges.php:2006 +#: server_privileges.php:2026 msgid "Create a new user with the same privileges and ..." msgstr "Creează un utilizator nou cu aceleași privilegii și..." -#: server_privileges.php:2008 +#: server_privileges.php:2028 msgid "... keep the old one." msgstr "... menține cel vechi." -#: server_privileges.php:2009 +#: server_privileges.php:2029 msgid " ... delete the old one from the user tables." msgstr " ... șterge cel vechi din tabelul de utilizatori." -#: server_privileges.php:2010 +#: server_privileges.php:2030 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:2011 +#: server_privileges.php:2031 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:2033 +#: server_privileges.php:2054 msgid "Database for user" msgstr "Bază de date pentru utilizatorul" -#: server_privileges.php:2037 +#: server_privileges.php:2058 #, fuzzy #| msgid "None" msgctxt "Create none database for user" msgid "None" msgstr "Nici unul(a)" -#: server_privileges.php:2038 +#: server_privileges.php:2059 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:2039 +#: server_privileges.php:2060 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "Grant all privileges on wildcard name (username\\_%)" -#: server_privileges.php:2042 +#: server_privileges.php:2063 #, fuzzy, php-format msgid "Grant all privileges on database "%s"" msgstr "Verifică privilegiile pentru baza de date "%s"." -#: server_privileges.php:2065 +#: server_privileges.php:2086 #, php-format msgid "Users having access to "%s"" msgstr "Utilizatorul are acces la "%s"" -#: server_privileges.php:2173 +#: server_privileges.php:2194 msgid "global" msgstr "global" -#: server_privileges.php:2175 +#: server_privileges.php:2196 msgid "database-specific" msgstr "specific bazei de date" -#: server_privileges.php:2177 +#: server_privileges.php:2198 msgid "wildcard" msgstr "Metacaracter" @@ -7886,6 +7929,10 @@ msgstr "" msgid "Show insert query" msgstr "Afișare interogare SQL" +#: tbl_change.php:1143 +msgid "and then" +msgstr "și apoi" + #: tbl_change.php:1147 msgid "Go back to previous page" msgstr "Revenire" @@ -7967,7 +8014,7 @@ msgstr "" msgid "Add to index  %s column(s)" msgstr "Adaugă la coloana(ele) index  %s " -#: tbl_indexes.php:256 tbl_structure.php:589 tbl_structure.php:600 +#: tbl_indexes.php:256 tbl_structure.php:587 tbl_structure.php:598 msgid "Column count has to be larger than zero." msgstr "Numărul coloanelor trebuie să fie mai mare de zero." @@ -8081,39 +8128,39 @@ msgstr "Verificarea integrității referinței:" msgid "Show tables" msgstr "Arată tabelele" -#: tbl_printview.php:310 tbl_structure.php:656 +#: tbl_printview.php:310 tbl_structure.php:654 msgid "Space usage" msgstr "Utilizare spațiu" -#: tbl_printview.php:314 tbl_structure.php:660 +#: tbl_printview.php:314 tbl_structure.php:658 msgid "Usage" msgstr "Utilizare" -#: tbl_printview.php:341 tbl_structure.php:687 +#: tbl_printview.php:341 tbl_structure.php:685 msgid "Effective" msgstr "Efectiv" -#: tbl_printview.php:366 tbl_structure.php:725 +#: tbl_printview.php:366 tbl_structure.php:723 msgid "Row Statistics" msgstr "Statisticile rîndului" -#: tbl_printview.php:369 tbl_structure.php:728 +#: tbl_printview.php:369 tbl_structure.php:726 msgid "Statements" msgstr "Comenzi" -#: tbl_printview.php:380 tbl_structure.php:740 +#: tbl_printview.php:380 tbl_structure.php:738 msgid "static" msgstr "" -#: tbl_printview.php:382 tbl_structure.php:742 +#: tbl_printview.php:382 tbl_structure.php:740 msgid "dynamic" msgstr "dinamic" -#: tbl_printview.php:404 tbl_structure.php:785 +#: tbl_printview.php:404 tbl_structure.php:783 msgid "Row length" msgstr "Lungime linie" -#: tbl_printview.php:414 tbl_structure.php:793 +#: tbl_printview.php:414 tbl_structure.php:791 msgid " Row size " msgstr " Mărime linie " @@ -8188,50 +8235,50 @@ msgstr "Nici unul/una" msgid "Column %s has been dropped" msgstr "Tabelul %s a fost aruncat" -#: tbl_structure.php:385 +#: tbl_structure.php:384 #, php-format msgid "A primary key has been added on %s" msgstr "A fost adăugată o cheie primară la %s" -#: tbl_structure.php:400 tbl_structure.php:414 tbl_structure.php:428 +#: tbl_structure.php:398 tbl_structure.php:412 tbl_structure.php:426 #, php-format msgid "An index has been added on %s" msgstr "A fost adăugat un index la %s" -#: tbl_structure.php:506 tbl_structure.php:508 +#: tbl_structure.php:504 tbl_structure.php:506 msgid "Relation view" msgstr "Vizualizare relațională" -#: tbl_structure.php:515 tbl_structure.php:517 +#: tbl_structure.php:513 tbl_structure.php:515 msgid "Propose table structure" msgstr "Propune structura de tabele" -#: tbl_structure.php:540 +#: tbl_structure.php:538 #, fuzzy #| msgid "Add %s field(s)" msgid "Add column" msgstr "Adaugă %s cîmp(uri)" -#: tbl_structure.php:554 +#: tbl_structure.php:552 msgid "At End of Table" msgstr "La sfîrșitul tabelului" -#: tbl_structure.php:555 +#: tbl_structure.php:553 msgid "At Beginning of Table" msgstr "La începutul tabelului" -#: tbl_structure.php:556 +#: tbl_structure.php:554 #, php-format msgid "After %s" msgstr "După %s" -#: tbl_structure.php:594 +#: tbl_structure.php:592 #, fuzzy, php-format #| msgid "Create an index on %s columns" msgid "Create an index on  %s columns" msgstr "Creează un index pe %s coloană" -#: tbl_structure.php:756 +#: tbl_structure.php:754 msgid "partitioned" msgstr "partiționat" diff --git a/po/ru.po b/po/ru.po index ccb65dce3..ddf88bdfd 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-13 09:03-0400\n" +"POT-Creation-Date: 2010-06-22 00:55+0530\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:1514 +#: libraries/display_tbl.lib.php:417 server_privileges.php:1534 msgid "Show all" msgstr "Показать все" -#: browse_foreigners.php:82 libraries/common.lib.php:2313 +#: browse_foreigners.php:82 libraries/common.lib.php:2317 #: 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,18 +39,18 @@ 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:2831 -#: libraries/common.lib.php:2838 libraries/db_links.inc.php:75 +#: db_structure.php:106 libraries/common.lib.php:2835 +#: libraries/common.lib.php:2842 libraries/db_links.inc.php:75 #: libraries/tbl_links.inc.php:63 msgid "Search" msgstr "Поиск" -#: browse_foreigners.php:153 db_operations.php:385 db_operations.php:429 -#: db_operations.php:499 db_operations.php:609 db_search.php:362 -#: db_structure.php:567 js/messages.php:48 libraries/Config.class.php:1046 +#: browse_foreigners.php:153 db_operations.php:394 db_operations.php:438 +#: db_operations.php:508 db_operations.php:618 db_search.php:362 +#: db_structure.php:565 js/messages.php:53 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:1335 libraries/common.lib.php:2288 +#: libraries/common.lib.php:1335 libraries/common.lib.php:2292 #: 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,15 +61,15 @@ 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:664 server_privileges.php:1624 -#: server_privileges.php:1971 server_privileges.php:2018 -#: server_privileges.php:2057 server_replication.php:235 +#: server_privileges.php:665 server_privileges.php:1644 +#: server_privileges.php:1991 server_privileges.php:2038 +#: server_privileges.php:2078 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 #: tbl_operations.php:302 tbl_operations.php:499 tbl_operations.php:561 -#: tbl_operations.php:681 tbl_select.php:327 tbl_structure.php:562 -#: tbl_structure.php:597 tbl_tracking.php:395 tbl_tracking.php:512 +#: tbl_operations.php:681 tbl_select.php:327 tbl_structure.php:560 +#: tbl_structure.php:595 tbl_tracking.php:395 tbl_tracking.php:512 #: view_create.php:182 view_operations.php:101 msgid "Go" msgstr "OK" @@ -95,7 +95,7 @@ msgstr "Использовать это значение" msgid "Database %1$s has been created." msgstr "База данных %1$s была создана." -#: db_datadict.php:49 db_operations.php:378 +#: db_datadict.php:49 db_operations.php:387 msgid "Database comment: " msgstr "Комментарий к базе данных:" @@ -122,10 +122,10 @@ 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:2070 +#: pdf_schema.php:1263 pdf_schema.php:1284 server_privileges.php:2091 #: 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 +#: tbl_structure.php:657 tbl_tracking.php:274 tbl_tracking.php:321 msgid "Type" msgstr "Тип" @@ -138,7 +138,7 @@ msgstr "Тип" msgid "Null" msgstr "Null" -#: db_datadict.php:178 db_structure.php:501 libraries/export/htmlword.php:247 +#: db_datadict.php:178 db_structure.php:499 libraries/export/htmlword.php:247 #: libraries/export/latex.php:360 libraries/export/odt.php:303 #: libraries/export/texytext.php:236 libraries/tbl_properties.inc.php:106 #: pdf_schema.php:1266 pdf_schema.php:1287 tbl_printview.php:146 @@ -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: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 +#: pdf_schema.php:1344 server_privileges.php:1588 server_privileges.php:1599 +#: server_privileges.php:1909 server_privileges.php:1914 +#: server_privileges.php:2208 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:1565 -#: server_privileges.php:1579 server_privileges.php:1889 -#: server_privileges.php:1892 server_privileges.php:2187 sql.php:193 +#: server_databases.php:64 server_privileges.php:1585 +#: server_privileges.php:1599 server_privileges.php:1909 +#: server_privileges.php:1912 server_privileges.php:2208 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" @@ -211,125 +211,121 @@ msgstr "Выделить все" msgid "Unselect All" msgstr "Снять выделение" -#: db_operations.php:38 tbl_create.php:54 +#: db_operations.php:43 tbl_create.php:54 msgid "The database name is empty!" msgstr "Не указано имя базы данных!" -#: db_operations.php:236 +#: db_operations.php:241 #, php-format msgid "Database %s has been renamed to %s" msgstr "База данных `%s` переименована в `%s`." -#: db_operations.php:240 +#: db_operations.php:245 #, php-format msgid "Database %s has been copied to %s" msgstr "База данных %s была скопирована в %s" -#: db_operations.php:412 +#: db_operations.php:421 msgid "Rename database to" msgstr "Переименовать базу данных в" -#: db_operations.php:417 server_processlist.php:57 +#: db_operations.php:426 server_processlist.php:57 msgid "Command" msgstr "Команда" -#: db_operations.php:429 tbl_change.php:1143 -msgid "and then" -msgstr "и затем" - -#: db_operations.php:455 +#: db_operations.php:464 msgid "Copy database to" msgstr "Скопировать базу данных в" -#: db_operations.php:462 tbl_operations.php:528 tbl_tracking.php:388 +#: db_operations.php:471 tbl_operations.php:528 tbl_tracking.php:388 msgid "Structure only" msgstr "Только структура" -#: db_operations.php:463 tbl_operations.php:529 tbl_tracking.php:390 +#: db_operations.php:472 tbl_operations.php:529 tbl_tracking.php:390 msgid "Structure and data" msgstr "Структура и данные" -#: db_operations.php:464 tbl_operations.php:530 tbl_tracking.php:389 +#: db_operations.php:473 tbl_operations.php:530 tbl_tracking.php:389 msgid "Data only" msgstr "Только данные" -#: db_operations.php:472 +#: db_operations.php:481 msgid "CREATE DATABASE before copying" msgstr "Перед копированием создать базу данных (CREATE DATABASE)" -#: db_operations.php:475 libraries/export/sql.php:52 +#: db_operations.php:484 libraries/export/sql.php:52 #: libraries/export/sql.php:74 libraries/export/sql.php:76 #: libraries/export/sql.php:82 tbl_operations.php:536 #, php-format msgid "Add %s" msgstr "Добавить %s" -#: db_operations.php:479 libraries/export/sql.php:78 tbl_operations.php:299 +#: db_operations.php:488 libraries/export/sql.php:78 tbl_operations.php:299 #: tbl_operations.php:538 msgid "Add AUTO_INCREMENT value" msgstr "Добавить AUTO_INCREMENT" -#: db_operations.php:483 tbl_operations.php:545 +#: db_operations.php:492 tbl_operations.php:545 msgid "Add constraints" msgstr "Добавить ограничения" -#: db_operations.php:496 +#: db_operations.php:505 msgid "Switch to copied database" msgstr "Переключиться на скопированную базу данных" -#: db_operations.php:537 +#: db_operations.php:546 msgid "BLOB Repository" msgstr "Хранилище данных типа BLOB" -#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1352 -#: libraries/server_links.inc.php:49 server_processlist.php:59 +#: db_operations.php:549 db_tracking.php:76 libraries/common.lib.php:1352 +#: libraries/server_links.inc.php:50 server_processlist.php:59 #: tbl_tracking.php:596 test/theme.php:101 msgid "Status" msgstr "Состояние" -#: db_operations.php:548 +#: db_operations.php:557 #, fuzzy #| msgid "Enabled" msgctxt "BLOB repository" msgid "Enabled" msgstr "Доступно" -#: db_operations.php:552 +#: db_operations.php:561 msgid "Disable" msgstr "Отключить" -#: db_operations.php:562 +#: db_operations.php:571 msgid "Damaged" msgstr "Повреждено" -#: db_operations.php:566 +#: db_operations.php:575 #, fuzzy #| msgid "Repair" msgctxt "BLOB repository" msgid "Repair" msgstr "Исправление" -#: db_operations.php:574 +#: db_operations.php:583 #, fuzzy #| msgid "Disabled" msgctxt "BLOB repository" msgid "Disabled" msgstr "Недоступно" -#: db_operations.php:578 +#: db_operations.php:587 msgid "Enable" msgstr "Включить" -#: db_operations.php:602 libraries/Index.class.php:448 +#: db_operations.php:611 libraries/Index.class.php:448 #: libraries/db_structure.lib.php:62 libraries/mysql_charsets.lib.php:107 #: libraries/tbl_properties.inc.php:107 libraries/tbl_properties.inc.php:730 #: server_collations.php:54 server_collations.php:66 server_databases.php:111 #: tbl_operations.php:363 tbl_select.php:137 tbl_structure.php:179 -#: tbl_structure.php:767 tbl_tracking.php:275 tbl_tracking.php:326 +#: tbl_structure.php:765 tbl_tracking.php:275 tbl_tracking.php:326 msgid "Collation" msgstr "Сравнение" -#: db_operations.php:615 main.php:316 pdf_schema.php:34 +#: db_operations.php:624 main.php:316 pdf_schema.php:34 #, php-format msgid "" "The additional features for working with linked tables have been " @@ -338,14 +334,14 @@ msgstr "" "Дополнительные возможности для работы со связанными таблицами недоступны. " "Для определения причины нажмите %sздесь%s." -#: db_operations.php:648 +#: db_operations.php:657 msgid "Edit PDF Pages" 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:1665 -#: server_privileges.php:1721 server_privileges.php:1985 +#: libraries/header.inc.php:130 pdf_pages.php:424 server_privileges.php:1685 +#: server_privileges.php:1741 server_privileges.php:2005 #: server_synchronize.php:423 server_synchronize.php:866 tbl_tracking.php:592 #: test/theme.php:75 msgid "Table" @@ -354,7 +350,7 @@ msgstr "Таблица " #: db_printview.php:105 libraries/db_structure.lib.php:56 #: libraries/header_printview.inc.php:63 libraries/import.lib.php:146 #: navigation.php:638 navigation.php:660 server_databases.php:122 -#: tbl_printview.php:394 tbl_structure.php:365 tbl_structure.php:777 +#: tbl_printview.php:394 tbl_structure.php:365 tbl_structure.php:775 msgid "Rows" msgstr "Строки" @@ -362,30 +358,30 @@ msgstr "Строки" msgid "Size" msgstr "Размер" -#: db_printview.php:162 db_structure.php:457 libraries/export/sql.php:559 +#: db_printview.php:162 db_structure.php:455 libraries/export/sql.php:559 #: libraries/export/sql.php:899 msgid "in use" msgstr "используется" #: db_printview.php:187 libraries/db_info.inc.php:88 #: libraries/export/sql.php:514 pdf_schema.php:1241 tbl_printview.php:434 -#: tbl_structure.php:809 +#: tbl_structure.php:807 msgid "Creation" msgstr "Создание" #: db_printview.php:196 libraries/db_info.inc.php:93 #: libraries/export/sql.php:519 pdf_schema.php:1246 tbl_printview.php:444 -#: tbl_structure.php:817 +#: tbl_structure.php:815 msgid "Last update" msgstr "Последнее обновление" #: db_printview.php:205 libraries/db_info.inc.php:98 #: libraries/export/sql.php:524 pdf_schema.php:1251 tbl_printview.php:454 -#: tbl_structure.php:825 +#: tbl_structure.php:823 msgid "Last check" msgstr "Последняя проверка" -#: db_printview.php:222 db_structure.php:480 +#: db_printview.php:222 db_structure.php:478 #, fuzzy, php-format #| msgid "%s table(s)" msgid "%s table" @@ -448,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:297 tbl_change.php:1031 tbl_indexes.php:250 +#: server_privileges.php:298 tbl_change.php:1031 tbl_indexes.php:250 #: tbl_select.php:288 msgid "Or" msgstr "Или" @@ -521,9 +517,9 @@ 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:2833 +#: db_structure.php:105 libraries/common.lib.php:2837 #: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50 -#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:467 +#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:465 msgid "Browse" msgstr "Обзор" @@ -568,36 +564,36 @@ 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:2832 libraries/sql_query_form.lib.php:334 +#: libraries/common.lib.php:2836 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:2829 libraries/common.lib.php:2836 +#: libraries/common.lib.php:2833 libraries/common.lib.php:2840 #: 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:1106 #: libraries/tbl_links.inc.php:56 pmd_general.php:134 -#: server_privileges.php:593 server_replication.php:315 tbl_tracking.php:269 +#: server_privileges.php:594 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:1656 +#: db_structure.php:543 db_structure.php:544 db_tracking.php:91 +#: libraries/Index.class.php:483 libraries/common.lib.php:1657 #: 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 -#: tbl_structure.php:152 tbl_structure.php:471 +#: tbl_structure.php:152 tbl_structure.php:469 msgid "Drop" 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:1655 +#: db_structure.php:541 db_structure.php:542 libraries/common.lib.php:1656 #: libraries/mult_submits.inc.php:39 libraries/tbl_links.inc.php:105 msgid "Empty" msgstr "Очистить" @@ -607,25 +603,25 @@ msgstr "Очистить" msgid "Table %s has been emptied" msgstr "Таблица %s была очищена" -#: db_structure.php:326 libraries/tbl_links.inc.php:133 +#: db_structure.php:325 libraries/tbl_links.inc.php:133 #, php-format msgid "View %s has been dropped" msgstr "Представление %s было удалено" -#: db_structure.php:326 libraries/tbl_links.inc.php:133 +#: db_structure.php:325 libraries/tbl_links.inc.php:133 #, php-format msgid "Table %s has been dropped" msgstr "Таблица %s была удалена" -#: db_structure.php:333 +#: db_structure.php:332 msgid "Tracking is active." msgstr "Слежение включено." -#: db_structure.php:335 +#: db_structure.php:334 msgid "Tracking is not active." msgstr "Слежение выключено." -#: db_structure.php:420 libraries/display_tbl.lib.php:1944 +#: db_structure.php:418 libraries/display_tbl.lib.php:1944 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation%" @@ -634,86 +630,86 @@ msgstr "" "Данное представление имеет, по меньшей мере, указанное количество строк. " "Пожалуйста, обратитесь к %sдокументации%s." -#: db_structure.php:434 db_structure.php:448 libraries/header.inc.php:126 +#: db_structure.php:432 db_structure.php:446 libraries/header.inc.php:130 #: libraries/tbl_info.inc.php:66 tbl_structure.php:185 test/theme.php:74 msgid "View" msgstr "Представление" -#: db_structure.php:485 libraries/db_structure.lib.php:49 -#: libraries/server_links.inc.php:70 server_replication.php:33 +#: db_structure.php:483 libraries/db_structure.lib.php:49 +#: libraries/server_links.inc.php:71 server_replication.php:33 #: server_replication.php:164 server_status.php:369 msgid "Replication" msgstr "Репликация" -#: db_structure.php:489 +#: db_structure.php:487 msgid "Sum" msgstr "Всего" -#: db_structure.php:496 libraries/StorageEngine.class.php:356 +#: db_structure.php:494 libraries/StorageEngine.class.php:356 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "%s - тип таблиц данного MySQL сервера устанавливаемый по умолчанию." -#: db_structure.php:524 db_structure.php:541 db_structure.php:542 +#: db_structure.php:522 db_structure.php:539 db_structure.php:540 #: 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:1596 tbl_structure.php:455 -#: tbl_structure.php:464 +#: server_databases.php:351 server_privileges.php:1616 tbl_structure.php:453 +#: tbl_structure.php:462 msgid "With selected:" msgstr "С отмеченными:" -#: db_structure.php:527 libraries/display_tbl.lib.php:2076 -#: server_databases.php:348 server_privileges.php:569 -#: server_privileges.php:1599 tbl_structure.php:458 +#: db_structure.php:525 libraries/display_tbl.lib.php:2076 +#: server_databases.php:348 server_privileges.php:570 +#: server_privileges.php:1619 tbl_structure.php:456 msgid "Check All" msgstr "Отметить все" -#: db_structure.php:531 libraries/display_tbl.lib.php:2077 +#: db_structure.php:529 libraries/display_tbl.lib.php:2077 #: libraries/replication_gui.lib.php:33 server_databases.php:350 -#: server_privileges.php:572 server_privileges.php:1603 tbl_structure.php:462 +#: server_privileges.php:573 server_privileges.php:1623 tbl_structure.php:460 msgid "Uncheck All" msgstr "Снять выделение" -#: db_structure.php:536 +#: db_structure.php:534 msgid "Check tables having overhead" msgstr "Отметить требующие оптимизации" -#: db_structure.php:547 db_structure.php:548 db_structure.php:599 +#: db_structure.php:545 db_structure.php:546 db_structure.php:597 #: libraries/display_tbl.lib.php:2180 libraries/mult_submits.inc.php:28 -#: tbl_structure.php:492 tbl_structure.php:494 +#: tbl_structure.php:490 tbl_structure.php:492 msgid "Print view" msgstr "Версия для печати" -#: db_structure.php:549 db_structure.php:550 libraries/mult_submits.inc.php:42 +#: db_structure.php:547 db_structure.php:548 libraries/mult_submits.inc.php:42 #: tbl_operations.php:581 msgid "Check table" msgstr "Проверить таблицу" -#: db_structure.php:551 db_structure.php:552 libraries/mult_submits.inc.php:47 -#: tbl_operations.php:621 tbl_structure.php:709 tbl_structure.php:711 +#: db_structure.php:549 db_structure.php:550 libraries/mult_submits.inc.php:47 +#: tbl_operations.php:621 tbl_structure.php:707 tbl_structure.php:709 msgid "Optimize table" msgstr "Оптимизировать таблицу" -#: db_structure.php:553 db_structure.php:554 libraries/mult_submits.inc.php:52 +#: db_structure.php:551 db_structure.php:552 libraries/mult_submits.inc.php:52 #: tbl_operations.php:611 msgid "Repair table" msgstr "Восстановить таблицу" -#: db_structure.php:555 db_structure.php:556 libraries/mult_submits.inc.php:57 +#: db_structure.php:553 db_structure.php:554 libraries/mult_submits.inc.php:57 #: tbl_operations.php:601 msgid "Analyze table" msgstr "Анализ таблицы" -#: db_structure.php:557 db_structure.php:558 libraries/db_links.inc.php:71 +#: db_structure.php:555 db_structure.php:556 libraries/db_links.inc.php:71 #: 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:1380 +#: libraries/server_links.inc.php:85 libraries/tbl_links.inc.php:82 +#: pmd_pdf.php:84 pmd_pdf.php:109 server_privileges.php:1397 #: setup/frames/menu.inc.php:22 tbl_row_action.php:59 msgid "Export" msgstr "Экспорт" -#: db_structure.php:606 libraries/display_pdf_schema.lib.php:44 +#: db_structure.php:604 libraries/display_pdf_schema.lib.php:44 msgid "Data Dictionary" msgstr "Словарь данных" @@ -724,10 +720,10 @@ msgstr "Отслеживаемые таблицы" #: db_tracking.php:71 libraries/export/htmlword.php:86 #: libraries/export/latex.php:148 libraries/export/odt.php:113 #: libraries/export/sql.php:342 libraries/export/texytext.php:84 -#: libraries/export/xml.php:255 libraries/header.inc.php:106 +#: libraries/export/xml.php:255 libraries/header.inc.php:110 #: libraries/header_printview.inc.php:58 server_databases.php:169 -#: server_privileges.php:1660 server_privileges.php:1721 -#: server_privileges.php:1979 server_processlist.php:56 +#: server_privileges.php:1680 server_privileges.php:1741 +#: server_privileges.php:1999 server_processlist.php:56 #: server_synchronize.php:1179 server_synchronize.php:1183 #: tbl_tracking.php:591 test/theme.php:65 msgid "Database" @@ -747,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:1542 server_privileges.php:1725 -#: server_privileges.php:2073 tbl_structure.php:187 +#: server_privileges.php:1562 server_privileges.php:1745 +#: server_privileges.php:2094 tbl_structure.php:187 msgid "Action" msgstr "Действие" @@ -782,8 +778,8 @@ msgstr "Обзор структуры" msgid "Untracked tables" msgstr "Неотслеживаемые таблицы" -#: db_tracking.php:172 db_tracking.php:174 tbl_structure.php:528 -#: tbl_structure.php:530 +#: db_tracking.php:172 db_tracking.php:174 tbl_structure.php:526 +#: tbl_structure.php:528 msgid "Track table" msgstr "Отслеживать таблицу" @@ -953,189 +949,238 @@ msgstr "Пустое имя хоста!" msgid "The user name is empty!" msgstr "Не задано имя пользователя!" -#: js/messages.php:44 server_privileges.php:1236 user_password.php:70 +#: js/messages.php:44 server_privileges.php:1241 user_password.php:70 msgid "The password is empty!" msgstr "Пароль не задан!" -#: js/messages.php:45 server_privileges.php:1234 user_password.php:73 +#: js/messages.php:45 server_privileges.php:1239 user_password.php:73 msgid "The passwords aren't the same!" msgstr "Некорректное подтверждение пароля!" -#: js/messages.php:49 pmd_general.php:342 pmd_general.php:379 +#: js/messages.php:46 +#, fuzzy +#| msgid "Add a new User" +msgid "Add a New User" +msgstr "Добавить нового пользователя" + +#: js/messages.php:47 js/messages.php:54 pmd_general.php:342 +#: pmd_general.php:379 msgid "Cancel" msgstr "Отмена" -#: js/messages.php:52 pmd_save_pos.php:54 +#: js/messages.php:48 +#, fuzzy +#| msgid "Create version" +msgid "Create User" +msgstr "Создать версию" + +#: js/messages.php:49 +#, fuzzy +#| msgid "Reload privileges" +msgid "Reloading Privileges" +msgstr "Перезагрузить привилегии" + +#: js/messages.php:50 +#, fuzzy +#| msgid "Remove selected users" +msgid "Removing Selected Users" +msgstr "Удалить выделенных пользователей" + +#: js/messages.php:57 +#, fuzzy +#| msgid "Load" +msgid "Loading" +msgstr "Загрузить" + +#: js/messages.php:58 +#, fuzzy +#| msgid "Processes" +msgid "Processing Request" +msgstr "Процессы" + +#: js/messages.php:59 +msgid "Error in Processing Request" +msgstr "" + +#: js/messages.php:60 +msgid "Dropping Column" +msgstr "" + +#: js/messages.php:61 +msgid "Adding Primary Key" +msgstr "" + +#: js/messages.php:64 pmd_save_pos.php:54 msgid "Modifications have been saved" msgstr "Изменения сохранены" -#: js/messages.php:53 pmd_relation_upd.php:49 +#: js/messages.php:65 pmd_relation_upd.php:49 msgid "Relation deleted" msgstr "Связь удалена" -#: js/messages.php:54 pmd_relation_new.php:64 +#: js/messages.php:66 pmd_relation_new.php:64 msgid "FOREIGN KEY relation added" msgstr "Добавлена связь на внешний ключ (FOREIGN KEY)" -#: js/messages.php:55 pmd_relation_new.php:86 +#: js/messages.php:67 pmd_relation_new.php:86 msgid "Internal relation added" msgstr "Добавлена внутренняя связь" -#: js/messages.php:56 pmd_relation_new.php:63 pmd_relation_new.php:88 +#: js/messages.php:68 pmd_relation_new.php:63 pmd_relation_new.php:88 msgid "Error: Relation not added." msgstr "Ошибка: Связь не добавлена." -#: js/messages.php:57 pmd_relation_new.php:31 +#: js/messages.php:69 pmd_relation_new.php:31 msgid "Error: relation already exists." msgstr "Ошибка: Связь уже существует." -#: js/messages.php:58 +#: js/messages.php:70 msgid "Error saving coordinates for Designer." msgstr "Ошибка сохранения координат." -#: js/messages.php:59 libraries/relation.lib.php:107 +#: js/messages.php:71 libraries/relation.lib.php:107 #: libraries/relation.lib.php:119 msgid "General relation features" msgstr "Основные возможности связей" -#: js/messages.php:59 libraries/relation.lib.php:101 +#: js/messages.php:71 libraries/relation.lib.php:101 #: libraries/relation.lib.php:108 msgid "Disabled" msgstr "Недоступно" -#: js/messages.php:60 +#: js/messages.php:72 msgid "Select referenced key" msgstr "Выберите ссылочный ключ" -#: js/messages.php:61 +#: js/messages.php:73 msgid "Select Foreign Key" msgstr "Выберите внешний ключ" -#: js/messages.php:62 +#: js/messages.php:74 msgid "Please select the primary key or a unique key" msgstr "" "Выберите поле являющееся первичным (PRIMARY), или уникальным (UNIQUE) " "индексом!" -#: js/messages.php:63 pmd_general.php:77 tbl_relation.php:548 +#: js/messages.php:75 pmd_general.php:77 tbl_relation.php:548 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" msgstr "Выбор отображаемого столбца" #. l10n: Display text for calendar close link -#: js/messages.php:73 +#: js/messages.php:85 #, fuzzy #| msgid "Donate" msgid "Done" msgstr "Пожертвование" #. l10n: Display text for previous month link in calendar -#: js/messages.php:75 +#: js/messages.php:87 #, fuzzy #| msgid "Previous" msgid "Prev" msgstr "Назад" #. l10n: Display text for next month link in calendar -#: js/messages.php:77 libraries/common.lib.php:2353 -#: libraries/common.lib.php:2356 libraries/display_tbl.lib.php:338 +#: js/messages.php:89 libraries/common.lib.php:2357 +#: libraries/common.lib.php:2360 libraries/display_tbl.lib.php:338 #: server_binlog.php:205 server_binlog.php:207 tbl_printview.php:424 -#: tbl_structure.php:801 +#: tbl_structure.php:799 msgid "Next" msgstr "Следующий" #. l10n: Display text for current month link in calendar -#: js/messages.php:79 +#: js/messages.php:91 #, fuzzy #| msgid "Total" msgid "Today" msgstr "Всего" -#: js/messages.php:82 +#: js/messages.php:94 #, fuzzy #| msgid "Binary" msgid "January" msgstr "Двоичный" -#: js/messages.php:83 +#: js/messages.php:95 msgid "February" msgstr "" -#: js/messages.php:84 +#: js/messages.php:96 #, fuzzy #| msgid "Mar" msgid "March" msgstr "Мар" -#: js/messages.php:85 +#: js/messages.php:97 #, fuzzy #| msgid "Apr" msgid "April" msgstr "Апр" -#: js/messages.php:86 +#: js/messages.php:98 msgid "May" msgstr "Май" -#: js/messages.php:87 +#: js/messages.php:99 #, fuzzy #| msgid "Jun" msgid "June" msgstr "Июн" -#: js/messages.php:88 +#: js/messages.php:100 #, fuzzy #| msgid "Jul" msgid "July" msgstr "Июл" -#: js/messages.php:89 +#: js/messages.php:101 #, fuzzy #| msgid "Aug" msgid "August" msgstr "Авг" -#: js/messages.php:90 +#: js/messages.php:102 msgid "September" msgstr "" -#: js/messages.php:91 +#: js/messages.php:103 #, fuzzy #| msgid "Oct" msgid "October" msgstr "Окт" -#: js/messages.php:92 +#: js/messages.php:104 msgid "November" msgstr "" -#: js/messages.php:93 +#: js/messages.php:105 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:97 libraries/common.lib.php:1557 +#: js/messages.php:109 libraries/common.lib.php:1557 msgid "Jan" msgstr "Янв" #. l10n: Short month name -#: js/messages.php:99 libraries/common.lib.php:1559 +#: js/messages.php:111 libraries/common.lib.php:1559 msgid "Feb" msgstr "Фев" #. l10n: Short month name -#: js/messages.php:101 libraries/common.lib.php:1561 +#: js/messages.php:113 libraries/common.lib.php:1561 msgid "Mar" msgstr "Мар" #. l10n: Short month name -#: js/messages.php:103 libraries/common.lib.php:1563 +#: js/messages.php:115 libraries/common.lib.php:1563 msgid "Apr" msgstr "Апр" #. l10n: Short month name -#: js/messages.php:105 libraries/common.lib.php:1565 +#: js/messages.php:117 libraries/common.lib.php:1565 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1143,178 +1188,178 @@ msgid "May" msgstr "Май" #. l10n: Short month name -#: js/messages.php:107 libraries/common.lib.php:1567 +#: js/messages.php:119 libraries/common.lib.php:1567 msgid "Jun" msgstr "Июн" #. l10n: Short month name -#: js/messages.php:109 libraries/common.lib.php:1569 +#: js/messages.php:121 libraries/common.lib.php:1569 msgid "Jul" msgstr "Июл" #. l10n: Short month name -#: js/messages.php:111 libraries/common.lib.php:1571 +#: js/messages.php:123 libraries/common.lib.php:1571 msgid "Aug" msgstr "Авг" #. l10n: Short month name -#: js/messages.php:113 libraries/common.lib.php:1573 +#: js/messages.php:125 libraries/common.lib.php:1573 msgid "Sep" msgstr "Сен" #. l10n: Short month name -#: js/messages.php:115 libraries/common.lib.php:1575 +#: js/messages.php:127 libraries/common.lib.php:1575 msgid "Oct" msgstr "Окт" #. l10n: Short month name -#: js/messages.php:117 libraries/common.lib.php:1577 +#: js/messages.php:129 libraries/common.lib.php:1577 msgid "Nov" msgstr "Ноя" #. l10n: Short month name -#: js/messages.php:119 libraries/common.lib.php:1579 +#: js/messages.php:131 libraries/common.lib.php:1579 msgid "Dec" msgstr "Дек" -#: js/messages.php:122 +#: js/messages.php:134 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "Вс" -#: js/messages.php:123 +#: js/messages.php:135 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "Пн" -#: js/messages.php:124 +#: js/messages.php:136 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "Вт" -#: js/messages.php:125 +#: js/messages.php:137 msgid "Wednesday" msgstr "" -#: js/messages.php:126 +#: js/messages.php:138 msgid "Thursday" msgstr "" -#: js/messages.php:127 +#: js/messages.php:139 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "Пт" -#: js/messages.php:128 +#: js/messages.php:140 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:132 libraries/common.lib.php:1582 +#: js/messages.php:144 libraries/common.lib.php:1582 msgid "Sun" msgstr "Вс" #. l10n: Short week day name -#: js/messages.php:134 libraries/common.lib.php:1584 +#: js/messages.php:146 libraries/common.lib.php:1584 msgid "Mon" msgstr "Пн" #. l10n: Short week day name -#: js/messages.php:136 libraries/common.lib.php:1586 +#: js/messages.php:148 libraries/common.lib.php:1586 msgid "Tue" msgstr "Вт" #. l10n: Short week day name -#: js/messages.php:138 libraries/common.lib.php:1588 +#: js/messages.php:150 libraries/common.lib.php:1588 msgid "Wed" msgstr "Ср" #. l10n: Short week day name -#: js/messages.php:140 libraries/common.lib.php:1590 +#: js/messages.php:152 libraries/common.lib.php:1590 msgid "Thu" msgstr "Чт" #. l10n: Short week day name -#: js/messages.php:142 libraries/common.lib.php:1592 +#: js/messages.php:154 libraries/common.lib.php:1592 msgid "Fri" msgstr "Пт" #. l10n: Short week day name -#: js/messages.php:144 libraries/common.lib.php:1594 +#: js/messages.php:156 libraries/common.lib.php:1594 msgid "Sat" msgstr "Сб" #. l10n: Minimal week day name -#: js/messages.php:148 +#: js/messages.php:160 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "Вс" #. l10n: Minimal week day name -#: js/messages.php:150 +#: js/messages.php:162 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "Пн" #. l10n: Minimal week day name -#: js/messages.php:152 +#: js/messages.php:164 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "Вт" #. l10n: Minimal week day name -#: js/messages.php:154 +#: js/messages.php:166 #, fuzzy #| msgid "Wed" msgid "We" msgstr "Ср" #. l10n: Minimal week day name -#: js/messages.php:156 +#: js/messages.php:168 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "Чт" #. l10n: Minimal week day name -#: js/messages.php:158 +#: js/messages.php:170 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "Пт" #. l10n: Minimal week day name -#: js/messages.php:160 +#: js/messages.php:172 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "Сб" #. l10n: Column header for week of the year in calendar -#: js/messages.php:162 +#: js/messages.php:174 #, fuzzy #| msgid "Wiki" msgid "Wk" msgstr "Вики" -#: js/messages.php:164 +#: js/messages.php:176 msgid "Hour" msgstr "" -#: js/messages.php:165 +#: js/messages.php:177 #, fuzzy #| msgid "in use" msgid "Minute" msgstr "используется" -#: js/messages.php:166 +#: js/messages.php:178 #, fuzzy #| msgid "per second" msgid "Second" @@ -1375,7 +1420,7 @@ msgstr "Индексы" #: libraries/Index.class.php:444 libraries/mult_submits.inc.php:103 #: libraries/tbl_properties.inc.php:519 tbl_structure.php:33 -#: tbl_structure.php:155 tbl_structure.php:159 tbl_structure.php:474 +#: tbl_structure.php:155 tbl_structure.php:159 tbl_structure.php:472 #: tbl_tracking.php:322 msgid "Unique" msgstr "Уникальный" @@ -1416,8 +1461,8 @@ msgid "" "removed." msgstr "Индексы %1$s и %2$s равнозначны и один из них может быть удалён." -#: libraries/List_Database.class.php:431 libraries/server_links.inc.php:41 -#: server_databases.php:88 server_privileges.php:1660 +#: libraries/List_Database.class.php:431 libraries/server_links.inc.php:42 +#: server_databases.php:88 server_privileges.php:1680 #: setup/lib/messages.inc.php:110 test/theme.php:93 msgid "Databases" msgstr "Базы данных" @@ -1589,7 +1634,7 @@ msgstr "Пароль:" msgid "Server Choice" msgstr "Выбор сервера" -#: libraries/auth/cookie.auth.lib.php:320 libraries/header.inc.php:59 +#: libraries/auth/cookie.auth.lib.php:320 libraries/header.inc.php:63 msgid "Cookies must be enabled past this point." msgstr "Для полноценной работы необходима поддержка cookies браузером." @@ -1670,7 +1715,7 @@ msgstr "" "Несмотря на то что необходимые расширения загружены, использование функций " "iconv, libiconv или recode_string - невозможно. Проверьте настройки PHP." -#: libraries/common.inc.php:583 +#: libraries/common.inc.php:587 msgid "" "phpMyAdmin was unable to read your configuration file!
This might " "happen if PHP finds a parse error in it or PHP cannot find the file.
Если отобразится пустая страница - все в порядке." -#: libraries/common.inc.php:594 +#: libraries/common.inc.php:598 #, fuzzy, php-format #| msgid "Could not load default configuration from: \"%1$s\"" msgid "Could not load default configuration from: %1$s" msgstr "Невозможно загрузить изначальную конфигурацию из: "%1$s"" -#: libraries/common.inc.php:599 +#: libraries/common.inc.php:603 msgid "" "The $cfg['PmaAbsoluteUri'] directive MUST be set in your " "configuration file!" @@ -1700,31 +1745,31 @@ msgstr "" "Директива $cfg['PmaAbsoluteUri'] ДОЛЖНА быть установлена в " "конфигурационном файле!" -#: libraries/common.inc.php:629 +#: libraries/common.inc.php:633 #, fuzzy, php-format #| msgid "Invalid server index: \"%s\"" msgid "Invalid server index: %s" msgstr "Неправильный номер сервера: "%s"" -#: libraries/common.inc.php:636 +#: libraries/common.inc.php:640 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" "Для сервера %1$s указано неверное имя хоста. Исправьте настройки заданные в " "конфигурационном файле phpMyAdmin." -#: libraries/common.inc.php:645 libraries/header.inc.php:96 +#: libraries/common.inc.php:649 libraries/header.inc.php:100 #: libraries/select_server.lib.php:41 libraries/select_server.lib.php:47 #: main.php:185 test/theme.php:57 msgid "Server" msgstr "Сервер" -#: libraries/common.inc.php:823 +#: libraries/common.inc.php:827 msgid "Invalid authentication method set in configuration:" msgstr "" "В конфигурационном файле phpMyAdmin установлен неверный метод аутентификации:" -#: libraries/common.inc.php:926 +#: libraries/common.inc.php:930 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Необходимо обновить %s до версии %s или выше." @@ -1857,46 +1902,46 @@ msgstr "." msgid "%B %d, %Y at %I:%M %p" msgstr "%B %d %Y г., %H:%M" -#: libraries/common.lib.php:1907 +#: libraries/common.lib.php:1911 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s дней, %s часов, %s минут и %s секунд" -#: libraries/common.lib.php:2322 libraries/common.lib.php:2325 +#: libraries/common.lib.php:2326 libraries/common.lib.php:2329 #: libraries/display_tbl.lib.php:290 server_status.php:719 msgid "Begin" msgstr "Начало" -#: libraries/common.lib.php:2323 libraries/common.lib.php:2326 +#: libraries/common.lib.php:2327 libraries/common.lib.php:2330 #: libraries/display_tbl.lib.php:291 server_binlog.php:168 #: server_binlog.php:170 msgid "Previous" msgstr "Назад" -#: libraries/common.lib.php:2354 libraries/common.lib.php:2357 +#: libraries/common.lib.php:2358 libraries/common.lib.php:2361 #: libraries/display_tbl.lib.php:353 msgid "End" msgstr "Конец" -#: libraries/common.lib.php:2430 +#: libraries/common.lib.php:2434 #, php-format msgid "Jump to database "%s"." msgstr "Перейти к базе данных "%s"" -#: libraries/common.lib.php:2450 +#: libraries/common.lib.php:2454 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" "Работа параметра "%s" подвержена ошибке, описание смотрите на %s" -#: libraries/common.lib.php:2830 libraries/common.lib.php:2837 +#: libraries/common.lib.php:2834 libraries/common.lib.php:2841 #: libraries/db_links.inc.php:68 libraries/export/sql.php:25 -#: libraries/import/sql.php:18 libraries/server_links.inc.php:45 +#: libraries/import/sql.php:18 libraries/server_links.inc.php:46 #: libraries/tbl_links.inc.php:60 querywindow.php:99 test/theme.php:97 msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2839 libraries/db_links.inc.php:104 +#: libraries/common.lib.php:2843 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,15 +1990,15 @@ msgstr "Запрос по шаблону" msgid "Designer" msgstr "Дизайнер" -#: libraries/db_links.inc.php:98 libraries/server_links.inc.php:88 +#: libraries/db_links.inc.php:98 libraries/server_links.inc.php:89 #: libraries/tbl_links.inc.php:91 pmd_pdf.php:84 pmd_pdf.php:110 #: setup/frames/menu.inc.php:21 msgid "Import" msgstr "Импорт" -#: libraries/db_links.inc.php:111 libraries/server_links.inc.php:66 -#: server_privileges.php:111 server_privileges.php:1722 -#: server_privileges.php:2071 test/theme.php:117 +#: libraries/db_links.inc.php:111 libraries/server_links.inc.php:67 +#: server_privileges.php:112 server_privileges.php:1742 +#: server_privileges.php:2092 test/theme.php:117 msgid "Privileges" msgstr "Привилегии" @@ -1972,7 +2017,7 @@ msgid "" msgstr "Может быть приблизительно. См. FAQ 3.11" #: libraries/db_structure.lib.php:69 server_databases.php:142 -#: tbl_printview.php:336 tbl_structure.php:682 +#: tbl_printview.php:336 tbl_structure.php:680 msgid "Overhead" msgstr "Фрагментировано" @@ -1992,7 +2037,7 @@ msgstr "Сервер не отвечает" msgid "(or the local MySQL server's socket is not correctly configured)" msgstr "(либо сокет локального MySQL-сервера некорректно настроен)" -#: libraries/dbi/mysql.dbi.lib.php:362 tbl_structure.php:608 +#: libraries/dbi/mysql.dbi.lib.php:362 tbl_structure.php:606 msgid "Details..." msgstr "Детали..." @@ -2002,22 +2047,22 @@ msgid "Change password" msgstr "Изменить пароль" #: libraries/display_change_password.lib.php:35 -#: libraries/replication_gui.lib.php:345 server_privileges.php:807 +#: libraries/replication_gui.lib.php:345 server_privileges.php:808 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:796 -#: server_privileges.php:800 server_privileges.php:811 -#: server_privileges.php:1538 server_synchronize.php:1175 +#: libraries/replication_gui.lib.php:349 server_privileges.php:797 +#: server_privileges.php:801 server_privileges.php:812 +#: server_privileges.php:1558 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:815 server_privileges.php:818 +#: server_privileges.php:816 server_privileges.php:819 msgid "Re-type" msgstr "Подтверждение" @@ -2032,12 +2077,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:822 +#: libraries/replication_gui.lib.php:360 server_privileges.php:823 msgid "Generate Password" msgstr "Создать пароль" #: libraries/display_change_password.lib.php:75 -#: libraries/replication_gui.lib.php:363 server_privileges.php:825 +#: libraries/replication_gui.lib.php:363 server_privileges.php:826 msgid "Generate" msgstr "Генерировать" @@ -2050,8 +2095,8 @@ msgstr "Новая база данных" msgid "Create" msgstr "Создать" -#: libraries/display_create_database.lib.php:40 server_privileges.php:113 -#: server_privileges.php:1427 server_replication.php:35 +#: libraries/display_create_database.lib.php:40 server_privileges.php:114 +#: server_privileges.php:1447 server_replication.php:35 msgid "No Privileges" msgstr "Нет привилегий" @@ -2144,7 +2189,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:1875 server_processlist.php:75 +#: server_privileges.php:1895 server_processlist.php:75 msgid "None" msgstr "Нет" @@ -2337,7 +2382,7 @@ msgstr "Сортировать по индексу" #: libraries/import/docsql.php:34 libraries/import/ldi.php:47 #: libraries/import/ods.php:30 libraries/import/sql.php:20 #: libraries/import/xls.php:26 libraries/import/xlsx.php:26 -#: libraries/import/xml.php:25 tbl_select.php:267 tbl_structure.php:753 +#: libraries/import/xml.php:25 tbl_select.php:267 tbl_structure.php:751 msgid "Options" msgstr "Параметры" @@ -2414,7 +2459,7 @@ msgstr "запрос занял %01.4f сек." #: libraries/display_tbl.lib.php:2089 libraries/mult_submits.inc.php:113 #: querywindow.php:125 querywindow.php:129 querywindow.php:132 -#: tbl_structure.php:25 tbl_structure.php:150 tbl_structure.php:470 +#: tbl_structure.php:25 tbl_structure.php:150 tbl_structure.php:468 msgid "Change" msgstr "Изменить" @@ -2484,7 +2529,7 @@ msgstr "Использование" #: libraries/engines/innodb.lib.php:194 server_databases.php:137 #: server_databases.php:305 server_status.php:525 server_status.php:586 -#: server_status.php:607 tbl_printview.php:351 tbl_structure.php:696 +#: server_status.php:607 tbl_printview.php:351 tbl_structure.php:694 msgid "Total" msgstr "Всего" @@ -2776,7 +2821,7 @@ msgstr "" "порядковый номер." #: libraries/export/codegen.php:37 setup/lib/messages.inc.php:88 -#: tbl_printview.php:376 tbl_structure.php:737 +#: tbl_printview.php:376 tbl_structure.php:735 msgid "Format" msgstr "Формат" @@ -2850,8 +2895,8 @@ 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:576 server_replication.php:316 tbl_printview.php:317 -#: tbl_structure.php:665 +#: server_privileges.php:577 server_replication.php:316 tbl_printview.php:317 +#: tbl_structure.php:663 msgid "Data" msgstr "Данные" @@ -2900,9 +2945,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:731 -#: server_privileges.php:734 server_privileges.php:790 -#: server_privileges.php:1537 server_privileges.php:2069 +#: libraries/replication_gui.lib.php:329 server_privileges.php:732 +#: server_privileges.php:735 server_privileges.php:791 +#: server_privileges.php:1557 server_privileges.php:2090 #: server_processlist.php:55 server_synchronize.php:1159 msgid "Host" msgstr "Хост" @@ -3097,7 +3142,7 @@ msgstr "Экспортировать содержимое" msgid "Open new phpMyAdmin window" msgstr "Открыть phpMyAdmin в новом окне" -#: libraries/header.inc.php:115 +#: libraries/header.inc.php:119 #, fuzzy msgid "New table" msgstr "Нет таблиц" @@ -3260,20 +3305,20 @@ 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 +#: tbl_structure.php:471 msgid "Primary" msgstr "Первичный" #: libraries/mult_submits.inc.php:98 libraries/tbl_properties.inc.php:116 #: libraries/tbl_properties.inc.php:525 tbl_printview.php:326 #: tbl_structure.php:31 tbl_structure.php:154 tbl_structure.php:158 -#: tbl_structure.php:475 tbl_structure.php:673 +#: tbl_structure.php:473 tbl_structure.php:671 msgid "Index" msgstr "Индекс" #: libraries/mult_submits.inc.php:108 libraries/tbl_properties.inc.php:531 #: tbl_structure.php:35 tbl_structure.php:156 tbl_structure.php:160 -#: tbl_structure.php:478 +#: tbl_structure.php:476 msgid "Fulltext" msgstr "Полнотекстовый" @@ -3577,8 +3622,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:711 -#: server_privileges.php:714 server_privileges.php:721 +#: libraries/replication_gui.lib.php:259 server_privileges.php:712 +#: server_privileges.php:715 server_privileges.php:722 #: server_synchronize.php:1171 msgid "User name" msgstr "Имя пользователя" @@ -3602,7 +3647,7 @@ msgstr "Переменная" #: 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 +#: tbl_structure.php:727 msgid "Value" msgstr "Значение" @@ -3622,34 +3667,34 @@ msgstr "" msgid "Add slave replication user" msgstr "Добавьте подчиненного пользователя репликации" -#: libraries/replication_gui.lib.php:254 server_privileges.php:716 +#: libraries/replication_gui.lib.php:254 server_privileges.php:717 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:717 -#: server_privileges.php:784 server_privileges.php:808 -#: server_privileges.php:1928 server_privileges.php:1958 +#: libraries/replication_gui.lib.php:346 server_privileges.php:718 +#: server_privileges.php:785 server_privileges.php:809 +#: server_privileges.php:1948 server_privileges.php:1978 msgid "Use text field" msgstr "Использовать текстовое поле" -#: libraries/replication_gui.lib.php:302 server_privileges.php:764 +#: libraries/replication_gui.lib.php:302 server_privileges.php:765 msgid "Any host" msgstr "Любой хост" -#: libraries/replication_gui.lib.php:306 server_privileges.php:768 +#: libraries/replication_gui.lib.php:306 server_privileges.php:769 msgid "Local" msgstr "Локальный" -#: libraries/replication_gui.lib.php:312 server_privileges.php:773 +#: libraries/replication_gui.lib.php:312 server_privileges.php:774 msgid "This Host" msgstr "Этот хост" -#: libraries/replication_gui.lib.php:318 server_privileges.php:779 +#: libraries/replication_gui.lib.php:318 server_privileges.php:780 msgid "Use Host Table" msgstr "Использовать таблицу хостов" -#: libraries/replication_gui.lib.php:331 server_privileges.php:792 +#: libraries/replication_gui.lib.php:331 server_privileges.php:793 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -3685,29 +3730,29 @@ msgstr "Неизвестный язык: %1$s." msgid "Servers" msgstr "Сервера" -#: libraries/server_links.inc.php:53 server_engines.php:112 +#: libraries/server_links.inc.php:54 server_engines.php:112 #: server_engines.php:116 server_status.php:415 test/theme.php:105 msgid "Variables" msgstr "Переменные" -#: libraries/server_links.inc.php:57 test/theme.php:109 +#: libraries/server_links.inc.php:58 test/theme.php:109 msgid "Charsets" msgstr "Кодировки" -#: libraries/server_links.inc.php:61 test/theme.php:113 +#: libraries/server_links.inc.php:62 test/theme.php:113 msgid "Engines" msgstr "Типы таблиц" -#: libraries/server_links.inc.php:76 server_binlog.php:110 +#: libraries/server_links.inc.php:77 server_binlog.php:110 #: server_status.php:364 test/theme.php:121 msgid "Binary log" msgstr "Бинарный журнал" -#: libraries/server_links.inc.php:80 +#: libraries/server_links.inc.php:81 msgid "Processes" msgstr "Процессы" -#: libraries/server_links.inc.php:92 server_synchronize.php:1092 +#: libraries/server_links.inc.php:93 server_synchronize.php:1092 #: server_synchronize.php:1100 msgid "Synchronize" msgstr "Синхронизировать" @@ -3955,13 +4000,13 @@ msgstr "Определение разделов (PARTITION)" msgid "Save" msgstr "Сохранить" -#: libraries/tbl_properties.inc.php:780 tbl_structure.php:542 +#: libraries/tbl_properties.inc.php:780 tbl_structure.php:540 #, fuzzy, php-format #| msgid "Add column(s)" msgid "Add %s column(s)" msgstr "Добавить поле(я)" -#: libraries/tbl_properties.inc.php:784 tbl_structure.php:536 +#: libraries/tbl_properties.inc.php:784 tbl_structure.php:534 #, fuzzy #| msgid "You have to add at least one field." msgid "You have to add at least one column." @@ -4177,8 +4222,8 @@ msgstr "Сбросить" msgid "Protocol version" msgstr "Версия протокола" -#: main.php:189 server_privileges.php:1389 server_privileges.php:1536 -#: server_privileges.php:1650 server_privileges.php:2068 +#: main.php:189 server_privileges.php:1406 server_privileges.php:1556 +#: server_privileges.php:1670 server_privileges.php:2089 #: server_processlist.php:54 msgid "User" msgstr "Пользователь" @@ -4643,118 +4688,118 @@ msgstr "Типы таблиц" msgid "View dump (schema) of databases" msgstr "Отобразить дамп (схему) баз данных" -#: server_privileges.php:24 server_privileges.php:266 +#: server_privileges.php:25 server_privileges.php:267 msgid "Includes all privileges except GRANT." msgstr "Содержит все привилегии, за исключением GRANT" -#: server_privileges.php:25 server_privileges.php:192 -#: server_privileges.php:515 +#: server_privileges.php:26 server_privileges.php:193 +#: server_privileges.php:516 msgid "Allows altering the structure of existing tables." msgstr "Разрешает изменение структуры существующих таблиц" -#: server_privileges.php:26 server_privileges.php:208 -#: server_privileges.php:521 +#: server_privileges.php:27 server_privileges.php:209 +#: server_privileges.php:522 msgid "Allows altering and dropping stored routines." msgstr "Разрешает изменение и удаление хранимых процедур" -#: server_privileges.php:27 server_privileges.php:184 -#: server_privileges.php:514 +#: server_privileges.php:28 server_privileges.php:185 +#: server_privileges.php:515 msgid "Allows creating new databases and tables." msgstr "Разрешает создание новых баз данных и таблиц" -#: server_privileges.php:28 server_privileges.php:207 -#: server_privileges.php:520 +#: server_privileges.php:29 server_privileges.php:208 +#: server_privileges.php:521 msgid "Allows creating stored routines." msgstr "Разрешает создание хранимых процедур" -#: server_privileges.php:29 server_privileges.php:514 +#: server_privileges.php:30 server_privileges.php:515 msgid "Allows creating new tables." msgstr "Разрешает создание новых таблиц" -#: server_privileges.php:30 server_privileges.php:195 -#: server_privileges.php:518 +#: server_privileges.php:31 server_privileges.php:196 +#: server_privileges.php:519 msgid "Allows creating temporary tables." msgstr "Разрешает создание временных таблиц" -#: server_privileges.php:31 server_privileges.php:209 -#: server_privileges.php:554 +#: server_privileges.php:32 server_privileges.php:210 +#: server_privileges.php:555 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 +#: server_privileges.php:33 server_privileges.php:200 +#: server_privileges.php:204 server_privileges.php:527 +#: server_privileges.php:531 msgid "Allows creating new views." msgstr "Разрешает создание новых представлений (CREATE VIEW)" -#: server_privileges.php:33 server_privileges.php:183 -#: server_privileges.php:506 +#: server_privileges.php:34 server_privileges.php:184 +#: server_privileges.php:507 msgid "Allows deleting data." msgstr "Разрешает удаление данных" -#: server_privileges.php:34 server_privileges.php:185 -#: server_privileges.php:517 +#: server_privileges.php:35 server_privileges.php:186 +#: server_privileges.php:518 msgid "Allows dropping databases and tables." msgstr "Разрешает удаление баз данных и таблиц" -#: server_privileges.php:35 server_privileges.php:517 +#: server_privileges.php:36 server_privileges.php:518 msgid "Allows dropping tables." msgstr "Разрешает удаление таблиц" -#: server_privileges.php:36 server_privileges.php:200 -#: server_privileges.php:534 +#: server_privileges.php:37 server_privileges.php:201 +#: server_privileges.php:535 msgid "Allows to set up events for the event scheduler" msgstr "Разрешает настройку отложенных событий" -#: server_privileges.php:37 server_privileges.php:210 -#: server_privileges.php:522 +#: server_privileges.php:38 server_privileges.php:211 +#: server_privileges.php:523 msgid "Allows executing stored routines." msgstr "Разрешает выполнение хранимых процедур" -#: server_privileges.php:38 server_privileges.php:189 -#: server_privileges.php:509 +#: server_privileges.php:39 server_privileges.php:190 +#: server_privileges.php:510 msgid "Allows importing data from and exporting data into files." msgstr "Разрешает импорт и экспорт данных в файлы" -#: server_privileges.php:39 server_privileges.php:540 +#: server_privileges.php:40 server_privileges.php:541 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "Разрешает добавление пользователей и привилегий без перезагрузки таблиц " "привилегий" -#: server_privileges.php:40 server_privileges.php:191 -#: server_privileges.php:516 +#: server_privileges.php:41 server_privileges.php:192 +#: server_privileges.php:517 msgid "Allows creating and dropping indexes." msgstr "Разрешает создание и удаление индексов" -#: server_privileges.php:41 server_privileges.php:181 -#: server_privileges.php:442 server_privileges.php:504 +#: server_privileges.php:42 server_privileges.php:182 +#: server_privileges.php:443 server_privileges.php:505 msgid "Allows inserting and replacing data." msgstr "Разрешает вставку и замену данных" -#: server_privileges.php:42 server_privileges.php:196 -#: server_privileges.php:549 +#: server_privileges.php:43 server_privileges.php:197 +#: server_privileges.php:550 msgid "Allows locking tables for the current thread." msgstr "Разрешает блокировку таблиц для текущего потока" -#: server_privileges.php:43 server_privileges.php:646 -#: server_privileges.php:648 +#: server_privileges.php:44 server_privileges.php:647 +#: server_privileges.php:649 msgid "Limits the number of new connections the user may open per hour." msgstr "" "Максимальное количество новых подключений, которые пользователь может " "установить в течение часа" -#: server_privileges.php:44 server_privileges.php:634 -#: server_privileges.php:636 +#: server_privileges.php:45 server_privileges.php:635 +#: server_privileges.php:637 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" "Максимальное количество запросов, которые пользователь может отправить в " "течение часа" -#: server_privileges.php:45 server_privileges.php:640 -#: server_privileges.php:642 +#: server_privileges.php:46 server_privileges.php:641 +#: server_privileges.php:643 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -4762,58 +4807,58 @@ msgstr "" "Максимальное количество команд изменяющих какую-либо таблицу или базу " "данных, которые пользователь может выполнить в течение часа" -#: server_privileges.php:46 server_privileges.php:652 -#: server_privileges.php:654 +#: server_privileges.php:47 server_privileges.php:653 +#: server_privileges.php:655 msgid "Limits the number of simultaneous connections the user may have." msgstr "Максимальное количество одновременных подключений одного пользователя" -#: server_privileges.php:47 server_privileges.php:188 -#: server_privileges.php:544 +#: server_privileges.php:48 server_privileges.php:189 +#: server_privileges.php:545 msgid "Allows viewing processes of all users" msgstr "Разрешает просмотр процессов всех пользователей" -#: server_privileges.php:48 server_privileges.php:190 -#: server_privileges.php:448 server_privileges.php:550 +#: server_privileges.php:49 server_privileges.php:191 +#: server_privileges.php:449 server_privileges.php:551 msgid "Has no effect in this MySQL version." msgstr "Не доступно в данной версии MySQL!" -#: server_privileges.php:49 server_privileges.php:186 -#: server_privileges.php:545 +#: server_privileges.php:50 server_privileges.php:187 +#: server_privileges.php:546 msgid "Allows reloading server settings and flushing the server's caches." msgstr "Разрешает перезагрузку настроек сервера и очистку его кешей" -#: server_privileges.php:50 server_privileges.php:198 -#: server_privileges.php:552 +#: server_privileges.php:51 server_privileges.php:199 +#: server_privileges.php:553 msgid "Allows the user to ask where the slaves / masters are." msgstr "Разрешает запрашивать местонахождение головного и подчиненных серверов" -#: server_privileges.php:51 server_privileges.php:197 -#: server_privileges.php:553 +#: server_privileges.php:52 server_privileges.php:198 +#: server_privileges.php:554 msgid "Needed for the replication slaves." msgstr "Необходимо для подчиненных серверов при репликации" -#: server_privileges.php:52 server_privileges.php:180 -#: server_privileges.php:439 server_privileges.php:503 +#: server_privileges.php:53 server_privileges.php:181 +#: server_privileges.php:440 server_privileges.php:504 msgid "Allows reading data." msgstr "Разрешает выборку данных" -#: server_privileges.php:53 server_privileges.php:193 -#: server_privileges.php:547 +#: server_privileges.php:54 server_privileges.php:194 +#: server_privileges.php:548 msgid "Gives access to the complete list of databases." msgstr "Разрешает доступ к полному списку баз данных" -#: server_privileges.php:54 server_privileges.php:204 -#: server_privileges.php:206 server_privileges.php:519 +#: server_privileges.php:55 server_privileges.php:205 +#: server_privileges.php:207 server_privileges.php:520 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Разрешает вывод запроса создающего представление (SHOW CREATE VIEW)" -#: server_privileges.php:55 server_privileges.php:187 -#: server_privileges.php:546 +#: server_privileges.php:56 server_privileges.php:188 +#: server_privileges.php:547 msgid "Allows shutting down the server." msgstr "Разрешает остановку сервера" -#: server_privileges.php:56 server_privileges.php:194 -#: server_privileges.php:543 +#: server_privileges.php:57 server_privileges.php:195 +#: server_privileges.php:544 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -4824,157 +4869,157 @@ msgstr "" "установка глобальных переменных или завершение процессов других " "пользователей)" -#: server_privileges.php:57 server_privileges.php:201 -#: server_privileges.php:535 +#: server_privileges.php:58 server_privileges.php:202 +#: server_privileges.php:536 msgid "Allows creating and dropping triggers" msgstr "Разрешает создание и удаление триггеров" -#: server_privileges.php:58 server_privileges.php:182 -#: server_privileges.php:445 server_privileges.php:505 +#: server_privileges.php:59 server_privileges.php:183 +#: server_privileges.php:446 server_privileges.php:506 msgid "Allows changing data." msgstr "Разрешает изменение данных" -#: server_privileges.php:59 server_privileges.php:260 +#: server_privileges.php:60 server_privileges.php:261 msgid "No privileges." msgstr "Нет привилегий" -#: server_privileges.php:302 server_privileges.php:303 +#: server_privileges.php:303 server_privileges.php:304 #, fuzzy #| msgid "None" msgctxt "None privileges" msgid "None" msgstr "Нет" -#: server_privileges.php:431 server_privileges.php:566 -#: server_privileges.php:1718 server_privileges.php:1724 +#: server_privileges.php:432 server_privileges.php:567 +#: server_privileges.php:1738 server_privileges.php:1744 msgid "Table-specific privileges" msgstr " Привилегии уровня таблицы" -#: server_privileges.php:432 server_privileges.php:574 -#: server_privileges.php:1540 +#: server_privileges.php:433 server_privileges.php:575 +#: server_privileges.php:1560 msgid " Note: MySQL privilege names are expressed in English " msgstr "Примечание: типы привилегий MySQL отображаются по-английски." -#: server_privileges.php:563 server_privileges.php:1539 +#: server_privileges.php:564 server_privileges.php:1559 msgid "Global privileges" msgstr "Глобальные привилегии" -#: server_privileges.php:565 server_privileges.php:1718 +#: server_privileges.php:566 server_privileges.php:1738 msgid "Database-specific privileges" msgstr "Привилегии уровня базы данных" -#: server_privileges.php:610 +#: server_privileges.php:611 msgid "Administration" msgstr "Администрирование" -#: server_privileges.php:630 +#: server_privileges.php:631 msgid "Resource limits" msgstr "Ограничение на использование ресурсов" -#: server_privileges.php:631 +#: server_privileges.php:632 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "" "Замечание: Установка значения параметров в 0 (ноль), снимает ограничения." -#: server_privileges.php:708 +#: server_privileges.php:709 msgid "Login Information" msgstr "Информация учетной записи" -#: server_privileges.php:802 +#: server_privileges.php:803 msgid "Do not change the password" msgstr "Не менять пароль" -#: server_privileges.php:843 server_privileges.php:2205 +#: server_privileges.php:844 server_privileges.php:2226 #, fuzzy #| msgid "No user(s) found." msgid "No user found." msgstr "Пользователей не найдено." -#: server_privileges.php:887 +#: server_privileges.php:888 #, php-format msgid "The user %s already exists!" msgstr "Пользователь %s уже существует!" -#: server_privileges.php:970 +#: server_privileges.php:971 msgid "You have added a new user." msgstr "Был добавлен новый пользователь." -#: server_privileges.php:1191 +#: server_privileges.php:1196 #, php-format msgid "You have updated the privileges for %s." msgstr "Были изменены привилегии для %s." -#: server_privileges.php:1215 +#: server_privileges.php:1220 #, php-format msgid "You have revoked the privileges for %s" msgstr "Отменены привилегии для %s." -#: server_privileges.php:1251 +#: server_privileges.php:1256 #, php-format msgid "The password for %s was changed successfully." msgstr "Пароль для %s был успешно изменен." -#: server_privileges.php:1271 +#: server_privileges.php:1276 #, php-format msgid "Deleting %s" msgstr "Удаление %s" -#: server_privileges.php:1282 +#: server_privileges.php:1287 msgid "No users selected for deleting!" msgstr "Не выбраны пользователи подлежащие удалению!" -#: server_privileges.php:1285 +#: server_privileges.php:1290 msgid "Reloading the privileges" msgstr "Перезагрузка привилегий" -#: server_privileges.php:1300 +#: server_privileges.php:1305 msgid "The selected users have been deleted successfully." msgstr "Выбранные пользователи были успешно удалены." -#: server_privileges.php:1335 +#: server_privileges.php:1344 msgid "The privileges were reloaded successfully." msgstr "Привилегии были успешно перезагружены." -#: server_privileges.php:1363 server_privileges.php:1649 +#: server_privileges.php:1380 server_privileges.php:1669 msgid "Edit Privileges" msgstr "Редактирование привилегий" -#: server_privileges.php:1372 +#: server_privileges.php:1389 msgid "Revoke" msgstr "Отменить" -#: server_privileges.php:1404 +#: server_privileges.php:1424 msgid "User overview" msgstr "Обзор учетных записей" -#: server_privileges.php:1541 server_privileges.php:1723 -#: server_privileges.php:2072 +#: server_privileges.php:1561 server_privileges.php:1743 +#: server_privileges.php:2093 msgid "Grant" msgstr "GRANT" -#: server_privileges.php:1560 server_privileges.php:2162 +#: server_privileges.php:1580 server_privileges.php:2183 msgid "Any" msgstr "Любой" -#: server_privileges.php:1609 server_privileges.php:1633 -#: server_privileges.php:2027 server_privileges.php:2216 +#: server_privileges.php:1629 server_privileges.php:1653 +#: server_privileges.php:2048 server_privileges.php:2237 msgid "Add a new User" msgstr "Добавить нового пользователя" -#: server_privileges.php:1614 +#: server_privileges.php:1634 msgid "Remove selected users" msgstr "Удалить выделенных пользователей" -#: server_privileges.php:1617 +#: server_privileges.php:1637 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 +#: server_privileges.php:1638 server_privileges.php:1639 +#: server_privileges.php:1640 msgid "Drop the databases that have the same names as the users." msgstr "Удалить базы данных, имена которых совпадают с именами пользователей." -#: server_privileges.php:1636 +#: server_privileges.php:1656 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -4987,98 +5032,98 @@ msgstr "" "отличаться от привилегий, используемых сервером, если они были изменены " "вручную. В таком случае необходимо %sперезагрузить привилегии%s." -#: server_privileges.php:1684 +#: server_privileges.php:1704 msgid "The selected user was not found in the privilege table." msgstr "Выделенный пользователь не был найден в таблице привилегий." -#: server_privileges.php:1724 +#: server_privileges.php:1744 msgid "Column-specific privileges" msgstr "Привилегии уровня столбца" -#: server_privileges.php:1925 +#: server_privileges.php:1945 msgid "Add privileges on the following database" msgstr "Добавить привилегии на следующую базу" -#: server_privileges.php:1943 +#: server_privileges.php:1963 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" "При использовании в имени базы данных символов нижнего подчеркивания (_) и " "процента (%), необходимо экранировать их символом обратной косой черты (\\), " "в противном случае они будут интерпретированы как групповые символы" -#: server_privileges.php:1946 +#: server_privileges.php:1966 msgid "Add privileges on the following table" msgstr " Добавить привилегии на следующую таблицу" -#: server_privileges.php:2003 +#: server_privileges.php:2023 msgid "Change Login Information / Copy User" msgstr "Изменить/Копировать учетную запись" -#: server_privileges.php:2006 +#: server_privileges.php:2026 msgid "Create a new user with the same privileges and ..." msgstr "Создать нового пользователя с такими же привилегиями..." -#: server_privileges.php:2008 +#: server_privileges.php:2028 msgid "... keep the old one." msgstr "и сохранить старого." -#: server_privileges.php:2009 +#: server_privileges.php:2029 msgid " ... delete the old one from the user tables." msgstr "и удалить старого из таблиц пользователей." -#: server_privileges.php:2010 +#: server_privileges.php:2030 msgid "" " ... revoke all active privileges from the old one and delete it afterwards." msgstr ", отменить все активные привилегии старого и затем удалить его." -#: server_privileges.php:2011 +#: server_privileges.php:2031 msgid "" " ... delete the old one from the user tables and reload the privileges " "afterwards." msgstr ", удалить старого из таблиц пользователей и перезагрузить привилегии." -#: server_privileges.php:2033 +#: server_privileges.php:2054 msgid "Database for user" msgstr "База данных для пользователя" -#: server_privileges.php:2037 +#: server_privileges.php:2058 #, fuzzy #| msgid "None" msgctxt "Create none database for user" msgid "None" msgstr "Нет" -#: server_privileges.php:2038 +#: server_privileges.php:2059 msgid "Create database with same name and grant all privileges" msgstr "" "Создать базу данных с именем пользователя в названии и предоставить на нее " "полные привилегии" -#: server_privileges.php:2039 +#: server_privileges.php:2060 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "" "Предоставить полные привилегии на базы данных подпадающие под шаблон (имя " "пользователя\\_%)" -#: server_privileges.php:2042 +#: server_privileges.php:2063 #, php-format msgid "Grant all privileges on database "%s"" msgstr "Выставить полные привилегии на базу данных "%s"" -#: server_privileges.php:2065 +#: server_privileges.php:2086 #, php-format msgid "Users having access to "%s"" msgstr "Пользователи с правами доступа к "%s"" -#: server_privileges.php:2173 +#: server_privileges.php:2194 msgid "global" msgstr "Глобальный уровень" -#: server_privileges.php:2175 +#: server_privileges.php:2196 msgid "database-specific" msgstr "Уровень базы данных" -#: server_privileges.php:2177 +#: server_privileges.php:2198 msgid "wildcard" msgstr "Групповой символ" @@ -8159,6 +8204,10 @@ msgstr "" msgid "Show insert query" msgstr "Отображает SQL-запрос" +#: tbl_change.php:1143 +msgid "and then" +msgstr "и затем" + #: tbl_change.php:1147 msgid "Go back to previous page" msgstr "Вернуться на предыдущую страницу" @@ -8239,7 +8288,7 @@ msgstr "(Имя "PRIMARY" должен иметь только msgid "Add to index  %s column(s)" msgstr "Добавить к индексу %s столбец(ы)" -#: tbl_indexes.php:256 tbl_structure.php:589 tbl_structure.php:600 +#: tbl_indexes.php:256 tbl_structure.php:587 tbl_structure.php:598 msgid "Column count has to be larger than zero." msgstr "Количество столбцов должно быть больше нуля." @@ -8353,39 +8402,39 @@ msgstr "Проверить целостность данных:" msgid "Show tables" msgstr "Отображение таблиц" -#: tbl_printview.php:310 tbl_structure.php:656 +#: tbl_printview.php:310 tbl_structure.php:654 msgid "Space usage" msgstr "Используемое пространство" -#: tbl_printview.php:314 tbl_structure.php:660 +#: tbl_printview.php:314 tbl_structure.php:658 msgid "Usage" msgstr "Использование" -#: tbl_printview.php:341 tbl_structure.php:687 +#: tbl_printview.php:341 tbl_structure.php:685 msgid "Effective" msgstr "Эффективность" -#: tbl_printview.php:366 tbl_structure.php:725 +#: tbl_printview.php:366 tbl_structure.php:723 msgid "Row Statistics" msgstr "Статистика строк" -#: tbl_printview.php:369 tbl_structure.php:728 +#: tbl_printview.php:369 tbl_structure.php:726 msgid "Statements" msgstr "Характеристика" -#: tbl_printview.php:380 tbl_structure.php:740 +#: tbl_printview.php:380 tbl_structure.php:738 msgid "static" msgstr "статический" -#: tbl_printview.php:382 tbl_structure.php:742 +#: tbl_printview.php:382 tbl_structure.php:740 msgid "dynamic" msgstr "динамический" -#: tbl_printview.php:404 tbl_structure.php:785 +#: tbl_printview.php:404 tbl_structure.php:783 msgid "Row length" msgstr "Длина строки" -#: tbl_printview.php:414 tbl_structure.php:793 +#: tbl_printview.php:414 tbl_structure.php:791 msgid " Row size " msgstr "Размер строки" @@ -8461,50 +8510,50 @@ msgstr "Нет" msgid "Column %s has been dropped" msgstr "Таблица %s была удалена" -#: tbl_structure.php:385 +#: tbl_structure.php:384 #, php-format msgid "A primary key has been added on %s" msgstr "Был добавлен первичный ключ к %s" -#: tbl_structure.php:400 tbl_structure.php:414 tbl_structure.php:428 +#: tbl_structure.php:398 tbl_structure.php:412 tbl_structure.php:426 #, php-format msgid "An index has been added on %s" msgstr "Был добавлен индекс для %s" -#: tbl_structure.php:506 tbl_structure.php:508 +#: tbl_structure.php:504 tbl_structure.php:506 msgid "Relation view" msgstr "Связи" -#: tbl_structure.php:515 tbl_structure.php:517 +#: tbl_structure.php:513 tbl_structure.php:515 msgid "Propose table structure" msgstr "Анализ структуры таблицы" -#: tbl_structure.php:540 +#: tbl_structure.php:538 #, fuzzy #| msgid "Add column(s)" msgid "Add column" msgstr "Добавить поле(я)" -#: tbl_structure.php:554 +#: tbl_structure.php:552 msgid "At End of Table" msgstr "В конец таблицы" -#: tbl_structure.php:555 +#: tbl_structure.php:553 msgid "At Beginning of Table" msgstr "В начало таблицы" -#: tbl_structure.php:556 +#: tbl_structure.php:554 #, php-format msgid "After %s" msgstr "После %s" -#: tbl_structure.php:594 +#: tbl_structure.php:592 #, fuzzy, php-format #| msgid "Create an index on %s columns" msgid "Create an index on  %s columns" msgstr "Создать индекс для  %s  столбца/ов" -#: tbl_structure.php:756 +#: tbl_structure.php:754 msgid "partitioned" msgstr "разделён" @@ -9005,9 +9054,6 @@ msgstr "Переименовать таблицу в" #~ msgid "Process list" #~ msgstr "Список процессов" -#~ msgid "Reload privileges" -#~ msgstr "Перезагрузить привилегии" - #~ msgid "" #~ "The users will still have the USAGE privilege until the privileges are " #~ "reloaded." diff --git a/po/si.po b/po/si.po index dd40c9f40..2c263fc22 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-13 09:03-0400\n" +"POT-Creation-Date: 2010-06-22 00:55+0530\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:1514 +#: libraries/display_tbl.lib.php:417 server_privileges.php:1534 msgid "Show all" msgstr "සියල්ල පෙන්වන්න" -#: browse_foreigners.php:82 libraries/common.lib.php:2313 +#: browse_foreigners.php:82 libraries/common.lib.php:2317 #: 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,18 +37,18 @@ 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:2831 -#: libraries/common.lib.php:2838 libraries/db_links.inc.php:75 +#: db_structure.php:106 libraries/common.lib.php:2835 +#: libraries/common.lib.php:2842 libraries/db_links.inc.php:75 #: libraries/tbl_links.inc.php:63 msgid "Search" msgstr "සෙවීම" -#: browse_foreigners.php:153 db_operations.php:385 db_operations.php:429 -#: db_operations.php:499 db_operations.php:609 db_search.php:362 -#: db_structure.php:567 js/messages.php:48 libraries/Config.class.php:1046 +#: browse_foreigners.php:153 db_operations.php:394 db_operations.php:438 +#: db_operations.php:508 db_operations.php:618 db_search.php:362 +#: db_structure.php:565 js/messages.php:53 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:1335 libraries/common.lib.php:2288 +#: libraries/common.lib.php:1335 libraries/common.lib.php:2292 #: 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,15 +59,15 @@ 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:664 server_privileges.php:1624 -#: server_privileges.php:1971 server_privileges.php:2018 -#: server_privileges.php:2057 server_replication.php:235 +#: server_privileges.php:665 server_privileges.php:1644 +#: server_privileges.php:1991 server_privileges.php:2038 +#: server_privileges.php:2078 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 #: tbl_operations.php:302 tbl_operations.php:499 tbl_operations.php:561 -#: tbl_operations.php:681 tbl_select.php:327 tbl_structure.php:562 -#: tbl_structure.php:597 tbl_tracking.php:395 tbl_tracking.php:512 +#: tbl_operations.php:681 tbl_select.php:327 tbl_structure.php:560 +#: tbl_structure.php:595 tbl_tracking.php:395 tbl_tracking.php:512 #: view_create.php:182 view_operations.php:101 msgid "Go" msgstr "යන්න" @@ -93,7 +93,7 @@ msgstr "Use this value" msgid "Database %1$s has been created." msgstr "%s දත්තගබඩාව හලන ලදි." -#: db_datadict.php:49 db_operations.php:378 +#: db_datadict.php:49 db_operations.php:387 msgid "Database comment: " msgstr "දත්තගබඩා විස්තර: " @@ -120,10 +120,10 @@ 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:2070 +#: pdf_schema.php:1263 pdf_schema.php:1284 server_privileges.php:2091 #: 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 +#: tbl_structure.php:657 tbl_tracking.php:274 tbl_tracking.php:321 msgid "Type" msgstr "වර්ගය" @@ -136,7 +136,7 @@ msgstr "වර්ගය" msgid "Null" msgstr "Null" -#: db_datadict.php:178 db_structure.php:501 libraries/export/htmlword.php:247 +#: db_datadict.php:178 db_structure.php:499 libraries/export/htmlword.php:247 #: libraries/export/latex.php:360 libraries/export/odt.php:303 #: libraries/export/texytext.php:236 libraries/tbl_properties.inc.php:106 #: pdf_schema.php:1266 pdf_schema.php:1287 tbl_printview.php:146 @@ -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: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 +#: pdf_schema.php:1344 server_privileges.php:1588 server_privileges.php:1599 +#: server_privileges.php:1909 server_privileges.php:1914 +#: server_privileges.php:2208 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:1565 -#: server_privileges.php:1579 server_privileges.php:1889 -#: server_privileges.php:1892 server_privileges.php:2187 sql.php:193 +#: server_databases.php:64 server_privileges.php:1585 +#: server_privileges.php:1599 server_privileges.php:1909 +#: server_privileges.php:1912 server_privileges.php:2208 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" @@ -209,126 +209,122 @@ msgstr "සියල්ල තෝරන්න" msgid "Unselect All" msgstr "සියල්ලේ තෝරාගැනීම ඉවත් කරන්න‍" -#: db_operations.php:38 tbl_create.php:54 +#: db_operations.php:43 tbl_create.php:54 msgid "The database name is empty!" msgstr "දත්තගබඩා නම හිස්ව පවතී!" -#: db_operations.php:236 +#: db_operations.php:241 #, php-format msgid "Database %s has been renamed to %s" msgstr "%s දත්තගබඩාව %s බවට නම වෙනස් කරන ලදි" -#: db_operations.php:240 +#: db_operations.php:245 #, php-format msgid "Database %s has been copied to %s" msgstr "%s දත්තගබඩාව %s වෙතට පිටපත් කරන ලදි" -#: db_operations.php:412 +#: db_operations.php:421 msgid "Rename database to" msgstr "බවට දත්තගබඩාවේ නම වෙනස් කරන්න" -#: db_operations.php:417 server_processlist.php:57 +#: db_operations.php:426 server_processlist.php:57 msgid "Command" msgstr "විධානය" -#: db_operations.php:429 tbl_change.php:1143 -msgid "and then" -msgstr "සහ එවිට" - -#: db_operations.php:455 +#: db_operations.php:464 msgid "Copy database to" msgstr "වෙත දත්තගබඩාව පිටවත් කරන්න" -#: db_operations.php:462 tbl_operations.php:528 tbl_tracking.php:388 +#: db_operations.php:471 tbl_operations.php:528 tbl_tracking.php:388 msgid "Structure only" msgstr "Structure only" -#: db_operations.php:463 tbl_operations.php:529 tbl_tracking.php:390 +#: db_operations.php:472 tbl_operations.php:529 tbl_tracking.php:390 msgid "Structure and data" msgstr "සැකිල්ල සහ දත්ත" -#: db_operations.php:464 tbl_operations.php:530 tbl_tracking.php:389 +#: db_operations.php:473 tbl_operations.php:530 tbl_tracking.php:389 msgid "Data only" msgstr "දත්ත පමණයි" -#: db_operations.php:472 +#: db_operations.php:481 msgid "CREATE DATABASE before copying" msgstr "පිටපත් කිරීමට ප්‍රථම දත්තගබඩාවක් සාදන්න" -#: db_operations.php:475 libraries/export/sql.php:52 +#: db_operations.php:484 libraries/export/sql.php:52 #: libraries/export/sql.php:74 libraries/export/sql.php:76 #: libraries/export/sql.php:82 tbl_operations.php:536 #, php-format msgid "Add %s" msgstr "%s එක් කරන්න" -#: db_operations.php:479 libraries/export/sql.php:78 tbl_operations.php:299 +#: db_operations.php:488 libraries/export/sql.php:78 tbl_operations.php:299 #: tbl_operations.php:538 msgid "Add AUTO_INCREMENT value" msgstr "AUTO_INCREMENT අගයක් එක් කරන්න" -#: db_operations.php:483 tbl_operations.php:545 +#: db_operations.php:492 tbl_operations.php:545 msgid "Add constraints" msgstr "සීමා බාධවන් එක් කරන්න" -#: db_operations.php:496 +#: db_operations.php:505 msgid "Switch to copied database" msgstr "Switch to copied database" -#: db_operations.php:537 +#: db_operations.php:546 msgid "BLOB Repository" msgstr "" -#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1352 -#: libraries/server_links.inc.php:49 server_processlist.php:59 +#: db_operations.php:549 db_tracking.php:76 libraries/common.lib.php:1352 +#: libraries/server_links.inc.php:50 server_processlist.php:59 #: tbl_tracking.php:596 test/theme.php:101 msgid "Status" msgstr "තත්වය" -#: db_operations.php:548 +#: db_operations.php:557 #, fuzzy #| msgid "Enabled" msgctxt "BLOB repository" msgid "Enabled" msgstr "සක්‍රිය කරන් ලද" -#: db_operations.php:552 +#: db_operations.php:561 #, fuzzy msgid "Disable" msgstr "අක්‍රිය කරන ලද" -#: db_operations.php:562 +#: db_operations.php:571 msgid "Damaged" msgstr "" -#: db_operations.php:566 +#: db_operations.php:575 #, fuzzy msgctxt "BLOB repository" msgid "Repair" msgstr "වගුව ප්‍රතිසංස්කරණය කරන්න" -#: db_operations.php:574 +#: db_operations.php:583 #, fuzzy #| msgid "Disabled" msgctxt "BLOB repository" msgid "Disabled" msgstr "අක්‍රිය කරන ලද" -#: db_operations.php:578 +#: db_operations.php:587 #, fuzzy msgid "Enable" msgstr "සක්‍රිය කරන් ලද" -#: db_operations.php:602 libraries/Index.class.php:448 +#: db_operations.php:611 libraries/Index.class.php:448 #: libraries/db_structure.lib.php:62 libraries/mysql_charsets.lib.php:107 #: libraries/tbl_properties.inc.php:107 libraries/tbl_properties.inc.php:730 #: server_collations.php:54 server_collations.php:66 server_databases.php:111 #: tbl_operations.php:363 tbl_select.php:137 tbl_structure.php:179 -#: tbl_structure.php:767 tbl_tracking.php:275 tbl_tracking.php:326 +#: tbl_structure.php:765 tbl_tracking.php:275 tbl_tracking.php:326 msgid "Collation" msgstr "Collation" -#: db_operations.php:615 main.php:316 pdf_schema.php:34 +#: db_operations.php:624 main.php:316 pdf_schema.php:34 #, php-format msgid "" "The additional features for working with linked tables have been " @@ -337,14 +333,14 @@ msgstr "" "The additional features for working with linked tables have been " "deactivated. To find out why click %shere%s." -#: db_operations.php:648 +#: db_operations.php:657 msgid "Edit PDF Pages" 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:1665 -#: server_privileges.php:1721 server_privileges.php:1985 +#: libraries/header.inc.php:130 pdf_pages.php:424 server_privileges.php:1685 +#: server_privileges.php:1741 server_privileges.php:2005 #: server_synchronize.php:423 server_synchronize.php:866 tbl_tracking.php:592 #: test/theme.php:75 msgid "Table" @@ -353,7 +349,7 @@ msgstr "වගුව" #: db_printview.php:105 libraries/db_structure.lib.php:56 #: libraries/header_printview.inc.php:63 libraries/import.lib.php:146 #: navigation.php:638 navigation.php:660 server_databases.php:122 -#: tbl_printview.php:394 tbl_structure.php:365 tbl_structure.php:777 +#: tbl_printview.php:394 tbl_structure.php:365 tbl_structure.php:775 msgid "Rows" msgstr "පේළි" @@ -361,30 +357,30 @@ msgstr "පේළි" msgid "Size" msgstr "ප්‍රමාණය" -#: db_printview.php:162 db_structure.php:457 libraries/export/sql.php:559 +#: db_printview.php:162 db_structure.php:455 libraries/export/sql.php:559 #: libraries/export/sql.php:899 msgid "in use" msgstr "භාවිතා වෙමින් පවතී" #: db_printview.php:187 libraries/db_info.inc.php:88 #: libraries/export/sql.php:514 pdf_schema.php:1241 tbl_printview.php:434 -#: tbl_structure.php:809 +#: tbl_structure.php:807 msgid "Creation" msgstr "සෑදීම" #: db_printview.php:196 libraries/db_info.inc.php:93 #: libraries/export/sql.php:519 pdf_schema.php:1246 tbl_printview.php:444 -#: tbl_structure.php:817 +#: tbl_structure.php:815 msgid "Last update" msgstr "අවසන් යාවත් කාලීන කිරීම" #: db_printview.php:205 libraries/db_info.inc.php:98 #: libraries/export/sql.php:524 pdf_schema.php:1251 tbl_printview.php:454 -#: tbl_structure.php:825 +#: tbl_structure.php:823 msgid "Last check" msgstr "අවසන් පරීක්ෂාව" -#: db_printview.php:222 db_structure.php:480 +#: db_printview.php:222 db_structure.php:478 #, fuzzy, php-format #| msgid "%s table(s)" msgid "%s table" @@ -445,7 +441,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:297 tbl_change.php:1031 tbl_indexes.php:250 +#: server_privileges.php:298 tbl_change.php:1031 tbl_indexes.php:250 #: tbl_select.php:288 msgid "Or" msgstr "හෝ" @@ -518,9 +514,9 @@ 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:2833 +#: db_structure.php:105 libraries/common.lib.php:2837 #: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50 -#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:467 +#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:465 msgid "Browse" msgstr "බ්‍රවුස් කරන්න" @@ -565,36 +561,36 @@ 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:2832 libraries/sql_query_form.lib.php:334 +#: libraries/common.lib.php:2836 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:2829 libraries/common.lib.php:2836 +#: libraries/common.lib.php:2833 libraries/common.lib.php:2840 #: 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:1106 #: libraries/tbl_links.inc.php:56 pmd_general.php:134 -#: server_privileges.php:593 server_replication.php:315 tbl_tracking.php:269 +#: server_privileges.php:594 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:1656 +#: db_structure.php:543 db_structure.php:544 db_tracking.php:91 +#: libraries/Index.class.php:483 libraries/common.lib.php:1657 #: 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 -#: tbl_structure.php:152 tbl_structure.php:471 +#: tbl_structure.php:152 tbl_structure.php:469 msgid "Drop" 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:1655 +#: db_structure.php:541 db_structure.php:542 libraries/common.lib.php:1656 #: libraries/mult_submits.inc.php:39 libraries/tbl_links.inc.php:105 msgid "Empty" msgstr "හිස්" @@ -604,111 +600,111 @@ msgstr "හිස්" msgid "Table %s has been emptied" msgstr "%s වගුව හිස් කරන ලදි" -#: db_structure.php:326 libraries/tbl_links.inc.php:133 +#: db_structure.php:325 libraries/tbl_links.inc.php:133 #, php-format msgid "View %s has been dropped" msgstr "View %s has been dropped" -#: db_structure.php:326 libraries/tbl_links.inc.php:133 +#: db_structure.php:325 libraries/tbl_links.inc.php:133 #, php-format msgid "Table %s has been dropped" msgstr "%s වගුව හලන ලදි" -#: db_structure.php:333 +#: db_structure.php:332 msgid "Tracking is active." msgstr "" -#: db_structure.php:335 +#: db_structure.php:334 msgid "Tracking is not active." msgstr "" -#: db_structure.php:420 libraries/display_tbl.lib.php:1944 +#: db_structure.php:418 libraries/display_tbl.lib.php:1944 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation%" "s." msgstr "" -#: db_structure.php:434 db_structure.php:448 libraries/header.inc.php:126 +#: db_structure.php:432 db_structure.php:446 libraries/header.inc.php:130 #: libraries/tbl_info.inc.php:66 tbl_structure.php:185 test/theme.php:74 msgid "View" msgstr "දර්ශනය කරන්න" -#: db_structure.php:485 libraries/db_structure.lib.php:49 -#: libraries/server_links.inc.php:70 server_replication.php:33 +#: db_structure.php:483 libraries/db_structure.lib.php:49 +#: libraries/server_links.inc.php:71 server_replication.php:33 #: server_replication.php:164 server_status.php:369 msgid "Replication" msgstr "Replication" -#: db_structure.php:489 +#: db_structure.php:487 msgid "Sum" msgstr "එකතුව" -#: db_structure.php:496 libraries/StorageEngine.class.php:356 +#: db_structure.php:494 libraries/StorageEngine.class.php:356 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "%s is the default storage engine on this MySQL server." -#: db_structure.php:524 db_structure.php:541 db_structure.php:542 +#: db_structure.php:522 db_structure.php:539 db_structure.php:540 #: 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:1596 tbl_structure.php:455 -#: tbl_structure.php:464 +#: server_databases.php:351 server_privileges.php:1616 tbl_structure.php:453 +#: tbl_structure.php:462 msgid "With selected:" msgstr "තෝරාගත්:" -#: db_structure.php:527 libraries/display_tbl.lib.php:2076 -#: server_databases.php:348 server_privileges.php:569 -#: server_privileges.php:1599 tbl_structure.php:458 +#: db_structure.php:525 libraries/display_tbl.lib.php:2076 +#: server_databases.php:348 server_privileges.php:570 +#: server_privileges.php:1619 tbl_structure.php:456 msgid "Check All" msgstr "සියල්ල කතිර කොටුගත කරන්න" -#: db_structure.php:531 libraries/display_tbl.lib.php:2077 +#: db_structure.php:529 libraries/display_tbl.lib.php:2077 #: libraries/replication_gui.lib.php:33 server_databases.php:350 -#: server_privileges.php:572 server_privileges.php:1603 tbl_structure.php:462 +#: server_privileges.php:573 server_privileges.php:1623 tbl_structure.php:460 msgid "Uncheck All" msgstr "කතිර කොටුගත කිරීම ඉවත් කරන්න" -#: db_structure.php:536 +#: db_structure.php:534 msgid "Check tables having overhead" msgstr "Check tables having overhead" -#: db_structure.php:547 db_structure.php:548 db_structure.php:599 +#: db_structure.php:545 db_structure.php:546 db_structure.php:597 #: libraries/display_tbl.lib.php:2180 libraries/mult_submits.inc.php:28 -#: tbl_structure.php:492 tbl_structure.php:494 +#: tbl_structure.php:490 tbl_structure.php:492 msgid "Print view" msgstr "මුද්‍රණ දර්ශනය" -#: db_structure.php:549 db_structure.php:550 libraries/mult_submits.inc.php:42 +#: db_structure.php:547 db_structure.php:548 libraries/mult_submits.inc.php:42 #: tbl_operations.php:581 msgid "Check table" msgstr "වගුව පරීක්ෂා කරන්න" -#: db_structure.php:551 db_structure.php:552 libraries/mult_submits.inc.php:47 -#: tbl_operations.php:621 tbl_structure.php:709 tbl_structure.php:711 +#: db_structure.php:549 db_structure.php:550 libraries/mult_submits.inc.php:47 +#: tbl_operations.php:621 tbl_structure.php:707 tbl_structure.php:709 msgid "Optimize table" msgstr "ප්‍රශස්තගත වගුව" -#: db_structure.php:553 db_structure.php:554 libraries/mult_submits.inc.php:52 +#: db_structure.php:551 db_structure.php:552 libraries/mult_submits.inc.php:52 #: tbl_operations.php:611 msgid "Repair table" msgstr "වගුව ප්‍රතිසංස්කරණය කරන්න" -#: db_structure.php:555 db_structure.php:556 libraries/mult_submits.inc.php:57 +#: db_structure.php:553 db_structure.php:554 libraries/mult_submits.inc.php:57 #: tbl_operations.php:601 msgid "Analyze table" msgstr "වගුව විශ්ලේෂණය කරන්න" -#: db_structure.php:557 db_structure.php:558 libraries/db_links.inc.php:71 +#: db_structure.php:555 db_structure.php:556 libraries/db_links.inc.php:71 #: 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:1380 +#: libraries/server_links.inc.php:85 libraries/tbl_links.inc.php:82 +#: pmd_pdf.php:84 pmd_pdf.php:109 server_privileges.php:1397 #: setup/frames/menu.inc.php:22 tbl_row_action.php:59 msgid "Export" msgstr "අපනයනය" -#: db_structure.php:606 libraries/display_pdf_schema.lib.php:44 +#: db_structure.php:604 libraries/display_pdf_schema.lib.php:44 msgid "Data Dictionary" msgstr "දත්ත කෝෂය" @@ -720,10 +716,10 @@ msgstr "වගුව පරීක්ෂා කරන්න" #: db_tracking.php:71 libraries/export/htmlword.php:86 #: libraries/export/latex.php:148 libraries/export/odt.php:113 #: libraries/export/sql.php:342 libraries/export/texytext.php:84 -#: libraries/export/xml.php:255 libraries/header.inc.php:106 +#: libraries/export/xml.php:255 libraries/header.inc.php:110 #: libraries/header_printview.inc.php:58 server_databases.php:169 -#: server_privileges.php:1660 server_privileges.php:1721 -#: server_privileges.php:1979 server_processlist.php:56 +#: server_privileges.php:1680 server_privileges.php:1741 +#: server_privileges.php:1999 server_processlist.php:56 #: server_synchronize.php:1179 server_synchronize.php:1183 #: tbl_tracking.php:591 test/theme.php:65 msgid "Database" @@ -745,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:1542 server_privileges.php:1725 -#: server_privileges.php:2073 tbl_structure.php:187 +#: server_privileges.php:1562 server_privileges.php:1745 +#: server_privileges.php:2094 tbl_structure.php:187 msgid "Action" msgstr "ක්‍රියාව" @@ -783,8 +779,8 @@ msgstr "Structure only" msgid "Untracked tables" msgstr "වගුව පරීක්ෂා කරන්න" -#: db_tracking.php:172 db_tracking.php:174 tbl_structure.php:528 -#: tbl_structure.php:530 +#: db_tracking.php:172 db_tracking.php:174 tbl_structure.php:526 +#: tbl_structure.php:528 #, fuzzy msgid "Track table" msgstr "වගුව පරීක්ෂා කරන්න" @@ -950,188 +946,235 @@ msgstr "දාරක නම හිස්ව පවතී!" msgid "The user name is empty!" msgstr "භාවිත නාමය හිස්ව පවතී!" -#: js/messages.php:44 server_privileges.php:1236 user_password.php:70 +#: js/messages.php:44 server_privileges.php:1241 user_password.php:70 msgid "The password is empty!" msgstr "The password is empty!" -#: js/messages.php:45 server_privileges.php:1234 user_password.php:73 +#: js/messages.php:45 server_privileges.php:1239 user_password.php:73 msgid "The passwords aren't the same!" msgstr "The passwords aren't the same!" -#: js/messages.php:49 pmd_general.php:342 pmd_general.php:379 +#: js/messages.php:46 +#, fuzzy +#| msgid "Add a new User" +msgid "Add a New User" +msgstr "නව භාවිතා කරන්නේක් එක් කරන්න" + +#: js/messages.php:47 js/messages.php:54 pmd_general.php:342 +#: pmd_general.php:379 msgid "Cancel" msgstr "" -#: js/messages.php:52 pmd_save_pos.php:54 +#: js/messages.php:48 +#, fuzzy +msgid "Create User" +msgstr "සර්වරයේ සංස්කරණය" + +#: js/messages.php:49 +#, fuzzy +#| msgid "Reload privileges" +msgid "Reloading Privileges" +msgstr "වරප්‍රසාද ප්‍රතිප්‍රවේශනය කරන්න" + +#: js/messages.php:50 +#, fuzzy +#| msgid "Remove selected users" +msgid "Removing Selected Users" +msgstr "තෝරාගත් භාවිතා කරන්නන් ඉවත් කරන්න" + +#: js/messages.php:57 +#, fuzzy +msgid "Loading" +msgstr "ස්වදේශී" + +#: js/messages.php:58 +#, fuzzy +#| msgid "Processes" +msgid "Processing Request" +msgstr "ක්‍රියාවලිය" + +#: js/messages.php:59 +msgid "Error in Processing Request" +msgstr "" + +#: js/messages.php:60 +msgid "Dropping Column" +msgstr "" + +#: js/messages.php:61 +msgid "Adding Primary Key" +msgstr "" + +#: js/messages.php:64 pmd_save_pos.php:54 msgid "Modifications have been saved" msgstr "වෙනස් කිරීම් සේව් කරන ලදි" -#: js/messages.php:53 pmd_relation_upd.php:49 +#: js/messages.php:65 pmd_relation_upd.php:49 #, fuzzy msgid "Relation deleted" msgstr "Relation view" -#: js/messages.php:54 pmd_relation_new.php:64 +#: js/messages.php:66 pmd_relation_new.php:64 msgid "FOREIGN KEY relation added" msgstr "" -#: js/messages.php:55 pmd_relation_new.php:86 +#: js/messages.php:67 pmd_relation_new.php:86 #, fuzzy msgid "Internal relation added" msgstr "Internal relations" -#: js/messages.php:56 pmd_relation_new.php:63 pmd_relation_new.php:88 +#: js/messages.php:68 pmd_relation_new.php:63 pmd_relation_new.php:88 msgid "Error: Relation not added." msgstr "" -#: js/messages.php:57 pmd_relation_new.php:31 +#: js/messages.php:69 pmd_relation_new.php:31 msgid "Error: relation already exists." msgstr "" -#: js/messages.php:58 +#: js/messages.php:70 msgid "Error saving coordinates for Designer." msgstr "" -#: js/messages.php:59 libraries/relation.lib.php:107 +#: js/messages.php:71 libraries/relation.lib.php:107 #: libraries/relation.lib.php:119 msgid "General relation features" msgstr "General relation features" -#: js/messages.php:59 libraries/relation.lib.php:101 +#: js/messages.php:71 libraries/relation.lib.php:101 #: libraries/relation.lib.php:108 msgid "Disabled" msgstr "අක්‍රිය කරන ලද" -#: js/messages.php:60 +#: js/messages.php:72 msgid "Select referenced key" msgstr "" -#: js/messages.php:61 +#: js/messages.php:73 msgid "Select Foreign Key" msgstr "" -#: js/messages.php:62 +#: js/messages.php:74 msgid "Please select the primary key or a unique key" msgstr "" -#: js/messages.php:63 pmd_general.php:77 tbl_relation.php:548 +#: js/messages.php:75 pmd_general.php:77 tbl_relation.php:548 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" msgstr "පෙන්වීම සඳහා ක්ෂේත්‍රයක් ‍තෝරාගන්න" #. l10n: Display text for calendar close link -#: js/messages.php:73 +#: js/messages.php:85 #, fuzzy msgid "Done" msgstr "දත්ත" #. l10n: Display text for previous month link in calendar -#: js/messages.php:75 +#: js/messages.php:87 #, fuzzy #| msgid "Previous" msgid "Prev" msgstr "පෙර" #. l10n: Display text for next month link in calendar -#: js/messages.php:77 libraries/common.lib.php:2353 -#: libraries/common.lib.php:2356 libraries/display_tbl.lib.php:338 +#: js/messages.php:89 libraries/common.lib.php:2357 +#: libraries/common.lib.php:2360 libraries/display_tbl.lib.php:338 #: server_binlog.php:205 server_binlog.php:207 tbl_printview.php:424 -#: tbl_structure.php:801 +#: tbl_structure.php:799 msgid "Next" msgstr "මීලඟ" #. l10n: Display text for current month link in calendar -#: js/messages.php:79 +#: js/messages.php:91 #, fuzzy #| msgid "Total" msgid "Today" msgstr "මුළු එකතුව" -#: js/messages.php:82 +#: js/messages.php:94 #, fuzzy #| msgid "Binary" msgid "January" msgstr "ද්වීමය" -#: js/messages.php:83 +#: js/messages.php:95 msgid "February" msgstr "" -#: js/messages.php:84 +#: js/messages.php:96 #, fuzzy #| msgid "Mar" msgid "March" msgstr "මාර්තු" -#: js/messages.php:85 +#: js/messages.php:97 #, fuzzy #| msgid "Apr" msgid "April" msgstr "අ‍ප්‍රේල්" -#: js/messages.php:86 +#: js/messages.php:98 msgid "May" msgstr "මැයි" -#: js/messages.php:87 +#: js/messages.php:99 #, fuzzy #| msgid "Jun" msgid "June" msgstr "ජූනි" -#: js/messages.php:88 +#: js/messages.php:100 #, fuzzy #| msgid "Jul" msgid "July" msgstr "ජූලි" -#: js/messages.php:89 +#: js/messages.php:101 #, fuzzy #| msgid "Aug" msgid "August" msgstr "අගෝස්තු" -#: js/messages.php:90 +#: js/messages.php:102 msgid "September" msgstr "" -#: js/messages.php:91 +#: js/messages.php:103 #, fuzzy #| msgid "Oct" msgid "October" msgstr "ඔක්තෝම්බර්" -#: js/messages.php:92 +#: js/messages.php:104 msgid "November" msgstr "" -#: js/messages.php:93 +#: js/messages.php:105 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:97 libraries/common.lib.php:1557 +#: js/messages.php:109 libraries/common.lib.php:1557 msgid "Jan" msgstr "ජනවාරි" #. l10n: Short month name -#: js/messages.php:99 libraries/common.lib.php:1559 +#: js/messages.php:111 libraries/common.lib.php:1559 msgid "Feb" msgstr "පෙබරවාරි" #. l10n: Short month name -#: js/messages.php:101 libraries/common.lib.php:1561 +#: js/messages.php:113 libraries/common.lib.php:1561 msgid "Mar" msgstr "මාර්තු" #. l10n: Short month name -#: js/messages.php:103 libraries/common.lib.php:1563 +#: js/messages.php:115 libraries/common.lib.php:1563 msgid "Apr" msgstr "අ‍ප්‍රේල්" #. l10n: Short month name -#: js/messages.php:105 libraries/common.lib.php:1565 +#: js/messages.php:117 libraries/common.lib.php:1565 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1139,176 +1182,176 @@ msgid "May" msgstr "මැයි" #. l10n: Short month name -#: js/messages.php:107 libraries/common.lib.php:1567 +#: js/messages.php:119 libraries/common.lib.php:1567 msgid "Jun" msgstr "ජූනි" #. l10n: Short month name -#: js/messages.php:109 libraries/common.lib.php:1569 +#: js/messages.php:121 libraries/common.lib.php:1569 msgid "Jul" msgstr "ජූලි" #. l10n: Short month name -#: js/messages.php:111 libraries/common.lib.php:1571 +#: js/messages.php:123 libraries/common.lib.php:1571 msgid "Aug" msgstr "අගෝස්තු" #. l10n: Short month name -#: js/messages.php:113 libraries/common.lib.php:1573 +#: js/messages.php:125 libraries/common.lib.php:1573 msgid "Sep" msgstr "සැප්තැම්බර්" #. l10n: Short month name -#: js/messages.php:115 libraries/common.lib.php:1575 +#: js/messages.php:127 libraries/common.lib.php:1575 msgid "Oct" msgstr "ඔක්තෝම්බර්" #. l10n: Short month name -#: js/messages.php:117 libraries/common.lib.php:1577 +#: js/messages.php:129 libraries/common.lib.php:1577 msgid "Nov" msgstr "නොවැම්බර්" #. l10n: Short month name -#: js/messages.php:119 libraries/common.lib.php:1579 +#: js/messages.php:131 libraries/common.lib.php:1579 msgid "Dec" msgstr "දෙසැම්බර්" -#: js/messages.php:122 +#: js/messages.php:134 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "ඉරිදා" -#: js/messages.php:123 +#: js/messages.php:135 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "සදුදා" -#: js/messages.php:124 +#: js/messages.php:136 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "අගහරු‍වදා" -#: js/messages.php:125 +#: js/messages.php:137 msgid "Wednesday" msgstr "" -#: js/messages.php:126 +#: js/messages.php:138 msgid "Thursday" msgstr "" -#: js/messages.php:127 +#: js/messages.php:139 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "සිකුරාදා:" -#: js/messages.php:128 +#: js/messages.php:140 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:132 libraries/common.lib.php:1582 +#: js/messages.php:144 libraries/common.lib.php:1582 msgid "Sun" msgstr "ඉරිදා" #. l10n: Short week day name -#: js/messages.php:134 libraries/common.lib.php:1584 +#: js/messages.php:146 libraries/common.lib.php:1584 msgid "Mon" msgstr "සදුදා" #. l10n: Short week day name -#: js/messages.php:136 libraries/common.lib.php:1586 +#: js/messages.php:148 libraries/common.lib.php:1586 msgid "Tue" msgstr "අගහරු‍වදා" #. l10n: Short week day name -#: js/messages.php:138 libraries/common.lib.php:1588 +#: js/messages.php:150 libraries/common.lib.php:1588 msgid "Wed" msgstr "බදාදා" #. l10n: Short week day name -#: js/messages.php:140 libraries/common.lib.php:1590 +#: js/messages.php:152 libraries/common.lib.php:1590 msgid "Thu" msgstr "බ්‍රහස්පතින්දා" #. l10n: Short week day name -#: js/messages.php:142 libraries/common.lib.php:1592 +#: js/messages.php:154 libraries/common.lib.php:1592 msgid "Fri" msgstr "සිකුරාදා:" #. l10n: Short week day name -#: js/messages.php:144 libraries/common.lib.php:1594 +#: js/messages.php:156 libraries/common.lib.php:1594 msgid "Sat" msgstr "සෙනසුරාදා" #. l10n: Minimal week day name -#: js/messages.php:148 +#: js/messages.php:160 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "ඉරිදා" #. l10n: Minimal week day name -#: js/messages.php:150 +#: js/messages.php:162 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "සදුදා" #. l10n: Minimal week day name -#: js/messages.php:152 +#: js/messages.php:164 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "අගහරු‍වදා" #. l10n: Minimal week day name -#: js/messages.php:154 +#: js/messages.php:166 #, fuzzy #| msgid "Wed" msgid "We" msgstr "බදාදා" #. l10n: Minimal week day name -#: js/messages.php:156 +#: js/messages.php:168 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "බ්‍රහස්පතින්දා" #. l10n: Minimal week day name -#: js/messages.php:158 +#: js/messages.php:170 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "සිකුරාදා:" #. l10n: Minimal week day name -#: js/messages.php:160 +#: js/messages.php:172 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "සෙනසුරාදා" #. l10n: Column header for week of the year in calendar -#: js/messages.php:162 +#: js/messages.php:174 msgid "Wk" msgstr "" -#: js/messages.php:164 +#: js/messages.php:176 msgid "Hour" msgstr "" -#: js/messages.php:165 +#: js/messages.php:177 #, fuzzy #| msgid "in use" msgid "Minute" msgstr "භාවිතා වෙමින් පවතී" -#: js/messages.php:166 +#: js/messages.php:178 #, fuzzy #| msgid "per second" msgid "Second" @@ -1366,7 +1409,7 @@ msgstr "සූචියන්" #: libraries/Index.class.php:444 libraries/mult_submits.inc.php:103 #: libraries/tbl_properties.inc.php:519 tbl_structure.php:33 -#: tbl_structure.php:155 tbl_structure.php:159 tbl_structure.php:474 +#: tbl_structure.php:155 tbl_structure.php:159 tbl_structure.php:472 #: tbl_tracking.php:322 msgid "Unique" msgstr "අනන්‍ය" @@ -1408,8 +1451,8 @@ msgid "" "removed." msgstr "" -#: libraries/List_Database.class.php:431 libraries/server_links.inc.php:41 -#: server_databases.php:88 server_privileges.php:1660 +#: libraries/List_Database.class.php:431 libraries/server_links.inc.php:42 +#: server_databases.php:88 server_privileges.php:1680 #: setup/lib/messages.inc.php:110 test/theme.php:93 msgid "Databases" msgstr "දත්තගබඩා" @@ -1580,7 +1623,7 @@ msgstr "මුරපදය:" msgid "Server Choice" msgstr "සර්වරයේ තේරීම" -#: libraries/auth/cookie.auth.lib.php:320 libraries/header.inc.php:59 +#: libraries/auth/cookie.auth.lib.php:320 libraries/header.inc.php:63 msgid "Cookies must be enabled past this point." msgstr "මෙම ස්ථානය පසු කිරීම සඳහා කුකීස් - Cookies සක්‍රිය කල යුතුයි." @@ -1660,7 +1703,7 @@ msgstr "" "Couldn't use either the iconv, libiconv or recode_string functions, although " "the necessary extensions appear to be loaded. Check your PHP configuration." -#: libraries/common.inc.php:583 +#: libraries/common.inc.php:587 msgid "" "phpMyAdmin was unable to read your configuration file!
This might " "happen if PHP finds a parse error in it or PHP cannot find the file.
If you receive a blank page, everything " "is fine." -#: libraries/common.inc.php:594 +#: libraries/common.inc.php:598 #, fuzzy, php-format #| msgid "Could not load default configuration from: \"%1$s\"" msgid "Could not load default configuration from: %1$s" msgstr "Could not load default configuration from: \"%1$s\"" -#: libraries/common.inc.php:599 +#: libraries/common.inc.php:603 msgid "" "The $cfg['PmaAbsoluteUri'] directive MUST be set in your " "configuration file!" @@ -1690,28 +1733,28 @@ msgstr "" "The $cfg['PmaAbsoluteUri'] directive MUST be set in your " "configuration file!" -#: libraries/common.inc.php:629 +#: libraries/common.inc.php:633 #, fuzzy, php-format #| msgid "Invalid server index: \"%s\"" msgid "Invalid server index: %s" msgstr "Invalid server index: \"%s\"" -#: libraries/common.inc.php:636 +#: libraries/common.inc.php:640 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "Invalid hostname for server %1$s. Please review your configuration." -#: libraries/common.inc.php:645 libraries/header.inc.php:96 +#: libraries/common.inc.php:649 libraries/header.inc.php:100 #: libraries/select_server.lib.php:41 libraries/select_server.lib.php:47 #: main.php:185 test/theme.php:57 msgid "Server" msgstr "සර්වරය" -#: libraries/common.inc.php:823 +#: libraries/common.inc.php:827 msgid "Invalid authentication method set in configuration:" msgstr "Invalid authentication method set in configuration:" -#: libraries/common.inc.php:926 +#: libraries/common.inc.php:930 #, php-format msgid "You should upgrade to %s %s or later." msgstr "You should upgrade to %s %s or later." @@ -1844,45 +1887,45 @@ msgstr "." msgid "%B %d, %Y at %I:%M %p" msgstr "%B %d, %Y at %I:%M %p" -#: libraries/common.lib.php:1907 +#: libraries/common.lib.php:1911 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "දින %s, පැය %s, මිනිත්තු %s සහ තප්පර %s" -#: libraries/common.lib.php:2322 libraries/common.lib.php:2325 +#: libraries/common.lib.php:2326 libraries/common.lib.php:2329 #: libraries/display_tbl.lib.php:290 server_status.php:719 msgid "Begin" msgstr "Begin" -#: libraries/common.lib.php:2323 libraries/common.lib.php:2326 +#: libraries/common.lib.php:2327 libraries/common.lib.php:2330 #: libraries/display_tbl.lib.php:291 server_binlog.php:168 #: server_binlog.php:170 msgid "Previous" msgstr "පෙර" -#: libraries/common.lib.php:2354 libraries/common.lib.php:2357 +#: libraries/common.lib.php:2358 libraries/common.lib.php:2361 #: libraries/display_tbl.lib.php:353 msgid "End" msgstr "අවසානය‍" -#: libraries/common.lib.php:2430 +#: libraries/common.lib.php:2434 #, php-format msgid "Jump to database "%s"." msgstr ""%s" දත්තගබඩාව වෙත යන්න ." -#: libraries/common.lib.php:2450 +#: libraries/common.lib.php:2454 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" -#: libraries/common.lib.php:2830 libraries/common.lib.php:2837 +#: libraries/common.lib.php:2834 libraries/common.lib.php:2841 #: libraries/db_links.inc.php:68 libraries/export/sql.php:25 -#: libraries/import/sql.php:18 libraries/server_links.inc.php:45 +#: libraries/import/sql.php:18 libraries/server_links.inc.php:46 #: libraries/tbl_links.inc.php:60 querywindow.php:99 test/theme.php:97 msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2839 libraries/db_links.inc.php:104 +#: libraries/common.lib.php:2843 libraries/db_links.inc.php:104 #: libraries/tbl_links.inc.php:95 libraries/tbl_links.inc.php:117 #: view_operations.php:89 msgid "Operations" @@ -1932,15 +1975,15 @@ msgstr "විමසුම" msgid "Designer" msgstr "" -#: libraries/db_links.inc.php:98 libraries/server_links.inc.php:88 +#: libraries/db_links.inc.php:98 libraries/server_links.inc.php:89 #: libraries/tbl_links.inc.php:91 pmd_pdf.php:84 pmd_pdf.php:110 #: setup/frames/menu.inc.php:21 msgid "Import" msgstr "ආනයනය" -#: libraries/db_links.inc.php:111 libraries/server_links.inc.php:66 -#: server_privileges.php:111 server_privileges.php:1722 -#: server_privileges.php:2071 test/theme.php:117 +#: libraries/db_links.inc.php:111 libraries/server_links.inc.php:67 +#: server_privileges.php:112 server_privileges.php:1742 +#: server_privileges.php:2092 test/theme.php:117 msgid "Privileges" msgstr "වරප්‍රසාද" @@ -1959,7 +2002,7 @@ msgid "" msgstr "සමහර විට ආසන්න වශයෙන්. FAQ 3.11 බලන්න" #: libraries/db_structure.lib.php:69 server_databases.php:142 -#: tbl_printview.php:336 tbl_structure.php:682 +#: tbl_printview.php:336 tbl_structure.php:680 msgid "Overhead" msgstr "පිරිවැය" @@ -1976,7 +2019,7 @@ msgstr "සර්වරය ප්‍රතිචාර නොදක්වයි" msgid "(or the local MySQL server's socket is not correctly configured)" msgstr "(or the local MySQL server's socket is not correctly configured)" -#: libraries/dbi/mysql.dbi.lib.php:362 tbl_structure.php:608 +#: libraries/dbi/mysql.dbi.lib.php:362 tbl_structure.php:606 msgid "Details..." msgstr "" @@ -1986,22 +2029,22 @@ msgid "Change password" msgstr "මුරපදය වෙනස් කරන්න" #: libraries/display_change_password.lib.php:35 -#: libraries/replication_gui.lib.php:345 server_privileges.php:807 +#: libraries/replication_gui.lib.php:345 server_privileges.php:808 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:796 -#: server_privileges.php:800 server_privileges.php:811 -#: server_privileges.php:1538 server_synchronize.php:1175 +#: libraries/replication_gui.lib.php:349 server_privileges.php:797 +#: server_privileges.php:801 server_privileges.php:812 +#: server_privileges.php:1558 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:815 server_privileges.php:818 +#: server_privileges.php:816 server_privileges.php:819 msgid "Re-type" msgstr "නැවත ටයිප් කරන්න" @@ -2016,12 +2059,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:822 +#: libraries/replication_gui.lib.php:360 server_privileges.php:823 msgid "Generate Password" msgstr "මුරපදය උත්පාදනය කරන්න" #: libraries/display_change_password.lib.php:75 -#: libraries/replication_gui.lib.php:363 server_privileges.php:825 +#: libraries/replication_gui.lib.php:363 server_privileges.php:826 msgid "Generate" msgstr "උත්පාදනය කරන්න" @@ -2034,8 +2077,8 @@ msgstr "නව දත්තගබඩාවක් සාදන්න" msgid "Create" msgstr "සාදන්න" -#: libraries/display_create_database.lib.php:40 server_privileges.php:113 -#: server_privileges.php:1427 server_replication.php:35 +#: libraries/display_create_database.lib.php:40 server_privileges.php:114 +#: server_privileges.php:1447 server_replication.php:35 msgid "No Privileges" msgstr "වරප්‍රසාද නොමැත" @@ -2126,7 +2169,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:1875 server_processlist.php:75 +#: server_privileges.php:1895 server_processlist.php:75 msgid "None" msgstr "කිසිවක් නැත" @@ -2316,7 +2359,7 @@ msgstr "යතුර අනුව තෝරන්න" #: libraries/import/docsql.php:34 libraries/import/ldi.php:47 #: libraries/import/ods.php:30 libraries/import/sql.php:20 #: libraries/import/xls.php:26 libraries/import/xlsx.php:26 -#: libraries/import/xml.php:25 tbl_select.php:267 tbl_structure.php:753 +#: libraries/import/xml.php:25 tbl_select.php:267 tbl_structure.php:751 #, fuzzy msgid "Options" msgstr "මෙහෙයුම්" @@ -2395,7 +2438,7 @@ msgstr "Query took %01.4f sec" #: libraries/display_tbl.lib.php:2089 libraries/mult_submits.inc.php:113 #: querywindow.php:125 querywindow.php:129 querywindow.php:132 -#: tbl_structure.php:25 tbl_structure.php:150 tbl_structure.php:470 +#: tbl_structure.php:25 tbl_structure.php:150 tbl_structure.php:468 msgid "Change" msgstr "වෙනස් කරන්න" @@ -2465,7 +2508,7 @@ msgstr "Buffer Pool Usage" #: libraries/engines/innodb.lib.php:194 server_databases.php:137 #: server_databases.php:305 server_status.php:525 server_status.php:586 -#: server_status.php:607 tbl_printview.php:351 tbl_structure.php:696 +#: server_status.php:607 tbl_printview.php:351 tbl_structure.php:694 msgid "Total" msgstr "මුළු එකතුව" @@ -2726,7 +2769,7 @@ msgid "" msgstr "" #: libraries/export/codegen.php:37 setup/lib/messages.inc.php:88 -#: tbl_printview.php:376 tbl_structure.php:737 +#: tbl_printview.php:376 tbl_structure.php:735 msgid "Format" msgstr "ආකෘතිය" @@ -2798,8 +2841,8 @@ 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:576 server_replication.php:316 tbl_printview.php:317 -#: tbl_structure.php:665 +#: server_privileges.php:577 server_replication.php:316 tbl_printview.php:317 +#: tbl_structure.php:663 msgid "Data" msgstr "දත්ත" @@ -2848,9 +2891,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:731 -#: server_privileges.php:734 server_privileges.php:790 -#: server_privileges.php:1537 server_privileges.php:2069 +#: libraries/replication_gui.lib.php:329 server_privileges.php:732 +#: server_privileges.php:735 server_privileges.php:791 +#: server_privileges.php:1557 server_privileges.php:2090 #: server_processlist.php:55 server_synchronize.php:1159 msgid "Host" msgstr "දායකයා" @@ -3051,7 +3094,7 @@ msgstr "අපනයන වර්ගය" msgid "Open new phpMyAdmin window" msgstr "Open new phpMyAdmin window" -#: libraries/header.inc.php:115 +#: libraries/header.inc.php:119 #, fuzzy msgid "New table" msgstr "වගු නොමැත" @@ -3215,20 +3258,20 @@ 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 +#: tbl_structure.php:471 msgid "Primary" msgstr "මූලික" #: libraries/mult_submits.inc.php:98 libraries/tbl_properties.inc.php:116 #: libraries/tbl_properties.inc.php:525 tbl_printview.php:326 #: tbl_structure.php:31 tbl_structure.php:154 tbl_structure.php:158 -#: tbl_structure.php:475 tbl_structure.php:673 +#: tbl_structure.php:473 tbl_structure.php:671 msgid "Index" msgstr "සූචිය" #: libraries/mult_submits.inc.php:108 libraries/tbl_properties.inc.php:531 #: tbl_structure.php:35 tbl_structure.php:156 tbl_structure.php:160 -#: tbl_structure.php:478 +#: tbl_structure.php:476 msgid "Fulltext" msgstr "සම්පූර්ණ පාඨය" @@ -3530,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:711 -#: server_privileges.php:714 server_privileges.php:721 +#: libraries/replication_gui.lib.php:259 server_privileges.php:712 +#: server_privileges.php:715 server_privileges.php:722 #: server_synchronize.php:1171 msgid "User name" msgstr "භාවිත නාමය" @@ -3558,7 +3601,7 @@ msgstr "Variable" #: 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 +#: tbl_structure.php:727 msgid "Value" msgstr "Value" @@ -3576,34 +3619,34 @@ msgstr "" msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:254 server_privileges.php:716 +#: libraries/replication_gui.lib.php:254 server_privileges.php:717 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:717 -#: server_privileges.php:784 server_privileges.php:808 -#: server_privileges.php:1928 server_privileges.php:1958 +#: libraries/replication_gui.lib.php:346 server_privileges.php:718 +#: server_privileges.php:785 server_privileges.php:809 +#: server_privileges.php:1948 server_privileges.php:1978 msgid "Use text field" msgstr "Use text field" -#: libraries/replication_gui.lib.php:302 server_privileges.php:764 +#: libraries/replication_gui.lib.php:302 server_privileges.php:765 msgid "Any host" msgstr "ඕනෑම දායකයෙක්" -#: libraries/replication_gui.lib.php:306 server_privileges.php:768 +#: libraries/replication_gui.lib.php:306 server_privileges.php:769 msgid "Local" msgstr "ස්වදේශී" -#: libraries/replication_gui.lib.php:312 server_privileges.php:773 +#: libraries/replication_gui.lib.php:312 server_privileges.php:774 msgid "This Host" msgstr "this host" -#: libraries/replication_gui.lib.php:318 server_privileges.php:779 +#: libraries/replication_gui.lib.php:318 server_privileges.php:780 msgid "Use Host Table" msgstr "දායක වගුව භාවිතා කරන්න" -#: libraries/replication_gui.lib.php:331 server_privileges.php:792 +#: libraries/replication_gui.lib.php:331 server_privileges.php:793 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -3637,29 +3680,29 @@ msgstr "%1$s නොදන්නා භාෂාවකි." msgid "Servers" msgstr "සර්වරයන්" -#: libraries/server_links.inc.php:53 server_engines.php:112 +#: libraries/server_links.inc.php:54 server_engines.php:112 #: server_engines.php:116 server_status.php:415 test/theme.php:105 msgid "Variables" msgstr "විචල්‍යනයන්" -#: libraries/server_links.inc.php:57 test/theme.php:109 +#: libraries/server_links.inc.php:58 test/theme.php:109 msgid "Charsets" msgstr "අක්ෂර කට්ටලය" -#: libraries/server_links.inc.php:61 test/theme.php:113 +#: libraries/server_links.inc.php:62 test/theme.php:113 msgid "Engines" msgstr "යන්ත්‍රයන්" -#: libraries/server_links.inc.php:76 server_binlog.php:110 +#: libraries/server_links.inc.php:77 server_binlog.php:110 #: server_status.php:364 test/theme.php:121 msgid "Binary log" msgstr "ද්වීමය ලොගය" -#: libraries/server_links.inc.php:80 +#: libraries/server_links.inc.php:81 msgid "Processes" msgstr "ක්‍රියාවලිය" -#: libraries/server_links.inc.php:92 server_synchronize.php:1092 +#: libraries/server_links.inc.php:93 server_synchronize.php:1092 #: server_synchronize.php:1100 msgid "Synchronize" msgstr "" @@ -3909,13 +3952,13 @@ msgstr "" msgid "Save" msgstr "සේව් කරන්න" -#: libraries/tbl_properties.inc.php:780 tbl_structure.php:542 +#: libraries/tbl_properties.inc.php:780 tbl_structure.php:540 #, fuzzy, php-format #| msgid "Add %s field(s)" msgid "Add %s column(s)" msgstr "%s ක්ෂේත්‍ර(යක්) එක් කරන්න" -#: libraries/tbl_properties.inc.php:784 tbl_structure.php:536 +#: libraries/tbl_properties.inc.php:784 tbl_structure.php:534 #, fuzzy #| msgid "You have to add at least one field." msgid "You have to add at least one column." @@ -4114,8 +4157,8 @@ msgstr "ප්‍රතිසකසන්න" msgid "Protocol version" msgstr "ප්‍රෝටකෝල සංස්කරණය" -#: main.php:189 server_privileges.php:1389 server_privileges.php:1536 -#: server_privileges.php:1650 server_privileges.php:2068 +#: main.php:189 server_privileges.php:1406 server_privileges.php:1556 +#: server_privileges.php:1670 server_privileges.php:2089 #: server_processlist.php:54 msgid "User" msgstr "භාවිතා කරන්නා" @@ -4560,112 +4603,112 @@ msgstr "ගබඩා යන්ත්‍ර" msgid "View dump (schema) of databases" msgstr "View dump (schema) of databases" -#: server_privileges.php:24 server_privileges.php:266 +#: server_privileges.php:25 server_privileges.php:267 msgid "Includes all privileges except GRANT." msgstr "Includes all privileges except GRANT." -#: server_privileges.php:25 server_privileges.php:192 -#: server_privileges.php:515 +#: server_privileges.php:26 server_privileges.php:193 +#: server_privileges.php:516 msgid "Allows altering the structure of existing tables." msgstr "Allows altering the structure of existing tables." -#: server_privileges.php:26 server_privileges.php:208 -#: server_privileges.php:521 +#: server_privileges.php:27 server_privileges.php:209 +#: server_privileges.php:522 msgid "Allows altering and dropping stored routines." msgstr "Allows altering and dropping stored routines." -#: server_privileges.php:27 server_privileges.php:184 -#: server_privileges.php:514 +#: server_privileges.php:28 server_privileges.php:185 +#: server_privileges.php:515 msgid "Allows creating new databases and tables." msgstr "Allows creating new databases and tables." -#: server_privileges.php:28 server_privileges.php:207 -#: server_privileges.php:520 +#: server_privileges.php:29 server_privileges.php:208 +#: server_privileges.php:521 msgid "Allows creating stored routines." msgstr "Allows creating stored routines." -#: server_privileges.php:29 server_privileges.php:514 +#: server_privileges.php:30 server_privileges.php:515 msgid "Allows creating new tables." msgstr "Allows creating new tables." -#: server_privileges.php:30 server_privileges.php:195 -#: server_privileges.php:518 +#: server_privileges.php:31 server_privileges.php:196 +#: server_privileges.php:519 msgid "Allows creating temporary tables." msgstr "Allows creating temporary tables." -#: server_privileges.php:31 server_privileges.php:209 -#: server_privileges.php:554 +#: server_privileges.php:32 server_privileges.php:210 +#: server_privileges.php:555 msgid "Allows creating, dropping and renaming user accounts." msgstr "Allows creating, dropping and renaming user accounts." -#: server_privileges.php:32 server_privileges.php:199 -#: server_privileges.php:203 server_privileges.php:526 -#: server_privileges.php:530 +#: server_privileges.php:33 server_privileges.php:200 +#: server_privileges.php:204 server_privileges.php:527 +#: server_privileges.php:531 msgid "Allows creating new views." msgstr "Allows creating new views." -#: server_privileges.php:33 server_privileges.php:183 -#: server_privileges.php:506 +#: server_privileges.php:34 server_privileges.php:184 +#: server_privileges.php:507 msgid "Allows deleting data." msgstr "Allows deleting data." -#: server_privileges.php:34 server_privileges.php:185 -#: server_privileges.php:517 +#: server_privileges.php:35 server_privileges.php:186 +#: server_privileges.php:518 msgid "Allows dropping databases and tables." msgstr "Allows dropping databases and tables." -#: server_privileges.php:35 server_privileges.php:517 +#: server_privileges.php:36 server_privileges.php:518 msgid "Allows dropping tables." msgstr "Allows dropping tables." -#: server_privileges.php:36 server_privileges.php:200 -#: server_privileges.php:534 +#: server_privileges.php:37 server_privileges.php:201 +#: server_privileges.php:535 msgid "Allows to set up events for the event scheduler" msgstr "" -#: server_privileges.php:37 server_privileges.php:210 -#: server_privileges.php:522 +#: server_privileges.php:38 server_privileges.php:211 +#: server_privileges.php:523 msgid "Allows executing stored routines." msgstr "Allows executing stored routines." -#: server_privileges.php:38 server_privileges.php:189 -#: server_privileges.php:509 +#: server_privileges.php:39 server_privileges.php:190 +#: server_privileges.php:510 msgid "Allows importing data from and exporting data into files." msgstr "Allows importing data from and exporting data into files." -#: server_privileges.php:39 server_privileges.php:540 +#: server_privileges.php:40 server_privileges.php:541 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "Allows adding users and privileges without reloading the privilege tables." -#: server_privileges.php:40 server_privileges.php:191 -#: server_privileges.php:516 +#: server_privileges.php:41 server_privileges.php:192 +#: server_privileges.php:517 msgid "Allows creating and dropping indexes." msgstr "Allows creating and dropping indexes." -#: server_privileges.php:41 server_privileges.php:181 -#: server_privileges.php:442 server_privileges.php:504 +#: server_privileges.php:42 server_privileges.php:182 +#: server_privileges.php:443 server_privileges.php:505 msgid "Allows inserting and replacing data." msgstr "Allows inserting and replacing data." -#: server_privileges.php:42 server_privileges.php:196 -#: server_privileges.php:549 +#: server_privileges.php:43 server_privileges.php:197 +#: server_privileges.php:550 msgid "Allows locking tables for the current thread." msgstr "Allows locking tables for the current thread." -#: server_privileges.php:43 server_privileges.php:646 -#: server_privileges.php:648 +#: server_privileges.php:44 server_privileges.php:647 +#: server_privileges.php:649 msgid "Limits the number of new connections the user may open per hour." msgstr "Limits the number of new connections the user may open per hour." -#: server_privileges.php:44 server_privileges.php:634 -#: server_privileges.php:636 +#: server_privileges.php:45 server_privileges.php:635 +#: server_privileges.php:637 msgid "Limits the number of queries the user may send to the server per hour." msgstr "Limits the number of queries the user may send to the server per hour." -#: server_privileges.php:45 server_privileges.php:640 -#: server_privileges.php:642 +#: server_privileges.php:46 server_privileges.php:641 +#: server_privileges.php:643 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -4673,58 +4716,58 @@ 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 +#: server_privileges.php:47 server_privileges.php:653 +#: server_privileges.php:655 msgid "Limits the number of simultaneous connections the user may have." msgstr "Limits the number of simultaneous connections the user may have." -#: server_privileges.php:47 server_privileges.php:188 -#: server_privileges.php:544 +#: server_privileges.php:48 server_privileges.php:189 +#: server_privileges.php:545 msgid "Allows viewing processes of all users" msgstr "" -#: server_privileges.php:48 server_privileges.php:190 -#: server_privileges.php:448 server_privileges.php:550 +#: server_privileges.php:49 server_privileges.php:191 +#: server_privileges.php:449 server_privileges.php:551 msgid "Has no effect in this MySQL version." msgstr "Has no effect in this MySQL version." -#: server_privileges.php:49 server_privileges.php:186 -#: server_privileges.php:545 +#: server_privileges.php:50 server_privileges.php:187 +#: server_privileges.php:546 msgid "Allows reloading server settings and flushing the server's caches." msgstr "Allows reloading server settings and flushing the server's caches." -#: server_privileges.php:50 server_privileges.php:198 -#: server_privileges.php:552 +#: server_privileges.php:51 server_privileges.php:199 +#: server_privileges.php:553 msgid "Allows the user to ask where the slaves / masters are." msgstr "Allows the user to ask where the slaves / masters are." -#: server_privileges.php:51 server_privileges.php:197 -#: server_privileges.php:553 +#: server_privileges.php:52 server_privileges.php:198 +#: server_privileges.php:554 msgid "Needed for the replication slaves." msgstr "Needed for the replication slaves." -#: server_privileges.php:52 server_privileges.php:180 -#: server_privileges.php:439 server_privileges.php:503 +#: server_privileges.php:53 server_privileges.php:181 +#: server_privileges.php:440 server_privileges.php:504 msgid "Allows reading data." msgstr "Allows reading data." -#: server_privileges.php:53 server_privileges.php:193 -#: server_privileges.php:547 +#: server_privileges.php:54 server_privileges.php:194 +#: server_privileges.php:548 msgid "Gives access to the complete list of databases." msgstr "Gives access to the complete list of databases." -#: server_privileges.php:54 server_privileges.php:204 -#: server_privileges.php:206 server_privileges.php:519 +#: server_privileges.php:55 server_privileges.php:205 +#: server_privileges.php:207 server_privileges.php:520 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Allows performing SHOW CREATE VIEW queries." -#: server_privileges.php:55 server_privileges.php:187 -#: server_privileges.php:546 +#: server_privileges.php:56 server_privileges.php:188 +#: server_privileges.php:547 msgid "Allows shutting down the server." msgstr "Allows shutting down the server." -#: server_privileges.php:56 server_privileges.php:194 -#: server_privileges.php:543 +#: server_privileges.php:57 server_privileges.php:195 +#: server_privileges.php:544 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -4734,158 +4777,158 @@ msgstr "" "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 +#: server_privileges.php:58 server_privileges.php:202 +#: server_privileges.php:536 #, fuzzy msgid "Allows creating and dropping triggers" msgstr "Allows creating and dropping indexes." -#: server_privileges.php:58 server_privileges.php:182 -#: server_privileges.php:445 server_privileges.php:505 +#: server_privileges.php:59 server_privileges.php:183 +#: server_privileges.php:446 server_privileges.php:506 msgid "Allows changing data." msgstr "Allows changing data." -#: server_privileges.php:59 server_privileges.php:260 +#: server_privileges.php:60 server_privileges.php:261 msgid "No privileges." msgstr "වරප්‍රසාද නොමැත." -#: server_privileges.php:302 server_privileges.php:303 +#: server_privileges.php:303 server_privileges.php:304 #, fuzzy #| msgid "None" msgctxt "None privileges" msgid "None" msgstr "කිසිවක් නැත" -#: server_privileges.php:431 server_privileges.php:566 -#: server_privileges.php:1718 server_privileges.php:1724 +#: server_privileges.php:432 server_privileges.php:567 +#: server_privileges.php:1738 server_privileges.php:1744 msgid "Table-specific privileges" msgstr "Table-specific privileges" -#: server_privileges.php:432 server_privileges.php:574 -#: server_privileges.php:1540 +#: server_privileges.php:433 server_privileges.php:575 +#: server_privileges.php:1560 msgid " Note: MySQL privilege names are expressed in English " msgstr " Note: MySQL privilege names are expressed in English " -#: server_privileges.php:563 server_privileges.php:1539 +#: server_privileges.php:564 server_privileges.php:1559 msgid "Global privileges" msgstr "ගෝලීය වරප්‍රසාද" -#: server_privileges.php:565 server_privileges.php:1718 +#: server_privileges.php:566 server_privileges.php:1738 msgid "Database-specific privileges" msgstr "දත්තගබඩා විශේෂිත වරප්‍රසාද" -#: server_privileges.php:610 +#: server_privileges.php:611 msgid "Administration" msgstr "පරිපාලනය" -#: server_privileges.php:630 +#: server_privileges.php:631 msgid "Resource limits" msgstr "සම්පත් සීමා" -#: server_privileges.php:631 +#: server_privileges.php:632 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "සටහන: මෙම විකල්පය 0 (බිංදුවට) පත් කිරීම මගින්සීමා ඉවත් වනු ලැ‍‍බේ." -#: server_privileges.php:708 +#: server_privileges.php:709 msgid "Login Information" msgstr "ලොගින තොරතුරු" -#: server_privileges.php:802 +#: server_privileges.php:803 msgid "Do not change the password" msgstr "මුරපදය වෙනස් නොකරන්න" -#: server_privileges.php:843 server_privileges.php:2205 +#: server_privileges.php:844 server_privileges.php:2226 #, fuzzy #| msgid "No user(s) found." msgid "No user found." msgstr "No user(s) found." -#: server_privileges.php:887 +#: server_privileges.php:888 #, php-format msgid "The user %s already exists!" msgstr "%s භාවිතා කරන්නා දැනටමත් පවතී!" -#: server_privileges.php:970 +#: server_privileges.php:971 msgid "You have added a new user." msgstr "ඔබ නව භාවිතා කරන්නනෙක් එක් කරන ලදි." -#: server_privileges.php:1191 +#: server_privileges.php:1196 #, php-format msgid "You have updated the privileges for %s." msgstr "You have updated the privileges for %s." -#: server_privileges.php:1215 +#: server_privileges.php:1220 #, php-format msgid "You have revoked the privileges for %s" msgstr "You have revoked the privileges for %s" -#: server_privileges.php:1251 +#: server_privileges.php:1256 #, php-format msgid "The password for %s was changed successfully." msgstr "The password for %s was changed successfully." -#: server_privileges.php:1271 +#: server_privileges.php:1276 #, php-format msgid "Deleting %s" msgstr "%s ඉවත් කරමින් පවතී" -#: server_privileges.php:1282 +#: server_privileges.php:1287 msgid "No users selected for deleting!" msgstr "ඉවත් කිරීම සඳහා භාවිතා කරන්නන් කිසිවෙක් තෝරාගෙන නොමැත!" -#: server_privileges.php:1285 +#: server_privileges.php:1290 msgid "Reloading the privileges" msgstr "Reloading the privileges" -#: server_privileges.php:1300 +#: server_privileges.php:1305 msgid "The selected users have been deleted successfully." msgstr "The selected users have been deleted successfully." -#: server_privileges.php:1335 +#: server_privileges.php:1344 msgid "The privileges were reloaded successfully." msgstr "The privileges were reloaded successfully." -#: server_privileges.php:1363 server_privileges.php:1649 +#: server_privileges.php:1380 server_privileges.php:1669 msgid "Edit Privileges" msgstr "වරප්‍රසාද සංස්කරණය කරන්න" -#: server_privileges.php:1372 +#: server_privileges.php:1389 msgid "Revoke" msgstr "Revoke" -#: server_privileges.php:1404 +#: server_privileges.php:1424 msgid "User overview" msgstr "User overview" -#: server_privileges.php:1541 server_privileges.php:1723 -#: server_privileges.php:2072 +#: server_privileges.php:1561 server_privileges.php:1743 +#: server_privileges.php:2093 msgid "Grant" msgstr "ප්‍රදානය කරන්න" -#: server_privileges.php:1560 server_privileges.php:2162 +#: server_privileges.php:1580 server_privileges.php:2183 msgid "Any" msgstr "ඕනෑම" -#: server_privileges.php:1609 server_privileges.php:1633 -#: server_privileges.php:2027 server_privileges.php:2216 +#: server_privileges.php:1629 server_privileges.php:1653 +#: server_privileges.php:2048 server_privileges.php:2237 msgid "Add a new User" msgstr "නව භාවිතා කරන්නේක් එක් කරන්න" -#: server_privileges.php:1614 +#: server_privileges.php:1634 msgid "Remove selected users" msgstr "තෝරාගත් භාවිතා කරන්නන් ඉවත් කරන්න" -#: server_privileges.php:1617 +#: server_privileges.php:1637 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:1618 server_privileges.php:1619 -#: server_privileges.php:1620 +#: server_privileges.php:1638 server_privileges.php:1639 +#: server_privileges.php:1640 msgid "Drop the databases that have the same names as the users." msgstr "භාවිතා කරන්නන් හා සමාන නම් ඇති දත්තගබඩා හලන්න." -#: server_privileges.php:1636 +#: server_privileges.php:1656 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -4898,92 +4941,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:1684 +#: server_privileges.php:1704 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:1724 +#: server_privileges.php:1744 msgid "Column-specific privileges" msgstr "Column-specific privileges" -#: server_privileges.php:1925 +#: server_privileges.php:1945 msgid "Add privileges on the following database" msgstr "පහත දත්තගබඩාවට වරප්‍රසාද එක් කරන්න" -#: server_privileges.php:1943 +#: server_privileges.php:1963 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:1946 +#: server_privileges.php:1966 msgid "Add privileges on the following table" msgstr "පහත වගුවට වරප්‍රසාද එක් කරන්න" -#: server_privileges.php:2003 +#: server_privileges.php:2023 msgid "Change Login Information / Copy User" msgstr "ලොගින් තොරතුරු වෙනස් කරන්න / භාවිතා කරන්නා පිටපත් කරන්න" -#: server_privileges.php:2006 +#: server_privileges.php:2026 msgid "Create a new user with the same privileges and ..." msgstr "සහ එකම වරප්‍රසාද සහිතව නව භාවිතා කරන්නෙක් එක් කරන්න..." -#: server_privileges.php:2008 +#: server_privileges.php:2028 msgid "... keep the old one." msgstr "... පැරණි එක තබා ගන්න." -#: server_privileges.php:2009 +#: server_privileges.php:2029 msgid " ... delete the old one from the user tables." msgstr " ... භාවිතා කරන්නන්ගේ වගුවෙන් පැරණි එක ඉවත් කරන්න." -#: server_privileges.php:2010 +#: server_privileges.php:2030 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:2011 +#: server_privileges.php:2031 msgid "" " ... delete the old one from the user tables and reload the privileges " "afterwards." msgstr ".. භාවිතා කරන්නන්ගේ වගුවෙන් පැරණි එක ඉවත් කර වරප්‍රසාද නැවත අලුත් කරන්න." -#: server_privileges.php:2033 +#: server_privileges.php:2054 msgid "Database for user" msgstr "භාවිතා කරන්නා සඳහා දත්තගබඩාව" -#: server_privileges.php:2037 +#: server_privileges.php:2058 #, fuzzy #| msgid "None" msgctxt "Create none database for user" msgid "None" msgstr "කිසිවක් නැත" -#: server_privileges.php:2038 +#: server_privileges.php:2059 msgid "Create database with same name and grant all privileges" msgstr "එකම නමින් දත්තගබඩාවක සාදා සියලු වරප්‍රසාද එයට දෙන්න" -#: server_privileges.php:2039 +#: server_privileges.php:2060 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "අභිමත ආදේශක නාමයන් සඳහා සියලු වරප්‍රසාද දෙන්න (භාවිත නාමය_%)" -#: server_privileges.php:2042 +#: server_privileges.php:2063 #, fuzzy, php-format msgid "Grant all privileges on database "%s"" msgstr ""%s" දත්තගබඩාව සඳහා වරප්‍රසාද පරීක්ෂා කරන්න." -#: server_privileges.php:2065 +#: server_privileges.php:2086 #, php-format msgid "Users having access to "%s"" msgstr "Users having access to "%s"" -#: server_privileges.php:2173 +#: server_privileges.php:2194 msgid "global" msgstr "ගෝලීම" -#: server_privileges.php:2175 +#: server_privileges.php:2196 msgid "database-specific" msgstr "දත්තගබඩා විශේෂිත" -#: server_privileges.php:2177 +#: server_privileges.php:2198 msgid "wildcard" msgstr "wildcard" @@ -7807,6 +7850,10 @@ msgstr "" msgid "Show insert query" msgstr "" +#: tbl_change.php:1143 +msgid "and then" +msgstr "සහ එවිට" + #: tbl_change.php:1147 msgid "Go back to previous page" msgstr "පෙර පිටුවට ආපසු යන්න" @@ -7887,7 +7934,7 @@ msgstr "" msgid "Add to index  %s column(s)" msgstr " %s තීර(ය) සූචියට එක් කරන්න" -#: tbl_indexes.php:256 tbl_structure.php:589 tbl_structure.php:600 +#: tbl_indexes.php:256 tbl_structure.php:587 tbl_structure.php:598 msgid "Column count has to be larger than zero." msgstr "Column count has to be larger than zero." @@ -8004,39 +8051,39 @@ msgstr "Check referential integrity:" msgid "Show tables" msgstr "වගු පෙන්වන්න" -#: tbl_printview.php:310 tbl_structure.php:656 +#: tbl_printview.php:310 tbl_structure.php:654 msgid "Space usage" msgstr "අවකාශ භාවිතය" -#: tbl_printview.php:314 tbl_structure.php:660 +#: tbl_printview.php:314 tbl_structure.php:658 msgid "Usage" msgstr "භාවිතය" -#: tbl_printview.php:341 tbl_structure.php:687 +#: tbl_printview.php:341 tbl_structure.php:685 msgid "Effective" msgstr "Effective" -#: tbl_printview.php:366 tbl_structure.php:725 +#: tbl_printview.php:366 tbl_structure.php:723 msgid "Row Statistics" msgstr "පේළි සංඛ්‍ය ලේඛන" -#: tbl_printview.php:369 tbl_structure.php:728 +#: tbl_printview.php:369 tbl_structure.php:726 msgid "Statements" msgstr "ප්‍රකාශය" -#: tbl_printview.php:380 tbl_structure.php:740 +#: tbl_printview.php:380 tbl_structure.php:738 msgid "static" msgstr "" -#: tbl_printview.php:382 tbl_structure.php:742 +#: tbl_printview.php:382 tbl_structure.php:740 msgid "dynamic" msgstr "ගතික" -#: tbl_printview.php:404 tbl_structure.php:785 +#: tbl_printview.php:404 tbl_structure.php:783 msgid "Row length" msgstr "පේළියේ දිග" -#: tbl_printview.php:414 tbl_structure.php:793 +#: tbl_printview.php:414 tbl_structure.php:791 msgid " Row size " msgstr "පේළියේ ප්‍රමාණය" @@ -8108,50 +8155,50 @@ msgstr "කිසිවක් නැත" msgid "Column %s has been dropped" msgstr "%s වගුව හලන ලදි" -#: tbl_structure.php:385 +#: tbl_structure.php:384 #, php-format msgid "A primary key has been added on %s" msgstr "%s ට මූලික යතුරක් එක් කරන ලදි" -#: tbl_structure.php:400 tbl_structure.php:414 tbl_structure.php:428 +#: tbl_structure.php:398 tbl_structure.php:412 tbl_structure.php:426 #, php-format msgid "An index has been added on %s" msgstr "%s සඳහා සූචියක් එක්කරන ලදි" -#: tbl_structure.php:506 tbl_structure.php:508 +#: tbl_structure.php:504 tbl_structure.php:506 msgid "Relation view" msgstr "Relation view" -#: tbl_structure.php:515 tbl_structure.php:517 +#: tbl_structure.php:513 tbl_structure.php:515 msgid "Propose table structure" msgstr "Propose table structure" -#: tbl_structure.php:540 +#: tbl_structure.php:538 #, fuzzy #| msgid "Add %s field(s)" msgid "Add column" msgstr "%s ක්ෂේත්‍ර(යක්) එක් කරන්න" -#: tbl_structure.php:554 +#: tbl_structure.php:552 msgid "At End of Table" msgstr "වගුව අවසනදී" -#: tbl_structure.php:555 +#: tbl_structure.php:553 msgid "At Beginning of Table" msgstr "වගුව මුලදී" -#: tbl_structure.php:556 +#: tbl_structure.php:554 #, php-format msgid "After %s" msgstr "%s ට පසු" -#: tbl_structure.php:594 +#: tbl_structure.php:592 #, fuzzy, php-format #| msgid "Create an index on %s columns" msgid "Create an index on  %s columns" msgstr "Create an index on %s columns" -#: tbl_structure.php:756 +#: tbl_structure.php:754 msgid "partitioned" msgstr "" @@ -8593,9 +8640,6 @@ msgstr "වගුව බවට නම වෙනස් කරන්න" #~ msgid "Process list" #~ msgstr "ක්‍රියාවලි ලයිස්තුව" -#~ msgid "Reload privileges" -#~ msgstr "වරප්‍රසාද ප්‍රතිප්‍රවේශනය කරන්න" - #~ msgid "" #~ "The users will still have the USAGE privilege until the privileges are " #~ "reloaded." diff --git a/po/sk.po b/po/sk.po index d399c03f2..050a5f09e 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-13 09:03-0400\n" +"POT-Creation-Date: 2010-06-22 00:55+0530\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:1514 +#: libraries/display_tbl.lib.php:417 server_privileges.php:1534 msgid "Show all" msgstr "Zobraziť všetko" -#: browse_foreigners.php:82 libraries/common.lib.php:2313 +#: browse_foreigners.php:82 libraries/common.lib.php:2317 #: 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,18 +38,18 @@ 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:2831 -#: libraries/common.lib.php:2838 libraries/db_links.inc.php:75 +#: db_structure.php:106 libraries/common.lib.php:2835 +#: libraries/common.lib.php:2842 libraries/db_links.inc.php:75 #: libraries/tbl_links.inc.php:63 msgid "Search" msgstr "Hľadať" -#: browse_foreigners.php:153 db_operations.php:385 db_operations.php:429 -#: db_operations.php:499 db_operations.php:609 db_search.php:362 -#: db_structure.php:567 js/messages.php:48 libraries/Config.class.php:1046 +#: browse_foreigners.php:153 db_operations.php:394 db_operations.php:438 +#: db_operations.php:508 db_operations.php:618 db_search.php:362 +#: db_structure.php:565 js/messages.php:53 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:1335 libraries/common.lib.php:2288 +#: libraries/common.lib.php:1335 libraries/common.lib.php:2292 #: 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,15 +60,15 @@ 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:664 server_privileges.php:1624 -#: server_privileges.php:1971 server_privileges.php:2018 -#: server_privileges.php:2057 server_replication.php:235 +#: server_privileges.php:665 server_privileges.php:1644 +#: server_privileges.php:1991 server_privileges.php:2038 +#: server_privileges.php:2078 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 #: tbl_operations.php:302 tbl_operations.php:499 tbl_operations.php:561 -#: tbl_operations.php:681 tbl_select.php:327 tbl_structure.php:562 -#: tbl_structure.php:597 tbl_tracking.php:395 tbl_tracking.php:512 +#: tbl_operations.php:681 tbl_select.php:327 tbl_structure.php:560 +#: tbl_structure.php:595 tbl_tracking.php:395 tbl_tracking.php:512 #: view_create.php:182 view_operations.php:101 msgid "Go" msgstr "Vykonaj" @@ -94,7 +94,7 @@ msgstr "Použiť túto hodnotu" msgid "Database %1$s has been created." msgstr "Databáza %1$s bola vytvorená." -#: db_datadict.php:49 db_operations.php:378 +#: db_datadict.php:49 db_operations.php:387 msgid "Database comment: " msgstr "Komentár k databáze: " @@ -121,10 +121,10 @@ 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:2070 +#: pdf_schema.php:1263 pdf_schema.php:1284 server_privileges.php:2091 #: 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 +#: tbl_structure.php:657 tbl_tracking.php:274 tbl_tracking.php:321 msgid "Type" msgstr "Typ" @@ -137,7 +137,7 @@ msgstr "Typ" msgid "Null" msgstr "Nulový" -#: db_datadict.php:178 db_structure.php:501 libraries/export/htmlword.php:247 +#: db_datadict.php:178 db_structure.php:499 libraries/export/htmlword.php:247 #: libraries/export/latex.php:360 libraries/export/odt.php:303 #: libraries/export/texytext.php:236 libraries/tbl_properties.inc.php:106 #: pdf_schema.php:1266 pdf_schema.php:1287 tbl_printview.php:146 @@ -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: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 +#: pdf_schema.php:1344 server_privileges.php:1588 server_privileges.php:1599 +#: server_privileges.php:1909 server_privileges.php:1914 +#: server_privileges.php:2208 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:1565 -#: server_privileges.php:1579 server_privileges.php:1889 -#: server_privileges.php:1892 server_privileges.php:2187 sql.php:193 +#: server_databases.php:64 server_privileges.php:1585 +#: server_privileges.php:1599 server_privileges.php:1909 +#: server_privileges.php:1912 server_privileges.php:2208 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" @@ -210,127 +210,123 @@ msgstr "Označiť všetko" msgid "Unselect All" msgstr "Odznačiť všetko" -#: db_operations.php:38 tbl_create.php:54 +#: db_operations.php:43 tbl_create.php:54 msgid "The database name is empty!" msgstr "Meno databázy je prázdne!" -#: db_operations.php:236 +#: db_operations.php:241 #, php-format msgid "Database %s has been renamed to %s" msgstr "Databáza %s bola premenovaná na %s" -#: db_operations.php:240 +#: db_operations.php:245 #, php-format msgid "Database %s has been copied to %s" msgstr "Databáza %s bola skopírovaná na %s" -#: db_operations.php:412 +#: db_operations.php:421 msgid "Rename database to" msgstr "Premenovať databázu na" -#: db_operations.php:417 server_processlist.php:57 +#: db_operations.php:426 server_processlist.php:57 msgid "Command" msgstr "Príkaz" -#: db_operations.php:429 tbl_change.php:1143 -msgid "and then" -msgstr "a potom" - -#: db_operations.php:455 +#: db_operations.php:464 msgid "Copy database to" msgstr "Skopírovať databázu na" -#: db_operations.php:462 tbl_operations.php:528 tbl_tracking.php:388 +#: db_operations.php:471 tbl_operations.php:528 tbl_tracking.php:388 msgid "Structure only" msgstr "Iba štruktúru" -#: db_operations.php:463 tbl_operations.php:529 tbl_tracking.php:390 +#: db_operations.php:472 tbl_operations.php:529 tbl_tracking.php:390 msgid "Structure and data" msgstr "Štruktúru a dáta" -#: db_operations.php:464 tbl_operations.php:530 tbl_tracking.php:389 +#: db_operations.php:473 tbl_operations.php:530 tbl_tracking.php:389 msgid "Data only" msgstr "Iba dáta" -#: db_operations.php:472 +#: db_operations.php:481 msgid "CREATE DATABASE before copying" msgstr "Vytvoriť databázu (CREATE DATABASE) pred kopírovaním" -#: db_operations.php:475 libraries/export/sql.php:52 +#: db_operations.php:484 libraries/export/sql.php:52 #: libraries/export/sql.php:74 libraries/export/sql.php:76 #: libraries/export/sql.php:82 tbl_operations.php:536 #, php-format msgid "Add %s" msgstr "Pridať %s" -#: db_operations.php:479 libraries/export/sql.php:78 tbl_operations.php:299 +#: db_operations.php:488 libraries/export/sql.php:78 tbl_operations.php:299 #: tbl_operations.php:538 msgid "Add AUTO_INCREMENT value" msgstr "Pridať hodnotu AUTO_INCREMENT" -#: db_operations.php:483 tbl_operations.php:545 +#: db_operations.php:492 tbl_operations.php:545 msgid "Add constraints" msgstr "Pridať obmedzenia" -#: db_operations.php:496 +#: db_operations.php:505 msgid "Switch to copied database" msgstr "Prepnúť na skopírovanú databázu" -#: db_operations.php:537 +#: db_operations.php:546 msgid "BLOB Repository" msgstr "" -#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1352 -#: libraries/server_links.inc.php:49 server_processlist.php:59 +#: db_operations.php:549 db_tracking.php:76 libraries/common.lib.php:1352 +#: libraries/server_links.inc.php:50 server_processlist.php:59 #: tbl_tracking.php:596 test/theme.php:101 msgid "Status" msgstr "Stav" -#: db_operations.php:548 +#: db_operations.php:557 #, fuzzy #| msgid "Enabled" msgctxt "BLOB repository" msgid "Enabled" msgstr "Zapnuté" -#: db_operations.php:552 +#: db_operations.php:561 #, fuzzy msgid "Disable" msgstr "Vypnuté" -#: db_operations.php:562 +#: db_operations.php:571 msgid "Damaged" msgstr "Poškodené" -#: db_operations.php:566 +#: db_operations.php:575 #, fuzzy #| msgid "Repair" msgctxt "BLOB repository" msgid "Repair" msgstr "Opraviť" -#: db_operations.php:574 +#: db_operations.php:583 #, fuzzy #| msgid "Disabled" msgctxt "BLOB repository" msgid "Disabled" msgstr "Vypnuté" -#: db_operations.php:578 +#: db_operations.php:587 #, fuzzy msgid "Enable" msgstr "Zapnuté" -#: db_operations.php:602 libraries/Index.class.php:448 +#: db_operations.php:611 libraries/Index.class.php:448 #: libraries/db_structure.lib.php:62 libraries/mysql_charsets.lib.php:107 #: libraries/tbl_properties.inc.php:107 libraries/tbl_properties.inc.php:730 #: server_collations.php:54 server_collations.php:66 server_databases.php:111 #: tbl_operations.php:363 tbl_select.php:137 tbl_structure.php:179 -#: tbl_structure.php:767 tbl_tracking.php:275 tbl_tracking.php:326 +#: tbl_structure.php:765 tbl_tracking.php:275 tbl_tracking.php:326 msgid "Collation" msgstr "Zotriedenie" -#: db_operations.php:615 main.php:316 pdf_schema.php:34 +#: db_operations.php:624 main.php:316 pdf_schema.php:34 #, php-format msgid "" "The additional features for working with linked tables have been " @@ -339,14 +335,14 @@ msgstr "" "Prídavné vlastnosti pre prácu s prepojenými tabuľkami boli deaktivované. Ak " "chcete zistiť prečo, kliknite %ssem%s." -#: db_operations.php:648 +#: db_operations.php:657 msgid "Edit PDF Pages" 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:1665 -#: server_privileges.php:1721 server_privileges.php:1985 +#: libraries/header.inc.php:130 pdf_pages.php:424 server_privileges.php:1685 +#: server_privileges.php:1741 server_privileges.php:2005 #: server_synchronize.php:423 server_synchronize.php:866 tbl_tracking.php:592 #: test/theme.php:75 msgid "Table" @@ -355,7 +351,7 @@ msgstr "Tabuľka" #: db_printview.php:105 libraries/db_structure.lib.php:56 #: libraries/header_printview.inc.php:63 libraries/import.lib.php:146 #: navigation.php:638 navigation.php:660 server_databases.php:122 -#: tbl_printview.php:394 tbl_structure.php:365 tbl_structure.php:777 +#: tbl_printview.php:394 tbl_structure.php:365 tbl_structure.php:775 msgid "Rows" msgstr "Riadkov" @@ -363,30 +359,30 @@ msgstr "Riadkov" msgid "Size" msgstr "Veľkosť" -#: db_printview.php:162 db_structure.php:457 libraries/export/sql.php:559 +#: db_printview.php:162 db_structure.php:455 libraries/export/sql.php:559 #: libraries/export/sql.php:899 msgid "in use" msgstr "práve sa používa" #: db_printview.php:187 libraries/db_info.inc.php:88 #: libraries/export/sql.php:514 pdf_schema.php:1241 tbl_printview.php:434 -#: tbl_structure.php:809 +#: tbl_structure.php:807 msgid "Creation" msgstr "Vytvorenie" #: db_printview.php:196 libraries/db_info.inc.php:93 #: libraries/export/sql.php:519 pdf_schema.php:1246 tbl_printview.php:444 -#: tbl_structure.php:817 +#: tbl_structure.php:815 msgid "Last update" msgstr "Posledná zmena" #: db_printview.php:205 libraries/db_info.inc.php:98 #: libraries/export/sql.php:524 pdf_schema.php:1251 tbl_printview.php:454 -#: tbl_structure.php:825 +#: tbl_structure.php:823 msgid "Last check" msgstr "Posledná kontrola" -#: db_printview.php:222 db_structure.php:480 +#: db_printview.php:222 db_structure.php:478 #, fuzzy, php-format #| msgid "%s table(s)" msgid "%s table" @@ -448,7 +444,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:297 tbl_change.php:1031 tbl_indexes.php:250 +#: server_privileges.php:298 tbl_change.php:1031 tbl_indexes.php:250 #: tbl_select.php:288 msgid "Or" msgstr "alebo" @@ -521,9 +517,9 @@ 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:2833 +#: db_structure.php:105 libraries/common.lib.php:2837 #: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50 -#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:467 +#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:465 msgid "Browse" msgstr "Prechádzať" @@ -569,36 +565,36 @@ 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:2832 libraries/sql_query_form.lib.php:334 +#: libraries/common.lib.php:2836 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:2829 libraries/common.lib.php:2836 +#: libraries/common.lib.php:2833 libraries/common.lib.php:2840 #: 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:1106 #: libraries/tbl_links.inc.php:56 pmd_general.php:134 -#: server_privileges.php:593 server_replication.php:315 tbl_tracking.php:269 +#: server_privileges.php:594 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:1656 +#: db_structure.php:543 db_structure.php:544 db_tracking.php:91 +#: libraries/Index.class.php:483 libraries/common.lib.php:1657 #: 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 -#: tbl_structure.php:152 tbl_structure.php:471 +#: tbl_structure.php:152 tbl_structure.php:469 msgid "Drop" 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:1655 +#: db_structure.php:541 db_structure.php:542 libraries/common.lib.php:1656 #: libraries/mult_submits.inc.php:39 libraries/tbl_links.inc.php:105 msgid "Empty" msgstr "Vyprázdniť" @@ -608,111 +604,111 @@ msgstr "Vyprázdniť" msgid "Table %s has been emptied" msgstr "Tabuľka %s bola vyprázdená" -#: db_structure.php:326 libraries/tbl_links.inc.php:133 +#: db_structure.php:325 libraries/tbl_links.inc.php:133 #, php-format msgid "View %s has been dropped" msgstr "Pohľad %s bol odstránený" -#: db_structure.php:326 libraries/tbl_links.inc.php:133 +#: db_structure.php:325 libraries/tbl_links.inc.php:133 #, php-format msgid "Table %s has been dropped" msgstr "Tabuľka %s bola odstránená" -#: db_structure.php:333 +#: db_structure.php:332 msgid "Tracking is active." msgstr "" -#: db_structure.php:335 +#: db_structure.php:334 msgid "Tracking is not active." msgstr "" -#: db_structure.php:420 libraries/display_tbl.lib.php:1944 +#: db_structure.php:418 libraries/display_tbl.lib.php:1944 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation%" "s." msgstr "" -#: db_structure.php:434 db_structure.php:448 libraries/header.inc.php:126 +#: db_structure.php:432 db_structure.php:446 libraries/header.inc.php:130 #: libraries/tbl_info.inc.php:66 tbl_structure.php:185 test/theme.php:74 msgid "View" msgstr "Pohľad" -#: db_structure.php:485 libraries/db_structure.lib.php:49 -#: libraries/server_links.inc.php:70 server_replication.php:33 +#: db_structure.php:483 libraries/db_structure.lib.php:49 +#: libraries/server_links.inc.php:71 server_replication.php:33 #: server_replication.php:164 server_status.php:369 msgid "Replication" msgstr "Replikácia" -#: db_structure.php:489 +#: db_structure.php:487 msgid "Sum" msgstr "Celkom" -#: db_structure.php:496 libraries/StorageEngine.class.php:356 +#: db_structure.php:494 libraries/StorageEngine.class.php:356 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "Na tomto MySQL servri je prednastaveným úložným systémom %s." -#: db_structure.php:524 db_structure.php:541 db_structure.php:542 +#: db_structure.php:522 db_structure.php:539 db_structure.php:540 #: 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:1596 tbl_structure.php:455 -#: tbl_structure.php:464 +#: server_databases.php:351 server_privileges.php:1616 tbl_structure.php:453 +#: tbl_structure.php:462 msgid "With selected:" msgstr "Výber:" -#: db_structure.php:527 libraries/display_tbl.lib.php:2076 -#: server_databases.php:348 server_privileges.php:569 -#: server_privileges.php:1599 tbl_structure.php:458 +#: db_structure.php:525 libraries/display_tbl.lib.php:2076 +#: server_databases.php:348 server_privileges.php:570 +#: server_privileges.php:1619 tbl_structure.php:456 msgid "Check All" msgstr "Označiť všetko" -#: db_structure.php:531 libraries/display_tbl.lib.php:2077 +#: db_structure.php:529 libraries/display_tbl.lib.php:2077 #: libraries/replication_gui.lib.php:33 server_databases.php:350 -#: server_privileges.php:572 server_privileges.php:1603 tbl_structure.php:462 +#: server_privileges.php:573 server_privileges.php:1623 tbl_structure.php:460 msgid "Uncheck All" msgstr "Odznačiť všetko" -#: db_structure.php:536 +#: db_structure.php:534 msgid "Check tables having overhead" msgstr "Zvoliť neoptimálne" -#: db_structure.php:547 db_structure.php:548 db_structure.php:599 +#: db_structure.php:545 db_structure.php:546 db_structure.php:597 #: libraries/display_tbl.lib.php:2180 libraries/mult_submits.inc.php:28 -#: tbl_structure.php:492 tbl_structure.php:494 +#: tbl_structure.php:490 tbl_structure.php:492 msgid "Print view" msgstr "Náhľad k tlači" -#: db_structure.php:549 db_structure.php:550 libraries/mult_submits.inc.php:42 +#: db_structure.php:547 db_structure.php:548 libraries/mult_submits.inc.php:42 #: tbl_operations.php:581 msgid "Check table" msgstr "Skontrolovať tabuľku" -#: db_structure.php:551 db_structure.php:552 libraries/mult_submits.inc.php:47 -#: tbl_operations.php:621 tbl_structure.php:709 tbl_structure.php:711 +#: db_structure.php:549 db_structure.php:550 libraries/mult_submits.inc.php:47 +#: tbl_operations.php:621 tbl_structure.php:707 tbl_structure.php:709 msgid "Optimize table" msgstr "Optimalizovať tabuľku" -#: db_structure.php:553 db_structure.php:554 libraries/mult_submits.inc.php:52 +#: db_structure.php:551 db_structure.php:552 libraries/mult_submits.inc.php:52 #: tbl_operations.php:611 msgid "Repair table" msgstr "Opraviť tabuľku" -#: db_structure.php:555 db_structure.php:556 libraries/mult_submits.inc.php:57 +#: db_structure.php:553 db_structure.php:554 libraries/mult_submits.inc.php:57 #: tbl_operations.php:601 msgid "Analyze table" msgstr "Analyzovať tabuľku" -#: db_structure.php:557 db_structure.php:558 libraries/db_links.inc.php:71 +#: db_structure.php:555 db_structure.php:556 libraries/db_links.inc.php:71 #: 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:1380 +#: libraries/server_links.inc.php:85 libraries/tbl_links.inc.php:82 +#: pmd_pdf.php:84 pmd_pdf.php:109 server_privileges.php:1397 #: setup/frames/menu.inc.php:22 tbl_row_action.php:59 msgid "Export" msgstr "Exportovať" -#: db_structure.php:606 libraries/display_pdf_schema.lib.php:44 +#: db_structure.php:604 libraries/display_pdf_schema.lib.php:44 msgid "Data Dictionary" msgstr "Dátový slovník" @@ -723,10 +719,10 @@ msgstr "" #: db_tracking.php:71 libraries/export/htmlword.php:86 #: libraries/export/latex.php:148 libraries/export/odt.php:113 #: libraries/export/sql.php:342 libraries/export/texytext.php:84 -#: libraries/export/xml.php:255 libraries/header.inc.php:106 +#: libraries/export/xml.php:255 libraries/header.inc.php:110 #: libraries/header_printview.inc.php:58 server_databases.php:169 -#: server_privileges.php:1660 server_privileges.php:1721 -#: server_privileges.php:1979 server_processlist.php:56 +#: server_privileges.php:1680 server_privileges.php:1741 +#: server_privileges.php:1999 server_processlist.php:56 #: server_synchronize.php:1179 server_synchronize.php:1183 #: tbl_tracking.php:591 test/theme.php:65 msgid "Database" @@ -747,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:1542 server_privileges.php:1725 -#: server_privileges.php:2073 tbl_structure.php:187 +#: server_privileges.php:1562 server_privileges.php:1745 +#: server_privileges.php:2094 tbl_structure.php:187 msgid "Action" msgstr "Akcia" @@ -784,8 +780,8 @@ msgstr "Iba štruktúru" msgid "Untracked tables" msgstr "" -#: db_tracking.php:172 db_tracking.php:174 tbl_structure.php:528 -#: tbl_structure.php:530 +#: db_tracking.php:172 db_tracking.php:174 tbl_structure.php:526 +#: tbl_structure.php:528 #, fuzzy msgid "Track table" msgstr "Skontrolovať tabuľku" @@ -954,189 +950,236 @@ 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:1236 user_password.php:70 +#: js/messages.php:44 server_privileges.php:1241 user_password.php:70 msgid "The password is empty!" msgstr "Heslo je prázdne!" -#: js/messages.php:45 server_privileges.php:1234 user_password.php:73 +#: js/messages.php:45 server_privileges.php:1239 user_password.php:73 msgid "The passwords aren't the same!" msgstr "Heslá sa nezhodujú!" -#: js/messages.php:49 pmd_general.php:342 pmd_general.php:379 +#: js/messages.php:46 +#, fuzzy +#| msgid "Add a new User" +msgid "Add a New User" +msgstr "Pridať nového používateľa" + +#: js/messages.php:47 js/messages.php:54 pmd_general.php:342 +#: pmd_general.php:379 msgid "Cancel" msgstr "Zrušiť" -#: js/messages.php:52 pmd_save_pos.php:54 +#: js/messages.php:48 +#, fuzzy +msgid "Create User" +msgstr "Vytvoriť relaciu" + +#: js/messages.php:49 +#, fuzzy +#| msgid "Reload privileges" +msgid "Reloading Privileges" +msgstr "Znovunačítať prístupové práva" + +#: js/messages.php:50 +#, fuzzy +#| msgid "Remove selected users" +msgid "Removing Selected Users" +msgstr "Odstrániť vybraných používateľov" + +#: js/messages.php:57 +#, fuzzy +msgid "Loading" +msgstr "Lokálny" + +#: js/messages.php:58 +#, fuzzy +#| msgid "Processes" +msgid "Processing Request" +msgstr "Procesy" + +#: js/messages.php:59 +msgid "Error in Processing Request" +msgstr "" + +#: js/messages.php:60 +msgid "Dropping Column" +msgstr "" + +#: js/messages.php:61 +msgid "Adding Primary Key" +msgstr "" + +#: js/messages.php:64 pmd_save_pos.php:54 msgid "Modifications have been saved" msgstr "Zmeny boli uložené" -#: js/messages.php:53 pmd_relation_upd.php:49 +#: js/messages.php:65 pmd_relation_upd.php:49 #, fuzzy msgid "Relation deleted" msgstr "Zobraziť prepojenia" -#: js/messages.php:54 pmd_relation_new.php:64 +#: js/messages.php:66 pmd_relation_new.php:64 msgid "FOREIGN KEY relation added" msgstr "" -#: js/messages.php:55 pmd_relation_new.php:86 +#: js/messages.php:67 pmd_relation_new.php:86 #, fuzzy msgid "Internal relation added" msgstr "Interné vzťahy" -#: js/messages.php:56 pmd_relation_new.php:63 pmd_relation_new.php:88 +#: js/messages.php:68 pmd_relation_new.php:63 pmd_relation_new.php:88 msgid "Error: Relation not added." msgstr "" -#: js/messages.php:57 pmd_relation_new.php:31 +#: js/messages.php:69 pmd_relation_new.php:31 msgid "Error: relation already exists." msgstr "" -#: js/messages.php:58 +#: js/messages.php:70 msgid "Error saving coordinates for Designer." msgstr "" -#: js/messages.php:59 libraries/relation.lib.php:107 +#: js/messages.php:71 libraries/relation.lib.php:107 #: libraries/relation.lib.php:119 msgid "General relation features" msgstr "Možnosti všeobecných vzťahov" -#: js/messages.php:59 libraries/relation.lib.php:101 +#: js/messages.php:71 libraries/relation.lib.php:101 #: libraries/relation.lib.php:108 msgid "Disabled" msgstr "Vypnuté" -#: js/messages.php:60 +#: js/messages.php:72 msgid "Select referenced key" msgstr "" -#: js/messages.php:61 +#: js/messages.php:73 msgid "Select Foreign Key" msgstr "" -#: js/messages.php:62 +#: js/messages.php:74 msgid "Please select the primary key or a unique key" msgstr "" -#: js/messages.php:63 pmd_general.php:77 tbl_relation.php:548 +#: js/messages.php:75 pmd_general.php:77 tbl_relation.php:548 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" msgstr "Zvolte, ktoré pole zobraziť" #. l10n: Display text for calendar close link -#: js/messages.php:73 +#: js/messages.php:85 #, fuzzy #| msgid "None" msgid "Done" msgstr "Žiadny" #. l10n: Display text for previous month link in calendar -#: js/messages.php:75 +#: js/messages.php:87 #, fuzzy #| msgid "Previous" msgid "Prev" msgstr "Predchádzajúci" #. l10n: Display text for next month link in calendar -#: js/messages.php:77 libraries/common.lib.php:2353 -#: libraries/common.lib.php:2356 libraries/display_tbl.lib.php:338 +#: js/messages.php:89 libraries/common.lib.php:2357 +#: libraries/common.lib.php:2360 libraries/display_tbl.lib.php:338 #: server_binlog.php:205 server_binlog.php:207 tbl_printview.php:424 -#: tbl_structure.php:801 +#: tbl_structure.php:799 msgid "Next" msgstr "Ďalší" #. l10n: Display text for current month link in calendar -#: js/messages.php:79 +#: js/messages.php:91 #, fuzzy #| msgid "Total" msgid "Today" msgstr "Celkom" -#: js/messages.php:82 +#: js/messages.php:94 #, fuzzy #| msgid "Binary" msgid "January" msgstr "Binárny" -#: js/messages.php:83 +#: js/messages.php:95 msgid "February" msgstr "" -#: js/messages.php:84 +#: js/messages.php:96 #, fuzzy #| msgid "Mar" msgid "March" msgstr "Mar" -#: js/messages.php:85 +#: js/messages.php:97 #, fuzzy #| msgid "Apr" msgid "April" msgstr "Apr" -#: js/messages.php:86 +#: js/messages.php:98 msgid "May" msgstr "Máj" -#: js/messages.php:87 +#: js/messages.php:99 #, fuzzy #| msgid "Jun" msgid "June" msgstr "Jún" -#: js/messages.php:88 +#: js/messages.php:100 #, fuzzy #| msgid "Jul" msgid "July" msgstr "Júl" -#: js/messages.php:89 +#: js/messages.php:101 #, fuzzy #| msgid "Aug" msgid "August" msgstr "Aug" -#: js/messages.php:90 +#: js/messages.php:102 msgid "September" msgstr "" -#: js/messages.php:91 +#: js/messages.php:103 #, fuzzy #| msgid "Oct" msgid "October" msgstr "Okt" -#: js/messages.php:92 +#: js/messages.php:104 msgid "November" msgstr "" -#: js/messages.php:93 +#: js/messages.php:105 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:97 libraries/common.lib.php:1557 +#: js/messages.php:109 libraries/common.lib.php:1557 msgid "Jan" msgstr "Jan" #. l10n: Short month name -#: js/messages.php:99 libraries/common.lib.php:1559 +#: js/messages.php:111 libraries/common.lib.php:1559 msgid "Feb" msgstr "Feb" #. l10n: Short month name -#: js/messages.php:101 libraries/common.lib.php:1561 +#: js/messages.php:113 libraries/common.lib.php:1561 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:103 libraries/common.lib.php:1563 +#: js/messages.php:115 libraries/common.lib.php:1563 msgid "Apr" msgstr "Apr" #. l10n: Short month name -#: js/messages.php:105 libraries/common.lib.php:1565 +#: js/messages.php:117 libraries/common.lib.php:1565 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1144,178 +1187,178 @@ msgid "May" msgstr "Máj" #. l10n: Short month name -#: js/messages.php:107 libraries/common.lib.php:1567 +#: js/messages.php:119 libraries/common.lib.php:1567 msgid "Jun" msgstr "Jún" #. l10n: Short month name -#: js/messages.php:109 libraries/common.lib.php:1569 +#: js/messages.php:121 libraries/common.lib.php:1569 msgid "Jul" msgstr "Júl" #. l10n: Short month name -#: js/messages.php:111 libraries/common.lib.php:1571 +#: js/messages.php:123 libraries/common.lib.php:1571 msgid "Aug" msgstr "Aug" #. l10n: Short month name -#: js/messages.php:113 libraries/common.lib.php:1573 +#: js/messages.php:125 libraries/common.lib.php:1573 msgid "Sep" msgstr "Sep" #. l10n: Short month name -#: js/messages.php:115 libraries/common.lib.php:1575 +#: js/messages.php:127 libraries/common.lib.php:1575 msgid "Oct" msgstr "Okt" #. l10n: Short month name -#: js/messages.php:117 libraries/common.lib.php:1577 +#: js/messages.php:129 libraries/common.lib.php:1577 msgid "Nov" msgstr "Nov" #. l10n: Short month name -#: js/messages.php:119 libraries/common.lib.php:1579 +#: js/messages.php:131 libraries/common.lib.php:1579 msgid "Dec" msgstr "Dec" -#: js/messages.php:122 +#: js/messages.php:134 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "Ne" -#: js/messages.php:123 +#: js/messages.php:135 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "Po" -#: js/messages.php:124 +#: js/messages.php:136 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "Út" -#: js/messages.php:125 +#: js/messages.php:137 msgid "Wednesday" msgstr "" -#: js/messages.php:126 +#: js/messages.php:138 msgid "Thursday" msgstr "" -#: js/messages.php:127 +#: js/messages.php:139 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "Pi" -#: js/messages.php:128 +#: js/messages.php:140 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:132 libraries/common.lib.php:1582 +#: js/messages.php:144 libraries/common.lib.php:1582 msgid "Sun" msgstr "Ne" #. l10n: Short week day name -#: js/messages.php:134 libraries/common.lib.php:1584 +#: js/messages.php:146 libraries/common.lib.php:1584 msgid "Mon" msgstr "Po" #. l10n: Short week day name -#: js/messages.php:136 libraries/common.lib.php:1586 +#: js/messages.php:148 libraries/common.lib.php:1586 msgid "Tue" msgstr "Út" #. l10n: Short week day name -#: js/messages.php:138 libraries/common.lib.php:1588 +#: js/messages.php:150 libraries/common.lib.php:1588 msgid "Wed" msgstr "St" #. l10n: Short week day name -#: js/messages.php:140 libraries/common.lib.php:1590 +#: js/messages.php:152 libraries/common.lib.php:1590 msgid "Thu" msgstr "Št" #. l10n: Short week day name -#: js/messages.php:142 libraries/common.lib.php:1592 +#: js/messages.php:154 libraries/common.lib.php:1592 msgid "Fri" msgstr "Pi" #. l10n: Short week day name -#: js/messages.php:144 libraries/common.lib.php:1594 +#: js/messages.php:156 libraries/common.lib.php:1594 msgid "Sat" msgstr "So" #. l10n: Minimal week day name -#: js/messages.php:148 +#: js/messages.php:160 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "Ne" #. l10n: Minimal week day name -#: js/messages.php:150 +#: js/messages.php:162 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "Po" #. l10n: Minimal week day name -#: js/messages.php:152 +#: js/messages.php:164 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "Út" #. l10n: Minimal week day name -#: js/messages.php:154 +#: js/messages.php:166 #, fuzzy #| msgid "Wed" msgid "We" msgstr "St" #. l10n: Minimal week day name -#: js/messages.php:156 +#: js/messages.php:168 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "Št" #. l10n: Minimal week day name -#: js/messages.php:158 +#: js/messages.php:170 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "Pi" #. l10n: Minimal week day name -#: js/messages.php:160 +#: js/messages.php:172 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "So" #. l10n: Column header for week of the year in calendar -#: js/messages.php:162 +#: js/messages.php:174 #, fuzzy #| msgid "Wiki" msgid "Wk" msgstr "Wiki" -#: js/messages.php:164 +#: js/messages.php:176 msgid "Hour" msgstr "" -#: js/messages.php:165 +#: js/messages.php:177 #, fuzzy #| msgid "in use" msgid "Minute" msgstr "práve sa používa" -#: js/messages.php:166 +#: js/messages.php:178 #, fuzzy #| msgid "per second" msgid "Second" @@ -1372,7 +1415,7 @@ msgstr "Indexy" #: libraries/Index.class.php:444 libraries/mult_submits.inc.php:103 #: libraries/tbl_properties.inc.php:519 tbl_structure.php:33 -#: tbl_structure.php:155 tbl_structure.php:159 tbl_structure.php:474 +#: tbl_structure.php:155 tbl_structure.php:159 tbl_structure.php:472 #: tbl_tracking.php:322 msgid "Unique" msgstr "Unikátny" @@ -1413,8 +1456,8 @@ msgid "" "removed." msgstr "" -#: libraries/List_Database.class.php:431 libraries/server_links.inc.php:41 -#: server_databases.php:88 server_privileges.php:1660 +#: libraries/List_Database.class.php:431 libraries/server_links.inc.php:42 +#: server_databases.php:88 server_privileges.php:1680 #: setup/lib/messages.inc.php:110 test/theme.php:93 msgid "Databases" msgstr "Databázy" @@ -1585,7 +1628,7 @@ msgstr "Heslo:" msgid "Server Choice" msgstr "Voľba serveru" -#: libraries/auth/cookie.auth.lib.php:320 libraries/header.inc.php:59 +#: libraries/auth/cookie.auth.lib.php:320 libraries/header.inc.php:63 msgid "Cookies must be enabled past this point." msgstr "Cookies musia byť povolené, pokiaľ chcete pokračovať." @@ -1666,7 +1709,7 @@ msgstr "" "Nie je možné použiť funkcie iconv, libiconv a recode_string aj napriek tomu, " "že rozšírenia sú nahrané. Skontrolujte prosím nastavenie PHP." -#: libraries/common.inc.php:583 +#: libraries/common.inc.php:587 msgid "" "phpMyAdmin was unable to read your configuration file!
This might " "happen if PHP finds a parse error in it or PHP cannot find the file.
Ak dostanete iba prázdnu " "stránku, všetko je v poriadku." -#: libraries/common.inc.php:594 +#: libraries/common.inc.php:598 #, fuzzy, php-format #| msgid "Could not load default configuration from: \"%1$s\"" msgid "Could not load default configuration from: %1$s" msgstr "Nepodarilo sa načítať prednastavenú konfiguráciu zo súboru: \"%1$s\"" -#: libraries/common.inc.php:599 +#: libraries/common.inc.php:603 msgid "" "The $cfg['PmaAbsoluteUri'] directive MUST be set in your " "configuration file!" @@ -1696,28 +1739,28 @@ msgstr "" "Direktíva $cfg['PmaAbsoluteUri'] v konfiguračnom súbore MUSÍ byť " "nastavená!" -#: libraries/common.inc.php:629 +#: libraries/common.inc.php:633 #, fuzzy, php-format #| msgid "Invalid server index: \"%s\"" msgid "Invalid server index: %s" msgstr "Chybný index serveru: \"%s\"" -#: libraries/common.inc.php:636 +#: libraries/common.inc.php:640 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "Chybný názov hostu pre server %1$s. Prosím, skontrolujte konfiguráciu." -#: libraries/common.inc.php:645 libraries/header.inc.php:96 +#: libraries/common.inc.php:649 libraries/header.inc.php:100 #: libraries/select_server.lib.php:41 libraries/select_server.lib.php:47 #: main.php:185 test/theme.php:57 msgid "Server" msgstr "Server" -#: libraries/common.inc.php:823 +#: libraries/common.inc.php:827 msgid "Invalid authentication method set in configuration:" msgstr "V konfigurácii je nastavená nesprávna autentifikačná metóda:" -#: libraries/common.inc.php:926 +#: libraries/common.inc.php:930 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Mali by ste aktualizovať %s na verziu %s alebo vyššiu." @@ -1850,45 +1893,45 @@ msgstr "," msgid "%B %d, %Y at %I:%M %p" msgstr "%d.%B, %Y - %H:%M" -#: libraries/common.lib.php:1907 +#: libraries/common.lib.php:1911 #, 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:2322 libraries/common.lib.php:2325 +#: libraries/common.lib.php:2326 libraries/common.lib.php:2329 #: libraries/display_tbl.lib.php:290 server_status.php:719 msgid "Begin" msgstr "Začiatok" -#: libraries/common.lib.php:2323 libraries/common.lib.php:2326 +#: libraries/common.lib.php:2327 libraries/common.lib.php:2330 #: libraries/display_tbl.lib.php:291 server_binlog.php:168 #: server_binlog.php:170 msgid "Previous" msgstr "Predchádzajúci" -#: libraries/common.lib.php:2354 libraries/common.lib.php:2357 +#: libraries/common.lib.php:2358 libraries/common.lib.php:2361 #: libraries/display_tbl.lib.php:353 msgid "End" msgstr "Koniec" -#: libraries/common.lib.php:2430 +#: libraries/common.lib.php:2434 #, php-format msgid "Jump to database "%s"." msgstr "Na databázu "%s"." -#: libraries/common.lib.php:2450 +#: libraries/common.lib.php:2454 #, 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:2830 libraries/common.lib.php:2837 +#: libraries/common.lib.php:2834 libraries/common.lib.php:2841 #: libraries/db_links.inc.php:68 libraries/export/sql.php:25 -#: libraries/import/sql.php:18 libraries/server_links.inc.php:45 +#: libraries/import/sql.php:18 libraries/server_links.inc.php:46 #: libraries/tbl_links.inc.php:60 querywindow.php:99 test/theme.php:97 msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2839 libraries/db_links.inc.php:104 +#: libraries/common.lib.php:2843 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,15 +1978,15 @@ msgstr "Dopyt podľa príkladu" msgid "Designer" msgstr "Dizajnér" -#: libraries/db_links.inc.php:98 libraries/server_links.inc.php:88 +#: libraries/db_links.inc.php:98 libraries/server_links.inc.php:89 #: libraries/tbl_links.inc.php:91 pmd_pdf.php:84 pmd_pdf.php:110 #: setup/frames/menu.inc.php:21 msgid "Import" msgstr "Import" -#: libraries/db_links.inc.php:111 libraries/server_links.inc.php:66 -#: server_privileges.php:111 server_privileges.php:1722 -#: server_privileges.php:2071 test/theme.php:117 +#: libraries/db_links.inc.php:111 libraries/server_links.inc.php:67 +#: server_privileges.php:112 server_privileges.php:1742 +#: server_privileges.php:2092 test/theme.php:117 msgid "Privileges" msgstr "Oprávnenia" @@ -1962,7 +2005,7 @@ msgid "" msgstr "Môže byť nepresné. Pozri FAQ 3.11" #: libraries/db_structure.lib.php:69 server_databases.php:142 -#: tbl_printview.php:336 tbl_structure.php:682 +#: tbl_printview.php:336 tbl_structure.php:680 msgid "Overhead" msgstr "Naviac" @@ -1979,7 +2022,7 @@ msgstr "Server neodpovedá" msgid "(or the local MySQL server's socket is not correctly configured)" msgstr "(alebo soket lokálneho MySQL servra nie je správne nastavený)" -#: libraries/dbi/mysql.dbi.lib.php:362 tbl_structure.php:608 +#: libraries/dbi/mysql.dbi.lib.php:362 tbl_structure.php:606 msgid "Details..." msgstr "" @@ -1989,22 +2032,22 @@ msgid "Change password" msgstr "Zmeniť heslo" #: libraries/display_change_password.lib.php:35 -#: libraries/replication_gui.lib.php:345 server_privileges.php:807 +#: libraries/replication_gui.lib.php:345 server_privileges.php:808 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:796 -#: server_privileges.php:800 server_privileges.php:811 -#: server_privileges.php:1538 server_synchronize.php:1175 +#: libraries/replication_gui.lib.php:349 server_privileges.php:797 +#: server_privileges.php:801 server_privileges.php:812 +#: server_privileges.php:1558 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:815 server_privileges.php:818 +#: server_privileges.php:816 server_privileges.php:819 msgid "Re-type" msgstr "Potvrdiť" @@ -2019,12 +2062,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:822 +#: libraries/replication_gui.lib.php:360 server_privileges.php:823 msgid "Generate Password" msgstr "Vytvoriť Heslo" #: libraries/display_change_password.lib.php:75 -#: libraries/replication_gui.lib.php:363 server_privileges.php:825 +#: libraries/replication_gui.lib.php:363 server_privileges.php:826 msgid "Generate" msgstr "Vytvoriť" @@ -2037,8 +2080,8 @@ msgstr "Vytvoriť novú databázu" msgid "Create" msgstr "Vytvoriť" -#: libraries/display_create_database.lib.php:40 server_privileges.php:113 -#: server_privileges.php:1427 server_replication.php:35 +#: libraries/display_create_database.lib.php:40 server_privileges.php:114 +#: server_privileges.php:1447 server_replication.php:35 msgid "No Privileges" msgstr "Žiadne oprávnenia" @@ -2130,7 +2173,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:1875 server_processlist.php:75 +#: server_privileges.php:1895 server_processlist.php:75 msgid "None" msgstr "Žiadny" @@ -2326,7 +2369,7 @@ msgstr "Zoradiť podľa kľúča" #: libraries/import/docsql.php:34 libraries/import/ldi.php:47 #: libraries/import/ods.php:30 libraries/import/sql.php:20 #: libraries/import/xls.php:26 libraries/import/xlsx.php:26 -#: libraries/import/xml.php:25 tbl_select.php:267 tbl_structure.php:753 +#: libraries/import/xml.php:25 tbl_select.php:267 tbl_structure.php:751 msgid "Options" msgstr "Nastavenia" @@ -2404,7 +2447,7 @@ msgstr "Dopyt zabral %01.4f sek." #: libraries/display_tbl.lib.php:2089 libraries/mult_submits.inc.php:113 #: querywindow.php:125 querywindow.php:129 querywindow.php:132 -#: tbl_structure.php:25 tbl_structure.php:150 tbl_structure.php:470 +#: tbl_structure.php:25 tbl_structure.php:150 tbl_structure.php:468 msgid "Change" msgstr "Zmeniť" @@ -2473,7 +2516,7 @@ msgstr "Využitie Vyrovnávacej Pamäte" #: libraries/engines/innodb.lib.php:194 server_databases.php:137 #: server_databases.php:305 server_status.php:525 server_status.php:586 -#: server_status.php:607 tbl_printview.php:351 tbl_structure.php:696 +#: server_status.php:607 tbl_printview.php:351 tbl_structure.php:694 msgid "Total" msgstr "Celkom" @@ -2734,7 +2777,7 @@ msgid "" msgstr "" #: libraries/export/codegen.php:37 setup/lib/messages.inc.php:88 -#: tbl_printview.php:376 tbl_structure.php:737 +#: tbl_printview.php:376 tbl_structure.php:735 msgid "Format" msgstr "Formát" @@ -2806,8 +2849,8 @@ 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:576 server_replication.php:316 tbl_printview.php:317 -#: tbl_structure.php:665 +#: server_privileges.php:577 server_replication.php:316 tbl_printview.php:317 +#: tbl_structure.php:663 msgid "Data" msgstr "Dáta" @@ -2856,9 +2899,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:731 -#: server_privileges.php:734 server_privileges.php:790 -#: server_privileges.php:1537 server_privileges.php:2069 +#: libraries/replication_gui.lib.php:329 server_privileges.php:732 +#: server_privileges.php:735 server_privileges.php:791 +#: server_privileges.php:1557 server_privileges.php:2090 #: server_processlist.php:55 server_synchronize.php:1159 msgid "Host" msgstr "Hostiteľ" @@ -3056,7 +3099,7 @@ msgstr "" msgid "Open new phpMyAdmin window" msgstr "Otvoriť nové okno phpMyAdmina" -#: libraries/header.inc.php:115 +#: libraries/header.inc.php:119 #, fuzzy msgid "New table" msgstr "Žiadne tabuľky" @@ -3217,20 +3260,20 @@ 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 +#: tbl_structure.php:471 msgid "Primary" msgstr "Primárny" #: libraries/mult_submits.inc.php:98 libraries/tbl_properties.inc.php:116 #: libraries/tbl_properties.inc.php:525 tbl_printview.php:326 #: tbl_structure.php:31 tbl_structure.php:154 tbl_structure.php:158 -#: tbl_structure.php:475 tbl_structure.php:673 +#: tbl_structure.php:473 tbl_structure.php:671 msgid "Index" msgstr "Index" #: libraries/mult_submits.inc.php:108 libraries/tbl_properties.inc.php:531 #: tbl_structure.php:35 tbl_structure.php:156 tbl_structure.php:160 -#: tbl_structure.php:478 +#: tbl_structure.php:476 msgid "Fulltext" msgstr "Celý text" @@ -3534,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:711 -#: server_privileges.php:714 server_privileges.php:721 +#: libraries/replication_gui.lib.php:259 server_privileges.php:712 +#: server_privileges.php:715 server_privileges.php:722 #: server_synchronize.php:1171 msgid "User name" msgstr "Meno používateľa" @@ -3561,7 +3604,7 @@ msgstr "Premenná" #: 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 +#: tbl_structure.php:727 msgid "Value" msgstr "Hodnota" @@ -3579,34 +3622,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:716 +#: libraries/replication_gui.lib.php:254 server_privileges.php:717 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:717 -#: server_privileges.php:784 server_privileges.php:808 -#: server_privileges.php:1928 server_privileges.php:1958 +#: libraries/replication_gui.lib.php:346 server_privileges.php:718 +#: server_privileges.php:785 server_privileges.php:809 +#: server_privileges.php:1948 server_privileges.php:1978 msgid "Use text field" msgstr "Požiť textové pole" -#: libraries/replication_gui.lib.php:302 server_privileges.php:764 +#: libraries/replication_gui.lib.php:302 server_privileges.php:765 msgid "Any host" msgstr "Akýkoľvek hostiteľ" -#: libraries/replication_gui.lib.php:306 server_privileges.php:768 +#: libraries/replication_gui.lib.php:306 server_privileges.php:769 msgid "Local" msgstr "Lokálny" -#: libraries/replication_gui.lib.php:312 server_privileges.php:773 +#: libraries/replication_gui.lib.php:312 server_privileges.php:774 msgid "This Host" msgstr "Tento počítač" -#: libraries/replication_gui.lib.php:318 server_privileges.php:779 +#: libraries/replication_gui.lib.php:318 server_privileges.php:780 msgid "Use Host Table" msgstr "Použiť tabuľku s hostiteľmi" -#: libraries/replication_gui.lib.php:331 server_privileges.php:792 +#: libraries/replication_gui.lib.php:331 server_privileges.php:793 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -3642,29 +3685,29 @@ msgstr "Neznámy jazyk: %1$s." msgid "Servers" msgstr "Servery" -#: libraries/server_links.inc.php:53 server_engines.php:112 +#: libraries/server_links.inc.php:54 server_engines.php:112 #: server_engines.php:116 server_status.php:415 test/theme.php:105 msgid "Variables" msgstr "Premenné" -#: libraries/server_links.inc.php:57 test/theme.php:109 +#: libraries/server_links.inc.php:58 test/theme.php:109 msgid "Charsets" msgstr "Znakové sady" -#: libraries/server_links.inc.php:61 test/theme.php:113 +#: libraries/server_links.inc.php:62 test/theme.php:113 msgid "Engines" msgstr "Systémy" -#: libraries/server_links.inc.php:76 server_binlog.php:110 +#: libraries/server_links.inc.php:77 server_binlog.php:110 #: server_status.php:364 test/theme.php:121 msgid "Binary log" msgstr "Binárny log" -#: libraries/server_links.inc.php:80 +#: libraries/server_links.inc.php:81 msgid "Processes" msgstr "Procesy" -#: libraries/server_links.inc.php:92 server_synchronize.php:1092 +#: libraries/server_links.inc.php:93 server_synchronize.php:1092 #: server_synchronize.php:1100 msgid "Synchronize" msgstr "Synchronizovať" @@ -3913,13 +3956,13 @@ msgstr "" msgid "Save" msgstr "Uložiť" -#: libraries/tbl_properties.inc.php:780 tbl_structure.php:542 +#: libraries/tbl_properties.inc.php:780 tbl_structure.php:540 #, fuzzy, php-format #| msgid "Add column(s)" msgid "Add %s column(s)" msgstr "Pridať stĺpec/stĺpce" -#: libraries/tbl_properties.inc.php:784 tbl_structure.php:536 +#: libraries/tbl_properties.inc.php:784 tbl_structure.php:534 #, fuzzy #| msgid "You have to add at least one field." msgid "You have to add at least one column." @@ -4111,8 +4154,8 @@ msgstr "Vynulovať" msgid "Protocol version" msgstr "Verzia protokolu" -#: main.php:189 server_privileges.php:1389 server_privileges.php:1536 -#: server_privileges.php:1650 server_privileges.php:2068 +#: main.php:189 server_privileges.php:1406 server_privileges.php:1556 +#: server_privileges.php:1670 server_privileges.php:2089 #: server_processlist.php:54 msgid "User" msgstr "Používateľ" @@ -4562,112 +4605,112 @@ msgstr "Úložné Systémy" msgid "View dump (schema) of databases" msgstr "Export databáz" -#: server_privileges.php:24 server_privileges.php:266 +#: server_privileges.php:25 server_privileges.php:267 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 +#: server_privileges.php:26 server_privileges.php:193 +#: server_privileges.php:516 msgid "Allows altering the structure of existing tables." msgstr "Povolí meniť štruktúru existujúcich tabuliek." -#: server_privileges.php:26 server_privileges.php:208 -#: server_privileges.php:521 +#: server_privileges.php:27 server_privileges.php:209 +#: server_privileges.php:522 msgid "Allows altering and dropping stored routines." msgstr "Umožňuje upravovať a odstraňovať uložené procedúry." -#: server_privileges.php:27 server_privileges.php:184 -#: server_privileges.php:514 +#: server_privileges.php:28 server_privileges.php:185 +#: server_privileges.php:515 msgid "Allows creating new databases and tables." msgstr "Povolí vytváranie nových databáz a tabuliek." -#: server_privileges.php:28 server_privileges.php:207 -#: server_privileges.php:520 +#: server_privileges.php:29 server_privileges.php:208 +#: server_privileges.php:521 msgid "Allows creating stored routines." msgstr "Umožňuje vytvárať uložené procedúry." -#: server_privileges.php:29 server_privileges.php:514 +#: server_privileges.php:30 server_privileges.php:515 msgid "Allows creating new tables." msgstr "Povolí vytváranie nových tabuliek." -#: server_privileges.php:30 server_privileges.php:195 -#: server_privileges.php:518 +#: server_privileges.php:31 server_privileges.php:196 +#: server_privileges.php:519 msgid "Allows creating temporary tables." msgstr "Povolí vytváranie dočasných tabuliek." -#: server_privileges.php:31 server_privileges.php:209 -#: server_privileges.php:554 +#: server_privileges.php:32 server_privileges.php:210 +#: server_privileges.php:555 msgid "Allows creating, dropping and renaming user accounts." msgstr "Umožňuje vytvárať, odstraňovať a premenovávať používateľské kontá." -#: server_privileges.php:32 server_privileges.php:199 -#: server_privileges.php:203 server_privileges.php:526 -#: server_privileges.php:530 +#: server_privileges.php:33 server_privileges.php:200 +#: server_privileges.php:204 server_privileges.php:527 +#: server_privileges.php:531 msgid "Allows creating new views." msgstr "Umožňuje vytvárať nové pohľady." -#: server_privileges.php:33 server_privileges.php:183 -#: server_privileges.php:506 +#: server_privileges.php:34 server_privileges.php:184 +#: server_privileges.php:507 msgid "Allows deleting data." msgstr "Povolí mazanie dát." -#: server_privileges.php:34 server_privileges.php:185 -#: server_privileges.php:517 +#: server_privileges.php:35 server_privileges.php:186 +#: server_privileges.php:518 msgid "Allows dropping databases and tables." msgstr "Povolí odstraňovanie databáz a tabuliek." -#: server_privileges.php:35 server_privileges.php:517 +#: server_privileges.php:36 server_privileges.php:518 msgid "Allows dropping tables." msgstr "Povolí odstraňovanie tabuliek." -#: server_privileges.php:36 server_privileges.php:200 -#: server_privileges.php:534 +#: server_privileges.php:37 server_privileges.php:201 +#: server_privileges.php:535 msgid "Allows to set up events for the event scheduler" msgstr "" -#: server_privileges.php:37 server_privileges.php:210 -#: server_privileges.php:522 +#: server_privileges.php:38 server_privileges.php:211 +#: server_privileges.php:523 msgid "Allows executing stored routines." msgstr "Umožňuje spúšťať uložené procedúry." -#: server_privileges.php:38 server_privileges.php:189 -#: server_privileges.php:509 +#: server_privileges.php:39 server_privileges.php:190 +#: server_privileges.php:510 msgid "Allows importing data from and exporting data into files." msgstr "Povolí importovanie a exportovanie dát zo/do súborov na serveri." -#: server_privileges.php:39 server_privileges.php:540 +#: server_privileges.php:40 server_privileges.php:541 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "Povolí pridávanie uživatelov a práv bez znovunačítania tabuliek práv." -#: server_privileges.php:40 server_privileges.php:191 -#: server_privileges.php:516 +#: server_privileges.php:41 server_privileges.php:192 +#: server_privileges.php:517 msgid "Allows creating and dropping indexes." msgstr "Povolí vytváranie a mazanie indexov." -#: server_privileges.php:41 server_privileges.php:181 -#: server_privileges.php:442 server_privileges.php:504 +#: server_privileges.php:42 server_privileges.php:182 +#: server_privileges.php:443 server_privileges.php:505 msgid "Allows inserting and replacing data." msgstr "Povolí vkladanie a nahradzovanie dát." -#: server_privileges.php:42 server_privileges.php:196 -#: server_privileges.php:549 +#: server_privileges.php:43 server_privileges.php:197 +#: server_privileges.php:550 msgid "Allows locking tables for the current thread." msgstr "Povolí zmaknutie tabuliek pre aktuálne vlákno." -#: server_privileges.php:43 server_privileges.php:646 -#: server_privileges.php:648 +#: server_privileges.php:44 server_privileges.php:647 +#: server_privileges.php:649 msgid "Limits the number of new connections the user may open per hour." msgstr "" "Obmedzí počet nových spojení, ktoré môže používateľ vytvoriť za hodinu." -#: server_privileges.php:44 server_privileges.php:634 -#: server_privileges.php:636 +#: server_privileges.php:45 server_privileges.php:635 +#: server_privileges.php:637 msgid "Limits the number of queries the user may send to the server per hour." msgstr "Obmedzí počet dopytov, ktoré môže používateľ odoslať za hodinu." -#: server_privileges.php:45 server_privileges.php:640 -#: server_privileges.php:642 +#: server_privileges.php:46 server_privileges.php:641 +#: server_privileges.php:643 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -4675,60 +4718,60 @@ 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 +#: server_privileges.php:47 server_privileges.php:653 +#: server_privileges.php:655 msgid "Limits the number of simultaneous connections the user may have." msgstr "Obmedzuje počet simultánnych pripojení používateľa." -#: server_privileges.php:47 server_privileges.php:188 -#: server_privileges.php:544 +#: server_privileges.php:48 server_privileges.php:189 +#: server_privileges.php:545 msgid "Allows viewing processes of all users" msgstr "" -#: server_privileges.php:48 server_privileges.php:190 -#: server_privileges.php:448 server_privileges.php:550 +#: server_privileges.php:49 server_privileges.php:191 +#: server_privileges.php:449 server_privileges.php:551 msgid "Has no effect in this MySQL version." msgstr "Nefunguje v tejto verzii MySQL." -#: server_privileges.php:49 server_privileges.php:186 -#: server_privileges.php:545 +#: server_privileges.php:50 server_privileges.php:187 +#: server_privileges.php:546 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" "Povolí znovunačítanie nastavení a vyprázdňovanie vyrovnávacích pamätí " "serveru." -#: server_privileges.php:50 server_privileges.php:198 -#: server_privileges.php:552 +#: server_privileges.php:51 server_privileges.php:199 +#: server_privileges.php:553 msgid "Allows the user to ask where the slaves / masters are." msgstr "Povolí používateľovi zistiť kde je hlavný / pomocný server." -#: server_privileges.php:51 server_privileges.php:197 -#: server_privileges.php:553 +#: server_privileges.php:52 server_privileges.php:198 +#: server_privileges.php:554 msgid "Needed for the replication slaves." msgstr "Potrebné pre replikáciu pomocných serverov." -#: server_privileges.php:52 server_privileges.php:180 -#: server_privileges.php:439 server_privileges.php:503 +#: server_privileges.php:53 server_privileges.php:181 +#: server_privileges.php:440 server_privileges.php:504 msgid "Allows reading data." msgstr "Povolí čítanie dát." -#: server_privileges.php:53 server_privileges.php:193 -#: server_privileges.php:547 +#: server_privileges.php:54 server_privileges.php:194 +#: server_privileges.php:548 msgid "Gives access to the complete list of databases." msgstr "Povolí prístup ku kompletnému zoznamu databáz." -#: server_privileges.php:54 server_privileges.php:204 -#: server_privileges.php:206 server_privileges.php:519 +#: server_privileges.php:55 server_privileges.php:205 +#: server_privileges.php:207 server_privileges.php:520 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Umožňuje spúšťať príkazy so SHOW CREATE VIEW." -#: server_privileges.php:55 server_privileges.php:187 -#: server_privileges.php:546 +#: server_privileges.php:56 server_privileges.php:188 +#: server_privileges.php:547 msgid "Allows shutting down the server." msgstr "Povolí vypnutie serveru." -#: server_privileges.php:56 server_privileges.php:194 -#: server_privileges.php:543 +#: server_privileges.php:57 server_privileges.php:195 +#: server_privileges.php:544 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -4738,159 +4781,159 @@ msgstr "" "Potrebné pre väčšinu operácií pri správe serveru ako nastavovanie globálny " "premenných alebo zabíjanie procesov iných používateľov." -#: server_privileges.php:57 server_privileges.php:201 -#: server_privileges.php:535 +#: server_privileges.php:58 server_privileges.php:202 +#: server_privileges.php:536 #, fuzzy msgid "Allows creating and dropping triggers" msgstr "Povolí vytváranie a mazanie indexov." -#: server_privileges.php:58 server_privileges.php:182 -#: server_privileges.php:445 server_privileges.php:505 +#: server_privileges.php:59 server_privileges.php:183 +#: server_privileges.php:446 server_privileges.php:506 msgid "Allows changing data." msgstr "Povolí menenie dát." -#: server_privileges.php:59 server_privileges.php:260 +#: server_privileges.php:60 server_privileges.php:261 msgid "No privileges." msgstr "Žiadne práva." -#: server_privileges.php:302 server_privileges.php:303 +#: server_privileges.php:303 server_privileges.php:304 #, fuzzy #| msgid "None" msgctxt "None privileges" msgid "None" msgstr "Žiadny" -#: server_privileges.php:431 server_privileges.php:566 -#: server_privileges.php:1718 server_privileges.php:1724 +#: server_privileges.php:432 server_privileges.php:567 +#: server_privileges.php:1738 server_privileges.php:1744 msgid "Table-specific privileges" msgstr "Oprávnenia pre jednotlivé tabuľky" -#: server_privileges.php:432 server_privileges.php:574 -#: server_privileges.php:1540 +#: server_privileges.php:433 server_privileges.php:575 +#: server_privileges.php:1560 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:563 server_privileges.php:1539 +#: server_privileges.php:564 server_privileges.php:1559 msgid "Global privileges" msgstr "Globálne práva" -#: server_privileges.php:565 server_privileges.php:1718 +#: server_privileges.php:566 server_privileges.php:1738 msgid "Database-specific privileges" msgstr "Oprávnenia pre jednotlivé databázy" -#: server_privileges.php:610 +#: server_privileges.php:611 msgid "Administration" msgstr "Administrácia" -#: server_privileges.php:630 +#: server_privileges.php:631 msgid "Resource limits" msgstr "Obmedzenie zdrojov" -#: server_privileges.php:631 +#: server_privileges.php:632 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "" "Poznámka: Nastavenie týchto parametrov na 0 (nulu) odstráni obmedzenia." -#: server_privileges.php:708 +#: server_privileges.php:709 msgid "Login Information" msgstr "Prihlásenie" -#: server_privileges.php:802 +#: server_privileges.php:803 msgid "Do not change the password" msgstr "Nezmeniť heslo" -#: server_privileges.php:843 server_privileges.php:2205 +#: server_privileges.php:844 server_privileges.php:2226 #, fuzzy #| msgid "No user(s) found." msgid "No user found." msgstr "Nebol nájdený žiadny používateľ." -#: server_privileges.php:887 +#: server_privileges.php:888 #, php-format msgid "The user %s already exists!" msgstr "Používateľ %s už existuje!" -#: server_privileges.php:970 +#: server_privileges.php:971 msgid "You have added a new user." msgstr "Používateľ bol pridaný." -#: server_privileges.php:1191 +#: server_privileges.php:1196 #, php-format msgid "You have updated the privileges for %s." msgstr "Boli aktualizované oprávnenia pre %s." -#: server_privileges.php:1215 +#: server_privileges.php:1220 #, php-format msgid "You have revoked the privileges for %s" msgstr "Boli zrušené oprávnenia pre %s" -#: server_privileges.php:1251 +#: server_privileges.php:1256 #, php-format msgid "The password for %s was changed successfully." msgstr "Heslo pre %s bolo úspešne zmenené." -#: server_privileges.php:1271 +#: server_privileges.php:1276 #, php-format msgid "Deleting %s" msgstr "Odstraňuje sa %s" -#: server_privileges.php:1282 +#: server_privileges.php:1287 msgid "No users selected for deleting!" msgstr "Na odstránenie neboli vybraní žiadni používatelia!" -#: server_privileges.php:1285 +#: server_privileges.php:1290 msgid "Reloading the privileges" msgstr "Znovunačítanie práv" -#: server_privileges.php:1300 +#: server_privileges.php:1305 msgid "The selected users have been deleted successfully." msgstr "Vybraní používatelia bol úspešne odstránený." -#: server_privileges.php:1335 +#: server_privileges.php:1344 msgid "The privileges were reloaded successfully." msgstr "Práva boli úspešne znovunačítané." -#: server_privileges.php:1363 server_privileges.php:1649 +#: server_privileges.php:1380 server_privileges.php:1669 msgid "Edit Privileges" msgstr "Upraviť oprávnenia" -#: server_privileges.php:1372 +#: server_privileges.php:1389 msgid "Revoke" msgstr "Zrušiť" -#: server_privileges.php:1404 +#: server_privileges.php:1424 msgid "User overview" msgstr "Prehľad používatelov" -#: server_privileges.php:1541 server_privileges.php:1723 -#: server_privileges.php:2072 +#: server_privileges.php:1561 server_privileges.php:1743 +#: server_privileges.php:2093 msgid "Grant" msgstr "Prideliť" -#: server_privileges.php:1560 server_privileges.php:2162 +#: server_privileges.php:1580 server_privileges.php:2183 msgid "Any" msgstr "Akýkoľvek" -#: server_privileges.php:1609 server_privileges.php:1633 -#: server_privileges.php:2027 server_privileges.php:2216 +#: server_privileges.php:1629 server_privileges.php:1653 +#: server_privileges.php:2048 server_privileges.php:2237 msgid "Add a new User" msgstr "Pridať nového používateľa" -#: server_privileges.php:1614 +#: server_privileges.php:1634 msgid "Remove selected users" msgstr "Odstrániť vybraných používateľov" -#: server_privileges.php:1617 +#: server_privileges.php:1637 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:1618 server_privileges.php:1619 -#: server_privileges.php:1620 +#: server_privileges.php:1638 server_privileges.php:1639 +#: server_privileges.php:1640 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:1636 +#: server_privileges.php:1656 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -4903,51 +4946,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:1684 +#: server_privileges.php:1704 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:1724 +#: server_privileges.php:1744 msgid "Column-specific privileges" msgstr "Oprávnenia pre jednotlivé stĺpce" -#: server_privileges.php:1925 +#: server_privileges.php:1945 msgid "Add privileges on the following database" msgstr "Pridať oprávnenia pre nasledujúcu databázu" -#: server_privileges.php:1943 +#: server_privileges.php:1963 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:1946 +#: server_privileges.php:1966 msgid "Add privileges on the following table" msgstr "Pridať oprávnenia pre nasledujúcu tabuľku" -#: server_privileges.php:2003 +#: server_privileges.php:2023 msgid "Change Login Information / Copy User" msgstr "Zmeniť informácie o používateľovi / Kopírovať používateľa" -#: server_privileges.php:2006 +#: server_privileges.php:2026 msgid "Create a new user with the same privileges and ..." msgstr "Vytvoriť používateľa s rovnakými právami a..." -#: server_privileges.php:2008 +#: server_privileges.php:2028 msgid "... keep the old one." msgstr "... zachovať pôvodného používateľa." -#: server_privileges.php:2009 +#: server_privileges.php:2029 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:2010 +#: server_privileges.php:2030 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:2011 +#: server_privileges.php:2031 msgid "" " ... delete the old one from the user tables and reload the privileges " "afterwards." @@ -4955,44 +4998,44 @@ msgstr "" " ... zmazať pôvodného používateľa z tabuliek používateľov a potom " "znovunačítať oprávnenia." -#: server_privileges.php:2033 +#: server_privileges.php:2054 msgid "Database for user" msgstr "Databáza pre používateľa" -#: server_privileges.php:2037 +#: server_privileges.php:2058 #, fuzzy #| msgid "None" msgctxt "Create none database for user" msgid "None" msgstr "Žiadny" -#: server_privileges.php:2038 +#: server_privileges.php:2059 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:2039 +#: server_privileges.php:2060 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "Prideliť všetky oprávnenia pomocou masky (používateľ_%)" -#: server_privileges.php:2042 +#: server_privileges.php:2063 #, php-format msgid "Grant all privileges on database "%s"" msgstr "Prideliť všetky oprávnenia na databázu "%s"" -#: server_privileges.php:2065 +#: server_privileges.php:2086 #, php-format msgid "Users having access to "%s"" msgstr "Používatelia majúci prístup k "%s"" -#: server_privileges.php:2173 +#: server_privileges.php:2194 msgid "global" msgstr "globálny" -#: server_privileges.php:2175 +#: server_privileges.php:2196 msgid "database-specific" msgstr "závislé na databáze" -#: server_privileges.php:2177 +#: server_privileges.php:2198 msgid "wildcard" msgstr "nahradzujúci znak" @@ -7836,6 +7879,10 @@ msgstr "" msgid "Show insert query" msgstr "Zobrazujem SQL dotaz" +#: tbl_change.php:1143 +msgid "and then" +msgstr "a potom" + #: tbl_change.php:1147 msgid "Go back to previous page" msgstr "Späť" @@ -7916,7 +7963,7 @@ msgstr "(\"PRIMARY\" musí byť iba meno primárneho kľúča!)" msgid "Add to index  %s column(s)" msgstr "Pridať do indexu  %s stĺpec" -#: tbl_indexes.php:256 tbl_structure.php:589 tbl_structure.php:600 +#: tbl_indexes.php:256 tbl_structure.php:587 tbl_structure.php:598 msgid "Column count has to be larger than zero." msgstr "Počet stĺpcov musí byť väčší ako nula." @@ -8031,39 +8078,39 @@ msgstr "Skontrolovať referenčnú integritu:" msgid "Show tables" msgstr "Zobraziť tabuľky" -#: tbl_printview.php:310 tbl_structure.php:656 +#: tbl_printview.php:310 tbl_structure.php:654 msgid "Space usage" msgstr "Zabrané miesto" -#: tbl_printview.php:314 tbl_structure.php:660 +#: tbl_printview.php:314 tbl_structure.php:658 msgid "Usage" msgstr "Využitie" -#: tbl_printview.php:341 tbl_structure.php:687 +#: tbl_printview.php:341 tbl_structure.php:685 msgid "Effective" msgstr "Efektívny" -#: tbl_printview.php:366 tbl_structure.php:725 +#: tbl_printview.php:366 tbl_structure.php:723 msgid "Row Statistics" msgstr "Štatistika riadku" -#: tbl_printview.php:369 tbl_structure.php:728 +#: tbl_printview.php:369 tbl_structure.php:726 msgid "Statements" msgstr "Údaj" -#: tbl_printview.php:380 tbl_structure.php:740 +#: tbl_printview.php:380 tbl_structure.php:738 msgid "static" msgstr "" -#: tbl_printview.php:382 tbl_structure.php:742 +#: tbl_printview.php:382 tbl_structure.php:740 msgid "dynamic" msgstr "dynamický" -#: tbl_printview.php:404 tbl_structure.php:785 +#: tbl_printview.php:404 tbl_structure.php:783 msgid "Row length" msgstr "Dĺžka riadku" -#: tbl_printview.php:414 tbl_structure.php:793 +#: tbl_printview.php:414 tbl_structure.php:791 msgid " Row size " msgstr " Veľkosť riadku " @@ -8135,50 +8182,50 @@ msgstr "Žiadny" msgid "Column %s has been dropped" msgstr "Tabuľka %s bola odstránená" -#: tbl_structure.php:385 +#: tbl_structure.php:384 #, php-format msgid "A primary key has been added on %s" msgstr "Bol pridaný primárny kľúč pre %s" -#: tbl_structure.php:400 tbl_structure.php:414 tbl_structure.php:428 +#: tbl_structure.php:398 tbl_structure.php:412 tbl_structure.php:426 #, php-format msgid "An index has been added on %s" msgstr "Bol pridaný index pre %s" -#: tbl_structure.php:506 tbl_structure.php:508 +#: tbl_structure.php:504 tbl_structure.php:506 msgid "Relation view" msgstr "Zobraziť prepojenia" -#: tbl_structure.php:515 tbl_structure.php:517 +#: tbl_structure.php:513 tbl_structure.php:515 msgid "Propose table structure" msgstr "Navrhnúť štruktúru tabuľky" -#: tbl_structure.php:540 +#: tbl_structure.php:538 #, fuzzy #| msgid "Add column(s)" msgid "Add column" msgstr "Pridať stĺpec/stĺpce" -#: tbl_structure.php:554 +#: tbl_structure.php:552 msgid "At End of Table" msgstr "Na konci tabuľky" -#: tbl_structure.php:555 +#: tbl_structure.php:553 msgid "At Beginning of Table" msgstr "Na začiatku tabuľky" -#: tbl_structure.php:556 +#: tbl_structure.php:554 #, php-format msgid "After %s" msgstr "Po %s" -#: tbl_structure.php:594 +#: tbl_structure.php:592 #, fuzzy, php-format #| msgid "Create an index on %s columns" msgid "Create an index on  %s columns" msgstr "Vytvoriť index na %s stĺpcoch" -#: tbl_structure.php:756 +#: tbl_structure.php:754 msgid "partitioned" msgstr "" @@ -8660,9 +8707,6 @@ msgstr "Premenovať tabuľku na" #~ msgid "Process list" #~ msgstr "Zoznam procesov" -#~ msgid "Reload privileges" -#~ msgstr "Znovunačítať prístupové práva" - #~ msgid "" #~ "The users will still have the USAGE privilege until the privileges are " #~ "reloaded." diff --git a/po/sl.po b/po/sl.po index e47e1c298..0277fcd91 100755 --- a/po/sl.po +++ b/po/sl.po @@ -3,24 +3,24 @@ 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-13 09:03-0400\n" +"POT-Creation-Date: 2010-06-22 00:55+0530\n" "PO-Revision-Date: 2010-06-17 01:10+0200\n" "Last-Translator: Domen \n" "Language-Team: slovenian \n" -"Language: sl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || " -"n%100==4 ? 2 : 3);\n" +"Language: sl\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" +"%100==4 ? 2 : 3);\n" "X-Generator: Pootle 2.0.1\n" #: browse_foreigners.php:38 browse_foreigners.php:59 -#: libraries/display_tbl.lib.php:417 server_privileges.php:1514 +#: libraries/display_tbl.lib.php:417 server_privileges.php:1534 msgid "Show all" msgstr "Pokaži vse" -#: browse_foreigners.php:82 libraries/common.lib.php:2313 +#: browse_foreigners.php:82 libraries/common.lib.php:2317 #: 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,18 +38,18 @@ 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:2831 -#: libraries/common.lib.php:2838 libraries/db_links.inc.php:75 +#: db_structure.php:106 libraries/common.lib.php:2835 +#: libraries/common.lib.php:2842 libraries/db_links.inc.php:75 #: libraries/tbl_links.inc.php:63 msgid "Search" msgstr "Iskanje" -#: browse_foreigners.php:153 db_operations.php:385 db_operations.php:429 -#: db_operations.php:499 db_operations.php:609 db_search.php:362 -#: db_structure.php:567 js/messages.php:48 libraries/Config.class.php:1046 +#: browse_foreigners.php:153 db_operations.php:394 db_operations.php:438 +#: db_operations.php:508 db_operations.php:618 db_search.php:362 +#: db_structure.php:565 js/messages.php:53 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:1335 libraries/common.lib.php:2288 +#: libraries/common.lib.php:1335 libraries/common.lib.php:2292 #: 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,15 +60,15 @@ 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:664 server_privileges.php:1624 -#: server_privileges.php:1971 server_privileges.php:2018 -#: server_privileges.php:2057 server_replication.php:235 +#: server_privileges.php:665 server_privileges.php:1644 +#: server_privileges.php:1991 server_privileges.php:2038 +#: server_privileges.php:2078 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 #: tbl_operations.php:302 tbl_operations.php:499 tbl_operations.php:561 -#: tbl_operations.php:681 tbl_select.php:327 tbl_structure.php:562 -#: tbl_structure.php:597 tbl_tracking.php:395 tbl_tracking.php:512 +#: tbl_operations.php:681 tbl_select.php:327 tbl_structure.php:560 +#: tbl_structure.php:595 tbl_tracking.php:395 tbl_tracking.php:512 #: view_create.php:182 view_operations.php:101 msgid "Go" msgstr "Izvedi" @@ -94,7 +94,7 @@ msgstr "Uporabi to vrednost" msgid "Database %1$s has been created." msgstr "Podatkovna zbirka %1$s je ustvarjena." -#: db_datadict.php:49 db_operations.php:378 +#: db_datadict.php:49 db_operations.php:387 msgid "Database comment: " msgstr "Komentar zbirke podatkov: " @@ -119,10 +119,10 @@ 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:2070 +#: pdf_schema.php:1263 pdf_schema.php:1284 server_privileges.php:2091 #: 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 +#: tbl_structure.php:657 tbl_tracking.php:274 tbl_tracking.php:321 msgid "Type" msgstr "Vrsta" @@ -135,7 +135,7 @@ msgstr "Vrsta" msgid "Null" msgstr "Null" -#: db_datadict.php:178 db_structure.php:501 libraries/export/htmlword.php:247 +#: db_datadict.php:178 db_structure.php:499 libraries/export/htmlword.php:247 #: libraries/export/latex.php:360 libraries/export/odt.php:303 #: libraries/export/texytext.php:236 libraries/tbl_properties.inc.php:106 #: pdf_schema.php:1266 pdf_schema.php:1287 tbl_printview.php:146 @@ -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: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 +#: pdf_schema.php:1344 server_privileges.php:1588 server_privileges.php:1599 +#: server_privileges.php:1909 server_privileges.php:1914 +#: server_privileges.php:2208 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:1565 -#: server_privileges.php:1579 server_privileges.php:1889 -#: server_privileges.php:1892 server_privileges.php:2187 sql.php:193 +#: server_databases.php:64 server_privileges.php:1585 +#: server_privileges.php:1599 server_privileges.php:1909 +#: server_privileges.php:1912 server_privileges.php:2208 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" @@ -208,119 +208,115 @@ msgstr "Izberi vse" msgid "Unselect All" msgstr "Prekliči izbor vsega" -#: db_operations.php:38 tbl_create.php:54 +#: db_operations.php:43 tbl_create.php:54 msgid "The database name is empty!" msgstr "Ime podatkovne zbirke je prazno!" -#: db_operations.php:236 +#: db_operations.php:241 #, php-format msgid "Database %s has been renamed to %s" msgstr "Zbirka podatkov %s je preimenovana v %s" -#: db_operations.php:240 +#: db_operations.php:245 #, php-format msgid "Database %s has been copied to %s" msgstr "Zbirka podatkov %s je kopirana v %s" -#: db_operations.php:412 +#: db_operations.php:421 msgid "Rename database to" msgstr "Preimenuj zbirko podatkov v" -#: db_operations.php:417 server_processlist.php:57 +#: db_operations.php:426 server_processlist.php:57 msgid "Command" msgstr "Ukaz" -#: db_operations.php:429 tbl_change.php:1143 -msgid "and then" -msgstr "in potem" - -#: db_operations.php:455 +#: db_operations.php:464 msgid "Copy database to" msgstr "Kopiraj zbirko podatkov v" -#: db_operations.php:462 tbl_operations.php:528 tbl_tracking.php:388 +#: db_operations.php:471 tbl_operations.php:528 tbl_tracking.php:388 msgid "Structure only" msgstr "Samo struktura" -#: db_operations.php:463 tbl_operations.php:529 tbl_tracking.php:390 +#: db_operations.php:472 tbl_operations.php:529 tbl_tracking.php:390 msgid "Structure and data" msgstr "Struktura in podatki" -#: db_operations.php:464 tbl_operations.php:530 tbl_tracking.php:389 +#: db_operations.php:473 tbl_operations.php:530 tbl_tracking.php:389 msgid "Data only" msgstr "Samo podatki" -#: db_operations.php:472 +#: db_operations.php:481 msgid "CREATE DATABASE before copying" msgstr "CREATE DATABASE pred kopiranjem" -#: db_operations.php:475 libraries/export/sql.php:52 +#: db_operations.php:484 libraries/export/sql.php:52 #: libraries/export/sql.php:74 libraries/export/sql.php:76 #: libraries/export/sql.php:82 tbl_operations.php:536 #, php-format msgid "Add %s" msgstr "Dodaj %s" -#: db_operations.php:479 libraries/export/sql.php:78 tbl_operations.php:299 +#: db_operations.php:488 libraries/export/sql.php:78 tbl_operations.php:299 #: tbl_operations.php:538 msgid "Add AUTO_INCREMENT value" msgstr "Dodaj vrednost AUTO_INCREMENT" -#: db_operations.php:483 tbl_operations.php:545 +#: db_operations.php:492 tbl_operations.php:545 msgid "Add constraints" msgstr "Dodaj omejitve" -#: db_operations.php:496 +#: db_operations.php:505 msgid "Switch to copied database" msgstr "Preklopi na kopirano podatkovno zbirko" -#: db_operations.php:537 +#: db_operations.php:546 msgid "BLOB Repository" msgstr "Shramba BLOB" -#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1352 -#: libraries/server_links.inc.php:49 server_processlist.php:59 +#: db_operations.php:549 db_tracking.php:76 libraries/common.lib.php:1352 +#: libraries/server_links.inc.php:50 server_processlist.php:59 #: tbl_tracking.php:596 test/theme.php:101 msgid "Status" msgstr "Stanje" -#: db_operations.php:548 +#: db_operations.php:557 msgctxt "BLOB repository" msgid "Enabled" msgstr "Omogočeno" -#: db_operations.php:552 +#: db_operations.php:561 msgid "Disable" msgstr "Onemogoči" -#: db_operations.php:562 +#: db_operations.php:571 msgid "Damaged" msgstr "Poškodovano" -#: db_operations.php:566 +#: db_operations.php:575 msgctxt "BLOB repository" msgid "Repair" msgstr "Popravi" -#: db_operations.php:574 +#: db_operations.php:583 msgctxt "BLOB repository" msgid "Disabled" msgstr "Onemogočeno" -#: db_operations.php:578 +#: db_operations.php:587 msgid "Enable" msgstr "Omogoči" -#: db_operations.php:602 libraries/Index.class.php:448 +#: db_operations.php:611 libraries/Index.class.php:448 #: libraries/db_structure.lib.php:62 libraries/mysql_charsets.lib.php:107 #: libraries/tbl_properties.inc.php:107 libraries/tbl_properties.inc.php:730 #: server_collations.php:54 server_collations.php:66 server_databases.php:111 #: tbl_operations.php:363 tbl_select.php:137 tbl_structure.php:179 -#: tbl_structure.php:767 tbl_tracking.php:275 tbl_tracking.php:326 +#: tbl_structure.php:765 tbl_tracking.php:275 tbl_tracking.php:326 msgid "Collation" msgstr "Pravilo za razvrščanje znakov" -#: db_operations.php:615 main.php:316 pdf_schema.php:34 +#: db_operations.php:624 main.php:316 pdf_schema.php:34 #, php-format msgid "" "The additional features for working with linked tables have been " @@ -329,14 +325,14 @@ msgstr "" "Dodatne funkcije za delo s povezanimi tabelami so bile izkjučene. Če želite " "izvedeti zakaj, kliknite %stukaj%s." -#: db_operations.php:648 +#: db_operations.php:657 msgid "Edit PDF Pages" 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:1665 -#: server_privileges.php:1721 server_privileges.php:1985 +#: libraries/header.inc.php:130 pdf_pages.php:424 server_privileges.php:1685 +#: server_privileges.php:1741 server_privileges.php:2005 #: server_synchronize.php:423 server_synchronize.php:866 tbl_tracking.php:592 #: test/theme.php:75 msgid "Table" @@ -345,7 +341,7 @@ msgstr "Tabela" #: db_printview.php:105 libraries/db_structure.lib.php:56 #: libraries/header_printview.inc.php:63 libraries/import.lib.php:146 #: navigation.php:638 navigation.php:660 server_databases.php:122 -#: tbl_printview.php:394 tbl_structure.php:365 tbl_structure.php:777 +#: tbl_printview.php:394 tbl_structure.php:365 tbl_structure.php:775 msgid "Rows" msgstr "vrstic" @@ -353,30 +349,30 @@ msgstr "vrstic" msgid "Size" msgstr "Velikost" -#: db_printview.php:162 db_structure.php:457 libraries/export/sql.php:559 +#: db_printview.php:162 db_structure.php:455 libraries/export/sql.php:559 #: libraries/export/sql.php:899 msgid "in use" msgstr "v uporabi" #: db_printview.php:187 libraries/db_info.inc.php:88 #: libraries/export/sql.php:514 pdf_schema.php:1241 tbl_printview.php:434 -#: tbl_structure.php:809 +#: tbl_structure.php:807 msgid "Creation" msgstr "Ustvarjeno" #: db_printview.php:196 libraries/db_info.inc.php:93 #: libraries/export/sql.php:519 pdf_schema.php:1246 tbl_printview.php:444 -#: tbl_structure.php:817 +#: tbl_structure.php:815 msgid "Last update" msgstr "Zadnjič posodobljeno" #: db_printview.php:205 libraries/db_info.inc.php:98 #: libraries/export/sql.php:524 pdf_schema.php:1251 tbl_printview.php:454 -#: tbl_structure.php:825 +#: tbl_structure.php:823 msgid "Last check" msgstr "Zadnjič pregledano" -#: db_printview.php:222 db_structure.php:480 +#: db_printview.php:222 db_structure.php:478 #, php-format msgid "%s table" msgid_plural "%s tables" @@ -438,7 +434,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:297 tbl_change.php:1031 tbl_indexes.php:250 +#: server_privileges.php:298 tbl_change.php:1031 tbl_indexes.php:250 #: tbl_select.php:288 msgid "Or" msgstr "Ali" @@ -507,9 +503,9 @@ 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:2833 +#: db_structure.php:105 libraries/common.lib.php:2837 #: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50 -#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:467 +#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:465 msgid "Browse" msgstr "Prebrskaj" @@ -552,36 +548,36 @@ 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:2832 libraries/sql_query_form.lib.php:334 +#: libraries/common.lib.php:2836 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:2829 libraries/common.lib.php:2836 +#: libraries/common.lib.php:2833 libraries/common.lib.php:2840 #: 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:1106 #: libraries/tbl_links.inc.php:56 pmd_general.php:134 -#: server_privileges.php:593 server_replication.php:315 tbl_tracking.php:269 +#: server_privileges.php:594 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:1656 +#: db_structure.php:543 db_structure.php:544 db_tracking.php:91 +#: libraries/Index.class.php:483 libraries/common.lib.php:1657 #: 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 -#: tbl_structure.php:152 tbl_structure.php:471 +#: tbl_structure.php:152 tbl_structure.php:469 msgid "Drop" 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:1655 +#: db_structure.php:541 db_structure.php:542 libraries/common.lib.php:1656 #: libraries/mult_submits.inc.php:39 libraries/tbl_links.inc.php:105 msgid "Empty" msgstr "Izprazni" @@ -591,111 +587,111 @@ msgstr "Izprazni" msgid "Table %s has been emptied" msgstr "Tabela %s je izpraznjena" -#: db_structure.php:326 libraries/tbl_links.inc.php:133 +#: db_structure.php:325 libraries/tbl_links.inc.php:133 #, php-format msgid "View %s has been dropped" msgstr "Pogled %s je zavržen" -#: db_structure.php:326 libraries/tbl_links.inc.php:133 +#: db_structure.php:325 libraries/tbl_links.inc.php:133 #, php-format msgid "Table %s has been dropped" msgstr "Tabela %s je zavržena" -#: db_structure.php:333 +#: db_structure.php:332 msgid "Tracking is active." msgstr "Sledenje je aktivno." -#: db_structure.php:335 +#: db_structure.php:334 msgid "Tracking is not active." msgstr "Sledenje ni aktivno." -#: db_structure.php:420 libraries/display_tbl.lib.php:1944 +#: db_structure.php:418 libraries/display_tbl.lib.php:1944 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation%" "s." msgstr "Pogled ima vsaj toliko vrstic. Prosimo, oglejte si %sdokumentacijo%s." -#: db_structure.php:434 db_structure.php:448 libraries/header.inc.php:126 +#: db_structure.php:432 db_structure.php:446 libraries/header.inc.php:130 #: libraries/tbl_info.inc.php:66 tbl_structure.php:185 test/theme.php:74 msgid "View" msgstr "Pogled" -#: db_structure.php:485 libraries/db_structure.lib.php:49 -#: libraries/server_links.inc.php:70 server_replication.php:33 +#: db_structure.php:483 libraries/db_structure.lib.php:49 +#: libraries/server_links.inc.php:71 server_replication.php:33 #: server_replication.php:164 server_status.php:369 msgid "Replication" msgstr "Podvojevanje" -#: db_structure.php:489 +#: db_structure.php:487 msgid "Sum" msgstr "Vsota" -#: db_structure.php:496 libraries/StorageEngine.class.php:356 +#: db_structure.php:494 libraries/StorageEngine.class.php:356 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "%s je privzet skladiščni pogon na tem strežniku MySQL." -#: db_structure.php:524 db_structure.php:541 db_structure.php:542 +#: db_structure.php:522 db_structure.php:539 db_structure.php:540 #: 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:1596 tbl_structure.php:455 -#: tbl_structure.php:464 +#: server_databases.php:351 server_privileges.php:1616 tbl_structure.php:453 +#: tbl_structure.php:462 msgid "With selected:" msgstr "Z označenim:" -#: db_structure.php:527 libraries/display_tbl.lib.php:2076 -#: server_databases.php:348 server_privileges.php:569 -#: server_privileges.php:1599 tbl_structure.php:458 +#: db_structure.php:525 libraries/display_tbl.lib.php:2076 +#: server_databases.php:348 server_privileges.php:570 +#: server_privileges.php:1619 tbl_structure.php:456 msgid "Check All" msgstr "Označi vse" -#: db_structure.php:531 libraries/display_tbl.lib.php:2077 +#: db_structure.php:529 libraries/display_tbl.lib.php:2077 #: libraries/replication_gui.lib.php:33 server_databases.php:350 -#: server_privileges.php:572 server_privileges.php:1603 tbl_structure.php:462 +#: server_privileges.php:573 server_privileges.php:1623 tbl_structure.php:460 msgid "Uncheck All" msgstr "Odznači vse" -#: db_structure.php:536 +#: db_structure.php:534 msgid "Check tables having overhead" msgstr "Preveri prekoračene" -#: db_structure.php:547 db_structure.php:548 db_structure.php:599 +#: db_structure.php:545 db_structure.php:546 db_structure.php:597 #: libraries/display_tbl.lib.php:2180 libraries/mult_submits.inc.php:28 -#: tbl_structure.php:492 tbl_structure.php:494 +#: tbl_structure.php:490 tbl_structure.php:492 msgid "Print view" msgstr "Pogled za tiskanje" -#: db_structure.php:549 db_structure.php:550 libraries/mult_submits.inc.php:42 +#: db_structure.php:547 db_structure.php:548 libraries/mult_submits.inc.php:42 #: tbl_operations.php:581 msgid "Check table" msgstr "Preveri tabelo" -#: db_structure.php:551 db_structure.php:552 libraries/mult_submits.inc.php:47 -#: tbl_operations.php:621 tbl_structure.php:709 tbl_structure.php:711 +#: db_structure.php:549 db_structure.php:550 libraries/mult_submits.inc.php:47 +#: tbl_operations.php:621 tbl_structure.php:707 tbl_structure.php:709 msgid "Optimize table" msgstr "Optimiraj tabelo" -#: db_structure.php:553 db_structure.php:554 libraries/mult_submits.inc.php:52 +#: db_structure.php:551 db_structure.php:552 libraries/mult_submits.inc.php:52 #: tbl_operations.php:611 msgid "Repair table" msgstr "Popravi tabelo" -#: db_structure.php:555 db_structure.php:556 libraries/mult_submits.inc.php:57 +#: db_structure.php:553 db_structure.php:554 libraries/mult_submits.inc.php:57 #: tbl_operations.php:601 msgid "Analyze table" msgstr "Analiziraj tabelo" -#: db_structure.php:557 db_structure.php:558 libraries/db_links.inc.php:71 +#: db_structure.php:555 db_structure.php:556 libraries/db_links.inc.php:71 #: 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:1380 +#: libraries/server_links.inc.php:85 libraries/tbl_links.inc.php:82 +#: pmd_pdf.php:84 pmd_pdf.php:109 server_privileges.php:1397 #: setup/frames/menu.inc.php:22 tbl_row_action.php:59 msgid "Export" msgstr "Izvozi" -#: db_structure.php:606 libraries/display_pdf_schema.lib.php:44 +#: db_structure.php:604 libraries/display_pdf_schema.lib.php:44 msgid "Data Dictionary" msgstr "Slovar podatkov" @@ -706,10 +702,10 @@ msgstr "Sledene tabele" #: db_tracking.php:71 libraries/export/htmlword.php:86 #: libraries/export/latex.php:148 libraries/export/odt.php:113 #: libraries/export/sql.php:342 libraries/export/texytext.php:84 -#: libraries/export/xml.php:255 libraries/header.inc.php:106 +#: libraries/export/xml.php:255 libraries/header.inc.php:110 #: libraries/header_printview.inc.php:58 server_databases.php:169 -#: server_privileges.php:1660 server_privileges.php:1721 -#: server_privileges.php:1979 server_processlist.php:56 +#: server_privileges.php:1680 server_privileges.php:1741 +#: server_privileges.php:1999 server_processlist.php:56 #: server_synchronize.php:1179 server_synchronize.php:1183 #: tbl_tracking.php:591 test/theme.php:65 msgid "Database" @@ -729,8 +725,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:1542 server_privileges.php:1725 -#: server_privileges.php:2073 tbl_structure.php:187 +#: server_privileges.php:1562 server_privileges.php:1745 +#: server_privileges.php:2094 tbl_structure.php:187 msgid "Action" msgstr "Dejanje" @@ -764,8 +760,8 @@ msgstr "Posnetek strukture" msgid "Untracked tables" msgstr "Nesledene tabele" -#: db_tracking.php:172 db_tracking.php:174 tbl_structure.php:528 -#: tbl_structure.php:530 +#: db_tracking.php:172 db_tracking.php:174 tbl_structure.php:526 +#: tbl_structure.php:528 msgid "Track table" msgstr "Sledi tabeli" @@ -934,316 +930,365 @@ msgstr "Ime gostitelja je prazno!" msgid "The user name is empty!" msgstr "Uporabniško ime je prazno!" -#: js/messages.php:44 server_privileges.php:1236 user_password.php:70 +#: js/messages.php:44 server_privileges.php:1241 user_password.php:70 msgid "The password is empty!" msgstr "Geslo je prazno!" -#: js/messages.php:45 server_privileges.php:1234 user_password.php:73 +#: js/messages.php:45 server_privileges.php:1239 user_password.php:73 msgid "The passwords aren't the same!" msgstr "Gesli se ne ujemata!" -#: js/messages.php:49 pmd_general.php:342 pmd_general.php:379 +#: js/messages.php:46 +#, fuzzy +#| msgid "Add a new User" +msgid "Add a New User" +msgstr "Dodaj novega uporabnika" + +#: js/messages.php:47 js/messages.php:54 pmd_general.php:342 +#: pmd_general.php:379 msgid "Cancel" msgstr "Prekliči" -#: js/messages.php:52 pmd_save_pos.php:54 +#: js/messages.php:48 +#, fuzzy +#| msgid "Create version" +msgid "Create User" +msgstr "Ustvari različico" + +#: js/messages.php:49 +#, fuzzy +#| msgid "Reloading the privileges" +msgid "Reloading Privileges" +msgstr "Osvežujem privilegije" + +#: js/messages.php:50 +#, fuzzy +#| msgid "Remove selected users" +msgid "Removing Selected Users" +msgstr "Izbriši izbrane uporabnike" + +#: js/messages.php:57 +#, fuzzy +#| msgid "Load" +msgid "Loading" +msgstr "Naloži" + +#: js/messages.php:58 +#, fuzzy +#| msgid "Processes" +msgid "Processing Request" +msgstr "Procesi" + +#: js/messages.php:59 +msgid "Error in Processing Request" +msgstr "" + +#: js/messages.php:60 +msgid "Dropping Column" +msgstr "" + +#: js/messages.php:61 +msgid "Adding Primary Key" +msgstr "" + +#: js/messages.php:64 pmd_save_pos.php:54 msgid "Modifications have been saved" msgstr "Spremembe so shranjene" -#: js/messages.php:53 pmd_relation_upd.php:49 +#: js/messages.php:65 pmd_relation_upd.php:49 msgid "Relation deleted" msgstr "Relacija je izbrisana" -#: js/messages.php:54 pmd_relation_new.php:64 +#: js/messages.php:66 pmd_relation_new.php:64 msgid "FOREIGN KEY relation added" msgstr "Dodano razmerje FOREIGN KEY" -#: js/messages.php:55 pmd_relation_new.php:86 +#: js/messages.php:67 pmd_relation_new.php:86 msgid "Internal relation added" msgstr "Dodana notranja razmerja" -#: js/messages.php:56 pmd_relation_new.php:63 pmd_relation_new.php:88 +#: js/messages.php:68 pmd_relation_new.php:63 pmd_relation_new.php:88 msgid "Error: Relation not added." msgstr "Napaka: Razmerje ni dodano." -#: js/messages.php:57 pmd_relation_new.php:31 +#: js/messages.php:69 pmd_relation_new.php:31 msgid "Error: relation already exists." msgstr "Napaka: razmerje že obstaja." -#: js/messages.php:58 +#: js/messages.php:70 msgid "Error saving coordinates for Designer." msgstr "Napaka pri shranjevanju koordinat Oblikovalnika." -#: js/messages.php:59 libraries/relation.lib.php:107 +#: js/messages.php:71 libraries/relation.lib.php:107 #: libraries/relation.lib.php:119 msgid "General relation features" msgstr "Splošne lastnosti relacij" -#: js/messages.php:59 libraries/relation.lib.php:101 +#: js/messages.php:71 libraries/relation.lib.php:101 #: libraries/relation.lib.php:108 msgid "Disabled" msgstr "Onemogočeno" -#: js/messages.php:60 +#: js/messages.php:72 msgid "Select referenced key" msgstr "Izberite referenčni ključ" -#: js/messages.php:61 +#: js/messages.php:73 msgid "Select Foreign Key" msgstr "Izberite tuji ključ" -#: js/messages.php:62 +#: js/messages.php:74 msgid "Please select the primary key or a unique key" msgstr "Prosimo, izberite primarni ključ ali unikatni ključ" -#: js/messages.php:63 pmd_general.php:77 tbl_relation.php:548 +#: js/messages.php:75 pmd_general.php:77 tbl_relation.php:548 msgid "Choose column to display" msgstr "Izberite stolpec za prikaz" #. l10n: Display text for calendar close link -#: js/messages.php:73 +#: js/messages.php:85 msgid "Done" msgstr "Končano" #. l10n: Display text for previous month link in calendar -#: js/messages.php:75 +#: js/messages.php:87 msgid "Prev" msgstr "Prejšnji" #. l10n: Display text for next month link in calendar -#: js/messages.php:77 libraries/common.lib.php:2353 -#: libraries/common.lib.php:2356 libraries/display_tbl.lib.php:338 +#: js/messages.php:89 libraries/common.lib.php:2357 +#: libraries/common.lib.php:2360 libraries/display_tbl.lib.php:338 #: server_binlog.php:205 server_binlog.php:207 tbl_printview.php:424 -#: tbl_structure.php:801 +#: tbl_structure.php:799 msgid "Next" msgstr "Naslednji" #. l10n: Display text for current month link in calendar -#: js/messages.php:79 +#: js/messages.php:91 msgid "Today" msgstr "Danes" -#: js/messages.php:82 +#: js/messages.php:94 msgid "January" msgstr "januar" -#: js/messages.php:83 +#: js/messages.php:95 msgid "February" msgstr "februar" -#: js/messages.php:84 +#: js/messages.php:96 msgid "March" msgstr "marec" -#: js/messages.php:85 +#: js/messages.php:97 msgid "April" msgstr "april" -#: js/messages.php:86 +#: js/messages.php:98 msgid "May" msgstr "maj" -#: js/messages.php:87 +#: js/messages.php:99 msgid "June" msgstr "junij" -#: js/messages.php:88 +#: js/messages.php:100 msgid "July" msgstr "julij" -#: js/messages.php:89 +#: js/messages.php:101 msgid "August" msgstr "avgust" -#: js/messages.php:90 +#: js/messages.php:102 msgid "September" msgstr "september" -#: js/messages.php:91 +#: js/messages.php:103 msgid "October" msgstr "oktober" -#: js/messages.php:92 +#: js/messages.php:104 msgid "November" msgstr "november" -#: js/messages.php:93 +#: js/messages.php:105 msgid "December" msgstr "december" #. l10n: Short month name -#: js/messages.php:97 libraries/common.lib.php:1557 +#: js/messages.php:109 libraries/common.lib.php:1557 msgid "Jan" msgstr "jan" #. l10n: Short month name -#: js/messages.php:99 libraries/common.lib.php:1559 +#: js/messages.php:111 libraries/common.lib.php:1559 msgid "Feb" msgstr "feb" #. l10n: Short month name -#: js/messages.php:101 libraries/common.lib.php:1561 +#: js/messages.php:113 libraries/common.lib.php:1561 msgid "Mar" msgstr "mar" #. l10n: Short month name -#: js/messages.php:103 libraries/common.lib.php:1563 +#: js/messages.php:115 libraries/common.lib.php:1563 msgid "Apr" msgstr "apr" #. l10n: Short month name -#: js/messages.php:105 libraries/common.lib.php:1565 +#: js/messages.php:117 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:1567 +#: js/messages.php:119 libraries/common.lib.php:1567 msgid "Jun" msgstr "jun" #. l10n: Short month name -#: js/messages.php:109 libraries/common.lib.php:1569 +#: js/messages.php:121 libraries/common.lib.php:1569 msgid "Jul" msgstr "jul" #. l10n: Short month name -#: js/messages.php:111 libraries/common.lib.php:1571 +#: js/messages.php:123 libraries/common.lib.php:1571 msgid "Aug" msgstr "avg" #. l10n: Short month name -#: js/messages.php:113 libraries/common.lib.php:1573 +#: js/messages.php:125 libraries/common.lib.php:1573 msgid "Sep" msgstr "sep" #. l10n: Short month name -#: js/messages.php:115 libraries/common.lib.php:1575 +#: js/messages.php:127 libraries/common.lib.php:1575 msgid "Oct" msgstr "okt" #. l10n: Short month name -#: js/messages.php:117 libraries/common.lib.php:1577 +#: js/messages.php:129 libraries/common.lib.php:1577 msgid "Nov" msgstr "nov" #. l10n: Short month name -#: js/messages.php:119 libraries/common.lib.php:1579 +#: js/messages.php:131 libraries/common.lib.php:1579 msgid "Dec" msgstr "dec" -#: js/messages.php:122 +#: js/messages.php:134 msgid "Sunday" msgstr "nedelja" -#: js/messages.php:123 +#: js/messages.php:135 msgid "Monday" msgstr "ponedeljek" -#: js/messages.php:124 +#: js/messages.php:136 msgid "Tuesday" msgstr "torek" -#: js/messages.php:125 +#: js/messages.php:137 msgid "Wednesday" msgstr "sreda" -#: js/messages.php:126 +#: js/messages.php:138 msgid "Thursday" msgstr "četrtek" -#: js/messages.php:127 +#: js/messages.php:139 msgid "Friday" msgstr "petek" -#: js/messages.php:128 +#: js/messages.php:140 msgid "Saturday" msgstr "sobota" #. l10n: Short week day name -#: js/messages.php:132 libraries/common.lib.php:1582 +#: js/messages.php:144 libraries/common.lib.php:1582 msgid "Sun" msgstr "ned" #. l10n: Short week day name -#: js/messages.php:134 libraries/common.lib.php:1584 +#: js/messages.php:146 libraries/common.lib.php:1584 msgid "Mon" msgstr "pon" #. l10n: Short week day name -#: js/messages.php:136 libraries/common.lib.php:1586 +#: js/messages.php:148 libraries/common.lib.php:1586 msgid "Tue" msgstr "tor" #. l10n: Short week day name -#: js/messages.php:138 libraries/common.lib.php:1588 +#: js/messages.php:150 libraries/common.lib.php:1588 msgid "Wed" msgstr "sre" #. l10n: Short week day name -#: js/messages.php:140 libraries/common.lib.php:1590 +#: js/messages.php:152 libraries/common.lib.php:1590 msgid "Thu" msgstr "čet" #. l10n: Short week day name -#: js/messages.php:142 libraries/common.lib.php:1592 +#: js/messages.php:154 libraries/common.lib.php:1592 msgid "Fri" msgstr "pet" #. l10n: Short week day name -#: js/messages.php:144 libraries/common.lib.php:1594 +#: js/messages.php:156 libraries/common.lib.php:1594 msgid "Sat" msgstr "sob" #. l10n: Minimal week day name -#: js/messages.php:148 +#: js/messages.php:160 msgid "Su" msgstr "ne" #. l10n: Minimal week day name -#: js/messages.php:150 +#: js/messages.php:162 msgid "Mo" msgstr "po" #. l10n: Minimal week day name -#: js/messages.php:152 +#: js/messages.php:164 msgid "Tu" msgstr "to" #. l10n: Minimal week day name -#: js/messages.php:154 +#: js/messages.php:166 msgid "We" msgstr "sr" #. l10n: Minimal week day name -#: js/messages.php:156 +#: js/messages.php:168 msgid "Th" msgstr "če" #. l10n: Minimal week day name -#: js/messages.php:158 +#: js/messages.php:170 msgid "Fr" msgstr "pe" #. l10n: Minimal week day name -#: js/messages.php:160 +#: js/messages.php:172 msgid "Sa" msgstr "so" #. l10n: Column header for week of the year in calendar -#: js/messages.php:162 +#: js/messages.php:174 msgid "Wk" msgstr "ted." -#: js/messages.php:164 +#: js/messages.php:176 msgid "Hour" msgstr "Ura" -#: js/messages.php:165 +#: js/messages.php:177 msgid "Minute" msgstr "Minuta" -#: js/messages.php:166 +#: js/messages.php:178 msgid "Second" msgstr "Sekunda" @@ -1302,7 +1347,7 @@ msgstr "Indeksi" #: libraries/Index.class.php:444 libraries/mult_submits.inc.php:103 #: libraries/tbl_properties.inc.php:519 tbl_structure.php:33 -#: tbl_structure.php:155 tbl_structure.php:159 tbl_structure.php:474 +#: tbl_structure.php:155 tbl_structure.php:159 tbl_structure.php:472 #: tbl_tracking.php:322 msgid "Unique" msgstr "Edinstven" @@ -1345,8 +1390,8 @@ msgstr "" "Kaže, da sta indeksa %1$s in %2$s enaka, zato se enega od njiju morda lahko " "odstrani." -#: libraries/List_Database.class.php:431 libraries/server_links.inc.php:41 -#: server_databases.php:88 server_privileges.php:1660 +#: libraries/List_Database.class.php:431 libraries/server_links.inc.php:42 +#: server_databases.php:88 server_privileges.php:1680 #: setup/lib/messages.inc.php:110 test/theme.php:93 msgid "Databases" msgstr "Podatkovne zbirke" @@ -1520,7 +1565,7 @@ msgstr "Geslo:" msgid "Server Choice" msgstr "Izbira strežnika" -#: libraries/auth/cookie.auth.lib.php:320 libraries/header.inc.php:59 +#: libraries/auth/cookie.auth.lib.php:320 libraries/header.inc.php:63 msgid "Cookies must be enabled past this point." msgstr "Če želite še dalje uporabljati program, morate omogočiti piškotke." @@ -1601,7 +1646,7 @@ msgstr "" "Ni mogoče uporabljati funkcij iconv, libiconv ali recode_string, čeprav so " "potrebne razširitve normalno naložene. Preverite vašo konfiguracijo PHP." -#: libraries/common.inc.php:583 +#: libraries/common.inc.php:587 msgid "" "phpMyAdmin was unable to read your configuration file!
This might " "happen if PHP finds a parse error in it or PHP cannot find the file.
Če dobite " "prazno stran, je vse v redu." -#: libraries/common.inc.php:594 +#: libraries/common.inc.php:598 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "Ne morem naložiti privzete konfiguracije iz: %1$s" -#: libraries/common.inc.php:599 +#: libraries/common.inc.php:603 msgid "" "The $cfg['PmaAbsoluteUri'] directive MUST be set in your " "configuration file!" @@ -1630,29 +1675,29 @@ msgstr "" "Ukaz $cfg['PmaAbsoluteUri'] MORA biti določen v konfiguracijski " "datoteki!" -#: libraries/common.inc.php:629 +#: libraries/common.inc.php:633 #, php-format msgid "Invalid server index: %s" msgstr "Neveljaven indeks strežnika: %s" -#: libraries/common.inc.php:636 +#: libraries/common.inc.php:640 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" "Neveljavno ime gostitelja za strežnik %1$s. Prosim, preglejte svojo " "konfiguracijo." -#: libraries/common.inc.php:645 libraries/header.inc.php:96 +#: libraries/common.inc.php:649 libraries/header.inc.php:100 #: libraries/select_server.lib.php:41 libraries/select_server.lib.php:47 #: main.php:185 test/theme.php:57 msgid "Server" msgstr "Strežnik" -#: libraries/common.inc.php:823 +#: libraries/common.inc.php:827 msgid "Invalid authentication method set in configuration:" msgstr "Neveljaven način overitve določen v konfiguracijski datoteki:" -#: libraries/common.inc.php:926 +#: libraries/common.inc.php:930 #, php-format msgid "You should upgrade to %s %s or later." msgstr "%s bi morali nadgraditi v verzijo %s ali novejšo." @@ -1783,45 +1828,45 @@ msgstr "," msgid "%B %d, %Y at %I:%M %p" msgstr "%d %B %Y ob %H.%M" -#: libraries/common.lib.php:1907 +#: libraries/common.lib.php:1911 #, 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:2322 libraries/common.lib.php:2325 +#: libraries/common.lib.php:2326 libraries/common.lib.php:2329 #: libraries/display_tbl.lib.php:290 server_status.php:719 msgid "Begin" msgstr "Začetek" -#: libraries/common.lib.php:2323 libraries/common.lib.php:2326 +#: libraries/common.lib.php:2327 libraries/common.lib.php:2330 #: libraries/display_tbl.lib.php:291 server_binlog.php:168 #: server_binlog.php:170 msgid "Previous" msgstr "Prejšnji" -#: libraries/common.lib.php:2354 libraries/common.lib.php:2357 +#: libraries/common.lib.php:2358 libraries/common.lib.php:2361 #: libraries/display_tbl.lib.php:353 msgid "End" msgstr "Konec" -#: libraries/common.lib.php:2430 +#: libraries/common.lib.php:2434 #, php-format msgid "Jump to database "%s"." msgstr "Preskoči na podatkovno zbirko "%s"." -#: libraries/common.lib.php:2450 +#: libraries/common.lib.php:2454 #, 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:2830 libraries/common.lib.php:2837 +#: libraries/common.lib.php:2834 libraries/common.lib.php:2841 #: libraries/db_links.inc.php:68 libraries/export/sql.php:25 -#: libraries/import/sql.php:18 libraries/server_links.inc.php:45 +#: libraries/import/sql.php:18 libraries/server_links.inc.php:46 #: libraries/tbl_links.inc.php:60 querywindow.php:99 test/theme.php:97 msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2839 libraries/db_links.inc.php:104 +#: libraries/common.lib.php:2843 libraries/db_links.inc.php:104 #: libraries/tbl_links.inc.php:95 libraries/tbl_links.inc.php:117 #: view_operations.php:89 msgid "Operations" @@ -1870,15 +1915,15 @@ msgstr "Poizvedba" msgid "Designer" msgstr "Oblikovalnik" -#: libraries/db_links.inc.php:98 libraries/server_links.inc.php:88 +#: libraries/db_links.inc.php:98 libraries/server_links.inc.php:89 #: libraries/tbl_links.inc.php:91 pmd_pdf.php:84 pmd_pdf.php:110 #: setup/frames/menu.inc.php:21 msgid "Import" msgstr "Uvozi" -#: libraries/db_links.inc.php:111 libraries/server_links.inc.php:66 -#: server_privileges.php:111 server_privileges.php:1722 -#: server_privileges.php:2071 test/theme.php:117 +#: libraries/db_links.inc.php:111 libraries/server_links.inc.php:67 +#: server_privileges.php:112 server_privileges.php:1742 +#: server_privileges.php:2092 test/theme.php:117 msgid "Privileges" msgstr "Privilegiji" @@ -1899,7 +1944,7 @@ msgstr "" "3.11[/a]" #: libraries/db_structure.lib.php:69 server_databases.php:142 -#: tbl_printview.php:336 tbl_structure.php:682 +#: tbl_printview.php:336 tbl_structure.php:680 msgid "Overhead" msgstr "Presežek" @@ -1918,7 +1963,7 @@ msgstr "Strežnik se ne odziva" msgid "(or the local MySQL server's socket is not correctly configured)" msgstr "(ali pa lokalna vtičnica strežnika MySQL ni pravilno konfigurirana)" -#: libraries/dbi/mysql.dbi.lib.php:362 tbl_structure.php:608 +#: libraries/dbi/mysql.dbi.lib.php:362 tbl_structure.php:606 msgid "Details..." msgstr "Podrobnosti ..." @@ -1928,22 +1973,22 @@ msgid "Change password" msgstr "Spremeni geslo" #: libraries/display_change_password.lib.php:35 -#: libraries/replication_gui.lib.php:345 server_privileges.php:807 +#: libraries/replication_gui.lib.php:345 server_privileges.php:808 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:796 -#: server_privileges.php:800 server_privileges.php:811 -#: server_privileges.php:1538 server_synchronize.php:1175 +#: libraries/replication_gui.lib.php:349 server_privileges.php:797 +#: server_privileges.php:801 server_privileges.php:812 +#: server_privileges.php:1558 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:815 server_privileges.php:818 +#: server_privileges.php:816 server_privileges.php:819 msgid "Re-type" msgstr "Ponovno vnesi" @@ -1956,12 +2001,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:822 +#: libraries/replication_gui.lib.php:360 server_privileges.php:823 msgid "Generate Password" msgstr "Ustvari geslo" #: libraries/display_change_password.lib.php:75 -#: libraries/replication_gui.lib.php:363 server_privileges.php:825 +#: libraries/replication_gui.lib.php:363 server_privileges.php:826 msgid "Generate" msgstr "Ustvari" @@ -1974,8 +2019,8 @@ msgstr "Ustvari novo zbirko podatkov" msgid "Create" msgstr "Ustvari" -#: libraries/display_create_database.lib.php:40 server_privileges.php:113 -#: server_privileges.php:1427 server_replication.php:35 +#: libraries/display_create_database.lib.php:40 server_privileges.php:114 +#: server_privileges.php:1447 server_replication.php:35 msgid "No Privileges" msgstr "Brez privilegijev" @@ -2062,7 +2107,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:1875 server_processlist.php:75 +#: server_privileges.php:1895 server_processlist.php:75 msgid "None" msgstr "Brez" @@ -2254,7 +2299,7 @@ msgstr "Uredi po ključu" #: libraries/import/docsql.php:34 libraries/import/ldi.php:47 #: libraries/import/ods.php:30 libraries/import/sql.php:20 #: libraries/import/xls.php:26 libraries/import/xlsx.php:26 -#: libraries/import/xml.php:25 tbl_select.php:267 tbl_structure.php:753 +#: libraries/import/xml.php:25 tbl_select.php:267 tbl_structure.php:751 msgid "Options" msgstr "Možnosti" @@ -2329,7 +2374,7 @@ msgstr "Poizvedba je potrebovala %01.4f s" #: libraries/display_tbl.lib.php:2089 libraries/mult_submits.inc.php:113 #: querywindow.php:125 querywindow.php:129 querywindow.php:132 -#: tbl_structure.php:25 tbl_structure.php:150 tbl_structure.php:470 +#: tbl_structure.php:25 tbl_structure.php:150 tbl_structure.php:468 msgid "Change" msgstr "Spremeni" @@ -2399,7 +2444,7 @@ msgstr "Uporaba zaloge medpomnilnika" #: libraries/engines/innodb.lib.php:194 server_databases.php:137 #: server_databases.php:305 server_status.php:525 server_status.php:586 -#: server_status.php:607 tbl_printview.php:351 tbl_structure.php:696 +#: server_status.php:607 tbl_printview.php:351 tbl_structure.php:694 msgid "Total" msgstr "Skupaj" @@ -2686,7 +2731,7 @@ msgstr "" "bo naslednja najvišja številka." #: libraries/export/codegen.php:37 setup/lib/messages.inc.php:88 -#: tbl_printview.php:376 tbl_structure.php:737 +#: tbl_printview.php:376 tbl_structure.php:735 msgid "Format" msgstr "Oblika" @@ -2750,8 +2795,8 @@ 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:576 server_replication.php:316 tbl_printview.php:317 -#: tbl_structure.php:665 +#: server_privileges.php:577 server_replication.php:316 tbl_printview.php:317 +#: tbl_structure.php:663 msgid "Data" msgstr "Podatki" @@ -2800,9 +2845,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:731 -#: server_privileges.php:734 server_privileges.php:790 -#: server_privileges.php:1537 server_privileges.php:2069 +#: libraries/replication_gui.lib.php:329 server_privileges.php:732 +#: server_privileges.php:735 server_privileges.php:791 +#: server_privileges.php:1557 server_privileges.php:2090 #: server_processlist.php:55 server_synchronize.php:1159 msgid "Host" msgstr "Gostitelj" @@ -2995,7 +3040,7 @@ msgstr "Izvozi vsebine" msgid "Open new phpMyAdmin window" msgstr "Odpri novo okno phpMyAdmin" -#: libraries/header.inc.php:115 +#: libraries/header.inc.php:119 msgid "New table" msgstr "Nova tabela" @@ -3155,20 +3200,20 @@ msgstr "Pretvori v kano" #: 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 +#: tbl_structure.php:471 msgid "Primary" msgstr "Primarni" #: libraries/mult_submits.inc.php:98 libraries/tbl_properties.inc.php:116 #: libraries/tbl_properties.inc.php:525 tbl_printview.php:326 #: tbl_structure.php:31 tbl_structure.php:154 tbl_structure.php:158 -#: tbl_structure.php:475 tbl_structure.php:673 +#: tbl_structure.php:473 tbl_structure.php:671 msgid "Index" msgstr "Indeks" #: libraries/mult_submits.inc.php:108 libraries/tbl_properties.inc.php:531 #: tbl_structure.php:35 tbl_structure.php:156 tbl_structure.php:160 -#: tbl_structure.php:478 +#: tbl_structure.php:476 msgid "Fulltext" msgstr "Polno besedilo" @@ -3476,8 +3521,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:711 -#: server_privileges.php:714 server_privileges.php:721 +#: libraries/replication_gui.lib.php:259 server_privileges.php:712 +#: server_privileges.php:715 server_privileges.php:722 #: server_synchronize.php:1171 msgid "User name" msgstr "Uporabniško ime" @@ -3501,7 +3546,7 @@ msgstr "Spremenljivka" #: 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 +#: tbl_structure.php:727 msgid "Value" msgstr "Vrednost" @@ -3521,34 +3566,34 @@ msgstr "" msgid "Add slave replication user" msgstr "Dodaj uporabnika podvojevanja podrejencev" -#: libraries/replication_gui.lib.php:254 server_privileges.php:716 +#: libraries/replication_gui.lib.php:254 server_privileges.php:717 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:717 -#: server_privileges.php:784 server_privileges.php:808 -#: server_privileges.php:1928 server_privileges.php:1958 +#: libraries/replication_gui.lib.php:346 server_privileges.php:718 +#: server_privileges.php:785 server_privileges.php:809 +#: server_privileges.php:1948 server_privileges.php:1978 msgid "Use text field" msgstr "Uporabi besedilno polje" -#: libraries/replication_gui.lib.php:302 server_privileges.php:764 +#: libraries/replication_gui.lib.php:302 server_privileges.php:765 msgid "Any host" msgstr "Kateri koli gostitelj" -#: libraries/replication_gui.lib.php:306 server_privileges.php:768 +#: libraries/replication_gui.lib.php:306 server_privileges.php:769 msgid "Local" msgstr "Lokalno" -#: libraries/replication_gui.lib.php:312 server_privileges.php:773 +#: libraries/replication_gui.lib.php:312 server_privileges.php:774 msgid "This Host" msgstr "Ta strežnik" -#: libraries/replication_gui.lib.php:318 server_privileges.php:779 +#: libraries/replication_gui.lib.php:318 server_privileges.php:780 msgid "Use Host Table" msgstr "Uporabi tabelo gostiteljev" -#: libraries/replication_gui.lib.php:331 server_privileges.php:792 +#: libraries/replication_gui.lib.php:331 server_privileges.php:793 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -3584,29 +3629,29 @@ msgstr "Neznani jezik: %1$s." msgid "Servers" msgstr "Strežniki" -#: libraries/server_links.inc.php:53 server_engines.php:112 +#: libraries/server_links.inc.php:54 server_engines.php:112 #: server_engines.php:116 server_status.php:415 test/theme.php:105 msgid "Variables" msgstr "Spremenljivke" -#: libraries/server_links.inc.php:57 test/theme.php:109 +#: libraries/server_links.inc.php:58 test/theme.php:109 msgid "Charsets" msgstr "Nabori znakov" -#: libraries/server_links.inc.php:61 test/theme.php:113 +#: libraries/server_links.inc.php:62 test/theme.php:113 msgid "Engines" msgstr "Pogoni" -#: libraries/server_links.inc.php:76 server_binlog.php:110 +#: libraries/server_links.inc.php:77 server_binlog.php:110 #: server_status.php:364 test/theme.php:121 msgid "Binary log" msgstr "Dvojiški dnevnik" -#: libraries/server_links.inc.php:80 +#: libraries/server_links.inc.php:81 msgid "Processes" msgstr "Procesi" -#: libraries/server_links.inc.php:92 server_synchronize.php:1092 +#: libraries/server_links.inc.php:93 server_synchronize.php:1092 #: server_synchronize.php:1100 msgid "Synchronize" msgstr "Sinhroniziraj" @@ -3844,12 +3889,12 @@ msgstr "Definicija PARTITION" msgid "Save" msgstr "Shrani" -#: libraries/tbl_properties.inc.php:780 tbl_structure.php:542 +#: libraries/tbl_properties.inc.php:780 tbl_structure.php:540 #, php-format msgid "Add %s column(s)" msgstr "Dodaj %s stolpec(-cev)" -#: libraries/tbl_properties.inc.php:784 tbl_structure.php:536 +#: libraries/tbl_properties.inc.php:784 tbl_structure.php:534 msgid "You have to add at least one column." msgstr "Dodati morate vsaj en stolpec." @@ -4019,8 +4064,8 @@ msgstr "Ponastavi" msgid "Protocol version" msgstr "Različica protokola" -#: main.php:189 server_privileges.php:1389 server_privileges.php:1536 -#: server_privileges.php:1650 server_privileges.php:2068 +#: main.php:189 server_privileges.php:1406 server_privileges.php:1556 +#: server_privileges.php:1670 server_privileges.php:2089 #: server_processlist.php:54 msgid "User" msgstr "Uporabnik" @@ -4463,113 +4508,113 @@ msgstr "Pogoni skladiščenja" msgid "View dump (schema) of databases" msgstr "Pokaži povzetek stanja podatkovnih baz" -#: server_privileges.php:24 server_privileges.php:266 +#: server_privileges.php:25 server_privileges.php:267 msgid "Includes all privileges except GRANT." msgstr "Vsebuje vse privilegije razen GRANT." -#: server_privileges.php:25 server_privileges.php:192 -#: server_privileges.php:515 +#: server_privileges.php:26 server_privileges.php:193 +#: server_privileges.php:516 msgid "Allows altering the structure of existing tables." msgstr "Omogoča spreminjanje strukture obstoječih tabel." -#: server_privileges.php:26 server_privileges.php:208 -#: server_privileges.php:521 +#: server_privileges.php:27 server_privileges.php:209 +#: server_privileges.php:522 msgid "Allows altering and dropping stored routines." msgstr "Omogoča ustvarjanje in brisanje shranjenih rutin." -#: server_privileges.php:27 server_privileges.php:184 -#: server_privileges.php:514 +#: server_privileges.php:28 server_privileges.php:185 +#: server_privileges.php:515 msgid "Allows creating new databases and tables." msgstr "Omogoča ustvarjanje novih podatkovnih zbirk in tabel." -#: server_privileges.php:28 server_privileges.php:207 -#: server_privileges.php:520 +#: server_privileges.php:29 server_privileges.php:208 +#: server_privileges.php:521 msgid "Allows creating stored routines." msgstr "Omogoča ustvarjanje shranjenih rutin." -#: server_privileges.php:29 server_privileges.php:514 +#: server_privileges.php:30 server_privileges.php:515 msgid "Allows creating new tables." msgstr "Omogoča ustvarjanje novih tabel." -#: server_privileges.php:30 server_privileges.php:195 -#: server_privileges.php:518 +#: server_privileges.php:31 server_privileges.php:196 +#: server_privileges.php:519 msgid "Allows creating temporary tables." msgstr "Omogoča ustvarjanje začasnih tabel." -#: server_privileges.php:31 server_privileges.php:209 -#: server_privileges.php:554 +#: server_privileges.php:32 server_privileges.php:210 +#: server_privileges.php:555 msgid "Allows creating, dropping and renaming user accounts." msgstr "Omogoča ustvarjanje, brisanje in preimenovanje uporabniških računov." -#: server_privileges.php:32 server_privileges.php:199 -#: server_privileges.php:203 server_privileges.php:526 -#: server_privileges.php:530 +#: server_privileges.php:33 server_privileges.php:200 +#: server_privileges.php:204 server_privileges.php:527 +#: server_privileges.php:531 msgid "Allows creating new views." msgstr "Omogoča ustvarjanje novih pogledov." -#: server_privileges.php:33 server_privileges.php:183 -#: server_privileges.php:506 +#: server_privileges.php:34 server_privileges.php:184 +#: server_privileges.php:507 msgid "Allows deleting data." msgstr "Omogoča brisanje podatkov." -#: server_privileges.php:34 server_privileges.php:185 -#: server_privileges.php:517 +#: server_privileges.php:35 server_privileges.php:186 +#: server_privileges.php:518 msgid "Allows dropping databases and tables." msgstr "Omogoča brisanje podatkovnih zbirk in tabel." -#: server_privileges.php:35 server_privileges.php:517 +#: server_privileges.php:36 server_privileges.php:518 msgid "Allows dropping tables." msgstr "Omogoča brisanje tabel." -#: server_privileges.php:36 server_privileges.php:200 -#: server_privileges.php:534 +#: server_privileges.php:37 server_privileges.php:201 +#: server_privileges.php:535 msgid "Allows to set up events for the event scheduler" msgstr "Omogoča določanje dogodkov za načrtovalnik dogodkov" -#: server_privileges.php:37 server_privileges.php:210 -#: server_privileges.php:522 +#: server_privileges.php:38 server_privileges.php:211 +#: server_privileges.php:523 msgid "Allows executing stored routines." msgstr "Omogoča izvajanje shranjenih rutin." -#: server_privileges.php:38 server_privileges.php:189 -#: server_privileges.php:509 +#: server_privileges.php:39 server_privileges.php:190 +#: server_privileges.php:510 msgid "Allows importing data from and exporting data into files." msgstr "Omogoča uvažanje in izvažanje podatkov v datoteke." -#: server_privileges.php:39 server_privileges.php:540 +#: server_privileges.php:40 server_privileges.php:541 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "Omogoča dodajanje uporabnikov in privilegijev brez osveževanja privilegijev." -#: server_privileges.php:40 server_privileges.php:191 -#: server_privileges.php:516 +#: server_privileges.php:41 server_privileges.php:192 +#: server_privileges.php:517 msgid "Allows creating and dropping indexes." msgstr "Omogoča ustvarjanje in brisanje indeksov." -#: server_privileges.php:41 server_privileges.php:181 -#: server_privileges.php:442 server_privileges.php:504 +#: server_privileges.php:42 server_privileges.php:182 +#: server_privileges.php:443 server_privileges.php:505 msgid "Allows inserting and replacing data." msgstr "Omogoča vstavljanje in zamenjavo podatkov." -#: server_privileges.php:42 server_privileges.php:196 -#: server_privileges.php:549 +#: server_privileges.php:43 server_privileges.php:197 +#: server_privileges.php:550 msgid "Allows locking tables for the current thread." msgstr "Omogoča zaklepanje tabel za trenutno temo." -#: server_privileges.php:43 server_privileges.php:646 -#: server_privileges.php:648 +#: server_privileges.php:44 server_privileges.php:647 +#: server_privileges.php:649 msgid "Limits the number of new connections the user may open per hour." msgstr "Omeji število povezav, ki jih uporabnik lahko odpre v eni uri." -#: server_privileges.php:44 server_privileges.php:634 -#: server_privileges.php:636 +#: server_privileges.php:45 server_privileges.php:635 +#: server_privileges.php:637 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" "Omeji število poizved, ki jih uporabnik lahko pošlje strežniku v eni uri." -#: server_privileges.php:45 server_privileges.php:640 -#: server_privileges.php:642 +#: server_privileges.php:46 server_privileges.php:641 +#: server_privileges.php:643 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -4577,62 +4622,62 @@ 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 +#: server_privileges.php:47 server_privileges.php:653 +#: server_privileges.php:655 msgid "Limits the number of simultaneous connections the user may have." msgstr "Omeji število sočasnih povezav, ki jih lahko ima uporabnik." -#: server_privileges.php:47 server_privileges.php:188 -#: server_privileges.php:544 +#: server_privileges.php:48 server_privileges.php:189 +#: server_privileges.php:545 msgid "Allows viewing processes of all users" msgstr "Omogoča ogled procesov vseh uporabnikov" -#: server_privileges.php:48 server_privileges.php:190 -#: server_privileges.php:448 server_privileges.php:550 +#: server_privileges.php:49 server_privileges.php:191 +#: server_privileges.php:449 server_privileges.php:551 msgid "Has no effect in this MySQL version." msgstr "V tej različici MySQL nima pomena." -#: server_privileges.php:49 server_privileges.php:186 -#: server_privileges.php:545 +#: server_privileges.php:50 server_privileges.php:187 +#: server_privileges.php:546 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" "Omogoča osveževanje strežnikovih nastavitev in praznjenje strežnikovih " "predpomnilnikov." -#: server_privileges.php:50 server_privileges.php:198 -#: server_privileges.php:552 +#: server_privileges.php:51 server_privileges.php:199 +#: server_privileges.php:553 msgid "Allows the user to ask where the slaves / masters are." msgstr "" "Da uporabniku pravico poizvedovati kje so njegovi nadrejeni / podrjeni " "strežniki." -#: server_privileges.php:51 server_privileges.php:197 -#: server_privileges.php:553 +#: server_privileges.php:52 server_privileges.php:198 +#: server_privileges.php:554 msgid "Needed for the replication slaves." msgstr "Potrebno za podrejene strežnike pri replikaciji." -#: server_privileges.php:52 server_privileges.php:180 -#: server_privileges.php:439 server_privileges.php:503 +#: server_privileges.php:53 server_privileges.php:181 +#: server_privileges.php:440 server_privileges.php:504 msgid "Allows reading data." msgstr "Omogoča branje podatkov." -#: server_privileges.php:53 server_privileges.php:193 -#: server_privileges.php:547 +#: server_privileges.php:54 server_privileges.php:194 +#: server_privileges.php:548 msgid "Gives access to the complete list of databases." msgstr "Omogoča dostop do popolnega spiska podatkovnih zbirk." -#: server_privileges.php:54 server_privileges.php:204 -#: server_privileges.php:206 server_privileges.php:519 +#: server_privileges.php:55 server_privileges.php:205 +#: server_privileges.php:207 server_privileges.php:520 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Omogoča izvajanje poizvedb SHOW CREATE VIEW." -#: server_privileges.php:55 server_privileges.php:187 -#: server_privileges.php:546 +#: server_privileges.php:56 server_privileges.php:188 +#: server_privileges.php:547 msgid "Allows shutting down the server." msgstr "Omogoča ugašanje strežnika." -#: server_privileges.php:56 server_privileges.php:194 -#: server_privileges.php:543 +#: server_privileges.php:57 server_privileges.php:195 +#: server_privileges.php:544 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -4642,153 +4687,153 @@ msgstr "" "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 +#: server_privileges.php:58 server_privileges.php:202 +#: server_privileges.php:536 msgid "Allows creating and dropping triggers" msgstr "Omogoča ustvarjanje in brisanje sprožilcev" -#: server_privileges.php:58 server_privileges.php:182 -#: server_privileges.php:445 server_privileges.php:505 +#: server_privileges.php:59 server_privileges.php:183 +#: server_privileges.php:446 server_privileges.php:506 msgid "Allows changing data." msgstr "Omogoča spreminjanje podatkov." -#: server_privileges.php:59 server_privileges.php:260 +#: server_privileges.php:60 server_privileges.php:261 msgid "No privileges." msgstr "Brez privilegijev." -#: server_privileges.php:302 server_privileges.php:303 +#: server_privileges.php:303 server_privileges.php:304 msgctxt "None privileges" msgid "None" msgstr "Brez" -#: server_privileges.php:431 server_privileges.php:566 -#: server_privileges.php:1718 server_privileges.php:1724 +#: server_privileges.php:432 server_privileges.php:567 +#: server_privileges.php:1738 server_privileges.php:1744 msgid "Table-specific privileges" msgstr "Privilegiji tipični za tabelo" -#: server_privileges.php:432 server_privileges.php:574 -#: server_privileges.php:1540 +#: server_privileges.php:433 server_privileges.php:575 +#: server_privileges.php:1560 msgid " Note: MySQL privilege names are expressed in English " msgstr " Opomba: Imena privilegijev MySQL so zapisana v angleščini " -#: server_privileges.php:563 server_privileges.php:1539 +#: server_privileges.php:564 server_privileges.php:1559 msgid "Global privileges" msgstr "Globalni privilegiji" -#: server_privileges.php:565 server_privileges.php:1718 +#: server_privileges.php:566 server_privileges.php:1738 msgid "Database-specific privileges" msgstr "Privilegiji tipični za podatkovno zbirko" -#: server_privileges.php:610 +#: server_privileges.php:611 msgid "Administration" msgstr "Administracija" -#: server_privileges.php:630 +#: server_privileges.php:631 msgid "Resource limits" msgstr "Omejitve virov" -#: server_privileges.php:631 +#: server_privileges.php:632 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "" "Obvestilo: Če postavite vrednost na 0 (nič), boste odstranili omejitev." -#: server_privileges.php:708 +#: server_privileges.php:709 msgid "Login Information" msgstr "Podatki o prijavi" -#: server_privileges.php:802 +#: server_privileges.php:803 msgid "Do not change the password" msgstr "Ne spreminjaj gesla" -#: server_privileges.php:843 server_privileges.php:2205 +#: server_privileges.php:844 server_privileges.php:2226 msgid "No user found." msgstr "Najden ni bil noben uporabnik." -#: server_privileges.php:887 +#: server_privileges.php:888 #, php-format msgid "The user %s already exists!" msgstr "Uporabnik %s že obstaja!" -#: server_privileges.php:970 +#: server_privileges.php:971 msgid "You have added a new user." msgstr "Dodali ste novega uporabnika." -#: server_privileges.php:1191 +#: server_privileges.php:1196 #, php-format msgid "You have updated the privileges for %s." msgstr "Posodobili ste privilegije za %s." -#: server_privileges.php:1215 +#: server_privileges.php:1220 #, php-format msgid "You have revoked the privileges for %s" msgstr "Odvzeli ste privilegije za %s" -#: server_privileges.php:1251 +#: server_privileges.php:1256 #, php-format msgid "The password for %s was changed successfully." msgstr "Geslo za %s je uspešno spremenjeno." -#: server_privileges.php:1271 +#: server_privileges.php:1276 #, php-format msgid "Deleting %s" msgstr "Brišem %s" -#: server_privileges.php:1282 +#: server_privileges.php:1287 msgid "No users selected for deleting!" msgstr "Ni izbranih uporabnikov za brisanje!" -#: server_privileges.php:1285 +#: server_privileges.php:1290 msgid "Reloading the privileges" msgstr "Osvežujem privilegije" -#: server_privileges.php:1300 +#: server_privileges.php:1305 msgid "The selected users have been deleted successfully." msgstr "Uspešno sem izbrisal izbrane uporabnike." -#: server_privileges.php:1335 +#: server_privileges.php:1344 msgid "The privileges were reloaded successfully." msgstr "Uspešno sem osvežil privilegije." -#: server_privileges.php:1363 server_privileges.php:1649 +#: server_privileges.php:1380 server_privileges.php:1669 msgid "Edit Privileges" msgstr "Uredi privilegije" -#: server_privileges.php:1372 +#: server_privileges.php:1389 msgid "Revoke" msgstr "Odvzemi" -#: server_privileges.php:1404 +#: server_privileges.php:1424 msgid "User overview" msgstr "Pregled uporabnikov" -#: server_privileges.php:1541 server_privileges.php:1723 -#: server_privileges.php:2072 +#: server_privileges.php:1561 server_privileges.php:1743 +#: server_privileges.php:2093 msgid "Grant" msgstr "Dovoli" -#: server_privileges.php:1560 server_privileges.php:2162 +#: server_privileges.php:1580 server_privileges.php:2183 msgid "Any" msgstr "Kateri koli" -#: server_privileges.php:1609 server_privileges.php:1633 -#: server_privileges.php:2027 server_privileges.php:2216 +#: server_privileges.php:1629 server_privileges.php:1653 +#: server_privileges.php:2048 server_privileges.php:2237 msgid "Add a new User" msgstr "Dodaj novega uporabnika" -#: server_privileges.php:1614 +#: server_privileges.php:1634 msgid "Remove selected users" msgstr "Izbriši izbrane uporabnike" -#: server_privileges.php:1617 +#: server_privileges.php:1637 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:1618 server_privileges.php:1619 -#: server_privileges.php:1620 +#: server_privileges.php:1638 server_privileges.php:1639 +#: server_privileges.php:1640 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:1636 +#: server_privileges.php:1656 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -4801,50 +4846,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:1684 +#: server_privileges.php:1704 msgid "The selected user was not found in the privilege table." msgstr "Izbranega uporabnika v tabelah privilegijev nisem našel." -#: server_privileges.php:1724 +#: server_privileges.php:1744 msgid "Column-specific privileges" msgstr "Privilegiji tipični za stolpec" -#: server_privileges.php:1925 +#: server_privileges.php:1945 msgid "Add privileges on the following database" msgstr "Dodaj privilegije na naslednji podatkovni zbirki" -#: server_privileges.php:1943 +#: server_privileges.php:1963 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:1946 +#: server_privileges.php:1966 msgid "Add privileges on the following table" msgstr "Dodaj privilegije na naslednji tabeli" -#: server_privileges.php:2003 +#: server_privileges.php:2023 msgid "Change Login Information / Copy User" msgstr "Spremeni prijavne informacije / Kopiraj uporabnika" -#: server_privileges.php:2006 +#: server_privileges.php:2026 msgid "Create a new user with the same privileges and ..." msgstr "Ustvari novega uporabnika z enakimi pravicami in ..." -#: server_privileges.php:2008 +#: server_privileges.php:2028 msgid "... keep the old one." msgstr "... obdrži starega." -#: server_privileges.php:2009 +#: server_privileges.php:2029 msgid " ... delete the old one from the user tables." msgstr " ... izbriši starega s seznama uporabnikov." -#: server_privileges.php:2010 +#: server_privileges.php:2030 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:2011 +#: server_privileges.php:2031 msgid "" " ... delete the old one from the user tables and reload the privileges " "afterwards." @@ -4852,43 +4897,43 @@ msgstr "" " ... izbriši starega uporabnika s seznama uporabnikov ter ponovno naloži " "njegove pravice." -#: server_privileges.php:2033 +#: server_privileges.php:2054 msgid "Database for user" msgstr "Podatkovna zbirka za uporabnika" -#: server_privileges.php:2037 +#: server_privileges.php:2058 msgctxt "Create none database for user" msgid "None" msgstr "Nobena" -#: server_privileges.php:2038 +#: server_privileges.php:2059 msgid "Create database with same name and grant all privileges" msgstr "Ustvari zbirko podatkov z enakim imenom in dodeli vse privilegije" -#: server_privileges.php:2039 +#: server_privileges.php:2060 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "" "Dodeli vse privilegije na imenu z nadomestnim znakom (uporabniskoime\\_%)" -#: server_privileges.php:2042 +#: server_privileges.php:2063 #, php-format msgid "Grant all privileges on database "%s"" msgstr "Dodeli vse privilegije za podatkovno zbirko "%s"" -#: server_privileges.php:2065 +#: server_privileges.php:2086 #, php-format msgid "Users having access to "%s"" msgstr "Uporabniški dostop do "%s"" -#: server_privileges.php:2173 +#: server_privileges.php:2194 msgid "global" msgstr "globalno" -#: server_privileges.php:2175 +#: server_privileges.php:2196 msgid "database-specific" msgstr "glede na zbirko podatkov" -#: server_privileges.php:2177 +#: server_privileges.php:2198 msgid "wildcard" msgstr "nadomestni znak" @@ -7860,6 +7905,10 @@ msgstr "Vstavi kot novo vrstico in presliši napake" msgid "Show insert query" msgstr "Prikaži poizvedbo insert" +#: tbl_change.php:1143 +msgid "and then" +msgstr "in potem" + #: tbl_change.php:1147 msgid "Go back to previous page" msgstr "Nazaj na prejšnjo stran" @@ -7940,7 +7989,7 @@ msgstr "(\"PRIMARY\" mora biti ime samo primarnega ključa!)" msgid "Add to index  %s column(s)" msgstr "Dodaj indeksu  %s stolpec(ce)" -#: tbl_indexes.php:256 tbl_structure.php:589 tbl_structure.php:600 +#: tbl_indexes.php:256 tbl_structure.php:587 tbl_structure.php:598 msgid "Column count has to be larger than zero." msgstr "Število stolpcev mora biti večje od nič." @@ -8052,39 +8101,39 @@ msgstr "Preveri referenčno integriteto:" msgid "Show tables" msgstr "Pokaži tabele" -#: tbl_printview.php:310 tbl_structure.php:656 +#: tbl_printview.php:310 tbl_structure.php:654 msgid "Space usage" msgstr "Poraba prostora" -#: tbl_printview.php:314 tbl_structure.php:660 +#: tbl_printview.php:314 tbl_structure.php:658 msgid "Usage" msgstr "Uporaba" -#: tbl_printview.php:341 tbl_structure.php:687 +#: tbl_printview.php:341 tbl_structure.php:685 msgid "Effective" msgstr "Učinkovito" -#: tbl_printview.php:366 tbl_structure.php:725 +#: tbl_printview.php:366 tbl_structure.php:723 msgid "Row Statistics" msgstr "Statistika vrstic" -#: tbl_printview.php:369 tbl_structure.php:728 +#: tbl_printview.php:369 tbl_structure.php:726 msgid "Statements" msgstr "Izjave" -#: tbl_printview.php:380 tbl_structure.php:740 +#: tbl_printview.php:380 tbl_structure.php:738 msgid "static" msgstr "statično" -#: tbl_printview.php:382 tbl_structure.php:742 +#: tbl_printview.php:382 tbl_structure.php:740 msgid "dynamic" msgstr "dinamično" -#: tbl_printview.php:404 tbl_structure.php:785 +#: tbl_printview.php:404 tbl_structure.php:783 msgid "Row length" msgstr "Dolžina vrstice" -#: tbl_printview.php:414 tbl_structure.php:793 +#: tbl_printview.php:414 tbl_structure.php:791 msgid " Row size " msgstr " Velikost vrstice " @@ -8150,47 +8199,47 @@ msgstr "Brez" msgid "Column %s has been dropped" msgstr "Stolpec %s je zavržen" -#: tbl_structure.php:385 +#: tbl_structure.php:384 #, php-format msgid "A primary key has been added on %s" msgstr "Na %s je dodan primarni ključ" -#: tbl_structure.php:400 tbl_structure.php:414 tbl_structure.php:428 +#: tbl_structure.php:398 tbl_structure.php:412 tbl_structure.php:426 #, php-format msgid "An index has been added on %s" msgstr "Na %s je dodan indeks" -#: tbl_structure.php:506 tbl_structure.php:508 +#: tbl_structure.php:504 tbl_structure.php:506 msgid "Relation view" msgstr "Pogled relacij" -#: tbl_structure.php:515 tbl_structure.php:517 +#: tbl_structure.php:513 tbl_structure.php:515 msgid "Propose table structure" msgstr "Predlagaj strukturo tabele" -#: tbl_structure.php:540 +#: tbl_structure.php:538 msgid "Add column" msgstr "Dodaj stolpec" -#: tbl_structure.php:554 +#: tbl_structure.php:552 msgid "At End of Table" msgstr "Na koncu tabele" -#: tbl_structure.php:555 +#: tbl_structure.php:553 msgid "At Beginning of Table" msgstr "Na začetku tabele" -#: tbl_structure.php:556 +#: tbl_structure.php:554 #, php-format msgid "After %s" msgstr "Po %s" -#: tbl_structure.php:594 +#: tbl_structure.php:592 #, php-format msgid "Create an index on  %s columns" msgstr "Ustvari indeks na  %s stolpcih" -#: tbl_structure.php:756 +#: tbl_structure.php:754 msgid "partitioned" msgstr "po particijah" diff --git a/po/sq.po b/po/sq.po index 12a504f90..0b7693884 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-13 09:03-0400\n" +"POT-Creation-Date: 2010-06-22 00:55+0530\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:1514 +#: libraries/display_tbl.lib.php:417 server_privileges.php:1534 msgid "Show all" msgstr "Shfaqi të gjithë" -#: browse_foreigners.php:82 libraries/common.lib.php:2313 +#: browse_foreigners.php:82 libraries/common.lib.php:2317 #: 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,18 +38,18 @@ 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:2831 -#: libraries/common.lib.php:2838 libraries/db_links.inc.php:75 +#: db_structure.php:106 libraries/common.lib.php:2835 +#: libraries/common.lib.php:2842 libraries/db_links.inc.php:75 #: libraries/tbl_links.inc.php:63 msgid "Search" msgstr "Kërko" -#: browse_foreigners.php:153 db_operations.php:385 db_operations.php:429 -#: db_operations.php:499 db_operations.php:609 db_search.php:362 -#: db_structure.php:567 js/messages.php:48 libraries/Config.class.php:1046 +#: browse_foreigners.php:153 db_operations.php:394 db_operations.php:438 +#: db_operations.php:508 db_operations.php:618 db_search.php:362 +#: db_structure.php:565 js/messages.php:53 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:1335 libraries/common.lib.php:2288 +#: libraries/common.lib.php:1335 libraries/common.lib.php:2292 #: 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,15 +60,15 @@ 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:664 server_privileges.php:1624 -#: server_privileges.php:1971 server_privileges.php:2018 -#: server_privileges.php:2057 server_replication.php:235 +#: server_privileges.php:665 server_privileges.php:1644 +#: server_privileges.php:1991 server_privileges.php:2038 +#: server_privileges.php:2078 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 #: tbl_operations.php:302 tbl_operations.php:499 tbl_operations.php:561 -#: tbl_operations.php:681 tbl_select.php:327 tbl_structure.php:562 -#: tbl_structure.php:597 tbl_tracking.php:395 tbl_tracking.php:512 +#: tbl_operations.php:681 tbl_select.php:327 tbl_structure.php:560 +#: tbl_structure.php:595 tbl_tracking.php:395 tbl_tracking.php:512 #: view_create.php:182 view_operations.php:101 msgid "Go" msgstr "Zbato" @@ -94,7 +94,7 @@ msgstr "Përdor këtë vlerë" msgid "Database %1$s has been created." msgstr "U krijua baza e të dhënave %1$s." -#: db_datadict.php:49 db_operations.php:378 +#: db_datadict.php:49 db_operations.php:387 msgid "Database comment: " msgstr "Komenti për databazën: " @@ -121,10 +121,10 @@ 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:2070 +#: pdf_schema.php:1263 pdf_schema.php:1284 server_privileges.php:2091 #: 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 +#: tbl_structure.php:657 tbl_tracking.php:274 tbl_tracking.php:321 msgid "Type" msgstr "Lloji" @@ -137,7 +137,7 @@ msgstr "Lloji" msgid "Null" msgstr "Null" -#: db_datadict.php:178 db_structure.php:501 libraries/export/htmlword.php:247 +#: db_datadict.php:178 db_structure.php:499 libraries/export/htmlword.php:247 #: libraries/export/latex.php:360 libraries/export/odt.php:303 #: libraries/export/texytext.php:236 libraries/tbl_properties.inc.php:106 #: pdf_schema.php:1266 pdf_schema.php:1287 tbl_printview.php:146 @@ -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: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 +#: pdf_schema.php:1344 server_privileges.php:1588 server_privileges.php:1599 +#: server_privileges.php:1909 server_privileges.php:1914 +#: server_privileges.php:2208 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:1565 -#: server_privileges.php:1579 server_privileges.php:1889 -#: server_privileges.php:1892 server_privileges.php:2187 sql.php:193 +#: server_databases.php:64 server_privileges.php:1585 +#: server_privileges.php:1599 server_privileges.php:1909 +#: server_privileges.php:1912 server_privileges.php:2208 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" @@ -210,119 +210,115 @@ msgstr "Zgjidh gjithçka" msgid "Unselect All" msgstr "Asnjë zgjedhje" -#: db_operations.php:38 tbl_create.php:54 +#: db_operations.php:43 tbl_create.php:54 msgid "The database name is empty!" msgstr "Mungon emri i databazës!" -#: db_operations.php:236 +#: db_operations.php:241 #, php-format msgid "Database %s has been renamed to %s" msgstr "Databazës %s i është ndryshuar emri në %s" -#: db_operations.php:240 +#: db_operations.php:245 #, php-format msgid "Database %s has been copied to %s" msgstr "Databaza %s është kopjuar tek %s" -#: db_operations.php:412 +#: db_operations.php:421 msgid "Rename database to" msgstr "Ndysho emrin e databazës në" -#: db_operations.php:417 server_processlist.php:57 +#: db_operations.php:426 server_processlist.php:57 msgid "Command" msgstr "Komanda" -#: db_operations.php:429 tbl_change.php:1143 -msgid "and then" -msgstr "" - -#: db_operations.php:455 +#: db_operations.php:464 msgid "Copy database to" msgstr "Kopjo databazën në" -#: db_operations.php:462 tbl_operations.php:528 tbl_tracking.php:388 +#: db_operations.php:471 tbl_operations.php:528 tbl_tracking.php:388 msgid "Structure only" msgstr "Vetëm struktura" -#: db_operations.php:463 tbl_operations.php:529 tbl_tracking.php:390 +#: db_operations.php:472 tbl_operations.php:529 tbl_tracking.php:390 msgid "Structure and data" msgstr "Struktura dhe të dhënat" -#: db_operations.php:464 tbl_operations.php:530 tbl_tracking.php:389 +#: db_operations.php:473 tbl_operations.php:530 tbl_tracking.php:389 msgid "Data only" msgstr "Vetëm të dhënat" -#: db_operations.php:472 +#: db_operations.php:481 msgid "CREATE DATABASE before copying" msgstr "CREATE DATABASE para se të kopjohet" -#: db_operations.php:475 libraries/export/sql.php:52 +#: db_operations.php:484 libraries/export/sql.php:52 #: libraries/export/sql.php:74 libraries/export/sql.php:76 #: libraries/export/sql.php:82 tbl_operations.php:536 #, php-format msgid "Add %s" msgstr "Shto %s" -#: db_operations.php:479 libraries/export/sql.php:78 tbl_operations.php:299 +#: db_operations.php:488 libraries/export/sql.php:78 tbl_operations.php:299 #: tbl_operations.php:538 msgid "Add AUTO_INCREMENT value" msgstr "Shto vlerë AUTO_INCREMENT" -#: db_operations.php:483 tbl_operations.php:545 +#: db_operations.php:492 tbl_operations.php:545 msgid "Add constraints" msgstr "Shto kushte" -#: db_operations.php:496 +#: db_operations.php:505 msgid "Switch to copied database" msgstr "Kalo tek databaza e kopjuar" -#: db_operations.php:537 +#: db_operations.php:546 msgid "BLOB Repository" msgstr "Repository BLOB" -#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1352 -#: libraries/server_links.inc.php:49 server_processlist.php:59 +#: db_operations.php:549 db_tracking.php:76 libraries/common.lib.php:1352 +#: libraries/server_links.inc.php:50 server_processlist.php:59 #: tbl_tracking.php:596 test/theme.php:101 msgid "Status" msgstr "Gjendja" -#: db_operations.php:548 +#: db_operations.php:557 msgctxt "BLOB repository" msgid "Enabled" msgstr "Aktivizuar" -#: db_operations.php:552 +#: db_operations.php:561 msgid "Disable" msgstr "Çaktivizo" -#: db_operations.php:562 +#: db_operations.php:571 msgid "Damaged" msgstr "Me dëme" -#: db_operations.php:566 +#: db_operations.php:575 msgctxt "BLOB repository" msgid "Repair" msgstr "Riparo" -#: db_operations.php:574 +#: db_operations.php:583 msgctxt "BLOB repository" msgid "Disabled" msgstr "Çaktivizuar" -#: db_operations.php:578 +#: db_operations.php:587 msgid "Enable" msgstr "Aktivizo" -#: db_operations.php:602 libraries/Index.class.php:448 +#: db_operations.php:611 libraries/Index.class.php:448 #: libraries/db_structure.lib.php:62 libraries/mysql_charsets.lib.php:107 #: libraries/tbl_properties.inc.php:107 libraries/tbl_properties.inc.php:730 #: server_collations.php:54 server_collations.php:66 server_databases.php:111 #: tbl_operations.php:363 tbl_select.php:137 tbl_structure.php:179 -#: tbl_structure.php:767 tbl_tracking.php:275 tbl_tracking.php:326 +#: tbl_structure.php:765 tbl_tracking.php:275 tbl_tracking.php:326 msgid "Collation" msgstr "Collation" -#: db_operations.php:615 main.php:316 pdf_schema.php:34 +#: db_operations.php:624 main.php:316 pdf_schema.php:34 #, php-format msgid "" "The additional features for working with linked tables have been " @@ -331,14 +327,14 @@ msgstr "" "Karakteristikat shtesë janë çaktivizuar për sa i takon funksionimit me " "tabelat e lidhura. Për të kuptuar përse, klikoni %skëtu%s." -#: db_operations.php:648 +#: db_operations.php:657 msgid "Edit PDF Pages" 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:1665 -#: server_privileges.php:1721 server_privileges.php:1985 +#: libraries/header.inc.php:130 pdf_pages.php:424 server_privileges.php:1685 +#: server_privileges.php:1741 server_privileges.php:2005 #: server_synchronize.php:423 server_synchronize.php:866 tbl_tracking.php:592 #: test/theme.php:75 msgid "Table" @@ -347,7 +343,7 @@ msgstr "Tabela" #: db_printview.php:105 libraries/db_structure.lib.php:56 #: libraries/header_printview.inc.php:63 libraries/import.lib.php:146 #: navigation.php:638 navigation.php:660 server_databases.php:122 -#: tbl_printview.php:394 tbl_structure.php:365 tbl_structure.php:777 +#: tbl_printview.php:394 tbl_structure.php:365 tbl_structure.php:775 msgid "Rows" msgstr "rreshta" @@ -355,30 +351,30 @@ msgstr "rreshta" msgid "Size" msgstr "Madhësia" -#: db_printview.php:162 db_structure.php:457 libraries/export/sql.php:559 +#: db_printview.php:162 db_structure.php:455 libraries/export/sql.php:559 #: libraries/export/sql.php:899 msgid "in use" msgstr "në përdorim" #: db_printview.php:187 libraries/db_info.inc.php:88 #: libraries/export/sql.php:514 pdf_schema.php:1241 tbl_printview.php:434 -#: tbl_structure.php:809 +#: tbl_structure.php:807 msgid "Creation" msgstr "Krijimi" #: db_printview.php:196 libraries/db_info.inc.php:93 #: libraries/export/sql.php:519 pdf_schema.php:1246 tbl_printview.php:444 -#: tbl_structure.php:817 +#: tbl_structure.php:815 msgid "Last update" msgstr "Ndryshimi i fundit" #: db_printview.php:205 libraries/db_info.inc.php:98 #: libraries/export/sql.php:524 pdf_schema.php:1251 tbl_printview.php:454 -#: tbl_structure.php:825 +#: tbl_structure.php:823 msgid "Last check" msgstr "Kontrolli i fundit" -#: db_printview.php:222 db_structure.php:480 +#: db_printview.php:222 db_structure.php:478 #, fuzzy, php-format #| msgid "%s table(s)" msgid "%s table" @@ -439,7 +435,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:297 tbl_change.php:1031 tbl_indexes.php:250 +#: server_privileges.php:298 tbl_change.php:1031 tbl_indexes.php:250 #: tbl_select.php:288 msgid "Or" msgstr "Ose" @@ -512,9 +508,9 @@ 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:2833 +#: db_structure.php:105 libraries/common.lib.php:2837 #: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50 -#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:467 +#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:465 msgid "Browse" msgstr "Shfleto" @@ -559,36 +555,36 @@ 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:2832 libraries/sql_query_form.lib.php:334 +#: libraries/common.lib.php:2836 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:2829 libraries/common.lib.php:2836 +#: libraries/common.lib.php:2833 libraries/common.lib.php:2840 #: 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:1106 #: libraries/tbl_links.inc.php:56 pmd_general.php:134 -#: server_privileges.php:593 server_replication.php:315 tbl_tracking.php:269 +#: server_privileges.php:594 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:1656 +#: db_structure.php:543 db_structure.php:544 db_tracking.php:91 +#: libraries/Index.class.php:483 libraries/common.lib.php:1657 #: 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 -#: tbl_structure.php:152 tbl_structure.php:471 +#: tbl_structure.php:152 tbl_structure.php:469 msgid "Drop" 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:1655 +#: db_structure.php:541 db_structure.php:542 libraries/common.lib.php:1656 #: libraries/mult_submits.inc.php:39 libraries/tbl_links.inc.php:105 msgid "Empty" msgstr "Zbraz" @@ -598,112 +594,112 @@ msgstr "Zbraz" msgid "Table %s has been emptied" msgstr "Tabela %s u zbraz" -#: db_structure.php:326 libraries/tbl_links.inc.php:133 +#: db_structure.php:325 libraries/tbl_links.inc.php:133 #, php-format msgid "View %s has been dropped" msgstr "Paraqitja %s u eleminua" -#: db_structure.php:326 libraries/tbl_links.inc.php:133 +#: db_structure.php:325 libraries/tbl_links.inc.php:133 #, php-format msgid "Table %s has been dropped" msgstr "Tabela %s u eleminua" -#: db_structure.php:333 +#: db_structure.php:332 msgid "Tracking is active." msgstr "Gjurmimi është aktiv." -#: db_structure.php:335 +#: db_structure.php:334 msgid "Tracking is not active." msgstr "Gjurmimi nuk është aktiv." -#: db_structure.php:420 libraries/display_tbl.lib.php:1944 +#: db_structure.php:418 libraries/display_tbl.lib.php:1944 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation%" "s." msgstr "" -#: db_structure.php:434 db_structure.php:448 libraries/header.inc.php:126 +#: db_structure.php:432 db_structure.php:446 libraries/header.inc.php:130 #: libraries/tbl_info.inc.php:66 tbl_structure.php:185 test/theme.php:74 msgid "View" msgstr "Paraqitje" -#: db_structure.php:485 libraries/db_structure.lib.php:49 -#: libraries/server_links.inc.php:70 server_replication.php:33 +#: db_structure.php:483 libraries/db_structure.lib.php:49 +#: libraries/server_links.inc.php:71 server_replication.php:33 #: server_replication.php:164 server_status.php:369 msgid "Replication" msgstr "Replikimi" -#: db_structure.php:489 +#: db_structure.php:487 #, fuzzy msgid "Sum" msgstr "Sum" -#: db_structure.php:496 libraries/StorageEngine.class.php:356 +#: db_structure.php:494 libraries/StorageEngine.class.php:356 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "" -#: db_structure.php:524 db_structure.php:541 db_structure.php:542 +#: db_structure.php:522 db_structure.php:539 db_structure.php:540 #: 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:1596 tbl_structure.php:455 -#: tbl_structure.php:464 +#: server_databases.php:351 server_privileges.php:1616 tbl_structure.php:453 +#: tbl_structure.php:462 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:569 -#: server_privileges.php:1599 tbl_structure.php:458 +#: db_structure.php:525 libraries/display_tbl.lib.php:2076 +#: server_databases.php:348 server_privileges.php:570 +#: server_privileges.php:1619 tbl_structure.php:456 msgid "Check All" msgstr "Zgjidh gjithçka" -#: db_structure.php:531 libraries/display_tbl.lib.php:2077 +#: db_structure.php:529 libraries/display_tbl.lib.php:2077 #: libraries/replication_gui.lib.php:33 server_databases.php:350 -#: server_privileges.php:572 server_privileges.php:1603 tbl_structure.php:462 +#: server_privileges.php:573 server_privileges.php:1623 tbl_structure.php:460 msgid "Uncheck All" msgstr "Asnjë zgjedhje" -#: db_structure.php:536 +#: db_structure.php:534 msgid "Check tables having overhead" msgstr "Zgjidh të mbingarkuarit" -#: db_structure.php:547 db_structure.php:548 db_structure.php:599 +#: db_structure.php:545 db_structure.php:546 db_structure.php:597 #: libraries/display_tbl.lib.php:2180 libraries/mult_submits.inc.php:28 -#: tbl_structure.php:492 tbl_structure.php:494 +#: tbl_structure.php:490 tbl_structure.php:492 msgid "Print view" msgstr "Shfaq për printim" -#: db_structure.php:549 db_structure.php:550 libraries/mult_submits.inc.php:42 +#: db_structure.php:547 db_structure.php:548 libraries/mult_submits.inc.php:42 #: tbl_operations.php:581 msgid "Check table" msgstr "Kontrollo tabelën" -#: db_structure.php:551 db_structure.php:552 libraries/mult_submits.inc.php:47 -#: tbl_operations.php:621 tbl_structure.php:709 tbl_structure.php:711 +#: db_structure.php:549 db_structure.php:550 libraries/mult_submits.inc.php:47 +#: tbl_operations.php:621 tbl_structure.php:707 tbl_structure.php:709 msgid "Optimize table" msgstr "Optimizo tabelën" -#: db_structure.php:553 db_structure.php:554 libraries/mult_submits.inc.php:52 +#: db_structure.php:551 db_structure.php:552 libraries/mult_submits.inc.php:52 #: tbl_operations.php:611 msgid "Repair table" msgstr "Riparo tabelën" -#: db_structure.php:555 db_structure.php:556 libraries/mult_submits.inc.php:57 +#: db_structure.php:553 db_structure.php:554 libraries/mult_submits.inc.php:57 #: tbl_operations.php:601 msgid "Analyze table" msgstr "Analizo tabelën" -#: db_structure.php:557 db_structure.php:558 libraries/db_links.inc.php:71 +#: db_structure.php:555 db_structure.php:556 libraries/db_links.inc.php:71 #: 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:1380 +#: libraries/server_links.inc.php:85 libraries/tbl_links.inc.php:82 +#: pmd_pdf.php:84 pmd_pdf.php:109 server_privileges.php:1397 #: setup/frames/menu.inc.php:22 tbl_row_action.php:59 msgid "Export" msgstr "Eksporto" -#: db_structure.php:606 libraries/display_pdf_schema.lib.php:44 +#: db_structure.php:604 libraries/display_pdf_schema.lib.php:44 #, fuzzy msgid "Data Dictionary" msgstr "Data Dictionary" @@ -715,10 +711,10 @@ msgstr "" #: db_tracking.php:71 libraries/export/htmlword.php:86 #: libraries/export/latex.php:148 libraries/export/odt.php:113 #: libraries/export/sql.php:342 libraries/export/texytext.php:84 -#: libraries/export/xml.php:255 libraries/header.inc.php:106 +#: libraries/export/xml.php:255 libraries/header.inc.php:110 #: libraries/header_printview.inc.php:58 server_databases.php:169 -#: server_privileges.php:1660 server_privileges.php:1721 -#: server_privileges.php:1979 server_processlist.php:56 +#: server_privileges.php:1680 server_privileges.php:1741 +#: server_privileges.php:1999 server_processlist.php:56 #: server_synchronize.php:1179 server_synchronize.php:1183 #: tbl_tracking.php:591 test/theme.php:65 msgid "Database" @@ -739,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:1542 server_privileges.php:1725 -#: server_privileges.php:2073 tbl_structure.php:187 +#: server_privileges.php:1562 server_privileges.php:1745 +#: server_privileges.php:2094 tbl_structure.php:187 msgid "Action" msgstr "Veprimi" @@ -776,8 +772,8 @@ msgstr "Vetëm struktura" msgid "Untracked tables" msgstr "" -#: db_tracking.php:172 db_tracking.php:174 tbl_structure.php:528 -#: tbl_structure.php:530 +#: db_tracking.php:172 db_tracking.php:174 tbl_structure.php:526 +#: tbl_structure.php:528 #, fuzzy msgid "Track table" msgstr "Kontrollo tabelën" @@ -933,189 +929,236 @@ 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:1236 user_password.php:70 +#: js/messages.php:44 server_privileges.php:1241 user_password.php:70 msgid "The password is empty!" msgstr "Fjalëkalimi është bosh!" -#: js/messages.php:45 server_privileges.php:1234 user_password.php:73 +#: js/messages.php:45 server_privileges.php:1239 user_password.php:73 msgid "The passwords aren't the same!" msgstr "Fjalëkalimi nuk korrispondon!" -#: js/messages.php:49 pmd_general.php:342 pmd_general.php:379 +#: js/messages.php:46 +#, fuzzy +#| msgid "Add a new User" +msgid "Add a New User" +msgstr "Shto një përdorues të ri" + +#: js/messages.php:47 js/messages.php:54 pmd_general.php:342 +#: pmd_general.php:379 msgid "Cancel" msgstr "" -#: js/messages.php:52 pmd_save_pos.php:54 +#: js/messages.php:48 +#, fuzzy +msgid "Create User" +msgstr "Versioni i MySQL" + +#: js/messages.php:49 +#, fuzzy +#| msgid "Reloading the privileges" +msgid "Reloading Privileges" +msgstr "Duke ringarkuar të drejtat" + +#: js/messages.php:50 +#, fuzzy +#| msgid "Remove selected users" +msgid "Removing Selected Users" +msgstr "Heq përdoruesit e zgjedhur" + +#: js/messages.php:57 +#, fuzzy +msgid "Loading" +msgstr "Lokal" + +#: js/messages.php:58 +#, fuzzy +#| msgid "Processes" +msgid "Processing Request" +msgstr "Proceset" + +#: js/messages.php:59 +msgid "Error in Processing Request" +msgstr "" + +#: js/messages.php:60 +msgid "Dropping Column" +msgstr "" + +#: js/messages.php:61 +msgid "Adding Primary Key" +msgstr "" + +#: js/messages.php:64 pmd_save_pos.php:54 msgid "Modifications have been saved" msgstr "Ndryshimet u ruajtën" -#: js/messages.php:53 pmd_relation_upd.php:49 +#: js/messages.php:65 pmd_relation_upd.php:49 #, fuzzy msgid "Relation deleted" msgstr "Shiko relacionet" -#: js/messages.php:54 pmd_relation_new.php:64 +#: js/messages.php:66 pmd_relation_new.php:64 msgid "FOREIGN KEY relation added" msgstr "" -#: js/messages.php:55 pmd_relation_new.php:86 +#: js/messages.php:67 pmd_relation_new.php:86 #, fuzzy msgid "Internal relation added" msgstr "Relacione të brendshme" -#: js/messages.php:56 pmd_relation_new.php:63 pmd_relation_new.php:88 +#: js/messages.php:68 pmd_relation_new.php:63 pmd_relation_new.php:88 msgid "Error: Relation not added." msgstr "" -#: js/messages.php:57 pmd_relation_new.php:31 +#: js/messages.php:69 pmd_relation_new.php:31 msgid "Error: relation already exists." msgstr "" -#: js/messages.php:58 +#: js/messages.php:70 msgid "Error saving coordinates for Designer." msgstr "" -#: js/messages.php:59 libraries/relation.lib.php:107 +#: js/messages.php:71 libraries/relation.lib.php:107 #: libraries/relation.lib.php:119 msgid "General relation features" msgstr "Karakteristikat e përgjithshme të relacionit" -#: js/messages.php:59 libraries/relation.lib.php:101 +#: js/messages.php:71 libraries/relation.lib.php:101 #: libraries/relation.lib.php:108 msgid "Disabled" msgstr "Jo aktiv" -#: js/messages.php:60 +#: js/messages.php:72 msgid "Select referenced key" msgstr "" -#: js/messages.php:61 +#: js/messages.php:73 msgid "Select Foreign Key" msgstr "" -#: js/messages.php:62 +#: js/messages.php:74 msgid "Please select the primary key or a unique key" msgstr "" -#: js/messages.php:63 pmd_general.php:77 tbl_relation.php:548 +#: js/messages.php:75 pmd_general.php:77 tbl_relation.php:548 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" msgstr "Zgjidh fushën që dëshiron të shohësh" #. l10n: Display text for calendar close link -#: js/messages.php:73 +#: js/messages.php:85 #, fuzzy #| msgid "None" msgid "Done" msgstr "Asnjë lloj" #. l10n: Display text for previous month link in calendar -#: js/messages.php:75 +#: js/messages.php:87 #, fuzzy #| msgid "Previous" msgid "Prev" msgstr "Paraardhësi" #. l10n: Display text for next month link in calendar -#: js/messages.php:77 libraries/common.lib.php:2353 -#: libraries/common.lib.php:2356 libraries/display_tbl.lib.php:338 +#: js/messages.php:89 libraries/common.lib.php:2357 +#: libraries/common.lib.php:2360 libraries/display_tbl.lib.php:338 #: server_binlog.php:205 server_binlog.php:207 tbl_printview.php:424 -#: tbl_structure.php:801 +#: tbl_structure.php:799 msgid "Next" msgstr "Në vazhdim" #. l10n: Display text for current month link in calendar -#: js/messages.php:79 +#: js/messages.php:91 #, fuzzy #| msgid "Total" msgid "Today" msgstr "Gjithsej" -#: js/messages.php:82 +#: js/messages.php:94 #, fuzzy #| msgid "Binary" msgid "January" msgstr "Binar" -#: js/messages.php:83 +#: js/messages.php:95 msgid "February" msgstr "" -#: js/messages.php:84 +#: js/messages.php:96 #, fuzzy #| msgid "Mar" msgid "March" msgstr "Mar" -#: js/messages.php:85 +#: js/messages.php:97 #, fuzzy #| msgid "Apr" msgid "April" msgstr "Pri" -#: js/messages.php:86 +#: js/messages.php:98 msgid "May" msgstr "Maj" -#: js/messages.php:87 +#: js/messages.php:99 #, fuzzy #| msgid "Jun" msgid "June" msgstr "Qer" -#: js/messages.php:88 +#: js/messages.php:100 #, fuzzy #| msgid "Jul" msgid "July" msgstr "Kor" -#: js/messages.php:89 +#: js/messages.php:101 #, fuzzy #| msgid "Aug" msgid "August" msgstr "Gsh" -#: js/messages.php:90 +#: js/messages.php:102 msgid "September" msgstr "" -#: js/messages.php:91 +#: js/messages.php:103 #, fuzzy #| msgid "Oct" msgid "October" msgstr "Tet" -#: js/messages.php:92 +#: js/messages.php:104 msgid "November" msgstr "" -#: js/messages.php:93 +#: js/messages.php:105 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:97 libraries/common.lib.php:1557 +#: js/messages.php:109 libraries/common.lib.php:1557 msgid "Jan" msgstr "Jan" #. l10n: Short month name -#: js/messages.php:99 libraries/common.lib.php:1559 +#: js/messages.php:111 libraries/common.lib.php:1559 msgid "Feb" msgstr "Shk" #. l10n: Short month name -#: js/messages.php:101 libraries/common.lib.php:1561 +#: js/messages.php:113 libraries/common.lib.php:1561 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:103 libraries/common.lib.php:1563 +#: js/messages.php:115 libraries/common.lib.php:1563 msgid "Apr" msgstr "Pri" #. l10n: Short month name -#: js/messages.php:105 libraries/common.lib.php:1565 +#: js/messages.php:117 libraries/common.lib.php:1565 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1123,176 +1166,176 @@ msgid "May" msgstr "Maj" #. l10n: Short month name -#: js/messages.php:107 libraries/common.lib.php:1567 +#: js/messages.php:119 libraries/common.lib.php:1567 msgid "Jun" msgstr "Qer" #. l10n: Short month name -#: js/messages.php:109 libraries/common.lib.php:1569 +#: js/messages.php:121 libraries/common.lib.php:1569 msgid "Jul" msgstr "Kor" #. l10n: Short month name -#: js/messages.php:111 libraries/common.lib.php:1571 +#: js/messages.php:123 libraries/common.lib.php:1571 msgid "Aug" msgstr "Gsh" #. l10n: Short month name -#: js/messages.php:113 libraries/common.lib.php:1573 +#: js/messages.php:125 libraries/common.lib.php:1573 msgid "Sep" msgstr "Sht" #. l10n: Short month name -#: js/messages.php:115 libraries/common.lib.php:1575 +#: js/messages.php:127 libraries/common.lib.php:1575 msgid "Oct" msgstr "Tet" #. l10n: Short month name -#: js/messages.php:117 libraries/common.lib.php:1577 +#: js/messages.php:129 libraries/common.lib.php:1577 msgid "Nov" msgstr "Nën" #. l10n: Short month name -#: js/messages.php:119 libraries/common.lib.php:1579 +#: js/messages.php:131 libraries/common.lib.php:1579 msgid "Dec" msgstr "Dhj" -#: js/messages.php:122 +#: js/messages.php:134 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "Djl" -#: js/messages.php:123 +#: js/messages.php:135 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "Hën" -#: js/messages.php:124 +#: js/messages.php:136 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "Mar" -#: js/messages.php:125 +#: js/messages.php:137 msgid "Wednesday" msgstr "" -#: js/messages.php:126 +#: js/messages.php:138 msgid "Thursday" msgstr "" -#: js/messages.php:127 +#: js/messages.php:139 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "Pre" -#: js/messages.php:128 +#: js/messages.php:140 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:132 libraries/common.lib.php:1582 +#: js/messages.php:144 libraries/common.lib.php:1582 msgid "Sun" msgstr "Djl" #. l10n: Short week day name -#: js/messages.php:134 libraries/common.lib.php:1584 +#: js/messages.php:146 libraries/common.lib.php:1584 msgid "Mon" msgstr "Hën" #. l10n: Short week day name -#: js/messages.php:136 libraries/common.lib.php:1586 +#: js/messages.php:148 libraries/common.lib.php:1586 msgid "Tue" msgstr "Mar" #. l10n: Short week day name -#: js/messages.php:138 libraries/common.lib.php:1588 +#: js/messages.php:150 libraries/common.lib.php:1588 msgid "Wed" msgstr "Mër" #. l10n: Short week day name -#: js/messages.php:140 libraries/common.lib.php:1590 +#: js/messages.php:152 libraries/common.lib.php:1590 msgid "Thu" msgstr "Enj" #. l10n: Short week day name -#: js/messages.php:142 libraries/common.lib.php:1592 +#: js/messages.php:154 libraries/common.lib.php:1592 msgid "Fri" msgstr "Pre" #. l10n: Short week day name -#: js/messages.php:144 libraries/common.lib.php:1594 +#: js/messages.php:156 libraries/common.lib.php:1594 msgid "Sat" msgstr "Sht" #. l10n: Minimal week day name -#: js/messages.php:148 +#: js/messages.php:160 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "Djl" #. l10n: Minimal week day name -#: js/messages.php:150 +#: js/messages.php:162 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "Hën" #. l10n: Minimal week day name -#: js/messages.php:152 +#: js/messages.php:164 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "Mar" #. l10n: Minimal week day name -#: js/messages.php:154 +#: js/messages.php:166 #, fuzzy #| msgid "Wed" msgid "We" msgstr "Mër" #. l10n: Minimal week day name -#: js/messages.php:156 +#: js/messages.php:168 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "Enj" #. l10n: Minimal week day name -#: js/messages.php:158 +#: js/messages.php:170 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "Pre" #. l10n: Minimal week day name -#: js/messages.php:160 +#: js/messages.php:172 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "Sht" #. l10n: Column header for week of the year in calendar -#: js/messages.php:162 +#: js/messages.php:174 msgid "Wk" msgstr "" -#: js/messages.php:164 +#: js/messages.php:176 msgid "Hour" msgstr "" -#: js/messages.php:165 +#: js/messages.php:177 #, fuzzy #| msgid "in use" msgid "Minute" msgstr "në përdorim" -#: js/messages.php:166 +#: js/messages.php:178 #, fuzzy #| msgid "per second" msgid "Second" @@ -1349,7 +1392,7 @@ msgstr "Tregues" #: libraries/Index.class.php:444 libraries/mult_submits.inc.php:103 #: libraries/tbl_properties.inc.php:519 tbl_structure.php:33 -#: tbl_structure.php:155 tbl_structure.php:159 tbl_structure.php:474 +#: tbl_structure.php:155 tbl_structure.php:159 tbl_structure.php:472 #: tbl_tracking.php:322 msgid "Unique" msgstr "I vetëm" @@ -1391,8 +1434,8 @@ msgid "" "removed." msgstr "" -#: libraries/List_Database.class.php:431 libraries/server_links.inc.php:41 -#: server_databases.php:88 server_privileges.php:1660 +#: libraries/List_Database.class.php:431 libraries/server_links.inc.php:42 +#: server_databases.php:88 server_privileges.php:1680 #: setup/lib/messages.inc.php:110 test/theme.php:93 msgid "Databases" msgstr "Databazat" @@ -1560,7 +1603,7 @@ msgstr "Fjalëkalimi:" msgid "Server Choice" msgstr "Zgjedhja e serverit" -#: libraries/auth/cookie.auth.lib.php:320 libraries/header.inc.php:59 +#: libraries/auth/cookie.auth.lib.php:320 libraries/header.inc.php:63 msgid "Cookies must be enabled past this point." msgstr "Nga kjo pikë e tutje, cookies duhet të jenë të aktivuara." @@ -1640,7 +1683,7 @@ msgstr "" "I pamundur përdorimi i funksioneve iconv apo libiconv apo recode_string për " "shkak se ekstensioni duhet të ngarkohet. Kontrolloni konfigurimin e php." -#: libraries/common.inc.php:583 +#: libraries/common.inc.php:587 msgid "" "phpMyAdmin was unable to read your configuration file!
This might " "happen if PHP finds a parse error in it or PHP cannot find the file.
Nëse faqja që " "do t'ju hapet është bosh (e bardhë), atëhere gjithçka është në rregull." -#: libraries/common.inc.php:594 +#: libraries/common.inc.php:598 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "" -#: libraries/common.inc.php:599 +#: libraries/common.inc.php:603 msgid "" "The $cfg['PmaAbsoluteUri'] directive MUST be set in your " "configuration file!" @@ -1669,27 +1712,27 @@ msgstr "" "Direktiva $cfg['PmaAbsoluteUri'] DUHET të përcaktohet tek file i " "konfigurimit!" -#: libraries/common.inc.php:629 +#: libraries/common.inc.php:633 #, php-format msgid "Invalid server index: %s" msgstr "" -#: libraries/common.inc.php:636 +#: libraries/common.inc.php:640 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" -#: libraries/common.inc.php:645 libraries/header.inc.php:96 +#: libraries/common.inc.php:649 libraries/header.inc.php:100 #: libraries/select_server.lib.php:41 libraries/select_server.lib.php:47 #: main.php:185 test/theme.php:57 msgid "Server" msgstr "Serveri" -#: libraries/common.inc.php:823 +#: libraries/common.inc.php:827 msgid "Invalid authentication method set in configuration:" msgstr "" -#: libraries/common.inc.php:926 +#: libraries/common.inc.php:930 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Duhet të instaloni %s %s ose superior." @@ -1820,45 +1863,45 @@ msgstr "," msgid "%B %d, %Y at %I:%M %p" msgstr "%d %B, %Y at %I:%M %p" -#: libraries/common.lib.php:1907 +#: libraries/common.lib.php:1911 #, 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:2322 libraries/common.lib.php:2325 +#: libraries/common.lib.php:2326 libraries/common.lib.php:2329 #: libraries/display_tbl.lib.php:290 server_status.php:719 msgid "Begin" msgstr "Fillim" -#: libraries/common.lib.php:2323 libraries/common.lib.php:2326 +#: libraries/common.lib.php:2327 libraries/common.lib.php:2330 #: libraries/display_tbl.lib.php:291 server_binlog.php:168 #: server_binlog.php:170 msgid "Previous" msgstr "Paraardhësi" -#: libraries/common.lib.php:2354 libraries/common.lib.php:2357 +#: libraries/common.lib.php:2358 libraries/common.lib.php:2361 #: libraries/display_tbl.lib.php:353 msgid "End" msgstr "Fund" -#: libraries/common.lib.php:2430 +#: libraries/common.lib.php:2434 #, php-format msgid "Jump to database "%s"." msgstr "Kalo tek databaza "%s"." -#: libraries/common.lib.php:2450 +#: libraries/common.lib.php:2454 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" -#: libraries/common.lib.php:2830 libraries/common.lib.php:2837 +#: libraries/common.lib.php:2834 libraries/common.lib.php:2841 #: libraries/db_links.inc.php:68 libraries/export/sql.php:25 -#: libraries/import/sql.php:18 libraries/server_links.inc.php:45 +#: libraries/import/sql.php:18 libraries/server_links.inc.php:46 #: libraries/tbl_links.inc.php:60 querywindow.php:99 test/theme.php:97 msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2839 libraries/db_links.inc.php:104 +#: libraries/common.lib.php:2843 libraries/db_links.inc.php:104 #: libraries/tbl_links.inc.php:95 libraries/tbl_links.inc.php:117 #: view_operations.php:89 msgid "Operations" @@ -1906,16 +1949,16 @@ msgstr "Query nga shembull" msgid "Designer" msgstr "" -#: libraries/db_links.inc.php:98 libraries/server_links.inc.php:88 +#: libraries/db_links.inc.php:98 libraries/server_links.inc.php:89 #: libraries/tbl_links.inc.php:91 pmd_pdf.php:84 pmd_pdf.php:110 #: setup/frames/menu.inc.php:21 #, fuzzy msgid "Import" msgstr "Eksporto" -#: libraries/db_links.inc.php:111 libraries/server_links.inc.php:66 -#: server_privileges.php:111 server_privileges.php:1722 -#: server_privileges.php:2071 test/theme.php:117 +#: libraries/db_links.inc.php:111 libraries/server_links.inc.php:67 +#: server_privileges.php:112 server_privileges.php:1742 +#: server_privileges.php:2092 test/theme.php:117 msgid "Privileges" msgstr "Të drejtat" @@ -1934,7 +1977,7 @@ msgid "" msgstr "" #: libraries/db_structure.lib.php:69 server_databases.php:142 -#: tbl_printview.php:336 tbl_structure.php:682 +#: tbl_printview.php:336 tbl_structure.php:680 msgid "Overhead" msgstr "Mbi limit" @@ -1951,7 +1994,7 @@ msgstr "Serveri nuk përgjigjet" msgid "(or the local MySQL server's socket is not correctly configured)" msgstr "" -#: libraries/dbi/mysql.dbi.lib.php:362 tbl_structure.php:608 +#: libraries/dbi/mysql.dbi.lib.php:362 tbl_structure.php:606 msgid "Details..." msgstr "" @@ -1961,22 +2004,22 @@ msgid "Change password" msgstr "Ndrysho fjalëkalimin" #: libraries/display_change_password.lib.php:35 -#: libraries/replication_gui.lib.php:345 server_privileges.php:807 +#: libraries/replication_gui.lib.php:345 server_privileges.php:808 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:796 -#: server_privileges.php:800 server_privileges.php:811 -#: server_privileges.php:1538 server_synchronize.php:1175 +#: libraries/replication_gui.lib.php:349 server_privileges.php:797 +#: server_privileges.php:801 server_privileges.php:812 +#: server_privileges.php:1558 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:815 server_privileges.php:818 +#: server_privileges.php:816 server_privileges.php:819 msgid "Re-type" msgstr "Rifut" @@ -1989,12 +2032,12 @@ msgid "MySQL 4.0 compatible" msgstr "" #: libraries/display_change_password.lib.php:72 -#: libraries/replication_gui.lib.php:360 server_privileges.php:822 +#: libraries/replication_gui.lib.php:360 server_privileges.php:823 msgid "Generate Password" msgstr "" #: libraries/display_change_password.lib.php:75 -#: libraries/replication_gui.lib.php:363 server_privileges.php:825 +#: libraries/replication_gui.lib.php:363 server_privileges.php:826 #, fuzzy msgid "Generate" msgstr "Gjeneruar nga" @@ -2008,8 +2051,8 @@ msgstr "Krijo një databazë të re" msgid "Create" msgstr "Krijo" -#: libraries/display_create_database.lib.php:40 server_privileges.php:113 -#: server_privileges.php:1427 server_replication.php:35 +#: libraries/display_create_database.lib.php:40 server_privileges.php:114 +#: server_privileges.php:1447 server_replication.php:35 msgid "No Privileges" msgstr "Asnjë e drejtë" @@ -2098,7 +2141,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:1875 server_processlist.php:75 +#: server_privileges.php:1895 server_processlist.php:75 msgid "None" msgstr "Asnjë lloj" @@ -2282,7 +2325,7 @@ msgstr "Rendit sipas kyçit" #: libraries/import/docsql.php:34 libraries/import/ldi.php:47 #: libraries/import/ods.php:30 libraries/import/sql.php:20 #: libraries/import/xls.php:26 libraries/import/xlsx.php:26 -#: libraries/import/xml.php:25 tbl_select.php:267 tbl_structure.php:753 +#: libraries/import/xml.php:25 tbl_select.php:267 tbl_structure.php:751 #, fuzzy msgid "Options" msgstr "Operacione" @@ -2361,7 +2404,7 @@ msgstr "Query ka zgjatur %01.4f sec" #: libraries/display_tbl.lib.php:2089 libraries/mult_submits.inc.php:113 #: querywindow.php:125 querywindow.php:129 querywindow.php:132 -#: tbl_structure.php:25 tbl_structure.php:150 tbl_structure.php:470 +#: tbl_structure.php:25 tbl_structure.php:150 tbl_structure.php:468 msgid "Change" msgstr "Ndrysho" @@ -2429,7 +2472,7 @@ msgstr "" #: libraries/engines/innodb.lib.php:194 server_databases.php:137 #: server_databases.php:305 server_status.php:525 server_status.php:586 -#: server_status.php:607 tbl_printview.php:351 tbl_structure.php:696 +#: server_status.php:607 tbl_printview.php:351 tbl_structure.php:694 msgid "Total" msgstr "Gjithsej" @@ -2675,7 +2718,7 @@ msgid "" msgstr "" #: libraries/export/codegen.php:37 setup/lib/messages.inc.php:88 -#: tbl_printview.php:376 tbl_structure.php:737 +#: tbl_printview.php:376 tbl_structure.php:735 msgid "Format" msgstr "Formati" @@ -2747,8 +2790,8 @@ 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:576 server_replication.php:316 tbl_printview.php:317 -#: tbl_structure.php:665 +#: server_privileges.php:577 server_replication.php:316 tbl_printview.php:317 +#: tbl_structure.php:663 msgid "Data" msgstr "Të dhëna" @@ -2797,9 +2840,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:731 -#: server_privileges.php:734 server_privileges.php:790 -#: server_privileges.php:1537 server_privileges.php:2069 +#: libraries/replication_gui.lib.php:329 server_privileges.php:732 +#: server_privileges.php:735 server_privileges.php:791 +#: server_privileges.php:1557 server_privileges.php:2090 #: server_processlist.php:55 server_synchronize.php:1159 msgid "Host" msgstr "Host" @@ -2999,7 +3042,7 @@ msgstr "" msgid "Open new phpMyAdmin window" msgstr "" -#: libraries/header.inc.php:115 +#: libraries/header.inc.php:119 #, fuzzy msgid "New table" msgstr "Asnjë tabelë" @@ -3159,20 +3202,20 @@ 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 +#: tbl_structure.php:471 msgid "Primary" msgstr "Primar" #: libraries/mult_submits.inc.php:98 libraries/tbl_properties.inc.php:116 #: libraries/tbl_properties.inc.php:525 tbl_printview.php:326 #: tbl_structure.php:31 tbl_structure.php:154 tbl_structure.php:158 -#: tbl_structure.php:475 tbl_structure.php:673 +#: tbl_structure.php:473 tbl_structure.php:671 msgid "Index" msgstr "Treguesi" #: libraries/mult_submits.inc.php:108 libraries/tbl_properties.inc.php:531 #: tbl_structure.php:35 tbl_structure.php:156 tbl_structure.php:160 -#: tbl_structure.php:478 +#: tbl_structure.php:476 msgid "Fulltext" msgstr "Teksti komplet" @@ -3475,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:711 -#: server_privileges.php:714 server_privileges.php:721 +#: libraries/replication_gui.lib.php:259 server_privileges.php:712 +#: server_privileges.php:715 server_privileges.php:722 #: server_synchronize.php:1171 msgid "User name" msgstr "Emri i përdoruesit" @@ -3501,7 +3544,7 @@ msgstr "E ndryshueshme" #: 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 +#: tbl_structure.php:727 msgid "Value" msgstr "Vlerë" @@ -3520,34 +3563,34 @@ msgstr "" msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:254 server_privileges.php:716 +#: libraries/replication_gui.lib.php:254 server_privileges.php:717 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:717 -#: server_privileges.php:784 server_privileges.php:808 -#: server_privileges.php:1928 server_privileges.php:1958 +#: libraries/replication_gui.lib.php:346 server_privileges.php:718 +#: server_privileges.php:785 server_privileges.php:809 +#: server_privileges.php:1948 server_privileges.php:1978 msgid "Use text field" msgstr "Përdor fushë teksti" -#: libraries/replication_gui.lib.php:302 server_privileges.php:764 +#: libraries/replication_gui.lib.php:302 server_privileges.php:765 msgid "Any host" msgstr "Çfarëdo host" -#: libraries/replication_gui.lib.php:306 server_privileges.php:768 +#: libraries/replication_gui.lib.php:306 server_privileges.php:769 msgid "Local" msgstr "Lokal" -#: libraries/replication_gui.lib.php:312 server_privileges.php:773 +#: libraries/replication_gui.lib.php:312 server_privileges.php:774 msgid "This Host" msgstr "Këtë Host" -#: libraries/replication_gui.lib.php:318 server_privileges.php:779 +#: libraries/replication_gui.lib.php:318 server_privileges.php:780 msgid "Use Host Table" msgstr "Përdor Tabelën e Host-it" -#: libraries/replication_gui.lib.php:331 server_privileges.php:792 +#: libraries/replication_gui.lib.php:331 server_privileges.php:793 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -3582,30 +3625,30 @@ msgstr "" msgid "Servers" msgstr "Serveri" -#: libraries/server_links.inc.php:53 server_engines.php:112 +#: libraries/server_links.inc.php:54 server_engines.php:112 #: server_engines.php:116 server_status.php:415 test/theme.php:105 msgid "Variables" msgstr "Të ndryshueshmet" -#: libraries/server_links.inc.php:57 test/theme.php:109 +#: libraries/server_links.inc.php:58 test/theme.php:109 msgid "Charsets" msgstr "Familje gërmash" -#: libraries/server_links.inc.php:61 test/theme.php:113 +#: libraries/server_links.inc.php:62 test/theme.php:113 msgid "Engines" msgstr "" -#: libraries/server_links.inc.php:76 server_binlog.php:110 +#: libraries/server_links.inc.php:77 server_binlog.php:110 #: server_status.php:364 test/theme.php:121 #, fuzzy msgid "Binary log" msgstr "Binar" -#: libraries/server_links.inc.php:80 +#: libraries/server_links.inc.php:81 msgid "Processes" msgstr "Proceset" -#: libraries/server_links.inc.php:92 server_synchronize.php:1092 +#: libraries/server_links.inc.php:93 server_synchronize.php:1092 #: server_synchronize.php:1100 msgid "Synchronize" msgstr "" @@ -3858,12 +3901,12 @@ msgstr "" msgid "Save" msgstr "Ruaj" -#: libraries/tbl_properties.inc.php:780 tbl_structure.php:542 +#: libraries/tbl_properties.inc.php:780 tbl_structure.php:540 #, fuzzy, php-format msgid "Add %s column(s)" msgstr "Shto një fushë të re" -#: libraries/tbl_properties.inc.php:784 tbl_structure.php:536 +#: libraries/tbl_properties.inc.php:784 tbl_structure.php:534 #, fuzzy #| msgid "You have to choose at least one column to display" msgid "You have to add at least one column." @@ -4059,8 +4102,8 @@ msgstr "Rinis" msgid "Protocol version" msgstr "" -#: main.php:189 server_privileges.php:1389 server_privileges.php:1536 -#: server_privileges.php:1650 server_privileges.php:2068 +#: main.php:189 server_privileges.php:1406 server_privileges.php:1556 +#: server_privileges.php:1670 server_privileges.php:2089 #: server_processlist.php:54 msgid "User" msgstr "Përdorues" @@ -4498,119 +4541,119 @@ msgstr "" msgid "View dump (schema) of databases" msgstr "Shfaq dump (skema) e databazave" -#: server_privileges.php:24 server_privileges.php:266 +#: server_privileges.php:25 server_privileges.php:267 msgid "Includes all privileges except GRANT." msgstr "Përfshin të gjitha të drejtat me përjashtim të GRANT." -#: server_privileges.php:25 server_privileges.php:192 -#: server_privileges.php:515 +#: server_privileges.php:26 server_privileges.php:193 +#: server_privileges.php:516 msgid "Allows altering the structure of existing tables." msgstr "Lejon ndryshimin e strukturës së tabelave ekzistuese." -#: server_privileges.php:26 server_privileges.php:208 -#: server_privileges.php:521 +#: server_privileges.php:27 server_privileges.php:209 +#: server_privileges.php:522 #, fuzzy msgid "Allows altering and dropping stored routines." msgstr "Lejon krijimin dhe eleminimin e treguesve." -#: server_privileges.php:27 server_privileges.php:184 -#: server_privileges.php:514 +#: server_privileges.php:28 server_privileges.php:185 +#: server_privileges.php:515 msgid "Allows creating new databases and tables." msgstr "Lejon krijimin e tabelave të reja dhe databazave të reja." -#: server_privileges.php:28 server_privileges.php:207 -#: server_privileges.php:520 +#: server_privileges.php:29 server_privileges.php:208 +#: server_privileges.php:521 #, fuzzy msgid "Allows creating stored routines." msgstr "Lejon krijimin e tabelave të reja." -#: server_privileges.php:29 server_privileges.php:514 +#: server_privileges.php:30 server_privileges.php:515 msgid "Allows creating new tables." msgstr "Lejon krijimin e tabelave të reja." -#: server_privileges.php:30 server_privileges.php:195 -#: server_privileges.php:518 +#: server_privileges.php:31 server_privileges.php:196 +#: server_privileges.php:519 msgid "Allows creating temporary tables." msgstr "Lejon krijimin e tabelave të përkohëshme." -#: server_privileges.php:31 server_privileges.php:209 -#: server_privileges.php:554 +#: server_privileges.php:32 server_privileges.php:210 +#: server_privileges.php:555 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 +#: server_privileges.php:33 server_privileges.php:200 +#: server_privileges.php:204 server_privileges.php:527 +#: server_privileges.php:531 #, fuzzy msgid "Allows creating new views." msgstr "Lejon krijimin e tabelave të reja." -#: server_privileges.php:33 server_privileges.php:183 -#: server_privileges.php:506 +#: server_privileges.php:34 server_privileges.php:184 +#: server_privileges.php:507 msgid "Allows deleting data." msgstr "Lejon fshirjen e të dhënave." -#: server_privileges.php:34 server_privileges.php:185 -#: server_privileges.php:517 +#: server_privileges.php:35 server_privileges.php:186 +#: server_privileges.php:518 msgid "Allows dropping databases and tables." msgstr "Lejon eleminimin e databazave dhe tabelave." -#: server_privileges.php:35 server_privileges.php:517 +#: server_privileges.php:36 server_privileges.php:518 msgid "Allows dropping tables." msgstr "Lejon eleminimin e tabelave." -#: server_privileges.php:36 server_privileges.php:200 -#: server_privileges.php:534 +#: server_privileges.php:37 server_privileges.php:201 +#: server_privileges.php:535 msgid "Allows to set up events for the event scheduler" msgstr "" -#: server_privileges.php:37 server_privileges.php:210 -#: server_privileges.php:522 +#: server_privileges.php:38 server_privileges.php:211 +#: server_privileges.php:523 msgid "Allows executing stored routines." msgstr "" -#: server_privileges.php:38 server_privileges.php:189 -#: server_privileges.php:509 +#: server_privileges.php:39 server_privileges.php:190 +#: server_privileges.php:510 msgid "Allows importing data from and exporting data into files." msgstr "" "Lejon importimin e të dhënave nga dhe eksportimin e të dhënave në files." -#: server_privileges.php:39 server_privileges.php:540 +#: server_privileges.php:40 server_privileges.php:541 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "Lejon të shtosh përdorues dhe të drejta pa ringarkuar tabelat e privilegjeve." -#: server_privileges.php:40 server_privileges.php:191 -#: server_privileges.php:516 +#: server_privileges.php:41 server_privileges.php:192 +#: server_privileges.php:517 msgid "Allows creating and dropping indexes." msgstr "Lejon krijimin dhe eleminimin e treguesve." -#: server_privileges.php:41 server_privileges.php:181 -#: server_privileges.php:442 server_privileges.php:504 +#: server_privileges.php:42 server_privileges.php:182 +#: server_privileges.php:443 server_privileges.php:505 msgid "Allows inserting and replacing data." msgstr "Lejon futjen dhe mbishkrimin e të dhënave." -#: server_privileges.php:42 server_privileges.php:196 -#: server_privileges.php:549 +#: server_privileges.php:43 server_privileges.php:197 +#: server_privileges.php:550 msgid "Allows locking tables for the current thread." msgstr "Lejon bllokimin e tabelave për thread e momentit." -#: server_privileges.php:43 server_privileges.php:646 -#: server_privileges.php:648 +#: server_privileges.php:44 server_privileges.php:647 +#: server_privileges.php:649 msgid "Limits the number of new connections the user may open per hour." msgstr "" "Kufizon numrin e lidhjeve të reja që një përdorues mund të hapë në një orë." -#: server_privileges.php:44 server_privileges.php:634 -#: server_privileges.php:636 +#: server_privileges.php:45 server_privileges.php:635 +#: server_privileges.php:637 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" "Kufizon numrin e kërkesave që një përdorues mund ti dërgojë server-it në një " "orë." -#: server_privileges.php:45 server_privileges.php:640 -#: server_privileges.php:642 +#: server_privileges.php:46 server_privileges.php:641 +#: server_privileges.php:643 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -4618,63 +4661,63 @@ msgstr "" "Kufizon numrin e komandave që mund të ndryshojnë një tabelë apo databazë që " "një përdorues mund të zbatojë në një orë." -#: server_privileges.php:46 server_privileges.php:652 -#: server_privileges.php:654 +#: server_privileges.php:47 server_privileges.php:653 +#: server_privileges.php:655 #, fuzzy msgid "Limits the number of simultaneous connections the user may have." msgstr "" "Kufizon numrin e lidhjeve të reja që një përdorues mund të hapë në një orë." -#: server_privileges.php:47 server_privileges.php:188 -#: server_privileges.php:544 +#: server_privileges.php:48 server_privileges.php:189 +#: server_privileges.php:545 msgid "Allows viewing processes of all users" msgstr "" -#: server_privileges.php:48 server_privileges.php:190 -#: server_privileges.php:448 server_privileges.php:550 +#: server_privileges.php:49 server_privileges.php:191 +#: server_privileges.php:449 server_privileges.php:551 msgid "Has no effect in this MySQL version." msgstr "Nuk ka asnjë efekt tek ky version i MySQL." -#: server_privileges.php:49 server_privileges.php:186 -#: server_privileges.php:545 +#: server_privileges.php:50 server_privileges.php:187 +#: server_privileges.php:546 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" "Lejon ringarkimin e parametrave të server-it dhe risetimin e cache të " "servërve." -#: server_privileges.php:50 server_privileges.php:198 -#: server_privileges.php:552 +#: server_privileges.php:51 server_privileges.php:199 +#: server_privileges.php:553 msgid "Allows the user to ask where the slaves / masters are." msgstr "" "I jep të drejtën një përdoruesi të pyesë se ku gjenden slaves / masters." -#: server_privileges.php:51 server_privileges.php:197 -#: server_privileges.php:553 +#: server_privileges.php:52 server_privileges.php:198 +#: server_privileges.php:554 msgid "Needed for the replication slaves." msgstr "Nevoitet për replikimin e slaves." -#: server_privileges.php:52 server_privileges.php:180 -#: server_privileges.php:439 server_privileges.php:503 +#: server_privileges.php:53 server_privileges.php:181 +#: server_privileges.php:440 server_privileges.php:504 msgid "Allows reading data." msgstr "Lejon leximin e të dhënave." -#: server_privileges.php:53 server_privileges.php:193 -#: server_privileges.php:547 +#: server_privileges.php:54 server_privileges.php:194 +#: server_privileges.php:548 msgid "Gives access to the complete list of databases." msgstr "Mundëson hyrjen tek lista komplete e databazave." -#: server_privileges.php:54 server_privileges.php:204 -#: server_privileges.php:206 server_privileges.php:519 +#: server_privileges.php:55 server_privileges.php:205 +#: server_privileges.php:207 server_privileges.php:520 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "" -#: server_privileges.php:55 server_privileges.php:187 -#: server_privileges.php:546 +#: server_privileges.php:56 server_privileges.php:188 +#: server_privileges.php:547 msgid "Allows shutting down the server." msgstr "Lejon përfundimin e serverit." -#: server_privileges.php:56 server_privileges.php:194 -#: server_privileges.php:543 +#: server_privileges.php:57 server_privileges.php:195 +#: server_privileges.php:544 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -4684,158 +4727,158 @@ msgstr "" "nevojshëm për shumë operacione administrimi si përcaktimi i të " "ndryshueshmeve globale apo fshirja e threads të përdoruesve të tjerë." -#: server_privileges.php:57 server_privileges.php:201 -#: server_privileges.php:535 +#: server_privileges.php:58 server_privileges.php:202 +#: server_privileges.php:536 #, fuzzy msgid "Allows creating and dropping triggers" msgstr "Lejon krijimin dhe eleminimin e treguesve." -#: server_privileges.php:58 server_privileges.php:182 -#: server_privileges.php:445 server_privileges.php:505 +#: server_privileges.php:59 server_privileges.php:183 +#: server_privileges.php:446 server_privileges.php:506 msgid "Allows changing data." msgstr "Lejon ndryshimin e të dhënave." -#: server_privileges.php:59 server_privileges.php:260 +#: server_privileges.php:60 server_privileges.php:261 msgid "No privileges." msgstr "Asnjë të drejtë." -#: server_privileges.php:302 server_privileges.php:303 +#: server_privileges.php:303 server_privileges.php:304 #, fuzzy #| msgid "None" msgctxt "None privileges" msgid "None" msgstr "Asnjë lloj" -#: server_privileges.php:431 server_privileges.php:566 -#: server_privileges.php:1718 server_privileges.php:1724 +#: server_privileges.php:432 server_privileges.php:567 +#: server_privileges.php:1738 server_privileges.php:1744 msgid "Table-specific privileges" msgstr "Të drejta relative me tabelat" -#: server_privileges.php:432 server_privileges.php:574 -#: server_privileges.php:1540 +#: server_privileges.php:433 server_privileges.php:575 +#: server_privileges.php:1560 msgid " Note: MySQL privilege names are expressed in English " msgstr "Shënim: emrat e të drejtave të MySQL janë në Anglisht" -#: server_privileges.php:563 server_privileges.php:1539 +#: server_privileges.php:564 server_privileges.php:1559 msgid "Global privileges" msgstr "Të drejtat e përgjithshme" -#: server_privileges.php:565 server_privileges.php:1718 +#: server_privileges.php:566 server_privileges.php:1738 msgid "Database-specific privileges" msgstr "Të drejta specifike të databazës" -#: server_privileges.php:610 +#: server_privileges.php:611 msgid "Administration" msgstr "Administrimi" -#: server_privileges.php:630 +#: server_privileges.php:631 msgid "Resource limits" msgstr "Limitet e rezervave" -#: server_privileges.php:631 +#: server_privileges.php:632 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "" "Shënim: Vendosja e këtyre opcioneve në 0 (zero) do të thotë asnjë limit." -#: server_privileges.php:708 +#: server_privileges.php:709 msgid "Login Information" msgstr "Informacione mbi Identifikimin" -#: server_privileges.php:802 +#: server_privileges.php:803 msgid "Do not change the password" msgstr "Mos ndrysho fjalëkalim" -#: server_privileges.php:843 server_privileges.php:2205 +#: server_privileges.php:844 server_privileges.php:2226 #, fuzzy #| msgid "No user(s) found." msgid "No user found." msgstr "Nuk u gjet asnjë përdorues." -#: server_privileges.php:887 +#: server_privileges.php:888 #, php-format msgid "The user %s already exists!" msgstr "Përdoruesi %s ekziston!" -#: server_privileges.php:970 +#: server_privileges.php:971 msgid "You have added a new user." msgstr "Ke shtuar një përdorues të ri." -#: server_privileges.php:1191 +#: server_privileges.php:1196 #, php-format msgid "You have updated the privileges for %s." msgstr "Ke rifreskuar lejet për %s." -#: server_privileges.php:1215 +#: server_privileges.php:1220 #, php-format msgid "You have revoked the privileges for %s" msgstr "Ke anulluar të drejtat për %s" -#: server_privileges.php:1251 +#: server_privileges.php:1256 #, 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:1271 +#: server_privileges.php:1276 #, php-format msgid "Deleting %s" msgstr "Në fshirje e sipër të %s" -#: server_privileges.php:1282 +#: server_privileges.php:1287 msgid "No users selected for deleting!" msgstr "" -#: server_privileges.php:1285 +#: server_privileges.php:1290 msgid "Reloading the privileges" msgstr "Duke ringarkuar të drejtat" -#: server_privileges.php:1300 +#: server_privileges.php:1305 msgid "The selected users have been deleted successfully." msgstr "Përdoruesit e zgjedhur u hoqën me sukses." -#: server_privileges.php:1335 +#: server_privileges.php:1344 msgid "The privileges were reloaded successfully." msgstr "Të drejtat u përditësuan me sukses." -#: server_privileges.php:1363 server_privileges.php:1649 +#: server_privileges.php:1380 server_privileges.php:1669 msgid "Edit Privileges" msgstr "Ndrysho të drejtat" -#: server_privileges.php:1372 +#: server_privileges.php:1389 msgid "Revoke" msgstr "Hiq" -#: server_privileges.php:1404 +#: server_privileges.php:1424 msgid "User overview" msgstr "Paraqitja e përgjithshme e përdoruesve" -#: server_privileges.php:1541 server_privileges.php:1723 -#: server_privileges.php:2072 +#: server_privileges.php:1561 server_privileges.php:1743 +#: server_privileges.php:2093 msgid "Grant" msgstr "Grant" -#: server_privileges.php:1560 server_privileges.php:2162 +#: server_privileges.php:1580 server_privileges.php:2183 msgid "Any" msgstr "Çfarëdo" -#: server_privileges.php:1609 server_privileges.php:1633 -#: server_privileges.php:2027 server_privileges.php:2216 +#: server_privileges.php:1629 server_privileges.php:1653 +#: server_privileges.php:2048 server_privileges.php:2237 msgid "Add a new User" msgstr "Shto një përdorues të ri" -#: server_privileges.php:1614 +#: server_privileges.php:1634 msgid "Remove selected users" msgstr "Heq përdoruesit e zgjedhur" -#: server_privileges.php:1617 +#: server_privileges.php:1637 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:1618 server_privileges.php:1619 -#: server_privileges.php:1620 +#: server_privileges.php:1638 server_privileges.php:1639 +#: server_privileges.php:1640 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:1636 +#: server_privileges.php:1656 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -4848,92 +4891,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:1684 +#: server_privileges.php:1704 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:1724 +#: server_privileges.php:1744 msgid "Column-specific privileges" msgstr "Të drejtat relative të kollonave" -#: server_privileges.php:1925 +#: server_privileges.php:1945 msgid "Add privileges on the following database" msgstr "Shto të drejta tek databaza në vazhdim" -#: server_privileges.php:1943 +#: server_privileges.php:1963 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" -#: server_privileges.php:1946 +#: server_privileges.php:1966 msgid "Add privileges on the following table" msgstr "Shto të drejta tek tabela në vazhdim" -#: server_privileges.php:2003 +#: server_privileges.php:2023 msgid "Change Login Information / Copy User" msgstr "Ndrysho Informacionet e Login / Kopjo përdoruesin" -#: server_privileges.php:2006 +#: server_privileges.php:2026 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:2008 +#: server_privileges.php:2028 msgid "... keep the old one." msgstr "... mbaj të vjetrin." -#: server_privileges.php:2009 +#: server_privileges.php:2029 msgid " ... delete the old one from the user tables." msgstr " ... elemino të vjetrin nga tabela e përdoruesve." -#: server_privileges.php:2010 +#: server_privileges.php:2030 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:2011 +#: server_privileges.php:2031 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:2033 +#: server_privileges.php:2054 msgid "Database for user" msgstr "" -#: server_privileges.php:2037 +#: server_privileges.php:2058 #, fuzzy #| msgid "None" msgctxt "Create none database for user" msgid "None" msgstr "Asnjë lloj" -#: server_privileges.php:2038 +#: server_privileges.php:2059 msgid "Create database with same name and grant all privileges" msgstr "" -#: server_privileges.php:2039 +#: server_privileges.php:2060 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "" -#: server_privileges.php:2042 +#: server_privileges.php:2063 #, fuzzy, php-format msgid "Grant all privileges on database "%s"" msgstr "Kontrollo të drejtat për databazën "%s"." -#: server_privileges.php:2065 +#: server_privileges.php:2086 #, php-format msgid "Users having access to "%s"" msgstr "Përdoruesit që kanë hyrje tek "%s"" -#: server_privileges.php:2173 +#: server_privileges.php:2194 msgid "global" msgstr "globale" -#: server_privileges.php:2175 +#: server_privileges.php:2196 msgid "database-specific" msgstr "specifik i databazës" -#: server_privileges.php:2177 +#: server_privileges.php:2198 msgid "wildcard" msgstr "wildcard" @@ -7626,6 +7669,10 @@ msgstr "" msgid "Show insert query" msgstr "" +#: tbl_change.php:1143 +msgid "and then" +msgstr "" + #: tbl_change.php:1147 msgid "Go back to previous page" msgstr "Mbrapa" @@ -7706,7 +7753,7 @@ msgstr "" msgid "Add to index  %s column(s)" msgstr "Shto tek treguesi i  %s kolonës(ave)" -#: tbl_indexes.php:256 tbl_structure.php:589 tbl_structure.php:600 +#: tbl_indexes.php:256 tbl_structure.php:587 tbl_structure.php:598 msgid "Column count has to be larger than zero." msgstr "" @@ -7823,39 +7870,39 @@ msgstr "Kontrollo integritetin e informacioneve:" msgid "Show tables" msgstr "Shfaq tabelat" -#: tbl_printview.php:310 tbl_structure.php:656 +#: tbl_printview.php:310 tbl_structure.php:654 msgid "Space usage" msgstr "Hapësira e përdorur" -#: tbl_printview.php:314 tbl_structure.php:660 +#: tbl_printview.php:314 tbl_structure.php:658 msgid "Usage" msgstr "Përdorimi" -#: tbl_printview.php:341 tbl_structure.php:687 +#: tbl_printview.php:341 tbl_structure.php:685 msgid "Effective" msgstr "Efektiv" -#: tbl_printview.php:366 tbl_structure.php:725 +#: tbl_printview.php:366 tbl_structure.php:723 msgid "Row Statistics" msgstr "Statistikat e rreshtave" -#: tbl_printview.php:369 tbl_structure.php:728 +#: tbl_printview.php:369 tbl_structure.php:726 msgid "Statements" msgstr "Instruksione" -#: tbl_printview.php:380 tbl_structure.php:740 +#: tbl_printview.php:380 tbl_structure.php:738 msgid "static" msgstr "" -#: tbl_printview.php:382 tbl_structure.php:742 +#: tbl_printview.php:382 tbl_structure.php:740 msgid "dynamic" msgstr "dinamik" -#: tbl_printview.php:404 tbl_structure.php:785 +#: tbl_printview.php:404 tbl_structure.php:783 msgid "Row length" msgstr "Gjatësia e rreshtit" -#: tbl_printview.php:414 tbl_structure.php:793 +#: tbl_printview.php:414 tbl_structure.php:791 msgid " Row size " msgstr "Madhësia e rreshtit" @@ -7928,49 +7975,49 @@ msgstr "Asnjë lloj" msgid "Column %s has been dropped" msgstr "Tabela %s u eleminua" -#: tbl_structure.php:385 +#: tbl_structure.php:384 #, php-format msgid "A primary key has been added on %s" msgstr "Një kyç primar u shtua tek %s" -#: tbl_structure.php:400 tbl_structure.php:414 tbl_structure.php:428 +#: tbl_structure.php:398 tbl_structure.php:412 tbl_structure.php:426 #, php-format msgid "An index has been added on %s" msgstr "Një tregues u shtua tek %s" -#: tbl_structure.php:506 tbl_structure.php:508 +#: tbl_structure.php:504 tbl_structure.php:506 msgid "Relation view" msgstr "Shiko relacionet" -#: tbl_structure.php:515 tbl_structure.php:517 +#: tbl_structure.php:513 tbl_structure.php:515 msgid "Propose table structure" msgstr "Propozo strukturën e tabelës" -#: tbl_structure.php:540 +#: tbl_structure.php:538 #, fuzzy msgid "Add column" msgstr "Shto një fushë të re" -#: tbl_structure.php:554 +#: tbl_structure.php:552 msgid "At End of Table" msgstr "Në fund të tabelës" -#: tbl_structure.php:555 +#: tbl_structure.php:553 msgid "At Beginning of Table" msgstr "Në fillim të tabelës" -#: tbl_structure.php:556 +#: tbl_structure.php:554 #, php-format msgid "After %s" msgstr "Mbas %s" -#: tbl_structure.php:594 +#: tbl_structure.php:592 #, fuzzy, php-format #| msgid "Create an index on %s columns" msgid "Create an index on  %s columns" msgstr "Krijo një tregues tek  %s columns" -#: tbl_structure.php:756 +#: tbl_structure.php:754 msgid "partitioned" msgstr "" diff --git a/po/sr.po b/po/sr.po index 43e9276e0..fc95f46de 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-13 09:03-0400\n" +"POT-Creation-Date: 2010-06-22 00:55+0530\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:1514 +#: libraries/display_tbl.lib.php:417 server_privileges.php:1534 msgid "Show all" msgstr "Прикажи све" -#: browse_foreigners.php:82 libraries/common.lib.php:2313 +#: browse_foreigners.php:82 libraries/common.lib.php:2317 #: 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,18 +39,18 @@ 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:2831 -#: libraries/common.lib.php:2838 libraries/db_links.inc.php:75 +#: db_structure.php:106 libraries/common.lib.php:2835 +#: libraries/common.lib.php:2842 libraries/db_links.inc.php:75 #: libraries/tbl_links.inc.php:63 msgid "Search" msgstr "Претраживање" -#: browse_foreigners.php:153 db_operations.php:385 db_operations.php:429 -#: db_operations.php:499 db_operations.php:609 db_search.php:362 -#: db_structure.php:567 js/messages.php:48 libraries/Config.class.php:1046 +#: browse_foreigners.php:153 db_operations.php:394 db_operations.php:438 +#: db_operations.php:508 db_operations.php:618 db_search.php:362 +#: db_structure.php:565 js/messages.php:53 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:1335 libraries/common.lib.php:2288 +#: libraries/common.lib.php:1335 libraries/common.lib.php:2292 #: 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,15 +61,15 @@ 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:664 server_privileges.php:1624 -#: server_privileges.php:1971 server_privileges.php:2018 -#: server_privileges.php:2057 server_replication.php:235 +#: server_privileges.php:665 server_privileges.php:1644 +#: server_privileges.php:1991 server_privileges.php:2038 +#: server_privileges.php:2078 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 #: tbl_operations.php:302 tbl_operations.php:499 tbl_operations.php:561 -#: tbl_operations.php:681 tbl_select.php:327 tbl_structure.php:562 -#: tbl_structure.php:597 tbl_tracking.php:395 tbl_tracking.php:512 +#: tbl_operations.php:681 tbl_select.php:327 tbl_structure.php:560 +#: tbl_structure.php:595 tbl_tracking.php:395 tbl_tracking.php:512 #: view_create.php:182 view_operations.php:101 msgid "Go" msgstr "Крени" @@ -95,7 +95,7 @@ msgstr "Користи ову вредност" msgid "Database %1$s has been created." msgstr "База %s је одбачена." -#: db_datadict.php:49 db_operations.php:378 +#: db_datadict.php:49 db_operations.php:387 msgid "Database comment: " msgstr "Коментар базе:" @@ -122,10 +122,10 @@ 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:2070 +#: pdf_schema.php:1263 pdf_schema.php:1284 server_privileges.php:2091 #: 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 +#: tbl_structure.php:657 tbl_tracking.php:274 tbl_tracking.php:321 msgid "Type" msgstr "Тип" @@ -138,7 +138,7 @@ msgstr "Тип" msgid "Null" msgstr "Null" -#: db_datadict.php:178 db_structure.php:501 libraries/export/htmlword.php:247 +#: db_datadict.php:178 db_structure.php:499 libraries/export/htmlword.php:247 #: libraries/export/latex.php:360 libraries/export/odt.php:303 #: libraries/export/texytext.php:236 libraries/tbl_properties.inc.php:106 #: pdf_schema.php:1266 pdf_schema.php:1287 tbl_printview.php:146 @@ -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: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 +#: pdf_schema.php:1344 server_privileges.php:1588 server_privileges.php:1599 +#: server_privileges.php:1909 server_privileges.php:1914 +#: server_privileges.php:2208 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:1565 -#: server_privileges.php:1579 server_privileges.php:1889 -#: server_privileges.php:1892 server_privileges.php:2187 sql.php:193 +#: server_databases.php:64 server_privileges.php:1585 +#: server_privileges.php:1599 server_privileges.php:1909 +#: server_privileges.php:1912 server_privileges.php:2208 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" @@ -211,126 +211,122 @@ msgstr "Изабери све" msgid "Unselect All" msgstr "ништа" -#: db_operations.php:38 tbl_create.php:54 +#: db_operations.php:43 tbl_create.php:54 msgid "The database name is empty!" msgstr "Име базе није задато!" -#: db_operations.php:236 +#: db_operations.php:241 #, php-format msgid "Database %s has been renamed to %s" msgstr "База %s је преименована у %s" -#: db_operations.php:240 +#: db_operations.php:245 #, php-format msgid "Database %s has been copied to %s" msgstr "База %s је прекопирана у %s" -#: db_operations.php:412 +#: db_operations.php:421 msgid "Rename database to" msgstr "Преименуј базу у" -#: db_operations.php:417 server_processlist.php:57 +#: db_operations.php:426 server_processlist.php:57 msgid "Command" msgstr "Наредба" -#: db_operations.php:429 tbl_change.php:1143 -msgid "and then" -msgstr "и онда" - -#: db_operations.php:455 +#: db_operations.php:464 msgid "Copy database to" msgstr "Копирај базу у" -#: db_operations.php:462 tbl_operations.php:528 tbl_tracking.php:388 +#: db_operations.php:471 tbl_operations.php:528 tbl_tracking.php:388 msgid "Structure only" msgstr "Само структура" -#: db_operations.php:463 tbl_operations.php:529 tbl_tracking.php:390 +#: db_operations.php:472 tbl_operations.php:529 tbl_tracking.php:390 msgid "Structure and data" msgstr "Структура и подаци" -#: db_operations.php:464 tbl_operations.php:530 tbl_tracking.php:389 +#: db_operations.php:473 tbl_operations.php:530 tbl_tracking.php:389 msgid "Data only" msgstr "Само подаци" -#: db_operations.php:472 +#: db_operations.php:481 msgid "CREATE DATABASE before copying" msgstr "CREATE DATABASE пре копирања" -#: db_operations.php:475 libraries/export/sql.php:52 +#: db_operations.php:484 libraries/export/sql.php:52 #: libraries/export/sql.php:74 libraries/export/sql.php:76 #: libraries/export/sql.php:82 tbl_operations.php:536 #, php-format msgid "Add %s" msgstr "Додај %s" -#: db_operations.php:479 libraries/export/sql.php:78 tbl_operations.php:299 +#: db_operations.php:488 libraries/export/sql.php:78 tbl_operations.php:299 #: tbl_operations.php:538 msgid "Add AUTO_INCREMENT value" msgstr "Додај AUTO_INCREMENT вредност" -#: db_operations.php:483 tbl_operations.php:545 +#: db_operations.php:492 tbl_operations.php:545 msgid "Add constraints" msgstr "Додај ограничења" -#: db_operations.php:496 +#: db_operations.php:505 msgid "Switch to copied database" msgstr "Пребаци се на копирану базу" -#: db_operations.php:537 +#: db_operations.php:546 msgid "BLOB Repository" msgstr "" -#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1352 -#: libraries/server_links.inc.php:49 server_processlist.php:59 +#: db_operations.php:549 db_tracking.php:76 libraries/common.lib.php:1352 +#: libraries/server_links.inc.php:50 server_processlist.php:59 #: tbl_tracking.php:596 test/theme.php:101 msgid "Status" msgstr "Статус" -#: db_operations.php:548 +#: db_operations.php:557 #, fuzzy #| msgid "Enabled" msgctxt "BLOB repository" msgid "Enabled" msgstr "Омогућено" -#: db_operations.php:552 +#: db_operations.php:561 #, fuzzy msgid "Disable" msgstr "Онемогућено" -#: db_operations.php:562 +#: db_operations.php:571 msgid "Damaged" msgstr "" -#: db_operations.php:566 +#: db_operations.php:575 #, fuzzy msgctxt "BLOB repository" msgid "Repair" msgstr "Поправи табелу" -#: db_operations.php:574 +#: db_operations.php:583 #, fuzzy #| msgid "Disabled" msgctxt "BLOB repository" msgid "Disabled" msgstr "Онемогућено" -#: db_operations.php:578 +#: db_operations.php:587 #, fuzzy msgid "Enable" msgstr "Омогућено" -#: db_operations.php:602 libraries/Index.class.php:448 +#: db_operations.php:611 libraries/Index.class.php:448 #: libraries/db_structure.lib.php:62 libraries/mysql_charsets.lib.php:107 #: libraries/tbl_properties.inc.php:107 libraries/tbl_properties.inc.php:730 #: server_collations.php:54 server_collations.php:66 server_databases.php:111 #: tbl_operations.php:363 tbl_select.php:137 tbl_structure.php:179 -#: tbl_structure.php:767 tbl_tracking.php:275 tbl_tracking.php:326 +#: tbl_structure.php:765 tbl_tracking.php:275 tbl_tracking.php:326 msgid "Collation" msgstr "Сортирање" -#: db_operations.php:615 main.php:316 pdf_schema.php:34 +#: db_operations.php:624 main.php:316 pdf_schema.php:34 #, php-format msgid "" "The additional features for working with linked tables have been " @@ -339,14 +335,14 @@ msgstr "" "Додатне могућности за рад са повезаним табелама су искључене. Да бисте " "сазнали зашто, кликните %sовде%s." -#: db_operations.php:648 +#: db_operations.php:657 msgid "Edit PDF Pages" 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:1665 -#: server_privileges.php:1721 server_privileges.php:1985 +#: libraries/header.inc.php:130 pdf_pages.php:424 server_privileges.php:1685 +#: server_privileges.php:1741 server_privileges.php:2005 #: server_synchronize.php:423 server_synchronize.php:866 tbl_tracking.php:592 #: test/theme.php:75 msgid "Table" @@ -355,7 +351,7 @@ msgstr "Табела" #: db_printview.php:105 libraries/db_structure.lib.php:56 #: libraries/header_printview.inc.php:63 libraries/import.lib.php:146 #: navigation.php:638 navigation.php:660 server_databases.php:122 -#: tbl_printview.php:394 tbl_structure.php:365 tbl_structure.php:777 +#: tbl_printview.php:394 tbl_structure.php:365 tbl_structure.php:775 msgid "Rows" msgstr "Редова" @@ -363,30 +359,30 @@ msgstr "Редова" msgid "Size" msgstr "Величина" -#: db_printview.php:162 db_structure.php:457 libraries/export/sql.php:559 +#: db_printview.php:162 db_structure.php:455 libraries/export/sql.php:559 #: libraries/export/sql.php:899 msgid "in use" msgstr "се користи" #: db_printview.php:187 libraries/db_info.inc.php:88 #: libraries/export/sql.php:514 pdf_schema.php:1241 tbl_printview.php:434 -#: tbl_structure.php:809 +#: tbl_structure.php:807 msgid "Creation" msgstr "Направљено" #: db_printview.php:196 libraries/db_info.inc.php:93 #: libraries/export/sql.php:519 pdf_schema.php:1246 tbl_printview.php:444 -#: tbl_structure.php:817 +#: tbl_structure.php:815 msgid "Last update" msgstr "Последња измена" #: db_printview.php:205 libraries/db_info.inc.php:98 #: libraries/export/sql.php:524 pdf_schema.php:1251 tbl_printview.php:454 -#: tbl_structure.php:825 +#: tbl_structure.php:823 msgid "Last check" msgstr "Последња провера" -#: db_printview.php:222 db_structure.php:480 +#: db_printview.php:222 db_structure.php:478 #, fuzzy, php-format #| msgid "%s table(s)" msgid "%s table" @@ -448,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:297 tbl_change.php:1031 tbl_indexes.php:250 +#: server_privileges.php:298 tbl_change.php:1031 tbl_indexes.php:250 #: tbl_select.php:288 msgid "Or" msgstr "или" @@ -521,9 +517,9 @@ 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:2833 +#: db_structure.php:105 libraries/common.lib.php:2837 #: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50 -#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:467 +#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:465 msgid "Browse" msgstr "Преглед" @@ -568,36 +564,36 @@ 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:2832 libraries/sql_query_form.lib.php:334 +#: libraries/common.lib.php:2836 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:2829 libraries/common.lib.php:2836 +#: libraries/common.lib.php:2833 libraries/common.lib.php:2840 #: 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:1106 #: libraries/tbl_links.inc.php:56 pmd_general.php:134 -#: server_privileges.php:593 server_replication.php:315 tbl_tracking.php:269 +#: server_privileges.php:594 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:1656 +#: db_structure.php:543 db_structure.php:544 db_tracking.php:91 +#: libraries/Index.class.php:483 libraries/common.lib.php:1657 #: 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 -#: tbl_structure.php:152 tbl_structure.php:471 +#: tbl_structure.php:152 tbl_structure.php:469 msgid "Drop" 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:1655 +#: db_structure.php:541 db_structure.php:542 libraries/common.lib.php:1656 #: libraries/mult_submits.inc.php:39 libraries/tbl_links.inc.php:105 msgid "Empty" msgstr "Испразни" @@ -607,111 +603,111 @@ msgstr "Испразни" msgid "Table %s has been emptied" msgstr "Табела %s је испражњена" -#: db_structure.php:326 libraries/tbl_links.inc.php:133 +#: db_structure.php:325 libraries/tbl_links.inc.php:133 #, php-format msgid "View %s has been dropped" msgstr "Поглед %s је одбачен" -#: db_structure.php:326 libraries/tbl_links.inc.php:133 +#: db_structure.php:325 libraries/tbl_links.inc.php:133 #, php-format msgid "Table %s has been dropped" msgstr "Табела %s је одбачена" -#: db_structure.php:333 +#: db_structure.php:332 msgid "Tracking is active." msgstr "" -#: db_structure.php:335 +#: db_structure.php:334 msgid "Tracking is not active." msgstr "" -#: db_structure.php:420 libraries/display_tbl.lib.php:1944 +#: db_structure.php:418 libraries/display_tbl.lib.php:1944 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation%" "s." msgstr "" -#: db_structure.php:434 db_structure.php:448 libraries/header.inc.php:126 +#: db_structure.php:432 db_structure.php:446 libraries/header.inc.php:130 #: libraries/tbl_info.inc.php:66 tbl_structure.php:185 test/theme.php:74 msgid "View" msgstr "Поглед" -#: db_structure.php:485 libraries/db_structure.lib.php:49 -#: libraries/server_links.inc.php:70 server_replication.php:33 +#: db_structure.php:483 libraries/db_structure.lib.php:49 +#: libraries/server_links.inc.php:71 server_replication.php:33 #: server_replication.php:164 server_status.php:369 msgid "Replication" msgstr "Репликација" -#: db_structure.php:489 +#: db_structure.php:487 msgid "Sum" msgstr "Укупно" -#: db_structure.php:496 libraries/StorageEngine.class.php:356 +#: db_structure.php:494 libraries/StorageEngine.class.php:356 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "%s је подразумевани погон складиштења на овом MySQL серверу." -#: db_structure.php:524 db_structure.php:541 db_structure.php:542 +#: db_structure.php:522 db_structure.php:539 db_structure.php:540 #: 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:1596 tbl_structure.php:455 -#: tbl_structure.php:464 +#: server_databases.php:351 server_privileges.php:1616 tbl_structure.php:453 +#: tbl_structure.php:462 msgid "With selected:" msgstr "Означено:" -#: db_structure.php:527 libraries/display_tbl.lib.php:2076 -#: server_databases.php:348 server_privileges.php:569 -#: server_privileges.php:1599 tbl_structure.php:458 +#: db_structure.php:525 libraries/display_tbl.lib.php:2076 +#: server_databases.php:348 server_privileges.php:570 +#: server_privileges.php:1619 tbl_structure.php:456 msgid "Check All" msgstr "Означи све" -#: db_structure.php:531 libraries/display_tbl.lib.php:2077 +#: db_structure.php:529 libraries/display_tbl.lib.php:2077 #: libraries/replication_gui.lib.php:33 server_databases.php:350 -#: server_privileges.php:572 server_privileges.php:1603 tbl_structure.php:462 +#: server_privileges.php:573 server_privileges.php:1623 tbl_structure.php:460 msgid "Uncheck All" msgstr "ниједно" -#: db_structure.php:536 +#: db_structure.php:534 msgid "Check tables having overhead" msgstr "Провери табеле које имају прекорачења" -#: db_structure.php:547 db_structure.php:548 db_structure.php:599 +#: db_structure.php:545 db_structure.php:546 db_structure.php:597 #: libraries/display_tbl.lib.php:2180 libraries/mult_submits.inc.php:28 -#: tbl_structure.php:492 tbl_structure.php:494 +#: tbl_structure.php:490 tbl_structure.php:492 msgid "Print view" msgstr "За штампу" -#: db_structure.php:549 db_structure.php:550 libraries/mult_submits.inc.php:42 +#: db_structure.php:547 db_structure.php:548 libraries/mult_submits.inc.php:42 #: tbl_operations.php:581 msgid "Check table" msgstr "Провери табелу" -#: db_structure.php:551 db_structure.php:552 libraries/mult_submits.inc.php:47 -#: tbl_operations.php:621 tbl_structure.php:709 tbl_structure.php:711 +#: db_structure.php:549 db_structure.php:550 libraries/mult_submits.inc.php:47 +#: tbl_operations.php:621 tbl_structure.php:707 tbl_structure.php:709 msgid "Optimize table" msgstr "Оптимизуј табелу" -#: db_structure.php:553 db_structure.php:554 libraries/mult_submits.inc.php:52 +#: db_structure.php:551 db_structure.php:552 libraries/mult_submits.inc.php:52 #: tbl_operations.php:611 msgid "Repair table" msgstr "Поправи табелу" -#: db_structure.php:555 db_structure.php:556 libraries/mult_submits.inc.php:57 +#: db_structure.php:553 db_structure.php:554 libraries/mult_submits.inc.php:57 #: tbl_operations.php:601 msgid "Analyze table" msgstr "Анализирај табелу" -#: db_structure.php:557 db_structure.php:558 libraries/db_links.inc.php:71 +#: db_structure.php:555 db_structure.php:556 libraries/db_links.inc.php:71 #: 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:1380 +#: libraries/server_links.inc.php:85 libraries/tbl_links.inc.php:82 +#: pmd_pdf.php:84 pmd_pdf.php:109 server_privileges.php:1397 #: setup/frames/menu.inc.php:22 tbl_row_action.php:59 msgid "Export" msgstr "Извоз" -#: db_structure.php:606 libraries/display_pdf_schema.lib.php:44 +#: db_structure.php:604 libraries/display_pdf_schema.lib.php:44 msgid "Data Dictionary" msgstr "Речник података" @@ -723,10 +719,10 @@ msgstr "Провери табелу" #: db_tracking.php:71 libraries/export/htmlword.php:86 #: libraries/export/latex.php:148 libraries/export/odt.php:113 #: libraries/export/sql.php:342 libraries/export/texytext.php:84 -#: libraries/export/xml.php:255 libraries/header.inc.php:106 +#: libraries/export/xml.php:255 libraries/header.inc.php:110 #: libraries/header_printview.inc.php:58 server_databases.php:169 -#: server_privileges.php:1660 server_privileges.php:1721 -#: server_privileges.php:1979 server_processlist.php:56 +#: server_privileges.php:1680 server_privileges.php:1741 +#: server_privileges.php:1999 server_processlist.php:56 #: server_synchronize.php:1179 server_synchronize.php:1183 #: tbl_tracking.php:591 test/theme.php:65 msgid "Database" @@ -748,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:1542 server_privileges.php:1725 -#: server_privileges.php:2073 tbl_structure.php:187 +#: server_privileges.php:1562 server_privileges.php:1745 +#: server_privileges.php:2094 tbl_structure.php:187 msgid "Action" msgstr "Акција" @@ -786,8 +782,8 @@ msgstr "Само структура" msgid "Untracked tables" msgstr "Провери табелу" -#: db_tracking.php:172 db_tracking.php:174 tbl_structure.php:528 -#: tbl_structure.php:530 +#: db_tracking.php:172 db_tracking.php:174 tbl_structure.php:526 +#: tbl_structure.php:528 #, fuzzy msgid "Track table" msgstr "Провери табелу" @@ -955,186 +951,233 @@ msgstr "Име домаћина је празно!" msgid "The user name is empty!" msgstr "Име корисника није унето!" -#: js/messages.php:44 server_privileges.php:1236 user_password.php:70 +#: js/messages.php:44 server_privileges.php:1241 user_password.php:70 msgid "The password is empty!" msgstr "Лозинка је празна!" -#: js/messages.php:45 server_privileges.php:1234 user_password.php:73 +#: js/messages.php:45 server_privileges.php:1239 user_password.php:73 msgid "The passwords aren't the same!" msgstr "Лозинке нису идентичне!" -#: js/messages.php:49 pmd_general.php:342 pmd_general.php:379 +#: js/messages.php:46 +#, fuzzy +#| msgid "Add a new User" +msgid "Add a New User" +msgstr "Додај новог корисника" + +#: js/messages.php:47 js/messages.php:54 pmd_general.php:342 +#: pmd_general.php:379 msgid "Cancel" msgstr "Откажи" -#: js/messages.php:52 pmd_save_pos.php:54 +#: js/messages.php:48 +#, fuzzy +msgid "Create User" +msgstr "Направи релацију" + +#: js/messages.php:49 +#, fuzzy +#| msgid "Reload privileges" +msgid "Reloading Privileges" +msgstr "Поново учитај привилегије" + +#: js/messages.php:50 +#, fuzzy +#| msgid "Remove selected users" +msgid "Removing Selected Users" +msgstr "Уклони изабране кориснике" + +#: js/messages.php:57 +#, fuzzy +msgid "Loading" +msgstr "Локални" + +#: js/messages.php:58 +#, fuzzy +#| msgid "Processes" +msgid "Processing Request" +msgstr "Процеси" + +#: js/messages.php:59 +msgid "Error in Processing Request" +msgstr "" + +#: js/messages.php:60 +msgid "Dropping Column" +msgstr "" + +#: js/messages.php:61 +msgid "Adding Primary Key" +msgstr "" + +#: js/messages.php:64 pmd_save_pos.php:54 msgid "Modifications have been saved" msgstr "Измене су сачуване" -#: js/messages.php:53 pmd_relation_upd.php:49 +#: js/messages.php:65 pmd_relation_upd.php:49 msgid "Relation deleted" msgstr "Релација обрисана" -#: js/messages.php:54 pmd_relation_new.php:64 +#: js/messages.php:66 pmd_relation_new.php:64 msgid "FOREIGN KEY relation added" msgstr "" -#: js/messages.php:55 pmd_relation_new.php:86 +#: js/messages.php:67 pmd_relation_new.php:86 msgid "Internal relation added" msgstr "Додата интерна релација" -#: js/messages.php:56 pmd_relation_new.php:63 pmd_relation_new.php:88 +#: js/messages.php:68 pmd_relation_new.php:63 pmd_relation_new.php:88 msgid "Error: Relation not added." msgstr "Грешка: релација није додата." -#: js/messages.php:57 pmd_relation_new.php:31 +#: js/messages.php:69 pmd_relation_new.php:31 msgid "Error: relation already exists." msgstr "Грешка: релација већ постоји." -#: js/messages.php:58 +#: js/messages.php:70 msgid "Error saving coordinates for Designer." msgstr "Грешка при снимању координата за Дизајнер." -#: js/messages.php:59 libraries/relation.lib.php:107 +#: js/messages.php:71 libraries/relation.lib.php:107 #: libraries/relation.lib.php:119 msgid "General relation features" msgstr "Опште особине релација" -#: js/messages.php:59 libraries/relation.lib.php:101 +#: js/messages.php:71 libraries/relation.lib.php:101 #: libraries/relation.lib.php:108 msgid "Disabled" msgstr "Онемогућено" -#: js/messages.php:60 +#: js/messages.php:72 msgid "Select referenced key" msgstr "Изаберите референцирани кључ" -#: js/messages.php:61 +#: js/messages.php:73 msgid "Select Foreign Key" msgstr "Изабери страни кључ" -#: js/messages.php:62 +#: js/messages.php:74 msgid "Please select the primary key or a unique key" msgstr "Молимо изаберите примарни или јединствени кључ" -#: js/messages.php:63 pmd_general.php:77 tbl_relation.php:548 +#: js/messages.php:75 pmd_general.php:77 tbl_relation.php:548 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" msgstr "Изабери поља за приказ" #. l10n: Display text for calendar close link -#: js/messages.php:73 +#: js/messages.php:85 #, fuzzy msgid "Done" msgstr "Подаци" #. l10n: Display text for previous month link in calendar -#: js/messages.php:75 +#: js/messages.php:87 #, fuzzy #| msgid "Previous" msgid "Prev" msgstr "Претходна" #. l10n: Display text for next month link in calendar -#: js/messages.php:77 libraries/common.lib.php:2353 -#: libraries/common.lib.php:2356 libraries/display_tbl.lib.php:338 +#: js/messages.php:89 libraries/common.lib.php:2357 +#: libraries/common.lib.php:2360 libraries/display_tbl.lib.php:338 #: server_binlog.php:205 server_binlog.php:207 tbl_printview.php:424 -#: tbl_structure.php:801 +#: tbl_structure.php:799 msgid "Next" msgstr "Следећи" #. l10n: Display text for current month link in calendar -#: js/messages.php:79 +#: js/messages.php:91 #, fuzzy #| msgid "Total" msgid "Today" msgstr "Укупно" -#: js/messages.php:82 +#: js/messages.php:94 #, fuzzy #| msgid "Binary" msgid "January" msgstr "Бинарни" -#: js/messages.php:83 +#: js/messages.php:95 msgid "February" msgstr "" -#: js/messages.php:84 +#: js/messages.php:96 #, fuzzy #| msgid "Mar" msgid "March" msgstr "мар" -#: js/messages.php:85 +#: js/messages.php:97 #, fuzzy #| msgid "Apr" msgid "April" msgstr "апр" -#: js/messages.php:86 +#: js/messages.php:98 msgid "May" msgstr "мај" -#: js/messages.php:87 +#: js/messages.php:99 #, fuzzy #| msgid "Jun" msgid "June" msgstr "јун" -#: js/messages.php:88 +#: js/messages.php:100 #, fuzzy #| msgid "Jul" msgid "July" msgstr "јул" -#: js/messages.php:89 +#: js/messages.php:101 #, fuzzy #| msgid "Aug" msgid "August" msgstr "авг" -#: js/messages.php:90 +#: js/messages.php:102 msgid "September" msgstr "" -#: js/messages.php:91 +#: js/messages.php:103 #, fuzzy #| msgid "Oct" msgid "October" msgstr "окт" -#: js/messages.php:92 +#: js/messages.php:104 msgid "November" msgstr "" -#: js/messages.php:93 +#: js/messages.php:105 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:97 libraries/common.lib.php:1557 +#: js/messages.php:109 libraries/common.lib.php:1557 msgid "Jan" msgstr "јан" #. l10n: Short month name -#: js/messages.php:99 libraries/common.lib.php:1559 +#: js/messages.php:111 libraries/common.lib.php:1559 msgid "Feb" msgstr "феб" #. l10n: Short month name -#: js/messages.php:101 libraries/common.lib.php:1561 +#: js/messages.php:113 libraries/common.lib.php:1561 msgid "Mar" msgstr "мар" #. l10n: Short month name -#: js/messages.php:103 libraries/common.lib.php:1563 +#: js/messages.php:115 libraries/common.lib.php:1563 msgid "Apr" msgstr "апр" #. l10n: Short month name -#: js/messages.php:105 libraries/common.lib.php:1565 +#: js/messages.php:117 libraries/common.lib.php:1565 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1142,176 +1185,176 @@ msgid "May" msgstr "мај" #. l10n: Short month name -#: js/messages.php:107 libraries/common.lib.php:1567 +#: js/messages.php:119 libraries/common.lib.php:1567 msgid "Jun" msgstr "јун" #. l10n: Short month name -#: js/messages.php:109 libraries/common.lib.php:1569 +#: js/messages.php:121 libraries/common.lib.php:1569 msgid "Jul" msgstr "јул" #. l10n: Short month name -#: js/messages.php:111 libraries/common.lib.php:1571 +#: js/messages.php:123 libraries/common.lib.php:1571 msgid "Aug" msgstr "авг" #. l10n: Short month name -#: js/messages.php:113 libraries/common.lib.php:1573 +#: js/messages.php:125 libraries/common.lib.php:1573 msgid "Sep" msgstr "сеп" #. l10n: Short month name -#: js/messages.php:115 libraries/common.lib.php:1575 +#: js/messages.php:127 libraries/common.lib.php:1575 msgid "Oct" msgstr "окт" #. l10n: Short month name -#: js/messages.php:117 libraries/common.lib.php:1577 +#: js/messages.php:129 libraries/common.lib.php:1577 msgid "Nov" msgstr "нов" #. l10n: Short month name -#: js/messages.php:119 libraries/common.lib.php:1579 +#: js/messages.php:131 libraries/common.lib.php:1579 msgid "Dec" msgstr "дец" -#: js/messages.php:122 +#: js/messages.php:134 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "Нед" -#: js/messages.php:123 +#: js/messages.php:135 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "Пон" -#: js/messages.php:124 +#: js/messages.php:136 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "Уто" -#: js/messages.php:125 +#: js/messages.php:137 msgid "Wednesday" msgstr "" -#: js/messages.php:126 +#: js/messages.php:138 msgid "Thursday" msgstr "" -#: js/messages.php:127 +#: js/messages.php:139 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "Пет" -#: js/messages.php:128 +#: js/messages.php:140 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:132 libraries/common.lib.php:1582 +#: js/messages.php:144 libraries/common.lib.php:1582 msgid "Sun" msgstr "Нед" #. l10n: Short week day name -#: js/messages.php:134 libraries/common.lib.php:1584 +#: js/messages.php:146 libraries/common.lib.php:1584 msgid "Mon" msgstr "Пон" #. l10n: Short week day name -#: js/messages.php:136 libraries/common.lib.php:1586 +#: js/messages.php:148 libraries/common.lib.php:1586 msgid "Tue" msgstr "Уто" #. l10n: Short week day name -#: js/messages.php:138 libraries/common.lib.php:1588 +#: js/messages.php:150 libraries/common.lib.php:1588 msgid "Wed" msgstr "Сре" #. l10n: Short week day name -#: js/messages.php:140 libraries/common.lib.php:1590 +#: js/messages.php:152 libraries/common.lib.php:1590 msgid "Thu" msgstr "Чет" #. l10n: Short week day name -#: js/messages.php:142 libraries/common.lib.php:1592 +#: js/messages.php:154 libraries/common.lib.php:1592 msgid "Fri" msgstr "Пет" #. l10n: Short week day name -#: js/messages.php:144 libraries/common.lib.php:1594 +#: js/messages.php:156 libraries/common.lib.php:1594 msgid "Sat" msgstr "Суб" #. l10n: Minimal week day name -#: js/messages.php:148 +#: js/messages.php:160 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "Нед" #. l10n: Minimal week day name -#: js/messages.php:150 +#: js/messages.php:162 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "Пон" #. l10n: Minimal week day name -#: js/messages.php:152 +#: js/messages.php:164 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "Уто" #. l10n: Minimal week day name -#: js/messages.php:154 +#: js/messages.php:166 #, fuzzy #| msgid "Wed" msgid "We" msgstr "Сре" #. l10n: Minimal week day name -#: js/messages.php:156 +#: js/messages.php:168 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "Чет" #. l10n: Minimal week day name -#: js/messages.php:158 +#: js/messages.php:170 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "Пет" #. l10n: Minimal week day name -#: js/messages.php:160 +#: js/messages.php:172 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "Суб" #. l10n: Column header for week of the year in calendar -#: js/messages.php:162 +#: js/messages.php:174 msgid "Wk" msgstr "" -#: js/messages.php:164 +#: js/messages.php:176 msgid "Hour" msgstr "" -#: js/messages.php:165 +#: js/messages.php:177 #, fuzzy #| msgid "in use" msgid "Minute" msgstr "се користи" -#: js/messages.php:166 +#: js/messages.php:178 #, fuzzy #| msgid "per second" msgid "Second" @@ -1372,7 +1415,7 @@ msgstr "Кључеви" #: libraries/Index.class.php:444 libraries/mult_submits.inc.php:103 #: libraries/tbl_properties.inc.php:519 tbl_structure.php:33 -#: tbl_structure.php:155 tbl_structure.php:159 tbl_structure.php:474 +#: tbl_structure.php:155 tbl_structure.php:159 tbl_structure.php:472 #: tbl_tracking.php:322 msgid "Unique" msgstr "Јединствени" @@ -1414,8 +1457,8 @@ msgid "" "removed." msgstr "" -#: libraries/List_Database.class.php:431 libraries/server_links.inc.php:41 -#: server_databases.php:88 server_privileges.php:1660 +#: libraries/List_Database.class.php:431 libraries/server_links.inc.php:42 +#: server_databases.php:88 server_privileges.php:1680 #: setup/lib/messages.inc.php:110 test/theme.php:93 msgid "Databases" msgstr "Базе" @@ -1585,7 +1628,7 @@ msgstr "Лозинка:" msgid "Server Choice" msgstr "Избор сервера" -#: libraries/auth/cookie.auth.lib.php:320 libraries/header.inc.php:59 +#: libraries/auth/cookie.auth.lib.php:320 libraries/header.inc.php:63 msgid "Cookies must be enabled past this point." msgstr "Колачићи (Cookies) морају у овом случају бити активни." @@ -1665,7 +1708,7 @@ msgstr "" "Не могу да користим iconv или libiconv или recode_string функције иако " "екстензија пријављује да је учитана. Проверите вашу PHP конфигурацију." -#: libraries/common.inc.php:583 +#: libraries/common.inc.php:587 msgid "" "phpMyAdmin was unable to read your configuration file!
This might " "happen if PHP finds a parse error in it or PHP cannot find the file.
Ако добијете празну страну, све је " "у реду." -#: libraries/common.inc.php:594 +#: libraries/common.inc.php:598 #, fuzzy, php-format #| msgid "Could not load default configuration from: \"%1$s\"" msgid "Could not load default configuration from: %1$s" msgstr "Не могу да учитам подразумевану конфигурацију из: \"%1$s\"" -#: libraries/common.inc.php:599 +#: libraries/common.inc.php:603 msgid "" "The $cfg['PmaAbsoluteUri'] directive MUST be set in your " "configuration file!" @@ -1695,28 +1738,28 @@ msgstr "" "$cfg['PmaAbsoluteUri'] директива МОРА бити подешена у " "конфигурационој датотеци!" -#: libraries/common.inc.php:629 +#: libraries/common.inc.php:633 #, fuzzy, php-format #| msgid "Invalid server index: \"%s\"" msgid "Invalid server index: %s" msgstr "Неисправан индекс сервера: \"%s\"" -#: libraries/common.inc.php:636 +#: libraries/common.inc.php:640 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "Неисправан назив сервера %1$s. Молимо проверите своју конфигурацију." -#: libraries/common.inc.php:645 libraries/header.inc.php:96 +#: libraries/common.inc.php:649 libraries/header.inc.php:100 #: libraries/select_server.lib.php:41 libraries/select_server.lib.php:47 #: main.php:185 test/theme.php:57 msgid "Server" msgstr "Сервер" -#: libraries/common.inc.php:823 +#: libraries/common.inc.php:827 msgid "Invalid authentication method set in configuration:" msgstr "Неисправан метод аутентикације је задат у конфигурацији:" -#: libraries/common.inc.php:926 +#: libraries/common.inc.php:930 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Требало би да унапредите ваш %s сервер на верзију %s или новију." @@ -1849,45 +1892,45 @@ msgstr "." msgid "%B %d, %Y at %I:%M %p" msgstr "%d. %B %Y. у %H:%M" -#: libraries/common.lib.php:1907 +#: libraries/common.lib.php:1911 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s дана, %s сати, %s минута и %s секунди" -#: libraries/common.lib.php:2322 libraries/common.lib.php:2325 +#: libraries/common.lib.php:2326 libraries/common.lib.php:2329 #: libraries/display_tbl.lib.php:290 server_status.php:719 msgid "Begin" msgstr "Почетак" -#: libraries/common.lib.php:2323 libraries/common.lib.php:2326 +#: libraries/common.lib.php:2327 libraries/common.lib.php:2330 #: libraries/display_tbl.lib.php:291 server_binlog.php:168 #: server_binlog.php:170 msgid "Previous" msgstr "Претходна" -#: libraries/common.lib.php:2354 libraries/common.lib.php:2357 +#: libraries/common.lib.php:2358 libraries/common.lib.php:2361 #: libraries/display_tbl.lib.php:353 msgid "End" msgstr "Крај" -#: libraries/common.lib.php:2430 +#: libraries/common.lib.php:2434 #, php-format msgid "Jump to database "%s"." msgstr "Пређи на базу "%s"." -#: libraries/common.lib.php:2450 +#: libraries/common.lib.php:2454 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "Ова функционалност %s је погођена познатом грешком, видите %s" -#: libraries/common.lib.php:2830 libraries/common.lib.php:2837 +#: libraries/common.lib.php:2834 libraries/common.lib.php:2841 #: libraries/db_links.inc.php:68 libraries/export/sql.php:25 -#: libraries/import/sql.php:18 libraries/server_links.inc.php:45 +#: libraries/import/sql.php:18 libraries/server_links.inc.php:46 #: libraries/tbl_links.inc.php:60 querywindow.php:99 test/theme.php:97 msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2839 libraries/db_links.inc.php:104 +#: libraries/common.lib.php:2843 libraries/db_links.inc.php:104 #: libraries/tbl_links.inc.php:95 libraries/tbl_links.inc.php:117 #: view_operations.php:89 msgid "Operations" @@ -1936,15 +1979,15 @@ msgstr "Упит по примеру" msgid "Designer" msgstr "Дизајнер" -#: libraries/db_links.inc.php:98 libraries/server_links.inc.php:88 +#: libraries/db_links.inc.php:98 libraries/server_links.inc.php:89 #: libraries/tbl_links.inc.php:91 pmd_pdf.php:84 pmd_pdf.php:110 #: setup/frames/menu.inc.php:21 msgid "Import" msgstr "Увоз" -#: libraries/db_links.inc.php:111 libraries/server_links.inc.php:66 -#: server_privileges.php:111 server_privileges.php:1722 -#: server_privileges.php:2071 test/theme.php:117 +#: libraries/db_links.inc.php:111 libraries/server_links.inc.php:67 +#: server_privileges.php:112 server_privileges.php:1742 +#: server_privileges.php:2092 test/theme.php:117 msgid "Privileges" msgstr "Привилегије" @@ -1963,7 +2006,7 @@ msgid "" msgstr "Може бити приближно. Видите FAQ 3.11" #: libraries/db_structure.lib.php:69 server_databases.php:142 -#: tbl_printview.php:336 tbl_structure.php:682 +#: tbl_printview.php:336 tbl_structure.php:680 msgid "Overhead" msgstr "Прекорачење" @@ -1982,7 +2025,7 @@ msgstr "Сервер не одговара" msgid "(or the local MySQL server's socket is not correctly configured)" msgstr "(или прикључак локалног MySQL сервера није исправно подешен)" -#: libraries/dbi/mysql.dbi.lib.php:362 tbl_structure.php:608 +#: libraries/dbi/mysql.dbi.lib.php:362 tbl_structure.php:606 msgid "Details..." msgstr "" @@ -1992,22 +2035,22 @@ msgid "Change password" msgstr "Промени лозинку" #: libraries/display_change_password.lib.php:35 -#: libraries/replication_gui.lib.php:345 server_privileges.php:807 +#: libraries/replication_gui.lib.php:345 server_privileges.php:808 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:796 -#: server_privileges.php:800 server_privileges.php:811 -#: server_privileges.php:1538 server_synchronize.php:1175 +#: libraries/replication_gui.lib.php:349 server_privileges.php:797 +#: server_privileges.php:801 server_privileges.php:812 +#: server_privileges.php:1558 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:815 server_privileges.php:818 +#: server_privileges.php:816 server_privileges.php:819 msgid "Re-type" msgstr "Поновите унос" @@ -2022,12 +2065,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:822 +#: libraries/replication_gui.lib.php:360 server_privileges.php:823 msgid "Generate Password" msgstr "Направи лозинку" #: libraries/display_change_password.lib.php:75 -#: libraries/replication_gui.lib.php:363 server_privileges.php:825 +#: libraries/replication_gui.lib.php:363 server_privileges.php:826 msgid "Generate" msgstr "Направи" @@ -2040,8 +2083,8 @@ msgstr "Направи нову базу података" msgid "Create" msgstr "Направи" -#: libraries/display_create_database.lib.php:40 server_privileges.php:113 -#: server_privileges.php:1427 server_replication.php:35 +#: libraries/display_create_database.lib.php:40 server_privileges.php:114 +#: server_privileges.php:1447 server_replication.php:35 msgid "No Privileges" msgstr "Нема привилегија" @@ -2133,7 +2176,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:1875 server_processlist.php:75 +#: server_privileges.php:1895 server_processlist.php:75 msgid "None" msgstr "нема" @@ -2324,7 +2367,7 @@ msgstr "Сортирај по кључу" #: libraries/import/docsql.php:34 libraries/import/ldi.php:47 #: libraries/import/ods.php:30 libraries/import/sql.php:20 #: libraries/import/xls.php:26 libraries/import/xlsx.php:26 -#: libraries/import/xml.php:25 tbl_select.php:267 tbl_structure.php:753 +#: libraries/import/xml.php:25 tbl_select.php:267 tbl_structure.php:751 msgid "Options" msgstr "Опције" @@ -2402,7 +2445,7 @@ msgstr "Упит је трајао %01.4f секунди" #: libraries/display_tbl.lib.php:2089 libraries/mult_submits.inc.php:113 #: querywindow.php:125 querywindow.php:129 querywindow.php:132 -#: tbl_structure.php:25 tbl_structure.php:150 tbl_structure.php:470 +#: tbl_structure.php:25 tbl_structure.php:150 tbl_structure.php:468 msgid "Change" msgstr "Промени" @@ -2473,7 +2516,7 @@ msgstr "Коришћење скупа прихватника" #: libraries/engines/innodb.lib.php:194 server_databases.php:137 #: server_databases.php:305 server_status.php:525 server_status.php:586 -#: server_status.php:607 tbl_printview.php:351 tbl_structure.php:696 +#: server_status.php:607 tbl_printview.php:351 tbl_structure.php:694 msgid "Total" msgstr "Укупно" @@ -2734,7 +2777,7 @@ msgid "" msgstr "" #: libraries/export/codegen.php:37 setup/lib/messages.inc.php:88 -#: tbl_printview.php:376 tbl_structure.php:737 +#: tbl_printview.php:376 tbl_structure.php:735 msgid "Format" msgstr "Формат" @@ -2806,8 +2849,8 @@ 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:576 server_replication.php:316 tbl_printview.php:317 -#: tbl_structure.php:665 +#: server_privileges.php:577 server_replication.php:316 tbl_printview.php:317 +#: tbl_structure.php:663 msgid "Data" msgstr "Подаци" @@ -2856,9 +2899,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:731 -#: server_privileges.php:734 server_privileges.php:790 -#: server_privileges.php:1537 server_privileges.php:2069 +#: libraries/replication_gui.lib.php:329 server_privileges.php:732 +#: server_privileges.php:735 server_privileges.php:791 +#: server_privileges.php:1557 server_privileges.php:2090 #: server_processlist.php:55 server_synchronize.php:1159 msgid "Host" msgstr "Домаћин" @@ -3057,7 +3100,7 @@ msgstr "Тип извоза" msgid "Open new phpMyAdmin window" msgstr "Отвори нови phpMyAdmin прозор" -#: libraries/header.inc.php:115 +#: libraries/header.inc.php:119 #, fuzzy msgid "New table" msgstr "Нема табела" @@ -3220,20 +3263,20 @@ 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 +#: tbl_structure.php:471 msgid "Primary" msgstr "Примарни" #: libraries/mult_submits.inc.php:98 libraries/tbl_properties.inc.php:116 #: libraries/tbl_properties.inc.php:525 tbl_printview.php:326 #: tbl_structure.php:31 tbl_structure.php:154 tbl_structure.php:158 -#: tbl_structure.php:475 tbl_structure.php:673 +#: tbl_structure.php:473 tbl_structure.php:671 msgid "Index" msgstr "Кључ" #: libraries/mult_submits.inc.php:108 libraries/tbl_properties.inc.php:531 #: tbl_structure.php:35 tbl_structure.php:156 tbl_structure.php:160 -#: tbl_structure.php:478 +#: tbl_structure.php:476 msgid "Fulltext" msgstr "Текст кључ" @@ -3535,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:711 -#: server_privileges.php:714 server_privileges.php:721 +#: libraries/replication_gui.lib.php:259 server_privileges.php:712 +#: server_privileges.php:715 server_privileges.php:722 #: server_synchronize.php:1171 msgid "User name" msgstr "Име корисника" @@ -3563,7 +3606,7 @@ msgstr "Променљива" #: 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 +#: tbl_structure.php:727 msgid "Value" msgstr "Вредност" @@ -3581,34 +3624,34 @@ msgstr "" msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:254 server_privileges.php:716 +#: libraries/replication_gui.lib.php:254 server_privileges.php:717 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:717 -#: server_privileges.php:784 server_privileges.php:808 -#: server_privileges.php:1928 server_privileges.php:1958 +#: libraries/replication_gui.lib.php:346 server_privileges.php:718 +#: server_privileges.php:785 server_privileges.php:809 +#: server_privileges.php:1948 server_privileges.php:1978 msgid "Use text field" msgstr "Користи текст поље" -#: libraries/replication_gui.lib.php:302 server_privileges.php:764 +#: libraries/replication_gui.lib.php:302 server_privileges.php:765 msgid "Any host" msgstr "Било који домаћин" -#: libraries/replication_gui.lib.php:306 server_privileges.php:768 +#: libraries/replication_gui.lib.php:306 server_privileges.php:769 msgid "Local" msgstr "Локални" -#: libraries/replication_gui.lib.php:312 server_privileges.php:773 +#: libraries/replication_gui.lib.php:312 server_privileges.php:774 msgid "This Host" msgstr "Овај сервер" -#: libraries/replication_gui.lib.php:318 server_privileges.php:779 +#: libraries/replication_gui.lib.php:318 server_privileges.php:780 msgid "Use Host Table" msgstr "Користи табелу домаћина" -#: libraries/replication_gui.lib.php:331 server_privileges.php:792 +#: libraries/replication_gui.lib.php:331 server_privileges.php:793 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -3642,29 +3685,29 @@ msgstr "Непознат језик: %1$s." msgid "Servers" msgstr "Сервери" -#: libraries/server_links.inc.php:53 server_engines.php:112 +#: libraries/server_links.inc.php:54 server_engines.php:112 #: server_engines.php:116 server_status.php:415 test/theme.php:105 msgid "Variables" msgstr "Променљиве" -#: libraries/server_links.inc.php:57 test/theme.php:109 +#: libraries/server_links.inc.php:58 test/theme.php:109 msgid "Charsets" msgstr "Кодне стране" -#: libraries/server_links.inc.php:61 test/theme.php:113 +#: libraries/server_links.inc.php:62 test/theme.php:113 msgid "Engines" msgstr "Складиштења" -#: libraries/server_links.inc.php:76 server_binlog.php:110 +#: libraries/server_links.inc.php:77 server_binlog.php:110 #: server_status.php:364 test/theme.php:121 msgid "Binary log" msgstr "Бинарни дневник" -#: libraries/server_links.inc.php:80 +#: libraries/server_links.inc.php:81 msgid "Processes" msgstr "Процеси" -#: libraries/server_links.inc.php:92 server_synchronize.php:1092 +#: libraries/server_links.inc.php:93 server_synchronize.php:1092 #: server_synchronize.php:1100 msgid "Synchronize" msgstr "" @@ -3913,13 +3956,13 @@ msgstr "" msgid "Save" msgstr "Сачувај" -#: libraries/tbl_properties.inc.php:780 tbl_structure.php:542 +#: libraries/tbl_properties.inc.php:780 tbl_structure.php:540 #, fuzzy, php-format #| msgid "Add %s field(s)" msgid "Add %s column(s)" msgstr "Додај %s поља" -#: libraries/tbl_properties.inc.php:784 tbl_structure.php:536 +#: libraries/tbl_properties.inc.php:784 tbl_structure.php:534 #, fuzzy #| msgid "You have to add at least one field." msgid "You have to add at least one column." @@ -4130,8 +4173,8 @@ msgstr "Поништи" msgid "Protocol version" msgstr "Верзија протокола" -#: main.php:189 server_privileges.php:1389 server_privileges.php:1536 -#: server_privileges.php:1650 server_privileges.php:2068 +#: main.php:189 server_privileges.php:1406 server_privileges.php:1556 +#: server_privileges.php:1670 server_privileges.php:2089 #: server_processlist.php:54 msgid "User" msgstr "Корисник" @@ -4580,113 +4623,113 @@ msgstr "Погони складиштења" msgid "View dump (schema) of databases" msgstr "Прикажи садржај (схему) базе" -#: server_privileges.php:24 server_privileges.php:266 +#: server_privileges.php:25 server_privileges.php:267 msgid "Includes all privileges except GRANT." msgstr "Укључује све привилегије осим GRANT." -#: server_privileges.php:25 server_privileges.php:192 -#: server_privileges.php:515 +#: server_privileges.php:26 server_privileges.php:193 +#: server_privileges.php:516 msgid "Allows altering the structure of existing tables." msgstr "Дозвољава измену структура постојећих табела." -#: server_privileges.php:26 server_privileges.php:208 -#: server_privileges.php:521 +#: server_privileges.php:27 server_privileges.php:209 +#: server_privileges.php:522 msgid "Allows altering and dropping stored routines." msgstr "Дозвољава измену и одбацивање сачуваних рутина." -#: server_privileges.php:27 server_privileges.php:184 -#: server_privileges.php:514 +#: server_privileges.php:28 server_privileges.php:185 +#: server_privileges.php:515 msgid "Allows creating new databases and tables." msgstr "Дозвољава креирање нових база и табела." -#: server_privileges.php:28 server_privileges.php:207 -#: server_privileges.php:520 +#: server_privileges.php:29 server_privileges.php:208 +#: server_privileges.php:521 msgid "Allows creating stored routines." msgstr "Дозвољава прављење сачуваних рутина." -#: server_privileges.php:29 server_privileges.php:514 +#: server_privileges.php:30 server_privileges.php:515 msgid "Allows creating new tables." msgstr "Дозвољава креирање нових табела." -#: server_privileges.php:30 server_privileges.php:195 -#: server_privileges.php:518 +#: server_privileges.php:31 server_privileges.php:196 +#: server_privileges.php:519 msgid "Allows creating temporary tables." msgstr "Дозвољава креирање привремених табела.." -#: server_privileges.php:31 server_privileges.php:209 -#: server_privileges.php:554 +#: server_privileges.php:32 server_privileges.php:210 +#: server_privileges.php:555 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 +#: server_privileges.php:33 server_privileges.php:200 +#: server_privileges.php:204 server_privileges.php:527 +#: server_privileges.php:531 msgid "Allows creating new views." msgstr "Дозволи креирање нових погледа." -#: server_privileges.php:33 server_privileges.php:183 -#: server_privileges.php:506 +#: server_privileges.php:34 server_privileges.php:184 +#: server_privileges.php:507 msgid "Allows deleting data." msgstr "Дозвољава брисање података." -#: server_privileges.php:34 server_privileges.php:185 -#: server_privileges.php:517 +#: server_privileges.php:35 server_privileges.php:186 +#: server_privileges.php:518 msgid "Allows dropping databases and tables." msgstr "Дозвољава одбацивање база и табела." -#: server_privileges.php:35 server_privileges.php:517 +#: server_privileges.php:36 server_privileges.php:518 msgid "Allows dropping tables." msgstr "Дозвољава одбацивање табела." -#: server_privileges.php:36 server_privileges.php:200 -#: server_privileges.php:534 +#: server_privileges.php:37 server_privileges.php:201 +#: server_privileges.php:535 msgid "Allows to set up events for the event scheduler" msgstr "" -#: server_privileges.php:37 server_privileges.php:210 -#: server_privileges.php:522 +#: server_privileges.php:38 server_privileges.php:211 +#: server_privileges.php:523 msgid "Allows executing stored routines." msgstr "Дозвољава извршавање сачуваних рутина." -#: server_privileges.php:38 server_privileges.php:189 -#: server_privileges.php:509 +#: server_privileges.php:39 server_privileges.php:190 +#: server_privileges.php:510 msgid "Allows importing data from and exporting data into files." msgstr "Дозвољава увоз података и њихов извоз у датотеке." -#: server_privileges.php:39 server_privileges.php:540 +#: server_privileges.php:40 server_privileges.php:541 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "Дозвољава додавање корисника и привилегија без поновног учитавања табела " "привилегија." -#: server_privileges.php:40 server_privileges.php:191 -#: server_privileges.php:516 +#: server_privileges.php:41 server_privileges.php:192 +#: server_privileges.php:517 msgid "Allows creating and dropping indexes." msgstr "Дозвољава креирање и брисање кључева." -#: server_privileges.php:41 server_privileges.php:181 -#: server_privileges.php:442 server_privileges.php:504 +#: server_privileges.php:42 server_privileges.php:182 +#: server_privileges.php:443 server_privileges.php:505 msgid "Allows inserting and replacing data." msgstr "Дозвољава уметање и замену података." -#: server_privileges.php:42 server_privileges.php:196 -#: server_privileges.php:549 +#: server_privileges.php:43 server_privileges.php:197 +#: server_privileges.php:550 msgid "Allows locking tables for the current thread." msgstr "Дозвољава закључавање табела текућим процесима." -#: server_privileges.php:43 server_privileges.php:646 -#: server_privileges.php:648 +#: server_privileges.php:44 server_privileges.php:647 +#: server_privileges.php:649 msgid "Limits the number of new connections the user may open per hour." msgstr "Ограничава број нових конекција које корисник може та отвори на сат." -#: server_privileges.php:44 server_privileges.php:634 -#: server_privileges.php:636 +#: server_privileges.php:45 server_privileges.php:635 +#: server_privileges.php:637 msgid "Limits the number of queries the user may send to the server per hour." msgstr "Ограничава број упита које корисник може да упути серверу за сат." -#: server_privileges.php:45 server_privileges.php:640 -#: server_privileges.php:642 +#: server_privileges.php:46 server_privileges.php:641 +#: server_privileges.php:643 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -4694,59 +4737,59 @@ msgstr "" "Ограничава број команди које мењају табеле или базе које корисник може да " "изврши на сат." -#: server_privileges.php:46 server_privileges.php:652 -#: server_privileges.php:654 +#: server_privileges.php:47 server_privileges.php:653 +#: server_privileges.php:655 msgid "Limits the number of simultaneous connections the user may have." msgstr "Ограничава број истовремених конекција које корисник може да има." -#: server_privileges.php:47 server_privileges.php:188 -#: server_privileges.php:544 +#: server_privileges.php:48 server_privileges.php:189 +#: server_privileges.php:545 msgid "Allows viewing processes of all users" msgstr "" -#: server_privileges.php:48 server_privileges.php:190 -#: server_privileges.php:448 server_privileges.php:550 +#: server_privileges.php:49 server_privileges.php:191 +#: server_privileges.php:449 server_privileges.php:551 msgid "Has no effect in this MySQL version." msgstr "Нема ефекта у овој верзији MySQL-a." -#: server_privileges.php:49 server_privileges.php:186 -#: server_privileges.php:545 +#: server_privileges.php:50 server_privileges.php:187 +#: server_privileges.php:546 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" "Дозвољава поновно учитавање подешавања сервера и пражњење кеша сервера." -#: server_privileges.php:50 server_privileges.php:198 -#: server_privileges.php:552 +#: server_privileges.php:51 server_privileges.php:199 +#: server_privileges.php:553 msgid "Allows the user to ask where the slaves / masters are." msgstr "Даје право кориснику да пита где су главни/помоћни сервери." -#: server_privileges.php:51 server_privileges.php:197 -#: server_privileges.php:553 +#: server_privileges.php:52 server_privileges.php:198 +#: server_privileges.php:554 msgid "Needed for the replication slaves." msgstr "Потребно због помоћних сервера за репликацију." -#: server_privileges.php:52 server_privileges.php:180 -#: server_privileges.php:439 server_privileges.php:503 +#: server_privileges.php:53 server_privileges.php:181 +#: server_privileges.php:440 server_privileges.php:504 msgid "Allows reading data." msgstr "Дозвољава читање података." -#: server_privileges.php:53 server_privileges.php:193 -#: server_privileges.php:547 +#: server_privileges.php:54 server_privileges.php:194 +#: server_privileges.php:548 msgid "Gives access to the complete list of databases." msgstr "Даје приступ комплетној листи база." -#: server_privileges.php:54 server_privileges.php:204 -#: server_privileges.php:206 server_privileges.php:519 +#: server_privileges.php:55 server_privileges.php:205 +#: server_privileges.php:207 server_privileges.php:520 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Дозвољава извршавање SHOW CREATE VIEW упита." -#: server_privileges.php:55 server_privileges.php:187 -#: server_privileges.php:546 +#: server_privileges.php:56 server_privileges.php:188 +#: server_privileges.php:547 msgid "Allows shutting down the server." msgstr "Дозвољава гашење сервера." -#: server_privileges.php:56 server_privileges.php:194 -#: server_privileges.php:543 +#: server_privileges.php:57 server_privileges.php:195 +#: server_privileges.php:544 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -4756,157 +4799,157 @@ msgstr "" "Неопходно за већину административних опција као што су подешавање глобалних " "променљивих или прекидање процеса осталих корисника." -#: server_privileges.php:57 server_privileges.php:201 -#: server_privileges.php:535 +#: server_privileges.php:58 server_privileges.php:202 +#: server_privileges.php:536 #, fuzzy msgid "Allows creating and dropping triggers" msgstr "Дозвољава креирање и брисање кључева." -#: server_privileges.php:58 server_privileges.php:182 -#: server_privileges.php:445 server_privileges.php:505 +#: server_privileges.php:59 server_privileges.php:183 +#: server_privileges.php:446 server_privileges.php:506 msgid "Allows changing data." msgstr "Дозвољава измену података." -#: server_privileges.php:59 server_privileges.php:260 +#: server_privileges.php:60 server_privileges.php:261 msgid "No privileges." msgstr "Нема привилегија." -#: server_privileges.php:302 server_privileges.php:303 +#: server_privileges.php:303 server_privileges.php:304 #, fuzzy #| msgid "None" msgctxt "None privileges" msgid "None" msgstr "нема" -#: server_privileges.php:431 server_privileges.php:566 -#: server_privileges.php:1718 server_privileges.php:1724 +#: server_privileges.php:432 server_privileges.php:567 +#: server_privileges.php:1738 server_privileges.php:1744 msgid "Table-specific privileges" msgstr "Привилегије везане за табеле" -#: server_privileges.php:432 server_privileges.php:574 -#: server_privileges.php:1540 +#: server_privileges.php:433 server_privileges.php:575 +#: server_privileges.php:1560 msgid " Note: MySQL privilege names are expressed in English " msgstr " Напомена: MySQL имена привилегија морају да буду на енглеском " -#: server_privileges.php:563 server_privileges.php:1539 +#: server_privileges.php:564 server_privileges.php:1559 msgid "Global privileges" msgstr "Глобалне привилегије" -#: server_privileges.php:565 server_privileges.php:1718 +#: server_privileges.php:566 server_privileges.php:1738 msgid "Database-specific privileges" msgstr "Привилегије везане за базу" -#: server_privileges.php:610 +#: server_privileges.php:611 msgid "Administration" msgstr "Администрација" -#: server_privileges.php:630 +#: server_privileges.php:631 msgid "Resource limits" msgstr "Ограничења ресурса" -#: server_privileges.php:631 +#: server_privileges.php:632 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "Напомена: Постављање ових опција на 0 (нулу) уклања ограничења." -#: server_privileges.php:708 +#: server_privileges.php:709 msgid "Login Information" msgstr "Подаци о пријави" -#: server_privileges.php:802 +#: server_privileges.php:803 msgid "Do not change the password" msgstr "Немој да мењаш лозинку" -#: server_privileges.php:843 server_privileges.php:2205 +#: server_privileges.php:844 server_privileges.php:2226 #, fuzzy #| msgid "No user(s) found." msgid "No user found." msgstr "Корисник није нађен." -#: server_privileges.php:887 +#: server_privileges.php:888 #, php-format msgid "The user %s already exists!" msgstr "Корисник %s већ постоји!" -#: server_privileges.php:970 +#: server_privileges.php:971 msgid "You have added a new user." msgstr "Додали сте новог корисника." -#: server_privileges.php:1191 +#: server_privileges.php:1196 #, php-format msgid "You have updated the privileges for %s." msgstr "Ажурирали сте привилегије за %s." -#: server_privileges.php:1215 +#: server_privileges.php:1220 #, php-format msgid "You have revoked the privileges for %s" msgstr "Забранили сте привилегије за %s" -#: server_privileges.php:1251 +#: server_privileges.php:1256 #, php-format msgid "The password for %s was changed successfully." msgstr "Лозинка за %s је успешно промењена." -#: server_privileges.php:1271 +#: server_privileges.php:1276 #, php-format msgid "Deleting %s" msgstr "Бришем %s" -#: server_privileges.php:1282 +#: server_privileges.php:1287 msgid "No users selected for deleting!" msgstr "Ниједан корисник није одабран за брисање!" -#: server_privileges.php:1285 +#: server_privileges.php:1290 msgid "Reloading the privileges" msgstr "Поново учитавам привилегије" -#: server_privileges.php:1300 +#: server_privileges.php:1305 msgid "The selected users have been deleted successfully." msgstr "Изабрани корисници су успешно обрисани." -#: server_privileges.php:1335 +#: server_privileges.php:1344 msgid "The privileges were reloaded successfully." msgstr "Привилегије су успешно поново учитане." -#: server_privileges.php:1363 server_privileges.php:1649 +#: server_privileges.php:1380 server_privileges.php:1669 msgid "Edit Privileges" msgstr "Промени привилегије" -#: server_privileges.php:1372 +#: server_privileges.php:1389 msgid "Revoke" msgstr "Забрани" -#: server_privileges.php:1404 +#: server_privileges.php:1424 msgid "User overview" msgstr "Преглед корисника" -#: server_privileges.php:1541 server_privileges.php:1723 -#: server_privileges.php:2072 +#: server_privileges.php:1561 server_privileges.php:1743 +#: server_privileges.php:2093 msgid "Grant" msgstr "Омогући" -#: server_privileges.php:1560 server_privileges.php:2162 +#: server_privileges.php:1580 server_privileges.php:2183 msgid "Any" msgstr "Било који" -#: server_privileges.php:1609 server_privileges.php:1633 -#: server_privileges.php:2027 server_privileges.php:2216 +#: server_privileges.php:1629 server_privileges.php:1653 +#: server_privileges.php:2048 server_privileges.php:2237 msgid "Add a new User" msgstr "Додај новог корисника" -#: server_privileges.php:1614 +#: server_privileges.php:1634 msgid "Remove selected users" msgstr "Уклони изабране кориснике" -#: server_privileges.php:1617 +#: server_privileges.php:1637 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 +#: server_privileges.php:1638 server_privileges.php:1639 +#: server_privileges.php:1640 msgid "Drop the databases that have the same names as the users." msgstr "Одбаци базе које се зову исто као корисници." -#: server_privileges.php:1636 +#: server_privileges.php:1656 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -4919,92 +4962,92 @@ msgstr "" "сервер користи ако су вршене ручне измене. У том случају %sпоново учитајте " "привилегије%s пре него што наставите." -#: server_privileges.php:1684 +#: server_privileges.php:1704 msgid "The selected user was not found in the privilege table." msgstr "Изабрани корисник није пронађен у табели привилегија." -#: server_privileges.php:1724 +#: server_privileges.php:1744 msgid "Column-specific privileges" msgstr "Привилегије везане за колоне" -#: server_privileges.php:1925 +#: server_privileges.php:1945 msgid "Add privileges on the following database" msgstr "Додај привилегије на следећој бази" -#: server_privileges.php:1943 +#: server_privileges.php:1963 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "Пре џокера _ и % треба ставити знак \\ ако их користите самостално" -#: server_privileges.php:1946 +#: server_privileges.php:1966 msgid "Add privileges on the following table" msgstr "Додај привилегије на следећој табели" -#: server_privileges.php:2003 +#: server_privileges.php:2023 msgid "Change Login Information / Copy User" msgstr "Промени информације о пријави / Копирај корисника" -#: server_privileges.php:2006 +#: server_privileges.php:2026 msgid "Create a new user with the same privileges and ..." msgstr "Направи новог корисника са истим привилегијама и ..." -#: server_privileges.php:2008 +#: server_privileges.php:2028 msgid "... keep the old one." msgstr "... сачувај старе." -#: server_privileges.php:2009 +#: server_privileges.php:2029 msgid " ... delete the old one from the user tables." msgstr " ... обриши старе из табела корисника." -#: server_privileges.php:2010 +#: server_privileges.php:2030 msgid "" " ... revoke all active privileges from the old one and delete it afterwards." msgstr " ... обустави све привилегије старог корисника и затим га обриши." -#: server_privileges.php:2011 +#: server_privileges.php:2031 msgid "" " ... delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" " ... обриши старог из табеле корисника и затим поново учитај привилегије." -#: server_privileges.php:2033 +#: server_privileges.php:2054 msgid "Database for user" msgstr "База за корисника" -#: server_privileges.php:2037 +#: server_privileges.php:2058 #, fuzzy #| msgid "None" msgctxt "Create none database for user" msgid "None" msgstr "нема" -#: server_privileges.php:2038 +#: server_privileges.php:2059 msgid "Create database with same name and grant all privileges" msgstr "Направи базу са истим именом и додај све привилегије" -#: server_privileges.php:2039 +#: server_privileges.php:2060 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "Дај све привилегије на имену са џокерима (корисничко_име\\_%)" -#: server_privileges.php:2042 +#: server_privileges.php:2063 #, fuzzy, php-format msgid "Grant all privileges on database "%s"" msgstr "Провери привилегије за базу "%s"." -#: server_privileges.php:2065 +#: server_privileges.php:2086 #, php-format msgid "Users having access to "%s"" msgstr "Корисници који имају приступ "%s"" -#: server_privileges.php:2173 +#: server_privileges.php:2194 msgid "global" msgstr "глобално" -#: server_privileges.php:2175 +#: server_privileges.php:2196 msgid "database-specific" msgstr "Специфично за базу" -#: server_privileges.php:2177 +#: server_privileges.php:2198 msgid "wildcard" msgstr "џокер" @@ -7827,6 +7870,10 @@ msgstr "" msgid "Show insert query" msgstr "Приказ као SQL упит" +#: tbl_change.php:1143 +msgid "and then" +msgstr "и онда" + #: tbl_change.php:1147 msgid "Go back to previous page" msgstr "Назад на претходну страну" @@ -7907,7 +7954,7 @@ msgstr "(\"PRIMARY\" мора бити име само прима msgid "Add to index  %s column(s)" msgstr "Додај у кључ  %s колона(е)" -#: tbl_indexes.php:256 tbl_structure.php:589 tbl_structure.php:600 +#: tbl_indexes.php:256 tbl_structure.php:587 tbl_structure.php:598 msgid "Column count has to be larger than zero." msgstr "Број колона мора бити већи од нуле." @@ -8024,39 +8071,39 @@ msgstr "Провери референцијални интегритет:" msgid "Show tables" msgstr "Прикажи табеле" -#: tbl_printview.php:310 tbl_structure.php:656 +#: tbl_printview.php:310 tbl_structure.php:654 msgid "Space usage" msgstr "Заузеће" -#: tbl_printview.php:314 tbl_structure.php:660 +#: tbl_printview.php:314 tbl_structure.php:658 msgid "Usage" msgstr "Заузеће" -#: tbl_printview.php:341 tbl_structure.php:687 +#: tbl_printview.php:341 tbl_structure.php:685 msgid "Effective" msgstr "Ефективне" -#: tbl_printview.php:366 tbl_structure.php:725 +#: tbl_printview.php:366 tbl_structure.php:723 msgid "Row Statistics" msgstr "Статистике реда" -#: tbl_printview.php:369 tbl_structure.php:728 +#: tbl_printview.php:369 tbl_structure.php:726 msgid "Statements" msgstr "Име" -#: tbl_printview.php:380 tbl_structure.php:740 +#: tbl_printview.php:380 tbl_structure.php:738 msgid "static" msgstr "" -#: tbl_printview.php:382 tbl_structure.php:742 +#: tbl_printview.php:382 tbl_structure.php:740 msgid "dynamic" msgstr "динамички" -#: tbl_printview.php:404 tbl_structure.php:785 +#: tbl_printview.php:404 tbl_structure.php:783 msgid "Row length" msgstr "Дужина реда" -#: tbl_printview.php:414 tbl_structure.php:793 +#: tbl_printview.php:414 tbl_structure.php:791 msgid " Row size " msgstr "Величина реда" @@ -8128,50 +8175,50 @@ msgstr "нема" msgid "Column %s has been dropped" msgstr "Табела %s је одбачена" -#: tbl_structure.php:385 +#: tbl_structure.php:384 #, php-format msgid "A primary key has been added on %s" msgstr "Примарни кључ је управо додат %s" -#: tbl_structure.php:400 tbl_structure.php:414 tbl_structure.php:428 +#: tbl_structure.php:398 tbl_structure.php:412 tbl_structure.php:426 #, php-format msgid "An index has been added on %s" msgstr "Кључ је управо додат %s" -#: tbl_structure.php:506 tbl_structure.php:508 +#: tbl_structure.php:504 tbl_structure.php:506 msgid "Relation view" msgstr "Релациони поглед" -#: tbl_structure.php:515 tbl_structure.php:517 +#: tbl_structure.php:513 tbl_structure.php:515 msgid "Propose table structure" msgstr "Предложи структуру табеле" -#: tbl_structure.php:540 +#: tbl_structure.php:538 #, fuzzy #| msgid "Add %s field(s)" msgid "Add column" msgstr "Додај %s поља" -#: tbl_structure.php:554 +#: tbl_structure.php:552 msgid "At End of Table" msgstr "На крају табеле" -#: tbl_structure.php:555 +#: tbl_structure.php:553 msgid "At Beginning of Table" msgstr "На почетку табеле" -#: tbl_structure.php:556 +#: tbl_structure.php:554 #, php-format msgid "After %s" msgstr "После %s" -#: tbl_structure.php:594 +#: tbl_structure.php:592 #, fuzzy, php-format #| msgid "Create an index on %s columns" msgid "Create an index on  %s columns" msgstr "Направи кључ на %s колона" -#: tbl_structure.php:756 +#: tbl_structure.php:754 msgid "partitioned" msgstr "" @@ -8626,9 +8673,6 @@ msgstr "Промени име табеле у " #~ msgid "Process list" #~ msgstr "Листа процеса" -#~ msgid "Reload privileges" -#~ msgstr "Поново учитај привилегије" - #~ msgid "" #~ "The users will still have the USAGE privilege until the privileges are " #~ "reloaded." diff --git a/po/sr@latin.po b/po/sr@latin.po index 475ecf147..17f2433fe 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-13 09:03-0400\n" +"POT-Creation-Date: 2010-06-22 00:55+0530\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:1514 +#: libraries/display_tbl.lib.php:417 server_privileges.php:1534 msgid "Show all" msgstr "Prikaži sve" -#: browse_foreigners.php:82 libraries/common.lib.php:2313 +#: browse_foreigners.php:82 libraries/common.lib.php:2317 #: 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,18 +39,18 @@ 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:2831 -#: libraries/common.lib.php:2838 libraries/db_links.inc.php:75 +#: db_structure.php:106 libraries/common.lib.php:2835 +#: libraries/common.lib.php:2842 libraries/db_links.inc.php:75 #: libraries/tbl_links.inc.php:63 msgid "Search" msgstr "Pretraživanje" -#: browse_foreigners.php:153 db_operations.php:385 db_operations.php:429 -#: db_operations.php:499 db_operations.php:609 db_search.php:362 -#: db_structure.php:567 js/messages.php:48 libraries/Config.class.php:1046 +#: browse_foreigners.php:153 db_operations.php:394 db_operations.php:438 +#: db_operations.php:508 db_operations.php:618 db_search.php:362 +#: db_structure.php:565 js/messages.php:53 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:1335 libraries/common.lib.php:2288 +#: libraries/common.lib.php:1335 libraries/common.lib.php:2292 #: 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,15 +61,15 @@ 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:664 server_privileges.php:1624 -#: server_privileges.php:1971 server_privileges.php:2018 -#: server_privileges.php:2057 server_replication.php:235 +#: server_privileges.php:665 server_privileges.php:1644 +#: server_privileges.php:1991 server_privileges.php:2038 +#: server_privileges.php:2078 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 #: tbl_operations.php:302 tbl_operations.php:499 tbl_operations.php:561 -#: tbl_operations.php:681 tbl_select.php:327 tbl_structure.php:562 -#: tbl_structure.php:597 tbl_tracking.php:395 tbl_tracking.php:512 +#: tbl_operations.php:681 tbl_select.php:327 tbl_structure.php:560 +#: tbl_structure.php:595 tbl_tracking.php:395 tbl_tracking.php:512 #: view_create.php:182 view_operations.php:101 msgid "Go" msgstr "Kreni" @@ -95,7 +95,7 @@ msgstr "Koristi ovu vrednost" msgid "Database %1$s has been created." msgstr "Baza %s je odbačena." -#: db_datadict.php:49 db_operations.php:378 +#: db_datadict.php:49 db_operations.php:387 msgid "Database comment: " msgstr "Komentar baze:" @@ -122,10 +122,10 @@ 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:2070 +#: pdf_schema.php:1263 pdf_schema.php:1284 server_privileges.php:2091 #: 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 +#: tbl_structure.php:657 tbl_tracking.php:274 tbl_tracking.php:321 msgid "Type" msgstr "Tip" @@ -138,7 +138,7 @@ msgstr "Tip" msgid "Null" msgstr "Null" -#: db_datadict.php:178 db_structure.php:501 libraries/export/htmlword.php:247 +#: db_datadict.php:178 db_structure.php:499 libraries/export/htmlword.php:247 #: libraries/export/latex.php:360 libraries/export/odt.php:303 #: libraries/export/texytext.php:236 libraries/tbl_properties.inc.php:106 #: pdf_schema.php:1266 pdf_schema.php:1287 tbl_printview.php:146 @@ -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: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 +#: pdf_schema.php:1344 server_privileges.php:1588 server_privileges.php:1599 +#: server_privileges.php:1909 server_privileges.php:1914 +#: server_privileges.php:2208 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:1565 -#: server_privileges.php:1579 server_privileges.php:1889 -#: server_privileges.php:1892 server_privileges.php:2187 sql.php:193 +#: server_databases.php:64 server_privileges.php:1585 +#: server_privileges.php:1599 server_privileges.php:1909 +#: server_privileges.php:1912 server_privileges.php:2208 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" @@ -211,126 +211,122 @@ msgstr "Izaberi sve" msgid "Unselect All" msgstr "ništa" -#: db_operations.php:38 tbl_create.php:54 +#: db_operations.php:43 tbl_create.php:54 msgid "The database name is empty!" msgstr "Ime baze nije zadato!" -#: db_operations.php:236 +#: db_operations.php:241 #, php-format msgid "Database %s has been renamed to %s" msgstr "Baza %s je preimenovana u %s" -#: db_operations.php:240 +#: db_operations.php:245 #, php-format msgid "Database %s has been copied to %s" msgstr "Baza %s je prekopirana u %s" -#: db_operations.php:412 +#: db_operations.php:421 msgid "Rename database to" msgstr "Preimenuj bazu u" -#: db_operations.php:417 server_processlist.php:57 +#: db_operations.php:426 server_processlist.php:57 msgid "Command" msgstr "Naredba" -#: db_operations.php:429 tbl_change.php:1143 -msgid "and then" -msgstr "i onda" - -#: db_operations.php:455 +#: db_operations.php:464 msgid "Copy database to" msgstr "Kopiraj bazu u" -#: db_operations.php:462 tbl_operations.php:528 tbl_tracking.php:388 +#: db_operations.php:471 tbl_operations.php:528 tbl_tracking.php:388 msgid "Structure only" msgstr "Samo struktura" -#: db_operations.php:463 tbl_operations.php:529 tbl_tracking.php:390 +#: db_operations.php:472 tbl_operations.php:529 tbl_tracking.php:390 msgid "Structure and data" msgstr "Struktura i podaci" -#: db_operations.php:464 tbl_operations.php:530 tbl_tracking.php:389 +#: db_operations.php:473 tbl_operations.php:530 tbl_tracking.php:389 msgid "Data only" msgstr "Samo podaci" -#: db_operations.php:472 +#: db_operations.php:481 msgid "CREATE DATABASE before copying" msgstr "CREATE DATABASE pre kopiranja" -#: db_operations.php:475 libraries/export/sql.php:52 +#: db_operations.php:484 libraries/export/sql.php:52 #: libraries/export/sql.php:74 libraries/export/sql.php:76 #: libraries/export/sql.php:82 tbl_operations.php:536 #, php-format msgid "Add %s" msgstr "Dodaj %s" -#: db_operations.php:479 libraries/export/sql.php:78 tbl_operations.php:299 +#: db_operations.php:488 libraries/export/sql.php:78 tbl_operations.php:299 #: tbl_operations.php:538 msgid "Add AUTO_INCREMENT value" msgstr "Dodaj AUTO_INCREMENT vrednost" -#: db_operations.php:483 tbl_operations.php:545 +#: db_operations.php:492 tbl_operations.php:545 msgid "Add constraints" msgstr "Dodaj ograničenja" -#: db_operations.php:496 +#: db_operations.php:505 msgid "Switch to copied database" msgstr "Prebaci se na kopiranu bazu" -#: db_operations.php:537 +#: db_operations.php:546 msgid "BLOB Repository" msgstr "" -#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1352 -#: libraries/server_links.inc.php:49 server_processlist.php:59 +#: db_operations.php:549 db_tracking.php:76 libraries/common.lib.php:1352 +#: libraries/server_links.inc.php:50 server_processlist.php:59 #: tbl_tracking.php:596 test/theme.php:101 msgid "Status" msgstr "Status" -#: db_operations.php:548 +#: db_operations.php:557 #, fuzzy #| msgid "Enabled" msgctxt "BLOB repository" msgid "Enabled" msgstr "Omogućeno" -#: db_operations.php:552 +#: db_operations.php:561 #, fuzzy msgid "Disable" msgstr "Onemogućeno" -#: db_operations.php:562 +#: db_operations.php:571 msgid "Damaged" msgstr "" -#: db_operations.php:566 +#: db_operations.php:575 #, fuzzy msgctxt "BLOB repository" msgid "Repair" msgstr "Popravi tabelu" -#: db_operations.php:574 +#: db_operations.php:583 #, fuzzy #| msgid "Disabled" msgctxt "BLOB repository" msgid "Disabled" msgstr "Onemogućeno" -#: db_operations.php:578 +#: db_operations.php:587 #, fuzzy msgid "Enable" msgstr "Omogućeno" -#: db_operations.php:602 libraries/Index.class.php:448 +#: db_operations.php:611 libraries/Index.class.php:448 #: libraries/db_structure.lib.php:62 libraries/mysql_charsets.lib.php:107 #: libraries/tbl_properties.inc.php:107 libraries/tbl_properties.inc.php:730 #: server_collations.php:54 server_collations.php:66 server_databases.php:111 #: tbl_operations.php:363 tbl_select.php:137 tbl_structure.php:179 -#: tbl_structure.php:767 tbl_tracking.php:275 tbl_tracking.php:326 +#: tbl_structure.php:765 tbl_tracking.php:275 tbl_tracking.php:326 msgid "Collation" msgstr "Sortiranje" -#: db_operations.php:615 main.php:316 pdf_schema.php:34 +#: db_operations.php:624 main.php:316 pdf_schema.php:34 #, php-format msgid "" "The additional features for working with linked tables have been " @@ -339,14 +335,14 @@ msgstr "" "Dodatne mogućnosti za rad sa povezanim tabelama su isključene. Da biste " "saznali zašto, kliknite %sovde%s." -#: db_operations.php:648 +#: db_operations.php:657 msgid "Edit PDF Pages" 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:1665 -#: server_privileges.php:1721 server_privileges.php:1985 +#: libraries/header.inc.php:130 pdf_pages.php:424 server_privileges.php:1685 +#: server_privileges.php:1741 server_privileges.php:2005 #: server_synchronize.php:423 server_synchronize.php:866 tbl_tracking.php:592 #: test/theme.php:75 msgid "Table" @@ -355,7 +351,7 @@ msgstr "Tabela" #: db_printview.php:105 libraries/db_structure.lib.php:56 #: libraries/header_printview.inc.php:63 libraries/import.lib.php:146 #: navigation.php:638 navigation.php:660 server_databases.php:122 -#: tbl_printview.php:394 tbl_structure.php:365 tbl_structure.php:777 +#: tbl_printview.php:394 tbl_structure.php:365 tbl_structure.php:775 msgid "Rows" msgstr "Redova" @@ -363,30 +359,30 @@ msgstr "Redova" msgid "Size" msgstr "Veličina" -#: db_printview.php:162 db_structure.php:457 libraries/export/sql.php:559 +#: db_printview.php:162 db_structure.php:455 libraries/export/sql.php:559 #: libraries/export/sql.php:899 msgid "in use" msgstr "se koristi" #: db_printview.php:187 libraries/db_info.inc.php:88 #: libraries/export/sql.php:514 pdf_schema.php:1241 tbl_printview.php:434 -#: tbl_structure.php:809 +#: tbl_structure.php:807 msgid "Creation" msgstr "Napravljeno" #: db_printview.php:196 libraries/db_info.inc.php:93 #: libraries/export/sql.php:519 pdf_schema.php:1246 tbl_printview.php:444 -#: tbl_structure.php:817 +#: tbl_structure.php:815 msgid "Last update" msgstr "Poslednja izmena" #: db_printview.php:205 libraries/db_info.inc.php:98 #: libraries/export/sql.php:524 pdf_schema.php:1251 tbl_printview.php:454 -#: tbl_structure.php:825 +#: tbl_structure.php:823 msgid "Last check" msgstr "Poslednja provera" -#: db_printview.php:222 db_structure.php:480 +#: db_printview.php:222 db_structure.php:478 #, fuzzy, php-format #| msgid "%s table(s)" msgid "%s table" @@ -448,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:297 tbl_change.php:1031 tbl_indexes.php:250 +#: server_privileges.php:298 tbl_change.php:1031 tbl_indexes.php:250 #: tbl_select.php:288 msgid "Or" msgstr "ili" @@ -521,9 +517,9 @@ 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:2833 +#: db_structure.php:105 libraries/common.lib.php:2837 #: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50 -#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:467 +#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:465 msgid "Browse" msgstr "Pregled" @@ -568,36 +564,36 @@ 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:2832 libraries/sql_query_form.lib.php:334 +#: libraries/common.lib.php:2836 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:2829 libraries/common.lib.php:2836 +#: libraries/common.lib.php:2833 libraries/common.lib.php:2840 #: 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:1106 #: libraries/tbl_links.inc.php:56 pmd_general.php:134 -#: server_privileges.php:593 server_replication.php:315 tbl_tracking.php:269 +#: server_privileges.php:594 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:1656 +#: db_structure.php:543 db_structure.php:544 db_tracking.php:91 +#: libraries/Index.class.php:483 libraries/common.lib.php:1657 #: 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 -#: tbl_structure.php:152 tbl_structure.php:471 +#: tbl_structure.php:152 tbl_structure.php:469 msgid "Drop" 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:1655 +#: db_structure.php:541 db_structure.php:542 libraries/common.lib.php:1656 #: libraries/mult_submits.inc.php:39 libraries/tbl_links.inc.php:105 msgid "Empty" msgstr "Isprazni" @@ -607,111 +603,111 @@ msgstr "Isprazni" msgid "Table %s has been emptied" msgstr "Tabela %s je ispražnjena" -#: db_structure.php:326 libraries/tbl_links.inc.php:133 +#: db_structure.php:325 libraries/tbl_links.inc.php:133 #, php-format msgid "View %s has been dropped" msgstr "Pogled %s je odbačen" -#: db_structure.php:326 libraries/tbl_links.inc.php:133 +#: db_structure.php:325 libraries/tbl_links.inc.php:133 #, php-format msgid "Table %s has been dropped" msgstr "Tabela %s je odbačena" -#: db_structure.php:333 +#: db_structure.php:332 msgid "Tracking is active." msgstr "" -#: db_structure.php:335 +#: db_structure.php:334 msgid "Tracking is not active." msgstr "" -#: db_structure.php:420 libraries/display_tbl.lib.php:1944 +#: db_structure.php:418 libraries/display_tbl.lib.php:1944 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation%" "s." msgstr "" -#: db_structure.php:434 db_structure.php:448 libraries/header.inc.php:126 +#: db_structure.php:432 db_structure.php:446 libraries/header.inc.php:130 #: libraries/tbl_info.inc.php:66 tbl_structure.php:185 test/theme.php:74 msgid "View" msgstr "Pogled" -#: db_structure.php:485 libraries/db_structure.lib.php:49 -#: libraries/server_links.inc.php:70 server_replication.php:33 +#: db_structure.php:483 libraries/db_structure.lib.php:49 +#: libraries/server_links.inc.php:71 server_replication.php:33 #: server_replication.php:164 server_status.php:369 msgid "Replication" msgstr "Replikacija" -#: db_structure.php:489 +#: db_structure.php:487 msgid "Sum" msgstr "Ukupno" -#: db_structure.php:496 libraries/StorageEngine.class.php:356 +#: db_structure.php:494 libraries/StorageEngine.class.php:356 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "%s je podrazumevani pogon skladištenja na ovom MySQL serveru." -#: db_structure.php:524 db_structure.php:541 db_structure.php:542 +#: db_structure.php:522 db_structure.php:539 db_structure.php:540 #: 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:1596 tbl_structure.php:455 -#: tbl_structure.php:464 +#: server_databases.php:351 server_privileges.php:1616 tbl_structure.php:453 +#: tbl_structure.php:462 msgid "With selected:" msgstr "Označeno:" -#: db_structure.php:527 libraries/display_tbl.lib.php:2076 -#: server_databases.php:348 server_privileges.php:569 -#: server_privileges.php:1599 tbl_structure.php:458 +#: db_structure.php:525 libraries/display_tbl.lib.php:2076 +#: server_databases.php:348 server_privileges.php:570 +#: server_privileges.php:1619 tbl_structure.php:456 msgid "Check All" msgstr "Označi sve" -#: db_structure.php:531 libraries/display_tbl.lib.php:2077 +#: db_structure.php:529 libraries/display_tbl.lib.php:2077 #: libraries/replication_gui.lib.php:33 server_databases.php:350 -#: server_privileges.php:572 server_privileges.php:1603 tbl_structure.php:462 +#: server_privileges.php:573 server_privileges.php:1623 tbl_structure.php:460 msgid "Uncheck All" msgstr "nijedno" -#: db_structure.php:536 +#: db_structure.php:534 msgid "Check tables having overhead" msgstr "Proveri tabele koje imaju prekoračenja" -#: db_structure.php:547 db_structure.php:548 db_structure.php:599 +#: db_structure.php:545 db_structure.php:546 db_structure.php:597 #: libraries/display_tbl.lib.php:2180 libraries/mult_submits.inc.php:28 -#: tbl_structure.php:492 tbl_structure.php:494 +#: tbl_structure.php:490 tbl_structure.php:492 msgid "Print view" msgstr "Za štampu" -#: db_structure.php:549 db_structure.php:550 libraries/mult_submits.inc.php:42 +#: db_structure.php:547 db_structure.php:548 libraries/mult_submits.inc.php:42 #: tbl_operations.php:581 msgid "Check table" msgstr "Proveri tabelu" -#: db_structure.php:551 db_structure.php:552 libraries/mult_submits.inc.php:47 -#: tbl_operations.php:621 tbl_structure.php:709 tbl_structure.php:711 +#: db_structure.php:549 db_structure.php:550 libraries/mult_submits.inc.php:47 +#: tbl_operations.php:621 tbl_structure.php:707 tbl_structure.php:709 msgid "Optimize table" msgstr "Optimizuj tabelu" -#: db_structure.php:553 db_structure.php:554 libraries/mult_submits.inc.php:52 +#: db_structure.php:551 db_structure.php:552 libraries/mult_submits.inc.php:52 #: tbl_operations.php:611 msgid "Repair table" msgstr "Popravi tabelu" -#: db_structure.php:555 db_structure.php:556 libraries/mult_submits.inc.php:57 +#: db_structure.php:553 db_structure.php:554 libraries/mult_submits.inc.php:57 #: tbl_operations.php:601 msgid "Analyze table" msgstr "Analiziraj tabelu" -#: db_structure.php:557 db_structure.php:558 libraries/db_links.inc.php:71 +#: db_structure.php:555 db_structure.php:556 libraries/db_links.inc.php:71 #: 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:1380 +#: libraries/server_links.inc.php:85 libraries/tbl_links.inc.php:82 +#: pmd_pdf.php:84 pmd_pdf.php:109 server_privileges.php:1397 #: setup/frames/menu.inc.php:22 tbl_row_action.php:59 msgid "Export" msgstr "Izvoz" -#: db_structure.php:606 libraries/display_pdf_schema.lib.php:44 +#: db_structure.php:604 libraries/display_pdf_schema.lib.php:44 msgid "Data Dictionary" msgstr "Rečnik podataka" @@ -723,10 +719,10 @@ msgstr "Proveri tabelu" #: db_tracking.php:71 libraries/export/htmlword.php:86 #: libraries/export/latex.php:148 libraries/export/odt.php:113 #: libraries/export/sql.php:342 libraries/export/texytext.php:84 -#: libraries/export/xml.php:255 libraries/header.inc.php:106 +#: libraries/export/xml.php:255 libraries/header.inc.php:110 #: libraries/header_printview.inc.php:58 server_databases.php:169 -#: server_privileges.php:1660 server_privileges.php:1721 -#: server_privileges.php:1979 server_processlist.php:56 +#: server_privileges.php:1680 server_privileges.php:1741 +#: server_privileges.php:1999 server_processlist.php:56 #: server_synchronize.php:1179 server_synchronize.php:1183 #: tbl_tracking.php:591 test/theme.php:65 msgid "Database" @@ -748,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:1542 server_privileges.php:1725 -#: server_privileges.php:2073 tbl_structure.php:187 +#: server_privileges.php:1562 server_privileges.php:1745 +#: server_privileges.php:2094 tbl_structure.php:187 msgid "Action" msgstr "Akcija" @@ -786,8 +782,8 @@ msgstr "Samo struktura" msgid "Untracked tables" msgstr "Proveri tabelu" -#: db_tracking.php:172 db_tracking.php:174 tbl_structure.php:528 -#: tbl_structure.php:530 +#: db_tracking.php:172 db_tracking.php:174 tbl_structure.php:526 +#: tbl_structure.php:528 #, fuzzy msgid "Track table" msgstr "Proveri tabelu" @@ -955,186 +951,233 @@ msgstr "Ime domaćina je prazno!" msgid "The user name is empty!" msgstr "Ime korisnika nije uneto!" -#: js/messages.php:44 server_privileges.php:1236 user_password.php:70 +#: js/messages.php:44 server_privileges.php:1241 user_password.php:70 msgid "The password is empty!" msgstr "Lozinka je prazna!" -#: js/messages.php:45 server_privileges.php:1234 user_password.php:73 +#: js/messages.php:45 server_privileges.php:1239 user_password.php:73 msgid "The passwords aren't the same!" msgstr "Lozinke nisu identične!" -#: js/messages.php:49 pmd_general.php:342 pmd_general.php:379 +#: js/messages.php:46 +#, fuzzy +#| msgid "Add a new User" +msgid "Add a New User" +msgstr "Dodaj novog korisnika" + +#: js/messages.php:47 js/messages.php:54 pmd_general.php:342 +#: pmd_general.php:379 msgid "Cancel" msgstr "Otkaži" -#: js/messages.php:52 pmd_save_pos.php:54 +#: js/messages.php:48 +#, fuzzy +msgid "Create User" +msgstr "Napravi relaciju" + +#: js/messages.php:49 +#, fuzzy +#| msgid "Reload privileges" +msgid "Reloading Privileges" +msgstr "Ponovo učitaj privilegije" + +#: js/messages.php:50 +#, fuzzy +#| msgid "Remove selected users" +msgid "Removing Selected Users" +msgstr "Ukloni izabrane korisnike" + +#: js/messages.php:57 +#, fuzzy +msgid "Loading" +msgstr "Lokalni" + +#: js/messages.php:58 +#, fuzzy +#| msgid "Processes" +msgid "Processing Request" +msgstr "Procesi" + +#: js/messages.php:59 +msgid "Error in Processing Request" +msgstr "" + +#: js/messages.php:60 +msgid "Dropping Column" +msgstr "" + +#: js/messages.php:61 +msgid "Adding Primary Key" +msgstr "" + +#: js/messages.php:64 pmd_save_pos.php:54 msgid "Modifications have been saved" msgstr "Izmene su sačuvane" -#: js/messages.php:53 pmd_relation_upd.php:49 +#: js/messages.php:65 pmd_relation_upd.php:49 msgid "Relation deleted" msgstr "Relacija obrisana" -#: js/messages.php:54 pmd_relation_new.php:64 +#: js/messages.php:66 pmd_relation_new.php:64 msgid "FOREIGN KEY relation added" msgstr "" -#: js/messages.php:55 pmd_relation_new.php:86 +#: js/messages.php:67 pmd_relation_new.php:86 msgid "Internal relation added" msgstr "Dodata interna relacija" -#: js/messages.php:56 pmd_relation_new.php:63 pmd_relation_new.php:88 +#: js/messages.php:68 pmd_relation_new.php:63 pmd_relation_new.php:88 msgid "Error: Relation not added." msgstr "Greška: relacija nije dodata." -#: js/messages.php:57 pmd_relation_new.php:31 +#: js/messages.php:69 pmd_relation_new.php:31 msgid "Error: relation already exists." msgstr "Greška: relacija već postoji." -#: js/messages.php:58 +#: js/messages.php:70 msgid "Error saving coordinates for Designer." msgstr "Greška pri snimanju koordinata za Dizajner." -#: js/messages.php:59 libraries/relation.lib.php:107 +#: js/messages.php:71 libraries/relation.lib.php:107 #: libraries/relation.lib.php:119 msgid "General relation features" msgstr "Opšte osobine relacija" -#: js/messages.php:59 libraries/relation.lib.php:101 +#: js/messages.php:71 libraries/relation.lib.php:101 #: libraries/relation.lib.php:108 msgid "Disabled" msgstr "Onemogućeno" -#: js/messages.php:60 +#: js/messages.php:72 msgid "Select referenced key" msgstr "Izaberite referencirani ključ" -#: js/messages.php:61 +#: js/messages.php:73 msgid "Select Foreign Key" msgstr "Izaberi strani ključ" -#: js/messages.php:62 +#: js/messages.php:74 msgid "Please select the primary key or a unique key" msgstr "Molimo izaberite primarni ili jedinstveni ključ" -#: js/messages.php:63 pmd_general.php:77 tbl_relation.php:548 +#: js/messages.php:75 pmd_general.php:77 tbl_relation.php:548 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" msgstr "Izaberi polja za prikaz" #. l10n: Display text for calendar close link -#: js/messages.php:73 +#: js/messages.php:85 #, fuzzy msgid "Done" msgstr "Podaci" #. l10n: Display text for previous month link in calendar -#: js/messages.php:75 +#: js/messages.php:87 #, fuzzy #| msgid "Previous" msgid "Prev" msgstr "Prethodna" #. l10n: Display text for next month link in calendar -#: js/messages.php:77 libraries/common.lib.php:2353 -#: libraries/common.lib.php:2356 libraries/display_tbl.lib.php:338 +#: js/messages.php:89 libraries/common.lib.php:2357 +#: libraries/common.lib.php:2360 libraries/display_tbl.lib.php:338 #: server_binlog.php:205 server_binlog.php:207 tbl_printview.php:424 -#: tbl_structure.php:801 +#: tbl_structure.php:799 msgid "Next" msgstr "Sledeći" #. l10n: Display text for current month link in calendar -#: js/messages.php:79 +#: js/messages.php:91 #, fuzzy #| msgid "Total" msgid "Today" msgstr "Ukupno" -#: js/messages.php:82 +#: js/messages.php:94 #, fuzzy #| msgid "Binary" msgid "January" msgstr "Binarni" -#: js/messages.php:83 +#: js/messages.php:95 msgid "February" msgstr "" -#: js/messages.php:84 +#: js/messages.php:96 #, fuzzy #| msgid "Mar" msgid "March" msgstr "mar" -#: js/messages.php:85 +#: js/messages.php:97 #, fuzzy #| msgid "Apr" msgid "April" msgstr "apr" -#: js/messages.php:86 +#: js/messages.php:98 msgid "May" msgstr "maj" -#: js/messages.php:87 +#: js/messages.php:99 #, fuzzy #| msgid "Jun" msgid "June" msgstr "jun" -#: js/messages.php:88 +#: js/messages.php:100 #, fuzzy #| msgid "Jul" msgid "July" msgstr "jul" -#: js/messages.php:89 +#: js/messages.php:101 #, fuzzy #| msgid "Aug" msgid "August" msgstr "avg" -#: js/messages.php:90 +#: js/messages.php:102 msgid "September" msgstr "" -#: js/messages.php:91 +#: js/messages.php:103 #, fuzzy #| msgid "Oct" msgid "October" msgstr "okt" -#: js/messages.php:92 +#: js/messages.php:104 msgid "November" msgstr "" -#: js/messages.php:93 +#: js/messages.php:105 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:97 libraries/common.lib.php:1557 +#: js/messages.php:109 libraries/common.lib.php:1557 msgid "Jan" msgstr "jan" #. l10n: Short month name -#: js/messages.php:99 libraries/common.lib.php:1559 +#: js/messages.php:111 libraries/common.lib.php:1559 msgid "Feb" msgstr "feb" #. l10n: Short month name -#: js/messages.php:101 libraries/common.lib.php:1561 +#: js/messages.php:113 libraries/common.lib.php:1561 msgid "Mar" msgstr "mar" #. l10n: Short month name -#: js/messages.php:103 libraries/common.lib.php:1563 +#: js/messages.php:115 libraries/common.lib.php:1563 msgid "Apr" msgstr "apr" #. l10n: Short month name -#: js/messages.php:105 libraries/common.lib.php:1565 +#: js/messages.php:117 libraries/common.lib.php:1565 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1142,176 +1185,176 @@ msgid "May" msgstr "maj" #. l10n: Short month name -#: js/messages.php:107 libraries/common.lib.php:1567 +#: js/messages.php:119 libraries/common.lib.php:1567 msgid "Jun" msgstr "jun" #. l10n: Short month name -#: js/messages.php:109 libraries/common.lib.php:1569 +#: js/messages.php:121 libraries/common.lib.php:1569 msgid "Jul" msgstr "jul" #. l10n: Short month name -#: js/messages.php:111 libraries/common.lib.php:1571 +#: js/messages.php:123 libraries/common.lib.php:1571 msgid "Aug" msgstr "avg" #. l10n: Short month name -#: js/messages.php:113 libraries/common.lib.php:1573 +#: js/messages.php:125 libraries/common.lib.php:1573 msgid "Sep" msgstr "sep" #. l10n: Short month name -#: js/messages.php:115 libraries/common.lib.php:1575 +#: js/messages.php:127 libraries/common.lib.php:1575 msgid "Oct" msgstr "okt" #. l10n: Short month name -#: js/messages.php:117 libraries/common.lib.php:1577 +#: js/messages.php:129 libraries/common.lib.php:1577 msgid "Nov" msgstr "nov" #. l10n: Short month name -#: js/messages.php:119 libraries/common.lib.php:1579 +#: js/messages.php:131 libraries/common.lib.php:1579 msgid "Dec" msgstr "dec" -#: js/messages.php:122 +#: js/messages.php:134 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "Ned" -#: js/messages.php:123 +#: js/messages.php:135 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "Pon" -#: js/messages.php:124 +#: js/messages.php:136 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "Uto" -#: js/messages.php:125 +#: js/messages.php:137 msgid "Wednesday" msgstr "" -#: js/messages.php:126 +#: js/messages.php:138 msgid "Thursday" msgstr "" -#: js/messages.php:127 +#: js/messages.php:139 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "Pet" -#: js/messages.php:128 +#: js/messages.php:140 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:132 libraries/common.lib.php:1582 +#: js/messages.php:144 libraries/common.lib.php:1582 msgid "Sun" msgstr "Ned" #. l10n: Short week day name -#: js/messages.php:134 libraries/common.lib.php:1584 +#: js/messages.php:146 libraries/common.lib.php:1584 msgid "Mon" msgstr "Pon" #. l10n: Short week day name -#: js/messages.php:136 libraries/common.lib.php:1586 +#: js/messages.php:148 libraries/common.lib.php:1586 msgid "Tue" msgstr "Uto" #. l10n: Short week day name -#: js/messages.php:138 libraries/common.lib.php:1588 +#: js/messages.php:150 libraries/common.lib.php:1588 msgid "Wed" msgstr "Sre" #. l10n: Short week day name -#: js/messages.php:140 libraries/common.lib.php:1590 +#: js/messages.php:152 libraries/common.lib.php:1590 msgid "Thu" msgstr "Čet" #. l10n: Short week day name -#: js/messages.php:142 libraries/common.lib.php:1592 +#: js/messages.php:154 libraries/common.lib.php:1592 msgid "Fri" msgstr "Pet" #. l10n: Short week day name -#: js/messages.php:144 libraries/common.lib.php:1594 +#: js/messages.php:156 libraries/common.lib.php:1594 msgid "Sat" msgstr "Sub" #. l10n: Minimal week day name -#: js/messages.php:148 +#: js/messages.php:160 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "Ned" #. l10n: Minimal week day name -#: js/messages.php:150 +#: js/messages.php:162 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "Pon" #. l10n: Minimal week day name -#: js/messages.php:152 +#: js/messages.php:164 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "Uto" #. l10n: Minimal week day name -#: js/messages.php:154 +#: js/messages.php:166 #, fuzzy #| msgid "Wed" msgid "We" msgstr "Sre" #. l10n: Minimal week day name -#: js/messages.php:156 +#: js/messages.php:168 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "Čet" #. l10n: Minimal week day name -#: js/messages.php:158 +#: js/messages.php:170 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "Pet" #. l10n: Minimal week day name -#: js/messages.php:160 +#: js/messages.php:172 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "Sub" #. l10n: Column header for week of the year in calendar -#: js/messages.php:162 +#: js/messages.php:174 msgid "Wk" msgstr "" -#: js/messages.php:164 +#: js/messages.php:176 msgid "Hour" msgstr "" -#: js/messages.php:165 +#: js/messages.php:177 #, fuzzy #| msgid "in use" msgid "Minute" msgstr "se koristi" -#: js/messages.php:166 +#: js/messages.php:178 #, fuzzy #| msgid "per second" msgid "Second" @@ -1372,7 +1415,7 @@ msgstr "Ključevi" #: libraries/Index.class.php:444 libraries/mult_submits.inc.php:103 #: libraries/tbl_properties.inc.php:519 tbl_structure.php:33 -#: tbl_structure.php:155 tbl_structure.php:159 tbl_structure.php:474 +#: tbl_structure.php:155 tbl_structure.php:159 tbl_structure.php:472 #: tbl_tracking.php:322 msgid "Unique" msgstr "Jedinstveni" @@ -1414,8 +1457,8 @@ msgid "" "removed." msgstr "" -#: libraries/List_Database.class.php:431 libraries/server_links.inc.php:41 -#: server_databases.php:88 server_privileges.php:1660 +#: libraries/List_Database.class.php:431 libraries/server_links.inc.php:42 +#: server_databases.php:88 server_privileges.php:1680 #: setup/lib/messages.inc.php:110 test/theme.php:93 msgid "Databases" msgstr "Baze" @@ -1585,7 +1628,7 @@ msgstr "Lozinka:" msgid "Server Choice" msgstr "Izbor servera" -#: libraries/auth/cookie.auth.lib.php:320 libraries/header.inc.php:59 +#: libraries/auth/cookie.auth.lib.php:320 libraries/header.inc.php:63 msgid "Cookies must be enabled past this point." msgstr "Kolačići (Cookies) moraju u ovom slučaju biti aktivni." @@ -1665,7 +1708,7 @@ msgstr "" "Ne mogu da koristim iconv ili libiconv ili recode_string funkcije iako " "ekstenzija prijavljuje da je učitana. Proverite vašu PHP konfiguraciju." -#: libraries/common.inc.php:583 +#: libraries/common.inc.php:587 msgid "" "phpMyAdmin was unable to read your configuration file!
This might " "happen if PHP finds a parse error in it or PHP cannot find the file.
Ako dobijete praznu stranu, sve je " "u redu." -#: libraries/common.inc.php:594 +#: libraries/common.inc.php:598 #, fuzzy, php-format #| msgid "Could not load default configuration from: \"%1$s\"" msgid "Could not load default configuration from: %1$s" msgstr "Ne mogu da učitam podrazumevanu konfiguraciju iz: \"%1$s\"" -#: libraries/common.inc.php:599 +#: libraries/common.inc.php:603 msgid "" "The $cfg['PmaAbsoluteUri'] directive MUST be set in your " "configuration file!" @@ -1695,28 +1738,28 @@ msgstr "" "$cfg['PmaAbsoluteUri'] direktiva MORA biti podešena u " "konfiguracionoj datoteci!" -#: libraries/common.inc.php:629 +#: libraries/common.inc.php:633 #, fuzzy, php-format #| msgid "Invalid server index: \"%s\"" msgid "Invalid server index: %s" msgstr "Neispravan indeks servera: \"%s\"" -#: libraries/common.inc.php:636 +#: libraries/common.inc.php:640 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "Neispravan naziv servera %1$s. Molimo proverite svoju konfiguraciju." -#: libraries/common.inc.php:645 libraries/header.inc.php:96 +#: libraries/common.inc.php:649 libraries/header.inc.php:100 #: libraries/select_server.lib.php:41 libraries/select_server.lib.php:47 #: main.php:185 test/theme.php:57 msgid "Server" msgstr "Server" -#: libraries/common.inc.php:823 +#: libraries/common.inc.php:827 msgid "Invalid authentication method set in configuration:" msgstr "Neispravan metod autentikacije je zadat u konfiguraciji:" -#: libraries/common.inc.php:926 +#: libraries/common.inc.php:930 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Trebalo bi da unapredite vaš %s server na verziju %s ili noviju." @@ -1849,45 +1892,45 @@ msgstr "." msgid "%B %d, %Y at %I:%M %p" msgstr "%d. %B %Y. u %H:%M" -#: libraries/common.lib.php:1907 +#: libraries/common.lib.php:1911 #, 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:2322 libraries/common.lib.php:2325 +#: libraries/common.lib.php:2326 libraries/common.lib.php:2329 #: libraries/display_tbl.lib.php:290 server_status.php:719 msgid "Begin" msgstr "Početak" -#: libraries/common.lib.php:2323 libraries/common.lib.php:2326 +#: libraries/common.lib.php:2327 libraries/common.lib.php:2330 #: libraries/display_tbl.lib.php:291 server_binlog.php:168 #: server_binlog.php:170 msgid "Previous" msgstr "Prethodna" -#: libraries/common.lib.php:2354 libraries/common.lib.php:2357 +#: libraries/common.lib.php:2358 libraries/common.lib.php:2361 #: libraries/display_tbl.lib.php:353 msgid "End" msgstr "Kraj" -#: libraries/common.lib.php:2430 +#: libraries/common.lib.php:2434 #, php-format msgid "Jump to database "%s"." msgstr "Pređi na bazu "%s"." -#: libraries/common.lib.php:2450 +#: libraries/common.lib.php:2454 #, 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:2830 libraries/common.lib.php:2837 +#: libraries/common.lib.php:2834 libraries/common.lib.php:2841 #: libraries/db_links.inc.php:68 libraries/export/sql.php:25 -#: libraries/import/sql.php:18 libraries/server_links.inc.php:45 +#: libraries/import/sql.php:18 libraries/server_links.inc.php:46 #: libraries/tbl_links.inc.php:60 querywindow.php:99 test/theme.php:97 msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2839 libraries/db_links.inc.php:104 +#: libraries/common.lib.php:2843 libraries/db_links.inc.php:104 #: libraries/tbl_links.inc.php:95 libraries/tbl_links.inc.php:117 #: view_operations.php:89 msgid "Operations" @@ -1936,15 +1979,15 @@ msgstr "Upit po primeru" msgid "Designer" msgstr "Dizajner" -#: libraries/db_links.inc.php:98 libraries/server_links.inc.php:88 +#: libraries/db_links.inc.php:98 libraries/server_links.inc.php:89 #: libraries/tbl_links.inc.php:91 pmd_pdf.php:84 pmd_pdf.php:110 #: setup/frames/menu.inc.php:21 msgid "Import" msgstr "Uvoz" -#: libraries/db_links.inc.php:111 libraries/server_links.inc.php:66 -#: server_privileges.php:111 server_privileges.php:1722 -#: server_privileges.php:2071 test/theme.php:117 +#: libraries/db_links.inc.php:111 libraries/server_links.inc.php:67 +#: server_privileges.php:112 server_privileges.php:1742 +#: server_privileges.php:2092 test/theme.php:117 msgid "Privileges" msgstr "Privilegije" @@ -1963,7 +2006,7 @@ msgid "" msgstr "Može biti približno. Vidite FAQ 3.11" #: libraries/db_structure.lib.php:69 server_databases.php:142 -#: tbl_printview.php:336 tbl_structure.php:682 +#: tbl_printview.php:336 tbl_structure.php:680 msgid "Overhead" msgstr "Prekoračenje" @@ -1982,7 +2025,7 @@ msgstr "Server ne odgovara" msgid "(or the local MySQL server's socket is not correctly configured)" msgstr "(ili priključak lokalnog MySQL servera nije ispravno podešen)" -#: libraries/dbi/mysql.dbi.lib.php:362 tbl_structure.php:608 +#: libraries/dbi/mysql.dbi.lib.php:362 tbl_structure.php:606 msgid "Details..." msgstr "" @@ -1992,22 +2035,22 @@ msgid "Change password" msgstr "Promeni lozinku" #: libraries/display_change_password.lib.php:35 -#: libraries/replication_gui.lib.php:345 server_privileges.php:807 +#: libraries/replication_gui.lib.php:345 server_privileges.php:808 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:796 -#: server_privileges.php:800 server_privileges.php:811 -#: server_privileges.php:1538 server_synchronize.php:1175 +#: libraries/replication_gui.lib.php:349 server_privileges.php:797 +#: server_privileges.php:801 server_privileges.php:812 +#: server_privileges.php:1558 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:815 server_privileges.php:818 +#: server_privileges.php:816 server_privileges.php:819 msgid "Re-type" msgstr "Ponovite unos" @@ -2022,12 +2065,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:822 +#: libraries/replication_gui.lib.php:360 server_privileges.php:823 msgid "Generate Password" msgstr "Napravi lozinku" #: libraries/display_change_password.lib.php:75 -#: libraries/replication_gui.lib.php:363 server_privileges.php:825 +#: libraries/replication_gui.lib.php:363 server_privileges.php:826 msgid "Generate" msgstr "Napravi" @@ -2040,8 +2083,8 @@ msgstr "Napravi novu bazu podataka" msgid "Create" msgstr "Napravi" -#: libraries/display_create_database.lib.php:40 server_privileges.php:113 -#: server_privileges.php:1427 server_replication.php:35 +#: libraries/display_create_database.lib.php:40 server_privileges.php:114 +#: server_privileges.php:1447 server_replication.php:35 msgid "No Privileges" msgstr "Nema privilegija" @@ -2133,7 +2176,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:1875 server_processlist.php:75 +#: server_privileges.php:1895 server_processlist.php:75 msgid "None" msgstr "nema" @@ -2324,7 +2367,7 @@ msgstr "Sortiraj po ključu" #: libraries/import/docsql.php:34 libraries/import/ldi.php:47 #: libraries/import/ods.php:30 libraries/import/sql.php:20 #: libraries/import/xls.php:26 libraries/import/xlsx.php:26 -#: libraries/import/xml.php:25 tbl_select.php:267 tbl_structure.php:753 +#: libraries/import/xml.php:25 tbl_select.php:267 tbl_structure.php:751 msgid "Options" msgstr "Opcije" @@ -2402,7 +2445,7 @@ msgstr "Upit je trajao %01.4f sekundi" #: libraries/display_tbl.lib.php:2089 libraries/mult_submits.inc.php:113 #: querywindow.php:125 querywindow.php:129 querywindow.php:132 -#: tbl_structure.php:25 tbl_structure.php:150 tbl_structure.php:470 +#: tbl_structure.php:25 tbl_structure.php:150 tbl_structure.php:468 msgid "Change" msgstr "Promeni" @@ -2473,7 +2516,7 @@ msgstr "Korišćenje skupa prihvatnika" #: libraries/engines/innodb.lib.php:194 server_databases.php:137 #: server_databases.php:305 server_status.php:525 server_status.php:586 -#: server_status.php:607 tbl_printview.php:351 tbl_structure.php:696 +#: server_status.php:607 tbl_printview.php:351 tbl_structure.php:694 msgid "Total" msgstr "Ukupno" @@ -2734,7 +2777,7 @@ msgid "" msgstr "" #: libraries/export/codegen.php:37 setup/lib/messages.inc.php:88 -#: tbl_printview.php:376 tbl_structure.php:737 +#: tbl_printview.php:376 tbl_structure.php:735 msgid "Format" msgstr "Format" @@ -2806,8 +2849,8 @@ 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:576 server_replication.php:316 tbl_printview.php:317 -#: tbl_structure.php:665 +#: server_privileges.php:577 server_replication.php:316 tbl_printview.php:317 +#: tbl_structure.php:663 msgid "Data" msgstr "Podaci" @@ -2856,9 +2899,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:731 -#: server_privileges.php:734 server_privileges.php:790 -#: server_privileges.php:1537 server_privileges.php:2069 +#: libraries/replication_gui.lib.php:329 server_privileges.php:732 +#: server_privileges.php:735 server_privileges.php:791 +#: server_privileges.php:1557 server_privileges.php:2090 #: server_processlist.php:55 server_synchronize.php:1159 msgid "Host" msgstr "Domaćin" @@ -3057,7 +3100,7 @@ msgstr "Tip izvoza" msgid "Open new phpMyAdmin window" msgstr "Otvori novi phpMyAdmin prozor" -#: libraries/header.inc.php:115 +#: libraries/header.inc.php:119 #, fuzzy msgid "New table" msgstr "Nema tabela" @@ -3220,20 +3263,20 @@ 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 +#: tbl_structure.php:471 msgid "Primary" msgstr "Primarni" #: libraries/mult_submits.inc.php:98 libraries/tbl_properties.inc.php:116 #: libraries/tbl_properties.inc.php:525 tbl_printview.php:326 #: tbl_structure.php:31 tbl_structure.php:154 tbl_structure.php:158 -#: tbl_structure.php:475 tbl_structure.php:673 +#: tbl_structure.php:473 tbl_structure.php:671 msgid "Index" msgstr "Ključ" #: libraries/mult_submits.inc.php:108 libraries/tbl_properties.inc.php:531 #: tbl_structure.php:35 tbl_structure.php:156 tbl_structure.php:160 -#: tbl_structure.php:478 +#: tbl_structure.php:476 msgid "Fulltext" msgstr "Tekst ključ" @@ -3535,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:711 -#: server_privileges.php:714 server_privileges.php:721 +#: libraries/replication_gui.lib.php:259 server_privileges.php:712 +#: server_privileges.php:715 server_privileges.php:722 #: server_synchronize.php:1171 msgid "User name" msgstr "Ime korisnika" @@ -3563,7 +3606,7 @@ msgstr "Promenljiva" #: 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 +#: tbl_structure.php:727 msgid "Value" msgstr "Vrednost" @@ -3581,34 +3624,34 @@ msgstr "" msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:254 server_privileges.php:716 +#: libraries/replication_gui.lib.php:254 server_privileges.php:717 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:717 -#: server_privileges.php:784 server_privileges.php:808 -#: server_privileges.php:1928 server_privileges.php:1958 +#: libraries/replication_gui.lib.php:346 server_privileges.php:718 +#: server_privileges.php:785 server_privileges.php:809 +#: server_privileges.php:1948 server_privileges.php:1978 msgid "Use text field" msgstr "Koristi tekst polje" -#: libraries/replication_gui.lib.php:302 server_privileges.php:764 +#: libraries/replication_gui.lib.php:302 server_privileges.php:765 msgid "Any host" msgstr "Bilo koji domaćin" -#: libraries/replication_gui.lib.php:306 server_privileges.php:768 +#: libraries/replication_gui.lib.php:306 server_privileges.php:769 msgid "Local" msgstr "Lokalni" -#: libraries/replication_gui.lib.php:312 server_privileges.php:773 +#: libraries/replication_gui.lib.php:312 server_privileges.php:774 msgid "This Host" msgstr "Ovaj server" -#: libraries/replication_gui.lib.php:318 server_privileges.php:779 +#: libraries/replication_gui.lib.php:318 server_privileges.php:780 msgid "Use Host Table" msgstr "Koristi tabelu domaćina" -#: libraries/replication_gui.lib.php:331 server_privileges.php:792 +#: libraries/replication_gui.lib.php:331 server_privileges.php:793 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -3642,29 +3685,29 @@ msgstr "Nepoznat jezik: %1$s." msgid "Servers" msgstr "Serveri" -#: libraries/server_links.inc.php:53 server_engines.php:112 +#: libraries/server_links.inc.php:54 server_engines.php:112 #: server_engines.php:116 server_status.php:415 test/theme.php:105 msgid "Variables" msgstr "Promenljive" -#: libraries/server_links.inc.php:57 test/theme.php:109 +#: libraries/server_links.inc.php:58 test/theme.php:109 msgid "Charsets" msgstr "Kodne strane" -#: libraries/server_links.inc.php:61 test/theme.php:113 +#: libraries/server_links.inc.php:62 test/theme.php:113 msgid "Engines" msgstr "Skladištenja" -#: libraries/server_links.inc.php:76 server_binlog.php:110 +#: libraries/server_links.inc.php:77 server_binlog.php:110 #: server_status.php:364 test/theme.php:121 msgid "Binary log" msgstr "Binarni dnevnik" -#: libraries/server_links.inc.php:80 +#: libraries/server_links.inc.php:81 msgid "Processes" msgstr "Procesi" -#: libraries/server_links.inc.php:92 server_synchronize.php:1092 +#: libraries/server_links.inc.php:93 server_synchronize.php:1092 #: server_synchronize.php:1100 msgid "Synchronize" msgstr "" @@ -3913,13 +3956,13 @@ msgstr "" msgid "Save" msgstr "Sačuvaj" -#: libraries/tbl_properties.inc.php:780 tbl_structure.php:542 +#: libraries/tbl_properties.inc.php:780 tbl_structure.php:540 #, fuzzy, php-format #| msgid "Add %s field(s)" msgid "Add %s column(s)" msgstr "Dodaj %s polja" -#: libraries/tbl_properties.inc.php:784 tbl_structure.php:536 +#: libraries/tbl_properties.inc.php:784 tbl_structure.php:534 #, fuzzy #| msgid "You have to add at least one field." msgid "You have to add at least one column." @@ -4131,8 +4174,8 @@ msgstr "Poništi" msgid "Protocol version" msgstr "Verzija protokola" -#: main.php:189 server_privileges.php:1389 server_privileges.php:1536 -#: server_privileges.php:1650 server_privileges.php:2068 +#: main.php:189 server_privileges.php:1406 server_privileges.php:1556 +#: server_privileges.php:1670 server_privileges.php:2089 #: server_processlist.php:54 msgid "User" msgstr "Korisnik" @@ -4582,113 +4625,113 @@ msgstr "Pogoni skladištenja" msgid "View dump (schema) of databases" msgstr "Prikaži sadržaj (shemu) baze" -#: server_privileges.php:24 server_privileges.php:266 +#: server_privileges.php:25 server_privileges.php:267 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 +#: server_privileges.php:26 server_privileges.php:193 +#: server_privileges.php:516 msgid "Allows altering the structure of existing tables." msgstr "Dozvoljava izmenu struktura postojećih tabela." -#: server_privileges.php:26 server_privileges.php:208 -#: server_privileges.php:521 +#: server_privileges.php:27 server_privileges.php:209 +#: server_privileges.php:522 msgid "Allows altering and dropping stored routines." msgstr "Dozvoljava izmenu i odbacivanje sačuvanih rutina." -#: server_privileges.php:27 server_privileges.php:184 -#: server_privileges.php:514 +#: server_privileges.php:28 server_privileges.php:185 +#: server_privileges.php:515 msgid "Allows creating new databases and tables." msgstr "Dozvoljava kreiranje novih baza i tabela." -#: server_privileges.php:28 server_privileges.php:207 -#: server_privileges.php:520 +#: server_privileges.php:29 server_privileges.php:208 +#: server_privileges.php:521 msgid "Allows creating stored routines." msgstr "Dozvoljava pravljenje sačuvanih rutina." -#: server_privileges.php:29 server_privileges.php:514 +#: server_privileges.php:30 server_privileges.php:515 msgid "Allows creating new tables." msgstr "Dozvoljava kreiranje novih tabela." -#: server_privileges.php:30 server_privileges.php:195 -#: server_privileges.php:518 +#: server_privileges.php:31 server_privileges.php:196 +#: server_privileges.php:519 msgid "Allows creating temporary tables." msgstr "Dozvoljava kreiranje privremenih tabela.." -#: server_privileges.php:31 server_privileges.php:209 -#: server_privileges.php:554 +#: server_privileges.php:32 server_privileges.php:210 +#: server_privileges.php:555 msgid "Allows creating, dropping and renaming user accounts." msgstr "Dozvoljava pravljenje, odbacivanje i preimenovanje korisničkih naloga." -#: server_privileges.php:32 server_privileges.php:199 -#: server_privileges.php:203 server_privileges.php:526 -#: server_privileges.php:530 +#: server_privileges.php:33 server_privileges.php:200 +#: server_privileges.php:204 server_privileges.php:527 +#: server_privileges.php:531 msgid "Allows creating new views." msgstr "Dozvoli kreiranje novih pogleda." -#: server_privileges.php:33 server_privileges.php:183 -#: server_privileges.php:506 +#: server_privileges.php:34 server_privileges.php:184 +#: server_privileges.php:507 msgid "Allows deleting data." msgstr "Dozvoljava brisanje podataka." -#: server_privileges.php:34 server_privileges.php:185 -#: server_privileges.php:517 +#: server_privileges.php:35 server_privileges.php:186 +#: server_privileges.php:518 msgid "Allows dropping databases and tables." msgstr "Dozvoljava odbacivanje baza i tabela." -#: server_privileges.php:35 server_privileges.php:517 +#: server_privileges.php:36 server_privileges.php:518 msgid "Allows dropping tables." msgstr "Dozvoljava odbacivanje tabela." -#: server_privileges.php:36 server_privileges.php:200 -#: server_privileges.php:534 +#: server_privileges.php:37 server_privileges.php:201 +#: server_privileges.php:535 msgid "Allows to set up events for the event scheduler" msgstr "" -#: server_privileges.php:37 server_privileges.php:210 -#: server_privileges.php:522 +#: server_privileges.php:38 server_privileges.php:211 +#: server_privileges.php:523 msgid "Allows executing stored routines." msgstr "Dozvoljava izvršavanje sačuvanih rutina." -#: server_privileges.php:38 server_privileges.php:189 -#: server_privileges.php:509 +#: server_privileges.php:39 server_privileges.php:190 +#: server_privileges.php:510 msgid "Allows importing data from and exporting data into files." msgstr "Dozvoljava uvoz podataka i njihov izvoz u datoteke." -#: server_privileges.php:39 server_privileges.php:540 +#: server_privileges.php:40 server_privileges.php:541 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "Dozvoljava dodavanje korisnika i privilegija bez ponovnog učitavanja tabela " "privilegija." -#: server_privileges.php:40 server_privileges.php:191 -#: server_privileges.php:516 +#: server_privileges.php:41 server_privileges.php:192 +#: server_privileges.php:517 msgid "Allows creating and dropping indexes." msgstr "Dozvoljava kreiranje i brisanje ključeva." -#: server_privileges.php:41 server_privileges.php:181 -#: server_privileges.php:442 server_privileges.php:504 +#: server_privileges.php:42 server_privileges.php:182 +#: server_privileges.php:443 server_privileges.php:505 msgid "Allows inserting and replacing data." msgstr "Dozvoljava umetanje i zamenu podataka." -#: server_privileges.php:42 server_privileges.php:196 -#: server_privileges.php:549 +#: server_privileges.php:43 server_privileges.php:197 +#: server_privileges.php:550 msgid "Allows locking tables for the current thread." msgstr "Dozvoljava zaključavanje tabela tekućim procesima." -#: server_privileges.php:43 server_privileges.php:646 -#: server_privileges.php:648 +#: server_privileges.php:44 server_privileges.php:647 +#: server_privileges.php:649 msgid "Limits the number of new connections the user may open per hour." msgstr "Ograničava broj novih konekcija koje korisnik može ta otvori na sat." -#: server_privileges.php:44 server_privileges.php:634 -#: server_privileges.php:636 +#: server_privileges.php:45 server_privileges.php:635 +#: server_privileges.php:637 msgid "Limits the number of queries the user may send to the server per hour." msgstr "Ograničava broj upita koje korisnik može da uputi serveru za sat." -#: server_privileges.php:45 server_privileges.php:640 -#: server_privileges.php:642 +#: server_privileges.php:46 server_privileges.php:641 +#: server_privileges.php:643 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -4696,59 +4739,59 @@ 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 +#: server_privileges.php:47 server_privileges.php:653 +#: server_privileges.php:655 msgid "Limits the number of simultaneous connections the user may have." msgstr "Ograničava broj istovremenih konekcija koje korisnik može da ima." -#: server_privileges.php:47 server_privileges.php:188 -#: server_privileges.php:544 +#: server_privileges.php:48 server_privileges.php:189 +#: server_privileges.php:545 msgid "Allows viewing processes of all users" msgstr "" -#: server_privileges.php:48 server_privileges.php:190 -#: server_privileges.php:448 server_privileges.php:550 +#: server_privileges.php:49 server_privileges.php:191 +#: server_privileges.php:449 server_privileges.php:551 msgid "Has no effect in this MySQL version." msgstr "Nema efekta u ovoj verziji MySQL-a." -#: server_privileges.php:49 server_privileges.php:186 -#: server_privileges.php:545 +#: server_privileges.php:50 server_privileges.php:187 +#: server_privileges.php:546 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" "Dozvoljava ponovno učitavanje podešavanja servera i pražnjenje keša servera." -#: server_privileges.php:50 server_privileges.php:198 -#: server_privileges.php:552 +#: server_privileges.php:51 server_privileges.php:199 +#: server_privileges.php:553 msgid "Allows the user to ask where the slaves / masters are." msgstr "Daje pravo korisniku da pita gde su glavni/pomoćni serveri." -#: server_privileges.php:51 server_privileges.php:197 -#: server_privileges.php:553 +#: server_privileges.php:52 server_privileges.php:198 +#: server_privileges.php:554 msgid "Needed for the replication slaves." msgstr "Potrebno zbog pomoćnih servera za replikaciju." -#: server_privileges.php:52 server_privileges.php:180 -#: server_privileges.php:439 server_privileges.php:503 +#: server_privileges.php:53 server_privileges.php:181 +#: server_privileges.php:440 server_privileges.php:504 msgid "Allows reading data." msgstr "Dozvoljava čitanje podataka." -#: server_privileges.php:53 server_privileges.php:193 -#: server_privileges.php:547 +#: server_privileges.php:54 server_privileges.php:194 +#: server_privileges.php:548 msgid "Gives access to the complete list of databases." msgstr "Daje pristup kompletnoj listi baza." -#: server_privileges.php:54 server_privileges.php:204 -#: server_privileges.php:206 server_privileges.php:519 +#: server_privileges.php:55 server_privileges.php:205 +#: server_privileges.php:207 server_privileges.php:520 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Dozvoljava izvršavanje SHOW CREATE VIEW upita." -#: server_privileges.php:55 server_privileges.php:187 -#: server_privileges.php:546 +#: server_privileges.php:56 server_privileges.php:188 +#: server_privileges.php:547 msgid "Allows shutting down the server." msgstr "Dozvoljava gašenje servera." -#: server_privileges.php:56 server_privileges.php:194 -#: server_privileges.php:543 +#: server_privileges.php:57 server_privileges.php:195 +#: server_privileges.php:544 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -4758,157 +4801,157 @@ msgstr "" "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 +#: server_privileges.php:58 server_privileges.php:202 +#: server_privileges.php:536 #, fuzzy msgid "Allows creating and dropping triggers" msgstr "Dozvoljava kreiranje i brisanje ključeva." -#: server_privileges.php:58 server_privileges.php:182 -#: server_privileges.php:445 server_privileges.php:505 +#: server_privileges.php:59 server_privileges.php:183 +#: server_privileges.php:446 server_privileges.php:506 msgid "Allows changing data." msgstr "Dozvoljava izmenu podataka." -#: server_privileges.php:59 server_privileges.php:260 +#: server_privileges.php:60 server_privileges.php:261 msgid "No privileges." msgstr "Nema privilegija." -#: server_privileges.php:302 server_privileges.php:303 +#: server_privileges.php:303 server_privileges.php:304 #, fuzzy #| msgid "None" msgctxt "None privileges" msgid "None" msgstr "nema" -#: server_privileges.php:431 server_privileges.php:566 -#: server_privileges.php:1718 server_privileges.php:1724 +#: server_privileges.php:432 server_privileges.php:567 +#: server_privileges.php:1738 server_privileges.php:1744 msgid "Table-specific privileges" msgstr "Privilegije vezane za tabele" -#: server_privileges.php:432 server_privileges.php:574 -#: server_privileges.php:1540 +#: server_privileges.php:433 server_privileges.php:575 +#: server_privileges.php:1560 msgid " Note: MySQL privilege names are expressed in English " msgstr " Napomena: MySQL imena privilegija moraju da budu na engleskom " -#: server_privileges.php:563 server_privileges.php:1539 +#: server_privileges.php:564 server_privileges.php:1559 msgid "Global privileges" msgstr "Globalne privilegije" -#: server_privileges.php:565 server_privileges.php:1718 +#: server_privileges.php:566 server_privileges.php:1738 msgid "Database-specific privileges" msgstr "Privilegije vezane za bazu" -#: server_privileges.php:610 +#: server_privileges.php:611 msgid "Administration" msgstr "Administracija" -#: server_privileges.php:630 +#: server_privileges.php:631 msgid "Resource limits" msgstr "Ograničenja resursa" -#: server_privileges.php:631 +#: server_privileges.php:632 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "Napomena: Postavljanje ovih opcija na 0 (nulu) uklanja ograničenja." -#: server_privileges.php:708 +#: server_privileges.php:709 msgid "Login Information" msgstr "Podaci o prijavi" -#: server_privileges.php:802 +#: server_privileges.php:803 msgid "Do not change the password" msgstr "Nemoj da menjaš lozinku" -#: server_privileges.php:843 server_privileges.php:2205 +#: server_privileges.php:844 server_privileges.php:2226 #, fuzzy #| msgid "No user(s) found." msgid "No user found." msgstr "Korisnik nije nađen." -#: server_privileges.php:887 +#: server_privileges.php:888 #, php-format msgid "The user %s already exists!" msgstr "Korisnik %s već postoji!" -#: server_privileges.php:970 +#: server_privileges.php:971 msgid "You have added a new user." msgstr "Dodali ste novog korisnika." -#: server_privileges.php:1191 +#: server_privileges.php:1196 #, php-format msgid "You have updated the privileges for %s." msgstr "Ažurirali ste privilegije za %s." -#: server_privileges.php:1215 +#: server_privileges.php:1220 #, php-format msgid "You have revoked the privileges for %s" msgstr "Zabranili ste privilegije za %s" -#: server_privileges.php:1251 +#: server_privileges.php:1256 #, php-format msgid "The password for %s was changed successfully." msgstr "Lozinka za %s je uspešno promenjena." -#: server_privileges.php:1271 +#: server_privileges.php:1276 #, php-format msgid "Deleting %s" msgstr "Brišem %s" -#: server_privileges.php:1282 +#: server_privileges.php:1287 msgid "No users selected for deleting!" msgstr "Nijedan korisnik nije odabran za brisanje!" -#: server_privileges.php:1285 +#: server_privileges.php:1290 msgid "Reloading the privileges" msgstr "Ponovo učitavam privilegije" -#: server_privileges.php:1300 +#: server_privileges.php:1305 msgid "The selected users have been deleted successfully." msgstr "Izabrani korisnici su uspešno obrisani." -#: server_privileges.php:1335 +#: server_privileges.php:1344 msgid "The privileges were reloaded successfully." msgstr "Privilegije su uspešno ponovo učitane." -#: server_privileges.php:1363 server_privileges.php:1649 +#: server_privileges.php:1380 server_privileges.php:1669 msgid "Edit Privileges" msgstr "Promeni privilegije" -#: server_privileges.php:1372 +#: server_privileges.php:1389 msgid "Revoke" msgstr "Zabrani" -#: server_privileges.php:1404 +#: server_privileges.php:1424 msgid "User overview" msgstr "Pregled korisnika" -#: server_privileges.php:1541 server_privileges.php:1723 -#: server_privileges.php:2072 +#: server_privileges.php:1561 server_privileges.php:1743 +#: server_privileges.php:2093 msgid "Grant" msgstr "Omogući" -#: server_privileges.php:1560 server_privileges.php:2162 +#: server_privileges.php:1580 server_privileges.php:2183 msgid "Any" msgstr "Bilo koji" -#: server_privileges.php:1609 server_privileges.php:1633 -#: server_privileges.php:2027 server_privileges.php:2216 +#: server_privileges.php:1629 server_privileges.php:1653 +#: server_privileges.php:2048 server_privileges.php:2237 msgid "Add a new User" msgstr "Dodaj novog korisnika" -#: server_privileges.php:1614 +#: server_privileges.php:1634 msgid "Remove selected users" msgstr "Ukloni izabrane korisnike" -#: server_privileges.php:1617 +#: server_privileges.php:1637 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:1618 server_privileges.php:1619 -#: server_privileges.php:1620 +#: server_privileges.php:1638 server_privileges.php:1639 +#: server_privileges.php:1640 msgid "Drop the databases that have the same names as the users." msgstr "Odbaci baze koje se zovu isto kao korisnici." -#: server_privileges.php:1636 +#: server_privileges.php:1656 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -4921,92 +4964,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:1684 +#: server_privileges.php:1704 msgid "The selected user was not found in the privilege table." msgstr "Izabrani korisnik nije pronađen u tabeli privilegija." -#: server_privileges.php:1724 +#: server_privileges.php:1744 msgid "Column-specific privileges" msgstr "Privilegije vezane za kolone" -#: server_privileges.php:1925 +#: server_privileges.php:1945 msgid "Add privileges on the following database" msgstr "Dodaj privilegije na sledećoj bazi" -#: server_privileges.php:1943 +#: server_privileges.php:1963 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:1946 +#: server_privileges.php:1966 msgid "Add privileges on the following table" msgstr "Dodaj privilegije na sledećoj tabeli" -#: server_privileges.php:2003 +#: server_privileges.php:2023 msgid "Change Login Information / Copy User" msgstr "Promeni informacije o prijavi / Kopiraj korisnika" -#: server_privileges.php:2006 +#: server_privileges.php:2026 msgid "Create a new user with the same privileges and ..." msgstr "Napravi novog korisnika sa istim privilegijama i ..." -#: server_privileges.php:2008 +#: server_privileges.php:2028 msgid "... keep the old one." msgstr "... sačuvaj stare." -#: server_privileges.php:2009 +#: server_privileges.php:2029 msgid " ... delete the old one from the user tables." msgstr " ... obriši stare iz tabela korisnika." -#: server_privileges.php:2010 +#: server_privileges.php:2030 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:2011 +#: server_privileges.php:2031 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:2033 +#: server_privileges.php:2054 msgid "Database for user" msgstr "Baza za korisnika" -#: server_privileges.php:2037 +#: server_privileges.php:2058 #, fuzzy #| msgid "None" msgctxt "Create none database for user" msgid "None" msgstr "nema" -#: server_privileges.php:2038 +#: server_privileges.php:2059 msgid "Create database with same name and grant all privileges" msgstr "Napravi bazu sa istim imenom i dodaj sve privilegije" -#: server_privileges.php:2039 +#: server_privileges.php:2060 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "Daj sve privilegije na imenu sa džokerima (korisničko_ime\\_%)" -#: server_privileges.php:2042 +#: server_privileges.php:2063 #, fuzzy, php-format msgid "Grant all privileges on database "%s"" msgstr "Proveri privilegije za bazu "%s"." -#: server_privileges.php:2065 +#: server_privileges.php:2086 #, php-format msgid "Users having access to "%s"" msgstr "Korisnici koji imaju pristup "%s"" -#: server_privileges.php:2173 +#: server_privileges.php:2194 msgid "global" msgstr "globalno" -#: server_privileges.php:2175 +#: server_privileges.php:2196 msgid "database-specific" msgstr "Specifično za bazu" -#: server_privileges.php:2177 +#: server_privileges.php:2198 msgid "wildcard" msgstr "džoker" @@ -7832,6 +7875,10 @@ msgstr "" msgid "Show insert query" msgstr "Prikaz kao SQL upit" +#: tbl_change.php:1143 +msgid "and then" +msgstr "i onda" + #: tbl_change.php:1147 msgid "Go back to previous page" msgstr "Nazad na prethodnu stranu" @@ -7912,7 +7959,7 @@ msgstr "(\"PRIMARY\" mora biti ime samo primarnog ključa!)" msgid "Add to index  %s column(s)" msgstr "Dodaj u ključ  %s kolona(e)" -#: tbl_indexes.php:256 tbl_structure.php:589 tbl_structure.php:600 +#: tbl_indexes.php:256 tbl_structure.php:587 tbl_structure.php:598 msgid "Column count has to be larger than zero." msgstr "Broj kolona mora biti veći od nule." @@ -8029,39 +8076,39 @@ msgstr "Proveri referencijalni integritet:" msgid "Show tables" msgstr "Prikaži tabele" -#: tbl_printview.php:310 tbl_structure.php:656 +#: tbl_printview.php:310 tbl_structure.php:654 msgid "Space usage" msgstr "Zauzeće" -#: tbl_printview.php:314 tbl_structure.php:660 +#: tbl_printview.php:314 tbl_structure.php:658 msgid "Usage" msgstr "Zauzeće" -#: tbl_printview.php:341 tbl_structure.php:687 +#: tbl_printview.php:341 tbl_structure.php:685 msgid "Effective" msgstr "Efektivne" -#: tbl_printview.php:366 tbl_structure.php:725 +#: tbl_printview.php:366 tbl_structure.php:723 msgid "Row Statistics" msgstr "Statistike reda" -#: tbl_printview.php:369 tbl_structure.php:728 +#: tbl_printview.php:369 tbl_structure.php:726 msgid "Statements" msgstr "Ime" -#: tbl_printview.php:380 tbl_structure.php:740 +#: tbl_printview.php:380 tbl_structure.php:738 msgid "static" msgstr "" -#: tbl_printview.php:382 tbl_structure.php:742 +#: tbl_printview.php:382 tbl_structure.php:740 msgid "dynamic" msgstr "dinamički" -#: tbl_printview.php:404 tbl_structure.php:785 +#: tbl_printview.php:404 tbl_structure.php:783 msgid "Row length" msgstr "Dužina reda" -#: tbl_printview.php:414 tbl_structure.php:793 +#: tbl_printview.php:414 tbl_structure.php:791 msgid " Row size " msgstr "Veličina reda" @@ -8133,50 +8180,50 @@ msgstr "nema" msgid "Column %s has been dropped" msgstr "Tabela %s je odbačena" -#: tbl_structure.php:385 +#: tbl_structure.php:384 #, php-format msgid "A primary key has been added on %s" msgstr "Primarni ključ je upravo dodat %s" -#: tbl_structure.php:400 tbl_structure.php:414 tbl_structure.php:428 +#: tbl_structure.php:398 tbl_structure.php:412 tbl_structure.php:426 #, php-format msgid "An index has been added on %s" msgstr "Ključ je upravo dodat %s" -#: tbl_structure.php:506 tbl_structure.php:508 +#: tbl_structure.php:504 tbl_structure.php:506 msgid "Relation view" msgstr "Relacioni pogled" -#: tbl_structure.php:515 tbl_structure.php:517 +#: tbl_structure.php:513 tbl_structure.php:515 msgid "Propose table structure" msgstr "Predloži strukturu tabele" -#: tbl_structure.php:540 +#: tbl_structure.php:538 #, fuzzy #| msgid "Add %s field(s)" msgid "Add column" msgstr "Dodaj %s polja" -#: tbl_structure.php:554 +#: tbl_structure.php:552 msgid "At End of Table" msgstr "Na kraju tabele" -#: tbl_structure.php:555 +#: tbl_structure.php:553 msgid "At Beginning of Table" msgstr "Na početku tabele" -#: tbl_structure.php:556 +#: tbl_structure.php:554 #, php-format msgid "After %s" msgstr "Posle %s" -#: tbl_structure.php:594 +#: tbl_structure.php:592 #, fuzzy, php-format #| msgid "Create an index on %s columns" msgid "Create an index on  %s columns" msgstr "Napravi ključ na %s kolona" -#: tbl_structure.php:756 +#: tbl_structure.php:754 msgid "partitioned" msgstr "" @@ -8631,9 +8678,6 @@ msgstr "Promeni ime tabele u " #~ msgid "Process list" #~ msgstr "Lista procesa" -#~ msgid "Reload privileges" -#~ msgstr "Ponovo učitaj privilegije" - #~ msgid "" #~ "The users will still have the USAGE privilege until the privileges are " #~ "reloaded." diff --git a/po/sv.po b/po/sv.po index 42629b30a..fb7716005 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-13 09:03-0400\n" +"POT-Creation-Date: 2010-06-22 00:55+0530\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:1514 +#: libraries/display_tbl.lib.php:417 server_privileges.php:1534 msgid "Show all" msgstr "Visa alla" -#: browse_foreigners.php:82 libraries/common.lib.php:2313 +#: browse_foreigners.php:82 libraries/common.lib.php:2317 #: 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,18 +37,18 @@ 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:2831 -#: libraries/common.lib.php:2838 libraries/db_links.inc.php:75 +#: db_structure.php:106 libraries/common.lib.php:2835 +#: libraries/common.lib.php:2842 libraries/db_links.inc.php:75 #: libraries/tbl_links.inc.php:63 msgid "Search" msgstr "Sök" -#: browse_foreigners.php:153 db_operations.php:385 db_operations.php:429 -#: db_operations.php:499 db_operations.php:609 db_search.php:362 -#: db_structure.php:567 js/messages.php:48 libraries/Config.class.php:1046 +#: browse_foreigners.php:153 db_operations.php:394 db_operations.php:438 +#: db_operations.php:508 db_operations.php:618 db_search.php:362 +#: db_structure.php:565 js/messages.php:53 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:1335 libraries/common.lib.php:2288 +#: libraries/common.lib.php:1335 libraries/common.lib.php:2292 #: 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,15 +59,15 @@ 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:664 server_privileges.php:1624 -#: server_privileges.php:1971 server_privileges.php:2018 -#: server_privileges.php:2057 server_replication.php:235 +#: server_privileges.php:665 server_privileges.php:1644 +#: server_privileges.php:1991 server_privileges.php:2038 +#: server_privileges.php:2078 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 #: tbl_operations.php:302 tbl_operations.php:499 tbl_operations.php:561 -#: tbl_operations.php:681 tbl_select.php:327 tbl_structure.php:562 -#: tbl_structure.php:597 tbl_tracking.php:395 tbl_tracking.php:512 +#: tbl_operations.php:681 tbl_select.php:327 tbl_structure.php:560 +#: tbl_structure.php:595 tbl_tracking.php:395 tbl_tracking.php:512 #: view_create.php:182 view_operations.php:101 msgid "Go" msgstr "Kör" @@ -93,7 +93,7 @@ msgstr "Använd detta värde" msgid "Database %1$s has been created." msgstr "Databas %1$s har skapats." -#: db_datadict.php:49 db_operations.php:378 +#: db_datadict.php:49 db_operations.php:387 msgid "Database comment: " msgstr "Databaskommentar: " @@ -120,10 +120,10 @@ 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:2070 +#: pdf_schema.php:1263 pdf_schema.php:1284 server_privileges.php:2091 #: 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 +#: tbl_structure.php:657 tbl_tracking.php:274 tbl_tracking.php:321 msgid "Type" msgstr "Typ" @@ -136,7 +136,7 @@ msgstr "Typ" msgid "Null" msgstr "Null" -#: db_datadict.php:178 db_structure.php:501 libraries/export/htmlword.php:247 +#: db_datadict.php:178 db_structure.php:499 libraries/export/htmlword.php:247 #: libraries/export/latex.php:360 libraries/export/odt.php:303 #: libraries/export/texytext.php:236 libraries/tbl_properties.inc.php:106 #: pdf_schema.php:1266 pdf_schema.php:1287 tbl_printview.php:146 @@ -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: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 +#: pdf_schema.php:1344 server_privileges.php:1588 server_privileges.php:1599 +#: server_privileges.php:1909 server_privileges.php:1914 +#: server_privileges.php:2208 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:1565 -#: server_privileges.php:1579 server_privileges.php:1889 -#: server_privileges.php:1892 server_privileges.php:2187 sql.php:193 +#: server_databases.php:64 server_privileges.php:1585 +#: server_privileges.php:1599 server_privileges.php:1909 +#: server_privileges.php:1912 server_privileges.php:2208 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" @@ -209,125 +209,121 @@ msgstr "Markera alla" msgid "Unselect All" msgstr "Avmarkera alla" -#: db_operations.php:38 tbl_create.php:54 +#: db_operations.php:43 tbl_create.php:54 msgid "The database name is empty!" msgstr "Databasens namn är tomt!" -#: db_operations.php:236 +#: db_operations.php:241 #, php-format msgid "Database %s has been renamed to %s" msgstr "Databas %s har döpts om till %s" -#: db_operations.php:240 +#: db_operations.php:245 #, php-format msgid "Database %s has been copied to %s" msgstr "Databas %s har kopierats till %s" -#: db_operations.php:412 +#: db_operations.php:421 msgid "Rename database to" msgstr "Döp om databasen till" -#: db_operations.php:417 server_processlist.php:57 +#: db_operations.php:426 server_processlist.php:57 msgid "Command" msgstr "Kommando" -#: db_operations.php:429 tbl_change.php:1143 -msgid "and then" -msgstr "och sedan" - -#: db_operations.php:455 +#: db_operations.php:464 msgid "Copy database to" msgstr "Kopiera databas till" -#: db_operations.php:462 tbl_operations.php:528 tbl_tracking.php:388 +#: db_operations.php:471 tbl_operations.php:528 tbl_tracking.php:388 msgid "Structure only" msgstr "Enbart struktur" -#: db_operations.php:463 tbl_operations.php:529 tbl_tracking.php:390 +#: db_operations.php:472 tbl_operations.php:529 tbl_tracking.php:390 msgid "Structure and data" msgstr "Struktur och data" -#: db_operations.php:464 tbl_operations.php:530 tbl_tracking.php:389 +#: db_operations.php:473 tbl_operations.php:530 tbl_tracking.php:389 msgid "Data only" msgstr "Enbart data" -#: db_operations.php:472 +#: db_operations.php:481 msgid "CREATE DATABASE before copying" msgstr "CREATE DATABASE före kopiering" -#: db_operations.php:475 libraries/export/sql.php:52 +#: db_operations.php:484 libraries/export/sql.php:52 #: libraries/export/sql.php:74 libraries/export/sql.php:76 #: libraries/export/sql.php:82 tbl_operations.php:536 #, php-format msgid "Add %s" msgstr "Lägg till %s" -#: db_operations.php:479 libraries/export/sql.php:78 tbl_operations.php:299 +#: db_operations.php:488 libraries/export/sql.php:78 tbl_operations.php:299 #: tbl_operations.php:538 msgid "Add AUTO_INCREMENT value" msgstr "Lägg till AUTO_INCREMENT-värde" -#: db_operations.php:483 tbl_operations.php:545 +#: db_operations.php:492 tbl_operations.php:545 msgid "Add constraints" msgstr "Lägg till restriktioner" -#: db_operations.php:496 +#: db_operations.php:505 msgid "Switch to copied database" msgstr "Byt till kopierad databas" -#: db_operations.php:537 +#: db_operations.php:546 msgid "BLOB Repository" msgstr "BLOB-förvaringsplats" -#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1352 -#: libraries/server_links.inc.php:49 server_processlist.php:59 +#: db_operations.php:549 db_tracking.php:76 libraries/common.lib.php:1352 +#: libraries/server_links.inc.php:50 server_processlist.php:59 #: tbl_tracking.php:596 test/theme.php:101 msgid "Status" msgstr "Status" -#: db_operations.php:548 +#: db_operations.php:557 #, fuzzy #| msgid "Enabled" msgctxt "BLOB repository" msgid "Enabled" msgstr "Aktiverat" -#: db_operations.php:552 +#: db_operations.php:561 msgid "Disable" msgstr "Inaktivera" -#: db_operations.php:562 +#: db_operations.php:571 msgid "Damaged" msgstr "Skadad" -#: db_operations.php:566 +#: db_operations.php:575 #, fuzzy #| msgid "Repair" msgctxt "BLOB repository" msgid "Repair" msgstr "Reparera" -#: db_operations.php:574 +#: db_operations.php:583 #, fuzzy #| msgid "Disabled" msgctxt "BLOB repository" msgid "Disabled" msgstr "Inaktiverat" -#: db_operations.php:578 +#: db_operations.php:587 msgid "Enable" msgstr "Aktivera" -#: db_operations.php:602 libraries/Index.class.php:448 +#: db_operations.php:611 libraries/Index.class.php:448 #: libraries/db_structure.lib.php:62 libraries/mysql_charsets.lib.php:107 #: libraries/tbl_properties.inc.php:107 libraries/tbl_properties.inc.php:730 #: server_collations.php:54 server_collations.php:66 server_databases.php:111 #: tbl_operations.php:363 tbl_select.php:137 tbl_structure.php:179 -#: tbl_structure.php:767 tbl_tracking.php:275 tbl_tracking.php:326 +#: tbl_structure.php:765 tbl_tracking.php:275 tbl_tracking.php:326 msgid "Collation" msgstr "Kollationering" -#: db_operations.php:615 main.php:316 pdf_schema.php:34 +#: db_operations.php:624 main.php:316 pdf_schema.php:34 #, php-format msgid "" "The additional features for working with linked tables have been " @@ -336,14 +332,14 @@ msgstr "" "Den extra funktionaliteten för att hantera länkade tabeller har " "inaktiverats. %sVisa orsaken%s." -#: db_operations.php:648 +#: db_operations.php:657 msgid "Edit PDF Pages" 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:1665 -#: server_privileges.php:1721 server_privileges.php:1985 +#: libraries/header.inc.php:130 pdf_pages.php:424 server_privileges.php:1685 +#: server_privileges.php:1741 server_privileges.php:2005 #: server_synchronize.php:423 server_synchronize.php:866 tbl_tracking.php:592 #: test/theme.php:75 msgid "Table" @@ -352,7 +348,7 @@ msgstr "Tabell" #: db_printview.php:105 libraries/db_structure.lib.php:56 #: libraries/header_printview.inc.php:63 libraries/import.lib.php:146 #: navigation.php:638 navigation.php:660 server_databases.php:122 -#: tbl_printview.php:394 tbl_structure.php:365 tbl_structure.php:777 +#: tbl_printview.php:394 tbl_structure.php:365 tbl_structure.php:775 msgid "Rows" msgstr "Rader" @@ -360,30 +356,30 @@ msgstr "Rader" msgid "Size" msgstr "Storlek" -#: db_printview.php:162 db_structure.php:457 libraries/export/sql.php:559 +#: db_printview.php:162 db_structure.php:455 libraries/export/sql.php:559 #: libraries/export/sql.php:899 msgid "in use" msgstr "används" #: db_printview.php:187 libraries/db_info.inc.php:88 #: libraries/export/sql.php:514 pdf_schema.php:1241 tbl_printview.php:434 -#: tbl_structure.php:809 +#: tbl_structure.php:807 msgid "Creation" msgstr "Skapades" #: db_printview.php:196 libraries/db_info.inc.php:93 #: libraries/export/sql.php:519 pdf_schema.php:1246 tbl_printview.php:444 -#: tbl_structure.php:817 +#: tbl_structure.php:815 msgid "Last update" msgstr "Senaste uppdatering" #: db_printview.php:205 libraries/db_info.inc.php:98 #: libraries/export/sql.php:524 pdf_schema.php:1251 tbl_printview.php:454 -#: tbl_structure.php:825 +#: tbl_structure.php:823 msgid "Last check" msgstr "Senaste kontroll" -#: db_printview.php:222 db_structure.php:480 +#: db_printview.php:222 db_structure.php:478 #, fuzzy, php-format #| msgid "%s table(s)" msgid "%s table" @@ -444,7 +440,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:297 tbl_change.php:1031 tbl_indexes.php:250 +#: server_privileges.php:298 tbl_change.php:1031 tbl_indexes.php:250 #: tbl_select.php:288 msgid "Or" msgstr "Eller" @@ -517,9 +513,9 @@ 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:2833 +#: db_structure.php:105 libraries/common.lib.php:2837 #: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50 -#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:467 +#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:465 msgid "Browse" msgstr "Visa" @@ -564,36 +560,36 @@ 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:2832 libraries/sql_query_form.lib.php:334 +#: libraries/common.lib.php:2836 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:2829 libraries/common.lib.php:2836 +#: libraries/common.lib.php:2833 libraries/common.lib.php:2840 #: 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:1106 #: libraries/tbl_links.inc.php:56 pmd_general.php:134 -#: server_privileges.php:593 server_replication.php:315 tbl_tracking.php:269 +#: server_privileges.php:594 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:1656 +#: db_structure.php:543 db_structure.php:544 db_tracking.php:91 +#: libraries/Index.class.php:483 libraries/common.lib.php:1657 #: 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 -#: tbl_structure.php:152 tbl_structure.php:471 +#: tbl_structure.php:152 tbl_structure.php:469 msgid "Drop" 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:1655 +#: db_structure.php:541 db_structure.php:542 libraries/common.lib.php:1656 #: libraries/mult_submits.inc.php:39 libraries/tbl_links.inc.php:105 msgid "Empty" msgstr "Töm" @@ -603,111 +599,111 @@ msgstr "Töm" msgid "Table %s has been emptied" msgstr "Tabellen %s har tömts" -#: db_structure.php:326 libraries/tbl_links.inc.php:133 +#: db_structure.php:325 libraries/tbl_links.inc.php:133 #, php-format msgid "View %s has been dropped" msgstr "Vyn %s har tagits bort" -#: db_structure.php:326 libraries/tbl_links.inc.php:133 +#: db_structure.php:325 libraries/tbl_links.inc.php:133 #, php-format msgid "Table %s has been dropped" msgstr "Tabellen %s har tagits bort" -#: db_structure.php:333 +#: db_structure.php:332 msgid "Tracking is active." msgstr "" -#: db_structure.php:335 +#: db_structure.php:334 msgid "Tracking is not active." msgstr "" -#: db_structure.php:420 libraries/display_tbl.lib.php:1944 +#: db_structure.php:418 libraries/display_tbl.lib.php:1944 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation%" "s." msgstr "Denna vy har åtminstone detta antal rader. Se %sdokumentation%s." -#: db_structure.php:434 db_structure.php:448 libraries/header.inc.php:126 +#: db_structure.php:432 db_structure.php:446 libraries/header.inc.php:130 #: libraries/tbl_info.inc.php:66 tbl_structure.php:185 test/theme.php:74 msgid "View" msgstr "Vy" -#: db_structure.php:485 libraries/db_structure.lib.php:49 -#: libraries/server_links.inc.php:70 server_replication.php:33 +#: db_structure.php:483 libraries/db_structure.lib.php:49 +#: libraries/server_links.inc.php:71 server_replication.php:33 #: server_replication.php:164 server_status.php:369 msgid "Replication" msgstr "Replikering" -#: db_structure.php:489 +#: db_structure.php:487 msgid "Sum" msgstr "Summa" -#: db_structure.php:496 libraries/StorageEngine.class.php:356 +#: db_structure.php:494 libraries/StorageEngine.class.php:356 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "%s är standardlagringsmotorn på denna MySQL-server." -#: db_structure.php:524 db_structure.php:541 db_structure.php:542 +#: db_structure.php:522 db_structure.php:539 db_structure.php:540 #: 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:1596 tbl_structure.php:455 -#: tbl_structure.php:464 +#: server_databases.php:351 server_privileges.php:1616 tbl_structure.php:453 +#: tbl_structure.php:462 msgid "With selected:" msgstr "Med markerade:" -#: db_structure.php:527 libraries/display_tbl.lib.php:2076 -#: server_databases.php:348 server_privileges.php:569 -#: server_privileges.php:1599 tbl_structure.php:458 +#: db_structure.php:525 libraries/display_tbl.lib.php:2076 +#: server_databases.php:348 server_privileges.php:570 +#: server_privileges.php:1619 tbl_structure.php:456 msgid "Check All" msgstr "Markera alla" -#: db_structure.php:531 libraries/display_tbl.lib.php:2077 +#: db_structure.php:529 libraries/display_tbl.lib.php:2077 #: libraries/replication_gui.lib.php:33 server_databases.php:350 -#: server_privileges.php:572 server_privileges.php:1603 tbl_structure.php:462 +#: server_privileges.php:573 server_privileges.php:1623 tbl_structure.php:460 msgid "Uncheck All" msgstr "Avmarkera alla" -#: db_structure.php:536 +#: db_structure.php:534 msgid "Check tables having overhead" msgstr "Markera ooptimerade" -#: db_structure.php:547 db_structure.php:548 db_structure.php:599 +#: db_structure.php:545 db_structure.php:546 db_structure.php:597 #: libraries/display_tbl.lib.php:2180 libraries/mult_submits.inc.php:28 -#: tbl_structure.php:492 tbl_structure.php:494 +#: tbl_structure.php:490 tbl_structure.php:492 msgid "Print view" msgstr "Utskriftsvänlig visning" -#: db_structure.php:549 db_structure.php:550 libraries/mult_submits.inc.php:42 +#: db_structure.php:547 db_structure.php:548 libraries/mult_submits.inc.php:42 #: tbl_operations.php:581 msgid "Check table" msgstr "Kontrollera tabell" -#: db_structure.php:551 db_structure.php:552 libraries/mult_submits.inc.php:47 -#: tbl_operations.php:621 tbl_structure.php:709 tbl_structure.php:711 +#: db_structure.php:549 db_structure.php:550 libraries/mult_submits.inc.php:47 +#: tbl_operations.php:621 tbl_structure.php:707 tbl_structure.php:709 msgid "Optimize table" msgstr "Optimera tabell" -#: db_structure.php:553 db_structure.php:554 libraries/mult_submits.inc.php:52 +#: db_structure.php:551 db_structure.php:552 libraries/mult_submits.inc.php:52 #: tbl_operations.php:611 msgid "Repair table" msgstr "Reparera tabell" -#: db_structure.php:555 db_structure.php:556 libraries/mult_submits.inc.php:57 +#: db_structure.php:553 db_structure.php:554 libraries/mult_submits.inc.php:57 #: tbl_operations.php:601 msgid "Analyze table" msgstr "Analysera tabell" -#: db_structure.php:557 db_structure.php:558 libraries/db_links.inc.php:71 +#: db_structure.php:555 db_structure.php:556 libraries/db_links.inc.php:71 #: 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:1380 +#: libraries/server_links.inc.php:85 libraries/tbl_links.inc.php:82 +#: pmd_pdf.php:84 pmd_pdf.php:109 server_privileges.php:1397 #: setup/frames/menu.inc.php:22 tbl_row_action.php:59 msgid "Export" msgstr "Exportera" -#: db_structure.php:606 libraries/display_pdf_schema.lib.php:44 +#: db_structure.php:604 libraries/display_pdf_schema.lib.php:44 msgid "Data Dictionary" msgstr "Datalexikon" @@ -719,10 +715,10 @@ msgstr "Hoppa över låsta tabeller" #: db_tracking.php:71 libraries/export/htmlword.php:86 #: libraries/export/latex.php:148 libraries/export/odt.php:113 #: libraries/export/sql.php:342 libraries/export/texytext.php:84 -#: libraries/export/xml.php:255 libraries/header.inc.php:106 +#: libraries/export/xml.php:255 libraries/header.inc.php:110 #: libraries/header_printview.inc.php:58 server_databases.php:169 -#: server_privileges.php:1660 server_privileges.php:1721 -#: server_privileges.php:1979 server_processlist.php:56 +#: server_privileges.php:1680 server_privileges.php:1741 +#: server_privileges.php:1999 server_processlist.php:56 #: server_synchronize.php:1179 server_synchronize.php:1183 #: tbl_tracking.php:591 test/theme.php:65 msgid "Database" @@ -744,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:1542 server_privileges.php:1725 -#: server_privileges.php:2073 tbl_structure.php:187 +#: server_privileges.php:1562 server_privileges.php:1745 +#: server_privileges.php:2094 tbl_structure.php:187 msgid "Action" msgstr "Åtgärd" @@ -782,8 +778,8 @@ msgstr "Enbart struktur" msgid "Untracked tables" msgstr "Hoppa över låsta tabeller" -#: db_tracking.php:172 db_tracking.php:174 tbl_structure.php:528 -#: tbl_structure.php:530 +#: db_tracking.php:172 db_tracking.php:174 tbl_structure.php:526 +#: tbl_structure.php:528 #, fuzzy msgid "Track table" msgstr "Kontrollera tabell" @@ -951,187 +947,235 @@ msgstr "Värdnamnet är tomt!" msgid "The user name is empty!" msgstr "Användarnamnet är tomt!" -#: js/messages.php:44 server_privileges.php:1236 user_password.php:70 +#: js/messages.php:44 server_privileges.php:1241 user_password.php:70 msgid "The password is empty!" msgstr "Lösenordet är tomt!" -#: js/messages.php:45 server_privileges.php:1234 user_password.php:73 +#: js/messages.php:45 server_privileges.php:1239 user_password.php:73 msgid "The passwords aren't the same!" msgstr "Lösenorden är inte lika!" -#: js/messages.php:49 pmd_general.php:342 pmd_general.php:379 +#: js/messages.php:46 +#, fuzzy +#| msgid "Add a new User" +msgid "Add a New User" +msgstr "Lägg till ny användare" + +#: js/messages.php:47 js/messages.php:54 pmd_general.php:342 +#: pmd_general.php:379 msgid "Cancel" msgstr "Avbryt" -#: js/messages.php:52 pmd_save_pos.php:54 +#: js/messages.php:48 +#, fuzzy +msgid "Create User" +msgstr "Skapa relation" + +#: js/messages.php:49 +#, fuzzy +#| msgid "Reload privileges" +msgid "Reloading Privileges" +msgstr "Ladda om privilegier" + +#: js/messages.php:50 +#, fuzzy +#| msgid "Remove selected users" +msgid "Removing Selected Users" +msgstr "Ta bort markerade användare" + +#: js/messages.php:57 +#, fuzzy +#| msgid "Load" +msgid "Loading" +msgstr "Ladda" + +#: js/messages.php:58 +#, fuzzy +#| msgid "Processes" +msgid "Processing Request" +msgstr "Processer" + +#: js/messages.php:59 +msgid "Error in Processing Request" +msgstr "" + +#: js/messages.php:60 +msgid "Dropping Column" +msgstr "" + +#: js/messages.php:61 +msgid "Adding Primary Key" +msgstr "" + +#: js/messages.php:64 pmd_save_pos.php:54 msgid "Modifications have been saved" msgstr "Ändringarna har sparats" -#: js/messages.php:53 pmd_relation_upd.php:49 +#: js/messages.php:65 pmd_relation_upd.php:49 msgid "Relation deleted" msgstr "Relation borttagen" -#: js/messages.php:54 pmd_relation_new.php:64 +#: js/messages.php:66 pmd_relation_new.php:64 msgid "FOREIGN KEY relation added" msgstr "Främmande nyckel-relation tillagd" -#: js/messages.php:55 pmd_relation_new.php:86 +#: js/messages.php:67 pmd_relation_new.php:86 msgid "Internal relation added" msgstr "Intern relation tillagd" -#: js/messages.php:56 pmd_relation_new.php:63 pmd_relation_new.php:88 +#: js/messages.php:68 pmd_relation_new.php:63 pmd_relation_new.php:88 msgid "Error: Relation not added." msgstr "Fel: Relation inte tillagd." -#: js/messages.php:57 pmd_relation_new.php:31 +#: js/messages.php:69 pmd_relation_new.php:31 msgid "Error: relation already exists." msgstr "Fel: Relation finns redan." -#: js/messages.php:58 +#: js/messages.php:70 msgid "Error saving coordinates for Designer." msgstr "Fel vid sparande av koordinater för Designer." -#: js/messages.php:59 libraries/relation.lib.php:107 +#: js/messages.php:71 libraries/relation.lib.php:107 #: libraries/relation.lib.php:119 msgid "General relation features" msgstr "Allmänna relationsfunktionaliteter" -#: js/messages.php:59 libraries/relation.lib.php:101 +#: js/messages.php:71 libraries/relation.lib.php:101 #: libraries/relation.lib.php:108 msgid "Disabled" msgstr "Inaktiverat" -#: js/messages.php:60 +#: js/messages.php:72 msgid "Select referenced key" msgstr "Välj refererad nyckel" -#: js/messages.php:61 +#: js/messages.php:73 msgid "Select Foreign Key" msgstr "Välj främmande nyckel" -#: js/messages.php:62 +#: js/messages.php:74 msgid "Please select the primary key or a unique key" msgstr "Välj den primära nyckeln eller en unik nyckel" -#: js/messages.php:63 pmd_general.php:77 tbl_relation.php:548 +#: js/messages.php:75 pmd_general.php:77 tbl_relation.php:548 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" msgstr "Välj fält som ska visas" #. l10n: Display text for calendar close link -#: js/messages.php:73 +#: js/messages.php:85 #, fuzzy #| msgid "Donate" msgid "Done" msgstr "Donera" #. l10n: Display text for previous month link in calendar -#: js/messages.php:75 +#: js/messages.php:87 #, fuzzy #| msgid "Previous" msgid "Prev" msgstr "Föregående" #. l10n: Display text for next month link in calendar -#: js/messages.php:77 libraries/common.lib.php:2353 -#: libraries/common.lib.php:2356 libraries/display_tbl.lib.php:338 +#: js/messages.php:89 libraries/common.lib.php:2357 +#: libraries/common.lib.php:2360 libraries/display_tbl.lib.php:338 #: server_binlog.php:205 server_binlog.php:207 tbl_printview.php:424 -#: tbl_structure.php:801 +#: tbl_structure.php:799 msgid "Next" msgstr "Nästa" #. l10n: Display text for current month link in calendar -#: js/messages.php:79 +#: js/messages.php:91 #, fuzzy #| msgid "Total" msgid "Today" msgstr "Totalt" -#: js/messages.php:82 +#: js/messages.php:94 #, fuzzy #| msgid "Binary" msgid "January" msgstr "Binär" -#: js/messages.php:83 +#: js/messages.php:95 msgid "February" msgstr "" -#: js/messages.php:84 +#: js/messages.php:96 #, fuzzy #| msgid "Mar" msgid "March" msgstr "mars" -#: js/messages.php:85 +#: js/messages.php:97 #, fuzzy #| msgid "Apr" msgid "April" msgstr "april" -#: js/messages.php:86 +#: js/messages.php:98 msgid "May" msgstr "maj" -#: js/messages.php:87 +#: js/messages.php:99 #, fuzzy #| msgid "Jun" msgid "June" msgstr "juni" -#: js/messages.php:88 +#: js/messages.php:100 #, fuzzy #| msgid "Jul" msgid "July" msgstr "juli" -#: js/messages.php:89 +#: js/messages.php:101 #, fuzzy #| msgid "Aug" msgid "August" msgstr "augusti" -#: js/messages.php:90 +#: js/messages.php:102 msgid "September" msgstr "" -#: js/messages.php:91 +#: js/messages.php:103 #, fuzzy #| msgid "Oct" msgid "October" msgstr "oktober" -#: js/messages.php:92 +#: js/messages.php:104 msgid "November" msgstr "" -#: js/messages.php:93 +#: js/messages.php:105 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:97 libraries/common.lib.php:1557 +#: js/messages.php:109 libraries/common.lib.php:1557 msgid "Jan" msgstr "januari" #. l10n: Short month name -#: js/messages.php:99 libraries/common.lib.php:1559 +#: js/messages.php:111 libraries/common.lib.php:1559 msgid "Feb" msgstr "februari" #. l10n: Short month name -#: js/messages.php:101 libraries/common.lib.php:1561 +#: js/messages.php:113 libraries/common.lib.php:1561 msgid "Mar" msgstr "mars" #. l10n: Short month name -#: js/messages.php:103 libraries/common.lib.php:1563 +#: js/messages.php:115 libraries/common.lib.php:1563 msgid "Apr" msgstr "april" #. l10n: Short month name -#: js/messages.php:105 libraries/common.lib.php:1565 +#: js/messages.php:117 libraries/common.lib.php:1565 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1139,178 +1183,178 @@ msgid "May" msgstr "maj" #. l10n: Short month name -#: js/messages.php:107 libraries/common.lib.php:1567 +#: js/messages.php:119 libraries/common.lib.php:1567 msgid "Jun" msgstr "juni" #. l10n: Short month name -#: js/messages.php:109 libraries/common.lib.php:1569 +#: js/messages.php:121 libraries/common.lib.php:1569 msgid "Jul" msgstr "juli" #. l10n: Short month name -#: js/messages.php:111 libraries/common.lib.php:1571 +#: js/messages.php:123 libraries/common.lib.php:1571 msgid "Aug" msgstr "augusti" #. l10n: Short month name -#: js/messages.php:113 libraries/common.lib.php:1573 +#: js/messages.php:125 libraries/common.lib.php:1573 msgid "Sep" msgstr "september" #. l10n: Short month name -#: js/messages.php:115 libraries/common.lib.php:1575 +#: js/messages.php:127 libraries/common.lib.php:1575 msgid "Oct" msgstr "oktober" #. l10n: Short month name -#: js/messages.php:117 libraries/common.lib.php:1577 +#: js/messages.php:129 libraries/common.lib.php:1577 msgid "Nov" msgstr "november" #. l10n: Short month name -#: js/messages.php:119 libraries/common.lib.php:1579 +#: js/messages.php:131 libraries/common.lib.php:1579 msgid "Dec" msgstr "december" -#: js/messages.php:122 +#: js/messages.php:134 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "Sön" -#: js/messages.php:123 +#: js/messages.php:135 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "Mån" -#: js/messages.php:124 +#: js/messages.php:136 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "Tis" -#: js/messages.php:125 +#: js/messages.php:137 msgid "Wednesday" msgstr "" -#: js/messages.php:126 +#: js/messages.php:138 msgid "Thursday" msgstr "" -#: js/messages.php:127 +#: js/messages.php:139 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "Fre" -#: js/messages.php:128 +#: js/messages.php:140 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:132 libraries/common.lib.php:1582 +#: js/messages.php:144 libraries/common.lib.php:1582 msgid "Sun" msgstr "Sön" #. l10n: Short week day name -#: js/messages.php:134 libraries/common.lib.php:1584 +#: js/messages.php:146 libraries/common.lib.php:1584 msgid "Mon" msgstr "Mån" #. l10n: Short week day name -#: js/messages.php:136 libraries/common.lib.php:1586 +#: js/messages.php:148 libraries/common.lib.php:1586 msgid "Tue" msgstr "Tis" #. l10n: Short week day name -#: js/messages.php:138 libraries/common.lib.php:1588 +#: js/messages.php:150 libraries/common.lib.php:1588 msgid "Wed" msgstr "Ons" #. l10n: Short week day name -#: js/messages.php:140 libraries/common.lib.php:1590 +#: js/messages.php:152 libraries/common.lib.php:1590 msgid "Thu" msgstr "Tors" #. l10n: Short week day name -#: js/messages.php:142 libraries/common.lib.php:1592 +#: js/messages.php:154 libraries/common.lib.php:1592 msgid "Fri" msgstr "Fre" #. l10n: Short week day name -#: js/messages.php:144 libraries/common.lib.php:1594 +#: js/messages.php:156 libraries/common.lib.php:1594 msgid "Sat" msgstr "Lör" #. l10n: Minimal week day name -#: js/messages.php:148 +#: js/messages.php:160 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "Sön" #. l10n: Minimal week day name -#: js/messages.php:150 +#: js/messages.php:162 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "Mån" #. l10n: Minimal week day name -#: js/messages.php:152 +#: js/messages.php:164 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "Tis" #. l10n: Minimal week day name -#: js/messages.php:154 +#: js/messages.php:166 #, fuzzy #| msgid "Wed" msgid "We" msgstr "Ons" #. l10n: Minimal week day name -#: js/messages.php:156 +#: js/messages.php:168 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "Tors" #. l10n: Minimal week day name -#: js/messages.php:158 +#: js/messages.php:170 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "Fre" #. l10n: Minimal week day name -#: js/messages.php:160 +#: js/messages.php:172 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "Lör" #. l10n: Column header for week of the year in calendar -#: js/messages.php:162 +#: js/messages.php:174 #, fuzzy #| msgid "Wiki" msgid "Wk" msgstr "Wiki" -#: js/messages.php:164 +#: js/messages.php:176 msgid "Hour" msgstr "" -#: js/messages.php:165 +#: js/messages.php:177 #, fuzzy #| msgid "in use" msgid "Minute" msgstr "används" -#: js/messages.php:166 +#: js/messages.php:178 #, fuzzy #| msgid "per second" msgid "Second" @@ -1370,7 +1414,7 @@ msgstr "Index" #: libraries/Index.class.php:444 libraries/mult_submits.inc.php:103 #: libraries/tbl_properties.inc.php:519 tbl_structure.php:33 -#: tbl_structure.php:155 tbl_structure.php:159 tbl_structure.php:474 +#: tbl_structure.php:155 tbl_structure.php:159 tbl_structure.php:472 #: tbl_tracking.php:322 msgid "Unique" msgstr "Unik" @@ -1413,8 +1457,8 @@ msgstr "" "Indexen %1$s och %2$s verkar vara identiska och ett av dem kan möjligen tas " "bort." -#: libraries/List_Database.class.php:431 libraries/server_links.inc.php:41 -#: server_databases.php:88 server_privileges.php:1660 +#: libraries/List_Database.class.php:431 libraries/server_links.inc.php:42 +#: server_databases.php:88 server_privileges.php:1680 #: setup/lib/messages.inc.php:110 test/theme.php:93 msgid "Databases" msgstr "Databaser" @@ -1587,7 +1631,7 @@ msgstr "Lösenord:" msgid "Server Choice" msgstr "Serverval" -#: libraries/auth/cookie.auth.lib.php:320 libraries/header.inc.php:59 +#: libraries/auth/cookie.auth.lib.php:320 libraries/header.inc.php:63 msgid "Cookies must be enabled past this point." msgstr "Kakor (cookies) måste tillåtas för att gå vidare." @@ -1670,7 +1714,7 @@ msgstr "" "fastän de nödvändiga tilläggen verkar vara laddade. Kontrollera din PHP-" "konfiguration." -#: libraries/common.inc.php:583 +#: libraries/common.inc.php:587 msgid "" "phpMyAdmin was unable to read your configuration file!
This might " "happen if PHP finds a parse error in it or PHP cannot find the file.
Om du erhåller en tom sida är allt bra." -#: libraries/common.inc.php:594 +#: libraries/common.inc.php:598 #, fuzzy, php-format #| msgid "Could not load default configuration from: \"%1$s\"" msgid "Could not load default configuration from: %1$s" msgstr "Kunde inte ladda standardkonfiguration från: \"%1$s\"" -#: libraries/common.inc.php:599 +#: libraries/common.inc.php:603 msgid "" "The $cfg['PmaAbsoluteUri'] directive MUST be set in your " "configuration file!" @@ -1699,28 +1743,28 @@ msgstr "" "Variabeln $cfg['PmaAbsoluteUri'] MÅSTE anges i din " "konfigurationsfil!" -#: libraries/common.inc.php:629 +#: libraries/common.inc.php:633 #, fuzzy, php-format #| msgid "Invalid server index: \"%s\"" msgid "Invalid server index: %s" msgstr "Ogiltigt serverindex: \"%s\"" -#: libraries/common.inc.php:636 +#: libraries/common.inc.php:640 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "Ogiltigt värdnamn för server %1$s. Var god granska din konfiguration." -#: libraries/common.inc.php:645 libraries/header.inc.php:96 +#: libraries/common.inc.php:649 libraries/header.inc.php:100 #: libraries/select_server.lib.php:41 libraries/select_server.lib.php:47 #: main.php:185 test/theme.php:57 msgid "Server" msgstr "Server" -#: libraries/common.inc.php:823 +#: libraries/common.inc.php:827 msgid "Invalid authentication method set in configuration:" msgstr "Ogiltig metod för autentisering angiven i konfiguration:" -#: libraries/common.inc.php:926 +#: libraries/common.inc.php:930 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Du bör uppgradera till %s %s eller senare." @@ -1855,45 +1899,45 @@ msgstr "," msgid "%B %d, %Y at %I:%M %p" msgstr "%d %B %Y kl %H:%M" -#: libraries/common.lib.php:1907 +#: libraries/common.lib.php:1911 #, 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:2322 libraries/common.lib.php:2325 +#: libraries/common.lib.php:2326 libraries/common.lib.php:2329 #: libraries/display_tbl.lib.php:290 server_status.php:719 msgid "Begin" msgstr "Början" -#: libraries/common.lib.php:2323 libraries/common.lib.php:2326 +#: libraries/common.lib.php:2327 libraries/common.lib.php:2330 #: libraries/display_tbl.lib.php:291 server_binlog.php:168 #: server_binlog.php:170 msgid "Previous" msgstr "Föregående" -#: libraries/common.lib.php:2354 libraries/common.lib.php:2357 +#: libraries/common.lib.php:2358 libraries/common.lib.php:2361 #: libraries/display_tbl.lib.php:353 msgid "End" msgstr "Slutet" -#: libraries/common.lib.php:2430 +#: libraries/common.lib.php:2434 #, php-format msgid "Jump to database "%s"." msgstr "Hoppa till databas "%s"." -#: libraries/common.lib.php:2450 +#: libraries/common.lib.php:2454 #, 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:2830 libraries/common.lib.php:2837 +#: libraries/common.lib.php:2834 libraries/common.lib.php:2841 #: libraries/db_links.inc.php:68 libraries/export/sql.php:25 -#: libraries/import/sql.php:18 libraries/server_links.inc.php:45 +#: libraries/import/sql.php:18 libraries/server_links.inc.php:46 #: libraries/tbl_links.inc.php:60 querywindow.php:99 test/theme.php:97 msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2839 libraries/db_links.inc.php:104 +#: libraries/common.lib.php:2843 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,15 +1985,15 @@ msgstr "Skapa fråga" msgid "Designer" msgstr "Designer" -#: libraries/db_links.inc.php:98 libraries/server_links.inc.php:88 +#: libraries/db_links.inc.php:98 libraries/server_links.inc.php:89 #: libraries/tbl_links.inc.php:91 pmd_pdf.php:84 pmd_pdf.php:110 #: setup/frames/menu.inc.php:21 msgid "Import" msgstr "Importera" -#: libraries/db_links.inc.php:111 libraries/server_links.inc.php:66 -#: server_privileges.php:111 server_privileges.php:1722 -#: server_privileges.php:2071 test/theme.php:117 +#: libraries/db_links.inc.php:111 libraries/server_links.inc.php:67 +#: server_privileges.php:112 server_privileges.php:1742 +#: server_privileges.php:2092 test/theme.php:117 msgid "Privileges" msgstr "Privilegier" @@ -1968,7 +2012,7 @@ msgid "" msgstr "Kan vara ungefärligt. Se FAQ 3.11" #: libraries/db_structure.lib.php:69 server_databases.php:142 -#: tbl_printview.php:336 tbl_structure.php:682 +#: tbl_printview.php:336 tbl_structure.php:680 msgid "Overhead" msgstr "Outnyttjat" @@ -1985,7 +2029,7 @@ msgstr "Servern svarar inte" msgid "(or the local MySQL server's socket is not correctly configured)" msgstr "(eller den lokala MySQL-serverns socket är inte korrekt konfigurerad)" -#: libraries/dbi/mysql.dbi.lib.php:362 tbl_structure.php:608 +#: libraries/dbi/mysql.dbi.lib.php:362 tbl_structure.php:606 msgid "Details..." msgstr "Detaljer..." @@ -1995,22 +2039,22 @@ msgid "Change password" msgstr "Byt lösenord" #: libraries/display_change_password.lib.php:35 -#: libraries/replication_gui.lib.php:345 server_privileges.php:807 +#: libraries/replication_gui.lib.php:345 server_privileges.php:808 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:796 -#: server_privileges.php:800 server_privileges.php:811 -#: server_privileges.php:1538 server_synchronize.php:1175 +#: libraries/replication_gui.lib.php:349 server_privileges.php:797 +#: server_privileges.php:801 server_privileges.php:812 +#: server_privileges.php:1558 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:815 server_privileges.php:818 +#: server_privileges.php:816 server_privileges.php:819 msgid "Re-type" msgstr "Skriv igen" @@ -2025,12 +2069,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:822 +#: libraries/replication_gui.lib.php:360 server_privileges.php:823 msgid "Generate Password" msgstr "Generera lösenord" #: libraries/display_change_password.lib.php:75 -#: libraries/replication_gui.lib.php:363 server_privileges.php:825 +#: libraries/replication_gui.lib.php:363 server_privileges.php:826 msgid "Generate" msgstr "Generera" @@ -2043,8 +2087,8 @@ msgstr "Skapa ny databas" msgid "Create" msgstr "Skapa" -#: libraries/display_create_database.lib.php:40 server_privileges.php:113 -#: server_privileges.php:1427 server_replication.php:35 +#: libraries/display_create_database.lib.php:40 server_privileges.php:114 +#: server_privileges.php:1447 server_replication.php:35 msgid "No Privileges" msgstr "Inga privilegier" @@ -2135,7 +2179,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:1875 server_processlist.php:75 +#: server_privileges.php:1895 server_processlist.php:75 msgid "None" msgstr "Inget" @@ -2331,7 +2375,7 @@ msgstr "Sortera efter nyckel" #: libraries/import/docsql.php:34 libraries/import/ldi.php:47 #: libraries/import/ods.php:30 libraries/import/sql.php:20 #: libraries/import/xls.php:26 libraries/import/xlsx.php:26 -#: libraries/import/xml.php:25 tbl_select.php:267 tbl_structure.php:753 +#: libraries/import/xml.php:25 tbl_select.php:267 tbl_structure.php:751 msgid "Options" msgstr "Alternativ" @@ -2409,7 +2453,7 @@ msgstr "Frågan tog %01.4f sek" #: libraries/display_tbl.lib.php:2089 libraries/mult_submits.inc.php:113 #: querywindow.php:125 querywindow.php:129 querywindow.php:132 -#: tbl_structure.php:25 tbl_structure.php:150 tbl_structure.php:470 +#: tbl_structure.php:25 tbl_structure.php:150 tbl_structure.php:468 msgid "Change" msgstr "Ändra" @@ -2479,7 +2523,7 @@ msgstr "Buffertanvändning" #: libraries/engines/innodb.lib.php:194 server_databases.php:137 #: server_databases.php:305 server_status.php:525 server_status.php:586 -#: server_status.php:607 tbl_printview.php:351 tbl_structure.php:696 +#: server_status.php:607 tbl_printview.php:351 tbl_structure.php:694 msgid "Total" msgstr "Totalt" @@ -2763,7 +2807,7 @@ msgstr "" "bort. Annars döps de om och ges det näst högsta numret." #: libraries/export/codegen.php:37 setup/lib/messages.inc.php:88 -#: tbl_printview.php:376 tbl_structure.php:737 +#: tbl_printview.php:376 tbl_structure.php:735 msgid "Format" msgstr "Format" @@ -2837,8 +2881,8 @@ 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:576 server_replication.php:316 tbl_printview.php:317 -#: tbl_structure.php:665 +#: server_privileges.php:577 server_replication.php:316 tbl_printview.php:317 +#: tbl_structure.php:663 msgid "Data" msgstr "Data" @@ -2887,9 +2931,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:731 -#: server_privileges.php:734 server_privileges.php:790 -#: server_privileges.php:1537 server_privileges.php:2069 +#: libraries/replication_gui.lib.php:329 server_privileges.php:732 +#: server_privileges.php:735 server_privileges.php:791 +#: server_privileges.php:1557 server_privileges.php:2090 #: server_processlist.php:55 server_synchronize.php:1159 msgid "Host" msgstr "Värd" @@ -3089,7 +3133,7 @@ msgstr "Standard för export" msgid "Open new phpMyAdmin window" msgstr "Öppna nytt phpMyAdmin-fönster" -#: libraries/header.inc.php:115 +#: libraries/header.inc.php:119 #, fuzzy msgid "New table" msgstr "Inga tabeller" @@ -3253,20 +3297,20 @@ 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 +#: tbl_structure.php:471 msgid "Primary" msgstr "Primär" #: libraries/mult_submits.inc.php:98 libraries/tbl_properties.inc.php:116 #: libraries/tbl_properties.inc.php:525 tbl_printview.php:326 #: tbl_structure.php:31 tbl_structure.php:154 tbl_structure.php:158 -#: tbl_structure.php:475 tbl_structure.php:673 +#: tbl_structure.php:473 tbl_structure.php:671 msgid "Index" msgstr "Index" #: libraries/mult_submits.inc.php:108 libraries/tbl_properties.inc.php:531 #: tbl_structure.php:35 tbl_structure.php:156 tbl_structure.php:160 -#: tbl_structure.php:478 +#: tbl_structure.php:476 msgid "Fulltext" msgstr "Heltext" @@ -3568,8 +3612,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:711 -#: server_privileges.php:714 server_privileges.php:721 +#: libraries/replication_gui.lib.php:259 server_privileges.php:712 +#: server_privileges.php:715 server_privileges.php:722 #: server_synchronize.php:1171 msgid "User name" msgstr "Användarnamn" @@ -3594,7 +3638,7 @@ msgstr "Variabel" #: 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 +#: tbl_structure.php:727 msgid "Value" msgstr "Värde" @@ -3612,34 +3656,34 @@ msgstr "" msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:254 server_privileges.php:716 +#: libraries/replication_gui.lib.php:254 server_privileges.php:717 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:717 -#: server_privileges.php:784 server_privileges.php:808 -#: server_privileges.php:1928 server_privileges.php:1958 +#: libraries/replication_gui.lib.php:346 server_privileges.php:718 +#: server_privileges.php:785 server_privileges.php:809 +#: server_privileges.php:1948 server_privileges.php:1978 msgid "Use text field" msgstr "Använd textfältet" -#: libraries/replication_gui.lib.php:302 server_privileges.php:764 +#: libraries/replication_gui.lib.php:302 server_privileges.php:765 msgid "Any host" msgstr "Vilken värd som helst" -#: libraries/replication_gui.lib.php:306 server_privileges.php:768 +#: libraries/replication_gui.lib.php:306 server_privileges.php:769 msgid "Local" msgstr "Lokal" -#: libraries/replication_gui.lib.php:312 server_privileges.php:773 +#: libraries/replication_gui.lib.php:312 server_privileges.php:774 msgid "This Host" msgstr "Denna värd" -#: libraries/replication_gui.lib.php:318 server_privileges.php:779 +#: libraries/replication_gui.lib.php:318 server_privileges.php:780 msgid "Use Host Table" msgstr "Använd värdtabell" -#: libraries/replication_gui.lib.php:331 server_privileges.php:792 +#: libraries/replication_gui.lib.php:331 server_privileges.php:793 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -3675,29 +3719,29 @@ msgstr "Okänt språk: %1$s." msgid "Servers" msgstr "Servrar" -#: libraries/server_links.inc.php:53 server_engines.php:112 +#: libraries/server_links.inc.php:54 server_engines.php:112 #: server_engines.php:116 server_status.php:415 test/theme.php:105 msgid "Variables" msgstr "Variabler" -#: libraries/server_links.inc.php:57 test/theme.php:109 +#: libraries/server_links.inc.php:58 test/theme.php:109 msgid "Charsets" msgstr "Teckenuppsättningar" -#: libraries/server_links.inc.php:61 test/theme.php:113 +#: libraries/server_links.inc.php:62 test/theme.php:113 msgid "Engines" msgstr "Motorer" -#: libraries/server_links.inc.php:76 server_binlog.php:110 +#: libraries/server_links.inc.php:77 server_binlog.php:110 #: server_status.php:364 test/theme.php:121 msgid "Binary log" msgstr "Binär logg" -#: libraries/server_links.inc.php:80 +#: libraries/server_links.inc.php:81 msgid "Processes" msgstr "Processer" -#: libraries/server_links.inc.php:92 server_synchronize.php:1092 +#: libraries/server_links.inc.php:93 server_synchronize.php:1092 #: server_synchronize.php:1100 msgid "Synchronize" msgstr "" @@ -3949,13 +3993,13 @@ msgstr "Partitionsdefinition" msgid "Save" msgstr "Spara" -#: libraries/tbl_properties.inc.php:780 tbl_structure.php:542 +#: libraries/tbl_properties.inc.php:780 tbl_structure.php:540 #, fuzzy, php-format #| msgid "Add %s field(s)" msgid "Add %s column(s)" msgstr "Lägg till %s fält" -#: libraries/tbl_properties.inc.php:784 tbl_structure.php:536 +#: libraries/tbl_properties.inc.php:784 tbl_structure.php:534 #, fuzzy #| msgid "You have to add at least one field." msgid "You have to add at least one column." @@ -4169,8 +4213,8 @@ msgstr "Återställ" msgid "Protocol version" msgstr "Protokollversion" -#: main.php:189 server_privileges.php:1389 server_privileges.php:1536 -#: server_privileges.php:1650 server_privileges.php:2068 +#: main.php:189 server_privileges.php:1406 server_privileges.php:1556 +#: server_privileges.php:1670 server_privileges.php:2089 #: server_processlist.php:54 msgid "User" msgstr "Användare" @@ -4627,113 +4671,113 @@ msgstr "Lagringsmotorer" msgid "View dump (schema) of databases" msgstr "Visa SQL-satser för databaser" -#: server_privileges.php:24 server_privileges.php:266 +#: server_privileges.php:25 server_privileges.php:267 msgid "Includes all privileges except GRANT." msgstr "Inkluderar alla privilegier utom GRANT." -#: server_privileges.php:25 server_privileges.php:192 -#: server_privileges.php:515 +#: server_privileges.php:26 server_privileges.php:193 +#: server_privileges.php:516 msgid "Allows altering the structure of existing tables." msgstr "Tillåter ändring av befintliga tabellers struktur." -#: server_privileges.php:26 server_privileges.php:208 -#: server_privileges.php:521 +#: server_privileges.php:27 server_privileges.php:209 +#: server_privileges.php:522 msgid "Allows altering and dropping stored routines." msgstr "Tillåter ändring och borttagning av lagrade rutiner." -#: server_privileges.php:27 server_privileges.php:184 -#: server_privileges.php:514 +#: server_privileges.php:28 server_privileges.php:185 +#: server_privileges.php:515 msgid "Allows creating new databases and tables." msgstr "Tillåter skapande av nya databaser och tabeller." -#: server_privileges.php:28 server_privileges.php:207 -#: server_privileges.php:520 +#: server_privileges.php:29 server_privileges.php:208 +#: server_privileges.php:521 msgid "Allows creating stored routines." msgstr "Tillåter skapande av lagrade rutiner." -#: server_privileges.php:29 server_privileges.php:514 +#: server_privileges.php:30 server_privileges.php:515 msgid "Allows creating new tables." msgstr "Tillåter skapande av nya tabeller." -#: server_privileges.php:30 server_privileges.php:195 -#: server_privileges.php:518 +#: server_privileges.php:31 server_privileges.php:196 +#: server_privileges.php:519 msgid "Allows creating temporary tables." msgstr "Tillåter skapande av temporära tabeller." -#: server_privileges.php:31 server_privileges.php:209 -#: server_privileges.php:554 +#: server_privileges.php:32 server_privileges.php:210 +#: server_privileges.php:555 msgid "Allows creating, dropping and renaming user accounts." msgstr "Tillåter skapande, borttagning och omdöpning av användarkonton." -#: server_privileges.php:32 server_privileges.php:199 -#: server_privileges.php:203 server_privileges.php:526 -#: server_privileges.php:530 +#: server_privileges.php:33 server_privileges.php:200 +#: server_privileges.php:204 server_privileges.php:527 +#: server_privileges.php:531 msgid "Allows creating new views." msgstr "Tillåter skapande av nya vyer." -#: server_privileges.php:33 server_privileges.php:183 -#: server_privileges.php:506 +#: server_privileges.php:34 server_privileges.php:184 +#: server_privileges.php:507 msgid "Allows deleting data." msgstr "Tillåter borttagning av data." -#: server_privileges.php:34 server_privileges.php:185 -#: server_privileges.php:517 +#: server_privileges.php:35 server_privileges.php:186 +#: server_privileges.php:518 msgid "Allows dropping databases and tables." msgstr "Tillåter borttagning av databaser och tabeller." -#: server_privileges.php:35 server_privileges.php:517 +#: server_privileges.php:36 server_privileges.php:518 msgid "Allows dropping tables." msgstr "Tillåter borttagning av tabeller." -#: server_privileges.php:36 server_privileges.php:200 -#: server_privileges.php:534 +#: server_privileges.php:37 server_privileges.php:201 +#: server_privileges.php:535 msgid "Allows to set up events for the event scheduler" msgstr "Tillåter skapande av händelser för händelseschemaläggaren" -#: server_privileges.php:37 server_privileges.php:210 -#: server_privileges.php:522 +#: server_privileges.php:38 server_privileges.php:211 +#: server_privileges.php:523 msgid "Allows executing stored routines." msgstr "Tillåter utförande av lagrade rutiner." -#: server_privileges.php:38 server_privileges.php:189 -#: server_privileges.php:509 +#: server_privileges.php:39 server_privileges.php:190 +#: server_privileges.php:510 msgid "Allows importing data from and exporting data into files." msgstr "Tillåter import av data från och export av data till filer." -#: server_privileges.php:39 server_privileges.php:540 +#: server_privileges.php:40 server_privileges.php:541 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "Tillåter tillägg av användare och privilegier utan omladdning av " "privilegiumtabellerna." -#: server_privileges.php:40 server_privileges.php:191 -#: server_privileges.php:516 +#: server_privileges.php:41 server_privileges.php:192 +#: server_privileges.php:517 msgid "Allows creating and dropping indexes." msgstr "Tillåter skapande och borttagning av index." -#: server_privileges.php:41 server_privileges.php:181 -#: server_privileges.php:442 server_privileges.php:504 +#: server_privileges.php:42 server_privileges.php:182 +#: server_privileges.php:443 server_privileges.php:505 msgid "Allows inserting and replacing data." msgstr "Tillåter infogning och ersättning av data." -#: server_privileges.php:42 server_privileges.php:196 -#: server_privileges.php:549 +#: server_privileges.php:43 server_privileges.php:197 +#: server_privileges.php:550 msgid "Allows locking tables for the current thread." msgstr "Tillåter låsning av tabeller för gällande tråd." -#: server_privileges.php:43 server_privileges.php:646 -#: server_privileges.php:648 +#: server_privileges.php:44 server_privileges.php:647 +#: server_privileges.php:649 msgid "Limits the number of new connections the user may open per hour." msgstr "Begränsar antalet nya förbindelser användaren kan öppna per timme." -#: server_privileges.php:44 server_privileges.php:634 -#: server_privileges.php:636 +#: server_privileges.php:45 server_privileges.php:635 +#: server_privileges.php:637 msgid "Limits the number of queries the user may send to the server per hour." msgstr "Begränsar antalet frågor användaren kan skicka till servern per timme." -#: server_privileges.php:45 server_privileges.php:640 -#: server_privileges.php:642 +#: server_privileges.php:46 server_privileges.php:641 +#: server_privileges.php:643 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -4741,59 +4785,59 @@ 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 +#: server_privileges.php:47 server_privileges.php:653 +#: server_privileges.php:655 msgid "Limits the number of simultaneous connections the user may have." msgstr "Begränsar antalet samtidiga förbindelser som användaren kan ha." -#: server_privileges.php:47 server_privileges.php:188 -#: server_privileges.php:544 +#: server_privileges.php:48 server_privileges.php:189 +#: server_privileges.php:545 msgid "Allows viewing processes of all users" msgstr "Tillåter visning av processer för alla användare" -#: server_privileges.php:48 server_privileges.php:190 -#: server_privileges.php:448 server_privileges.php:550 +#: server_privileges.php:49 server_privileges.php:191 +#: server_privileges.php:449 server_privileges.php:551 msgid "Has no effect in this MySQL version." msgstr "Har ingen verkan i denna MySQL-version." -#: server_privileges.php:49 server_privileges.php:186 -#: server_privileges.php:545 +#: server_privileges.php:50 server_privileges.php:187 +#: server_privileges.php:546 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" "Tillåter omladdning av serverinställningar och rensning av serverns cache." -#: server_privileges.php:50 server_privileges.php:198 -#: server_privileges.php:552 +#: server_privileges.php:51 server_privileges.php:199 +#: server_privileges.php:553 msgid "Allows the user to ask where the slaves / masters are." msgstr "Ger användaren rätt att fråga var slav- / huvudservrarna är." -#: server_privileges.php:51 server_privileges.php:197 -#: server_privileges.php:553 +#: server_privileges.php:52 server_privileges.php:198 +#: server_privileges.php:554 msgid "Needed for the replication slaves." msgstr "Nödvändigt för replikeringsslavar." -#: server_privileges.php:52 server_privileges.php:180 -#: server_privileges.php:439 server_privileges.php:503 +#: server_privileges.php:53 server_privileges.php:181 +#: server_privileges.php:440 server_privileges.php:504 msgid "Allows reading data." msgstr "Tillåter läsning av data." -#: server_privileges.php:53 server_privileges.php:193 -#: server_privileges.php:547 +#: server_privileges.php:54 server_privileges.php:194 +#: server_privileges.php:548 msgid "Gives access to the complete list of databases." msgstr "Ger tillgång till den fullständiga databaslistan." -#: server_privileges.php:54 server_privileges.php:204 -#: server_privileges.php:206 server_privileges.php:519 +#: server_privileges.php:55 server_privileges.php:205 +#: server_privileges.php:207 server_privileges.php:520 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Tillåter utförande av SHOW CREATE VIEW-frågor." -#: server_privileges.php:55 server_privileges.php:187 -#: server_privileges.php:546 +#: server_privileges.php:56 server_privileges.php:188 +#: server_privileges.php:547 msgid "Allows shutting down the server." msgstr "Tillåter avstängning av servern." -#: server_privileges.php:56 server_privileges.php:194 -#: server_privileges.php:543 +#: server_privileges.php:57 server_privileges.php:195 +#: server_privileges.php:544 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -4803,158 +4847,158 @@ msgstr "" "Nödvändig för de flesta administrativa funktioner, som att sätta globala " "variabler eller döda andra användares trådar." -#: server_privileges.php:57 server_privileges.php:201 -#: server_privileges.php:535 +#: server_privileges.php:58 server_privileges.php:202 +#: server_privileges.php:536 msgid "Allows creating and dropping triggers" msgstr "Tillåter skapande och borttagning av utlösare" -#: server_privileges.php:58 server_privileges.php:182 -#: server_privileges.php:445 server_privileges.php:505 +#: server_privileges.php:59 server_privileges.php:183 +#: server_privileges.php:446 server_privileges.php:506 msgid "Allows changing data." msgstr "Tillåter ändring av data." -#: server_privileges.php:59 server_privileges.php:260 +#: server_privileges.php:60 server_privileges.php:261 msgid "No privileges." msgstr "Inga privilegier." -#: server_privileges.php:302 server_privileges.php:303 +#: server_privileges.php:303 server_privileges.php:304 #, fuzzy #| msgid "None" msgctxt "None privileges" msgid "None" msgstr "Inget" -#: server_privileges.php:431 server_privileges.php:566 -#: server_privileges.php:1718 server_privileges.php:1724 +#: server_privileges.php:432 server_privileges.php:567 +#: server_privileges.php:1738 server_privileges.php:1744 msgid "Table-specific privileges" msgstr "Tabellspecifika privilegier" -#: server_privileges.php:432 server_privileges.php:574 -#: server_privileges.php:1540 +#: server_privileges.php:433 server_privileges.php:575 +#: server_privileges.php:1560 msgid " Note: MySQL privilege names are expressed in English " msgstr " Obs! MySQL privilegiumnamn anges på engelska " -#: server_privileges.php:563 server_privileges.php:1539 +#: server_privileges.php:564 server_privileges.php:1559 msgid "Global privileges" msgstr "Globala privilegier" -#: server_privileges.php:565 server_privileges.php:1718 +#: server_privileges.php:566 server_privileges.php:1738 msgid "Database-specific privileges" msgstr "Databasspecifika privilegier" -#: server_privileges.php:610 +#: server_privileges.php:611 msgid "Administration" msgstr "Administration" -#: server_privileges.php:630 +#: server_privileges.php:631 msgid "Resource limits" msgstr "Resursbegränsningar" -#: server_privileges.php:631 +#: server_privileges.php:632 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "" "Anm: Genom att sätta dessa alternativ till 0 (noll) tas begränsningarna bort." -#: server_privileges.php:708 +#: server_privileges.php:709 msgid "Login Information" msgstr "Inloggningsinformation" -#: server_privileges.php:802 +#: server_privileges.php:803 msgid "Do not change the password" msgstr "Ändra inte lösenordet" -#: server_privileges.php:843 server_privileges.php:2205 +#: server_privileges.php:844 server_privileges.php:2226 #, fuzzy #| msgid "No user(s) found." msgid "No user found." msgstr "Hittade ingen användare." -#: server_privileges.php:887 +#: server_privileges.php:888 #, php-format msgid "The user %s already exists!" msgstr "Användaren %s finns redan!" -#: server_privileges.php:970 +#: server_privileges.php:971 msgid "You have added a new user." msgstr "Du har lagt till en ny användare." -#: server_privileges.php:1191 +#: server_privileges.php:1196 #, php-format msgid "You have updated the privileges for %s." msgstr "Du har uppdaterat privilegierna för %s." -#: server_privileges.php:1215 +#: server_privileges.php:1220 #, php-format msgid "You have revoked the privileges for %s" msgstr "Du har upphävt privilegierna för %s" -#: server_privileges.php:1251 +#: server_privileges.php:1256 #, php-format msgid "The password for %s was changed successfully." msgstr "Lösenordet för %s har ändrats." -#: server_privileges.php:1271 +#: server_privileges.php:1276 #, php-format msgid "Deleting %s" msgstr "Tar bort %s" -#: server_privileges.php:1282 +#: server_privileges.php:1287 msgid "No users selected for deleting!" msgstr "Inga användare valda för borttagning!" -#: server_privileges.php:1285 +#: server_privileges.php:1290 msgid "Reloading the privileges" msgstr "Laddar om privilegierna" -#: server_privileges.php:1300 +#: server_privileges.php:1305 msgid "The selected users have been deleted successfully." msgstr "De markerade användarna har tagits bort." -#: server_privileges.php:1335 +#: server_privileges.php:1344 msgid "The privileges were reloaded successfully." msgstr "Privilegierna har laddats om." -#: server_privileges.php:1363 server_privileges.php:1649 +#: server_privileges.php:1380 server_privileges.php:1669 msgid "Edit Privileges" msgstr "Ändra privilegier" -#: server_privileges.php:1372 +#: server_privileges.php:1389 msgid "Revoke" msgstr "Upphäv" -#: server_privileges.php:1404 +#: server_privileges.php:1424 msgid "User overview" msgstr "Användaröversikt" -#: server_privileges.php:1541 server_privileges.php:1723 -#: server_privileges.php:2072 +#: server_privileges.php:1561 server_privileges.php:1743 +#: server_privileges.php:2093 msgid "Grant" msgstr "Grant" -#: server_privileges.php:1560 server_privileges.php:2162 +#: server_privileges.php:1580 server_privileges.php:2183 msgid "Any" msgstr "Vem som helst" -#: server_privileges.php:1609 server_privileges.php:1633 -#: server_privileges.php:2027 server_privileges.php:2216 +#: server_privileges.php:1629 server_privileges.php:1653 +#: server_privileges.php:2048 server_privileges.php:2237 msgid "Add a new User" msgstr "Lägg till ny användare" -#: server_privileges.php:1614 +#: server_privileges.php:1634 msgid "Remove selected users" msgstr "Ta bort markerade användare" -#: server_privileges.php:1617 +#: server_privileges.php:1637 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:1618 server_privileges.php:1619 -#: server_privileges.php:1620 +#: server_privileges.php:1638 server_privileges.php:1639 +#: server_privileges.php:1640 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:1636 +#: server_privileges.php:1656 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -4967,51 +5011,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:1684 +#: server_privileges.php:1704 msgid "The selected user was not found in the privilege table." msgstr "Den markerade användaren kunde inte hittas i privilegiumtabellen." -#: server_privileges.php:1724 +#: server_privileges.php:1744 msgid "Column-specific privileges" msgstr "Kolumnspecifika privilegier" -#: server_privileges.php:1925 +#: server_privileges.php:1945 msgid "Add privileges on the following database" msgstr "Lägg till privilegier till följande databas" -#: server_privileges.php:1943 +#: server_privileges.php:1963 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:1946 +#: server_privileges.php:1966 msgid "Add privileges on the following table" msgstr "Lägg till privilegier till följande tabell" -#: server_privileges.php:2003 +#: server_privileges.php:2023 msgid "Change Login Information / Copy User" msgstr "Ändra inloggningsinformation / Kopiera användare" -#: server_privileges.php:2006 +#: server_privileges.php:2026 msgid "Create a new user with the same privileges and ..." msgstr "Skapa en ny användare med samma privilegier och ..." -#: server_privileges.php:2008 +#: server_privileges.php:2028 msgid "... keep the old one." msgstr "... behåll den gamla." -#: server_privileges.php:2009 +#: server_privileges.php:2029 msgid " ... delete the old one from the user tables." msgstr " ... ta bort den gamla från användartabellerna." -#: server_privileges.php:2010 +#: server_privileges.php:2030 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:2011 +#: server_privileges.php:2031 msgid "" " ... delete the old one from the user tables and reload the privileges " "afterwards." @@ -5019,44 +5063,44 @@ msgstr "" " ... ta bort den gamla från användartabellerna och ladda om privilegierna " "efteråt." -#: server_privileges.php:2033 +#: server_privileges.php:2054 msgid "Database for user" msgstr "Databas för användare" -#: server_privileges.php:2037 +#: server_privileges.php:2058 #, fuzzy #| msgid "None" msgctxt "Create none database for user" msgid "None" msgstr "Inget" -#: server_privileges.php:2038 +#: server_privileges.php:2059 msgid "Create database with same name and grant all privileges" msgstr "Skapa databas med samma namn och ge alla privilegier" -#: server_privileges.php:2039 +#: server_privileges.php:2060 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "Ge alla privilegier till namn med jokertecken (username\\_%)" -#: server_privileges.php:2042 +#: server_privileges.php:2063 #, php-format msgid "Grant all privileges on database "%s"" msgstr "Bevilja alla privilegier för databas "%s"" -#: server_privileges.php:2065 +#: server_privileges.php:2086 #, php-format msgid "Users having access to "%s"" msgstr "Användare som har tillgång till "%s"" -#: server_privileges.php:2173 +#: server_privileges.php:2194 msgid "global" msgstr "global" -#: server_privileges.php:2175 +#: server_privileges.php:2196 msgid "database-specific" msgstr "databasspecifik" -#: server_privileges.php:2177 +#: server_privileges.php:2198 msgid "wildcard" msgstr "jokertecken" @@ -8051,6 +8095,10 @@ msgstr "" msgid "Show insert query" msgstr "Visar SQL-fråga" +#: tbl_change.php:1143 +msgid "and then" +msgstr "och sedan" + #: tbl_change.php:1147 msgid "Go back to previous page" msgstr "Gå tillbaka till föregående sida" @@ -8133,7 +8181,7 @@ msgstr "" msgid "Add to index  %s column(s)" msgstr "Lägg till %s kolumn(er) till index" -#: tbl_indexes.php:256 tbl_structure.php:589 tbl_structure.php:600 +#: tbl_indexes.php:256 tbl_structure.php:587 tbl_structure.php:598 msgid "Column count has to be larger than zero." msgstr "Antalet kolumner måste vara större än noll." @@ -8247,39 +8295,39 @@ msgstr "Kontrollera referensintegritet:" msgid "Show tables" msgstr "Visa tabeller" -#: tbl_printview.php:310 tbl_structure.php:656 +#: tbl_printview.php:310 tbl_structure.php:654 msgid "Space usage" msgstr "Utrymmesanvändning" -#: tbl_printview.php:314 tbl_structure.php:660 +#: tbl_printview.php:314 tbl_structure.php:658 msgid "Usage" msgstr "Användning" -#: tbl_printview.php:341 tbl_structure.php:687 +#: tbl_printview.php:341 tbl_structure.php:685 msgid "Effective" msgstr "Effektivt" -#: tbl_printview.php:366 tbl_structure.php:725 +#: tbl_printview.php:366 tbl_structure.php:723 msgid "Row Statistics" msgstr "Radstatistik" -#: tbl_printview.php:369 tbl_structure.php:728 +#: tbl_printview.php:369 tbl_structure.php:726 msgid "Statements" msgstr "Uppgift" -#: tbl_printview.php:380 tbl_structure.php:740 +#: tbl_printview.php:380 tbl_structure.php:738 msgid "static" msgstr "statisk" -#: tbl_printview.php:382 tbl_structure.php:742 +#: tbl_printview.php:382 tbl_structure.php:740 msgid "dynamic" msgstr "dynamisk" -#: tbl_printview.php:404 tbl_structure.php:785 +#: tbl_printview.php:404 tbl_structure.php:783 msgid "Row length" msgstr "Radlängd" -#: tbl_printview.php:414 tbl_structure.php:793 +#: tbl_printview.php:414 tbl_structure.php:791 msgid " Row size " msgstr "Radstorlek" @@ -8355,50 +8403,50 @@ msgstr "Inget" msgid "Column %s has been dropped" msgstr "Tabellen %s har tagits bort" -#: tbl_structure.php:385 +#: tbl_structure.php:384 #, php-format msgid "A primary key has been added on %s" msgstr "En primär nyckel har lagts till för %s" -#: tbl_structure.php:400 tbl_structure.php:414 tbl_structure.php:428 +#: tbl_structure.php:398 tbl_structure.php:412 tbl_structure.php:426 #, php-format msgid "An index has been added on %s" msgstr "Ett index har lagts till för %s" -#: tbl_structure.php:506 tbl_structure.php:508 +#: tbl_structure.php:504 tbl_structure.php:506 msgid "Relation view" msgstr "Visa relationer" -#: tbl_structure.php:515 tbl_structure.php:517 +#: tbl_structure.php:513 tbl_structure.php:515 msgid "Propose table structure" msgstr "Föreslå tabellstruktur" -#: tbl_structure.php:540 +#: tbl_structure.php:538 #, fuzzy #| msgid "Add %s field(s)" msgid "Add column" msgstr "Lägg till %s fält" -#: tbl_structure.php:554 +#: tbl_structure.php:552 msgid "At End of Table" msgstr "I slutet av tabellen" -#: tbl_structure.php:555 +#: tbl_structure.php:553 msgid "At Beginning of Table" msgstr "I början av tabellen" -#: tbl_structure.php:556 +#: tbl_structure.php:554 #, php-format msgid "After %s" msgstr "Efter %s" -#: tbl_structure.php:594 +#: tbl_structure.php:592 #, fuzzy, php-format #| msgid "Create an index on %s columns" msgid "Create an index on  %s columns" msgstr "Skapa ett index för %s kolumn(er)" -#: tbl_structure.php:756 +#: tbl_structure.php:754 msgid "partitioned" msgstr "partitionerad" @@ -8862,9 +8910,6 @@ msgstr "Döp om tabellen till" #~ msgid "Process list" #~ msgstr "Processlista" -#~ msgid "Reload privileges" -#~ msgstr "Ladda om privilegier" - #~ msgid "" #~ "The users will still have the USAGE privilege until the privileges are " #~ "reloaded." diff --git a/po/ta.po b/po/ta.po index f4e81a2f3..0252296e1 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-13 09:03-0400\n" +"POT-Creation-Date: 2010-06-22 00:55+0530\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:1514 +#: libraries/display_tbl.lib.php:417 server_privileges.php:1534 msgid "Show all" msgstr "" -#: browse_foreigners.php:82 libraries/common.lib.php:2313 +#: browse_foreigners.php:82 libraries/common.lib.php:2317 #: 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,18 +38,18 @@ 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:2831 -#: libraries/common.lib.php:2838 libraries/db_links.inc.php:75 +#: db_structure.php:106 libraries/common.lib.php:2835 +#: libraries/common.lib.php:2842 libraries/db_links.inc.php:75 #: libraries/tbl_links.inc.php:63 msgid "Search" msgstr "" -#: browse_foreigners.php:153 db_operations.php:385 db_operations.php:429 -#: db_operations.php:499 db_operations.php:609 db_search.php:362 -#: db_structure.php:567 js/messages.php:48 libraries/Config.class.php:1046 +#: browse_foreigners.php:153 db_operations.php:394 db_operations.php:438 +#: db_operations.php:508 db_operations.php:618 db_search.php:362 +#: db_structure.php:565 js/messages.php:53 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:1335 libraries/common.lib.php:2288 +#: libraries/common.lib.php:1335 libraries/common.lib.php:2292 #: 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,15 +60,15 @@ 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:664 server_privileges.php:1624 -#: server_privileges.php:1971 server_privileges.php:2018 -#: server_privileges.php:2057 server_replication.php:235 +#: server_privileges.php:665 server_privileges.php:1644 +#: server_privileges.php:1991 server_privileges.php:2038 +#: server_privileges.php:2078 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 #: tbl_operations.php:302 tbl_operations.php:499 tbl_operations.php:561 -#: tbl_operations.php:681 tbl_select.php:327 tbl_structure.php:562 -#: tbl_structure.php:597 tbl_tracking.php:395 tbl_tracking.php:512 +#: tbl_operations.php:681 tbl_select.php:327 tbl_structure.php:560 +#: tbl_structure.php:595 tbl_tracking.php:395 tbl_tracking.php:512 #: view_create.php:182 view_operations.php:101 msgid "Go" msgstr "" @@ -94,7 +94,7 @@ msgstr "" msgid "Database %1$s has been created." msgstr "" -#: db_datadict.php:49 db_operations.php:378 +#: db_datadict.php:49 db_operations.php:387 msgid "Database comment: " msgstr "" @@ -119,10 +119,10 @@ 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:2070 +#: pdf_schema.php:1263 pdf_schema.php:1284 server_privileges.php:2091 #: 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 +#: tbl_structure.php:657 tbl_tracking.php:274 tbl_tracking.php:321 msgid "Type" msgstr "" @@ -135,7 +135,7 @@ msgstr "" msgid "Null" msgstr "" -#: db_datadict.php:178 db_structure.php:501 libraries/export/htmlword.php:247 +#: db_datadict.php:178 db_structure.php:499 libraries/export/htmlword.php:247 #: libraries/export/latex.php:360 libraries/export/odt.php:303 #: libraries/export/texytext.php:236 libraries/tbl_properties.inc.php:106 #: pdf_schema.php:1266 pdf_schema.php:1287 tbl_printview.php:146 @@ -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: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 +#: pdf_schema.php:1344 server_privileges.php:1588 server_privileges.php:1599 +#: server_privileges.php:1909 server_privileges.php:1914 +#: server_privileges.php:2208 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:1565 -#: server_privileges.php:1579 server_privileges.php:1889 -#: server_privileges.php:1892 server_privileges.php:2187 sql.php:193 +#: server_databases.php:64 server_privileges.php:1585 +#: server_privileges.php:1599 server_privileges.php:1909 +#: server_privileges.php:1912 server_privileges.php:2208 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" @@ -208,133 +208,129 @@ msgstr "" msgid "Unselect All" msgstr "" -#: db_operations.php:38 tbl_create.php:54 +#: db_operations.php:43 tbl_create.php:54 msgid "The database name is empty!" msgstr "" -#: db_operations.php:236 +#: db_operations.php:241 #, php-format msgid "Database %s has been renamed to %s" msgstr "" -#: db_operations.php:240 +#: db_operations.php:245 #, php-format msgid "Database %s has been copied to %s" msgstr "" -#: db_operations.php:412 +#: db_operations.php:421 msgid "Rename database to" msgstr "" -#: db_operations.php:417 server_processlist.php:57 +#: db_operations.php:426 server_processlist.php:57 msgid "Command" msgstr "" -#: db_operations.php:429 tbl_change.php:1143 -msgid "and then" -msgstr "" - -#: db_operations.php:455 +#: db_operations.php:464 msgid "Copy database to" msgstr "" -#: db_operations.php:462 tbl_operations.php:528 tbl_tracking.php:388 +#: db_operations.php:471 tbl_operations.php:528 tbl_tracking.php:388 msgid "Structure only" msgstr "" -#: db_operations.php:463 tbl_operations.php:529 tbl_tracking.php:390 +#: db_operations.php:472 tbl_operations.php:529 tbl_tracking.php:390 msgid "Structure and data" msgstr "" -#: db_operations.php:464 tbl_operations.php:530 tbl_tracking.php:389 +#: db_operations.php:473 tbl_operations.php:530 tbl_tracking.php:389 msgid "Data only" msgstr "" -#: db_operations.php:472 +#: db_operations.php:481 msgid "CREATE DATABASE before copying" msgstr "" -#: db_operations.php:475 libraries/export/sql.php:52 +#: db_operations.php:484 libraries/export/sql.php:52 #: libraries/export/sql.php:74 libraries/export/sql.php:76 #: libraries/export/sql.php:82 tbl_operations.php:536 #, php-format msgid "Add %s" msgstr "%sஐ சேர்க்க" -#: db_operations.php:479 libraries/export/sql.php:78 tbl_operations.php:299 +#: db_operations.php:488 libraries/export/sql.php:78 tbl_operations.php:299 #: tbl_operations.php:538 msgid "Add AUTO_INCREMENT value" msgstr "தானாக அதிகரிக்கும் பெறுமதியை சேர்க்க" -#: db_operations.php:483 tbl_operations.php:545 +#: db_operations.php:492 tbl_operations.php:545 msgid "Add constraints" msgstr "தடைகளை சேர்க்க" -#: db_operations.php:496 +#: db_operations.php:505 msgid "Switch to copied database" msgstr "" -#: db_operations.php:537 +#: db_operations.php:546 msgid "BLOB Repository" msgstr "" -#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1352 -#: libraries/server_links.inc.php:49 server_processlist.php:59 +#: db_operations.php:549 db_tracking.php:76 libraries/common.lib.php:1352 +#: libraries/server_links.inc.php:50 server_processlist.php:59 #: tbl_tracking.php:596 test/theme.php:101 msgid "Status" msgstr "" -#: db_operations.php:548 +#: db_operations.php:557 msgctxt "BLOB repository" msgid "Enabled" msgstr "" -#: db_operations.php:552 +#: db_operations.php:561 msgid "Disable" msgstr "" -#: db_operations.php:562 +#: db_operations.php:571 msgid "Damaged" msgstr "" -#: db_operations.php:566 +#: db_operations.php:575 msgctxt "BLOB repository" msgid "Repair" msgstr "" -#: db_operations.php:574 +#: db_operations.php:583 msgctxt "BLOB repository" msgid "Disabled" msgstr "" -#: db_operations.php:578 +#: db_operations.php:587 msgid "Enable" msgstr "" -#: db_operations.php:602 libraries/Index.class.php:448 +#: db_operations.php:611 libraries/Index.class.php:448 #: libraries/db_structure.lib.php:62 libraries/mysql_charsets.lib.php:107 #: libraries/tbl_properties.inc.php:107 libraries/tbl_properties.inc.php:730 #: server_collations.php:54 server_collations.php:66 server_databases.php:111 #: tbl_operations.php:363 tbl_select.php:137 tbl_structure.php:179 -#: tbl_structure.php:767 tbl_tracking.php:275 tbl_tracking.php:326 +#: tbl_structure.php:765 tbl_tracking.php:275 tbl_tracking.php:326 msgid "Collation" msgstr "" -#: db_operations.php:615 main.php:316 pdf_schema.php:34 +#: db_operations.php:624 main.php:316 pdf_schema.php:34 #, php-format msgid "" "The additional features for working with linked tables have been " "deactivated. To find out why click %shere%s." msgstr "" -#: db_operations.php:648 +#: db_operations.php:657 msgid "Edit PDF Pages" 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:1665 -#: server_privileges.php:1721 server_privileges.php:1985 +#: libraries/header.inc.php:130 pdf_pages.php:424 server_privileges.php:1685 +#: server_privileges.php:1741 server_privileges.php:2005 #: server_synchronize.php:423 server_synchronize.php:866 tbl_tracking.php:592 #: test/theme.php:75 msgid "Table" @@ -343,7 +339,7 @@ msgstr "" #: db_printview.php:105 libraries/db_structure.lib.php:56 #: libraries/header_printview.inc.php:63 libraries/import.lib.php:146 #: navigation.php:638 navigation.php:660 server_databases.php:122 -#: tbl_printview.php:394 tbl_structure.php:365 tbl_structure.php:777 +#: tbl_printview.php:394 tbl_structure.php:365 tbl_structure.php:775 msgid "Rows" msgstr "" @@ -351,30 +347,30 @@ msgstr "" msgid "Size" msgstr "" -#: db_printview.php:162 db_structure.php:457 libraries/export/sql.php:559 +#: db_printview.php:162 db_structure.php:455 libraries/export/sql.php:559 #: libraries/export/sql.php:899 msgid "in use" msgstr "" #: db_printview.php:187 libraries/db_info.inc.php:88 #: libraries/export/sql.php:514 pdf_schema.php:1241 tbl_printview.php:434 -#: tbl_structure.php:809 +#: tbl_structure.php:807 msgid "Creation" msgstr "" #: db_printview.php:196 libraries/db_info.inc.php:93 #: libraries/export/sql.php:519 pdf_schema.php:1246 tbl_printview.php:444 -#: tbl_structure.php:817 +#: tbl_structure.php:815 msgid "Last update" msgstr "" #: db_printview.php:205 libraries/db_info.inc.php:98 #: libraries/export/sql.php:524 pdf_schema.php:1251 tbl_printview.php:454 -#: tbl_structure.php:825 +#: tbl_structure.php:823 msgid "Last check" msgstr "" -#: db_printview.php:222 db_structure.php:480 +#: db_printview.php:222 db_structure.php:478 #, php-format msgid "%s table" msgid_plural "%s tables" @@ -434,7 +430,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:297 tbl_change.php:1031 tbl_indexes.php:250 +#: server_privileges.php:298 tbl_change.php:1031 tbl_indexes.php:250 #: tbl_select.php:288 msgid "Or" msgstr "" @@ -507,9 +503,9 @@ 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:2833 +#: db_structure.php:105 libraries/common.lib.php:2837 #: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50 -#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:467 +#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:465 msgid "Browse" msgstr "" @@ -552,36 +548,36 @@ 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:2832 libraries/sql_query_form.lib.php:334 +#: libraries/common.lib.php:2836 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:2829 libraries/common.lib.php:2836 +#: libraries/common.lib.php:2833 libraries/common.lib.php:2840 #: 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:1106 #: libraries/tbl_links.inc.php:56 pmd_general.php:134 -#: server_privileges.php:593 server_replication.php:315 tbl_tracking.php:269 +#: server_privileges.php:594 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:1656 +#: db_structure.php:543 db_structure.php:544 db_tracking.php:91 +#: libraries/Index.class.php:483 libraries/common.lib.php:1657 #: 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 -#: tbl_structure.php:152 tbl_structure.php:471 +#: tbl_structure.php:152 tbl_structure.php:469 msgid "Drop" 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:1655 +#: db_structure.php:541 db_structure.php:542 libraries/common.lib.php:1656 #: libraries/mult_submits.inc.php:39 libraries/tbl_links.inc.php:105 msgid "Empty" msgstr "" @@ -591,111 +587,111 @@ msgstr "" msgid "Table %s has been emptied" msgstr "" -#: db_structure.php:326 libraries/tbl_links.inc.php:133 +#: db_structure.php:325 libraries/tbl_links.inc.php:133 #, php-format msgid "View %s has been dropped" msgstr "" -#: db_structure.php:326 libraries/tbl_links.inc.php:133 +#: db_structure.php:325 libraries/tbl_links.inc.php:133 #, php-format msgid "Table %s has been dropped" msgstr "" -#: db_structure.php:333 +#: db_structure.php:332 msgid "Tracking is active." msgstr "" -#: db_structure.php:335 +#: db_structure.php:334 msgid "Tracking is not active." msgstr "" -#: db_structure.php:420 libraries/display_tbl.lib.php:1944 +#: db_structure.php:418 libraries/display_tbl.lib.php:1944 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation%" "s." msgstr "" -#: db_structure.php:434 db_structure.php:448 libraries/header.inc.php:126 +#: db_structure.php:432 db_structure.php:446 libraries/header.inc.php:130 #: libraries/tbl_info.inc.php:66 tbl_structure.php:185 test/theme.php:74 msgid "View" msgstr "" -#: db_structure.php:485 libraries/db_structure.lib.php:49 -#: libraries/server_links.inc.php:70 server_replication.php:33 +#: db_structure.php:483 libraries/db_structure.lib.php:49 +#: libraries/server_links.inc.php:71 server_replication.php:33 #: server_replication.php:164 server_status.php:369 msgid "Replication" msgstr "" -#: db_structure.php:489 +#: db_structure.php:487 msgid "Sum" msgstr "" -#: db_structure.php:496 libraries/StorageEngine.class.php:356 +#: db_structure.php:494 libraries/StorageEngine.class.php:356 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "" -#: db_structure.php:524 db_structure.php:541 db_structure.php:542 +#: db_structure.php:522 db_structure.php:539 db_structure.php:540 #: 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:1596 tbl_structure.php:455 -#: tbl_structure.php:464 +#: server_databases.php:351 server_privileges.php:1616 tbl_structure.php:453 +#: tbl_structure.php:462 msgid "With selected:" msgstr "" -#: db_structure.php:527 libraries/display_tbl.lib.php:2076 -#: server_databases.php:348 server_privileges.php:569 -#: server_privileges.php:1599 tbl_structure.php:458 +#: db_structure.php:525 libraries/display_tbl.lib.php:2076 +#: server_databases.php:348 server_privileges.php:570 +#: server_privileges.php:1619 tbl_structure.php:456 msgid "Check All" msgstr "" -#: db_structure.php:531 libraries/display_tbl.lib.php:2077 +#: db_structure.php:529 libraries/display_tbl.lib.php:2077 #: libraries/replication_gui.lib.php:33 server_databases.php:350 -#: server_privileges.php:572 server_privileges.php:1603 tbl_structure.php:462 +#: server_privileges.php:573 server_privileges.php:1623 tbl_structure.php:460 msgid "Uncheck All" msgstr "" -#: db_structure.php:536 +#: db_structure.php:534 msgid "Check tables having overhead" msgstr "" -#: db_structure.php:547 db_structure.php:548 db_structure.php:599 +#: db_structure.php:545 db_structure.php:546 db_structure.php:597 #: libraries/display_tbl.lib.php:2180 libraries/mult_submits.inc.php:28 -#: tbl_structure.php:492 tbl_structure.php:494 +#: tbl_structure.php:490 tbl_structure.php:492 msgid "Print view" msgstr "" -#: db_structure.php:549 db_structure.php:550 libraries/mult_submits.inc.php:42 +#: db_structure.php:547 db_structure.php:548 libraries/mult_submits.inc.php:42 #: tbl_operations.php:581 msgid "Check table" msgstr "" -#: db_structure.php:551 db_structure.php:552 libraries/mult_submits.inc.php:47 -#: tbl_operations.php:621 tbl_structure.php:709 tbl_structure.php:711 +#: db_structure.php:549 db_structure.php:550 libraries/mult_submits.inc.php:47 +#: tbl_operations.php:621 tbl_structure.php:707 tbl_structure.php:709 msgid "Optimize table" msgstr "" -#: db_structure.php:553 db_structure.php:554 libraries/mult_submits.inc.php:52 +#: db_structure.php:551 db_structure.php:552 libraries/mult_submits.inc.php:52 #: tbl_operations.php:611 msgid "Repair table" msgstr "" -#: db_structure.php:555 db_structure.php:556 libraries/mult_submits.inc.php:57 +#: db_structure.php:553 db_structure.php:554 libraries/mult_submits.inc.php:57 #: tbl_operations.php:601 msgid "Analyze table" msgstr "" -#: db_structure.php:557 db_structure.php:558 libraries/db_links.inc.php:71 +#: db_structure.php:555 db_structure.php:556 libraries/db_links.inc.php:71 #: 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:1380 +#: libraries/server_links.inc.php:85 libraries/tbl_links.inc.php:82 +#: pmd_pdf.php:84 pmd_pdf.php:109 server_privileges.php:1397 #: setup/frames/menu.inc.php:22 tbl_row_action.php:59 msgid "Export" msgstr "" -#: db_structure.php:606 libraries/display_pdf_schema.lib.php:44 +#: db_structure.php:604 libraries/display_pdf_schema.lib.php:44 msgid "Data Dictionary" msgstr "" @@ -706,10 +702,10 @@ msgstr "" #: db_tracking.php:71 libraries/export/htmlword.php:86 #: libraries/export/latex.php:148 libraries/export/odt.php:113 #: libraries/export/sql.php:342 libraries/export/texytext.php:84 -#: libraries/export/xml.php:255 libraries/header.inc.php:106 +#: libraries/export/xml.php:255 libraries/header.inc.php:110 #: libraries/header_printview.inc.php:58 server_databases.php:169 -#: server_privileges.php:1660 server_privileges.php:1721 -#: server_privileges.php:1979 server_processlist.php:56 +#: server_privileges.php:1680 server_privileges.php:1741 +#: server_privileges.php:1999 server_processlist.php:56 #: server_synchronize.php:1179 server_synchronize.php:1183 #: tbl_tracking.php:591 test/theme.php:65 msgid "Database" @@ -729,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:1542 server_privileges.php:1725 -#: server_privileges.php:2073 tbl_structure.php:187 +#: server_privileges.php:1562 server_privileges.php:1745 +#: server_privileges.php:2094 tbl_structure.php:187 msgid "Action" msgstr "செயல்" @@ -764,8 +760,8 @@ msgstr "" msgid "Untracked tables" msgstr "" -#: db_tracking.php:172 db_tracking.php:174 tbl_structure.php:528 -#: tbl_structure.php:530 +#: db_tracking.php:172 db_tracking.php:174 tbl_structure.php:526 +#: tbl_structure.php:528 msgid "Track table" msgstr "" @@ -917,179 +913,218 @@ msgstr "" msgid "The user name is empty!" msgstr "" -#: js/messages.php:44 server_privileges.php:1236 user_password.php:70 +#: js/messages.php:44 server_privileges.php:1241 user_password.php:70 msgid "The password is empty!" msgstr "" -#: js/messages.php:45 server_privileges.php:1234 user_password.php:73 +#: js/messages.php:45 server_privileges.php:1239 user_password.php:73 msgid "The passwords aren't the same!" msgstr "" -#: js/messages.php:49 pmd_general.php:342 pmd_general.php:379 +#: js/messages.php:46 +#, fuzzy +#| msgid "Add a new User" +msgid "Add a New User" +msgstr "புதிய பயனாளரை சேர்க்க" + +#: js/messages.php:47 js/messages.php:54 pmd_general.php:342 +#: pmd_general.php:379 msgid "Cancel" msgstr "விலக்கு" -#: js/messages.php:52 pmd_save_pos.php:54 -msgid "Modifications have been saved" +#: js/messages.php:48 +msgid "Create User" msgstr "" -#: js/messages.php:53 pmd_relation_upd.php:49 -msgid "Relation deleted" +#: js/messages.php:49 +msgid "Reloading Privileges" msgstr "" -#: js/messages.php:54 pmd_relation_new.php:64 -msgid "FOREIGN KEY relation added" +#: js/messages.php:50 +msgid "Removing Selected Users" msgstr "" -#: js/messages.php:55 pmd_relation_new.php:86 -msgid "Internal relation added" -msgstr "" - -#: js/messages.php:56 pmd_relation_new.php:63 pmd_relation_new.php:88 -msgid "Error: Relation not added." -msgstr "" - -#: js/messages.php:57 pmd_relation_new.php:31 -msgid "Error: relation already exists." +#: js/messages.php:57 +msgid "Loading" msgstr "" #: js/messages.php:58 +msgid "Processing Request" +msgstr "" + +#: js/messages.php:59 +msgid "Error in Processing Request" +msgstr "" + +#: js/messages.php:60 +msgid "Dropping Column" +msgstr "" + +#: js/messages.php:61 +msgid "Adding Primary Key" +msgstr "" + +#: js/messages.php:64 pmd_save_pos.php:54 +msgid "Modifications have been saved" +msgstr "" + +#: js/messages.php:65 pmd_relation_upd.php:49 +msgid "Relation deleted" +msgstr "" + +#: js/messages.php:66 pmd_relation_new.php:64 +msgid "FOREIGN KEY relation added" +msgstr "" + +#: js/messages.php:67 pmd_relation_new.php:86 +msgid "Internal relation added" +msgstr "" + +#: js/messages.php:68 pmd_relation_new.php:63 pmd_relation_new.php:88 +msgid "Error: Relation not added." +msgstr "" + +#: js/messages.php:69 pmd_relation_new.php:31 +msgid "Error: relation already exists." +msgstr "" + +#: js/messages.php:70 msgid "Error saving coordinates for Designer." msgstr "" -#: js/messages.php:59 libraries/relation.lib.php:107 +#: js/messages.php:71 libraries/relation.lib.php:107 #: libraries/relation.lib.php:119 msgid "General relation features" msgstr "" -#: js/messages.php:59 libraries/relation.lib.php:101 +#: js/messages.php:71 libraries/relation.lib.php:101 #: libraries/relation.lib.php:108 msgid "Disabled" msgstr "" -#: js/messages.php:60 +#: js/messages.php:72 msgid "Select referenced key" msgstr "" -#: js/messages.php:61 +#: js/messages.php:73 msgid "Select Foreign Key" msgstr "" -#: js/messages.php:62 +#: js/messages.php:74 msgid "Please select the primary key or a unique key" msgstr "" -#: js/messages.php:63 pmd_general.php:77 tbl_relation.php:548 +#: js/messages.php:75 pmd_general.php:77 tbl_relation.php:548 msgid "Choose column to display" msgstr "" #. l10n: Display text for calendar close link -#: js/messages.php:73 +#: js/messages.php:85 msgid "Done" msgstr "" #. l10n: Display text for previous month link in calendar -#: js/messages.php:75 +#: js/messages.php:87 msgid "Prev" msgstr "" #. l10n: Display text for next month link in calendar -#: js/messages.php:77 libraries/common.lib.php:2353 -#: libraries/common.lib.php:2356 libraries/display_tbl.lib.php:338 +#: js/messages.php:89 libraries/common.lib.php:2357 +#: libraries/common.lib.php:2360 libraries/display_tbl.lib.php:338 #: server_binlog.php:205 server_binlog.php:207 tbl_printview.php:424 -#: tbl_structure.php:801 +#: tbl_structure.php:799 msgid "Next" msgstr "" #. l10n: Display text for current month link in calendar -#: js/messages.php:79 +#: js/messages.php:91 msgid "Today" msgstr "" -#: js/messages.php:82 +#: js/messages.php:94 #, fuzzy #| msgid "Jan" msgid "January" msgstr "தை" -#: js/messages.php:83 +#: js/messages.php:95 msgid "February" msgstr "" -#: js/messages.php:84 +#: js/messages.php:96 #, fuzzy #| msgid "Mar" msgid "March" msgstr "பங்குனி" -#: js/messages.php:85 +#: js/messages.php:97 #, fuzzy #| msgid "Apr" msgid "April" msgstr "சித்திரை" -#: js/messages.php:86 +#: js/messages.php:98 msgid "May" msgstr "வைகாசி" -#: js/messages.php:87 +#: js/messages.php:99 #, fuzzy #| msgid "Jun" msgid "June" msgstr "ஆணி" -#: js/messages.php:88 +#: js/messages.php:100 #, fuzzy #| msgid "Jul" msgid "July" msgstr "ஆடி" -#: js/messages.php:89 +#: js/messages.php:101 #, fuzzy #| msgid "Aug" msgid "August" msgstr "ஆவணி" -#: js/messages.php:90 +#: js/messages.php:102 msgid "September" msgstr "" -#: js/messages.php:91 +#: js/messages.php:103 #, fuzzy #| msgid "Oct" msgid "October" msgstr "ஐப்பசி" -#: js/messages.php:92 +#: js/messages.php:104 msgid "November" msgstr "" -#: js/messages.php:93 +#: js/messages.php:105 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:97 libraries/common.lib.php:1557 +#: js/messages.php:109 libraries/common.lib.php:1557 msgid "Jan" msgstr "தை" #. l10n: Short month name -#: js/messages.php:99 libraries/common.lib.php:1559 +#: js/messages.php:111 libraries/common.lib.php:1559 msgid "Feb" msgstr "மாசி" #. l10n: Short month name -#: js/messages.php:101 libraries/common.lib.php:1561 +#: js/messages.php:113 libraries/common.lib.php:1561 msgid "Mar" msgstr "பங்குனி" #. l10n: Short month name -#: js/messages.php:103 libraries/common.lib.php:1563 +#: js/messages.php:115 libraries/common.lib.php:1563 msgid "Apr" msgstr "சித்திரை" #. l10n: Short month name -#: js/messages.php:105 libraries/common.lib.php:1565 +#: js/messages.php:117 libraries/common.lib.php:1565 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1097,174 +1132,174 @@ msgid "May" msgstr "வைகாசி" #. l10n: Short month name -#: js/messages.php:107 libraries/common.lib.php:1567 +#: js/messages.php:119 libraries/common.lib.php:1567 msgid "Jun" msgstr "ஆணி" #. l10n: Short month name -#: js/messages.php:109 libraries/common.lib.php:1569 +#: js/messages.php:121 libraries/common.lib.php:1569 msgid "Jul" msgstr "ஆடி" #. l10n: Short month name -#: js/messages.php:111 libraries/common.lib.php:1571 +#: js/messages.php:123 libraries/common.lib.php:1571 msgid "Aug" msgstr "ஆவணி" #. l10n: Short month name -#: js/messages.php:113 libraries/common.lib.php:1573 +#: js/messages.php:125 libraries/common.lib.php:1573 msgid "Sep" msgstr "புரட்டாதி" #. l10n: Short month name -#: js/messages.php:115 libraries/common.lib.php:1575 +#: js/messages.php:127 libraries/common.lib.php:1575 msgid "Oct" msgstr "ஐப்பசி" #. l10n: Short month name -#: js/messages.php:117 libraries/common.lib.php:1577 +#: js/messages.php:129 libraries/common.lib.php:1577 msgid "Nov" msgstr "காத்திகை" #. l10n: Short month name -#: js/messages.php:119 libraries/common.lib.php:1579 +#: js/messages.php:131 libraries/common.lib.php:1579 msgid "Dec" msgstr "மார்கழி" -#: js/messages.php:122 +#: js/messages.php:134 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "ஞாயிறு" -#: js/messages.php:123 +#: js/messages.php:135 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "திங்கள்" -#: js/messages.php:124 +#: js/messages.php:136 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "செவ்வாய்" -#: js/messages.php:125 +#: js/messages.php:137 msgid "Wednesday" msgstr "" -#: js/messages.php:126 +#: js/messages.php:138 msgid "Thursday" msgstr "" -#: js/messages.php:127 +#: js/messages.php:139 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "வெள்ளி" -#: js/messages.php:128 +#: js/messages.php:140 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:132 libraries/common.lib.php:1582 +#: js/messages.php:144 libraries/common.lib.php:1582 msgid "Sun" msgstr "ஞாயிறு" #. l10n: Short week day name -#: js/messages.php:134 libraries/common.lib.php:1584 +#: js/messages.php:146 libraries/common.lib.php:1584 msgid "Mon" msgstr "திங்கள்" #. l10n: Short week day name -#: js/messages.php:136 libraries/common.lib.php:1586 +#: js/messages.php:148 libraries/common.lib.php:1586 msgid "Tue" msgstr "செவ்வாய்" #. l10n: Short week day name -#: js/messages.php:138 libraries/common.lib.php:1588 +#: js/messages.php:150 libraries/common.lib.php:1588 msgid "Wed" msgstr "புதன்" #. l10n: Short week day name -#: js/messages.php:140 libraries/common.lib.php:1590 +#: js/messages.php:152 libraries/common.lib.php:1590 msgid "Thu" msgstr "வியாழன்" #. l10n: Short week day name -#: js/messages.php:142 libraries/common.lib.php:1592 +#: js/messages.php:154 libraries/common.lib.php:1592 msgid "Fri" msgstr "வெள்ளி" #. l10n: Short week day name -#: js/messages.php:144 libraries/common.lib.php:1594 +#: js/messages.php:156 libraries/common.lib.php:1594 msgid "Sat" msgstr "சனி" #. l10n: Minimal week day name -#: js/messages.php:148 +#: js/messages.php:160 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "ஞாயிறு" #. l10n: Minimal week day name -#: js/messages.php:150 +#: js/messages.php:162 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "திங்கள்" #. l10n: Minimal week day name -#: js/messages.php:152 +#: js/messages.php:164 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "செவ்வாய்" #. l10n: Minimal week day name -#: js/messages.php:154 +#: js/messages.php:166 #, fuzzy #| msgid "Wed" msgid "We" msgstr "புதன்" #. l10n: Minimal week day name -#: js/messages.php:156 +#: js/messages.php:168 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "வியாழன்" #. l10n: Minimal week day name -#: js/messages.php:158 +#: js/messages.php:170 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "வெள்ளி" #. l10n: Minimal week day name -#: js/messages.php:160 +#: js/messages.php:172 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "சனி" #. l10n: Column header for week of the year in calendar -#: js/messages.php:162 +#: js/messages.php:174 msgid "Wk" msgstr "" -#: js/messages.php:164 +#: js/messages.php:176 msgid "Hour" msgstr "" -#: js/messages.php:165 +#: js/messages.php:177 msgid "Minute" msgstr "" -#: js/messages.php:166 +#: js/messages.php:178 msgid "Second" msgstr "" @@ -1319,7 +1354,7 @@ msgstr "" #: libraries/Index.class.php:444 libraries/mult_submits.inc.php:103 #: libraries/tbl_properties.inc.php:519 tbl_structure.php:33 -#: tbl_structure.php:155 tbl_structure.php:159 tbl_structure.php:474 +#: tbl_structure.php:155 tbl_structure.php:159 tbl_structure.php:472 #: tbl_tracking.php:322 msgid "Unique" msgstr "" @@ -1360,8 +1395,8 @@ msgid "" "removed." msgstr "" -#: libraries/List_Database.class.php:431 libraries/server_links.inc.php:41 -#: server_databases.php:88 server_privileges.php:1660 +#: libraries/List_Database.class.php:431 libraries/server_links.inc.php:42 +#: server_databases.php:88 server_privileges.php:1680 #: setup/lib/messages.inc.php:110 test/theme.php:93 msgid "Databases" msgstr "" @@ -1528,7 +1563,7 @@ msgstr "" msgid "Server Choice" msgstr "" -#: libraries/auth/cookie.auth.lib.php:320 libraries/header.inc.php:59 +#: libraries/auth/cookie.auth.lib.php:320 libraries/header.inc.php:63 msgid "Cookies must be enabled past this point." msgstr "" @@ -1603,7 +1638,7 @@ msgid "" "necessary extensions appear to be loaded. Check your PHP configuration." msgstr "" -#: libraries/common.inc.php:583 +#: libraries/common.inc.php:587 msgid "" "phpMyAdmin was unable to read your configuration file!
This might " "happen if PHP finds a parse error in it or PHP cannot find the file.
$cfg['PmaAbsoluteUri'] directive MUST be set in your " "configuration file!" msgstr "" -#: libraries/common.inc.php:629 +#: libraries/common.inc.php:633 #, php-format msgid "Invalid server index: %s" msgstr "" -#: libraries/common.inc.php:636 +#: libraries/common.inc.php:640 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" -#: libraries/common.inc.php:645 libraries/header.inc.php:96 +#: libraries/common.inc.php:649 libraries/header.inc.php:100 #: libraries/select_server.lib.php:41 libraries/select_server.lib.php:47 #: main.php:185 test/theme.php:57 msgid "Server" msgstr "" -#: libraries/common.inc.php:823 +#: libraries/common.inc.php:827 msgid "Invalid authentication method set in configuration:" msgstr "" -#: libraries/common.inc.php:926 +#: libraries/common.inc.php:930 #, php-format msgid "You should upgrade to %s %s or later." msgstr "" @@ -1775,45 +1810,45 @@ msgstr "," msgid "%B %d, %Y at %I:%M %p" msgstr "%B %d, %Y at %I:%M %p" -#: libraries/common.lib.php:1907 +#: libraries/common.lib.php:1911 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s நாட்கள் %s மணித்தியாலங்கள் %s நிமிடங்கள் மற்றும் %s செக்கன்கள்" -#: libraries/common.lib.php:2322 libraries/common.lib.php:2325 +#: libraries/common.lib.php:2326 libraries/common.lib.php:2329 #: libraries/display_tbl.lib.php:290 server_status.php:719 msgid "Begin" msgstr "" -#: libraries/common.lib.php:2323 libraries/common.lib.php:2326 +#: libraries/common.lib.php:2327 libraries/common.lib.php:2330 #: libraries/display_tbl.lib.php:291 server_binlog.php:168 #: server_binlog.php:170 msgid "Previous" msgstr "" -#: libraries/common.lib.php:2354 libraries/common.lib.php:2357 +#: libraries/common.lib.php:2358 libraries/common.lib.php:2361 #: libraries/display_tbl.lib.php:353 msgid "End" msgstr "" -#: libraries/common.lib.php:2430 +#: libraries/common.lib.php:2434 #, php-format msgid "Jump to database "%s"." msgstr "" -#: libraries/common.lib.php:2450 +#: libraries/common.lib.php:2454 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" -#: libraries/common.lib.php:2830 libraries/common.lib.php:2837 +#: libraries/common.lib.php:2834 libraries/common.lib.php:2841 #: libraries/db_links.inc.php:68 libraries/export/sql.php:25 -#: libraries/import/sql.php:18 libraries/server_links.inc.php:45 +#: libraries/import/sql.php:18 libraries/server_links.inc.php:46 #: libraries/tbl_links.inc.php:60 querywindow.php:99 test/theme.php:97 msgid "SQL" msgstr "" -#: libraries/common.lib.php:2839 libraries/db_links.inc.php:104 +#: libraries/common.lib.php:2843 libraries/db_links.inc.php:104 #: libraries/tbl_links.inc.php:95 libraries/tbl_links.inc.php:117 #: view_operations.php:89 msgid "Operations" @@ -1860,15 +1895,15 @@ msgstr "" msgid "Designer" msgstr "" -#: libraries/db_links.inc.php:98 libraries/server_links.inc.php:88 +#: libraries/db_links.inc.php:98 libraries/server_links.inc.php:89 #: libraries/tbl_links.inc.php:91 pmd_pdf.php:84 pmd_pdf.php:110 #: setup/frames/menu.inc.php:21 msgid "Import" msgstr "" -#: libraries/db_links.inc.php:111 libraries/server_links.inc.php:66 -#: server_privileges.php:111 server_privileges.php:1722 -#: server_privileges.php:2071 test/theme.php:117 +#: libraries/db_links.inc.php:111 libraries/server_links.inc.php:67 +#: server_privileges.php:112 server_privileges.php:1742 +#: server_privileges.php:2092 test/theme.php:117 msgid "Privileges" msgstr "" @@ -1887,7 +1922,7 @@ msgid "" msgstr "" #: libraries/db_structure.lib.php:69 server_databases.php:142 -#: tbl_printview.php:336 tbl_structure.php:682 +#: tbl_printview.php:336 tbl_structure.php:680 msgid "Overhead" msgstr "" @@ -1904,7 +1939,7 @@ msgstr "" msgid "(or the local MySQL server's socket is not correctly configured)" msgstr "" -#: libraries/dbi/mysql.dbi.lib.php:362 tbl_structure.php:608 +#: libraries/dbi/mysql.dbi.lib.php:362 tbl_structure.php:606 msgid "Details..." msgstr "" @@ -1914,22 +1949,22 @@ msgid "Change password" msgstr "" #: libraries/display_change_password.lib.php:35 -#: libraries/replication_gui.lib.php:345 server_privileges.php:807 +#: libraries/replication_gui.lib.php:345 server_privileges.php:808 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:796 -#: server_privileges.php:800 server_privileges.php:811 -#: server_privileges.php:1538 server_synchronize.php:1175 +#: libraries/replication_gui.lib.php:349 server_privileges.php:797 +#: server_privileges.php:801 server_privileges.php:812 +#: server_privileges.php:1558 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:815 server_privileges.php:818 +#: server_privileges.php:816 server_privileges.php:819 msgid "Re-type" msgstr "" @@ -1942,12 +1977,12 @@ msgid "MySQL 4.0 compatible" msgstr "" #: libraries/display_change_password.lib.php:72 -#: libraries/replication_gui.lib.php:360 server_privileges.php:822 +#: libraries/replication_gui.lib.php:360 server_privileges.php:823 msgid "Generate Password" msgstr "" #: libraries/display_change_password.lib.php:75 -#: libraries/replication_gui.lib.php:363 server_privileges.php:825 +#: libraries/replication_gui.lib.php:363 server_privileges.php:826 msgid "Generate" msgstr "" @@ -1960,8 +1995,8 @@ msgstr "" msgid "Create" msgstr "" -#: libraries/display_create_database.lib.php:40 server_privileges.php:113 -#: server_privileges.php:1427 server_replication.php:35 +#: libraries/display_create_database.lib.php:40 server_privileges.php:114 +#: server_privileges.php:1447 server_replication.php:35 msgid "No Privileges" msgstr "" @@ -2044,7 +2079,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:1875 server_processlist.php:75 +#: server_privileges.php:1895 server_processlist.php:75 msgid "None" msgstr "" @@ -2226,7 +2261,7 @@ msgstr "" #: libraries/import/docsql.php:34 libraries/import/ldi.php:47 #: libraries/import/ods.php:30 libraries/import/sql.php:20 #: libraries/import/xls.php:26 libraries/import/xlsx.php:26 -#: libraries/import/xml.php:25 tbl_select.php:267 tbl_structure.php:753 +#: libraries/import/xml.php:25 tbl_select.php:267 tbl_structure.php:751 msgid "Options" msgstr "" @@ -2301,7 +2336,7 @@ msgstr "" #: libraries/display_tbl.lib.php:2089 libraries/mult_submits.inc.php:113 #: querywindow.php:125 querywindow.php:129 querywindow.php:132 -#: tbl_structure.php:25 tbl_structure.php:150 tbl_structure.php:470 +#: tbl_structure.php:25 tbl_structure.php:150 tbl_structure.php:468 msgid "Change" msgstr "" @@ -2367,7 +2402,7 @@ msgstr "" #: libraries/engines/innodb.lib.php:194 server_databases.php:137 #: server_databases.php:305 server_status.php:525 server_status.php:586 -#: server_status.php:607 tbl_printview.php:351 tbl_structure.php:696 +#: server_status.php:607 tbl_printview.php:351 tbl_structure.php:694 msgid "Total" msgstr "" @@ -2612,7 +2647,7 @@ msgid "" msgstr "" #: libraries/export/codegen.php:37 setup/lib/messages.inc.php:88 -#: tbl_printview.php:376 tbl_structure.php:737 +#: tbl_printview.php:376 tbl_structure.php:735 msgid "Format" msgstr "" @@ -2676,8 +2711,8 @@ 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:576 server_replication.php:316 tbl_printview.php:317 -#: tbl_structure.php:665 +#: server_privileges.php:577 server_replication.php:316 tbl_printview.php:317 +#: tbl_structure.php:663 msgid "Data" msgstr "" @@ -2726,9 +2761,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:731 -#: server_privileges.php:734 server_privileges.php:790 -#: server_privileges.php:1537 server_privileges.php:2069 +#: libraries/replication_gui.lib.php:329 server_privileges.php:732 +#: server_privileges.php:735 server_privileges.php:791 +#: server_privileges.php:1557 server_privileges.php:2090 #: server_processlist.php:55 server_synchronize.php:1159 msgid "Host" msgstr "" @@ -2921,7 +2956,7 @@ msgstr "" msgid "Open new phpMyAdmin window" msgstr "" -#: libraries/header.inc.php:115 +#: libraries/header.inc.php:119 msgid "New table" msgstr "" @@ -3076,20 +3111,20 @@ 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 +#: tbl_structure.php:471 msgid "Primary" msgstr "" #: libraries/mult_submits.inc.php:98 libraries/tbl_properties.inc.php:116 #: libraries/tbl_properties.inc.php:525 tbl_printview.php:326 #: tbl_structure.php:31 tbl_structure.php:154 tbl_structure.php:158 -#: tbl_structure.php:475 tbl_structure.php:673 +#: tbl_structure.php:473 tbl_structure.php:671 msgid "Index" msgstr "" #: libraries/mult_submits.inc.php:108 libraries/tbl_properties.inc.php:531 #: tbl_structure.php:35 tbl_structure.php:156 tbl_structure.php:160 -#: tbl_structure.php:478 +#: tbl_structure.php:476 msgid "Fulltext" msgstr "" @@ -3390,8 +3425,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:711 -#: server_privileges.php:714 server_privileges.php:721 +#: libraries/replication_gui.lib.php:259 server_privileges.php:712 +#: server_privileges.php:715 server_privileges.php:722 #: server_synchronize.php:1171 msgid "User name" msgstr "" @@ -3415,7 +3450,7 @@ msgstr "" #: 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 +#: tbl_structure.php:727 msgid "Value" msgstr "" @@ -3433,34 +3468,34 @@ msgstr "" msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:254 server_privileges.php:716 +#: libraries/replication_gui.lib.php:254 server_privileges.php:717 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:717 -#: server_privileges.php:784 server_privileges.php:808 -#: server_privileges.php:1928 server_privileges.php:1958 +#: libraries/replication_gui.lib.php:346 server_privileges.php:718 +#: server_privileges.php:785 server_privileges.php:809 +#: server_privileges.php:1948 server_privileges.php:1978 msgid "Use text field" msgstr "" -#: libraries/replication_gui.lib.php:302 server_privileges.php:764 +#: libraries/replication_gui.lib.php:302 server_privileges.php:765 msgid "Any host" msgstr "" -#: libraries/replication_gui.lib.php:306 server_privileges.php:768 +#: libraries/replication_gui.lib.php:306 server_privileges.php:769 msgid "Local" msgstr "" -#: libraries/replication_gui.lib.php:312 server_privileges.php:773 +#: libraries/replication_gui.lib.php:312 server_privileges.php:774 msgid "This Host" msgstr "" -#: libraries/replication_gui.lib.php:318 server_privileges.php:779 +#: libraries/replication_gui.lib.php:318 server_privileges.php:780 msgid "Use Host Table" msgstr "" -#: libraries/replication_gui.lib.php:331 server_privileges.php:792 +#: libraries/replication_gui.lib.php:331 server_privileges.php:793 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -3494,29 +3529,29 @@ msgstr "" msgid "Servers" msgstr "" -#: libraries/server_links.inc.php:53 server_engines.php:112 +#: libraries/server_links.inc.php:54 server_engines.php:112 #: server_engines.php:116 server_status.php:415 test/theme.php:105 msgid "Variables" msgstr "" -#: libraries/server_links.inc.php:57 test/theme.php:109 +#: libraries/server_links.inc.php:58 test/theme.php:109 msgid "Charsets" msgstr "" -#: libraries/server_links.inc.php:61 test/theme.php:113 +#: libraries/server_links.inc.php:62 test/theme.php:113 msgid "Engines" msgstr "" -#: libraries/server_links.inc.php:76 server_binlog.php:110 +#: libraries/server_links.inc.php:77 server_binlog.php:110 #: server_status.php:364 test/theme.php:121 msgid "Binary log" msgstr "" -#: libraries/server_links.inc.php:80 +#: libraries/server_links.inc.php:81 msgid "Processes" msgstr "" -#: libraries/server_links.inc.php:92 server_synchronize.php:1092 +#: libraries/server_links.inc.php:93 server_synchronize.php:1092 #: server_synchronize.php:1100 msgid "Synchronize" msgstr "" @@ -3727,13 +3762,13 @@ msgstr "" msgid "Save" msgstr "" -#: libraries/tbl_properties.inc.php:780 tbl_structure.php:542 +#: libraries/tbl_properties.inc.php:780 tbl_structure.php:540 #, fuzzy, php-format #| msgid "Add %s field(s)" msgid "Add %s column(s)" msgstr "%s களத்தை சேர்க்க" -#: libraries/tbl_properties.inc.php:784 tbl_structure.php:536 +#: libraries/tbl_properties.inc.php:784 tbl_structure.php:534 #, fuzzy #| msgid "You have added a new user." msgid "You have to add at least one column." @@ -3867,8 +3902,8 @@ msgstr "" msgid "Protocol version" msgstr "" -#: main.php:189 server_privileges.php:1389 server_privileges.php:1536 -#: server_privileges.php:1650 server_privileges.php:2068 +#: main.php:189 server_privileges.php:1406 server_privileges.php:1556 +#: server_privileges.php:1670 server_privileges.php:2089 #: server_processlist.php:54 msgid "User" msgstr "" @@ -4279,320 +4314,320 @@ msgstr "" msgid "View dump (schema) of databases" msgstr "" -#: server_privileges.php:24 server_privileges.php:266 +#: server_privileges.php:25 server_privileges.php:267 msgid "Includes all privileges except GRANT." msgstr "" -#: server_privileges.php:25 server_privileges.php:192 -#: server_privileges.php:515 +#: server_privileges.php:26 server_privileges.php:193 +#: server_privileges.php:516 msgid "Allows altering the structure of existing tables." msgstr "" -#: server_privileges.php:26 server_privileges.php:208 -#: server_privileges.php:521 +#: server_privileges.php:27 server_privileges.php:209 +#: server_privileges.php:522 msgid "Allows altering and dropping stored routines." msgstr "" -#: server_privileges.php:27 server_privileges.php:184 -#: server_privileges.php:514 +#: server_privileges.php:28 server_privileges.php:185 +#: server_privileges.php:515 msgid "Allows creating new databases and tables." msgstr "" -#: server_privileges.php:28 server_privileges.php:207 -#: server_privileges.php:520 +#: server_privileges.php:29 server_privileges.php:208 +#: server_privileges.php:521 msgid "Allows creating stored routines." msgstr "" -#: server_privileges.php:29 server_privileges.php:514 +#: server_privileges.php:30 server_privileges.php:515 msgid "Allows creating new tables." msgstr "" -#: server_privileges.php:30 server_privileges.php:195 -#: server_privileges.php:518 +#: server_privileges.php:31 server_privileges.php:196 +#: server_privileges.php:519 msgid "Allows creating temporary tables." msgstr "" -#: server_privileges.php:31 server_privileges.php:209 -#: server_privileges.php:554 +#: server_privileges.php:32 server_privileges.php:210 +#: server_privileges.php:555 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 +#: server_privileges.php:33 server_privileges.php:200 +#: server_privileges.php:204 server_privileges.php:527 +#: server_privileges.php:531 msgid "Allows creating new views." msgstr "" -#: server_privileges.php:33 server_privileges.php:183 -#: server_privileges.php:506 +#: server_privileges.php:34 server_privileges.php:184 +#: server_privileges.php:507 msgid "Allows deleting data." msgstr "" -#: server_privileges.php:34 server_privileges.php:185 -#: server_privileges.php:517 +#: server_privileges.php:35 server_privileges.php:186 +#: server_privileges.php:518 msgid "Allows dropping databases and tables." msgstr "" -#: server_privileges.php:35 server_privileges.php:517 +#: server_privileges.php:36 server_privileges.php:518 msgid "Allows dropping tables." msgstr "" -#: server_privileges.php:36 server_privileges.php:200 -#: server_privileges.php:534 +#: server_privileges.php:37 server_privileges.php:201 +#: server_privileges.php:535 msgid "Allows to set up events for the event scheduler" msgstr "" -#: server_privileges.php:37 server_privileges.php:210 -#: server_privileges.php:522 +#: server_privileges.php:38 server_privileges.php:211 +#: server_privileges.php:523 msgid "Allows executing stored routines." msgstr "" -#: server_privileges.php:38 server_privileges.php:189 -#: server_privileges.php:509 +#: server_privileges.php:39 server_privileges.php:190 +#: server_privileges.php:510 msgid "Allows importing data from and exporting data into files." msgstr "" -#: server_privileges.php:39 server_privileges.php:540 +#: server_privileges.php:40 server_privileges.php:541 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" -#: server_privileges.php:40 server_privileges.php:191 -#: server_privileges.php:516 +#: server_privileges.php:41 server_privileges.php:192 +#: server_privileges.php:517 msgid "Allows creating and dropping indexes." msgstr "" -#: server_privileges.php:41 server_privileges.php:181 -#: server_privileges.php:442 server_privileges.php:504 +#: server_privileges.php:42 server_privileges.php:182 +#: server_privileges.php:443 server_privileges.php:505 msgid "Allows inserting and replacing data." msgstr "" -#: server_privileges.php:42 server_privileges.php:196 -#: server_privileges.php:549 +#: server_privileges.php:43 server_privileges.php:197 +#: server_privileges.php:550 msgid "Allows locking tables for the current thread." msgstr "" -#: server_privileges.php:43 server_privileges.php:646 -#: server_privileges.php:648 +#: server_privileges.php:44 server_privileges.php:647 +#: server_privileges.php:649 msgid "Limits the number of new connections the user may open per hour." msgstr "" -#: server_privileges.php:44 server_privileges.php:634 -#: server_privileges.php:636 +#: server_privileges.php:45 server_privileges.php:635 +#: server_privileges.php:637 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" -#: server_privileges.php:45 server_privileges.php:640 -#: server_privileges.php:642 +#: server_privileges.php:46 server_privileges.php:641 +#: server_privileges.php:643 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." msgstr "" -#: server_privileges.php:46 server_privileges.php:652 -#: server_privileges.php:654 +#: server_privileges.php:47 server_privileges.php:653 +#: server_privileges.php:655 msgid "Limits the number of simultaneous connections the user may have." msgstr "" -#: server_privileges.php:47 server_privileges.php:188 -#: server_privileges.php:544 +#: server_privileges.php:48 server_privileges.php:189 +#: server_privileges.php:545 msgid "Allows viewing processes of all users" msgstr "" -#: server_privileges.php:48 server_privileges.php:190 -#: server_privileges.php:448 server_privileges.php:550 +#: server_privileges.php:49 server_privileges.php:191 +#: server_privileges.php:449 server_privileges.php:551 msgid "Has no effect in this MySQL version." msgstr "" -#: server_privileges.php:49 server_privileges.php:186 -#: server_privileges.php:545 +#: server_privileges.php:50 server_privileges.php:187 +#: server_privileges.php:546 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" -#: server_privileges.php:50 server_privileges.php:198 -#: server_privileges.php:552 +#: server_privileges.php:51 server_privileges.php:199 +#: server_privileges.php:553 msgid "Allows the user to ask where the slaves / masters are." msgstr "" -#: server_privileges.php:51 server_privileges.php:197 -#: server_privileges.php:553 +#: server_privileges.php:52 server_privileges.php:198 +#: server_privileges.php:554 msgid "Needed for the replication slaves." msgstr "" -#: server_privileges.php:52 server_privileges.php:180 -#: server_privileges.php:439 server_privileges.php:503 +#: server_privileges.php:53 server_privileges.php:181 +#: server_privileges.php:440 server_privileges.php:504 msgid "Allows reading data." msgstr "" -#: server_privileges.php:53 server_privileges.php:193 -#: server_privileges.php:547 +#: server_privileges.php:54 server_privileges.php:194 +#: server_privileges.php:548 msgid "Gives access to the complete list of databases." msgstr "" -#: server_privileges.php:54 server_privileges.php:204 -#: server_privileges.php:206 server_privileges.php:519 +#: server_privileges.php:55 server_privileges.php:205 +#: server_privileges.php:207 server_privileges.php:520 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "" -#: server_privileges.php:55 server_privileges.php:187 -#: server_privileges.php:546 +#: server_privileges.php:56 server_privileges.php:188 +#: server_privileges.php:547 msgid "Allows shutting down the server." msgstr "" -#: server_privileges.php:56 server_privileges.php:194 -#: server_privileges.php:543 +#: server_privileges.php:57 server_privileges.php:195 +#: server_privileges.php:544 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " "killing threads of other users." msgstr "" -#: server_privileges.php:57 server_privileges.php:201 -#: server_privileges.php:535 +#: server_privileges.php:58 server_privileges.php:202 +#: server_privileges.php:536 msgid "Allows creating and dropping triggers" msgstr "" -#: server_privileges.php:58 server_privileges.php:182 -#: server_privileges.php:445 server_privileges.php:505 +#: server_privileges.php:59 server_privileges.php:183 +#: server_privileges.php:446 server_privileges.php:506 msgid "Allows changing data." msgstr "" -#: server_privileges.php:59 server_privileges.php:260 +#: server_privileges.php:60 server_privileges.php:261 msgid "No privileges." msgstr "" -#: server_privileges.php:302 server_privileges.php:303 +#: server_privileges.php:303 server_privileges.php:304 msgctxt "None privileges" msgid "None" msgstr "" -#: server_privileges.php:431 server_privileges.php:566 -#: server_privileges.php:1718 server_privileges.php:1724 +#: server_privileges.php:432 server_privileges.php:567 +#: server_privileges.php:1738 server_privileges.php:1744 msgid "Table-specific privileges" msgstr "" -#: server_privileges.php:432 server_privileges.php:574 -#: server_privileges.php:1540 +#: server_privileges.php:433 server_privileges.php:575 +#: server_privileges.php:1560 msgid " Note: MySQL privilege names are expressed in English " msgstr "" -#: server_privileges.php:563 server_privileges.php:1539 +#: server_privileges.php:564 server_privileges.php:1559 msgid "Global privileges" msgstr "" -#: server_privileges.php:565 server_privileges.php:1718 +#: server_privileges.php:566 server_privileges.php:1738 msgid "Database-specific privileges" msgstr "" -#: server_privileges.php:610 +#: server_privileges.php:611 msgid "Administration" msgstr "" -#: server_privileges.php:630 +#: server_privileges.php:631 msgid "Resource limits" msgstr "" -#: server_privileges.php:631 +#: server_privileges.php:632 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "" -#: server_privileges.php:708 +#: server_privileges.php:709 msgid "Login Information" msgstr "" -#: server_privileges.php:802 +#: server_privileges.php:803 msgid "Do not change the password" msgstr "" -#: server_privileges.php:843 server_privileges.php:2205 +#: server_privileges.php:844 server_privileges.php:2226 msgid "No user found." msgstr "" -#: server_privileges.php:887 +#: server_privileges.php:888 #, php-format msgid "The user %s already exists!" msgstr "" -#: server_privileges.php:970 +#: server_privileges.php:971 msgid "You have added a new user." msgstr "நீங்கள் புதிய பயனாளரை சேர்த்துள்ளீர்கள்" -#: server_privileges.php:1191 +#: server_privileges.php:1196 #, php-format msgid "You have updated the privileges for %s." msgstr "" -#: server_privileges.php:1215 +#: server_privileges.php:1220 #, php-format msgid "You have revoked the privileges for %s" msgstr "" -#: server_privileges.php:1251 +#: server_privileges.php:1256 #, php-format msgid "The password for %s was changed successfully." msgstr "" -#: server_privileges.php:1271 +#: server_privileges.php:1276 #, php-format msgid "Deleting %s" msgstr "" -#: server_privileges.php:1282 +#: server_privileges.php:1287 msgid "No users selected for deleting!" msgstr "" -#: server_privileges.php:1285 +#: server_privileges.php:1290 msgid "Reloading the privileges" msgstr "" -#: server_privileges.php:1300 +#: server_privileges.php:1305 msgid "The selected users have been deleted successfully." msgstr "" -#: server_privileges.php:1335 +#: server_privileges.php:1344 msgid "The privileges were reloaded successfully." msgstr "" -#: server_privileges.php:1363 server_privileges.php:1649 +#: server_privileges.php:1380 server_privileges.php:1669 msgid "Edit Privileges" msgstr "" -#: server_privileges.php:1372 +#: server_privileges.php:1389 msgid "Revoke" msgstr "" -#: server_privileges.php:1404 +#: server_privileges.php:1424 msgid "User overview" msgstr "" -#: server_privileges.php:1541 server_privileges.php:1723 -#: server_privileges.php:2072 +#: server_privileges.php:1561 server_privileges.php:1743 +#: server_privileges.php:2093 msgid "Grant" msgstr "" -#: server_privileges.php:1560 server_privileges.php:2162 +#: server_privileges.php:1580 server_privileges.php:2183 msgid "Any" msgstr "" -#: server_privileges.php:1609 server_privileges.php:1633 -#: server_privileges.php:2027 server_privileges.php:2216 +#: server_privileges.php:1629 server_privileges.php:1653 +#: server_privileges.php:2048 server_privileges.php:2237 msgid "Add a new User" msgstr "புதிய பயனாளரை சேர்க்க" -#: server_privileges.php:1614 +#: server_privileges.php:1634 msgid "Remove selected users" msgstr "" -#: server_privileges.php:1617 +#: server_privileges.php:1637 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 +#: server_privileges.php:1638 server_privileges.php:1639 +#: server_privileges.php:1640 msgid "Drop the databases that have the same names as the users." msgstr "" -#: server_privileges.php:1636 +#: server_privileges.php:1656 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -4601,89 +4636,89 @@ msgid "" "sreload the privileges%s before you continue." msgstr "" -#: server_privileges.php:1684 +#: server_privileges.php:1704 msgid "The selected user was not found in the privilege table." msgstr "" -#: server_privileges.php:1724 +#: server_privileges.php:1744 msgid "Column-specific privileges" msgstr "" -#: server_privileges.php:1925 +#: server_privileges.php:1945 msgid "Add privileges on the following database" msgstr "பின்வரும் கொட்பிட்கான புதிய அனுமதியை சேர்க்க" -#: server_privileges.php:1943 +#: server_privileges.php:1963 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" -#: server_privileges.php:1946 +#: server_privileges.php:1966 msgid "Add privileges on the following table" msgstr "" -#: server_privileges.php:2003 +#: server_privileges.php:2023 msgid "Change Login Information / Copy User" msgstr "" -#: server_privileges.php:2006 +#: server_privileges.php:2026 msgid "Create a new user with the same privileges and ..." msgstr "" -#: server_privileges.php:2008 +#: server_privileges.php:2028 msgid "... keep the old one." msgstr "" -#: server_privileges.php:2009 +#: server_privileges.php:2029 msgid " ... delete the old one from the user tables." msgstr "" -#: server_privileges.php:2010 +#: server_privileges.php:2030 msgid "" " ... revoke all active privileges from the old one and delete it afterwards." msgstr "" -#: server_privileges.php:2011 +#: server_privileges.php:2031 msgid "" " ... delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" -#: server_privileges.php:2033 +#: server_privileges.php:2054 msgid "Database for user" msgstr "" -#: server_privileges.php:2037 +#: server_privileges.php:2058 msgctxt "Create none database for user" msgid "None" msgstr "" -#: server_privileges.php:2038 +#: server_privileges.php:2059 msgid "Create database with same name and grant all privileges" msgstr "" -#: server_privileges.php:2039 +#: server_privileges.php:2060 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "" -#: server_privileges.php:2042 +#: server_privileges.php:2063 #, php-format msgid "Grant all privileges on database "%s"" msgstr "" -#: server_privileges.php:2065 +#: server_privileges.php:2086 #, php-format msgid "Users having access to "%s"" msgstr "" -#: server_privileges.php:2173 +#: server_privileges.php:2194 msgid "global" msgstr "" -#: server_privileges.php:2175 +#: server_privileges.php:2196 msgid "database-specific" msgstr "" -#: server_privileges.php:2177 +#: server_privileges.php:2198 msgid "wildcard" msgstr "" @@ -7321,6 +7356,10 @@ msgstr "" msgid "Show insert query" msgstr "" +#: tbl_change.php:1143 +msgid "and then" +msgstr "" + #: tbl_change.php:1147 msgid "Go back to previous page" msgstr "" @@ -7399,7 +7438,7 @@ msgstr "" msgid "Add to index  %s column(s)" msgstr "" -#: tbl_indexes.php:256 tbl_structure.php:589 tbl_structure.php:600 +#: tbl_indexes.php:256 tbl_structure.php:587 tbl_structure.php:598 msgid "Column count has to be larger than zero." msgstr "" @@ -7511,39 +7550,39 @@ msgstr "" msgid "Show tables" msgstr "" -#: tbl_printview.php:310 tbl_structure.php:656 +#: tbl_printview.php:310 tbl_structure.php:654 msgid "Space usage" msgstr "" -#: tbl_printview.php:314 tbl_structure.php:660 +#: tbl_printview.php:314 tbl_structure.php:658 msgid "Usage" msgstr "" -#: tbl_printview.php:341 tbl_structure.php:687 +#: tbl_printview.php:341 tbl_structure.php:685 msgid "Effective" msgstr "" -#: tbl_printview.php:366 tbl_structure.php:725 +#: tbl_printview.php:366 tbl_structure.php:723 msgid "Row Statistics" msgstr "" -#: tbl_printview.php:369 tbl_structure.php:728 +#: tbl_printview.php:369 tbl_structure.php:726 msgid "Statements" msgstr "" -#: tbl_printview.php:380 tbl_structure.php:740 +#: tbl_printview.php:380 tbl_structure.php:738 msgid "static" msgstr "" -#: tbl_printview.php:382 tbl_structure.php:742 +#: tbl_printview.php:382 tbl_structure.php:740 msgid "dynamic" msgstr "" -#: tbl_printview.php:404 tbl_structure.php:785 +#: tbl_printview.php:404 tbl_structure.php:783 msgid "Row length" msgstr "" -#: tbl_printview.php:414 tbl_structure.php:793 +#: tbl_printview.php:414 tbl_structure.php:791 msgid " Row size " msgstr "" @@ -7608,49 +7647,49 @@ msgstr "" msgid "Column %s has been dropped" msgstr "" -#: tbl_structure.php:385 +#: tbl_structure.php:384 #, php-format msgid "A primary key has been added on %s" msgstr "" -#: tbl_structure.php:400 tbl_structure.php:414 tbl_structure.php:428 +#: tbl_structure.php:398 tbl_structure.php:412 tbl_structure.php:426 #, php-format msgid "An index has been added on %s" msgstr "" -#: tbl_structure.php:506 tbl_structure.php:508 +#: tbl_structure.php:504 tbl_structure.php:506 msgid "Relation view" msgstr "" -#: tbl_structure.php:515 tbl_structure.php:517 +#: tbl_structure.php:513 tbl_structure.php:515 msgid "Propose table structure" msgstr "" -#: tbl_structure.php:540 +#: tbl_structure.php:538 #, fuzzy #| msgid "Add %s field(s)" msgid "Add column" msgstr "%s களத்தை சேர்க்க" -#: tbl_structure.php:554 +#: tbl_structure.php:552 msgid "At End of Table" msgstr "" -#: tbl_structure.php:555 +#: tbl_structure.php:553 msgid "At Beginning of Table" msgstr "" -#: tbl_structure.php:556 +#: tbl_structure.php:554 #, php-format msgid "After %s" msgstr "%s பின்" -#: tbl_structure.php:594 +#: tbl_structure.php:592 #, php-format msgid "Create an index on  %s columns" msgstr "" -#: tbl_structure.php:756 +#: tbl_structure.php:754 msgid "partitioned" msgstr "" diff --git a/po/te.po b/po/te.po index f9915cdaa..3cd54c7ba 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-13 09:03-0400\n" +"POT-Creation-Date: 2010-06-22 00:55+0530\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:1514 +#: libraries/display_tbl.lib.php:417 server_privileges.php:1534 msgid "Show all" msgstr "అన్నీ చూపించు" -#: browse_foreigners.php:82 libraries/common.lib.php:2313 +#: browse_foreigners.php:82 libraries/common.lib.php:2317 #: 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,18 +39,18 @@ 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:2831 -#: libraries/common.lib.php:2838 libraries/db_links.inc.php:75 +#: db_structure.php:106 libraries/common.lib.php:2835 +#: libraries/common.lib.php:2842 libraries/db_links.inc.php:75 #: libraries/tbl_links.inc.php:63 msgid "Search" msgstr "శోధించు" -#: browse_foreigners.php:153 db_operations.php:385 db_operations.php:429 -#: db_operations.php:499 db_operations.php:609 db_search.php:362 -#: db_structure.php:567 js/messages.php:48 libraries/Config.class.php:1046 +#: browse_foreigners.php:153 db_operations.php:394 db_operations.php:438 +#: db_operations.php:508 db_operations.php:618 db_search.php:362 +#: db_structure.php:565 js/messages.php:53 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:1335 libraries/common.lib.php:2288 +#: libraries/common.lib.php:1335 libraries/common.lib.php:2292 #: 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,15 +61,15 @@ 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:664 server_privileges.php:1624 -#: server_privileges.php:1971 server_privileges.php:2018 -#: server_privileges.php:2057 server_replication.php:235 +#: server_privileges.php:665 server_privileges.php:1644 +#: server_privileges.php:1991 server_privileges.php:2038 +#: server_privileges.php:2078 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 #: tbl_operations.php:302 tbl_operations.php:499 tbl_operations.php:561 -#: tbl_operations.php:681 tbl_select.php:327 tbl_structure.php:562 -#: tbl_structure.php:597 tbl_tracking.php:395 tbl_tracking.php:512 +#: tbl_operations.php:681 tbl_select.php:327 tbl_structure.php:560 +#: tbl_structure.php:595 tbl_tracking.php:395 tbl_tracking.php:512 #: view_create.php:182 view_operations.php:101 msgid "Go" msgstr "వెళ్ళు" @@ -95,7 +95,7 @@ msgstr "ఈ విలువని ఉపయోగించు" msgid "Database %1$s has been created." msgstr "" -#: db_datadict.php:49 db_operations.php:378 +#: db_datadict.php:49 db_operations.php:387 msgid "Database comment: " msgstr "" @@ -123,10 +123,10 @@ 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:2070 +#: pdf_schema.php:1263 pdf_schema.php:1284 server_privileges.php:2091 #: 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 +#: tbl_structure.php:657 tbl_tracking.php:274 tbl_tracking.php:321 msgid "Type" msgstr "రకం" @@ -139,7 +139,7 @@ msgstr "రకం" msgid "Null" msgstr "" -#: db_datadict.php:178 db_structure.php:501 libraries/export/htmlword.php:247 +#: db_datadict.php:178 db_structure.php:499 libraries/export/htmlword.php:247 #: libraries/export/latex.php:360 libraries/export/odt.php:303 #: libraries/export/texytext.php:236 libraries/tbl_properties.inc.php:106 #: pdf_schema.php:1266 pdf_schema.php:1287 tbl_printview.php:146 @@ -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: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 +#: pdf_schema.php:1344 server_privileges.php:1588 server_privileges.php:1599 +#: server_privileges.php:1909 server_privileges.php:1914 +#: server_privileges.php:2208 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:1565 -#: server_privileges.php:1579 server_privileges.php:1889 -#: server_privileges.php:1892 server_privileges.php:2187 sql.php:193 +#: server_databases.php:64 server_privileges.php:1585 +#: server_privileges.php:1599 server_privileges.php:1909 +#: server_privileges.php:1912 server_privileges.php:2208 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" @@ -213,137 +213,132 @@ msgid "Unselect All" msgstr "" # మొదటి అనువాదము -#: db_operations.php:38 tbl_create.php:54 +#: db_operations.php:43 tbl_create.php:54 msgid "The database name is empty!" msgstr "డేటాబేస్ పేరు ఖాళీగా ఉన్నది" -#: db_operations.php:236 +#: db_operations.php:241 #, php-format msgid "Database %s has been renamed to %s" msgstr "" -#: db_operations.php:240 +#: db_operations.php:245 #, php-format msgid "Database %s has been copied to %s" msgstr "" -#: db_operations.php:412 +#: db_operations.php:421 msgid "Rename database to" msgstr "" # మొదటి అనువాదము -#: db_operations.php:417 server_processlist.php:57 +#: db_operations.php:426 server_processlist.php:57 msgid "Command" msgstr "ఆజ్ఞ" -# మొదటి అనువాదము -#: db_operations.php:429 tbl_change.php:1143 -msgid "and then" -msgstr "మరియు తరువాత" - -#: db_operations.php:455 +#: db_operations.php:464 msgid "Copy database to" msgstr "" -#: db_operations.php:462 tbl_operations.php:528 tbl_tracking.php:388 +#: db_operations.php:471 tbl_operations.php:528 tbl_tracking.php:388 msgid "Structure only" msgstr "" -#: db_operations.php:463 tbl_operations.php:529 tbl_tracking.php:390 +#: db_operations.php:472 tbl_operations.php:529 tbl_tracking.php:390 msgid "Structure and data" msgstr "" -#: db_operations.php:464 tbl_operations.php:530 tbl_tracking.php:389 +#: db_operations.php:473 tbl_operations.php:530 tbl_tracking.php:389 msgid "Data only" msgstr "" -#: db_operations.php:472 +#: db_operations.php:481 msgid "CREATE DATABASE before copying" msgstr "" -#: db_operations.php:475 libraries/export/sql.php:52 +#: db_operations.php:484 libraries/export/sql.php:52 #: libraries/export/sql.php:74 libraries/export/sql.php:76 #: libraries/export/sql.php:82 tbl_operations.php:536 #, php-format msgid "Add %s" msgstr "" -#: db_operations.php:479 libraries/export/sql.php:78 tbl_operations.php:299 +#: db_operations.php:488 libraries/export/sql.php:78 tbl_operations.php:299 #: tbl_operations.php:538 msgid "Add AUTO_INCREMENT value" msgstr "" -#: db_operations.php:483 tbl_operations.php:545 +#: db_operations.php:492 tbl_operations.php:545 msgid "Add constraints" msgstr "" -#: db_operations.php:496 +#: db_operations.php:505 msgid "Switch to copied database" msgstr "" -#: db_operations.php:537 +#: db_operations.php:546 msgid "BLOB Repository" msgstr "" -#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1352 -#: libraries/server_links.inc.php:49 server_processlist.php:59 +#: db_operations.php:549 db_tracking.php:76 libraries/common.lib.php:1352 +#: libraries/server_links.inc.php:50 server_processlist.php:59 #: tbl_tracking.php:596 test/theme.php:101 msgid "Status" msgstr "స్థితి" -#: db_operations.php:548 +#: db_operations.php:557 #, fuzzy #| msgid "End" msgctxt "BLOB repository" msgid "Enabled" msgstr "ముగింపు" -#: db_operations.php:552 +#: db_operations.php:561 msgid "Disable" msgstr "" -#: db_operations.php:562 +#: db_operations.php:571 msgid "Damaged" msgstr "" -#: db_operations.php:566 +#: db_operations.php:575 msgctxt "BLOB repository" msgid "Repair" msgstr "" -#: db_operations.php:574 +#: db_operations.php:583 msgctxt "BLOB repository" msgid "Disabled" msgstr "" -#: db_operations.php:578 +#: db_operations.php:587 msgid "Enable" msgstr "" -#: db_operations.php:602 libraries/Index.class.php:448 +#: db_operations.php:611 libraries/Index.class.php:448 #: libraries/db_structure.lib.php:62 libraries/mysql_charsets.lib.php:107 #: libraries/tbl_properties.inc.php:107 libraries/tbl_properties.inc.php:730 #: server_collations.php:54 server_collations.php:66 server_databases.php:111 #: tbl_operations.php:363 tbl_select.php:137 tbl_structure.php:179 -#: tbl_structure.php:767 tbl_tracking.php:275 tbl_tracking.php:326 +#: tbl_structure.php:765 tbl_tracking.php:275 tbl_tracking.php:326 msgid "Collation" msgstr "" -#: db_operations.php:615 main.php:316 pdf_schema.php:34 +#: db_operations.php:624 main.php:316 pdf_schema.php:34 #, php-format msgid "" "The additional features for working with linked tables have been " "deactivated. To find out why click %shere%s." msgstr "" -#: db_operations.php:648 +#: db_operations.php:657 msgid "Edit PDF Pages" 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:1665 -#: server_privileges.php:1721 server_privileges.php:1985 +#: libraries/header.inc.php:130 pdf_pages.php:424 server_privileges.php:1685 +#: server_privileges.php:1741 server_privileges.php:2005 #: server_synchronize.php:423 server_synchronize.php:866 tbl_tracking.php:592 #: test/theme.php:75 msgid "Table" @@ -352,7 +347,7 @@ msgstr "పట్టిక" #: db_printview.php:105 libraries/db_structure.lib.php:56 #: libraries/header_printview.inc.php:63 libraries/import.lib.php:146 #: navigation.php:638 navigation.php:660 server_databases.php:122 -#: tbl_printview.php:394 tbl_structure.php:365 tbl_structure.php:777 +#: tbl_printview.php:394 tbl_structure.php:365 tbl_structure.php:775 msgid "Rows" msgstr "" @@ -361,30 +356,30 @@ msgid "Size" msgstr "పరిమాణం" # మొదటి అనువాదము -#: db_printview.php:162 db_structure.php:457 libraries/export/sql.php:559 +#: db_printview.php:162 db_structure.php:455 libraries/export/sql.php:559 #: libraries/export/sql.php:899 msgid "in use" msgstr "వాడుకలో ఉన్నది" #: db_printview.php:187 libraries/db_info.inc.php:88 #: libraries/export/sql.php:514 pdf_schema.php:1241 tbl_printview.php:434 -#: tbl_structure.php:809 +#: tbl_structure.php:807 msgid "Creation" msgstr "" #: db_printview.php:196 libraries/db_info.inc.php:93 #: libraries/export/sql.php:519 pdf_schema.php:1246 tbl_printview.php:444 -#: tbl_structure.php:817 +#: tbl_structure.php:815 msgid "Last update" msgstr "" #: db_printview.php:205 libraries/db_info.inc.php:98 #: libraries/export/sql.php:524 pdf_schema.php:1251 tbl_printview.php:454 -#: tbl_structure.php:825 +#: tbl_structure.php:823 msgid "Last check" msgstr "" -#: db_printview.php:222 db_structure.php:480 +#: db_printview.php:222 db_structure.php:478 #, php-format msgid "%s table" msgid_plural "%s tables" @@ -447,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:297 tbl_change.php:1031 tbl_indexes.php:250 +#: server_privileges.php:298 tbl_change.php:1031 tbl_indexes.php:250 #: tbl_select.php:288 msgid "Or" msgstr "లేదా" @@ -516,9 +511,9 @@ 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:2833 +#: db_structure.php:105 libraries/common.lib.php:2837 #: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50 -#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:467 +#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:465 msgid "Browse" msgstr "" @@ -562,37 +557,37 @@ 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:2832 libraries/sql_query_form.lib.php:334 +#: libraries/common.lib.php:2836 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:2829 libraries/common.lib.php:2836 +#: libraries/common.lib.php:2833 libraries/common.lib.php:2840 #: 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:1106 #: libraries/tbl_links.inc.php:56 pmd_general.php:134 -#: server_privileges.php:593 server_replication.php:315 tbl_tracking.php:269 +#: server_privileges.php:594 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:1656 +#: db_structure.php:543 db_structure.php:544 db_tracking.php:91 +#: libraries/Index.class.php:483 libraries/common.lib.php:1657 #: 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 -#: tbl_structure.php:152 tbl_structure.php:471 +#: tbl_structure.php:152 tbl_structure.php:469 msgid "Drop" 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:1655 +#: db_structure.php:541 db_structure.php:542 libraries/common.lib.php:1656 #: libraries/mult_submits.inc.php:39 libraries/tbl_links.inc.php:105 msgid "Empty" msgstr "ఖాళీ" @@ -602,25 +597,25 @@ msgstr "ఖాళీ" msgid "Table %s has been emptied" msgstr "" -#: db_structure.php:326 libraries/tbl_links.inc.php:133 +#: db_structure.php:325 libraries/tbl_links.inc.php:133 #, php-format msgid "View %s has been dropped" msgstr "" -#: db_structure.php:326 libraries/tbl_links.inc.php:133 +#: db_structure.php:325 libraries/tbl_links.inc.php:133 #, php-format msgid "Table %s has been dropped" msgstr "" -#: db_structure.php:333 +#: db_structure.php:332 msgid "Tracking is active." msgstr "" -#: db_structure.php:335 +#: db_structure.php:334 msgid "Tracking is not active." msgstr "" -#: db_structure.php:420 libraries/display_tbl.lib.php:1944 +#: db_structure.php:418 libraries/display_tbl.lib.php:1944 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation%" @@ -628,87 +623,87 @@ msgid "" msgstr "" # మొదటి అనువాదము -#: db_structure.php:434 db_structure.php:448 libraries/header.inc.php:126 +#: db_structure.php:432 db_structure.php:446 libraries/header.inc.php:130 #: libraries/tbl_info.inc.php:66 tbl_structure.php:185 test/theme.php:74 msgid "View" msgstr "చూపుము" -#: db_structure.php:485 libraries/db_structure.lib.php:49 -#: libraries/server_links.inc.php:70 server_replication.php:33 +#: db_structure.php:483 libraries/db_structure.lib.php:49 +#: libraries/server_links.inc.php:71 server_replication.php:33 #: server_replication.php:164 server_status.php:369 msgid "Replication" msgstr "" # మొదటి అనువాదము -#: db_structure.php:489 +#: db_structure.php:487 msgid "Sum" msgstr "మొత్తము" -#: db_structure.php:496 libraries/StorageEngine.class.php:356 +#: db_structure.php:494 libraries/StorageEngine.class.php:356 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "" -#: db_structure.php:524 db_structure.php:541 db_structure.php:542 +#: db_structure.php:522 db_structure.php:539 db_structure.php:540 #: 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:1596 tbl_structure.php:455 -#: tbl_structure.php:464 +#: server_databases.php:351 server_privileges.php:1616 tbl_structure.php:453 +#: tbl_structure.php:462 msgid "With selected:" msgstr "" -#: db_structure.php:527 libraries/display_tbl.lib.php:2076 -#: server_databases.php:348 server_privileges.php:569 -#: server_privileges.php:1599 tbl_structure.php:458 +#: db_structure.php:525 libraries/display_tbl.lib.php:2076 +#: server_databases.php:348 server_privileges.php:570 +#: server_privileges.php:1619 tbl_structure.php:456 msgid "Check All" msgstr "" -#: db_structure.php:531 libraries/display_tbl.lib.php:2077 +#: db_structure.php:529 libraries/display_tbl.lib.php:2077 #: libraries/replication_gui.lib.php:33 server_databases.php:350 -#: server_privileges.php:572 server_privileges.php:1603 tbl_structure.php:462 +#: server_privileges.php:573 server_privileges.php:1623 tbl_structure.php:460 msgid "Uncheck All" msgstr "" -#: db_structure.php:536 +#: db_structure.php:534 msgid "Check tables having overhead" msgstr "" -#: db_structure.php:547 db_structure.php:548 db_structure.php:599 +#: db_structure.php:545 db_structure.php:546 db_structure.php:597 #: libraries/display_tbl.lib.php:2180 libraries/mult_submits.inc.php:28 -#: tbl_structure.php:492 tbl_structure.php:494 +#: tbl_structure.php:490 tbl_structure.php:492 msgid "Print view" msgstr "" -#: db_structure.php:549 db_structure.php:550 libraries/mult_submits.inc.php:42 +#: db_structure.php:547 db_structure.php:548 libraries/mult_submits.inc.php:42 #: tbl_operations.php:581 msgid "Check table" msgstr "" -#: db_structure.php:551 db_structure.php:552 libraries/mult_submits.inc.php:47 -#: tbl_operations.php:621 tbl_structure.php:709 tbl_structure.php:711 +#: db_structure.php:549 db_structure.php:550 libraries/mult_submits.inc.php:47 +#: tbl_operations.php:621 tbl_structure.php:707 tbl_structure.php:709 msgid "Optimize table" msgstr "" -#: db_structure.php:553 db_structure.php:554 libraries/mult_submits.inc.php:52 +#: db_structure.php:551 db_structure.php:552 libraries/mult_submits.inc.php:52 #: tbl_operations.php:611 msgid "Repair table" msgstr "" -#: db_structure.php:555 db_structure.php:556 libraries/mult_submits.inc.php:57 +#: db_structure.php:553 db_structure.php:554 libraries/mult_submits.inc.php:57 #: tbl_operations.php:601 msgid "Analyze table" msgstr "" -#: db_structure.php:557 db_structure.php:558 libraries/db_links.inc.php:71 +#: db_structure.php:555 db_structure.php:556 libraries/db_links.inc.php:71 #: 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:1380 +#: libraries/server_links.inc.php:85 libraries/tbl_links.inc.php:82 +#: pmd_pdf.php:84 pmd_pdf.php:109 server_privileges.php:1397 #: setup/frames/menu.inc.php:22 tbl_row_action.php:59 msgid "Export" msgstr "" -#: db_structure.php:606 libraries/display_pdf_schema.lib.php:44 +#: db_structure.php:604 libraries/display_pdf_schema.lib.php:44 msgid "Data Dictionary" msgstr "" @@ -720,10 +715,10 @@ msgstr "" #: db_tracking.php:71 libraries/export/htmlword.php:86 #: libraries/export/latex.php:148 libraries/export/odt.php:113 #: libraries/export/sql.php:342 libraries/export/texytext.php:84 -#: libraries/export/xml.php:255 libraries/header.inc.php:106 +#: libraries/export/xml.php:255 libraries/header.inc.php:110 #: libraries/header_printview.inc.php:58 server_databases.php:169 -#: server_privileges.php:1660 server_privileges.php:1721 -#: server_privileges.php:1979 server_processlist.php:56 +#: server_privileges.php:1680 server_privileges.php:1741 +#: server_privileges.php:1999 server_processlist.php:56 #: server_synchronize.php:1179 server_synchronize.php:1183 #: tbl_tracking.php:591 test/theme.php:65 msgid "Database" @@ -743,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:1542 server_privileges.php:1725 -#: server_privileges.php:2073 tbl_structure.php:187 +#: server_privileges.php:1562 server_privileges.php:1745 +#: server_privileges.php:2094 tbl_structure.php:187 msgid "Action" msgstr "చర్య" @@ -778,8 +773,8 @@ msgstr "" msgid "Untracked tables" msgstr "" -#: db_tracking.php:172 db_tracking.php:174 tbl_structure.php:528 -#: tbl_structure.php:530 +#: db_tracking.php:172 db_tracking.php:174 tbl_structure.php:526 +#: tbl_structure.php:528 msgid "Track table" msgstr "" @@ -932,80 +927,125 @@ msgstr "" msgid "The user name is empty!" msgstr "వాడుకరి పేరులో ఏమీ లేదు" -#: js/messages.php:44 server_privileges.php:1236 user_password.php:70 +#: js/messages.php:44 server_privileges.php:1241 user_password.php:70 msgid "The password is empty!" msgstr "సంకేతపదం ఖాళీగా ఉంది!" -#: js/messages.php:45 server_privileges.php:1234 user_password.php:73 +#: js/messages.php:45 server_privileges.php:1239 user_password.php:73 msgid "The passwords aren't the same!" msgstr "సంకేతపదాలు సరిపోలలేదు!" -#: js/messages.php:49 pmd_general.php:342 pmd_general.php:379 +# మొదటి అనువాదము +#: js/messages.php:46 +#, fuzzy +#| msgid "Add a new User" +msgid "Add a New User" +msgstr "క్రొత్త వినియోగదారుని చేర్చు" + +#: js/messages.php:47 js/messages.php:54 pmd_general.php:342 +#: pmd_general.php:379 msgid "Cancel" msgstr "రద్దుచేయి" -#: js/messages.php:52 pmd_save_pos.php:54 +# మొదటి అనువాదము +#: js/messages.php:48 +#, fuzzy +#| msgid "Create" +msgid "Create User" +msgstr "సృష్టించు" + +#: js/messages.php:49 +msgid "Reloading Privileges" +msgstr "" + +#: js/messages.php:50 +msgid "Removing Selected Users" +msgstr "" + +#: js/messages.php:57 +#, fuzzy +#| msgid "Log in" +msgid "Loading" +msgstr "ప్రవేశించు" + +#: js/messages.php:58 +msgid "Processing Request" +msgstr "" + +#: js/messages.php:59 +msgid "Error in Processing Request" +msgstr "" + +#: js/messages.php:60 +msgid "Dropping Column" +msgstr "" + +#: js/messages.php:61 +msgid "Adding Primary Key" +msgstr "" + +#: js/messages.php:64 pmd_save_pos.php:54 msgid "Modifications have been saved" msgstr "" -#: js/messages.php:53 pmd_relation_upd.php:49 +#: js/messages.php:65 pmd_relation_upd.php:49 msgid "Relation deleted" msgstr "" -#: js/messages.php:54 pmd_relation_new.php:64 +#: js/messages.php:66 pmd_relation_new.php:64 msgid "FOREIGN KEY relation added" msgstr "" -#: js/messages.php:55 pmd_relation_new.php:86 +#: js/messages.php:67 pmd_relation_new.php:86 msgid "Internal relation added" msgstr "" -#: js/messages.php:56 pmd_relation_new.php:63 pmd_relation_new.php:88 +#: js/messages.php:68 pmd_relation_new.php:63 pmd_relation_new.php:88 msgid "Error: Relation not added." msgstr "" -#: js/messages.php:57 pmd_relation_new.php:31 +#: js/messages.php:69 pmd_relation_new.php:31 msgid "Error: relation already exists." msgstr "" -#: js/messages.php:58 +#: js/messages.php:70 msgid "Error saving coordinates for Designer." msgstr "" -#: js/messages.php:59 libraries/relation.lib.php:107 +#: js/messages.php:71 libraries/relation.lib.php:107 #: libraries/relation.lib.php:119 msgid "General relation features" msgstr "" -#: js/messages.php:59 libraries/relation.lib.php:101 +#: js/messages.php:71 libraries/relation.lib.php:101 #: libraries/relation.lib.php:108 msgid "Disabled" msgstr "" -#: js/messages.php:60 +#: js/messages.php:72 msgid "Select referenced key" msgstr "" -#: js/messages.php:61 +#: js/messages.php:73 msgid "Select Foreign Key" msgstr "" -#: js/messages.php:62 +#: js/messages.php:74 msgid "Please select the primary key or a unique key" msgstr "" -#: js/messages.php:63 pmd_general.php:77 tbl_relation.php:548 +#: js/messages.php:75 pmd_general.php:77 tbl_relation.php:548 msgid "Choose column to display" msgstr "" #. l10n: Display text for calendar close link -#: js/messages.php:73 +#: js/messages.php:85 msgid "Done" msgstr "" # మొదటి అనువాదము #. l10n: Display text for previous month link in calendar -#: js/messages.php:75 +#: js/messages.php:87 #, fuzzy #| msgid "Previous" msgid "Prev" @@ -1013,104 +1053,104 @@ msgstr "క్రితము" # మొదటి అనువాదము #. l10n: Display text for next month link in calendar -#: js/messages.php:77 libraries/common.lib.php:2353 -#: libraries/common.lib.php:2356 libraries/display_tbl.lib.php:338 +#: js/messages.php:89 libraries/common.lib.php:2357 +#: libraries/common.lib.php:2360 libraries/display_tbl.lib.php:338 #: server_binlog.php:205 server_binlog.php:207 tbl_printview.php:424 -#: tbl_structure.php:801 +#: tbl_structure.php:799 msgid "Next" msgstr "తదుపరి" #. l10n: Display text for current month link in calendar -#: js/messages.php:79 +#: js/messages.php:91 #, fuzzy #| msgid "Total" msgid "Today" msgstr "మొత్తం" -#: js/messages.php:82 +#: js/messages.php:94 #, fuzzy #| msgid "Jan" msgid "January" msgstr "జన" -#: js/messages.php:83 +#: js/messages.php:95 msgid "February" msgstr "" -#: js/messages.php:84 +#: js/messages.php:96 #, fuzzy #| msgid "Mar" msgid "March" msgstr "మార్చి" -#: js/messages.php:85 +#: js/messages.php:97 #, fuzzy #| msgid "Apr" msgid "April" msgstr "ఏప్రి" -#: js/messages.php:86 +#: js/messages.php:98 msgid "May" msgstr "మే" -#: js/messages.php:87 +#: js/messages.php:99 #, fuzzy #| msgid "Jun" msgid "June" msgstr "జూన్" -#: js/messages.php:88 +#: js/messages.php:100 #, fuzzy #| msgid "Jul" msgid "July" msgstr "జూలై" -#: js/messages.php:89 +#: js/messages.php:101 #, fuzzy #| msgid "Aug" msgid "August" msgstr "ఆగ" -#: js/messages.php:90 +#: js/messages.php:102 msgid "September" msgstr "" -#: js/messages.php:91 +#: js/messages.php:103 #, fuzzy #| msgid "Oct" msgid "October" msgstr "అక్టో" -#: js/messages.php:92 +#: js/messages.php:104 msgid "November" msgstr "" -#: js/messages.php:93 +#: js/messages.php:105 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:97 libraries/common.lib.php:1557 +#: js/messages.php:109 libraries/common.lib.php:1557 msgid "Jan" msgstr "జన" #. l10n: Short month name -#: js/messages.php:99 libraries/common.lib.php:1559 +#: js/messages.php:111 libraries/common.lib.php:1559 msgid "Feb" msgstr "ఫిబ్ర" #. l10n: Short month name -#: js/messages.php:101 libraries/common.lib.php:1561 +#: js/messages.php:113 libraries/common.lib.php:1561 msgid "Mar" msgstr "మార్చి" #. l10n: Short month name -#: js/messages.php:103 libraries/common.lib.php:1563 +#: js/messages.php:115 libraries/common.lib.php:1563 msgid "Apr" msgstr "ఏప్రి" #. l10n: Short month name -#: js/messages.php:105 libraries/common.lib.php:1565 +#: js/messages.php:117 libraries/common.lib.php:1565 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1118,179 +1158,179 @@ msgid "May" msgstr "మే" #. l10n: Short month name -#: js/messages.php:107 libraries/common.lib.php:1567 +#: js/messages.php:119 libraries/common.lib.php:1567 msgid "Jun" msgstr "జూన్" #. l10n: Short month name -#: js/messages.php:109 libraries/common.lib.php:1569 +#: js/messages.php:121 libraries/common.lib.php:1569 msgid "Jul" msgstr "జూలై" #. l10n: Short month name -#: js/messages.php:111 libraries/common.lib.php:1571 +#: js/messages.php:123 libraries/common.lib.php:1571 msgid "Aug" msgstr "ఆగ" #. l10n: Short month name -#: js/messages.php:113 libraries/common.lib.php:1573 +#: js/messages.php:125 libraries/common.lib.php:1573 msgid "Sep" msgstr "సెప్టె" #. l10n: Short month name -#: js/messages.php:115 libraries/common.lib.php:1575 +#: js/messages.php:127 libraries/common.lib.php:1575 msgid "Oct" msgstr "అక్టో" #. l10n: Short month name -#: js/messages.php:117 libraries/common.lib.php:1577 +#: js/messages.php:129 libraries/common.lib.php:1577 msgid "Nov" msgstr "నవం" #. l10n: Short month name -#: js/messages.php:119 libraries/common.lib.php:1579 +#: js/messages.php:131 libraries/common.lib.php:1579 msgid "Dec" msgstr "డిసెం" -#: js/messages.php:122 +#: js/messages.php:134 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "ఆది" -#: js/messages.php:123 +#: js/messages.php:135 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "సోమ" -#: js/messages.php:124 +#: js/messages.php:136 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "మంగళ" -#: js/messages.php:125 +#: js/messages.php:137 msgid "Wednesday" msgstr "" -#: js/messages.php:126 +#: js/messages.php:138 msgid "Thursday" msgstr "" -#: js/messages.php:127 +#: js/messages.php:139 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "శుక్ర" -#: js/messages.php:128 +#: js/messages.php:140 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:132 libraries/common.lib.php:1582 +#: js/messages.php:144 libraries/common.lib.php:1582 msgid "Sun" msgstr "ఆది" #. l10n: Short week day name -#: js/messages.php:134 libraries/common.lib.php:1584 +#: js/messages.php:146 libraries/common.lib.php:1584 msgid "Mon" msgstr "సోమ" #. l10n: Short week day name -#: js/messages.php:136 libraries/common.lib.php:1586 +#: js/messages.php:148 libraries/common.lib.php:1586 msgid "Tue" msgstr "మంగళ" #. l10n: Short week day name -#: js/messages.php:138 libraries/common.lib.php:1588 +#: js/messages.php:150 libraries/common.lib.php:1588 msgid "Wed" msgstr "బుధ" #. l10n: Short week day name -#: js/messages.php:140 libraries/common.lib.php:1590 +#: js/messages.php:152 libraries/common.lib.php:1590 msgid "Thu" msgstr "గురు" #. l10n: Short week day name -#: js/messages.php:142 libraries/common.lib.php:1592 +#: js/messages.php:154 libraries/common.lib.php:1592 msgid "Fri" msgstr "శుక్ర" #. l10n: Short week day name -#: js/messages.php:144 libraries/common.lib.php:1594 +#: js/messages.php:156 libraries/common.lib.php:1594 msgid "Sat" msgstr "శని" #. l10n: Minimal week day name -#: js/messages.php:148 +#: js/messages.php:160 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "ఆది" #. l10n: Minimal week day name -#: js/messages.php:150 +#: js/messages.php:162 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "సోమ" #. l10n: Minimal week day name -#: js/messages.php:152 +#: js/messages.php:164 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "మంగళ" #. l10n: Minimal week day name -#: js/messages.php:154 +#: js/messages.php:166 #, fuzzy #| msgid "Wed" msgid "We" msgstr "బుధ" #. l10n: Minimal week day name -#: js/messages.php:156 +#: js/messages.php:168 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "గురు" #. l10n: Minimal week day name -#: js/messages.php:158 +#: js/messages.php:170 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "శుక్ర" #. l10n: Minimal week day name -#: js/messages.php:160 +#: js/messages.php:172 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "శని" #. l10n: Column header for week of the year in calendar -#: js/messages.php:162 +#: js/messages.php:174 #, fuzzy #| msgid "Wiki" msgid "Wk" msgstr "వికీ" -#: js/messages.php:164 +#: js/messages.php:176 msgid "Hour" msgstr "" # మొదటి అనువాదము -#: js/messages.php:165 +#: js/messages.php:177 #, fuzzy #| msgid "in use" msgid "Minute" msgstr "వాడుకలో ఉన్నది" -#: js/messages.php:166 +#: js/messages.php:178 #, fuzzy #| msgid "per second" msgid "Second" @@ -1347,7 +1387,7 @@ msgstr "" #: libraries/Index.class.php:444 libraries/mult_submits.inc.php:103 #: libraries/tbl_properties.inc.php:519 tbl_structure.php:33 -#: tbl_structure.php:155 tbl_structure.php:159 tbl_structure.php:474 +#: tbl_structure.php:155 tbl_structure.php:159 tbl_structure.php:472 #: tbl_tracking.php:322 msgid "Unique" msgstr "" @@ -1388,8 +1428,8 @@ msgid "" "removed." msgstr "" -#: libraries/List_Database.class.php:431 libraries/server_links.inc.php:41 -#: server_databases.php:88 server_privileges.php:1660 +#: libraries/List_Database.class.php:431 libraries/server_links.inc.php:42 +#: server_databases.php:88 server_privileges.php:1680 #: setup/lib/messages.inc.php:110 test/theme.php:93 msgid "Databases" msgstr "" @@ -1553,7 +1593,7 @@ msgstr "సంకేతపదం:" msgid "Server Choice" msgstr "" -#: libraries/auth/cookie.auth.lib.php:320 libraries/header.inc.php:59 +#: libraries/auth/cookie.auth.lib.php:320 libraries/header.inc.php:63 msgid "Cookies must be enabled past this point." msgstr "" @@ -1630,7 +1670,7 @@ msgid "" "necessary extensions appear to be loaded. Check your PHP configuration." msgstr "" -#: libraries/common.inc.php:583 +#: libraries/common.inc.php:587 msgid "" "phpMyAdmin was unable to read your configuration file!
This might " "happen if PHP finds a parse error in it or PHP cannot find the file.
$cfg['PmaAbsoluteUri'] directive MUST be set in your " "configuration file!" msgstr "" -#: libraries/common.inc.php:629 +#: libraries/common.inc.php:633 #, php-format msgid "Invalid server index: %s" msgstr "" -#: libraries/common.inc.php:636 +#: libraries/common.inc.php:640 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" -#: libraries/common.inc.php:645 libraries/header.inc.php:96 +#: libraries/common.inc.php:649 libraries/header.inc.php:100 #: libraries/select_server.lib.php:41 libraries/select_server.lib.php:47 #: main.php:185 test/theme.php:57 msgid "Server" msgstr "" -#: libraries/common.inc.php:823 +#: libraries/common.inc.php:827 msgid "Invalid authentication method set in configuration:" msgstr "" -#: libraries/common.inc.php:926 +#: libraries/common.inc.php:930 #, php-format msgid "You should upgrade to %s %s or later." msgstr "" @@ -1802,47 +1842,47 @@ msgstr "" msgid "%B %d, %Y at %I:%M %p" msgstr "%B %d, %Y at %I:%M %p" -#: libraries/common.lib.php:1907 +#: libraries/common.lib.php:1911 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s రోజులు, %s గంటలు, %s నిమిషాలు మరియు %s క్షణాలు" # మొదటి అనువాదము -#: libraries/common.lib.php:2322 libraries/common.lib.php:2325 +#: libraries/common.lib.php:2326 libraries/common.lib.php:2329 #: libraries/display_tbl.lib.php:290 server_status.php:719 msgid "Begin" msgstr "మొదలు" # మొదటి అనువాదము -#: libraries/common.lib.php:2323 libraries/common.lib.php:2326 +#: libraries/common.lib.php:2327 libraries/common.lib.php:2330 #: libraries/display_tbl.lib.php:291 server_binlog.php:168 #: server_binlog.php:170 msgid "Previous" msgstr "క్రితము" -#: libraries/common.lib.php:2354 libraries/common.lib.php:2357 +#: libraries/common.lib.php:2358 libraries/common.lib.php:2361 #: libraries/display_tbl.lib.php:353 msgid "End" msgstr "ముగింపు" -#: libraries/common.lib.php:2430 +#: libraries/common.lib.php:2434 #, php-format msgid "Jump to database "%s"." msgstr "" -#: libraries/common.lib.php:2450 +#: libraries/common.lib.php:2454 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" -#: libraries/common.lib.php:2830 libraries/common.lib.php:2837 +#: libraries/common.lib.php:2834 libraries/common.lib.php:2841 #: libraries/db_links.inc.php:68 libraries/export/sql.php:25 -#: libraries/import/sql.php:18 libraries/server_links.inc.php:45 +#: libraries/import/sql.php:18 libraries/server_links.inc.php:46 #: libraries/tbl_links.inc.php:60 querywindow.php:99 test/theme.php:97 msgid "SQL" msgstr "" -#: libraries/common.lib.php:2839 libraries/db_links.inc.php:104 +#: libraries/common.lib.php:2843 libraries/db_links.inc.php:104 #: libraries/tbl_links.inc.php:95 libraries/tbl_links.inc.php:117 #: view_operations.php:89 msgid "Operations" @@ -1889,15 +1929,15 @@ msgstr "" msgid "Designer" msgstr "" -#: libraries/db_links.inc.php:98 libraries/server_links.inc.php:88 +#: libraries/db_links.inc.php:98 libraries/server_links.inc.php:89 #: libraries/tbl_links.inc.php:91 pmd_pdf.php:84 pmd_pdf.php:110 #: setup/frames/menu.inc.php:21 msgid "Import" msgstr "" -#: libraries/db_links.inc.php:111 libraries/server_links.inc.php:66 -#: server_privileges.php:111 server_privileges.php:1722 -#: server_privileges.php:2071 test/theme.php:117 +#: libraries/db_links.inc.php:111 libraries/server_links.inc.php:67 +#: server_privileges.php:112 server_privileges.php:1742 +#: server_privileges.php:2092 test/theme.php:117 msgid "Privileges" msgstr "" @@ -1916,7 +1956,7 @@ msgid "" msgstr "" #: libraries/db_structure.lib.php:69 server_databases.php:142 -#: tbl_printview.php:336 tbl_structure.php:682 +#: tbl_printview.php:336 tbl_structure.php:680 msgid "Overhead" msgstr "" @@ -1933,7 +1973,7 @@ msgstr "" msgid "(or the local MySQL server's socket is not correctly configured)" msgstr "" -#: libraries/dbi/mysql.dbi.lib.php:362 tbl_structure.php:608 +#: libraries/dbi/mysql.dbi.lib.php:362 tbl_structure.php:606 msgid "Details..." msgstr "వివరాలు..." @@ -1943,22 +1983,22 @@ msgid "Change password" msgstr "" #: libraries/display_change_password.lib.php:35 -#: libraries/replication_gui.lib.php:345 server_privileges.php:807 +#: libraries/replication_gui.lib.php:345 server_privileges.php:808 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:796 -#: server_privileges.php:800 server_privileges.php:811 -#: server_privileges.php:1538 server_synchronize.php:1175 +#: libraries/replication_gui.lib.php:349 server_privileges.php:797 +#: server_privileges.php:801 server_privileges.php:812 +#: server_privileges.php:1558 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:815 server_privileges.php:818 +#: server_privileges.php:816 server_privileges.php:819 msgid "Re-type" msgstr "" @@ -1971,12 +2011,12 @@ msgid "MySQL 4.0 compatible" msgstr "" #: libraries/display_change_password.lib.php:72 -#: libraries/replication_gui.lib.php:360 server_privileges.php:822 +#: libraries/replication_gui.lib.php:360 server_privileges.php:823 msgid "Generate Password" msgstr "" #: libraries/display_change_password.lib.php:75 -#: libraries/replication_gui.lib.php:363 server_privileges.php:825 +#: libraries/replication_gui.lib.php:363 server_privileges.php:826 msgid "Generate" msgstr "" @@ -1990,8 +2030,8 @@ msgstr "" msgid "Create" msgstr "సృష్టించు" -#: libraries/display_create_database.lib.php:40 server_privileges.php:113 -#: server_privileges.php:1427 server_replication.php:35 +#: libraries/display_create_database.lib.php:40 server_privileges.php:114 +#: server_privileges.php:1447 server_replication.php:35 msgid "No Privileges" msgstr "" @@ -2074,7 +2114,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:1875 server_processlist.php:75 +#: server_privileges.php:1895 server_processlist.php:75 msgid "None" msgstr "" @@ -2256,7 +2296,7 @@ msgstr "" #: libraries/import/docsql.php:34 libraries/import/ldi.php:47 #: libraries/import/ods.php:30 libraries/import/sql.php:20 #: libraries/import/xls.php:26 libraries/import/xlsx.php:26 -#: libraries/import/xml.php:25 tbl_select.php:267 tbl_structure.php:753 +#: libraries/import/xml.php:25 tbl_select.php:267 tbl_structure.php:751 msgid "Options" msgstr "" @@ -2333,7 +2373,7 @@ msgstr "" # మొదటి అనువాదము #: libraries/display_tbl.lib.php:2089 libraries/mult_submits.inc.php:113 #: querywindow.php:125 querywindow.php:129 querywindow.php:132 -#: tbl_structure.php:25 tbl_structure.php:150 tbl_structure.php:470 +#: tbl_structure.php:25 tbl_structure.php:150 tbl_structure.php:468 msgid "Change" msgstr "మార్చుము" @@ -2399,7 +2439,7 @@ msgstr "" #: libraries/engines/innodb.lib.php:194 server_databases.php:137 #: server_databases.php:305 server_status.php:525 server_status.php:586 -#: server_status.php:607 tbl_printview.php:351 tbl_structure.php:696 +#: server_status.php:607 tbl_printview.php:351 tbl_structure.php:694 msgid "Total" msgstr "మొత్తం" @@ -2646,7 +2686,7 @@ msgid "" msgstr "" #: libraries/export/codegen.php:37 setup/lib/messages.inc.php:88 -#: tbl_printview.php:376 tbl_structure.php:737 +#: tbl_printview.php:376 tbl_structure.php:735 msgid "Format" msgstr "" @@ -2710,8 +2750,8 @@ 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:576 server_replication.php:316 tbl_printview.php:317 -#: tbl_structure.php:665 +#: server_privileges.php:577 server_replication.php:316 tbl_printview.php:317 +#: tbl_structure.php:663 msgid "Data" msgstr "" @@ -2760,9 +2800,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:731 -#: server_privileges.php:734 server_privileges.php:790 -#: server_privileges.php:1537 server_privileges.php:2069 +#: libraries/replication_gui.lib.php:329 server_privileges.php:732 +#: server_privileges.php:735 server_privileges.php:791 +#: server_privileges.php:1557 server_privileges.php:2090 #: server_processlist.php:55 server_synchronize.php:1159 msgid "Host" msgstr "" @@ -2956,7 +2996,7 @@ msgstr "" msgid "Open new phpMyAdmin window" msgstr "" -#: libraries/header.inc.php:115 +#: libraries/header.inc.php:119 msgid "New table" msgstr "" @@ -3113,20 +3153,20 @@ 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 +#: tbl_structure.php:471 msgid "Primary" msgstr "" #: libraries/mult_submits.inc.php:98 libraries/tbl_properties.inc.php:116 #: libraries/tbl_properties.inc.php:525 tbl_printview.php:326 #: tbl_structure.php:31 tbl_structure.php:154 tbl_structure.php:158 -#: tbl_structure.php:475 tbl_structure.php:673 +#: tbl_structure.php:473 tbl_structure.php:671 msgid "Index" msgstr "" #: libraries/mult_submits.inc.php:108 libraries/tbl_properties.inc.php:531 #: tbl_structure.php:35 tbl_structure.php:156 tbl_structure.php:160 -#: tbl_structure.php:478 +#: tbl_structure.php:476 msgid "Fulltext" msgstr "" @@ -3439,8 +3479,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:711 -#: server_privileges.php:714 server_privileges.php:721 +#: libraries/replication_gui.lib.php:259 server_privileges.php:712 +#: server_privileges.php:715 server_privileges.php:722 #: server_synchronize.php:1171 msgid "User name" msgstr "వాడుకరి పేరు" @@ -3464,7 +3504,7 @@ msgstr "" #: 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 +#: tbl_structure.php:727 msgid "Value" msgstr "విలువ" @@ -3483,34 +3523,34 @@ msgid "Add slave replication user" msgstr "" # మొదటి అనువాదము -#: libraries/replication_gui.lib.php:254 server_privileges.php:716 +#: libraries/replication_gui.lib.php:254 server_privileges.php:717 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:717 -#: server_privileges.php:784 server_privileges.php:808 -#: server_privileges.php:1928 server_privileges.php:1958 +#: libraries/replication_gui.lib.php:346 server_privileges.php:718 +#: server_privileges.php:785 server_privileges.php:809 +#: server_privileges.php:1948 server_privileges.php:1978 msgid "Use text field" msgstr "" -#: libraries/replication_gui.lib.php:302 server_privileges.php:764 +#: libraries/replication_gui.lib.php:302 server_privileges.php:765 msgid "Any host" msgstr "" -#: libraries/replication_gui.lib.php:306 server_privileges.php:768 +#: libraries/replication_gui.lib.php:306 server_privileges.php:769 msgid "Local" msgstr "స్థానిక" -#: libraries/replication_gui.lib.php:312 server_privileges.php:773 +#: libraries/replication_gui.lib.php:312 server_privileges.php:774 msgid "This Host" msgstr "" -#: libraries/replication_gui.lib.php:318 server_privileges.php:779 +#: libraries/replication_gui.lib.php:318 server_privileges.php:780 msgid "Use Host Table" msgstr "" -#: libraries/replication_gui.lib.php:331 server_privileges.php:792 +#: libraries/replication_gui.lib.php:331 server_privileges.php:793 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -3544,29 +3584,29 @@ msgstr "" msgid "Servers" msgstr "" -#: libraries/server_links.inc.php:53 server_engines.php:112 +#: libraries/server_links.inc.php:54 server_engines.php:112 #: server_engines.php:116 server_status.php:415 test/theme.php:105 msgid "Variables" msgstr "" -#: libraries/server_links.inc.php:57 test/theme.php:109 +#: libraries/server_links.inc.php:58 test/theme.php:109 msgid "Charsets" msgstr "" -#: libraries/server_links.inc.php:61 test/theme.php:113 +#: libraries/server_links.inc.php:62 test/theme.php:113 msgid "Engines" msgstr "" -#: libraries/server_links.inc.php:76 server_binlog.php:110 +#: libraries/server_links.inc.php:77 server_binlog.php:110 #: server_status.php:364 test/theme.php:121 msgid "Binary log" msgstr "" -#: libraries/server_links.inc.php:80 +#: libraries/server_links.inc.php:81 msgid "Processes" msgstr "" -#: libraries/server_links.inc.php:92 server_synchronize.php:1092 +#: libraries/server_links.inc.php:93 server_synchronize.php:1092 #: server_synchronize.php:1100 msgid "Synchronize" msgstr "" @@ -3782,14 +3822,14 @@ msgid "Save" msgstr "భద్రపరచు" # మొదటి అనువాదము -#: libraries/tbl_properties.inc.php:780 tbl_structure.php:542 +#: libraries/tbl_properties.inc.php:780 tbl_structure.php:540 #, fuzzy, php-format #| msgid "Add into comments" msgid "Add %s column(s)" msgstr "స్పందనలకు చేర్చు" # మొదటి అనువాదము -#: libraries/tbl_properties.inc.php:784 tbl_structure.php:536 +#: libraries/tbl_properties.inc.php:784 tbl_structure.php:534 #, fuzzy #| msgid "You have added a new user." msgid "You have to add at least one column." @@ -3923,8 +3963,8 @@ msgstr "" msgid "Protocol version" msgstr "" -#: main.php:189 server_privileges.php:1389 server_privileges.php:1536 -#: server_privileges.php:1650 server_privileges.php:2068 +#: main.php:189 server_privileges.php:1406 server_privileges.php:1556 +#: server_privileges.php:1670 server_privileges.php:2089 #: server_processlist.php:54 msgid "User" msgstr "వాడుకరి" @@ -4347,325 +4387,325 @@ msgstr "" msgid "View dump (schema) of databases" msgstr "" -#: server_privileges.php:24 server_privileges.php:266 +#: server_privileges.php:25 server_privileges.php:267 msgid "Includes all privileges except GRANT." msgstr "" -#: server_privileges.php:25 server_privileges.php:192 -#: server_privileges.php:515 +#: server_privileges.php:26 server_privileges.php:193 +#: server_privileges.php:516 msgid "Allows altering the structure of existing tables." msgstr "" -#: server_privileges.php:26 server_privileges.php:208 -#: server_privileges.php:521 +#: server_privileges.php:27 server_privileges.php:209 +#: server_privileges.php:522 msgid "Allows altering and dropping stored routines." msgstr "" -#: server_privileges.php:27 server_privileges.php:184 -#: server_privileges.php:514 +#: server_privileges.php:28 server_privileges.php:185 +#: server_privileges.php:515 msgid "Allows creating new databases and tables." msgstr "" -#: server_privileges.php:28 server_privileges.php:207 -#: server_privileges.php:520 +#: server_privileges.php:29 server_privileges.php:208 +#: server_privileges.php:521 msgid "Allows creating stored routines." msgstr "" -#: server_privileges.php:29 server_privileges.php:514 +#: server_privileges.php:30 server_privileges.php:515 msgid "Allows creating new tables." msgstr "" -#: server_privileges.php:30 server_privileges.php:195 -#: server_privileges.php:518 +#: server_privileges.php:31 server_privileges.php:196 +#: server_privileges.php:519 msgid "Allows creating temporary tables." msgstr "" -#: server_privileges.php:31 server_privileges.php:209 -#: server_privileges.php:554 +#: server_privileges.php:32 server_privileges.php:210 +#: server_privileges.php:555 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 +#: server_privileges.php:33 server_privileges.php:200 +#: server_privileges.php:204 server_privileges.php:527 +#: server_privileges.php:531 msgid "Allows creating new views." msgstr "" -#: server_privileges.php:33 server_privileges.php:183 -#: server_privileges.php:506 +#: server_privileges.php:34 server_privileges.php:184 +#: server_privileges.php:507 msgid "Allows deleting data." msgstr "" -#: server_privileges.php:34 server_privileges.php:185 -#: server_privileges.php:517 +#: server_privileges.php:35 server_privileges.php:186 +#: server_privileges.php:518 msgid "Allows dropping databases and tables." msgstr "" -#: server_privileges.php:35 server_privileges.php:517 +#: server_privileges.php:36 server_privileges.php:518 msgid "Allows dropping tables." msgstr "" -#: server_privileges.php:36 server_privileges.php:200 -#: server_privileges.php:534 +#: server_privileges.php:37 server_privileges.php:201 +#: server_privileges.php:535 msgid "Allows to set up events for the event scheduler" msgstr "" -#: server_privileges.php:37 server_privileges.php:210 -#: server_privileges.php:522 +#: server_privileges.php:38 server_privileges.php:211 +#: server_privileges.php:523 msgid "Allows executing stored routines." msgstr "" -#: server_privileges.php:38 server_privileges.php:189 -#: server_privileges.php:509 +#: server_privileges.php:39 server_privileges.php:190 +#: server_privileges.php:510 msgid "Allows importing data from and exporting data into files." msgstr "" -#: server_privileges.php:39 server_privileges.php:540 +#: server_privileges.php:40 server_privileges.php:541 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" -#: server_privileges.php:40 server_privileges.php:191 -#: server_privileges.php:516 +#: server_privileges.php:41 server_privileges.php:192 +#: server_privileges.php:517 msgid "Allows creating and dropping indexes." msgstr "" -#: server_privileges.php:41 server_privileges.php:181 -#: server_privileges.php:442 server_privileges.php:504 +#: server_privileges.php:42 server_privileges.php:182 +#: server_privileges.php:443 server_privileges.php:505 msgid "Allows inserting and replacing data." msgstr "" -#: server_privileges.php:42 server_privileges.php:196 -#: server_privileges.php:549 +#: server_privileges.php:43 server_privileges.php:197 +#: server_privileges.php:550 msgid "Allows locking tables for the current thread." msgstr "" -#: server_privileges.php:43 server_privileges.php:646 -#: server_privileges.php:648 +#: server_privileges.php:44 server_privileges.php:647 +#: server_privileges.php:649 msgid "Limits the number of new connections the user may open per hour." msgstr "" -#: server_privileges.php:44 server_privileges.php:634 -#: server_privileges.php:636 +#: server_privileges.php:45 server_privileges.php:635 +#: server_privileges.php:637 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" -#: server_privileges.php:45 server_privileges.php:640 -#: server_privileges.php:642 +#: server_privileges.php:46 server_privileges.php:641 +#: server_privileges.php:643 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." msgstr "" -#: server_privileges.php:46 server_privileges.php:652 -#: server_privileges.php:654 +#: server_privileges.php:47 server_privileges.php:653 +#: server_privileges.php:655 msgid "Limits the number of simultaneous connections the user may have." msgstr "" -#: server_privileges.php:47 server_privileges.php:188 -#: server_privileges.php:544 +#: server_privileges.php:48 server_privileges.php:189 +#: server_privileges.php:545 msgid "Allows viewing processes of all users" msgstr "" -#: server_privileges.php:48 server_privileges.php:190 -#: server_privileges.php:448 server_privileges.php:550 +#: server_privileges.php:49 server_privileges.php:191 +#: server_privileges.php:449 server_privileges.php:551 msgid "Has no effect in this MySQL version." msgstr "" -#: server_privileges.php:49 server_privileges.php:186 -#: server_privileges.php:545 +#: server_privileges.php:50 server_privileges.php:187 +#: server_privileges.php:546 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" -#: server_privileges.php:50 server_privileges.php:198 -#: server_privileges.php:552 +#: server_privileges.php:51 server_privileges.php:199 +#: server_privileges.php:553 msgid "Allows the user to ask where the slaves / masters are." msgstr "" -#: server_privileges.php:51 server_privileges.php:197 -#: server_privileges.php:553 +#: server_privileges.php:52 server_privileges.php:198 +#: server_privileges.php:554 msgid "Needed for the replication slaves." msgstr "" -#: server_privileges.php:52 server_privileges.php:180 -#: server_privileges.php:439 server_privileges.php:503 +#: server_privileges.php:53 server_privileges.php:181 +#: server_privileges.php:440 server_privileges.php:504 msgid "Allows reading data." msgstr "" -#: server_privileges.php:53 server_privileges.php:193 -#: server_privileges.php:547 +#: server_privileges.php:54 server_privileges.php:194 +#: server_privileges.php:548 msgid "Gives access to the complete list of databases." msgstr "" -#: server_privileges.php:54 server_privileges.php:204 -#: server_privileges.php:206 server_privileges.php:519 +#: server_privileges.php:55 server_privileges.php:205 +#: server_privileges.php:207 server_privileges.php:520 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "" -#: server_privileges.php:55 server_privileges.php:187 -#: server_privileges.php:546 +#: server_privileges.php:56 server_privileges.php:188 +#: server_privileges.php:547 msgid "Allows shutting down the server." msgstr "" -#: server_privileges.php:56 server_privileges.php:194 -#: server_privileges.php:543 +#: server_privileges.php:57 server_privileges.php:195 +#: server_privileges.php:544 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " "killing threads of other users." msgstr "" -#: server_privileges.php:57 server_privileges.php:201 -#: server_privileges.php:535 +#: server_privileges.php:58 server_privileges.php:202 +#: server_privileges.php:536 msgid "Allows creating and dropping triggers" msgstr "" -#: server_privileges.php:58 server_privileges.php:182 -#: server_privileges.php:445 server_privileges.php:505 +#: server_privileges.php:59 server_privileges.php:183 +#: server_privileges.php:446 server_privileges.php:506 msgid "Allows changing data." msgstr "" -#: server_privileges.php:59 server_privileges.php:260 +#: server_privileges.php:60 server_privileges.php:261 msgid "No privileges." msgstr "" -#: server_privileges.php:302 server_privileges.php:303 +#: server_privileges.php:303 server_privileges.php:304 #, fuzzy #| msgid "No" msgctxt "None privileges" msgid "None" msgstr "కాదు" -#: server_privileges.php:431 server_privileges.php:566 -#: server_privileges.php:1718 server_privileges.php:1724 +#: server_privileges.php:432 server_privileges.php:567 +#: server_privileges.php:1738 server_privileges.php:1744 msgid "Table-specific privileges" msgstr "" -#: server_privileges.php:432 server_privileges.php:574 -#: server_privileges.php:1540 +#: server_privileges.php:433 server_privileges.php:575 +#: server_privileges.php:1560 msgid " Note: MySQL privilege names are expressed in English " msgstr "" -#: server_privileges.php:563 server_privileges.php:1539 +#: server_privileges.php:564 server_privileges.php:1559 msgid "Global privileges" msgstr "" -#: server_privileges.php:565 server_privileges.php:1718 +#: server_privileges.php:566 server_privileges.php:1738 msgid "Database-specific privileges" msgstr "" -#: server_privileges.php:610 +#: server_privileges.php:611 msgid "Administration" msgstr "పరిపాలన" -#: server_privileges.php:630 +#: server_privileges.php:631 msgid "Resource limits" msgstr "" -#: server_privileges.php:631 +#: server_privileges.php:632 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "" -#: server_privileges.php:708 +#: server_privileges.php:709 msgid "Login Information" msgstr "ప్రవేశపు సమాచారం" -#: server_privileges.php:802 +#: server_privileges.php:803 msgid "Do not change the password" msgstr "" -#: server_privileges.php:843 server_privileges.php:2205 +#: server_privileges.php:844 server_privileges.php:2226 msgid "No user found." msgstr "" -#: server_privileges.php:887 +#: server_privileges.php:888 #, php-format msgid "The user %s already exists!" msgstr "" # మొదటి అనువాదము -#: server_privileges.php:970 +#: server_privileges.php:971 msgid "You have added a new user." msgstr "మీరు క్రొత్త వినియోగదారుని చేర్చారు" -#: server_privileges.php:1191 +#: server_privileges.php:1196 #, php-format msgid "You have updated the privileges for %s." msgstr "" -#: server_privileges.php:1215 +#: server_privileges.php:1220 #, php-format msgid "You have revoked the privileges for %s" msgstr "" -#: server_privileges.php:1251 +#: server_privileges.php:1256 #, php-format msgid "The password for %s was changed successfully." msgstr "" -#: server_privileges.php:1271 +#: server_privileges.php:1276 #, php-format msgid "Deleting %s" msgstr "" -#: server_privileges.php:1282 +#: server_privileges.php:1287 msgid "No users selected for deleting!" msgstr "" -#: server_privileges.php:1285 +#: server_privileges.php:1290 msgid "Reloading the privileges" msgstr "" -#: server_privileges.php:1300 +#: server_privileges.php:1305 msgid "The selected users have been deleted successfully." msgstr "" -#: server_privileges.php:1335 +#: server_privileges.php:1344 msgid "The privileges were reloaded successfully." msgstr "" -#: server_privileges.php:1363 server_privileges.php:1649 +#: server_privileges.php:1380 server_privileges.php:1669 msgid "Edit Privileges" msgstr "" -#: server_privileges.php:1372 +#: server_privileges.php:1389 msgid "Revoke" msgstr "" -#: server_privileges.php:1404 +#: server_privileges.php:1424 msgid "User overview" msgstr "" -#: server_privileges.php:1541 server_privileges.php:1723 -#: server_privileges.php:2072 +#: server_privileges.php:1561 server_privileges.php:1743 +#: server_privileges.php:2093 msgid "Grant" msgstr "" # మొదటి అనువాదము -#: server_privileges.php:1560 server_privileges.php:2162 +#: server_privileges.php:1580 server_privileges.php:2183 msgid "Any" msgstr "ఏదైనను" # మొదటి అనువాదము -#: server_privileges.php:1609 server_privileges.php:1633 -#: server_privileges.php:2027 server_privileges.php:2216 +#: server_privileges.php:1629 server_privileges.php:1653 +#: server_privileges.php:2048 server_privileges.php:2237 msgid "Add a new User" msgstr "క్రొత్త వినియోగదారుని చేర్చు" -#: server_privileges.php:1614 +#: server_privileges.php:1634 msgid "Remove selected users" msgstr "" -#: server_privileges.php:1617 +#: server_privileges.php:1637 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 +#: server_privileges.php:1638 server_privileges.php:1639 +#: server_privileges.php:1640 msgid "Drop the databases that have the same names as the users." msgstr "" -#: server_privileges.php:1636 +#: server_privileges.php:1656 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -4674,92 +4714,92 @@ msgid "" "sreload the privileges%s before you continue." msgstr "" -#: server_privileges.php:1684 +#: server_privileges.php:1704 msgid "The selected user was not found in the privilege table." msgstr "" -#: server_privileges.php:1724 +#: server_privileges.php:1744 msgid "Column-specific privileges" msgstr "" -#: server_privileges.php:1925 +#: server_privileges.php:1945 msgid "Add privileges on the following database" msgstr "" -#: server_privileges.php:1943 +#: server_privileges.php:1963 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" -#: server_privileges.php:1946 +#: server_privileges.php:1966 msgid "Add privileges on the following table" msgstr "" -#: server_privileges.php:2003 +#: server_privileges.php:2023 msgid "Change Login Information / Copy User" msgstr "" -#: server_privileges.php:2006 +#: server_privileges.php:2026 msgid "Create a new user with the same privileges and ..." msgstr "" # మొదటి అనువాదము -#: server_privileges.php:2008 +#: server_privileges.php:2028 msgid "... keep the old one." msgstr "... పాతదే ఉంచుము" -#: server_privileges.php:2009 +#: server_privileges.php:2029 msgid " ... delete the old one from the user tables." msgstr "" -#: server_privileges.php:2010 +#: server_privileges.php:2030 msgid "" " ... revoke all active privileges from the old one and delete it afterwards." msgstr "" -#: server_privileges.php:2011 +#: server_privileges.php:2031 msgid "" " ... delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" -#: server_privileges.php:2033 +#: server_privileges.php:2054 msgid "Database for user" msgstr "" -#: server_privileges.php:2037 +#: server_privileges.php:2058 #, fuzzy #| msgid "No" msgctxt "Create none database for user" msgid "None" msgstr "కాదు" -#: server_privileges.php:2038 +#: server_privileges.php:2059 msgid "Create database with same name and grant all privileges" msgstr "" -#: server_privileges.php:2039 +#: server_privileges.php:2060 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "" -#: server_privileges.php:2042 +#: server_privileges.php:2063 #, php-format msgid "Grant all privileges on database "%s"" msgstr "" -#: server_privileges.php:2065 +#: server_privileges.php:2086 #, php-format msgid "Users having access to "%s"" msgstr "" -#: server_privileges.php:2173 +#: server_privileges.php:2194 msgid "global" msgstr "" -#: server_privileges.php:2175 +#: server_privileges.php:2196 msgid "database-specific" msgstr "" -#: server_privileges.php:2177 +#: server_privileges.php:2198 msgid "wildcard" msgstr "" @@ -7409,6 +7449,11 @@ msgstr "" msgid "Show insert query" msgstr "" +# మొదటి అనువాదము +#: tbl_change.php:1143 +msgid "and then" +msgstr "మరియు తరువాత" + # మొదటి అనువాదము #: tbl_change.php:1147 msgid "Go back to previous page" @@ -7489,7 +7534,7 @@ msgstr "" msgid "Add to index  %s column(s)" msgstr "" -#: tbl_indexes.php:256 tbl_structure.php:589 tbl_structure.php:600 +#: tbl_indexes.php:256 tbl_structure.php:587 tbl_structure.php:598 msgid "Column count has to be larger than zero." msgstr "" @@ -7602,39 +7647,39 @@ msgstr "" msgid "Show tables" msgstr "" -#: tbl_printview.php:310 tbl_structure.php:656 +#: tbl_printview.php:310 tbl_structure.php:654 msgid "Space usage" msgstr "" -#: tbl_printview.php:314 tbl_structure.php:660 +#: tbl_printview.php:314 tbl_structure.php:658 msgid "Usage" msgstr "వాడుక" -#: tbl_printview.php:341 tbl_structure.php:687 +#: tbl_printview.php:341 tbl_structure.php:685 msgid "Effective" msgstr "" -#: tbl_printview.php:366 tbl_structure.php:725 +#: tbl_printview.php:366 tbl_structure.php:723 msgid "Row Statistics" msgstr "వరుసల గణాంకాలు" -#: tbl_printview.php:369 tbl_structure.php:728 +#: tbl_printview.php:369 tbl_structure.php:726 msgid "Statements" msgstr "" -#: tbl_printview.php:380 tbl_structure.php:740 +#: tbl_printview.php:380 tbl_structure.php:738 msgid "static" msgstr "" -#: tbl_printview.php:382 tbl_structure.php:742 +#: tbl_printview.php:382 tbl_structure.php:740 msgid "dynamic" msgstr "" -#: tbl_printview.php:404 tbl_structure.php:785 +#: tbl_printview.php:404 tbl_structure.php:783 msgid "Row length" msgstr "" -#: tbl_printview.php:414 tbl_structure.php:793 +#: tbl_printview.php:414 tbl_structure.php:791 msgid " Row size " msgstr "" @@ -7703,51 +7748,51 @@ msgstr "కాదు" msgid "Column %s has been dropped" msgstr "" -#: tbl_structure.php:385 +#: tbl_structure.php:384 #, php-format msgid "A primary key has been added on %s" msgstr "" -#: tbl_structure.php:400 tbl_structure.php:414 tbl_structure.php:428 +#: tbl_structure.php:398 tbl_structure.php:412 tbl_structure.php:426 #, php-format msgid "An index has been added on %s" msgstr "" -#: tbl_structure.php:506 tbl_structure.php:508 +#: tbl_structure.php:504 tbl_structure.php:506 msgid "Relation view" msgstr "" -#: tbl_structure.php:515 tbl_structure.php:517 +#: tbl_structure.php:513 tbl_structure.php:515 msgid "Propose table structure" msgstr "" # మొదటి అనువాదము -#: tbl_structure.php:540 +#: tbl_structure.php:538 #, fuzzy #| msgid "Add into comments" msgid "Add column" msgstr "స్పందనలకు చేర్చు" -#: tbl_structure.php:554 +#: tbl_structure.php:552 msgid "At End of Table" msgstr "" -#: tbl_structure.php:555 +#: tbl_structure.php:553 msgid "At Beginning of Table" msgstr "" # మొదటి అనువాదము -#: tbl_structure.php:556 +#: tbl_structure.php:554 #, php-format msgid "After %s" msgstr "%s మార్లు తరువాత" -#: tbl_structure.php:594 +#: tbl_structure.php:592 #, php-format msgid "Create an index on  %s columns" msgstr "" -#: tbl_structure.php:756 +#: tbl_structure.php:754 msgid "partitioned" msgstr "" diff --git a/po/th.po b/po/th.po index a5a690c56..2ee9070ec 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-13 09:03-0400\n" +"POT-Creation-Date: 2010-06-22 00:55+0530\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:1514 +#: libraries/display_tbl.lib.php:417 server_privileges.php:1534 msgid "Show all" msgstr "แสดงทั้งหมด" -#: browse_foreigners.php:82 libraries/common.lib.php:2313 +#: browse_foreigners.php:82 libraries/common.lib.php:2317 #: 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,18 +34,18 @@ 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:2831 -#: libraries/common.lib.php:2838 libraries/db_links.inc.php:75 +#: db_structure.php:106 libraries/common.lib.php:2835 +#: libraries/common.lib.php:2842 libraries/db_links.inc.php:75 #: libraries/tbl_links.inc.php:63 msgid "Search" msgstr "ค้นหา" -#: browse_foreigners.php:153 db_operations.php:385 db_operations.php:429 -#: db_operations.php:499 db_operations.php:609 db_search.php:362 -#: db_structure.php:567 js/messages.php:48 libraries/Config.class.php:1046 +#: browse_foreigners.php:153 db_operations.php:394 db_operations.php:438 +#: db_operations.php:508 db_operations.php:618 db_search.php:362 +#: db_structure.php:565 js/messages.php:53 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:1335 libraries/common.lib.php:2288 +#: libraries/common.lib.php:1335 libraries/common.lib.php:2292 #: 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,15 +56,15 @@ 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:664 server_privileges.php:1624 -#: server_privileges.php:1971 server_privileges.php:2018 -#: server_privileges.php:2057 server_replication.php:235 +#: server_privileges.php:665 server_privileges.php:1644 +#: server_privileges.php:1991 server_privileges.php:2038 +#: server_privileges.php:2078 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 #: tbl_operations.php:302 tbl_operations.php:499 tbl_operations.php:561 -#: tbl_operations.php:681 tbl_select.php:327 tbl_structure.php:562 -#: tbl_structure.php:597 tbl_tracking.php:395 tbl_tracking.php:512 +#: tbl_operations.php:681 tbl_select.php:327 tbl_structure.php:560 +#: tbl_structure.php:595 tbl_tracking.php:395 tbl_tracking.php:512 #: view_create.php:182 view_operations.php:101 msgid "Go" msgstr "ลงมือ" @@ -90,7 +90,7 @@ msgstr "ใช้ค่านี้" msgid "Database %1$s has been created." msgstr "โยนฐานข้อมูล %s ทิ้งไปเรียบร้อยแล้ว" -#: db_datadict.php:49 db_operations.php:378 +#: db_datadict.php:49 db_operations.php:387 msgid "Database comment: " msgstr "หมายเหตุของฐานข้อมูล: " @@ -117,10 +117,10 @@ 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:2070 +#: pdf_schema.php:1263 pdf_schema.php:1284 server_privileges.php:2091 #: 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 +#: tbl_structure.php:657 tbl_tracking.php:274 tbl_tracking.php:321 msgid "Type" msgstr "ชนิด" @@ -133,7 +133,7 @@ msgstr "ชนิด" msgid "Null" msgstr "ว่างเปล่า (null)" -#: db_datadict.php:178 db_structure.php:501 libraries/export/htmlword.php:247 +#: db_datadict.php:178 db_structure.php:499 libraries/export/htmlword.php:247 #: libraries/export/latex.php:360 libraries/export/odt.php:303 #: libraries/export/texytext.php:236 libraries/tbl_properties.inc.php:106 #: pdf_schema.php:1266 pdf_schema.php:1287 tbl_printview.php:146 @@ -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: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 +#: pdf_schema.php:1344 server_privileges.php:1588 server_privileges.php:1599 +#: server_privileges.php:1909 server_privileges.php:1914 +#: server_privileges.php:2208 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:1565 -#: server_privileges.php:1579 server_privileges.php:1889 -#: server_privileges.php:1892 server_privileges.php:2187 sql.php:193 +#: server_databases.php:64 server_privileges.php:1585 +#: server_privileges.php:1599 server_privileges.php:1909 +#: server_privileges.php:1912 server_privileges.php:2208 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" @@ -206,129 +206,125 @@ msgstr "เลือกทั้งหมด" msgid "Unselect All" msgstr "ไม่เลือกเลย" -#: db_operations.php:38 tbl_create.php:54 +#: db_operations.php:43 tbl_create.php:54 #, fuzzy msgid "The database name is empty!" msgstr "ชื่อตารางยังว่างอยู่!" -#: db_operations.php:236 +#: db_operations.php:241 #, fuzzy, php-format msgid "Database %s has been renamed to %s" msgstr "ตาราง %s ได้ถูกเปลี่ยนชื่อเป็น %s" -#: db_operations.php:240 +#: db_operations.php:245 #, fuzzy, php-format msgid "Database %s has been copied to %s" msgstr "คัดลอกตาราง %s ไปเก็บในชื่อ %s เรียบร้อยแล้ว." -#: db_operations.php:412 +#: db_operations.php:421 msgid "Rename database to" msgstr "เปลี่ยนชื่อฐานข้อมูลเป็น" -#: db_operations.php:417 server_processlist.php:57 +#: db_operations.php:426 server_processlist.php:57 msgid "Command" msgstr "คำสั่ง" -#: db_operations.php:429 tbl_change.php:1143 -msgid "and then" -msgstr "" - -#: db_operations.php:455 +#: db_operations.php:464 #, fuzzy msgid "Copy database to" msgstr "เปลี่ยนชื่อฐานข้อมูลเป็น" -#: db_operations.php:462 tbl_operations.php:528 tbl_tracking.php:388 +#: db_operations.php:471 tbl_operations.php:528 tbl_tracking.php:388 msgid "Structure only" msgstr "เฉพาะโครงสร้าง" -#: db_operations.php:463 tbl_operations.php:529 tbl_tracking.php:390 +#: db_operations.php:472 tbl_operations.php:529 tbl_tracking.php:390 msgid "Structure and data" msgstr "ทั้งโครงสร้างและข้อมูล" -#: db_operations.php:464 tbl_operations.php:530 tbl_tracking.php:389 +#: db_operations.php:473 tbl_operations.php:530 tbl_tracking.php:389 msgid "Data only" msgstr "เฉพาะข้อมูล" -#: db_operations.php:472 +#: db_operations.php:481 msgid "CREATE DATABASE before copying" msgstr "" -#: db_operations.php:475 libraries/export/sql.php:52 +#: db_operations.php:484 libraries/export/sql.php:52 #: libraries/export/sql.php:74 libraries/export/sql.php:76 #: libraries/export/sql.php:82 tbl_operations.php:536 #, php-format msgid "Add %s" msgstr "" -#: db_operations.php:479 libraries/export/sql.php:78 tbl_operations.php:299 +#: db_operations.php:488 libraries/export/sql.php:78 tbl_operations.php:299 #: tbl_operations.php:538 msgid "Add AUTO_INCREMENT value" msgstr "เพิ่มค่า AUTO_INCREMENT" -#: db_operations.php:483 tbl_operations.php:545 +#: db_operations.php:492 tbl_operations.php:545 msgid "Add constraints" msgstr "" -#: db_operations.php:496 +#: db_operations.php:505 #, fuzzy msgid "Switch to copied database" msgstr "สลับไปที่ตารางที่ถูกทำสำเนาไว้" -#: db_operations.php:537 +#: db_operations.php:546 msgid "BLOB Repository" msgstr "" -#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1352 -#: libraries/server_links.inc.php:49 server_processlist.php:59 +#: db_operations.php:549 db_tracking.php:76 libraries/common.lib.php:1352 +#: libraries/server_links.inc.php:50 server_processlist.php:59 #: tbl_tracking.php:596 test/theme.php:101 msgid "Status" msgstr "สถานะ" -#: db_operations.php:548 +#: db_operations.php:557 #, fuzzy #| msgid "Enabled" msgctxt "BLOB repository" msgid "Enabled" msgstr "เปิดใช้อยู่" -#: db_operations.php:552 +#: db_operations.php:561 #, fuzzy msgid "Disable" msgstr "ระงับการใช้อยู่" -#: db_operations.php:562 +#: db_operations.php:571 msgid "Damaged" msgstr "" -#: db_operations.php:566 +#: db_operations.php:575 #, fuzzy msgctxt "BLOB repository" msgid "Repair" msgstr "ซ่อมแซมตาราง" -#: db_operations.php:574 +#: db_operations.php:583 #, fuzzy #| msgid "Disabled" msgctxt "BLOB repository" msgid "Disabled" msgstr "ระงับการใช้อยู่" -#: db_operations.php:578 +#: db_operations.php:587 #, fuzzy msgid "Enable" msgstr "เปิดใช้อยู่" -#: db_operations.php:602 libraries/Index.class.php:448 +#: db_operations.php:611 libraries/Index.class.php:448 #: libraries/db_structure.lib.php:62 libraries/mysql_charsets.lib.php:107 #: libraries/tbl_properties.inc.php:107 libraries/tbl_properties.inc.php:730 #: server_collations.php:54 server_collations.php:66 server_databases.php:111 #: tbl_operations.php:363 tbl_select.php:137 tbl_structure.php:179 -#: tbl_structure.php:767 tbl_tracking.php:275 tbl_tracking.php:326 +#: tbl_structure.php:765 tbl_tracking.php:275 tbl_tracking.php:326 msgid "Collation" msgstr "การเรียงลำดับ" -#: db_operations.php:615 main.php:316 pdf_schema.php:34 +#: db_operations.php:624 main.php:316 pdf_schema.php:34 #, php-format msgid "" "The additional features for working with linked tables have been " @@ -336,14 +332,14 @@ msgid "" msgstr "" "ความสามารถเพิ่มเติมสำหรับ linked Tables ได้ถูกระงับเอาไว้ ตามเหตุผลที่แจ้งไว้ใน %shere%s" -#: db_operations.php:648 +#: db_operations.php:657 msgid "Edit PDF Pages" 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:1665 -#: server_privileges.php:1721 server_privileges.php:1985 +#: libraries/header.inc.php:130 pdf_pages.php:424 server_privileges.php:1685 +#: server_privileges.php:1741 server_privileges.php:2005 #: server_synchronize.php:423 server_synchronize.php:866 tbl_tracking.php:592 #: test/theme.php:75 msgid "Table" @@ -352,7 +348,7 @@ msgstr "ตาราง " #: db_printview.php:105 libraries/db_structure.lib.php:56 #: libraries/header_printview.inc.php:63 libraries/import.lib.php:146 #: navigation.php:638 navigation.php:660 server_databases.php:122 -#: tbl_printview.php:394 tbl_structure.php:365 tbl_structure.php:777 +#: tbl_printview.php:394 tbl_structure.php:365 tbl_structure.php:775 msgid "Rows" msgstr "แถว" @@ -360,30 +356,30 @@ msgstr "แถว" msgid "Size" msgstr "ขนาด" -#: db_printview.php:162 db_structure.php:457 libraries/export/sql.php:559 +#: db_printview.php:162 db_structure.php:455 libraries/export/sql.php:559 #: libraries/export/sql.php:899 msgid "in use" msgstr "ใช้อยู่" #: db_printview.php:187 libraries/db_info.inc.php:88 #: libraries/export/sql.php:514 pdf_schema.php:1241 tbl_printview.php:434 -#: tbl_structure.php:809 +#: tbl_structure.php:807 msgid "Creation" msgstr "สร้างเมื่อ" #: db_printview.php:196 libraries/db_info.inc.php:93 #: libraries/export/sql.php:519 pdf_schema.php:1246 tbl_printview.php:444 -#: tbl_structure.php:817 +#: tbl_structure.php:815 msgid "Last update" msgstr "ปรับปรุงครั้งสุดท้ายเมื่อ" #: db_printview.php:205 libraries/db_info.inc.php:98 #: libraries/export/sql.php:524 pdf_schema.php:1251 tbl_printview.php:454 -#: tbl_structure.php:825 +#: tbl_structure.php:823 msgid "Last check" msgstr "ตรวจสอบครั้งสุดท้ายเมื่อ" -#: db_printview.php:222 db_structure.php:480 +#: db_printview.php:222 db_structure.php:478 #, fuzzy, php-format #| msgid "%s table(s)" msgid "%s table" @@ -444,7 +440,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:297 tbl_change.php:1031 tbl_indexes.php:250 +#: server_privileges.php:298 tbl_change.php:1031 tbl_indexes.php:250 #: tbl_select.php:288 msgid "Or" msgstr "หรือ" @@ -517,9 +513,9 @@ 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:2833 +#: db_structure.php:105 libraries/common.lib.php:2837 #: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50 -#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:467 +#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:465 msgid "Browse" msgstr "เปิดดู" @@ -564,36 +560,36 @@ 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:2832 libraries/sql_query_form.lib.php:334 +#: libraries/common.lib.php:2836 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:2829 libraries/common.lib.php:2836 +#: libraries/common.lib.php:2833 libraries/common.lib.php:2840 #: 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:1106 #: libraries/tbl_links.inc.php:56 pmd_general.php:134 -#: server_privileges.php:593 server_replication.php:315 tbl_tracking.php:269 +#: server_privileges.php:594 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:1656 +#: db_structure.php:543 db_structure.php:544 db_tracking.php:91 +#: libraries/Index.class.php:483 libraries/common.lib.php:1657 #: 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 -#: tbl_structure.php:152 tbl_structure.php:471 +#: tbl_structure.php:152 tbl_structure.php:469 msgid "Drop" 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:1655 +#: db_structure.php:541 db_structure.php:542 libraries/common.lib.php:1656 #: libraries/mult_submits.inc.php:39 libraries/tbl_links.inc.php:105 msgid "Empty" msgstr "ลบข้อมูล" @@ -603,112 +599,112 @@ msgstr "ลบข้อมูล" msgid "Table %s has been emptied" msgstr "ลบข้อมูลในตาราง %s เรียบร้อยแล้ว" -#: db_structure.php:326 libraries/tbl_links.inc.php:133 +#: db_structure.php:325 libraries/tbl_links.inc.php:133 #, fuzzy, php-format msgid "View %s has been dropped" msgstr "โยนฟิลด์ %s ทิ้งไปเรียบร้อยแล้ว" -#: db_structure.php:326 libraries/tbl_links.inc.php:133 +#: db_structure.php:325 libraries/tbl_links.inc.php:133 #, php-format msgid "Table %s has been dropped" msgstr "โยนตาราง %s ทิ้งไปเรียบร้อยแล้ว" -#: db_structure.php:333 +#: db_structure.php:332 msgid "Tracking is active." msgstr "" -#: db_structure.php:335 +#: db_structure.php:334 msgid "Tracking is not active." msgstr "" -#: db_structure.php:420 libraries/display_tbl.lib.php:1944 +#: db_structure.php:418 libraries/display_tbl.lib.php:1944 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation%" "s." msgstr "" -#: db_structure.php:434 db_structure.php:448 libraries/header.inc.php:126 +#: db_structure.php:432 db_structure.php:446 libraries/header.inc.php:130 #: libraries/tbl_info.inc.php:66 tbl_structure.php:185 test/theme.php:74 msgid "View" msgstr "" -#: db_structure.php:485 libraries/db_structure.lib.php:49 -#: libraries/server_links.inc.php:70 server_replication.php:33 +#: db_structure.php:483 libraries/db_structure.lib.php:49 +#: libraries/server_links.inc.php:71 server_replication.php:33 #: server_replication.php:164 server_status.php:369 #, fuzzy msgid "Replication" msgstr "รีเลชัน" -#: db_structure.php:489 +#: db_structure.php:487 msgid "Sum" msgstr "ผลรวม" -#: db_structure.php:496 libraries/StorageEngine.class.php:356 +#: db_structure.php:494 libraries/StorageEngine.class.php:356 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "" -#: db_structure.php:524 db_structure.php:541 db_structure.php:542 +#: db_structure.php:522 db_structure.php:539 db_structure.php:540 #: 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:1596 tbl_structure.php:455 -#: tbl_structure.php:464 +#: server_databases.php:351 server_privileges.php:1616 tbl_structure.php:453 +#: tbl_structure.php:462 msgid "With selected:" msgstr "ทำกับที่เลือก:" -#: db_structure.php:527 libraries/display_tbl.lib.php:2076 -#: server_databases.php:348 server_privileges.php:569 -#: server_privileges.php:1599 tbl_structure.php:458 +#: db_structure.php:525 libraries/display_tbl.lib.php:2076 +#: server_databases.php:348 server_privileges.php:570 +#: server_privileges.php:1619 tbl_structure.php:456 msgid "Check All" msgstr "เลือกทั้งหมด" -#: db_structure.php:531 libraries/display_tbl.lib.php:2077 +#: db_structure.php:529 libraries/display_tbl.lib.php:2077 #: libraries/replication_gui.lib.php:33 server_databases.php:350 -#: server_privileges.php:572 server_privileges.php:1603 tbl_structure.php:462 +#: server_privileges.php:573 server_privileges.php:1623 tbl_structure.php:460 msgid "Uncheck All" msgstr "ไม่เลือกเลย" -#: db_structure.php:536 +#: db_structure.php:534 msgid "Check tables having overhead" msgstr "" -#: db_structure.php:547 db_structure.php:548 db_structure.php:599 +#: db_structure.php:545 db_structure.php:546 db_structure.php:597 #: libraries/display_tbl.lib.php:2180 libraries/mult_submits.inc.php:28 -#: tbl_structure.php:492 tbl_structure.php:494 +#: tbl_structure.php:490 tbl_structure.php:492 msgid "Print view" msgstr "แสดง" -#: db_structure.php:549 db_structure.php:550 libraries/mult_submits.inc.php:42 +#: db_structure.php:547 db_structure.php:548 libraries/mult_submits.inc.php:42 #: tbl_operations.php:581 msgid "Check table" msgstr "ตรวจสอบตาราง" -#: db_structure.php:551 db_structure.php:552 libraries/mult_submits.inc.php:47 -#: tbl_operations.php:621 tbl_structure.php:709 tbl_structure.php:711 +#: db_structure.php:549 db_structure.php:550 libraries/mult_submits.inc.php:47 +#: tbl_operations.php:621 tbl_structure.php:707 tbl_structure.php:709 msgid "Optimize table" msgstr "ปรับแต่งตาราง" -#: db_structure.php:553 db_structure.php:554 libraries/mult_submits.inc.php:52 +#: db_structure.php:551 db_structure.php:552 libraries/mult_submits.inc.php:52 #: tbl_operations.php:611 msgid "Repair table" msgstr "ซ่อมแซมตาราง" -#: db_structure.php:555 db_structure.php:556 libraries/mult_submits.inc.php:57 +#: db_structure.php:553 db_structure.php:554 libraries/mult_submits.inc.php:57 #: tbl_operations.php:601 msgid "Analyze table" msgstr "วิเคราะห์ตาราง" -#: db_structure.php:557 db_structure.php:558 libraries/db_links.inc.php:71 +#: db_structure.php:555 db_structure.php:556 libraries/db_links.inc.php:71 #: 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:1380 +#: libraries/server_links.inc.php:85 libraries/tbl_links.inc.php:82 +#: pmd_pdf.php:84 pmd_pdf.php:109 server_privileges.php:1397 #: setup/frames/menu.inc.php:22 tbl_row_action.php:59 msgid "Export" msgstr "ส่งออก" -#: db_structure.php:606 libraries/display_pdf_schema.lib.php:44 +#: db_structure.php:604 libraries/display_pdf_schema.lib.php:44 msgid "Data Dictionary" msgstr "พจนานุกรมข้อมูล" @@ -719,10 +715,10 @@ msgstr "" #: db_tracking.php:71 libraries/export/htmlword.php:86 #: libraries/export/latex.php:148 libraries/export/odt.php:113 #: libraries/export/sql.php:342 libraries/export/texytext.php:84 -#: libraries/export/xml.php:255 libraries/header.inc.php:106 +#: libraries/export/xml.php:255 libraries/header.inc.php:110 #: libraries/header_printview.inc.php:58 server_databases.php:169 -#: server_privileges.php:1660 server_privileges.php:1721 -#: server_privileges.php:1979 server_processlist.php:56 +#: server_privileges.php:1680 server_privileges.php:1741 +#: server_privileges.php:1999 server_processlist.php:56 #: server_synchronize.php:1179 server_synchronize.php:1183 #: tbl_tracking.php:591 test/theme.php:65 msgid "Database" @@ -743,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:1542 server_privileges.php:1725 -#: server_privileges.php:2073 tbl_structure.php:187 +#: server_privileges.php:1562 server_privileges.php:1745 +#: server_privileges.php:2094 tbl_structure.php:187 msgid "Action" msgstr "กระทำการ" @@ -780,8 +776,8 @@ msgstr "เฉพาะโครงสร้าง" msgid "Untracked tables" msgstr "" -#: db_tracking.php:172 db_tracking.php:174 tbl_structure.php:528 -#: tbl_structure.php:530 +#: db_tracking.php:172 db_tracking.php:174 tbl_structure.php:526 +#: tbl_structure.php:528 #, fuzzy msgid "Track table" msgstr "ตรวจสอบตาราง" @@ -935,189 +931,235 @@ msgstr "ชื่อโฮสต์ยังว่างอยู่!" msgid "The user name is empty!" msgstr "ชื่อผู้ใช้ยังว่างอยู่!" -#: js/messages.php:44 server_privileges.php:1236 user_password.php:70 +#: js/messages.php:44 server_privileges.php:1241 user_password.php:70 msgid "The password is empty!" msgstr "รหัสผ่านยังว่างอยู่!" -#: js/messages.php:45 server_privileges.php:1234 user_password.php:73 +#: js/messages.php:45 server_privileges.php:1239 user_password.php:73 msgid "The passwords aren't the same!" msgstr "รหัสผ่านไม่ตรงกัน!" -#: js/messages.php:49 pmd_general.php:342 pmd_general.php:379 +#: js/messages.php:46 +#, fuzzy +#| msgid "Add a new User" +msgid "Add a New User" +msgstr "เพิ่มผู้ใช้ใหม่" + +#: js/messages.php:47 js/messages.php:54 pmd_general.php:342 +#: pmd_general.php:379 msgid "Cancel" msgstr "" -#: js/messages.php:52 pmd_save_pos.php:54 +#: js/messages.php:48 +#, fuzzy +msgid "Create User" +msgstr "รุ่นของเซิร์ฟเวอร์" + +#: js/messages.php:49 +#, fuzzy +msgid "Reloading Privileges" +msgstr "สิทธิแบบโกลบอล" + +#: js/messages.php:50 +#, fuzzy +#| msgid "Remove selected users" +msgid "Removing Selected Users" +msgstr "ถอนผู้ใช้ที่เลือก" + +#: js/messages.php:57 +#, fuzzy +msgid "Loading" +msgstr "โลคอล" + +#: js/messages.php:58 +#, fuzzy +#| msgid "Processes" +msgid "Processing Request" +msgstr "โพรเซส" + +#: js/messages.php:59 +msgid "Error in Processing Request" +msgstr "" + +#: js/messages.php:60 +msgid "Dropping Column" +msgstr "" + +#: js/messages.php:61 +msgid "Adding Primary Key" +msgstr "" + +#: js/messages.php:64 pmd_save_pos.php:54 msgid "Modifications have been saved" msgstr "บันทึกการแก้ไขเรียบร้อยแล้ว" -#: js/messages.php:53 pmd_relation_upd.php:49 +#: js/messages.php:65 pmd_relation_upd.php:49 #, fuzzy msgid "Relation deleted" msgstr "มุมมองรีเลชัน" -#: js/messages.php:54 pmd_relation_new.php:64 +#: js/messages.php:66 pmd_relation_new.php:64 msgid "FOREIGN KEY relation added" msgstr "" -#: js/messages.php:55 pmd_relation_new.php:86 +#: js/messages.php:67 pmd_relation_new.php:86 #, fuzzy msgid "Internal relation added" msgstr "รีเลชันภายใน" -#: js/messages.php:56 pmd_relation_new.php:63 pmd_relation_new.php:88 +#: js/messages.php:68 pmd_relation_new.php:63 pmd_relation_new.php:88 msgid "Error: Relation not added." msgstr "" -#: js/messages.php:57 pmd_relation_new.php:31 +#: js/messages.php:69 pmd_relation_new.php:31 msgid "Error: relation already exists." msgstr "" -#: js/messages.php:58 +#: js/messages.php:70 msgid "Error saving coordinates for Designer." msgstr "" -#: js/messages.php:59 libraries/relation.lib.php:107 +#: js/messages.php:71 libraries/relation.lib.php:107 #: libraries/relation.lib.php:119 msgid "General relation features" msgstr "ความสามารถด้านรีเลชันทั่วไป" -#: js/messages.php:59 libraries/relation.lib.php:101 +#: js/messages.php:71 libraries/relation.lib.php:101 #: libraries/relation.lib.php:108 msgid "Disabled" msgstr "ระงับการใช้อยู่" -#: js/messages.php:60 +#: js/messages.php:72 msgid "Select referenced key" msgstr "" -#: js/messages.php:61 +#: js/messages.php:73 msgid "Select Foreign Key" msgstr "" -#: js/messages.php:62 +#: js/messages.php:74 msgid "Please select the primary key or a unique key" msgstr "" -#: js/messages.php:63 pmd_general.php:77 tbl_relation.php:548 +#: js/messages.php:75 pmd_general.php:77 tbl_relation.php:548 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" msgstr "เลือกฟิลด์ที่ต้องการแสดง" #. l10n: Display text for calendar close link -#: js/messages.php:73 +#: js/messages.php:85 #, fuzzy #| msgid "None" msgid "Done" msgstr "ไม่มี" #. l10n: Display text for previous month link in calendar -#: js/messages.php:75 +#: js/messages.php:87 #, fuzzy #| msgid "Previous" msgid "Prev" msgstr "ก่อนหน้า" #. l10n: Display text for next month link in calendar -#: js/messages.php:77 libraries/common.lib.php:2353 -#: libraries/common.lib.php:2356 libraries/display_tbl.lib.php:338 +#: js/messages.php:89 libraries/common.lib.php:2357 +#: libraries/common.lib.php:2360 libraries/display_tbl.lib.php:338 #: server_binlog.php:205 server_binlog.php:207 tbl_printview.php:424 -#: tbl_structure.php:801 +#: tbl_structure.php:799 msgid "Next" msgstr "ต่อไป" #. l10n: Display text for current month link in calendar -#: js/messages.php:79 +#: js/messages.php:91 #, fuzzy #| msgid "Total" msgid "Today" msgstr "รวม" -#: js/messages.php:82 +#: js/messages.php:94 #, fuzzy #| msgid "Binary" msgid "January" msgstr " ข้อมูลไบนารี " -#: js/messages.php:83 +#: js/messages.php:95 msgid "February" msgstr "" -#: js/messages.php:84 +#: js/messages.php:96 #, fuzzy #| msgid "Mar" msgid "March" msgstr "มี.ค." -#: js/messages.php:85 +#: js/messages.php:97 #, fuzzy #| msgid "Apr" msgid "April" msgstr "เม.ย." -#: js/messages.php:86 +#: js/messages.php:98 msgid "May" msgstr "พ.ค." -#: js/messages.php:87 +#: js/messages.php:99 #, fuzzy #| msgid "Jun" msgid "June" msgstr "มิ.ย." -#: js/messages.php:88 +#: js/messages.php:100 #, fuzzy #| msgid "Jul" msgid "July" msgstr "ก.ค." -#: js/messages.php:89 +#: js/messages.php:101 #, fuzzy #| msgid "Aug" msgid "August" msgstr "ส.ค." -#: js/messages.php:90 +#: js/messages.php:102 msgid "September" msgstr "" -#: js/messages.php:91 +#: js/messages.php:103 #, fuzzy #| msgid "Oct" msgid "October" msgstr "ต.ค." -#: js/messages.php:92 +#: js/messages.php:104 msgid "November" msgstr "" -#: js/messages.php:93 +#: js/messages.php:105 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:97 libraries/common.lib.php:1557 +#: js/messages.php:109 libraries/common.lib.php:1557 msgid "Jan" msgstr "ม.ค." #. l10n: Short month name -#: js/messages.php:99 libraries/common.lib.php:1559 +#: js/messages.php:111 libraries/common.lib.php:1559 msgid "Feb" msgstr "ก.พ." #. l10n: Short month name -#: js/messages.php:101 libraries/common.lib.php:1561 +#: js/messages.php:113 libraries/common.lib.php:1561 msgid "Mar" msgstr "มี.ค." #. l10n: Short month name -#: js/messages.php:103 libraries/common.lib.php:1563 +#: js/messages.php:115 libraries/common.lib.php:1563 msgid "Apr" msgstr "เม.ย." #. l10n: Short month name -#: js/messages.php:105 libraries/common.lib.php:1565 +#: js/messages.php:117 libraries/common.lib.php:1565 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1125,176 +1167,176 @@ msgid "May" msgstr "พ.ค." #. l10n: Short month name -#: js/messages.php:107 libraries/common.lib.php:1567 +#: js/messages.php:119 libraries/common.lib.php:1567 msgid "Jun" msgstr "มิ.ย." #. l10n: Short month name -#: js/messages.php:109 libraries/common.lib.php:1569 +#: js/messages.php:121 libraries/common.lib.php:1569 msgid "Jul" msgstr "ก.ค." #. l10n: Short month name -#: js/messages.php:111 libraries/common.lib.php:1571 +#: js/messages.php:123 libraries/common.lib.php:1571 msgid "Aug" msgstr "ส.ค." #. l10n: Short month name -#: js/messages.php:113 libraries/common.lib.php:1573 +#: js/messages.php:125 libraries/common.lib.php:1573 msgid "Sep" msgstr "ก.ย." #. l10n: Short month name -#: js/messages.php:115 libraries/common.lib.php:1575 +#: js/messages.php:127 libraries/common.lib.php:1575 msgid "Oct" msgstr "ต.ค." #. l10n: Short month name -#: js/messages.php:117 libraries/common.lib.php:1577 +#: js/messages.php:129 libraries/common.lib.php:1577 msgid "Nov" msgstr "พ.ย." #. l10n: Short month name -#: js/messages.php:119 libraries/common.lib.php:1579 +#: js/messages.php:131 libraries/common.lib.php:1579 msgid "Dec" msgstr "ธ.ค." -#: js/messages.php:122 +#: js/messages.php:134 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "อา." -#: js/messages.php:123 +#: js/messages.php:135 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "จ." -#: js/messages.php:124 +#: js/messages.php:136 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "อ." -#: js/messages.php:125 +#: js/messages.php:137 msgid "Wednesday" msgstr "" -#: js/messages.php:126 +#: js/messages.php:138 msgid "Thursday" msgstr "" -#: js/messages.php:127 +#: js/messages.php:139 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "ศ." -#: js/messages.php:128 +#: js/messages.php:140 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:132 libraries/common.lib.php:1582 +#: js/messages.php:144 libraries/common.lib.php:1582 msgid "Sun" msgstr "อา." #. l10n: Short week day name -#: js/messages.php:134 libraries/common.lib.php:1584 +#: js/messages.php:146 libraries/common.lib.php:1584 msgid "Mon" msgstr "จ." #. l10n: Short week day name -#: js/messages.php:136 libraries/common.lib.php:1586 +#: js/messages.php:148 libraries/common.lib.php:1586 msgid "Tue" msgstr "อ." #. l10n: Short week day name -#: js/messages.php:138 libraries/common.lib.php:1588 +#: js/messages.php:150 libraries/common.lib.php:1588 msgid "Wed" msgstr "พ." #. l10n: Short week day name -#: js/messages.php:140 libraries/common.lib.php:1590 +#: js/messages.php:152 libraries/common.lib.php:1590 msgid "Thu" msgstr "พฤ." #. l10n: Short week day name -#: js/messages.php:142 libraries/common.lib.php:1592 +#: js/messages.php:154 libraries/common.lib.php:1592 msgid "Fri" msgstr "ศ." #. l10n: Short week day name -#: js/messages.php:144 libraries/common.lib.php:1594 +#: js/messages.php:156 libraries/common.lib.php:1594 msgid "Sat" msgstr "ส." #. l10n: Minimal week day name -#: js/messages.php:148 +#: js/messages.php:160 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "อา." #. l10n: Minimal week day name -#: js/messages.php:150 +#: js/messages.php:162 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "จ." #. l10n: Minimal week day name -#: js/messages.php:152 +#: js/messages.php:164 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "อ." #. l10n: Minimal week day name -#: js/messages.php:154 +#: js/messages.php:166 #, fuzzy #| msgid "Wed" msgid "We" msgstr "พ." #. l10n: Minimal week day name -#: js/messages.php:156 +#: js/messages.php:168 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "พฤ." #. l10n: Minimal week day name -#: js/messages.php:158 +#: js/messages.php:170 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "ศ." #. l10n: Minimal week day name -#: js/messages.php:160 +#: js/messages.php:172 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "ส." #. l10n: Column header for week of the year in calendar -#: js/messages.php:162 +#: js/messages.php:174 msgid "Wk" msgstr "" -#: js/messages.php:164 +#: js/messages.php:176 msgid "Hour" msgstr "" -#: js/messages.php:165 +#: js/messages.php:177 #, fuzzy #| msgid "in use" msgid "Minute" msgstr "ใช้อยู่" -#: js/messages.php:166 +#: js/messages.php:178 #, fuzzy #| msgid "per second" msgid "Second" @@ -1351,7 +1393,7 @@ msgstr "ดัชนี" #: libraries/Index.class.php:444 libraries/mult_submits.inc.php:103 #: libraries/tbl_properties.inc.php:519 tbl_structure.php:33 -#: tbl_structure.php:155 tbl_structure.php:159 tbl_structure.php:474 +#: tbl_structure.php:155 tbl_structure.php:159 tbl_structure.php:472 #: tbl_tracking.php:322 msgid "Unique" msgstr "เอกลักษณ์" @@ -1393,8 +1435,8 @@ msgid "" "removed." msgstr "" -#: libraries/List_Database.class.php:431 libraries/server_links.inc.php:41 -#: server_databases.php:88 server_privileges.php:1660 +#: libraries/List_Database.class.php:431 libraries/server_links.inc.php:42 +#: server_databases.php:88 server_privileges.php:1680 #: setup/lib/messages.inc.php:110 test/theme.php:93 msgid "Databases" msgstr "ฐานข้อมูล" @@ -1558,7 +1600,7 @@ msgstr "รหัสผ่าน:" msgid "Server Choice" msgstr "ตัวเลือกเซิร์ฟเวอร์" -#: libraries/auth/cookie.auth.lib.php:320 libraries/header.inc.php:59 +#: libraries/auth/cookie.auth.lib.php:320 libraries/header.inc.php:63 msgid "Cookies must be enabled past this point." msgstr "ต้องอนุญาตใช้ใช้ 'คุ๊กกี้' (cookie) เสียก่อน จึงจะผ่านจุดนี้ไปได้" @@ -1637,7 +1679,7 @@ msgstr "" "ไม่สามารถใช้ฟังก์ชั่น iconv หรือ libiconv หรือ recode_string ทั้งๆ ที่สามารถเรียกตัวช่วย " "สำหรับฟังก์ชั่นเหล่านั้นขึ้นมาได้แล้ว. ลองตรวจสอบการตั้งค่าของ PHP" -#: libraries/common.inc.php:583 +#: libraries/common.inc.php:587 msgid "" "phpMyAdmin was unable to read your configuration file!
This might " "happen if PHP finds a parse error in it or PHP cannot find the file.
ถ้าคุณเห็นหน้าว่างๆ แสดงว่าทุกอย่างเป็นปกติดี" -#: libraries/common.inc.php:594 +#: libraries/common.inc.php:598 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "" -#: libraries/common.inc.php:599 +#: libraries/common.inc.php:603 msgid "" "The $cfg['PmaAbsoluteUri'] directive MUST be set in your " "configuration file!" msgstr "ต้องกำหนดค่า $cfg['PmaAbsoluteUri'] ในไฟล์คอนฟิกูเรชั่นเสียก่อน" -#: libraries/common.inc.php:629 +#: libraries/common.inc.php:633 #, php-format msgid "Invalid server index: %s" msgstr "" -#: libraries/common.inc.php:636 +#: libraries/common.inc.php:640 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" -#: libraries/common.inc.php:645 libraries/header.inc.php:96 +#: libraries/common.inc.php:649 libraries/header.inc.php:100 #: libraries/select_server.lib.php:41 libraries/select_server.lib.php:47 #: main.php:185 test/theme.php:57 msgid "Server" msgstr "เซิร์ฟเวอร์" -#: libraries/common.inc.php:823 +#: libraries/common.inc.php:827 msgid "Invalid authentication method set in configuration:" msgstr "" -#: libraries/common.inc.php:926 +#: libraries/common.inc.php:930 #, php-format msgid "You should upgrade to %s %s or later." msgstr "" @@ -1816,45 +1858,45 @@ msgstr "." msgid "%B %d, %Y at %I:%M %p" msgstr "%d %B %Y %Rน." -#: libraries/common.lib.php:1907 +#: libraries/common.lib.php:1911 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s วัน, %s ชั่วโมง, %s นาที, %s วินาที" -#: libraries/common.lib.php:2322 libraries/common.lib.php:2325 +#: libraries/common.lib.php:2326 libraries/common.lib.php:2329 #: libraries/display_tbl.lib.php:290 server_status.php:719 msgid "Begin" msgstr "จุดเริ่มต้น" -#: libraries/common.lib.php:2323 libraries/common.lib.php:2326 +#: libraries/common.lib.php:2327 libraries/common.lib.php:2330 #: libraries/display_tbl.lib.php:291 server_binlog.php:168 #: server_binlog.php:170 msgid "Previous" msgstr "ก่อนหน้า" -#: libraries/common.lib.php:2354 libraries/common.lib.php:2357 +#: libraries/common.lib.php:2358 libraries/common.lib.php:2361 #: libraries/display_tbl.lib.php:353 msgid "End" msgstr "ท้ายสุด" -#: libraries/common.lib.php:2430 +#: libraries/common.lib.php:2434 #, php-format msgid "Jump to database "%s"." msgstr "กระโดดไปที่ฐานข้อมูล "%s"." -#: libraries/common.lib.php:2450 +#: libraries/common.lib.php:2454 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" -#: libraries/common.lib.php:2830 libraries/common.lib.php:2837 +#: libraries/common.lib.php:2834 libraries/common.lib.php:2841 #: libraries/db_links.inc.php:68 libraries/export/sql.php:25 -#: libraries/import/sql.php:18 libraries/server_links.inc.php:45 +#: libraries/import/sql.php:18 libraries/server_links.inc.php:46 #: libraries/tbl_links.inc.php:60 querywindow.php:99 test/theme.php:97 msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2839 libraries/db_links.inc.php:104 +#: libraries/common.lib.php:2843 libraries/db_links.inc.php:104 #: libraries/tbl_links.inc.php:95 libraries/tbl_links.inc.php:117 #: view_operations.php:89 msgid "Operations" @@ -1901,16 +1943,16 @@ msgstr "คำค้นจากตัวอย่าง" msgid "Designer" msgstr "" -#: libraries/db_links.inc.php:98 libraries/server_links.inc.php:88 +#: libraries/db_links.inc.php:98 libraries/server_links.inc.php:89 #: libraries/tbl_links.inc.php:91 pmd_pdf.php:84 pmd_pdf.php:110 #: setup/frames/menu.inc.php:21 #, fuzzy msgid "Import" msgstr "ส่งออก" -#: libraries/db_links.inc.php:111 libraries/server_links.inc.php:66 -#: server_privileges.php:111 server_privileges.php:1722 -#: server_privileges.php:2071 test/theme.php:117 +#: libraries/db_links.inc.php:111 libraries/server_links.inc.php:67 +#: server_privileges.php:112 server_privileges.php:1742 +#: server_privileges.php:2092 test/theme.php:117 msgid "Privileges" msgstr "สิทธิ" @@ -1929,7 +1971,7 @@ msgid "" msgstr "" #: libraries/db_structure.lib.php:69 server_databases.php:142 -#: tbl_printview.php:336 tbl_structure.php:682 +#: tbl_printview.php:336 tbl_structure.php:680 msgid "Overhead" msgstr "เกินความจำเป็น" @@ -1946,7 +1988,7 @@ msgstr "เซิร์ฟเวอร์ดังกล่าวไม่ตอ msgid "(or the local MySQL server's socket is not correctly configured)" msgstr "" -#: libraries/dbi/mysql.dbi.lib.php:362 tbl_structure.php:608 +#: libraries/dbi/mysql.dbi.lib.php:362 tbl_structure.php:606 msgid "Details..." msgstr "" @@ -1956,22 +1998,22 @@ msgid "Change password" msgstr "เปลี่ยนรหัสผ่าน" #: libraries/display_change_password.lib.php:35 -#: libraries/replication_gui.lib.php:345 server_privileges.php:807 +#: libraries/replication_gui.lib.php:345 server_privileges.php:808 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:796 -#: server_privileges.php:800 server_privileges.php:811 -#: server_privileges.php:1538 server_synchronize.php:1175 +#: libraries/replication_gui.lib.php:349 server_privileges.php:797 +#: server_privileges.php:801 server_privileges.php:812 +#: server_privileges.php:1558 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:815 server_privileges.php:818 +#: server_privileges.php:816 server_privileges.php:819 msgid "Re-type" msgstr "พิมพ์ใหม่" @@ -1984,12 +2026,12 @@ msgid "MySQL 4.0 compatible" msgstr "" #: libraries/display_change_password.lib.php:72 -#: libraries/replication_gui.lib.php:360 server_privileges.php:822 +#: libraries/replication_gui.lib.php:360 server_privileges.php:823 msgid "Generate Password" msgstr "" #: libraries/display_change_password.lib.php:75 -#: libraries/replication_gui.lib.php:363 server_privileges.php:825 +#: libraries/replication_gui.lib.php:363 server_privileges.php:826 #, fuzzy msgid "Generate" msgstr "สร้างโดย" @@ -2003,8 +2045,8 @@ msgstr "สร้างฐานข้อมูลใหม่" msgid "Create" msgstr "สร้าง" -#: libraries/display_create_database.lib.php:40 server_privileges.php:113 -#: server_privileges.php:1427 server_replication.php:35 +#: libraries/display_create_database.lib.php:40 server_privileges.php:114 +#: server_privileges.php:1447 server_replication.php:35 msgid "No Privileges" msgstr "ไม่มีสิทธิ" @@ -2093,7 +2135,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:1875 server_processlist.php:75 +#: server_privileges.php:1895 server_processlist.php:75 msgid "None" msgstr "ไม่มี" @@ -2277,7 +2319,7 @@ msgstr "เรียงโดยคีย์" #: libraries/import/docsql.php:34 libraries/import/ldi.php:47 #: libraries/import/ods.php:30 libraries/import/sql.php:20 #: libraries/import/xls.php:26 libraries/import/xlsx.php:26 -#: libraries/import/xml.php:25 tbl_select.php:267 tbl_structure.php:753 +#: libraries/import/xml.php:25 tbl_select.php:267 tbl_structure.php:751 #, fuzzy msgid "Options" msgstr "กระบวนการ" @@ -2357,7 +2399,7 @@ msgstr "คำค้นใช้เวลา %01.4f วินาที" #: libraries/display_tbl.lib.php:2089 libraries/mult_submits.inc.php:113 #: querywindow.php:125 querywindow.php:129 querywindow.php:132 -#: tbl_structure.php:25 tbl_structure.php:150 tbl_structure.php:470 +#: tbl_structure.php:25 tbl_structure.php:150 tbl_structure.php:468 msgid "Change" msgstr "เปลี่ยน" @@ -2425,7 +2467,7 @@ msgstr "" #: libraries/engines/innodb.lib.php:194 server_databases.php:137 #: server_databases.php:305 server_status.php:525 server_status.php:586 -#: server_status.php:607 tbl_printview.php:351 tbl_structure.php:696 +#: server_status.php:607 tbl_printview.php:351 tbl_structure.php:694 msgid "Total" msgstr "รวม" @@ -2671,7 +2713,7 @@ msgid "" msgstr "" #: libraries/export/codegen.php:37 setup/lib/messages.inc.php:88 -#: tbl_printview.php:376 tbl_structure.php:737 +#: tbl_printview.php:376 tbl_structure.php:735 msgid "Format" msgstr "รูปแบบ" @@ -2743,8 +2785,8 @@ 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:576 server_replication.php:316 tbl_printview.php:317 -#: tbl_structure.php:665 +#: server_privileges.php:577 server_replication.php:316 tbl_printview.php:317 +#: tbl_structure.php:663 msgid "Data" msgstr "ข้อมูล" @@ -2793,9 +2835,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:731 -#: server_privileges.php:734 server_privileges.php:790 -#: server_privileges.php:1537 server_privileges.php:2069 +#: libraries/replication_gui.lib.php:329 server_privileges.php:732 +#: server_privileges.php:735 server_privileges.php:791 +#: server_privileges.php:1557 server_privileges.php:2090 #: server_processlist.php:55 server_synchronize.php:1159 msgid "Host" msgstr "โฮสต์" @@ -2994,7 +3036,7 @@ msgstr "" msgid "Open new phpMyAdmin window" msgstr "" -#: libraries/header.inc.php:115 +#: libraries/header.inc.php:119 #, fuzzy msgid "New table" msgstr "ไม่มีตาราง" @@ -3154,20 +3196,20 @@ 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 +#: tbl_structure.php:471 msgid "Primary" msgstr "ไพรมารี" #: libraries/mult_submits.inc.php:98 libraries/tbl_properties.inc.php:116 #: libraries/tbl_properties.inc.php:525 tbl_printview.php:326 #: tbl_structure.php:31 tbl_structure.php:154 tbl_structure.php:158 -#: tbl_structure.php:475 tbl_structure.php:673 +#: tbl_structure.php:473 tbl_structure.php:671 msgid "Index" msgstr "ดัชนี" #: libraries/mult_submits.inc.php:108 libraries/tbl_properties.inc.php:531 #: tbl_structure.php:35 tbl_structure.php:156 tbl_structure.php:160 -#: tbl_structure.php:478 +#: tbl_structure.php:476 msgid "Fulltext" msgstr "ข้อความเต็ม (fulltext)" @@ -3471,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:711 -#: server_privileges.php:714 server_privileges.php:721 +#: libraries/replication_gui.lib.php:259 server_privileges.php:712 +#: server_privileges.php:715 server_privileges.php:722 #: server_synchronize.php:1171 msgid "User name" msgstr "ชื่อผู้ใช้" @@ -3497,7 +3539,7 @@ msgstr "ตัวแปร" #: 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 +#: tbl_structure.php:727 msgid "Value" msgstr "ค่า" @@ -3516,34 +3558,34 @@ msgstr "" msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:254 server_privileges.php:716 +#: libraries/replication_gui.lib.php:254 server_privileges.php:717 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:717 -#: server_privileges.php:784 server_privileges.php:808 -#: server_privileges.php:1928 server_privileges.php:1958 +#: libraries/replication_gui.lib.php:346 server_privileges.php:718 +#: server_privileges.php:785 server_privileges.php:809 +#: server_privileges.php:1948 server_privileges.php:1978 msgid "Use text field" msgstr "ใช้ช่องใส่ข้อความ (text field)" -#: libraries/replication_gui.lib.php:302 server_privileges.php:764 +#: libraries/replication_gui.lib.php:302 server_privileges.php:765 msgid "Any host" msgstr "โฮสต์ใดๆ" -#: libraries/replication_gui.lib.php:306 server_privileges.php:768 +#: libraries/replication_gui.lib.php:306 server_privileges.php:769 msgid "Local" msgstr "โลคอล" -#: libraries/replication_gui.lib.php:312 server_privileges.php:773 +#: libraries/replication_gui.lib.php:312 server_privileges.php:774 msgid "This Host" msgstr "โฮสต์นี้" -#: libraries/replication_gui.lib.php:318 server_privileges.php:779 +#: libraries/replication_gui.lib.php:318 server_privileges.php:780 msgid "Use Host Table" msgstr "" -#: libraries/replication_gui.lib.php:331 server_privileges.php:792 +#: libraries/replication_gui.lib.php:331 server_privileges.php:793 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -3578,30 +3620,30 @@ msgstr "" msgid "Servers" msgstr "เซิร์ฟเวอร์" -#: libraries/server_links.inc.php:53 server_engines.php:112 +#: libraries/server_links.inc.php:54 server_engines.php:112 #: server_engines.php:116 server_status.php:415 test/theme.php:105 msgid "Variables" msgstr "ตัวแปร" -#: libraries/server_links.inc.php:57 test/theme.php:109 +#: libraries/server_links.inc.php:58 test/theme.php:109 msgid "Charsets" msgstr "ชุดตัวอักษร" -#: libraries/server_links.inc.php:61 test/theme.php:113 +#: libraries/server_links.inc.php:62 test/theme.php:113 msgid "Engines" msgstr "" -#: libraries/server_links.inc.php:76 server_binlog.php:110 +#: libraries/server_links.inc.php:77 server_binlog.php:110 #: server_status.php:364 test/theme.php:121 #, fuzzy msgid "Binary log" msgstr " ข้อมูลไบนารี " -#: libraries/server_links.inc.php:80 +#: libraries/server_links.inc.php:81 msgid "Processes" msgstr "โพรเซส" -#: libraries/server_links.inc.php:92 server_synchronize.php:1092 +#: libraries/server_links.inc.php:93 server_synchronize.php:1092 #: server_synchronize.php:1100 msgid "Synchronize" msgstr "" @@ -3843,12 +3885,12 @@ msgstr "" msgid "Save" msgstr "บันทึก" -#: libraries/tbl_properties.inc.php:780 tbl_structure.php:542 +#: libraries/tbl_properties.inc.php:780 tbl_structure.php:540 #, fuzzy, php-format msgid "Add %s column(s)" msgstr "เพิ่มฟิลด์ใหม่" -#: libraries/tbl_properties.inc.php:784 tbl_structure.php:536 +#: libraries/tbl_properties.inc.php:784 tbl_structure.php:534 #, fuzzy #| msgid "You have to choose at least one column to display" msgid "You have to add at least one column." @@ -3990,8 +4032,8 @@ msgstr "เริ่มใหม่" msgid "Protocol version" msgstr "" -#: main.php:189 server_privileges.php:1389 server_privileges.php:1536 -#: server_privileges.php:1650 server_privileges.php:2068 +#: main.php:189 server_privileges.php:1406 server_privileges.php:1556 +#: server_privileges.php:1670 server_privileges.php:2089 #: server_processlist.php:54 msgid "User" msgstr "ผู้ใช้" @@ -4425,330 +4467,330 @@ msgstr "" msgid "View dump (schema) of databases" msgstr "ดูโครงสร้างของฐานข้อมูล" -#: server_privileges.php:24 server_privileges.php:266 +#: server_privileges.php:25 server_privileges.php:267 msgid "Includes all privileges except GRANT." msgstr "ให้สิทธิทุกอย่าง ยกเว้นการให้สิทธิแก่ผู้อื่น (GRANT)." -#: server_privileges.php:25 server_privileges.php:192 -#: server_privileges.php:515 +#: server_privileges.php:26 server_privileges.php:193 +#: server_privileges.php:516 msgid "Allows altering the structure of existing tables." msgstr "อนุญาตให้เปลี่ยนโครงสร้างของตารางที่มีอยู่เดิม." -#: server_privileges.php:26 server_privileges.php:208 -#: server_privileges.php:521 +#: server_privileges.php:27 server_privileges.php:209 +#: server_privileges.php:522 #, fuzzy msgid "Allows altering and dropping stored routines." msgstr "อนุญาตให้สร้าง และทิ้ง ดัชนี" -#: server_privileges.php:27 server_privileges.php:184 -#: server_privileges.php:514 +#: server_privileges.php:28 server_privileges.php:185 +#: server_privileges.php:515 msgid "Allows creating new databases and tables." msgstr "อนุญาตให้สร้างฐานข้อมูล และตารางใหม่." -#: server_privileges.php:28 server_privileges.php:207 -#: server_privileges.php:520 +#: server_privileges.php:29 server_privileges.php:208 +#: server_privileges.php:521 #, fuzzy msgid "Allows creating stored routines." msgstr "อนุญาตให้สร้างตารางใหม่." -#: server_privileges.php:29 server_privileges.php:514 +#: server_privileges.php:30 server_privileges.php:515 msgid "Allows creating new tables." msgstr "อนุญาตให้สร้างตารางใหม่." -#: server_privileges.php:30 server_privileges.php:195 -#: server_privileges.php:518 +#: server_privileges.php:31 server_privileges.php:196 +#: server_privileges.php:519 msgid "Allows creating temporary tables." msgstr "อนุญาตให้สร้างตารางชั่วคราว." -#: server_privileges.php:31 server_privileges.php:209 -#: server_privileges.php:554 +#: server_privileges.php:32 server_privileges.php:210 +#: server_privileges.php:555 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 +#: server_privileges.php:33 server_privileges.php:200 +#: server_privileges.php:204 server_privileges.php:527 +#: server_privileges.php:531 #, fuzzy msgid "Allows creating new views." msgstr "อนุญาตให้สร้างตารางใหม่." -#: server_privileges.php:33 server_privileges.php:183 -#: server_privileges.php:506 +#: server_privileges.php:34 server_privileges.php:184 +#: server_privileges.php:507 msgid "Allows deleting data." msgstr "อนุญาตให้ลบข้อมูล" -#: server_privileges.php:34 server_privileges.php:185 -#: server_privileges.php:517 +#: server_privileges.php:35 server_privileges.php:186 +#: server_privileges.php:518 msgid "Allows dropping databases and tables." msgstr "อนุญาตให้ทิ้งฐานข้อมูล และตาราง" -#: server_privileges.php:35 server_privileges.php:517 +#: server_privileges.php:36 server_privileges.php:518 msgid "Allows dropping tables." msgstr "อนุญาตให้ทิ้งตาราง" -#: server_privileges.php:36 server_privileges.php:200 -#: server_privileges.php:534 +#: server_privileges.php:37 server_privileges.php:201 +#: server_privileges.php:535 msgid "Allows to set up events for the event scheduler" msgstr "" -#: server_privileges.php:37 server_privileges.php:210 -#: server_privileges.php:522 +#: server_privileges.php:38 server_privileges.php:211 +#: server_privileges.php:523 msgid "Allows executing stored routines." msgstr "" -#: server_privileges.php:38 server_privileges.php:189 -#: server_privileges.php:509 +#: server_privileges.php:39 server_privileges.php:190 +#: server_privileges.php:510 msgid "Allows importing data from and exporting data into files." msgstr "อนุญาตให้นำเข้าข้อมูล และส่งออกข้อมูล ไปที่ไฟล์" -#: server_privileges.php:39 server_privileges.php:540 +#: server_privileges.php:40 server_privileges.php:541 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "อนุญาตให้เพิ่มผู้ใช้ และสิทธิเข้าถึง โดยไม่ต้องเรียกใช้ตารางสิทธิใหม่" -#: server_privileges.php:40 server_privileges.php:191 -#: server_privileges.php:516 +#: server_privileges.php:41 server_privileges.php:192 +#: server_privileges.php:517 msgid "Allows creating and dropping indexes." msgstr "อนุญาตให้สร้าง และทิ้ง ดัชนี" -#: server_privileges.php:41 server_privileges.php:181 -#: server_privileges.php:442 server_privileges.php:504 +#: server_privileges.php:42 server_privileges.php:182 +#: server_privileges.php:443 server_privileges.php:505 msgid "Allows inserting and replacing data." msgstr "อนุญาตให้เพิ่ม และแทนที่ ข้อมูล" -#: server_privileges.php:42 server_privileges.php:196 -#: server_privileges.php:549 +#: server_privileges.php:43 server_privileges.php:197 +#: server_privileges.php:550 msgid "Allows locking tables for the current thread." msgstr "อนุญาตให้ล็อกตารางสำหรับเธรดปัจจุบัน" -#: server_privileges.php:43 server_privileges.php:646 -#: server_privileges.php:648 +#: server_privileges.php:44 server_privileges.php:647 +#: server_privileges.php:649 msgid "Limits the number of new connections the user may open per hour." msgstr "จำกัดจำนวนการเชื่อมต่อใหม่ ที่ผู้ใช้จะสามารถเปิดได้ ต่อชั่วโมง" -#: server_privileges.php:44 server_privileges.php:634 -#: server_privileges.php:636 +#: server_privileges.php:45 server_privileges.php:635 +#: server_privileges.php:637 msgid "Limits the number of queries the user may send to the server per hour." msgstr "จำกัดจำนวนของคำค้น ที่ผู้ใช้จะสามารถส่งมาที่เซิร์ฟเวอร์ได้ ต่อชั่วโมง" -#: server_privileges.php:45 server_privileges.php:640 -#: server_privileges.php:642 +#: server_privileges.php:46 server_privileges.php:641 +#: server_privileges.php:643 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." msgstr "" "จำกัดจำนวนของคำสั่ง ที่จะเปลี่ยนแปลงตาราง หรือฐานข้อมูลใดๆ ที่ผู้ใช้จะสามารถสั่งได้ ต่อชั่วโมง" -#: server_privileges.php:46 server_privileges.php:652 -#: server_privileges.php:654 +#: server_privileges.php:47 server_privileges.php:653 +#: server_privileges.php:655 #, fuzzy msgid "Limits the number of simultaneous connections the user may have." msgstr "จำกัดจำนวนการเชื่อมต่อใหม่ ที่ผู้ใช้จะสามารถเปิดได้ ต่อชั่วโมง" -#: server_privileges.php:47 server_privileges.php:188 -#: server_privileges.php:544 +#: server_privileges.php:48 server_privileges.php:189 +#: server_privileges.php:545 msgid "Allows viewing processes of all users" msgstr "" -#: server_privileges.php:48 server_privileges.php:190 -#: server_privileges.php:448 server_privileges.php:550 +#: server_privileges.php:49 server_privileges.php:191 +#: server_privileges.php:449 server_privileges.php:551 msgid "Has no effect in this MySQL version." msgstr "ไม่มีผลใน MySQL รุ่นนี้" -#: server_privileges.php:49 server_privileges.php:186 -#: server_privileges.php:545 +#: server_privileges.php:50 server_privileges.php:187 +#: server_privileges.php:546 msgid "Allows reloading server settings and flushing the server's caches." msgstr "อนุญาตให้เรียกใช้ค่ากำหนดของเซิร์ฟเวอร์ใหม่ และล้างแคชของเซิร์ฟเวอร์" -#: server_privileges.php:50 server_privileges.php:198 -#: server_privileges.php:552 +#: server_privileges.php:51 server_privileges.php:199 +#: server_privileges.php:553 msgid "Allows the user to ask where the slaves / masters are." msgstr "มอบสิทธิให้ผู้ใช้ ในการถามว่า slaves หรือ masters อยู่ที่ไหน." -#: server_privileges.php:51 server_privileges.php:197 -#: server_privileges.php:553 +#: server_privileges.php:52 server_privileges.php:198 +#: server_privileges.php:554 msgid "Needed for the replication slaves." msgstr "" -#: server_privileges.php:52 server_privileges.php:180 -#: server_privileges.php:439 server_privileges.php:503 +#: server_privileges.php:53 server_privileges.php:181 +#: server_privileges.php:440 server_privileges.php:504 msgid "Allows reading data." msgstr "อนุญาตให้อ่านข้อมูลได้." -#: server_privileges.php:53 server_privileges.php:193 -#: server_privileges.php:547 +#: server_privileges.php:54 server_privileges.php:194 +#: server_privileges.php:548 msgid "Gives access to the complete list of databases." msgstr "สามารถเรียกดูรายการฐานข้อมูลทั้งหมดได้" -#: server_privileges.php:54 server_privileges.php:204 -#: server_privileges.php:206 server_privileges.php:519 +#: server_privileges.php:55 server_privileges.php:205 +#: server_privileges.php:207 server_privileges.php:520 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "" -#: server_privileges.php:55 server_privileges.php:187 -#: server_privileges.php:546 +#: server_privileges.php:56 server_privileges.php:188 +#: server_privileges.php:547 msgid "Allows shutting down the server." msgstr "อนุญาตให้ปิดเซิร์ฟเวอร์ได้" -#: server_privileges.php:56 server_privileges.php:194 -#: server_privileges.php:543 +#: server_privileges.php:57 server_privileges.php:195 +#: server_privileges.php:544 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " "killing threads of other users." msgstr "" -#: server_privileges.php:57 server_privileges.php:201 -#: server_privileges.php:535 +#: server_privileges.php:58 server_privileges.php:202 +#: server_privileges.php:536 #, fuzzy msgid "Allows creating and dropping triggers" msgstr "อนุญาตให้สร้าง และทิ้ง ดัชนี" -#: server_privileges.php:58 server_privileges.php:182 -#: server_privileges.php:445 server_privileges.php:505 +#: server_privileges.php:59 server_privileges.php:183 +#: server_privileges.php:446 server_privileges.php:506 msgid "Allows changing data." msgstr "อนุญาตให้เปลี่ยนข้อมูลได้." -#: server_privileges.php:59 server_privileges.php:260 +#: server_privileges.php:60 server_privileges.php:261 msgid "No privileges." msgstr "ไม่มีสิทธิใดๆ." -#: server_privileges.php:302 server_privileges.php:303 +#: server_privileges.php:303 server_privileges.php:304 #, fuzzy #| msgid "None" msgctxt "None privileges" msgid "None" msgstr "ไม่มี" -#: server_privileges.php:431 server_privileges.php:566 -#: server_privileges.php:1718 server_privileges.php:1724 +#: server_privileges.php:432 server_privileges.php:567 +#: server_privileges.php:1738 server_privileges.php:1744 msgid "Table-specific privileges" msgstr "สิทธิเจาะจงเฉพาะตาราง" -#: server_privileges.php:432 server_privileges.php:574 -#: server_privileges.php:1540 +#: server_privileges.php:433 server_privileges.php:575 +#: server_privileges.php:1560 msgid " Note: MySQL privilege names are expressed in English " msgstr " โปรดทราบ: ชื่อของสิทธิใน MySQL จะแสดงเป็นภาษาอังกฤษ " -#: server_privileges.php:563 server_privileges.php:1539 +#: server_privileges.php:564 server_privileges.php:1559 msgid "Global privileges" msgstr "สิทธิแบบโกลบอล" -#: server_privileges.php:565 server_privileges.php:1718 +#: server_privileges.php:566 server_privileges.php:1738 msgid "Database-specific privileges" msgstr "สิทธิเจาะจงเฉพาะฐานข้อมูล" -#: server_privileges.php:610 +#: server_privileges.php:611 msgid "Administration" msgstr "การดูแลระบบ" -#: server_privileges.php:630 +#: server_privileges.php:631 msgid "Resource limits" msgstr "ขีดจำกัดของทรัพยากร" -#: server_privileges.php:631 +#: server_privileges.php:632 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "โปรดทราบ: ถ้าเปลี่ยนค่าเหล่านี้เป็น 0 (ศูนย์) จะหมายถึง ไม่มีขีดจำกัด." -#: server_privileges.php:708 +#: server_privileges.php:709 msgid "Login Information" msgstr "ข้อมูลล็อกอิน" -#: server_privileges.php:802 +#: server_privileges.php:803 msgid "Do not change the password" msgstr "กรุณาอย่าเปลี่ยนรหัสผ่าน" -#: server_privileges.php:843 server_privileges.php:2205 +#: server_privileges.php:844 server_privileges.php:2226 #, fuzzy #| msgid "No user(s) found." msgid "No user found." msgstr "ไม่พบผู้ใช้ใดๆ." -#: server_privileges.php:887 +#: server_privileges.php:888 #, php-format msgid "The user %s already exists!" msgstr "มีผู้ใช้ %s อยู่แล้ว!" -#: server_privileges.php:970 +#: server_privileges.php:971 msgid "You have added a new user." msgstr "เพิ่มผู้ใช้ใหม่เรียบร้อยแล้ว" -#: server_privileges.php:1191 +#: server_privileges.php:1196 #, php-format msgid "You have updated the privileges for %s." msgstr "คุณได้ปรับปรุงสิทธิสำหรับ %s แล้ว" -#: server_privileges.php:1215 +#: server_privileges.php:1220 #, php-format msgid "You have revoked the privileges for %s" msgstr "คุณได้เพิกถอนสิทธิของ %s" -#: server_privileges.php:1251 +#: server_privileges.php:1256 #, php-format msgid "The password for %s was changed successfully." msgstr "เปลี่ยนรหัสผ่านของ %s เรียบร้อยแล้ว" -#: server_privileges.php:1271 +#: server_privileges.php:1276 #, php-format msgid "Deleting %s" msgstr "กำลังลบ %s" -#: server_privileges.php:1282 +#: server_privileges.php:1287 msgid "No users selected for deleting!" msgstr "" -#: server_privileges.php:1285 +#: server_privileges.php:1290 msgid "Reloading the privileges" msgstr "ปรับปรุงสิทธิเข้าถึงใหม่อีกรอบ" -#: server_privileges.php:1300 +#: server_privileges.php:1305 msgid "The selected users have been deleted successfully." msgstr "ลบผู้ใช้ที่เลือกไว้เรียบร้อยแล้ว." -#: server_privileges.php:1335 +#: server_privileges.php:1344 msgid "The privileges were reloaded successfully." msgstr "สิทธิได้ถูกเรียกใช้ใหม่เรียบร้อยแล้ว" -#: server_privileges.php:1363 server_privileges.php:1649 +#: server_privileges.php:1380 server_privileges.php:1669 msgid "Edit Privileges" msgstr "แก้ไขสิทธิ" -#: server_privileges.php:1372 +#: server_privileges.php:1389 msgid "Revoke" msgstr "เพิกถอน" -#: server_privileges.php:1404 +#: server_privileges.php:1424 msgid "User overview" msgstr "ข้อมูลทั่วไปของผู้ใช้" -#: server_privileges.php:1541 server_privileges.php:1723 -#: server_privileges.php:2072 +#: server_privileges.php:1561 server_privileges.php:1743 +#: server_privileges.php:2093 msgid "Grant" msgstr "มอบสิทธิ" -#: server_privileges.php:1560 server_privileges.php:2162 +#: server_privileges.php:1580 server_privileges.php:2183 msgid "Any" msgstr "ใดๆ" -#: server_privileges.php:1609 server_privileges.php:1633 -#: server_privileges.php:2027 server_privileges.php:2216 +#: server_privileges.php:1629 server_privileges.php:1653 +#: server_privileges.php:2048 server_privileges.php:2237 msgid "Add a new User" msgstr "เพิ่มผู้ใช้ใหม่" -#: server_privileges.php:1614 +#: server_privileges.php:1634 msgid "Remove selected users" msgstr "ถอนผู้ใช้ที่เลือก" -#: server_privileges.php:1617 +#: server_privileges.php:1637 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "เพิกถอน active privileges ทั้งหมดจากผู้ใช้ และลบผู้ใช้ทิ้งหลังจากนั้น." -#: server_privileges.php:1618 server_privileges.php:1619 -#: server_privileges.php:1620 +#: server_privileges.php:1638 server_privileges.php:1639 +#: server_privileges.php:1640 msgid "Drop the databases that have the same names as the users." msgstr "โยนฐานข้อมูลที่มีชื่อเดียวกับผู้ใช้ทิ้ง." -#: server_privileges.php:1636 +#: server_privileges.php:1656 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -4757,91 +4799,91 @@ msgid "" "sreload the privileges%s before you continue." msgstr "" -#: server_privileges.php:1684 +#: server_privileges.php:1704 msgid "The selected user was not found in the privilege table." msgstr "ไม่พบผู้ใช้ที่เลือกในตารางแสดงสิทธิ" -#: server_privileges.php:1724 +#: server_privileges.php:1744 msgid "Column-specific privileges" msgstr "สิทธิเฉพาะคอลัมน์" -#: server_privileges.php:1925 +#: server_privileges.php:1945 msgid "Add privileges on the following database" msgstr "เพิ่มสิทธิของฐานข้อมูลต่อไปนี้" -#: server_privileges.php:1943 +#: server_privileges.php:1963 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" -#: server_privileges.php:1946 +#: server_privileges.php:1966 msgid "Add privileges on the following table" msgstr "เพิ่มสิทธิของตารางต่อไปนี้" -#: server_privileges.php:2003 +#: server_privileges.php:2023 msgid "Change Login Information / Copy User" msgstr "เปลี่ยนข้อมูลล็อกอิน / ทำสำเนาผู้ใช้" -#: server_privileges.php:2006 +#: server_privileges.php:2026 msgid "Create a new user with the same privileges and ..." msgstr "สร้างผู้ใช้ใหม่ ให้มีสิทธิเหมือนกัน และ ..." -#: server_privileges.php:2008 +#: server_privileges.php:2028 msgid "... keep the old one." msgstr "... เก็บของเก่าไว้." -#: server_privileges.php:2009 +#: server_privileges.php:2029 msgid " ... delete the old one from the user tables." msgstr " ... ลบของเก่าทิ้งไปจากตารางผู้ใช้." -#: server_privileges.php:2010 +#: server_privileges.php:2030 msgid "" " ... revoke all active privileges from the old one and delete it afterwards." msgstr " ... เรียกคืนสิทธิ์ทั้งหมดจากเดิม แล้วลบมันหลังจากนั้น." -#: server_privileges.php:2011 +#: server_privileges.php:2031 msgid "" " ... delete the old one from the user tables and reload the privileges " "afterwards." msgstr " ... ลบของเก่าจากตารางผู้ใช้ แล้วเรียกใช้รายการสิทธิ์ใหม่หลังจากนั้น." -#: server_privileges.php:2033 +#: server_privileges.php:2054 msgid "Database for user" msgstr "" -#: server_privileges.php:2037 +#: server_privileges.php:2058 #, fuzzy #| msgid "None" msgctxt "Create none database for user" msgid "None" msgstr "ไม่มี" -#: server_privileges.php:2038 +#: server_privileges.php:2059 msgid "Create database with same name and grant all privileges" msgstr "" -#: server_privileges.php:2039 +#: server_privileges.php:2060 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "" -#: server_privileges.php:2042 +#: server_privileges.php:2063 #, fuzzy, php-format msgid "Grant all privileges on database "%s"" msgstr "ตรวจสอบสิทธิสำหรับฐานข้อมูล "%s"." -#: server_privileges.php:2065 +#: server_privileges.php:2086 #, php-format msgid "Users having access to "%s"" msgstr "ผู้ใช้มีสิทธิเข้าถึงฐานข้อมูล "%s"" -#: server_privileges.php:2173 +#: server_privileges.php:2194 msgid "global" msgstr "โกลบอล" -#: server_privileges.php:2175 +#: server_privileges.php:2196 msgid "database-specific" msgstr "เฉพาะฐานข้อมูล" -#: server_privileges.php:2177 +#: server_privileges.php:2198 msgid "wildcard" msgstr "ไวล์การ์ด" @@ -7529,6 +7571,10 @@ msgstr "" msgid "Show insert query" msgstr "" +#: tbl_change.php:1143 +msgid "and then" +msgstr "" + #: tbl_change.php:1147 msgid "Go back to previous page" msgstr "ส่งกลับ" @@ -7608,7 +7654,7 @@ msgstr "(ชื่อของไพรมารีคีย์จะต้ msgid "Add to index  %s column(s)" msgstr "เพิ่มดัชนีคอลัมน์ %s" -#: tbl_indexes.php:256 tbl_structure.php:589 tbl_structure.php:600 +#: tbl_indexes.php:256 tbl_structure.php:587 tbl_structure.php:598 msgid "Column count has to be larger than zero." msgstr "" @@ -7725,39 +7771,39 @@ msgstr "ตรวจสอบความสมบูรณ์ของการ msgid "Show tables" msgstr "แสดงตาราง" -#: tbl_printview.php:310 tbl_structure.php:656 +#: tbl_printview.php:310 tbl_structure.php:654 msgid "Space usage" msgstr "เนื้อที่ที่ใช้" -#: tbl_printview.php:314 tbl_structure.php:660 +#: tbl_printview.php:314 tbl_structure.php:658 msgid "Usage" msgstr "ใช้งาน" -#: tbl_printview.php:341 tbl_structure.php:687 +#: tbl_printview.php:341 tbl_structure.php:685 msgid "Effective" msgstr "มีผล" -#: tbl_printview.php:366 tbl_structure.php:725 +#: tbl_printview.php:366 tbl_structure.php:723 msgid "Row Statistics" msgstr "สถิติของแถว" -#: tbl_printview.php:369 tbl_structure.php:728 +#: tbl_printview.php:369 tbl_structure.php:726 msgid "Statements" msgstr "คำสั่ง" -#: tbl_printview.php:380 tbl_structure.php:740 +#: tbl_printview.php:380 tbl_structure.php:738 msgid "static" msgstr "" -#: tbl_printview.php:382 tbl_structure.php:742 +#: tbl_printview.php:382 tbl_structure.php:740 msgid "dynamic" msgstr "ไม่คงที่" -#: tbl_printview.php:404 tbl_structure.php:785 +#: tbl_printview.php:404 tbl_structure.php:783 msgid "Row length" msgstr "ความยาวแถว" -#: tbl_printview.php:414 tbl_structure.php:793 +#: tbl_printview.php:414 tbl_structure.php:791 msgid " Row size " msgstr " ขนาดแถว " @@ -7830,49 +7876,49 @@ msgstr "ไม่มี" msgid "Column %s has been dropped" msgstr "โยนตาราง %s ทิ้งไปเรียบร้อยแล้ว" -#: tbl_structure.php:385 +#: tbl_structure.php:384 #, php-format msgid "A primary key has been added on %s" msgstr "ได้เพิ่มไพรมารีคีย์แล้วใน %s" -#: tbl_structure.php:400 tbl_structure.php:414 tbl_structure.php:428 +#: tbl_structure.php:398 tbl_structure.php:412 tbl_structure.php:426 #, php-format msgid "An index has been added on %s" msgstr "ได้เพิ่มดัชนีแล้วใน %s" -#: tbl_structure.php:506 tbl_structure.php:508 +#: tbl_structure.php:504 tbl_structure.php:506 msgid "Relation view" msgstr "มุมมองรีเลชัน" -#: tbl_structure.php:515 tbl_structure.php:517 +#: tbl_structure.php:513 tbl_structure.php:515 msgid "Propose table structure" msgstr "เสนอโครงสร้างตาราง" -#: tbl_structure.php:540 +#: tbl_structure.php:538 #, fuzzy msgid "Add column" msgstr "เพิ่มฟิลด์ใหม่" -#: tbl_structure.php:554 +#: tbl_structure.php:552 msgid "At End of Table" msgstr "ที่จุดสุดท้ายของตาราง" -#: tbl_structure.php:555 +#: tbl_structure.php:553 msgid "At Beginning of Table" msgstr "ที่จุดเริ่มต้นของตาราง" -#: tbl_structure.php:556 +#: tbl_structure.php:554 #, php-format msgid "After %s" msgstr "หลัง %s" -#: tbl_structure.php:594 +#: tbl_structure.php:592 #, fuzzy, php-format #| msgid "Create an index on %s columns" msgid "Create an index on  %s columns" msgstr "สร้างดัชนีโดยคอลัมน์ %s" -#: tbl_structure.php:756 +#: tbl_structure.php:754 msgid "partitioned" msgstr "" @@ -8251,10 +8297,6 @@ msgstr "เปลี่ยนชื่อตารางเป็น" #~ msgid "Process list" #~ msgstr "รายการโพรเซส" -#, fuzzy -#~ msgid "Reload privileges" -#~ msgstr "สิทธิแบบโกลบอล" - #~ msgid "" #~ "The users will still have the USAGE privilege until the privileges are " #~ "reloaded." diff --git a/po/tr.po b/po/tr.po index de650f227..48ab2505d 100755 --- a/po/tr.po +++ b/po/tr.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-13 09:03-0400\n" +"POT-Creation-Date: 2010-06-22 00:55+0530\n" "PO-Revision-Date: 2010-06-17 21:32+0200\n" "Last-Translator: \n" "Language-Team: turkish \n" -"Language: tr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: tr\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.0.1\n" #: browse_foreigners.php:38 browse_foreigners.php:59 -#: libraries/display_tbl.lib.php:417 server_privileges.php:1514 +#: libraries/display_tbl.lib.php:417 server_privileges.php:1534 msgid "Show all" msgstr "Tümünü göster" -#: browse_foreigners.php:82 libraries/common.lib.php:2313 +#: browse_foreigners.php:82 libraries/common.lib.php:2317 #: 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,18 +38,18 @@ 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:2831 -#: libraries/common.lib.php:2838 libraries/db_links.inc.php:75 +#: db_structure.php:106 libraries/common.lib.php:2835 +#: libraries/common.lib.php:2842 libraries/db_links.inc.php:75 #: libraries/tbl_links.inc.php:63 msgid "Search" msgstr "Ara" -#: browse_foreigners.php:153 db_operations.php:385 db_operations.php:429 -#: db_operations.php:499 db_operations.php:609 db_search.php:362 -#: db_structure.php:567 js/messages.php:48 libraries/Config.class.php:1046 +#: browse_foreigners.php:153 db_operations.php:394 db_operations.php:438 +#: db_operations.php:508 db_operations.php:618 db_search.php:362 +#: db_structure.php:565 js/messages.php:53 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:1335 libraries/common.lib.php:2288 +#: libraries/common.lib.php:1335 libraries/common.lib.php:2292 #: 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,15 +60,15 @@ 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:664 server_privileges.php:1624 -#: server_privileges.php:1971 server_privileges.php:2018 -#: server_privileges.php:2057 server_replication.php:235 +#: server_privileges.php:665 server_privileges.php:1644 +#: server_privileges.php:1991 server_privileges.php:2038 +#: server_privileges.php:2078 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 #: tbl_operations.php:302 tbl_operations.php:499 tbl_operations.php:561 -#: tbl_operations.php:681 tbl_select.php:327 tbl_structure.php:562 -#: tbl_structure.php:597 tbl_tracking.php:395 tbl_tracking.php:512 +#: tbl_operations.php:681 tbl_select.php:327 tbl_structure.php:560 +#: tbl_structure.php:595 tbl_tracking.php:395 tbl_tracking.php:512 #: view_create.php:182 view_operations.php:101 msgid "Go" msgstr "Git" @@ -94,7 +94,7 @@ msgstr "Bu değeri kullan" msgid "Database %1$s has been created." msgstr "Veritabanı %1$s oluşturuldu." -#: db_datadict.php:49 db_operations.php:378 +#: db_datadict.php:49 db_operations.php:387 msgid "Database comment: " msgstr "Veritabanı yorumu: " @@ -111,7 +111,6 @@ msgstr "Tablo yorumları" #: 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 "Sütun" @@ -120,10 +119,10 @@ msgstr "Sütun" #: 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:2070 +#: pdf_schema.php:1263 pdf_schema.php:1284 server_privileges.php:2091 #: 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 +#: tbl_structure.php:657 tbl_tracking.php:274 tbl_tracking.php:321 msgid "Type" msgstr "Türü" @@ -136,7 +135,7 @@ msgstr "Türü" msgid "Null" msgstr "Boş" -#: db_datadict.php:178 db_structure.php:501 libraries/export/htmlword.php:247 +#: db_datadict.php:178 db_structure.php:499 libraries/export/htmlword.php:247 #: libraries/export/latex.php:360 libraries/export/odt.php:303 #: libraries/export/texytext.php:236 libraries/tbl_properties.inc.php:106 #: pdf_schema.php:1266 pdf_schema.php:1287 tbl_printview.php:146 @@ -164,9 +163,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: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 +#: pdf_schema.php:1344 server_privileges.php:1588 server_privileges.php:1599 +#: server_privileges.php:1909 server_privileges.php:1914 +#: server_privileges.php:2208 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" @@ -180,9 +179,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:1565 -#: server_privileges.php:1579 server_privileges.php:1889 -#: server_privileges.php:1892 server_privileges.php:2187 sql.php:193 +#: server_databases.php:64 server_privileges.php:1585 +#: server_privileges.php:1599 server_privileges.php:1909 +#: server_privileges.php:1912 server_privileges.php:2208 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" @@ -209,122 +208,115 @@ msgstr "Tümünü Seç" msgid "Unselect All" msgstr "Tüm Seçimi Kaldır" -#: db_operations.php:38 tbl_create.php:54 +#: db_operations.php:43 tbl_create.php:54 msgid "The database name is empty!" msgstr "Veritabanı adı boş!" -#: db_operations.php:236 +#: db_operations.php:241 #, php-format msgid "Database %s has been renamed to %s" msgstr "%s veritabanı %s olarak yeniden adlandırıldı" -#: db_operations.php:240 +#: db_operations.php:245 #, php-format msgid "Database %s has been copied to %s" msgstr "%s veritabanı %s'e kopyalandı" -#: db_operations.php:412 +#: db_operations.php:421 msgid "Rename database to" msgstr "Veritabanını şuna yeniden adlandır" -#: db_operations.php:417 server_processlist.php:57 +#: db_operations.php:426 server_processlist.php:57 msgid "Command" msgstr "Komut" -#: db_operations.php:429 tbl_change.php:1143 -msgid "and then" -msgstr "ve sonra" - -#: db_operations.php:455 +#: db_operations.php:464 msgid "Copy database to" msgstr "Veritabanını şuraya kopyala:" -#: db_operations.php:462 tbl_operations.php:528 tbl_tracking.php:388 +#: db_operations.php:471 tbl_operations.php:528 tbl_tracking.php:388 msgid "Structure only" msgstr "Sadece yapı" -#: db_operations.php:463 tbl_operations.php:529 tbl_tracking.php:390 +#: db_operations.php:472 tbl_operations.php:529 tbl_tracking.php:390 msgid "Structure and data" msgstr "Yapı ve veri" -#: db_operations.php:464 tbl_operations.php:530 tbl_tracking.php:389 +#: db_operations.php:473 tbl_operations.php:530 tbl_tracking.php:389 msgid "Data only" msgstr "Sadece veri" -#: db_operations.php:472 +#: db_operations.php:481 msgid "CREATE DATABASE before copying" msgstr "Kopyalamadan önce VERİTABANI OLUŞTUR" -#: db_operations.php:475 libraries/export/sql.php:52 +#: db_operations.php:484 libraries/export/sql.php:52 #: libraries/export/sql.php:74 libraries/export/sql.php:76 #: libraries/export/sql.php:82 tbl_operations.php:536 #, php-format msgid "Add %s" msgstr "%s komutu ekle" -#: db_operations.php:479 libraries/export/sql.php:78 tbl_operations.php:299 +#: db_operations.php:488 libraries/export/sql.php:78 tbl_operations.php:299 #: tbl_operations.php:538 msgid "Add AUTO_INCREMENT value" msgstr "AUTO_INCREMENT değeri ekle" -#: db_operations.php:483 tbl_operations.php:545 +#: db_operations.php:492 tbl_operations.php:545 msgid "Add constraints" msgstr "Kısıtlamaları ekle" -#: db_operations.php:496 +#: db_operations.php:505 msgid "Switch to copied database" msgstr "Kopyalanmış veritabanına geç" -#: db_operations.php:537 +#: db_operations.php:546 msgid "BLOB Repository" msgstr "BLOB Havuzu" -#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1352 -#: libraries/server_links.inc.php:49 server_processlist.php:59 +#: db_operations.php:549 db_tracking.php:76 libraries/common.lib.php:1352 +#: libraries/server_links.inc.php:50 server_processlist.php:59 #: tbl_tracking.php:596 test/theme.php:101 msgid "Status" msgstr "Durum" -#: db_operations.php:548 -#| msgid "Enabled" +#: db_operations.php:557 msgctxt "BLOB repository" msgid "Enabled" msgstr "Etkinleştirildi" -#: db_operations.php:552 +#: db_operations.php:561 msgid "Disable" msgstr "Etkisiz" -#: db_operations.php:562 +#: db_operations.php:571 msgid "Damaged" msgstr "Hasarlı" -#: db_operations.php:566 -#| msgid "Repair" +#: db_operations.php:575 msgctxt "BLOB repository" msgid "Repair" msgstr "Onar" -#: db_operations.php:574 -#| msgid "Disabled" +#: db_operations.php:583 msgctxt "BLOB repository" msgid "Disabled" msgstr "Etkisizleştirildi" -#: db_operations.php:578 +#: db_operations.php:587 msgid "Enable" msgstr "Etkin" -#: db_operations.php:602 libraries/Index.class.php:448 +#: db_operations.php:611 libraries/Index.class.php:448 #: libraries/db_structure.lib.php:62 libraries/mysql_charsets.lib.php:107 #: libraries/tbl_properties.inc.php:107 libraries/tbl_properties.inc.php:730 #: server_collations.php:54 server_collations.php:66 server_databases.php:111 #: tbl_operations.php:363 tbl_select.php:137 tbl_structure.php:179 -#: tbl_structure.php:767 tbl_tracking.php:275 tbl_tracking.php:326 +#: tbl_structure.php:765 tbl_tracking.php:275 tbl_tracking.php:326 msgid "Collation" msgstr "Karşılaştırma" -#: db_operations.php:615 main.php:316 pdf_schema.php:34 +#: db_operations.php:624 main.php:316 pdf_schema.php:34 #, php-format msgid "" "The additional features for working with linked tables have been " @@ -333,14 +325,14 @@ msgstr "" "Bağlı tablolar ile çalışan ilave özellikler etkisizleştirildi. Nedenini " "öğrenmek için %sburaya%s tıklayın." -#: db_operations.php:648 +#: db_operations.php:657 msgid "Edit PDF Pages" 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:1665 -#: server_privileges.php:1721 server_privileges.php:1985 +#: libraries/header.inc.php:130 pdf_pages.php:424 server_privileges.php:1685 +#: server_privileges.php:1741 server_privileges.php:2005 #: server_synchronize.php:423 server_synchronize.php:866 tbl_tracking.php:592 #: test/theme.php:75 msgid "Table" @@ -349,7 +341,7 @@ msgstr "Tablo" #: db_printview.php:105 libraries/db_structure.lib.php:56 #: libraries/header_printview.inc.php:63 libraries/import.lib.php:146 #: navigation.php:638 navigation.php:660 server_databases.php:122 -#: tbl_printview.php:394 tbl_structure.php:365 tbl_structure.php:777 +#: tbl_printview.php:394 tbl_structure.php:365 tbl_structure.php:775 msgid "Rows" msgstr "Satır" @@ -357,32 +349,31 @@ msgstr "Satır" msgid "Size" msgstr "Boyut" -#: db_printview.php:162 db_structure.php:457 libraries/export/sql.php:559 +#: db_printview.php:162 db_structure.php:455 libraries/export/sql.php:559 #: libraries/export/sql.php:899 msgid "in use" msgstr "kullanımda" #: db_printview.php:187 libraries/db_info.inc.php:88 #: libraries/export/sql.php:514 pdf_schema.php:1241 tbl_printview.php:434 -#: tbl_structure.php:809 +#: tbl_structure.php:807 msgid "Creation" msgstr "Oluşturma" #: db_printview.php:196 libraries/db_info.inc.php:93 #: libraries/export/sql.php:519 pdf_schema.php:1246 tbl_printview.php:444 -#: tbl_structure.php:817 +#: tbl_structure.php:815 msgid "Last update" msgstr "Son güncellenme" #: db_printview.php:205 libraries/db_info.inc.php:98 #: libraries/export/sql.php:524 pdf_schema.php:1251 tbl_printview.php:454 -#: tbl_structure.php:825 +#: tbl_structure.php:823 msgid "Last check" msgstr "Son kontrol" -#: db_printview.php:222 db_structure.php:480 +#: db_printview.php:222 db_structure.php:478 #, php-format -#| msgid "%s table(s)" msgid "%s table" msgid_plural "%s tables" msgstr[0] "%s tablo" @@ -440,7 +431,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:297 tbl_change.php:1031 tbl_indexes.php:250 +#: server_privileges.php:298 tbl_change.php:1031 tbl_indexes.php:250 #: tbl_select.php:288 msgid "Or" msgstr "Veya" @@ -450,12 +441,10 @@ msgid "Modify" msgstr "Değiştir" #: db_qbe.php:584 -#| msgid "Add/Delete Criteria Row" msgid "Add/Delete criteria rows" msgstr "Kriter satırı Ekle/Sil" #: db_qbe.php:596 -#| msgid "Add/Delete Field Columns" msgid "Add/Delete columns" msgstr "Sütun Ekle/Sil" @@ -511,9 +500,9 @@ 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:2833 +#: db_structure.php:105 libraries/common.lib.php:2837 #: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50 -#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:467 +#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:465 msgid "Browse" msgstr "Gözat" @@ -551,42 +540,41 @@ msgid "Inside table(s):" msgstr "Tablo içindeki(ler):" #: db_search.php:355 -#| msgid "Inside field:" msgid "Inside column:" msgstr "İç sütun:" #: 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:2832 libraries/sql_query_form.lib.php:334 +#: libraries/common.lib.php:2836 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:2829 libraries/common.lib.php:2836 +#: libraries/common.lib.php:2833 libraries/common.lib.php:2840 #: 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:1106 #: libraries/tbl_links.inc.php:56 pmd_general.php:134 -#: server_privileges.php:593 server_replication.php:315 tbl_tracking.php:269 +#: server_privileges.php:594 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:1656 +#: db_structure.php:543 db_structure.php:544 db_tracking.php:91 +#: libraries/Index.class.php:483 libraries/common.lib.php:1657 #: 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 -#: tbl_structure.php:152 tbl_structure.php:471 +#: tbl_structure.php:152 tbl_structure.php:469 msgid "Drop" 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:1655 +#: db_structure.php:541 db_structure.php:542 libraries/common.lib.php:1656 #: libraries/mult_submits.inc.php:39 libraries/tbl_links.inc.php:105 msgid "Empty" msgstr "Boşalt" @@ -596,25 +584,25 @@ msgstr "Boşalt" msgid "Table %s has been emptied" msgstr "%s tablosu boşaltıldı" -#: db_structure.php:326 libraries/tbl_links.inc.php:133 +#: db_structure.php:325 libraries/tbl_links.inc.php:133 #, php-format msgid "View %s has been dropped" msgstr "%s görünümü kaldırıldı" -#: db_structure.php:326 libraries/tbl_links.inc.php:133 +#: db_structure.php:325 libraries/tbl_links.inc.php:133 #, php-format msgid "Table %s has been dropped" msgstr "%s tablosu kaldırıldı" -#: db_structure.php:333 +#: db_structure.php:332 msgid "Tracking is active." msgstr "İzleme aktif." -#: db_structure.php:335 +#: db_structure.php:334 msgid "Tracking is not active." msgstr "İzleme aktif değil." -#: db_structure.php:420 libraries/display_tbl.lib.php:1944 +#: db_structure.php:418 libraries/display_tbl.lib.php:1944 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation%" @@ -623,86 +611,86 @@ msgstr "" "Bu görünüm en az bu satır sayısı kadar olur. Lütfen %sdocumentation%s " "belgesinden yararlanın." -#: db_structure.php:434 db_structure.php:448 libraries/header.inc.php:126 +#: db_structure.php:432 db_structure.php:446 libraries/header.inc.php:130 #: libraries/tbl_info.inc.php:66 tbl_structure.php:185 test/theme.php:74 msgid "View" 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 +#: db_structure.php:483 libraries/db_structure.lib.php:49 +#: libraries/server_links.inc.php:71 server_replication.php:33 #: server_replication.php:164 server_status.php:369 msgid "Replication" msgstr "Kopya etme" -#: db_structure.php:489 +#: db_structure.php:487 msgid "Sum" msgstr "Toplam" -#: db_structure.php:496 libraries/StorageEngine.class.php:356 +#: db_structure.php:494 libraries/StorageEngine.class.php:356 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "%s bu MySQL sunucusundaki varsayılan depolama motorudur." -#: db_structure.php:524 db_structure.php:541 db_structure.php:542 +#: db_structure.php:522 db_structure.php:539 db_structure.php:540 #: 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:1596 tbl_structure.php:455 -#: tbl_structure.php:464 +#: server_databases.php:351 server_privileges.php:1616 tbl_structure.php:453 +#: tbl_structure.php:462 msgid "With selected:" msgstr "Seçilileri:" -#: db_structure.php:527 libraries/display_tbl.lib.php:2076 -#: server_databases.php:348 server_privileges.php:569 -#: server_privileges.php:1599 tbl_structure.php:458 +#: db_structure.php:525 libraries/display_tbl.lib.php:2076 +#: server_databases.php:348 server_privileges.php:570 +#: server_privileges.php:1619 tbl_structure.php:456 msgid "Check All" msgstr "Tümünü Seç" -#: db_structure.php:531 libraries/display_tbl.lib.php:2077 +#: db_structure.php:529 libraries/display_tbl.lib.php:2077 #: libraries/replication_gui.lib.php:33 server_databases.php:350 -#: server_privileges.php:572 server_privileges.php:1603 tbl_structure.php:462 +#: server_privileges.php:573 server_privileges.php:1623 tbl_structure.php:460 msgid "Uncheck All" msgstr "Hiçbirini Seçme" -#: db_structure.php:536 +#: db_structure.php:534 msgid "Check tables having overhead" msgstr "Ek yükü olan tabloları kontrol et" -#: db_structure.php:547 db_structure.php:548 db_structure.php:599 +#: db_structure.php:545 db_structure.php:546 db_structure.php:597 #: libraries/display_tbl.lib.php:2180 libraries/mult_submits.inc.php:28 -#: tbl_structure.php:492 tbl_structure.php:494 +#: tbl_structure.php:490 tbl_structure.php:492 msgid "Print view" msgstr "Baskı görünümü" -#: db_structure.php:549 db_structure.php:550 libraries/mult_submits.inc.php:42 +#: db_structure.php:547 db_structure.php:548 libraries/mult_submits.inc.php:42 #: tbl_operations.php:581 msgid "Check table" msgstr "Tabloyu kontrol et" -#: db_structure.php:551 db_structure.php:552 libraries/mult_submits.inc.php:47 -#: tbl_operations.php:621 tbl_structure.php:709 tbl_structure.php:711 +#: db_structure.php:549 db_structure.php:550 libraries/mult_submits.inc.php:47 +#: tbl_operations.php:621 tbl_structure.php:707 tbl_structure.php:709 msgid "Optimize table" msgstr "Tabloyu uyarla" -#: db_structure.php:553 db_structure.php:554 libraries/mult_submits.inc.php:52 +#: db_structure.php:551 db_structure.php:552 libraries/mult_submits.inc.php:52 #: tbl_operations.php:611 msgid "Repair table" msgstr "Tabloyu onar" -#: db_structure.php:555 db_structure.php:556 libraries/mult_submits.inc.php:57 +#: db_structure.php:553 db_structure.php:554 libraries/mult_submits.inc.php:57 #: tbl_operations.php:601 msgid "Analyze table" msgstr "Tabloyu incele" -#: db_structure.php:557 db_structure.php:558 libraries/db_links.inc.php:71 +#: db_structure.php:555 db_structure.php:556 libraries/db_links.inc.php:71 #: 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:1380 +#: libraries/server_links.inc.php:85 libraries/tbl_links.inc.php:82 +#: pmd_pdf.php:84 pmd_pdf.php:109 server_privileges.php:1397 #: setup/frames/menu.inc.php:22 tbl_row_action.php:59 msgid "Export" msgstr "Dışarı Aktar" -#: db_structure.php:606 libraries/display_pdf_schema.lib.php:44 +#: db_structure.php:604 libraries/display_pdf_schema.lib.php:44 msgid "Data Dictionary" msgstr "Veri sözlüğü" @@ -713,10 +701,10 @@ msgstr "İzlenen tablolar" #: db_tracking.php:71 libraries/export/htmlword.php:86 #: libraries/export/latex.php:148 libraries/export/odt.php:113 #: libraries/export/sql.php:342 libraries/export/texytext.php:84 -#: libraries/export/xml.php:255 libraries/header.inc.php:106 +#: libraries/export/xml.php:255 libraries/header.inc.php:110 #: libraries/header_printview.inc.php:58 server_databases.php:169 -#: server_privileges.php:1660 server_privileges.php:1721 -#: server_privileges.php:1979 server_processlist.php:56 +#: server_privileges.php:1680 server_privileges.php:1741 +#: server_privileges.php:1999 server_processlist.php:56 #: server_synchronize.php:1179 server_synchronize.php:1183 #: tbl_tracking.php:591 test/theme.php:65 msgid "Database" @@ -736,8 +724,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:1542 server_privileges.php:1725 -#: server_privileges.php:2073 tbl_structure.php:187 +#: server_privileges.php:1562 server_privileges.php:1745 +#: server_privileges.php:2094 tbl_structure.php:187 msgid "Action" msgstr "Eylem" @@ -771,8 +759,8 @@ msgstr "Yapı görüntüsü yakalama" msgid "Untracked tables" msgstr "İzlenmeyen tablolar" -#: db_tracking.php:172 db_tracking.php:174 tbl_structure.php:528 -#: tbl_structure.php:530 +#: db_tracking.php:172 db_tracking.php:174 tbl_structure.php:526 +#: tbl_structure.php:528 msgid "Track table" msgstr "Tabloyu izle" @@ -839,8 +827,8 @@ msgid "" "[a@./Documentation.html#faq1_16@Documentation]FAQ 1.16[/a]." msgstr "" "İçeri aktarmak için veri alınmadı. Ya dosya adı gönderilmedi ya da PHP " -"yapılandırmanız tarafından izin verilen en fazla boyut aşıldı. " -"[a@./Documentation.html#faq1_16@Documentation]SSS 1.16[/a]'ya bakın." +"yapılandırmanız tarafından izin verilen en fazla boyut aşıldı. [a@./" +"Documentation.html#faq1_16@Documentation]SSS 1.16[/a]'ya bakın." #: import.php:372 libraries/display_import.lib.php:24 msgid "Could not load import plugins, please check your installation!" @@ -942,342 +930,365 @@ msgstr "Anamakine adı boş!" msgid "The user name is empty!" msgstr "Kullanıcı adı boş!" -#: js/messages.php:44 server_privileges.php:1236 user_password.php:70 +#: js/messages.php:44 server_privileges.php:1241 user_password.php:70 msgid "The password is empty!" msgstr "Parola boş!" -#: js/messages.php:45 server_privileges.php:1234 user_password.php:73 +#: js/messages.php:45 server_privileges.php:1239 user_password.php:73 msgid "The passwords aren't the same!" msgstr "Parolalar birbiriyle aynı değil!" -#: js/messages.php:49 pmd_general.php:342 pmd_general.php:379 +#: js/messages.php:46 +#, fuzzy +#| msgid "Add a new User" +msgid "Add a New User" +msgstr "Yeni Kullanıcı ekle" + +#: js/messages.php:47 js/messages.php:54 pmd_general.php:342 +#: pmd_general.php:379 msgid "Cancel" msgstr "İptal" -#: js/messages.php:52 pmd_save_pos.php:54 +#: js/messages.php:48 +#, fuzzy +#| msgid "Create version" +msgid "Create User" +msgstr "Sürüm oluştur" + +#: js/messages.php:49 +#, fuzzy +#| msgid "Reloading the privileges" +msgid "Reloading Privileges" +msgstr "Yetkiler yeniden yükleniyor" + +#: js/messages.php:50 +#, fuzzy +#| msgid "Remove selected users" +msgid "Removing Selected Users" +msgstr "Seçili kullanıcıları kaldır" + +#: js/messages.php:57 +#, fuzzy +#| msgid "Load" +msgid "Loading" +msgstr "Yükle" + +#: js/messages.php:58 +#, fuzzy +#| msgid "Processes" +msgid "Processing Request" +msgstr "İşlemler" + +#: js/messages.php:59 +msgid "Error in Processing Request" +msgstr "" + +#: js/messages.php:60 +msgid "Dropping Column" +msgstr "" + +#: js/messages.php:61 +msgid "Adding Primary Key" +msgstr "" + +#: js/messages.php:64 pmd_save_pos.php:54 msgid "Modifications have been saved" msgstr "Değişiklikler kaydedildi" -#: js/messages.php:53 pmd_relation_upd.php:49 +#: js/messages.php:65 pmd_relation_upd.php:49 msgid "Relation deleted" msgstr "Bağlantı silindi" -#: js/messages.php:54 pmd_relation_new.php:64 +#: js/messages.php:66 pmd_relation_new.php:64 msgid "FOREIGN KEY relation added" msgstr "FOREIGN KEY bağlantısı eklendi" -#: js/messages.php:55 pmd_relation_new.php:86 +#: js/messages.php:67 pmd_relation_new.php:86 msgid "Internal relation added" msgstr "Dahili bağlantı eklendi" -#: js/messages.php:56 pmd_relation_new.php:63 pmd_relation_new.php:88 +#: js/messages.php:68 pmd_relation_new.php:63 pmd_relation_new.php:88 msgid "Error: Relation not added." msgstr "Hata: Bağlantı eklenmedi." -#: js/messages.php:57 pmd_relation_new.php:31 +#: js/messages.php:69 pmd_relation_new.php:31 msgid "Error: relation already exists." msgstr "Hata: bağlantı zaten var." -#: js/messages.php:58 +#: js/messages.php:70 msgid "Error saving coordinates for Designer." msgstr "Tasarımcı düzenlemelerini kaydetme hatası." -#: js/messages.php:59 libraries/relation.lib.php:107 +#: js/messages.php:71 libraries/relation.lib.php:107 #: libraries/relation.lib.php:119 msgid "General relation features" msgstr "Genel bağlantı özellikleri" -#: js/messages.php:59 libraries/relation.lib.php:101 +#: js/messages.php:71 libraries/relation.lib.php:101 #: libraries/relation.lib.php:108 msgid "Disabled" msgstr "Etkisiz" -#: js/messages.php:60 +#: js/messages.php:72 msgid "Select referenced key" msgstr "Kaynak gösterilen anahtarı seç" -#: js/messages.php:61 +#: js/messages.php:73 msgid "Select Foreign Key" msgstr "Dış Anahtarı seç" -#: js/messages.php:62 +#: js/messages.php:74 msgid "Please select the primary key or a unique key" msgstr "Lütfen birincil anaktarı veya benzersiz anahtarı seçin" -#: js/messages.php:63 pmd_general.php:77 tbl_relation.php:548 -#| msgid "Choose field to display" +#: js/messages.php:75 pmd_general.php:77 tbl_relation.php:548 msgid "Choose column to display" msgstr "Göstermek için sütun seçin" #. l10n: Display text for calendar close link -#: js/messages.php:73 -#| msgid "Donate" +#: js/messages.php:85 msgid "Done" msgstr "Bitti" #. l10n: Display text for previous month link in calendar -#: js/messages.php:75 -#| msgid "Previous" +#: js/messages.php:87 msgid "Prev" msgstr "Önceki" #. l10n: Display text for next month link in calendar -#: js/messages.php:77 libraries/common.lib.php:2353 -#: libraries/common.lib.php:2356 libraries/display_tbl.lib.php:338 +#: js/messages.php:89 libraries/common.lib.php:2357 +#: libraries/common.lib.php:2360 libraries/display_tbl.lib.php:338 #: server_binlog.php:205 server_binlog.php:207 tbl_printview.php:424 -#: tbl_structure.php:801 +#: tbl_structure.php:799 msgid "Next" msgstr "Sonraki" #. l10n: Display text for current month link in calendar -#: js/messages.php:79 -#| msgid "Total" +#: js/messages.php:91 msgid "Today" msgstr "Bugün" -#: js/messages.php:82 -#| msgid "Binary" +#: js/messages.php:94 msgid "January" msgstr "Ocak" -#: js/messages.php:83 +#: js/messages.php:95 msgid "February" msgstr "Şubat" -#: js/messages.php:84 -#| msgid "Mar" +#: js/messages.php:96 msgid "March" msgstr "Mart" -#: js/messages.php:85 -#| msgid "Apr" +#: js/messages.php:97 msgid "April" msgstr "Nisan" -#: js/messages.php:86 +#: js/messages.php:98 msgid "May" msgstr "Mayıs" -#: js/messages.php:87 -#| msgid "Jun" +#: js/messages.php:99 msgid "June" msgstr "Haziran" -#: js/messages.php:88 -#| msgid "Jul" +#: js/messages.php:100 msgid "July" msgstr "Temmuz" -#: js/messages.php:89 -#| msgid "Aug" +#: js/messages.php:101 msgid "August" msgstr "Ağustos" -#: js/messages.php:90 +#: js/messages.php:102 msgid "September" msgstr "Eylül" -#: js/messages.php:91 -#| msgid "Oct" +#: js/messages.php:103 msgid "October" msgstr "Ekim" -#: js/messages.php:92 +#: js/messages.php:104 msgid "November" msgstr "Kasım" -#: js/messages.php:93 +#: js/messages.php:105 msgid "December" msgstr "Aralık" #. l10n: Short month name -#: js/messages.php:97 libraries/common.lib.php:1557 +#: js/messages.php:109 libraries/common.lib.php:1557 msgid "Jan" msgstr "Oca" #. l10n: Short month name -#: js/messages.php:99 libraries/common.lib.php:1559 +#: js/messages.php:111 libraries/common.lib.php:1559 msgid "Feb" msgstr "Şub" #. l10n: Short month name -#: js/messages.php:101 libraries/common.lib.php:1561 +#: js/messages.php:113 libraries/common.lib.php:1561 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:103 libraries/common.lib.php:1563 +#: js/messages.php:115 libraries/common.lib.php:1563 msgid "Apr" msgstr "Nis" #. l10n: Short month name -#: js/messages.php:105 libraries/common.lib.php:1565 -#| msgid "May" +#: js/messages.php:117 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:1567 +#: js/messages.php:119 libraries/common.lib.php:1567 msgid "Jun" msgstr "Haz" #. l10n: Short month name -#: js/messages.php:109 libraries/common.lib.php:1569 +#: js/messages.php:121 libraries/common.lib.php:1569 msgid "Jul" msgstr "Tem" #. l10n: Short month name -#: js/messages.php:111 libraries/common.lib.php:1571 +#: js/messages.php:123 libraries/common.lib.php:1571 msgid "Aug" msgstr "Ağu" #. l10n: Short month name -#: js/messages.php:113 libraries/common.lib.php:1573 +#: js/messages.php:125 libraries/common.lib.php:1573 msgid "Sep" msgstr "Eyl" #. l10n: Short month name -#: js/messages.php:115 libraries/common.lib.php:1575 +#: js/messages.php:127 libraries/common.lib.php:1575 msgid "Oct" msgstr "Eki" #. l10n: Short month name -#: js/messages.php:117 libraries/common.lib.php:1577 +#: js/messages.php:129 libraries/common.lib.php:1577 msgid "Nov" msgstr "Kas" #. l10n: Short month name -#: js/messages.php:119 libraries/common.lib.php:1579 +#: js/messages.php:131 libraries/common.lib.php:1579 msgid "Dec" msgstr "Ara" -#: js/messages.php:122 -#| msgid "Sun" +#: js/messages.php:134 msgid "Sunday" msgstr "Pazar" -#: js/messages.php:123 -#| msgid "Mon" +#: js/messages.php:135 msgid "Monday" msgstr "Pazartesi" -#: js/messages.php:124 -#| msgid "Tue" +#: js/messages.php:136 msgid "Tuesday" msgstr "Salı" -#: js/messages.php:125 +#: js/messages.php:137 msgid "Wednesday" msgstr "Çarşamba" -#: js/messages.php:126 +#: js/messages.php:138 msgid "Thursday" msgstr "Perşembe" -#: js/messages.php:127 -#| msgid "Fri" +#: js/messages.php:139 msgid "Friday" msgstr "Cuma" -#: js/messages.php:128 +#: js/messages.php:140 msgid "Saturday" msgstr "Cumartesi" #. l10n: Short week day name -#: js/messages.php:132 libraries/common.lib.php:1582 +#: js/messages.php:144 libraries/common.lib.php:1582 msgid "Sun" msgstr "Paz" #. l10n: Short week day name -#: js/messages.php:134 libraries/common.lib.php:1584 +#: js/messages.php:146 libraries/common.lib.php:1584 msgid "Mon" msgstr "Ptesi" #. l10n: Short week day name -#: js/messages.php:136 libraries/common.lib.php:1586 +#: js/messages.php:148 libraries/common.lib.php:1586 msgid "Tue" msgstr "Salı" #. l10n: Short week day name -#: js/messages.php:138 libraries/common.lib.php:1588 +#: js/messages.php:150 libraries/common.lib.php:1588 msgid "Wed" msgstr "Çar" #. l10n: Short week day name -#: js/messages.php:140 libraries/common.lib.php:1590 +#: js/messages.php:152 libraries/common.lib.php:1590 msgid "Thu" msgstr "Per" #. l10n: Short week day name -#: js/messages.php:142 libraries/common.lib.php:1592 +#: js/messages.php:154 libraries/common.lib.php:1592 msgid "Fri" msgstr "Cu" #. l10n: Short week day name -#: js/messages.php:144 libraries/common.lib.php:1594 +#: js/messages.php:156 libraries/common.lib.php:1594 msgid "Sat" msgstr "Ctesi" #. l10n: Minimal week day name -#: js/messages.php:148 -#| msgid "Sun" +#: js/messages.php:160 msgid "Su" msgstr "Paz" #. l10n: Minimal week day name -#: js/messages.php:150 -#| msgid "Mon" +#: js/messages.php:162 msgid "Mo" msgstr "Ptesi" #. l10n: Minimal week day name -#: js/messages.php:152 -#| msgid "Tue" +#: js/messages.php:164 msgid "Tu" msgstr "Sa" #. l10n: Minimal week day name -#: js/messages.php:154 -#| msgid "Wed" +#: js/messages.php:166 msgid "We" msgstr "Ça" #. l10n: Minimal week day name -#: js/messages.php:156 -#| msgid "Thu" +#: js/messages.php:168 msgid "Th" msgstr "Pe" #. l10n: Minimal week day name -#: js/messages.php:158 -#| msgid "Fri" +#: js/messages.php:170 msgid "Fr" msgstr "Cu" #. l10n: Minimal week day name -#: js/messages.php:160 -#| msgid "Sat" +#: js/messages.php:172 msgid "Sa" msgstr "Ctesi" #. l10n: Column header for week of the year in calendar -#: js/messages.php:162 -#| msgid "Wiki" +#: js/messages.php:174 msgid "Wk" msgstr "Hs" -#: js/messages.php:164 +#: js/messages.php:176 msgid "Hour" msgstr "Saat" -#: js/messages.php:165 -#| msgid "in use" +#: js/messages.php:177 msgid "Minute" msgstr "Dakika" -#: js/messages.php:166 -#| msgid "per second" +#: js/messages.php:178 msgid "Second" msgstr "Saniye" @@ -1324,8 +1335,8 @@ msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" msgstr "" -"Gönderilen dosyayı taşıma hatası, " -"[a@./Documentation.html#faq1_11@Documentation]SSS 1.11[/a]'e bakın" +"Gönderilen dosyayı taşıma hatası, [a@./Documentation." +"html#faq1_11@Documentation]SSS 1.11[/a]'e bakın" #: libraries/Index.class.php:428 tbl_relation.php:529 msgid "No index defined!" @@ -1337,7 +1348,7 @@ msgstr "İndeksler" #: libraries/Index.class.php:444 libraries/mult_submits.inc.php:103 #: libraries/tbl_properties.inc.php:519 tbl_structure.php:33 -#: tbl_structure.php:155 tbl_structure.php:159 tbl_structure.php:474 +#: tbl_structure.php:155 tbl_structure.php:159 tbl_structure.php:472 #: tbl_tracking.php:322 msgid "Unique" msgstr "Eşsiz" @@ -1380,8 +1391,8 @@ msgstr "" "İndeks %1$s ve %2$s eşit görünüyor ve bunlardan birinin silinmesi mümkün " "olabilir." -#: libraries/List_Database.class.php:431 libraries/server_links.inc.php:41 -#: server_databases.php:88 server_privileges.php:1660 +#: libraries/List_Database.class.php:431 libraries/server_links.inc.php:42 +#: server_databases.php:88 server_privileges.php:1680 #: setup/lib/messages.inc.php:110 test/theme.php:93 msgid "Databases" msgstr "Veritabanları" @@ -1548,7 +1559,7 @@ msgstr "Parola:" msgid "Server Choice" msgstr "Sunucu Seçimi" -#: libraries/auth/cookie.auth.lib.php:320 libraries/header.inc.php:59 +#: libraries/auth/cookie.auth.lib.php:320 libraries/header.inc.php:63 msgid "Cookies must be enabled past this point." msgstr "Bu kısmı geçmek için tanımlama bilgileri (cookies) açık olmalı." @@ -1630,7 +1641,7 @@ msgstr "" "Gerekli uzantılar yüklenmiş görünmesine rağmen, ne iconv, ne libinconv, ne " "de recode_string işlevi kullanılamadı. PHP yapılandırmanızı kontrol edin." -#: libraries/common.inc.php:583 +#: libraries/common.inc.php:587 msgid "" "phpMyAdmin was unable to read your configuration file!
This might " "happen if PHP finds a parse error in it or PHP cannot find the file.
Eğer boş bir sayfa " "karşınıza çıkıyorsa, her şey yolunda demektir." -#: libraries/common.inc.php:594 +#: libraries/common.inc.php:598 #, php-format -#| msgid "Could not load default configuration from: \"%1$s\"" msgid "Could not load default configuration from: %1$s" msgstr "Varsayılan yapılandırma bundan yüklenemedi: %1$s" -#: libraries/common.inc.php:599 +#: libraries/common.inc.php:603 msgid "" "The $cfg['PmaAbsoluteUri'] directive MUST be set in your " "configuration file!" @@ -1660,30 +1670,29 @@ msgstr "" "$cfg['PmaAbsoluteUri'] talimatı yapılandırma dosyanız içinde " "AYARLANMAK zorundadır!" -#: libraries/common.inc.php:629 +#: libraries/common.inc.php:633 #, php-format -#| msgid "Invalid server index: \"%s\"" msgid "Invalid server index: %s" msgstr "Geçersiz sunucu indeksi: %s" -#: libraries/common.inc.php:636 +#: libraries/common.inc.php:640 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" "%1$s sunucusu için geçersiz anamakine. Lütfen yapılandırmanızı gözden " "geçirin." -#: libraries/common.inc.php:645 libraries/header.inc.php:96 +#: libraries/common.inc.php:649 libraries/header.inc.php:100 #: libraries/select_server.lib.php:41 libraries/select_server.lib.php:47 #: main.php:185 test/theme.php:57 msgid "Server" msgstr "Sunucu" -#: libraries/common.inc.php:823 +#: libraries/common.inc.php:827 msgid "Invalid authentication method set in configuration:" msgstr "Yapılandırma içinde geçersiz kimlik denetimi yöntemi ayarı:" -#: libraries/common.inc.php:926 +#: libraries/common.inc.php:930 #, php-format msgid "You should upgrade to %s %s or later." msgstr "%s %s veya sonrasına yükseltmelisiniz." @@ -1757,7 +1766,6 @@ msgid "Inline edit of this query" msgstr "Bu sorguyu sıralı düzenle" #: libraries/common.lib.php:1280 -#| msgid "Engines" msgid "Inline" msgstr "Sıralı" @@ -1815,45 +1823,45 @@ msgstr "." msgid "%B %d, %Y at %I:%M %p" msgstr "%d %B %Y, %H:%M:%S" -#: libraries/common.lib.php:1907 +#: libraries/common.lib.php:1911 #, 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:2322 libraries/common.lib.php:2325 +#: libraries/common.lib.php:2326 libraries/common.lib.php:2329 #: libraries/display_tbl.lib.php:290 server_status.php:719 msgid "Begin" msgstr "Yukarı" -#: libraries/common.lib.php:2323 libraries/common.lib.php:2326 +#: libraries/common.lib.php:2327 libraries/common.lib.php:2330 #: libraries/display_tbl.lib.php:291 server_binlog.php:168 #: server_binlog.php:170 msgid "Previous" msgstr "Önceki" -#: libraries/common.lib.php:2354 libraries/common.lib.php:2357 +#: libraries/common.lib.php:2358 libraries/common.lib.php:2361 #: libraries/display_tbl.lib.php:353 msgid "End" msgstr "Son" -#: libraries/common.lib.php:2430 +#: libraries/common.lib.php:2434 #, php-format msgid "Jump to database "%s"." msgstr ""%s" veritabanına git." -#: libraries/common.lib.php:2450 +#: libraries/common.lib.php:2454 #, 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:2830 libraries/common.lib.php:2837 +#: libraries/common.lib.php:2834 libraries/common.lib.php:2841 #: libraries/db_links.inc.php:68 libraries/export/sql.php:25 -#: libraries/import/sql.php:18 libraries/server_links.inc.php:45 +#: libraries/import/sql.php:18 libraries/server_links.inc.php:46 #: libraries/tbl_links.inc.php:60 querywindow.php:99 test/theme.php:97 msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2839 libraries/db_links.inc.php:104 +#: libraries/common.lib.php:2843 libraries/db_links.inc.php:104 #: libraries/tbl_links.inc.php:95 libraries/tbl_links.inc.php:117 #: view_operations.php:89 msgid "Operations" @@ -1902,15 +1910,15 @@ msgstr "Sorgu" msgid "Designer" msgstr "Tasarımcı" -#: libraries/db_links.inc.php:98 libraries/server_links.inc.php:88 +#: libraries/db_links.inc.php:98 libraries/server_links.inc.php:89 #: libraries/tbl_links.inc.php:91 pmd_pdf.php:84 pmd_pdf.php:110 #: setup/frames/menu.inc.php:21 msgid "Import" msgstr "İçeri Aktar" -#: libraries/db_links.inc.php:111 libraries/server_links.inc.php:66 -#: server_privileges.php:111 server_privileges.php:1722 -#: server_privileges.php:2071 test/theme.php:117 +#: libraries/db_links.inc.php:111 libraries/server_links.inc.php:67 +#: server_privileges.php:112 server_privileges.php:1742 +#: server_privileges.php:2092 test/theme.php:117 msgid "Privileges" msgstr "Yetkiler" @@ -1931,7 +1939,7 @@ msgstr "" "a]'e bakın" #: libraries/db_structure.lib.php:69 server_databases.php:142 -#: tbl_printview.php:336 tbl_structure.php:682 +#: tbl_printview.php:336 tbl_structure.php:680 msgid "Overhead" msgstr "Ek Yük" @@ -1950,7 +1958,7 @@ msgstr "Sunucu yanıt vermiyor" msgid "(or the local MySQL server's socket is not correctly configured)" msgstr "(ya da yerel MySQL sunucusunun soketi doğru olarak yapılandırılmadı)" -#: libraries/dbi/mysql.dbi.lib.php:362 tbl_structure.php:608 +#: libraries/dbi/mysql.dbi.lib.php:362 tbl_structure.php:606 msgid "Details..." msgstr "Ayrıntılar..." @@ -1960,22 +1968,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:807 +#: libraries/replication_gui.lib.php:345 server_privileges.php:808 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:796 -#: server_privileges.php:800 server_privileges.php:811 -#: server_privileges.php:1538 server_synchronize.php:1175 +#: libraries/replication_gui.lib.php:349 server_privileges.php:797 +#: server_privileges.php:801 server_privileges.php:812 +#: server_privileges.php:1558 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:815 server_privileges.php:818 +#: server_privileges.php:816 server_privileges.php:819 msgid "Re-type" msgstr "Yeniden gir" @@ -1984,17 +1992,16 @@ msgid "Password Hashing" msgstr "Parola Hesaplanıyor" #: libraries/display_change_password.lib.php:66 -#| msgid "MySQL 4.0 compatible" 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:822 +#: libraries/replication_gui.lib.php:360 server_privileges.php:823 msgid "Generate Password" msgstr "Parola Üret" #: libraries/display_change_password.lib.php:75 -#: libraries/replication_gui.lib.php:363 server_privileges.php:825 +#: libraries/replication_gui.lib.php:363 server_privileges.php:826 msgid "Generate" msgstr "Üret" @@ -2007,13 +2014,12 @@ msgstr "Yeni veritabanı oluştur" msgid "Create" msgstr "Oluştur" -#: libraries/display_create_database.lib.php:40 server_privileges.php:113 -#: server_privileges.php:1427 server_replication.php:35 +#: libraries/display_create_database.lib.php:40 server_privileges.php:114 +#: server_privileges.php:1447 server_replication.php:35 msgid "No Privileges" msgstr "Yetkiniz yok" #: libraries/display_create_table.lib.php:41 -#| msgid "Table must have at least one field." msgid "Table must have at least one column." msgstr "Tablonun en az bir sütunu olmalı." @@ -2023,7 +2029,6 @@ msgid "Create table on database %s" msgstr "%s veritabanında yeni tablo oluştur" #: libraries/display_create_table.lib.php:57 -#| msgid "Number of fields" msgid "Number of columns" msgstr "Sütun sayısı" @@ -2034,7 +2039,6 @@ msgstr "" #: 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 "%s satır dökümü, %s. satırdan başlıyor" @@ -2098,7 +2102,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:1875 server_processlist.php:75 +#: server_privileges.php:1895 server_processlist.php:75 msgid "None" msgstr "Hiçbiri" @@ -2193,7 +2197,6 @@ msgstr "" "aktarımı için iyi bir yol olabilir, ancak hareketleri kesebilir." #: 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 "Başlangıçtan atlanacak sorgu sayısı" @@ -2252,7 +2255,6 @@ msgid "%d is not valid row number." msgstr "%d geçerli bir satır sayısı değil." #: libraries/display_tbl.lib.php:310 -#| msgid "row(s) starting from record #" msgid "row(s) starting from row #" msgstr "satır, başlayacağı satır numarası" @@ -2294,7 +2296,7 @@ msgstr "Anahtara göre sırala" #: libraries/import/docsql.php:34 libraries/import/ldi.php:47 #: libraries/import/ods.php:30 libraries/import/sql.php:20 #: libraries/import/xls.php:26 libraries/import/xlsx.php:26 -#: libraries/import/xml.php:25 tbl_select.php:267 tbl_structure.php:753 +#: libraries/import/xml.php:25 tbl_select.php:267 tbl_structure.php:751 msgid "Options" msgstr "Seçenekler" @@ -2311,7 +2313,6 @@ msgid "Relational key" msgstr "Bağlantılı anahtar" #: libraries/display_tbl.lib.php:588 -#| msgid "Relational display field" msgid "Relational display column" msgstr "Bağlantılı görüntü sütunu" @@ -2370,7 +2371,7 @@ msgstr "Sorgu %01.4f san. sürdü" #: libraries/display_tbl.lib.php:2089 libraries/mult_submits.inc.php:113 #: querywindow.php:125 querywindow.php:129 querywindow.php:132 -#: tbl_structure.php:25 tbl_structure.php:150 tbl_structure.php:470 +#: tbl_structure.php:25 tbl_structure.php:150 tbl_structure.php:468 msgid "Change" msgstr "Değiştir" @@ -2440,7 +2441,7 @@ msgstr "Ara Bellek Havuzu Kullanımı" #: libraries/engines/innodb.lib.php:194 server_databases.php:137 #: server_databases.php:305 server_status.php:525 server_status.php:586 -#: server_status.php:607 tbl_printview.php:351 tbl_structure.php:696 +#: server_status.php:607 tbl_printview.php:351 tbl_structure.php:694 msgid "Total" msgstr "Toplam" @@ -2728,7 +2729,7 @@ msgstr "" "diğer taraftan yeniden adlandırılır ve bir sonraki en yüksek numara verilir." #: libraries/export/codegen.php:37 setup/lib/messages.inc.php:88 -#: tbl_printview.php:376 tbl_structure.php:737 +#: tbl_printview.php:376 tbl_structure.php:735 msgid "Format" msgstr "Biçim" @@ -2738,19 +2739,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 "Sütunu sonlandıran:" #: 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 "Sütunu kapsayan:" #: 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 "Sütunu dolduran:" @@ -2768,7 +2766,6 @@ msgid "Replace NULL by" msgstr "NULL'u bunla değiştir:" #: libraries/export/csv.php:26 libraries/export/excel.php:23 -#| msgid "Remove CRLF characters within fields" msgid "Remove CRLF characters within columns" msgstr "Sütunlardaki CRLF karakterlerini kaldır" @@ -2777,7 +2774,6 @@ msgstr "Sütunlardaki CRLF karakterlerini kaldır" #: 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 "İlk satır içine sütun adlarını koy" @@ -2797,8 +2793,8 @@ 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:576 server_replication.php:316 tbl_printview.php:317 -#: tbl_structure.php:665 +#: server_privileges.php:577 server_replication.php:316 tbl_printview.php:317 +#: tbl_structure.php:663 msgid "Data" msgstr "Veri" @@ -2847,9 +2843,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:731 -#: server_privileges.php:734 server_privileges.php:790 -#: server_privileges.php:1537 server_privileges.php:2069 +#: libraries/replication_gui.lib.php:329 server_privileges.php:732 +#: server_privileges.php:735 server_privileges.php:791 +#: server_privileges.php:1557 server_privileges.php:2090 #: server_processlist.php:55 server_synchronize.php:1159 msgid "Host" msgstr "Anamakine" @@ -2914,7 +2910,6 @@ msgid "Database export options" msgstr "Veritabanı dışarı aktarma seçenekleri" #: libraries/export/sql.php:80 -#| msgid "Enclose table and field names with backquotes" msgid "Enclose table and column names with backquotes" msgstr "Tablo ve sütun adlarını ters tırnak ile kapsa" @@ -3043,7 +3038,7 @@ msgstr "İçerikleri dışarı aktar" msgid "Open new phpMyAdmin window" msgstr "Yeni phpMyAdmin penceresi aç" -#: libraries/header.inc.php:115 +#: libraries/header.inc.php:119 msgid "New table" msgstr "Yeni tablo" @@ -3136,7 +3131,6 @@ msgstr "CSV girişinin %d. satırında geçersiz biçim." #: 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 "CSV girişinde %d. satırda geçersiz sütun sayısı." @@ -3187,13 +3181,11 @@ msgstr "" #. l10n: This is currently used only in Japanese locales #: libraries/kanji-encoding.lib.php:143 -#| msgid "Recoding engine" msgid "Encoding conversion" msgstr "Şifreleme dönüştürme" #. l10n: This is currently used only in Japanese locales #: libraries/kanji-encoding.lib.php:145 -#| msgid "None" msgctxt "None encoding conversion" msgid "None" msgstr "Hiçbiri" @@ -3205,20 +3197,20 @@ msgstr "Kana'ya dönüştü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 +#: tbl_structure.php:471 msgid "Primary" msgstr "Birincil" #: libraries/mult_submits.inc.php:98 libraries/tbl_properties.inc.php:116 #: libraries/tbl_properties.inc.php:525 tbl_printview.php:326 #: tbl_structure.php:31 tbl_structure.php:154 tbl_structure.php:158 -#: tbl_structure.php:475 tbl_structure.php:673 +#: tbl_structure.php:473 tbl_structure.php:671 msgid "Index" msgstr "İndeks" #: libraries/mult_submits.inc.php:108 libraries/tbl_properties.inc.php:531 #: tbl_structure.php:35 tbl_structure.php:156 tbl_structure.php:160 -#: tbl_structure.php:478 +#: tbl_structure.php:476 msgid "Fulltext" msgstr "Tam metin" @@ -3527,8 +3519,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:711 -#: server_privileges.php:714 server_privileges.php:721 +#: libraries/replication_gui.lib.php:259 server_privileges.php:712 +#: server_privileges.php:715 server_privileges.php:722 #: server_synchronize.php:1171 msgid "User name" msgstr "Kullanıcı Adı" @@ -3552,7 +3544,7 @@ msgstr "Değişken" #: 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 +#: tbl_structure.php:727 msgid "Value" msgstr "Değer" @@ -3572,34 +3564,34 @@ msgstr "" msgid "Add slave replication user" msgstr "Slave kopya etme kullanıcısı ekle" -#: libraries/replication_gui.lib.php:254 server_privileges.php:716 +#: libraries/replication_gui.lib.php:254 server_privileges.php:717 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:717 -#: server_privileges.php:784 server_privileges.php:808 -#: server_privileges.php:1928 server_privileges.php:1958 +#: libraries/replication_gui.lib.php:346 server_privileges.php:718 +#: server_privileges.php:785 server_privileges.php:809 +#: server_privileges.php:1948 server_privileges.php:1978 msgid "Use text field" msgstr "Metin alanını kullan" -#: libraries/replication_gui.lib.php:302 server_privileges.php:764 +#: libraries/replication_gui.lib.php:302 server_privileges.php:765 msgid "Any host" msgstr "Herhangi anamakine" -#: libraries/replication_gui.lib.php:306 server_privileges.php:768 +#: libraries/replication_gui.lib.php:306 server_privileges.php:769 msgid "Local" msgstr "Yerel" -#: libraries/replication_gui.lib.php:312 server_privileges.php:773 +#: libraries/replication_gui.lib.php:312 server_privileges.php:774 msgid "This Host" msgstr "Bu Anamakine" -#: libraries/replication_gui.lib.php:318 server_privileges.php:779 +#: libraries/replication_gui.lib.php:318 server_privileges.php:780 msgid "Use Host Table" msgstr "Anamakine Tablosu kullan" -#: libraries/replication_gui.lib.php:331 server_privileges.php:792 +#: libraries/replication_gui.lib.php:331 server_privileges.php:793 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -3635,29 +3627,29 @@ msgstr "Bilinmeyen dil: %1$s." msgid "Servers" msgstr "Sunucular" -#: libraries/server_links.inc.php:53 server_engines.php:112 +#: libraries/server_links.inc.php:54 server_engines.php:112 #: server_engines.php:116 server_status.php:415 test/theme.php:105 msgid "Variables" msgstr "Değişkenler" -#: libraries/server_links.inc.php:57 test/theme.php:109 +#: libraries/server_links.inc.php:58 test/theme.php:109 msgid "Charsets" msgstr "Karakter grupları" -#: libraries/server_links.inc.php:61 test/theme.php:113 +#: libraries/server_links.inc.php:62 test/theme.php:113 msgid "Engines" msgstr "Motorlar" -#: libraries/server_links.inc.php:76 server_binlog.php:110 +#: libraries/server_links.inc.php:77 server_binlog.php:110 #: server_status.php:364 test/theme.php:121 msgid "Binary log" msgstr "Binari günlüğü" -#: libraries/server_links.inc.php:80 +#: libraries/server_links.inc.php:81 msgid "Processes" msgstr "İşlemler" -#: libraries/server_links.inc.php:92 server_synchronize.php:1092 +#: libraries/server_links.inc.php:93 server_synchronize.php:1092 #: server_synchronize.php:1100 msgid "Synchronize" msgstr "Eşitle" @@ -3695,7 +3687,6 @@ msgid "Run SQL query/queries on database %s" msgstr "%s veritabanı üzerinde SQL sorgusunu/sorgularını çalıştır" #: libraries/sql_query_form.lib.php:317 -#| msgid "Column names" msgid "Columns" msgstr "Sütun" @@ -3737,8 +3728,7 @@ msgid "" "below, if there is any, may also help you in diagnosing the problem" msgstr "" "SQL sorgunuzda bir hata olduğu görünüyor. MySQL sunucusu hata çıktısı " -"aşağıdadır, eğer varsa, sorunu teşhis etmenizde ayrıca size yardımcı " -"olabilir" +"aşağıdadır, eğer varsa, sorunu teşhis etmenizde ayrıca size yardımcı olabilir" #: libraries/sqlparser.lib.php:173 msgid "" @@ -3815,21 +3805,16 @@ msgid "Length/Values" msgstr "Uzunluk/Değerler" #: 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 " "a single quote (\"'\") amongst those values, precede it with a backslash " "(for example '\\\\xyz' or 'a\\'b')." msgstr "" -"Eğer sütun türü \"enum\" veya \"set\" ise lütfen değerleri bu biçimi kullanarak " -"girin: 'a','b','c'...
Eğer bu değerler arasına hep ters eğik çizgi " -"(\"\\\") veya tek tırnak (\"'\") koymanız gerekirse, önlerine ters eğik çizgi " -"koyun (örneğin '\\\\xyz' veya 'a\\'b')." +"Eğer sütun türü \"enum\" veya \"set\" ise lütfen değerleri bu biçimi " +"kullanarak girin: 'a','b','c'...
Eğer bu değerler arasına hep ters eğik " +"çizgi (\"\\\") veya tek tırnak (\"'\") koymanız gerekirse, önlerine ters " +"eğik çizgi koyun (örneğin '\\\\xyz' veya 'a\\'b')." #: libraries/tbl_properties.inc.php:106 msgid "" @@ -3870,7 +3855,6 @@ msgstr "" "(örneğin '\\\\xyz' veya 'a\\'b')." #: libraries/tbl_properties.inc.php:393 -#| msgid "None" msgctxt "for default" msgid "None" msgstr "Hiçbiri" @@ -3904,14 +3888,12 @@ msgstr "PARTITION tanımı" msgid "Save" msgstr "Kaydet" -#: libraries/tbl_properties.inc.php:780 tbl_structure.php:542 +#: libraries/tbl_properties.inc.php:780 tbl_structure.php:540 #, php-format -#| msgid "Add column(s)" msgid "Add %s column(s)" msgstr "%s sütun ekle" -#: libraries/tbl_properties.inc.php:784 tbl_structure.php:536 -#| msgid "You have to add at least one field." +#: libraries/tbl_properties.inc.php:784 tbl_structure.php:534 msgid "You have to add at least one column." msgstr "En az bir sütun eklemek zorundasınız." @@ -3920,11 +3902,6 @@ msgid "Event" msgstr "Olay" #: 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 " @@ -3959,15 +3936,6 @@ msgid "Displays a link to download this image." msgstr "Bu resmi indirme için bağlantı görüntüler." #: 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 " @@ -3980,25 +3948,14 @@ msgid "" msgstr "" "Biçimlendirilmiş tarih olarak ZAMAN, ZAMAN BİLGİSİ, TARİH veya sayısal unix " "zaman bilgisi sütununu görüntüler. İlk seçenek zaman bilgisine (Varsayılan: " -"0) eklenecek olan karşılık (saat cinsinden). İkinci seçeneği farklı " -"tarih/zaman biçimi dizgisini belirtmek için kullanın. Üçüncü seçenek yerel " -"tarihi veya bunun için UTC olanı (\"local\" veya \"utc\" dizgisi kullanın) " -"görmek istediğinizi belirler. Buna göre tarih biçimi farklı değere sahiptir " -"- \"local\" için PHP'nin strftime() işlevine belgelerden bakın ve \"utc\" ise " +"0) eklenecek olan karşılık (saat cinsinden). İkinci seçeneği farklı tarih/" +"zaman biçimi dizgisini belirtmek için kullanın. Üçüncü seçenek yerel tarihi " +"veya bunun için UTC olanı (\"local\" veya \"utc\" dizgisi kullanın) görmek " +"istediğinizi belirler. Buna göre tarih biçimi farklı değere sahiptir - " +"\"local\" için PHP'nin strftime() işlevine belgelerden bakın ve \"utc\" ise " "gmdate() işlevi kullanılarak olur." #: 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 " @@ -4013,19 +3970,16 @@ msgid "" msgstr "" "SADECE LINUX: Harici bir uygulama çalıştırır ve sütun verisini standart " "giriş yoluyla besler. Uygulamanın standart çıktısı döner. Düzgün HTML kodu " -"baskısı için varsayılan düzenlidir. Güvenlik nedeniyle " -"libraries/transformations/text_plain__external.inc.php dosyasını elle " -"düzenlemeli ve olmasını istediğiniz araçları listelemelisiniz. İlk seçenek " -"kullanmak istediğiniz program sayısı ve ikinci seçenek program için " -"parametrelerdir. Üçüncü seçenek, eğer 1'e ayarlanırsa, htmlspecialchars() " -"işlevi kullanılarak çıktıyı dönüştürecektir (Varsayılan 1). Dördüncü " -"seçenek, eğer 1'e ayarlanırsa, sözcük kaydırma korunacak ve tüm çıktı tek " -"bir satırda görünecektir (Varsayılan 1)." +"baskısı için varsayılan düzenlidir. Güvenlik nedeniyle libraries/" +"transformations/text_plain__external.inc.php dosyasını elle düzenlemeli ve " +"olmasını istediğiniz araçları listelemelisiniz. İlk seçenek kullanmak " +"istediğiniz program sayısı ve ikinci seçenek program için parametrelerdir. " +"Üçüncü seçenek, eğer 1'e ayarlanırsa, htmlspecialchars() işlevi kullanılarak " +"çıktıyı dönüştürecektir (Varsayılan 1). Dördüncü seçenek, eğer 1'e " +"ayarlanırsa, sözcük kaydırma korunacak ve tüm çıktı tek bir satırda " +"görünecektir (Varsayılan 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." @@ -4034,10 +3988,6 @@ msgstr "" "görüntüler. Bu, geçerli HTML içerdiği var sayılan sütundur." #: 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 " @@ -4048,18 +3998,14 @@ msgstr "" "seçenekler piksel cinsinden genişlik ve yüksekliktir." #: 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 "" -"Bir bağlantı görüntüler; sütun, dosya adını içerir. İlk seçenek " -"\"http://www.example.com/\" gibi bir URL ön ekidir. İkinci seçenek bağlantı " -"için başlıktır." +"Bir bağlantı görüntüler; sütun, dosya adını içerir. İlk seçenek \"http://www." +"example.com/\" gibi bir URL ön ekidir. İkinci seçenek bağlantı için " +"başlıktır." #: libraries/transformations/text_plain__longToIpv4.inc.php:10 msgid "" @@ -4121,8 +4067,8 @@ msgstr "Sıfırla" msgid "Protocol version" msgstr "Protokol sürümü" -#: main.php:189 server_privileges.php:1389 server_privileges.php:1536 -#: server_privileges.php:1650 server_privileges.php:2068 +#: main.php:189 server_privileges.php:1406 server_privileges.php:1556 +#: server_privileges.php:1670 server_privileges.php:2089 #: server_processlist.php:54 msgid "User" msgstr "Kullanıcı" @@ -4261,7 +4207,6 @@ msgid "Clear" msgstr "Temizle" #: navigation.php:336 navigation.php:337 -#| msgid "Create table" msgctxt "short form" msgid "Create table" msgstr "Tablo oluştur" @@ -4284,12 +4229,10 @@ msgid "Create a page" msgstr "Yeni bir sayfa oluştur" #: pdf_pages.php:310 -#| msgid "Page number:" msgid "Page name" msgstr "Sayfa adı" #: pdf_pages.php:314 -#| msgid "Automatic layout" msgid "Automatic layout based on" msgstr "Otomatik yerleşim tabanı" @@ -4315,7 +4258,6 @@ msgstr "" #: pdf_schema.php:636 #, php-format -#| msgid "The \"%s\" table doesn't exist!" msgid "The %s table doesn't exist!" msgstr "%s tablosu yok!" @@ -4326,7 +4268,6 @@ msgstr "Lütfen %s tablosu için koordinatları yapılandırın" #: pdf_schema.php:995 #, php-format -#| msgid "Schema of the \"%s\" database - Page %s" msgid "Schema of the %s database - Page %s" msgstr "%s veritabanının şeması - Sayfa %s" @@ -4420,18 +4361,14 @@ msgid "To select relation, click :" msgstr "İlişkiyi seçmek için buraya tıklayın :" #: 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 " "appropriate column name." msgstr "" -"Görüntü sütunu pembe ile gösterilir. Alanı, görüntü sütunu olarak " -"ayarlamak/ayarı kaldırmak için \"Görüntülemek için sütun seç\" simgesine " -"tıklayın, sonrada uygun sütun adı üzerine tıklayın." +"Görüntü sütunu pembe ile gösterilir. Alanı, görüntü sütunu olarak ayarlamak/" +"ayarı kaldırmak için \"Görüntülemek için sütun seç\" simgesine tıklayın, " +"sonrada uygun sütun adı üzerine tıklayın." #: pmd_pdf.php:63 msgid "Page has been created" @@ -4531,17 +4468,14 @@ msgid "Slave replication" msgstr "Slave kopya etme" #: server_databases.php:230 -#| msgid "Go to database" msgid "Jump to database" msgstr "Veritabanına git" #: server_databases.php:267 -#| msgid "Master replication" msgid "Not replicated" msgstr "Kopya edilmedi" #: server_databases.php:273 -#| msgid "Replication" msgid "Replicated" msgstr "Kopya edildi" @@ -4578,116 +4512,116 @@ msgstr "Depolama Motorları" msgid "View dump (schema) of databases" msgstr "Veritabanlarının dökümünü (şemasını) göster" -#: server_privileges.php:24 server_privileges.php:266 +#: server_privileges.php:25 server_privileges.php:267 msgid "Includes all privileges except GRANT." msgstr "GRANT hariç tüm yetkileri içerir." -#: server_privileges.php:25 server_privileges.php:192 -#: server_privileges.php:515 +#: server_privileges.php:26 server_privileges.php:193 +#: server_privileges.php:516 msgid "Allows altering the structure of existing tables." msgstr "Varolan tabloların yapısının değiştirilmesine izin verir." -#: server_privileges.php:26 server_privileges.php:208 -#: server_privileges.php:521 +#: server_privileges.php:27 server_privileges.php:209 +#: server_privileges.php:522 msgid "Allows altering and dropping stored routines." msgstr "Depolanan yordamların değiştirilmesine ve kaldırılmasına izin verir." -#: server_privileges.php:27 server_privileges.php:184 -#: server_privileges.php:514 +#: server_privileges.php:28 server_privileges.php:185 +#: server_privileges.php:515 msgid "Allows creating new databases and tables." msgstr "Yeni veritabanları ve tabloların oluşturulmasına izin verir." -#: server_privileges.php:28 server_privileges.php:207 -#: server_privileges.php:520 +#: server_privileges.php:29 server_privileges.php:208 +#: server_privileges.php:521 msgid "Allows creating stored routines." msgstr "Depolanan yordamların oluşturulmasına izin verir." -#: server_privileges.php:29 server_privileges.php:514 +#: server_privileges.php:30 server_privileges.php:515 msgid "Allows creating new tables." msgstr "Yeni tabloların oluşturulmasına izin verir." -#: server_privileges.php:30 server_privileges.php:195 -#: server_privileges.php:518 +#: server_privileges.php:31 server_privileges.php:196 +#: server_privileges.php:519 msgid "Allows creating temporary tables." msgstr "Geçici tablolara oluşturulmasına izin verir." -#: server_privileges.php:31 server_privileges.php:209 -#: server_privileges.php:554 +#: server_privileges.php:32 server_privileges.php:210 +#: server_privileges.php:555 msgid "Allows creating, dropping and renaming user accounts." msgstr "" "Kullanıcı hesaplarının oluşturulmasına, kaldırılmasına ve yeniden " "adlandırılmasına izin verir." -#: server_privileges.php:32 server_privileges.php:199 -#: server_privileges.php:203 server_privileges.php:526 -#: server_privileges.php:530 +#: server_privileges.php:33 server_privileges.php:200 +#: server_privileges.php:204 server_privileges.php:527 +#: server_privileges.php:531 msgid "Allows creating new views." msgstr "Yeni görünümlerin oluşturulmasına izin verir." -#: server_privileges.php:33 server_privileges.php:183 -#: server_privileges.php:506 +#: server_privileges.php:34 server_privileges.php:184 +#: server_privileges.php:507 msgid "Allows deleting data." msgstr "Veri silinmesine izin verir." -#: server_privileges.php:34 server_privileges.php:185 -#: server_privileges.php:517 +#: server_privileges.php:35 server_privileges.php:186 +#: server_privileges.php:518 msgid "Allows dropping databases and tables." msgstr "Veritabanları ve tabloların kaldırılmasına izin verir." -#: server_privileges.php:35 server_privileges.php:517 +#: server_privileges.php:36 server_privileges.php:518 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 +#: server_privileges.php:37 server_privileges.php:201 +#: server_privileges.php:535 msgid "Allows to set up events for the event scheduler" msgstr "Olay zamanlayıcısı için olayları ayarlamaya izin verir" -#: server_privileges.php:37 server_privileges.php:210 -#: server_privileges.php:522 +#: server_privileges.php:38 server_privileges.php:211 +#: server_privileges.php:523 msgid "Allows executing stored routines." msgstr "Depolanan yordamların yürütülmesine izin verir." -#: server_privileges.php:38 server_privileges.php:189 -#: server_privileges.php:509 +#: server_privileges.php:39 server_privileges.php:190 +#: server_privileges.php:510 msgid "Allows importing data from and exporting data into files." msgstr "Verinin içeri ve dışarı aktarılmasına izin verir." -#: server_privileges.php:39 server_privileges.php:540 +#: server_privileges.php:40 server_privileges.php:541 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "Yetki tablolarını yeniden yüklemeden yeni kullanıcıların ve yetkilerin " "eklenmesine izin verir." -#: server_privileges.php:40 server_privileges.php:191 -#: server_privileges.php:516 +#: server_privileges.php:41 server_privileges.php:192 +#: server_privileges.php:517 msgid "Allows creating and dropping indexes." msgstr "İndekslerin oluşturulmasına ve kaldırılmasına izin verir." -#: server_privileges.php:41 server_privileges.php:181 -#: server_privileges.php:442 server_privileges.php:504 +#: server_privileges.php:42 server_privileges.php:182 +#: server_privileges.php:443 server_privileges.php:505 msgid "Allows inserting and replacing data." msgstr "Verinin eklenmesine ve yerinin değiştirilmesine izin verir." -#: server_privileges.php:42 server_privileges.php:196 -#: server_privileges.php:549 +#: server_privileges.php:43 server_privileges.php:197 +#: server_privileges.php:550 msgid "Allows locking tables for the current thread." msgstr "Şu anki işlem için tabloların kilitlenmesine izin verir." -#: server_privileges.php:43 server_privileges.php:646 -#: server_privileges.php:648 +#: server_privileges.php:44 server_privileges.php:647 +#: server_privileges.php:649 msgid "Limits the number of new connections the user may open per hour." msgstr "Kullanıcının saat başına açabileceği yeni bağlantı sayısını sınırlar." -#: server_privileges.php:44 server_privileges.php:634 -#: server_privileges.php:636 +#: server_privileges.php:45 server_privileges.php:635 +#: server_privileges.php:637 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" "Kullanıcının saat başına sunucuya gönderebileceği sorgu sayısını sınırlar." -#: server_privileges.php:45 server_privileges.php:640 -#: server_privileges.php:642 +#: server_privileges.php:46 server_privileges.php:641 +#: server_privileges.php:643 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -4695,61 +4629,61 @@ msgstr "" "Kullanıcının saat başına çalıştırabileceği herhangi bir tabloyu veya " "veritabanını değiştiren komut sayısını sınırlar." -#: server_privileges.php:46 server_privileges.php:652 -#: server_privileges.php:654 +#: server_privileges.php:47 server_privileges.php:653 +#: server_privileges.php:655 msgid "Limits the number of simultaneous connections the user may have." msgstr "Kullanıcının eşzamanlı bağlantı sayısını sınırlar." -#: server_privileges.php:47 server_privileges.php:188 -#: server_privileges.php:544 +#: server_privileges.php:48 server_privileges.php:189 +#: server_privileges.php:545 msgid "Allows viewing processes of all users" msgstr "Tüm kullanıcıların işlemlerini görüntülemeye izin verir" -#: server_privileges.php:48 server_privileges.php:190 -#: server_privileges.php:448 server_privileges.php:550 +#: server_privileges.php:49 server_privileges.php:191 +#: server_privileges.php:449 server_privileges.php:551 msgid "Has no effect in this MySQL version." msgstr "Bu MySQL sürümünde etkisi yoktur." -#: server_privileges.php:49 server_privileges.php:186 -#: server_privileges.php:545 +#: server_privileges.php:50 server_privileges.php:187 +#: server_privileges.php:546 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" "Sunucu ayarlarının yeniden yüklenmesine ve sunucunun önbelleğinin " "temizlenmesine izin verir." -#: server_privileges.php:50 server_privileges.php:198 -#: server_privileges.php:552 +#: server_privileges.php:51 server_privileges.php:199 +#: server_privileges.php:553 msgid "Allows the user to ask where the slaves / masters are." msgstr "" "Kullanıcılara slave / master'ların nerede olduğunu sormasına izin verir." -#: server_privileges.php:51 server_privileges.php:197 -#: server_privileges.php:553 +#: server_privileges.php:52 server_privileges.php:198 +#: server_privileges.php:554 msgid "Needed for the replication slaves." msgstr "Kopya edilen slave'ler için gereklidir." -#: server_privileges.php:52 server_privileges.php:180 -#: server_privileges.php:439 server_privileges.php:503 +#: server_privileges.php:53 server_privileges.php:181 +#: server_privileges.php:440 server_privileges.php:504 msgid "Allows reading data." msgstr "Veri okunmasına izin verir." -#: server_privileges.php:53 server_privileges.php:193 -#: server_privileges.php:547 +#: server_privileges.php:54 server_privileges.php:194 +#: server_privileges.php:548 msgid "Gives access to the complete list of databases." msgstr "Bütün veritabanı listesine erişim verir." -#: server_privileges.php:54 server_privileges.php:204 -#: server_privileges.php:206 server_privileges.php:519 +#: server_privileges.php:55 server_privileges.php:205 +#: server_privileges.php:207 server_privileges.php:520 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "SHOW CREATE VIEW sorgularının yapılmasına izin verir." -#: server_privileges.php:55 server_privileges.php:187 -#: server_privileges.php:546 +#: server_privileges.php:56 server_privileges.php:188 +#: server_privileges.php:547 msgid "Allows shutting down the server." msgstr "Sunucunun kapatılmasına izin ver." -#: server_privileges.php:56 server_privileges.php:194 -#: server_privileges.php:543 +#: server_privileges.php:57 server_privileges.php:195 +#: server_privileges.php:544 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -4759,154 +4693,152 @@ msgstr "" "değişkenleri ayarlamak veya diğer kullanıcıların işlemlerini sonlandırmak " "gibi pek çok yönetimsel işlemler için gereklidir." -#: server_privileges.php:57 server_privileges.php:201 -#: server_privileges.php:535 +#: server_privileges.php:58 server_privileges.php:202 +#: server_privileges.php:536 msgid "Allows creating and dropping triggers" msgstr "Tetikleyicileri oluşturmaya ve kaldırmaya izin verir" -#: server_privileges.php:58 server_privileges.php:182 -#: server_privileges.php:445 server_privileges.php:505 +#: server_privileges.php:59 server_privileges.php:183 +#: server_privileges.php:446 server_privileges.php:506 msgid "Allows changing data." msgstr "Veri değiştirilmesine izin ver." -#: server_privileges.php:59 server_privileges.php:260 +#: server_privileges.php:60 server_privileges.php:261 msgid "No privileges." msgstr "Yetkiniz yok." -#: server_privileges.php:302 server_privileges.php:303 -#| msgid "None" +#: server_privileges.php:303 server_privileges.php:304 msgctxt "None privileges" msgid "None" msgstr "Hiçbiri" -#: server_privileges.php:431 server_privileges.php:566 -#: server_privileges.php:1718 server_privileges.php:1724 +#: server_privileges.php:432 server_privileges.php:567 +#: server_privileges.php:1738 server_privileges.php:1744 msgid "Table-specific privileges" msgstr "Tabloya özgü yetkiler" -#: server_privileges.php:432 server_privileges.php:574 -#: server_privileges.php:1540 +#: server_privileges.php:433 server_privileges.php:575 +#: server_privileges.php:1560 msgid " Note: MySQL privilege names are expressed in English " msgstr " Not: MySQL yetki adları İngilizce olarak belirtilir " -#: server_privileges.php:563 server_privileges.php:1539 +#: server_privileges.php:564 server_privileges.php:1559 msgid "Global privileges" msgstr "Genel yetkiler" -#: server_privileges.php:565 server_privileges.php:1718 +#: server_privileges.php:566 server_privileges.php:1738 msgid "Database-specific privileges" msgstr "Veritabanına özgü yetkiler" -#: server_privileges.php:610 +#: server_privileges.php:611 msgid "Administration" msgstr "Yönetim" -#: server_privileges.php:630 +#: server_privileges.php:631 msgid "Resource limits" msgstr "Kaynak sınırları" -#: server_privileges.php:631 +#: server_privileges.php:632 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "Not: Bu seçeneklerin 0 (sıfır)'a ayarlanması sınırı kaldırır." -#: server_privileges.php:708 +#: server_privileges.php:709 msgid "Login Information" msgstr "Oturum Açma Bilgisi" -#: server_privileges.php:802 +#: server_privileges.php:803 msgid "Do not change the password" msgstr "Parolayı değiştirme" -#: server_privileges.php:843 server_privileges.php:2205 -#| msgid "No user(s) found." +#: server_privileges.php:844 server_privileges.php:2226 msgid "No user found." msgstr "Kullanıcı bulunamadı." -#: server_privileges.php:887 +#: server_privileges.php:888 #, php-format msgid "The user %s already exists!" msgstr "%s kullanıcısı zaten var!" -#: server_privileges.php:970 +#: server_privileges.php:971 msgid "You have added a new user." msgstr "Yeni bir kullanıcı eklediniz." -#: server_privileges.php:1191 +#: server_privileges.php:1196 #, php-format msgid "You have updated the privileges for %s." msgstr "%s için yetkileri güncellediniz." -#: server_privileges.php:1215 +#: server_privileges.php:1220 #, php-format msgid "You have revoked the privileges for %s" msgstr "%s için yetkileri geri aldınız" -#: server_privileges.php:1251 +#: server_privileges.php:1256 #, 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:1271 +#: server_privileges.php:1276 #, php-format msgid "Deleting %s" msgstr "%s siliniyor" -#: server_privileges.php:1282 +#: server_privileges.php:1287 msgid "No users selected for deleting!" msgstr "Silmek için kullanıcı seçilmedi!" -#: server_privileges.php:1285 +#: server_privileges.php:1290 msgid "Reloading the privileges" msgstr "Yetkiler yeniden yükleniyor" -#: server_privileges.php:1300 +#: server_privileges.php:1305 msgid "The selected users have been deleted successfully." msgstr "Seçili kullanıcılar başarılı olarak silindi." -#: server_privileges.php:1335 +#: server_privileges.php:1344 msgid "The privileges were reloaded successfully." msgstr "Yetkiler başarılı olarak yüklendi." -#: server_privileges.php:1363 server_privileges.php:1649 +#: server_privileges.php:1380 server_privileges.php:1669 msgid "Edit Privileges" msgstr "Yetkileri düzenle" -#: server_privileges.php:1372 +#: server_privileges.php:1389 msgid "Revoke" msgstr "Geri al" -#: server_privileges.php:1404 +#: server_privileges.php:1424 msgid "User overview" msgstr "Kullanıcı gözden geçirme" -#: server_privileges.php:1541 server_privileges.php:1723 -#: server_privileges.php:2072 +#: server_privileges.php:1561 server_privileges.php:1743 +#: server_privileges.php:2093 msgid "Grant" msgstr "Onayla" -#: server_privileges.php:1560 server_privileges.php:2162 +#: server_privileges.php:1580 server_privileges.php:2183 msgid "Any" msgstr "Herhangi" -#: server_privileges.php:1609 server_privileges.php:1633 -#: server_privileges.php:2027 server_privileges.php:2216 +#: server_privileges.php:1629 server_privileges.php:1653 +#: server_privileges.php:2048 server_privileges.php:2237 msgid "Add a new User" msgstr "Yeni Kullanıcı ekle" -#: server_privileges.php:1614 +#: server_privileges.php:1634 msgid "Remove selected users" msgstr "Seçili kullanıcıları kaldır" -#: server_privileges.php:1617 +#: server_privileges.php:1637 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:1618 server_privileges.php:1619 -#: server_privileges.php:1620 +#: server_privileges.php:1638 server_privileges.php:1639 +#: server_privileges.php:1640 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:1636 +#: server_privileges.php:1656 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -4919,48 +4851,48 @@ msgstr "" "sunucunun kullandığı yetkilerden farklı olabilir. Bu durumda devam etmeden " "önce %syetkileri yeniden yüklemeniz%s gerekir." -#: server_privileges.php:1684 +#: server_privileges.php:1704 msgid "The selected user was not found in the privilege table." msgstr "Seçili kullanıcı yetki tablosunda bulunamadı." -#: server_privileges.php:1724 +#: server_privileges.php:1744 msgid "Column-specific privileges" msgstr "Sütuna özgü yetkiler" -#: server_privileges.php:1925 +#: server_privileges.php:1945 msgid "Add privileges on the following database" msgstr "Aşağıdaki veritabanına yetkileri ekle" -#: server_privileges.php:1943 +#: server_privileges.php:1963 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:1946 +#: server_privileges.php:1966 msgid "Add privileges on the following table" msgstr "Aşağıdaki tabloya yetkileri ekle" -#: server_privileges.php:2003 +#: server_privileges.php:2023 msgid "Change Login Information / Copy User" msgstr "Otutum Açma Bilgisini değiştir / Kullanıcıyı kopyala" -#: server_privileges.php:2006 +#: server_privileges.php:2026 msgid "Create a new user with the same privileges and ..." msgstr "Aynı yetkilerle yeni bir kullanıcı oluştur ve ..." -#: server_privileges.php:2008 +#: server_privileges.php:2028 msgid "... keep the old one." msgstr "... eski olanı sakla." -#: server_privileges.php:2009 +#: server_privileges.php:2029 msgid " ... delete the old one from the user tables." msgstr " ... eski olanı kullanıcı tablolarından sil." -#: server_privileges.php:2010 +#: server_privileges.php:2030 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:2011 +#: server_privileges.php:2031 msgid "" " ... delete the old one from the user tables and reload the privileges " "afterwards." @@ -4968,43 +4900,42 @@ msgstr "" " ... eski olanı kullanıcı tablolarından sil ve sonra da yetkileri yeniden " "yükle." -#: server_privileges.php:2033 +#: server_privileges.php:2054 msgid "Database for user" msgstr "Kullanıcı için veritabanı" -#: server_privileges.php:2037 -#| msgid "None" +#: server_privileges.php:2058 msgctxt "Create none database for user" msgid "None" msgstr "Hiçbiri" -#: server_privileges.php:2038 +#: server_privileges.php:2059 msgid "Create database with same name and grant all privileges" msgstr "Aynı isimle veritabanı oluştur ve tüm yetkileri ver" -#: server_privileges.php:2039 +#: server_privileges.php:2060 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "Joker isimlere tüm yetkileri ver (kullanıcıadı\\_%)" -#: server_privileges.php:2042 +#: server_privileges.php:2063 #, php-format msgid "Grant all privileges on database "%s"" msgstr ""%s" veritabanı üzerindeki tüm yetkileri ver" -#: server_privileges.php:2065 +#: server_privileges.php:2086 #, php-format msgid "Users having access to "%s"" msgstr ""%s" veritabanına erişimi olan kullanıcılar" -#: server_privileges.php:2173 +#: server_privileges.php:2194 msgid "global" msgstr "genel" -#: server_privileges.php:2175 +#: server_privileges.php:2196 msgid "database-specific" msgstr "Veritabanına özgü" -#: server_privileges.php:2177 +#: server_privileges.php:2198 msgid "wildcard" msgstr "joker" @@ -5179,7 +5110,6 @@ msgid "Error management:" msgstr "Hata yönetimi:" #: server_replication.php:334 -#| msgid "Skipping error(s) might lead into unsynchronized master and slave!" msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "Hataları atlamak master ve slave'i eşitlenmemeye sürükleyebilir!" @@ -5910,7 +5840,6 @@ msgid "Show processes" msgstr "İşlemleri göster" #: server_status.php:455 -#| msgid "Reset" msgctxt "for Show status" msgid "Reset" msgstr "Sıfırla" @@ -5921,7 +5850,6 @@ 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:471 -#| msgid "This server is configured as master in a replication process." msgid "" "This MySQL server works as master and slave in replication process." @@ -5930,24 +5858,18 @@ msgstr "" "slave olarak çalışır." #: server_status.php:473 -#| msgid "This server is configured as master in a replication process." msgid "This MySQL server works as master in replication process." msgstr "" "Bu MySQL sunucusu kopya etme işlemi sırasında master olarak " "çalışır." #: server_status.php:475 -#| msgid "This server is configured as master in a replication process." msgid "This MySQL server works as slave in replication process." msgstr "" "Bu MySQL sunucusu kopya etme işlemi sırasında slave olarak " "çalışır." #: server_status.php:477 -#| msgid "" -#| "This MySQL server works as %s in replication process. For further " -#| "information about replication status on the server, please visit the replication section." msgid "" "For further information about replication status on the server, please visit " "the replication section." @@ -6119,13 +6041,11 @@ msgid "Enter manually" msgstr "Elle giriş" #: server_synchronize.php:1123 -#| msgid "Insecure connection" msgid "Current connection" msgstr "Şu anki bağlantı" #: server_synchronize.php:1152 #, php-format -#| msgid "Configuration file" msgid "Configuration: %s" msgstr "Yapılandırma: %s" @@ -6288,11 +6208,10 @@ msgstr "" "Bu [a@?page=form&formset=features#tab_Security]seçenek[/a] " "etkisizleştirilmedikçe saldırganların herhangi bir MySQL sunucusuna " "bruteforce yöntemiyle oturum açmasına izin verecektir. Eğer bunun gerekli " -"olduğunu düşünüyorsanız, " -"[a@?page=form&formset=features#tab_Security]güvenilir proksi listesi[/a] " -"kullanın. Ancak, IP-tabanlı koruma eğer IP'niz, sizinde dahil olduğunuz " -"binlerce kullanıcıya sahip ve bağlı olduğunuz bir ISS'e aitse güvenilir " -"olmayabilir." +"olduğunu düşünüyorsanız, [a@?page=form&formset=features#tab_Security]" +"güvenilir proksi listesi[/a] kullanın. Ancak, IP-tabanlı koruma eğer IP'niz, " +"sizinde dahil olduğunuz binlerce kullanıcıya sahip ve bağlı olduğunuz bir " +"ISS'e aitse güvenilir olmayabilir." #: setup/lib/messages.inc.php:19 msgid "Allow login to any MySQL server" @@ -6388,10 +6307,6 @@ msgstr "" "görüntülemenize izin verecektir." #: 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[/" @@ -6402,7 +6317,6 @@ msgstr "" "izin verir, [kbd]metinalanı[/kbd] - sütunlarda yeni satırlara izin verir" #: setup/lib/messages.inc.php:36 -#| msgid "CHAR fields editing" msgid "CHAR columns editing" msgstr "CHAR sütununu düzenleme" @@ -7141,9 +7055,6 @@ msgid "GZip output buffering" msgstr "GZip çıktı arabellekleme" #: 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" @@ -7168,12 +7079,10 @@ msgid "Iconic table operations" msgstr "Simgesel tablo işlemleri" #: setup/lib/messages.inc.php:224 -#| msgid "Disallow BLOB and BINARY fields from editing" msgid "Disallow BLOB and BINARY columns from editing" msgstr "BLOB ve BINARY sütunlarını düzenlemeye izin vermez" #: setup/lib/messages.inc.php:225 -#| msgid "Protect binary fields" msgid "Protect binary columns" msgstr "Binari sütunlarını koru" @@ -7406,11 +7315,10 @@ msgid "" msgstr "" "Eğer bunun gerekli olduğunu düşünüyorsanız, ilave koruma ayarları kullanın- " "[a@?page=servers&mode=edit&id=%1$d#tab_Server_config]anamakine " -"kimlik denetimi[/a] ayarları ve " -"[a@?page=form&formset=features#tab_Security]güvenilir proksi " -"listesi[/a]. Ancak, IP-tabanlı koruma eğer IP'niz, sizinde dahil olduğunuz " -"binlerce kullanıcıya sahip ve bağlı olduğunuz bir ISS'e aitse güvenilir " -"olmayabilir." +"kimlik denetimi[/a] ayarları ve [a@?page=form&" +"formset=features#tab_Security]güvenilir proksi listesi[/a]. Ancak, IP-" +"tabanlı koruma eğer IP'niz, sizinde dahil olduğunuz binlerce kullanıcıya " +"sahip ve bağlı olduğunuz bir ISS'e aitse güvenilir olmayabilir." #: setup/lib/messages.inc.php:273 msgid "What PHP extension to use; you should use mysqli if supported" @@ -7443,18 +7351,14 @@ msgid "SQL query history table" msgstr "SQL sorgu geçmişi tablosu" #: setup/lib/messages.inc.php:279 -#| msgid "" -#| "Leave blank for no SQL query history support, suggested: [kbd]pma_history" -#| "[/kbd]" msgid "" "Leave blank for no SQL query tracking support, suggested: [kbd]pma_tracking[/" "kbd]" msgstr "" -"SQL sorgu izleme desteği istenmiyorsa boş bırakın, önerilen: " -"[kbd]pma_tracking[/kbd]" +"SQL sorgu izleme desteği istenmiyorsa boş bırakın, önerilen: [kbd]" +"pma_tracking[/kbd]" #: setup/lib/messages.inc.php:280 -#| msgid "SQL query history table" msgid "SQL query tracking table" msgstr "SQL sorgu izleme tablosu" @@ -7575,7 +7479,6 @@ msgstr "" "oluşturur." #: setup/lib/messages.inc.php:304 -#| msgid "Automatic recovery mode" msgid "Automatically create versions" msgstr "Otomatik olarak sürümleri oluştur" @@ -7585,7 +7488,6 @@ msgstr "" "Yeni sürümler için otomatik oluşturma kullanan ifade listesini tanımlar." #: setup/lib/messages.inc.php:306 -#| msgid "Statements" msgid "Statements to track" msgstr "İfadelerden izlere" @@ -7658,9 +7560,6 @@ msgid "PDF schema: table coordinates" msgstr "PDF şeması: tablo koordinatları" #: 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]" @@ -7669,7 +7568,6 @@ msgstr "" "önerilen: [kbd]pma_table_info[/kbd]" #: setup/lib/messages.inc.php:321 -#| msgid "Display fields table" msgid "Display columns table" msgstr "Görüntü sütunları tablosu" @@ -7702,8 +7600,6 @@ msgid "Verbose name of this server" msgstr "Sunucunun fazladan adı" #: 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 "" "Kullanıcının "tümünü (satırları) göster" düğmesini görüntüleyip " @@ -7907,9 +7803,6 @@ msgstr "" #: setup/lib/messages.inc.php:372 #, php-format -#| msgid "" -#| "You are using subversion version, run [kbd]svn update[/kbd] :-)[br]The " -#| "latest stable version is %s, released on %s." msgid "" "You are using Git version, run [kbd]git pull[/kbd] :-)[br]The latest stable " "version is %s, released on %s." @@ -8005,7 +7898,6 @@ msgid "Ignore" msgstr "Yoksay" #: 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 " Uzunluğu nedeniyle,
bu sütun düzenlenebilir olmayabilir " @@ -8033,6 +7925,10 @@ msgstr "Yeni satır olarak ekle ve hataları yoksay" msgid "Show insert query" msgstr "Ekleme sorgusunu göster" +#: tbl_change.php:1143 +msgid "and then" +msgstr "ve sonra" + #: tbl_change.php:1147 msgid "Go back to previous page" msgstr "Önceki sayfaya geri dön" @@ -8115,7 +8011,7 @@ msgstr "" msgid "Add to index  %s column(s)" msgstr "İndekse %s sütun ekle" -#: tbl_indexes.php:256 tbl_structure.php:589 tbl_structure.php:600 +#: tbl_indexes.php:256 tbl_structure.php:587 tbl_structure.php:598 msgid "Column count has to be larger than zero." msgstr "Sütun sayısı sıfırdan büyük olmalı." @@ -8183,7 +8079,6 @@ msgid "Table %s has been flushed" msgstr "%s tablosu temizlendi" #: tbl_operations.php:636 -#| msgid "Flush the table (\"FLUSH\")" msgid "Flush the table (FLUSH)" msgstr "Tabloyu temizle (FLUSH)" @@ -8228,39 +8123,39 @@ msgstr "İlgili bütünlük kontrolü:" msgid "Show tables" msgstr "Tabloları göster" -#: tbl_printview.php:310 tbl_structure.php:656 +#: tbl_printview.php:310 tbl_structure.php:654 msgid "Space usage" msgstr "Alan kullanımı" -#: tbl_printview.php:314 tbl_structure.php:660 +#: tbl_printview.php:314 tbl_structure.php:658 msgid "Usage" msgstr "Kullanım" -#: tbl_printview.php:341 tbl_structure.php:687 +#: tbl_printview.php:341 tbl_structure.php:685 msgid "Effective" msgstr "Etkili" -#: tbl_printview.php:366 tbl_structure.php:725 +#: tbl_printview.php:366 tbl_structure.php:723 msgid "Row Statistics" msgstr "Satır İstatistikleri" -#: tbl_printview.php:369 tbl_structure.php:728 +#: tbl_printview.php:369 tbl_structure.php:726 msgid "Statements" msgstr "İfadeler" -#: tbl_printview.php:380 tbl_structure.php:740 +#: tbl_printview.php:380 tbl_structure.php:738 msgid "static" msgstr "sabit" -#: tbl_printview.php:382 tbl_structure.php:742 +#: tbl_printview.php:382 tbl_structure.php:740 msgid "dynamic" msgstr "değişken" -#: tbl_printview.php:404 tbl_structure.php:785 +#: tbl_printview.php:404 tbl_structure.php:783 msgid "Row length" msgstr "Satır uzunluğu" -#: tbl_printview.php:414 tbl_structure.php:793 +#: tbl_printview.php:414 tbl_structure.php:791 msgid " Row size " msgstr " Satır boyutu " @@ -8271,7 +8166,6 @@ msgstr "" "%1$s üzerinde dış anahtar oluşturma hatası (veri türlerini kontrol edin)" #: tbl_relation.php:405 -#| msgid "Internal relations" msgid "Internal relation" msgstr "Dahili bağlantılı" @@ -8284,7 +8178,6 @@ msgstr "" "mümkün değildir." #: tbl_relation.php:413 -#| msgid "Foreign key limit" msgid "Foreign key constraint" msgstr "Dış anahtar kısıtlaması" @@ -8301,7 +8194,6 @@ msgid "Operator" msgstr "İşletici" #: tbl_select.php:270 -#| msgid "Select fields (at least one):" msgid "Select columns (at least one):" msgstr "Sütunları seç (en az bir):" @@ -8322,60 +8214,56 @@ msgid "Browse distinct values" msgstr "Belirgin değerlere gözat" #: tbl_structure.php:361 -#| msgid "None" msgctxt "None for default" msgid "None" msgstr "Hiçbiri" #: tbl_structure.php:374 #, php-format -#| msgid "Table %s has been dropped" msgid "Column %s has been dropped" msgstr "Sütun %s kaldırıldı" -#: tbl_structure.php:385 +#: tbl_structure.php:384 #, php-format msgid "A primary key has been added on %s" msgstr "%s üzerinde birincil anahtar eklendi" -#: tbl_structure.php:400 tbl_structure.php:414 tbl_structure.php:428 +#: tbl_structure.php:398 tbl_structure.php:412 tbl_structure.php:426 #, php-format msgid "An index has been added on %s" msgstr "%s üzerinde bir indeks eklendi" -#: tbl_structure.php:506 tbl_structure.php:508 +#: tbl_structure.php:504 tbl_structure.php:506 msgid "Relation view" msgstr "İlişki görünümü" -#: tbl_structure.php:515 tbl_structure.php:517 +#: tbl_structure.php:513 tbl_structure.php:515 msgid "Propose table structure" msgstr "Tablo yapısı öner" -#: tbl_structure.php:540 -#| msgid "Add column(s)" +#: tbl_structure.php:538 msgid "Add column" msgstr "Sütun ekle" -#: tbl_structure.php:554 +#: tbl_structure.php:552 msgid "At End of Table" msgstr "Tablonun Sonuna" -#: tbl_structure.php:555 +#: tbl_structure.php:553 msgid "At Beginning of Table" msgstr "Tablonun Başına" -#: tbl_structure.php:556 +#: tbl_structure.php:554 #, php-format msgid "After %s" msgstr "%s tablosundan sonra" -#: tbl_structure.php:594 +#: tbl_structure.php:592 #, php-format -#| msgid "Create an index on %s columns" msgid "Create an index on  %s columns" msgstr " %s sütunda indeks oluştur" -#: tbl_structure.php:756 +#: tbl_structure.php:754 msgid "partitioned" msgstr "bölüme ayrıldı" @@ -8548,7 +8436,6 @@ msgid "Available transformations" msgstr "Mevcut dönüşümler" #: transformation_overview.php:48 -#| msgid "Description" msgctxt "for MIME transformation" msgid "Description" msgstr "Açıklama" diff --git a/po/tt.po b/po/tt.po index c6dc43440..7e23eba18 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-13 09:03-0400\n" +"POT-Creation-Date: 2010-06-22 00:55+0530\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:1514 +#: libraries/display_tbl.lib.php:417 server_privileges.php:1534 msgid "Show all" msgstr "Barısın kürsät" -#: browse_foreigners.php:82 libraries/common.lib.php:2313 +#: browse_foreigners.php:82 libraries/common.lib.php:2317 #: 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,18 +38,18 @@ 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:2831 -#: libraries/common.lib.php:2838 libraries/db_links.inc.php:75 +#: db_structure.php:106 libraries/common.lib.php:2835 +#: libraries/common.lib.php:2842 libraries/db_links.inc.php:75 #: libraries/tbl_links.inc.php:63 msgid "Search" msgstr "Ezläw" -#: browse_foreigners.php:153 db_operations.php:385 db_operations.php:429 -#: db_operations.php:499 db_operations.php:609 db_search.php:362 -#: db_structure.php:567 js/messages.php:48 libraries/Config.class.php:1046 +#: browse_foreigners.php:153 db_operations.php:394 db_operations.php:438 +#: db_operations.php:508 db_operations.php:618 db_search.php:362 +#: db_structure.php:565 js/messages.php:53 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:1335 libraries/common.lib.php:2288 +#: libraries/common.lib.php:1335 libraries/common.lib.php:2292 #: 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,15 +60,15 @@ 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:664 server_privileges.php:1624 -#: server_privileges.php:1971 server_privileges.php:2018 -#: server_privileges.php:2057 server_replication.php:235 +#: server_privileges.php:665 server_privileges.php:1644 +#: server_privileges.php:1991 server_privileges.php:2038 +#: server_privileges.php:2078 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 #: tbl_operations.php:302 tbl_operations.php:499 tbl_operations.php:561 -#: tbl_operations.php:681 tbl_select.php:327 tbl_structure.php:562 -#: tbl_structure.php:597 tbl_tracking.php:395 tbl_tracking.php:512 +#: tbl_operations.php:681 tbl_select.php:327 tbl_structure.php:560 +#: tbl_structure.php:595 tbl_tracking.php:395 tbl_tracking.php:512 #: view_create.php:182 view_operations.php:101 msgid "Go" msgstr "Äydä" @@ -94,7 +94,7 @@ msgstr "Bu bäyä belän" msgid "Database %1$s has been created." msgstr "%s biremlege beterelde." -#: db_datadict.php:49 db_operations.php:378 +#: db_datadict.php:49 db_operations.php:387 msgid "Database comment: " msgstr "Biremlek açıqlaması:" @@ -121,10 +121,10 @@ 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:2070 +#: pdf_schema.php:1263 pdf_schema.php:1284 server_privileges.php:2091 #: 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 +#: tbl_structure.php:657 tbl_tracking.php:274 tbl_tracking.php:321 msgid "Type" msgstr "Töre" @@ -137,7 +137,7 @@ msgstr "Töre" msgid "Null" msgstr "Buş" -#: db_datadict.php:178 db_structure.php:501 libraries/export/htmlword.php:247 +#: db_datadict.php:178 db_structure.php:499 libraries/export/htmlword.php:247 #: libraries/export/latex.php:360 libraries/export/odt.php:303 #: libraries/export/texytext.php:236 libraries/tbl_properties.inc.php:106 #: pdf_schema.php:1266 pdf_schema.php:1287 tbl_printview.php:146 @@ -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: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 +#: pdf_schema.php:1344 server_privileges.php:1588 server_privileges.php:1599 +#: server_privileges.php:1909 server_privileges.php:1914 +#: server_privileges.php:2208 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:1565 -#: server_privileges.php:1579 server_privileges.php:1889 -#: server_privileges.php:1892 server_privileges.php:2187 sql.php:193 +#: server_databases.php:64 server_privileges.php:1585 +#: server_privileges.php:1599 server_privileges.php:1909 +#: server_privileges.php:1912 server_privileges.php:2208 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" @@ -210,126 +210,122 @@ msgstr "Saylap Beter" msgid "Unselect All" msgstr "Saylanunı Töşer" -#: db_operations.php:38 tbl_create.php:54 +#: db_operations.php:43 tbl_create.php:54 msgid "The database name is empty!" msgstr "Biremlek iseme buş!" -#: db_operations.php:236 +#: db_operations.php:241 #, php-format msgid "Database %s has been renamed to %s" msgstr "\"%s\" biremlege \"%s\" itep ataldı" -#: db_operations.php:240 +#: db_operations.php:245 #, php-format msgid "Database %s has been copied to %s" msgstr "Database %s has been copied to %s" -#: db_operations.php:412 +#: db_operations.php:421 msgid "Rename database to" msgstr "Biremlekne bolay atap quy" -#: db_operations.php:417 server_processlist.php:57 +#: db_operations.php:426 server_processlist.php:57 msgid "Command" msgstr "Ämer" -#: db_operations.php:429 tbl_change.php:1143 -msgid "and then" -msgstr ", şunnan soñ" - -#: db_operations.php:455 +#: db_operations.php:464 msgid "Copy database to" msgstr "Biremlekne boña kübäyt" -#: db_operations.php:462 tbl_operations.php:528 tbl_tracking.php:388 +#: db_operations.php:471 tbl_operations.php:528 tbl_tracking.php:388 msgid "Structure only" msgstr "Tözeleşen genä" -#: db_operations.php:463 tbl_operations.php:529 tbl_tracking.php:390 +#: db_operations.php:472 tbl_operations.php:529 tbl_tracking.php:390 msgid "Structure and data" msgstr "Tözeleşen dä, eçtälegen dä" -#: db_operations.php:464 tbl_operations.php:530 tbl_tracking.php:389 +#: db_operations.php:473 tbl_operations.php:530 tbl_tracking.php:389 msgid "Data only" msgstr "Eçtälegen genä" -#: db_operations.php:472 +#: db_operations.php:481 msgid "CREATE DATABASE before copying" msgstr "Kübäytü aldınnan CREATE DATABASE östise" -#: db_operations.php:475 libraries/export/sql.php:52 +#: db_operations.php:484 libraries/export/sql.php:52 #: libraries/export/sql.php:74 libraries/export/sql.php:76 #: libraries/export/sql.php:82 tbl_operations.php:536 #, php-format msgid "Add %s" msgstr "%s östäw" -#: db_operations.php:479 libraries/export/sql.php:78 tbl_operations.php:299 +#: db_operations.php:488 libraries/export/sql.php:78 tbl_operations.php:299 #: tbl_operations.php:538 msgid "Add AUTO_INCREMENT value" msgstr "\"AUTO_INCREMENT\" bäyäsen östise" -#: db_operations.php:483 tbl_operations.php:545 +#: db_operations.php:492 tbl_operations.php:545 msgid "Add constraints" msgstr "Çikläwlär östise" -#: db_operations.php:496 +#: db_operations.php:505 msgid "Switch to copied database" msgstr "Kübäytelgän biremlekkä küçäse" -#: db_operations.php:537 +#: db_operations.php:546 msgid "BLOB Repository" msgstr "" -#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1352 -#: libraries/server_links.inc.php:49 server_processlist.php:59 +#: db_operations.php:549 db_tracking.php:76 libraries/common.lib.php:1352 +#: libraries/server_links.inc.php:50 server_processlist.php:59 #: tbl_tracking.php:596 test/theme.php:101 msgid "Status" msgstr "Torış" -#: db_operations.php:548 +#: db_operations.php:557 #, fuzzy #| msgid "Enabled" msgctxt "BLOB repository" msgid "Enabled" msgstr "Açıq" -#: db_operations.php:552 +#: db_operations.php:561 #, fuzzy msgid "Disable" msgstr "Sünek" -#: db_operations.php:562 +#: db_operations.php:571 msgid "Damaged" msgstr "" -#: db_operations.php:566 +#: db_operations.php:575 #, fuzzy msgctxt "BLOB repository" msgid "Repair" msgstr "Tüşämä tözätü" -#: db_operations.php:574 +#: db_operations.php:583 #, fuzzy #| msgid "Disabled" msgctxt "BLOB repository" msgid "Disabled" msgstr "Sünek" -#: db_operations.php:578 +#: db_operations.php:587 #, fuzzy msgid "Enable" msgstr "Açıq" -#: db_operations.php:602 libraries/Index.class.php:448 +#: db_operations.php:611 libraries/Index.class.php:448 #: libraries/db_structure.lib.php:62 libraries/mysql_charsets.lib.php:107 #: libraries/tbl_properties.inc.php:107 libraries/tbl_properties.inc.php:730 #: server_collations.php:54 server_collations.php:66 server_databases.php:111 #: tbl_operations.php:363 tbl_select.php:137 tbl_structure.php:179 -#: tbl_structure.php:767 tbl_tracking.php:275 tbl_tracking.php:326 +#: tbl_structure.php:765 tbl_tracking.php:275 tbl_tracking.php:326 msgid "Collation" msgstr "Tezü cayı" -#: db_operations.php:615 main.php:316 pdf_schema.php:34 +#: db_operations.php:624 main.php:316 pdf_schema.php:34 #, php-format msgid "" "The additional features for working with linked tables have been " @@ -338,14 +334,14 @@ msgstr "" "Bäyläneştä torğan tüşämä belän eşläp bulmas, östämä eşli-alu sünek tora. Anı " "qabızu öçen, %sbonda çirtäse%s." -#: db_operations.php:648 +#: db_operations.php:657 msgid "Edit PDF Pages" 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:1665 -#: server_privileges.php:1721 server_privileges.php:1985 +#: libraries/header.inc.php:130 pdf_pages.php:424 server_privileges.php:1685 +#: server_privileges.php:1741 server_privileges.php:2005 #: server_synchronize.php:423 server_synchronize.php:866 tbl_tracking.php:592 #: test/theme.php:75 msgid "Table" @@ -354,7 +350,7 @@ msgstr "Tüşämä" #: db_printview.php:105 libraries/db_structure.lib.php:56 #: libraries/header_printview.inc.php:63 libraries/import.lib.php:146 #: navigation.php:638 navigation.php:660 server_databases.php:122 -#: tbl_printview.php:394 tbl_structure.php:365 tbl_structure.php:777 +#: tbl_printview.php:394 tbl_structure.php:365 tbl_structure.php:775 msgid "Rows" msgstr "Kerem" @@ -362,30 +358,30 @@ msgstr "Kerem" msgid "Size" msgstr "Küläme" -#: db_printview.php:162 db_structure.php:457 libraries/export/sql.php:559 +#: db_printview.php:162 db_structure.php:455 libraries/export/sql.php:559 #: libraries/export/sql.php:899 msgid "in use" msgstr "totıla" #: db_printview.php:187 libraries/db_info.inc.php:88 #: libraries/export/sql.php:514 pdf_schema.php:1241 tbl_printview.php:434 -#: tbl_structure.php:809 +#: tbl_structure.php:807 msgid "Creation" msgstr "Yasalışı" #: db_printview.php:196 libraries/db_info.inc.php:93 #: libraries/export/sql.php:519 pdf_schema.php:1246 tbl_printview.php:444 -#: tbl_structure.php:817 +#: tbl_structure.php:815 msgid "Last update" msgstr "Soñğı yañartılu" #: db_printview.php:205 libraries/db_info.inc.php:98 #: libraries/export/sql.php:524 pdf_schema.php:1251 tbl_printview.php:454 -#: tbl_structure.php:825 +#: tbl_structure.php:823 msgid "Last check" msgstr "Soñğı tikşerü" -#: db_printview.php:222 db_structure.php:480 +#: db_printview.php:222 db_structure.php:478 #, fuzzy, php-format #| msgid "%s table(s)" msgid "%s table" @@ -445,7 +441,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:297 tbl_change.php:1031 tbl_indexes.php:250 +#: server_privileges.php:298 tbl_change.php:1031 tbl_indexes.php:250 #: tbl_select.php:288 msgid "Or" msgstr "Yä" @@ -518,9 +514,9 @@ 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:2833 +#: db_structure.php:105 libraries/common.lib.php:2837 #: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50 -#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:467 +#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:465 msgid "Browse" msgstr "Küzätü" @@ -565,36 +561,36 @@ 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:2832 libraries/sql_query_form.lib.php:334 +#: libraries/common.lib.php:2836 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:2829 libraries/common.lib.php:2836 +#: libraries/common.lib.php:2833 libraries/common.lib.php:2840 #: 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:1106 #: libraries/tbl_links.inc.php:56 pmd_general.php:134 -#: server_privileges.php:593 server_replication.php:315 tbl_tracking.php:269 +#: server_privileges.php:594 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:1656 +#: db_structure.php:543 db_structure.php:544 db_tracking.php:91 +#: libraries/Index.class.php:483 libraries/common.lib.php:1657 #: 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 -#: tbl_structure.php:152 tbl_structure.php:471 +#: tbl_structure.php:152 tbl_structure.php:469 msgid "Drop" 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:1655 +#: db_structure.php:541 db_structure.php:542 libraries/common.lib.php:1656 #: libraries/mult_submits.inc.php:39 libraries/tbl_links.inc.php:105 msgid "Empty" msgstr "Buşat" @@ -604,112 +600,112 @@ msgstr "Buşat" msgid "Table %s has been emptied" msgstr "\"%s\" atlı tüşämä buşatıldı" -#: db_structure.php:326 libraries/tbl_links.inc.php:133 +#: db_structure.php:325 libraries/tbl_links.inc.php:133 #, php-format msgid "View %s has been dropped" msgstr "\"%s\" atlı Qaraş beterelgän buldı" -#: db_structure.php:326 libraries/tbl_links.inc.php:133 +#: db_structure.php:325 libraries/tbl_links.inc.php:133 #, php-format msgid "Table %s has been dropped" msgstr "\"%s\" atlı tüşämä beterelde" -#: db_structure.php:333 +#: db_structure.php:332 msgid "Tracking is active." msgstr "" -#: db_structure.php:335 +#: db_structure.php:334 msgid "Tracking is not active." msgstr "" -#: db_structure.php:420 libraries/display_tbl.lib.php:1944 +#: db_structure.php:418 libraries/display_tbl.lib.php:1944 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation%" "s." msgstr "" -#: db_structure.php:434 db_structure.php:448 libraries/header.inc.php:126 +#: db_structure.php:432 db_structure.php:446 libraries/header.inc.php:130 #: libraries/tbl_info.inc.php:66 tbl_structure.php:185 test/theme.php:74 msgid "View" msgstr "Qaraş" -#: db_structure.php:485 libraries/db_structure.lib.php:49 -#: libraries/server_links.inc.php:70 server_replication.php:33 +#: db_structure.php:483 libraries/db_structure.lib.php:49 +#: libraries/server_links.inc.php:71 server_replication.php:33 #: server_replication.php:164 server_status.php:369 #, fuzzy msgid "Replication" msgstr "Bäyläneşlär" -#: db_structure.php:489 +#: db_structure.php:487 msgid "Sum" msgstr "Sum" -#: db_structure.php:496 libraries/StorageEngine.class.php:356 +#: db_structure.php:494 libraries/StorageEngine.class.php:356 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "Bu MySQL-serverdä %s digän saqlaw ısulı töp bularaq saylanğan." -#: db_structure.php:524 db_structure.php:541 db_structure.php:542 +#: db_structure.php:522 db_structure.php:539 db_structure.php:540 #: 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:1596 tbl_structure.php:455 -#: tbl_structure.php:464 +#: server_databases.php:351 server_privileges.php:1616 tbl_structure.php:453 +#: tbl_structure.php:462 msgid "With selected:" msgstr "Saylanğannı:" -#: db_structure.php:527 libraries/display_tbl.lib.php:2076 -#: server_databases.php:348 server_privileges.php:569 -#: server_privileges.php:1599 tbl_structure.php:458 +#: db_structure.php:525 libraries/display_tbl.lib.php:2076 +#: server_databases.php:348 server_privileges.php:570 +#: server_privileges.php:1619 tbl_structure.php:456 msgid "Check All" msgstr "Saylap Beter" -#: db_structure.php:531 libraries/display_tbl.lib.php:2077 +#: db_structure.php:529 libraries/display_tbl.lib.php:2077 #: libraries/replication_gui.lib.php:33 server_databases.php:350 -#: server_privileges.php:572 server_privileges.php:1603 tbl_structure.php:462 +#: server_privileges.php:573 server_privileges.php:1623 tbl_structure.php:460 msgid "Uncheck All" msgstr "Saylanunı Töşer" -#: db_structure.php:536 +#: db_structure.php:534 msgid "Check tables having overhead" msgstr "Check overheaded" -#: db_structure.php:547 db_structure.php:548 db_structure.php:599 +#: db_structure.php:545 db_structure.php:546 db_structure.php:597 #: libraries/display_tbl.lib.php:2180 libraries/mult_submits.inc.php:28 -#: tbl_structure.php:492 tbl_structure.php:494 +#: tbl_structure.php:490 tbl_structure.php:492 msgid "Print view" msgstr "Bastıru küreneşe" -#: db_structure.php:549 db_structure.php:550 libraries/mult_submits.inc.php:42 +#: db_structure.php:547 db_structure.php:548 libraries/mult_submits.inc.php:42 #: tbl_operations.php:581 msgid "Check table" msgstr "Tüşämä tikşerü" -#: db_structure.php:551 db_structure.php:552 libraries/mult_submits.inc.php:47 -#: tbl_operations.php:621 tbl_structure.php:709 tbl_structure.php:711 +#: db_structure.php:549 db_structure.php:550 libraries/mult_submits.inc.php:47 +#: tbl_operations.php:621 tbl_structure.php:707 tbl_structure.php:709 msgid "Optimize table" msgstr "Optimize table" -#: db_structure.php:553 db_structure.php:554 libraries/mult_submits.inc.php:52 +#: db_structure.php:551 db_structure.php:552 libraries/mult_submits.inc.php:52 #: tbl_operations.php:611 msgid "Repair table" msgstr "Tüşämä tözätü" -#: db_structure.php:555 db_structure.php:556 libraries/mult_submits.inc.php:57 +#: db_structure.php:553 db_structure.php:554 libraries/mult_submits.inc.php:57 #: tbl_operations.php:601 msgid "Analyze table" msgstr "Tüşämä centekläw" -#: db_structure.php:557 db_structure.php:558 libraries/db_links.inc.php:71 +#: db_structure.php:555 db_structure.php:556 libraries/db_links.inc.php:71 #: 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:1380 +#: libraries/server_links.inc.php:85 libraries/tbl_links.inc.php:82 +#: pmd_pdf.php:84 pmd_pdf.php:109 server_privileges.php:1397 #: setup/frames/menu.inc.php:22 tbl_row_action.php:59 msgid "Export" msgstr "Export" -#: db_structure.php:606 libraries/display_pdf_schema.lib.php:44 +#: db_structure.php:604 libraries/display_pdf_schema.lib.php:44 msgid "Data Dictionary" msgstr "Eçtälek Süzlege" @@ -721,10 +717,10 @@ msgstr "Tüşämä tikşerü" #: db_tracking.php:71 libraries/export/htmlword.php:86 #: libraries/export/latex.php:148 libraries/export/odt.php:113 #: libraries/export/sql.php:342 libraries/export/texytext.php:84 -#: libraries/export/xml.php:255 libraries/header.inc.php:106 +#: libraries/export/xml.php:255 libraries/header.inc.php:110 #: libraries/header_printview.inc.php:58 server_databases.php:169 -#: server_privileges.php:1660 server_privileges.php:1721 -#: server_privileges.php:1979 server_processlist.php:56 +#: server_privileges.php:1680 server_privileges.php:1741 +#: server_privileges.php:1999 server_processlist.php:56 #: server_synchronize.php:1179 server_synchronize.php:1183 #: tbl_tracking.php:591 test/theme.php:65 msgid "Database" @@ -746,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:1542 server_privileges.php:1725 -#: server_privileges.php:2073 tbl_structure.php:187 +#: server_privileges.php:1562 server_privileges.php:1745 +#: server_privileges.php:2094 tbl_structure.php:187 msgid "Action" msgstr "Eş" @@ -784,8 +780,8 @@ msgstr "Tözeleşen genä" msgid "Untracked tables" msgstr "Tüşämä tikşerü" -#: db_tracking.php:172 db_tracking.php:174 tbl_structure.php:528 -#: tbl_structure.php:530 +#: db_tracking.php:172 db_tracking.php:174 tbl_structure.php:526 +#: tbl_structure.php:528 #, fuzzy msgid "Track table" msgstr "Tüşämä tikşerü" @@ -941,188 +937,235 @@ msgstr "Host adı buş!" msgid "The user name is empty!" msgstr "Atama buş!" -#: js/messages.php:44 server_privileges.php:1236 user_password.php:70 +#: js/messages.php:44 server_privileges.php:1241 user_password.php:70 msgid "The password is empty!" msgstr "Sersüzeñ buş!" -#: js/messages.php:45 server_privileges.php:1234 user_password.php:73 +#: js/messages.php:45 server_privileges.php:1239 user_password.php:73 msgid "The passwords aren't the same!" msgstr "Sersüzlär berbersenä kileşmi!" -#: js/messages.php:49 pmd_general.php:342 pmd_general.php:379 +#: js/messages.php:46 +#, fuzzy +#| msgid "Add a new User" +msgid "Add a New User" +msgstr "Yaña qullanuçı östäw" + +#: js/messages.php:47 js/messages.php:54 pmd_general.php:342 +#: pmd_general.php:379 msgid "Cancel" msgstr "" -#: js/messages.php:52 pmd_save_pos.php:54 +#: js/messages.php:48 +#, fuzzy +msgid "Create User" +msgstr "Server söreme" + +#: js/messages.php:49 +#, fuzzy +#| msgid "Reload privileges" +msgid "Reloading Privileges" +msgstr "Xoquqlarnı qabat yökläw" + +#: js/messages.php:50 +#, fuzzy +#| msgid "Remove selected users" +msgid "Removing Selected Users" +msgstr "Saylanğan qullanuçı beterü" + +#: js/messages.php:57 +#, fuzzy +msgid "Loading" +msgstr "Cirle" + +#: js/messages.php:58 +#, fuzzy +#| msgid "Processes" +msgid "Processing Request" +msgstr "Proseslar" + +#: js/messages.php:59 +msgid "Error in Processing Request" +msgstr "" + +#: js/messages.php:60 +msgid "Dropping Column" +msgstr "" + +#: js/messages.php:61 +msgid "Adding Primary Key" +msgstr "" + +#: js/messages.php:64 pmd_save_pos.php:54 msgid "Modifications have been saved" msgstr "Üzgärtülär saqlandı" -#: js/messages.php:53 pmd_relation_upd.php:49 +#: js/messages.php:65 pmd_relation_upd.php:49 #, fuzzy msgid "Relation deleted" msgstr "Bäyläneşkä küzätü" -#: js/messages.php:54 pmd_relation_new.php:64 +#: js/messages.php:66 pmd_relation_new.php:64 msgid "FOREIGN KEY relation added" msgstr "" -#: js/messages.php:55 pmd_relation_new.php:86 +#: js/messages.php:67 pmd_relation_new.php:86 #, fuzzy msgid "Internal relation added" msgstr "Eçke bäyläneş" -#: js/messages.php:56 pmd_relation_new.php:63 pmd_relation_new.php:88 +#: js/messages.php:68 pmd_relation_new.php:63 pmd_relation_new.php:88 msgid "Error: Relation not added." msgstr "" -#: js/messages.php:57 pmd_relation_new.php:31 +#: js/messages.php:69 pmd_relation_new.php:31 msgid "Error: relation already exists." msgstr "" -#: js/messages.php:58 +#: js/messages.php:70 msgid "Error saving coordinates for Designer." msgstr "" -#: js/messages.php:59 libraries/relation.lib.php:107 +#: js/messages.php:71 libraries/relation.lib.php:107 #: libraries/relation.lib.php:119 msgid "General relation features" msgstr "Bäyläneşlär buyınça töp mömkinleklär" -#: js/messages.php:59 libraries/relation.lib.php:101 +#: js/messages.php:71 libraries/relation.lib.php:101 #: libraries/relation.lib.php:108 msgid "Disabled" msgstr "Sünek" -#: js/messages.php:60 +#: js/messages.php:72 msgid "Select referenced key" msgstr "" -#: js/messages.php:61 +#: js/messages.php:73 msgid "Select Foreign Key" msgstr "" -#: js/messages.php:62 +#: js/messages.php:74 msgid "Please select the primary key or a unique key" msgstr "" -#: js/messages.php:63 pmd_general.php:77 tbl_relation.php:548 +#: js/messages.php:75 pmd_general.php:77 tbl_relation.php:548 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" msgstr "Kürsätäse Alan saylaw" #. l10n: Display text for calendar close link -#: js/messages.php:73 +#: js/messages.php:85 #, fuzzy msgid "Done" msgstr "Eçtälek" #. l10n: Display text for previous month link in calendar -#: js/messages.php:75 +#: js/messages.php:87 #, fuzzy #| msgid "Previous" msgid "Prev" msgstr "Uzğan" #. l10n: Display text for next month link in calendar -#: js/messages.php:77 libraries/common.lib.php:2353 -#: libraries/common.lib.php:2356 libraries/display_tbl.lib.php:338 +#: js/messages.php:89 libraries/common.lib.php:2357 +#: libraries/common.lib.php:2360 libraries/display_tbl.lib.php:338 #: server_binlog.php:205 server_binlog.php:207 tbl_printview.php:424 -#: tbl_structure.php:801 +#: tbl_structure.php:799 msgid "Next" msgstr "Kiläse" #. l10n: Display text for current month link in calendar -#: js/messages.php:79 +#: js/messages.php:91 #, fuzzy #| msgid "Total" msgid "Today" msgstr "Tulayım" -#: js/messages.php:82 +#: js/messages.php:94 #, fuzzy #| msgid "Binary" msgid "January" msgstr "Binar" -#: js/messages.php:83 +#: js/messages.php:95 msgid "February" msgstr "" -#: js/messages.php:84 +#: js/messages.php:96 #, fuzzy #| msgid "Mar" msgid "March" msgstr "Mar" -#: js/messages.php:85 +#: js/messages.php:97 #, fuzzy #| msgid "Apr" msgid "April" msgstr "Äpr" -#: js/messages.php:86 +#: js/messages.php:98 msgid "May" msgstr "May" -#: js/messages.php:87 +#: js/messages.php:99 #, fuzzy #| msgid "Jun" msgid "June" msgstr "Yün" -#: js/messages.php:88 +#: js/messages.php:100 #, fuzzy #| msgid "Jul" msgid "July" msgstr "Yül" -#: js/messages.php:89 +#: js/messages.php:101 #, fuzzy #| msgid "Aug" msgid "August" msgstr "Aug" -#: js/messages.php:90 +#: js/messages.php:102 msgid "September" msgstr "" -#: js/messages.php:91 +#: js/messages.php:103 #, fuzzy #| msgid "Oct" msgid "October" msgstr "Ökt" -#: js/messages.php:92 +#: js/messages.php:104 msgid "November" msgstr "" -#: js/messages.php:93 +#: js/messages.php:105 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:97 libraries/common.lib.php:1557 +#: js/messages.php:109 libraries/common.lib.php:1557 msgid "Jan" msgstr "Ğın" #. l10n: Short month name -#: js/messages.php:99 libraries/common.lib.php:1559 +#: js/messages.php:111 libraries/common.lib.php:1559 msgid "Feb" msgstr "Feb" #. l10n: Short month name -#: js/messages.php:101 libraries/common.lib.php:1561 +#: js/messages.php:113 libraries/common.lib.php:1561 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:103 libraries/common.lib.php:1563 +#: js/messages.php:115 libraries/common.lib.php:1563 msgid "Apr" msgstr "Äpr" #. l10n: Short month name -#: js/messages.php:105 libraries/common.lib.php:1565 +#: js/messages.php:117 libraries/common.lib.php:1565 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1130,176 +1173,176 @@ msgid "May" msgstr "May" #. l10n: Short month name -#: js/messages.php:107 libraries/common.lib.php:1567 +#: js/messages.php:119 libraries/common.lib.php:1567 msgid "Jun" msgstr "Yün" #. l10n: Short month name -#: js/messages.php:109 libraries/common.lib.php:1569 +#: js/messages.php:121 libraries/common.lib.php:1569 msgid "Jul" msgstr "Yül" #. l10n: Short month name -#: js/messages.php:111 libraries/common.lib.php:1571 +#: js/messages.php:123 libraries/common.lib.php:1571 msgid "Aug" msgstr "Aug" #. l10n: Short month name -#: js/messages.php:113 libraries/common.lib.php:1573 +#: js/messages.php:125 libraries/common.lib.php:1573 msgid "Sep" msgstr "Sen" #. l10n: Short month name -#: js/messages.php:115 libraries/common.lib.php:1575 +#: js/messages.php:127 libraries/common.lib.php:1575 msgid "Oct" msgstr "Ökt" #. l10n: Short month name -#: js/messages.php:117 libraries/common.lib.php:1577 +#: js/messages.php:129 libraries/common.lib.php:1577 msgid "Nov" msgstr "Nöy" #. l10n: Short month name -#: js/messages.php:119 libraries/common.lib.php:1579 +#: js/messages.php:131 libraries/common.lib.php:1579 msgid "Dec" msgstr "Dek" -#: js/messages.php:122 +#: js/messages.php:134 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "Ykş" -#: js/messages.php:123 +#: js/messages.php:135 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "Dşm" -#: js/messages.php:124 +#: js/messages.php:136 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "Sşm" -#: js/messages.php:125 +#: js/messages.php:137 msgid "Wednesday" msgstr "" -#: js/messages.php:126 +#: js/messages.php:138 msgid "Thursday" msgstr "" -#: js/messages.php:127 +#: js/messages.php:139 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "Cmğ" -#: js/messages.php:128 +#: js/messages.php:140 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:132 libraries/common.lib.php:1582 +#: js/messages.php:144 libraries/common.lib.php:1582 msgid "Sun" msgstr "Ykş" #. l10n: Short week day name -#: js/messages.php:134 libraries/common.lib.php:1584 +#: js/messages.php:146 libraries/common.lib.php:1584 msgid "Mon" msgstr "Dşm" #. l10n: Short week day name -#: js/messages.php:136 libraries/common.lib.php:1586 +#: js/messages.php:148 libraries/common.lib.php:1586 msgid "Tue" msgstr "Sşm" #. l10n: Short week day name -#: js/messages.php:138 libraries/common.lib.php:1588 +#: js/messages.php:150 libraries/common.lib.php:1588 msgid "Wed" msgstr "Çrş" #. l10n: Short week day name -#: js/messages.php:140 libraries/common.lib.php:1590 +#: js/messages.php:152 libraries/common.lib.php:1590 msgid "Thu" msgstr "Pnc" #. l10n: Short week day name -#: js/messages.php:142 libraries/common.lib.php:1592 +#: js/messages.php:154 libraries/common.lib.php:1592 msgid "Fri" msgstr "Cmğ" #. l10n: Short week day name -#: js/messages.php:144 libraries/common.lib.php:1594 +#: js/messages.php:156 libraries/common.lib.php:1594 msgid "Sat" msgstr "Şmb" #. l10n: Minimal week day name -#: js/messages.php:148 +#: js/messages.php:160 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "Ykş" #. l10n: Minimal week day name -#: js/messages.php:150 +#: js/messages.php:162 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "Dşm" #. l10n: Minimal week day name -#: js/messages.php:152 +#: js/messages.php:164 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "Sşm" #. l10n: Minimal week day name -#: js/messages.php:154 +#: js/messages.php:166 #, fuzzy #| msgid "Wed" msgid "We" msgstr "Çrş" #. l10n: Minimal week day name -#: js/messages.php:156 +#: js/messages.php:168 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "Pnc" #. l10n: Minimal week day name -#: js/messages.php:158 +#: js/messages.php:170 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "Cmğ" #. l10n: Minimal week day name -#: js/messages.php:160 +#: js/messages.php:172 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "Şmb" #. l10n: Column header for week of the year in calendar -#: js/messages.php:162 +#: js/messages.php:174 msgid "Wk" msgstr "" -#: js/messages.php:164 +#: js/messages.php:176 msgid "Hour" msgstr "" -#: js/messages.php:165 +#: js/messages.php:177 #, fuzzy #| msgid "in use" msgid "Minute" msgstr "totıla" -#: js/messages.php:166 +#: js/messages.php:178 #, fuzzy #| msgid "per second" msgid "Second" @@ -1357,7 +1400,7 @@ msgstr "Tezeşlär" #: libraries/Index.class.php:444 libraries/mult_submits.inc.php:103 #: libraries/tbl_properties.inc.php:519 tbl_structure.php:33 -#: tbl_structure.php:155 tbl_structure.php:159 tbl_structure.php:474 +#: tbl_structure.php:155 tbl_structure.php:159 tbl_structure.php:472 #: tbl_tracking.php:322 msgid "Unique" msgstr "Qabatsız" @@ -1399,8 +1442,8 @@ msgid "" "removed." msgstr "" -#: libraries/List_Database.class.php:431 libraries/server_links.inc.php:41 -#: server_databases.php:88 server_privileges.php:1660 +#: libraries/List_Database.class.php:431 libraries/server_links.inc.php:42 +#: server_databases.php:88 server_privileges.php:1680 #: setup/lib/messages.inc.php:110 test/theme.php:93 msgid "Databases" msgstr "Biremleklär" @@ -1568,7 +1611,7 @@ msgstr "Sersüz:" msgid "Server Choice" msgstr "Server Saylaw" -#: libraries/auth/cookie.auth.lib.php:320 libraries/header.inc.php:59 +#: libraries/auth/cookie.auth.lib.php:320 libraries/header.inc.php:63 msgid "Cookies must be enabled past this point." msgstr "Cookies must be enabled past this point." @@ -1648,7 +1691,7 @@ msgstr "" "Can not use iconv nor libiconv nor recode_string function while extension " "reports to be loaded. Check your php configuration." -#: libraries/common.inc.php:583 +#: libraries/common.inc.php:587 msgid "" "phpMyAdmin was unable to read your configuration file!
This might " "happen if PHP finds a parse error in it or PHP cannot find the file.
If you receive a blank page, everything " "is fine." -#: libraries/common.inc.php:594 +#: libraries/common.inc.php:598 #, fuzzy, php-format #| msgid "Could not load default configuration from: \"%1$s\"" msgid "Could not load default configuration from: %1$s" msgstr "Töp köyläneşen yökläp bulmadı: \"%1$s\"" -#: libraries/common.inc.php:599 +#: libraries/common.inc.php:603 msgid "" "The $cfg['PmaAbsoluteUri'] directive MUST be set in your " "configuration file!" @@ -1678,28 +1721,28 @@ msgstr "" "The $cfg['PmaAbsoluteUri'] directive MUST be set in your " "configuration file!" -#: libraries/common.inc.php:629 +#: libraries/common.inc.php:633 #, fuzzy, php-format #| msgid "Invalid server index: \"%s\"" msgid "Invalid server index: %s" msgstr "Serverdäge \"%s\" digän tezeleş yaraqsız" -#: libraries/common.inc.php:636 +#: libraries/common.inc.php:640 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" -#: libraries/common.inc.php:645 libraries/header.inc.php:96 +#: libraries/common.inc.php:649 libraries/header.inc.php:100 #: libraries/select_server.lib.php:41 libraries/select_server.lib.php:47 #: main.php:185 test/theme.php:57 msgid "Server" msgstr "Server" -#: libraries/common.inc.php:823 +#: libraries/common.inc.php:827 msgid "Invalid authentication method set in configuration:" msgstr "" -#: libraries/common.inc.php:926 +#: libraries/common.inc.php:930 #, php-format msgid "You should upgrade to %s %s or later." msgstr "You should upgrade to %s %s or later." @@ -1832,45 +1875,45 @@ msgstr "." msgid "%B %d, %Y at %I:%M %p" msgstr "%Y.%m.%d, %H:%M" -#: libraries/common.lib.php:1907 +#: libraries/common.lib.php:1911 #, 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:2322 libraries/common.lib.php:2325 +#: libraries/common.lib.php:2326 libraries/common.lib.php:2329 #: libraries/display_tbl.lib.php:290 server_status.php:719 msgid "Begin" msgstr "Başlawğa" -#: libraries/common.lib.php:2323 libraries/common.lib.php:2326 +#: libraries/common.lib.php:2327 libraries/common.lib.php:2330 #: libraries/display_tbl.lib.php:291 server_binlog.php:168 #: server_binlog.php:170 msgid "Previous" msgstr "Uzğan" -#: libraries/common.lib.php:2354 libraries/common.lib.php:2357 +#: libraries/common.lib.php:2358 libraries/common.lib.php:2361 #: libraries/display_tbl.lib.php:353 msgid "End" msgstr "Azaq" -#: libraries/common.lib.php:2430 +#: libraries/common.lib.php:2434 #, php-format msgid "Jump to database "%s"." msgstr ""%s" biremlegenä küç." -#: libraries/common.lib.php:2450 +#: libraries/common.lib.php:2454 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" -#: libraries/common.lib.php:2830 libraries/common.lib.php:2837 +#: libraries/common.lib.php:2834 libraries/common.lib.php:2841 #: libraries/db_links.inc.php:68 libraries/export/sql.php:25 -#: libraries/import/sql.php:18 libraries/server_links.inc.php:45 +#: libraries/import/sql.php:18 libraries/server_links.inc.php:46 #: libraries/tbl_links.inc.php:60 querywindow.php:99 test/theme.php:97 msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2839 libraries/db_links.inc.php:104 +#: libraries/common.lib.php:2843 libraries/db_links.inc.php:104 #: libraries/tbl_links.inc.php:95 libraries/tbl_links.inc.php:117 #: view_operations.php:89 msgid "Operations" @@ -1918,15 +1961,15 @@ msgstr "Soraw" msgid "Designer" msgstr "" -#: libraries/db_links.inc.php:98 libraries/server_links.inc.php:88 +#: libraries/db_links.inc.php:98 libraries/server_links.inc.php:89 #: libraries/tbl_links.inc.php:91 pmd_pdf.php:84 pmd_pdf.php:110 #: setup/frames/menu.inc.php:21 msgid "Import" msgstr "Yökläw" -#: libraries/db_links.inc.php:111 libraries/server_links.inc.php:66 -#: server_privileges.php:111 server_privileges.php:1722 -#: server_privileges.php:2071 test/theme.php:117 +#: libraries/db_links.inc.php:111 libraries/server_links.inc.php:67 +#: server_privileges.php:112 server_privileges.php:1742 +#: server_privileges.php:2092 test/theme.php:117 msgid "Privileges" msgstr "Xoquqlar" @@ -1945,7 +1988,7 @@ msgid "" msgstr "Törle buluı bar. YBS 3.11 qarísı" #: libraries/db_structure.lib.php:69 server_databases.php:142 -#: tbl_printview.php:336 tbl_structure.php:682 +#: tbl_printview.php:336 tbl_structure.php:680 msgid "Overhead" msgstr "Overhead" @@ -1962,7 +2005,7 @@ msgstr "Bu server endäşmi" msgid "(or the local MySQL server's socket is not correctly configured)" msgstr "(yä cirle MySQL-server soketı döres köylänmägän ide)" -#: libraries/dbi/mysql.dbi.lib.php:362 tbl_structure.php:608 +#: libraries/dbi/mysql.dbi.lib.php:362 tbl_structure.php:606 msgid "Details..." msgstr "" @@ -1972,22 +2015,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:807 +#: libraries/replication_gui.lib.php:345 server_privileges.php:808 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:796 -#: server_privileges.php:800 server_privileges.php:811 -#: server_privileges.php:1538 server_synchronize.php:1175 +#: libraries/replication_gui.lib.php:349 server_privileges.php:797 +#: server_privileges.php:801 server_privileges.php:812 +#: server_privileges.php:1558 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:815 server_privileges.php:818 +#: server_privileges.php:816 server_privileges.php:819 msgid "Re-type" msgstr "Qabatla" @@ -2002,12 +2045,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:822 +#: libraries/replication_gui.lib.php:360 server_privileges.php:823 msgid "Generate Password" msgstr "Sersüz Ürçetü" #: libraries/display_change_password.lib.php:75 -#: libraries/replication_gui.lib.php:363 server_privileges.php:825 +#: libraries/replication_gui.lib.php:363 server_privileges.php:826 msgid "Generate" msgstr "Ürçet" @@ -2020,8 +2063,8 @@ msgstr "Yaña biremlek yaratu" msgid "Create" msgstr "Yarat" -#: libraries/display_create_database.lib.php:40 server_privileges.php:113 -#: server_privileges.php:1427 server_replication.php:35 +#: libraries/display_create_database.lib.php:40 server_privileges.php:114 +#: server_privileges.php:1447 server_replication.php:35 msgid "No Privileges" msgstr "Xoquqsız" @@ -2110,7 +2153,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:1875 server_processlist.php:75 +#: server_privileges.php:1895 server_processlist.php:75 msgid "None" msgstr "Buş" @@ -2296,7 +2339,7 @@ msgstr "Qullanası tezeş" #: libraries/import/docsql.php:34 libraries/import/ldi.php:47 #: libraries/import/ods.php:30 libraries/import/sql.php:20 #: libraries/import/xls.php:26 libraries/import/xlsx.php:26 -#: libraries/import/xml.php:25 tbl_select.php:267 tbl_structure.php:753 +#: libraries/import/xml.php:25 tbl_select.php:267 tbl_structure.php:751 #, fuzzy msgid "Options" msgstr "Eşkärtü" @@ -2375,7 +2418,7 @@ msgstr "Soraw eşkärtü %01.4f sek aldı" #: libraries/display_tbl.lib.php:2089 libraries/mult_submits.inc.php:113 #: querywindow.php:125 querywindow.php:129 querywindow.php:132 -#: tbl_structure.php:25 tbl_structure.php:150 tbl_structure.php:470 +#: tbl_structure.php:25 tbl_structure.php:150 tbl_structure.php:468 msgid "Change" msgstr "Üzgärt" @@ -2443,7 +2486,7 @@ msgstr "Bufer Pul Totılğanlığı" #: libraries/engines/innodb.lib.php:194 server_databases.php:137 #: server_databases.php:305 server_status.php:525 server_status.php:586 -#: server_status.php:607 tbl_printview.php:351 tbl_structure.php:696 +#: server_status.php:607 tbl_printview.php:351 tbl_structure.php:694 msgid "Total" msgstr "Tulayım" @@ -2703,7 +2746,7 @@ msgid "" msgstr "" #: libraries/export/codegen.php:37 setup/lib/messages.inc.php:88 -#: tbl_printview.php:376 tbl_structure.php:737 +#: tbl_printview.php:376 tbl_structure.php:735 msgid "Format" msgstr "Tözeleş" @@ -2775,8 +2818,8 @@ 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:576 server_replication.php:316 tbl_printview.php:317 -#: tbl_structure.php:665 +#: server_privileges.php:577 server_replication.php:316 tbl_printview.php:317 +#: tbl_structure.php:663 msgid "Data" msgstr "Eçtälek" @@ -2825,9 +2868,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:731 -#: server_privileges.php:734 server_privileges.php:790 -#: server_privileges.php:1537 server_privileges.php:2069 +#: libraries/replication_gui.lib.php:329 server_privileges.php:732 +#: server_privileges.php:735 server_privileges.php:791 +#: server_privileges.php:1557 server_privileges.php:2090 #: server_processlist.php:55 server_synchronize.php:1159 msgid "Host" msgstr "Host" @@ -3030,7 +3073,7 @@ msgstr "Çığaru ısulı" msgid "Open new phpMyAdmin window" msgstr "Yaña phpMyAdmin-täräzä açu" -#: libraries/header.inc.php:115 +#: libraries/header.inc.php:119 #, fuzzy msgid "New table" msgstr "Berär genä dä tüşämä yuq" @@ -3193,20 +3236,20 @@ 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 +#: tbl_structure.php:471 msgid "Primary" msgstr "Töp" #: libraries/mult_submits.inc.php:98 libraries/tbl_properties.inc.php:116 #: libraries/tbl_properties.inc.php:525 tbl_printview.php:326 #: tbl_structure.php:31 tbl_structure.php:154 tbl_structure.php:158 -#: tbl_structure.php:475 tbl_structure.php:673 +#: tbl_structure.php:473 tbl_structure.php:671 msgid "Index" msgstr "Tezeş" #: libraries/mult_submits.inc.php:108 libraries/tbl_properties.inc.php:531 #: tbl_structure.php:35 tbl_structure.php:156 tbl_structure.php:160 -#: tbl_structure.php:478 +#: tbl_structure.php:476 msgid "Fulltext" msgstr "Tulımäten" @@ -3507,8 +3550,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:711 -#: server_privileges.php:714 server_privileges.php:721 +#: libraries/replication_gui.lib.php:259 server_privileges.php:712 +#: server_privileges.php:715 server_privileges.php:722 #: server_synchronize.php:1171 msgid "User name" msgstr "İreşü iseme" @@ -3533,7 +3576,7 @@ msgstr "Üzgärmä" #: 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 +#: tbl_structure.php:727 msgid "Value" msgstr "Bäyä" @@ -3551,34 +3594,34 @@ msgstr "" msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:254 server_privileges.php:716 +#: libraries/replication_gui.lib.php:254 server_privileges.php:717 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:717 -#: server_privileges.php:784 server_privileges.php:808 -#: server_privileges.php:1928 server_privileges.php:1958 +#: libraries/replication_gui.lib.php:346 server_privileges.php:718 +#: server_privileges.php:785 server_privileges.php:809 +#: server_privileges.php:1948 server_privileges.php:1978 msgid "Use text field" msgstr "Bu mätennän" -#: libraries/replication_gui.lib.php:302 server_privileges.php:764 +#: libraries/replication_gui.lib.php:302 server_privileges.php:765 msgid "Any host" msgstr "Bar bulğan host" -#: libraries/replication_gui.lib.php:306 server_privileges.php:768 +#: libraries/replication_gui.lib.php:306 server_privileges.php:769 msgid "Local" msgstr "Cirle" -#: libraries/replication_gui.lib.php:312 server_privileges.php:773 +#: libraries/replication_gui.lib.php:312 server_privileges.php:774 msgid "This Host" msgstr "Bu Sanaq" -#: libraries/replication_gui.lib.php:318 server_privileges.php:779 +#: libraries/replication_gui.lib.php:318 server_privileges.php:780 msgid "Use Host Table" msgstr "Host Tüşämä eçennän" -#: libraries/replication_gui.lib.php:331 server_privileges.php:792 +#: libraries/replication_gui.lib.php:331 server_privileges.php:793 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -3612,29 +3655,29 @@ msgstr "Belgesez tel: %1$s." msgid "Servers" msgstr "Serverlär" -#: libraries/server_links.inc.php:53 server_engines.php:112 +#: libraries/server_links.inc.php:54 server_engines.php:112 #: server_engines.php:116 server_status.php:415 test/theme.php:105 msgid "Variables" msgstr "Üzgärmälär" -#: libraries/server_links.inc.php:57 test/theme.php:109 +#: libraries/server_links.inc.php:58 test/theme.php:109 msgid "Charsets" msgstr "Bilgelämä" -#: libraries/server_links.inc.php:61 test/theme.php:113 +#: libraries/server_links.inc.php:62 test/theme.php:113 msgid "Engines" msgstr "Engine" -#: libraries/server_links.inc.php:76 server_binlog.php:110 +#: libraries/server_links.inc.php:77 server_binlog.php:110 #: server_status.php:364 test/theme.php:121 msgid "Binary log" msgstr "Binar köndälek" -#: libraries/server_links.inc.php:80 +#: libraries/server_links.inc.php:81 msgid "Processes" msgstr "Proseslar" -#: libraries/server_links.inc.php:92 server_synchronize.php:1092 +#: libraries/server_links.inc.php:93 server_synchronize.php:1092 #: server_synchronize.php:1100 msgid "Synchronize" msgstr "" @@ -3883,13 +3926,13 @@ msgstr "" msgid "Save" msgstr "Saqla" -#: libraries/tbl_properties.inc.php:780 tbl_structure.php:542 +#: libraries/tbl_properties.inc.php:780 tbl_structure.php:540 #, fuzzy, php-format #| msgid "Add %s field(s)" msgid "Add %s column(s)" msgstr "%s alan östäw" -#: libraries/tbl_properties.inc.php:784 tbl_structure.php:536 +#: libraries/tbl_properties.inc.php:784 tbl_structure.php:534 #, fuzzy #| msgid "You have to add at least one field." msgid "You have to add at least one column." @@ -4083,8 +4126,8 @@ msgstr "Awdar" msgid "Protocol version" msgstr "Protokol söreme" -#: main.php:189 server_privileges.php:1389 server_privileges.php:1536 -#: server_privileges.php:1650 server_privileges.php:2068 +#: main.php:189 server_privileges.php:1406 server_privileges.php:1556 +#: server_privileges.php:1670 server_privileges.php:2089 #: server_processlist.php:54 msgid "User" msgstr "Qullanuçı" @@ -4526,112 +4569,112 @@ msgstr "Saqlaw Isulı" msgid "View dump (schema) of databases" msgstr "Biremleklärneñ eçtälegen (tözeleşen) çığaru" -#: server_privileges.php:24 server_privileges.php:266 +#: server_privileges.php:25 server_privileges.php:267 msgid "Includes all privileges except GRANT." msgstr "GRANT'tan basqa bar xoquqlar da bar." -#: server_privileges.php:25 server_privileges.php:192 -#: server_privileges.php:515 +#: server_privileges.php:26 server_privileges.php:193 +#: server_privileges.php:516 msgid "Allows altering the structure of existing tables." msgstr "Biredä bulğan tüşämä tözeleşen üzgärtü xoquqı." -#: server_privileges.php:26 server_privileges.php:208 -#: server_privileges.php:521 +#: server_privileges.php:27 server_privileges.php:209 +#: server_privileges.php:522 msgid "Allows altering and dropping stored routines." msgstr "Allows altering and dropping stored routines." -#: server_privileges.php:27 server_privileges.php:184 -#: server_privileges.php:514 +#: server_privileges.php:28 server_privileges.php:185 +#: server_privileges.php:515 msgid "Allows creating new databases and tables." msgstr "Yaña biremlek/tüşämä yasaw xoquqı." -#: server_privileges.php:28 server_privileges.php:207 -#: server_privileges.php:520 +#: server_privileges.php:29 server_privileges.php:208 +#: server_privileges.php:521 msgid "Allows creating stored routines." msgstr "Saqlanğan funksílar qorırğa birä." -#: server_privileges.php:29 server_privileges.php:514 +#: server_privileges.php:30 server_privileges.php:515 msgid "Allows creating new tables." msgstr "Yaña tüşämä yasaw xoquqı." -#: server_privileges.php:30 server_privileges.php:195 -#: server_privileges.php:518 +#: server_privileges.php:31 server_privileges.php:196 +#: server_privileges.php:519 msgid "Allows creating temporary tables." msgstr "Waqıtlı tüşämä yasaw xoquqı." -#: server_privileges.php:31 server_privileges.php:209 -#: server_privileges.php:554 +#: server_privileges.php:32 server_privileges.php:210 +#: server_privileges.php:555 msgid "Allows creating, dropping and renaming user accounts." msgstr "Qullanuçı xísabın qoru/salu/ataw eşen qılırğa birä." -#: server_privileges.php:32 server_privileges.php:199 -#: server_privileges.php:203 server_privileges.php:526 -#: server_privileges.php:530 +#: server_privileges.php:33 server_privileges.php:200 +#: server_privileges.php:204 server_privileges.php:527 +#: server_privileges.php:531 msgid "Allows creating new views." msgstr "Yaña qaraş qorırğa birä." -#: server_privileges.php:33 server_privileges.php:183 -#: server_privileges.php:506 +#: server_privileges.php:34 server_privileges.php:184 +#: server_privileges.php:507 msgid "Allows deleting data." msgstr "Eçtälek beterü xoquqı." -#: server_privileges.php:34 server_privileges.php:185 -#: server_privileges.php:517 +#: server_privileges.php:35 server_privileges.php:186 +#: server_privileges.php:518 msgid "Allows dropping databases and tables." msgstr "Biremlek/tüşämä beterü xoquqı." -#: server_privileges.php:35 server_privileges.php:517 +#: server_privileges.php:36 server_privileges.php:518 msgid "Allows dropping tables." msgstr "Tüşämä beterü xoquqı." -#: server_privileges.php:36 server_privileges.php:200 -#: server_privileges.php:534 +#: server_privileges.php:37 server_privileges.php:201 +#: server_privileges.php:535 msgid "Allows to set up events for the event scheduler" msgstr "" -#: server_privileges.php:37 server_privileges.php:210 -#: server_privileges.php:522 +#: server_privileges.php:38 server_privileges.php:211 +#: server_privileges.php:523 msgid "Allows executing stored routines." msgstr "Eçke funksílar eşlätterergä birä." -#: server_privileges.php:38 server_privileges.php:189 -#: server_privileges.php:509 +#: server_privileges.php:39 server_privileges.php:190 +#: server_privileges.php:510 msgid "Allows importing data from and exporting data into files." msgstr "Allows importing data from and exporting data into files." -#: server_privileges.php:39 server_privileges.php:540 +#: server_privileges.php:40 server_privileges.php:541 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "Allows adding users and privileges without reloading the privilege tüşämä." -#: server_privileges.php:40 server_privileges.php:191 -#: server_privileges.php:516 +#: server_privileges.php:41 server_privileges.php:192 +#: server_privileges.php:517 msgid "Allows creating and dropping indexes." msgstr "Açqıçlarnı qoru/beterü xoquqı." -#: server_privileges.php:41 server_privileges.php:181 -#: server_privileges.php:442 server_privileges.php:504 +#: server_privileges.php:42 server_privileges.php:182 +#: server_privileges.php:443 server_privileges.php:505 msgid "Allows inserting and replacing data." msgstr "Eçtälek östäw/almaştıru xoquqı." -#: server_privileges.php:42 server_privileges.php:196 -#: server_privileges.php:549 +#: server_privileges.php:43 server_privileges.php:197 +#: server_privileges.php:550 msgid "Allows locking tables for the current thread." msgstr "Allows locking tables for the current thread." -#: server_privileges.php:43 server_privileges.php:646 -#: server_privileges.php:648 +#: server_privileges.php:44 server_privileges.php:647 +#: server_privileges.php:649 msgid "Limits the number of new connections the user may open per hour." msgstr "Limits the number of new connections the user may open per hour." -#: server_privileges.php:44 server_privileges.php:634 -#: server_privileges.php:636 +#: server_privileges.php:45 server_privileges.php:635 +#: server_privileges.php:637 msgid "Limits the number of queries the user may send to the server per hour." msgstr "Limits the number of queries the user may send to the server per hour." -#: server_privileges.php:45 server_privileges.php:640 -#: server_privileges.php:642 +#: server_privileges.php:46 server_privileges.php:641 +#: server_privileges.php:643 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -4639,59 +4682,59 @@ 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 +#: server_privileges.php:47 server_privileges.php:653 +#: server_privileges.php:655 #, fuzzy msgid "Limits the number of simultaneous connections the user may have." msgstr "Limits the number of new connections the user may open per hour." -#: server_privileges.php:47 server_privileges.php:188 -#: server_privileges.php:544 +#: server_privileges.php:48 server_privileges.php:189 +#: server_privileges.php:545 msgid "Allows viewing processes of all users" msgstr "" -#: server_privileges.php:48 server_privileges.php:190 -#: server_privileges.php:448 server_privileges.php:550 +#: server_privileges.php:49 server_privileges.php:191 +#: server_privileges.php:449 server_privileges.php:551 msgid "Has no effect in this MySQL version." msgstr "Has no effect in this MySQL version." -#: server_privileges.php:49 server_privileges.php:186 -#: server_privileges.php:545 +#: server_privileges.php:50 server_privileges.php:187 +#: server_privileges.php:546 msgid "Allows reloading server settings and flushing the server's caches." msgstr "Allows reloading server settings and flushing the server's caches." -#: server_privileges.php:50 server_privileges.php:198 -#: server_privileges.php:552 +#: server_privileges.php:51 server_privileges.php:199 +#: server_privileges.php:553 msgid "Allows the user to ask where the slaves / masters are." msgstr "Gives the right to the user to ask where the slaves / masters are." -#: server_privileges.php:51 server_privileges.php:197 -#: server_privileges.php:553 +#: server_privileges.php:52 server_privileges.php:198 +#: server_privileges.php:554 msgid "Needed for the replication slaves." msgstr "Needed for the replication slaves." -#: server_privileges.php:52 server_privileges.php:180 -#: server_privileges.php:439 server_privileges.php:503 +#: server_privileges.php:53 server_privileges.php:181 +#: server_privileges.php:440 server_privileges.php:504 msgid "Allows reading data." msgstr "Eçtälekne uqu xoquqı." -#: server_privileges.php:53 server_privileges.php:193 -#: server_privileges.php:547 +#: server_privileges.php:54 server_privileges.php:194 +#: server_privileges.php:548 msgid "Gives access to the complete list of databases." msgstr "Gives access to the complete list of databases." -#: server_privileges.php:54 server_privileges.php:204 -#: server_privileges.php:206 server_privileges.php:519 +#: server_privileges.php:55 server_privileges.php:205 +#: server_privileges.php:207 server_privileges.php:520 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "SHOW CREATE VIEW sorawların eşläterlek itä." -#: server_privileges.php:55 server_privileges.php:187 -#: server_privileges.php:546 +#: server_privileges.php:56 server_privileges.php:188 +#: server_privileges.php:547 msgid "Allows shutting down the server." msgstr "Serverne tuqtatu xoquqı." -#: server_privileges.php:56 server_privileges.php:194 -#: server_privileges.php:543 +#: server_privileges.php:57 server_privileges.php:195 +#: server_privileges.php:544 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -4701,157 +4744,157 @@ msgstr "" "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 +#: server_privileges.php:58 server_privileges.php:202 +#: server_privileges.php:536 #, fuzzy msgid "Allows creating and dropping triggers" msgstr "Açqıçlarnı qoru/beterü xoquqı." -#: server_privileges.php:58 server_privileges.php:182 -#: server_privileges.php:445 server_privileges.php:505 +#: server_privileges.php:59 server_privileges.php:183 +#: server_privileges.php:446 server_privileges.php:506 msgid "Allows changing data." msgstr "Eçtälek üzgärtü xoquqı." -#: server_privileges.php:59 server_privileges.php:260 +#: server_privileges.php:60 server_privileges.php:261 msgid "No privileges." msgstr "Xoquqlar yuq." -#: server_privileges.php:302 server_privileges.php:303 +#: server_privileges.php:303 server_privileges.php:304 #, fuzzy #| msgid "None" msgctxt "None privileges" msgid "None" msgstr "Buş" -#: server_privileges.php:431 server_privileges.php:566 -#: server_privileges.php:1718 server_privileges.php:1724 +#: server_privileges.php:432 server_privileges.php:567 +#: server_privileges.php:1738 server_privileges.php:1744 msgid "Table-specific privileges" msgstr "Berär tüşämä öçen xoquqlar" -#: server_privileges.php:432 server_privileges.php:574 -#: server_privileges.php:1540 +#: server_privileges.php:433 server_privileges.php:575 +#: server_privileges.php:1560 msgid " Note: MySQL privilege names are expressed in English " msgstr " Beläse: MySQL'da xoquq adı İnglizçä kertelä!" -#: server_privileges.php:563 server_privileges.php:1539 +#: server_privileges.php:564 server_privileges.php:1559 msgid "Global privileges" msgstr "Töp xoquq" -#: server_privileges.php:565 server_privileges.php:1718 +#: server_privileges.php:566 server_privileges.php:1738 msgid "Database-specific privileges" msgstr "Berär biremlekkä qağılışlı xoquqlar" -#: server_privileges.php:610 +#: server_privileges.php:611 msgid "Administration" msgstr "İdärä" -#: server_privileges.php:630 +#: server_privileges.php:631 msgid "Resource limits" msgstr "Resurs çikläwläre" -#: server_privileges.php:631 +#: server_privileges.php:632 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "Beläse: 0 (nül) kertelgän çaqta çikläwe beterelä." -#: server_privileges.php:708 +#: server_privileges.php:709 msgid "Login Information" msgstr "Kereş Turında" -#: server_privileges.php:802 +#: server_privileges.php:803 msgid "Do not change the password" msgstr "Sersüzen üzgärtäse tügel" -#: server_privileges.php:843 server_privileges.php:2205 +#: server_privileges.php:844 server_privileges.php:2226 #, fuzzy #| msgid "No user(s) found." msgid "No user found." msgstr "Qullanuçı yuq." -#: server_privileges.php:887 +#: server_privileges.php:888 #, php-format msgid "The user %s already exists!" msgstr "\"%s\" atlı qullanuçı bar inde!" -#: server_privileges.php:970 +#: server_privileges.php:971 msgid "You have added a new user." msgstr "Yana qullanuçı östälände." -#: server_privileges.php:1191 +#: server_privileges.php:1196 #, php-format msgid "You have updated the privileges for %s." msgstr "You have updated the privileges for %s." -#: server_privileges.php:1215 +#: server_privileges.php:1220 #, php-format msgid "You have revoked the privileges for %s" msgstr "You have revoked the privileges for %s" -#: server_privileges.php:1251 +#: server_privileges.php:1256 #, php-format msgid "The password for %s was changed successfully." msgstr "\"%s\" öçen sezsüz üzgärtü uñışlı uzdı." -#: server_privileges.php:1271 +#: server_privileges.php:1276 #, php-format msgid "Deleting %s" msgstr "\"%s\" Beterü" -#: server_privileges.php:1282 +#: server_privileges.php:1287 msgid "No users selected for deleting!" msgstr "Beteräse qullanuçılar saylanmağan!" -#: server_privileges.php:1285 +#: server_privileges.php:1290 msgid "Reloading the privileges" msgstr "Bu xoquqlarnı yöklä" -#: server_privileges.php:1300 +#: server_privileges.php:1305 msgid "The selected users have been deleted successfully." msgstr "Saylanğan qullanuçını beterü uñışlı uzdı." -#: server_privileges.php:1335 +#: server_privileges.php:1344 msgid "The privileges were reloaded successfully." msgstr "Bu xoquqlarnı yökläw uñışlı uzdı." -#: server_privileges.php:1363 server_privileges.php:1649 +#: server_privileges.php:1380 server_privileges.php:1669 msgid "Edit Privileges" msgstr "Xoquqlar Üzgärtü" -#: server_privileges.php:1372 +#: server_privileges.php:1389 msgid "Revoke" msgstr "Töşer" -#: server_privileges.php:1404 +#: server_privileges.php:1424 msgid "User overview" msgstr "Qullanuçılar tezmäse" -#: server_privileges.php:1541 server_privileges.php:1723 -#: server_privileges.php:2072 +#: server_privileges.php:1561 server_privileges.php:1743 +#: server_privileges.php:2093 msgid "Grant" msgstr "Xoquq" -#: server_privileges.php:1560 server_privileges.php:2162 +#: server_privileges.php:1580 server_privileges.php:2183 msgid "Any" msgstr "Törle" -#: server_privileges.php:1609 server_privileges.php:1633 -#: server_privileges.php:2027 server_privileges.php:2216 +#: server_privileges.php:1629 server_privileges.php:1653 +#: server_privileges.php:2048 server_privileges.php:2237 msgid "Add a new User" msgstr "Yaña qullanuçı östäw" -#: server_privileges.php:1614 +#: server_privileges.php:1634 msgid "Remove selected users" msgstr "Saylanğan qullanuçı beterü" -#: server_privileges.php:1617 +#: server_privileges.php:1637 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "Qullanuçı xoquqların awdarıp beteräse." -#: server_privileges.php:1618 server_privileges.php:1619 -#: server_privileges.php:1620 +#: server_privileges.php:1638 server_privileges.php:1639 +#: server_privileges.php:1640 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:1636 +#: server_privileges.php:1656 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -4864,50 +4907,50 @@ msgstr "" "alardan ayırıla ala. Andí çaqlarda, dawam itü aldınnan, %sxoquqlarnı qabat " "yökläp alası%s." -#: server_privileges.php:1684 +#: server_privileges.php:1704 msgid "The selected user was not found in the privilege table." msgstr "Bu qullanuçı xoquqlar tüşämä eçendä tabılmadı." -#: server_privileges.php:1724 +#: server_privileges.php:1744 msgid "Column-specific privileges" msgstr "Berär bağana öçen xoquqlar" -#: server_privileges.php:1925 +#: server_privileges.php:1945 msgid "Add privileges on the following database" msgstr "Kiläse biremlek öçen xoquqlar östäw" -#: server_privileges.php:1943 +#: server_privileges.php:1963 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:1946 +#: server_privileges.php:1966 msgid "Add privileges on the following table" msgstr "Kiläse tüşämä öçen xoquqlar östäw" -#: server_privileges.php:2003 +#: server_privileges.php:2023 msgid "Change Login Information / Copy User" msgstr "Change Login Information / Copy User" -#: server_privileges.php:2006 +#: server_privileges.php:2026 msgid "Create a new user with the same privileges and ..." msgstr "Create a new user with the same privileges and ..." -#: server_privileges.php:2008 +#: server_privileges.php:2028 msgid "... keep the old one." msgstr "... keep the old one." -#: server_privileges.php:2009 +#: server_privileges.php:2029 msgid " ... delete the old one from the user tables." msgstr " ... delete the old one from the user tables." -#: server_privileges.php:2010 +#: server_privileges.php:2030 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:2011 +#: server_privileges.php:2031 msgid "" " ... delete the old one from the user tables and reload the privileges " "afterwards." @@ -4915,44 +4958,44 @@ msgstr "" " ... delete the old one from the user tables and reload the privileges " "afterwards." -#: server_privileges.php:2033 +#: server_privileges.php:2054 msgid "Database for user" msgstr "Qullanuçı biremlege" -#: server_privileges.php:2037 +#: server_privileges.php:2058 #, fuzzy #| msgid "None" msgctxt "Create none database for user" msgid "None" msgstr "Buş" -#: server_privileges.php:2038 +#: server_privileges.php:2059 msgid "Create database with same name and grant all privileges" msgstr "" -#: server_privileges.php:2039 +#: server_privileges.php:2060 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "" -#: server_privileges.php:2042 +#: server_privileges.php:2063 #, fuzzy, php-format msgid "Grant all privileges on database "%s"" msgstr "\"%s\" biremlege öçen xoquqlar tikşerü." -#: server_privileges.php:2065 +#: server_privileges.php:2086 #, php-format msgid "Users having access to "%s"" msgstr "\"%s\" belän eşläw xoquqı bulğan qullanuçılar" -#: server_privileges.php:2173 +#: server_privileges.php:2194 msgid "global" msgstr "ğömümi" -#: server_privileges.php:2175 +#: server_privileges.php:2196 msgid "database-specific" msgstr "berär biremlekkä qağılışlı" -#: server_privileges.php:2177 +#: server_privileges.php:2198 msgid "wildcard" msgstr "almaşbilge" @@ -7673,6 +7716,10 @@ msgstr "" msgid "Show insert query" msgstr "" +#: tbl_change.php:1143 +msgid "and then" +msgstr ", şunnan soñ" + #: tbl_change.php:1147 msgid "Go back to previous page" msgstr "Aldağı bitkä qaytu" @@ -7753,7 +7800,7 @@ msgstr "(Töp açqıçnıñ ğına adı \"PRIMARY\" bulırğa tieş\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:1514 +#: libraries/display_tbl.lib.php:417 server_privileges.php:1534 msgid "Show all" msgstr "Показати все" -#: browse_foreigners.php:82 libraries/common.lib.php:2313 +#: browse_foreigners.php:82 libraries/common.lib.php:2317 #: 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,18 +34,18 @@ 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:2831 -#: libraries/common.lib.php:2838 libraries/db_links.inc.php:75 +#: db_structure.php:106 libraries/common.lib.php:2835 +#: libraries/common.lib.php:2842 libraries/db_links.inc.php:75 #: libraries/tbl_links.inc.php:63 msgid "Search" msgstr "Шукати" -#: browse_foreigners.php:153 db_operations.php:385 db_operations.php:429 -#: db_operations.php:499 db_operations.php:609 db_search.php:362 -#: db_structure.php:567 js/messages.php:48 libraries/Config.class.php:1046 +#: browse_foreigners.php:153 db_operations.php:394 db_operations.php:438 +#: db_operations.php:508 db_operations.php:618 db_search.php:362 +#: db_structure.php:565 js/messages.php:53 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:1335 libraries/common.lib.php:2288 +#: libraries/common.lib.php:1335 libraries/common.lib.php:2292 #: 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,15 +56,15 @@ 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:664 server_privileges.php:1624 -#: server_privileges.php:1971 server_privileges.php:2018 -#: server_privileges.php:2057 server_replication.php:235 +#: server_privileges.php:665 server_privileges.php:1644 +#: server_privileges.php:1991 server_privileges.php:2038 +#: server_privileges.php:2078 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 #: tbl_operations.php:302 tbl_operations.php:499 tbl_operations.php:561 -#: tbl_operations.php:681 tbl_select.php:327 tbl_structure.php:562 -#: tbl_structure.php:597 tbl_tracking.php:395 tbl_tracking.php:512 +#: tbl_operations.php:681 tbl_select.php:327 tbl_structure.php:560 +#: tbl_structure.php:595 tbl_tracking.php:395 tbl_tracking.php:512 #: view_create.php:182 view_operations.php:101 msgid "Go" msgstr "Вперед" @@ -90,7 +90,7 @@ msgstr "" msgid "Database %1$s has been created." msgstr "" -#: db_datadict.php:49 db_operations.php:378 +#: db_datadict.php:49 db_operations.php:387 msgid "Database comment: " msgstr "Коментар бази даних: " @@ -117,10 +117,10 @@ 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:2070 +#: pdf_schema.php:1263 pdf_schema.php:1284 server_privileges.php:2091 #: 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 +#: tbl_structure.php:657 tbl_tracking.php:274 tbl_tracking.php:321 msgid "Type" msgstr "Тип" @@ -133,7 +133,7 @@ msgstr "Тип" msgid "Null" msgstr "Нуль" -#: db_datadict.php:178 db_structure.php:501 libraries/export/htmlword.php:247 +#: db_datadict.php:178 db_structure.php:499 libraries/export/htmlword.php:247 #: libraries/export/latex.php:360 libraries/export/odt.php:303 #: libraries/export/texytext.php:236 libraries/tbl_properties.inc.php:106 #: pdf_schema.php:1266 pdf_schema.php:1287 tbl_printview.php:146 @@ -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: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 +#: pdf_schema.php:1344 server_privileges.php:1588 server_privileges.php:1599 +#: server_privileges.php:1909 server_privileges.php:1914 +#: server_privileges.php:2208 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:1565 -#: server_privileges.php:1579 server_privileges.php:1889 -#: server_privileges.php:1892 server_privileges.php:2187 sql.php:193 +#: server_databases.php:64 server_privileges.php:1585 +#: server_privileges.php:1599 server_privileges.php:1909 +#: server_privileges.php:1912 server_privileges.php:2208 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" @@ -206,125 +206,121 @@ msgstr "Відмітити все" msgid "Unselect All" msgstr "Зняти всі відмітки" -#: db_operations.php:38 tbl_create.php:54 +#: db_operations.php:43 tbl_create.php:54 msgid "The database name is empty!" msgstr "" -#: db_operations.php:236 +#: db_operations.php:241 #, php-format msgid "Database %s has been renamed to %s" msgstr "" -#: db_operations.php:240 +#: db_operations.php:245 #, php-format msgid "Database %s has been copied to %s" msgstr "" -#: db_operations.php:412 +#: db_operations.php:421 msgid "Rename database to" msgstr "" -#: db_operations.php:417 server_processlist.php:57 +#: db_operations.php:426 server_processlist.php:57 msgid "Command" msgstr "Команда" -#: db_operations.php:429 tbl_change.php:1143 -msgid "and then" -msgstr "" - -#: db_operations.php:455 +#: db_operations.php:464 msgid "Copy database to" msgstr "" -#: db_operations.php:462 tbl_operations.php:528 tbl_tracking.php:388 +#: db_operations.php:471 tbl_operations.php:528 tbl_tracking.php:388 msgid "Structure only" msgstr "Лише структуру" -#: db_operations.php:463 tbl_operations.php:529 tbl_tracking.php:390 +#: db_operations.php:472 tbl_operations.php:529 tbl_tracking.php:390 msgid "Structure and data" msgstr "Структуру і дані" -#: db_operations.php:464 tbl_operations.php:530 tbl_tracking.php:389 +#: db_operations.php:473 tbl_operations.php:530 tbl_tracking.php:389 msgid "Data only" msgstr "Лише дані" -#: db_operations.php:472 +#: db_operations.php:481 msgid "CREATE DATABASE before copying" msgstr "" -#: db_operations.php:475 libraries/export/sql.php:52 +#: db_operations.php:484 libraries/export/sql.php:52 #: libraries/export/sql.php:74 libraries/export/sql.php:76 #: libraries/export/sql.php:82 tbl_operations.php:536 #, php-format msgid "Add %s" msgstr "" -#: db_operations.php:479 libraries/export/sql.php:78 tbl_operations.php:299 +#: db_operations.php:488 libraries/export/sql.php:78 tbl_operations.php:299 #: tbl_operations.php:538 msgid "Add AUTO_INCREMENT value" msgstr "" -#: db_operations.php:483 tbl_operations.php:545 +#: db_operations.php:492 tbl_operations.php:545 msgid "Add constraints" msgstr "" -#: db_operations.php:496 +#: db_operations.php:505 msgid "Switch to copied database" msgstr "" -#: db_operations.php:537 +#: db_operations.php:546 msgid "BLOB Repository" msgstr "" -#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1352 -#: libraries/server_links.inc.php:49 server_processlist.php:59 +#: db_operations.php:549 db_tracking.php:76 libraries/common.lib.php:1352 +#: libraries/server_links.inc.php:50 server_processlist.php:59 #: tbl_tracking.php:596 test/theme.php:101 msgid "Status" msgstr "Статус" -#: db_operations.php:548 +#: db_operations.php:557 #, fuzzy #| msgid "Enabled" msgctxt "BLOB repository" msgid "Enabled" msgstr "дозволено" -#: db_operations.php:552 +#: db_operations.php:561 msgid "Disable" msgstr "" -#: db_operations.php:562 +#: db_operations.php:571 msgid "Damaged" msgstr "" -#: db_operations.php:566 +#: db_operations.php:575 #, fuzzy #| msgid "Repair table" msgctxt "BLOB repository" msgid "Repair" msgstr "Ремонтувати таблицю" -#: db_operations.php:574 +#: db_operations.php:583 #, fuzzy #| msgid "Disabled" msgctxt "BLOB repository" msgid "Disabled" msgstr "заблоковано" -#: db_operations.php:578 +#: db_operations.php:587 msgid "Enable" msgstr "" -#: db_operations.php:602 libraries/Index.class.php:448 +#: db_operations.php:611 libraries/Index.class.php:448 #: libraries/db_structure.lib.php:62 libraries/mysql_charsets.lib.php:107 #: libraries/tbl_properties.inc.php:107 libraries/tbl_properties.inc.php:730 #: server_collations.php:54 server_collations.php:66 server_databases.php:111 #: tbl_operations.php:363 tbl_select.php:137 tbl_structure.php:179 -#: tbl_structure.php:767 tbl_tracking.php:275 tbl_tracking.php:326 +#: tbl_structure.php:765 tbl_tracking.php:275 tbl_tracking.php:326 msgid "Collation" msgstr "Порівняння" -#: db_operations.php:615 main.php:316 pdf_schema.php:34 +#: db_operations.php:624 main.php:316 pdf_schema.php:34 #, php-format msgid "" "The additional features for working with linked tables have been " @@ -333,14 +329,14 @@ msgstr "" "Додаткова можливість роботи із залінкованими таблицями деактивована. Для " "того, щоб довідатись чому, натисніть %sтут%s." -#: db_operations.php:648 +#: db_operations.php:657 msgid "Edit PDF Pages" 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:1665 -#: server_privileges.php:1721 server_privileges.php:1985 +#: libraries/header.inc.php:130 pdf_pages.php:424 server_privileges.php:1685 +#: server_privileges.php:1741 server_privileges.php:2005 #: server_synchronize.php:423 server_synchronize.php:866 tbl_tracking.php:592 #: test/theme.php:75 msgid "Table" @@ -349,7 +345,7 @@ msgstr "таблиця " #: db_printview.php:105 libraries/db_structure.lib.php:56 #: libraries/header_printview.inc.php:63 libraries/import.lib.php:146 #: navigation.php:638 navigation.php:660 server_databases.php:122 -#: tbl_printview.php:394 tbl_structure.php:365 tbl_structure.php:777 +#: tbl_printview.php:394 tbl_structure.php:365 tbl_structure.php:775 msgid "Rows" msgstr "Рядки" @@ -357,30 +353,30 @@ msgstr "Рядки" msgid "Size" msgstr "Розмір" -#: db_printview.php:162 db_structure.php:457 libraries/export/sql.php:559 +#: db_printview.php:162 db_structure.php:455 libraries/export/sql.php:559 #: libraries/export/sql.php:899 msgid "in use" msgstr "використовується" #: db_printview.php:187 libraries/db_info.inc.php:88 #: libraries/export/sql.php:514 pdf_schema.php:1241 tbl_printview.php:434 -#: tbl_structure.php:809 +#: tbl_structure.php:807 msgid "Creation" msgstr "Створено" #: db_printview.php:196 libraries/db_info.inc.php:93 #: libraries/export/sql.php:519 pdf_schema.php:1246 tbl_printview.php:444 -#: tbl_structure.php:817 +#: tbl_structure.php:815 msgid "Last update" msgstr "Поновлено" #: db_printview.php:205 libraries/db_info.inc.php:98 #: libraries/export/sql.php:524 pdf_schema.php:1251 tbl_printview.php:454 -#: tbl_structure.php:825 +#: tbl_structure.php:823 msgid "Last check" msgstr "Перевірено" -#: db_printview.php:222 db_structure.php:480 +#: db_printview.php:222 db_structure.php:478 #, fuzzy, php-format #| msgid "%s table(s)" msgid "%s table" @@ -441,7 +437,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:297 tbl_change.php:1031 tbl_indexes.php:250 +#: server_privileges.php:298 tbl_change.php:1031 tbl_indexes.php:250 #: tbl_select.php:288 msgid "Or" msgstr "або" @@ -514,9 +510,9 @@ 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:2833 +#: db_structure.php:105 libraries/common.lib.php:2837 #: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50 -#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:467 +#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:465 msgid "Browse" msgstr "Переглянути" @@ -561,36 +557,36 @@ 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:2832 libraries/sql_query_form.lib.php:334 +#: libraries/common.lib.php:2836 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:2829 libraries/common.lib.php:2836 +#: libraries/common.lib.php:2833 libraries/common.lib.php:2840 #: 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:1106 #: libraries/tbl_links.inc.php:56 pmd_general.php:134 -#: server_privileges.php:593 server_replication.php:315 tbl_tracking.php:269 +#: server_privileges.php:594 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:1656 +#: db_structure.php:543 db_structure.php:544 db_tracking.php:91 +#: libraries/Index.class.php:483 libraries/common.lib.php:1657 #: 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 -#: tbl_structure.php:152 tbl_structure.php:471 +#: tbl_structure.php:152 tbl_structure.php:469 msgid "Drop" 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:1655 +#: db_structure.php:541 db_structure.php:542 libraries/common.lib.php:1656 #: libraries/mult_submits.inc.php:39 libraries/tbl_links.inc.php:105 msgid "Empty" msgstr "Очистити" @@ -600,111 +596,111 @@ msgstr "Очистити" msgid "Table %s has been emptied" msgstr "Таблицю %s було очищено" -#: db_structure.php:326 libraries/tbl_links.inc.php:133 +#: db_structure.php:325 libraries/tbl_links.inc.php:133 #, php-format msgid "View %s has been dropped" msgstr "" -#: db_structure.php:326 libraries/tbl_links.inc.php:133 +#: db_structure.php:325 libraries/tbl_links.inc.php:133 #, php-format msgid "Table %s has been dropped" msgstr "Таблицю %s було знищено" -#: db_structure.php:333 +#: db_structure.php:332 msgid "Tracking is active." msgstr "" -#: db_structure.php:335 +#: db_structure.php:334 msgid "Tracking is not active." msgstr "" -#: db_structure.php:420 libraries/display_tbl.lib.php:1944 +#: db_structure.php:418 libraries/display_tbl.lib.php:1944 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation%" "s." msgstr "" -#: db_structure.php:434 db_structure.php:448 libraries/header.inc.php:126 +#: db_structure.php:432 db_structure.php:446 libraries/header.inc.php:130 #: libraries/tbl_info.inc.php:66 tbl_structure.php:185 test/theme.php:74 msgid "View" msgstr "" -#: db_structure.php:485 libraries/db_structure.lib.php:49 -#: libraries/server_links.inc.php:70 server_replication.php:33 +#: db_structure.php:483 libraries/db_structure.lib.php:49 +#: libraries/server_links.inc.php:71 server_replication.php:33 #: server_replication.php:164 server_status.php:369 msgid "Replication" msgstr "" -#: db_structure.php:489 +#: db_structure.php:487 msgid "Sum" msgstr "Всього" -#: db_structure.php:496 libraries/StorageEngine.class.php:356 +#: db_structure.php:494 libraries/StorageEngine.class.php:356 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "" -#: db_structure.php:524 db_structure.php:541 db_structure.php:542 +#: db_structure.php:522 db_structure.php:539 db_structure.php:540 #: 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:1596 tbl_structure.php:455 -#: tbl_structure.php:464 +#: server_databases.php:351 server_privileges.php:1616 tbl_structure.php:453 +#: tbl_structure.php:462 msgid "With selected:" msgstr "З відміченими:" -#: db_structure.php:527 libraries/display_tbl.lib.php:2076 -#: server_databases.php:348 server_privileges.php:569 -#: server_privileges.php:1599 tbl_structure.php:458 +#: db_structure.php:525 libraries/display_tbl.lib.php:2076 +#: server_databases.php:348 server_privileges.php:570 +#: server_privileges.php:1619 tbl_structure.php:456 msgid "Check All" msgstr "Відмітити все" -#: db_structure.php:531 libraries/display_tbl.lib.php:2077 +#: db_structure.php:529 libraries/display_tbl.lib.php:2077 #: libraries/replication_gui.lib.php:33 server_databases.php:350 -#: server_privileges.php:572 server_privileges.php:1603 tbl_structure.php:462 +#: server_privileges.php:573 server_privileges.php:1623 tbl_structure.php:460 msgid "Uncheck All" msgstr "Зняти усі відмітки" -#: db_structure.php:536 +#: db_structure.php:534 msgid "Check tables having overhead" msgstr "" -#: db_structure.php:547 db_structure.php:548 db_structure.php:599 +#: db_structure.php:545 db_structure.php:546 db_structure.php:597 #: libraries/display_tbl.lib.php:2180 libraries/mult_submits.inc.php:28 -#: tbl_structure.php:492 tbl_structure.php:494 +#: tbl_structure.php:490 tbl_structure.php:492 msgid "Print view" msgstr "Версія для друку" -#: db_structure.php:549 db_structure.php:550 libraries/mult_submits.inc.php:42 +#: db_structure.php:547 db_structure.php:548 libraries/mult_submits.inc.php:42 #: tbl_operations.php:581 msgid "Check table" msgstr "Перевірити таблицю" -#: db_structure.php:551 db_structure.php:552 libraries/mult_submits.inc.php:47 -#: tbl_operations.php:621 tbl_structure.php:709 tbl_structure.php:711 +#: db_structure.php:549 db_structure.php:550 libraries/mult_submits.inc.php:47 +#: tbl_operations.php:621 tbl_structure.php:707 tbl_structure.php:709 msgid "Optimize table" msgstr "Оптимізувати таблицю" -#: db_structure.php:553 db_structure.php:554 libraries/mult_submits.inc.php:52 +#: db_structure.php:551 db_structure.php:552 libraries/mult_submits.inc.php:52 #: tbl_operations.php:611 msgid "Repair table" msgstr "Ремонтувати таблицю" -#: db_structure.php:555 db_structure.php:556 libraries/mult_submits.inc.php:57 +#: db_structure.php:553 db_structure.php:554 libraries/mult_submits.inc.php:57 #: tbl_operations.php:601 msgid "Analyze table" msgstr "Аналіз таблиці" -#: db_structure.php:557 db_structure.php:558 libraries/db_links.inc.php:71 +#: db_structure.php:555 db_structure.php:556 libraries/db_links.inc.php:71 #: 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:1380 +#: libraries/server_links.inc.php:85 libraries/tbl_links.inc.php:82 +#: pmd_pdf.php:84 pmd_pdf.php:109 server_privileges.php:1397 #: setup/frames/menu.inc.php:22 tbl_row_action.php:59 msgid "Export" msgstr "Експорт" -#: db_structure.php:606 libraries/display_pdf_schema.lib.php:44 +#: db_structure.php:604 libraries/display_pdf_schema.lib.php:44 msgid "Data Dictionary" msgstr "Словник даних" @@ -715,10 +711,10 @@ msgstr "" #: db_tracking.php:71 libraries/export/htmlword.php:86 #: libraries/export/latex.php:148 libraries/export/odt.php:113 #: libraries/export/sql.php:342 libraries/export/texytext.php:84 -#: libraries/export/xml.php:255 libraries/header.inc.php:106 +#: libraries/export/xml.php:255 libraries/header.inc.php:110 #: libraries/header_printview.inc.php:58 server_databases.php:169 -#: server_privileges.php:1660 server_privileges.php:1721 -#: server_privileges.php:1979 server_processlist.php:56 +#: server_privileges.php:1680 server_privileges.php:1741 +#: server_privileges.php:1999 server_processlist.php:56 #: server_synchronize.php:1179 server_synchronize.php:1183 #: tbl_tracking.php:591 test/theme.php:65 msgid "Database" @@ -738,8 +734,8 @@ msgstr "" #: db_tracking.php:77 libraries/Index.class.php:440 #: libraries/db_structure.lib.php:53 server_databases.php:203 -#: server_privileges.php:1542 server_privileges.php:1725 -#: server_privileges.php:2073 tbl_structure.php:187 +#: server_privileges.php:1562 server_privileges.php:1745 +#: server_privileges.php:2094 tbl_structure.php:187 msgid "Action" msgstr "Дія" @@ -773,8 +769,8 @@ msgstr "" msgid "Untracked tables" msgstr "" -#: db_tracking.php:172 db_tracking.php:174 tbl_structure.php:528 -#: tbl_structure.php:530 +#: db_tracking.php:172 db_tracking.php:174 tbl_structure.php:526 +#: tbl_structure.php:528 msgid "Track table" msgstr "" @@ -928,187 +924,236 @@ msgstr "Порожнє ім'я хоста!" msgid "The user name is empty!" msgstr "Порожнє і'мя користувача!" -#: js/messages.php:44 server_privileges.php:1236 user_password.php:70 +#: js/messages.php:44 server_privileges.php:1241 user_password.php:70 msgid "The password is empty!" msgstr "Порожній пароль!" -#: js/messages.php:45 server_privileges.php:1234 user_password.php:73 +#: js/messages.php:45 server_privileges.php:1239 user_password.php:73 msgid "The passwords aren't the same!" msgstr "Паролі не однакові!" -#: js/messages.php:49 pmd_general.php:342 pmd_general.php:379 +#: js/messages.php:46 +#, fuzzy +#| msgid "Add a new User" +msgid "Add a New User" +msgstr "Додати нового користувача" + +#: js/messages.php:47 js/messages.php:54 pmd_general.php:342 +#: pmd_general.php:379 msgid "Cancel" msgstr "" -#: js/messages.php:52 pmd_save_pos.php:54 +#: js/messages.php:48 +#, fuzzy +#| msgid "Create" +msgid "Create User" +msgstr "Створити" + +#: js/messages.php:49 +#, fuzzy +#| msgid "Reloading the privileges" +msgid "Reloading Privileges" +msgstr "Перезавантаження прав" + +#: js/messages.php:50 +#, fuzzy +#| msgid "Remove selected users" +msgid "Removing Selected Users" +msgstr "Усунути відмічених користувачів" + +#: js/messages.php:57 +#, fuzzy +#| msgid "Log in" +msgid "Loading" +msgstr "Вхід в систему" + +#: js/messages.php:58 +#, fuzzy +#| msgid "Processes" +msgid "Processing Request" +msgstr "Процеси" + +#: js/messages.php:59 +msgid "Error in Processing Request" +msgstr "" + +#: js/messages.php:60 +msgid "Dropping Column" +msgstr "" + +#: js/messages.php:61 +msgid "Adding Primary Key" +msgstr "" + +#: js/messages.php:64 pmd_save_pos.php:54 msgid "Modifications have been saved" msgstr "Модифікації було збережено" -#: js/messages.php:53 pmd_relation_upd.php:49 +#: js/messages.php:65 pmd_relation_upd.php:49 msgid "Relation deleted" msgstr "" -#: js/messages.php:54 pmd_relation_new.php:64 +#: js/messages.php:66 pmd_relation_new.php:64 msgid "FOREIGN KEY relation added" msgstr "" -#: js/messages.php:55 pmd_relation_new.php:86 +#: js/messages.php:67 pmd_relation_new.php:86 msgid "Internal relation added" msgstr "" -#: js/messages.php:56 pmd_relation_new.php:63 pmd_relation_new.php:88 +#: js/messages.php:68 pmd_relation_new.php:63 pmd_relation_new.php:88 msgid "Error: Relation not added." msgstr "" -#: js/messages.php:57 pmd_relation_new.php:31 +#: js/messages.php:69 pmd_relation_new.php:31 msgid "Error: relation already exists." msgstr "" -#: js/messages.php:58 +#: js/messages.php:70 msgid "Error saving coordinates for Designer." msgstr "" -#: js/messages.php:59 libraries/relation.lib.php:107 +#: js/messages.php:71 libraries/relation.lib.php:107 #: libraries/relation.lib.php:119 msgid "General relation features" msgstr "Загальні можливості" -#: js/messages.php:59 libraries/relation.lib.php:101 +#: js/messages.php:71 libraries/relation.lib.php:101 #: libraries/relation.lib.php:108 msgid "Disabled" msgstr "заблоковано" -#: js/messages.php:60 +#: js/messages.php:72 msgid "Select referenced key" msgstr "" -#: js/messages.php:61 +#: js/messages.php:73 msgid "Select Foreign Key" msgstr "" -#: js/messages.php:62 +#: js/messages.php:74 msgid "Please select the primary key or a unique key" msgstr "" -#: js/messages.php:63 pmd_general.php:77 tbl_relation.php:548 +#: js/messages.php:75 pmd_general.php:77 tbl_relation.php:548 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" msgstr "Виберіть поля для відображення" #. l10n: Display text for calendar close link -#: js/messages.php:73 +#: js/messages.php:85 #, fuzzy #| msgid "None" msgid "Done" msgstr "Немає" #. l10n: Display text for previous month link in calendar -#: js/messages.php:75 +#: js/messages.php:87 #, fuzzy #| msgid "Previous" msgid "Prev" msgstr "Назад" #. l10n: Display text for next month link in calendar -#: js/messages.php:77 libraries/common.lib.php:2353 -#: libraries/common.lib.php:2356 libraries/display_tbl.lib.php:338 +#: js/messages.php:89 libraries/common.lib.php:2357 +#: libraries/common.lib.php:2360 libraries/display_tbl.lib.php:338 #: server_binlog.php:205 server_binlog.php:207 tbl_printview.php:424 -#: tbl_structure.php:801 +#: tbl_structure.php:799 msgid "Next" msgstr "Дальше" #. l10n: Display text for current month link in calendar -#: js/messages.php:79 +#: js/messages.php:91 #, fuzzy #| msgid "Total" msgid "Today" msgstr "Разом" -#: js/messages.php:82 +#: js/messages.php:94 #, fuzzy #| msgid "Binary" msgid "January" msgstr " Двійковий " -#: js/messages.php:83 +#: js/messages.php:95 msgid "February" msgstr "" -#: js/messages.php:84 +#: js/messages.php:96 #, fuzzy #| msgid "Mar" msgid "March" msgstr "Бер" -#: js/messages.php:85 +#: js/messages.php:97 #, fuzzy #| msgid "Apr" msgid "April" msgstr "Квт" -#: js/messages.php:86 +#: js/messages.php:98 msgid "May" msgstr "Трв" -#: js/messages.php:87 +#: js/messages.php:99 #, fuzzy #| msgid "Jun" msgid "June" msgstr "Чрв" -#: js/messages.php:88 +#: js/messages.php:100 #, fuzzy #| msgid "Jul" msgid "July" msgstr "Лип" -#: js/messages.php:89 +#: js/messages.php:101 #, fuzzy #| msgid "Aug" msgid "August" msgstr "Сер" -#: js/messages.php:90 +#: js/messages.php:102 msgid "September" msgstr "" -#: js/messages.php:91 +#: js/messages.php:103 #, fuzzy #| msgid "Oct" msgid "October" msgstr "Жов" -#: js/messages.php:92 +#: js/messages.php:104 msgid "November" msgstr "" -#: js/messages.php:93 +#: js/messages.php:105 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:97 libraries/common.lib.php:1557 +#: js/messages.php:109 libraries/common.lib.php:1557 msgid "Jan" msgstr "Січ" #. l10n: Short month name -#: js/messages.php:99 libraries/common.lib.php:1559 +#: js/messages.php:111 libraries/common.lib.php:1559 msgid "Feb" msgstr "Лют" #. l10n: Short month name -#: js/messages.php:101 libraries/common.lib.php:1561 +#: js/messages.php:113 libraries/common.lib.php:1561 msgid "Mar" msgstr "Бер" #. l10n: Short month name -#: js/messages.php:103 libraries/common.lib.php:1563 +#: js/messages.php:115 libraries/common.lib.php:1563 msgid "Apr" msgstr "Квт" #. l10n: Short month name -#: js/messages.php:105 libraries/common.lib.php:1565 +#: js/messages.php:117 libraries/common.lib.php:1565 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1116,176 +1161,176 @@ msgid "May" msgstr "Трв" #. l10n: Short month name -#: js/messages.php:107 libraries/common.lib.php:1567 +#: js/messages.php:119 libraries/common.lib.php:1567 msgid "Jun" msgstr "Чрв" #. l10n: Short month name -#: js/messages.php:109 libraries/common.lib.php:1569 +#: js/messages.php:121 libraries/common.lib.php:1569 msgid "Jul" msgstr "Лип" #. l10n: Short month name -#: js/messages.php:111 libraries/common.lib.php:1571 +#: js/messages.php:123 libraries/common.lib.php:1571 msgid "Aug" msgstr "Сер" #. l10n: Short month name -#: js/messages.php:113 libraries/common.lib.php:1573 +#: js/messages.php:125 libraries/common.lib.php:1573 msgid "Sep" msgstr "Вер" #. l10n: Short month name -#: js/messages.php:115 libraries/common.lib.php:1575 +#: js/messages.php:127 libraries/common.lib.php:1575 msgid "Oct" msgstr "Жов" #. l10n: Short month name -#: js/messages.php:117 libraries/common.lib.php:1577 +#: js/messages.php:129 libraries/common.lib.php:1577 msgid "Nov" msgstr "Лис" #. l10n: Short month name -#: js/messages.php:119 libraries/common.lib.php:1579 +#: js/messages.php:131 libraries/common.lib.php:1579 msgid "Dec" msgstr "Гру" -#: js/messages.php:122 +#: js/messages.php:134 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "Нд" -#: js/messages.php:123 +#: js/messages.php:135 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "Пн" -#: js/messages.php:124 +#: js/messages.php:136 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "Вт" -#: js/messages.php:125 +#: js/messages.php:137 msgid "Wednesday" msgstr "" -#: js/messages.php:126 +#: js/messages.php:138 msgid "Thursday" msgstr "" -#: js/messages.php:127 +#: js/messages.php:139 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "Пт" -#: js/messages.php:128 +#: js/messages.php:140 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:132 libraries/common.lib.php:1582 +#: js/messages.php:144 libraries/common.lib.php:1582 msgid "Sun" msgstr "Нд" #. l10n: Short week day name -#: js/messages.php:134 libraries/common.lib.php:1584 +#: js/messages.php:146 libraries/common.lib.php:1584 msgid "Mon" msgstr "Пн" #. l10n: Short week day name -#: js/messages.php:136 libraries/common.lib.php:1586 +#: js/messages.php:148 libraries/common.lib.php:1586 msgid "Tue" msgstr "Вт" #. l10n: Short week day name -#: js/messages.php:138 libraries/common.lib.php:1588 +#: js/messages.php:150 libraries/common.lib.php:1588 msgid "Wed" msgstr "Ср" #. l10n: Short week day name -#: js/messages.php:140 libraries/common.lib.php:1590 +#: js/messages.php:152 libraries/common.lib.php:1590 msgid "Thu" msgstr "Чт" #. l10n: Short week day name -#: js/messages.php:142 libraries/common.lib.php:1592 +#: js/messages.php:154 libraries/common.lib.php:1592 msgid "Fri" msgstr "Пт" #. l10n: Short week day name -#: js/messages.php:144 libraries/common.lib.php:1594 +#: js/messages.php:156 libraries/common.lib.php:1594 msgid "Sat" msgstr "Сб" #. l10n: Minimal week day name -#: js/messages.php:148 +#: js/messages.php:160 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "Нд" #. l10n: Minimal week day name -#: js/messages.php:150 +#: js/messages.php:162 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "Пн" #. l10n: Minimal week day name -#: js/messages.php:152 +#: js/messages.php:164 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "Вт" #. l10n: Minimal week day name -#: js/messages.php:154 +#: js/messages.php:166 #, fuzzy #| msgid "Wed" msgid "We" msgstr "Ср" #. l10n: Minimal week day name -#: js/messages.php:156 +#: js/messages.php:168 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "Чт" #. l10n: Minimal week day name -#: js/messages.php:158 +#: js/messages.php:170 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "Пт" #. l10n: Minimal week day name -#: js/messages.php:160 +#: js/messages.php:172 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "Сб" #. l10n: Column header for week of the year in calendar -#: js/messages.php:162 +#: js/messages.php:174 msgid "Wk" msgstr "" -#: js/messages.php:164 +#: js/messages.php:176 msgid "Hour" msgstr "" -#: js/messages.php:165 +#: js/messages.php:177 #, fuzzy #| msgid "in use" msgid "Minute" msgstr "використовується" -#: js/messages.php:166 +#: js/messages.php:178 #, fuzzy #| msgid "per second" msgid "Second" @@ -1342,7 +1387,7 @@ msgstr "Індекси" #: libraries/Index.class.php:444 libraries/mult_submits.inc.php:103 #: libraries/tbl_properties.inc.php:519 tbl_structure.php:33 -#: tbl_structure.php:155 tbl_structure.php:159 tbl_structure.php:474 +#: tbl_structure.php:155 tbl_structure.php:159 tbl_structure.php:472 #: tbl_tracking.php:322 msgid "Unique" msgstr "Унікальне" @@ -1383,8 +1428,8 @@ msgid "" "removed." msgstr "" -#: libraries/List_Database.class.php:431 libraries/server_links.inc.php:41 -#: server_databases.php:88 server_privileges.php:1660 +#: libraries/List_Database.class.php:431 libraries/server_links.inc.php:42 +#: server_databases.php:88 server_privileges.php:1680 #: setup/lib/messages.inc.php:110 test/theme.php:93 msgid "Databases" msgstr "Бази Даних" @@ -1550,7 +1595,7 @@ msgstr "Пароль:" msgid "Server Choice" msgstr "Вибір сервера" -#: libraries/auth/cookie.auth.lib.php:320 libraries/header.inc.php:59 +#: libraries/auth/cookie.auth.lib.php:320 libraries/header.inc.php:63 msgid "Cookies must be enabled past this point." msgstr "З цього моменту Cookies повинні бути дозволені." @@ -1631,7 +1676,7 @@ msgstr "" "recode_string поки буде завантажено extension reports. Перевірте Вашу php " "конфігурацію." -#: libraries/common.inc.php:583 +#: libraries/common.inc.php:587 msgid "" "phpMyAdmin was unable to read your configuration file!
This might " "happen if PHP finds a parse error in it or PHP cannot find the file.
Якщо Ви отримаєте порожню сторінку, " "- значить все в порядку." -#: libraries/common.inc.php:594 +#: libraries/common.inc.php:598 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "" -#: libraries/common.inc.php:599 +#: libraries/common.inc.php:603 msgid "" "The $cfg['PmaAbsoluteUri'] directive MUST be set in your " "configuration file!" @@ -1661,27 +1706,27 @@ msgstr "" "Змінна $cfg['PmaAbsoluteUri'] ПОВИННА бути встановлена у Вашому " "конфіґураційному файлі!" -#: libraries/common.inc.php:629 +#: libraries/common.inc.php:633 #, php-format msgid "Invalid server index: %s" msgstr "" -#: libraries/common.inc.php:636 +#: libraries/common.inc.php:640 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" -#: libraries/common.inc.php:645 libraries/header.inc.php:96 +#: libraries/common.inc.php:649 libraries/header.inc.php:100 #: libraries/select_server.lib.php:41 libraries/select_server.lib.php:47 #: main.php:185 test/theme.php:57 msgid "Server" msgstr "Сервер" -#: libraries/common.inc.php:823 +#: libraries/common.inc.php:827 msgid "Invalid authentication method set in configuration:" msgstr "" -#: libraries/common.inc.php:926 +#: libraries/common.inc.php:930 #, php-format msgid "You should upgrade to %s %s or later." msgstr "" @@ -1812,45 +1857,45 @@ msgstr "." msgid "%B %d, %Y at %I:%M %p" msgstr "%B %d %Y р., %H:%M" -#: libraries/common.lib.php:1907 +#: libraries/common.lib.php:1911 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s днів, %s годин, %s хвилин і %s секунд" -#: libraries/common.lib.php:2322 libraries/common.lib.php:2325 +#: libraries/common.lib.php:2326 libraries/common.lib.php:2329 #: libraries/display_tbl.lib.php:290 server_status.php:719 msgid "Begin" msgstr "Початок" -#: libraries/common.lib.php:2323 libraries/common.lib.php:2326 +#: libraries/common.lib.php:2327 libraries/common.lib.php:2330 #: libraries/display_tbl.lib.php:291 server_binlog.php:168 #: server_binlog.php:170 msgid "Previous" msgstr "Назад" -#: libraries/common.lib.php:2354 libraries/common.lib.php:2357 +#: libraries/common.lib.php:2358 libraries/common.lib.php:2361 #: libraries/display_tbl.lib.php:353 msgid "End" msgstr "Кінець" -#: libraries/common.lib.php:2430 +#: libraries/common.lib.php:2434 #, php-format msgid "Jump to database "%s"." msgstr "Перейти до бази даних "%s"." -#: libraries/common.lib.php:2450 +#: libraries/common.lib.php:2454 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" -#: libraries/common.lib.php:2830 libraries/common.lib.php:2837 +#: libraries/common.lib.php:2834 libraries/common.lib.php:2841 #: libraries/db_links.inc.php:68 libraries/export/sql.php:25 -#: libraries/import/sql.php:18 libraries/server_links.inc.php:45 +#: libraries/import/sql.php:18 libraries/server_links.inc.php:46 #: libraries/tbl_links.inc.php:60 querywindow.php:99 test/theme.php:97 msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2839 libraries/db_links.inc.php:104 +#: libraries/common.lib.php:2843 libraries/db_links.inc.php:104 #: libraries/tbl_links.inc.php:95 libraries/tbl_links.inc.php:117 #: view_operations.php:89 msgid "Operations" @@ -1897,15 +1942,15 @@ msgstr "Запит згідно прикладу" msgid "Designer" msgstr "" -#: libraries/db_links.inc.php:98 libraries/server_links.inc.php:88 +#: libraries/db_links.inc.php:98 libraries/server_links.inc.php:89 #: libraries/tbl_links.inc.php:91 pmd_pdf.php:84 pmd_pdf.php:110 #: setup/frames/menu.inc.php:21 msgid "Import" msgstr "" -#: libraries/db_links.inc.php:111 libraries/server_links.inc.php:66 -#: server_privileges.php:111 server_privileges.php:1722 -#: server_privileges.php:2071 test/theme.php:117 +#: libraries/db_links.inc.php:111 libraries/server_links.inc.php:67 +#: server_privileges.php:112 server_privileges.php:1742 +#: server_privileges.php:2092 test/theme.php:117 msgid "Privileges" msgstr "Привілеї" @@ -1924,7 +1969,7 @@ msgid "" msgstr "" #: libraries/db_structure.lib.php:69 server_databases.php:142 -#: tbl_printview.php:336 tbl_structure.php:682 +#: tbl_printview.php:336 tbl_structure.php:680 msgid "Overhead" msgstr "Надмірні видатки" @@ -1941,7 +1986,7 @@ msgstr "" msgid "(or the local MySQL server's socket is not correctly configured)" msgstr "" -#: libraries/dbi/mysql.dbi.lib.php:362 tbl_structure.php:608 +#: libraries/dbi/mysql.dbi.lib.php:362 tbl_structure.php:606 msgid "Details..." msgstr "" @@ -1951,22 +1996,22 @@ msgid "Change password" msgstr "Змінити пароль" #: libraries/display_change_password.lib.php:35 -#: libraries/replication_gui.lib.php:345 server_privileges.php:807 +#: libraries/replication_gui.lib.php:345 server_privileges.php:808 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:796 -#: server_privileges.php:800 server_privileges.php:811 -#: server_privileges.php:1538 server_synchronize.php:1175 +#: libraries/replication_gui.lib.php:349 server_privileges.php:797 +#: server_privileges.php:801 server_privileges.php:812 +#: server_privileges.php:1558 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:815 server_privileges.php:818 +#: server_privileges.php:816 server_privileges.php:819 msgid "Re-type" msgstr "Підтвердження" @@ -1979,12 +2024,12 @@ msgid "MySQL 4.0 compatible" msgstr "" #: libraries/display_change_password.lib.php:72 -#: libraries/replication_gui.lib.php:360 server_privileges.php:822 +#: libraries/replication_gui.lib.php:360 server_privileges.php:823 msgid "Generate Password" msgstr "" #: libraries/display_change_password.lib.php:75 -#: libraries/replication_gui.lib.php:363 server_privileges.php:825 +#: libraries/replication_gui.lib.php:363 server_privileges.php:826 msgid "Generate" msgstr "" @@ -1997,8 +2042,8 @@ msgstr "Створити нову БД" msgid "Create" msgstr "Створити" -#: libraries/display_create_database.lib.php:40 server_privileges.php:113 -#: server_privileges.php:1427 server_replication.php:35 +#: libraries/display_create_database.lib.php:40 server_privileges.php:114 +#: server_privileges.php:1447 server_replication.php:35 msgid "No Privileges" msgstr "Без привілеїв" @@ -2086,7 +2131,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:1875 server_processlist.php:75 +#: server_privileges.php:1895 server_processlist.php:75 msgid "None" msgstr "Немає" @@ -2270,7 +2315,7 @@ msgstr "" #: libraries/import/docsql.php:34 libraries/import/ldi.php:47 #: libraries/import/ods.php:30 libraries/import/sql.php:20 #: libraries/import/xls.php:26 libraries/import/xlsx.php:26 -#: libraries/import/xml.php:25 tbl_select.php:267 tbl_structure.php:753 +#: libraries/import/xml.php:25 tbl_select.php:267 tbl_structure.php:751 msgid "Options" msgstr "" @@ -2347,7 +2392,7 @@ msgstr "Запит виконувався %01.4f сек" #: libraries/display_tbl.lib.php:2089 libraries/mult_submits.inc.php:113 #: querywindow.php:125 querywindow.php:129 querywindow.php:132 -#: tbl_structure.php:25 tbl_structure.php:150 tbl_structure.php:470 +#: tbl_structure.php:25 tbl_structure.php:150 tbl_structure.php:468 msgid "Change" msgstr "Змінити" @@ -2413,7 +2458,7 @@ msgstr "" #: libraries/engines/innodb.lib.php:194 server_databases.php:137 #: server_databases.php:305 server_status.php:525 server_status.php:586 -#: server_status.php:607 tbl_printview.php:351 tbl_structure.php:696 +#: server_status.php:607 tbl_printview.php:351 tbl_structure.php:694 msgid "Total" msgstr "Разом" @@ -2658,7 +2703,7 @@ msgid "" msgstr "" #: libraries/export/codegen.php:37 setup/lib/messages.inc.php:88 -#: tbl_printview.php:376 tbl_structure.php:737 +#: tbl_printview.php:376 tbl_structure.php:735 msgid "Format" msgstr "Формат" @@ -2730,8 +2775,8 @@ 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:576 server_replication.php:316 tbl_printview.php:317 -#: tbl_structure.php:665 +#: server_privileges.php:577 server_replication.php:316 tbl_printview.php:317 +#: tbl_structure.php:663 msgid "Data" msgstr "Дані" @@ -2780,9 +2825,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:731 -#: server_privileges.php:734 server_privileges.php:790 -#: server_privileges.php:1537 server_privileges.php:2069 +#: libraries/replication_gui.lib.php:329 server_privileges.php:732 +#: server_privileges.php:735 server_privileges.php:791 +#: server_privileges.php:1557 server_privileges.php:2090 #: server_processlist.php:55 server_synchronize.php:1159 msgid "Host" msgstr "Хост" @@ -2977,7 +3022,7 @@ msgstr "" msgid "Open new phpMyAdmin window" msgstr "" -#: libraries/header.inc.php:115 +#: libraries/header.inc.php:119 msgid "New table" msgstr "" @@ -3134,20 +3179,20 @@ 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 +#: tbl_structure.php:471 msgid "Primary" msgstr "Первинний" #: libraries/mult_submits.inc.php:98 libraries/tbl_properties.inc.php:116 #: libraries/tbl_properties.inc.php:525 tbl_printview.php:326 #: tbl_structure.php:31 tbl_structure.php:154 tbl_structure.php:158 -#: tbl_structure.php:475 tbl_structure.php:673 +#: tbl_structure.php:473 tbl_structure.php:671 msgid "Index" msgstr "Індекс" #: libraries/mult_submits.inc.php:108 libraries/tbl_properties.inc.php:531 #: tbl_structure.php:35 tbl_structure.php:156 tbl_structure.php:160 -#: tbl_structure.php:478 +#: tbl_structure.php:476 msgid "Fulltext" msgstr "ПовнТекст" @@ -3450,8 +3495,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:711 -#: server_privileges.php:714 server_privileges.php:721 +#: libraries/replication_gui.lib.php:259 server_privileges.php:712 +#: server_privileges.php:715 server_privileges.php:722 #: server_synchronize.php:1171 msgid "User name" msgstr "Ім'я користувача" @@ -3475,7 +3520,7 @@ msgstr "Змінна" #: 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 +#: tbl_structure.php:727 msgid "Value" msgstr "Значення" @@ -3493,34 +3538,34 @@ msgstr "" msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:254 server_privileges.php:716 +#: libraries/replication_gui.lib.php:254 server_privileges.php:717 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:717 -#: server_privileges.php:784 server_privileges.php:808 -#: server_privileges.php:1928 server_privileges.php:1958 +#: libraries/replication_gui.lib.php:346 server_privileges.php:718 +#: server_privileges.php:785 server_privileges.php:809 +#: server_privileges.php:1948 server_privileges.php:1978 msgid "Use text field" msgstr "Використовувати текстове поле" -#: libraries/replication_gui.lib.php:302 server_privileges.php:764 +#: libraries/replication_gui.lib.php:302 server_privileges.php:765 msgid "Any host" msgstr "Довільний хост" -#: libraries/replication_gui.lib.php:306 server_privileges.php:768 +#: libraries/replication_gui.lib.php:306 server_privileges.php:769 msgid "Local" msgstr "Локальний" -#: libraries/replication_gui.lib.php:312 server_privileges.php:773 +#: libraries/replication_gui.lib.php:312 server_privileges.php:774 msgid "This Host" msgstr "Цей хост" -#: libraries/replication_gui.lib.php:318 server_privileges.php:779 +#: libraries/replication_gui.lib.php:318 server_privileges.php:780 msgid "Use Host Table" msgstr "Використовувати Таблицю Хостів" -#: libraries/replication_gui.lib.php:331 server_privileges.php:792 +#: libraries/replication_gui.lib.php:331 server_privileges.php:793 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -3554,29 +3599,29 @@ msgstr "" msgid "Servers" msgstr "" -#: libraries/server_links.inc.php:53 server_engines.php:112 +#: libraries/server_links.inc.php:54 server_engines.php:112 #: server_engines.php:116 server_status.php:415 test/theme.php:105 msgid "Variables" msgstr "Змінні" -#: libraries/server_links.inc.php:57 test/theme.php:109 +#: libraries/server_links.inc.php:58 test/theme.php:109 msgid "Charsets" msgstr "Кодування" -#: libraries/server_links.inc.php:61 test/theme.php:113 +#: libraries/server_links.inc.php:62 test/theme.php:113 msgid "Engines" msgstr "" -#: libraries/server_links.inc.php:76 server_binlog.php:110 +#: libraries/server_links.inc.php:77 server_binlog.php:110 #: server_status.php:364 test/theme.php:121 msgid "Binary log" msgstr "" -#: libraries/server_links.inc.php:80 +#: libraries/server_links.inc.php:81 msgid "Processes" msgstr "Процеси" -#: libraries/server_links.inc.php:92 server_synchronize.php:1092 +#: libraries/server_links.inc.php:93 server_synchronize.php:1092 #: server_synchronize.php:1100 msgid "Synchronize" msgstr "" @@ -3825,13 +3870,13 @@ msgstr "" msgid "Save" msgstr "Зберегти" -#: libraries/tbl_properties.inc.php:780 tbl_structure.php:542 +#: libraries/tbl_properties.inc.php:780 tbl_structure.php:540 #, fuzzy, php-format #| msgid "Add into comments" msgid "Add %s column(s)" msgstr "Додати коментар" -#: libraries/tbl_properties.inc.php:784 tbl_structure.php:536 +#: libraries/tbl_properties.inc.php:784 tbl_structure.php:534 #, fuzzy #| msgid "You have to choose at least one column to display" msgid "You have to add at least one column." @@ -4012,8 +4057,8 @@ msgstr "Перевстановити" msgid "Protocol version" msgstr "" -#: main.php:189 server_privileges.php:1389 server_privileges.php:1536 -#: server_privileges.php:1650 server_privileges.php:2068 +#: main.php:189 server_privileges.php:1406 server_privileges.php:1556 +#: server_privileges.php:1670 server_privileges.php:2089 #: server_processlist.php:54 msgid "User" msgstr "Користувач" @@ -4442,116 +4487,116 @@ msgstr "" msgid "View dump (schema) of databases" msgstr "Переглянути dump (схему) баз даних" -#: server_privileges.php:24 server_privileges.php:266 +#: server_privileges.php:25 server_privileges.php:267 msgid "Includes all privileges except GRANT." msgstr "Дозволити всі права за винятком GRANT." -#: server_privileges.php:25 server_privileges.php:192 -#: server_privileges.php:515 +#: server_privileges.php:26 server_privileges.php:193 +#: server_privileges.php:516 msgid "Allows altering the structure of existing tables." msgstr "Дозволити змінювати структуру наявних таблиць." -#: server_privileges.php:26 server_privileges.php:208 -#: server_privileges.php:521 +#: server_privileges.php:27 server_privileges.php:209 +#: server_privileges.php:522 msgid "Allows altering and dropping stored routines." msgstr "" -#: server_privileges.php:27 server_privileges.php:184 -#: server_privileges.php:514 +#: server_privileges.php:28 server_privileges.php:185 +#: server_privileges.php:515 msgid "Allows creating new databases and tables." msgstr "Дозволити створювати нові бази даних та таблиці." -#: server_privileges.php:28 server_privileges.php:207 -#: server_privileges.php:520 +#: server_privileges.php:29 server_privileges.php:208 +#: server_privileges.php:521 msgid "Allows creating stored routines." msgstr "" -#: server_privileges.php:29 server_privileges.php:514 +#: server_privileges.php:30 server_privileges.php:515 msgid "Allows creating new tables." msgstr "Дозволити створювати нові таблиці." -#: server_privileges.php:30 server_privileges.php:195 -#: server_privileges.php:518 +#: server_privileges.php:31 server_privileges.php:196 +#: server_privileges.php:519 msgid "Allows creating temporary tables." msgstr "Дозволити створювати тимчасові таблиці." -#: server_privileges.php:31 server_privileges.php:209 -#: server_privileges.php:554 +#: server_privileges.php:32 server_privileges.php:210 +#: server_privileges.php:555 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 +#: server_privileges.php:33 server_privileges.php:200 +#: server_privileges.php:204 server_privileges.php:527 +#: server_privileges.php:531 msgid "Allows creating new views." msgstr "" -#: server_privileges.php:33 server_privileges.php:183 -#: server_privileges.php:506 +#: server_privileges.php:34 server_privileges.php:184 +#: server_privileges.php:507 msgid "Allows deleting data." msgstr "Дозволити знищувати дані з таблиць." -#: server_privileges.php:34 server_privileges.php:185 -#: server_privileges.php:517 +#: server_privileges.php:35 server_privileges.php:186 +#: server_privileges.php:518 msgid "Allows dropping databases and tables." msgstr "Дозволити знищувати бази даних та таблиці." -#: server_privileges.php:35 server_privileges.php:517 +#: server_privileges.php:36 server_privileges.php:518 msgid "Allows dropping tables." msgstr "Дозволити знищувати таблиці." -#: server_privileges.php:36 server_privileges.php:200 -#: server_privileges.php:534 +#: server_privileges.php:37 server_privileges.php:201 +#: server_privileges.php:535 msgid "Allows to set up events for the event scheduler" msgstr "" -#: server_privileges.php:37 server_privileges.php:210 -#: server_privileges.php:522 +#: server_privileges.php:38 server_privileges.php:211 +#: server_privileges.php:523 msgid "Allows executing stored routines." msgstr "" -#: server_privileges.php:38 server_privileges.php:189 -#: server_privileges.php:509 +#: server_privileges.php:39 server_privileges.php:190 +#: server_privileges.php:510 msgid "Allows importing data from and exporting data into files." msgstr "Дозволити імпорт даних з файлів, та експорт у файли." -#: server_privileges.php:39 server_privileges.php:540 +#: server_privileges.php:40 server_privileges.php:541 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "Дозволити додавання користувачів та прав без перезавантаження таблиці прав." -#: server_privileges.php:40 server_privileges.php:191 -#: server_privileges.php:516 +#: server_privileges.php:41 server_privileges.php:192 +#: server_privileges.php:517 msgid "Allows creating and dropping indexes." msgstr "Дозволити створення та знищення індексів." -#: server_privileges.php:41 server_privileges.php:181 -#: server_privileges.php:442 server_privileges.php:504 +#: server_privileges.php:42 server_privileges.php:182 +#: server_privileges.php:443 server_privileges.php:505 msgid "Allows inserting and replacing data." msgstr "Дозволити вставку та заміну даних." -#: server_privileges.php:42 server_privileges.php:196 -#: server_privileges.php:549 +#: server_privileges.php:43 server_privileges.php:197 +#: server_privileges.php:550 msgid "Allows locking tables for the current thread." msgstr "Дозволити блокування таблиць для біжучих потоків." -#: server_privileges.php:43 server_privileges.php:646 -#: server_privileges.php:648 +#: server_privileges.php:44 server_privileges.php:647 +#: server_privileges.php:649 msgid "Limits the number of new connections the user may open per hour." msgstr "" "Обмежити кількість нових під'єднань, які користувач може створювати протягом " "години." -#: server_privileges.php:44 server_privileges.php:634 -#: server_privileges.php:636 +#: server_privileges.php:45 server_privileges.php:635 +#: server_privileges.php:637 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" "Обмежити кількість запитів, які користувач може надіслати серверу протягом " "години." -#: server_privileges.php:45 server_privileges.php:640 -#: server_privileges.php:642 +#: server_privileges.php:46 server_privileges.php:641 +#: server_privileges.php:643 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -4559,58 +4604,58 @@ msgstr "" "Обмежити кількість команд, що вносять зміни до будь-якої таблиці чи бази " "даних, які користувач може виконати протягом години." -#: server_privileges.php:46 server_privileges.php:652 -#: server_privileges.php:654 +#: server_privileges.php:47 server_privileges.php:653 +#: server_privileges.php:655 msgid "Limits the number of simultaneous connections the user may have." msgstr "" -#: server_privileges.php:47 server_privileges.php:188 -#: server_privileges.php:544 +#: server_privileges.php:48 server_privileges.php:189 +#: server_privileges.php:545 msgid "Allows viewing processes of all users" msgstr "" -#: server_privileges.php:48 server_privileges.php:190 -#: server_privileges.php:448 server_privileges.php:550 +#: server_privileges.php:49 server_privileges.php:191 +#: server_privileges.php:449 server_privileges.php:551 msgid "Has no effect in this MySQL version." msgstr "Неефективно для цієї версії MySQL." -#: server_privileges.php:49 server_privileges.php:186 -#: server_privileges.php:545 +#: server_privileges.php:50 server_privileges.php:187 +#: server_privileges.php:546 msgid "Allows reloading server settings and flushing the server's caches." msgstr "Дозволити перезавантаження установок та очищення кешу сервера." -#: server_privileges.php:50 server_privileges.php:198 -#: server_privileges.php:552 +#: server_privileges.php:51 server_privileges.php:199 +#: server_privileges.php:553 msgid "Allows the user to ask where the slaves / masters are." msgstr "Надати користувачу право запитувати де є slaves / masters." -#: server_privileges.php:51 server_privileges.php:197 -#: server_privileges.php:553 +#: server_privileges.php:52 server_privileges.php:198 +#: server_privileges.php:554 msgid "Needed for the replication slaves." msgstr "Необхідно для реплікації slaves." -#: server_privileges.php:52 server_privileges.php:180 -#: server_privileges.php:439 server_privileges.php:503 +#: server_privileges.php:53 server_privileges.php:181 +#: server_privileges.php:440 server_privileges.php:504 msgid "Allows reading data." msgstr "Дозволити читання даних." -#: server_privileges.php:53 server_privileges.php:193 -#: server_privileges.php:547 +#: server_privileges.php:54 server_privileges.php:194 +#: server_privileges.php:548 msgid "Gives access to the complete list of databases." msgstr "Надати доступ до повного списку баз даних." -#: server_privileges.php:54 server_privileges.php:204 -#: server_privileges.php:206 server_privileges.php:519 +#: server_privileges.php:55 server_privileges.php:205 +#: server_privileges.php:207 server_privileges.php:520 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "" -#: server_privileges.php:55 server_privileges.php:187 -#: server_privileges.php:546 +#: server_privileges.php:56 server_privileges.php:188 +#: server_privileges.php:547 msgid "Allows shutting down the server." msgstr "Дозволити вимкнення сервера." -#: server_privileges.php:56 server_privileges.php:194 -#: server_privileges.php:543 +#: server_privileges.php:57 server_privileges.php:195 +#: server_privileges.php:544 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -4620,156 +4665,156 @@ msgstr "" "під'єднань; Обов'язково для більшості адміністративних операцій таких як " "встановлення ґлобальних змінних чи припинення процесів інших користувачів." -#: server_privileges.php:57 server_privileges.php:201 -#: server_privileges.php:535 +#: server_privileges.php:58 server_privileges.php:202 +#: server_privileges.php:536 msgid "Allows creating and dropping triggers" msgstr "" -#: server_privileges.php:58 server_privileges.php:182 -#: server_privileges.php:445 server_privileges.php:505 +#: server_privileges.php:59 server_privileges.php:183 +#: server_privileges.php:446 server_privileges.php:506 msgid "Allows changing data." msgstr "Дозволити зміну даних." -#: server_privileges.php:59 server_privileges.php:260 +#: server_privileges.php:60 server_privileges.php:261 msgid "No privileges." msgstr "Немає прав." -#: server_privileges.php:302 server_privileges.php:303 +#: server_privileges.php:303 server_privileges.php:304 #, fuzzy #| msgid "None" msgctxt "None privileges" msgid "None" msgstr "Немає" -#: server_privileges.php:431 server_privileges.php:566 -#: server_privileges.php:1718 server_privileges.php:1724 +#: server_privileges.php:432 server_privileges.php:567 +#: server_privileges.php:1738 server_privileges.php:1744 msgid "Table-specific privileges" msgstr "Права, які стосуються таблиці" -#: server_privileges.php:432 server_privileges.php:574 -#: server_privileges.php:1540 +#: server_privileges.php:433 server_privileges.php:575 +#: server_privileges.php:1560 msgid " Note: MySQL privilege names are expressed in English " msgstr " Зауваження: привілеї MySQL задаються по-англійськи " -#: server_privileges.php:563 server_privileges.php:1539 +#: server_privileges.php:564 server_privileges.php:1559 msgid "Global privileges" msgstr "Глобальні права" -#: server_privileges.php:565 server_privileges.php:1718 +#: server_privileges.php:566 server_privileges.php:1738 msgid "Database-specific privileges" msgstr "Права, які стосуються бази даних" -#: server_privileges.php:610 +#: server_privileges.php:611 msgid "Administration" msgstr "Адміністратор" -#: server_privileges.php:630 +#: server_privileges.php:631 msgid "Resource limits" msgstr "Обмеження ресурсів" -#: server_privileges.php:631 +#: server_privileges.php:632 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "Примітка: Встановлення цієї опції у 0 (нуль) знімає обмеження." -#: server_privileges.php:708 +#: server_privileges.php:709 msgid "Login Information" msgstr "Вхідна інформація (Login)" -#: server_privileges.php:802 +#: server_privileges.php:803 msgid "Do not change the password" msgstr "Не змінювати пароль" -#: server_privileges.php:843 server_privileges.php:2205 +#: server_privileges.php:844 server_privileges.php:2226 #, fuzzy #| msgid "No user(s) found." msgid "No user found." msgstr "Не знайдено користувача." -#: server_privileges.php:887 +#: server_privileges.php:888 #, php-format msgid "The user %s already exists!" msgstr "Користувач %s вже існує!" -#: server_privileges.php:970 +#: server_privileges.php:971 msgid "You have added a new user." msgstr "Було додано нового користувача." -#: server_privileges.php:1191 +#: server_privileges.php:1196 #, fuzzy, php-format msgid "You have updated the privileges for %s." msgstr "Було змінено привілеї для" -#: server_privileges.php:1215 +#: server_privileges.php:1220 #, php-format msgid "You have revoked the privileges for %s" msgstr "Ви змінили привілеї для %s" -#: server_privileges.php:1251 +#: server_privileges.php:1256 #, php-format msgid "The password for %s was changed successfully." msgstr "Пароль для %s успішно змінено." -#: server_privileges.php:1271 +#: server_privileges.php:1276 #, php-format msgid "Deleting %s" msgstr "Усунути %s" -#: server_privileges.php:1282 +#: server_privileges.php:1287 msgid "No users selected for deleting!" msgstr "" -#: server_privileges.php:1285 +#: server_privileges.php:1290 msgid "Reloading the privileges" msgstr "Перезавантаження прав" -#: server_privileges.php:1300 +#: server_privileges.php:1305 msgid "The selected users have been deleted successfully." msgstr "Відмічених користувачів успішно усунуто." -#: server_privileges.php:1335 +#: server_privileges.php:1344 msgid "The privileges were reloaded successfully." msgstr "Права успішно перезавантажено." -#: server_privileges.php:1363 server_privileges.php:1649 +#: server_privileges.php:1380 server_privileges.php:1669 msgid "Edit Privileges" msgstr "Редагування привілеїв" -#: server_privileges.php:1372 +#: server_privileges.php:1389 msgid "Revoke" msgstr "Відмінити" -#: server_privileges.php:1404 +#: server_privileges.php:1424 msgid "User overview" msgstr "Огляд користувачів" -#: server_privileges.php:1541 server_privileges.php:1723 -#: server_privileges.php:2072 +#: server_privileges.php:1561 server_privileges.php:1743 +#: server_privileges.php:2093 msgid "Grant" msgstr "Grant" -#: server_privileges.php:1560 server_privileges.php:2162 +#: server_privileges.php:1580 server_privileges.php:2183 msgid "Any" msgstr "Довільний" -#: server_privileges.php:1609 server_privileges.php:1633 -#: server_privileges.php:2027 server_privileges.php:2216 +#: server_privileges.php:1629 server_privileges.php:1653 +#: server_privileges.php:2048 server_privileges.php:2237 msgid "Add a new User" msgstr "Додати нового користувача" -#: server_privileges.php:1614 +#: server_privileges.php:1634 msgid "Remove selected users" msgstr "Усунути відмічених користувачів" -#: server_privileges.php:1617 +#: server_privileges.php:1637 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 +#: server_privileges.php:1638 server_privileges.php:1639 +#: server_privileges.php:1640 msgid "Drop the databases that have the same names as the users." msgstr "Усунути бази даних, які мають такі ж назви як імена користувачів." -#: server_privileges.php:1636 +#: server_privileges.php:1656 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -4782,50 +4827,50 @@ msgstr "" "сервером, якщо в цю таблицю вносилися зміни вручну. У цьому випадку Вам " "необхідно %sперезавантажити права%s перед продовженням." -#: server_privileges.php:1684 +#: server_privileges.php:1704 msgid "The selected user was not found in the privilege table." msgstr "Вказаного користувача не знайдено в таблиці прав." -#: server_privileges.php:1724 +#: server_privileges.php:1744 msgid "Column-specific privileges" msgstr "Права, які стосуються колонок таблиці" -#: server_privileges.php:1925 +#: server_privileges.php:1945 msgid "Add privileges on the following database" msgstr "Додати права для цієї бази даних" -#: server_privileges.php:1943 +#: server_privileges.php:1963 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" -#: server_privileges.php:1946 +#: server_privileges.php:1966 msgid "Add privileges on the following table" msgstr "Додати права для цієї таблиці" -#: server_privileges.php:2003 +#: server_privileges.php:2023 msgid "Change Login Information / Copy User" msgstr "Змінити реєстраційні дані / Копіювати користувача" -#: server_privileges.php:2006 +#: server_privileges.php:2026 msgid "Create a new user with the same privileges and ..." msgstr "Створити нового користувача з такими ж правами і ..." -#: server_privileges.php:2008 +#: server_privileges.php:2028 msgid "... keep the old one." msgstr "... залишити старого." -#: server_privileges.php:2009 +#: server_privileges.php:2029 msgid " ... delete the old one from the user tables." msgstr " ... знищити старого з таблиці користувачів." -#: server_privileges.php:2010 +#: server_privileges.php:2030 msgid "" " ... revoke all active privileges from the old one and delete it afterwards." msgstr "" " ... анулювати всі активні права старого користувача, знищивши його після " "того." -#: server_privileges.php:2011 +#: server_privileges.php:2031 msgid "" " ... delete the old one from the user tables and reload the privileges " "afterwards." @@ -4833,44 +4878,44 @@ msgstr "" " ... знищити старого з таблиці користувачів та перевантажити права після " "того." -#: server_privileges.php:2033 +#: server_privileges.php:2054 msgid "Database for user" msgstr "" -#: server_privileges.php:2037 +#: server_privileges.php:2058 #, fuzzy #| msgid "None" msgctxt "Create none database for user" msgid "None" msgstr "Немає" -#: server_privileges.php:2038 +#: server_privileges.php:2059 msgid "Create database with same name and grant all privileges" msgstr "" -#: server_privileges.php:2039 +#: server_privileges.php:2060 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "" -#: server_privileges.php:2042 +#: server_privileges.php:2063 #, php-format msgid "Grant all privileges on database "%s"" msgstr "" -#: server_privileges.php:2065 +#: server_privileges.php:2086 #, php-format msgid "Users having access to "%s"" msgstr "Користувачі, котрі мають доступ до "%s"" -#: server_privileges.php:2173 +#: server_privileges.php:2194 msgid "global" msgstr "глобальний" -#: server_privileges.php:2175 +#: server_privileges.php:2196 msgid "database-specific" msgstr "специфічний для бази даних" -#: server_privileges.php:2177 +#: server_privileges.php:2198 msgid "wildcard" msgstr "шаблон" @@ -7522,6 +7567,10 @@ msgstr "" msgid "Show insert query" msgstr "" +#: tbl_change.php:1143 +msgid "and then" +msgstr "" + #: tbl_change.php:1147 msgid "Go back to previous page" msgstr "Повернутись" @@ -7600,7 +7649,7 @@ msgstr "(\"PRIMARY\" повинно бути іменем лише msgid "Add to index  %s column(s)" msgstr "Додати до індексу %s колоноку(и)" -#: tbl_indexes.php:256 tbl_structure.php:589 tbl_structure.php:600 +#: tbl_indexes.php:256 tbl_structure.php:587 tbl_structure.php:598 msgid "Column count has to be larger than zero." msgstr "" @@ -7714,39 +7763,39 @@ msgstr "Перевір цілісність даних на рівні поси msgid "Show tables" msgstr "Показати таблиці" -#: tbl_printview.php:310 tbl_structure.php:656 +#: tbl_printview.php:310 tbl_structure.php:654 msgid "Space usage" msgstr "Простір, що використовується" -#: tbl_printview.php:314 tbl_structure.php:660 +#: tbl_printview.php:314 tbl_structure.php:658 msgid "Usage" msgstr "Використання" -#: tbl_printview.php:341 tbl_structure.php:687 +#: tbl_printview.php:341 tbl_structure.php:685 msgid "Effective" msgstr "Ефективність" -#: tbl_printview.php:366 tbl_structure.php:725 +#: tbl_printview.php:366 tbl_structure.php:723 msgid "Row Statistics" msgstr "Статистика рядка" -#: tbl_printview.php:369 tbl_structure.php:728 +#: tbl_printview.php:369 tbl_structure.php:726 msgid "Statements" msgstr "Параметр" -#: tbl_printview.php:380 tbl_structure.php:740 +#: tbl_printview.php:380 tbl_structure.php:738 msgid "static" msgstr "" -#: tbl_printview.php:382 tbl_structure.php:742 +#: tbl_printview.php:382 tbl_structure.php:740 msgid "dynamic" msgstr "динамічний" -#: tbl_printview.php:404 tbl_structure.php:785 +#: tbl_printview.php:404 tbl_structure.php:783 msgid "Row length" msgstr "Довжина рядка" -#: tbl_printview.php:414 tbl_structure.php:793 +#: tbl_printview.php:414 tbl_structure.php:791 msgid " Row size " msgstr " Розмір рядка " @@ -7818,50 +7867,50 @@ msgstr "Немає" msgid "Column %s has been dropped" msgstr "Таблицю %s було знищено" -#: tbl_structure.php:385 +#: tbl_structure.php:384 #, php-format msgid "A primary key has been added on %s" msgstr "Було додано первинний ключ до %s" -#: tbl_structure.php:400 tbl_structure.php:414 tbl_structure.php:428 +#: tbl_structure.php:398 tbl_structure.php:412 tbl_structure.php:426 #, php-format msgid "An index has been added on %s" msgstr "Було додано індекс для %s" -#: tbl_structure.php:506 tbl_structure.php:508 +#: tbl_structure.php:504 tbl_structure.php:506 msgid "Relation view" msgstr "Перегляд залежностей" -#: tbl_structure.php:515 tbl_structure.php:517 +#: tbl_structure.php:513 tbl_structure.php:515 msgid "Propose table structure" msgstr "Запропонувати структуру таблиці" -#: tbl_structure.php:540 +#: tbl_structure.php:538 #, fuzzy #| msgid "Add into comments" msgid "Add column" msgstr "Додати коментар" -#: tbl_structure.php:554 +#: tbl_structure.php:552 msgid "At End of Table" msgstr "У кінці таблиці" -#: tbl_structure.php:555 +#: tbl_structure.php:553 msgid "At Beginning of Table" msgstr "На початку таблиці" -#: tbl_structure.php:556 +#: tbl_structure.php:554 #, php-format msgid "After %s" msgstr "Після %s" -#: tbl_structure.php:594 +#: tbl_structure.php:592 #, fuzzy, php-format #| msgid "Create an index on %s columns" msgid "Create an index on  %s columns" msgstr "Створити індекс на %s колонках" -#: tbl_structure.php:756 +#: tbl_structure.php:754 msgid "partitioned" msgstr "" diff --git a/po/ur.po b/po/ur.po index 1597d5ffd..2677ff61a 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-13 09:03-0400\n" +"POT-Creation-Date: 2010-06-22 00:55+0530\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:1514 +#: libraries/display_tbl.lib.php:417 server_privileges.php:1534 msgid "Show all" msgstr "سبھی دکھاو" -#: browse_foreigners.php:82 libraries/common.lib.php:2313 +#: browse_foreigners.php:82 libraries/common.lib.php:2317 #: 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,18 +41,18 @@ 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:2831 -#: libraries/common.lib.php:2838 libraries/db_links.inc.php:75 +#: db_structure.php:106 libraries/common.lib.php:2835 +#: libraries/common.lib.php:2842 libraries/db_links.inc.php:75 #: libraries/tbl_links.inc.php:63 msgid "Search" msgstr "تلاش" -#: browse_foreigners.php:153 db_operations.php:385 db_operations.php:429 -#: db_operations.php:499 db_operations.php:609 db_search.php:362 -#: db_structure.php:567 js/messages.php:48 libraries/Config.class.php:1046 +#: browse_foreigners.php:153 db_operations.php:394 db_operations.php:438 +#: db_operations.php:508 db_operations.php:618 db_search.php:362 +#: db_structure.php:565 js/messages.php:53 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:1335 libraries/common.lib.php:2288 +#: libraries/common.lib.php:1335 libraries/common.lib.php:2292 #: 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,15 +63,15 @@ 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:664 server_privileges.php:1624 -#: server_privileges.php:1971 server_privileges.php:2018 -#: server_privileges.php:2057 server_replication.php:235 +#: server_privileges.php:665 server_privileges.php:1644 +#: server_privileges.php:1991 server_privileges.php:2038 +#: server_privileges.php:2078 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 #: tbl_operations.php:302 tbl_operations.php:499 tbl_operations.php:561 -#: tbl_operations.php:681 tbl_select.php:327 tbl_structure.php:562 -#: tbl_structure.php:597 tbl_tracking.php:395 tbl_tracking.php:512 +#: tbl_operations.php:681 tbl_select.php:327 tbl_structure.php:560 +#: tbl_structure.php:595 tbl_tracking.php:395 tbl_tracking.php:512 #: view_create.php:182 view_operations.php:101 msgid "Go" msgstr "جائو" @@ -97,7 +97,7 @@ msgstr "یہ ویلیو استعمال کریں" msgid "Database %1$s has been created." msgstr "بن گئی ہے %1$s ڈیٹا بیس" -#: db_datadict.php:49 db_operations.php:378 +#: db_datadict.php:49 db_operations.php:387 msgid "Database comment: " msgstr "ڈیٹا بیس رائے" @@ -124,10 +124,10 @@ 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:2070 +#: pdf_schema.php:1263 pdf_schema.php:1284 server_privileges.php:2091 #: 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 +#: tbl_structure.php:657 tbl_tracking.php:274 tbl_tracking.php:321 msgid "Type" msgstr "قِسم" @@ -140,7 +140,7 @@ msgstr "قِسم" msgid "Null" msgstr "منسوخ" -#: db_datadict.php:178 db_structure.php:501 libraries/export/htmlword.php:247 +#: db_datadict.php:178 db_structure.php:499 libraries/export/htmlword.php:247 #: libraries/export/latex.php:360 libraries/export/odt.php:303 #: libraries/export/texytext.php:236 libraries/tbl_properties.inc.php:106 #: pdf_schema.php:1266 pdf_schema.php:1287 tbl_printview.php:146 @@ -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: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 +#: pdf_schema.php:1344 server_privileges.php:1588 server_privileges.php:1599 +#: server_privileges.php:1909 server_privileges.php:1914 +#: server_privileges.php:2208 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:1565 -#: server_privileges.php:1579 server_privileges.php:1889 -#: server_privileges.php:1892 server_privileges.php:2187 sql.php:193 +#: server_databases.php:64 server_privileges.php:1585 +#: server_privileges.php:1599 server_privileges.php:1909 +#: server_privileges.php:1912 server_privileges.php:2208 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" @@ -213,119 +213,115 @@ msgstr "سارا منتخب کریں" msgid "Unselect All" msgstr "سارا انتخاب ختم کریں" -#: db_operations.php:38 tbl_create.php:54 +#: db_operations.php:43 tbl_create.php:54 msgid "The database name is empty!" msgstr "ڈیٹا بیس کا نام خالی ہے!" -#: db_operations.php:236 +#: db_operations.php:241 #, php-format msgid "Database %s has been renamed to %s" msgstr "Database %s has been renamed to %s" -#: db_operations.php:240 +#: db_operations.php:245 #, php-format msgid "Database %s has been copied to %s" msgstr "Database %s has been copied to %s" -#: db_operations.php:412 +#: db_operations.php:421 msgid "Rename database to" msgstr "ڈیٹا بیس کا نام بدلیں" -#: db_operations.php:417 server_processlist.php:57 +#: db_operations.php:426 server_processlist.php:57 msgid "Command" msgstr "کمانڈ" -#: db_operations.php:429 tbl_change.php:1143 -msgid "and then" -msgstr "اور پھر" - -#: db_operations.php:455 +#: db_operations.php:464 msgid "Copy database to" msgstr "ڈیٹا بیس کاپی کریں" -#: db_operations.php:462 tbl_operations.php:528 tbl_tracking.php:388 +#: db_operations.php:471 tbl_operations.php:528 tbl_tracking.php:388 msgid "Structure only" msgstr "سٹرکچر صرف" -#: db_operations.php:463 tbl_operations.php:529 tbl_tracking.php:390 +#: db_operations.php:472 tbl_operations.php:529 tbl_tracking.php:390 msgid "Structure and data" msgstr "سٹرکچر اور ڈیٹا" -#: db_operations.php:464 tbl_operations.php:530 tbl_tracking.php:389 +#: db_operations.php:473 tbl_operations.php:530 tbl_tracking.php:389 msgid "Data only" msgstr "صرف ڈیٹا" -#: db_operations.php:472 +#: db_operations.php:481 msgid "CREATE DATABASE before copying" msgstr "کاپی سے پہلے ڈیٹا بیس بنائیں" -#: db_operations.php:475 libraries/export/sql.php:52 +#: db_operations.php:484 libraries/export/sql.php:52 #: libraries/export/sql.php:74 libraries/export/sql.php:76 #: libraries/export/sql.php:82 tbl_operations.php:536 #, php-format msgid "Add %s" msgstr "شامل کریں %s" -#: db_operations.php:479 libraries/export/sql.php:78 tbl_operations.php:299 +#: db_operations.php:488 libraries/export/sql.php:78 tbl_operations.php:299 #: tbl_operations.php:538 msgid "Add AUTO_INCREMENT value" msgstr "ویلیو شامل کریں AUTO_INCREMENT" -#: db_operations.php:483 tbl_operations.php:545 +#: db_operations.php:492 tbl_operations.php:545 msgid "Add constraints" msgstr "Add constraints" -#: db_operations.php:496 +#: db_operations.php:505 msgid "Switch to copied database" msgstr "Switch to copied database" -#: db_operations.php:537 +#: db_operations.php:546 msgid "BLOB Repository" msgstr "BLOB Repository" -#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1352 -#: libraries/server_links.inc.php:49 server_processlist.php:59 +#: db_operations.php:549 db_tracking.php:76 libraries/common.lib.php:1352 +#: libraries/server_links.inc.php:50 server_processlist.php:59 #: tbl_tracking.php:596 test/theme.php:101 msgid "Status" msgstr "حالت" -#: db_operations.php:548 +#: db_operations.php:557 msgctxt "BLOB repository" msgid "Enabled" msgstr "فعال" -#: db_operations.php:552 +#: db_operations.php:561 msgid "Disable" msgstr "غیر فعال" -#: db_operations.php:562 +#: db_operations.php:571 msgid "Damaged" msgstr "ضرر" -#: db_operations.php:566 +#: db_operations.php:575 msgctxt "BLOB repository" msgid "Repair" msgstr "مرمت" -#: db_operations.php:574 +#: db_operations.php:583 msgctxt "BLOB repository" msgid "Disabled" msgstr "غیر فعال" -#: db_operations.php:578 +#: db_operations.php:587 msgid "Enable" msgstr "فعال" -#: db_operations.php:602 libraries/Index.class.php:448 +#: db_operations.php:611 libraries/Index.class.php:448 #: libraries/db_structure.lib.php:62 libraries/mysql_charsets.lib.php:107 #: libraries/tbl_properties.inc.php:107 libraries/tbl_properties.inc.php:730 #: server_collations.php:54 server_collations.php:66 server_databases.php:111 #: tbl_operations.php:363 tbl_select.php:137 tbl_structure.php:179 -#: tbl_structure.php:767 tbl_tracking.php:275 tbl_tracking.php:326 +#: tbl_structure.php:765 tbl_tracking.php:275 tbl_tracking.php:326 msgid "Collation" msgstr "کولیکشن" -#: db_operations.php:615 main.php:316 pdf_schema.php:34 +#: db_operations.php:624 main.php:316 pdf_schema.php:34 #, php-format msgid "" "The additional features for working with linked tables have been " @@ -334,14 +330,14 @@ msgstr "" "The additional features for working with linked tables have been " "deactivated. To find out why click %shere%s." -#: db_operations.php:648 +#: db_operations.php:657 msgid "Edit PDF Pages" 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:1665 -#: server_privileges.php:1721 server_privileges.php:1985 +#: libraries/header.inc.php:130 pdf_pages.php:424 server_privileges.php:1685 +#: server_privileges.php:1741 server_privileges.php:2005 #: server_synchronize.php:423 server_synchronize.php:866 tbl_tracking.php:592 #: test/theme.php:75 msgid "Table" @@ -350,7 +346,7 @@ msgstr "ٹیبل" #: db_printview.php:105 libraries/db_structure.lib.php:56 #: libraries/header_printview.inc.php:63 libraries/import.lib.php:146 #: navigation.php:638 navigation.php:660 server_databases.php:122 -#: tbl_printview.php:394 tbl_structure.php:365 tbl_structure.php:777 +#: tbl_printview.php:394 tbl_structure.php:365 tbl_structure.php:775 msgid "Rows" msgstr "" @@ -358,30 +354,30 @@ msgstr "" msgid "Size" msgstr "ناپ" -#: db_printview.php:162 db_structure.php:457 libraries/export/sql.php:559 +#: db_printview.php:162 db_structure.php:455 libraries/export/sql.php:559 #: libraries/export/sql.php:899 msgid "in use" msgstr "استعمال میں" #: db_printview.php:187 libraries/db_info.inc.php:88 #: libraries/export/sql.php:514 pdf_schema.php:1241 tbl_printview.php:434 -#: tbl_structure.php:809 +#: tbl_structure.php:807 msgid "Creation" msgstr "تخلیق" #: db_printview.php:196 libraries/db_info.inc.php:93 #: libraries/export/sql.php:519 pdf_schema.php:1246 tbl_printview.php:444 -#: tbl_structure.php:817 +#: tbl_structure.php:815 msgid "Last update" msgstr "آخری دفعہ اپ ڈیٹ" #: db_printview.php:205 libraries/db_info.inc.php:98 #: libraries/export/sql.php:524 pdf_schema.php:1251 tbl_printview.php:454 -#: tbl_structure.php:825 +#: tbl_structure.php:823 msgid "Last check" msgstr "آخری دفعہ چیک" -#: db_printview.php:222 db_structure.php:480 +#: db_printview.php:222 db_structure.php:478 #, fuzzy, php-format #| msgid "%s table(s)" msgid "%s table" @@ -442,7 +438,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:297 tbl_change.php:1031 tbl_indexes.php:250 +#: server_privileges.php:298 tbl_change.php:1031 tbl_indexes.php:250 #: tbl_select.php:288 msgid "Or" msgstr "یا" @@ -515,9 +511,9 @@ 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:2833 +#: db_structure.php:105 libraries/common.lib.php:2837 #: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50 -#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:467 +#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:465 msgid "Browse" msgstr "Browse" @@ -562,36 +558,36 @@ 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:2832 libraries/sql_query_form.lib.php:334 +#: libraries/common.lib.php:2836 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:2829 libraries/common.lib.php:2836 +#: libraries/common.lib.php:2833 libraries/common.lib.php:2840 #: 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:1106 #: libraries/tbl_links.inc.php:56 pmd_general.php:134 -#: server_privileges.php:593 server_replication.php:315 tbl_tracking.php:269 +#: server_privileges.php:594 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:1656 +#: db_structure.php:543 db_structure.php:544 db_tracking.php:91 +#: libraries/Index.class.php:483 libraries/common.lib.php:1657 #: 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 -#: tbl_structure.php:152 tbl_structure.php:471 +#: tbl_structure.php:152 tbl_structure.php:469 msgid "Drop" 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:1655 +#: db_structure.php:541 db_structure.php:542 libraries/common.lib.php:1656 #: libraries/mult_submits.inc.php:39 libraries/tbl_links.inc.php:105 msgid "Empty" msgstr "خالی" @@ -601,25 +597,25 @@ msgstr "خالی" msgid "Table %s has been emptied" msgstr " %s ٹیبل" -#: db_structure.php:326 libraries/tbl_links.inc.php:133 +#: db_structure.php:325 libraries/tbl_links.inc.php:133 #, php-format msgid "View %s has been dropped" msgstr "View %s has been dropped" -#: db_structure.php:326 libraries/tbl_links.inc.php:133 +#: db_structure.php:325 libraries/tbl_links.inc.php:133 #, php-format msgid "Table %s has been dropped" msgstr "Table %s has been dropped" -#: db_structure.php:333 +#: db_structure.php:332 msgid "Tracking is active." msgstr "ٹریکنگ ایکٹو ہے" -#: db_structure.php:335 +#: db_structure.php:334 msgid "Tracking is not active." msgstr "ٹریکنگ ایکٹو نہیں ہے" -#: db_structure.php:420 libraries/display_tbl.lib.php:1944 +#: db_structure.php:418 libraries/display_tbl.lib.php:1944 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation%" @@ -628,86 +624,86 @@ msgstr "" "This view has at least this number of rows. Please refer to %sdocumentation%" "s." -#: db_structure.php:434 db_structure.php:448 libraries/header.inc.php:126 +#: db_structure.php:432 db_structure.php:446 libraries/header.inc.php:130 #: libraries/tbl_info.inc.php:66 tbl_structure.php:185 test/theme.php:74 msgid "View" msgstr "ویو" -#: db_structure.php:485 libraries/db_structure.lib.php:49 -#: libraries/server_links.inc.php:70 server_replication.php:33 +#: db_structure.php:483 libraries/db_structure.lib.php:49 +#: libraries/server_links.inc.php:71 server_replication.php:33 #: server_replication.php:164 server_status.php:369 msgid "Replication" msgstr "لپیٹنا" -#: db_structure.php:489 +#: db_structure.php:487 msgid "Sum" msgstr "مجموعہ" -#: db_structure.php:496 libraries/StorageEngine.class.php:356 +#: db_structure.php:494 libraries/StorageEngine.class.php:356 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "%s is the default storage engine on this MySQL server." -#: db_structure.php:524 db_structure.php:541 db_structure.php:542 +#: db_structure.php:522 db_structure.php:539 db_structure.php:540 #: 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:1596 tbl_structure.php:455 -#: tbl_structure.php:464 +#: server_databases.php:351 server_privileges.php:1616 tbl_structure.php:453 +#: tbl_structure.php:462 msgid "With selected:" msgstr "With selected:" -#: db_structure.php:527 libraries/display_tbl.lib.php:2076 -#: server_databases.php:348 server_privileges.php:569 -#: server_privileges.php:1599 tbl_structure.php:458 +#: db_structure.php:525 libraries/display_tbl.lib.php:2076 +#: server_databases.php:348 server_privileges.php:570 +#: server_privileges.php:1619 tbl_structure.php:456 msgid "Check All" msgstr "چیک آل" -#: db_structure.php:531 libraries/display_tbl.lib.php:2077 +#: db_structure.php:529 libraries/display_tbl.lib.php:2077 #: libraries/replication_gui.lib.php:33 server_databases.php:350 -#: server_privileges.php:572 server_privileges.php:1603 tbl_structure.php:462 +#: server_privileges.php:573 server_privileges.php:1623 tbl_structure.php:460 msgid "Uncheck All" msgstr "ان چیک آل" -#: db_structure.php:536 +#: db_structure.php:534 msgid "Check tables having overhead" msgstr "اوورہیڈ ٹیبلز چیک کریں" -#: db_structure.php:547 db_structure.php:548 db_structure.php:599 +#: db_structure.php:545 db_structure.php:546 db_structure.php:597 #: libraries/display_tbl.lib.php:2180 libraries/mult_submits.inc.php:28 -#: tbl_structure.php:492 tbl_structure.php:494 +#: tbl_structure.php:490 tbl_structure.php:492 msgid "Print view" msgstr "پرنٹ ویو" -#: db_structure.php:549 db_structure.php:550 libraries/mult_submits.inc.php:42 +#: db_structure.php:547 db_structure.php:548 libraries/mult_submits.inc.php:42 #: tbl_operations.php:581 msgid "Check table" msgstr "ٹیبل چیک کریں" -#: db_structure.php:551 db_structure.php:552 libraries/mult_submits.inc.php:47 -#: tbl_operations.php:621 tbl_structure.php:709 tbl_structure.php:711 +#: db_structure.php:549 db_structure.php:550 libraries/mult_submits.inc.php:47 +#: tbl_operations.php:621 tbl_structure.php:707 tbl_structure.php:709 msgid "Optimize table" msgstr "ٹیبلز آپٹی مائز " -#: db_structure.php:553 db_structure.php:554 libraries/mult_submits.inc.php:52 +#: db_structure.php:551 db_structure.php:552 libraries/mult_submits.inc.php:52 #: tbl_operations.php:611 msgid "Repair table" msgstr "ٹیبلز مرمت کریں" -#: db_structure.php:555 db_structure.php:556 libraries/mult_submits.inc.php:57 +#: db_structure.php:553 db_structure.php:554 libraries/mult_submits.inc.php:57 #: tbl_operations.php:601 msgid "Analyze table" msgstr "ٹیبلز کا تجزیہ" -#: db_structure.php:557 db_structure.php:558 libraries/db_links.inc.php:71 +#: db_structure.php:555 db_structure.php:556 libraries/db_links.inc.php:71 #: 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:1380 +#: libraries/server_links.inc.php:85 libraries/tbl_links.inc.php:82 +#: pmd_pdf.php:84 pmd_pdf.php:109 server_privileges.php:1397 #: setup/frames/menu.inc.php:22 tbl_row_action.php:59 msgid "Export" msgstr "برآمد" -#: db_structure.php:606 libraries/display_pdf_schema.lib.php:44 +#: db_structure.php:604 libraries/display_pdf_schema.lib.php:44 msgid "Data Dictionary" msgstr "ڈیٹا ڈتشنری" @@ -718,10 +714,10 @@ msgstr "ٹریکڈ ٹیبلز" #: db_tracking.php:71 libraries/export/htmlword.php:86 #: libraries/export/latex.php:148 libraries/export/odt.php:113 #: libraries/export/sql.php:342 libraries/export/texytext.php:84 -#: libraries/export/xml.php:255 libraries/header.inc.php:106 +#: libraries/export/xml.php:255 libraries/header.inc.php:110 #: libraries/header_printview.inc.php:58 server_databases.php:169 -#: server_privileges.php:1660 server_privileges.php:1721 -#: server_privileges.php:1979 server_processlist.php:56 +#: server_privileges.php:1680 server_privileges.php:1741 +#: server_privileges.php:1999 server_processlist.php:56 #: server_synchronize.php:1179 server_synchronize.php:1183 #: tbl_tracking.php:591 test/theme.php:65 msgid "Database" @@ -741,8 +737,8 @@ msgstr "اپ ڈیٹ کیا گیا" #: db_tracking.php:77 libraries/Index.class.php:440 #: libraries/db_structure.lib.php:53 server_databases.php:203 -#: server_privileges.php:1542 server_privileges.php:1725 -#: server_privileges.php:2073 tbl_structure.php:187 +#: server_privileges.php:1562 server_privileges.php:1745 +#: server_privileges.php:2094 tbl_structure.php:187 msgid "Action" msgstr "عمل" @@ -776,8 +772,8 @@ msgstr "سٹرکچر کی تصویر" msgid "Untracked tables" msgstr "ان ٹریکڈ ٹیبلز" -#: db_tracking.php:172 db_tracking.php:174 tbl_structure.php:528 -#: tbl_structure.php:530 +#: db_tracking.php:172 db_tracking.php:174 tbl_structure.php:526 +#: tbl_structure.php:528 msgid "Track table" msgstr "ٹریک ٹیبل" @@ -939,318 +935,357 @@ msgstr "ہوسٹ نام خالی ہے!" msgid "The user name is empty!" msgstr "صارف کا نام خالی ہے" -#: js/messages.php:44 server_privileges.php:1236 user_password.php:70 +#: js/messages.php:44 server_privileges.php:1241 user_password.php:70 msgid "The password is empty!" msgstr "پاس ورڈ خالی ہے" -#: js/messages.php:45 server_privileges.php:1234 user_password.php:73 +#: js/messages.php:45 server_privileges.php:1239 user_password.php:73 msgid "The passwords aren't the same!" msgstr "پاس ورڈ ایک جیسے نہیں ہیں" -#: js/messages.php:49 pmd_general.php:342 pmd_general.php:379 +#: js/messages.php:46 +msgid "Add a New User" +msgstr "" + +#: js/messages.php:47 js/messages.php:54 pmd_general.php:342 +#: pmd_general.php:379 msgid "Cancel" msgstr "منسوخ" -#: js/messages.php:52 pmd_save_pos.php:54 +#: js/messages.php:48 +#, fuzzy +#| msgid "Created" +msgid "Create User" +msgstr "تخلیق کیا گیا" + +#: js/messages.php:49 +msgid "Reloading Privileges" +msgstr "" + +#: js/messages.php:50 +msgid "Removing Selected Users" +msgstr "" + +#: js/messages.php:57 +msgid "Loading" +msgstr "" + +#: js/messages.php:58 +msgid "Processing Request" +msgstr "" + +#: js/messages.php:59 +msgid "Error in Processing Request" +msgstr "" + +#: js/messages.php:60 +msgid "Dropping Column" +msgstr "" + +#: js/messages.php:61 +msgid "Adding Primary Key" +msgstr "" + +#: js/messages.php:64 pmd_save_pos.php:54 msgid "Modifications have been saved" msgstr "تبدیلیاں محفوظ ہو چکی ہیں" -#: js/messages.php:53 pmd_relation_upd.php:49 +#: js/messages.php:65 pmd_relation_upd.php:49 msgid "Relation deleted" msgstr "ریلیشن حذف ہو گیا" -#: js/messages.php:54 pmd_relation_new.php:64 +#: js/messages.php:66 pmd_relation_new.php:64 msgid "FOREIGN KEY relation added" msgstr "FOREIGN KEY relation added" -#: js/messages.php:55 pmd_relation_new.php:86 +#: js/messages.php:67 pmd_relation_new.php:86 msgid "Internal relation added" msgstr "اندرونی ریلیشن شامل ہو گیا" -#: js/messages.php:56 pmd_relation_new.php:63 pmd_relation_new.php:88 +#: js/messages.php:68 pmd_relation_new.php:63 pmd_relation_new.php:88 msgid "Error: Relation not added." msgstr "غلطی:ریلیشن شامل نہیں ہوا" -#: js/messages.php:57 pmd_relation_new.php:31 +#: js/messages.php:69 pmd_relation_new.php:31 msgid "Error: relation already exists." msgstr "غلطی : ریلیشن پہلے سے موجود ہے" -#: js/messages.php:58 +#: js/messages.php:70 msgid "Error saving coordinates for Designer." msgstr "Error saving coordinates for Designer." -#: js/messages.php:59 libraries/relation.lib.php:107 +#: js/messages.php:71 libraries/relation.lib.php:107 #: libraries/relation.lib.php:119 msgid "General relation features" msgstr "جنرل ریلیشن فیچرز" -#: js/messages.php:59 libraries/relation.lib.php:101 +#: js/messages.php:71 libraries/relation.lib.php:101 #: libraries/relation.lib.php:108 msgid "Disabled" msgstr "غیر فعال" -#: js/messages.php:60 +#: js/messages.php:72 msgid "Select referenced key" msgstr "" -#: js/messages.php:61 +#: js/messages.php:73 msgid "Select Foreign Key" msgstr "" -#: js/messages.php:62 +#: js/messages.php:74 msgid "Please select the primary key or a unique key" msgstr "" -#: js/messages.php:63 pmd_general.php:77 tbl_relation.php:548 +#: js/messages.php:75 pmd_general.php:77 tbl_relation.php:548 #, fuzzy #| msgid "You have to choose at least one column to display" msgid "Choose column to display" msgstr "آپ کو کم از کم ایک کالم چننا ہو گا ڈسپے کیلئے۔" #. l10n: Display text for calendar close link -#: js/messages.php:73 +#: js/messages.php:85 msgid "Done" msgstr "" #. l10n: Display text for previous month link in calendar -#: js/messages.php:75 +#: js/messages.php:87 msgid "Prev" msgstr "" #. l10n: Display text for next month link in calendar -#: js/messages.php:77 libraries/common.lib.php:2353 -#: libraries/common.lib.php:2356 libraries/display_tbl.lib.php:338 +#: js/messages.php:89 libraries/common.lib.php:2357 +#: libraries/common.lib.php:2360 libraries/display_tbl.lib.php:338 #: server_binlog.php:205 server_binlog.php:207 tbl_printview.php:424 -#: tbl_structure.php:801 +#: tbl_structure.php:799 msgid "Next" msgstr "" #. l10n: Display text for current month link in calendar -#: js/messages.php:79 +#: js/messages.php:91 msgid "Today" msgstr "" -#: js/messages.php:82 +#: js/messages.php:94 msgid "January" msgstr "" -#: js/messages.php:83 +#: js/messages.php:95 msgid "February" msgstr "" -#: js/messages.php:84 +#: js/messages.php:96 msgid "March" msgstr "" -#: js/messages.php:85 +#: js/messages.php:97 msgid "April" msgstr "" -#: js/messages.php:86 +#: js/messages.php:98 msgid "May" msgstr "" -#: js/messages.php:87 +#: js/messages.php:99 msgid "June" msgstr "" -#: js/messages.php:88 +#: js/messages.php:100 msgid "July" msgstr "" -#: js/messages.php:89 +#: js/messages.php:101 msgid "August" msgstr "" -#: js/messages.php:90 +#: js/messages.php:102 msgid "September" msgstr "" -#: js/messages.php:91 +#: js/messages.php:103 msgid "October" msgstr "" -#: js/messages.php:92 +#: js/messages.php:104 msgid "November" msgstr "" -#: js/messages.php:93 +#: js/messages.php:105 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:97 libraries/common.lib.php:1557 +#: js/messages.php:109 libraries/common.lib.php:1557 msgid "Jan" msgstr "" #. l10n: Short month name -#: js/messages.php:99 libraries/common.lib.php:1559 +#: js/messages.php:111 libraries/common.lib.php:1559 msgid "Feb" msgstr "" #. l10n: Short month name -#: js/messages.php:101 libraries/common.lib.php:1561 +#: js/messages.php:113 libraries/common.lib.php:1561 msgid "Mar" msgstr "" #. l10n: Short month name -#: js/messages.php:103 libraries/common.lib.php:1563 +#: js/messages.php:115 libraries/common.lib.php:1563 msgid "Apr" msgstr "" #. l10n: Short month name -#: js/messages.php:105 libraries/common.lib.php:1565 +#: js/messages.php:117 libraries/common.lib.php:1565 msgctxt "Short month name" msgid "May" msgstr "" #. l10n: Short month name -#: js/messages.php:107 libraries/common.lib.php:1567 +#: js/messages.php:119 libraries/common.lib.php:1567 msgid "Jun" msgstr "" #. l10n: Short month name -#: js/messages.php:109 libraries/common.lib.php:1569 +#: js/messages.php:121 libraries/common.lib.php:1569 msgid "Jul" msgstr "" #. l10n: Short month name -#: js/messages.php:111 libraries/common.lib.php:1571 +#: js/messages.php:123 libraries/common.lib.php:1571 msgid "Aug" msgstr "" #. l10n: Short month name -#: js/messages.php:113 libraries/common.lib.php:1573 +#: js/messages.php:125 libraries/common.lib.php:1573 msgid "Sep" msgstr "" #. l10n: Short month name -#: js/messages.php:115 libraries/common.lib.php:1575 +#: js/messages.php:127 libraries/common.lib.php:1575 msgid "Oct" msgstr "" #. l10n: Short month name -#: js/messages.php:117 libraries/common.lib.php:1577 +#: js/messages.php:129 libraries/common.lib.php:1577 msgid "Nov" msgstr "" #. l10n: Short month name -#: js/messages.php:119 libraries/common.lib.php:1579 +#: js/messages.php:131 libraries/common.lib.php:1579 msgid "Dec" msgstr "" -#: js/messages.php:122 +#: js/messages.php:134 msgid "Sunday" msgstr "" -#: js/messages.php:123 +#: js/messages.php:135 msgid "Monday" msgstr "" -#: js/messages.php:124 +#: js/messages.php:136 msgid "Tuesday" msgstr "" -#: js/messages.php:125 +#: js/messages.php:137 msgid "Wednesday" msgstr "" -#: js/messages.php:126 +#: js/messages.php:138 msgid "Thursday" msgstr "" -#: js/messages.php:127 +#: js/messages.php:139 msgid "Friday" msgstr "" -#: js/messages.php:128 +#: js/messages.php:140 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:132 libraries/common.lib.php:1582 +#: js/messages.php:144 libraries/common.lib.php:1582 msgid "Sun" msgstr "" #. l10n: Short week day name -#: js/messages.php:134 libraries/common.lib.php:1584 +#: js/messages.php:146 libraries/common.lib.php:1584 msgid "Mon" msgstr "" #. l10n: Short week day name -#: js/messages.php:136 libraries/common.lib.php:1586 +#: js/messages.php:148 libraries/common.lib.php:1586 msgid "Tue" msgstr "" #. l10n: Short week day name -#: js/messages.php:138 libraries/common.lib.php:1588 +#: js/messages.php:150 libraries/common.lib.php:1588 msgid "Wed" msgstr "" #. l10n: Short week day name -#: js/messages.php:140 libraries/common.lib.php:1590 +#: js/messages.php:152 libraries/common.lib.php:1590 msgid "Thu" msgstr "" #. l10n: Short week day name -#: js/messages.php:142 libraries/common.lib.php:1592 +#: js/messages.php:154 libraries/common.lib.php:1592 msgid "Fri" msgstr "" #. l10n: Short week day name -#: js/messages.php:144 libraries/common.lib.php:1594 +#: js/messages.php:156 libraries/common.lib.php:1594 msgid "Sat" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:148 +#: js/messages.php:160 msgid "Su" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:150 +#: js/messages.php:162 msgid "Mo" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:152 +#: js/messages.php:164 msgid "Tu" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:154 +#: js/messages.php:166 msgid "We" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:156 +#: js/messages.php:168 msgid "Th" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:158 +#: js/messages.php:170 msgid "Fr" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:160 +#: js/messages.php:172 msgid "Sa" msgstr "" #. l10n: Column header for week of the year in calendar -#: js/messages.php:162 +#: js/messages.php:174 msgid "Wk" msgstr "" -#: js/messages.php:164 +#: js/messages.php:176 msgid "Hour" msgstr "" -#: js/messages.php:165 +#: js/messages.php:177 msgid "Minute" msgstr "" -#: js/messages.php:166 +#: js/messages.php:178 msgid "Second" msgstr "" @@ -1305,7 +1340,7 @@ msgstr "" #: libraries/Index.class.php:444 libraries/mult_submits.inc.php:103 #: libraries/tbl_properties.inc.php:519 tbl_structure.php:33 -#: tbl_structure.php:155 tbl_structure.php:159 tbl_structure.php:474 +#: tbl_structure.php:155 tbl_structure.php:159 tbl_structure.php:472 #: tbl_tracking.php:322 msgid "Unique" msgstr "" @@ -1346,8 +1381,8 @@ msgid "" "removed." msgstr "" -#: libraries/List_Database.class.php:431 libraries/server_links.inc.php:41 -#: server_databases.php:88 server_privileges.php:1660 +#: libraries/List_Database.class.php:431 libraries/server_links.inc.php:42 +#: server_databases.php:88 server_privileges.php:1680 #: setup/lib/messages.inc.php:110 test/theme.php:93 msgid "Databases" msgstr "" @@ -1509,7 +1544,7 @@ msgstr "" msgid "Server Choice" msgstr "" -#: libraries/auth/cookie.auth.lib.php:320 libraries/header.inc.php:59 +#: libraries/auth/cookie.auth.lib.php:320 libraries/header.inc.php:63 msgid "Cookies must be enabled past this point." msgstr "" @@ -1584,7 +1619,7 @@ msgid "" "necessary extensions appear to be loaded. Check your PHP configuration." msgstr "" -#: libraries/common.inc.php:583 +#: libraries/common.inc.php:587 msgid "" "phpMyAdmin was unable to read your configuration file!
This might " "happen if PHP finds a parse error in it or PHP cannot find the file.
$cfg['PmaAbsoluteUri'] directive MUST be set in your " "configuration file!" msgstr "" -#: libraries/common.inc.php:629 +#: libraries/common.inc.php:633 #, php-format msgid "Invalid server index: %s" msgstr "" -#: libraries/common.inc.php:636 +#: libraries/common.inc.php:640 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" -#: libraries/common.inc.php:645 libraries/header.inc.php:96 +#: libraries/common.inc.php:649 libraries/header.inc.php:100 #: libraries/select_server.lib.php:41 libraries/select_server.lib.php:47 #: main.php:185 test/theme.php:57 msgid "Server" msgstr "" -#: libraries/common.inc.php:823 +#: libraries/common.inc.php:827 msgid "Invalid authentication method set in configuration:" msgstr "" -#: libraries/common.inc.php:926 +#: libraries/common.inc.php:930 #, php-format msgid "You should upgrade to %s %s or later." msgstr "" @@ -1756,45 +1791,45 @@ msgstr "" msgid "%B %d, %Y at %I:%M %p" msgstr "" -#: libraries/common.lib.php:1907 +#: libraries/common.lib.php:1911 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "" -#: libraries/common.lib.php:2322 libraries/common.lib.php:2325 +#: libraries/common.lib.php:2326 libraries/common.lib.php:2329 #: libraries/display_tbl.lib.php:290 server_status.php:719 msgid "Begin" msgstr "" -#: libraries/common.lib.php:2323 libraries/common.lib.php:2326 +#: libraries/common.lib.php:2327 libraries/common.lib.php:2330 #: libraries/display_tbl.lib.php:291 server_binlog.php:168 #: server_binlog.php:170 msgid "Previous" msgstr "" -#: libraries/common.lib.php:2354 libraries/common.lib.php:2357 +#: libraries/common.lib.php:2358 libraries/common.lib.php:2361 #: libraries/display_tbl.lib.php:353 msgid "End" msgstr "" -#: libraries/common.lib.php:2430 +#: libraries/common.lib.php:2434 #, php-format msgid "Jump to database "%s"." msgstr "" -#: libraries/common.lib.php:2450 +#: libraries/common.lib.php:2454 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" -#: libraries/common.lib.php:2830 libraries/common.lib.php:2837 +#: libraries/common.lib.php:2834 libraries/common.lib.php:2841 #: libraries/db_links.inc.php:68 libraries/export/sql.php:25 -#: libraries/import/sql.php:18 libraries/server_links.inc.php:45 +#: libraries/import/sql.php:18 libraries/server_links.inc.php:46 #: libraries/tbl_links.inc.php:60 querywindow.php:99 test/theme.php:97 msgid "SQL" msgstr "" -#: libraries/common.lib.php:2839 libraries/db_links.inc.php:104 +#: libraries/common.lib.php:2843 libraries/db_links.inc.php:104 #: libraries/tbl_links.inc.php:95 libraries/tbl_links.inc.php:117 #: view_operations.php:89 msgid "Operations" @@ -1841,15 +1876,15 @@ msgstr "" msgid "Designer" msgstr "" -#: libraries/db_links.inc.php:98 libraries/server_links.inc.php:88 +#: libraries/db_links.inc.php:98 libraries/server_links.inc.php:89 #: libraries/tbl_links.inc.php:91 pmd_pdf.php:84 pmd_pdf.php:110 #: setup/frames/menu.inc.php:21 msgid "Import" msgstr "" -#: libraries/db_links.inc.php:111 libraries/server_links.inc.php:66 -#: server_privileges.php:111 server_privileges.php:1722 -#: server_privileges.php:2071 test/theme.php:117 +#: libraries/db_links.inc.php:111 libraries/server_links.inc.php:67 +#: server_privileges.php:112 server_privileges.php:1742 +#: server_privileges.php:2092 test/theme.php:117 msgid "Privileges" msgstr "" @@ -1868,7 +1903,7 @@ msgid "" msgstr "" #: libraries/db_structure.lib.php:69 server_databases.php:142 -#: tbl_printview.php:336 tbl_structure.php:682 +#: tbl_printview.php:336 tbl_structure.php:680 msgid "Overhead" msgstr "" @@ -1885,7 +1920,7 @@ msgstr "" msgid "(or the local MySQL server's socket is not correctly configured)" msgstr "" -#: libraries/dbi/mysql.dbi.lib.php:362 tbl_structure.php:608 +#: libraries/dbi/mysql.dbi.lib.php:362 tbl_structure.php:606 msgid "Details..." msgstr "" @@ -1895,22 +1930,22 @@ msgid "Change password" msgstr "" #: libraries/display_change_password.lib.php:35 -#: libraries/replication_gui.lib.php:345 server_privileges.php:807 +#: libraries/replication_gui.lib.php:345 server_privileges.php:808 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:796 -#: server_privileges.php:800 server_privileges.php:811 -#: server_privileges.php:1538 server_synchronize.php:1175 +#: libraries/replication_gui.lib.php:349 server_privileges.php:797 +#: server_privileges.php:801 server_privileges.php:812 +#: server_privileges.php:1558 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:815 server_privileges.php:818 +#: server_privileges.php:816 server_privileges.php:819 msgid "Re-type" msgstr "" @@ -1923,12 +1958,12 @@ msgid "MySQL 4.0 compatible" msgstr "" #: libraries/display_change_password.lib.php:72 -#: libraries/replication_gui.lib.php:360 server_privileges.php:822 +#: libraries/replication_gui.lib.php:360 server_privileges.php:823 msgid "Generate Password" msgstr "" #: libraries/display_change_password.lib.php:75 -#: libraries/replication_gui.lib.php:363 server_privileges.php:825 +#: libraries/replication_gui.lib.php:363 server_privileges.php:826 msgid "Generate" msgstr "" @@ -1941,8 +1976,8 @@ msgstr "" msgid "Create" msgstr "" -#: libraries/display_create_database.lib.php:40 server_privileges.php:113 -#: server_privileges.php:1427 server_replication.php:35 +#: libraries/display_create_database.lib.php:40 server_privileges.php:114 +#: server_privileges.php:1447 server_replication.php:35 msgid "No Privileges" msgstr "" @@ -2027,7 +2062,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:1875 server_processlist.php:75 +#: server_privileges.php:1895 server_processlist.php:75 msgid "None" msgstr "" @@ -2209,7 +2244,7 @@ msgstr "" #: libraries/import/docsql.php:34 libraries/import/ldi.php:47 #: libraries/import/ods.php:30 libraries/import/sql.php:20 #: libraries/import/xls.php:26 libraries/import/xlsx.php:26 -#: libraries/import/xml.php:25 tbl_select.php:267 tbl_structure.php:753 +#: libraries/import/xml.php:25 tbl_select.php:267 tbl_structure.php:751 msgid "Options" msgstr "" @@ -2284,7 +2319,7 @@ msgstr "" #: libraries/display_tbl.lib.php:2089 libraries/mult_submits.inc.php:113 #: querywindow.php:125 querywindow.php:129 querywindow.php:132 -#: tbl_structure.php:25 tbl_structure.php:150 tbl_structure.php:470 +#: tbl_structure.php:25 tbl_structure.php:150 tbl_structure.php:468 msgid "Change" msgstr "" @@ -2350,7 +2385,7 @@ msgstr "" #: libraries/engines/innodb.lib.php:194 server_databases.php:137 #: server_databases.php:305 server_status.php:525 server_status.php:586 -#: server_status.php:607 tbl_printview.php:351 tbl_structure.php:696 +#: server_status.php:607 tbl_printview.php:351 tbl_structure.php:694 msgid "Total" msgstr "" @@ -2595,7 +2630,7 @@ msgid "" msgstr "" #: libraries/export/codegen.php:37 setup/lib/messages.inc.php:88 -#: tbl_printview.php:376 tbl_structure.php:737 +#: tbl_printview.php:376 tbl_structure.php:735 msgid "Format" msgstr "" @@ -2659,8 +2694,8 @@ 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:576 server_replication.php:316 tbl_printview.php:317 -#: tbl_structure.php:665 +#: server_privileges.php:577 server_replication.php:316 tbl_printview.php:317 +#: tbl_structure.php:663 msgid "Data" msgstr "" @@ -2709,9 +2744,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:731 -#: server_privileges.php:734 server_privileges.php:790 -#: server_privileges.php:1537 server_privileges.php:2069 +#: libraries/replication_gui.lib.php:329 server_privileges.php:732 +#: server_privileges.php:735 server_privileges.php:791 +#: server_privileges.php:1557 server_privileges.php:2090 #: server_processlist.php:55 server_synchronize.php:1159 msgid "Host" msgstr "" @@ -2904,7 +2939,7 @@ msgstr "" msgid "Open new phpMyAdmin window" msgstr "" -#: libraries/header.inc.php:115 +#: libraries/header.inc.php:119 msgid "New table" msgstr "" @@ -3059,20 +3094,20 @@ 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 +#: tbl_structure.php:471 msgid "Primary" msgstr "" #: libraries/mult_submits.inc.php:98 libraries/tbl_properties.inc.php:116 #: libraries/tbl_properties.inc.php:525 tbl_printview.php:326 #: tbl_structure.php:31 tbl_structure.php:154 tbl_structure.php:158 -#: tbl_structure.php:475 tbl_structure.php:673 +#: tbl_structure.php:473 tbl_structure.php:671 msgid "Index" msgstr "" #: libraries/mult_submits.inc.php:108 libraries/tbl_properties.inc.php:531 #: tbl_structure.php:35 tbl_structure.php:156 tbl_structure.php:160 -#: tbl_structure.php:478 +#: tbl_structure.php:476 msgid "Fulltext" msgstr "" @@ -3373,8 +3408,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:711 -#: server_privileges.php:714 server_privileges.php:721 +#: libraries/replication_gui.lib.php:259 server_privileges.php:712 +#: server_privileges.php:715 server_privileges.php:722 #: server_synchronize.php:1171 msgid "User name" msgstr "" @@ -3398,7 +3433,7 @@ msgstr "" #: 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 +#: tbl_structure.php:727 msgid "Value" msgstr "" @@ -3416,34 +3451,34 @@ msgstr "" msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:254 server_privileges.php:716 +#: libraries/replication_gui.lib.php:254 server_privileges.php:717 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:717 -#: server_privileges.php:784 server_privileges.php:808 -#: server_privileges.php:1928 server_privileges.php:1958 +#: libraries/replication_gui.lib.php:346 server_privileges.php:718 +#: server_privileges.php:785 server_privileges.php:809 +#: server_privileges.php:1948 server_privileges.php:1978 msgid "Use text field" msgstr "" -#: libraries/replication_gui.lib.php:302 server_privileges.php:764 +#: libraries/replication_gui.lib.php:302 server_privileges.php:765 msgid "Any host" msgstr "" -#: libraries/replication_gui.lib.php:306 server_privileges.php:768 +#: libraries/replication_gui.lib.php:306 server_privileges.php:769 msgid "Local" msgstr "" -#: libraries/replication_gui.lib.php:312 server_privileges.php:773 +#: libraries/replication_gui.lib.php:312 server_privileges.php:774 msgid "This Host" msgstr "" -#: libraries/replication_gui.lib.php:318 server_privileges.php:779 +#: libraries/replication_gui.lib.php:318 server_privileges.php:780 msgid "Use Host Table" msgstr "" -#: libraries/replication_gui.lib.php:331 server_privileges.php:792 +#: libraries/replication_gui.lib.php:331 server_privileges.php:793 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -3477,29 +3512,29 @@ msgstr "" msgid "Servers" msgstr "" -#: libraries/server_links.inc.php:53 server_engines.php:112 +#: libraries/server_links.inc.php:54 server_engines.php:112 #: server_engines.php:116 server_status.php:415 test/theme.php:105 msgid "Variables" msgstr "" -#: libraries/server_links.inc.php:57 test/theme.php:109 +#: libraries/server_links.inc.php:58 test/theme.php:109 msgid "Charsets" msgstr "" -#: libraries/server_links.inc.php:61 test/theme.php:113 +#: libraries/server_links.inc.php:62 test/theme.php:113 msgid "Engines" msgstr "" -#: libraries/server_links.inc.php:76 server_binlog.php:110 +#: libraries/server_links.inc.php:77 server_binlog.php:110 #: server_status.php:364 test/theme.php:121 msgid "Binary log" msgstr "" -#: libraries/server_links.inc.php:80 +#: libraries/server_links.inc.php:81 msgid "Processes" msgstr "" -#: libraries/server_links.inc.php:92 server_synchronize.php:1092 +#: libraries/server_links.inc.php:93 server_synchronize.php:1092 #: server_synchronize.php:1100 msgid "Synchronize" msgstr "" @@ -3712,12 +3747,12 @@ msgstr "" msgid "Save" msgstr "" -#: libraries/tbl_properties.inc.php:780 tbl_structure.php:542 +#: libraries/tbl_properties.inc.php:780 tbl_structure.php:540 #, php-format msgid "Add %s column(s)" msgstr "" -#: libraries/tbl_properties.inc.php:784 tbl_structure.php:536 +#: libraries/tbl_properties.inc.php:784 tbl_structure.php:534 #, fuzzy #| msgid "You have to choose at least one column to display" msgid "You have to add at least one column." @@ -3851,8 +3886,8 @@ msgstr "" msgid "Protocol version" msgstr "" -#: main.php:189 server_privileges.php:1389 server_privileges.php:1536 -#: server_privileges.php:1650 server_privileges.php:2068 +#: main.php:189 server_privileges.php:1406 server_privileges.php:1556 +#: server_privileges.php:1670 server_privileges.php:2089 #: server_processlist.php:54 msgid "User" msgstr "" @@ -4267,320 +4302,320 @@ msgstr "" msgid "View dump (schema) of databases" msgstr "" -#: server_privileges.php:24 server_privileges.php:266 +#: server_privileges.php:25 server_privileges.php:267 msgid "Includes all privileges except GRANT." msgstr "" -#: server_privileges.php:25 server_privileges.php:192 -#: server_privileges.php:515 +#: server_privileges.php:26 server_privileges.php:193 +#: server_privileges.php:516 msgid "Allows altering the structure of existing tables." msgstr "" -#: server_privileges.php:26 server_privileges.php:208 -#: server_privileges.php:521 +#: server_privileges.php:27 server_privileges.php:209 +#: server_privileges.php:522 msgid "Allows altering and dropping stored routines." msgstr "" -#: server_privileges.php:27 server_privileges.php:184 -#: server_privileges.php:514 +#: server_privileges.php:28 server_privileges.php:185 +#: server_privileges.php:515 msgid "Allows creating new databases and tables." msgstr "" -#: server_privileges.php:28 server_privileges.php:207 -#: server_privileges.php:520 +#: server_privileges.php:29 server_privileges.php:208 +#: server_privileges.php:521 msgid "Allows creating stored routines." msgstr "" -#: server_privileges.php:29 server_privileges.php:514 +#: server_privileges.php:30 server_privileges.php:515 msgid "Allows creating new tables." msgstr "" -#: server_privileges.php:30 server_privileges.php:195 -#: server_privileges.php:518 +#: server_privileges.php:31 server_privileges.php:196 +#: server_privileges.php:519 msgid "Allows creating temporary tables." msgstr "" -#: server_privileges.php:31 server_privileges.php:209 -#: server_privileges.php:554 +#: server_privileges.php:32 server_privileges.php:210 +#: server_privileges.php:555 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 +#: server_privileges.php:33 server_privileges.php:200 +#: server_privileges.php:204 server_privileges.php:527 +#: server_privileges.php:531 msgid "Allows creating new views." msgstr "" -#: server_privileges.php:33 server_privileges.php:183 -#: server_privileges.php:506 +#: server_privileges.php:34 server_privileges.php:184 +#: server_privileges.php:507 msgid "Allows deleting data." msgstr "" -#: server_privileges.php:34 server_privileges.php:185 -#: server_privileges.php:517 +#: server_privileges.php:35 server_privileges.php:186 +#: server_privileges.php:518 msgid "Allows dropping databases and tables." msgstr "" -#: server_privileges.php:35 server_privileges.php:517 +#: server_privileges.php:36 server_privileges.php:518 msgid "Allows dropping tables." msgstr "" -#: server_privileges.php:36 server_privileges.php:200 -#: server_privileges.php:534 +#: server_privileges.php:37 server_privileges.php:201 +#: server_privileges.php:535 msgid "Allows to set up events for the event scheduler" msgstr "" -#: server_privileges.php:37 server_privileges.php:210 -#: server_privileges.php:522 +#: server_privileges.php:38 server_privileges.php:211 +#: server_privileges.php:523 msgid "Allows executing stored routines." msgstr "" -#: server_privileges.php:38 server_privileges.php:189 -#: server_privileges.php:509 +#: server_privileges.php:39 server_privileges.php:190 +#: server_privileges.php:510 msgid "Allows importing data from and exporting data into files." msgstr "" -#: server_privileges.php:39 server_privileges.php:540 +#: server_privileges.php:40 server_privileges.php:541 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" -#: server_privileges.php:40 server_privileges.php:191 -#: server_privileges.php:516 +#: server_privileges.php:41 server_privileges.php:192 +#: server_privileges.php:517 msgid "Allows creating and dropping indexes." msgstr "" -#: server_privileges.php:41 server_privileges.php:181 -#: server_privileges.php:442 server_privileges.php:504 +#: server_privileges.php:42 server_privileges.php:182 +#: server_privileges.php:443 server_privileges.php:505 msgid "Allows inserting and replacing data." msgstr "" -#: server_privileges.php:42 server_privileges.php:196 -#: server_privileges.php:549 +#: server_privileges.php:43 server_privileges.php:197 +#: server_privileges.php:550 msgid "Allows locking tables for the current thread." msgstr "" -#: server_privileges.php:43 server_privileges.php:646 -#: server_privileges.php:648 +#: server_privileges.php:44 server_privileges.php:647 +#: server_privileges.php:649 msgid "Limits the number of new connections the user may open per hour." msgstr "" -#: server_privileges.php:44 server_privileges.php:634 -#: server_privileges.php:636 +#: server_privileges.php:45 server_privileges.php:635 +#: server_privileges.php:637 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" -#: server_privileges.php:45 server_privileges.php:640 -#: server_privileges.php:642 +#: server_privileges.php:46 server_privileges.php:641 +#: server_privileges.php:643 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." msgstr "" -#: server_privileges.php:46 server_privileges.php:652 -#: server_privileges.php:654 +#: server_privileges.php:47 server_privileges.php:653 +#: server_privileges.php:655 msgid "Limits the number of simultaneous connections the user may have." msgstr "" -#: server_privileges.php:47 server_privileges.php:188 -#: server_privileges.php:544 +#: server_privileges.php:48 server_privileges.php:189 +#: server_privileges.php:545 msgid "Allows viewing processes of all users" msgstr "" -#: server_privileges.php:48 server_privileges.php:190 -#: server_privileges.php:448 server_privileges.php:550 +#: server_privileges.php:49 server_privileges.php:191 +#: server_privileges.php:449 server_privileges.php:551 msgid "Has no effect in this MySQL version." msgstr "" -#: server_privileges.php:49 server_privileges.php:186 -#: server_privileges.php:545 +#: server_privileges.php:50 server_privileges.php:187 +#: server_privileges.php:546 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" -#: server_privileges.php:50 server_privileges.php:198 -#: server_privileges.php:552 +#: server_privileges.php:51 server_privileges.php:199 +#: server_privileges.php:553 msgid "Allows the user to ask where the slaves / masters are." msgstr "" -#: server_privileges.php:51 server_privileges.php:197 -#: server_privileges.php:553 +#: server_privileges.php:52 server_privileges.php:198 +#: server_privileges.php:554 msgid "Needed for the replication slaves." msgstr "" -#: server_privileges.php:52 server_privileges.php:180 -#: server_privileges.php:439 server_privileges.php:503 +#: server_privileges.php:53 server_privileges.php:181 +#: server_privileges.php:440 server_privileges.php:504 msgid "Allows reading data." msgstr "" -#: server_privileges.php:53 server_privileges.php:193 -#: server_privileges.php:547 +#: server_privileges.php:54 server_privileges.php:194 +#: server_privileges.php:548 msgid "Gives access to the complete list of databases." msgstr "" -#: server_privileges.php:54 server_privileges.php:204 -#: server_privileges.php:206 server_privileges.php:519 +#: server_privileges.php:55 server_privileges.php:205 +#: server_privileges.php:207 server_privileges.php:520 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "" -#: server_privileges.php:55 server_privileges.php:187 -#: server_privileges.php:546 +#: server_privileges.php:56 server_privileges.php:188 +#: server_privileges.php:547 msgid "Allows shutting down the server." msgstr "" -#: server_privileges.php:56 server_privileges.php:194 -#: server_privileges.php:543 +#: server_privileges.php:57 server_privileges.php:195 +#: server_privileges.php:544 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " "killing threads of other users." msgstr "" -#: server_privileges.php:57 server_privileges.php:201 -#: server_privileges.php:535 +#: server_privileges.php:58 server_privileges.php:202 +#: server_privileges.php:536 msgid "Allows creating and dropping triggers" msgstr "" -#: server_privileges.php:58 server_privileges.php:182 -#: server_privileges.php:445 server_privileges.php:505 +#: server_privileges.php:59 server_privileges.php:183 +#: server_privileges.php:446 server_privileges.php:506 msgid "Allows changing data." msgstr "" -#: server_privileges.php:59 server_privileges.php:260 +#: server_privileges.php:60 server_privileges.php:261 msgid "No privileges." msgstr "" -#: server_privileges.php:302 server_privileges.php:303 +#: server_privileges.php:303 server_privileges.php:304 msgctxt "None privileges" msgid "None" msgstr "" -#: server_privileges.php:431 server_privileges.php:566 -#: server_privileges.php:1718 server_privileges.php:1724 +#: server_privileges.php:432 server_privileges.php:567 +#: server_privileges.php:1738 server_privileges.php:1744 msgid "Table-specific privileges" msgstr "" -#: server_privileges.php:432 server_privileges.php:574 -#: server_privileges.php:1540 +#: server_privileges.php:433 server_privileges.php:575 +#: server_privileges.php:1560 msgid " Note: MySQL privilege names are expressed in English " msgstr "" -#: server_privileges.php:563 server_privileges.php:1539 +#: server_privileges.php:564 server_privileges.php:1559 msgid "Global privileges" msgstr "" -#: server_privileges.php:565 server_privileges.php:1718 +#: server_privileges.php:566 server_privileges.php:1738 msgid "Database-specific privileges" msgstr "" -#: server_privileges.php:610 +#: server_privileges.php:611 msgid "Administration" msgstr "" -#: server_privileges.php:630 +#: server_privileges.php:631 msgid "Resource limits" msgstr "" -#: server_privileges.php:631 +#: server_privileges.php:632 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "" -#: server_privileges.php:708 +#: server_privileges.php:709 msgid "Login Information" msgstr "" -#: server_privileges.php:802 +#: server_privileges.php:803 msgid "Do not change the password" msgstr "" -#: server_privileges.php:843 server_privileges.php:2205 +#: server_privileges.php:844 server_privileges.php:2226 msgid "No user found." msgstr "" -#: server_privileges.php:887 +#: server_privileges.php:888 #, php-format msgid "The user %s already exists!" msgstr "" -#: server_privileges.php:970 +#: server_privileges.php:971 msgid "You have added a new user." msgstr "" -#: server_privileges.php:1191 +#: server_privileges.php:1196 #, php-format msgid "You have updated the privileges for %s." msgstr "" -#: server_privileges.php:1215 +#: server_privileges.php:1220 #, php-format msgid "You have revoked the privileges for %s" msgstr "" -#: server_privileges.php:1251 +#: server_privileges.php:1256 #, php-format msgid "The password for %s was changed successfully." msgstr "" -#: server_privileges.php:1271 +#: server_privileges.php:1276 #, php-format msgid "Deleting %s" msgstr "" -#: server_privileges.php:1282 +#: server_privileges.php:1287 msgid "No users selected for deleting!" msgstr "" -#: server_privileges.php:1285 +#: server_privileges.php:1290 msgid "Reloading the privileges" msgstr "" -#: server_privileges.php:1300 +#: server_privileges.php:1305 msgid "The selected users have been deleted successfully." msgstr "" -#: server_privileges.php:1335 +#: server_privileges.php:1344 msgid "The privileges were reloaded successfully." msgstr "" -#: server_privileges.php:1363 server_privileges.php:1649 +#: server_privileges.php:1380 server_privileges.php:1669 msgid "Edit Privileges" msgstr "" -#: server_privileges.php:1372 +#: server_privileges.php:1389 msgid "Revoke" msgstr "" -#: server_privileges.php:1404 +#: server_privileges.php:1424 msgid "User overview" msgstr "" -#: server_privileges.php:1541 server_privileges.php:1723 -#: server_privileges.php:2072 +#: server_privileges.php:1561 server_privileges.php:1743 +#: server_privileges.php:2093 msgid "Grant" msgstr "" -#: server_privileges.php:1560 server_privileges.php:2162 +#: server_privileges.php:1580 server_privileges.php:2183 msgid "Any" msgstr "" -#: server_privileges.php:1609 server_privileges.php:1633 -#: server_privileges.php:2027 server_privileges.php:2216 +#: server_privileges.php:1629 server_privileges.php:1653 +#: server_privileges.php:2048 server_privileges.php:2237 msgid "Add a new User" msgstr "" -#: server_privileges.php:1614 +#: server_privileges.php:1634 msgid "Remove selected users" msgstr "" -#: server_privileges.php:1617 +#: server_privileges.php:1637 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 +#: server_privileges.php:1638 server_privileges.php:1639 +#: server_privileges.php:1640 msgid "Drop the databases that have the same names as the users." msgstr "" -#: server_privileges.php:1636 +#: server_privileges.php:1656 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -4589,89 +4624,89 @@ msgid "" "sreload the privileges%s before you continue." msgstr "" -#: server_privileges.php:1684 +#: server_privileges.php:1704 msgid "The selected user was not found in the privilege table." msgstr "" -#: server_privileges.php:1724 +#: server_privileges.php:1744 msgid "Column-specific privileges" msgstr "" -#: server_privileges.php:1925 +#: server_privileges.php:1945 msgid "Add privileges on the following database" msgstr "" -#: server_privileges.php:1943 +#: server_privileges.php:1963 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" -#: server_privileges.php:1946 +#: server_privileges.php:1966 msgid "Add privileges on the following table" msgstr "" -#: server_privileges.php:2003 +#: server_privileges.php:2023 msgid "Change Login Information / Copy User" msgstr "" -#: server_privileges.php:2006 +#: server_privileges.php:2026 msgid "Create a new user with the same privileges and ..." msgstr "" -#: server_privileges.php:2008 +#: server_privileges.php:2028 msgid "... keep the old one." msgstr "" -#: server_privileges.php:2009 +#: server_privileges.php:2029 msgid " ... delete the old one from the user tables." msgstr "" -#: server_privileges.php:2010 +#: server_privileges.php:2030 msgid "" " ... revoke all active privileges from the old one and delete it afterwards." msgstr "" -#: server_privileges.php:2011 +#: server_privileges.php:2031 msgid "" " ... delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" -#: server_privileges.php:2033 +#: server_privileges.php:2054 msgid "Database for user" msgstr "" -#: server_privileges.php:2037 +#: server_privileges.php:2058 msgctxt "Create none database for user" msgid "None" msgstr "" -#: server_privileges.php:2038 +#: server_privileges.php:2059 msgid "Create database with same name and grant all privileges" msgstr "" -#: server_privileges.php:2039 +#: server_privileges.php:2060 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "" -#: server_privileges.php:2042 +#: server_privileges.php:2063 #, php-format msgid "Grant all privileges on database "%s"" msgstr "" -#: server_privileges.php:2065 +#: server_privileges.php:2086 #, php-format msgid "Users having access to "%s"" msgstr "" -#: server_privileges.php:2173 +#: server_privileges.php:2194 msgid "global" msgstr "" -#: server_privileges.php:2175 +#: server_privileges.php:2196 msgid "database-specific" msgstr "" -#: server_privileges.php:2177 +#: server_privileges.php:2198 msgid "wildcard" msgstr "" @@ -7309,6 +7344,10 @@ msgstr "" msgid "Show insert query" msgstr "" +#: tbl_change.php:1143 +msgid "and then" +msgstr "اور پھر" + #: tbl_change.php:1147 msgid "Go back to previous page" msgstr "" @@ -7387,7 +7426,7 @@ msgstr "" msgid "Add to index  %s column(s)" msgstr "" -#: tbl_indexes.php:256 tbl_structure.php:589 tbl_structure.php:600 +#: tbl_indexes.php:256 tbl_structure.php:587 tbl_structure.php:598 msgid "Column count has to be larger than zero." msgstr "" @@ -7499,39 +7538,39 @@ msgstr "" msgid "Show tables" msgstr "" -#: tbl_printview.php:310 tbl_structure.php:656 +#: tbl_printview.php:310 tbl_structure.php:654 msgid "Space usage" msgstr "" -#: tbl_printview.php:314 tbl_structure.php:660 +#: tbl_printview.php:314 tbl_structure.php:658 msgid "Usage" msgstr "" -#: tbl_printview.php:341 tbl_structure.php:687 +#: tbl_printview.php:341 tbl_structure.php:685 msgid "Effective" msgstr "" -#: tbl_printview.php:366 tbl_structure.php:725 +#: tbl_printview.php:366 tbl_structure.php:723 msgid "Row Statistics" msgstr "" -#: tbl_printview.php:369 tbl_structure.php:728 +#: tbl_printview.php:369 tbl_structure.php:726 msgid "Statements" msgstr "" -#: tbl_printview.php:380 tbl_structure.php:740 +#: tbl_printview.php:380 tbl_structure.php:738 msgid "static" msgstr "" -#: tbl_printview.php:382 tbl_structure.php:742 +#: tbl_printview.php:382 tbl_structure.php:740 msgid "dynamic" msgstr "" -#: tbl_printview.php:404 tbl_structure.php:785 +#: tbl_printview.php:404 tbl_structure.php:783 msgid "Row length" msgstr "" -#: tbl_printview.php:414 tbl_structure.php:793 +#: tbl_printview.php:414 tbl_structure.php:791 msgid " Row size " msgstr "" @@ -7597,49 +7636,49 @@ msgstr "" msgid "Column %s has been dropped" msgstr "Table %s has been dropped" -#: tbl_structure.php:385 +#: tbl_structure.php:384 #, php-format msgid "A primary key has been added on %s" msgstr "" -#: tbl_structure.php:400 tbl_structure.php:414 tbl_structure.php:428 +#: tbl_structure.php:398 tbl_structure.php:412 tbl_structure.php:426 #, php-format msgid "An index has been added on %s" msgstr "" -#: tbl_structure.php:506 tbl_structure.php:508 +#: tbl_structure.php:504 tbl_structure.php:506 msgid "Relation view" msgstr "" -#: tbl_structure.php:515 tbl_structure.php:517 +#: tbl_structure.php:513 tbl_structure.php:515 msgid "Propose table structure" msgstr "" -#: tbl_structure.php:540 +#: tbl_structure.php:538 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Add column" msgstr "فیلڈ کالمز شامل یا ختم کریں" -#: tbl_structure.php:554 +#: tbl_structure.php:552 msgid "At End of Table" msgstr "" -#: tbl_structure.php:555 +#: tbl_structure.php:553 msgid "At Beginning of Table" msgstr "" -#: tbl_structure.php:556 +#: tbl_structure.php:554 #, php-format msgid "After %s" msgstr "" -#: tbl_structure.php:594 +#: tbl_structure.php:592 #, php-format msgid "Create an index on  %s columns" msgstr "" -#: tbl_structure.php:756 +#: tbl_structure.php:754 msgid "partitioned" msgstr "" diff --git a/po/uz.po b/po/uz.po index c227e1725..b19ef1466 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-13 09:03-0400\n" +"POT-Creation-Date: 2010-06-22 00:55+0530\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:1514 +#: libraries/display_tbl.lib.php:417 server_privileges.php:1534 msgid "Show all" msgstr "Барчасини кўрсатиш" -#: browse_foreigners.php:82 libraries/common.lib.php:2313 +#: browse_foreigners.php:82 libraries/common.lib.php:2317 #: 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,18 +36,18 @@ 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:2831 -#: libraries/common.lib.php:2838 libraries/db_links.inc.php:75 +#: db_structure.php:106 libraries/common.lib.php:2835 +#: libraries/common.lib.php:2842 libraries/db_links.inc.php:75 #: libraries/tbl_links.inc.php:63 msgid "Search" msgstr "Қидириш" -#: browse_foreigners.php:153 db_operations.php:385 db_operations.php:429 -#: db_operations.php:499 db_operations.php:609 db_search.php:362 -#: db_structure.php:567 js/messages.php:48 libraries/Config.class.php:1046 +#: browse_foreigners.php:153 db_operations.php:394 db_operations.php:438 +#: db_operations.php:508 db_operations.php:618 db_search.php:362 +#: db_structure.php:565 js/messages.php:53 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:1335 libraries/common.lib.php:2288 +#: libraries/common.lib.php:1335 libraries/common.lib.php:2292 #: 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,15 +58,15 @@ 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:664 server_privileges.php:1624 -#: server_privileges.php:1971 server_privileges.php:2018 -#: server_privileges.php:2057 server_replication.php:235 +#: server_privileges.php:665 server_privileges.php:1644 +#: server_privileges.php:1991 server_privileges.php:2038 +#: server_privileges.php:2078 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 #: tbl_operations.php:302 tbl_operations.php:499 tbl_operations.php:561 -#: tbl_operations.php:681 tbl_select.php:327 tbl_structure.php:562 -#: tbl_structure.php:597 tbl_tracking.php:395 tbl_tracking.php:512 +#: tbl_operations.php:681 tbl_select.php:327 tbl_structure.php:560 +#: tbl_structure.php:595 tbl_tracking.php:395 tbl_tracking.php:512 #: view_create.php:182 view_operations.php:101 msgid "Go" msgstr "OK" @@ -92,7 +92,7 @@ msgstr "Ушбу қийматни ишлатиш" msgid "Database %1$s has been created." msgstr " %1$s маълумотлар базаси тузилди." -#: db_datadict.php:49 db_operations.php:378 +#: db_datadict.php:49 db_operations.php:387 msgid "Database comment: " msgstr "Маълумотлар базасига изоҳ:" @@ -119,10 +119,10 @@ 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:2070 +#: pdf_schema.php:1263 pdf_schema.php:1284 server_privileges.php:2091 #: 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 +#: tbl_structure.php:657 tbl_tracking.php:274 tbl_tracking.php:321 msgid "Type" msgstr "Тур" @@ -135,7 +135,7 @@ msgstr "Тур" msgid "Null" msgstr "Null" -#: db_datadict.php:178 db_structure.php:501 libraries/export/htmlword.php:247 +#: db_datadict.php:178 db_structure.php:499 libraries/export/htmlword.php:247 #: libraries/export/latex.php:360 libraries/export/odt.php:303 #: libraries/export/texytext.php:236 libraries/tbl_properties.inc.php:106 #: pdf_schema.php:1266 pdf_schema.php:1287 tbl_printview.php:146 @@ -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: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 +#: pdf_schema.php:1344 server_privileges.php:1588 server_privileges.php:1599 +#: server_privileges.php:1909 server_privileges.php:1914 +#: server_privileges.php:2208 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:1565 -#: server_privileges.php:1579 server_privileges.php:1889 -#: server_privileges.php:1892 server_privileges.php:2187 sql.php:193 +#: server_databases.php:64 server_privileges.php:1585 +#: server_privileges.php:1599 server_privileges.php:1909 +#: server_privileges.php:1912 server_privileges.php:2208 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" @@ -208,125 +208,121 @@ msgstr "Барчасини белгилаш" msgid "Unselect All" msgstr "Белгилашни бекор қилиш" -#: db_operations.php:38 tbl_create.php:54 +#: db_operations.php:43 tbl_create.php:54 msgid "The database name is empty!" msgstr "Маълумотлар базаси номи бўш!" -#: db_operations.php:236 +#: db_operations.php:241 #, php-format msgid "Database %s has been renamed to %s" msgstr " `\"%s\"` маълумотлар базасининг номи `\"%s\"` деб ўзгартирилди." -#: db_operations.php:240 +#: db_operations.php:245 #, php-format msgid "Database %s has been copied to %s" msgstr "\"%s\" маълумотлар базасидан \"%s\" га нусха кўчирилди." -#: db_operations.php:412 +#: db_operations.php:421 msgid "Rename database to" msgstr "Маълумотлар базаси номини қуйидагига ўзгартириш" -#: db_operations.php:417 server_processlist.php:57 +#: db_operations.php:426 server_processlist.php:57 msgid "Command" msgstr "Буйруқ" -#: db_operations.php:429 tbl_change.php:1143 -msgid "and then" -msgstr "ва сўнг" - -#: db_operations.php:455 +#: db_operations.php:464 msgid "Copy database to" msgstr "Маълумотлар базасидан қуйидагига нусха олиш" -#: db_operations.php:462 tbl_operations.php:528 tbl_tracking.php:388 +#: db_operations.php:471 tbl_operations.php:528 tbl_tracking.php:388 msgid "Structure only" msgstr "Фақат тузилиши" -#: db_operations.php:463 tbl_operations.php:529 tbl_tracking.php:390 +#: db_operations.php:472 tbl_operations.php:529 tbl_tracking.php:390 msgid "Structure and data" msgstr "Тузилиши ва маълумотлари" -#: db_operations.php:464 tbl_operations.php:530 tbl_tracking.php:389 +#: db_operations.php:473 tbl_operations.php:530 tbl_tracking.php:389 msgid "Data only" msgstr "Фақат маълумотлар" -#: db_operations.php:472 +#: db_operations.php:481 msgid "CREATE DATABASE before copying" msgstr "Нусха кўчиришдан олдин маълумотлар базаси тузинг (CREATE DATABASE)" -#: db_operations.php:475 libraries/export/sql.php:52 +#: db_operations.php:484 libraries/export/sql.php:52 #: libraries/export/sql.php:74 libraries/export/sql.php:76 #: libraries/export/sql.php:82 tbl_operations.php:536 #, php-format msgid "Add %s" msgstr "\"%s\" қўшиш" -#: db_operations.php:479 libraries/export/sql.php:78 tbl_operations.php:299 +#: db_operations.php:488 libraries/export/sql.php:78 tbl_operations.php:299 #: tbl_operations.php:538 msgid "Add AUTO_INCREMENT value" msgstr "AUTO_INCREMENT қўшиш" -#: db_operations.php:483 tbl_operations.php:545 +#: db_operations.php:492 tbl_operations.php:545 msgid "Add constraints" msgstr "Чекловлар қўшиш" -#: db_operations.php:496 +#: db_operations.php:505 msgid "Switch to copied database" msgstr "Нусха олинган маълумотлар базасига ўтиш" -#: db_operations.php:537 +#: db_operations.php:546 msgid "BLOB Repository" msgstr "BLOB омбори" -#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1352 -#: libraries/server_links.inc.php:49 server_processlist.php:59 +#: db_operations.php:549 db_tracking.php:76 libraries/common.lib.php:1352 +#: libraries/server_links.inc.php:50 server_processlist.php:59 #: tbl_tracking.php:596 test/theme.php:101 msgid "Status" msgstr "Ҳолат" -#: db_operations.php:548 +#: db_operations.php:557 #, fuzzy #| msgid "Enabled" msgctxt "BLOB repository" msgid "Enabled" msgstr "Фаоллаштирилган" -#: db_operations.php:552 +#: db_operations.php:561 msgid "Disable" msgstr "Фаолсизлантириш" -#: db_operations.php:562 +#: db_operations.php:571 msgid "Damaged" msgstr "Шикастланган" -#: db_operations.php:566 +#: db_operations.php:575 #, fuzzy #| msgid "Repair" msgctxt "BLOB repository" msgid "Repair" msgstr "Тиклаш" -#: db_operations.php:574 +#: db_operations.php:583 #, fuzzy #| msgid "Disabled" msgctxt "BLOB repository" msgid "Disabled" msgstr "Фаолсизлантирилган" -#: db_operations.php:578 +#: db_operations.php:587 msgid "Enable" msgstr "Фаоллантириш" -#: db_operations.php:602 libraries/Index.class.php:448 +#: db_operations.php:611 libraries/Index.class.php:448 #: libraries/db_structure.lib.php:62 libraries/mysql_charsets.lib.php:107 #: libraries/tbl_properties.inc.php:107 libraries/tbl_properties.inc.php:730 #: server_collations.php:54 server_collations.php:66 server_databases.php:111 #: tbl_operations.php:363 tbl_select.php:137 tbl_structure.php:179 -#: tbl_structure.php:767 tbl_tracking.php:275 tbl_tracking.php:326 +#: tbl_structure.php:765 tbl_tracking.php:275 tbl_tracking.php:326 msgid "Collation" msgstr "Таққослаш" -#: db_operations.php:615 main.php:316 pdf_schema.php:34 +#: db_operations.php:624 main.php:316 pdf_schema.php:34 #, php-format msgid "" "The additional features for working with linked tables have been " @@ -335,14 +331,14 @@ msgstr "" "Алоқадор жадваллар билан ишлаш учун қўшимча имкониятлар мавжуд эмас. " "Сабабларини аниқлаш учун %sбу ерга%s босинг." -#: db_operations.php:648 +#: db_operations.php:657 msgid "Edit PDF Pages" 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:1665 -#: server_privileges.php:1721 server_privileges.php:1985 +#: libraries/header.inc.php:130 pdf_pages.php:424 server_privileges.php:1685 +#: server_privileges.php:1741 server_privileges.php:2005 #: server_synchronize.php:423 server_synchronize.php:866 tbl_tracking.php:592 #: test/theme.php:75 msgid "Table" @@ -351,7 +347,7 @@ msgstr "Жадвал " #: db_printview.php:105 libraries/db_structure.lib.php:56 #: libraries/header_printview.inc.php:63 libraries/import.lib.php:146 #: navigation.php:638 navigation.php:660 server_databases.php:122 -#: tbl_printview.php:394 tbl_structure.php:365 tbl_structure.php:777 +#: tbl_printview.php:394 tbl_structure.php:365 tbl_structure.php:775 msgid "Rows" msgstr "Қаторларсони" @@ -359,30 +355,30 @@ msgstr "Қаторларсони" msgid "Size" msgstr "Ҳажми" -#: db_printview.php:162 db_structure.php:457 libraries/export/sql.php:559 +#: db_printview.php:162 db_structure.php:455 libraries/export/sql.php:559 #: libraries/export/sql.php:899 msgid "in use" msgstr "ишлатилмоқда" #: db_printview.php:187 libraries/db_info.inc.php:88 #: libraries/export/sql.php:514 pdf_schema.php:1241 tbl_printview.php:434 -#: tbl_structure.php:809 +#: tbl_structure.php:807 msgid "Creation" msgstr "Тузиш" #: db_printview.php:196 libraries/db_info.inc.php:93 #: libraries/export/sql.php:519 pdf_schema.php:1246 tbl_printview.php:444 -#: tbl_structure.php:817 +#: tbl_structure.php:815 msgid "Last update" msgstr "Охирги янгиланиш" #: db_printview.php:205 libraries/db_info.inc.php:98 #: libraries/export/sql.php:524 pdf_schema.php:1251 tbl_printview.php:454 -#: tbl_structure.php:825 +#: tbl_structure.php:823 msgid "Last check" msgstr "Охирги текширув" -#: db_printview.php:222 db_structure.php:480 +#: db_printview.php:222 db_structure.php:478 #, fuzzy, php-format #| msgid "%s table(s)" msgid "%s table" @@ -443,7 +439,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:297 tbl_change.php:1031 tbl_indexes.php:250 +#: server_privileges.php:298 tbl_change.php:1031 tbl_indexes.php:250 #: tbl_select.php:288 msgid "Or" msgstr "Ёки" @@ -516,9 +512,9 @@ 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:2833 +#: db_structure.php:105 libraries/common.lib.php:2837 #: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50 -#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:467 +#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:465 msgid "Browse" msgstr "Кўриб чиқиш" @@ -563,36 +559,36 @@ 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:2832 libraries/sql_query_form.lib.php:334 +#: libraries/common.lib.php:2836 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:2829 libraries/common.lib.php:2836 +#: libraries/common.lib.php:2833 libraries/common.lib.php:2840 #: 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:1106 #: libraries/tbl_links.inc.php:56 pmd_general.php:134 -#: server_privileges.php:593 server_replication.php:315 tbl_tracking.php:269 +#: server_privileges.php:594 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:1656 +#: db_structure.php:543 db_structure.php:544 db_tracking.php:91 +#: libraries/Index.class.php:483 libraries/common.lib.php:1657 #: 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 -#: tbl_structure.php:152 tbl_structure.php:471 +#: tbl_structure.php:152 tbl_structure.php:469 msgid "Drop" 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:1655 +#: db_structure.php:541 db_structure.php:542 libraries/common.lib.php:1656 #: libraries/mult_submits.inc.php:39 libraries/tbl_links.inc.php:105 msgid "Empty" msgstr "Тозалаш" @@ -602,25 +598,25 @@ msgstr "Тозалаш" msgid "Table %s has been emptied" msgstr "\"%s\" жадвали тозаланди" -#: db_structure.php:326 libraries/tbl_links.inc.php:133 +#: db_structure.php:325 libraries/tbl_links.inc.php:133 #, php-format msgid "View %s has been dropped" msgstr " \"%s\" намойиши ўчирилди" -#: db_structure.php:326 libraries/tbl_links.inc.php:133 +#: db_structure.php:325 libraries/tbl_links.inc.php:133 #, php-format msgid "Table %s has been dropped" msgstr "\"%s\" жадвали ўчирилди" -#: db_structure.php:333 +#: db_structure.php:332 msgid "Tracking is active." msgstr "Кузатиш фаол." -#: db_structure.php:335 +#: db_structure.php:334 msgid "Tracking is not active." msgstr "Кузатиш фаол эмас." -#: db_structure.php:420 libraries/display_tbl.lib.php:1944 +#: db_structure.php:418 libraries/display_tbl.lib.php:1944 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation%" @@ -629,86 +625,86 @@ msgstr "" "Ушбу намойиш камида кўрсатилган миқдорда қаторларга эга. Батафсил маълумот " "учун %sдокументацияга%s қаранг." -#: db_structure.php:434 db_structure.php:448 libraries/header.inc.php:126 +#: db_structure.php:432 db_structure.php:446 libraries/header.inc.php:130 #: libraries/tbl_info.inc.php:66 tbl_structure.php:185 test/theme.php:74 msgid "View" msgstr "Намойиш" -#: db_structure.php:485 libraries/db_structure.lib.php:49 -#: libraries/server_links.inc.php:70 server_replication.php:33 +#: db_structure.php:483 libraries/db_structure.lib.php:49 +#: libraries/server_links.inc.php:71 server_replication.php:33 #: server_replication.php:164 server_status.php:369 msgid "Replication" msgstr "Репликация (захира нусха кўчириш)" -#: db_structure.php:489 +#: db_structure.php:487 msgid "Sum" msgstr "Жами" -#: db_structure.php:496 libraries/StorageEngine.class.php:356 +#: db_structure.php:494 libraries/StorageEngine.class.php:356 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "\"%s\" - MySQL серверидаги андозавий маълумотлар жадвали тури." -#: db_structure.php:524 db_structure.php:541 db_structure.php:542 +#: db_structure.php:522 db_structure.php:539 db_structure.php:540 #: 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:1596 tbl_structure.php:455 -#: tbl_structure.php:464 +#: server_databases.php:351 server_privileges.php:1616 tbl_structure.php:453 +#: tbl_structure.php:462 msgid "With selected:" msgstr "Белгиланганларни: " -#: db_structure.php:527 libraries/display_tbl.lib.php:2076 -#: server_databases.php:348 server_privileges.php:569 -#: server_privileges.php:1599 tbl_structure.php:458 +#: db_structure.php:525 libraries/display_tbl.lib.php:2076 +#: server_databases.php:348 server_privileges.php:570 +#: server_privileges.php:1619 tbl_structure.php:456 msgid "Check All" msgstr "Барчасини белгилаш" -#: db_structure.php:531 libraries/display_tbl.lib.php:2077 +#: db_structure.php:529 libraries/display_tbl.lib.php:2077 #: libraries/replication_gui.lib.php:33 server_databases.php:350 -#: server_privileges.php:572 server_privileges.php:1603 tbl_structure.php:462 +#: server_privileges.php:573 server_privileges.php:1623 tbl_structure.php:460 msgid "Uncheck All" msgstr "Белгилашни бекор қилиш" -#: db_structure.php:536 +#: db_structure.php:534 msgid "Check tables having overhead" msgstr "Оптималлаштириш лозим бўлгн жадвалларни белгилаш" -#: db_structure.php:547 db_structure.php:548 db_structure.php:599 +#: db_structure.php:545 db_structure.php:546 db_structure.php:597 #: libraries/display_tbl.lib.php:2180 libraries/mult_submits.inc.php:28 -#: tbl_structure.php:492 tbl_structure.php:494 +#: tbl_structure.php:490 tbl_structure.php:492 msgid "Print view" msgstr "Чоп этиш версияси" -#: db_structure.php:549 db_structure.php:550 libraries/mult_submits.inc.php:42 +#: db_structure.php:547 db_structure.php:548 libraries/mult_submits.inc.php:42 #: tbl_operations.php:581 msgid "Check table" msgstr "Жадвални текшириш" -#: db_structure.php:551 db_structure.php:552 libraries/mult_submits.inc.php:47 -#: tbl_operations.php:621 tbl_structure.php:709 tbl_structure.php:711 +#: db_structure.php:549 db_structure.php:550 libraries/mult_submits.inc.php:47 +#: tbl_operations.php:621 tbl_structure.php:707 tbl_structure.php:709 msgid "Optimize table" msgstr "Жадвални оптималлаштириш" -#: db_structure.php:553 db_structure.php:554 libraries/mult_submits.inc.php:52 +#: db_structure.php:551 db_structure.php:552 libraries/mult_submits.inc.php:52 #: tbl_operations.php:611 msgid "Repair table" msgstr "Жадвални тиклаш" -#: db_structure.php:555 db_structure.php:556 libraries/mult_submits.inc.php:57 +#: db_structure.php:553 db_structure.php:554 libraries/mult_submits.inc.php:57 #: tbl_operations.php:601 msgid "Analyze table" msgstr "Жадвал таҳлили" -#: db_structure.php:557 db_structure.php:558 libraries/db_links.inc.php:71 +#: db_structure.php:555 db_structure.php:556 libraries/db_links.inc.php:71 #: 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:1380 +#: libraries/server_links.inc.php:85 libraries/tbl_links.inc.php:82 +#: pmd_pdf.php:84 pmd_pdf.php:109 server_privileges.php:1397 #: setup/frames/menu.inc.php:22 tbl_row_action.php:59 msgid "Export" msgstr "Экспорт" -#: db_structure.php:606 libraries/display_pdf_schema.lib.php:44 +#: db_structure.php:604 libraries/display_pdf_schema.lib.php:44 msgid "Data Dictionary" msgstr "Маълумотлар луғати" @@ -719,10 +715,10 @@ msgstr "Кузатилган жадваллар" #: db_tracking.php:71 libraries/export/htmlword.php:86 #: libraries/export/latex.php:148 libraries/export/odt.php:113 #: libraries/export/sql.php:342 libraries/export/texytext.php:84 -#: libraries/export/xml.php:255 libraries/header.inc.php:106 +#: libraries/export/xml.php:255 libraries/header.inc.php:110 #: libraries/header_printview.inc.php:58 server_databases.php:169 -#: server_privileges.php:1660 server_privileges.php:1721 -#: server_privileges.php:1979 server_processlist.php:56 +#: server_privileges.php:1680 server_privileges.php:1741 +#: server_privileges.php:1999 server_processlist.php:56 #: server_synchronize.php:1179 server_synchronize.php:1183 #: tbl_tracking.php:591 test/theme.php:65 msgid "Database" @@ -742,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:1542 server_privileges.php:1725 -#: server_privileges.php:2073 tbl_structure.php:187 +#: server_privileges.php:1562 server_privileges.php:1745 +#: server_privileges.php:2094 tbl_structure.php:187 msgid "Action" msgstr "Амал" @@ -777,8 +773,8 @@ msgstr "Тузилма расми" msgid "Untracked tables" msgstr "Кузатилмаган жадваллар" -#: db_tracking.php:172 db_tracking.php:174 tbl_structure.php:528 -#: tbl_structure.php:530 +#: db_tracking.php:172 db_tracking.php:174 tbl_structure.php:526 +#: tbl_structure.php:528 msgid "Track table" msgstr "Жадвални кузатиш" @@ -952,187 +948,236 @@ msgstr "Хост номи бўш!" msgid "The user name is empty!" msgstr "Фойдаланувчи номи белгиланмаган!" -#: js/messages.php:44 server_privileges.php:1236 user_password.php:70 +#: js/messages.php:44 server_privileges.php:1241 user_password.php:70 msgid "The password is empty!" msgstr "Парол белгиланмаган!" -#: js/messages.php:45 server_privileges.php:1234 user_password.php:73 +#: js/messages.php:45 server_privileges.php:1239 user_password.php:73 msgid "The passwords aren't the same!" msgstr "Киритилган пароллар бир хил эмас!" -#: js/messages.php:49 pmd_general.php:342 pmd_general.php:379 +#: js/messages.php:46 +#, fuzzy +#| msgid "Add a new User" +msgid "Add a New User" +msgstr "Янги фойдаланувчи қўшиш" + +#: js/messages.php:47 js/messages.php:54 pmd_general.php:342 +#: pmd_general.php:379 msgid "Cancel" msgstr "Бекор қилиш" -#: js/messages.php:52 pmd_save_pos.php:54 +#: js/messages.php:48 +#, fuzzy +#| msgid "Create version" +msgid "Create User" +msgstr "Версиясини тузиш" + +#: js/messages.php:49 +#, fuzzy +#| msgid "Reload privileges" +msgid "Reloading Privileges" +msgstr "Привилегияларни қайта юклаш" + +#: js/messages.php:50 +#, fuzzy +#| msgid "Remove selected users" +msgid "Removing Selected Users" +msgstr "Белгиланган фойдаланувчиларни ўчириш" + +#: js/messages.php:57 +#, fuzzy +#| msgid "Load" +msgid "Loading" +msgstr "Юклаш" + +#: js/messages.php:58 +#, fuzzy +#| msgid "Processes" +msgid "Processing Request" +msgstr "Жараёнлар" + +#: js/messages.php:59 +msgid "Error in Processing Request" +msgstr "" + +#: js/messages.php:60 +msgid "Dropping Column" +msgstr "" + +#: js/messages.php:61 +msgid "Adding Primary Key" +msgstr "" + +#: js/messages.php:64 pmd_save_pos.php:54 msgid "Modifications have been saved" msgstr "Ўзгариришлар сақланди" -#: js/messages.php:53 pmd_relation_upd.php:49 +#: js/messages.php:65 pmd_relation_upd.php:49 msgid "Relation deleted" msgstr "Алоқа ўчирилди" -#: js/messages.php:54 pmd_relation_new.php:64 +#: js/messages.php:66 pmd_relation_new.php:64 msgid "FOREIGN KEY relation added" msgstr "Ташқи калитга (FOREIGN KEY) алоқа ўрнатилди" -#: js/messages.php:55 pmd_relation_new.php:86 +#: js/messages.php:67 pmd_relation_new.php:86 msgid "Internal relation added" msgstr "Ички алоқа ўрнатилди" -#: js/messages.php:56 pmd_relation_new.php:63 pmd_relation_new.php:88 +#: js/messages.php:68 pmd_relation_new.php:63 pmd_relation_new.php:88 msgid "Error: Relation not added." msgstr "Хатолик: Боғлиқлик ўрнатилмади." -#: js/messages.php:57 pmd_relation_new.php:31 +#: js/messages.php:69 pmd_relation_new.php:31 msgid "Error: relation already exists." msgstr "Хатолик: Боғлиқлик аллақачон мавжуд." -#: js/messages.php:58 +#: js/messages.php:70 msgid "Error saving coordinates for Designer." msgstr "Координаталарни сақлашда хатолик." -#: js/messages.php:59 libraries/relation.lib.php:107 +#: js/messages.php:71 libraries/relation.lib.php:107 #: libraries/relation.lib.php:119 msgid "General relation features" msgstr "Алоқаларнинг асосий имкониятлари" -#: js/messages.php:59 libraries/relation.lib.php:101 +#: js/messages.php:71 libraries/relation.lib.php:101 #: libraries/relation.lib.php:108 msgid "Disabled" msgstr "Фаолсизлантирилган" -#: js/messages.php:60 +#: js/messages.php:72 msgid "Select referenced key" msgstr "Боғлиқ калитни танланг" -#: js/messages.php:61 +#: js/messages.php:73 msgid "Select Foreign Key" msgstr "Ташқи калитни танланг" -#: js/messages.php:62 +#: js/messages.php:74 msgid "Please select the primary key or a unique key" msgstr "Бирламчи (PRIMARY) ёки уникал (UNIQUE) индекс бўлган майдонни танланг!" -#: js/messages.php:63 pmd_general.php:77 tbl_relation.php:548 +#: js/messages.php:75 pmd_general.php:77 tbl_relation.php:548 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" msgstr "Кўрсатиладиган майдонни танлаш" #. l10n: Display text for calendar close link -#: js/messages.php:73 +#: js/messages.php:85 #, fuzzy #| msgid "Donate" msgid "Done" msgstr "Садақа" #. l10n: Display text for previous month link in calendar -#: js/messages.php:75 +#: js/messages.php:87 #, fuzzy #| msgid "Previous" msgid "Prev" msgstr "Орқага" #. l10n: Display text for next month link in calendar -#: js/messages.php:77 libraries/common.lib.php:2353 -#: libraries/common.lib.php:2356 libraries/display_tbl.lib.php:338 +#: js/messages.php:89 libraries/common.lib.php:2357 +#: libraries/common.lib.php:2360 libraries/display_tbl.lib.php:338 #: server_binlog.php:205 server_binlog.php:207 tbl_printview.php:424 -#: tbl_structure.php:801 +#: tbl_structure.php:799 msgid "Next" msgstr "Кейинги" #. l10n: Display text for current month link in calendar -#: js/messages.php:79 +#: js/messages.php:91 #, fuzzy #| msgid "Total" msgid "Today" msgstr "Жами" -#: js/messages.php:82 +#: js/messages.php:94 #, fuzzy #| msgid "Binary" msgid "January" msgstr "Иккилик" -#: js/messages.php:83 +#: js/messages.php:95 msgid "February" msgstr "" -#: js/messages.php:84 +#: js/messages.php:96 #, fuzzy #| msgid "Mar" msgid "March" msgstr "Мар" -#: js/messages.php:85 +#: js/messages.php:97 #, fuzzy #| msgid "Apr" msgid "April" msgstr "Апр" -#: js/messages.php:86 +#: js/messages.php:98 msgid "May" msgstr "Май" -#: js/messages.php:87 +#: js/messages.php:99 #, fuzzy #| msgid "Jun" msgid "June" msgstr "Июн" -#: js/messages.php:88 +#: js/messages.php:100 #, fuzzy #| msgid "Jul" msgid "July" msgstr "Июл" -#: js/messages.php:89 +#: js/messages.php:101 #, fuzzy #| msgid "Aug" msgid "August" msgstr "Авг" -#: js/messages.php:90 +#: js/messages.php:102 msgid "September" msgstr "" -#: js/messages.php:91 +#: js/messages.php:103 #, fuzzy #| msgid "Oct" msgid "October" msgstr "Окт" -#: js/messages.php:92 +#: js/messages.php:104 msgid "November" msgstr "" -#: js/messages.php:93 +#: js/messages.php:105 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:97 libraries/common.lib.php:1557 +#: js/messages.php:109 libraries/common.lib.php:1557 msgid "Jan" msgstr "Янв" #. l10n: Short month name -#: js/messages.php:99 libraries/common.lib.php:1559 +#: js/messages.php:111 libraries/common.lib.php:1559 msgid "Feb" msgstr "Фев" #. l10n: Short month name -#: js/messages.php:101 libraries/common.lib.php:1561 +#: js/messages.php:113 libraries/common.lib.php:1561 msgid "Mar" msgstr "Мар" #. l10n: Short month name -#: js/messages.php:103 libraries/common.lib.php:1563 +#: js/messages.php:115 libraries/common.lib.php:1563 msgid "Apr" msgstr "Апр" #. l10n: Short month name -#: js/messages.php:105 libraries/common.lib.php:1565 +#: js/messages.php:117 libraries/common.lib.php:1565 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1140,178 +1185,178 @@ msgid "May" msgstr "Май" #. l10n: Short month name -#: js/messages.php:107 libraries/common.lib.php:1567 +#: js/messages.php:119 libraries/common.lib.php:1567 msgid "Jun" msgstr "Июн" #. l10n: Short month name -#: js/messages.php:109 libraries/common.lib.php:1569 +#: js/messages.php:121 libraries/common.lib.php:1569 msgid "Jul" msgstr "Июл" #. l10n: Short month name -#: js/messages.php:111 libraries/common.lib.php:1571 +#: js/messages.php:123 libraries/common.lib.php:1571 msgid "Aug" msgstr "Авг" #. l10n: Short month name -#: js/messages.php:113 libraries/common.lib.php:1573 +#: js/messages.php:125 libraries/common.lib.php:1573 msgid "Sep" msgstr "Сен" #. l10n: Short month name -#: js/messages.php:115 libraries/common.lib.php:1575 +#: js/messages.php:127 libraries/common.lib.php:1575 msgid "Oct" msgstr "Окт" #. l10n: Short month name -#: js/messages.php:117 libraries/common.lib.php:1577 +#: js/messages.php:129 libraries/common.lib.php:1577 msgid "Nov" msgstr "Ноя" #. l10n: Short month name -#: js/messages.php:119 libraries/common.lib.php:1579 +#: js/messages.php:131 libraries/common.lib.php:1579 msgid "Dec" msgstr "Дек" -#: js/messages.php:122 +#: js/messages.php:134 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "Якш" -#: js/messages.php:123 +#: js/messages.php:135 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "Душ" -#: js/messages.php:124 +#: js/messages.php:136 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "Сеш" -#: js/messages.php:125 +#: js/messages.php:137 msgid "Wednesday" msgstr "" -#: js/messages.php:126 +#: js/messages.php:138 msgid "Thursday" msgstr "" -#: js/messages.php:127 +#: js/messages.php:139 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "Жум" -#: js/messages.php:128 +#: js/messages.php:140 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:132 libraries/common.lib.php:1582 +#: js/messages.php:144 libraries/common.lib.php:1582 msgid "Sun" msgstr "Якш" #. l10n: Short week day name -#: js/messages.php:134 libraries/common.lib.php:1584 +#: js/messages.php:146 libraries/common.lib.php:1584 msgid "Mon" msgstr "Душ" #. l10n: Short week day name -#: js/messages.php:136 libraries/common.lib.php:1586 +#: js/messages.php:148 libraries/common.lib.php:1586 msgid "Tue" msgstr "Сеш" #. l10n: Short week day name -#: js/messages.php:138 libraries/common.lib.php:1588 +#: js/messages.php:150 libraries/common.lib.php:1588 msgid "Wed" msgstr "Чор" #. l10n: Short week day name -#: js/messages.php:140 libraries/common.lib.php:1590 +#: js/messages.php:152 libraries/common.lib.php:1590 msgid "Thu" msgstr "Пай" #. l10n: Short week day name -#: js/messages.php:142 libraries/common.lib.php:1592 +#: js/messages.php:154 libraries/common.lib.php:1592 msgid "Fri" msgstr "Жум" #. l10n: Short week day name -#: js/messages.php:144 libraries/common.lib.php:1594 +#: js/messages.php:156 libraries/common.lib.php:1594 msgid "Sat" msgstr "Шан" #. l10n: Minimal week day name -#: js/messages.php:148 +#: js/messages.php:160 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "Якш" #. l10n: Minimal week day name -#: js/messages.php:150 +#: js/messages.php:162 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "Душ" #. l10n: Minimal week day name -#: js/messages.php:152 +#: js/messages.php:164 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "Сеш" #. l10n: Minimal week day name -#: js/messages.php:154 +#: js/messages.php:166 #, fuzzy #| msgid "Wed" msgid "We" msgstr "Чор" #. l10n: Minimal week day name -#: js/messages.php:156 +#: js/messages.php:168 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "Пай" #. l10n: Minimal week day name -#: js/messages.php:158 +#: js/messages.php:170 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "Жум" #. l10n: Minimal week day name -#: js/messages.php:160 +#: js/messages.php:172 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "Шан" #. l10n: Column header for week of the year in calendar -#: js/messages.php:162 +#: js/messages.php:174 #, fuzzy #| msgid "Wiki" msgid "Wk" msgstr "Вики" -#: js/messages.php:164 +#: js/messages.php:176 msgid "Hour" msgstr "" -#: js/messages.php:165 +#: js/messages.php:177 #, fuzzy #| msgid "in use" msgid "Minute" msgstr "ишлатилмоқда" -#: js/messages.php:166 +#: js/messages.php:178 #, fuzzy #| msgid "per second" msgid "Second" @@ -1374,7 +1419,7 @@ msgstr "Индекслар" #: libraries/Index.class.php:444 libraries/mult_submits.inc.php:103 #: libraries/tbl_properties.inc.php:519 tbl_structure.php:33 -#: tbl_structure.php:155 tbl_structure.php:159 tbl_structure.php:474 +#: tbl_structure.php:155 tbl_structure.php:159 tbl_structure.php:472 #: tbl_tracking.php:322 msgid "Unique" msgstr "Уникал" @@ -1415,8 +1460,8 @@ msgid "" "removed." msgstr " %1$s ва %2$s индекслари бир хил, улардан бирини ўчириш мумкин." -#: libraries/List_Database.class.php:431 libraries/server_links.inc.php:41 -#: server_databases.php:88 server_privileges.php:1660 +#: libraries/List_Database.class.php:431 libraries/server_links.inc.php:42 +#: server_databases.php:88 server_privileges.php:1680 #: setup/lib/messages.inc.php:110 test/theme.php:93 msgid "Databases" msgstr "Маълумотлар базалари" @@ -1586,7 +1631,7 @@ msgstr "Парол:" msgid "Server Choice" msgstr "Серверни танланг" -#: libraries/auth/cookie.auth.lib.php:320 libraries/header.inc.php:59 +#: libraries/auth/cookie.auth.lib.php:320 libraries/header.inc.php:63 msgid "Cookies must be enabled past this point." msgstr "Браузерда \"cookies\" фаоллаштирилган бўлиши шарт." @@ -1672,7 +1717,7 @@ msgstr "" "\"recode_string\" функциясини ишлатиб бўлмади. Эҳтимол, PHP ни созлашда " "хатолик мавжуд." -#: libraries/common.inc.php:583 +#: libraries/common.inc.php:587 msgid "" "phpMyAdmin was unable to read your configuration file!
This might " "happen if PHP finds a parse error in it or PHP cannot find the file.
Агар бўм-бўш саҳифа кўрсатилса, демак, ҳаммаси жойида." -#: libraries/common.inc.php:594 +#: libraries/common.inc.php:598 #, fuzzy, php-format #| msgid "Could not load default configuration from: \"%1$s\"" msgid "Could not load default configuration from: %1$s" msgstr " \"%1$s\" файлидан андоза конфигурацияни юклаб бўлмади." -#: libraries/common.inc.php:599 +#: libraries/common.inc.php:603 msgid "" "The $cfg['PmaAbsoluteUri'] directive MUST be set in your " "configuration file!" @@ -1701,31 +1746,31 @@ msgstr "" "$cfg[\"PmaAbsoluteUrl\"] директиваси конфигурацион файлда созланиши " "ШАРТ!" -#: libraries/common.inc.php:629 +#: libraries/common.inc.php:633 #, fuzzy, php-format #| msgid "Invalid server index: \"%s\"" msgid "Invalid server index: %s" msgstr "Сервер рақами нотўғри: \"%s\"" -#: libraries/common.inc.php:636 +#: libraries/common.inc.php:640 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" " %1$s сервери учун нотўғри хост номи кўрсатилган. phpMyAdmin конфигурацион " "файлида белгиланган созлашларни тўғирланг." -#: libraries/common.inc.php:645 libraries/header.inc.php:96 +#: libraries/common.inc.php:649 libraries/header.inc.php:100 #: libraries/select_server.lib.php:41 libraries/select_server.lib.php:47 #: main.php:185 test/theme.php:57 msgid "Server" msgstr "Сервер" -#: libraries/common.inc.php:823 +#: libraries/common.inc.php:827 msgid "Invalid authentication method set in configuration:" msgstr "" "phpMyAdmin конфигурацион файлида нотўғри аутентификация усули белгиланган:" -#: libraries/common.inc.php:926 +#: libraries/common.inc.php:930 #, php-format msgid "You should upgrade to %s %s or later." msgstr " \"%s\" ни \"%s\" версияга ёки каттароқ версияга янгилаш зарур." @@ -1860,47 +1905,47 @@ msgstr "," msgid "%B %d, %Y at %I:%M %p" msgstr "%d %B %Y й., %H:%M" -#: libraries/common.lib.php:1907 +#: libraries/common.lib.php:1911 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "\"%s\" кун, \"%s\" соат, \"%s\" минут ва \"%s\" секунд" -#: libraries/common.lib.php:2322 libraries/common.lib.php:2325 +#: libraries/common.lib.php:2326 libraries/common.lib.php:2329 #: libraries/display_tbl.lib.php:290 server_status.php:719 msgid "Begin" msgstr "Боши" -#: libraries/common.lib.php:2323 libraries/common.lib.php:2326 +#: libraries/common.lib.php:2327 libraries/common.lib.php:2330 #: libraries/display_tbl.lib.php:291 server_binlog.php:168 #: server_binlog.php:170 msgid "Previous" msgstr "Орқага" -#: libraries/common.lib.php:2354 libraries/common.lib.php:2357 +#: libraries/common.lib.php:2358 libraries/common.lib.php:2361 #: libraries/display_tbl.lib.php:353 msgid "End" msgstr "Охири" -#: libraries/common.lib.php:2430 +#: libraries/common.lib.php:2434 #, php-format msgid "Jump to database "%s"." msgstr " \"%s\" маълумотлар базасига ўтиш" -#: libraries/common.lib.php:2450 +#: libraries/common.lib.php:2454 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" " \"%s\" параметрининг иши маълум хатоликка олиб келиши мумкин, батафсил " "маълумот учун қаранг \"%s\"" -#: libraries/common.lib.php:2830 libraries/common.lib.php:2837 +#: libraries/common.lib.php:2834 libraries/common.lib.php:2841 #: libraries/db_links.inc.php:68 libraries/export/sql.php:25 -#: libraries/import/sql.php:18 libraries/server_links.inc.php:45 +#: libraries/import/sql.php:18 libraries/server_links.inc.php:46 #: libraries/tbl_links.inc.php:60 querywindow.php:99 test/theme.php:97 msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2839 libraries/db_links.inc.php:104 +#: libraries/common.lib.php:2843 libraries/db_links.inc.php:104 #: libraries/tbl_links.inc.php:95 libraries/tbl_links.inc.php:117 #: view_operations.php:89 msgid "Operations" @@ -1949,15 +1994,15 @@ msgstr "Сўров" msgid "Designer" msgstr "Дизайнер" -#: libraries/db_links.inc.php:98 libraries/server_links.inc.php:88 +#: libraries/db_links.inc.php:98 libraries/server_links.inc.php:89 #: libraries/tbl_links.inc.php:91 pmd_pdf.php:84 pmd_pdf.php:110 #: setup/frames/menu.inc.php:21 msgid "Import" msgstr "Импорт" -#: libraries/db_links.inc.php:111 libraries/server_links.inc.php:66 -#: server_privileges.php:111 server_privileges.php:1722 -#: server_privileges.php:2071 test/theme.php:117 +#: libraries/db_links.inc.php:111 libraries/server_links.inc.php:67 +#: server_privileges.php:112 server_privileges.php:1742 +#: server_privileges.php:2092 test/theme.php:117 msgid "Privileges" msgstr "Привилегиялар" @@ -1978,7 +2023,7 @@ msgstr "" "3.11\"[/a]га қаранг" #: libraries/db_structure.lib.php:69 server_databases.php:142 -#: tbl_printview.php:336 tbl_structure.php:682 +#: tbl_printview.php:336 tbl_structure.php:680 msgid "Overhead" msgstr "Фрагментланган" @@ -1997,7 +2042,7 @@ msgstr "Сервер жавоб бермаяпти" msgid "(or the local MySQL server's socket is not correctly configured)" msgstr "(ёки локал MySQL сервернинг сокети нотўғри созланган)" -#: libraries/dbi/mysql.dbi.lib.php:362 tbl_structure.php:608 +#: libraries/dbi/mysql.dbi.lib.php:362 tbl_structure.php:606 msgid "Details..." msgstr "Тафсилотлар..." @@ -2007,22 +2052,22 @@ msgid "Change password" msgstr "Паролни ўзгартириш" #: libraries/display_change_password.lib.php:35 -#: libraries/replication_gui.lib.php:345 server_privileges.php:807 +#: libraries/replication_gui.lib.php:345 server_privileges.php:808 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:796 -#: server_privileges.php:800 server_privileges.php:811 -#: server_privileges.php:1538 server_synchronize.php:1175 +#: libraries/replication_gui.lib.php:349 server_privileges.php:797 +#: server_privileges.php:801 server_privileges.php:812 +#: server_privileges.php:1558 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:815 server_privileges.php:818 +#: server_privileges.php:816 server_privileges.php:819 msgid "Re-type" msgstr "Тасдиқлаш" @@ -2037,12 +2082,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:822 +#: libraries/replication_gui.lib.php:360 server_privileges.php:823 msgid "Generate Password" msgstr "Парол ўрнатиш" #: libraries/display_change_password.lib.php:75 -#: libraries/replication_gui.lib.php:363 server_privileges.php:825 +#: libraries/replication_gui.lib.php:363 server_privileges.php:826 msgid "Generate" msgstr "Генерация қилиш" @@ -2055,8 +2100,8 @@ msgstr "Янги маълумотлар базаси тузиш" msgid "Create" msgstr "Тузиш" -#: libraries/display_create_database.lib.php:40 server_privileges.php:113 -#: server_privileges.php:1427 server_replication.php:35 +#: libraries/display_create_database.lib.php:40 server_privileges.php:114 +#: server_privileges.php:1447 server_replication.php:35 msgid "No Privileges" msgstr "Привилегиялар йўқ" @@ -2149,7 +2194,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:1875 server_processlist.php:75 +#: server_privileges.php:1895 server_processlist.php:75 msgid "None" msgstr "Йўқ" @@ -2346,7 +2391,7 @@ msgstr "Индекс бўйича сортировка қилиш" #: libraries/import/docsql.php:34 libraries/import/ldi.php:47 #: libraries/import/ods.php:30 libraries/import/sql.php:20 #: libraries/import/xls.php:26 libraries/import/xlsx.php:26 -#: libraries/import/xml.php:25 tbl_select.php:267 tbl_structure.php:753 +#: libraries/import/xml.php:25 tbl_select.php:267 tbl_structure.php:751 msgid "Options" msgstr "Параметрлар" @@ -2423,7 +2468,7 @@ msgstr "Сўров %01.4f секунд вақт олди" #: libraries/display_tbl.lib.php:2089 libraries/mult_submits.inc.php:113 #: querywindow.php:125 querywindow.php:129 querywindow.php:132 -#: tbl_structure.php:25 tbl_structure.php:150 tbl_structure.php:470 +#: tbl_structure.php:25 tbl_structure.php:150 tbl_structure.php:468 msgid "Change" msgstr "Ўзгартириш" @@ -2493,7 +2538,7 @@ msgstr "Ишлатилиш" #: libraries/engines/innodb.lib.php:194 server_databases.php:137 #: server_databases.php:305 server_status.php:525 server_status.php:586 -#: server_status.php:607 tbl_printview.php:351 tbl_structure.php:696 +#: server_status.php:607 tbl_printview.php:351 tbl_structure.php:694 msgid "Total" msgstr "Жами" @@ -2781,7 +2826,7 @@ msgstr "" "рақамланади." #: libraries/export/codegen.php:37 setup/lib/messages.inc.php:88 -#: tbl_printview.php:376 tbl_structure.php:737 +#: tbl_printview.php:376 tbl_structure.php:735 msgid "Format" msgstr "Формат" @@ -2855,8 +2900,8 @@ 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:576 server_replication.php:316 tbl_printview.php:317 -#: tbl_structure.php:665 +#: server_privileges.php:577 server_replication.php:316 tbl_printview.php:317 +#: tbl_structure.php:663 msgid "Data" msgstr "Маълумотлар" @@ -2905,9 +2950,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:731 -#: server_privileges.php:734 server_privileges.php:790 -#: server_privileges.php:1537 server_privileges.php:2069 +#: libraries/replication_gui.lib.php:329 server_privileges.php:732 +#: server_privileges.php:735 server_privileges.php:791 +#: server_privileges.php:1557 server_privileges.php:2090 #: server_processlist.php:55 server_synchronize.php:1159 msgid "Host" msgstr "Хост" @@ -3102,7 +3147,7 @@ msgstr "Таркибини экспорт қилиш" msgid "Open new phpMyAdmin window" msgstr "phpMyAdmin дастурини янги ойнада очиш" -#: libraries/header.inc.php:115 +#: libraries/header.inc.php:119 msgid "New table" msgstr "Янги жадвал" @@ -3269,20 +3314,20 @@ 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 +#: tbl_structure.php:471 msgid "Primary" msgstr "Бирламчи" #: libraries/mult_submits.inc.php:98 libraries/tbl_properties.inc.php:116 #: libraries/tbl_properties.inc.php:525 tbl_printview.php:326 #: tbl_structure.php:31 tbl_structure.php:154 tbl_structure.php:158 -#: tbl_structure.php:475 tbl_structure.php:673 +#: tbl_structure.php:473 tbl_structure.php:671 msgid "Index" msgstr "Индекс" #: libraries/mult_submits.inc.php:108 libraries/tbl_properties.inc.php:531 #: tbl_structure.php:35 tbl_structure.php:156 tbl_structure.php:160 -#: tbl_structure.php:478 +#: tbl_structure.php:476 msgid "Fulltext" msgstr "Матн тўлалигича" @@ -3593,8 +3638,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:711 -#: server_privileges.php:714 server_privileges.php:721 +#: libraries/replication_gui.lib.php:259 server_privileges.php:712 +#: server_privileges.php:715 server_privileges.php:722 #: server_synchronize.php:1171 msgid "User name" msgstr "Фойдаланувчи номи" @@ -3618,7 +3663,7 @@ msgstr "Ўзгарувчи" #: 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 +#: tbl_structure.php:727 msgid "Value" msgstr "Қиймати" @@ -3638,34 +3683,34 @@ msgstr "" msgid "Add slave replication user" msgstr "Тобе репликация фойдаланувчисини қўшиш" -#: libraries/replication_gui.lib.php:254 server_privileges.php:716 +#: libraries/replication_gui.lib.php:254 server_privileges.php:717 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:717 -#: server_privileges.php:784 server_privileges.php:808 -#: server_privileges.php:1928 server_privileges.php:1958 +#: libraries/replication_gui.lib.php:346 server_privileges.php:718 +#: server_privileges.php:785 server_privileges.php:809 +#: server_privileges.php:1948 server_privileges.php:1978 msgid "Use text field" msgstr "Матнмайдонини ишлатиш" -#: libraries/replication_gui.lib.php:302 server_privileges.php:764 +#: libraries/replication_gui.lib.php:302 server_privileges.php:765 msgid "Any host" msgstr "Ҳар қайси хост" -#: libraries/replication_gui.lib.php:306 server_privileges.php:768 +#: libraries/replication_gui.lib.php:306 server_privileges.php:769 msgid "Local" msgstr "Локал" -#: libraries/replication_gui.lib.php:312 server_privileges.php:773 +#: libraries/replication_gui.lib.php:312 server_privileges.php:774 msgid "This Host" msgstr "Ушбу хост" -#: libraries/replication_gui.lib.php:318 server_privileges.php:779 +#: libraries/replication_gui.lib.php:318 server_privileges.php:780 msgid "Use Host Table" msgstr "Хостлар жадвалидан фойдаланиш" -#: libraries/replication_gui.lib.php:331 server_privileges.php:792 +#: libraries/replication_gui.lib.php:331 server_privileges.php:793 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -3701,29 +3746,29 @@ msgstr "Номаълум тил: %1$s." msgid "Servers" msgstr "Серверлар" -#: libraries/server_links.inc.php:53 server_engines.php:112 +#: libraries/server_links.inc.php:54 server_engines.php:112 #: server_engines.php:116 server_status.php:415 test/theme.php:105 msgid "Variables" msgstr "Ўзгарувчилар" -#: libraries/server_links.inc.php:57 test/theme.php:109 +#: libraries/server_links.inc.php:58 test/theme.php:109 msgid "Charsets" msgstr "Кодировкалар" -#: libraries/server_links.inc.php:61 test/theme.php:113 +#: libraries/server_links.inc.php:62 test/theme.php:113 msgid "Engines" msgstr "Жадвал турлари" -#: libraries/server_links.inc.php:76 server_binlog.php:110 +#: libraries/server_links.inc.php:77 server_binlog.php:110 #: server_status.php:364 test/theme.php:121 msgid "Binary log" msgstr "Иккилик журнал" -#: libraries/server_links.inc.php:80 +#: libraries/server_links.inc.php:81 msgid "Processes" msgstr "Жараёнлар" -#: libraries/server_links.inc.php:92 server_synchronize.php:1092 +#: libraries/server_links.inc.php:93 server_synchronize.php:1092 #: server_synchronize.php:1100 msgid "Synchronize" msgstr "Синхронизация қилиш" @@ -3971,13 +4016,13 @@ msgstr "Бўлакларни (PARTITIONS) белгилаш" msgid "Save" msgstr "Сақлаш" -#: libraries/tbl_properties.inc.php:780 tbl_structure.php:542 +#: libraries/tbl_properties.inc.php:780 tbl_structure.php:540 #, fuzzy, php-format #| msgid "Add column(s)" msgid "Add %s column(s)" msgstr "Устун(лар) қўшиш" -#: libraries/tbl_properties.inc.php:784 tbl_structure.php:536 +#: libraries/tbl_properties.inc.php:784 tbl_structure.php:534 #, fuzzy #| msgid "You have to add at least one field." msgid "You have to add at least one column." @@ -4194,8 +4239,8 @@ msgstr "Тозалаш" msgid "Protocol version" msgstr "Протокол версияси" -#: main.php:189 server_privileges.php:1389 server_privileges.php:1536 -#: server_privileges.php:1650 server_privileges.php:2068 +#: main.php:189 server_privileges.php:1406 server_privileges.php:1556 +#: server_privileges.php:1670 server_privileges.php:2089 #: server_processlist.php:54 msgid "User" msgstr "Фойдаланувчи" @@ -4659,114 +4704,114 @@ msgstr "Жадвал турлари" msgid "View dump (schema) of databases" msgstr "Маълумотлар базалари дампини (схемасини) намойиш этиш" -#: server_privileges.php:24 server_privileges.php:266 +#: server_privileges.php:25 server_privileges.php:267 msgid "Includes all privileges except GRANT." msgstr "GRANT дан ташқари барча привилегияларни ўз ичига олади" -#: server_privileges.php:25 server_privileges.php:192 -#: server_privileges.php:515 +#: server_privileges.php:26 server_privileges.php:193 +#: server_privileges.php:516 msgid "Allows altering the structure of existing tables." msgstr "Мавжуд жадвалларнинг тузилишини ўзгартиришга рухсат беради" -#: server_privileges.php:26 server_privileges.php:208 -#: server_privileges.php:521 +#: server_privileges.php:27 server_privileges.php:209 +#: server_privileges.php:522 msgid "Allows altering and dropping stored routines." msgstr "Сақланадиган муолажаларни ўзгартириш ва ўчиришга рухсат беради" -#: server_privileges.php:27 server_privileges.php:184 -#: server_privileges.php:514 +#: server_privileges.php:28 server_privileges.php:185 +#: server_privileges.php:515 msgid "Allows creating new databases and tables." msgstr "Янги маълумотлар базалари ва жадваллар тузишга рухсат беради" -#: server_privileges.php:28 server_privileges.php:207 -#: server_privileges.php:520 +#: server_privileges.php:29 server_privileges.php:208 +#: server_privileges.php:521 msgid "Allows creating stored routines." msgstr "Сақланадиган муолажалар тузишга рухсат беради" -#: server_privileges.php:29 server_privileges.php:514 +#: server_privileges.php:30 server_privileges.php:515 msgid "Allows creating new tables." msgstr "Янги жадваллар тузишга рухсат беради" -#: server_privileges.php:30 server_privileges.php:195 -#: server_privileges.php:518 +#: server_privileges.php:31 server_privileges.php:196 +#: server_privileges.php:519 msgid "Allows creating temporary tables." msgstr "Вақтинчалик жадваллар тузишга рухсат беради" -#: server_privileges.php:31 server_privileges.php:209 -#: server_privileges.php:554 +#: server_privileges.php:32 server_privileges.php:210 +#: server_privileges.php:555 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 +#: server_privileges.php:33 server_privileges.php:200 +#: server_privileges.php:204 server_privileges.php:527 +#: server_privileges.php:531 msgid "Allows creating new views." msgstr "Янги намойишлар тузиш(CREATE VIEW)га рухсат беради" -#: server_privileges.php:33 server_privileges.php:183 -#: server_privileges.php:506 +#: server_privileges.php:34 server_privileges.php:184 +#: server_privileges.php:507 msgid "Allows deleting data." msgstr "Маълумотларни ўчиришга рухсат беради" -#: server_privileges.php:34 server_privileges.php:185 -#: server_privileges.php:517 +#: server_privileges.php:35 server_privileges.php:186 +#: server_privileges.php:518 msgid "Allows dropping databases and tables." msgstr "Маълумотлар базаларини ва жадвалларни ўчиришга рухсат беради" -#: server_privileges.php:35 server_privileges.php:517 +#: server_privileges.php:36 server_privileges.php:518 msgid "Allows dropping tables." msgstr "Жадвалларни ўчиришга рухъсат беради" -#: server_privileges.php:36 server_privileges.php:200 -#: server_privileges.php:534 +#: server_privileges.php:37 server_privileges.php:201 +#: server_privileges.php:535 msgid "Allows to set up events for the event scheduler" msgstr "Кечиктирилган ҳодисаларни созлашга рухсат беради" -#: server_privileges.php:37 server_privileges.php:210 -#: server_privileges.php:522 +#: server_privileges.php:38 server_privileges.php:211 +#: server_privileges.php:523 msgid "Allows executing stored routines." msgstr "Сақланадиган муолажаларни бажаришга рухсат беради" -#: server_privileges.php:38 server_privileges.php:189 -#: server_privileges.php:509 +#: server_privileges.php:39 server_privileges.php:190 +#: server_privileges.php:510 msgid "Allows importing data from and exporting data into files." msgstr "Маълумотларни файлдан импорт ва файлга экспорт қилишга рухсат беради" -#: server_privileges.php:39 server_privileges.php:540 +#: server_privileges.php:40 server_privileges.php:541 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "Фойдаланувчиларни қўшиш ва привилегиялар жадвалини қайта юкламасдан " "привилегиялар қўшишга рухсат беради" -#: server_privileges.php:40 server_privileges.php:191 -#: server_privileges.php:516 +#: server_privileges.php:41 server_privileges.php:192 +#: server_privileges.php:517 msgid "Allows creating and dropping indexes." msgstr "Индекслар қўшиш ва уларни ўчиришга рухсат беради" -#: server_privileges.php:41 server_privileges.php:181 -#: server_privileges.php:442 server_privileges.php:504 +#: server_privileges.php:42 server_privileges.php:182 +#: server_privileges.php:443 server_privileges.php:505 msgid "Allows inserting and replacing data." msgstr "Маълумот қўйиш ва ўзгартиришга рухсат беради" -#: server_privileges.php:42 server_privileges.php:196 -#: server_privileges.php:549 +#: server_privileges.php:43 server_privileges.php:197 +#: server_privileges.php:550 msgid "Allows locking tables for the current thread." msgstr "Жорий оқим учун жадвални блокировку қилишга рухсат беради" -#: server_privileges.php:43 server_privileges.php:646 -#: server_privileges.php:648 +#: server_privileges.php:44 server_privileges.php:647 +#: server_privileges.php:649 msgid "Limits the number of new connections the user may open per hour." msgstr "" "Фойдаланувчи бир соат давомида ўрнатиши мумкин бўлган янги уланишлар сони" -#: server_privileges.php:44 server_privileges.php:634 -#: server_privileges.php:636 +#: server_privileges.php:45 server_privileges.php:635 +#: server_privileges.php:637 msgid "Limits the number of queries the user may send to the server per hour." msgstr "Фойдаланувчи бир соат давомида юбориши мумкин бўлган сўровлар сони" -#: server_privileges.php:45 server_privileges.php:640 -#: server_privileges.php:642 +#: server_privileges.php:46 server_privileges.php:641 +#: server_privileges.php:643 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -4774,64 +4819,64 @@ msgstr "" "Фойдаланувчи бир соат давомида бажариши мумкин бўлган бирон-бир жадвал ёки " "маълумотлар базасини ўзгартирадиган буйруқлар сони" -#: server_privileges.php:46 server_privileges.php:652 -#: server_privileges.php:654 +#: server_privileges.php:47 server_privileges.php:653 +#: server_privileges.php:655 msgid "Limits the number of simultaneous connections the user may have." msgstr "" "Бир фойдаланувчи томонидан бир вақтнинг ўзида ўрнатиши мумкин бўлган " "уланишлар сони" -#: server_privileges.php:47 server_privileges.php:188 -#: server_privileges.php:544 +#: server_privileges.php:48 server_privileges.php:189 +#: server_privileges.php:545 msgid "Allows viewing processes of all users" msgstr "Барча фойдаланувчиларнинг жараёнларини кўришга рухсат беради" -#: server_privileges.php:48 server_privileges.php:190 -#: server_privileges.php:448 server_privileges.php:550 +#: server_privileges.php:49 server_privileges.php:191 +#: server_privileges.php:449 server_privileges.php:551 msgid "Has no effect in this MySQL version." msgstr "MySQL-сервернинг ушбу версияда бундай хусусият мавжуд эмас!" -#: server_privileges.php:49 server_privileges.php:186 -#: server_privileges.php:545 +#: server_privileges.php:50 server_privileges.php:187 +#: server_privileges.php:546 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" "Сервер созланишларини қайта юклашга ва унинг кешларини тозалашга рухсат " "беради" -#: server_privileges.php:50 server_privileges.php:198 -#: server_privileges.php:552 +#: server_privileges.php:51 server_privileges.php:199 +#: server_privileges.php:553 msgid "Allows the user to ask where the slaves / masters are." msgstr "" "Бош ва тобе серверларнинг жойлашиши ҳақидаги маълумотни талаб қилишга рухсат " "беради" -#: server_privileges.php:51 server_privileges.php:197 -#: server_privileges.php:553 +#: server_privileges.php:52 server_privileges.php:198 +#: server_privileges.php:554 msgid "Needed for the replication slaves." msgstr "Репликация (захира нусха кўчириш) вақтида тобе серверлар учун керак" -#: server_privileges.php:52 server_privileges.php:180 -#: server_privileges.php:439 server_privileges.php:503 +#: server_privileges.php:53 server_privileges.php:181 +#: server_privileges.php:440 server_privileges.php:504 msgid "Allows reading data." msgstr "Маълумотларни чақиришга рухсат беради" -#: server_privileges.php:53 server_privileges.php:193 -#: server_privileges.php:547 +#: server_privileges.php:54 server_privileges.php:194 +#: server_privileges.php:548 msgid "Gives access to the complete list of databases." msgstr "Маълумотлар базаларининг тўлиқ рўйхатига рухсат беради" -#: server_privileges.php:54 server_privileges.php:204 -#: server_privileges.php:206 server_privileges.php:519 +#: server_privileges.php:55 server_privileges.php:205 +#: server_privileges.php:207 server_privileges.php:520 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Намойиш тузадиган сўров(SHOW CREATE VIEW)ни бажаришга рухсат беради" -#: server_privileges.php:55 server_privileges.php:187 -#: server_privileges.php:546 +#: server_privileges.php:56 server_privileges.php:188 +#: server_privileges.php:547 msgid "Allows shutting down the server." msgstr "Сервер ишини якунлашга рухсат беради" -#: server_privileges.php:56 server_privileges.php:194 -#: server_privileges.php:543 +#: server_privileges.php:57 server_privileges.php:195 +#: server_privileges.php:544 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -4841,162 +4886,162 @@ msgstr "" "(Кўпгина административ вазифаларни бажариш учун керак, масалан, глобал " "ўзгарувчилар ўрнатиш ёки бошқа фойдаланувчи жараёнини ўчириш)" -#: server_privileges.php:57 server_privileges.php:201 -#: server_privileges.php:535 +#: server_privileges.php:58 server_privileges.php:202 +#: server_privileges.php:536 msgid "Allows creating and dropping triggers" msgstr "" "Триггерлар (маълум шартлар бажарилганда автоматик ишга тушадиган жараёнлар) " "тузиш ва уларни ўчиришга рухсат беради" -#: server_privileges.php:58 server_privileges.php:182 -#: server_privileges.php:445 server_privileges.php:505 +#: server_privileges.php:59 server_privileges.php:183 +#: server_privileges.php:446 server_privileges.php:506 msgid "Allows changing data." msgstr "Маълумотларни ўзгартиришга рухсат беради" -#: server_privileges.php:59 server_privileges.php:260 +#: server_privileges.php:60 server_privileges.php:261 msgid "No privileges." msgstr "Привилегиялар йўқ" -#: server_privileges.php:302 server_privileges.php:303 +#: server_privileges.php:303 server_privileges.php:304 #, fuzzy #| msgid "None" msgctxt "None privileges" msgid "None" msgstr "Йўқ" -#: server_privileges.php:431 server_privileges.php:566 -#: server_privileges.php:1718 server_privileges.php:1724 +#: server_privileges.php:432 server_privileges.php:567 +#: server_privileges.php:1738 server_privileges.php:1744 msgid "Table-specific privileges" msgstr "Жадвал даражасижаги привилегиялар" -#: server_privileges.php:432 server_privileges.php:574 -#: server_privileges.php:1540 +#: server_privileges.php:433 server_privileges.php:575 +#: server_privileges.php:1560 msgid " Note: MySQL privilege names are expressed in English " msgstr "ИЗОҲ: MySQL привилегиялари турлари инглиз тилида кўрсатилади." -#: server_privileges.php:563 server_privileges.php:1539 +#: server_privileges.php:564 server_privileges.php:1559 msgid "Global privileges" msgstr "Глобал привилегиялар" -#: server_privileges.php:565 server_privileges.php:1718 +#: server_privileges.php:566 server_privileges.php:1738 msgid "Database-specific privileges" msgstr "Маълумотлар базаси привилегиялари" -#: server_privileges.php:610 +#: server_privileges.php:611 msgid "Administration" msgstr "Администрация" -#: server_privileges.php:630 +#: server_privileges.php:631 msgid "Resource limits" msgstr "Ресурслардан фойдаланишни чеклаш" -#: server_privileges.php:631 +#: server_privileges.php:632 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "" "ИЗОҲ: параметр қийматларини 0 (нол) деб белгилаш мавжуд чеклашларни бекор " "қилади." -#: server_privileges.php:708 +#: server_privileges.php:709 msgid "Login Information" msgstr "Фойдаланувчи ҳисоби ҳақида маълумот" -#: server_privileges.php:802 +#: server_privileges.php:803 msgid "Do not change the password" msgstr "Паролни ўзгартирмаслик" -#: server_privileges.php:843 server_privileges.php:2205 +#: server_privileges.php:844 server_privileges.php:2226 #, fuzzy #| msgid "No user(s) found." msgid "No user found." msgstr "Биронта ҳам фойдаланувчи топилмади." -#: server_privileges.php:887 +#: server_privileges.php:888 #, php-format msgid "The user %s already exists!" msgstr " \"%s\" номли фойдаланувчи мавжуд!" -#: server_privileges.php:970 +#: server_privileges.php:971 msgid "You have added a new user." msgstr "Сиз янги фойдаланувчи қўшдингиз." -#: server_privileges.php:1191 +#: server_privileges.php:1196 #, php-format msgid "You have updated the privileges for %s." msgstr " \"%s\" учун привилегиялар ўзгартирилди." -#: server_privileges.php:1215 +#: server_privileges.php:1220 #, php-format msgid "You have revoked the privileges for %s" msgstr " \"%s\" фойдаланувчининг привилегиялари бекор қилинди." -#: server_privileges.php:1251 +#: server_privileges.php:1256 #, php-format msgid "The password for %s was changed successfully." msgstr "\"%s\" фойдаланувчининг пароли муваффақиятли ўзгартирилди." -#: server_privileges.php:1271 +#: server_privileges.php:1276 #, php-format msgid "Deleting %s" msgstr "\"%s\" ўчирилмоқда" -#: server_privileges.php:1282 +#: server_privileges.php:1287 msgid "No users selected for deleting!" msgstr "Ўчириш лозим бўлган фойдаланувчилар танланмаган!" -#: server_privileges.php:1285 +#: server_privileges.php:1290 msgid "Reloading the privileges" msgstr "Привилегиялар қайта юкланмоқда" -#: server_privileges.php:1300 +#: server_privileges.php:1305 msgid "The selected users have been deleted successfully." msgstr "Белгиланган фойдаланувчилар муваффақиятли ўчирилди." -#: server_privileges.php:1335 +#: server_privileges.php:1344 msgid "The privileges were reloaded successfully." msgstr "Привилегиялар муваффақиятли қайта юкланди." -#: server_privileges.php:1363 server_privileges.php:1649 +#: server_privileges.php:1380 server_privileges.php:1669 msgid "Edit Privileges" msgstr "Привилегияларни таҳрирлаш" -#: server_privileges.php:1372 +#: server_privileges.php:1389 msgid "Revoke" msgstr "Бекор қилиш" -#: server_privileges.php:1404 +#: server_privileges.php:1424 msgid "User overview" msgstr "Фойдаланувчилар ҳисобини кўриб чиқиш" -#: server_privileges.php:1541 server_privileges.php:1723 -#: server_privileges.php:2072 +#: server_privileges.php:1561 server_privileges.php:1743 +#: server_privileges.php:2093 msgid "Grant" msgstr "GRANT" -#: server_privileges.php:1560 server_privileges.php:2162 +#: server_privileges.php:1580 server_privileges.php:2183 msgid "Any" msgstr "Ҳар қайси" -#: server_privileges.php:1609 server_privileges.php:1633 -#: server_privileges.php:2027 server_privileges.php:2216 +#: server_privileges.php:1629 server_privileges.php:1653 +#: server_privileges.php:2048 server_privileges.php:2237 msgid "Add a new User" msgstr "Янги фойдаланувчи қўшиш" -#: server_privileges.php:1614 +#: server_privileges.php:1634 msgid "Remove selected users" msgstr "Белгиланган фойдаланувчиларни ўчириш" -#: server_privileges.php:1617 +#: server_privileges.php:1637 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 +#: server_privileges.php:1638 server_privileges.php:1639 +#: server_privileges.php:1640 msgid "Drop the databases that have the same names as the users." msgstr "Фойдаланувчилар номлари билан аталган маълумотлар базаларини ўчириш." -#: server_privileges.php:1636 +#: server_privileges.php:1656 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -5009,98 +5054,98 @@ msgstr "" "маълумотлар сервер томонидан ишлатилаётган привилегиялардан фарқ қилиши " "мумкин. Бу ҳолда %sпривилегияларни қайта юклаш%s керак." -#: server_privileges.php:1684 +#: server_privileges.php:1704 msgid "The selected user was not found in the privilege table." msgstr "Белгиланган фойдаланувчи привилегиялар жадвалида топилмади." -#: server_privileges.php:1724 +#: server_privileges.php:1744 msgid "Column-specific privileges" msgstr "Майдон привилегиялари" -#: server_privileges.php:1925 +#: server_privileges.php:1945 msgid "Add privileges on the following database" msgstr "Қуйидаги маълумотлар омборига привилегия қўшиш" -#: server_privileges.php:1943 +#: server_privileges.php:1963 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" "Маълумотлар базалари номларида пастки чизиқ (_) ва фоиз (%) белгилари " "ишлатилганда улар олдига тескари эгри чизиқ (\\) қўйиш керак." -#: server_privileges.php:1946 +#: server_privileges.php:1966 msgid "Add privileges on the following table" msgstr "Қуйидаги жадвалга привилегия қўшиш" -#: server_privileges.php:2003 +#: server_privileges.php:2023 msgid "Change Login Information / Copy User" msgstr "Фойдаланувчининг логинини ўзгартириш / Фойдаланувчидан нусха олиш" -#: server_privileges.php:2006 +#: server_privileges.php:2026 msgid "Create a new user with the same privileges and ..." msgstr "Худди шундай привилегияли янги фойдаланувчи киритиш..." -#: server_privileges.php:2008 +#: server_privileges.php:2028 msgid "... keep the old one." msgstr " ва эскисини сақлаш." -#: server_privileges.php:2009 +#: server_privileges.php:2029 msgid " ... delete the old one from the user tables." msgstr " ва фойдаланувчилар жадвалидан эскисини ўчириш." -#: server_privileges.php:2010 +#: server_privileges.php:2030 msgid "" " ... revoke all active privileges from the old one and delete it afterwards." msgstr ", эскисининг барча фаол привилегияларини бекор қилиб ўчириш." -#: server_privileges.php:2011 +#: server_privileges.php:2031 msgid "" " ... delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" ", фойдаланувчилар жадвалидан эскисини ўчириб привилегияларни қайта юклаш." -#: server_privileges.php:2033 +#: server_privileges.php:2054 msgid "Database for user" msgstr "Фойдаланувчи учун маълумотлар базаси" -#: server_privileges.php:2037 +#: server_privileges.php:2058 #, fuzzy #| msgid "None" msgctxt "Create none database for user" msgid "None" msgstr "Йўқ" -#: server_privileges.php:2038 +#: server_privileges.php:2059 msgid "Create database with same name and grant all privileges" msgstr "" "Фойдаланувчи номи билан аталган маълумотлар базаси тузиш ва унга тўлиқ " "привилегияларни бериш." -#: server_privileges.php:2039 +#: server_privileges.php:2060 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "" "(фойдаланувчи\\_%) шаблонига тўғри келадиган барча маълумотлар базаларига " "тўлиқ привилегияларни бериш." -#: server_privileges.php:2042 +#: server_privileges.php:2063 #, php-format msgid "Grant all privileges on database "%s"" msgstr "\"%s\"" маълумотлар базасига барча привилегияларни бериш;" -#: server_privileges.php:2065 +#: server_privileges.php:2086 #, php-format msgid "Users having access to "%s"" msgstr "\"%s\"га рухсати бўлган фойдаланувчилар" -#: server_privileges.php:2173 +#: server_privileges.php:2194 msgid "global" msgstr "Глобал" -#: server_privileges.php:2175 +#: server_privileges.php:2196 msgid "database-specific" msgstr "Маълумотлар базаси даражасида" -#: server_privileges.php:2177 +#: server_privileges.php:2198 msgid "wildcard" msgstr "Гуруҳлаш белгиси" @@ -8163,6 +8208,10 @@ msgstr "Янги қатор сифатида қўшиш ва хатоликла msgid "Show insert query" msgstr "Киритилган сўровни кўрсатиш" +#: tbl_change.php:1143 +msgid "and then" +msgstr "ва сўнг" + #: tbl_change.php:1147 msgid "Go back to previous page" msgstr "Олдинги саҳифага ўтиш" @@ -8242,7 +8291,7 @@ msgstr "(\"PRIMARY\" номи фақат бирламчи индексг msgid "Add to index  %s column(s)" msgstr " \"%s\" майдон(лар)ини индексга қўшиш" -#: tbl_indexes.php:256 tbl_structure.php:589 tbl_structure.php:600 +#: tbl_indexes.php:256 tbl_structure.php:587 tbl_structure.php:598 msgid "Column count has to be larger than zero." msgstr "Устунлар сони нолдан кўп бўлиши шарт." @@ -8356,39 +8405,39 @@ msgstr "Маълумотлар яхлитлигини текшириш:" msgid "Show tables" msgstr "Жадвалларни кўрсатиш" -#: tbl_printview.php:310 tbl_structure.php:656 +#: tbl_printview.php:310 tbl_structure.php:654 msgid "Space usage" msgstr "Фойдаланилаётган жой" -#: tbl_printview.php:314 tbl_structure.php:660 +#: tbl_printview.php:314 tbl_structure.php:658 msgid "Usage" msgstr "Ишлатилиш" -#: tbl_printview.php:341 tbl_structure.php:687 +#: tbl_printview.php:341 tbl_structure.php:685 msgid "Effective" msgstr "Эффективлик" -#: tbl_printview.php:366 tbl_structure.php:725 +#: tbl_printview.php:366 tbl_structure.php:723 msgid "Row Statistics" msgstr "Қаторлар статистикаси" -#: tbl_printview.php:369 tbl_structure.php:728 +#: tbl_printview.php:369 tbl_structure.php:726 msgid "Statements" msgstr "Тавсиф" -#: tbl_printview.php:380 tbl_structure.php:740 +#: tbl_printview.php:380 tbl_structure.php:738 msgid "static" msgstr "статик" -#: tbl_printview.php:382 tbl_structure.php:742 +#: tbl_printview.php:382 tbl_structure.php:740 msgid "dynamic" msgstr "динамик" -#: tbl_printview.php:404 tbl_structure.php:785 +#: tbl_printview.php:404 tbl_structure.php:783 msgid "Row length" msgstr "Қатор узунлиги" -#: tbl_printview.php:414 tbl_structure.php:793 +#: tbl_printview.php:414 tbl_structure.php:791 msgid " Row size " msgstr "Қатор ҳажми" @@ -8466,50 +8515,50 @@ msgstr "Йўқ" msgid "Column %s has been dropped" msgstr "\"%s\" жадвали ўчирилди" -#: tbl_structure.php:385 +#: tbl_structure.php:384 #, php-format msgid "A primary key has been added on %s" msgstr " \"%s\" га бирламчи калит қўшилди" -#: tbl_structure.php:400 tbl_structure.php:414 tbl_structure.php:428 +#: tbl_structure.php:398 tbl_structure.php:412 tbl_structure.php:426 #, php-format msgid "An index has been added on %s" msgstr " \"%s\" учун индекс қўшилди" -#: tbl_structure.php:506 tbl_structure.php:508 +#: tbl_structure.php:504 tbl_structure.php:506 msgid "Relation view" msgstr "Алоқаларни кўриш" -#: tbl_structure.php:515 tbl_structure.php:517 +#: tbl_structure.php:513 tbl_structure.php:515 msgid "Propose table structure" msgstr "Жадвал тузилиши таҳлили" -#: tbl_structure.php:540 +#: tbl_structure.php:538 #, fuzzy #| msgid "Add column(s)" msgid "Add column" msgstr "Устун(лар) қўшиш" -#: tbl_structure.php:554 +#: tbl_structure.php:552 msgid "At End of Table" msgstr "Жадвал охирига" -#: tbl_structure.php:555 +#: tbl_structure.php:553 msgid "At Beginning of Table" msgstr "Жадвал бошига" -#: tbl_structure.php:556 +#: tbl_structure.php:554 #, php-format msgid "After %s" msgstr " \"%s\" дан кейин" -#: tbl_structure.php:594 +#: tbl_structure.php:592 #, fuzzy, php-format #| msgid "Create an index on %s columns" msgid "Create an index on  %s columns" msgstr "\"%s\" майдон учун индекс тузиш" -#: tbl_structure.php:756 +#: tbl_structure.php:754 msgid "partitioned" msgstr "бўлакларга бўлинган" @@ -9007,9 +9056,6 @@ msgstr "Кўриниш номини ўзгартириш" #~ msgid "Process list" #~ msgstr "Жараёнлар рўйхати" -#~ msgid "Reload privileges" -#~ msgstr "Привилегияларни қайта юклаш" - #~ msgid "" #~ "The users will still have the USAGE privilege until the privileges are " #~ "reloaded." diff --git a/po/uz@latin.po b/po/uz@latin.po index 4999736eb..3f07178aa 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-13 09:03-0400\n" +"POT-Creation-Date: 2010-06-22 00:55+0530\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:1514 +#: libraries/display_tbl.lib.php:417 server_privileges.php:1534 msgid "Show all" msgstr "Barchasini ko‘rsatish" -#: browse_foreigners.php:82 libraries/common.lib.php:2313 +#: browse_foreigners.php:82 libraries/common.lib.php:2317 #: 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,18 +37,18 @@ 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:2831 -#: libraries/common.lib.php:2838 libraries/db_links.inc.php:75 +#: db_structure.php:106 libraries/common.lib.php:2835 +#: libraries/common.lib.php:2842 libraries/db_links.inc.php:75 #: libraries/tbl_links.inc.php:63 msgid "Search" msgstr "Qidirish" -#: browse_foreigners.php:153 db_operations.php:385 db_operations.php:429 -#: db_operations.php:499 db_operations.php:609 db_search.php:362 -#: db_structure.php:567 js/messages.php:48 libraries/Config.class.php:1046 +#: browse_foreigners.php:153 db_operations.php:394 db_operations.php:438 +#: db_operations.php:508 db_operations.php:618 db_search.php:362 +#: db_structure.php:565 js/messages.php:53 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:1335 libraries/common.lib.php:2288 +#: libraries/common.lib.php:1335 libraries/common.lib.php:2292 #: 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,15 +59,15 @@ 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:664 server_privileges.php:1624 -#: server_privileges.php:1971 server_privileges.php:2018 -#: server_privileges.php:2057 server_replication.php:235 +#: server_privileges.php:665 server_privileges.php:1644 +#: server_privileges.php:1991 server_privileges.php:2038 +#: server_privileges.php:2078 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 #: tbl_operations.php:302 tbl_operations.php:499 tbl_operations.php:561 -#: tbl_operations.php:681 tbl_select.php:327 tbl_structure.php:562 -#: tbl_structure.php:597 tbl_tracking.php:395 tbl_tracking.php:512 +#: tbl_operations.php:681 tbl_select.php:327 tbl_structure.php:560 +#: tbl_structure.php:595 tbl_tracking.php:395 tbl_tracking.php:512 #: view_create.php:182 view_operations.php:101 msgid "Go" msgstr "OK" @@ -93,7 +93,7 @@ msgstr "Ushbu qiymatni ishlatish" msgid "Database %1$s has been created." msgstr " %1$s ma`lumotlar bazasi tuzildi." -#: db_datadict.php:49 db_operations.php:378 +#: db_datadict.php:49 db_operations.php:387 msgid "Database comment: " msgstr "Ma`lumotlar bazasiga izoh:" @@ -120,10 +120,10 @@ 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:2070 +#: pdf_schema.php:1263 pdf_schema.php:1284 server_privileges.php:2091 #: 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 +#: tbl_structure.php:657 tbl_tracking.php:274 tbl_tracking.php:321 msgid "Type" msgstr "Tur" @@ -136,7 +136,7 @@ msgstr "Tur" msgid "Null" msgstr "Null" -#: db_datadict.php:178 db_structure.php:501 libraries/export/htmlword.php:247 +#: db_datadict.php:178 db_structure.php:499 libraries/export/htmlword.php:247 #: libraries/export/latex.php:360 libraries/export/odt.php:303 #: libraries/export/texytext.php:236 libraries/tbl_properties.inc.php:106 #: pdf_schema.php:1266 pdf_schema.php:1287 tbl_printview.php:146 @@ -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: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 +#: pdf_schema.php:1344 server_privileges.php:1588 server_privileges.php:1599 +#: server_privileges.php:1909 server_privileges.php:1914 +#: server_privileges.php:2208 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:1565 -#: server_privileges.php:1579 server_privileges.php:1889 -#: server_privileges.php:1892 server_privileges.php:2187 sql.php:193 +#: server_databases.php:64 server_privileges.php:1585 +#: server_privileges.php:1599 server_privileges.php:1909 +#: server_privileges.php:1912 server_privileges.php:2208 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" @@ -209,125 +209,121 @@ msgstr "Barchasini belgilash" msgid "Unselect All" msgstr "Belgilashni bekor qilish" -#: db_operations.php:38 tbl_create.php:54 +#: db_operations.php:43 tbl_create.php:54 msgid "The database name is empty!" msgstr "Ma`lumotlar bazasi nomi bo‘sh!" -#: db_operations.php:236 +#: db_operations.php:241 #, php-format msgid "Database %s has been renamed to %s" msgstr " `\"%s\"` ma`lumotlar bazasining nomi `\"%s\"` deb o‘zgartirildi." -#: db_operations.php:240 +#: db_operations.php:245 #, php-format msgid "Database %s has been copied to %s" msgstr "\"%s\" ma`lumotlar bazasidan \"%s\" ga nusxa ko‘chirildi." -#: db_operations.php:412 +#: db_operations.php:421 msgid "Rename database to" msgstr "Ma`lumotlar bazasi nomini quyidagiga o‘zgartirish" -#: db_operations.php:417 server_processlist.php:57 +#: db_operations.php:426 server_processlist.php:57 msgid "Command" msgstr "Buyruq" -#: db_operations.php:429 tbl_change.php:1143 -msgid "and then" -msgstr "va so‘ng" - -#: db_operations.php:455 +#: db_operations.php:464 msgid "Copy database to" msgstr "Ma`lumotlar bazasidan quyidagiga nusxa olish" -#: db_operations.php:462 tbl_operations.php:528 tbl_tracking.php:388 +#: db_operations.php:471 tbl_operations.php:528 tbl_tracking.php:388 msgid "Structure only" msgstr "Faqat tuzilishi" -#: db_operations.php:463 tbl_operations.php:529 tbl_tracking.php:390 +#: db_operations.php:472 tbl_operations.php:529 tbl_tracking.php:390 msgid "Structure and data" msgstr "Tuzilishi va ma`lumotlari" -#: db_operations.php:464 tbl_operations.php:530 tbl_tracking.php:389 +#: db_operations.php:473 tbl_operations.php:530 tbl_tracking.php:389 msgid "Data only" msgstr "Faqat ma`lumotlar" -#: db_operations.php:472 +#: db_operations.php:481 msgid "CREATE DATABASE before copying" msgstr "Nusxa ko‘chirishdan oldin ma`lumotlar bazasi tuzing (CREATE DATABASE)" -#: db_operations.php:475 libraries/export/sql.php:52 +#: db_operations.php:484 libraries/export/sql.php:52 #: libraries/export/sql.php:74 libraries/export/sql.php:76 #: libraries/export/sql.php:82 tbl_operations.php:536 #, php-format msgid "Add %s" msgstr "\"%s\" qo‘shish" -#: db_operations.php:479 libraries/export/sql.php:78 tbl_operations.php:299 +#: db_operations.php:488 libraries/export/sql.php:78 tbl_operations.php:299 #: tbl_operations.php:538 msgid "Add AUTO_INCREMENT value" msgstr "AUTO_INCREMENT qo‘shish" -#: db_operations.php:483 tbl_operations.php:545 +#: db_operations.php:492 tbl_operations.php:545 msgid "Add constraints" msgstr "Cheklovlar qo‘shish" -#: db_operations.php:496 +#: db_operations.php:505 msgid "Switch to copied database" msgstr "Nusxa olingan ma`lumotlar bazasiga o‘tish" -#: db_operations.php:537 +#: db_operations.php:546 msgid "BLOB Repository" msgstr "BLOB ombori" -#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1352 -#: libraries/server_links.inc.php:49 server_processlist.php:59 +#: db_operations.php:549 db_tracking.php:76 libraries/common.lib.php:1352 +#: libraries/server_links.inc.php:50 server_processlist.php:59 #: tbl_tracking.php:596 test/theme.php:101 msgid "Status" msgstr "Holat" -#: db_operations.php:548 +#: db_operations.php:557 #, fuzzy #| msgid "Enabled" msgctxt "BLOB repository" msgid "Enabled" msgstr "Faollashtirilgan" -#: db_operations.php:552 +#: db_operations.php:561 msgid "Disable" msgstr "Faolsizlantirish" -#: db_operations.php:562 +#: db_operations.php:571 msgid "Damaged" msgstr "Shikastlangan" -#: db_operations.php:566 +#: db_operations.php:575 #, fuzzy #| msgid "Repair" msgctxt "BLOB repository" msgid "Repair" msgstr "Tiklash" -#: db_operations.php:574 +#: db_operations.php:583 #, fuzzy #| msgid "Disabled" msgctxt "BLOB repository" msgid "Disabled" msgstr "Faolsizlantirilgan" -#: db_operations.php:578 +#: db_operations.php:587 msgid "Enable" msgstr "Faollantirish" -#: db_operations.php:602 libraries/Index.class.php:448 +#: db_operations.php:611 libraries/Index.class.php:448 #: libraries/db_structure.lib.php:62 libraries/mysql_charsets.lib.php:107 #: libraries/tbl_properties.inc.php:107 libraries/tbl_properties.inc.php:730 #: server_collations.php:54 server_collations.php:66 server_databases.php:111 #: tbl_operations.php:363 tbl_select.php:137 tbl_structure.php:179 -#: tbl_structure.php:767 tbl_tracking.php:275 tbl_tracking.php:326 +#: tbl_structure.php:765 tbl_tracking.php:275 tbl_tracking.php:326 msgid "Collation" msgstr "Taqqoslash" -#: db_operations.php:615 main.php:316 pdf_schema.php:34 +#: db_operations.php:624 main.php:316 pdf_schema.php:34 #, php-format msgid "" "The additional features for working with linked tables have been " @@ -336,14 +332,14 @@ msgstr "" "Aloqador jadvallar bilan ishlash uchun qo‘shimcha imkoniyatlar mavjud emas. " "Sabablarini aniqlash uchun %sbu yerga%s bosing." -#: db_operations.php:648 +#: db_operations.php:657 msgid "Edit PDF Pages" 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:1665 -#: server_privileges.php:1721 server_privileges.php:1985 +#: libraries/header.inc.php:130 pdf_pages.php:424 server_privileges.php:1685 +#: server_privileges.php:1741 server_privileges.php:2005 #: server_synchronize.php:423 server_synchronize.php:866 tbl_tracking.php:592 #: test/theme.php:75 msgid "Table" @@ -352,7 +348,7 @@ msgstr "Jadval " #: db_printview.php:105 libraries/db_structure.lib.php:56 #: libraries/header_printview.inc.php:63 libraries/import.lib.php:146 #: navigation.php:638 navigation.php:660 server_databases.php:122 -#: tbl_printview.php:394 tbl_structure.php:365 tbl_structure.php:777 +#: tbl_printview.php:394 tbl_structure.php:365 tbl_structure.php:775 msgid "Rows" msgstr "Qatorlarsoni" @@ -360,30 +356,30 @@ msgstr "Qatorlarsoni" msgid "Size" msgstr "Hajmi" -#: db_printview.php:162 db_structure.php:457 libraries/export/sql.php:559 +#: db_printview.php:162 db_structure.php:455 libraries/export/sql.php:559 #: libraries/export/sql.php:899 msgid "in use" msgstr "ishlatilmoqda" #: db_printview.php:187 libraries/db_info.inc.php:88 #: libraries/export/sql.php:514 pdf_schema.php:1241 tbl_printview.php:434 -#: tbl_structure.php:809 +#: tbl_structure.php:807 msgid "Creation" msgstr "Tuzish" #: db_printview.php:196 libraries/db_info.inc.php:93 #: libraries/export/sql.php:519 pdf_schema.php:1246 tbl_printview.php:444 -#: tbl_structure.php:817 +#: tbl_structure.php:815 msgid "Last update" msgstr "Oxirgi yangilanish" #: db_printview.php:205 libraries/db_info.inc.php:98 #: libraries/export/sql.php:524 pdf_schema.php:1251 tbl_printview.php:454 -#: tbl_structure.php:825 +#: tbl_structure.php:823 msgid "Last check" msgstr "Oxirgi tekshiruv" -#: db_printview.php:222 db_structure.php:480 +#: db_printview.php:222 db_structure.php:478 #, fuzzy, php-format #| msgid "%s table(s)" msgid "%s table" @@ -444,7 +440,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:297 tbl_change.php:1031 tbl_indexes.php:250 +#: server_privileges.php:298 tbl_change.php:1031 tbl_indexes.php:250 #: tbl_select.php:288 msgid "Or" msgstr "Yoki" @@ -517,9 +513,9 @@ 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:2833 +#: db_structure.php:105 libraries/common.lib.php:2837 #: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50 -#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:467 +#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:465 msgid "Browse" msgstr "Ko‘rib chiqish" @@ -565,36 +561,36 @@ 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:2832 libraries/sql_query_form.lib.php:334 +#: libraries/common.lib.php:2836 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:2829 libraries/common.lib.php:2836 +#: libraries/common.lib.php:2833 libraries/common.lib.php:2840 #: 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:1106 #: libraries/tbl_links.inc.php:56 pmd_general.php:134 -#: server_privileges.php:593 server_replication.php:315 tbl_tracking.php:269 +#: server_privileges.php:594 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:1656 +#: db_structure.php:543 db_structure.php:544 db_tracking.php:91 +#: libraries/Index.class.php:483 libraries/common.lib.php:1657 #: 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 -#: tbl_structure.php:152 tbl_structure.php:471 +#: tbl_structure.php:152 tbl_structure.php:469 msgid "Drop" 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:1655 +#: db_structure.php:541 db_structure.php:542 libraries/common.lib.php:1656 #: libraries/mult_submits.inc.php:39 libraries/tbl_links.inc.php:105 msgid "Empty" msgstr "Tozalash" @@ -604,25 +600,25 @@ msgstr "Tozalash" msgid "Table %s has been emptied" msgstr "\"%s\" jadvali tozalandi" -#: db_structure.php:326 libraries/tbl_links.inc.php:133 +#: db_structure.php:325 libraries/tbl_links.inc.php:133 #, php-format msgid "View %s has been dropped" msgstr " \"%s\" namoyishi o‘chirildi" -#: db_structure.php:326 libraries/tbl_links.inc.php:133 +#: db_structure.php:325 libraries/tbl_links.inc.php:133 #, php-format msgid "Table %s has been dropped" msgstr "\"%s\" jadvali o‘chirildi" -#: db_structure.php:333 +#: db_structure.php:332 msgid "Tracking is active." msgstr "Kuzatish faol." -#: db_structure.php:335 +#: db_structure.php:334 msgid "Tracking is not active." msgstr "Kuzatish faol emas." -#: db_structure.php:420 libraries/display_tbl.lib.php:1944 +#: db_structure.php:418 libraries/display_tbl.lib.php:1944 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation%" @@ -631,86 +627,86 @@ msgstr "" "Ushbu namoyish kamida ko‘rsatilgan miqdorda qatorlarga ega. Batafsil " "ma`lumot uchun %sdokumentatsiyaga%s qarang." -#: db_structure.php:434 db_structure.php:448 libraries/header.inc.php:126 +#: db_structure.php:432 db_structure.php:446 libraries/header.inc.php:130 #: libraries/tbl_info.inc.php:66 tbl_structure.php:185 test/theme.php:74 msgid "View" msgstr "Namoyish" -#: db_structure.php:485 libraries/db_structure.lib.php:49 -#: libraries/server_links.inc.php:70 server_replication.php:33 +#: db_structure.php:483 libraries/db_structure.lib.php:49 +#: libraries/server_links.inc.php:71 server_replication.php:33 #: server_replication.php:164 server_status.php:369 msgid "Replication" msgstr "Replikatsiya (zaxira nusxa ko‘chirish)" -#: db_structure.php:489 +#: db_structure.php:487 msgid "Sum" msgstr "Jami" -#: db_structure.php:496 libraries/StorageEngine.class.php:356 +#: db_structure.php:494 libraries/StorageEngine.class.php:356 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "\"%s\" - MySQL serveridagi andozaviy ma`lumotlar jadvali turi." -#: db_structure.php:524 db_structure.php:541 db_structure.php:542 +#: db_structure.php:522 db_structure.php:539 db_structure.php:540 #: 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:1596 tbl_structure.php:455 -#: tbl_structure.php:464 +#: server_databases.php:351 server_privileges.php:1616 tbl_structure.php:453 +#: tbl_structure.php:462 msgid "With selected:" msgstr "Belgilanganlarni: " -#: db_structure.php:527 libraries/display_tbl.lib.php:2076 -#: server_databases.php:348 server_privileges.php:569 -#: server_privileges.php:1599 tbl_structure.php:458 +#: db_structure.php:525 libraries/display_tbl.lib.php:2076 +#: server_databases.php:348 server_privileges.php:570 +#: server_privileges.php:1619 tbl_structure.php:456 msgid "Check All" msgstr "Barchasini belgilash" -#: db_structure.php:531 libraries/display_tbl.lib.php:2077 +#: db_structure.php:529 libraries/display_tbl.lib.php:2077 #: libraries/replication_gui.lib.php:33 server_databases.php:350 -#: server_privileges.php:572 server_privileges.php:1603 tbl_structure.php:462 +#: server_privileges.php:573 server_privileges.php:1623 tbl_structure.php:460 msgid "Uncheck All" msgstr "Belgilashni bekor qilish" -#: db_structure.php:536 +#: db_structure.php:534 msgid "Check tables having overhead" msgstr "Optimallashtirish lozim bo‘lgn jadvallarni belgilash" -#: db_structure.php:547 db_structure.php:548 db_structure.php:599 +#: db_structure.php:545 db_structure.php:546 db_structure.php:597 #: libraries/display_tbl.lib.php:2180 libraries/mult_submits.inc.php:28 -#: tbl_structure.php:492 tbl_structure.php:494 +#: tbl_structure.php:490 tbl_structure.php:492 msgid "Print view" msgstr "Chop etish versiyasi" -#: db_structure.php:549 db_structure.php:550 libraries/mult_submits.inc.php:42 +#: db_structure.php:547 db_structure.php:548 libraries/mult_submits.inc.php:42 #: tbl_operations.php:581 msgid "Check table" msgstr "Jadvalni tekshirish" -#: db_structure.php:551 db_structure.php:552 libraries/mult_submits.inc.php:47 -#: tbl_operations.php:621 tbl_structure.php:709 tbl_structure.php:711 +#: db_structure.php:549 db_structure.php:550 libraries/mult_submits.inc.php:47 +#: tbl_operations.php:621 tbl_structure.php:707 tbl_structure.php:709 msgid "Optimize table" msgstr "Jadvalni optimallashtirish" -#: db_structure.php:553 db_structure.php:554 libraries/mult_submits.inc.php:52 +#: db_structure.php:551 db_structure.php:552 libraries/mult_submits.inc.php:52 #: tbl_operations.php:611 msgid "Repair table" msgstr "Jadvalni tiklash" -#: db_structure.php:555 db_structure.php:556 libraries/mult_submits.inc.php:57 +#: db_structure.php:553 db_structure.php:554 libraries/mult_submits.inc.php:57 #: tbl_operations.php:601 msgid "Analyze table" msgstr "Jadval tahlili" -#: db_structure.php:557 db_structure.php:558 libraries/db_links.inc.php:71 +#: db_structure.php:555 db_structure.php:556 libraries/db_links.inc.php:71 #: 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:1380 +#: libraries/server_links.inc.php:85 libraries/tbl_links.inc.php:82 +#: pmd_pdf.php:84 pmd_pdf.php:109 server_privileges.php:1397 #: setup/frames/menu.inc.php:22 tbl_row_action.php:59 msgid "Export" msgstr "Eksport" -#: db_structure.php:606 libraries/display_pdf_schema.lib.php:44 +#: db_structure.php:604 libraries/display_pdf_schema.lib.php:44 msgid "Data Dictionary" msgstr "Ma`lumotlar lug‘ati" @@ -721,10 +717,10 @@ msgstr "Kuzatilgan jadvallar" #: db_tracking.php:71 libraries/export/htmlword.php:86 #: libraries/export/latex.php:148 libraries/export/odt.php:113 #: libraries/export/sql.php:342 libraries/export/texytext.php:84 -#: libraries/export/xml.php:255 libraries/header.inc.php:106 +#: libraries/export/xml.php:255 libraries/header.inc.php:110 #: libraries/header_printview.inc.php:58 server_databases.php:169 -#: server_privileges.php:1660 server_privileges.php:1721 -#: server_privileges.php:1979 server_processlist.php:56 +#: server_privileges.php:1680 server_privileges.php:1741 +#: server_privileges.php:1999 server_processlist.php:56 #: server_synchronize.php:1179 server_synchronize.php:1183 #: tbl_tracking.php:591 test/theme.php:65 msgid "Database" @@ -744,8 +740,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:1542 server_privileges.php:1725 -#: server_privileges.php:2073 tbl_structure.php:187 +#: server_privileges.php:1562 server_privileges.php:1745 +#: server_privileges.php:2094 tbl_structure.php:187 msgid "Action" msgstr "Amal" @@ -779,8 +775,8 @@ msgstr "Tuzilma rasmi" msgid "Untracked tables" msgstr "Kuzatilmagan jadvallar" -#: db_tracking.php:172 db_tracking.php:174 tbl_structure.php:528 -#: tbl_structure.php:530 +#: db_tracking.php:172 db_tracking.php:174 tbl_structure.php:526 +#: tbl_structure.php:528 msgid "Track table" msgstr "Jadvalni kuzatish" @@ -956,188 +952,237 @@ msgstr "Xost nomi bo‘sh!" msgid "The user name is empty!" msgstr "Foydalanuvchi nomi belgilanmagan!" -#: js/messages.php:44 server_privileges.php:1236 user_password.php:70 +#: js/messages.php:44 server_privileges.php:1241 user_password.php:70 msgid "The password is empty!" msgstr "Parol belgilanmagan!" -#: js/messages.php:45 server_privileges.php:1234 user_password.php:73 +#: js/messages.php:45 server_privileges.php:1239 user_password.php:73 msgid "The passwords aren't the same!" msgstr "Kiritilgan parollar bir xil emas!" -#: js/messages.php:49 pmd_general.php:342 pmd_general.php:379 +#: js/messages.php:46 +#, fuzzy +#| msgid "Add a new User" +msgid "Add a New User" +msgstr "Yangi foydalanuvchi qo‘shish" + +#: js/messages.php:47 js/messages.php:54 pmd_general.php:342 +#: pmd_general.php:379 msgid "Cancel" msgstr "Bekor qilish" -#: js/messages.php:52 pmd_save_pos.php:54 +#: js/messages.php:48 +#, fuzzy +#| msgid "Create version" +msgid "Create User" +msgstr "Vеrsiyasini tuzish" + +#: js/messages.php:49 +#, fuzzy +#| msgid "Reload privileges" +msgid "Reloading Privileges" +msgstr "Privilegiyalarni qayta yuklash" + +#: js/messages.php:50 +#, fuzzy +#| msgid "Remove selected users" +msgid "Removing Selected Users" +msgstr "Belgilangan foydalanuvchilarni o‘chirish" + +#: js/messages.php:57 +#, fuzzy +#| msgid "Load" +msgid "Loading" +msgstr "Yuklash" + +#: js/messages.php:58 +#, fuzzy +#| msgid "Processes" +msgid "Processing Request" +msgstr "Jarayonlar" + +#: js/messages.php:59 +msgid "Error in Processing Request" +msgstr "" + +#: js/messages.php:60 +msgid "Dropping Column" +msgstr "" + +#: js/messages.php:61 +msgid "Adding Primary Key" +msgstr "" + +#: js/messages.php:64 pmd_save_pos.php:54 msgid "Modifications have been saved" msgstr "O‘zgaririshlar saqlandi" -#: js/messages.php:53 pmd_relation_upd.php:49 +#: js/messages.php:65 pmd_relation_upd.php:49 msgid "Relation deleted" msgstr "Aloqa o‘chirildi" -#: js/messages.php:54 pmd_relation_new.php:64 +#: js/messages.php:66 pmd_relation_new.php:64 msgid "FOREIGN KEY relation added" msgstr "Tashqi kalitga (FOREIGN KEY) aloqa o‘rnatildi" -#: js/messages.php:55 pmd_relation_new.php:86 +#: js/messages.php:67 pmd_relation_new.php:86 msgid "Internal relation added" msgstr "Ichki aloqa o‘rnatildi" -#: js/messages.php:56 pmd_relation_new.php:63 pmd_relation_new.php:88 +#: js/messages.php:68 pmd_relation_new.php:63 pmd_relation_new.php:88 msgid "Error: Relation not added." msgstr "Xatolik: Bog‘liqlik o‘rnatilmadi." -#: js/messages.php:57 pmd_relation_new.php:31 +#: js/messages.php:69 pmd_relation_new.php:31 msgid "Error: relation already exists." msgstr "Xatolik: Bog‘liqlik allaqachon mavjud." -#: js/messages.php:58 +#: js/messages.php:70 msgid "Error saving coordinates for Designer." msgstr "Koordinatalarni saqlashda xatolik." -#: js/messages.php:59 libraries/relation.lib.php:107 +#: js/messages.php:71 libraries/relation.lib.php:107 #: libraries/relation.lib.php:119 msgid "General relation features" msgstr "Aloqalarning asosiy imkoniyatlari" -#: js/messages.php:59 libraries/relation.lib.php:101 +#: js/messages.php:71 libraries/relation.lib.php:101 #: libraries/relation.lib.php:108 msgid "Disabled" msgstr "Faolsizlantirilgan" -#: js/messages.php:60 +#: js/messages.php:72 msgid "Select referenced key" msgstr "Bog‘liq kalitni tanlang" -#: js/messages.php:61 +#: js/messages.php:73 msgid "Select Foreign Key" msgstr "Tashqi kalitni tanlang" -#: js/messages.php:62 +#: js/messages.php:74 msgid "Please select the primary key or a unique key" msgstr "" "Birlamchi (PRIMARY) yoki unikal (UNIQUE) indeks bo‘lgan maydonni tanlang!" -#: js/messages.php:63 pmd_general.php:77 tbl_relation.php:548 +#: js/messages.php:75 pmd_general.php:77 tbl_relation.php:548 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" msgstr "Ko‘rsatiladigan maydonni tanlash" #. l10n: Display text for calendar close link -#: js/messages.php:73 +#: js/messages.php:85 #, fuzzy #| msgid "Donate" msgid "Done" msgstr "Sadaqa" #. l10n: Display text for previous month link in calendar -#: js/messages.php:75 +#: js/messages.php:87 #, fuzzy #| msgid "Previous" msgid "Prev" msgstr "Orqaga" #. l10n: Display text for next month link in calendar -#: js/messages.php:77 libraries/common.lib.php:2353 -#: libraries/common.lib.php:2356 libraries/display_tbl.lib.php:338 +#: js/messages.php:89 libraries/common.lib.php:2357 +#: libraries/common.lib.php:2360 libraries/display_tbl.lib.php:338 #: server_binlog.php:205 server_binlog.php:207 tbl_printview.php:424 -#: tbl_structure.php:801 +#: tbl_structure.php:799 msgid "Next" msgstr "Keyingi" #. l10n: Display text for current month link in calendar -#: js/messages.php:79 +#: js/messages.php:91 #, fuzzy #| msgid "Total" msgid "Today" msgstr "Jami" -#: js/messages.php:82 +#: js/messages.php:94 #, fuzzy #| msgid "Binary" msgid "January" msgstr "Ikkilik" -#: js/messages.php:83 +#: js/messages.php:95 msgid "February" msgstr "" -#: js/messages.php:84 +#: js/messages.php:96 #, fuzzy #| msgid "Mar" msgid "March" msgstr "Mar" -#: js/messages.php:85 +#: js/messages.php:97 #, fuzzy #| msgid "Apr" msgid "April" msgstr "Apr" -#: js/messages.php:86 +#: js/messages.php:98 msgid "May" msgstr "May" -#: js/messages.php:87 +#: js/messages.php:99 #, fuzzy #| msgid "Jun" msgid "June" msgstr "Iyun" -#: js/messages.php:88 +#: js/messages.php:100 #, fuzzy #| msgid "Jul" msgid "July" msgstr "Iyul" -#: js/messages.php:89 +#: js/messages.php:101 #, fuzzy #| msgid "Aug" msgid "August" msgstr "Avg" -#: js/messages.php:90 +#: js/messages.php:102 msgid "September" msgstr "" -#: js/messages.php:91 +#: js/messages.php:103 #, fuzzy #| msgid "Oct" msgid "October" msgstr "Okt" -#: js/messages.php:92 +#: js/messages.php:104 msgid "November" msgstr "" -#: js/messages.php:93 +#: js/messages.php:105 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:97 libraries/common.lib.php:1557 +#: js/messages.php:109 libraries/common.lib.php:1557 msgid "Jan" msgstr "Yanv" #. l10n: Short month name -#: js/messages.php:99 libraries/common.lib.php:1559 +#: js/messages.php:111 libraries/common.lib.php:1559 msgid "Feb" msgstr "Fev" #. l10n: Short month name -#: js/messages.php:101 libraries/common.lib.php:1561 +#: js/messages.php:113 libraries/common.lib.php:1561 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:103 libraries/common.lib.php:1563 +#: js/messages.php:115 libraries/common.lib.php:1563 msgid "Apr" msgstr "Apr" #. l10n: Short month name -#: js/messages.php:105 libraries/common.lib.php:1565 +#: js/messages.php:117 libraries/common.lib.php:1565 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1145,178 +1190,178 @@ msgid "May" msgstr "May" #. l10n: Short month name -#: js/messages.php:107 libraries/common.lib.php:1567 +#: js/messages.php:119 libraries/common.lib.php:1567 msgid "Jun" msgstr "Iyun" #. l10n: Short month name -#: js/messages.php:109 libraries/common.lib.php:1569 +#: js/messages.php:121 libraries/common.lib.php:1569 msgid "Jul" msgstr "Iyul" #. l10n: Short month name -#: js/messages.php:111 libraries/common.lib.php:1571 +#: js/messages.php:123 libraries/common.lib.php:1571 msgid "Aug" msgstr "Avg" #. l10n: Short month name -#: js/messages.php:113 libraries/common.lib.php:1573 +#: js/messages.php:125 libraries/common.lib.php:1573 msgid "Sep" msgstr "Sen" #. l10n: Short month name -#: js/messages.php:115 libraries/common.lib.php:1575 +#: js/messages.php:127 libraries/common.lib.php:1575 msgid "Oct" msgstr "Okt" #. l10n: Short month name -#: js/messages.php:117 libraries/common.lib.php:1577 +#: js/messages.php:129 libraries/common.lib.php:1577 msgid "Nov" msgstr "Noya" #. l10n: Short month name -#: js/messages.php:119 libraries/common.lib.php:1579 +#: js/messages.php:131 libraries/common.lib.php:1579 msgid "Dec" msgstr "Dek" -#: js/messages.php:122 +#: js/messages.php:134 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "Yaksh" -#: js/messages.php:123 +#: js/messages.php:135 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "Dush" -#: js/messages.php:124 +#: js/messages.php:136 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "Sesh" -#: js/messages.php:125 +#: js/messages.php:137 msgid "Wednesday" msgstr "" -#: js/messages.php:126 +#: js/messages.php:138 msgid "Thursday" msgstr "" -#: js/messages.php:127 +#: js/messages.php:139 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "Jum" -#: js/messages.php:128 +#: js/messages.php:140 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:132 libraries/common.lib.php:1582 +#: js/messages.php:144 libraries/common.lib.php:1582 msgid "Sun" msgstr "Yaksh" #. l10n: Short week day name -#: js/messages.php:134 libraries/common.lib.php:1584 +#: js/messages.php:146 libraries/common.lib.php:1584 msgid "Mon" msgstr "Dush" #. l10n: Short week day name -#: js/messages.php:136 libraries/common.lib.php:1586 +#: js/messages.php:148 libraries/common.lib.php:1586 msgid "Tue" msgstr "Sesh" #. l10n: Short week day name -#: js/messages.php:138 libraries/common.lib.php:1588 +#: js/messages.php:150 libraries/common.lib.php:1588 msgid "Wed" msgstr "Chor" #. l10n: Short week day name -#: js/messages.php:140 libraries/common.lib.php:1590 +#: js/messages.php:152 libraries/common.lib.php:1590 msgid "Thu" msgstr "Pay" #. l10n: Short week day name -#: js/messages.php:142 libraries/common.lib.php:1592 +#: js/messages.php:154 libraries/common.lib.php:1592 msgid "Fri" msgstr "Jum" #. l10n: Short week day name -#: js/messages.php:144 libraries/common.lib.php:1594 +#: js/messages.php:156 libraries/common.lib.php:1594 msgid "Sat" msgstr "Shan" #. l10n: Minimal week day name -#: js/messages.php:148 +#: js/messages.php:160 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "Yaksh" #. l10n: Minimal week day name -#: js/messages.php:150 +#: js/messages.php:162 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "Dush" #. l10n: Minimal week day name -#: js/messages.php:152 +#: js/messages.php:164 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "Sesh" #. l10n: Minimal week day name -#: js/messages.php:154 +#: js/messages.php:166 #, fuzzy #| msgid "Wed" msgid "We" msgstr "Chor" #. l10n: Minimal week day name -#: js/messages.php:156 +#: js/messages.php:168 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "Pay" #. l10n: Minimal week day name -#: js/messages.php:158 +#: js/messages.php:170 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "Jum" #. l10n: Minimal week day name -#: js/messages.php:160 +#: js/messages.php:172 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "Shan" #. l10n: Column header for week of the year in calendar -#: js/messages.php:162 +#: js/messages.php:174 #, fuzzy #| msgid "Wiki" msgid "Wk" msgstr "Viki" -#: js/messages.php:164 +#: js/messages.php:176 msgid "Hour" msgstr "" -#: js/messages.php:165 +#: js/messages.php:177 #, fuzzy #| msgid "in use" msgid "Minute" msgstr "ishlatilmoqda" -#: js/messages.php:166 +#: js/messages.php:178 #, fuzzy #| msgid "per second" msgid "Second" @@ -1379,7 +1424,7 @@ msgstr "Indekslar" #: libraries/Index.class.php:444 libraries/mult_submits.inc.php:103 #: libraries/tbl_properties.inc.php:519 tbl_structure.php:33 -#: tbl_structure.php:155 tbl_structure.php:159 tbl_structure.php:474 +#: tbl_structure.php:155 tbl_structure.php:159 tbl_structure.php:472 #: tbl_tracking.php:322 msgid "Unique" msgstr "Unikal" @@ -1420,8 +1465,8 @@ msgid "" "removed." 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:1660 +#: libraries/List_Database.class.php:431 libraries/server_links.inc.php:42 +#: server_databases.php:88 server_privileges.php:1680 #: setup/lib/messages.inc.php:110 test/theme.php:93 msgid "Databases" msgstr "Ma`lumotlar bazalari" @@ -1591,7 +1636,7 @@ msgstr "Parol:" msgid "Server Choice" msgstr "Serverni tanlang" -#: libraries/auth/cookie.auth.lib.php:320 libraries/header.inc.php:59 +#: libraries/auth/cookie.auth.lib.php:320 libraries/header.inc.php:63 msgid "Cookies must be enabled past this point." msgstr "Brauzerda \"cookies\" faollashtirilgan bo‘lishi shart." @@ -1677,7 +1722,7 @@ msgstr "" "yoki \"recode_string\" funksiyasini ishlatib bo‘lmadi. Ehtimol, PHP ni " "sozlashda xatolik mavjud." -#: libraries/common.inc.php:583 +#: libraries/common.inc.php:587 msgid "" "phpMyAdmin was unable to read your configuration file!
This might " "happen if PHP finds a parse error in it or PHP cannot find the file.
Agar bo‘m-bo‘sh sahifa " "ko‘rsatilsa, demak, hammasi joyida." -#: libraries/common.inc.php:594 +#: libraries/common.inc.php:598 #, fuzzy, php-format #| msgid "Could not load default configuration from: \"%1$s\"" msgid "Could not load default configuration from: %1$s" msgstr " \"%1$s\" faylidan andoza konfiguratsiyani yuklab bo‘lmadi." -#: libraries/common.inc.php:599 +#: libraries/common.inc.php:603 msgid "" "The $cfg['PmaAbsoluteUri'] directive MUST be set in your " "configuration file!" @@ -1707,32 +1752,32 @@ msgstr "" "$cfg[\"PmaAbsoluteUrl\"] direktivasi konfiguratsion faylda " "sozlanishi SHART!" -#: libraries/common.inc.php:629 +#: libraries/common.inc.php:633 #, fuzzy, php-format #| msgid "Invalid server index: \"%s\"" msgid "Invalid server index: %s" msgstr "Server raqami noto‘g‘ri: \"%s\"" -#: libraries/common.inc.php:636 +#: libraries/common.inc.php:640 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" " %1$s serveri uchun noto‘g‘ri xost nomi ko‘rsatilgan. phpMyAdmin " "konfiguratsion faylida belgilangan sozlashlarni to‘g‘irlang." -#: libraries/common.inc.php:645 libraries/header.inc.php:96 +#: libraries/common.inc.php:649 libraries/header.inc.php:100 #: libraries/select_server.lib.php:41 libraries/select_server.lib.php:47 #: main.php:185 test/theme.php:57 msgid "Server" msgstr "Server" -#: libraries/common.inc.php:823 +#: libraries/common.inc.php:827 msgid "Invalid authentication method set in configuration:" msgstr "" "phpMyAdmin konfiguratsion faylida noto‘g‘ri autentifikatsiya usuli " "belgilangan:" -#: libraries/common.inc.php:926 +#: libraries/common.inc.php:930 #, php-format msgid "You should upgrade to %s %s or later." msgstr " \"%s\" ni \"%s\" versiyaga yoki kattaroq versiyaga yangilash zarur." @@ -1867,47 +1912,47 @@ msgstr "," msgid "%B %d, %Y at %I:%M %p" msgstr "%d %B %Y y., %H:%M" -#: libraries/common.lib.php:1907 +#: libraries/common.lib.php:1911 #, 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:2322 libraries/common.lib.php:2325 +#: libraries/common.lib.php:2326 libraries/common.lib.php:2329 #: libraries/display_tbl.lib.php:290 server_status.php:719 msgid "Begin" msgstr "Boshi" -#: libraries/common.lib.php:2323 libraries/common.lib.php:2326 +#: libraries/common.lib.php:2327 libraries/common.lib.php:2330 #: libraries/display_tbl.lib.php:291 server_binlog.php:168 #: server_binlog.php:170 msgid "Previous" msgstr "Orqaga" -#: libraries/common.lib.php:2354 libraries/common.lib.php:2357 +#: libraries/common.lib.php:2358 libraries/common.lib.php:2361 #: libraries/display_tbl.lib.php:353 msgid "End" msgstr "Oxiri" -#: libraries/common.lib.php:2430 +#: libraries/common.lib.php:2434 #, php-format msgid "Jump to database "%s"." msgstr " \"%s\" ma`lumotlar bazasiga o‘tish" -#: libraries/common.lib.php:2450 +#: libraries/common.lib.php:2454 #, 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:2830 libraries/common.lib.php:2837 +#: libraries/common.lib.php:2834 libraries/common.lib.php:2841 #: libraries/db_links.inc.php:68 libraries/export/sql.php:25 -#: libraries/import/sql.php:18 libraries/server_links.inc.php:45 +#: libraries/import/sql.php:18 libraries/server_links.inc.php:46 #: libraries/tbl_links.inc.php:60 querywindow.php:99 test/theme.php:97 msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2839 libraries/db_links.inc.php:104 +#: libraries/common.lib.php:2843 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,15 +2001,15 @@ msgstr "So‘rov" msgid "Designer" msgstr "Dizayner" -#: libraries/db_links.inc.php:98 libraries/server_links.inc.php:88 +#: libraries/db_links.inc.php:98 libraries/server_links.inc.php:89 #: libraries/tbl_links.inc.php:91 pmd_pdf.php:84 pmd_pdf.php:110 #: setup/frames/menu.inc.php:21 msgid "Import" msgstr "Import" -#: libraries/db_links.inc.php:111 libraries/server_links.inc.php:66 -#: server_privileges.php:111 server_privileges.php:1722 -#: server_privileges.php:2071 test/theme.php:117 +#: libraries/db_links.inc.php:111 libraries/server_links.inc.php:67 +#: server_privileges.php:112 server_privileges.php:1742 +#: server_privileges.php:2092 test/theme.php:117 msgid "Privileges" msgstr "Privilegiyalar" @@ -1985,7 +2030,7 @@ msgstr "" "\"FAQ 3.11\"[/a]ga qarang" #: libraries/db_structure.lib.php:69 server_databases.php:142 -#: tbl_printview.php:336 tbl_structure.php:682 +#: tbl_printview.php:336 tbl_structure.php:680 msgid "Overhead" msgstr "Fragmentlangan" @@ -2004,7 +2049,7 @@ msgstr "Server javob bermayapti" msgid "(or the local MySQL server's socket is not correctly configured)" msgstr "(yoki lokal MySQL serverning soketi noto‘g‘ri sozlangan)" -#: libraries/dbi/mysql.dbi.lib.php:362 tbl_structure.php:608 +#: libraries/dbi/mysql.dbi.lib.php:362 tbl_structure.php:606 msgid "Details..." msgstr "Tafsilotlar..." @@ -2014,22 +2059,22 @@ msgid "Change password" msgstr "Parolni o‘zgartirish" #: libraries/display_change_password.lib.php:35 -#: libraries/replication_gui.lib.php:345 server_privileges.php:807 +#: libraries/replication_gui.lib.php:345 server_privileges.php:808 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:796 -#: server_privileges.php:800 server_privileges.php:811 -#: server_privileges.php:1538 server_synchronize.php:1175 +#: libraries/replication_gui.lib.php:349 server_privileges.php:797 +#: server_privileges.php:801 server_privileges.php:812 +#: server_privileges.php:1558 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:815 server_privileges.php:818 +#: server_privileges.php:816 server_privileges.php:819 msgid "Re-type" msgstr "Tasdiqlash" @@ -2044,12 +2089,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:822 +#: libraries/replication_gui.lib.php:360 server_privileges.php:823 msgid "Generate Password" msgstr "Parol o‘rnatish" #: libraries/display_change_password.lib.php:75 -#: libraries/replication_gui.lib.php:363 server_privileges.php:825 +#: libraries/replication_gui.lib.php:363 server_privileges.php:826 msgid "Generate" msgstr "Generatsiya qilish" @@ -2062,8 +2107,8 @@ msgstr "Yangi ma`lumotlar bazasi tuzish" msgid "Create" msgstr "Tuzish" -#: libraries/display_create_database.lib.php:40 server_privileges.php:113 -#: server_privileges.php:1427 server_replication.php:35 +#: libraries/display_create_database.lib.php:40 server_privileges.php:114 +#: server_privileges.php:1447 server_replication.php:35 msgid "No Privileges" msgstr "Privilegiyalar yo‘q" @@ -2156,7 +2201,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:1875 server_processlist.php:75 +#: server_privileges.php:1895 server_processlist.php:75 msgid "None" msgstr "Yo‘q" @@ -2356,7 +2401,7 @@ msgstr "Indeks bo‘yicha sortirovka qilish" #: libraries/import/docsql.php:34 libraries/import/ldi.php:47 #: libraries/import/ods.php:30 libraries/import/sql.php:20 #: libraries/import/xls.php:26 libraries/import/xlsx.php:26 -#: libraries/import/xml.php:25 tbl_select.php:267 tbl_structure.php:753 +#: libraries/import/xml.php:25 tbl_select.php:267 tbl_structure.php:751 msgid "Options" msgstr "Parametrlar" @@ -2433,7 +2478,7 @@ msgstr "So‘rov %01.4f sekund vaqt oldi" #: libraries/display_tbl.lib.php:2089 libraries/mult_submits.inc.php:113 #: querywindow.php:125 querywindow.php:129 querywindow.php:132 -#: tbl_structure.php:25 tbl_structure.php:150 tbl_structure.php:470 +#: tbl_structure.php:25 tbl_structure.php:150 tbl_structure.php:468 msgid "Change" msgstr "O‘zgartirish" @@ -2504,7 +2549,7 @@ msgstr "Ishlatilish" #: libraries/engines/innodb.lib.php:194 server_databases.php:137 #: server_databases.php:305 server_status.php:525 server_status.php:586 -#: server_status.php:607 tbl_printview.php:351 tbl_structure.php:696 +#: server_status.php:607 tbl_printview.php:351 tbl_structure.php:694 msgid "Total" msgstr "Jami" @@ -2794,7 +2839,7 @@ msgstr "" "tartibda raqamlanadi." #: libraries/export/codegen.php:37 setup/lib/messages.inc.php:88 -#: tbl_printview.php:376 tbl_structure.php:737 +#: tbl_printview.php:376 tbl_structure.php:735 msgid "Format" msgstr "Format" @@ -2868,8 +2913,8 @@ 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:576 server_replication.php:316 tbl_printview.php:317 -#: tbl_structure.php:665 +#: server_privileges.php:577 server_replication.php:316 tbl_printview.php:317 +#: tbl_structure.php:663 msgid "Data" msgstr "Ma`lumotlar" @@ -2918,9 +2963,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:731 -#: server_privileges.php:734 server_privileges.php:790 -#: server_privileges.php:1537 server_privileges.php:2069 +#: libraries/replication_gui.lib.php:329 server_privileges.php:732 +#: server_privileges.php:735 server_privileges.php:791 +#: server_privileges.php:1557 server_privileges.php:2090 #: server_processlist.php:55 server_synchronize.php:1159 msgid "Host" msgstr "Xost" @@ -3116,7 +3161,7 @@ msgstr "Tarkibini eksport qilish" msgid "Open new phpMyAdmin window" msgstr "phpMyAdmin dasturini yangi oynada ochish" -#: libraries/header.inc.php:115 +#: libraries/header.inc.php:119 msgid "New table" msgstr "Yangi jadval" @@ -3284,20 +3329,20 @@ 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 +#: tbl_structure.php:471 msgid "Primary" msgstr "Birlamchi" #: libraries/mult_submits.inc.php:98 libraries/tbl_properties.inc.php:116 #: libraries/tbl_properties.inc.php:525 tbl_printview.php:326 #: tbl_structure.php:31 tbl_structure.php:154 tbl_structure.php:158 -#: tbl_structure.php:475 tbl_structure.php:673 +#: tbl_structure.php:473 tbl_structure.php:671 msgid "Index" msgstr "Indeks" #: libraries/mult_submits.inc.php:108 libraries/tbl_properties.inc.php:531 #: tbl_structure.php:35 tbl_structure.php:156 tbl_structure.php:160 -#: tbl_structure.php:478 +#: tbl_structure.php:476 msgid "Fulltext" msgstr "Matn to‘laligicha" @@ -3610,8 +3655,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:711 -#: server_privileges.php:714 server_privileges.php:721 +#: libraries/replication_gui.lib.php:259 server_privileges.php:712 +#: server_privileges.php:715 server_privileges.php:722 #: server_synchronize.php:1171 msgid "User name" msgstr "Foydalanuvchi nomi" @@ -3635,7 +3680,7 @@ msgstr "O‘zgaruvchi" #: 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 +#: tbl_structure.php:727 msgid "Value" msgstr "Qiymati" @@ -3655,34 +3700,34 @@ msgstr "" msgid "Add slave replication user" msgstr "Tobе rеplikatsiya foydalanuvchisini qo‘shish" -#: libraries/replication_gui.lib.php:254 server_privileges.php:716 +#: libraries/replication_gui.lib.php:254 server_privileges.php:717 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:717 -#: server_privileges.php:784 server_privileges.php:808 -#: server_privileges.php:1928 server_privileges.php:1958 +#: libraries/replication_gui.lib.php:346 server_privileges.php:718 +#: server_privileges.php:785 server_privileges.php:809 +#: server_privileges.php:1948 server_privileges.php:1978 msgid "Use text field" msgstr "Matnmaydonini ishlatish" -#: libraries/replication_gui.lib.php:302 server_privileges.php:764 +#: libraries/replication_gui.lib.php:302 server_privileges.php:765 msgid "Any host" msgstr "Har qaysi xost" -#: libraries/replication_gui.lib.php:306 server_privileges.php:768 +#: libraries/replication_gui.lib.php:306 server_privileges.php:769 msgid "Local" msgstr "Lokal" -#: libraries/replication_gui.lib.php:312 server_privileges.php:773 +#: libraries/replication_gui.lib.php:312 server_privileges.php:774 msgid "This Host" msgstr "Ushbu xost" -#: libraries/replication_gui.lib.php:318 server_privileges.php:779 +#: libraries/replication_gui.lib.php:318 server_privileges.php:780 msgid "Use Host Table" msgstr "Xostlar jadvalidan foydalanish" -#: libraries/replication_gui.lib.php:331 server_privileges.php:792 +#: libraries/replication_gui.lib.php:331 server_privileges.php:793 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -3718,29 +3763,29 @@ msgstr "Noma`lum til: %1$s." msgid "Servers" msgstr "Serverlar" -#: libraries/server_links.inc.php:53 server_engines.php:112 +#: libraries/server_links.inc.php:54 server_engines.php:112 #: server_engines.php:116 server_status.php:415 test/theme.php:105 msgid "Variables" msgstr "O‘zgaruvchilar" -#: libraries/server_links.inc.php:57 test/theme.php:109 +#: libraries/server_links.inc.php:58 test/theme.php:109 msgid "Charsets" msgstr "Kodirovkalar" -#: libraries/server_links.inc.php:61 test/theme.php:113 +#: libraries/server_links.inc.php:62 test/theme.php:113 msgid "Engines" msgstr "Jadval turlari" -#: libraries/server_links.inc.php:76 server_binlog.php:110 +#: libraries/server_links.inc.php:77 server_binlog.php:110 #: server_status.php:364 test/theme.php:121 msgid "Binary log" msgstr "Ikkilik jurnal" -#: libraries/server_links.inc.php:80 +#: libraries/server_links.inc.php:81 msgid "Processes" msgstr "Jarayonlar" -#: libraries/server_links.inc.php:92 server_synchronize.php:1092 +#: libraries/server_links.inc.php:93 server_synchronize.php:1092 #: server_synchronize.php:1100 msgid "Synchronize" msgstr "Sinxronizatsiya qilish" @@ -3990,13 +4035,13 @@ msgstr "Bo‘laklarni (PARTITIONS) belgilash" msgid "Save" msgstr "Saqlash" -#: libraries/tbl_properties.inc.php:780 tbl_structure.php:542 +#: libraries/tbl_properties.inc.php:780 tbl_structure.php:540 #, fuzzy, php-format #| msgid "Add column(s)" msgid "Add %s column(s)" msgstr "Ustun(lar) qo‘shish" -#: libraries/tbl_properties.inc.php:784 tbl_structure.php:536 +#: libraries/tbl_properties.inc.php:784 tbl_structure.php:534 #, fuzzy #| msgid "You have to add at least one field." msgid "You have to add at least one column." @@ -4216,8 +4261,8 @@ msgstr "Tozalash" msgid "Protocol version" msgstr "Protokol versiyasi" -#: main.php:189 server_privileges.php:1389 server_privileges.php:1536 -#: server_privileges.php:1650 server_privileges.php:2068 +#: main.php:189 server_privileges.php:1406 server_privileges.php:1556 +#: server_privileges.php:1670 server_privileges.php:2089 #: server_processlist.php:54 msgid "User" msgstr "Foydalanuvchi" @@ -4684,117 +4729,117 @@ msgstr "Jadval turlari" msgid "View dump (schema) of databases" msgstr "Ma`lumotlar bazalari dampini (sxemasini) namoyish etish" -#: server_privileges.php:24 server_privileges.php:266 +#: server_privileges.php:25 server_privileges.php:267 msgid "Includes all privileges except GRANT." msgstr "GRANT dan tashqari barcha privilegiyalarni o‘z ichiga oladi" -#: server_privileges.php:25 server_privileges.php:192 -#: server_privileges.php:515 +#: server_privileges.php:26 server_privileges.php:193 +#: server_privileges.php:516 msgid "Allows altering the structure of existing tables." msgstr "Mavjud jadvallarning tuzilishini o‘zgartirishga ruxsat beradi" -#: server_privileges.php:26 server_privileges.php:208 -#: server_privileges.php:521 +#: server_privileges.php:27 server_privileges.php:209 +#: server_privileges.php:522 msgid "Allows altering and dropping stored routines." msgstr "Saqlanadigan muolajalarni o‘zgartirish va o‘chirishga ruxsat beradi" -#: server_privileges.php:27 server_privileges.php:184 -#: server_privileges.php:514 +#: server_privileges.php:28 server_privileges.php:185 +#: server_privileges.php:515 msgid "Allows creating new databases and tables." msgstr "Yangi ma`lumotlar bazalari va jadvallar tuzishga ruxsat beradi" -#: server_privileges.php:28 server_privileges.php:207 -#: server_privileges.php:520 +#: server_privileges.php:29 server_privileges.php:208 +#: server_privileges.php:521 msgid "Allows creating stored routines." msgstr "Saqlanadigan muolajalar tuzishga ruxsat beradi" -#: server_privileges.php:29 server_privileges.php:514 +#: server_privileges.php:30 server_privileges.php:515 msgid "Allows creating new tables." msgstr "Yangi jadvallar tuzishga ruxsat beradi" -#: server_privileges.php:30 server_privileges.php:195 -#: server_privileges.php:518 +#: server_privileges.php:31 server_privileges.php:196 +#: server_privileges.php:519 msgid "Allows creating temporary tables." msgstr "Vaqtinchalik jadvallar tuzishga ruxsat beradi" -#: server_privileges.php:31 server_privileges.php:209 -#: server_privileges.php:554 +#: server_privileges.php:32 server_privileges.php:210 +#: server_privileges.php:555 msgid "Allows creating, dropping and renaming user accounts." msgstr "" "Foydalanuvchilar hisobini qo‘shish, o‘chirish va o‘zgartirishga ruxsat beradi" -#: server_privileges.php:32 server_privileges.php:199 -#: server_privileges.php:203 server_privileges.php:526 -#: server_privileges.php:530 +#: server_privileges.php:33 server_privileges.php:200 +#: server_privileges.php:204 server_privileges.php:527 +#: server_privileges.php:531 msgid "Allows creating new views." msgstr "Yangi namoyishlar tuzish(CREATE VIEW)ga ruxsat beradi" -#: server_privileges.php:33 server_privileges.php:183 -#: server_privileges.php:506 +#: server_privileges.php:34 server_privileges.php:184 +#: server_privileges.php:507 msgid "Allows deleting data." msgstr "Ma`lumotlarni o‘chirishga ruxsat beradi" -#: server_privileges.php:34 server_privileges.php:185 -#: server_privileges.php:517 +#: server_privileges.php:35 server_privileges.php:186 +#: server_privileges.php:518 msgid "Allows dropping databases and tables." msgstr "Ma`lumotlar bazalarini va jadvallarni o‘chirishga ruxsat beradi" -#: server_privileges.php:35 server_privileges.php:517 +#: server_privileges.php:36 server_privileges.php:518 msgid "Allows dropping tables." msgstr "Jadvallarni o‘chirishga rux`sat beradi" -#: server_privileges.php:36 server_privileges.php:200 -#: server_privileges.php:534 +#: server_privileges.php:37 server_privileges.php:201 +#: server_privileges.php:535 msgid "Allows to set up events for the event scheduler" msgstr "Kechiktirilgan hodisalarni sozlashga ruxsat beradi" -#: server_privileges.php:37 server_privileges.php:210 -#: server_privileges.php:522 +#: server_privileges.php:38 server_privileges.php:211 +#: server_privileges.php:523 msgid "Allows executing stored routines." msgstr "Saqlanadigan muolajalarni bajarishga ruxsat beradi" -#: server_privileges.php:38 server_privileges.php:189 -#: server_privileges.php:509 +#: server_privileges.php:39 server_privileges.php:190 +#: server_privileges.php:510 msgid "Allows importing data from and exporting data into files." msgstr "Ma`lumotlarni fayldan import va faylga eksport qilishga ruxsat beradi" -#: server_privileges.php:39 server_privileges.php:540 +#: server_privileges.php:40 server_privileges.php:541 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "Foydalanuvchilarni qo‘shish va privilegiyalar jadvalini qayta yuklamasdan " "privilegiyalar qo‘shishga ruxsat beradi" -#: server_privileges.php:40 server_privileges.php:191 -#: server_privileges.php:516 +#: server_privileges.php:41 server_privileges.php:192 +#: server_privileges.php:517 msgid "Allows creating and dropping indexes." msgstr "Indekslar qo‘shish va ularni o‘chirishga ruxsat beradi" -#: server_privileges.php:41 server_privileges.php:181 -#: server_privileges.php:442 server_privileges.php:504 +#: server_privileges.php:42 server_privileges.php:182 +#: server_privileges.php:443 server_privileges.php:505 msgid "Allows inserting and replacing data." msgstr "Ma`lumot qo‘yish va o‘zgartirishga ruxsat beradi" -#: server_privileges.php:42 server_privileges.php:196 -#: server_privileges.php:549 +#: server_privileges.php:43 server_privileges.php:197 +#: server_privileges.php:550 msgid "Allows locking tables for the current thread." msgstr "Joriy oqim uchun jadvalni blokirovku qilishga ruxsat beradi" -#: server_privileges.php:43 server_privileges.php:646 -#: server_privileges.php:648 +#: server_privileges.php:44 server_privileges.php:647 +#: server_privileges.php:649 msgid "Limits the number of new connections the user may open per hour." msgstr "" "Foydalanuvchi bir soat davomida o‘rnatishi mumkin bo‘lgan yangi ulanishlar " "soni" -#: server_privileges.php:44 server_privileges.php:634 -#: server_privileges.php:636 +#: server_privileges.php:45 server_privileges.php:635 +#: server_privileges.php:637 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" "Foydalanuvchi bir soat davomida yuborishi mumkin bo‘lgan so‘rovlar soni" -#: server_privileges.php:45 server_privileges.php:640 -#: server_privileges.php:642 +#: server_privileges.php:46 server_privileges.php:641 +#: server_privileges.php:643 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -4802,65 +4847,65 @@ 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 +#: server_privileges.php:47 server_privileges.php:653 +#: server_privileges.php:655 msgid "Limits the number of simultaneous connections the user may have." msgstr "" "Bir foydalanuvchi tomonidan bir vaqtning o‘zida o‘rnatishi mumkin bo‘lgan " "ulanishlar soni" -#: server_privileges.php:47 server_privileges.php:188 -#: server_privileges.php:544 +#: server_privileges.php:48 server_privileges.php:189 +#: server_privileges.php:545 msgid "Allows viewing processes of all users" msgstr "Barcha foydalanuvchilarning jarayonlarini ko‘rishga ruxsat beradi" -#: server_privileges.php:48 server_privileges.php:190 -#: server_privileges.php:448 server_privileges.php:550 +#: server_privileges.php:49 server_privileges.php:191 +#: server_privileges.php:449 server_privileges.php:551 msgid "Has no effect in this MySQL version." msgstr "MySQL-serverning ushbu versiyada bunday xususiyat mavjud emas!" -#: server_privileges.php:49 server_privileges.php:186 -#: server_privileges.php:545 +#: server_privileges.php:50 server_privileges.php:187 +#: server_privileges.php:546 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" "Server sozlanishlarini qayta yuklashga va uning keshlarini tozalashga ruxsat " "beradi" -#: server_privileges.php:50 server_privileges.php:198 -#: server_privileges.php:552 +#: server_privileges.php:51 server_privileges.php:199 +#: server_privileges.php:553 msgid "Allows the user to ask where the slaves / masters are." msgstr "" "Bosh va tobe serverlarning joylashishi haqidagi ma`lumotni talab qilishga " "ruxsat beradi" -#: server_privileges.php:51 server_privileges.php:197 -#: server_privileges.php:553 +#: server_privileges.php:52 server_privileges.php:198 +#: server_privileges.php:554 msgid "Needed for the replication slaves." msgstr "" "Replikatsiya (zaxira nusxa ko‘chirish) vaqtida tobe serverlar uchun kerak" -#: server_privileges.php:52 server_privileges.php:180 -#: server_privileges.php:439 server_privileges.php:503 +#: server_privileges.php:53 server_privileges.php:181 +#: server_privileges.php:440 server_privileges.php:504 msgid "Allows reading data." msgstr "Ma`lumotlarni chaqirishga ruxsat beradi" -#: server_privileges.php:53 server_privileges.php:193 -#: server_privileges.php:547 +#: server_privileges.php:54 server_privileges.php:194 +#: server_privileges.php:548 msgid "Gives access to the complete list of databases." msgstr "Ma`lumotlar bazalarining to‘liq ro‘yxatiga ruxsat beradi" -#: server_privileges.php:54 server_privileges.php:204 -#: server_privileges.php:206 server_privileges.php:519 +#: server_privileges.php:55 server_privileges.php:205 +#: server_privileges.php:207 server_privileges.php:520 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Namoyish tuzadigan so‘rov(SHOW CREATE VIEW)ni bajarishga ruxsat beradi" -#: server_privileges.php:55 server_privileges.php:187 -#: server_privileges.php:546 +#: server_privileges.php:56 server_privileges.php:188 +#: server_privileges.php:547 msgid "Allows shutting down the server." msgstr "Server ishini yakunlashga ruxsat beradi" -#: server_privileges.php:56 server_privileges.php:194 -#: server_privileges.php:543 +#: server_privileges.php:57 server_privileges.php:195 +#: server_privileges.php:544 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -4871,163 +4916,163 @@ msgstr "" "global o‘zgaruvchilar o‘rnatish yoki boshqa foydalanuvchi jarayonini " "o‘chirish)" -#: server_privileges.php:57 server_privileges.php:201 -#: server_privileges.php:535 +#: server_privileges.php:58 server_privileges.php:202 +#: server_privileges.php:536 msgid "Allows creating and dropping triggers" msgstr "" "Triggerlar (ma`lum shartlar bajarilganda avtomatik ishga tushadigan " "jarayonlar) tuzish va ularni o‘chirishga ruxsat beradi" -#: server_privileges.php:58 server_privileges.php:182 -#: server_privileges.php:445 server_privileges.php:505 +#: server_privileges.php:59 server_privileges.php:183 +#: server_privileges.php:446 server_privileges.php:506 msgid "Allows changing data." msgstr "Ma`lumotlarni o‘zgartirishga ruxsat beradi" -#: server_privileges.php:59 server_privileges.php:260 +#: server_privileges.php:60 server_privileges.php:261 msgid "No privileges." msgstr "Privilegiyalar yo‘q" -#: server_privileges.php:302 server_privileges.php:303 +#: server_privileges.php:303 server_privileges.php:304 #, fuzzy #| msgid "None" msgctxt "None privileges" msgid "None" msgstr "Yo‘q" -#: server_privileges.php:431 server_privileges.php:566 -#: server_privileges.php:1718 server_privileges.php:1724 +#: server_privileges.php:432 server_privileges.php:567 +#: server_privileges.php:1738 server_privileges.php:1744 msgid "Table-specific privileges" msgstr "Jadval darajasijagi privilegiyalar" -#: server_privileges.php:432 server_privileges.php:574 -#: server_privileges.php:1540 +#: server_privileges.php:433 server_privileges.php:575 +#: server_privileges.php:1560 msgid " Note: MySQL privilege names are expressed in English " msgstr "IZOH: MySQL privilegiyalari turlari ingliz tilida ko‘rsatiladi." -#: server_privileges.php:563 server_privileges.php:1539 +#: server_privileges.php:564 server_privileges.php:1559 msgid "Global privileges" msgstr "Global privilegiyalar" -#: server_privileges.php:565 server_privileges.php:1718 +#: server_privileges.php:566 server_privileges.php:1738 msgid "Database-specific privileges" msgstr "Ma`lumotlar bazasi privilegiyalari" -#: server_privileges.php:610 +#: server_privileges.php:611 msgid "Administration" msgstr "Administratsiya" -#: server_privileges.php:630 +#: server_privileges.php:631 msgid "Resource limits" msgstr "Resurslardan foydalanishni cheklash" -#: server_privileges.php:631 +#: server_privileges.php:632 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "" "IZOH: parametr qiymatlarini 0 (nol) deb belgilash mavjud cheklashlarni bekor " "qiladi." -#: server_privileges.php:708 +#: server_privileges.php:709 msgid "Login Information" msgstr "Foydalanuvchi hisobi haqida ma`lumot" -#: server_privileges.php:802 +#: server_privileges.php:803 msgid "Do not change the password" msgstr "Parolni o‘zgartirmaslik" -#: server_privileges.php:843 server_privileges.php:2205 +#: server_privileges.php:844 server_privileges.php:2226 #, fuzzy #| msgid "No user(s) found." msgid "No user found." msgstr "Bironta ham foydalanuvchi topilmadi." -#: server_privileges.php:887 +#: server_privileges.php:888 #, php-format msgid "The user %s already exists!" msgstr " \"%s\" nomli foydalanuvchi mavjud!" -#: server_privileges.php:970 +#: server_privileges.php:971 msgid "You have added a new user." msgstr "Siz yangi foydalanuvchi qo‘shdingiz." -#: server_privileges.php:1191 +#: server_privileges.php:1196 #, php-format msgid "You have updated the privileges for %s." msgstr " \"%s\" uchun privilegiyalar o‘zgartirildi." -#: server_privileges.php:1215 +#: server_privileges.php:1220 #, php-format msgid "You have revoked the privileges for %s" msgstr " \"%s\" foydalanuvchining privilegiyalari bekor qilindi." -#: server_privileges.php:1251 +#: server_privileges.php:1256 #, php-format msgid "The password for %s was changed successfully." msgstr "\"%s\" foydalanuvchining paroli muvaffaqiyatli o‘zgartirildi." -#: server_privileges.php:1271 +#: server_privileges.php:1276 #, php-format msgid "Deleting %s" msgstr "\"%s\" o‘chirilmoqda" -#: server_privileges.php:1282 +#: server_privileges.php:1287 msgid "No users selected for deleting!" msgstr "O‘chirish lozim bo‘lgan foydalanuvchilar tanlanmagan!" -#: server_privileges.php:1285 +#: server_privileges.php:1290 msgid "Reloading the privileges" msgstr "Privilegiyalar qayta yuklanmoqda" -#: server_privileges.php:1300 +#: server_privileges.php:1305 msgid "The selected users have been deleted successfully." msgstr "Belgilangan foydalanuvchilar muvaffaqiyatli o‘chirildi." -#: server_privileges.php:1335 +#: server_privileges.php:1344 msgid "The privileges were reloaded successfully." msgstr "Privilegiyalar muvaffaqiyatli qayta yuklandi." -#: server_privileges.php:1363 server_privileges.php:1649 +#: server_privileges.php:1380 server_privileges.php:1669 msgid "Edit Privileges" msgstr "Privilegiyalarni tahrirlash" -#: server_privileges.php:1372 +#: server_privileges.php:1389 msgid "Revoke" msgstr "Bekor qilish" -#: server_privileges.php:1404 +#: server_privileges.php:1424 msgid "User overview" msgstr "Foydalanuvchilar hisobini ko‘rib chiqish" -#: server_privileges.php:1541 server_privileges.php:1723 -#: server_privileges.php:2072 +#: server_privileges.php:1561 server_privileges.php:1743 +#: server_privileges.php:2093 msgid "Grant" msgstr "GRANT" -#: server_privileges.php:1560 server_privileges.php:2162 +#: server_privileges.php:1580 server_privileges.php:2183 msgid "Any" msgstr "Har qaysi" -#: server_privileges.php:1609 server_privileges.php:1633 -#: server_privileges.php:2027 server_privileges.php:2216 +#: server_privileges.php:1629 server_privileges.php:1653 +#: server_privileges.php:2048 server_privileges.php:2237 msgid "Add a new User" msgstr "Yangi foydalanuvchi qo‘shish" -#: server_privileges.php:1614 +#: server_privileges.php:1634 msgid "Remove selected users" msgstr "Belgilangan foydalanuvchilarni o‘chirish" -#: server_privileges.php:1617 +#: server_privileges.php:1637 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:1618 server_privileges.php:1619 -#: server_privileges.php:1620 +#: server_privileges.php:1638 server_privileges.php:1639 +#: server_privileges.php:1640 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:1636 +#: server_privileges.php:1656 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -5040,50 +5085,50 @@ msgstr "" "ma`lumotlar server tomonidan ishlatilayotgan privilegiyalardan farq qilishi " "mumkin. Bu holda %sprivilegiyalarni qayta yuklash%s kerak." -#: server_privileges.php:1684 +#: server_privileges.php:1704 msgid "The selected user was not found in the privilege table." msgstr "Belgilangan foydalanuvchi privilegiyalar jadvalida topilmadi." -#: server_privileges.php:1724 +#: server_privileges.php:1744 msgid "Column-specific privileges" msgstr "Maydon privilegiyalari" -#: server_privileges.php:1925 +#: server_privileges.php:1945 msgid "Add privileges on the following database" msgstr "Quyidagi ma`lumotlar omboriga privilegiya qo‘shish" -#: server_privileges.php:1943 +#: server_privileges.php:1963 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:1946 +#: server_privileges.php:1966 msgid "Add privileges on the following table" msgstr "Quyidagi jadvalga privilegiya qo‘shish" -#: server_privileges.php:2003 +#: server_privileges.php:2023 msgid "Change Login Information / Copy User" msgstr "Foydalanuvchining loginini o‘zgartirish / Foydalanuvchidan nusxa olish" -#: server_privileges.php:2006 +#: server_privileges.php:2026 msgid "Create a new user with the same privileges and ..." msgstr "Xuddi shunday privilegiyali yangi foydalanuvchi kiritish..." -#: server_privileges.php:2008 +#: server_privileges.php:2028 msgid "... keep the old one." msgstr " va eskisini saqlash." -#: server_privileges.php:2009 +#: server_privileges.php:2029 msgid " ... delete the old one from the user tables." msgstr " va foydalanuvchilar jadvalidan eskisini o‘chirish." -#: server_privileges.php:2010 +#: server_privileges.php:2030 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:2011 +#: server_privileges.php:2031 msgid "" " ... delete the old one from the user tables and reload the privileges " "afterwards." @@ -5091,48 +5136,48 @@ msgstr "" ", foydalanuvchilar jadvalidan eskisini o‘chirib privilegiyalarni qayta " "yuklash." -#: server_privileges.php:2033 +#: server_privileges.php:2054 msgid "Database for user" msgstr "Foydalanuvchi uchun ma`lumotlar bazasi" -#: server_privileges.php:2037 +#: server_privileges.php:2058 #, fuzzy #| msgid "None" msgctxt "Create none database for user" msgid "None" msgstr "Yo‘q" -#: server_privileges.php:2038 +#: server_privileges.php:2059 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:2039 +#: server_privileges.php:2060 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:2042 +#: server_privileges.php:2063 #, php-format msgid "Grant all privileges on database "%s"" msgstr "\"%s\"" ma`lumotlar bazasiga barcha privilegiyalarni berish;" -#: server_privileges.php:2065 +#: server_privileges.php:2086 #, php-format msgid "Users having access to "%s"" msgstr "\"%s\"ga ruxsati bo‘lgan foydalanuvchilar" -#: server_privileges.php:2173 +#: server_privileges.php:2194 msgid "global" msgstr "Global" -#: server_privileges.php:2175 +#: server_privileges.php:2196 msgid "database-specific" msgstr "Ma`lumotlar bazasi darajasida" -#: server_privileges.php:2177 +#: server_privileges.php:2198 msgid "wildcard" msgstr "Guruhlash belgisi" @@ -8225,6 +8270,10 @@ msgstr "Yangi qator sifatida qo‘shish va xatoliklarga e’tibor bеrmaslik" msgid "Show insert query" msgstr "Kiritilgan so‘rovni ko‘rsatish" +#: tbl_change.php:1143 +msgid "and then" +msgstr "va so‘ng" + #: tbl_change.php:1147 msgid "Go back to previous page" msgstr "Oldingi sahifaga o‘tish" @@ -8305,7 +8354,7 @@ msgstr "(\"PRIMARY\" nomi faqat birlamchi indeksgaega bo‘lishi shart!)" msgid "Add to index  %s column(s)" msgstr " \"%s\" maydon(lar)ini indeksga qo‘shish" -#: tbl_indexes.php:256 tbl_structure.php:589 tbl_structure.php:600 +#: tbl_indexes.php:256 tbl_structure.php:587 tbl_structure.php:598 msgid "Column count has to be larger than zero." msgstr "Ustunlar soni noldan ko‘p bo‘lishi shart." @@ -8419,39 +8468,39 @@ msgstr "Ma`lumotlar yaxlitligini tekshirish:" msgid "Show tables" msgstr "Jadvallarni ko‘rsatish" -#: tbl_printview.php:310 tbl_structure.php:656 +#: tbl_printview.php:310 tbl_structure.php:654 msgid "Space usage" msgstr "Foydalanilayotgan joy" -#: tbl_printview.php:314 tbl_structure.php:660 +#: tbl_printview.php:314 tbl_structure.php:658 msgid "Usage" msgstr "Ishlatilish" -#: tbl_printview.php:341 tbl_structure.php:687 +#: tbl_printview.php:341 tbl_structure.php:685 msgid "Effective" msgstr "Effektivlik" -#: tbl_printview.php:366 tbl_structure.php:725 +#: tbl_printview.php:366 tbl_structure.php:723 msgid "Row Statistics" msgstr "Qatorlar statistikasi" -#: tbl_printview.php:369 tbl_structure.php:728 +#: tbl_printview.php:369 tbl_structure.php:726 msgid "Statements" msgstr "Tavsif" -#: tbl_printview.php:380 tbl_structure.php:740 +#: tbl_printview.php:380 tbl_structure.php:738 msgid "static" msgstr "statik" -#: tbl_printview.php:382 tbl_structure.php:742 +#: tbl_printview.php:382 tbl_structure.php:740 msgid "dynamic" msgstr "dinamik" -#: tbl_printview.php:404 tbl_structure.php:785 +#: tbl_printview.php:404 tbl_structure.php:783 msgid "Row length" msgstr "Qator uzunligi" -#: tbl_printview.php:414 tbl_structure.php:793 +#: tbl_printview.php:414 tbl_structure.php:791 msgid " Row size " msgstr "Qator hajmi" @@ -8530,50 +8579,50 @@ msgstr "Yo‘q" msgid "Column %s has been dropped" msgstr "\"%s\" jadvali o‘chirildi" -#: tbl_structure.php:385 +#: tbl_structure.php:384 #, php-format msgid "A primary key has been added on %s" msgstr " \"%s\" ga birlamchi kalit qo‘shildi" -#: tbl_structure.php:400 tbl_structure.php:414 tbl_structure.php:428 +#: tbl_structure.php:398 tbl_structure.php:412 tbl_structure.php:426 #, php-format msgid "An index has been added on %s" msgstr " \"%s\" uchun indeks qo‘shildi" -#: tbl_structure.php:506 tbl_structure.php:508 +#: tbl_structure.php:504 tbl_structure.php:506 msgid "Relation view" msgstr "Aloqalarni ko‘rish" -#: tbl_structure.php:515 tbl_structure.php:517 +#: tbl_structure.php:513 tbl_structure.php:515 msgid "Propose table structure" msgstr "Jadval tuzilishi tahlili" -#: tbl_structure.php:540 +#: tbl_structure.php:538 #, fuzzy #| msgid "Add column(s)" msgid "Add column" msgstr "Ustun(lar) qo‘shish" -#: tbl_structure.php:554 +#: tbl_structure.php:552 msgid "At End of Table" msgstr "Jadval oxiriga" -#: tbl_structure.php:555 +#: tbl_structure.php:553 msgid "At Beginning of Table" msgstr "Jadval boshiga" -#: tbl_structure.php:556 +#: tbl_structure.php:554 #, php-format msgid "After %s" msgstr " \"%s\" dan keyin" -#: tbl_structure.php:594 +#: tbl_structure.php:592 #, fuzzy, php-format #| msgid "Create an index on %s columns" msgid "Create an index on  %s columns" msgstr "\"%s\" maydon uchun indeks tuzish" -#: tbl_structure.php:756 +#: tbl_structure.php:754 msgid "partitioned" msgstr "bo‘laklarga bo‘lingan" @@ -9076,9 +9125,6 @@ msgstr "Ko‘rinish nomini o‘zgartirish" #~ msgid "Process list" #~ msgstr "Jarayonlar ro‘yxati" -#~ msgid "Reload privileges" -#~ msgstr "Privilegiyalarni qayta yuklash" - #~ msgid "" #~ "The users will still have the USAGE privilege until the privileges are " #~ "reloaded." diff --git a/po/zh_CN.po b/po/zh_CN.po index ed2117f69..e49bf7fe6 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-13 09:03-0400\n" +"POT-Creation-Date: 2010-06-22 00:55+0530\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:1514 +#: libraries/display_tbl.lib.php:417 server_privileges.php:1534 msgid "Show all" msgstr "全部显示" -#: browse_foreigners.php:82 libraries/common.lib.php:2313 +#: browse_foreigners.php:82 libraries/common.lib.php:2317 #: 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,18 +37,18 @@ 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:2831 -#: libraries/common.lib.php:2838 libraries/db_links.inc.php:75 +#: db_structure.php:106 libraries/common.lib.php:2835 +#: libraries/common.lib.php:2842 libraries/db_links.inc.php:75 #: libraries/tbl_links.inc.php:63 msgid "Search" msgstr "搜索" -#: browse_foreigners.php:153 db_operations.php:385 db_operations.php:429 -#: db_operations.php:499 db_operations.php:609 db_search.php:362 -#: db_structure.php:567 js/messages.php:48 libraries/Config.class.php:1046 +#: browse_foreigners.php:153 db_operations.php:394 db_operations.php:438 +#: db_operations.php:508 db_operations.php:618 db_search.php:362 +#: db_structure.php:565 js/messages.php:53 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:1335 libraries/common.lib.php:2288 +#: libraries/common.lib.php:1335 libraries/common.lib.php:2292 #: 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,15 +59,15 @@ 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:664 server_privileges.php:1624 -#: server_privileges.php:1971 server_privileges.php:2018 -#: server_privileges.php:2057 server_replication.php:235 +#: server_privileges.php:665 server_privileges.php:1644 +#: server_privileges.php:1991 server_privileges.php:2038 +#: server_privileges.php:2078 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 #: tbl_operations.php:302 tbl_operations.php:499 tbl_operations.php:561 -#: tbl_operations.php:681 tbl_select.php:327 tbl_structure.php:562 -#: tbl_structure.php:597 tbl_tracking.php:395 tbl_tracking.php:512 +#: tbl_operations.php:681 tbl_select.php:327 tbl_structure.php:560 +#: tbl_structure.php:595 tbl_tracking.php:395 tbl_tracking.php:512 #: view_create.php:182 view_operations.php:101 msgid "Go" msgstr "执行" @@ -93,7 +93,7 @@ msgstr "使用此值" msgid "Database %1$s has been created." msgstr "创建数据库 %1$s 成功。" -#: db_datadict.php:49 db_operations.php:378 +#: db_datadict.php:49 db_operations.php:387 msgid "Database comment: " msgstr "数据库注释:" @@ -118,10 +118,10 @@ 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:2070 +#: pdf_schema.php:1263 pdf_schema.php:1284 server_privileges.php:2091 #: 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 +#: tbl_structure.php:657 tbl_tracking.php:274 tbl_tracking.php:321 msgid "Type" msgstr "类型" @@ -134,7 +134,7 @@ msgstr "类型" msgid "Null" msgstr "空" -#: db_datadict.php:178 db_structure.php:501 libraries/export/htmlword.php:247 +#: db_datadict.php:178 db_structure.php:499 libraries/export/htmlword.php:247 #: libraries/export/latex.php:360 libraries/export/odt.php:303 #: libraries/export/texytext.php:236 libraries/tbl_properties.inc.php:106 #: pdf_schema.php:1266 pdf_schema.php:1287 tbl_printview.php:146 @@ -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: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 +#: pdf_schema.php:1344 server_privileges.php:1588 server_privileges.php:1599 +#: server_privileges.php:1909 server_privileges.php:1914 +#: server_privileges.php:2208 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:1565 -#: server_privileges.php:1579 server_privileges.php:1889 -#: server_privileges.php:1892 server_privileges.php:2187 sql.php:193 +#: server_databases.php:64 server_privileges.php:1585 +#: server_privileges.php:1599 server_privileges.php:1909 +#: server_privileges.php:1912 server_privileges.php:2208 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" @@ -207,133 +207,129 @@ msgstr "全选" msgid "Unselect All" msgstr "全不选" -#: db_operations.php:38 tbl_create.php:54 +#: db_operations.php:43 tbl_create.php:54 msgid "The database name is empty!" msgstr "数据库名不能为空!" -#: db_operations.php:236 +#: db_operations.php:241 #, php-format msgid "Database %s has been renamed to %s" msgstr "已将数据库 %s 改名为 %s" -#: db_operations.php:240 +#: db_operations.php:245 #, php-format msgid "Database %s has been copied to %s" msgstr "已将数据库 %s 复制为 %s" -#: db_operations.php:412 +#: db_operations.php:421 msgid "Rename database to" msgstr "将数据库改名为" -#: db_operations.php:417 server_processlist.php:57 +#: db_operations.php:426 server_processlist.php:57 msgid "Command" msgstr "命令" -#: db_operations.php:429 tbl_change.php:1143 -msgid "and then" -msgstr "然后" - -#: db_operations.php:455 +#: db_operations.php:464 msgid "Copy database to" msgstr "复制数据库到" -#: db_operations.php:462 tbl_operations.php:528 tbl_tracking.php:388 +#: db_operations.php:471 tbl_operations.php:528 tbl_tracking.php:388 msgid "Structure only" msgstr "仅结构" -#: db_operations.php:463 tbl_operations.php:529 tbl_tracking.php:390 +#: db_operations.php:472 tbl_operations.php:529 tbl_tracking.php:390 msgid "Structure and data" msgstr "结构和数据" -#: db_operations.php:464 tbl_operations.php:530 tbl_tracking.php:389 +#: db_operations.php:473 tbl_operations.php:530 tbl_tracking.php:389 msgid "Data only" msgstr "仅数据" -#: db_operations.php:472 +#: db_operations.php:481 msgid "CREATE DATABASE before copying" msgstr "复制前创建数据库 (CREATE DATABASE)" -#: db_operations.php:475 libraries/export/sql.php:52 +#: db_operations.php:484 libraries/export/sql.php:52 #: libraries/export/sql.php:74 libraries/export/sql.php:76 #: libraries/export/sql.php:82 tbl_operations.php:536 #, php-format msgid "Add %s" msgstr "添加 %s" -#: db_operations.php:479 libraries/export/sql.php:78 tbl_operations.php:299 +#: db_operations.php:488 libraries/export/sql.php:78 tbl_operations.php:299 #: tbl_operations.php:538 msgid "Add AUTO_INCREMENT value" msgstr "添加自增 (AUTO_INCREMENT) 值" -#: db_operations.php:483 tbl_operations.php:545 +#: db_operations.php:492 tbl_operations.php:545 msgid "Add constraints" msgstr "强制添加" -#: db_operations.php:496 +#: db_operations.php:505 msgid "Switch to copied database" msgstr "切换到复制的数据库" -#: db_operations.php:537 +#: db_operations.php:546 msgid "BLOB Repository" msgstr "BLOB 容器" -#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1352 -#: libraries/server_links.inc.php:49 server_processlist.php:59 +#: db_operations.php:549 db_tracking.php:76 libraries/common.lib.php:1352 +#: libraries/server_links.inc.php:50 server_processlist.php:59 #: tbl_tracking.php:596 test/theme.php:101 msgid "Status" msgstr "状态" -#: db_operations.php:548 +#: db_operations.php:557 msgctxt "BLOB repository" msgid "Enabled" msgstr "已启用" -#: db_operations.php:552 +#: db_operations.php:561 msgid "Disable" msgstr "禁用" -#: db_operations.php:562 +#: db_operations.php:571 msgid "Damaged" msgstr "已损坏" -#: db_operations.php:566 +#: db_operations.php:575 msgctxt "BLOB repository" msgid "Repair" msgstr "修复" -#: db_operations.php:574 +#: db_operations.php:583 msgctxt "BLOB repository" msgid "Disabled" msgstr "已禁用" -#: db_operations.php:578 +#: db_operations.php:587 msgid "Enable" msgstr "启用" -#: db_operations.php:602 libraries/Index.class.php:448 +#: db_operations.php:611 libraries/Index.class.php:448 #: libraries/db_structure.lib.php:62 libraries/mysql_charsets.lib.php:107 #: libraries/tbl_properties.inc.php:107 libraries/tbl_properties.inc.php:730 #: server_collations.php:54 server_collations.php:66 server_databases.php:111 #: tbl_operations.php:363 tbl_select.php:137 tbl_structure.php:179 -#: tbl_structure.php:767 tbl_tracking.php:275 tbl_tracking.php:326 +#: tbl_structure.php:765 tbl_tracking.php:275 tbl_tracking.php:326 msgid "Collation" msgstr "整理" -#: db_operations.php:615 main.php:316 pdf_schema.php:34 +#: db_operations.php:624 main.php:316 pdf_schema.php:34 #, php-format msgid "" "The additional features for working with linked tables have been " "deactivated. To find out why click %shere%s." msgstr "链接表的附加功能尚未激活。要查出原因,请点击%s此处%s。" -#: db_operations.php:648 +#: db_operations.php:657 msgid "Edit PDF Pages" 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:1665 -#: server_privileges.php:1721 server_privileges.php:1985 +#: libraries/header.inc.php:130 pdf_pages.php:424 server_privileges.php:1685 +#: server_privileges.php:1741 server_privileges.php:2005 #: server_synchronize.php:423 server_synchronize.php:866 tbl_tracking.php:592 #: test/theme.php:75 msgid "Table" @@ -342,7 +338,7 @@ msgstr "表" #: db_printview.php:105 libraries/db_structure.lib.php:56 #: libraries/header_printview.inc.php:63 libraries/import.lib.php:146 #: navigation.php:638 navigation.php:660 server_databases.php:122 -#: tbl_printview.php:394 tbl_structure.php:365 tbl_structure.php:777 +#: tbl_printview.php:394 tbl_structure.php:365 tbl_structure.php:775 msgid "Rows" msgstr "行数" @@ -350,30 +346,30 @@ msgstr "行数" msgid "Size" msgstr "大小" -#: db_printview.php:162 db_structure.php:457 libraries/export/sql.php:559 +#: db_printview.php:162 db_structure.php:455 libraries/export/sql.php:559 #: libraries/export/sql.php:899 msgid "in use" msgstr "使用中" #: db_printview.php:187 libraries/db_info.inc.php:88 #: libraries/export/sql.php:514 pdf_schema.php:1241 tbl_printview.php:434 -#: tbl_structure.php:809 +#: tbl_structure.php:807 msgid "Creation" msgstr "创建时间" #: db_printview.php:196 libraries/db_info.inc.php:93 #: libraries/export/sql.php:519 pdf_schema.php:1246 tbl_printview.php:444 -#: tbl_structure.php:817 +#: tbl_structure.php:815 msgid "Last update" msgstr "最后更新" #: db_printview.php:205 libraries/db_info.inc.php:98 #: libraries/export/sql.php:524 pdf_schema.php:1251 tbl_printview.php:454 -#: tbl_structure.php:825 +#: tbl_structure.php:823 msgid "Last check" msgstr "最后检查" -#: db_printview.php:222 db_structure.php:480 +#: db_printview.php:222 db_structure.php:478 #, php-format msgid "%s table" msgid_plural "%s tables" @@ -432,7 +428,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:297 tbl_change.php:1031 tbl_indexes.php:250 +#: server_privileges.php:298 tbl_change.php:1031 tbl_indexes.php:250 #: tbl_select.php:288 msgid "Or" msgstr "或" @@ -503,9 +499,9 @@ 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:2833 +#: db_structure.php:105 libraries/common.lib.php:2837 #: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50 -#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:467 +#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:465 msgid "Browse" msgstr "浏览" @@ -550,36 +546,36 @@ 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:2832 libraries/sql_query_form.lib.php:334 +#: libraries/common.lib.php:2836 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:2829 libraries/common.lib.php:2836 +#: libraries/common.lib.php:2833 libraries/common.lib.php:2840 #: 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:1106 #: libraries/tbl_links.inc.php:56 pmd_general.php:134 -#: server_privileges.php:593 server_replication.php:315 tbl_tracking.php:269 +#: server_privileges.php:594 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:1656 +#: db_structure.php:543 db_structure.php:544 db_tracking.php:91 +#: libraries/Index.class.php:483 libraries/common.lib.php:1657 #: 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 -#: tbl_structure.php:152 tbl_structure.php:471 +#: tbl_structure.php:152 tbl_structure.php:469 msgid "Drop" 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:1655 +#: db_structure.php:541 db_structure.php:542 libraries/common.lib.php:1656 #: libraries/mult_submits.inc.php:39 libraries/tbl_links.inc.php:105 msgid "Empty" msgstr "清空" @@ -589,111 +585,111 @@ msgstr "清空" msgid "Table %s has been emptied" msgstr "已清空表 %s " -#: db_structure.php:326 libraries/tbl_links.inc.php:133 +#: db_structure.php:325 libraries/tbl_links.inc.php:133 #, php-format msgid "View %s has been dropped" msgstr "已删除视图 %s" -#: db_structure.php:326 libraries/tbl_links.inc.php:133 +#: db_structure.php:325 libraries/tbl_links.inc.php:133 #, php-format msgid "Table %s has been dropped" msgstr "已删除表 %s " -#: db_structure.php:333 +#: db_structure.php:332 msgid "Tracking is active." msgstr "追踪已启用。" -#: db_structure.php:335 +#: db_structure.php:334 msgid "Tracking is not active." msgstr "追踪已禁用。" -#: db_structure.php:420 libraries/display_tbl.lib.php:1944 +#: db_structure.php:418 libraries/display_tbl.lib.php:1944 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation%" "s." msgstr "该视图最少包含的行数,参见%s文档%s。" -#: db_structure.php:434 db_structure.php:448 libraries/header.inc.php:126 +#: db_structure.php:432 db_structure.php:446 libraries/header.inc.php:130 #: libraries/tbl_info.inc.php:66 tbl_structure.php:185 test/theme.php:74 msgid "View" msgstr "视图" -#: db_structure.php:485 libraries/db_structure.lib.php:49 -#: libraries/server_links.inc.php:70 server_replication.php:33 +#: db_structure.php:483 libraries/db_structure.lib.php:49 +#: libraries/server_links.inc.php:71 server_replication.php:33 #: server_replication.php:164 server_status.php:369 msgid "Replication" msgstr "复制" -#: db_structure.php:489 +#: db_structure.php:487 msgid "Sum" msgstr "总计" -#: db_structure.php:496 libraries/StorageEngine.class.php:356 +#: db_structure.php:494 libraries/StorageEngine.class.php:356 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "%s 是此 MySQL 服务器的默认存储引擎。" -#: db_structure.php:524 db_structure.php:541 db_structure.php:542 +#: db_structure.php:522 db_structure.php:539 db_structure.php:540 #: 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:1596 tbl_structure.php:455 -#: tbl_structure.php:464 +#: server_databases.php:351 server_privileges.php:1616 tbl_structure.php:453 +#: tbl_structure.php:462 msgid "With selected:" msgstr "选中项:" -#: db_structure.php:527 libraries/display_tbl.lib.php:2076 -#: server_databases.php:348 server_privileges.php:569 -#: server_privileges.php:1599 tbl_structure.php:458 +#: db_structure.php:525 libraries/display_tbl.lib.php:2076 +#: server_databases.php:348 server_privileges.php:570 +#: server_privileges.php:1619 tbl_structure.php:456 msgid "Check All" msgstr "全选" -#: db_structure.php:531 libraries/display_tbl.lib.php:2077 +#: db_structure.php:529 libraries/display_tbl.lib.php:2077 #: libraries/replication_gui.lib.php:33 server_databases.php:350 -#: server_privileges.php:572 server_privileges.php:1603 tbl_structure.php:462 +#: server_privileges.php:573 server_privileges.php:1623 tbl_structure.php:460 msgid "Uncheck All" msgstr "全不选" -#: db_structure.php:536 +#: db_structure.php:534 msgid "Check tables having overhead" msgstr "仅选择多余" -#: db_structure.php:547 db_structure.php:548 db_structure.php:599 +#: db_structure.php:545 db_structure.php:546 db_structure.php:597 #: libraries/display_tbl.lib.php:2180 libraries/mult_submits.inc.php:28 -#: tbl_structure.php:492 tbl_structure.php:494 +#: tbl_structure.php:490 tbl_structure.php:492 msgid "Print view" msgstr "打印预览" -#: db_structure.php:549 db_structure.php:550 libraries/mult_submits.inc.php:42 +#: db_structure.php:547 db_structure.php:548 libraries/mult_submits.inc.php:42 #: tbl_operations.php:581 msgid "Check table" msgstr "检查表" -#: db_structure.php:551 db_structure.php:552 libraries/mult_submits.inc.php:47 -#: tbl_operations.php:621 tbl_structure.php:709 tbl_structure.php:711 +#: db_structure.php:549 db_structure.php:550 libraries/mult_submits.inc.php:47 +#: tbl_operations.php:621 tbl_structure.php:707 tbl_structure.php:709 msgid "Optimize table" msgstr "优化表" -#: db_structure.php:553 db_structure.php:554 libraries/mult_submits.inc.php:52 +#: db_structure.php:551 db_structure.php:552 libraries/mult_submits.inc.php:52 #: tbl_operations.php:611 msgid "Repair table" msgstr "修复表" -#: db_structure.php:555 db_structure.php:556 libraries/mult_submits.inc.php:57 +#: db_structure.php:553 db_structure.php:554 libraries/mult_submits.inc.php:57 #: tbl_operations.php:601 msgid "Analyze table" msgstr "分析表" -#: db_structure.php:557 db_structure.php:558 libraries/db_links.inc.php:71 +#: db_structure.php:555 db_structure.php:556 libraries/db_links.inc.php:71 #: 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:1380 +#: libraries/server_links.inc.php:85 libraries/tbl_links.inc.php:82 +#: pmd_pdf.php:84 pmd_pdf.php:109 server_privileges.php:1397 #: setup/frames/menu.inc.php:22 tbl_row_action.php:59 msgid "Export" msgstr "导出" -#: db_structure.php:606 libraries/display_pdf_schema.lib.php:44 +#: db_structure.php:604 libraries/display_pdf_schema.lib.php:44 msgid "Data Dictionary" msgstr "数据字典" @@ -704,10 +700,10 @@ msgstr "已追踪的表" #: db_tracking.php:71 libraries/export/htmlword.php:86 #: libraries/export/latex.php:148 libraries/export/odt.php:113 #: libraries/export/sql.php:342 libraries/export/texytext.php:84 -#: libraries/export/xml.php:255 libraries/header.inc.php:106 +#: libraries/export/xml.php:255 libraries/header.inc.php:110 #: libraries/header_printview.inc.php:58 server_databases.php:169 -#: server_privileges.php:1660 server_privileges.php:1721 -#: server_privileges.php:1979 server_processlist.php:56 +#: server_privileges.php:1680 server_privileges.php:1741 +#: server_privileges.php:1999 server_processlist.php:56 #: server_synchronize.php:1179 server_synchronize.php:1183 #: tbl_tracking.php:591 test/theme.php:65 msgid "Database" @@ -727,8 +723,8 @@ msgstr "更新" #: db_tracking.php:77 libraries/Index.class.php:440 #: libraries/db_structure.lib.php:53 server_databases.php:203 -#: server_privileges.php:1542 server_privileges.php:1725 -#: server_privileges.php:2073 tbl_structure.php:187 +#: server_privileges.php:1562 server_privileges.php:1745 +#: server_privileges.php:2094 tbl_structure.php:187 msgid "Action" msgstr "操作" @@ -762,8 +758,8 @@ msgstr "结构快照" msgid "Untracked tables" msgstr "未追踪的表" -#: db_tracking.php:172 db_tracking.php:174 tbl_structure.php:528 -#: tbl_structure.php:530 +#: db_tracking.php:172 db_tracking.php:174 tbl_structure.php:526 +#: tbl_structure.php:528 msgid "Track table" msgstr "追踪表" @@ -920,316 +916,365 @@ msgstr "主机名不能为空!" msgid "The user name is empty!" msgstr "用户名不能为空!" -#: js/messages.php:44 server_privileges.php:1236 user_password.php:70 +#: js/messages.php:44 server_privileges.php:1241 user_password.php:70 msgid "The password is empty!" msgstr "密码不能为空!" -#: js/messages.php:45 server_privileges.php:1234 user_password.php:73 +#: js/messages.php:45 server_privileges.php:1239 user_password.php:73 msgid "The passwords aren't the same!" msgstr "两次密码不一致!" -#: js/messages.php:49 pmd_general.php:342 pmd_general.php:379 +#: js/messages.php:46 +#, fuzzy +#| msgid "Add a new User" +msgid "Add a New User" +msgstr "添加新用户" + +#: js/messages.php:47 js/messages.php:54 pmd_general.php:342 +#: pmd_general.php:379 msgid "Cancel" msgstr "取消" -#: js/messages.php:52 pmd_save_pos.php:54 +#: js/messages.php:48 +#, fuzzy +#| msgid "Create version" +msgid "Create User" +msgstr "创建版本" + +#: js/messages.php:49 +#, fuzzy +#| msgid "Reloading the privileges" +msgid "Reloading Privileges" +msgstr "重新载入权限" + +#: js/messages.php:50 +#, fuzzy +#| msgid "Remove selected users" +msgid "Removing Selected Users" +msgstr "删除选中的用户" + +#: js/messages.php:57 +#, fuzzy +#| msgid "Load" +msgid "Loading" +msgstr "加载" + +#: js/messages.php:58 +#, fuzzy +#| msgid "Processes" +msgid "Processing Request" +msgstr "进程" + +#: js/messages.php:59 +msgid "Error in Processing Request" +msgstr "" + +#: js/messages.php:60 +msgid "Dropping Column" +msgstr "" + +#: js/messages.php:61 +msgid "Adding Primary Key" +msgstr "" + +#: js/messages.php:64 pmd_save_pos.php:54 msgid "Modifications have been saved" msgstr "已保存修改。" -#: js/messages.php:53 pmd_relation_upd.php:49 +#: js/messages.php:65 pmd_relation_upd.php:49 msgid "Relation deleted" msgstr "已删除关系" -#: js/messages.php:54 pmd_relation_new.php:64 +#: js/messages.php:66 pmd_relation_new.php:64 msgid "FOREIGN KEY relation added" msgstr "已添加外键关联" -#: js/messages.php:55 pmd_relation_new.php:86 +#: js/messages.php:67 pmd_relation_new.php:86 msgid "Internal relation added" msgstr "已添加内联关系" -#: js/messages.php:56 pmd_relation_new.php:63 pmd_relation_new.php:88 +#: js/messages.php:68 pmd_relation_new.php:63 pmd_relation_new.php:88 msgid "Error: Relation not added." msgstr "错误:关系未添加" -#: js/messages.php:57 pmd_relation_new.php:31 +#: js/messages.php:69 pmd_relation_new.php:31 msgid "Error: relation already exists." msgstr "错误:关系已存在" -#: js/messages.php:58 +#: js/messages.php:70 msgid "Error saving coordinates for Designer." msgstr "保存设计器坐标时出错。" -#: js/messages.php:59 libraries/relation.lib.php:107 +#: js/messages.php:71 libraries/relation.lib.php:107 #: libraries/relation.lib.php:119 msgid "General relation features" msgstr "基本功能" -#: js/messages.php:59 libraries/relation.lib.php:101 +#: js/messages.php:71 libraries/relation.lib.php:101 #: libraries/relation.lib.php:108 msgid "Disabled" msgstr "已禁用" -#: js/messages.php:60 +#: js/messages.php:72 msgid "Select referenced key" msgstr "选择外键" -#: js/messages.php:61 +#: js/messages.php:73 msgid "Select Foreign Key" msgstr "选择外键" -#: js/messages.php:62 +#: js/messages.php:74 msgid "Please select the primary key or a unique key" msgstr "请选择主键或唯一键" -#: js/messages.php:63 pmd_general.php:77 tbl_relation.php:548 +#: js/messages.php:75 pmd_general.php:77 tbl_relation.php:548 msgid "Choose column to display" msgstr "选择要显示的字段" #. l10n: Display text for calendar close link -#: js/messages.php:73 +#: js/messages.php:85 msgid "Done" msgstr "完成" #. l10n: Display text for previous month link in calendar -#: js/messages.php:75 +#: js/messages.php:87 msgid "Prev" msgstr "上个月" #. l10n: Display text for next month link in calendar -#: js/messages.php:77 libraries/common.lib.php:2353 -#: libraries/common.lib.php:2356 libraries/display_tbl.lib.php:338 +#: js/messages.php:89 libraries/common.lib.php:2357 +#: libraries/common.lib.php:2360 libraries/display_tbl.lib.php:338 #: server_binlog.php:205 server_binlog.php:207 tbl_printview.php:424 -#: tbl_structure.php:801 +#: tbl_structure.php:799 msgid "Next" msgstr "下个月" #. l10n: Display text for current month link in calendar -#: js/messages.php:79 +#: js/messages.php:91 msgid "Today" msgstr "今天" -#: js/messages.php:82 +#: js/messages.php:94 msgid "January" msgstr "一月" -#: js/messages.php:83 +#: js/messages.php:95 msgid "February" msgstr "二月" -#: js/messages.php:84 +#: js/messages.php:96 msgid "March" msgstr "三月" -#: js/messages.php:85 +#: js/messages.php:97 msgid "April" msgstr "四月" -#: js/messages.php:86 +#: js/messages.php:98 msgid "May" msgstr "五月" -#: js/messages.php:87 +#: js/messages.php:99 msgid "June" msgstr "六月" -#: js/messages.php:88 +#: js/messages.php:100 msgid "July" msgstr "七月" -#: js/messages.php:89 +#: js/messages.php:101 msgid "August" msgstr "八月" -#: js/messages.php:90 +#: js/messages.php:102 msgid "September" msgstr "九月" -#: js/messages.php:91 +#: js/messages.php:103 msgid "October" msgstr "十月" -#: js/messages.php:92 +#: js/messages.php:104 msgid "November" msgstr "十一月" -#: js/messages.php:93 +#: js/messages.php:105 msgid "December" msgstr "十二月" #. l10n: Short month name -#: js/messages.php:97 libraries/common.lib.php:1557 +#: js/messages.php:109 libraries/common.lib.php:1557 msgid "Jan" msgstr "一月" #. l10n: Short month name -#: js/messages.php:99 libraries/common.lib.php:1559 +#: js/messages.php:111 libraries/common.lib.php:1559 msgid "Feb" msgstr "二月" #. l10n: Short month name -#: js/messages.php:101 libraries/common.lib.php:1561 +#: js/messages.php:113 libraries/common.lib.php:1561 msgid "Mar" msgstr "三月" #. l10n: Short month name -#: js/messages.php:103 libraries/common.lib.php:1563 +#: js/messages.php:115 libraries/common.lib.php:1563 msgid "Apr" msgstr "四月" #. l10n: Short month name -#: js/messages.php:105 libraries/common.lib.php:1565 +#: js/messages.php:117 libraries/common.lib.php:1565 msgctxt "Short month name" msgid "May" msgstr "五月" #. l10n: Short month name -#: js/messages.php:107 libraries/common.lib.php:1567 +#: js/messages.php:119 libraries/common.lib.php:1567 msgid "Jun" msgstr "六月" #. l10n: Short month name -#: js/messages.php:109 libraries/common.lib.php:1569 +#: js/messages.php:121 libraries/common.lib.php:1569 msgid "Jul" msgstr "七月" #. l10n: Short month name -#: js/messages.php:111 libraries/common.lib.php:1571 +#: js/messages.php:123 libraries/common.lib.php:1571 msgid "Aug" msgstr "八月" #. l10n: Short month name -#: js/messages.php:113 libraries/common.lib.php:1573 +#: js/messages.php:125 libraries/common.lib.php:1573 msgid "Sep" msgstr "九月" #. l10n: Short month name -#: js/messages.php:115 libraries/common.lib.php:1575 +#: js/messages.php:127 libraries/common.lib.php:1575 msgid "Oct" msgstr "十月" #. l10n: Short month name -#: js/messages.php:117 libraries/common.lib.php:1577 +#: js/messages.php:129 libraries/common.lib.php:1577 msgid "Nov" msgstr "十一月" #. l10n: Short month name -#: js/messages.php:119 libraries/common.lib.php:1579 +#: js/messages.php:131 libraries/common.lib.php:1579 msgid "Dec" msgstr "十二月" -#: js/messages.php:122 +#: js/messages.php:134 msgid "Sunday" msgstr "星期日" -#: js/messages.php:123 +#: js/messages.php:135 msgid "Monday" msgstr "星期一" -#: js/messages.php:124 +#: js/messages.php:136 msgid "Tuesday" msgstr "星期二" -#: js/messages.php:125 +#: js/messages.php:137 msgid "Wednesday" msgstr "星期三" -#: js/messages.php:126 +#: js/messages.php:138 msgid "Thursday" msgstr "星期四" -#: js/messages.php:127 +#: js/messages.php:139 msgid "Friday" msgstr "星期五" -#: js/messages.php:128 +#: js/messages.php:140 msgid "Saturday" msgstr "星期六" #. l10n: Short week day name -#: js/messages.php:132 libraries/common.lib.php:1582 +#: js/messages.php:144 libraries/common.lib.php:1582 msgid "Sun" msgstr "周日" #. l10n: Short week day name -#: js/messages.php:134 libraries/common.lib.php:1584 +#: js/messages.php:146 libraries/common.lib.php:1584 msgid "Mon" msgstr "周一" #. l10n: Short week day name -#: js/messages.php:136 libraries/common.lib.php:1586 +#: js/messages.php:148 libraries/common.lib.php:1586 msgid "Tue" msgstr "周二" #. l10n: Short week day name -#: js/messages.php:138 libraries/common.lib.php:1588 +#: js/messages.php:150 libraries/common.lib.php:1588 msgid "Wed" msgstr "周三" #. l10n: Short week day name -#: js/messages.php:140 libraries/common.lib.php:1590 +#: js/messages.php:152 libraries/common.lib.php:1590 msgid "Thu" msgstr "周四" #. l10n: Short week day name -#: js/messages.php:142 libraries/common.lib.php:1592 +#: js/messages.php:154 libraries/common.lib.php:1592 msgid "Fri" msgstr "周五" #. l10n: Short week day name -#: js/messages.php:144 libraries/common.lib.php:1594 +#: js/messages.php:156 libraries/common.lib.php:1594 msgid "Sat" msgstr "周六" #. l10n: Minimal week day name -#: js/messages.php:148 +#: js/messages.php:160 msgid "Su" msgstr "日" #. l10n: Minimal week day name -#: js/messages.php:150 +#: js/messages.php:162 msgid "Mo" msgstr "一" #. l10n: Minimal week day name -#: js/messages.php:152 +#: js/messages.php:164 msgid "Tu" msgstr "二" #. l10n: Minimal week day name -#: js/messages.php:154 +#: js/messages.php:166 msgid "We" msgstr "三" #. l10n: Minimal week day name -#: js/messages.php:156 +#: js/messages.php:168 msgid "Th" msgstr "四" #. l10n: Minimal week day name -#: js/messages.php:158 +#: js/messages.php:170 msgid "Fr" msgstr "五" #. l10n: Minimal week day name -#: js/messages.php:160 +#: js/messages.php:172 msgid "Sa" msgstr "六" #. l10n: Column header for week of the year in calendar -#: js/messages.php:162 +#: js/messages.php:174 msgid "Wk" msgstr "周" -#: js/messages.php:164 +#: js/messages.php:176 msgid "Hour" msgstr "时" -#: js/messages.php:165 +#: js/messages.php:177 msgid "Minute" msgstr "分" -#: js/messages.php:166 +#: js/messages.php:178 msgid "Second" msgstr "秒" @@ -1286,7 +1331,7 @@ msgstr "索引" #: libraries/Index.class.php:444 libraries/mult_submits.inc.php:103 #: libraries/tbl_properties.inc.php:519 tbl_structure.php:33 -#: tbl_structure.php:155 tbl_structure.php:159 tbl_structure.php:474 +#: tbl_structure.php:155 tbl_structure.php:159 tbl_structure.php:472 #: tbl_tracking.php:322 msgid "Unique" msgstr "唯一" @@ -1327,8 +1372,8 @@ msgid "" "removed." msgstr "索引 %1$s 和 %2$s 可能是相同的,其中一个将可能被删除" -#: libraries/List_Database.class.php:431 libraries/server_links.inc.php:41 -#: server_databases.php:88 server_privileges.php:1660 +#: libraries/List_Database.class.php:431 libraries/server_links.inc.php:42 +#: server_databases.php:88 server_privileges.php:1680 #: setup/lib/messages.inc.php:110 test/theme.php:93 msgid "Databases" msgstr "数据库" @@ -1490,7 +1535,7 @@ msgstr "密码:" msgid "Server Choice" msgstr "选择服务器" -#: libraries/auth/cookie.auth.lib.php:320 libraries/header.inc.php:59 +#: libraries/auth/cookie.auth.lib.php:320 libraries/header.inc.php:63 msgid "Cookies must be enabled past this point." msgstr "必须启用 Cookies 才能登录。" @@ -1569,7 +1614,7 @@ msgstr "" "虽然必须的扩展已经加载,但还是无法使用 iconv、libiconv 和 recode_string 函" "数。请检查您的 PHP 配置。" -#: libraries/common.inc.php:583 +#: libraries/common.inc.php:587 msgid "" "phpMyAdmin was unable to read your configuration file!
This might " "happen if PHP finds a parse error in it or PHP cannot find the file.
如果您看到的是一个空白页,则代表没" "有任何问题。" -#: libraries/common.inc.php:594 +#: libraries/common.inc.php:598 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "无法加载默认配置: %1$s" -#: libraries/common.inc.php:599 +#: libraries/common.inc.php:603 msgid "" "The $cfg['PmaAbsoluteUri'] directive MUST be set in your " "configuration file!" msgstr "必须在您的配置文件中设置 $cfg['PmaAbsoluteUri'] !" -#: libraries/common.inc.php:629 +#: libraries/common.inc.php:633 #, php-format msgid "Invalid server index: %s" msgstr "无效的服务器索引: %s" -#: libraries/common.inc.php:636 +#: libraries/common.inc.php:640 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "无效的主机名 %1$s,请检查配置文件。" -#: libraries/common.inc.php:645 libraries/header.inc.php:96 +#: libraries/common.inc.php:649 libraries/header.inc.php:100 #: libraries/select_server.lib.php:41 libraries/select_server.lib.php:47 #: main.php:185 test/theme.php:57 msgid "Server" msgstr "服务器" -#: libraries/common.inc.php:823 +#: libraries/common.inc.php:827 msgid "Invalid authentication method set in configuration:" msgstr "配置文件中设置的认证方式无效:" -#: libraries/common.inc.php:926 +#: libraries/common.inc.php:930 #, php-format msgid "You should upgrade to %s %s or later." msgstr "您应升级到 %s %s 或更高版本。" @@ -1745,45 +1790,45 @@ msgstr "." msgid "%B %d, %Y at %I:%M %p" msgstr "%Y 年 %m 月 %d 日 %H:%M" -#: libraries/common.lib.php:1907 +#: libraries/common.lib.php:1911 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s 天 %s 小时,%s 分 %s 秒" -#: libraries/common.lib.php:2322 libraries/common.lib.php:2325 +#: libraries/common.lib.php:2326 libraries/common.lib.php:2329 #: libraries/display_tbl.lib.php:290 server_status.php:719 msgid "Begin" msgstr "开始" -#: libraries/common.lib.php:2323 libraries/common.lib.php:2326 +#: libraries/common.lib.php:2327 libraries/common.lib.php:2330 #: libraries/display_tbl.lib.php:291 server_binlog.php:168 #: server_binlog.php:170 msgid "Previous" msgstr "上一个" -#: libraries/common.lib.php:2354 libraries/common.lib.php:2357 +#: libraries/common.lib.php:2358 libraries/common.lib.php:2361 #: libraries/display_tbl.lib.php:353 msgid "End" msgstr "结束" -#: libraries/common.lib.php:2430 +#: libraries/common.lib.php:2434 #, php-format msgid "Jump to database "%s"." msgstr "跳转到数据库“%s”。" -#: libraries/common.lib.php:2450 +#: libraries/common.lib.php:2454 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "%s 功能受到一个已知的缺陷 (bug) 影响,参见 %s" -#: libraries/common.lib.php:2830 libraries/common.lib.php:2837 +#: libraries/common.lib.php:2834 libraries/common.lib.php:2841 #: libraries/db_links.inc.php:68 libraries/export/sql.php:25 -#: libraries/import/sql.php:18 libraries/server_links.inc.php:45 +#: libraries/import/sql.php:18 libraries/server_links.inc.php:46 #: libraries/tbl_links.inc.php:60 querywindow.php:99 test/theme.php:97 msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2839 libraries/db_links.inc.php:104 +#: libraries/common.lib.php:2843 libraries/db_links.inc.php:104 #: libraries/tbl_links.inc.php:95 libraries/tbl_links.inc.php:117 #: view_operations.php:89 msgid "Operations" @@ -1832,15 +1877,15 @@ msgstr "查询" msgid "Designer" msgstr "设计器" -#: libraries/db_links.inc.php:98 libraries/server_links.inc.php:88 +#: libraries/db_links.inc.php:98 libraries/server_links.inc.php:89 #: libraries/tbl_links.inc.php:91 pmd_pdf.php:84 pmd_pdf.php:110 #: setup/frames/menu.inc.php:21 msgid "Import" msgstr "导入" -#: libraries/db_links.inc.php:111 libraries/server_links.inc.php:66 -#: server_privileges.php:111 server_privileges.php:1722 -#: server_privileges.php:2071 test/theme.php:117 +#: libraries/db_links.inc.php:111 libraries/server_links.inc.php:67 +#: server_privileges.php:112 server_privileges.php:1742 +#: server_privileges.php:2092 test/theme.php:117 msgid "Privileges" msgstr "权限" @@ -1860,7 +1905,7 @@ msgstr "" "可能接近。参见 [a@./Documentation.html#faq3_11@Documentation]FAQ 3.11[/a]" #: libraries/db_structure.lib.php:69 server_databases.php:142 -#: tbl_printview.php:336 tbl_structure.php:682 +#: tbl_printview.php:336 tbl_structure.php:680 msgid "Overhead" msgstr "多余" @@ -1877,7 +1922,7 @@ msgstr "服务器没有响应" msgid "(or the local MySQL server's socket is not correctly configured)" msgstr "(或者本地 MySQL 服务器的套接字没有正确配置)" -#: libraries/dbi/mysql.dbi.lib.php:362 tbl_structure.php:608 +#: libraries/dbi/mysql.dbi.lib.php:362 tbl_structure.php:606 msgid "Details..." msgstr "详细..." @@ -1887,22 +1932,22 @@ msgid "Change password" msgstr "修改密码" #: libraries/display_change_password.lib.php:35 -#: libraries/replication_gui.lib.php:345 server_privileges.php:807 +#: libraries/replication_gui.lib.php:345 server_privileges.php:808 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:796 -#: server_privileges.php:800 server_privileges.php:811 -#: server_privileges.php:1538 server_synchronize.php:1175 +#: libraries/replication_gui.lib.php:349 server_privileges.php:797 +#: server_privileges.php:801 server_privileges.php:812 +#: server_privileges.php:1558 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:815 server_privileges.php:818 +#: server_privileges.php:816 server_privileges.php:819 msgid "Re-type" msgstr "重新输入" @@ -1915,12 +1960,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:822 +#: libraries/replication_gui.lib.php:360 server_privileges.php:823 msgid "Generate Password" msgstr "生成密码" #: libraries/display_change_password.lib.php:75 -#: libraries/replication_gui.lib.php:363 server_privileges.php:825 +#: libraries/replication_gui.lib.php:363 server_privileges.php:826 msgid "Generate" msgstr "生成" @@ -1933,8 +1978,8 @@ msgstr "新建数据库" msgid "Create" msgstr "创建" -#: libraries/display_create_database.lib.php:40 server_privileges.php:113 -#: server_privileges.php:1427 server_replication.php:35 +#: libraries/display_create_database.lib.php:40 server_privileges.php:114 +#: server_privileges.php:1447 server_replication.php:35 msgid "No Privileges" msgstr "无权限" @@ -2019,7 +2064,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:1875 server_processlist.php:75 +#: server_privileges.php:1895 server_processlist.php:75 msgid "None" msgstr "无" @@ -2205,7 +2250,7 @@ msgstr "主键排序" #: libraries/import/docsql.php:34 libraries/import/ldi.php:47 #: libraries/import/ods.php:30 libraries/import/sql.php:20 #: libraries/import/xls.php:26 libraries/import/xlsx.php:26 -#: libraries/import/xml.php:25 tbl_select.php:267 tbl_structure.php:753 +#: libraries/import/xml.php:25 tbl_select.php:267 tbl_structure.php:751 msgid "Options" msgstr "选项" @@ -2280,7 +2325,7 @@ msgstr "查询花费 %01.4f 秒" #: libraries/display_tbl.lib.php:2089 libraries/mult_submits.inc.php:113 #: querywindow.php:125 querywindow.php:129 querywindow.php:132 -#: tbl_structure.php:25 tbl_structure.php:150 tbl_structure.php:470 +#: tbl_structure.php:25 tbl_structure.php:150 tbl_structure.php:468 msgid "Change" msgstr "修改" @@ -2346,7 +2391,7 @@ msgstr "缓冲池使用情况" #: libraries/engines/innodb.lib.php:194 server_databases.php:137 #: server_databases.php:305 server_status.php:525 server_status.php:586 -#: server_status.php:607 tbl_printview.php:351 tbl_structure.php:696 +#: server_status.php:607 tbl_printview.php:351 tbl_structure.php:694 msgid "Total" msgstr "总计" @@ -2610,7 +2655,7 @@ msgstr "" "被删除,或者被以升序数字序列重命名。" #: libraries/export/codegen.php:37 setup/lib/messages.inc.php:88 -#: tbl_printview.php:376 tbl_structure.php:737 +#: tbl_printview.php:376 tbl_structure.php:735 msgid "Format" msgstr "格式" @@ -2674,8 +2719,8 @@ 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:576 server_replication.php:316 tbl_printview.php:317 -#: tbl_structure.php:665 +#: server_privileges.php:577 server_replication.php:316 tbl_printview.php:317 +#: tbl_structure.php:663 msgid "Data" msgstr "数据" @@ -2724,9 +2769,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:731 -#: server_privileges.php:734 server_privileges.php:790 -#: server_privileges.php:1537 server_privileges.php:2069 +#: libraries/replication_gui.lib.php:329 server_privileges.php:732 +#: server_privileges.php:735 server_privileges.php:791 +#: server_privileges.php:1557 server_privileges.php:2090 #: server_processlist.php:55 server_synchronize.php:1159 msgid "Host" msgstr "主机" @@ -2919,7 +2964,7 @@ msgstr "导出内容" msgid "Open new phpMyAdmin window" msgstr "打开新 phpMyAdmin 窗口" -#: libraries/header.inc.php:115 +#: libraries/header.inc.php:119 msgid "New table" msgstr "新数据表" @@ -3074,20 +3119,20 @@ 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 +#: tbl_structure.php:471 msgid "Primary" msgstr "主键" #: libraries/mult_submits.inc.php:98 libraries/tbl_properties.inc.php:116 #: libraries/tbl_properties.inc.php:525 tbl_printview.php:326 #: tbl_structure.php:31 tbl_structure.php:154 tbl_structure.php:158 -#: tbl_structure.php:475 tbl_structure.php:673 +#: tbl_structure.php:473 tbl_structure.php:671 msgid "Index" msgstr "索引" #: libraries/mult_submits.inc.php:108 libraries/tbl_properties.inc.php:531 #: tbl_structure.php:35 tbl_structure.php:156 tbl_structure.php:160 -#: tbl_structure.php:478 +#: tbl_structure.php:476 msgid "Fulltext" msgstr "全文搜索" @@ -3392,8 +3437,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:711 -#: server_privileges.php:714 server_privileges.php:721 +#: libraries/replication_gui.lib.php:259 server_privileges.php:712 +#: server_privileges.php:715 server_privileges.php:722 #: server_synchronize.php:1171 msgid "User name" msgstr "用户名" @@ -3417,7 +3462,7 @@ msgstr "变量" #: 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 +#: tbl_structure.php:727 msgid "Value" msgstr "值" @@ -3435,34 +3480,34 @@ msgstr "仅通过 --report-host=主机名 参数启动的从服务器可见。" msgid "Add slave replication user" msgstr "添加从复制用户" -#: libraries/replication_gui.lib.php:254 server_privileges.php:716 +#: libraries/replication_gui.lib.php:254 server_privileges.php:717 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:717 -#: server_privileges.php:784 server_privileges.php:808 -#: server_privileges.php:1928 server_privileges.php:1958 +#: libraries/replication_gui.lib.php:346 server_privileges.php:718 +#: server_privileges.php:785 server_privileges.php:809 +#: server_privileges.php:1948 server_privileges.php:1978 msgid "Use text field" msgstr "使用文本域" -#: libraries/replication_gui.lib.php:302 server_privileges.php:764 +#: libraries/replication_gui.lib.php:302 server_privileges.php:765 msgid "Any host" msgstr "任意主机" -#: libraries/replication_gui.lib.php:306 server_privileges.php:768 +#: libraries/replication_gui.lib.php:306 server_privileges.php:769 msgid "Local" msgstr "本地" -#: libraries/replication_gui.lib.php:312 server_privileges.php:773 +#: libraries/replication_gui.lib.php:312 server_privileges.php:774 msgid "This Host" msgstr "此主机" -#: libraries/replication_gui.lib.php:318 server_privileges.php:779 +#: libraries/replication_gui.lib.php:318 server_privileges.php:780 msgid "Use Host Table" msgstr "使用主机表" -#: libraries/replication_gui.lib.php:331 server_privileges.php:792 +#: libraries/replication_gui.lib.php:331 server_privileges.php:793 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -3496,29 +3541,29 @@ msgstr "未知的语言:%1$s." msgid "Servers" msgstr "服务器" -#: libraries/server_links.inc.php:53 server_engines.php:112 +#: libraries/server_links.inc.php:54 server_engines.php:112 #: server_engines.php:116 server_status.php:415 test/theme.php:105 msgid "Variables" msgstr "变量" -#: libraries/server_links.inc.php:57 test/theme.php:109 +#: libraries/server_links.inc.php:58 test/theme.php:109 msgid "Charsets" msgstr "字符集" -#: libraries/server_links.inc.php:61 test/theme.php:113 +#: libraries/server_links.inc.php:62 test/theme.php:113 msgid "Engines" msgstr "引擎" -#: libraries/server_links.inc.php:76 server_binlog.php:110 +#: libraries/server_links.inc.php:77 server_binlog.php:110 #: server_status.php:364 test/theme.php:121 msgid "Binary log" msgstr "二进制日志" -#: libraries/server_links.inc.php:80 +#: libraries/server_links.inc.php:81 msgid "Processes" msgstr "进程" -#: libraries/server_links.inc.php:92 server_synchronize.php:1092 +#: libraries/server_links.inc.php:93 server_synchronize.php:1092 #: server_synchronize.php:1100 msgid "Synchronize" msgstr "同步" @@ -3742,12 +3787,12 @@ msgstr "分区定义" msgid "Save" msgstr "保存" -#: libraries/tbl_properties.inc.php:780 tbl_structure.php:542 +#: libraries/tbl_properties.inc.php:780 tbl_structure.php:540 #, php-format msgid "Add %s column(s)" msgstr "添加 %s 个字段" -#: libraries/tbl_properties.inc.php:784 tbl_structure.php:536 +#: libraries/tbl_properties.inc.php:784 tbl_structure.php:534 msgid "You have to add at least one column." msgstr "至少要添加一个字段。" @@ -3912,8 +3957,8 @@ msgstr "重置" msgid "Protocol version" msgstr "协议版本" -#: main.php:189 server_privileges.php:1389 server_privileges.php:1536 -#: server_privileges.php:1650 server_privileges.php:2068 +#: main.php:189 server_privileges.php:1406 server_privileges.php:1556 +#: server_privileges.php:1670 server_privileges.php:2089 #: server_processlist.php:54 msgid "User" msgstr "用户" @@ -4352,168 +4397,168 @@ msgstr "存储引擎" msgid "View dump (schema) of databases" msgstr "查看数据库的转存(大纲)" -#: server_privileges.php:24 server_privileges.php:266 +#: server_privileges.php:25 server_privileges.php:267 msgid "Includes all privileges except GRANT." msgstr "除了授权 (GRANT) 以外的所有权限。" -#: server_privileges.php:25 server_privileges.php:192 -#: server_privileges.php:515 +#: server_privileges.php:26 server_privileges.php:193 +#: server_privileges.php:516 msgid "Allows altering the structure of existing tables." msgstr "允许修改现有数据表的结构。" -#: server_privileges.php:26 server_privileges.php:208 -#: server_privileges.php:521 +#: server_privileges.php:27 server_privileges.php:209 +#: server_privileges.php:522 msgid "Allows altering and dropping stored routines." msgstr "允许修改或删除储存过程。" -#: server_privileges.php:27 server_privileges.php:184 -#: server_privileges.php:514 +#: server_privileges.php:28 server_privileges.php:185 +#: server_privileges.php:515 msgid "Allows creating new databases and tables." msgstr "允许创建新数据库和数据表。" -#: server_privileges.php:28 server_privileges.php:207 -#: server_privileges.php:520 +#: server_privileges.php:29 server_privileges.php:208 +#: server_privileges.php:521 msgid "Allows creating stored routines." msgstr "允许创建存储过程。" -#: server_privileges.php:29 server_privileges.php:514 +#: server_privileges.php:30 server_privileges.php:515 msgid "Allows creating new tables." msgstr "允许创建新数据表。" -#: server_privileges.php:30 server_privileges.php:195 -#: server_privileges.php:518 +#: server_privileges.php:31 server_privileges.php:196 +#: server_privileges.php:519 msgid "Allows creating temporary tables." msgstr "允许创建临时表。" -#: server_privileges.php:31 server_privileges.php:209 -#: server_privileges.php:554 +#: server_privileges.php:32 server_privileges.php:210 +#: server_privileges.php:555 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 +#: server_privileges.php:33 server_privileges.php:200 +#: server_privileges.php:204 server_privileges.php:527 +#: server_privileges.php:531 msgid "Allows creating new views." msgstr "允许创建视图。" -#: server_privileges.php:33 server_privileges.php:183 -#: server_privileges.php:506 +#: server_privileges.php:34 server_privileges.php:184 +#: server_privileges.php:507 msgid "Allows deleting data." msgstr "允许删除数据。" -#: server_privileges.php:34 server_privileges.php:185 -#: server_privileges.php:517 +#: server_privileges.php:35 server_privileges.php:186 +#: server_privileges.php:518 msgid "Allows dropping databases and tables." msgstr "允许删除数据库和数据表。" -#: server_privileges.php:35 server_privileges.php:517 +#: server_privileges.php:36 server_privileges.php:518 msgid "Allows dropping tables." msgstr "允许删除数据表。" -#: server_privileges.php:36 server_privileges.php:200 -#: server_privileges.php:534 +#: server_privileges.php:37 server_privileges.php:201 +#: server_privileges.php:535 msgid "Allows to set up events for the event scheduler" msgstr "允许为事件触发器设置事件" -#: server_privileges.php:37 server_privileges.php:210 -#: server_privileges.php:522 +#: server_privileges.php:38 server_privileges.php:211 +#: server_privileges.php:523 msgid "Allows executing stored routines." msgstr "允许运行存储过程。" -#: server_privileges.php:38 server_privileges.php:189 -#: server_privileges.php:509 +#: server_privileges.php:39 server_privileges.php:190 +#: server_privileges.php:510 msgid "Allows importing data from and exporting data into files." msgstr "允许从文件中导入数据以及将数据导出至文件。" -#: server_privileges.php:39 server_privileges.php:540 +#: server_privileges.php:40 server_privileges.php:541 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "允许添加用户和权限,而不允许重新载入权限表。" -#: server_privileges.php:40 server_privileges.php:191 -#: server_privileges.php:516 +#: server_privileges.php:41 server_privileges.php:192 +#: server_privileges.php:517 msgid "Allows creating and dropping indexes." msgstr "允许创建和删除索引。" -#: server_privileges.php:41 server_privileges.php:181 -#: server_privileges.php:442 server_privileges.php:504 +#: server_privileges.php:42 server_privileges.php:182 +#: server_privileges.php:443 server_privileges.php:505 msgid "Allows inserting and replacing data." msgstr "允许插入和替换数据。" -#: server_privileges.php:42 server_privileges.php:196 -#: server_privileges.php:549 +#: server_privileges.php:43 server_privileges.php:197 +#: server_privileges.php:550 msgid "Allows locking tables for the current thread." msgstr "允许锁定当前线程的表。" -#: server_privileges.php:43 server_privileges.php:646 -#: server_privileges.php:648 +#: server_privileges.php:44 server_privileges.php:647 +#: server_privileges.php:649 msgid "Limits the number of new connections the user may open per hour." msgstr "限制用户每小时打开的新连接数。" -#: server_privileges.php:44 server_privileges.php:634 -#: server_privileges.php:636 +#: server_privileges.php:45 server_privileges.php:635 +#: server_privileges.php:637 msgid "Limits the number of queries the user may send to the server per hour." msgstr "限制用户每小时可发送到服务器的查询数。" -#: server_privileges.php:45 server_privileges.php:640 -#: server_privileges.php:642 +#: server_privileges.php:46 server_privileges.php:641 +#: server_privileges.php:643 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." msgstr "限制用户每小时可执行的修改任何数据表或数据库的命令数。" -#: server_privileges.php:46 server_privileges.php:652 -#: server_privileges.php:654 +#: server_privileges.php:47 server_privileges.php:653 +#: server_privileges.php:655 msgid "Limits the number of simultaneous connections the user may have." msgstr "限制该用户的并发连接数。" -#: server_privileges.php:47 server_privileges.php:188 -#: server_privileges.php:544 +#: server_privileges.php:48 server_privileges.php:189 +#: server_privileges.php:545 msgid "Allows viewing processes of all users" msgstr "允许查看所有用户的进程" -#: server_privileges.php:48 server_privileges.php:190 -#: server_privileges.php:448 server_privileges.php:550 +#: server_privileges.php:49 server_privileges.php:191 +#: server_privileges.php:449 server_privileges.php:551 msgid "Has no effect in this MySQL version." msgstr "在此版本的 MySQL 中无效。" -#: server_privileges.php:49 server_privileges.php:186 -#: server_privileges.php:545 +#: server_privileges.php:50 server_privileges.php:187 +#: server_privileges.php:546 msgid "Allows reloading server settings and flushing the server's caches." msgstr "允许重新载入服务器设置并刷新服务器的缓存。" -#: server_privileges.php:50 server_privileges.php:198 -#: server_privileges.php:552 +#: server_privileges.php:51 server_privileges.php:199 +#: server_privileges.php:553 msgid "Allows the user to ask where the slaves / masters are." msgstr "用户有权询问附属者/控制者在哪里。" -#: server_privileges.php:51 server_privileges.php:197 -#: server_privileges.php:553 +#: server_privileges.php:52 server_privileges.php:198 +#: server_privileges.php:554 msgid "Needed for the replication slaves." msgstr "回复附属者所需。" -#: server_privileges.php:52 server_privileges.php:180 -#: server_privileges.php:439 server_privileges.php:503 +#: server_privileges.php:53 server_privileges.php:181 +#: server_privileges.php:440 server_privileges.php:504 msgid "Allows reading data." msgstr "允许读取数据。" -#: server_privileges.php:53 server_privileges.php:193 -#: server_privileges.php:547 +#: server_privileges.php:54 server_privileges.php:194 +#: server_privileges.php:548 msgid "Gives access to the complete list of databases." msgstr "允许访问完整的数据库列表。" -#: server_privileges.php:54 server_privileges.php:204 -#: server_privileges.php:206 server_privileges.php:519 +#: server_privileges.php:55 server_privileges.php:205 +#: server_privileges.php:207 server_privileges.php:520 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "允许执行 SHOW CREATE VIEW 查询。" -#: server_privileges.php:55 server_privileges.php:187 -#: server_privileges.php:546 +#: server_privileges.php:56 server_privileges.php:188 +#: server_privileges.php:547 msgid "Allows shutting down the server." msgstr "允许关闭服务器。" -#: server_privileges.php:56 server_privileges.php:194 -#: server_privileges.php:543 +#: server_privileges.php:57 server_privileges.php:195 +#: server_privileges.php:544 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -4522,152 +4567,152 @@ msgstr "" "允许在达到最大连接数时连接,对于大多数像设置全局变量或杀死其它用户线程这样的" "管理操作是必需的。" -#: server_privileges.php:57 server_privileges.php:201 -#: server_privileges.php:535 +#: server_privileges.php:58 server_privileges.php:202 +#: server_privileges.php:536 msgid "Allows creating and dropping triggers" msgstr "允许创建和删除触发器" -#: server_privileges.php:58 server_privileges.php:182 -#: server_privileges.php:445 server_privileges.php:505 +#: server_privileges.php:59 server_privileges.php:183 +#: server_privileges.php:446 server_privileges.php:506 msgid "Allows changing data." msgstr "允许修改数据。" -#: server_privileges.php:59 server_privileges.php:260 +#: server_privileges.php:60 server_privileges.php:261 msgid "No privileges." msgstr "无权限。" -#: server_privileges.php:302 server_privileges.php:303 +#: server_privileges.php:303 server_privileges.php:304 msgctxt "None privileges" msgid "None" msgstr "无" -#: server_privileges.php:431 server_privileges.php:566 -#: server_privileges.php:1718 server_privileges.php:1724 +#: server_privileges.php:432 server_privileges.php:567 +#: server_privileges.php:1738 server_privileges.php:1744 msgid "Table-specific privileges" msgstr "按表指定权限" -#: server_privileges.php:432 server_privileges.php:574 -#: server_privileges.php:1540 +#: server_privileges.php:433 server_privileges.php:575 +#: server_privileges.php:1560 msgid " Note: MySQL privilege names are expressed in English " msgstr " 注意:MySQL 权限名称会以英文显示 " -#: server_privileges.php:563 server_privileges.php:1539 +#: server_privileges.php:564 server_privileges.php:1559 msgid "Global privileges" msgstr "全局权限" -#: server_privileges.php:565 server_privileges.php:1718 +#: server_privileges.php:566 server_privileges.php:1738 msgid "Database-specific privileges" msgstr "按数据库指定权限" -#: server_privileges.php:610 +#: server_privileges.php:611 msgid "Administration" msgstr "管理" -#: server_privileges.php:630 +#: server_privileges.php:631 msgid "Resource limits" msgstr "资源限制" -#: server_privileges.php:631 +#: server_privileges.php:632 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "注意:若将这些选项设为 0(零) 即不限制。" -#: server_privileges.php:708 +#: server_privileges.php:709 msgid "Login Information" msgstr "登录信息" -#: server_privileges.php:802 +#: server_privileges.php:803 msgid "Do not change the password" msgstr "保持原密码" -#: server_privileges.php:843 server_privileges.php:2205 +#: server_privileges.php:844 server_privileges.php:2226 msgid "No user found." msgstr "未找到用户。" -#: server_privileges.php:887 +#: server_privileges.php:888 #, php-format msgid "The user %s already exists!" msgstr "用户 %s 己存在!" -#: server_privileges.php:970 +#: server_privileges.php:971 msgid "You have added a new user." msgstr "您已添加了一个新用户。" -#: server_privileges.php:1191 +#: server_privileges.php:1196 #, php-format msgid "You have updated the privileges for %s." msgstr "您已更新了 %s 的权限。" -#: server_privileges.php:1215 +#: server_privileges.php:1220 #, php-format msgid "You have revoked the privileges for %s" msgstr "您已撤销 %s 的权限" -#: server_privileges.php:1251 +#: server_privileges.php:1256 #, php-format msgid "The password for %s was changed successfully." msgstr "%s 的密码已修改。" -#: server_privileges.php:1271 +#: server_privileges.php:1276 #, php-format msgid "Deleting %s" msgstr "正在删除 %s" -#: server_privileges.php:1282 +#: server_privileges.php:1287 msgid "No users selected for deleting!" msgstr "没有选择要删除的用户!" -#: server_privileges.php:1285 +#: server_privileges.php:1290 msgid "Reloading the privileges" msgstr "重新载入权限" -#: server_privileges.php:1300 +#: server_privileges.php:1305 msgid "The selected users have been deleted successfully." msgstr "已成功删除选中的用户。" -#: server_privileges.php:1335 +#: server_privileges.php:1344 msgid "The privileges were reloaded successfully." msgstr "已成功重新载入权限。" -#: server_privileges.php:1363 server_privileges.php:1649 +#: server_privileges.php:1380 server_privileges.php:1669 msgid "Edit Privileges" msgstr "编辑权限" -#: server_privileges.php:1372 +#: server_privileges.php:1389 msgid "Revoke" msgstr "撤销" -#: server_privileges.php:1404 +#: server_privileges.php:1424 msgid "User overview" msgstr "查看用户" -#: server_privileges.php:1541 server_privileges.php:1723 -#: server_privileges.php:2072 +#: server_privileges.php:1561 server_privileges.php:1743 +#: server_privileges.php:2093 msgid "Grant" msgstr "授权" -#: server_privileges.php:1560 server_privileges.php:2162 +#: server_privileges.php:1580 server_privileges.php:2183 msgid "Any" msgstr "任意" -#: server_privileges.php:1609 server_privileges.php:1633 -#: server_privileges.php:2027 server_privileges.php:2216 +#: server_privileges.php:1629 server_privileges.php:1653 +#: server_privileges.php:2048 server_privileges.php:2237 msgid "Add a new User" msgstr "添加新用户" -#: server_privileges.php:1614 +#: server_privileges.php:1634 msgid "Remove selected users" msgstr "删除选中的用户" -#: server_privileges.php:1617 +#: server_privileges.php:1637 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 +#: server_privileges.php:1638 server_privileges.php:1639 +#: server_privileges.php:1640 msgid "Drop the databases that have the same names as the users." msgstr "删除与用户同名的数据库。" -#: server_privileges.php:1636 +#: server_privileges.php:1656 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -4679,89 +4724,89 @@ msgstr "" "将可能与服务器使用的用户权限有异。在这种情况下,您应在继续前%s重新载入权限%" "s。" -#: server_privileges.php:1684 +#: server_privileges.php:1704 msgid "The selected user was not found in the privilege table." msgstr "在权限表内找不到选中的用户。" -#: server_privileges.php:1724 +#: server_privileges.php:1744 msgid "Column-specific privileges" msgstr "按字段指定权限" -#: server_privileges.php:1925 +#: server_privileges.php:1945 msgid "Add privileges on the following database" msgstr "在下列数据库添加权限" -#: server_privileges.php:1943 +#: server_privileges.php:1963 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "要使用通配符 _ 和 % 本身,应使用用 \\ 转义" -#: server_privileges.php:1946 +#: server_privileges.php:1966 msgid "Add privileges on the following table" msgstr "在下列数据表添加权限" -#: server_privileges.php:2003 +#: server_privileges.php:2023 msgid "Change Login Information / Copy User" msgstr "修改登录信息/复制用户" -#: server_privileges.php:2006 +#: server_privileges.php:2026 msgid "Create a new user with the same privileges and ..." msgstr "创建具有相同权限的新用户然后 ..." -#: server_privileges.php:2008 +#: server_privileges.php:2028 msgid "... keep the old one." msgstr "... 保留旧用户。" -#: server_privileges.php:2009 +#: server_privileges.php:2029 msgid " ... delete the old one from the user tables." msgstr " ... 从用户表中删除旧用户。" -#: server_privileges.php:2010 +#: server_privileges.php:2030 msgid "" " ... revoke all active privileges from the old one and delete it afterwards." msgstr " ... 撤销旧用户的所有权限,然后删除旧用户。" -#: server_privileges.php:2011 +#: server_privileges.php:2031 msgid "" " ... delete the old one from the user tables and reload the privileges " "afterwards." msgstr " ... 从用户表中删除旧用户,然后重新载入权限。" -#: server_privileges.php:2033 +#: server_privileges.php:2054 msgid "Database for user" msgstr "用户数据库" -#: server_privileges.php:2037 +#: server_privileges.php:2058 msgctxt "Create none database for user" msgid "None" msgstr "无" -#: server_privileges.php:2038 +#: server_privileges.php:2059 msgid "Create database with same name and grant all privileges" msgstr "创建与用户同名的数据库并授予所有权限" -#: server_privileges.php:2039 +#: server_privileges.php:2060 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "给以 用户名_ 开头的数据库 (username\\_%) 授予所有权限" -#: server_privileges.php:2042 +#: server_privileges.php:2063 #, php-format msgid "Grant all privileges on database "%s"" msgstr "授予数据库“%s”的所有权限。" -#: server_privileges.php:2065 +#: server_privileges.php:2086 #, php-format msgid "Users having access to "%s"" msgstr "用户可以访问“%s”" -#: server_privileges.php:2173 +#: server_privileges.php:2194 msgid "global" msgstr "全局" -#: server_privileges.php:2175 +#: server_privileges.php:2196 msgid "database-specific" msgstr "按数据库指定" -#: server_privileges.php:2177 +#: server_privileges.php:2198 msgid "wildcard" msgstr "通配符" @@ -7563,6 +7608,10 @@ msgstr "以新行插入 (忽略错误)" msgid "Show insert query" msgstr "显示插入语句" +#: tbl_change.php:1143 +msgid "and then" +msgstr "然后" + #: tbl_change.php:1147 msgid "Go back to previous page" msgstr "返回上一页" @@ -7641,7 +7690,7 @@ msgstr "(“PRIMARY”必须而且只能作为主键的名称!)" msgid "Add to index  %s column(s)" msgstr "添加 %s 个索引字段" -#: tbl_indexes.php:256 tbl_structure.php:589 tbl_structure.php:600 +#: tbl_indexes.php:256 tbl_structure.php:587 tbl_structure.php:598 msgid "Column count has to be larger than zero." msgstr "至少要有一个字段。" @@ -7753,39 +7802,39 @@ msgstr "检查引用完整性:" msgid "Show tables" msgstr "显示表" -#: tbl_printview.php:310 tbl_structure.php:656 +#: tbl_printview.php:310 tbl_structure.php:654 msgid "Space usage" msgstr "已用空间" -#: tbl_printview.php:314 tbl_structure.php:660 +#: tbl_printview.php:314 tbl_structure.php:658 msgid "Usage" msgstr "已用" -#: tbl_printview.php:341 tbl_structure.php:687 +#: tbl_printview.php:341 tbl_structure.php:685 msgid "Effective" msgstr "有效" -#: tbl_printview.php:366 tbl_structure.php:725 +#: tbl_printview.php:366 tbl_structure.php:723 msgid "Row Statistics" msgstr "行统计" -#: tbl_printview.php:369 tbl_structure.php:728 +#: tbl_printview.php:369 tbl_structure.php:726 msgid "Statements" msgstr "说明" -#: tbl_printview.php:380 tbl_structure.php:740 +#: tbl_printview.php:380 tbl_structure.php:738 msgid "static" msgstr "静态" -#: tbl_printview.php:382 tbl_structure.php:742 +#: tbl_printview.php:382 tbl_structure.php:740 msgid "dynamic" msgstr "动态" -#: tbl_printview.php:404 tbl_structure.php:785 +#: tbl_printview.php:404 tbl_structure.php:783 msgid "Row length" msgstr "行长度" -#: tbl_printview.php:414 tbl_structure.php:793 +#: tbl_printview.php:414 tbl_structure.php:791 msgid " Row size " msgstr " 行大小 " @@ -7850,49 +7899,49 @@ msgstr "无" msgid "Column %s has been dropped" msgstr "已删除字段 %s " -#: tbl_structure.php:385 +#: tbl_structure.php:384 #, php-format msgid "A primary key has been added on %s" msgstr "已将 %s 设为主键" -#: tbl_structure.php:400 tbl_structure.php:414 tbl_structure.php:428 +#: tbl_structure.php:398 tbl_structure.php:412 tbl_structure.php:426 #, php-format msgid "An index has been added on %s" msgstr "已将 %s 设为索引" -#: tbl_structure.php:506 tbl_structure.php:508 +#: tbl_structure.php:504 tbl_structure.php:506 msgid "Relation view" msgstr "关系查看" -#: tbl_structure.php:515 tbl_structure.php:517 +#: tbl_structure.php:513 tbl_structure.php:515 msgid "Propose table structure" msgstr "规划表结构" -#: tbl_structure.php:540 +#: tbl_structure.php:538 #, fuzzy #| msgid "Add column(s)" msgid "Add column" msgstr "增加字段" -#: tbl_structure.php:554 +#: tbl_structure.php:552 msgid "At End of Table" msgstr "于表结尾" -#: tbl_structure.php:555 +#: tbl_structure.php:553 msgid "At Beginning of Table" msgstr "于表开头" -#: tbl_structure.php:556 +#: tbl_structure.php:554 #, php-format msgid "After %s" msgstr "于 %s 之后" -#: tbl_structure.php:594 +#: tbl_structure.php:592 #, php-format msgid "Create an index on  %s columns" msgstr "在第 %s 个字段创建索引" -#: tbl_structure.php:756 +#: tbl_structure.php:754 msgid "partitioned" msgstr "已分区" diff --git a/po/zh_TW.po b/po/zh_TW.po index 45ec9bf96..e48fec32d 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-13 09:03-0400\n" +"POT-Creation-Date: 2010-06-22 00:55+0530\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:1514 +#: libraries/display_tbl.lib.php:417 server_privileges.php:1534 msgid "Show all" msgstr "顯示全部" -#: browse_foreigners.php:82 libraries/common.lib.php:2313 +#: browse_foreigners.php:82 libraries/common.lib.php:2317 #: 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,18 +36,18 @@ 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:2831 -#: libraries/common.lib.php:2838 libraries/db_links.inc.php:75 +#: db_structure.php:106 libraries/common.lib.php:2835 +#: libraries/common.lib.php:2842 libraries/db_links.inc.php:75 #: libraries/tbl_links.inc.php:63 msgid "Search" msgstr "搜索" -#: browse_foreigners.php:153 db_operations.php:385 db_operations.php:429 -#: db_operations.php:499 db_operations.php:609 db_search.php:362 -#: db_structure.php:567 js/messages.php:48 libraries/Config.class.php:1046 +#: browse_foreigners.php:153 db_operations.php:394 db_operations.php:438 +#: db_operations.php:508 db_operations.php:618 db_search.php:362 +#: db_structure.php:565 js/messages.php:53 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:1335 libraries/common.lib.php:2288 +#: libraries/common.lib.php:1335 libraries/common.lib.php:2292 #: 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,15 +58,15 @@ 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:664 server_privileges.php:1624 -#: server_privileges.php:1971 server_privileges.php:2018 -#: server_privileges.php:2057 server_replication.php:235 +#: server_privileges.php:665 server_privileges.php:1644 +#: server_privileges.php:1991 server_privileges.php:2038 +#: server_privileges.php:2078 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 #: tbl_operations.php:302 tbl_operations.php:499 tbl_operations.php:561 -#: tbl_operations.php:681 tbl_select.php:327 tbl_structure.php:562 -#: tbl_structure.php:597 tbl_tracking.php:395 tbl_tracking.php:512 +#: tbl_operations.php:681 tbl_select.php:327 tbl_structure.php:560 +#: tbl_structure.php:595 tbl_tracking.php:395 tbl_tracking.php:512 #: view_create.php:182 view_operations.php:101 msgid "Go" msgstr "執行" @@ -92,7 +92,7 @@ msgstr "使用此值" msgid "Database %1$s has been created." msgstr "資料庫 %s 已被刪除" -#: db_datadict.php:49 db_operations.php:378 +#: db_datadict.php:49 db_operations.php:387 msgid "Database comment: " msgstr "資料庫註解文字: " @@ -119,10 +119,10 @@ 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:2070 +#: pdf_schema.php:1263 pdf_schema.php:1284 server_privileges.php:2091 #: 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 +#: tbl_structure.php:657 tbl_tracking.php:274 tbl_tracking.php:321 msgid "Type" msgstr "型態" @@ -135,7 +135,7 @@ msgstr "型態" msgid "Null" msgstr "Null" -#: db_datadict.php:178 db_structure.php:501 libraries/export/htmlword.php:247 +#: db_datadict.php:178 db_structure.php:499 libraries/export/htmlword.php:247 #: libraries/export/latex.php:360 libraries/export/odt.php:303 #: libraries/export/texytext.php:236 libraries/tbl_properties.inc.php:106 #: pdf_schema.php:1266 pdf_schema.php:1287 tbl_printview.php:146 @@ -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: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 +#: pdf_schema.php:1344 server_privileges.php:1588 server_privileges.php:1599 +#: server_privileges.php:1909 server_privileges.php:1914 +#: server_privileges.php:2208 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:1565 -#: server_privileges.php:1579 server_privileges.php:1889 -#: server_privileges.php:1892 server_privileges.php:2187 sql.php:193 +#: server_databases.php:64 server_privileges.php:1585 +#: server_privileges.php:1599 server_privileges.php:1909 +#: server_privileges.php:1912 server_privileges.php:2208 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" @@ -208,140 +208,136 @@ msgstr "全選" msgid "Unselect All" msgstr "全部取消" -#: db_operations.php:38 tbl_create.php:54 +#: db_operations.php:43 tbl_create.php:54 msgid "The database name is empty!" msgstr "資料庫名稱並未輸入!!" -#: db_operations.php:236 +#: db_operations.php:241 #, php-format msgid "Database %s has been renamed to %s" msgstr "資料庫 %s 已更改名稱為 %s" -#: db_operations.php:240 +#: db_operations.php:245 #, php-format msgid "Database %s has been copied to %s" msgstr "資料庫 %s 已複製到 %s" -#: db_operations.php:412 +#: db_operations.php:421 msgid "Rename database to" msgstr "更改資料庫名稱到" -#: db_operations.php:417 server_processlist.php:57 +#: db_operations.php:426 server_processlist.php:57 msgid "Command" msgstr "指令" -#: db_operations.php:429 tbl_change.php:1143 -msgid "and then" -msgstr "然後" - -#: db_operations.php:455 +#: db_operations.php:464 msgid "Copy database to" msgstr "複製資料庫到" -#: db_operations.php:462 tbl_operations.php:528 tbl_tracking.php:388 +#: db_operations.php:471 tbl_operations.php:528 tbl_tracking.php:388 msgid "Structure only" msgstr "只有結構" -#: db_operations.php:463 tbl_operations.php:529 tbl_tracking.php:390 +#: db_operations.php:472 tbl_operations.php:529 tbl_tracking.php:390 msgid "Structure and data" msgstr "結構與資料" -#: db_operations.php:464 tbl_operations.php:530 tbl_tracking.php:389 +#: db_operations.php:473 tbl_operations.php:530 tbl_tracking.php:389 msgid "Data only" msgstr "只有資料" -#: db_operations.php:472 +#: db_operations.php:481 msgid "CREATE DATABASE before copying" msgstr "複製前建立資料庫 (CREATE DATABASE)" -#: db_operations.php:475 libraries/export/sql.php:52 +#: db_operations.php:484 libraries/export/sql.php:52 #: libraries/export/sql.php:74 libraries/export/sql.php:76 #: libraries/export/sql.php:82 tbl_operations.php:536 #, php-format msgid "Add %s" msgstr "" -#: db_operations.php:479 libraries/export/sql.php:78 tbl_operations.php:299 +#: db_operations.php:488 libraries/export/sql.php:78 tbl_operations.php:299 #: tbl_operations.php:538 msgid "Add AUTO_INCREMENT value" msgstr "新增 AUTO_INCREMENT 數值" -#: db_operations.php:483 tbl_operations.php:545 +#: db_operations.php:492 tbl_operations.php:545 msgid "Add constraints" msgstr "加入限制" -#: db_operations.php:496 +#: db_operations.php:505 msgid "Switch to copied database" msgstr "轉移到複製之資料庫" -#: db_operations.php:537 +#: db_operations.php:546 msgid "BLOB Repository" msgstr "" -#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1352 -#: libraries/server_links.inc.php:49 server_processlist.php:59 +#: db_operations.php:549 db_tracking.php:76 libraries/common.lib.php:1352 +#: libraries/server_links.inc.php:50 server_processlist.php:59 #: tbl_tracking.php:596 test/theme.php:101 msgid "Status" msgstr "狀態" -#: db_operations.php:548 +#: db_operations.php:557 #, fuzzy #| msgid "Enabled" msgctxt "BLOB repository" msgid "Enabled" msgstr "啟動" -#: db_operations.php:552 +#: db_operations.php:561 #, fuzzy msgid "Disable" msgstr "未啟動" -#: db_operations.php:562 +#: db_operations.php:571 msgid "Damaged" msgstr "" -#: db_operations.php:566 +#: db_operations.php:575 #, fuzzy msgctxt "BLOB repository" msgid "Repair" msgstr "修復資料表" -#: db_operations.php:574 +#: db_operations.php:583 #, fuzzy #| msgid "Disabled" msgctxt "BLOB repository" msgid "Disabled" msgstr "未啟動" -#: db_operations.php:578 +#: db_operations.php:587 #, fuzzy msgid "Enable" msgstr "啟動" -#: db_operations.php:602 libraries/Index.class.php:448 +#: db_operations.php:611 libraries/Index.class.php:448 #: libraries/db_structure.lib.php:62 libraries/mysql_charsets.lib.php:107 #: libraries/tbl_properties.inc.php:107 libraries/tbl_properties.inc.php:730 #: server_collations.php:54 server_collations.php:66 server_databases.php:111 #: tbl_operations.php:363 tbl_select.php:137 tbl_structure.php:179 -#: tbl_structure.php:767 tbl_tracking.php:275 tbl_tracking.php:326 +#: tbl_structure.php:765 tbl_tracking.php:275 tbl_tracking.php:326 msgid "Collation" msgstr "校對" -#: db_operations.php:615 main.php:316 pdf_schema.php:34 +#: db_operations.php:624 main.php:316 pdf_schema.php:34 #, php-format msgid "" "The additional features for working with linked tables have been " "deactivated. To find out why click %shere%s." msgstr "關聯資料表的附加功能未能啟動, %s請按此%s 查出問題原因." -#: db_operations.php:648 +#: db_operations.php:657 msgid "Edit PDF Pages" 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:1665 -#: server_privileges.php:1721 server_privileges.php:1985 +#: libraries/header.inc.php:130 pdf_pages.php:424 server_privileges.php:1685 +#: server_privileges.php:1741 server_privileges.php:2005 #: server_synchronize.php:423 server_synchronize.php:866 tbl_tracking.php:592 #: test/theme.php:75 msgid "Table" @@ -350,7 +346,7 @@ msgstr "資料表" #: db_printview.php:105 libraries/db_structure.lib.php:56 #: libraries/header_printview.inc.php:63 libraries/import.lib.php:146 #: navigation.php:638 navigation.php:660 server_databases.php:122 -#: tbl_printview.php:394 tbl_structure.php:365 tbl_structure.php:777 +#: tbl_printview.php:394 tbl_structure.php:365 tbl_structure.php:775 msgid "Rows" msgstr "資料列列數" @@ -358,30 +354,30 @@ msgstr "資料列列數" msgid "Size" msgstr "大小" -#: db_printview.php:162 db_structure.php:457 libraries/export/sql.php:559 +#: db_printview.php:162 db_structure.php:455 libraries/export/sql.php:559 #: libraries/export/sql.php:899 msgid "in use" msgstr "使用中" #: db_printview.php:187 libraries/db_info.inc.php:88 #: libraries/export/sql.php:514 pdf_schema.php:1241 tbl_printview.php:434 -#: tbl_structure.php:809 +#: tbl_structure.php:807 msgid "Creation" msgstr "建立" #: db_printview.php:196 libraries/db_info.inc.php:93 #: libraries/export/sql.php:519 pdf_schema.php:1246 tbl_printview.php:444 -#: tbl_structure.php:817 +#: tbl_structure.php:815 msgid "Last update" msgstr "最後更新" #: db_printview.php:205 libraries/db_info.inc.php:98 #: libraries/export/sql.php:524 pdf_schema.php:1251 tbl_printview.php:454 -#: tbl_structure.php:825 +#: tbl_structure.php:823 msgid "Last check" msgstr "最後檢查" -#: db_printview.php:222 db_structure.php:480 +#: db_printview.php:222 db_structure.php:478 #, fuzzy, php-format #| msgid "%s table(s)" msgid "%s table" @@ -442,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:297 tbl_change.php:1031 tbl_indexes.php:250 +#: server_privileges.php:298 tbl_change.php:1031 tbl_indexes.php:250 #: tbl_select.php:288 msgid "Or" msgstr "或" @@ -515,9 +511,9 @@ 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:2833 +#: db_structure.php:105 libraries/common.lib.php:2837 #: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50 -#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:467 +#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:465 msgid "Browse" msgstr "瀏覽" @@ -562,36 +558,36 @@ 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:2832 libraries/sql_query_form.lib.php:334 +#: libraries/common.lib.php:2836 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:2829 libraries/common.lib.php:2836 +#: libraries/common.lib.php:2833 libraries/common.lib.php:2840 #: 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:1106 #: libraries/tbl_links.inc.php:56 pmd_general.php:134 -#: server_privileges.php:593 server_replication.php:315 tbl_tracking.php:269 +#: server_privileges.php:594 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:1656 +#: db_structure.php:543 db_structure.php:544 db_tracking.php:91 +#: libraries/Index.class.php:483 libraries/common.lib.php:1657 #: 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 -#: tbl_structure.php:152 tbl_structure.php:471 +#: tbl_structure.php:152 tbl_structure.php:469 msgid "Drop" 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:1655 +#: db_structure.php:541 db_structure.php:542 libraries/common.lib.php:1656 #: libraries/mult_submits.inc.php:39 libraries/tbl_links.inc.php:105 msgid "Empty" msgstr "清空" @@ -601,111 +597,111 @@ msgstr "清空" msgid "Table %s has been emptied" msgstr "資料表 %s 已被清空" -#: db_structure.php:326 libraries/tbl_links.inc.php:133 +#: db_structure.php:325 libraries/tbl_links.inc.php:133 #, php-format msgid "View %s has been dropped" msgstr "檢視 %s 己被刪除." -#: db_structure.php:326 libraries/tbl_links.inc.php:133 +#: db_structure.php:325 libraries/tbl_links.inc.php:133 #, php-format msgid "Table %s has been dropped" msgstr "資料表 %s 已被刪除" -#: db_structure.php:333 +#: db_structure.php:332 msgid "Tracking is active." msgstr "" -#: db_structure.php:335 +#: db_structure.php:334 msgid "Tracking is not active." msgstr "" -#: db_structure.php:420 libraries/display_tbl.lib.php:1944 +#: db_structure.php:418 libraries/display_tbl.lib.php:1944 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation%" "s." msgstr "" -#: db_structure.php:434 db_structure.php:448 libraries/header.inc.php:126 +#: db_structure.php:432 db_structure.php:446 libraries/header.inc.php:130 #: libraries/tbl_info.inc.php:66 tbl_structure.php:185 test/theme.php:74 msgid "View" msgstr "檢視" -#: db_structure.php:485 libraries/db_structure.lib.php:49 -#: libraries/server_links.inc.php:70 server_replication.php:33 +#: db_structure.php:483 libraries/db_structure.lib.php:49 +#: libraries/server_links.inc.php:71 server_replication.php:33 #: server_replication.php:164 server_status.php:369 msgid "Replication" msgstr "複製" -#: db_structure.php:489 +#: db_structure.php:487 msgid "Sum" msgstr "總計" -#: db_structure.php:496 libraries/StorageEngine.class.php:356 +#: db_structure.php:494 libraries/StorageEngine.class.php:356 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "這 MySQL 伺服器的預設儲存引擎是 %s " -#: db_structure.php:524 db_structure.php:541 db_structure.php:542 +#: db_structure.php:522 db_structure.php:539 db_structure.php:540 #: 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:1596 tbl_structure.php:455 -#: tbl_structure.php:464 +#: server_databases.php:351 server_privileges.php:1616 tbl_structure.php:453 +#: tbl_structure.php:462 msgid "With selected:" msgstr "選擇的資料表:" -#: db_structure.php:527 libraries/display_tbl.lib.php:2076 -#: server_databases.php:348 server_privileges.php:569 -#: server_privileges.php:1599 tbl_structure.php:458 +#: db_structure.php:525 libraries/display_tbl.lib.php:2076 +#: server_databases.php:348 server_privileges.php:570 +#: server_privileges.php:1619 tbl_structure.php:456 msgid "Check All" msgstr "全選" -#: db_structure.php:531 libraries/display_tbl.lib.php:2077 +#: db_structure.php:529 libraries/display_tbl.lib.php:2077 #: libraries/replication_gui.lib.php:33 server_databases.php:350 -#: server_privileges.php:572 server_privileges.php:1603 tbl_structure.php:462 +#: server_privileges.php:573 server_privileges.php:1623 tbl_structure.php:460 msgid "Uncheck All" msgstr "全部取消" -#: db_structure.php:536 +#: db_structure.php:534 msgid "Check tables having overhead" msgstr "檢查額外記錄 (overhead)" -#: db_structure.php:547 db_structure.php:548 db_structure.php:599 +#: db_structure.php:545 db_structure.php:546 db_structure.php:597 #: libraries/display_tbl.lib.php:2180 libraries/mult_submits.inc.php:28 -#: tbl_structure.php:492 tbl_structure.php:494 +#: tbl_structure.php:490 tbl_structure.php:492 msgid "Print view" msgstr "列印檢視" -#: db_structure.php:549 db_structure.php:550 libraries/mult_submits.inc.php:42 +#: db_structure.php:547 db_structure.php:548 libraries/mult_submits.inc.php:42 #: tbl_operations.php:581 msgid "Check table" msgstr "檢查資料表" -#: db_structure.php:551 db_structure.php:552 libraries/mult_submits.inc.php:47 -#: tbl_operations.php:621 tbl_structure.php:709 tbl_structure.php:711 +#: db_structure.php:549 db_structure.php:550 libraries/mult_submits.inc.php:47 +#: tbl_operations.php:621 tbl_structure.php:707 tbl_structure.php:709 msgid "Optimize table" msgstr "最佳化資料表" -#: db_structure.php:553 db_structure.php:554 libraries/mult_submits.inc.php:52 +#: db_structure.php:551 db_structure.php:552 libraries/mult_submits.inc.php:52 #: tbl_operations.php:611 msgid "Repair table" msgstr "修復資料表" -#: db_structure.php:555 db_structure.php:556 libraries/mult_submits.inc.php:57 +#: db_structure.php:553 db_structure.php:554 libraries/mult_submits.inc.php:57 #: tbl_operations.php:601 msgid "Analyze table" msgstr "分析資料表" -#: db_structure.php:557 db_structure.php:558 libraries/db_links.inc.php:71 +#: db_structure.php:555 db_structure.php:556 libraries/db_links.inc.php:71 #: 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:1380 +#: libraries/server_links.inc.php:85 libraries/tbl_links.inc.php:82 +#: pmd_pdf.php:84 pmd_pdf.php:109 server_privileges.php:1397 #: setup/frames/menu.inc.php:22 tbl_row_action.php:59 msgid "Export" msgstr "輸出" -#: db_structure.php:606 libraries/display_pdf_schema.lib.php:44 +#: db_structure.php:604 libraries/display_pdf_schema.lib.php:44 msgid "Data Dictionary" msgstr "數據字典" @@ -716,10 +712,10 @@ msgstr "" #: db_tracking.php:71 libraries/export/htmlword.php:86 #: libraries/export/latex.php:148 libraries/export/odt.php:113 #: libraries/export/sql.php:342 libraries/export/texytext.php:84 -#: libraries/export/xml.php:255 libraries/header.inc.php:106 +#: libraries/export/xml.php:255 libraries/header.inc.php:110 #: libraries/header_printview.inc.php:58 server_databases.php:169 -#: server_privileges.php:1660 server_privileges.php:1721 -#: server_privileges.php:1979 server_processlist.php:56 +#: server_privileges.php:1680 server_privileges.php:1741 +#: server_privileges.php:1999 server_processlist.php:56 #: server_synchronize.php:1179 server_synchronize.php:1183 #: tbl_tracking.php:591 test/theme.php:65 msgid "Database" @@ -740,8 +736,8 @@ msgstr "" #: db_tracking.php:77 libraries/Index.class.php:440 #: libraries/db_structure.lib.php:53 server_databases.php:203 -#: server_privileges.php:1542 server_privileges.php:1725 -#: server_privileges.php:2073 tbl_structure.php:187 +#: server_privileges.php:1562 server_privileges.php:1745 +#: server_privileges.php:2094 tbl_structure.php:187 msgid "Action" msgstr "執行" @@ -777,8 +773,8 @@ msgstr "只有結構" msgid "Untracked tables" msgstr "" -#: db_tracking.php:172 db_tracking.php:174 tbl_structure.php:528 -#: tbl_structure.php:530 +#: db_tracking.php:172 db_tracking.php:174 tbl_structure.php:526 +#: tbl_structure.php:528 #, fuzzy msgid "Track table" msgstr "檢查資料表" @@ -932,189 +928,235 @@ msgstr "請輸入主機名稱!" msgid "The user name is empty!" msgstr "請輸入使用者名稱!" -#: js/messages.php:44 server_privileges.php:1236 user_password.php:70 +#: js/messages.php:44 server_privileges.php:1241 user_password.php:70 msgid "The password is empty!" msgstr "請輸入密碼!" -#: js/messages.php:45 server_privileges.php:1234 user_password.php:73 +#: js/messages.php:45 server_privileges.php:1239 user_password.php:73 msgid "The passwords aren't the same!" msgstr "第二次輸入的密碼不同!" -#: js/messages.php:49 pmd_general.php:342 pmd_general.php:379 +#: js/messages.php:46 +#, fuzzy +#| msgid "Add a new User" +msgid "Add a New User" +msgstr "新增使用者" + +#: js/messages.php:47 js/messages.php:54 pmd_general.php:342 +#: pmd_general.php:379 msgid "Cancel" msgstr "" -#: js/messages.php:52 pmd_save_pos.php:54 +#: js/messages.php:48 +#, fuzzy +msgid "Create User" +msgstr "伺服器版本" + +#: js/messages.php:49 +#, fuzzy +msgid "Reloading Privileges" +msgstr "整體權限" + +#: js/messages.php:50 +#, fuzzy +#| msgid "Remove selected users" +msgid "Removing Selected Users" +msgstr "移除已選擇使用者" + +#: js/messages.php:57 +#, fuzzy +msgid "Loading" +msgstr "本地" + +#: js/messages.php:58 +#, fuzzy +#| msgid "Processes" +msgid "Processing Request" +msgstr "處理" + +#: js/messages.php:59 +msgid "Error in Processing Request" +msgstr "" + +#: js/messages.php:60 +msgid "Dropping Column" +msgstr "" + +#: js/messages.php:61 +msgid "Adding Primary Key" +msgstr "" + +#: js/messages.php:64 pmd_save_pos.php:54 msgid "Modifications have been saved" msgstr "修改已儲存" -#: js/messages.php:53 pmd_relation_upd.php:49 +#: js/messages.php:65 pmd_relation_upd.php:49 #, fuzzy msgid "Relation deleted" msgstr "關聯檢視" -#: js/messages.php:54 pmd_relation_new.php:64 +#: js/messages.php:66 pmd_relation_new.php:64 msgid "FOREIGN KEY relation added" msgstr "" -#: js/messages.php:55 pmd_relation_new.php:86 +#: js/messages.php:67 pmd_relation_new.php:86 #, fuzzy msgid "Internal relation added" msgstr "內部關聯" -#: js/messages.php:56 pmd_relation_new.php:63 pmd_relation_new.php:88 +#: js/messages.php:68 pmd_relation_new.php:63 pmd_relation_new.php:88 msgid "Error: Relation not added." msgstr "" -#: js/messages.php:57 pmd_relation_new.php:31 +#: js/messages.php:69 pmd_relation_new.php:31 msgid "Error: relation already exists." msgstr "" -#: js/messages.php:58 +#: js/messages.php:70 msgid "Error saving coordinates for Designer." msgstr "" -#: js/messages.php:59 libraries/relation.lib.php:107 +#: js/messages.php:71 libraries/relation.lib.php:107 #: libraries/relation.lib.php:119 msgid "General relation features" msgstr "一般關聯功能" -#: js/messages.php:59 libraries/relation.lib.php:101 +#: js/messages.php:71 libraries/relation.lib.php:101 #: libraries/relation.lib.php:108 msgid "Disabled" msgstr "未啟動" -#: js/messages.php:60 +#: js/messages.php:72 msgid "Select referenced key" msgstr "" -#: js/messages.php:61 +#: js/messages.php:73 msgid "Select Foreign Key" msgstr "" -#: js/messages.php:62 +#: js/messages.php:74 msgid "Please select the primary key or a unique key" msgstr "" -#: js/messages.php:63 pmd_general.php:77 tbl_relation.php:548 +#: js/messages.php:75 pmd_general.php:77 tbl_relation.php:548 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" msgstr "選擇顯示之欄位" #. l10n: Display text for calendar close link -#: js/messages.php:73 +#: js/messages.php:85 #, fuzzy #| msgid "None" msgid "Done" msgstr "不適用" #. l10n: Display text for previous month link in calendar -#: js/messages.php:75 +#: js/messages.php:87 #, fuzzy #| msgid "Previous" msgid "Prev" msgstr "前一頁" #. l10n: Display text for next month link in calendar -#: js/messages.php:77 libraries/common.lib.php:2353 -#: libraries/common.lib.php:2356 libraries/display_tbl.lib.php:338 +#: js/messages.php:89 libraries/common.lib.php:2357 +#: libraries/common.lib.php:2360 libraries/display_tbl.lib.php:338 #: server_binlog.php:205 server_binlog.php:207 tbl_printview.php:424 -#: tbl_structure.php:801 +#: tbl_structure.php:799 msgid "Next" msgstr "下一個" #. l10n: Display text for current month link in calendar -#: js/messages.php:79 +#: js/messages.php:91 #, fuzzy #| msgid "Total" msgid "Today" msgstr "總共" -#: js/messages.php:82 +#: js/messages.php:94 #, fuzzy #| msgid "Binary" msgid "January" msgstr "二進制碼" -#: js/messages.php:83 +#: js/messages.php:95 msgid "February" msgstr "" -#: js/messages.php:84 +#: js/messages.php:96 #, fuzzy #| msgid "Mar" msgid "March" msgstr "Mar" -#: js/messages.php:85 +#: js/messages.php:97 #, fuzzy #| msgid "Apr" msgid "April" msgstr "Apr" -#: js/messages.php:86 +#: js/messages.php:98 msgid "May" msgstr "May" -#: js/messages.php:87 +#: js/messages.php:99 #, fuzzy #| msgid "Jun" msgid "June" msgstr "Jun" -#: js/messages.php:88 +#: js/messages.php:100 #, fuzzy #| msgid "Jul" msgid "July" msgstr "Jul" -#: js/messages.php:89 +#: js/messages.php:101 #, fuzzy #| msgid "Aug" msgid "August" msgstr "Aug" -#: js/messages.php:90 +#: js/messages.php:102 msgid "September" msgstr "" -#: js/messages.php:91 +#: js/messages.php:103 #, fuzzy #| msgid "Oct" msgid "October" msgstr "Oct" -#: js/messages.php:92 +#: js/messages.php:104 msgid "November" msgstr "" -#: js/messages.php:93 +#: js/messages.php:105 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:97 libraries/common.lib.php:1557 +#: js/messages.php:109 libraries/common.lib.php:1557 msgid "Jan" msgstr "Jan" #. l10n: Short month name -#: js/messages.php:99 libraries/common.lib.php:1559 +#: js/messages.php:111 libraries/common.lib.php:1559 msgid "Feb" msgstr "Feb" #. l10n: Short month name -#: js/messages.php:101 libraries/common.lib.php:1561 +#: js/messages.php:113 libraries/common.lib.php:1561 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:103 libraries/common.lib.php:1563 +#: js/messages.php:115 libraries/common.lib.php:1563 msgid "Apr" msgstr "Apr" #. l10n: Short month name -#: js/messages.php:105 libraries/common.lib.php:1565 +#: js/messages.php:117 libraries/common.lib.php:1565 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1122,176 +1164,176 @@ msgid "May" msgstr "May" #. l10n: Short month name -#: js/messages.php:107 libraries/common.lib.php:1567 +#: js/messages.php:119 libraries/common.lib.php:1567 msgid "Jun" msgstr "Jun" #. l10n: Short month name -#: js/messages.php:109 libraries/common.lib.php:1569 +#: js/messages.php:121 libraries/common.lib.php:1569 msgid "Jul" msgstr "Jul" #. l10n: Short month name -#: js/messages.php:111 libraries/common.lib.php:1571 +#: js/messages.php:123 libraries/common.lib.php:1571 msgid "Aug" msgstr "Aug" #. l10n: Short month name -#: js/messages.php:113 libraries/common.lib.php:1573 +#: js/messages.php:125 libraries/common.lib.php:1573 msgid "Sep" msgstr "Sep" #. l10n: Short month name -#: js/messages.php:115 libraries/common.lib.php:1575 +#: js/messages.php:127 libraries/common.lib.php:1575 msgid "Oct" msgstr "Oct" #. l10n: Short month name -#: js/messages.php:117 libraries/common.lib.php:1577 +#: js/messages.php:129 libraries/common.lib.php:1577 msgid "Nov" msgstr "Nov" #. l10n: Short month name -#: js/messages.php:119 libraries/common.lib.php:1579 +#: js/messages.php:131 libraries/common.lib.php:1579 msgid "Dec" msgstr "Dec" -#: js/messages.php:122 +#: js/messages.php:134 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "Sun" -#: js/messages.php:123 +#: js/messages.php:135 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "Mon" -#: js/messages.php:124 +#: js/messages.php:136 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "Tue" -#: js/messages.php:125 +#: js/messages.php:137 msgid "Wednesday" msgstr "" -#: js/messages.php:126 +#: js/messages.php:138 msgid "Thursday" msgstr "" -#: js/messages.php:127 +#: js/messages.php:139 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "Fri" -#: js/messages.php:128 +#: js/messages.php:140 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:132 libraries/common.lib.php:1582 +#: js/messages.php:144 libraries/common.lib.php:1582 msgid "Sun" msgstr "Sun" #. l10n: Short week day name -#: js/messages.php:134 libraries/common.lib.php:1584 +#: js/messages.php:146 libraries/common.lib.php:1584 msgid "Mon" msgstr "Mon" #. l10n: Short week day name -#: js/messages.php:136 libraries/common.lib.php:1586 +#: js/messages.php:148 libraries/common.lib.php:1586 msgid "Tue" msgstr "Tue" #. l10n: Short week day name -#: js/messages.php:138 libraries/common.lib.php:1588 +#: js/messages.php:150 libraries/common.lib.php:1588 msgid "Wed" msgstr "Wed" #. l10n: Short week day name -#: js/messages.php:140 libraries/common.lib.php:1590 +#: js/messages.php:152 libraries/common.lib.php:1590 msgid "Thu" msgstr "Thu" #. l10n: Short week day name -#: js/messages.php:142 libraries/common.lib.php:1592 +#: js/messages.php:154 libraries/common.lib.php:1592 msgid "Fri" msgstr "Fri" #. l10n: Short week day name -#: js/messages.php:144 libraries/common.lib.php:1594 +#: js/messages.php:156 libraries/common.lib.php:1594 msgid "Sat" msgstr "Sat" #. l10n: Minimal week day name -#: js/messages.php:148 +#: js/messages.php:160 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "Sun" #. l10n: Minimal week day name -#: js/messages.php:150 +#: js/messages.php:162 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "Mon" #. l10n: Minimal week day name -#: js/messages.php:152 +#: js/messages.php:164 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "Tue" #. l10n: Minimal week day name -#: js/messages.php:154 +#: js/messages.php:166 #, fuzzy #| msgid "Wed" msgid "We" msgstr "Wed" #. l10n: Minimal week day name -#: js/messages.php:156 +#: js/messages.php:168 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "Thu" #. l10n: Minimal week day name -#: js/messages.php:158 +#: js/messages.php:170 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "Fri" #. l10n: Minimal week day name -#: js/messages.php:160 +#: js/messages.php:172 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "Sat" #. l10n: Column header for week of the year in calendar -#: js/messages.php:162 +#: js/messages.php:174 msgid "Wk" msgstr "" -#: js/messages.php:164 +#: js/messages.php:176 msgid "Hour" msgstr "" -#: js/messages.php:165 +#: js/messages.php:177 #, fuzzy #| msgid "in use" msgid "Minute" msgstr "使用中" -#: js/messages.php:166 +#: js/messages.php:178 #, fuzzy #| msgid "per second" msgid "Second" @@ -1349,7 +1391,7 @@ msgstr "索引" #: libraries/Index.class.php:444 libraries/mult_submits.inc.php:103 #: libraries/tbl_properties.inc.php:519 tbl_structure.php:33 -#: tbl_structure.php:155 tbl_structure.php:159 tbl_structure.php:474 +#: tbl_structure.php:155 tbl_structure.php:159 tbl_structure.php:472 #: tbl_tracking.php:322 msgid "Unique" msgstr "唯一鍵 UNIQUE" @@ -1391,8 +1433,8 @@ msgid "" "removed." msgstr "" -#: libraries/List_Database.class.php:431 libraries/server_links.inc.php:41 -#: server_databases.php:88 server_privileges.php:1660 +#: libraries/List_Database.class.php:431 libraries/server_links.inc.php:42 +#: server_databases.php:88 server_privileges.php:1680 #: setup/lib/messages.inc.php:110 test/theme.php:93 msgid "Databases" msgstr "資料庫" @@ -1559,7 +1601,7 @@ msgstr "密碼:" msgid "Server Choice" msgstr "選擇伺服器" -#: libraries/auth/cookie.auth.lib.php:320 libraries/header.inc.php:59 +#: libraries/auth/cookie.auth.lib.php:320 libraries/header.inc.php:63 msgid "Cookies must be enabled past this point." msgstr "Cookies 必須啟動才能登入." @@ -1638,7 +1680,7 @@ msgstr "" "當文編碼模組讀取後,未能使用 iconv, libiconv 或 recode_string 功能. 請檢查您" "的 php 設定." -#: libraries/common.inc.php:583 +#: libraries/common.inc.php:587 msgid "" "phpMyAdmin was unable to read your configuration file!
This might " "happen if PHP finds a parse error in it or PHP cannot find the file.
如果按下連結後出現空白頁, 即代表沒有任何問" "題." -#: libraries/common.inc.php:594 +#: libraries/common.inc.php:598 #, fuzzy, php-format #| msgid "Could not load default configuration from: \"%1$s\"" msgid "Could not load default configuration from: %1$s" msgstr "無法讀取預設設定: \"%1$s\"" -#: libraries/common.inc.php:599 +#: libraries/common.inc.php:603 msgid "" "The $cfg['PmaAbsoluteUri'] directive MUST be set in your " "configuration file!" msgstr " 必須在設定檔內設定 $cfg['PmaAbsoluteUri'] !" -#: libraries/common.inc.php:629 +#: libraries/common.inc.php:633 #, fuzzy, php-format #| msgid "Invalid server index: \"%s\"" msgid "Invalid server index: %s" msgstr "伺服器索引錯誤: \"%s\"" -#: libraries/common.inc.php:636 +#: libraries/common.inc.php:640 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "伺服器 %1$s 主機名稱錯誤, 請翻查設定值." -#: libraries/common.inc.php:645 libraries/header.inc.php:96 +#: libraries/common.inc.php:649 libraries/header.inc.php:100 #: libraries/select_server.lib.php:41 libraries/select_server.lib.php:47 #: main.php:185 test/theme.php:57 msgid "Server" msgstr "伺服器" -#: libraries/common.inc.php:823 +#: libraries/common.inc.php:827 msgid "Invalid authentication method set in configuration:" msgstr "於設定內設定錯誤認證方式:" -#: libraries/common.inc.php:926 +#: libraries/common.inc.php:930 #, php-format msgid "You should upgrade to %s %s or later." msgstr "您應該更新到 %s %s 或之後." @@ -1820,45 +1862,45 @@ msgstr "." msgid "%B %d, %Y at %I:%M %p" msgstr "%B %d, %Y, %I:%M %p" -#: libraries/common.lib.php:1907 +#: libraries/common.lib.php:1911 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s 日, %s 小時, %s 分鐘 %s 秒" -#: libraries/common.lib.php:2322 libraries/common.lib.php:2325 +#: libraries/common.lib.php:2326 libraries/common.lib.php:2329 #: libraries/display_tbl.lib.php:290 server_status.php:719 msgid "Begin" msgstr "第一頁" -#: libraries/common.lib.php:2323 libraries/common.lib.php:2326 +#: libraries/common.lib.php:2327 libraries/common.lib.php:2330 #: libraries/display_tbl.lib.php:291 server_binlog.php:168 #: server_binlog.php:170 msgid "Previous" msgstr "前一頁" -#: libraries/common.lib.php:2354 libraries/common.lib.php:2357 +#: libraries/common.lib.php:2358 libraries/common.lib.php:2361 #: libraries/display_tbl.lib.php:353 msgid "End" msgstr "最後一頁" -#: libraries/common.lib.php:2430 +#: libraries/common.lib.php:2434 #, php-format msgid "Jump to database "%s"." msgstr "跳到資料庫 "%s"." -#: libraries/common.lib.php:2450 +#: libraries/common.lib.php:2454 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" -#: libraries/common.lib.php:2830 libraries/common.lib.php:2837 +#: libraries/common.lib.php:2834 libraries/common.lib.php:2841 #: libraries/db_links.inc.php:68 libraries/export/sql.php:25 -#: libraries/import/sql.php:18 libraries/server_links.inc.php:45 +#: libraries/import/sql.php:18 libraries/server_links.inc.php:46 #: libraries/tbl_links.inc.php:60 querywindow.php:99 test/theme.php:97 msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2839 libraries/db_links.inc.php:104 +#: libraries/common.lib.php:2843 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,15 +1947,15 @@ msgstr "依範例查詢 (QBE)" msgid "Designer" msgstr "" -#: libraries/db_links.inc.php:98 libraries/server_links.inc.php:88 +#: libraries/db_links.inc.php:98 libraries/server_links.inc.php:89 #: libraries/tbl_links.inc.php:91 pmd_pdf.php:84 pmd_pdf.php:110 #: setup/frames/menu.inc.php:21 msgid "Import" msgstr "載入" -#: libraries/db_links.inc.php:111 libraries/server_links.inc.php:66 -#: server_privileges.php:111 server_privileges.php:1722 -#: server_privileges.php:2071 test/theme.php:117 +#: libraries/db_links.inc.php:111 libraries/server_links.inc.php:67 +#: server_privileges.php:112 server_privileges.php:1742 +#: server_privileges.php:2092 test/theme.php:117 msgid "Privileges" msgstr "權限" @@ -1932,7 +1974,7 @@ msgid "" msgstr "可能接近. 請參看 FAQ 3.11" #: libraries/db_structure.lib.php:69 server_databases.php:142 -#: tbl_printview.php:336 tbl_structure.php:682 +#: tbl_printview.php:336 tbl_structure.php:680 msgid "Overhead" msgstr "多餘" @@ -1949,7 +1991,7 @@ msgstr "伺服器並無回應" msgid "(or the local MySQL server's socket is not correctly configured)" msgstr "( 或者本機 MySQL 伺服器之 socket 並未正確設定)" -#: libraries/dbi/mysql.dbi.lib.php:362 tbl_structure.php:608 +#: libraries/dbi/mysql.dbi.lib.php:362 tbl_structure.php:606 msgid "Details..." msgstr "" @@ -1959,22 +2001,22 @@ msgid "Change password" msgstr "更改密碼" #: libraries/display_change_password.lib.php:35 -#: libraries/replication_gui.lib.php:345 server_privileges.php:807 +#: libraries/replication_gui.lib.php:345 server_privileges.php:808 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:796 -#: server_privileges.php:800 server_privileges.php:811 -#: server_privileges.php:1538 server_synchronize.php:1175 +#: libraries/replication_gui.lib.php:349 server_privileges.php:797 +#: server_privileges.php:801 server_privileges.php:812 +#: server_privileges.php:1558 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:815 server_privileges.php:818 +#: server_privileges.php:816 server_privileges.php:819 msgid "Re-type" msgstr "確認密碼" @@ -1989,12 +2031,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:822 +#: libraries/replication_gui.lib.php:360 server_privileges.php:823 msgid "Generate Password" msgstr "產生密碼" #: libraries/display_change_password.lib.php:75 -#: libraries/replication_gui.lib.php:363 server_privileges.php:825 +#: libraries/replication_gui.lib.php:363 server_privileges.php:826 msgid "Generate" msgstr "產生" @@ -2007,8 +2049,8 @@ msgstr "建立新資料庫" msgid "Create" msgstr "建立" -#: libraries/display_create_database.lib.php:40 server_privileges.php:113 -#: server_privileges.php:1427 server_replication.php:35 +#: libraries/display_create_database.lib.php:40 server_privileges.php:114 +#: server_privileges.php:1447 server_replication.php:35 msgid "No Privileges" msgstr "沒有權限" @@ -2097,7 +2139,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:1875 server_processlist.php:75 +#: server_privileges.php:1895 server_processlist.php:75 msgid "None" msgstr "不適用" @@ -2283,7 +2325,7 @@ msgstr "依鍵名排序" #: libraries/import/docsql.php:34 libraries/import/ldi.php:47 #: libraries/import/ods.php:30 libraries/import/sql.php:20 #: libraries/import/xls.php:26 libraries/import/xlsx.php:26 -#: libraries/import/xml.php:25 tbl_select.php:267 tbl_structure.php:753 +#: libraries/import/xml.php:25 tbl_select.php:267 tbl_structure.php:751 #, fuzzy msgid "Options" msgstr "管理" @@ -2362,7 +2404,7 @@ msgstr "查詢需時 %01.4f 秒" #: libraries/display_tbl.lib.php:2089 libraries/mult_submits.inc.php:113 #: querywindow.php:125 querywindow.php:129 querywindow.php:132 -#: tbl_structure.php:25 tbl_structure.php:150 tbl_structure.php:470 +#: tbl_structure.php:25 tbl_structure.php:150 tbl_structure.php:468 msgid "Change" msgstr "修改" @@ -2428,7 +2470,7 @@ msgstr "緩衝區使用空間" #: libraries/engines/innodb.lib.php:194 server_databases.php:137 #: server_databases.php:305 server_status.php:525 server_status.php:586 -#: server_status.php:607 tbl_printview.php:351 tbl_structure.php:696 +#: server_status.php:607 tbl_printview.php:351 tbl_structure.php:694 msgid "Total" msgstr "總共" @@ -2683,7 +2725,7 @@ msgid "" msgstr "" #: libraries/export/codegen.php:37 setup/lib/messages.inc.php:88 -#: tbl_printview.php:376 tbl_structure.php:737 +#: tbl_printview.php:376 tbl_structure.php:735 msgid "Format" msgstr "格式" @@ -2755,8 +2797,8 @@ 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:576 server_replication.php:316 tbl_printview.php:317 -#: tbl_structure.php:665 +#: server_privileges.php:577 server_replication.php:316 tbl_printview.php:317 +#: tbl_structure.php:663 msgid "Data" msgstr "資料" @@ -2805,9 +2847,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:731 -#: server_privileges.php:734 server_privileges.php:790 -#: server_privileges.php:1537 server_privileges.php:2069 +#: libraries/replication_gui.lib.php:329 server_privileges.php:732 +#: server_privileges.php:735 server_privileges.php:791 +#: server_privileges.php:1557 server_privileges.php:2090 #: server_processlist.php:55 server_synchronize.php:1159 msgid "Host" msgstr "主機" @@ -3007,7 +3049,7 @@ msgstr "" msgid "Open new phpMyAdmin window" msgstr "開啟新 phpMyAdmin 視窗" -#: libraries/header.inc.php:115 +#: libraries/header.inc.php:119 #, fuzzy msgid "New table" msgstr "沒有資料表" @@ -3170,20 +3212,20 @@ 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 +#: tbl_structure.php:471 msgid "Primary" msgstr "主鍵 PRIMARY" #: libraries/mult_submits.inc.php:98 libraries/tbl_properties.inc.php:116 #: libraries/tbl_properties.inc.php:525 tbl_printview.php:326 #: tbl_structure.php:31 tbl_structure.php:154 tbl_structure.php:158 -#: tbl_structure.php:475 tbl_structure.php:673 +#: tbl_structure.php:473 tbl_structure.php:671 msgid "Index" msgstr "索引鍵 INDEX" #: libraries/mult_submits.inc.php:108 libraries/tbl_properties.inc.php:531 #: tbl_structure.php:35 tbl_structure.php:156 tbl_structure.php:160 -#: tbl_structure.php:478 +#: tbl_structure.php:476 msgid "Fulltext" msgstr "全文檢索" @@ -3484,8 +3526,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:711 -#: server_privileges.php:714 server_privileges.php:721 +#: libraries/replication_gui.lib.php:259 server_privileges.php:712 +#: server_privileges.php:715 server_privileges.php:722 #: server_synchronize.php:1171 msgid "User name" msgstr "使用者名稱" @@ -3511,7 +3553,7 @@ msgstr "資訊" #: 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 +#: tbl_structure.php:727 msgid "Value" msgstr "值" @@ -3529,34 +3571,34 @@ msgstr "" msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:254 server_privileges.php:716 +#: libraries/replication_gui.lib.php:254 server_privileges.php:717 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:717 -#: server_privileges.php:784 server_privileges.php:808 -#: server_privileges.php:1928 server_privileges.php:1958 +#: libraries/replication_gui.lib.php:346 server_privileges.php:718 +#: server_privileges.php:785 server_privileges.php:809 +#: server_privileges.php:1948 server_privileges.php:1978 msgid "Use text field" msgstr "文字輸入" -#: libraries/replication_gui.lib.php:302 server_privileges.php:764 +#: libraries/replication_gui.lib.php:302 server_privileges.php:765 msgid "Any host" msgstr "任何主機" -#: libraries/replication_gui.lib.php:306 server_privileges.php:768 +#: libraries/replication_gui.lib.php:306 server_privileges.php:769 msgid "Local" msgstr "本地" -#: libraries/replication_gui.lib.php:312 server_privileges.php:773 +#: libraries/replication_gui.lib.php:312 server_privileges.php:774 msgid "This Host" msgstr "指定主機" -#: libraries/replication_gui.lib.php:318 server_privileges.php:779 +#: libraries/replication_gui.lib.php:318 server_privileges.php:780 msgid "Use Host Table" msgstr "使用主機資料表" -#: libraries/replication_gui.lib.php:331 server_privileges.php:792 +#: libraries/replication_gui.lib.php:331 server_privileges.php:793 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -3591,29 +3633,29 @@ msgstr "不知名語言: %1$s." msgid "Servers" msgstr "伺服器" -#: libraries/server_links.inc.php:53 server_engines.php:112 +#: libraries/server_links.inc.php:54 server_engines.php:112 #: server_engines.php:116 server_status.php:415 test/theme.php:105 msgid "Variables" msgstr "資訊" -#: libraries/server_links.inc.php:57 test/theme.php:109 +#: libraries/server_links.inc.php:58 test/theme.php:109 msgid "Charsets" msgstr "文字編碼" -#: libraries/server_links.inc.php:61 test/theme.php:113 +#: libraries/server_links.inc.php:62 test/theme.php:113 msgid "Engines" msgstr "引擎" -#: libraries/server_links.inc.php:76 server_binlog.php:110 +#: libraries/server_links.inc.php:77 server_binlog.php:110 #: server_status.php:364 test/theme.php:121 msgid "Binary log" msgstr "二進制記錄" -#: libraries/server_links.inc.php:80 +#: libraries/server_links.inc.php:81 msgid "Processes" msgstr "處理" -#: libraries/server_links.inc.php:92 server_synchronize.php:1092 +#: libraries/server_links.inc.php:93 server_synchronize.php:1092 #: server_synchronize.php:1100 msgid "Synchronize" msgstr "" @@ -3849,13 +3891,13 @@ msgstr "" msgid "Save" msgstr "儲存" -#: libraries/tbl_properties.inc.php:780 tbl_structure.php:542 +#: libraries/tbl_properties.inc.php:780 tbl_structure.php:540 #, fuzzy, php-format #| msgid "Add %s field(s)" msgid "Add %s column(s)" msgstr "新增 %s 個欄位" -#: libraries/tbl_properties.inc.php:784 tbl_structure.php:536 +#: libraries/tbl_properties.inc.php:784 tbl_structure.php:534 #, fuzzy #| msgid "You have to add at least one field." msgid "You have to add at least one column." @@ -4038,8 +4080,8 @@ msgstr "重設" msgid "Protocol version" msgstr "通訊協定版本" -#: main.php:189 server_privileges.php:1389 server_privileges.php:1536 -#: server_privileges.php:1650 server_privileges.php:2068 +#: main.php:189 server_privileges.php:1406 server_privileges.php:1556 +#: server_privileges.php:1670 server_privileges.php:2089 #: server_processlist.php:54 msgid "User" msgstr "使用者" @@ -4473,168 +4515,168 @@ msgstr "儲存引擎" msgid "View dump (schema) of databases" msgstr "顯示資料庫概要 (schema)" -#: server_privileges.php:24 server_privileges.php:266 +#: server_privileges.php:25 server_privileges.php:267 msgid "Includes all privileges except GRANT." msgstr "包括所有權限除了授權 (GRNANT)." -#: server_privileges.php:25 server_privileges.php:192 -#: server_privileges.php:515 +#: server_privileges.php:26 server_privileges.php:193 +#: server_privileges.php:516 msgid "Allows altering the structure of existing tables." msgstr "容許修改現有資料表的結構." -#: server_privileges.php:26 server_privileges.php:208 -#: server_privileges.php:521 +#: server_privileges.php:27 server_privileges.php:209 +#: server_privileges.php:522 msgid "Allows altering and dropping stored routines." msgstr "容許修改及刪除儲存程序." -#: server_privileges.php:27 server_privileges.php:184 -#: server_privileges.php:514 +#: server_privileges.php:28 server_privileges.php:185 +#: server_privileges.php:515 msgid "Allows creating new databases and tables." msgstr "容許建立新資料庫及資料表." -#: server_privileges.php:28 server_privileges.php:207 -#: server_privileges.php:520 +#: server_privileges.php:29 server_privileges.php:208 +#: server_privileges.php:521 msgid "Allows creating stored routines." msgstr "容許建立儲存程序" -#: server_privileges.php:29 server_privileges.php:514 +#: server_privileges.php:30 server_privileges.php:515 msgid "Allows creating new tables." msgstr "容許建立新資料表." -#: server_privileges.php:30 server_privileges.php:195 -#: server_privileges.php:518 +#: server_privileges.php:31 server_privileges.php:196 +#: server_privileges.php:519 msgid "Allows creating temporary tables." msgstr "容許建立暫時性資料表." -#: server_privileges.php:31 server_privileges.php:209 -#: server_privileges.php:554 +#: server_privileges.php:32 server_privileges.php:210 +#: server_privileges.php:555 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 +#: server_privileges.php:33 server_privileges.php:200 +#: server_privileges.php:204 server_privileges.php:527 +#: server_privileges.php:531 msgid "Allows creating new views." msgstr "容許建立新的檢視." -#: server_privileges.php:33 server_privileges.php:183 -#: server_privileges.php:506 +#: server_privileges.php:34 server_privileges.php:184 +#: server_privileges.php:507 msgid "Allows deleting data." msgstr "容許刪除記錄." -#: server_privileges.php:34 server_privileges.php:185 -#: server_privileges.php:517 +#: server_privileges.php:35 server_privileges.php:186 +#: server_privileges.php:518 msgid "Allows dropping databases and tables." msgstr "容許刪除資料庫及資料表." -#: server_privileges.php:35 server_privileges.php:517 +#: server_privileges.php:36 server_privileges.php:518 msgid "Allows dropping tables." msgstr "容許刪除資料表." -#: server_privileges.php:36 server_privileges.php:200 -#: server_privileges.php:534 +#: server_privileges.php:37 server_privileges.php:201 +#: server_privileges.php:535 msgid "Allows to set up events for the event scheduler" msgstr "" -#: server_privileges.php:37 server_privileges.php:210 -#: server_privileges.php:522 +#: server_privileges.php:38 server_privileges.php:211 +#: server_privileges.php:523 msgid "Allows executing stored routines." msgstr "容許執行儲存程序." -#: server_privileges.php:38 server_privileges.php:189 -#: server_privileges.php:509 +#: server_privileges.php:39 server_privileges.php:190 +#: server_privileges.php:510 msgid "Allows importing data from and exporting data into files." msgstr "容許輸入及輸出數據到檔案." -#: server_privileges.php:39 server_privileges.php:540 +#: server_privileges.php:40 server_privileges.php:541 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "容許新增使用者及權限而無需重新讀取權限資料表." -#: server_privileges.php:40 server_privileges.php:191 -#: server_privileges.php:516 +#: server_privileges.php:41 server_privileges.php:192 +#: server_privileges.php:517 msgid "Allows creating and dropping indexes." msgstr "容許建立及刪除索引." -#: server_privileges.php:41 server_privileges.php:181 -#: server_privileges.php:442 server_privileges.php:504 +#: server_privileges.php:42 server_privileges.php:182 +#: server_privileges.php:443 server_privileges.php:505 msgid "Allows inserting and replacing data." msgstr "容許新增及取代數據." -#: server_privileges.php:42 server_privileges.php:196 -#: server_privileges.php:549 +#: server_privileges.php:43 server_privileges.php:197 +#: server_privileges.php:550 msgid "Allows locking tables for the current thread." msgstr "容許鎖上現時連線之資料表." -#: server_privileges.php:43 server_privileges.php:646 -#: server_privileges.php:648 +#: server_privileges.php:44 server_privileges.php:647 +#: server_privileges.php:649 msgid "Limits the number of new connections the user may open per hour." msgstr "限制每小時使用者開啟新連線的數目." -#: server_privileges.php:44 server_privileges.php:634 -#: server_privileges.php:636 +#: server_privileges.php:45 server_privileges.php:635 +#: server_privileges.php:637 msgid "Limits the number of queries the user may send to the server per hour." msgstr "限制每小時使用者查詢的數目." -#: server_privileges.php:45 server_privileges.php:640 -#: server_privileges.php:642 +#: server_privileges.php:46 server_privileges.php:641 +#: server_privileges.php:643 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." msgstr "限制每小時使用者更改資料表及數據表之指令的數目." -#: server_privileges.php:46 server_privileges.php:652 -#: server_privileges.php:654 +#: server_privileges.php:47 server_privileges.php:653 +#: server_privileges.php:655 msgid "Limits the number of simultaneous connections the user may have." msgstr "限制每個使用者之同步連線." -#: server_privileges.php:47 server_privileges.php:188 -#: server_privileges.php:544 +#: server_privileges.php:48 server_privileges.php:189 +#: server_privileges.php:545 msgid "Allows viewing processes of all users" msgstr "" -#: server_privileges.php:48 server_privileges.php:190 -#: server_privileges.php:448 server_privileges.php:550 +#: server_privileges.php:49 server_privileges.php:191 +#: server_privileges.php:449 server_privileges.php:551 msgid "Has no effect in this MySQL version." msgstr "於本 MySQL 版本無效." -#: server_privileges.php:49 server_privileges.php:186 -#: server_privileges.php:545 +#: server_privileges.php:50 server_privileges.php:187 +#: server_privileges.php:546 msgid "Allows reloading server settings and flushing the server's caches." msgstr "容許重新讀取伺服器設定及強行更新伺服器快取記憶." -#: server_privileges.php:50 server_privileges.php:198 -#: server_privileges.php:552 +#: server_privileges.php:51 server_privileges.php:199 +#: server_privileges.php:553 msgid "Allows the user to ask where the slaves / masters are." msgstr "容許用戶查詢 slaves / masters 在何處." -#: server_privileges.php:51 server_privileges.php:197 -#: server_privileges.php:553 +#: server_privileges.php:52 server_privileges.php:198 +#: server_privileges.php:554 msgid "Needed for the replication slaves." msgstr "需要複製的 slaves." -#: server_privileges.php:52 server_privileges.php:180 -#: server_privileges.php:439 server_privileges.php:503 +#: server_privileges.php:53 server_privileges.php:181 +#: server_privileges.php:440 server_privileges.php:504 msgid "Allows reading data." msgstr "容許讀取數據." -#: server_privileges.php:53 server_privileges.php:193 -#: server_privileges.php:547 +#: server_privileges.php:54 server_privileges.php:194 +#: server_privileges.php:548 msgid "Gives access to the complete list of databases." msgstr "可讀取整個資料庫清單." -#: server_privileges.php:54 server_privileges.php:204 -#: server_privileges.php:206 server_privileges.php:519 +#: server_privileges.php:55 server_privileges.php:205 +#: server_privileges.php:207 server_privileges.php:520 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "容許執行 SHOW CREATE VIEW 查詢." -#: server_privileges.php:55 server_privileges.php:187 -#: server_privileges.php:546 +#: server_privileges.php:56 server_privileges.php:188 +#: server_privileges.php:547 msgid "Allows shutting down the server." msgstr "容許停止伺服器." -#: server_privileges.php:56 server_privileges.php:194 -#: server_privileges.php:543 +#: server_privileges.php:57 server_privileges.php:195 +#: server_privileges.php:544 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -4643,157 +4685,157 @@ msgstr "" "容許連線, 就算超過了最大連線限制; 用於最高系統管理如設定整體權限或中止其他使" "用者指令." -#: server_privileges.php:57 server_privileges.php:201 -#: server_privileges.php:535 +#: server_privileges.php:58 server_privileges.php:202 +#: server_privileges.php:536 #, fuzzy msgid "Allows creating and dropping triggers" msgstr "容許建立及刪除索引." -#: server_privileges.php:58 server_privileges.php:182 -#: server_privileges.php:445 server_privileges.php:505 +#: server_privileges.php:59 server_privileges.php:183 +#: server_privileges.php:446 server_privileges.php:506 msgid "Allows changing data." msgstr "容許更新數據." -#: server_privileges.php:59 server_privileges.php:260 +#: server_privileges.php:60 server_privileges.php:261 msgid "No privileges." msgstr "沒有權限." -#: server_privileges.php:302 server_privileges.php:303 +#: server_privileges.php:303 server_privileges.php:304 #, fuzzy #| msgid "None" msgctxt "None privileges" msgid "None" msgstr "不適用" -#: server_privileges.php:431 server_privileges.php:566 -#: server_privileges.php:1718 server_privileges.php:1724 +#: server_privileges.php:432 server_privileges.php:567 +#: server_privileges.php:1738 server_privileges.php:1744 msgid "Table-specific privileges" msgstr "指定資料表權限" -#: server_privileges.php:432 server_privileges.php:574 -#: server_privileges.php:1540 +#: server_privileges.php:433 server_privileges.php:575 +#: server_privileges.php:1560 msgid " Note: MySQL privilege names are expressed in English " msgstr "注意: MySQL 權限名稱會以英語顯示" -#: server_privileges.php:563 server_privileges.php:1539 +#: server_privileges.php:564 server_privileges.php:1559 msgid "Global privileges" msgstr "整體權限" -#: server_privileges.php:565 server_privileges.php:1718 +#: server_privileges.php:566 server_privileges.php:1738 msgid "Database-specific privileges" msgstr "指定資料庫權限" -#: server_privileges.php:610 +#: server_privileges.php:611 msgid "Administration" msgstr "系統管理" -#: server_privileges.php:630 +#: server_privileges.php:631 msgid "Resource limits" msgstr "資源限制" -#: server_privileges.php:631 +#: server_privileges.php:632 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "註: 設定這些選項為 0 (零) 可解除限制." -#: server_privileges.php:708 +#: server_privileges.php:709 msgid "Login Information" msgstr "登入資訊" -#: server_privileges.php:802 +#: server_privileges.php:803 msgid "Do not change the password" msgstr "請不要更改密碼" -#: server_privileges.php:843 server_privileges.php:2205 +#: server_privileges.php:844 server_privileges.php:2226 #, fuzzy #| msgid "No user(s) found." msgid "No user found." msgstr "找不到使用者" -#: server_privileges.php:887 +#: server_privileges.php:888 #, php-format msgid "The user %s already exists!" msgstr "使用者 %s 己存在!" -#: server_privileges.php:970 +#: server_privileges.php:971 msgid "You have added a new user." msgstr "您已新增了一個新使用者." -#: server_privileges.php:1191 +#: server_privileges.php:1196 #, php-format msgid "You have updated the privileges for %s." msgstr "您已經更新了 %s 的權限." -#: server_privileges.php:1215 +#: server_privileges.php:1220 #, php-format msgid "You have revoked the privileges for %s" msgstr "您已移除這位使用者的權限: %s" -#: server_privileges.php:1251 +#: server_privileges.php:1256 #, php-format msgid "The password for %s was changed successfully." msgstr "%s 的密碼已成功更改." -#: server_privileges.php:1271 +#: server_privileges.php:1276 #, php-format msgid "Deleting %s" msgstr "刪除 %s" -#: server_privileges.php:1282 +#: server_privileges.php:1287 msgid "No users selected for deleting!" msgstr "並未選擇需要刪除之使用者!" -#: server_privileges.php:1285 +#: server_privileges.php:1290 msgid "Reloading the privileges" msgstr "重新讀取權限" -#: server_privileges.php:1300 +#: server_privileges.php:1305 msgid "The selected users have been deleted successfully." msgstr "選擇的使用者已成功刪除." -#: server_privileges.php:1335 +#: server_privileges.php:1344 msgid "The privileges were reloaded successfully." msgstr "權限已成功重新讀取." -#: server_privileges.php:1363 server_privileges.php:1649 +#: server_privileges.php:1380 server_privileges.php:1669 msgid "Edit Privileges" msgstr "編輯權限" -#: server_privileges.php:1372 +#: server_privileges.php:1389 msgid "Revoke" msgstr "移除" -#: server_privileges.php:1404 +#: server_privileges.php:1424 msgid "User overview" msgstr "使用者一覽" -#: server_privileges.php:1541 server_privileges.php:1723 -#: server_privileges.php:2072 +#: server_privileges.php:1561 server_privileges.php:1743 +#: server_privileges.php:2093 msgid "Grant" msgstr "授權" -#: server_privileges.php:1560 server_privileges.php:2162 +#: server_privileges.php:1580 server_privileges.php:2183 msgid "Any" msgstr "任何" -#: server_privileges.php:1609 server_privileges.php:1633 -#: server_privileges.php:2027 server_privileges.php:2216 +#: server_privileges.php:1629 server_privileges.php:1653 +#: server_privileges.php:2048 server_privileges.php:2237 msgid "Add a new User" msgstr "新增使用者" -#: server_privileges.php:1614 +#: server_privileges.php:1634 msgid "Remove selected users" msgstr "移除已選擇使用者" -#: server_privileges.php:1617 +#: server_privileges.php:1637 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 +#: server_privileges.php:1638 server_privileges.php:1639 +#: server_privileges.php:1640 msgid "Drop the databases that have the same names as the users." msgstr "刪除與使用者相同名稱之資料庫." -#: server_privileges.php:1636 +#: server_privileges.php:1656 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -4805,91 +4847,91 @@ msgstr "" "表, 資料表內容將可能與實際使用者情況有異. 在這情況下, 您應在繼續前 %s重新載" "入%s 權限資料表." -#: server_privileges.php:1684 +#: server_privileges.php:1704 msgid "The selected user was not found in the privilege table." msgstr "選擇的使用者在權限資料表內找不到." -#: server_privileges.php:1724 +#: server_privileges.php:1744 msgid "Column-specific privileges" msgstr "指定欄位權限" -#: server_privileges.php:1925 +#: server_privileges.php:1945 msgid "Add privileges on the following database" msgstr "於以下資料庫加入權限" -#: server_privileges.php:1943 +#: server_privileges.php:1963 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "萬用符號 _ 及 % 應正確地加入 \\ " -#: server_privileges.php:1946 +#: server_privileges.php:1966 msgid "Add privileges on the following table" msgstr "於以下資料表加入權限" -#: server_privileges.php:2003 +#: server_privileges.php:2023 msgid "Change Login Information / Copy User" msgstr "更改登入資訊 / 複製使用者" -#: server_privileges.php:2006 +#: server_privileges.php:2026 msgid "Create a new user with the same privileges and ..." msgstr "建立新使用者及使用相同之權限, 及 ..." -#: server_privileges.php:2008 +#: server_privileges.php:2028 msgid "... keep the old one." msgstr "... 保留舊使用者." -#: server_privileges.php:2009 +#: server_privileges.php:2029 msgid " ... delete the old one from the user tables." msgstr " ... 刪除舊使用者." -#: server_privileges.php:2010 +#: server_privileges.php:2030 msgid "" " ... revoke all active privileges from the old one and delete it afterwards." msgstr " ... 廢除所有舊使用者有效之權限並刪除." -#: server_privileges.php:2011 +#: server_privileges.php:2031 msgid "" " ... delete the old one from the user tables and reload the privileges " "afterwards." msgstr " ... 刪除舊使用者及重新讀取權限資料表." -#: server_privileges.php:2033 +#: server_privileges.php:2054 msgid "Database for user" msgstr "" -#: server_privileges.php:2037 +#: server_privileges.php:2058 #, fuzzy #| msgid "None" msgctxt "Create none database for user" msgid "None" msgstr "不適用" -#: server_privileges.php:2038 +#: server_privileges.php:2059 msgid "Create database with same name and grant all privileges" msgstr "" -#: server_privileges.php:2039 +#: server_privileges.php:2060 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "" -#: server_privileges.php:2042 +#: server_privileges.php:2063 #, fuzzy, php-format msgid "Grant all privileges on database "%s"" msgstr "查詢資料庫 "%s" 之權限." -#: server_privileges.php:2065 +#: server_privileges.php:2086 #, php-format msgid "Users having access to "%s"" msgstr "可讀取 "%s" 之使用者" -#: server_privileges.php:2173 +#: server_privileges.php:2194 msgid "global" msgstr "整體" -#: server_privileges.php:2175 +#: server_privileges.php:2196 msgid "database-specific" msgstr "指定資料庫" -#: server_privileges.php:2177 +#: server_privileges.php:2198 msgid "wildcard" msgstr "萬用字元" @@ -7579,6 +7621,10 @@ msgstr "" msgid "Show insert query" msgstr "" +#: tbl_change.php:1143 +msgid "and then" +msgstr "然後" + #: tbl_change.php:1147 msgid "Go back to previous page" msgstr "返回" @@ -7657,7 +7703,7 @@ msgstr "(\"PRIMARY\" 必須是主鍵的名稱以及是唯一一組 msgid "Add to index  %s column(s)" msgstr "新增  %s  組索引欄" -#: tbl_indexes.php:256 tbl_structure.php:589 tbl_structure.php:600 +#: tbl_indexes.php:256 tbl_structure.php:587 tbl_structure.php:598 msgid "Column count has to be larger than zero." msgstr "欄位數目需要大於零." @@ -7774,39 +7820,39 @@ msgstr "檢查指示完整性:" msgid "Show tables" msgstr "顯示資料表" -#: tbl_printview.php:310 tbl_structure.php:656 +#: tbl_printview.php:310 tbl_structure.php:654 msgid "Space usage" msgstr "已使用空間" -#: tbl_printview.php:314 tbl_structure.php:660 +#: tbl_printview.php:314 tbl_structure.php:658 msgid "Usage" msgstr "使用" -#: tbl_printview.php:341 tbl_structure.php:687 +#: tbl_printview.php:341 tbl_structure.php:685 msgid "Effective" msgstr "實際" -#: tbl_printview.php:366 tbl_structure.php:725 +#: tbl_printview.php:366 tbl_structure.php:723 msgid "Row Statistics" msgstr "資料列統計數值" -#: tbl_printview.php:369 tbl_structure.php:728 +#: tbl_printview.php:369 tbl_structure.php:726 msgid "Statements" msgstr "敘述" -#: tbl_printview.php:380 tbl_structure.php:740 +#: tbl_printview.php:380 tbl_structure.php:738 msgid "static" msgstr "" -#: tbl_printview.php:382 tbl_structure.php:742 +#: tbl_printview.php:382 tbl_structure.php:740 msgid "dynamic" msgstr "動態" -#: tbl_printview.php:404 tbl_structure.php:785 +#: tbl_printview.php:404 tbl_structure.php:783 msgid "Row length" msgstr "資料列長度" -#: tbl_printview.php:414 tbl_structure.php:793 +#: tbl_printview.php:414 tbl_structure.php:791 msgid " Row size " msgstr "資料列大小" @@ -7878,50 +7924,50 @@ msgstr "不適用" msgid "Column %s has been dropped" msgstr "資料表 %s 已被刪除" -#: tbl_structure.php:385 +#: tbl_structure.php:384 #, php-format msgid "A primary key has been added on %s" msgstr "主鍵已經新增到 %s" -#: tbl_structure.php:400 tbl_structure.php:414 tbl_structure.php:428 +#: tbl_structure.php:398 tbl_structure.php:412 tbl_structure.php:426 #, php-format msgid "An index has been added on %s" msgstr "索引已經新增到 %s" -#: tbl_structure.php:506 tbl_structure.php:508 +#: tbl_structure.php:504 tbl_structure.php:506 msgid "Relation view" msgstr "關聯檢視" -#: tbl_structure.php:515 tbl_structure.php:517 +#: tbl_structure.php:513 tbl_structure.php:515 msgid "Propose table structure" msgstr "分析資料表結構" -#: tbl_structure.php:540 +#: tbl_structure.php:538 #, fuzzy #| msgid "Add %s field(s)" msgid "Add column" msgstr "新增 %s 個欄位" -#: tbl_structure.php:554 +#: tbl_structure.php:552 msgid "At End of Table" msgstr "於資料表尾端" -#: tbl_structure.php:555 +#: tbl_structure.php:553 msgid "At Beginning of Table" msgstr "於資料表開頭" -#: tbl_structure.php:556 +#: tbl_structure.php:554 #, php-format msgid "After %s" msgstr "在 %s 之後" -#: tbl_structure.php:594 +#: tbl_structure.php:592 #, fuzzy, php-format #| msgid "Create an index on %s columns" msgid "Create an index on  %s columns" msgstr "新增  %s  組索引欄" -#: tbl_structure.php:756 +#: tbl_structure.php:754 msgid "partitioned" msgstr "" @@ -8332,10 +8378,6 @@ msgstr "將資料表改名為" #~ msgid "Process list" #~ msgstr "系統執行清單" -#, fuzzy -#~ msgid "Reload privileges" -#~ msgstr "整體權限" - #~ msgid "" #~ "The users will still have the USAGE privilege until the privileges are " #~ "reloaded."